diff --git a/CenRa_AUTOMAP/README.md b/CenRa_AUTOMAP/README.md index 80ccffe..72f88d5 100644 --- a/CenRa_AUTOMAP/README.md +++ b/CenRa_AUTOMAP/README.md @@ -1 +1,4 @@ -# CenRa_AutoMap \ No newline at end of file +# CenRa_AutoMap +--- +Outil de création de mise en page, +Permet de préprogramé des mise en page pour les mêtre à disposition des collégue. diff --git a/CenRa_COPIE/metadata.txt b/CenRa_COPIE/metadata.txt index d4552b7..69b7e69 100644 --- a/CenRa_COPIE/metadata.txt +++ b/CenRa_COPIE/metadata.txt @@ -10,7 +10,7 @@ name=CenRA_COPIE qgisMinimumVersion=3.0 description=Permet la copie d'une table dans une base PostGis -version=2 +version=2.0 author=Conservatoire d'Espaces Naturels de Rhône-Alpes email=si_besoin@cen-rhonealpes.fr @@ -28,7 +28,7 @@ repository=https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS homepage=https://plateformesig.cenra-outils.org/ category=Plugins -icon=cenra.png +icon=icon.png # experimental flag experimental=True diff --git a/CenRa_FLUX/CenRa_Flux.py b/CenRa_FLUX/CenRa_Flux.py new file mode 100644 index 0000000..2acacba --- /dev/null +++ b/CenRa_FLUX/CenRa_Flux.py @@ -0,0 +1,100 @@ +__copyright__ = "Copyright 2021, 3Liz" +__license__ = "GPL version 3" +__email__ = "info@3liz.org" + + +from qgis.core import QgsApplication +from qgis.PyQt.QtCore import QCoreApplication, Qt, QTranslator, QUrl +from qgis.PyQt.QtGui import QDesktopServices, QIcon +from qgis.PyQt.QtWidgets import QAction, QMessageBox +from qgis.utils import iface +import qgis + + +#include + +import os +from .tools.resources import ( + plugin_path, + resources_path, + maj_verif, +) +from .flux_editor import Flux_Editor +from .about_form import FluxAboutDialog + +from PyQt5.QtCore import * + +class PgFlux: + def __init__(self): + """ Constructor. """ + self.action_editor = None + self.issues = None + self.provider = None + self.locator_filter = None + self.dock_action = None + self.help_action = None + plugin_dir = os.path.dirname(__file__) + end_find = plugin_dir.rfind('\\')+1 + global NAME + NAME = plugin_dir[end_find:] + maj_verif(NAME) + + # Display About window on first use + version = qgis.utils.pluginMetadata('CenRa_Flux','version') + s = QSettings() + versionUse = s.value("flux/version", 1, type=str) + if str(versionUse) != str(version) : + s.setValue("flux/version", str(version)) + print(versionUse,version) + self.open_about_dialog() + + def initGui(self): + """ Build the plugin GUI. """ + + self.toolBar = iface.addToolBar("CenRa_Flux") + self.toolBar.setObjectName("CenRa_Flux") + + icon = QIcon(resources_path('icons', 'icon.png')) + + # Open the online help + self.help_action = QAction(icon, "CenRa_Flux", iface.mainWindow()) + iface.pluginHelpMenu().addAction(self.help_action) + self.help_action.triggered.connect(self.open_help) + if not self.action_editor: + self.action_editor = Flux_Editor() + + self.flux_editor = QAction(icon, 'SigCEN',None) + self.toolBar.addAction(self.flux_editor) + self.flux_editor.triggered.connect(self.open_editor) + + def open_about_dialog(self): + """ + About dialog + """ + dialog = CopieAboutDialog(iface) + dialog.exec_() + def open_help(): + """ Open the online help. """ + QDesktopServices.openUrl(QUrl('https://plateformesig.cenra-outils.org/')) + + def open_editor(self): + self.action_editor.show() + self.action_editor.raise_() + + def unload(self): + """ Unload the plugin. """ + if self.action_editor: + iface.removePluginMenu('CenRa_Flux',self.flux_editor) + + + if self.provider: + QgsApplication.processingRegistry().removeProvider(self.provider) + del self.provider + + if self.locator_filter: + iface.deregisterLocatorFilter(self.locator_filter) + del self.locator_filter + + if self.help_action: + iface.pluginHelpMenu().removeAction(self.help_action) + del self.help_action diff --git a/CenRa_FLUX/FluxCEN.py b/CenRa_FLUX/FluxCEN.py deleted file mode 100644 index 88aa50d..0000000 --- a/CenRa_FLUX/FluxCEN.py +++ /dev/null @@ -1,938 +0,0 @@ -# -*- coding: utf-8 -*- -""" -/*************************************************************************** - FluxCEN - A QGIS plugin - Centralisation des flux WFS/WMS utilisés au CEN NA - Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/ - ------------------- - begin : 2022-03-23 - git sha : $Format:%H$ - copyright : (C) 2022 by Romain MONTILLET - email : r.montillet@cen-na.org - ***************************************************************************/ - -/*************************************************************************** - * * - * This program is free software; 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. * - * * - ***************************************************************************/ -""" -from qgis.PyQt.QtCore import QSettings, QTranslator, QCoreApplication, Qt, QUrl -from qgis.PyQt.QtGui import * -from qgis.PyQt.QtWidgets import * -from PyQt5 import * - -# Initialize Qt resources from file resources.py -from .resources import * -# Import the code for the dialog -from .FluxCEN_dialog import FluxCENDialog -import os.path, os, shutil -from qgis.core import * -from qgis.gui import * -from qgis.utils import * -from .forms.about_form import FluxAboutDialog -import qgis -import processing -import psycopg2 -import psycopg2.extras -from PyQt5.QtXml import QDomDocument -import csv -import os -import io -import re -import random -# Deal with SSL -import ssl -import urllib -from urllib import request, parse -import socket -import json -import requests -import base64 - -ssl._create_default_https_context = ssl._create_unverified_context -from PyQt5 import QtGui -from .tools.resources import maj_verif -from .tools.PythonSQL import * -first_conn = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbname+" user=first_cnx password=" + password) -first_cur = first_conn.cursor(cursor_factory = psycopg2.extras.DictCursor) -first_cur.execute("SELECT mdp_w, login_w FROM pg_catalog.pg_user t1, admin_sig.vm_users_sig t2 WHERE t2.oid = t1.usesysid AND (login_w = '" + os_user + "' OR login_w = '" + os_user + "')") -res_ident = first_cur.fetchone() -mdp = base64.b64decode(str(res_ident[0])).decode('utf-8') -user = res_ident[1] -#con = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbname+" user=" + user + " password=" + mdp) -#cur = con.cursor(cursor_factory = psycopg2.extras.DictCursor) -#from .HubToTea import gitea -#gitea() -first_conn.close() - - -''' -# Vérifier la connexion à internet -try: - # Vérifier si l'utilisateur est connecté à internet en ouvrant une connexion avec un site web - host = socket.gethostbyname("www.google.com") - s = socket.create_connection((host, 80), 2) - s.close() -except socket.error: - # Afficher un message si l'utilisateur n'est pas connecté à internet - QMessageBox.warning(None, 'Avertissement', - 'Vous n\'êtes actuellement pas connecté à internet. Veuillez vous connecter pour pouvoir utiliser FluxCEN !') -''' - -class Flux: - def __init__(self, t, c, nc, l, u, p): - self.type = t - self.category = c - self.nom_commercial = nc - self.layer = l - self.url = u - self.parameters = p - maj_verif('CenRa_FLUX') - - -class Popup(QWidget): - def __init__(self, parent=None): - super(Popup, self).__init__(parent) - - self.plugin_dir = os.path.dirname(__file__) - - self.text_edit = QTextBrowser() - fp = urllib.request.urlopen("https://raw.githubusercontent.com/CEN-Nouvelle-Aquitaine/fluxcen/main/info_changelog.html") - mybytes = fp.read() - html_changelog = mybytes.decode("utf8") - fp.close() - - self.text_edit.setHtml(html_changelog) - self.text_edit.setFont(QtGui.QFont("Calibri",weight=QtGui.QFont.Bold)) - self.text_edit.anchorClicked.connect(QtGui.QDesktopServices.openUrl) - self.text_edit.setOpenLinks(False) - - self.text_edit.setWindowTitle("Nouveautés") - self.text_edit.setMinimumSize(600,450) - -class FluxCEN: - """QGIS Plugin Implementation.""" - - def __init__(self, iface): - """Constructor. - - :param iface: An interface instance that will be passed to this class - which provides the hook by which you can manipulate the QGIS - application at run time. - :type iface: QgsInterface - """ - # Save reference to the QGIS interface - self.iface = iface - # initialize plugin directory - self.plugin_dir = os.path.dirname(__file__) - # initialize locale - #print(QSettings().value('locale/userLocale')) - locale = QSettings().value('locale/userLocale')[0:2] - locale_path = os.path.join( - self.plugin_dir, - 'i18n', - 'FluxCEN_{}.qm'.format(locale)) - version = qgis.utils.pluginMetadata('CenRa_FLUX','version') - # Display About window on first use - s = QSettings() - versionUse = s.value("flux/version", 1, type=str) - if str(versionUse) != str(version) : - s.setValue("flux/version", str(version)) - self.open_about_dialog() - - if os.path.exists(locale_path): - self.translator = QTranslator() - self.translator.load(locale_path) - QCoreApplication.installTranslator(self.translator) - - # Declare instance attributes - self.actions = [] - self.menu = self.tr(u'&FluxCEN') - self.dlg = FluxCENDialog() - self.plugin_path = os.path.dirname(__file__) - - # Check if plugin was started the first time in current QGIS session - # Must be set in initGui() to survive plugin reloads - self.first_start = None - - self.dlg.tableWidget.setSelectionBehavior(QTableWidget.SelectRows) - self.dlg.tableWidget.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers) - - self.dlg.comboBox_2.addItem("SIG") - self.dlg.comboBox_2.addItem('REF') -# self.dlg.comboBox.addItem('07') -# self.dlg.comboBox.addItem('26') -# self.dlg.comboBox.addItem('42') -# self.dlg.comboBox.addItem('69') -# self.dlg.comboBox.addItem('form') - - self.dlg.comboBox.currentIndexChanged.connect(self.initialisation_flux) - self.dlg.commandLinkButton.clicked.connect(self.selection_flux) - self.dlg.tableWidget.itemDoubleClicked.connect(self.selection_flux) - self.dlg.pushButton_2.clicked.connect(self.limite_flux) - self.dlg.commandLinkButton_2.clicked.connect(self.suppression_flux) - self.dlg.tableWidget_2.itemDoubleClicked.connect(self.suppression_flux) - self.dlg.comboBox_2.currentIndexChanged.connect(self.bd_source) - #self.dlg.commandLinkButton_3.clicked.connect(self.option_OSM) - #self.dlg.commandLinkButton_4.clicked.connect(self.option_google_maps) - - #self.dlg.commandLinkButton_5.clicked.connect(self.popup) - # iface.mapCanvas().extentsChanged.connect(self.test5) - -# url_open = urllib.request.urlopen("https://raw.githubusercontent.com/CEN-Rhone-Alpes/Plugin_QGIS/main/flux.csv") -# colonnes_flux = csv.DictReader(io.TextIOWrapper(url_open, encoding='utf8'), delimiter=';') - - #mots_cles = [row["categorie"] for row in colonnes_flux if row["categorie"]] - #categories = list(set(mots_cles)) - #categories.sort() - - #self.dlg.comboBox.addItems(categories) - layout = QVBoxLayout() - self.dlg.lineEdit.textChanged.connect(self.filtre_dynamique) - layout.addWidget(self.dlg.lineEdit) - self.dlg.lineEdit.mousePressEvent = self._mousePressEvent - - metadonnees_plugin = open(self.plugin_path + '/metadata.txt') - infos_metadonnees = metadonnees_plugin.readlines() - -# derniere_version = urllib.request.urlopen("https://sig.dsi-cen.org/qgis/downloads/last_version_fluxcen.txt") -# num_last_version = derniere_version.readlines()[0].decode("utf-8") - - # Connect the itemClicked signal to the open_url function - #self.dlg.tableWidget.itemClicked.connect(self.open_url) - -# version_utilisateur = infos_metadonnees[8].splitlines() - -# if infos_metadonnees[8].splitlines() == num_last_version.splitlines(): -# iface.messageBar().pushMessage("Plugin à jour", "Votre version de FluxCEN %s est à jour !" %version_utilisateur, level=Qgis.Success, duration=5) -# else: -# iface.messageBar().pushMessage("Information :", "Une nouvelle version de FluxCEN est disponible, veuillez mettre à jour le plugin !", level=Qgis.Info, duration=120) - - def open_about_dialog(self): - dialog = FluxAboutDialog(self.iface) - dialog.exec_() - - def _mousePressEvent(self, event): - self.dlg.lineEdit.setText("") - self.dlg.lineEdit.mousePressEvent = None - - # noinspection PyMethodMayBeStatic - def tr(self, message): - """Get the translation for a string using Qt translation API. - - We implement this ourselves since we do not inherit QObject. - - :param message: String for translation. - :type message: str, QString - - :returns: Translated version of message. - :rtype: QString - """ - # noinspection PyTypeChecker,PyArgumentList,PyCallByClass - return QCoreApplication.translate('FluxCEN', message) - - - def add_action( - self, - icon_path, - text, - callback, - dbtype=None, - enabled_flag=True, - add_to_menu=True, - add_to_toolbar=True, - status_tip=None, - whats_this=None, - parent=None): - """Add a toolbar icon to the toolbar. - - :param icon_path: Path to the icon for this action. Can be a resource - path (e.g. ':/plugins/foo/bar.png') or a normal file system path. - :type icon_path: str - - :param text: Text that should be shown in menu items for this action. - :type text: str - - :param callback: Function to be called when the action is triggered. - :type callback: function - - :param enabled_flag: A flag indicating if the action should be enabled - by default. Defaults to True. - :type enabled_flag: bool - - :param add_to_menu: Flag indicating whether the action should also - be added to the menu. Defaults to True. - :type add_to_menu: bool - - :param add_to_toolbar: Flag indicating whether the action should also - be added to the toolbar. Defaults to True. - :type add_to_toolbar: bool - - :param status_tip: Optional text to show in a popup when mouse pointer - hovers over the action. - :type status_tip: str - - :param parent: Parent widget for the new action. Defaults None. - :type parent: QWidget - :param whats_this: Optional text to show in the status bar when the - mouse pointer hovers over the action. - - :returns: The action that was created. Note that the action is also - added to self.actions list. - :rtype: QAction - """ - - icon = QIcon(icon_path) - action = QAction(icon, text, parent) - action.triggered.connect(callback) - action.setEnabled(enabled_flag) - - if status_tip is not None: - action.setStatusTip(status_tip) - - if whats_this is not None: - action.setWhatsThis(whats_this) - - if add_to_toolbar: - # Adds plugin icon to Plugins toolbar - #self.iface.addToolBarIcon(action) - self.toolBar.addAction(action) - - if add_to_menu: - self.iface.addPluginToMenu( - self.menu, - action) - - self.actions.append(action) - - return action - - def initGui(self): - self.toolBar = self.iface.addToolBar("FluxCEN") - self.toolBar.setObjectName("FluxCEN") - """Create the menu entries and toolbar icons inside the QGIS GUI.""" - icon_path = ':/plugins/CenRa_FLUX/reficon.png' - self.add_action( - icon_path, - text=self.tr(u'SigCEN'), - callback=self.bd_source, - dbtype='"+dbname+"', - parent=self.iface.mainWindow()) - ''' - icon_path_2 = ':/plugins/CenRa_FLUX/reficon.png' - self.add_action( - icon_path_2, - text=self.tr(u'RefCEN'), - callback=self.run_ref, - dbtype='ref_geo4269', - parent=self.iface.mainWindow()) - ''' - - # will be set False in run() - self.first_start = False - - def unload(self): - """Removes the plugin menu item and icon from QGIS GUI.""" - for action in self.actions: - self.iface.removePluginMenu( - self.tr(u'&SigCEN'), - action) - self.iface.removeToolBarIcon(action) - for action in self.actions: - self.iface.removePluginMenu( - self.tr(u'&RefCEN'), - action) - self.iface.removeToolBarIcon(action) - - def bd_source(self): - self.dlg.activateWindow() - bd_origine=self.dlg.comboBox_2.currentText() - if bd_origine == 'REF': - self.run_ref() - if bd_origine == 'SIG': - self.run_sig() - - def run_ref(self): - """Run method that performs all the real work""" - while self.dlg.tableWidget_2.rowCount() > 0: - self.dlg.tableWidget_2.removeRow(self.dlg.tableWidget_2.rowCount()-1) -# print(self.dlg.tableWidget_2.rowCount()) - global cur,con,dbtype - dbtype=refdb - con = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbtype+" user=" + user + " password=" + mdp) - cur = con.cursor(cursor_factory = psycopg2.extras.DictCursor) - self.initialisation_flux() - self.combobox_custom() - # Create the dialog with elements (after translation) and keep reference - # Only create GUI ONCE in callback, so that it will only load when the plugin is started - if self.first_start == True: - self.first_start = False - # show the dialog - self.dlg.show() - # Run the dialog event loop - result = self.dlg.exec_() - # See if OK was pressed - if result: - # Do something useful here - delete the line containing pass and - # substitute with your code. - pass - - def run_sig(self): - """Run method that performs all the real work""" - while self.dlg.tableWidget_2.rowCount() > 0: - self.dlg.tableWidget_2.removeRow(self.dlg.tableWidget_2.rowCount()-1) - global cur,con,dbtype - dbtype=sigdb - con = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbtype+" user=" + user + " password=" + mdp) - cur = con.cursor(cursor_factory = psycopg2.extras.DictCursor) - self.initialisation_flux() - self.combobox_custom() - # Create the dialog with elements (after translation) and keep reference - # Only create GUI ONCE in callback, so that it will only load when the plugin is started - if self.first_start == True: - self.first_start = False - # show the dialog - self.dlg.show() - # Run the dialog event loop - result = self.dlg.exec_() - # See if OK was pressed - if result: - # Do something useful here - delete the line containing pass and - # substitute with your code. - pass - - def suppression_flux(self): - self.dlg.tableWidget_2.removeRow(self.dlg.tableWidget_2.currentRow()) - ''' - def option_OSM(self): - tms = 'type=xyz&url=https://tile.openstreetmap.org/{z}/{x}/{y}.png&zmax=19&zmin=0' - layer = QgsRasterLayer(tms, 'OSM', 'wms') - - if not QgsProject.instance().mapLayersByName("OSM"): - QgsProject.instance().addMapLayer(layer) - else: - QMessageBox.question(iface.mainWindow(), u"Fond OSM déjà chargé !", "Le fond de carte OSM est déjà chargé", QMessageBox.Ok) - - OSM_layer = QgsProject.instance().mapLayersByName("OSM")[0] - - root = QgsProject.instance().layerTreeRoot() - - # Move Layer - OSM_layer = root.findLayer(OSM_layer.id()) - myClone = OSM_layer.clone() - parent = OSM_layer.parent() - parent.insertChildNode(-1, myClone) - parent.removeChildNode(OSM_layer) - - - def option_google_maps(self): - tms = 'type=xyz&zmin=0&zmax=20&url=https://mt1.google.com/vt/lyrs%3Ds%26x%3D{x}%26y%3D{y}%26z%3D{z}' - layer = QgsRasterLayer(tms, 'Google Satelitte', 'wms') - - if not QgsProject.instance().mapLayersByName("Google Satelitte"): - QgsProject.instance().addMapLayer(layer) - else: - QMessageBox.question(iface.mainWindow(), u"Fond Google Sat' déjà chargé !", "Le fond de carte Google Satelitte est déjà chargé", QMessageBox.Ok) - - google_layer = QgsProject.instance().mapLayersByName("Google Satelitte")[0] - - root = QgsProject.instance().layerTreeRoot() - - # Move Layer - google_layer = root.findLayer(google_layer.id()) - myClone = google_layer.clone() - parent = google_layer.parent() - parent.insertChildNode(-1, myClone) - parent.removeChildNode(google_layer) - ''' - - def open_url(self, item): - url = item.data(Qt.UserRole) - #if url: - # Open the URL, you might use QDesktopServices.openUrl for this in a standalone PyQt application - # QDesktopServices.openUrl(QUrl(url)) - - def initialisation_flux(self): - ''' - def csv_import(url): - url_open = urllib.request.urlopen(url) - csvfile = csv.reader(io.TextIOWrapper(url_open, encoding='utf8'), delimiter=';') - #on ne lit pas la première ligne correspondant aux noms des colonnes avec next() - next(csvfile) - return csvfile; - - data = [] - data2 = [] - model = QStandardItemModel() - - raw = csv_import( - "https://raw.githubusercontent.com/CEN-Rhone-Alpes/Plugin_QGIS/main/flux.csv") - for row in raw: - data.append(row) - data2.append(row) - data = [k for k in data if self.dlg.comboBox.currentText() in k] - data.sort() - data2.sort() - items = [ - QStandardItem(field) - for field in row] - - model.appendRow(items) - - row=0 - data=['a1','a2','a3'] - data2=[['b1','c1','d1'],['b2','c2','d2'],['b3','c3','d3']] - if self.dlg.comboBox.currentText() == 'toutes les catégories': - # print(str(data2[0])) - # del data2[0] - # print(str(data2[0])) - nb_row = len(data2) - nb_col = len(data2[0]) - print(data2[row][2]) - self.dlg.tableWidget.setRowCount(nb_row) - self.dlg.tableWidget.setColumnCount(nb_col) - for row in range(nb_row): - for col in range(nb_col): - item = QTableWidgetItem(str(data2[row][col])) - # Access the value from the 6th column for the current row (style here) - value_from_2nd_column = str(data2[row][2]) - # Set tooltip for each row - tooltip = f"Nom du flux: {value_from_2nd_column}" - item.setToolTip(tooltip) - - # Check if the current column is the "Résumé des métadonnées" column - if col == 7: - # Set icon for the "Résumé des métadonnées" column - icon_path = self.plugin_path + '/info_metadata.png' # Replace 'path_to_your_icon.png' with the actual path to your icon - icon = QIcon(icon_path) - item.setIcon(icon) - # Store the URL in the item's data for later retrieval - url_from_6th_column = str(data2[row][7]) # Assuming the URL is in the next column - item.setData(Qt.UserRole, url_from_6th_column)''' - if dbtype == sigdb: - if self.dlg.comboBox.currentText() == 'toutes les catégories': - custom_list=schemaname_list - elif self.dlg.comboBox.currentText() == 'travaux': - custom_list="""(SELECT schemaname,tablename from pg_catalog.pg_tables - where schemaname like '"""+ str(self.dlg.comboBox.currentText()) +"""%' order by schemaname,tablename) UNION (SELECT schemaname,matviewname AS tablename FROM pg_catalog.pg_matviews where schemaname like '"""+ str(self.dlg.comboBox.currentText()) +"""%' order by schemaname,tablename) order by schemaname,tablename;""" - else: - custom_list="""(SELECT schemaname,tablename from pg_catalog.pg_tables - where schemaname like '\_"""+ str(self.dlg.comboBox.currentText()) +"""%' order by schemaname,tablename) UNION (SELECT schemaname,matviewname AS tablename FROM pg_catalog.pg_matviews where schemaname like '\_"""+ str(self.dlg.comboBox.currentText()) +"""%' order by schemaname,tablename) order by schemaname,tablename;""" - else: - if self.dlg.comboBox.currentText() == 'toutes les catégories': - custom_list=schemaname_list_ref - else: - custom_list="""SELECT schemaname,tablename from pg_catalog.pg_tables - where schemaname like '"""+ str(self.dlg.comboBox.currentText()) +"""' order by schemaname,tablename;""" - cur.execute(custom_list) - list_schema = cur.fetchall() - - self.dlg.tableWidget.setRowCount(len(list_schema)) - self.dlg.tableWidget.setColumnCount(3) - i=0 - for value in list_schema: - if dbtype == sigdb: - type_val = str(value[0])[1:3] - schema_name=str(value[0])[4:] - table_name=str(value[1]) - else: - type_val = '' - schema_name=str(value[0]) - table_name=str(value[1]) - if type_val == 'fo': - type_val=str(value[0])[1:5] - schema_name=str(value[0])[6:] - table_name=str(value[1]) - elif type_val == 'ra': - type_val='travaux' - schema_name=str(value[0]) - table_name=str(value[1]) - elif type_val != '00' and type_val != '01' and type_val != '07' and type_val != '26' and type_val != '42' and type_val != '69' and type_val != 'ra': - type_val='agregation' - schema_name=str(value[0]) - table_name=str(value[1]) - - item = QTableWidgetItem(type_val) - self.dlg.tableWidget.setItem(i,0,item) - item = QTableWidgetItem(schema_name) - self.dlg.tableWidget.setItem(i,1,item) - item = QTableWidgetItem(table_name) - self.dlg.tableWidget.setItem(i,2,item) - i=i+1 - self.dlg.tableWidget.setColumnWidth(0, 20) - self.dlg.tableWidget.setColumnWidth(1, 300) - self.dlg.tableWidget.setColumnWidth(2, 300) - self.dlg.tableWidget.setHorizontalHeaderLabels(["Code","Schema","Table"]) - ''' - else: - nb_row = len(data) - nb_col = len(data[0]) - self.dlg.tableWidget.setRowCount(nb_row) - self.dlg.tableWidget.setColumnCount(nb_col) - for row in range(nb_row): - for col in range(nb_col): - item = QTableWidgetItem(str(data[row][col])) - # Access the value from the 6th column for the current row (style here) - value_from_2nd_column = str(data[row][1]) - # Set tooltip for each row - tooltip = f"Nom du flux: {value_from_2nd_column}" - item.setToolTip(tooltip) - - # Check if the current column is the "Résumé des métadonnées" column - if col == 7: - # Set icon for the "Résumé des métadonnées" column - icon_path = self.plugin_path + '/metadata.png' # Replace 'path_to_your_icon.png' with the actual path to your icon - icon = QIcon(icon_path) - item.setIcon(icon) - # Store the URL in the item's data for later retrieval - url_from_6th_column = str(data2[row][7]) # Assuming the URL is in the next column - item.setData(Qt.UserRole, url_from_6th_column) - - self.dlg.tableWidget.setItem(row, col, item) - - self.dlg.tableWidget.setHorizontalHeaderLabels(["Service", "Catégorie", "Flux", "Nom technique", "Url d'accès", "Source", "Style", "Infos"]) - - self.dlg.tableWidget.setColumnWidth(0, 76) - self.dlg.tableWidget.setColumnWidth(1, 0) - self.dlg.tableWidget.setColumnWidth(2, 610) - self.dlg.tableWidget.setColumnWidth(3, 0) - self.dlg.tableWidget.setColumnWidth(4, 0) - self.dlg.tableWidget.setColumnWidth(5, 88) - self.dlg.tableWidget.setColumnWidth(6, 0) - self.dlg.tableWidget.setColumnWidth(7, 30) - - self.dlg.tableWidget.selectRow(0) - ''' - def selection_flux(self): - selected_row = 0 - selected_items = self.dlg.tableWidget.selectedItems() - - # Assuming you want to compare items in the first column for uniqueness - new_item_text = selected_items[2].text() - - if not self.item_already_exists(new_item_text): - self.dlg.tableWidget_2.insertRow(selected_row) - - for column in range(self.dlg.tableWidget.columnCount()): - cloned_item = selected_items[column].clone() - self.dlg.tableWidget_2.setHorizontalHeaderLabels(["Code","Schema", "Table"]) - self.dlg.tableWidget_2.setColumnCount(3) - self.dlg.tableWidget_2.setItem(selected_row, column, cloned_item) - - self.dlg.tableWidget_2.setColumnWidth(0, 50) - self.dlg.tableWidget_2.setColumnWidth(1, 300) - self.dlg.tableWidget_2.setColumnWidth(2, 300) - - - def item_already_exists(self, new_item_text): - # Assuming you want to compare items in the first column for uniqueness - existing_items = self.dlg.tableWidget_2.findItems(new_item_text, QtCore.Qt.MatchExactly) - - # Check if there are any existing items with the same text in the first column - return len(existing_items) > 0 - - - - def limite_flux(self): - - if self.dlg.tableWidget_2.rowCount() > 3: - self.QMBquestion = QMessageBox.question(iface.mainWindow(), u"Attention !", - "Le nombre de flux à charger en une seule fois est limité à 3 pour des questions de performances. Souhaitez vous tout de même charger les " + str( - self.dlg.tableWidget_2.rowCount()) + " flux sélectionnés ? (risque de plantage de QGIS)", - QMessageBox.Yes | QMessageBox.No) - if self.QMBquestion == QMessageBox.Yes: - self.chargement_flux() - - if self.QMBquestion == QMessageBox.No: - print("Annulation du chargement des couches") - - if self.dlg.tableWidget_2.rowCount() <= 3: - self.chargement_flux() - - def chargement_flux(self): - - managerAU = QgsApplication.authManager() - k = managerAU.availableAuthMethodConfigs().keys() - - def REQUEST(type): - switcher = { - 'WFS': "GetFeature", - 'WMS': "GetMap", - 'WMS+Vecteur': "GetMap", - 'WMS+Raster': "GetMap", - 'WMTS': "GetMap" - } - return switcher.get(type, "nothing") - - - def displayOnWindows(type, uri, name): - ''' - if type == 'WFS': - vlayer = QgsVectorLayer(uri, name, "WFS") - # vlayer.setScaleBasedVisibility(True) - QgsProject.instance().addMapLayer(vlayer) - - layers = QgsProject.instance().mapLayers() # dictionary - - # rowCount() This property holds the number of rows in the table - for row in range(self.dlg.tableWidget_2.rowCount()): - # item(row, 0) Returns the item for the given row and column if one has been set; otherwise returns nullptr. - _item = self.dlg.tableWidget_2.item(row, 2).text() - _legend = self.dlg.tableWidget_2.item(row, 6).text() - # print(_item) - # print(_legend) - - for layer in layers.values(): - if layer.name() == _item: - if len(_legend) > 1: - styles_url = 'https://raw.githubusercontent.com/CEN-Nouvelle-Aquitaine/fluxcen/main/styles_couches/' + _legend + '.qml' - - fp = urllib.request.urlopen(styles_url) - mybytes = fp.read() - - document = QDomDocument() - document.setContent(mybytes) - - res = layer.importNamedStyle(document) - layer.triggerRepaint() - - else: - print("Pas de style à charger pour cette couche") - - elif type == 'WMS' or type == 'WMS Raster' or type == 'WMS Vecteur' or type == 'WMTS': - rlayer = QgsRasterLayer(uri, name, "WMS") - QgsProject.instance().addMapLayer(rlayer) - else: - print("Unknown datatype !") - ''' - p = [] - - for row in range(0, self.dlg.tableWidget_2.rowCount()): - ## supression de la partie de l'url après le point d'interrogation - if dbtype == sigdb: - code = self.dlg.tableWidget_2.item(row,0).text() - schema = '_'+code+'_'+self.dlg.tableWidget_2.item(row,1).text() - if code == 'travaux' or code == 'agregation': - schema = self.dlg.tableWidget_2.item(row,1).text() - table = self.dlg.tableWidget_2.item(row,2).text()#.split("?", 1)[0] - if dbtype == refdb: -# code = self.dlg.tableWidget_2.item(row,0).text() - schema = self.dlg.tableWidget_2.item(row,1).text() - table = self.dlg.tableWidget_2.item(row,2).text()#.split("?", 1)[0] - uri = QgsDataSourceUri() - uri.setConnection(host ,port ,dbtype ,user ,mdp) - - # nom du schéma à remplacer: "hydrographie" à supprimer et mettre "couches_collaboratives" lorsqu'on aura regroupé les couches à modifier dans un même schéma - - uri.setDataSource(schema, table, "geom") - uri.setKeyColumn('gid') - - # Chargement de la couche PostGIS - geom_type ='SELECT right(st_geometrytype(geom),-3) as a FROM '+schema+'.'+table+' GROUP BY a' - cur.execute(geom_type) - list_typegeom = cur.fetchall() - print(len(list_typegeom)) - if len(list_typegeom) > 1: - for typegeom in list_typegeom: - if typegeom[0] == 'MultiPolygon': - uri.setWkbType(QgsWkbTypes.MultiPolygon) - elif typegeom[0] == 'MultiLineString': - uri.setWkbType(QgsWkbTypes.MultiLineString) - elif typegeom[0] == 'Point': - uri.setWkbType(QgsWkbTypes.Point) - if typegeom[0] == 'Polygon': - uri.setWkbType(QgsWkbTypes.Polygon) - elif typegeom[0] == 'LineString': - uri.setWkbType(QgsWkbTypes.LineString) - elif typegeom[0] == 'MultiPoint': - uri.setWkbType(QgsWkbTypes.MultiPoint) - if (typegeom[0] != None and typegeom[0] != 'Polygon'): - uri.setSrid('2154') - layer = QgsVectorLayer(uri.uri(), table, "postgres") - # Ajout de la couche au canevas QGIS - QgsProject.instance().addMapLayer(layer) - else: - layer = QgsVectorLayer(uri.uri(), table, "postgres") - # Ajout de la couche au canevas QGIS - QgsProject.instance().addMapLayer(layer) - ''' - try: - service = re.search('SERVICE=(.+?)&VERSION', self.dlg.tableWidget_2.item(row,4).text()).group(1) - except: - service = '1.0.0' - try: - version = re.search('VERSION=(.+?)&REQUEST', self.dlg.tableWidget_2.item(row,4).text()).group(1) - except: - version = '1.0.0' - - if self.dlg.tableWidget_2.item(row,0).text() == 'WMS' or self.dlg.tableWidget_2.item(row,0).text() == 'WMS Vecteur' or self.dlg.tableWidget_2.item(row,0).text() == 'WMS Raster': - a = Flux( - self.dlg.tableWidget_2.item(row,0).text(), - self.dlg.tableWidget_2.item(row,1).text(), - self.dlg.tableWidget_2.item(row,2).text(), - self.dlg.tableWidget_2.item(row,3).text(), - "url="+url, - { - 'service': self.dlg.tableWidget_2.item(row,0).text(), - 'version': version, - 'crs': "EPSG:2154", - 'format' : "image/png", - 'layers': self.dlg.tableWidget_2.item(row,3).text()+"&styles" - } - ) - - p.append(a) - - uri = p[row].url + '&' + urllib.parse.unquote(urllib.parse.urlencode(p[row].parameters)) - # print(uri) - if not QgsProject.instance().mapLayersByName(p[row].nom_commercial): - displayOnWindows(p[row].type, uri, p[row].nom_commercial) - else: - print("Couche "+p[row].nom_commercial+" déjà chargée") - - - elif self.dlg.tableWidget_2.item(row,0).text() == 'WFS': - - a = Flux( - self.dlg.tableWidget_2.item(row, 0).text(), - self.dlg.tableWidget_2.item(row, 1).text(), - self.dlg.tableWidget_2.item(row, 2).text(), - self.dlg.tableWidget_2.item(row, 3).text(), - url, - { - 'VERSION': version, - 'TYPENAME': self.dlg.tableWidget_2.item(row, 3).text(), - 'request': "GetFeature", - - } - ) - - p.append(a) - - uri = p[row].url + '?' + urllib.parse.unquote(urllib.parse.urlencode(p[row].parameters)) - - try: - response = requests.get(uri) - - if response.status_code == 401: - print("Statut de réponse: 401") - - if len(list(k)) == 0: - QMessageBox.question(iface.mainWindow(), u"Attention", "Veuillez ajouter une entrée de configuration d'authentification dans QGIS pour accéder aux flux CEN-NA sécurisés par un mot de passe (Flux 'FoncierCEN')", QMessageBox.Ok) - else: - # Add 'authcfg' to the parameters dictionary - p[row].parameters['authcfg'] = list(k)[0] - - # Update the URI with the modified parameters - uri = p[row].url + '?' + urllib.parse.unquote(urllib.parse.urlencode(p[row].parameters)) - - # Make the request again with the updated URI - response = requests.get(uri) - elif response.status_code == 200: - print("Statut de réponse: 200.") - else: - print(f"Statut de réponse: {response.status_code}") - - except requests.exceptions.RequestException as e: - print(f"problème de requete: {e}") - - - if not QgsProject.instance().mapLayersByName(p[row].nom_commercial): - displayOnWindows(p[row].type, uri, p[row].nom_commercial) - else: - print("Couche "+p[row].nom_commercial+" déjà chargée") - - - elif self.dlg.tableWidget_2.item(row, 0).text() == 'PostGIS': - - # Connexion à la base de données PostGIS - uri = QgsDataSourceUri() - uri.setConnection("sandbox.cen-nouvelle-aquitaine.dev", "5432", "piezo", "", "") - # nom du schéma à remplacer: "hydrographie" à supprimer et mettre "couches_collaboratives" lorsqu'on aura regroupé les couches à modifier dans un même schéma - uri.setDataSource("collaboratif", self.dlg.tableWidget_2.item(row, 3).text(), "geom") - # Chargement de la couche PostGIS - layer = QgsVectorLayer(uri.uri(), self.dlg.tableWidget_2.item(row, 2).text(), "postgres") - - # Ajout de la couche au canevas QGIS - QgsProject.instance().addMapLayer(layer) - - else: - print("Les flux WMTS et autres ne sont pas encore gérés par le plugin") - ''' - def combobox_custom(self): - if dbtype == sigdb: - self.dlg.comboBox.clear() - self.dlg.comboBox.addItem("toutes les catégories") - self.dlg.comboBox.addItem('00') - self.dlg.comboBox.addItem('01') - self.dlg.comboBox.addItem('07') - self.dlg.comboBox.addItem('26') - self.dlg.comboBox.addItem('42') - self.dlg.comboBox.addItem('69') - self.dlg.comboBox.addItem('agregation') - self.dlg.comboBox.addItem('travaux') - self.dlg.comboBox.addItem('form') - if dbtype == refdb: - custom_list=schemaname_distinct - cur.execute(custom_list) - list_schema = cur.fetchall() - self.dlg.comboBox.clear() - self.dlg.comboBox.addItem("toutes les catégories") - for baxval in list_schema: - self.dlg.comboBox.addItem(baxval[0]) - def filtre_dynamique(self, filter_text): - - for i in range(self.dlg.tableWidget.rowCount()): - for j in range(self.dlg.tableWidget.columnCount()): - item = self.dlg.tableWidget.item(i, j) - match = filter_text.lower() not in item.text().lower() - self.dlg.tableWidget.setRowHidden(i, match) - if not match: - break - - - - def popup(self): - - self.dialog = Popup() # +++ - self - self.dialog.text_edit.show() - -# from owslib.wfs import WebFeatureService -# import csv - -# wfs = WebFeatureService(url='https://opendata.cen-nouvelle-aquitaine.org/geoserver/agriculture/wfs') -# agriculture = list(wfs.contents) -# with open('C:/Users/Romain/Desktop/test.csv', "a+", encoding="ISO-8859-1", newline='') as f: -# writer = csv.writer(f) -# for row in agriculture: -# writer.writerow(row.split()) -# -# from owslib.wms import WebMapService -# wms = WebMapService('https://opendata.cen-nouvelle-aquitaine.org/geoserver/fond_carto/wms') -# fonds_carto = list(wms.contents) -# with open('C:/Users/Romain/Desktop/test.csv', "a+", encoding="ISO-8859-1", newline='') as f: -# writer = csv.writer(f) -# for row in fonds_carto: -# writer.writerow(row.split()) -# -# import csv -# -# fluxWMS = ['AGG_TMM', '16-014_Brandes_de_Soyaux_2020-05', '17IMERIS_Bois-Charles_Vallée-du-Larry_2022_01', '17IMERIS_Grand-Champ_2022-01', '19PTOR_MNS_filtre_futurs_travaux_2021-10_L93', '19PTOR_MNS_filtre_travaux_realises_2021-10_L93', '19PTOR_ortho_2021-10_L93', '23CELI_marais_du_chancelier_2022_03_24', '23CLAM_Rocher_de_Clamouzat_2020-11', '23DIAB_lande_du_pont_du_diable_nord_2021-10_L93', '23DIAB_lande_du_pont_du_diable_sud_2021-10_L93', '23LAND_RNN_etang_des_landes_2020-08_L93', '33_Lagune-108-2021-08', '79BLVI_Blanchère-de-Viennay_2021-10', '79VGAT_Vallée-du-Gâteau_Pressigny_2020-02', '79VGAT_Vallée-du-Gâteau_Pressigny_2021-10', '86-001_TMM_CA-CD_2020-07', '86-500_Clain-sud_Etang-du-Pin', '86_AT_Chalandray_2021-10', '87CREN_siege_saint_gence_2021-09', '87GRLA_grandes_landes_2021-09-24', '87SANA_sanadie_2021-09-24', 'a_16_030_Prairies_de_Vouharte_2019_09', 'a_17_474_Estauaire_de_la_Gironde_Les_Pr_s_de_la_Rouille_2019_08', 'a_17_474_Estauaire_de_la_Gironde_Moulin_Rompu_2019_08', 'a_17_474_Estuaire_de_la_Gironde_Zone_Humide_de_la_Motte_Ronde_2021_04', 'a_17_IMERIS_Carriere_du_Planton_2021_08_12', 'a_17_LGV_Ragouillis_2021_08_12', 'a_33_Lagune_058_2021_08', 'a_33_Lagune_070_2021_08', 'a_33_Lagune_094_2021_08', 'a_33_Lagune_162_2021_08', 'a_33_Lagune_165_2021_08', 'a_33_Lagunes_207_208_209_2021_08', 'a_79_001_Clussais_la_Pommeraie_2020_11', 'a_79_008_Landes_de_L_Hopiteau_2019_09', 'a_79_020_Bessines_1_avant_travaux_2019_10', 'a_79_020_Bessines_2_pendant_travaux_2019_11', 'a_79_020_Bessines_3_apres_travaux_2020_12', 'a_79_044_Carriere_des_Landes_2020_09', 'a_79_AT_Vernoux_en_Gatine_2020_09', 'a_79_Sources_de_la_Sevre_Niortaise_Pierre_levee_2020_09', 'a_86_001_TMM_AA_2020_06', 'a_86_001_TMM_AB_2020_06', 'a_86_001_TMM_AC_2020_06', 'a_86_001_TMM_AD_2020_06', 'a_86_001_TMM_AE_2020_06', 'a_86_001_TMM_AF_2020_06', 'a_86_001_TMM_AG_2020_07', 'a_86_001_TMM_BA_2020_06', 'a_86_001_TMM_BB_2020_06', 'a_86_001_TMM_BC_2020_06', 'a_86_001_TMM_BD_2020_06', 'a_86_001_TMM_BE_2020_07', 'a_86_001_TMM_BF_2021_06', 'a_86_001_TMM_CB_2020_07', 'a_86_001_TMM_CC_2020_07', 'a_86_001_TMM_CC_2021_06', 'a_86_001_TMM_CD_2021_06', 'a_86_001_TMM_CE_2020_07', 'a_86_001_TMM_CF_2020_09', 'a_86_001_TMM_DA_2020_07', 'a_86_001_TMM_DB_2020_09', 'a_86_001_TMM_DC_2021_06', 'a_86_001_TMM_EA_2020_06', 'a_86_001_TMM_EB_2020_06', 'a_86_001_TMM_EC_2020_06', 'a_86_001_TMM_FA_2020_06', 'a_86_001_TMM_FB_2020_07', 'a_86_001_TMM_FC_2020_07', 'a_86_001_TMM_FC_2021_06', 'a_86_001_TMM_HA_2020_09', 'a_86_001_TMM_IA_2020_06', 'a_86_001_TMM_IB_2020_06', 'a_86_001_TMM_IC_2020_06', 'a_86_001_TMM_JA_2020_07', 'a_86_001_TMM_JB_2020_07', 'a_86_001_TMM_JC_2020_07', 'a_86_001_TMM_JE_2020_07', 'a_86_001_TMM_KA_2020_07', 'a_86_001_TMM_KB_2020_07', 'a_86_003_Falunieres_de_Moulin_Pochas_2019_09', 'a_86_006_Landes_et_pelouses_de_Lussac_Sillars_2019_08', 'a_86_011_Landes_de_Sainte_Marie_2019_09', 'a_86_025_Marais_des_Ragouillis_2020_11', 'a_86_025_Marais_des_Ragouillis_2021_02', 'a_86_026_Etangs_Baro_2019_09', 'a_86_029_Vallee_de_la_Longere_2019_09', 'a_86_037_Tourbiere_des_Regeasses_2021_06', 'a_86_038_Vallees_de_la_Vienne_et_du_Clain_Persac_2019_09', 'a_86_038_Vallees_de_la_Vienne_et_du_Clain_Persac_2020_12', 'a_86_052_Fontaine_le_Comte_nord_2020_11', 'a_86_052_Fontaine_le_Comte_sud_2020_11', 'a_86_054_Vallee_de_la_Vonne_2020_11', 'a_86_058_Carriere_de_Puy_Herve_2021_02_09', 'a_86_058_Carriere_de_Puy_Herve_2021_02_25', 'a_86_060_Bocage_de_la_Geoffronniere_2020_11', 'a_86_Le_Cormier_2021_05'] -# -# with open('C:/Users/Romain/Desktop/test.csv', "a+", encoding="ISO-8859-1", newline='') as f: -# writer = csv.writer(f) -# for row in fluxWMS: -# writer.writerow(row.split()) - -#### Récupération des métadonnées des couches quand disponibles: - -# from owslib.wms import WebMapService -# wms = WebMapService('http://geoservices.brgm.fr/geologie?service=WMS+Raster', version='1.1.1') -# print(list(wms.contents)) -# -# print(wms['IDPR'].abstract) \ No newline at end of file diff --git a/CenRa_FLUX/FluxCEN_dialog.py b/CenRa_FLUX/FluxCEN_dialog.py deleted file mode 100644 index 4665410..0000000 --- a/CenRa_FLUX/FluxCEN_dialog.py +++ /dev/null @@ -1,44 +0,0 @@ -# -*- coding: utf-8 -*- -""" -/*************************************************************************** - FluxCENDialog - A QGIS plugin - Flux IGN etc etc - Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/ - ------------------- - begin : 2022-04-04 - git sha : $Format:%H$ - copyright : (C) 2022 by Romain Montillet - email : r.montillet@cen-na.org - ***************************************************************************/ - -/*************************************************************************** - * * - * This program is free software; 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. * - * * - ***************************************************************************/ -""" - -import os - -from qgis.PyQt import uic -from qgis.PyQt import QtWidgets - -# This loads your .ui file so that PyQt can populate your plugin with the elements from Qt Designer -FORM_CLASS, _ = uic.loadUiType(os.path.join( - os.path.dirname(__file__), 'FluxCEN_dialog_base.ui')) - - -class FluxCENDialog(QtWidgets.QDialog, FORM_CLASS): - def __init__(self, parent=None): - """Constructor.""" - super(FluxCENDialog, self).__init__(parent) - # Set up the user interface from Designer through FORM_CLASS. - # After self.setupUi() you can access any designer object by doing - # self., and you can use autoconnect slots - see - # http://qt-project.org/doc/qt-4.8/designer-using-a-ui-file.html - # #widgets-and-dialogs-with-auto-connect - self.setupUi(self) diff --git a/CenRa_FLUX/FluxCEN_dialog_base.py b/CenRa_FLUX/FluxCEN_dialog_base.py deleted file mode 100644 index eb2a6f8..0000000 --- a/CenRa_FLUX/FluxCEN_dialog_base.py +++ /dev/null @@ -1,247 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'FluxCEN_dialog_base.ui' -# -# Created by: PyQt5 UI code generator 5.15.7 -# -# WARNING: Any manual changes made to this file will be lost when pyuic5 is -# run again. Do not edit this file unless you know what you are doing. -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'FluxCEN_dialog_base.ui' -# -# Created by: PyQt5 UI code generator 5.15.4 -# -# WARNING: Any manual changes made to this file will be lost when pyuic5 is -# run again. Do not edit this file unless you know what you are doing. -import resources - -from PyQt5 import QtCore, QtGui, QtWidgets - - -class Ui_Dialog(object): - def setupUi(self, Dialog): - Dialog.setObjectName("Dialog") - Dialog.setEnabled(True) - Dialog.resize(910, 800) - Dialog.setMinimumSize(QtCore.QSize(910, 800)) - Dialog.setMaximumSize(QtCore.QSize(910, 800)) - self.comboBox = QtWidgets.QComboBox(Dialog) - self.comboBox.setGeometry(QtCore.QRect(260, 130, 171, 22)) - self.comboBox.setEditable(False) - self.comboBox.setCurrentText("") - self.comboBox.setObjectName("comboBox") - self.comboBox_2 = QtWidgets.QComboBox(Dialog) - self.comboBox_2.setGeometry(QtCore.QRect(370, 80, 171, 22)) - self.comboBox_2.setEditable(False) - self.comboBox_2.setCurrentText("") - self.comboBox_2.setObjectName("comboBox_2") - self.label_3 = QtWidgets.QLabel(Dialog) - self.label_3.setGeometry(QtCore.QRect(50, 20, 271, 91)) - self.label_3.setText("") - self.label_3.setPixmap(QtGui.QPixmap(":/plugins/CenRa_FLUX/logo.png")) - self.label_3.setScaledContents(True) - self.label_3.setObjectName("label_3") - self.pushButton_2 = QtWidgets.QPushButton(Dialog) - self.pushButton_2.setGeometry(QtCore.QRect(370, 750, 171, 23)) - self.pushButton_2.setObjectName("pushButton_2") - self.tableWidget = QtWidgets.QTableWidget(Dialog) - self.tableWidget.setEnabled(True) - self.tableWidget.setGeometry(QtCore.QRect(30, 170, 850, 281)) - self.tableWidget.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection) - self.tableWidget.setObjectName("tableWidget") - self.tableWidget.setColumnCount(0) - self.tableWidget.setRowCount(0) - self.tableWidget_2 = QtWidgets.QTableWidget(Dialog) - self.tableWidget_2.setGeometry(QtCore.QRect(30, 550, 850, 181)) - self.tableWidget_2.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection) - self.tableWidget_2.setObjectName("tableWidget_2") - self.tableWidget_2.setColumnCount(0) - self.tableWidget_2.setRowCount(0) - self.commandLinkButton = QtWidgets.QCommandLinkButton(Dialog) - self.commandLinkButton.setGeometry(QtCore.QRect(400, 470, 61, 61)) - self.commandLinkButton.setText("") - icon = QtGui.QIcon() - icon.addPixmap(QtGui.QPixmap(":/plugins/CenRa_FLUX/arrow-bottom.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.commandLinkButton.setIcon(icon) - self.commandLinkButton.setIconSize(QtCore.QSize(50, 40)) - self.commandLinkButton.setObjectName("commandLinkButton") - self.commandLinkButton_2 = QtWidgets.QCommandLinkButton(Dialog) - self.commandLinkButton_2.setGeometry(QtCore.QRect(460, 470, 61, 61)) - self.commandLinkButton_2.setText("") - icon1 = QtGui.QIcon() - icon1.addPixmap(QtGui.QPixmap(":/plugins/CenRa_FLUX/arrow-up.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.commandLinkButton_2.setIcon(icon1) - self.commandLinkButton_2.setIconSize(QtCore.QSize(50, 40)) - self.commandLinkButton_2.setObjectName("commandLinkButton_2") - self.lineEdit = QtWidgets.QLineEdit(Dialog) - self.lineEdit.setEnabled(True) - self.lineEdit.setGeometry(QtCore.QRect(480, 130, 171, 21)) - self.lineEdit.setAlignment(QtCore.Qt.AlignCenter) - self.lineEdit.setReadOnly(False) - self.lineEdit.setClearButtonEnabled(True) - self.lineEdit.setObjectName("lineEdit") - self.label = QtWidgets.QLabel(Dialog) - self.label.setGeometry(QtCore.QRect(40, 150, 161, 16)) - font = QtGui.QFont() - font.setFamily("Calibri") - font.setPointSize(10) - font.setItalic(False) - self.label.setFont(font) - self.label.setObjectName("label") - self.label_2 = QtWidgets.QLabel(Dialog) - self.label_2.setGeometry(QtCore.QRect(30, 530, 171, 16)) - font = QtGui.QFont() - font.setFamily("Calibri") - font.setPointSize(10) - font.setItalic(False) - self.label_2.setFont(font) - self.label_2.setObjectName("label_2") - - self.retranslateUi(Dialog) - QtCore.QMetaObject.connectSlotsByName(Dialog) - - def retranslateUi(self, Dialog): - _translate = QtCore.QCoreApplication.translate - Dialog.setWindowTitle(_translate("Dialog", "SIG CEN-RA")) - self.pushButton_2.setText(_translate("Dialog", "Charger les couches")) - self.tableWidget.setSortingEnabled(True) - self.lineEdit.setText(_translate("Dialog", "Recherche par mots-clés")) - self.label.setText(_translate("Dialog", "Liste des flux disponibles :")) - self.label_2.setText(_translate("Dialog", "Flux sélectionné(s) à charger :")) - -''' -from PyQt5 import QtCore, QtGui, QtWidgets - - -class Ui_Dialog(object): - def setupUi(self, Dialog): - Dialog.setObjectName("Dialog") - Dialog.setEnabled(True) - Dialog.resize(910, 800) - Dialog.setMinimumSize(QtCore.QSize(910, 800)) - Dialog.setMaximumSize(QtCore.QSize(910, 800)) - self.comboBox = QtWidgets.QComboBox(Dialog) - self.comboBox.setGeometry(QtCore.QRect(260, 130, 171, 22)) - self.comboBox.setEditable(False) - self.comboBox.setCurrentText("") - self.comboBox.setObjectName("comboBox") - self.label_3 = QtWidgets.QLabel(Dialog) - self.label_3.setGeometry(QtCore.QRect(350, 20, 221, 71)) - self.label_3.setText("") - self.label_3.setPixmap(QtGui.QPixmap(":/plugins/FluxCEN/logo.png")) - self.label_3.setScaledContents(True) - self.label_3.setObjectName("label_3") - self.pushButton_2 = QtWidgets.QPushButton(Dialog) - self.pushButton_2.setGeometry(QtCore.QRect(370, 750, 171, 23)) - self.pushButton_2.setObjectName("pushButton_2") - self.tableWidget = QtWidgets.QTableWidget(Dialog) - self.tableWidget.setEnabled(True) - self.tableWidget.setGeometry(QtCore.QRect(30, 170, 850, 281)) - self.tableWidget.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection) - self.tableWidget.setObjectName("tableWidget") - self.tableWidget.setColumnCount(0) - self.tableWidget.setRowCount(0) - self.tableWidget_2 = QtWidgets.QTableWidget(Dialog) - self.tableWidget_2.setGeometry(QtCore.QRect(30, 550, 850, 181)) - self.tableWidget_2.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection) - self.tableWidget_2.setObjectName("tableWidget_2") - self.tableWidget_2.setColumnCount(0) - self.tableWidget_2.setRowCount(0) - self.commandLinkButton = QtWidgets.QCommandLinkButton(Dialog) - self.commandLinkButton.setGeometry(QtCore.QRect(400, 470, 61, 61)) - self.commandLinkButton.setText("") - icon = QtGui.QIcon() - icon.addPixmap(QtGui.QPixmap(":/plugins/FluxCEN/arrow-bottom.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.commandLinkButton.setIcon(icon) - self.commandLinkButton.setIconSize(QtCore.QSize(50, 40)) - self.commandLinkButton.setObjectName("commandLinkButton") - self.commandLinkButton_2 = QtWidgets.QCommandLinkButton(Dialog) - self.commandLinkButton_2.setGeometry(QtCore.QRect(460, 470, 61, 61)) - self.commandLinkButton_2.setText("") - icon1 = QtGui.QIcon() - icon1.addPixmap(QtGui.QPixmap(":/plugins/FluxCEN/arrow-up.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.commandLinkButton_2.setIcon(icon1) - self.commandLinkButton_2.setIconSize(QtCore.QSize(50, 40)) - self.commandLinkButton_2.setObjectName("commandLinkButton_2") - self.lineEdit = QtWidgets.QLineEdit(Dialog) - self.lineEdit.setEnabled(True) - self.lineEdit.setGeometry(QtCore.QRect(480, 130, 171, 21)) - self.lineEdit.setAlignment(QtCore.Qt.AlignCenter) - self.lineEdit.setReadOnly(False) - self.lineEdit.setClearButtonEnabled(True) - self.lineEdit.setObjectName("lineEdit") - self.commandLinkButton_3 = QtWidgets.QCommandLinkButton(Dialog) - self.commandLinkButton_3.setGeometry(QtCore.QRect(690, 20, 201, 41)) - font = QtGui.QFont() - font.setFamily("Segoe UI") - font.setPointSize(9) - self.commandLinkButton_3.setFont(font) - icon2 = QtGui.QIcon() - icon2.addPixmap(QtGui.QPixmap(":/plugins/FluxCEN/globe.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.commandLinkButton_3.setIcon(icon2) - self.commandLinkButton_3.setIconSize(QtCore.QSize(20, 20)) - self.commandLinkButton_3.setObjectName("commandLinkButton_3") - self.label = QtWidgets.QLabel(Dialog) - self.label.setGeometry(QtCore.QRect(40, 150, 161, 16)) - font = QtGui.QFont() - font.setFamily("Calibri") - font.setPointSize(10) - font.setItalic(False) - self.label.setFont(font) - self.label.setObjectName("label") - self.label_2 = QtWidgets.QLabel(Dialog) - self.label_2.setGeometry(QtCore.QRect(30, 530, 171, 16)) - font = QtGui.QFont() - font.setFamily("Calibri") - font.setPointSize(10) - font.setItalic(False) - self.label_2.setFont(font) - self.label_2.setObjectName("label_2") - self.commandLinkButton_4 = QtWidgets.QCommandLinkButton(Dialog) - self.commandLinkButton_4.setGeometry(QtCore.QRect(690, 60, 201, 41)) - font = QtGui.QFont() - font.setFamily("Segoe UI") - font.setPointSize(9) - self.commandLinkButton_4.setFont(font) - icon3 = QtGui.QIcon() - icon3.addPixmap(QtGui.QPixmap(":/plugins/FluxCEN/orthos.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.commandLinkButton_4.setIcon(icon3) - self.commandLinkButton_4.setIconSize(QtCore.QSize(20, 20)) - self.commandLinkButton_4.setObjectName("commandLinkButton_4") - self.commandLinkButton_5 = QtWidgets.QCommandLinkButton(Dialog) - self.commandLinkButton_5.setGeometry(QtCore.QRect(860, 750, 41, 41)) - font = QtGui.QFont() - font.setFamily("Segoe UI") - font.setPointSize(9) - self.commandLinkButton_5.setFont(font) - self.commandLinkButton_5.setText("") - icon4 = QtGui.QIcon() - icon4.addPixmap(QtGui.QPixmap(":/plugins/FluxCEN/info.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.commandLinkButton_5.setIcon(icon4) - self.commandLinkButton_5.setIconSize(QtCore.QSize(25, 25)) - self.commandLinkButton_5.setObjectName("commandLinkButton_5") - - self.retranslateUi(Dialog) - QtCore.QMetaObject.connectSlotsByName(Dialog) - - def retranslateUi(self, Dialog): - _translate = QtCore.QCoreApplication.translate - Dialog.setWindowTitle(_translate("Dialog", "FluxCEN")) - self.pushButton_2.setText(_translate("Dialog", "Charger les couches")) - self.tableWidget.setSortingEnabled(True) - self.lineEdit.setText(_translate("Dialog", "Recherche par mots-clés")) - self.commandLinkButton_3.setText(_translate("Dialog", " Ajouter fond de carte OSM")) - self.label.setText(_translate("Dialog", "Liste des flux disponibles :")) - self.label_2.setText(_translate("Dialog", "Flux sélectionné(s) à charger :")) - self.commandLinkButton_4.setText(_translate("Dialog", "Ajouter Ortho (Google sat\')")) - -''' -if __name__ == "__main__": - import sys - app = QtWidgets.QApplication(sys.argv) - Dialog = QtWidgets.QDialog() - ui = Ui_Dialog() - ui.setupUi(Dialog) - Dialog.show() - sys.exit(app.exec_()) diff --git a/CenRa_FLUX/LICENSE b/CenRa_FLUX/LICENSE deleted file mode 100644 index f288702..0000000 --- a/CenRa_FLUX/LICENSE +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. 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 -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. 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. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program 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, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU 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. But first, please read -. diff --git a/CenRa_FLUX/Makefile b/CenRa_FLUX/Makefile deleted file mode 100644 index 406f962..0000000 --- a/CenRa_FLUX/Makefile +++ /dev/null @@ -1,244 +0,0 @@ -#/*************************************************************************** -# FluxCEN -# -# Flux IGN etc etc -# ------------------- -# begin : 2022-04-04 -# git sha : $Format:%H$ -# copyright : (C) 2022 by Romain Montillet -# email : r.montillet@cen-na.org -# ***************************************************************************/ -# -#/*************************************************************************** -# * * -# * This program is free software; 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. * -# * * -# ***************************************************************************/ - -################################################# -# Edit the following to match your sources lists -################################################# - - -#Add iso code for any locales you want to support here (space separated) -# default is no locales -# LOCALES = af -LOCALES = - -# If locales are enabled, set the name of the lrelease binary on your system. If -# you have trouble compiling the translations, you may have to specify the full path to -# lrelease -#LRELEASE = lrelease -#LRELEASE = lrelease-qt4 - - -# translation -SOURCES = \ - __init__.py \ - FluxCEN.py FluxCEN_dialog.py - -PLUGINNAME = FluxCEN - -PY_FILES = \ - __init__.py \ - FluxCEN.py FluxCEN_dialog.py - -UI_FILES = FluxCEN_dialog_base.ui - -EXTRAS = metadata.txt icon.png - -EXTRA_DIRS = - -COMPILED_RESOURCE_FILES = resources.py - -PEP8EXCLUDE=pydev,resources.py,conf.py,third_party,ui - -# QGISDIR points to the location where your plugin should be installed. -# This varies by platform, relative to your HOME directory: -# * Linux: -# .local/share/QGIS/QGIS3/profiles/default/python/plugins/ -# * Mac OS X: -# Library/Application Support/QGIS/QGIS3/profiles/default/python/plugins -# * Windows: -# AppData\Roaming\QGIS\QGIS3\profiles\default\python\plugins' - -QGISDIR=C:\Users\Romain\AppData/Roaming/QGIS/QGIS3/profiles/default/python/plugins - -################################################# -# Normally you would not need to edit below here -################################################# - -HELP = help/build/html - -PLUGIN_UPLOAD = $(c)/plugin_upload.py - -RESOURCE_SRC=$(shell grep '^ *@@g;s/.*>//g' | tr '\n' ' ') - -.PHONY: default -default: - @echo While you can use make to build and deploy your plugin, pb_tool - @echo is a much better solution. - @echo A Python script, pb_tool provides platform independent management of - @echo your plugins and runs anywhere. - @echo You can install pb_tool using: pip install pb_tool - @echo See https://g-sherman.github.io/plugin_build_tool/ for info. - -compile: $(COMPILED_RESOURCE_FILES) - -%.py : %.qrc $(RESOURCES_SRC) - pyrcc5 -o $*.py $< - -%.qm : %.ts - $(LRELEASE) $< - -test: compile transcompile - @echo - @echo "----------------------" - @echo "Regression Test Suite" - @echo "----------------------" - - @# Preceding dash means that make will continue in case of errors - @-export PYTHONPATH=`pwd`:$(PYTHONPATH); \ - export QGIS_DEBUG=0; \ - export QGIS_LOG_FILE=/dev/null; \ - nosetests -v --with-id --with-coverage --cover-package=. \ - 3>&1 1>&2 2>&3 3>&- || true - @echo "----------------------" - @echo "If you get a 'no module named qgis.core error, try sourcing" - @echo "the helper script we have provided first then run make test." - @echo "e.g. source run-env-linux.sh ; make test" - @echo "----------------------" - -deploy: compile doc transcompile - @echo - @echo "------------------------------------------" - @echo "Deploying plugin to your .qgis2 directory." - @echo "------------------------------------------" - # The deploy target only works on unix like operating system where - # the Python plugin directory is located at: - # $HOME/$(QGISDIR)/python/plugins - mkdir -p $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) - cp -vf $(PY_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) - cp -vf $(UI_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) - cp -vf $(COMPILED_RESOURCE_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) - cp -vf $(EXTRAS) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) - cp -vfr i18n $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) - cp -vfr $(HELP) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)/help - # Copy extra directories if any - (foreach EXTRA_DIR,(EXTRA_DIRS), cp -R (EXTRA_DIR) (HOME)/(QGISDIR)/python/plugins/(PLUGINNAME)/;) - - -# The dclean target removes compiled python files from plugin directory -# also deletes any .git entry -dclean: - @echo - @echo "-----------------------------------" - @echo "Removing any compiled python files." - @echo "-----------------------------------" - find $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) -iname "*.pyc" -delete - find $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) -iname ".git" -prune -exec rm -Rf {} \; - - -derase: - @echo - @echo "-------------------------" - @echo "Removing deployed plugin." - @echo "-------------------------" - rm -Rf $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) - -zip: deploy dclean - @echo - @echo "---------------------------" - @echo "Creating plugin zip bundle." - @echo "---------------------------" - # The zip target deploys the plugin and creates a zip file with the deployed - # content. You can then upload the zip file on http://plugins.qgis.org - rm -f $(PLUGINNAME).zip - cd $(HOME)/$(QGISDIR)/python/plugins; zip -9r $(CURDIR)/$(PLUGINNAME).zip $(PLUGINNAME) - -package: compile - # Create a zip package of the plugin named $(PLUGINNAME).zip. - # This requires use of git (your plugin development directory must be a - # git repository). - # To use, pass a valid commit or tag as follows: - # make package VERSION=Version_0.3.2 - @echo - @echo "------------------------------------" - @echo "Exporting plugin to zip package. " - @echo "------------------------------------" - rm -f $(PLUGINNAME).zip - git archive --prefix=$(PLUGINNAME)/ -o $(PLUGINNAME).zip $(VERSION) - echo "Created package: $(PLUGINNAME).zip" - -upload: zip - @echo - @echo "-------------------------------------" - @echo "Uploading plugin to QGIS Plugin repo." - @echo "-------------------------------------" - $(PLUGIN_UPLOAD) $(PLUGINNAME).zip - -transup: - @echo - @echo "------------------------------------------------" - @echo "Updating translation files with any new strings." - @echo "------------------------------------------------" - @chmod +x scripts/update-strings.sh - @scripts/update-strings.sh $(LOCALES) - -transcompile: - @echo - @echo "----------------------------------------" - @echo "Compiled translation files to .qm files." - @echo "----------------------------------------" - @chmod +x scripts/compile-strings.sh - @scripts/compile-strings.sh $(LRELEASE) $(LOCALES) - -transclean: - @echo - @echo "------------------------------------" - @echo "Removing compiled translation files." - @echo "------------------------------------" - rm -f i18n/*.qm - -clean: - @echo - @echo "------------------------------------" - @echo "Removing uic and rcc generated files" - @echo "------------------------------------" - rm $(COMPILED_UI_FILES) $(COMPILED_RESOURCE_FILES) - -doc: - @echo - @echo "------------------------------------" - @echo "Building documentation using sphinx." - @echo "------------------------------------" - cd help; make html - -pylint: - @echo - @echo "-----------------" - @echo "Pylint violations" - @echo "-----------------" - @pylint --reports=n --rcfile=pylintrc . || true - @echo - @echo "----------------------" - @echo "If you get a 'no module named qgis.core' error, try sourcing" - @echo "the helper script we have provided first then run make pylint." - @echo "e.g. source run-env-linux.sh ; make pylint" - @echo "----------------------" - - -# Run pep8 style checking -#http://pypi.python.org/pypi/pep8 -pep8: - @echo - @echo "-----------" - @echo "PEP8 issues" - @echo "-----------" - @pep8 --repeat --ignore=E203,E121,E122,E123,E124,E125,E126,E127,E128 --exclude $(PEP8EXCLUDE) . || true - @echo "-----------" - @echo "Ignored in PEP8 check:" - @echo $(PEP8EXCLUDE) diff --git a/CenRa_FLUX/README.html b/CenRa_FLUX/README.html deleted file mode 100644 index 6996c84..0000000 --- a/CenRa_FLUX/README.html +++ /dev/null @@ -1,42 +0,0 @@ - - -

Plugin Builder Results

- -Congratulations! You just built a plugin for QGIS!

- -
-Your plugin FluxCEN was created in:
-  C:\Users\Romain\AppData\Roaming\QGIS\QGIS3\profiles\default\python\plugins\fluxcen -

-Your QGIS plugin directory is located at:
-  C:/Users/Romain/AppData/Roaming/QGIS/QGIS3/profiles/default/python/plugins -

-

What's Next

-
    -
  1. If resources.py is not present in your plugin directory, compile the resources file using pyrcc5 (simply use pb_tool or make if you have automake) -
  2. Optionally, test the generated sources using make test (or run tests from your IDE) -
  3. Copy the entire directory containing your new plugin to the QGIS plugin directory (see Notes below) -
  4. Test the plugin by enabling it in the QGIS plugin manager -
  5. Customize it by editing the implementation file FluxCEN.py -
  6. Create your own custom icon, replacing the default icon.png -
  7. Modify your user interface by opening FluxCEN_dialog_base.ui in Qt Designer -
-Notes: -
    -
  • You can use pb_tool to compile, deploy, and manage your plugin. Tweak the pb_tool.cfg file included with your plugin as you add files. Install pb_tool using - pip or easy_install. See http://loc8.cc/pb_tool for more information. -
  • You can also use the Makefile to compile and deploy when you - make changes. This requires GNU make (gmake). The Makefile is ready to use, however you - will have to edit it to add addional Python source files, dialogs, and translations. -
-
-
-

-For information on writing PyQGIS code, see http://loc8.cc/pyqgis_resources for a list of resources. -

-
-

-©2011-2019 GeoApt LLC - geoapt.com -

- - diff --git a/CenRa_FLUX/README.txt b/CenRa_FLUX/README.txt deleted file mode 100644 index 278f7be..0000000 --- a/CenRa_FLUX/README.txt +++ /dev/null @@ -1,32 +0,0 @@ -Plugin Builder Results - -Your plugin FluxCEN was created in: - C:\Users\Romain\AppData\Roaming\QGIS\QGIS3\profiles\default\python\plugins\fluxcen - -Your QGIS plugin directory is located at: - C:/Users/Romain/AppData/Roaming/QGIS/QGIS3/profiles/default/python/plugins - -What's Next: - - * Copy the entire directory containing your new plugin to the QGIS plugin - directory - - * Compile the resources file using pyrcc5 - - * Run the tests (``make test``) - - * Test the plugin by enabling it in the QGIS plugin manager - - * Customize it by editing the implementation file: ``FluxCEN.py`` - - * Create your own custom icon, replacing the default icon.png - - * Modify your user interface by opening FluxCEN_dialog_base.ui in Qt Designer - - * You can use the Makefile to compile your Ui and resource files when - you make changes. This requires GNU make (gmake) - -For more information, see the PyQGIS Developer Cookbook at: -http://www.qgis.org/pyqgis-cookbook/index.html - -(C) 2011-2018 GeoApt LLC - geoapt.com diff --git a/CenRa_FLUX/__init__.py b/CenRa_FLUX/__init__.py index d9f0020..30a05a0 100644 --- a/CenRa_FLUX/__init__.py +++ b/CenRa_FLUX/__init__.py @@ -1,36 +1,6 @@ # -*- coding: utf-8 -*- -""" -/*************************************************************************** - FluxCEN - A QGIS plugin - Flux IGN etc etc - Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/ - ------------------- - begin : 2022-04-04 - copyright : (C) 2022 by Romain Montillet - email : r.montillet@cen-na.org - git sha : $Format:%H$ - ***************************************************************************/ -/*************************************************************************** - * * - * This program is free software; 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 script initializes the plugin, making it known to QGIS. -""" - - -# noinspection PyPep8Naming -def classFactory(iface): # pylint: disable=invalid-name - """Load FluxCEN class from file FluxCEN. - - :param iface: A QGIS interface instance. - :type iface: QgsInterface - """ - # - from .FluxCEN import FluxCEN - return FluxCEN(iface) +def classFactory(iface): + _ = iface + from CenRa_FLUX.CenRa_Flux import PgFlux + return PgFlux() diff --git a/CenRa_FLUX/forms/about_form.py b/CenRa_FLUX/about_form.py similarity index 85% rename from CenRa_FLUX/forms/about_form.py rename to CenRa_FLUX/about_form.py index 131749a..b0636d0 100644 --- a/CenRa_FLUX/forms/about_form.py +++ b/CenRa_FLUX/about_form.py @@ -6,13 +6,13 @@ from qgis.PyQt import uic from qgis.PyQt.QtGui import QPixmap from qgis.PyQt.QtWidgets import QDialog -from ..tools.resources import devlog +from .tools.resources import devlog ABOUT_FORM_CLASS, _ = uic.loadUiType( os.path.join( - str(Path(__file__).resolve().parent.parent), - 'forms', - 'flux_about_form.ui' + str(Path(__file__).resolve().parent), + 'tools/ui', + 'CenRa_about_form.ui' ) ) diff --git a/CenRa_FLUX/flux_editor.py b/CenRa_FLUX/flux_editor.py new file mode 100644 index 0000000..d3afe21 --- /dev/null +++ b/CenRa_FLUX/flux_editor.py @@ -0,0 +1,361 @@ +# -*- coding: utf-8 -*- + +from __future__ import absolute_import +# Import the PyQt and QGIS libraries +from builtins import next +from builtins import str +from builtins import object +import qgis +from qgis.PyQt import QtCore +from qgis.PyQt.QtCore import QSettings +from qgis.PyQt import QtWidgets +from qgis.PyQt.QtWidgets import QAction, QMenu, QDialog +from qgis.PyQt.QtGui import QIcon +from PyQt5.QtCore import * +from PyQt5.QtGui import * +from PyQt5 import QtGui +from qgis.core import * +from qgis.core import QgsDataSourceUri +from qgis.PyQt.QtWidgets import ( + QDialog, + QAction, + QDockWidget, + QFileDialog, + QInputDialog, + QMenu, + QToolButton, + QTableWidget, + QTableWidgetItem, + QVBoxLayout, +) +from .tools.PythonSQL import * +from .tools.resources import ( + load_ui, + resources_path, + login_base, + send_issues, +) +from .issues import CenRa_Issues + +from qgis.utils import iface +import os.path +import webbrowser, os +import psycopg2 +import psycopg2.extras +import base64 + +first_conn = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbname+" user=first_cnx password=" + password) +first_cur = first_conn.cursor(cursor_factory = psycopg2.extras.DictCursor) +first_cur.execute("SELECT mdp_w, login_w FROM pg_catalog.pg_user t1, admin_sig.vm_users_sig t2 WHERE t2.oid = t1.usesysid AND (login_w = '" + os_user + "' OR login_w = '" + os_user + "')") +res_ident = first_cur.fetchone() +mdp = base64.b64decode(str(res_ident[0])).decode('utf-8') +user = res_ident[1] +first_conn.close() + +EDITOR_CLASS = load_ui('CenRa_Flux_base.ui') + +class Flux_Editor(QDialog, EDITOR_CLASS): + + def __init__(self, parent=None): + _ = parent + super().__init__() + self.setupUi(self) + self.settings = QgsSettings() + self.s = QSettings() + self.setWindowIcon(QtGui.QIcon(resources_path('icons','icon.png'))) + self.first_start = None + self.iface = iface + self.label_3.setPixmap(QtGui.QPixmap(resources_path('ui','logo.png'))) + self.commandLinkButton.setIcon(QtGui.QIcon(resources_path('ui','arrow-bottom.png'))) + self.commandLinkButton_2.setIcon(QtGui.QIcon(resources_path('ui','arrow-up.png'))) + + self.tableWidget.setSelectionBehavior(QTableWidget.SelectRows) + self.tableWidget.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers) + self.comboBox_2.addItem("SIG") + self.comboBox_2.addItem('REF') + self.comboBox.currentIndexChanged.connect(self.initialisation_flux) + self.commandLinkButton.clicked.connect(self.selection_flux) + self.tableWidget.itemDoubleClicked.connect(self.selection_flux) + self.pushButton_2.clicked.connect(self.limite_flux) + self.commandLinkButton_2.clicked.connect(self.suppression_flux) + self.tableWidget_2.itemDoubleClicked.connect(self.suppression_flux) + self.comboBox_2.currentIndexChanged.connect(self.bd_source) + layout = QVBoxLayout() + self.lineEdit.textChanged.connect(self.filtre_dynamique) + layout.addWidget(self.lineEdit) + #self.lineEdit.mousePressEvent = self._mousePressEvent + + #metadonnees_plugin = open(self.plugin_path + '/metadata.txt') + #infos_metadonnees = metadonnees_plugin.readlines() + + def raise_(self): + """Run method that performs all the real work""" + self.bd_source() + + def bd_source(self): + self.activateWindow() + bd_origine=self.comboBox_2.currentText() + if bd_origine == 'REF': + self.run_ref() + if bd_origine == 'SIG': + self.run_sig() + + def run_ref(self): + """Run method that performs all the real work""" + while self.tableWidget_2.rowCount() > 0: + self.tableWidget_2.removeRow(self.tableWidget_2.rowCount()-1) +# print(self.tableWidget_2.rowCount()) + global cur,con,dbtype + dbtype=refdb + con = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbtype+" user=" + user + " password=" + mdp) + cur = con.cursor(cursor_factory = psycopg2.extras.DictCursor) + self.initialisation_flux() + self.combobox_custom() + # Create the dialog with elements (after translation) and keep reference + # Only create GUI ONCE in callback, so that it will only load when the plugin is started + if self.first_start == True: + self.first_start = False + # show the dialog + self.show() + # Run the dialog event loop + result = self.exec_() + # See if OK was pressed + if result: + # Do something useful here - delete the line containing pass and + # substitute with your code. + pass + + def run_sig(self): + """Run method that performs all the real work""" + while self.tableWidget_2.rowCount() > 0: + self.tableWidget_2.removeRow(self.tableWidget_2.rowCount()-1) + global cur,con,dbtype + dbtype=sigdb + con = psycopg2.connect("host=" + host + " port=" + port + " dbname="+dbtype+" user=" + user + " password=" + mdp) + cur = con.cursor(cursor_factory = psycopg2.extras.DictCursor) + self.initialisation_flux() + self.combobox_custom() + # Create the dialog with elements (after translation) and keep reference + # Only create GUI ONCE in callback, so that it will only load when the plugin is started + if self.first_start == True: + self.first_start = False + # show the dialog + self.show() + # Run the dialog event loop + result = self.exec_() + # See if OK was pressed + if result: + # Do something useful here - delete the line containing pass and + # substitute with your code. + pass + + def suppression_flux(self): + self.tableWidget_2.removeRow(self.tableWidget_2.currentRow()) + + def open_url(self, item): + url = item.data(Qt.UserRole) + + def initialisation_flux(self): + if dbtype == sigdb: + if self.comboBox.currentText() == 'toutes les catégories': + custom_list=schemaname_list + elif self.comboBox.currentText() == 'travaux': + custom_list="""(SELECT schemaname,tablename from pg_catalog.pg_tables + where schemaname like '"""+ str(self.comboBox.currentText()) +"""%' order by schemaname,tablename) UNION (SELECT schemaname,matviewname AS tablename FROM pg_catalog.pg_matviews where schemaname like '"""+ str(self.comboBox.currentText()) +"""%' order by schemaname,tablename) order by schemaname,tablename;""" + else: + custom_list="""(SELECT schemaname,tablename from pg_catalog.pg_tables + where schemaname like '\_"""+ str(self.comboBox.currentText()) +"""%' order by schemaname,tablename) UNION (SELECT schemaname,matviewname AS tablename FROM pg_catalog.pg_matviews where schemaname like '\_"""+ str(self.comboBox.currentText()) +"""%' order by schemaname,tablename) order by schemaname,tablename;""" + else: + if self.comboBox.currentText() == 'toutes les catégories': + custom_list=schemaname_list_ref + else: + custom_list="""SELECT schemaname,tablename from pg_catalog.pg_tables + where schemaname like '"""+ str(self.comboBox.currentText()) +"""' order by schemaname,tablename;""" + cur.execute(custom_list) + list_schema = cur.fetchall() + + self.tableWidget.setRowCount(len(list_schema)) + self.tableWidget.setColumnCount(3) + i=0 + for value in list_schema: + if dbtype == sigdb: + type_val = str(value[0])[1:3] + schema_name=str(value[0])[4:] + table_name=str(value[1]) + else: + type_val = '' + schema_name=str(value[0]) + table_name=str(value[1]) + if type_val == 'fo': + type_val=str(value[0])[1:5] + schema_name=str(value[0])[6:] + table_name=str(value[1]) + elif type_val == 'ra': + type_val='travaux' + schema_name=str(value[0]) + table_name=str(value[1]) + elif type_val != '00' and type_val != '01' and type_val != '07' and type_val != '26' and type_val != '42' and type_val != '69' and type_val != 'ra': + type_val='agregation' + schema_name=str(value[0]) + table_name=str(value[1]) + + item = QTableWidgetItem(type_val) + self.tableWidget.setItem(i,0,item) + item = QTableWidgetItem(schema_name) + self.tableWidget.setItem(i,1,item) + item = QTableWidgetItem(table_name) + self.tableWidget.setItem(i,2,item) + i=i+1 + self.tableWidget.setColumnWidth(0, 20) + self.tableWidget.setColumnWidth(1, 300) + self.tableWidget.setColumnWidth(2, 300) + self.tableWidget.setHorizontalHeaderLabels(["Code","Schema","Table"]) + def selection_flux(self): + selected_row = 0 + selected_items = self.tableWidget.selectedItems() + + # Assuming you want to compare items in the first column for uniqueness + new_item_text = selected_items[2].text() + + if not self.item_already_exists(new_item_text): + self.tableWidget_2.insertRow(selected_row) + + for column in range(self.tableWidget.columnCount()): + cloned_item = selected_items[column].clone() + self.tableWidget_2.setHorizontalHeaderLabels(["Code","Schema", "Table"]) + self.tableWidget_2.setColumnCount(3) + self.tableWidget_2.setItem(selected_row, column, cloned_item) + + self.tableWidget_2.setColumnWidth(0, 50) + self.tableWidget_2.setColumnWidth(1, 300) + self.tableWidget_2.setColumnWidth(2, 300) + + + def item_already_exists(self, new_item_text): + # Assuming you want to compare items in the first column for uniqueness + existing_items = self.tableWidget_2.findItems(new_item_text, QtCore.Qt.MatchExactly) + + # Check if there are any existing items with the same text in the first column + return len(existing_items) > 0 + + + + def limite_flux(self): + + if self.tableWidget_2.rowCount() > 3: + self.QMBquestion = QMessageBox.question(iface.mainWindow(), u"Attention !", + "Le nombre de flux à charger en une seule fois est limité à 3 pour des questions de performances. Souhaitez vous tout de même charger les " + str( + self.tableWidget_2.rowCount()) + " flux sélectionnés ? (risque de plantage de QGIS)", + QMessageBox.Yes | QMessageBox.No) + if self.QMBquestion == QMessageBox.Yes: + self.chargement_flux() + + if self.QMBquestion == QMessageBox.No: + print("Annulation du chargement des couches") + + if self.tableWidget_2.rowCount() <= 3: + self.chargement_flux() + + def chargement_flux(self): + + managerAU = QgsApplication.authManager() + k = managerAU.availableAuthMethodConfigs().keys() + + def REQUEST(type): + switcher = { + 'WFS': "GetFeature", + 'WMS': "GetMap", + 'WMS+Vecteur': "GetMap", + 'WMS+Raster': "GetMap", + 'WMTS': "GetMap" + } + return switcher.get(type, "nothing") + + + def displayOnWindows(type, uri, name): + p = [] + + for row in range(0, self.tableWidget_2.rowCount()): + ## supression de la partie de l'url après le point d'interrogation + if dbtype == sigdb: + code = self.tableWidget_2.item(row,0).text() + schema = '_'+code+'_'+self.tableWidget_2.item(row,1).text() + if code == 'travaux' or code == 'agregation': + schema = self.tableWidget_2.item(row,1).text() + table = self.tableWidget_2.item(row,2).text()#.split("?", 1)[0] + if dbtype == refdb: +# code = self.tableWidget_2.item(row,0).text() + schema = self.tableWidget_2.item(row,1).text() + table = self.tableWidget_2.item(row,2).text()#.split("?", 1)[0] + uri = QgsDataSourceUri() + uri.setConnection(host ,port ,dbtype ,user ,mdp) + + # nom du schéma à remplacer: "hydrographie" à supprimer et mettre "couches_collaboratives" lorsqu'on aura regroupé les couches à modifier dans un même schéma + + uri.setDataSource(schema, table, "geom") + uri.setKeyColumn('gid') + + # Chargement de la couche PostGIS + geom_type ='SELECT right(st_geometrytype(geom),-3) as a FROM '+schema+'.'+table+' GROUP BY a' + cur.execute(geom_type) + list_typegeom = cur.fetchall() + print(len(list_typegeom)) + if len(list_typegeom) > 1: + for typegeom in list_typegeom: + if typegeom[0] == 'MultiPolygon': + uri.setWkbType(QgsWkbTypes.MultiPolygon) + elif typegeom[0] == 'MultiLineString': + uri.setWkbType(QgsWkbTypes.MultiLineString) + elif typegeom[0] == 'Point': + uri.setWkbType(QgsWkbTypes.Point) + if typegeom[0] == 'Polygon': + uri.setWkbType(QgsWkbTypes.Polygon) + elif typegeom[0] == 'LineString': + uri.setWkbType(QgsWkbTypes.LineString) + elif typegeom[0] == 'MultiPoint': + uri.setWkbType(QgsWkbTypes.MultiPoint) + if (typegeom[0] != None and typegeom[0] != 'Polygon'): + uri.setSrid('2154') + layer = QgsVectorLayer(uri.uri(), table, "postgres") + # Ajout de la couche au canevas QGIS + QgsProject.instance().addMapLayer(layer) + else: + layer = QgsVectorLayer(uri.uri(), table, "postgres") + # Ajout de la couche au canevas QGIS + QgsProject.instance().addMapLayer(layer) + + def combobox_custom(self): + if dbtype == sigdb: + self.comboBox.clear() + self.comboBox.addItem("toutes les catégories") + self.comboBox.addItem('00') + self.comboBox.addItem('01') + self.comboBox.addItem('07') + self.comboBox.addItem('26') + self.comboBox.addItem('42') + self.comboBox.addItem('69') + self.comboBox.addItem('agregation') + self.comboBox.addItem('travaux') + self.comboBox.addItem('form') + if dbtype == refdb: + custom_list=schemaname_distinct + cur.execute(custom_list) + list_schema = cur.fetchall() + self.comboBox.clear() + self.comboBox.addItem("toutes les catégories") + for baxval in list_schema: + self.comboBox.addItem(baxval[0]) + def filtre_dynamique(self, filter_text): + + for i in range(self.tableWidget.rowCount()): + for j in range(self.tableWidget.columnCount()): + item = self.tableWidget.item(i, j) + match = filter_text.lower() not in item.text().lower() + self.tableWidget.setRowHidden(i, match) + if not match: + break + + def popup(self): + + self.dialog = Popup() # +++ - self + self.dialog.text_edit.show() \ No newline at end of file diff --git a/CenRa_FLUX/help/Makefile b/CenRa_FLUX/help/Makefile deleted file mode 100644 index 9def777..0000000 --- a/CenRa_FLUX/help/Makefile +++ /dev/null @@ -1,130 +0,0 @@ -# Makefile for Sphinx documentation -# - -# You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -PAPER = -BUILDDIR = build - -# Internal variables. -PAPEROPT_a4 = -D latex_paper_size=a4 -PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source - -.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest - -help: - @echo "Please use \`make ' where is one of" - @echo " html to make standalone HTML files" - @echo " dirhtml to make HTML files named index.html in directories" - @echo " singlehtml to make a single large HTML file" - @echo " pickle to make pickle files" - @echo " json to make JSON files" - @echo " htmlhelp to make HTML files and a HTML help project" - @echo " qthelp to make HTML files and a qthelp project" - @echo " devhelp to make HTML files and a Devhelp project" - @echo " epub to make an epub" - @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" - @echo " latexpdf to make LaTeX files and run them through pdflatex" - @echo " text to make text files" - @echo " man to make manual pages" - @echo " changes to make an overview of all changed/added/deprecated items" - @echo " linkcheck to check all external links for integrity" - @echo " doctest to run all doctests embedded in the documentation (if enabled)" - -clean: - -rm -rf $(BUILDDIR)/* - -html: - $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." - -dirhtml: - $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." - -singlehtml: - $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml - @echo - @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." - -pickle: - $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle - @echo - @echo "Build finished; now you can process the pickle files." - -json: - $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json - @echo - @echo "Build finished; now you can process the JSON files." - -htmlhelp: - $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp - @echo - @echo "Build finished; now you can run HTML Help Workshop with the" \ - ".hhp project file in $(BUILDDIR)/htmlhelp." - -qthelp: - $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp - @echo - @echo "Build finished; now you can run "qcollectiongenerator" with the" \ - ".qhcp project file in $(BUILDDIR)/qthelp, like this:" - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/template_class.qhcp" - @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/template_class.qhc" - -devhelp: - $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp - @echo - @echo "Build finished." - @echo "To view the help file:" - @echo "# mkdir -p $$HOME/.local/share/devhelp/template_class" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/template_class" - @echo "# devhelp" - -epub: - $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub - @echo - @echo "Build finished. The epub file is in $(BUILDDIR)/epub." - -latex: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo - @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." - @echo "Run \`make' in that directory to run these through (pdf)latex" \ - "(use \`make latexpdf' here to do that automatically)." - -latexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through pdflatex..." - make -C $(BUILDDIR)/latex all-pdf - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -text: - $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text - @echo - @echo "Build finished. The text files are in $(BUILDDIR)/text." - -man: - $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man - @echo - @echo "Build finished. The manual pages are in $(BUILDDIR)/man." - -changes: - $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes - @echo - @echo "The overview file is in $(BUILDDIR)/changes." - -linkcheck: - $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck - @echo - @echo "Link check complete; look for any errors in the above output " \ - "or in $(BUILDDIR)/linkcheck/output.txt." - -doctest: - $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest - @echo "Testing of doctests in the sources finished, look at the " \ - "results in $(BUILDDIR)/doctest/output.txt." diff --git a/CenRa_FLUX/help/make.bat b/CenRa_FLUX/help/make.bat deleted file mode 100644 index 3377610..0000000 --- a/CenRa_FLUX/help/make.bat +++ /dev/null @@ -1,155 +0,0 @@ -@ECHO OFF - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set BUILDDIR=build -set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source -if NOT "%PAPER%" == "" ( - set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% -) - -if "%1" == "" goto help - -if "%1" == "help" ( - :help - echo.Please use `make ^` where ^ is one of - echo. html to make standalone HTML files - echo. dirhtml to make HTML files named index.html in directories - echo. singlehtml to make a single large HTML file - echo. pickle to make pickle files - echo. json to make JSON files - echo. htmlhelp to make HTML files and a HTML help project - echo. qthelp to make HTML files and a qthelp project - echo. devhelp to make HTML files and a Devhelp project - echo. epub to make an epub - echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter - echo. text to make text files - echo. man to make manual pages - echo. changes to make an overview over all changed/added/deprecated items - echo. linkcheck to check all external links for integrity - echo. doctest to run all doctests embedded in the documentation if enabled - goto end -) - -if "%1" == "clean" ( - for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i - del /q /s %BUILDDIR%\* - goto end -) - -if "%1" == "html" ( - %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/html. - goto end -) - -if "%1" == "dirhtml" ( - %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. - goto end -) - -if "%1" == "singlehtml" ( - %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. - goto end -) - -if "%1" == "pickle" ( - %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle - echo. - echo.Build finished; now you can process the pickle files. - goto end -) - -if "%1" == "json" ( - %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json - echo. - echo.Build finished; now you can process the JSON files. - goto end -) - -if "%1" == "htmlhelp" ( - %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp - echo. - echo.Build finished; now you can run HTML Help Workshop with the ^ -.hhp project file in %BUILDDIR%/htmlhelp. - goto end -) - -if "%1" == "qthelp" ( - %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp - echo. - echo.Build finished; now you can run "qcollectiongenerator" with the ^ -.qhcp project file in %BUILDDIR%/qthelp, like this: - echo.^> qcollectiongenerator %BUILDDIR%\qthelp\template_class.qhcp - echo.To view the help file: - echo.^> assistant -collectionFile %BUILDDIR%\qthelp\template_class.ghc - goto end -) - -if "%1" == "devhelp" ( - %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp - echo. - echo.Build finished. - goto end -) - -if "%1" == "epub" ( - %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub - echo. - echo.Build finished. The epub file is in %BUILDDIR%/epub. - goto end -) - -if "%1" == "latex" ( - %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex - echo. - echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. - goto end -) - -if "%1" == "text" ( - %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text - echo. - echo.Build finished. The text files are in %BUILDDIR%/text. - goto end -) - -if "%1" == "man" ( - %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man - echo. - echo.Build finished. The manual pages are in %BUILDDIR%/man. - goto end -) - -if "%1" == "changes" ( - %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes - echo. - echo.The overview file is in %BUILDDIR%/changes. - goto end -) - -if "%1" == "linkcheck" ( - %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck - echo. - echo.Link check complete; look for any errors in the above output ^ -or in %BUILDDIR%/linkcheck/output.txt. - goto end -) - -if "%1" == "doctest" ( - %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest - echo. - echo.Testing of doctests in the sources finished, look at the ^ -results in %BUILDDIR%/doctest/output.txt. - goto end -) - -:end diff --git a/CenRa_FLUX/help/source/conf.py b/CenRa_FLUX/help/source/conf.py deleted file mode 100644 index 1f00a29..0000000 --- a/CenRa_FLUX/help/source/conf.py +++ /dev/null @@ -1,216 +0,0 @@ -# -*- coding: utf-8 -*- -# -# FluxCEN documentation build configuration file, created by -# sphinx-quickstart on Sun Feb 12 17:11:03 2012. -# -# This file is execfile()d with the current directory set to its containing dir. -# -# Note that not all possible configuration values are present in this -# autogenerated file. -# -# All configuration values have a default; values that are commented out -# serve to show the default. - -import sys, os - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -#sys.path.insert(0, os.path.abspath('.')) - -# -- General configuration ----------------------------------------------------- - -# If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' - -# Add any Sphinx extension module names here, as strings. They can be extensions -# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.todo', 'sphinx.ext.imgmath', 'sphinx.ext.viewcode'] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# The suffix of source filenames. -source_suffix = '.rst' - -# The encoding of source files. -#source_encoding = 'utf-8-sig' - -# The master toctree document. -master_doc = 'index' - -# General information about the project. -project = u'FluxCEN' -copyright = u'2013, Romain Montillet' - -# The version info for the project you're documenting, acts as replacement for -# |version| and |release|, also used in various other places throughout the -# built documents. -# -# The short X.Y version. -version = '0.1' -# The full version, including alpha/beta/rc tags. -release = '0.1' - -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -#language = None - -# There are two options for replacing |today|: either, you set today to some -# non-false value, then it is used: -#today = '' -# Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -exclude_patterns = [] - -# The reST default role (used for this markup: `text`) to use for all documents. -#default_role = None - -# If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True - -# If true, the current module name will be prepended to all description -# unit titles (such as .. function::). -#add_TemplateModuleNames = True - -# If true, sectionauthor and moduleauthor directives will be shown in the -# output. They are ignored by default. -#show_authors = False - -# The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' - -# A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] - - -# -- Options for HTML output --------------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -html_theme = 'default' - -# Theme options are theme-specific and customize the look and feel of a theme -# further. For a list of options available for each theme, see the -# documentation. -#html_theme_options = {} - -# Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] - -# The name for this set of Sphinx documents. If None, it defaults to -# " v documentation". -#html_title = None - -# A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None - -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -#html_logo = None - -# The name of an image file (within the static path) to use as favicon of the -# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 -# pixels large. -#html_favicon = None - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] - -# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, -# using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' - -# If true, SmartyPants will be used to convert quotes and dashes to -# typographically correct entities. -#html_use_smartypants = True - -# Custom sidebar templates, maps document names to template names. -#html_sidebars = {} - -# Additional templates that should be rendered to pages, maps page names to -# template names. -#html_additional_pages = {} - -# If false, no module index is generated. -#html_domain_indices = True - -# If false, no index is generated. -#html_use_index = True - -# If true, the index is split into individual pages for each letter. -#html_split_index = False - -# If true, links to the reST sources are added to the pages. -#html_show_sourcelink = True - -# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True - -# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -#html_show_copyright = True - -# If true, an OpenSearch description file will be output, and all pages will -# contain a tag referring to it. The value of this option must be the -# base URL from which the finished HTML is served. -#html_use_opensearch = '' - -# This is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = None - -# Output file base name for HTML help builder. -htmlhelp_basename = 'TemplateClassdoc' - - -# -- Options for LaTeX output -------------------------------------------------- - -# The paper size ('letter' or 'a4'). -#latex_paper_size = 'letter' - -# The font size ('10pt', '11pt' or '12pt'). -#latex_font_size = '10pt' - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, author, documentclass [howto/manual]). -latex_documents = [ - ('index', 'FluxCEN.tex', u'FluxCEN Documentation', - u'Romain Montillet', 'manual'), -] - -# The name of an image file (relative to this directory) to place at the top of -# the title page. -#latex_logo = None - -# For "manual" documents, if this is true, then toplevel headings are parts, -# not chapters. -#latex_use_parts = False - -# If true, show page references after internal links. -#latex_show_pagerefs = False - -# If true, show URL addresses after external links. -#latex_show_urls = False - -# Additional stuff for the LaTeX preamble. -#latex_preamble = '' - -# Documents to append as an appendix to all manuals. -#latex_appendices = [] - -# If false, no module index is generated. -#latex_domain_indices = True - - -# -- Options for manual page output -------------------------------------------- - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - ('index', 'TemplateClass', u'FluxCEN Documentation', - [u'Romain Montillet'], 1) -] diff --git a/CenRa_FLUX/help/source/index.rst b/CenRa_FLUX/help/source/index.rst deleted file mode 100644 index ba3ae4a..0000000 --- a/CenRa_FLUX/help/source/index.rst +++ /dev/null @@ -1,20 +0,0 @@ -.. FluxCEN documentation master file, created by - sphinx-quickstart on Sun Feb 12 17:11:03 2012. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to FluxCEN's documentation! -============================================ - -Contents: - -.. toctree:: - :maxdepth: 2 - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` - diff --git a/CenRa_FLUX/i18n/af.ts b/CenRa_FLUX/i18n/af.ts deleted file mode 100644 index 615a88c..0000000 --- a/CenRa_FLUX/i18n/af.ts +++ /dev/null @@ -1,11 +0,0 @@ - - - - @default - - - Good morning - Goeie more - - - diff --git a/CenRa_FLUX/cenra.png b/CenRa_FLUX/icon.png similarity index 100% rename from CenRa_FLUX/cenra.png rename to CenRa_FLUX/icon.png diff --git a/CenRa_FLUX/info_metadata.png b/CenRa_FLUX/info_metadata.png deleted file mode 100644 index 6f51443..0000000 Binary files a/CenRa_FLUX/info_metadata.png and /dev/null differ diff --git a/CenRa_FLUX/issues.py b/CenRa_FLUX/issues.py new file mode 100644 index 0000000..eeda1fc --- /dev/null +++ b/CenRa_FLUX/issues.py @@ -0,0 +1,88 @@ +import os +plugin_dir = os.path.dirname(__file__) +end_find = plugin_dir.rfind('\\')+1 + +NAME = plugin_dir[end_find:] + +from qgis.gui import * + +from qgis.core import ( + NULL, + QgsApplication, + QgsDataSourceUri, + QgsProject, + QgsProviderConnectionException, + QgsProviderRegistry, + QgsRasterLayer, + QgsSettings, + QgsVectorLayer, + QgsGeometry, +) +from qgis.PyQt.QtWidgets import ( + QDialog, + QAction, + QDockWidget, + QFileDialog, + QInputDialog, + QMenu, + QToolButton, + QTableWidget, + QTableWidgetItem, +) +from qgis.utils import iface + + +from .tools.resources import ( + load_ui, + resources_path, + send_issues, +) + +EDITOR_CLASS = load_ui('CenRa_IssuesSend.ui') + +class CenRa_Issues(QDialog, EDITOR_CLASS): + + def __init__(self, parent=None): + _ = parent + super().__init__() + self.setupUi(self) + self.settings = QgsSettings() + + #place connect here + self.annuler_button.clicked.connect(self.close) + self.ok_button.clicked.connect(self.run_sendissues) + + def run_sendissues(self): + text_titre = self.titre_line.text() + text_message = self.messages_plain.toPlainText() + statu_bug = self.check_bug.isChecked() + statu_aide = self.check_aide.isChecked() + statu_question = self.check_question.isChecked() + statu_amelioration = self.check_amelioration.isChecked() + statu_autre = self.check_autre.isChecked() + + statu = [] + if statu_bug == True : statu = statu + [1] + if statu_aide == True : statu = statu + [3] + if statu_question == True : statu = statu + [5] + if statu_amelioration == True : statu = statu + [2] + if statu_autre == True : statu = statu + [6] + + if len(statu) >= 1: + import qgis + url = qgis.utils.pluginMetadata(NAME,'tracker') + print(text_message) + send_info = send_issues(url,text_titre,text_message,statu) + code = send_info.status_code + print(code) + else: + code = 423 + if code == 201: + iface.messageBar().pushMessage("Envoyer :", "Votre messages à bien été envoyer.", level=Qgis.Success, duration=20) + self.close() + elif code == 422: + iface.messageBar().pushMessage("Erreur :", "Erreur dans le contenu du messages.", level=Qgis.Critical, duration=20) + elif code == 423: + iface.messageBar().pushMessage("Erreur :", "Pas de sujet sélectionné.", level=Qgis.Critical, duration=20) + elif code == 404: + iface.messageBar().pushMessage("Missing :", "Le serveur de messagerie est injoignable.", level=Qgis.Warning, duration=20) diff --git a/CenRa_FLUX/logo.png b/CenRa_FLUX/logo.png deleted file mode 100644 index 95ead1c..0000000 Binary files a/CenRa_FLUX/logo.png and /dev/null differ diff --git a/CenRa_FLUX/metadata.png b/CenRa_FLUX/metadata.png deleted file mode 100644 index 7d23dc3..0000000 Binary files a/CenRa_FLUX/metadata.png and /dev/null differ diff --git a/CenRa_FLUX/metadata.txt b/CenRa_FLUX/metadata.txt index 0208c39..1a7b13e 100644 --- a/CenRa_FLUX/metadata.txt +++ b/CenRa_FLUX/metadata.txt @@ -6,7 +6,7 @@ name=CenRa_FLUX qgisMinimumVersion=3.0 description=Permet d'ouvrire une table dans la base PostGis -version=1.14 +version=2.0 author=Conservatoire d'Espaces Naturels de Rhône-Alpes email=si_besoin@cen-rhonealpes.fr @@ -28,11 +28,11 @@ homepage=https://plateformesig.cenra-outils.org/ tracker=https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS category=Plugins -icon=cenra.png +icon=icon.png # experimental flag experimental=False -changelog=

CenRA_FLUX:


03/10/2024 - Version 1.14:

- Remonte la fênetre dans la pille.

13/09/2024 - Version 1.13:

- MAJ sur le lien du changelog
- Bug-fix: Ouvre MultiPolygone et Polygon séparément.


10/09/2024 - Version 1.11:

- Ouverture de table contenant plusieurs géométries.


26/08/2024 - Version 1.10:

- Ajoute d'un changelog et vérification de mise à jour.

+changelog=

CenRA_FLUX:


22/10/2024 - Version 2.0:

- Reformatage du code.


03/10/2024 - Version 1.14:

- Remonte la fênetre dans la pille.

13/09/2024 - Version 1.13:

- MAJ sur le lien du changelog
- Bug-fix: Ouvre MultiPolygone et Polygon séparément.


10/09/2024 - Version 1.11:

- Ouverture de table contenant plusieurs géométries.


26/08/2024 - Version 1.10:

- Ajoute d'un changelog et vérification de mise à jour.

# deprecated flag (applies to the whole plugin, not just a single version) deprecated=False diff --git a/CenRa_FLUX/missing_metadata.html b/CenRa_FLUX/missing_metadata.html deleted file mode 100644 index c1daf80..0000000 --- a/CenRa_FLUX/missing_metadata.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - No Metadata - - -
-
- Another Image -
-
- Metadata Image -
-
-

Pas de métadonnées encore associées à cette ressource ! Revenez plus tard 😎

- - diff --git a/CenRa_FLUX/pb_tool.cfg b/CenRa_FLUX/pb_tool.cfg deleted file mode 100644 index 6338331..0000000 --- a/CenRa_FLUX/pb_tool.cfg +++ /dev/null @@ -1,80 +0,0 @@ -#/*************************************************************************** -# FluxCEN -# -# Configuration file for plugin builder tool (pb_tool) -# Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/ -# ------------------- -# begin : 2022-04-04 -# copyright : (C) 2022 by Romain Montillet -# email : r.montillet@cen-na.org -# ***************************************************************************/ -# -#/*************************************************************************** -# * * -# * This program is free software; 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. * -# * * -# ***************************************************************************/ -# -# -# You can install pb_tool using: -# pip install http://geoapt.net/files/pb_tool.zip -# -# Consider doing your development (and install of pb_tool) in a virtualenv. -# -# For details on setting up and using pb_tool, see: -# http://g-sherman.github.io/plugin_build_tool/ -# -# Issues and pull requests here: -# https://github.com/g-sherman/plugin_build_tool: -# -# Sane defaults for your plugin generated by the Plugin Builder are -# already set below. -# -# As you add Python source files and UI files to your plugin, add -# them to the appropriate [files] section below. - -[plugin] -# Name of the plugin. This is the name of the directory that will -# be created in .qgis2/python/plugins -name: FluxCEN - -# Full path to where you want your plugin directory copied. If empty, -# the QGIS default path will be used. Don't include the plugin name in -# the path. -plugin_path: - -[files] -# Python files that should be deployed with the plugin -python_files: __init__.py FluxCEN.py FluxCEN_dialog.py - -# The main dialog file that is loaded (not compiled) -main_dialog: FluxCEN_dialog_base.ui - -# Other ui files for dialogs you create (these will be compiled) -compiled_ui_files: - -# Resource file(s) that will be compiled -resource_files: resources.qrc - -# Other files required for the plugin -extras: metadata.txt icon.png - -# Other directories to be deployed with the plugin. -# These must be subdirectories under the plugin directory -extra_dirs: - -# ISO code(s) for any locales (translations), separated by spaces. -# Corresponding .ts files must exist in the i18n directory -locales: - -[help] -# the built help directory that should be deployed with the plugin -dir: help/build/html -# the name of the directory to target in the deployed plugin -target: help - - - diff --git a/CenRa_FLUX/plugin_upload.py b/CenRa_FLUX/plugin_upload.py deleted file mode 100644 index a88ea2b..0000000 --- a/CenRa_FLUX/plugin_upload.py +++ /dev/null @@ -1,111 +0,0 @@ -#!/usr/bin/env python -# coding=utf-8 -"""This script uploads a plugin package to the plugin repository. - Authors: A. Pasotti, V. Picavet - git sha : $TemplateVCSFormat -""" - -import sys -import getpass -import xmlrpc.client -from optparse import OptionParser - -standard_library.install_aliases() - -# Configuration -PROTOCOL = 'https' -SERVER = 'plugins.qgis.org' -PORT = '443' -ENDPOINT = '/plugins/RPC2/' -VERBOSE = False - - -def main(parameters, arguments): - """Main entry point. - - :param parameters: Command line parameters. - :param arguments: Command line arguments. - """ - address = "{protocol}://{username}:{password}@{server}:{port}{endpoint}".format( - protocol=PROTOCOL, - username=parameters.username, - password=parameters.password, - server=parameters.server, - port=parameters.port, - endpoint=ENDPOINT) - print("Connecting to: %s" % hide_password(address)) - - server = xmlrpc.client.ServerProxy(address, verbose=VERBOSE) - - try: - with open(arguments[0], 'rb') as handle: - plugin_id, version_id = server.plugin.upload( - xmlrpc.client.Binary(handle.read())) - print("Plugin ID: %s" % plugin_id) - print("Version ID: %s" % version_id) - except xmlrpc.client.ProtocolError as err: - print("A protocol error occurred") - print("URL: %s" % hide_password(err.url, 0)) - print("HTTP/HTTPS headers: %s" % err.headers) - print("Error code: %d" % err.errcode) - print("Error message: %s" % err.errmsg) - except xmlrpc.client.Fault as err: - print("A fault occurred") - print("Fault code: %d" % err.faultCode) - print("Fault string: %s" % err.faultString) - - -def hide_password(url, start=6): - """Returns the http url with password part replaced with '*'. - - :param url: URL to upload the plugin to. - :type url: str - - :param start: Position of start of password. - :type start: int - """ - start_position = url.find(':', start) + 1 - end_position = url.find('@') - return "%s%s%s" % ( - url[:start_position], - '*' * (end_position - start_position), - url[end_position:]) - - -if __name__ == "__main__": - parser = OptionParser(usage="%prog [options] plugin.zip") - parser.add_option( - "-w", "--password", dest="password", - help="Password for plugin site", metavar="******") - parser.add_option( - "-u", "--username", dest="username", - help="Username of plugin site", metavar="user") - parser.add_option( - "-p", "--port", dest="port", - help="Server port to connect to", metavar="80") - parser.add_option( - "-s", "--server", dest="server", - help="Specify server name", metavar="plugins.qgis.org") - options, args = parser.parse_args() - if len(args) != 1: - print("Please specify zip file.\n") - parser.print_help() - sys.exit(1) - if not options.server: - options.server = SERVER - if not options.port: - options.port = PORT - if not options.username: - # interactive mode - username = getpass.getuser() - print("Please enter user name [%s] :" % username, end=' ') - - res = input() - if res != "": - options.username = res - else: - options.username = username - if not options.password: - # interactive mode - options.password = getpass.getpass() - main(options, args) diff --git a/CenRa_FLUX/pylintrc b/CenRa_FLUX/pylintrc deleted file mode 100644 index 7e168f6..0000000 --- a/CenRa_FLUX/pylintrc +++ /dev/null @@ -1,281 +0,0 @@ -[MASTER] - -# Specify a configuration file. -#rcfile= - -# Python code to execute, usually for sys.path manipulation such as -# pygtk.require(). -#init-hook= - -# Profiled execution. -profile=no - -# Add files or directories to the blacklist. They should be base names, not -# paths. -ignore=CVS - -# Pickle collected data for later comparisons. -persistent=yes - -# List of plugins (as comma separated values of python modules names) to load, -# usually to register additional checkers. -load-plugins= - - -[MESSAGES CONTROL] - -# Enable the message, report, category or checker with the given id(s). You can -# either give multiple identifier separated by comma (,) or put this option -# multiple time. See also the "--disable" option for examples. -#enable= - -# Disable the message, report, category or checker with the given id(s). You -# can either give multiple identifiers separated by comma (,) or put this -# option multiple times (only on the command line, not in the configuration -# file where it should appear only once).You can also use "--disable=all" to -# disable everything first and then reenable specific checks. For example, if -# you want to run only the similarities checker, you can use "--disable=all -# --enable=similarities". If you want to run only the classes checker, but have -# no Warning level messages displayed, use"--disable=all --enable=classes -# --disable=W" -# see http://stackoverflow.com/questions/21487025/pylint-locally-defined-disables-still-give-warnings-how-to-suppress-them -disable=locally-disabled,C0103 - - -[REPORTS] - -# Set the output format. Available formats are text, parseable, colorized, msvs -# (visual studio) and html. You can also give a reporter class, eg -# mypackage.mymodule.MyReporterClass. -output-format=text - -# Put messages in a separate file for each module / package specified on the -# command line instead of printing them on stdout. Reports (if any) will be -# written in a file name "pylint_global.[txt|html]". -files-output=no - -# Tells whether to display a full report or only the messages -reports=yes - -# Python expression which should return a note less than 10 (10 is the highest -# note). You have access to the variables errors warning, statement which -# respectively contain the number of errors / warnings messages and the total -# number of statements analyzed. This is used by the global evaluation report -# (RP0004). -evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) - -# Add a comment according to your evaluation note. This is used by the global -# evaluation report (RP0004). -comment=no - -# Template used to display messages. This is a python new-style format string -# used to format the message information. See doc for all details -#msg-template= - - -[BASIC] - -# Required attributes for module, separated by a comma -required-attributes= - -# List of builtins function names that should not be used, separated by a comma -bad-functions=map,filter,apply,input - -# Regular expression which should only match correct module names -module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ - -# Regular expression which should only match correct module level names -const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ - -# Regular expression which should only match correct class names -class-rgx=[A-Z_][a-zA-Z0-9]+$ - -# Regular expression which should only match correct function names -function-rgx=[a-z_][a-z0-9_]{2,30}$ - -# Regular expression which should only match correct method names -method-rgx=[a-z_][a-z0-9_]{2,30}$ - -# Regular expression which should only match correct instance attribute names -attr-rgx=[a-z_][a-z0-9_]{2,30}$ - -# Regular expression which should only match correct argument names -argument-rgx=[a-z_][a-z0-9_]{2,30}$ - -# Regular expression which should only match correct variable names -variable-rgx=[a-z_][a-z0-9_]{2,30}$ - -# Regular expression which should only match correct attribute names in class -# bodies -class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ - -# Regular expression which should only match correct list comprehension / -# generator expression variable names -inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ - -# Good variable names which should always be accepted, separated by a comma -good-names=i,j,k,ex,Run,_ - -# Bad variable names which should always be refused, separated by a comma -bad-names=foo,bar,baz,toto,tutu,tata - -# Regular expression which should only match function or class names that do -# not require a docstring. -no-docstring-rgx=__.*__ - -# Minimum line length for functions/classes that require docstrings, shorter -# ones are exempt. -docstring-min-length=-1 - - -[MISCELLANEOUS] - -# List of note tags to take in consideration, separated by a comma. -notes=FIXME,XXX,TODO - - -[TYPECHECK] - -# Tells whether missing members accessed in mixin class should be ignored. A -# mixin class is detected if its name ends with "mixin" (case insensitive). -ignore-mixin-members=yes - -# List of classes names for which member attributes should not be checked -# (useful for classes with attributes dynamically set). -ignored-classes=SQLObject - -# When zope mode is activated, add a predefined set of Zope acquired attributes -# to generated-members. -zope=no - -# List of members which are set dynamically and missed by pylint inference -# system, and so shouldn't trigger E0201 when accessed. Python regular -# expressions are accepted. -generated-members=REQUEST,acl_users,aq_parent - - -[VARIABLES] - -# Tells whether we should check for unused import in __init__ files. -init-import=no - -# A regular expression matching the beginning of the name of dummy variables -# (i.e. not used). -dummy-variables-rgx=_$|dummy - -# List of additional names supposed to be defined in builtins. Remember that -# you should avoid to define new builtins when possible. -additional-builtins= - - -[FORMAT] - -# Maximum number of characters on a single line. -max-line-length=80 - -# Regexp for a line that is allowed to be longer than the limit. -ignore-long-lines=^\s*(# )??$ - -# Allow the body of an if to be on the same line as the test if there is no -# else. -single-line-if-stmt=no - -# List of optional constructs for which whitespace checking is disabled -no-space-check=trailing-comma,dict-separator - -# Maximum number of lines in a module -max-module-lines=1000 - -# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 -# tab). -indent-string=' ' - - -[SIMILARITIES] - -# Minimum lines number of a similarity. -min-similarity-lines=4 - -# Ignore comments when computing similarities. -ignore-comments=yes - -# Ignore docstrings when computing similarities. -ignore-docstrings=yes - -# Ignore imports when computing similarities. -ignore-imports=no - - -[IMPORTS] - -# Deprecated modules which should not be used, separated by a comma -deprecated-modules=regsub,TERMIOS,Bastion,rexec - -# Create a graph of every (i.e. internal and external) dependencies in the -# given file (report RP0402 must not be disabled) -import-graph= - -# Create a graph of external dependencies in the given file (report RP0402 must -# not be disabled) -ext-import-graph= - -# Create a graph of internal dependencies in the given file (report RP0402 must -# not be disabled) -int-import-graph= - - -[DESIGN] - -# Maximum number of arguments for function / method -max-args=5 - -# Argument names that match this expression will be ignored. Default to name -# with leading underscore -ignored-argument-names=_.* - -# Maximum number of locals for function / method body -max-locals=15 - -# Maximum number of return / yield for function / method body -max-returns=6 - -# Maximum number of branch for function / method body -max-branches=12 - -# Maximum number of statements in function / method body -max-statements=50 - -# Maximum number of parents for a class (see R0901). -max-parents=7 - -# Maximum number of attributes for a class (see R0902). -max-attributes=7 - -# Minimum number of public methods for a class (see R0903). -min-public-methods=2 - -# Maximum number of public methods for a class (see R0904). -max-public-methods=20 - - -[CLASSES] - -# List of interface methods to ignore, separated by a comma. This is used for -# instance to not check methods defines in Zope's Interface base class. -ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by - -# List of method names used to declare (i.e. assign) instance attributes. -defining-attr-methods=__init__,__new__,setUp - -# List of valid names for the first argument in a class method. -valid-classmethod-first-arg=cls - -# List of valid names for the first argument in a metaclass class method. -valid-metaclass-classmethod-first-arg=mcs - - -[EXCEPTIONS] - -# Exceptions that will emit a warning when being caught. Defaults to -# "Exception" -overgeneral-exceptions=Exception diff --git a/CenRa_FLUX/resources.py b/CenRa_FLUX/resources.py deleted file mode 100644 index 046375d..0000000 --- a/CenRa_FLUX/resources.py +++ /dev/null @@ -1,5194 +0,0 @@ -# -*- coding: utf-8 -*- - -# Resource object code -# -# Created by: The Resource Compiler for PyQt5 (Qt v5.15.2) -# -# WARNING! All changes made in this file will be lost! - -from PyQt5 import QtCore - -qt_resource_data = b"\ -\x00\x00\x24\xa2\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ -\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\ -\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\ -\x0e\x1b\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\x24\x02\x49\x44\x41\x54\x78\ -\x5e\xed\xdd\x09\x90\x25\x77\x7d\x1f\xf0\xfe\xbf\x59\xed\xce\x0a\ -\x81\x24\x8c\x10\x20\x17\x97\xec\x72\x38\x1c\x3b\x0e\x4e\x28\x11\ -\xd8\x5d\xb0\x43\x38\x6c\xe1\x63\x77\x56\x38\xe6\xb2\x63\xc0\x36\ -\xb1\xc1\x42\xbb\x12\xc6\x19\x3b\x16\x3b\x63\x99\xb3\x5c\x29\x63\ -\xc7\x1c\xc5\xa1\x3d\x5c\xf1\x91\x0a\xb6\x63\xa4\x9d\x11\x42\x60\ -\x07\x27\xc4\x20\x24\x81\x2d\xdb\x55\x49\x55\x40\x50\xdc\xec\x6a\ -\x77\xe7\x75\xba\xf7\xf5\x20\xac\xd5\xcc\xbc\xa3\x8f\x7f\x77\x7f\ -\x3e\x55\xcb\xeb\x7f\xaf\x80\x99\xd6\xcc\x7b\xdf\xd7\xdd\xbf\xef\ -\x0b\x09\xd0\x69\x8b\xc7\x5f\x32\xbf\x63\x70\xe2\x19\x61\x98\xfe\ -\x8b\x90\x84\x27\xa7\x21\xbd\x24\x49\x42\xf6\x27\x7d\x58\xf6\x98\ -\x3f\x07\xdc\x93\xfd\xf9\x42\xb6\xfd\xb9\x10\x86\x9f\x4a\xd7\x92\ -\x8f\x6e\x9f\x4f\x6f\x79\xcd\x15\xc7\x4e\x9c\xfd\x1f\x00\x3a\x49\ -\x00\x80\x0e\x3a\x7a\x74\xef\xdc\xdd\x0f\x0f\xcf\xcd\x7e\xc5\x5f\ -\x92\x2d\xff\x4d\xf6\xe7\xfc\xb3\x7f\x31\xbe\x13\xd9\xb3\xc3\x7f\ -\x4f\xd6\x92\x77\x9e\x0c\x9f\xfd\x6f\x8b\x7b\x56\xce\x14\xfb\x81\ -\x8e\x10\x00\xa0\x43\x16\xd3\xc5\xc1\x8e\x95\x3b\x5f\x14\x42\x7a\ -\x5d\xb6\xfc\xce\xd1\xde\x99\xdd\x9d\xa6\xc9\xa1\xcb\xef\x19\xbe\ -\x73\xdf\xbe\x63\x6b\xc5\x3e\xa0\xe5\x04\x00\xe8\x88\xdf\xb8\x65\ -\xe1\xfb\x86\xc3\xe4\xed\xd9\xe6\x53\x46\x7b\x4a\xf7\xf1\x30\x18\ -\xbe\xfc\xc0\x33\x8e\xfd\x65\xb1\x06\x5a\x6c\x50\x3c\x02\x2d\xb6\ -\x7c\x7c\xe1\x17\xb3\x17\xff\x8f\x64\x9b\x55\xbd\xf8\xe7\xbe\x37\ -\x1d\x0e\x6e\x5d\x3a\xbe\xff\xea\x34\xf5\xe6\x01\xda\xce\x2f\x31\ -\xb4\xd8\xe8\x5a\xff\xe0\xcd\xd9\xe6\xab\x46\x7b\x6a\xf3\xce\x8b\ -\x2f\xb8\xf0\xe5\x2f\x7f\xca\xef\x9c\x2e\xd6\x40\xcb\x38\x03\x00\ -\x2d\x95\xbf\x0b\xcf\x5e\xfc\xdf\x91\x6d\xd6\xfd\xe2\x9f\x7b\xe9\ -\x17\xbf\xf6\x95\xf7\xe6\xf7\x1c\x14\x6b\xa0\x65\xe6\x8a\x47\xa0\ -\x65\x76\xee\x59\x58\xce\x1e\x7e\x76\xb4\x6a\xc4\x93\xb6\xfd\xfd\ -\xe7\x2f\xfa\xe0\xbb\x6f\xff\xd3\x62\x0d\xb4\x88\x4b\x00\xd0\x42\ -\x4b\x37\x2f\x5c\x99\x0c\x92\x3f\xc8\x36\x9b\xff\x1d\x0e\xe9\xc2\ -\xc1\x5d\x47\x8f\x16\x2b\xa0\x25\x04\x00\x68\x99\x37\xdd\xb6\xf7\ -\xa1\xa7\x4e\x0d\xee\xcc\x36\x2f\x19\xed\x69\xdc\x17\x87\x83\xe1\ -\x77\x5d\xf7\x8c\x63\x79\xa1\x10\xd0\x12\xae\xdf\x41\xcb\x9c\x3e\ -\x3d\x77\x7d\xf6\x10\xcb\x8b\x7f\xee\xe2\xc1\xda\xe0\x50\xb1\x0d\ -\xb4\x84\x33\x00\xd0\x22\xbf\x79\xd3\x0b\x1f\x73\x66\x6e\xed\x33\ -\xd9\xe6\x79\xa3\x3d\xd1\x58\x1b\xac\x25\xdf\x75\xcd\xb3\x8e\xfc\ -\x6d\xb1\x06\x22\xe7\x0c\x00\xb4\xc8\x99\xc1\xda\xab\xb3\x87\xd8\ -\x5e\xfc\x73\x73\xe9\xb6\x70\x75\xb1\x0d\xb4\x80\x33\x00\xd0\x12\ -\x8b\xb7\xef\xdd\x3e\x7f\xcf\xe0\xff\x66\x9b\x0f\x1b\xed\x89\xce\ -\x97\x4e\xa6\x3b\x1f\xb9\xb8\xe7\x5d\x27\x8b\x35\x10\x31\x67\x00\ -\xa0\x25\xe6\x3f\x3b\xf7\x83\xd9\x43\xac\x2f\xfe\xb9\x8b\x76\x84\ -\x93\xcf\x29\xb6\x81\xc8\x09\x00\xd0\x16\x21\xcd\x03\x40\xd4\x42\ -\x12\xff\xd7\x08\x8c\x08\x00\xd0\x16\x21\xd9\x55\x6c\xc5\xac\x0d\ -\x5f\x23\x90\x11\x00\xa0\x05\x16\x8f\xef\xde\x96\x3d\x3c\x71\xb4\ -\x8a\xda\x77\xe5\xf7\x2a\x14\xdb\x40\xc4\x04\x00\x68\x81\xf3\x07\ -\x8f\x7a\x5c\xf6\xd0\x86\x17\xd6\xb9\x9d\x9f\x1f\x5c\x5e\x6c\x03\ -\x11\x13\x00\xa0\x05\x86\xe9\xda\x77\x14\x9b\xd1\x0b\xc3\x44\x00\ -\x80\x16\x10\x00\xa0\x05\xd2\x34\xb9\xac\xd8\x8c\xde\x5a\x92\x7e\ -\x7b\xb1\x09\x44\x4c\x00\x80\x56\x08\xad\x79\x51\x0d\x83\x41\x6b\ -\xc2\x0a\xf4\x99\x00\x00\x2d\x10\x42\xfa\xe8\x62\x33\x7e\x69\x8b\ -\xbe\x56\xe8\x31\x01\x00\xda\xa1\x3d\xef\xaa\x43\x8b\xbe\x56\xe8\ -\x31\x01\x00\xda\xa1\x3d\xd7\xd5\x5b\x74\xbf\x02\xf4\x99\x00\x00\ -\xed\xd0\xa6\xd3\xea\x2e\x01\x40\x0b\x08\x00\x10\xb9\x37\xdd\xb6\ -\x77\x67\xf6\x70\xc1\x68\xd5\x0a\xe7\x17\x5f\x33\x10\x31\x01\x00\ -\x22\x77\xef\xda\x79\x8f\x2c\x36\x5b\xa3\x8d\x5f\x33\xf4\x8d\x00\ -\x00\xb1\x3b\x73\xe6\xf1\xc5\x56\x7b\xb4\xf1\x6b\x86\x9e\x11\x00\ -\x20\x72\x61\x10\x1e\x55\x6c\xb6\x46\x1b\xbf\x66\xe8\x1b\x01\x00\ -\x22\x97\x26\xa1\x75\xa7\xd3\xdb\xf8\x35\x43\xdf\x08\x00\x10\xb9\ -\x41\x9a\xb6\xee\x74\x7a\x1b\xbf\x66\xe8\x1b\x01\x00\x22\x37\x4c\ -\x92\xd6\x9d\x4e\x6f\xe3\xd7\x0c\x7d\x23\x00\x40\xe4\x42\x68\xdf\ -\xe9\xf4\x36\x7e\xcd\xd0\x37\x02\x00\xc4\x2e\x4d\xdb\xf7\xf1\xba\ -\x69\xda\x9a\x8f\x2f\x86\xbe\x12\x00\x20\x62\x45\xa1\xce\x45\xa3\ -\x55\xab\x5c\xa8\x0c\x08\xe2\x26\x00\x40\xc4\xda\x5c\xa8\xa3\x0c\ -\x08\xe2\x26\x00\x40\xcc\xda\x5c\xa8\xa3\x0c\x08\xa2\x26\x00\x40\ -\xc4\xda\x5c\xa8\xa3\x0c\x08\xe2\x26\x00\x40\xc4\xda\x5c\xa8\xa3\ -\x0c\x08\xe2\x26\x00\x40\xc4\xda\x5c\xa8\xa3\x0c\x08\xe2\x26\x00\ -\x40\xc4\xda\x5c\xa8\xa3\x0c\x08\xe2\x26\x00\x40\xc4\xda\x5c\xa8\ -\xa3\x0c\x08\xe2\x26\x00\x40\xcc\xda\x7c\x1a\x5d\x19\x10\x44\x4d\ -\x00\x80\x48\x15\x45\x3a\x17\x8f\x56\xad\xa4\x0c\x08\x22\x26\x00\ -\x40\xa4\xba\x50\xa4\xa3\x0c\x08\xe2\x25\x00\x40\xac\xba\x50\xa4\ -\xa3\x0c\x08\xa2\x25\x00\x40\xa4\xba\x50\xa4\xa3\x0c\x08\xe2\x25\ -\x00\x40\xa4\xba\x50\xa4\xa3\x0c\x08\xe2\x25\x00\x40\xa4\xba\x50\ -\xa4\xa3\x0c\x08\xe2\x25\x00\x40\xa4\xba\x50\xa4\xa3\x0c\x08\xe2\ -\x25\x00\x40\xa4\xba\x50\xa4\xa3\x0c\x08\xe2\x25\x00\x40\xac\xba\ -\x70\xfa\x3c\x4d\x2f\x2f\xb6\x80\xc8\x08\x00\x10\xa1\x0e\x94\x00\ -\xad\xbb\x48\x19\x10\xc4\x49\x00\x80\x08\x75\xa9\x40\x47\x19\x10\ -\xc4\x49\x00\x80\x18\x75\xa9\x40\x47\x19\x10\x44\x49\x00\x80\x08\ -\x75\xa9\x40\x47\x19\x10\xc4\x49\x00\x80\x08\x75\xa9\x40\x47\x19\ -\x10\xc4\x49\x00\x80\x08\x75\xa9\x40\x47\x19\x10\xc4\x49\x00\x80\ -\x08\x75\xa9\x40\x47\x19\x10\xc4\x49\x00\x80\x08\x75\xa9\x40\x47\ -\x19\x10\xc4\x49\x00\x80\x18\x75\xe9\xb4\xb9\x32\x20\x88\x92\x00\ -\x00\x91\xe9\x50\x09\xd0\x3a\x65\x40\x10\x21\x01\x00\x22\xd3\xc5\ -\xe2\x1c\x65\x40\x10\x1f\x01\x00\x62\xd3\xc5\xe2\x1c\x65\x40\x10\ -\x1d\x01\x00\x22\xd3\xc5\xe2\x1c\x65\x40\x10\x1f\x01\x00\x22\xd3\ -\xc5\xe2\x1c\x65\x40\x10\x1f\x01\x00\x22\xd3\xc5\xe2\x1c\x65\x40\ -\x10\x1f\x01\x00\x22\xd3\xc5\xe2\x1c\x65\x40\x10\x1f\x01\x00\x22\ -\xd3\xc5\xe2\x1c\x65\x40\x10\x1f\x01\x00\x62\xd3\xc5\xd3\xe5\xca\ -\x80\x20\x3a\x02\x00\x44\xa4\x83\x25\x40\xeb\x94\x01\x41\x64\x04\ -\x00\x88\x48\x97\x0b\x73\x94\x01\x41\x5c\x04\x00\x88\x48\x38\x73\ -\xba\xbb\x37\xcb\x29\x03\x82\xa8\x08\x00\x10\x91\x34\x0c\x3a\xfb\ -\x2e\x59\x19\x10\xc4\x45\x00\x80\x98\x84\xd0\xd9\x77\xc9\xca\x80\ -\x20\x2e\x02\x00\xc4\x24\x1d\x76\xf6\x5d\xb2\x32\x20\x88\x8b\x00\ -\x00\x11\x19\x74\xf8\x5d\xb2\x32\x20\x88\x8b\x00\x00\x11\x49\x3b\ -\x7c\x09\x40\x19\x10\xc4\x45\x00\x80\x98\x74\xf8\x12\x80\x32\x20\ -\x88\x8b\x00\x00\x91\x58\x3c\xfe\x92\xf9\xec\x7d\x72\x97\xdf\x25\ -\x2b\x03\x82\x88\x08\x00\x10\x89\x1d\xdb\x4e\x75\xfe\x1a\xb9\x32\ -\x20\x88\x87\x00\x00\x91\xe8\x74\x09\xd0\x3a\x65\x40\x10\x0d\x01\ -\x00\x22\xd1\xe5\x12\xa0\x75\xca\x80\x20\x1e\x02\x00\xc4\xa2\xc3\ -\x13\x00\xeb\x94\x01\x41\x3c\x04\x00\x88\x45\x97\x27\x00\x0a\xca\ -\x80\x20\x1e\x02\x00\x44\xa2\xcb\x25\x40\xeb\x94\x01\x41\x3c\x04\ -\x00\x88\x44\x97\x4b\x80\xd6\x29\x03\x82\x78\x08\x00\x10\x8b\x1e\ -\x5c\x02\x48\x5c\x02\x80\x68\x08\x00\x10\x81\x1e\x94\x00\xad\xbb\ -\x58\x19\x10\xc4\x41\x00\x80\x08\xf4\xa1\x04\x68\x9d\x32\x20\x88\ -\x83\x00\x00\x11\xe8\x45\x09\xd0\x3a\x65\x40\x10\x05\x01\x00\x22\ -\xd0\x87\x12\xa0\x75\xca\x80\x20\x0e\x02\x00\xc4\xa0\x07\x13\x00\ -\xeb\x94\x01\x41\x1c\x04\x00\x88\x41\x1f\x26\x00\xd6\xf5\xe9\x7b\ -\x85\x88\x09\x00\x10\x81\x3e\x94\x00\xad\xeb\xd3\xf7\x0a\x31\x13\ -\x00\x20\x02\x7d\x28\x01\x5a\xd7\xa7\xef\x15\x62\x26\x00\x40\x0c\ -\x5c\x02\x00\x6a\x26\x00\x40\xc3\x7a\x54\x02\x54\x08\x8f\x1c\x7d\ -\xcf\x40\x93\x04\x00\x68\x58\x9f\x4a\x80\xd6\xf5\xf1\x7b\x86\xd8\ -\x08\x00\xd0\xb0\x5e\x95\x00\x15\xfa\xf8\x3d\x43\x6c\x04\x00\x68\ -\x58\x9f\x4a\x80\xd6\xf5\xf1\x7b\x86\xd8\x08\x00\xd0\xb4\x3e\xde\ -\x15\x6f\x12\x00\x1a\x27\x00\x40\xd3\xfa\x78\x57\xbc\x49\x00\x68\ -\x9c\x00\x00\x0d\xeb\x63\x31\x8e\x32\x20\x68\x9e\x00\x00\x0d\xeb\ -\x63\x31\x8e\x32\x20\x68\x9e\x00\x00\x4d\x73\x09\x00\x68\x80\x00\ -\x00\x0d\xea\x5f\x09\xd0\x3a\x65\x40\xd0\x34\x01\x00\x1a\xd4\xe7\ -\x42\x1c\x65\x40\xd0\x2c\x01\x00\x1a\xd4\xe7\x42\x1c\x65\x40\xd0\ -\x2c\x01\x00\x1a\xd4\xe7\x42\x1c\x65\x40\xd0\x2c\x01\x00\x9a\xd4\ -\xe7\xbb\xe1\x4d\x02\x40\xa3\x04\x00\x68\x52\x9f\xef\x86\x37\x09\ -\x00\x8d\x12\x00\xa0\x41\x7d\x2e\xc4\x51\x06\x04\xcd\x12\x00\xa0\ -\x41\x7d\x2e\xc4\x51\x06\x04\xcd\x12\x00\xa0\x49\x2e\x01\x00\x0d\ -\x11\x00\xa0\x21\xfd\x2d\x01\x5a\xa7\x0c\x08\x9a\x24\x00\x40\x43\ -\x14\xe1\x38\x06\xd0\x24\x01\x00\x1a\xa2\x08\xc7\x31\x80\x26\x09\ -\x00\xd0\x10\x45\x38\x8e\x01\x34\x49\x00\x80\xa6\xb8\x0b\xde\x31\ -\x80\x06\x09\x00\xd0\x14\x77\xc1\x3b\x06\xd0\x20\x01\x00\x1a\xa2\ -\x08\xc7\x31\x80\x26\x09\x00\xd0\x10\x45\x38\x8e\x01\x34\x49\x00\ -\x80\xa6\x38\xfd\xed\x18\x40\x83\x04\x00\x68\x80\x12\xa0\x75\xe1\ -\x11\xca\x80\xa0\x19\x02\x00\x34\x40\x01\xce\x37\x05\xc7\x02\x9a\ -\x21\x00\x40\x03\x14\xe0\xdc\xc7\xb1\x80\x66\x08\x00\xd0\x00\x05\ -\x38\xf7\x71\x2c\xa0\x19\x02\x00\x34\xc1\xdd\xef\xf7\x71\x2c\xa0\ -\x11\x02\x00\x34\xc1\xdd\xef\xf7\x71\x2c\xa0\x11\x02\x00\x34\x40\ -\x01\xce\x7d\x1c\x0b\x68\x86\x00\x00\x0d\x50\x80\x73\x1f\xc7\x02\ -\x9a\x21\x00\x40\x13\x9c\xf6\xbe\x8f\x63\x01\x8d\x10\x00\xa0\x66\ -\x4a\x80\xee\x4f\x19\x10\x34\x41\x00\x80\x9a\x29\xbe\x39\x87\x32\ -\x20\x68\x80\x00\x00\x35\x53\x7c\x73\x2e\xc7\x04\xea\x27\x00\x40\ -\xcd\x14\xdf\x9c\xcb\x31\x81\xfa\x09\x00\x50\x37\x77\xbd\x9f\xcb\ -\x31\x81\xda\x09\x00\x50\x37\x77\xbd\x9f\xcb\x31\x81\xda\x09\x00\ -\x50\x33\xc5\x37\xe7\x72\x4c\xa0\x7e\x02\x00\xd4\x4c\xf1\xcd\xb9\ -\x1c\x13\xa8\x9f\x00\x00\x75\x73\xba\xfb\x5c\x8e\x09\xd4\x4e\x00\ -\x80\x1a\x29\x01\xda\x88\x32\x20\xa8\x9b\x00\x00\x35\x52\x78\xb3\ -\x21\x65\x40\x50\x33\x01\x00\x6a\xa4\xf0\x66\x63\x8e\x0d\xd4\x4b\ -\x00\x80\x1a\x29\xbc\xd9\x98\x63\x03\xf5\x12\x00\xa0\x4e\xee\x76\ -\xdf\x98\x63\x03\xb5\x12\x00\xa0\x4e\xee\x76\xdf\x98\x63\x03\xb5\ -\x12\x00\xa0\x46\x0a\x6f\x36\xe6\xd8\x40\xbd\x04\x00\xa8\x91\xc2\ -\x9b\x8d\x39\x36\x50\x2f\x01\x00\xea\xe4\x34\xf7\xc6\x1c\x1b\xa8\ -\x95\x00\x00\x35\x29\x4a\x80\x1e\x51\x2c\x39\x87\x32\x20\xa8\x93\ -\x00\x00\x35\x29\x8a\x6e\xc2\x68\xc5\x03\x50\x06\x04\x35\x12\x00\ -\xa0\x26\x8a\x6e\xb6\xe6\x18\x41\x7d\x04\x00\xa8\x89\xa2\x9b\xad\ -\x39\x46\x50\x1f\x01\x00\xea\xe2\x2e\xf7\xad\x39\x46\x50\x1b\x01\ -\x00\xea\xe2\x2e\xf7\xad\x39\x46\x50\x1b\x01\x00\x6a\xa2\xe8\x66\ -\x6b\x8e\x11\xd4\x47\x00\x80\x9a\x28\xba\xd9\x9a\x63\x04\xf5\x11\ -\x00\xa0\x2e\x4e\x6f\x6f\xcd\x31\x82\xda\x08\x00\x50\x03\x25\x40\ -\xe3\x0a\x8f\x78\xdb\x07\x9e\xb3\xa3\x58\x00\x15\x12\x00\xa0\x06\ -\x4a\x80\xc6\x16\xbe\xfe\xe0\x8b\x2f\x2b\xb6\x81\x0a\x09\x00\x50\ -\x03\x05\x37\xe3\x73\xac\xa0\x1e\x02\x00\xd4\x40\xc1\xcd\xf8\x1c\ -\x2b\xa8\x87\x00\x00\x75\x70\x77\xfb\xf8\x1c\x2b\xa8\x85\x00\x00\ -\x75\x70\x77\xfb\xf8\x1c\x2b\xa8\x85\x00\x00\x35\x50\x70\x33\x3e\ -\xc7\x0a\xea\x21\x00\x40\x0d\x14\xdc\x8c\xcf\xb1\x82\x7a\x08\x00\ -\x50\x07\xa7\xb5\xc7\xe7\x58\x41\x2d\x04\x00\xa8\x98\x12\xa0\x49\ -\x29\x03\x82\x3a\x08\x00\x50\x31\x25\x40\x13\x53\x06\x04\x35\x10\ -\x00\xa0\x62\x8a\x6d\x26\xe7\x98\x41\xf5\x04\x00\xa8\x98\x62\x9b\ -\xc9\x39\x66\x50\x3d\x01\x00\xaa\xe6\xae\xf6\xc9\x39\x66\x50\x39\ -\x01\x00\xaa\xe6\xae\xf6\xc9\x39\x66\x50\x39\x01\x00\x2a\xa6\xd8\ -\x66\x72\x8e\x19\x54\x4f\x00\x80\x8a\x29\xb6\x99\x9c\x63\x06\xd5\ -\x13\x00\xa0\x6a\x4e\x67\x4f\xce\x31\x83\xca\x09\x00\x50\x21\x25\ -\x40\xd3\x52\x06\x04\x55\x13\x00\xa0\x42\x4a\x80\xa6\xa6\x0c\x08\ -\x2a\x26\x00\x40\x85\x14\xda\x4c\xcf\xb1\x83\x6a\x09\x00\x50\x21\ -\x85\x36\xd3\x73\xec\xa0\x5a\x02\x00\x54\xc9\xdd\xec\xd3\x73\xec\ -\xa0\x52\x02\x00\x54\xc9\xdd\xec\xd3\x73\xec\xa0\x52\x02\x00\x54\ -\x48\xa1\xcd\xf4\x1c\x3b\xa8\x96\x00\x00\x15\x52\x68\x33\x3d\xc7\ -\x0e\xaa\x25\x00\x40\x95\x9c\xc6\x9e\x9e\x63\x07\x95\x12\x00\xa0\ -\x22\x4a\x80\x66\x15\x2e\x55\x06\x04\xd5\x11\x00\xa0\x22\x4a\x80\ -\x66\x36\x50\x06\x04\xd5\x11\x00\xa0\x22\x8a\x6c\x66\xe7\x18\x42\ -\x75\x04\x00\xa8\x88\x22\x9b\xd9\x39\x86\x50\x1d\x01\x00\xaa\xe2\ -\x2e\xf6\xd9\x39\x86\x50\x19\x01\x00\xaa\xe2\x2e\xf6\xd9\x39\x86\ -\x50\x19\x01\x00\x2a\xa2\xc8\x66\x76\x8e\x21\x54\x47\x00\x80\x8a\ -\x28\xb2\x29\x41\x48\x9c\x01\x80\x8a\x08\x00\x50\x15\xa7\xaf\x67\ -\x96\xa6\x89\x33\x00\x50\x11\x01\x00\x2a\xa0\x04\xa8\x34\x8f\x55\ -\x06\x04\xd5\x10\x00\xa0\x02\x4a\x80\x4a\x33\x38\xf1\x90\x0b\xbf\ -\xad\xd8\x06\x4a\x24\x00\x40\x05\x14\xd8\x94\x67\x78\x6a\xcd\x65\ -\x00\xa8\x80\x00\x00\x15\x50\x60\x53\xa2\xc1\xc0\xcd\x94\x50\x01\ -\x01\x00\xaa\x60\x02\xa0\x34\xc1\x24\x00\x54\x42\x00\x80\x2a\x98\ -\x00\x28\x4d\x18\xa6\xce\xa6\x40\x05\x04\x00\xa8\x80\x02\x9b\x12\ -\x39\x9b\x02\x95\x10\x00\xa0\x02\x4a\x80\x4a\xe4\x12\x00\x54\x42\ -\x00\x80\x2a\xb8\x04\x50\x1a\x65\x40\x50\x0d\x01\x00\x4a\xa6\x04\ -\xa8\x74\xca\x80\xa0\x02\x02\x00\x94\x4c\x09\x50\xe9\x94\x01\x41\ -\x05\x04\x00\x28\x99\x12\xa0\xf2\x29\x03\x82\xf2\x09\x00\x50\x32\ -\x25\x40\x15\x50\x06\x04\xa5\x13\x00\xa0\x6c\x26\x00\x4a\xa7\x0c\ -\x08\xca\x27\x00\x40\xd9\x4c\x00\x94\x4e\x19\x10\x94\x4f\x00\x80\ -\x92\x29\x01\xaa\x80\xb3\x2a\x50\x3a\x01\x00\x4a\xa6\x04\xa8\x02\ -\x2e\x01\x40\xe9\x04\x00\x28\x9b\x4b\x00\xa5\x53\x06\x04\xe5\x13\ -\x00\xa0\x44\x4a\x80\x2a\xf3\xd8\xc5\xdb\xf7\x6e\x2f\xb6\x81\x12\ -\x08\x00\x50\x22\x25\x40\x95\x19\xec\xfc\xe2\xdc\xc3\x8a\x6d\xa0\ -\x04\x02\x00\x94\x48\x09\x50\x75\x94\x01\x41\xb9\x04\x00\x28\x91\ -\x12\xa0\x0a\x29\x03\x82\x52\x09\x00\x50\x26\x13\x00\x95\x51\x06\ -\x04\xe5\x12\x00\xa0\x4c\x26\x00\x2a\xa3\x0c\x08\xca\x25\x00\x40\ -\x89\x94\x00\x55\xc8\xd9\x15\x28\x95\x00\x00\x25\x52\x02\x54\x21\ -\x97\x00\xa0\x54\x02\x00\x94\xc9\x25\x80\xca\x28\x03\x82\x72\x09\ -\x00\x50\x12\x25\x40\x95\x53\x06\x04\x25\x12\x00\xa0\x24\x4a\x80\ -\x2a\xa7\x0c\x08\x4a\x24\x00\x40\x49\x94\x00\x55\x4f\x19\x10\x94\ -\x47\x00\x80\x92\x28\x01\xaa\x81\x32\x20\x28\x8d\x00\x00\x65\x31\ -\x01\x50\x39\x65\x40\x50\x1e\x01\x00\xca\x62\x02\xa0\x72\xca\x80\ -\xa0\x3c\x02\x00\x94\x44\x09\x50\x0d\x9c\x65\x81\xd2\x08\x00\x50\ -\x12\x25\x40\x35\x70\x09\x00\x4a\x23\x00\x40\x59\x5c\x02\xa8\x9c\ -\x32\x20\x28\x8f\x00\x00\x25\x78\xdb\x07\x9e\xb3\x23\x7b\x7b\xaa\ -\x04\xa8\x7a\xca\x80\xa0\x24\x02\x00\x94\xe0\xeb\x0f\xbe\xf8\xb2\ -\xec\x41\x09\x50\xf5\x94\x01\x41\x49\x04\x00\x28\x81\x12\xa0\xfa\ -\x28\x03\x82\x72\x08\x00\x50\x02\x25\x40\x35\x52\x06\x04\xa5\x10\ -\x00\xa0\x0c\x26\x00\x6a\xa3\x0c\x08\xca\x21\x00\x40\x19\x4c\x00\ -\xd4\x46\x19\x10\x94\x43\x00\x80\x12\x28\x01\xaa\x91\xb3\x2d\x50\ -\x0a\x01\x00\x4a\xa0\x04\xa8\x46\x2e\x01\x40\x29\x04\x00\x28\x83\ -\x4b\x00\xb5\x51\x06\x04\xe5\x10\x00\x60\x46\x4a\x80\x6a\xf7\x18\ -\x65\x40\x30\x3b\x01\x00\x66\xa4\x04\xa8\x76\x73\xca\x80\x60\x76\ -\x02\x00\xcc\x48\x09\x50\xfd\x94\x01\xc1\xec\x04\x00\x98\x91\x12\ -\xa0\x06\x28\x03\x82\x99\x09\x00\x30\x2b\x13\x00\xb5\x53\x06\x04\ -\xb3\x13\x00\x60\x56\x26\x00\x6a\xa7\x0c\x08\x66\x27\x00\xc0\x8c\ -\x94\x00\x35\xc0\x59\x17\x98\x99\x00\x00\x33\x52\x02\xd4\x00\x97\ -\x00\x60\x66\x02\x00\xcc\xca\x25\x80\xda\x29\x03\x82\xd9\x09\x00\ -\x30\x03\x25\x40\x8d\x51\x06\x04\x33\x12\x00\x60\x06\x4a\x80\x1a\ -\xa3\x0c\x08\x66\x24\x00\xc0\x0c\x94\x00\x35\x47\x19\x10\xcc\x46\ -\x00\x80\x19\x28\x01\x6a\x90\x32\x20\x98\x89\x00\x00\xb3\x30\x01\ -\xd0\x18\x65\x40\x30\x1b\x01\x00\x66\x61\x02\xa0\x31\xca\x80\x60\ -\x36\x02\x00\xcc\x40\x09\x50\x83\x9c\x7d\x81\x99\x08\x00\x30\x03\ -\x25\x40\x0d\x72\x09\x00\x66\x22\x00\xc0\x2c\x5c\x02\x68\x8c\x32\ -\x20\x98\x8d\x00\x00\x53\x52\x02\xd4\x38\x65\x40\x30\x03\x01\x00\ -\xa6\xa4\x04\xa8\x71\xca\x80\x60\x06\x02\x00\x4c\x49\x09\x50\xf3\ -\x94\x01\xc1\xf4\x04\x00\x98\x92\x12\xa0\x08\x28\x03\x82\xa9\x09\ -\x00\x30\x2d\x13\x00\x8d\x53\x06\x04\xd3\x13\x00\x60\x5a\x26\x00\ -\x1a\xa7\x0c\x08\xa6\x27\x00\xc0\x94\x94\x00\x45\xc0\x59\x18\x98\ -\x9a\x00\x00\x53\x52\x02\x14\x01\x97\x00\x60\x6a\x02\x00\x4c\xcb\ -\x25\x80\xc6\x29\x03\x82\xe9\x09\x00\x30\x05\x25\x40\xd1\x50\x06\ -\x04\x53\x12\x00\x60\x0a\x4a\x80\xa2\xa1\x0c\x08\xa6\x24\x00\xc0\ -\x14\x94\x00\xc5\x43\x19\x10\x4c\x47\x00\x80\x29\x28\x01\x8a\x88\ -\x32\x20\x98\x8a\x00\x00\xd3\x30\x01\x10\x0d\x65\x40\x30\x1d\x01\ -\x00\xa6\x61\x02\x20\x1a\xca\x80\x60\x3a\x02\x00\x4c\x41\x09\x50\ -\x44\x9c\x8d\x81\xa9\x08\x00\x30\x05\x25\x40\x11\x71\x09\x00\xa6\ -\x22\x00\xc0\x34\x5c\x02\x88\x86\x32\x20\x98\x8e\x00\x00\x13\x52\ -\x02\x14\x9d\xc7\xbc\xfd\x63\x3f\x73\x5e\xb1\x0d\x8c\x49\x00\x80\ -\x09\x29\x01\x8a\xce\xdc\x97\x4e\x7e\xe5\x92\x62\x1b\x18\x93\x00\ -\x00\x13\x52\x02\x14\x1f\x65\x40\x30\x39\x01\x00\x26\xa4\x04\x28\ -\x42\xca\x80\x60\x62\x02\x00\x4c\xca\x04\x40\x74\x94\x01\xc1\xe4\ -\x04\x00\x98\x94\x09\x80\xe8\x28\x03\x82\xc9\x09\x00\x30\x21\x25\ -\x40\x11\x72\x56\x06\x26\x26\x00\xc0\x84\x94\x00\x45\xc8\x25\x00\ -\x98\x98\x00\x00\x93\x72\x09\x20\x3a\xca\x80\x60\x72\x02\x00\x4c\ -\x40\x09\x50\xb4\x94\x01\xc1\x84\x04\x00\x98\x80\x12\xa0\x68\x29\ -\x03\x82\x09\x09\x00\x30\x01\x25\x40\xf1\x52\x06\x04\x93\x11\x00\ -\x60\x02\x4a\x80\x22\xa6\x0c\x08\x26\x22\x00\xc0\x24\x4c\x00\x44\ -\x4b\x19\x10\x4c\x46\x00\x80\x49\x98\x00\x88\x96\x32\x20\x98\x8c\ -\x00\x00\x13\x50\x02\x14\xaf\x61\x08\xc2\x19\x4c\x40\x00\x80\x09\ -\x28\x01\x8a\x57\x48\x74\x01\xc0\x24\x04\x00\x98\x84\x4b\x00\x31\ -\x13\xce\x60\x02\x02\x00\x8c\x49\x09\x50\xf4\x1e\x53\x3c\x02\x63\ -\x10\x00\x60\x4c\x4a\x80\xa2\x37\x77\xe8\x43\x2f\xbc\xb8\xd8\x06\ -\xb6\x20\x00\xc0\x98\x94\x00\xb5\xc0\xe9\xd3\x2e\x03\xc0\x98\x04\ -\x00\x18\x93\x12\xa0\xf8\x85\x81\x49\x00\x18\x97\x00\x00\xe3\x32\ -\x01\x10\x3d\x21\x0d\xc6\x27\x00\xc0\xb8\x4c\x00\x44\x6f\x30\x1c\ -\x0a\x69\x30\x26\x01\x00\xc6\xa4\x04\x28\x7e\xca\x80\x60\x7c\x02\ -\x00\x8c\x49\x09\x50\xfc\x94\x01\xc1\xf8\x04\x00\x18\x97\x4b\x00\ -\x6d\x20\xa4\xc1\x98\x04\x00\x18\x43\x51\x02\x74\x69\xb1\x24\x5e\ -\x8f\x2e\x1e\x81\x2d\x08\x00\x30\x86\xa2\x04\xc8\xef\x4b\xfc\xb6\ -\x29\x03\x82\xf1\x78\x42\x83\x31\x28\x01\x6a\x11\x65\x40\x30\x16\ -\x01\x00\xc6\x60\xbe\xbc\x3d\x94\x01\xc1\x78\x04\x00\x18\x87\x09\ -\x80\xd6\x10\xd6\x60\x3c\x02\x00\x8c\xc3\x04\x40\x6b\x28\x03\x82\ -\xf1\x08\x00\x30\x06\x25\x40\xed\xa1\x0c\x08\xc6\x23\x00\xc0\x18\ -\x94\x00\xb5\x87\x32\x20\x18\x8f\x00\x00\xe3\x70\x09\xa0\x4d\x84\ -\x35\x18\x83\x00\x00\x5b\x50\x02\xd4\x3a\xca\x80\x60\x0c\x02\x00\ -\x6c\x41\x09\x50\xeb\x28\x03\x82\x31\x78\x52\x83\x2d\x28\x01\x6a\ -\x21\x65\x40\xb0\x25\x01\x00\xb6\x60\xae\xbc\x7d\x94\x01\xc1\xd6\ -\x04\x00\xd8\x8a\x09\x80\xd6\x11\xda\x60\x6b\x02\x00\x6c\xc5\x04\ -\x40\xeb\x28\x03\x82\xad\x09\x00\xb0\x05\x25\x40\xed\xa3\x0c\x08\ -\xb6\x26\x00\xc0\x16\x94\x00\xb5\x8f\x32\x20\xd8\x9a\x00\x00\x5b\ -\x71\x09\xa0\x8d\x84\x36\xd8\x82\x00\x00\x9b\x50\x02\xd4\x5a\xca\ -\x80\x60\x0b\x02\x00\x6c\xe2\xc4\x43\x2e\xfc\xb6\xec\xc1\xef\x49\ -\xfb\x28\x03\x82\x2d\x78\x62\x83\x4d\x0c\x4f\xad\xb9\x96\xdc\x56\ -\xca\x80\x60\x53\x02\x00\x6c\x66\x30\xf0\x22\xd2\x52\xca\x80\x60\ -\x73\x02\x00\x6c\x22\x84\xc4\x8b\x48\x4b\x29\x03\x82\xcd\x09\x00\ -\xb0\x89\x30\x4c\xbd\x88\xb4\x94\x32\x20\xd8\x9c\x00\x00\x9b\xd1\ -\x01\xd0\x5a\xca\x80\x60\x73\x02\x00\x6c\xc6\x25\x80\xd6\x52\x06\ -\x04\x9b\x13\x00\x60\x13\x69\xea\x45\xa4\xc5\x9c\xbd\x81\x4d\x08\ -\x00\xb0\x81\x51\x09\x50\xf2\xd8\xd1\x8a\x16\x52\x06\x04\x9b\x10\ -\x00\x60\x03\x4a\x80\x5a\x4f\x19\x10\x6c\xc2\x93\x1b\x6c\x40\x09\ -\x50\x07\x28\x03\x82\x0d\x09\x00\xb0\x11\x25\x40\xad\xa7\x0c\x08\ -\x36\x26\x00\xc0\x06\x94\x00\xb5\x9f\x32\x20\xd8\x58\x28\x1e\xe1\ -\xac\x1b\xfe\xec\x27\x1f\xb4\x76\xde\x99\xc7\x26\x73\x6b\xdf\x36\ -\x18\xa6\x5f\x19\x0c\xcf\xfb\xe2\xd7\x06\xdb\x3f\xbb\xb8\xe7\x5d\ -\x27\x8b\x7f\xa4\x37\x96\x8f\xef\x5b\x4a\x43\x38\x50\x2c\x69\xa1\ -\x90\xa6\xcb\x07\xf6\x1c\x3d\x58\x2c\x7b\x23\xbf\x81\xf5\x1b\x0f\ -\xb9\xe0\xd2\xe4\xd4\xe0\xe2\x64\x2e\xbd\x30\x59\x9b\xfb\xc2\xdc\ -\xe9\x6d\x7f\xff\xda\x67\xbf\xe7\xeb\xc5\x3f\x02\x02\x40\xdf\x2d\ -\xde\xbe\x77\xfb\xfc\x3d\x83\x67\x25\x69\x72\x65\xf6\x6c\xf9\xbc\ -\xec\x47\xe2\xb2\x6c\xf7\xfd\x7f\x2e\x4e\x67\x7f\x3e\x91\xa6\xc9\ -\x9f\x84\x74\x70\xe3\xc1\x67\xde\x78\xfb\x68\x77\xb7\x2d\xaf\x2c\ -\x1c\x4d\x93\x64\x6f\xb1\xa4\x85\xb2\x7f\x7f\xef\xb9\x76\xf7\x91\ -\x17\x15\xcb\x4e\x5b\x5e\x5d\x78\xc2\x30\x4d\xaf\x0a\x61\xf0\xdc\ -\x24\x4d\xff\x69\xb6\xeb\xbc\xd1\xdf\x7c\xab\xf4\xff\x24\xc9\xe0\ -\x4f\x92\x61\xf2\x47\x27\x2f\x5d\xfb\xf3\xc5\x27\x1d\x3b\x55\xfc\ -\x05\x3d\x24\x00\xf4\xd4\xe2\xf1\xdd\xdb\x76\x0e\x1e\xf1\xe2\x34\ -\x4d\x7f\x39\x5b\x4e\x3a\xea\xb6\x32\x48\xc2\xaf\x5c\xb3\xfb\xf0\ -\x87\x8a\x75\x27\x65\x4f\xa8\xb7\x66\xa1\xe7\x69\xc5\x92\x76\xfa\ -\xe0\xc1\xdd\x47\x7e\xb0\xd8\xee\xa4\x37\xdc\xbc\xff\x5f\x0e\xe6\ -\xd2\xeb\xb3\xb4\xf3\xcc\x6c\x39\xf6\x73\x7a\x16\x8e\xfe\x61\x10\ -\xc2\x7f\x3c\x31\xfc\x7f\xef\x5e\xdc\xb3\x72\xa6\xd8\x4d\x8f\x08\ -\x00\x3d\x74\xfd\xf1\x85\x27\xcf\x85\xe4\x70\xb6\xf9\xa4\xd1\x9e\ -\xe9\xa4\x49\xfa\xc7\x73\x6b\xe1\x35\xd7\x3c\xeb\xc8\xdf\x16\xbb\ -\x3a\x65\x69\x65\x21\xff\xbe\xdc\x08\xd8\x6e\x77\x67\x01\xe0\xf2\ -\x62\xbb\x53\x6e\x58\xdd\xfb\xb8\xb5\x34\xbc\x31\x7b\x1a\x7f\x41\ -\xb6\x9c\xe5\xb9\xfc\x53\x6b\x69\xb2\xf0\xba\x3d\x47\x3e\x59\xac\ -\xe9\x09\x01\xa0\x67\x96\x57\xf7\xff\x54\xf6\xae\xff\x6d\xd9\xe6\ -\xf9\xa3\x3d\x33\x3b\x99\xfd\x14\xbd\xe5\xe4\x70\x78\xfd\xe2\x9e\ -\x63\x5f\x2b\xf6\xb5\xde\xd9\x6b\xa8\xe7\x3f\xe4\x1b\xd9\xa6\x1b\ -\x65\xdb\xed\x4c\x16\x00\x1e\xe0\x54\x78\x7b\x2d\x7e\xec\x87\xce\ -\xdf\xf1\xd5\xf3\xaf\x0b\x21\xf9\xa5\x6c\x39\x3f\xda\x3b\xb3\x13\ -\x59\xa4\xff\x85\x83\xbb\x8f\xfe\x6e\xb1\xa6\x07\x3c\xb9\xf5\xc8\ -\xf2\xca\xc2\xcf\x66\x2f\xfe\xff\x39\xdb\x2c\xeb\xc5\x3f\x37\x9f\ -\xa4\xc9\xc1\xf9\x30\xb8\x73\xe9\xf8\xbe\x7f\x9b\xa6\xdd\x08\x95\ -\x4a\x80\x3a\xa3\x53\x65\x40\x87\x56\xf6\x5d\xb5\xe3\x6b\xe7\x7f\ -\x2a\x7b\xf1\x7f\x5d\xb6\x2c\xeb\xc5\x3f\xb7\x33\x7b\x3f\xf8\x3b\ -\x87\x56\xf7\xe5\xa1\x82\x9e\xf0\x04\xd7\x13\x67\x5f\xfc\x93\xe4\ -\xb7\x8a\x65\x15\x2e\x4b\x42\x78\xcf\xd2\xea\xc2\xea\xa1\xd5\xfd\ -\xff\xac\xd8\xd7\x5a\x4a\x80\x3a\xa4\x03\x65\x40\xf9\xef\xd4\xd2\ -\xca\xc2\x6a\x48\xc2\xfb\xb3\x84\xfd\x98\x62\x77\xe9\x42\x1a\x6e\ -\xc8\x9f\x2b\x8a\x25\x1d\x27\x00\xf4\x40\x7e\x93\x50\xf6\xe2\xff\ -\xd6\x6c\xb3\xf2\x77\xe7\xd9\xff\xc1\xd3\x43\x9a\xfe\x8f\xa5\x95\ -\xfd\xbf\xf3\x86\x0f\xfe\x48\xfe\x2e\xba\x9d\x94\x00\x75\x46\x9b\ -\xcb\x80\xf2\xdf\xa1\xfc\x77\x29\xff\x9d\xca\x96\xcf\x18\xed\xad\ -\x54\xc8\x9f\x2b\x96\x8f\x2f\x3c\xb5\x58\xd3\x61\x02\x40\xc7\x2d\ -\x1e\xdf\x7b\xc1\x60\x90\xbe\x37\xdb\xdc\x36\xda\x53\x8b\xb9\x24\ -\x49\xff\xdd\x60\xdb\xf6\x4f\x67\x4f\x24\xbf\x98\x4f\x1c\x14\xfb\ -\x5b\x43\x09\x50\x77\xb4\xb1\x0c\x28\xff\x9d\x59\x5a\x5d\xf8\x85\ -\xc1\xb6\x1d\x77\xe5\xbf\x4b\xd9\xae\xec\x77\xaa\x36\xdb\xd2\x90\ -\xbc\x6f\xf9\xd6\x1f\x7e\x70\xb1\xa6\xa3\x04\x80\x8e\xdb\x11\xc2\ -\x35\xd9\xc3\x77\x8c\x56\xb5\x7b\x68\xf6\x44\xf2\xe6\xf9\x70\xe9\ -\xff\x3c\xb4\x7a\x55\x3e\xa2\xd4\x1a\x61\x98\xba\x04\xd0\x11\x83\ -\xe1\xb0\x55\x67\x73\x96\x6f\xde\xff\xac\xfc\x77\x26\x49\x93\xb7\ -\x64\x2f\xfe\x4d\x9d\x45\x7b\xfc\xf0\xf4\x4e\x25\x58\x1d\x27\x00\ -\x74\xd8\x9b\x8f\xbf\xe0\xa2\x90\x84\x7f\x5f\x2c\x9b\xf4\xdd\x21\ -\x1d\xde\xb4\xb4\xb2\xef\xbf\x2c\xdd\xba\xb7\x1d\x1f\xd1\x1a\x82\ -\x4b\x00\x1d\x31\x0c\xed\xb8\x04\x70\xe8\x43\x2f\x7c\x7c\xf6\xae\ -\xff\x0f\xd3\x41\xfa\xc1\x6c\xf9\xdd\xa3\xbd\xcd\x09\x21\x79\x95\ -\x4f\x53\xec\x36\x01\xa0\xc3\xee\x4d\x76\xbc\x22\x7b\xb8\x70\xb4\ -\x8a\x41\xf8\x91\xe4\xcc\xe0\x8e\x43\x2b\xfb\x7e\xed\x4d\xb7\xed\ -\xdd\x59\xec\x8c\x93\x4b\x00\x9d\x11\x92\x24\xea\xb3\x39\xf9\x58\ -\x5f\x16\x8e\xaf\x0f\x6b\x6b\xb7\x67\xef\xfa\xaf\x2c\x76\xc7\xe0\ -\x21\x61\x6d\xf8\xca\x62\x9b\x0e\x12\x00\xba\x2c\x24\x3f\x56\x6c\ -\xc5\xe4\xfc\x90\x84\xd7\xdf\x7b\x6a\x70\xc7\xd2\xf1\x85\xfd\xc5\ -\xbe\xe8\xa4\x69\xdc\x2f\x1a\x4c\x24\xca\xb3\x39\xf9\xc8\xec\xf2\ -\xea\xc2\x4f\xcc\x7f\xed\xfc\x3b\xb2\x5f\xd6\xeb\xb2\x5d\x65\x8e\ -\xf5\x95\x24\x8d\xf1\x39\x84\x92\x74\x62\x66\x9b\x73\x2d\xdf\xba\ -\xff\x51\xe9\x99\xbc\xf7\x3b\xfa\x7f\xc7\x2b\xc9\x70\xf0\xf3\x31\ -\x7d\xbe\x80\x12\xa0\xce\x89\xae\x0c\xe8\xec\xa8\x6c\x9a\xbe\x35\ -\x9f\x9a\x29\x76\xc5\x2a\x0d\xe9\xb6\x47\x1f\xd8\xf3\xbe\xfc\xb9\ -\x84\x8e\xf1\x04\xd7\x55\xa7\x93\x2b\xb2\xff\x6c\x43\xc0\xdb\x9d\ -\x0c\x86\x1f\x5f\x5a\x59\xf8\x4f\x6f\xba\x6d\xef\x43\x8b\x7d\x8d\ -\x52\x02\xd4\x39\xd1\x94\x01\xdd\xf0\xe1\x9f\x7c\xf8\xf2\xca\xc2\ -\xef\xe6\x63\x7d\x2d\x78\xf1\xcf\x85\x74\x70\x3a\x7f\x2e\xa1\x83\ -\x3c\xc9\x75\xd4\x70\x30\xac\xac\x2c\xa4\x02\xf9\x98\xe0\x2b\x4f\ -\x9d\x1a\xdc\xb5\xb4\xba\xff\xe7\x8e\x1e\xdd\x5b\xe7\xc8\xd3\x39\ -\x94\x00\x75\x50\xc3\x65\x40\xf9\x58\xdf\xa1\x95\xfd\xaf\x5e\x3b\ -\x7d\xea\xae\x34\x49\x7e\x3a\xdb\xd5\xe8\xcf\xf8\x44\x86\x83\x76\ -\xdc\xb8\xcb\xc4\x04\x80\x8e\x0a\x69\x68\x53\x00\x58\xf7\xb0\x24\ -\x4d\x7f\xeb\xee\x87\x0f\xfe\x6a\xe9\xf8\xde\x7f\x55\xec\xab\x9f\ -\x12\xa0\xce\x69\xb2\x0c\xe8\xd0\xf1\x7d\x3f\xb0\x33\x5c\xfa\xbf\ -\x42\x92\xbe\x29\x5b\x5e\x34\xda\xdb\x22\x21\x15\x00\x3a\x4a\x00\ -\xe8\xa8\xec\x5d\x46\x7b\xde\x61\x9c\xeb\x7b\xb2\x67\xec\x5b\x96\ -\x56\xf6\x1f\x59\x3e\xfe\x13\xdf\x5e\xec\xab\x8d\x12\xa0\xee\x69\ -\xa2\x0c\x28\x1f\xeb\x3b\xb4\xb2\xef\x8f\x42\x08\x7f\x9e\xfd\x3e\ -\x3e\xb9\xd8\xdd\x3e\x69\xea\x75\xa2\xa3\xfc\x8b\xed\xa8\xec\x45\ -\xec\x2b\xc5\x66\x5b\x85\xec\x99\x67\x5f\x1a\xce\xdc\xb9\xbc\xba\ -\xef\x3f\xd4\x39\x36\xa8\x04\xa8\x7b\xea\x2c\x03\xca\xdb\x37\x97\ -\x56\x17\x0e\xe5\x63\x7d\x21\x09\x3f\x5c\xec\x6e\xad\x2c\x3c\xb5\ -\xfd\xb9\x84\x0d\x08\x00\x1d\x95\x26\xe9\xe7\x8b\xcd\xb6\x7b\x50\ -\x9a\x86\xc5\x53\xa7\x06\xb7\x1f\xba\x79\x5f\x3d\x23\x49\x4a\x80\ -\x3a\xa7\x8e\x32\xa0\x7c\xac\x2f\xff\x44\xcc\xfc\x93\x31\xf3\x4f\ -\xc8\xcc\x76\x45\x38\xd6\x37\xb9\xd0\x9d\xe7\x12\xee\x47\x00\xe8\ -\xa8\xb9\xb5\xf4\x63\xc5\x66\x57\x3c\x2e\x0c\xc2\xef\x2f\xad\x2c\ -\xfc\xd9\x1b\x6e\xd9\xfb\xc4\x62\x5f\x35\x5c\x02\xe8\x9c\x50\x71\ -\x19\xd0\x6f\xdc\xb2\xf0\x7d\xf9\x27\x61\x66\xe1\xf1\x3d\xd9\xf2\ -\xb2\xd1\xde\x6e\x18\x24\x21\xff\x20\x22\x3a\x48\x00\xe8\xa8\x6f\ -\x84\x07\xfd\x45\xf6\x70\x72\xb4\xea\x94\x7f\x3d\x18\x0e\x3e\x7e\ -\x68\x65\xdf\x5b\xab\x1a\xed\x52\x02\xd4\x49\x95\x9c\xd5\xc9\xc7\ -\xfa\x96\x56\xf6\xff\xde\x70\x98\xb4\x65\xac\x6f\x52\x27\xe6\xbf\ -\xf1\xe5\xbf\x2c\xb6\xe9\x98\x36\xcc\x89\x33\xa5\xec\x1d\xc9\x9f\ -\x26\x69\xf2\xec\x62\xd9\x45\xf7\x64\x3f\xc1\xaf\x3f\xf9\x8c\x27\ -\xfc\xee\x62\x58\x1c\x16\xfb\x66\xa2\x04\xa8\xb3\x4e\x1f\xdc\x7d\ -\x64\x7b\xb1\x3d\xb3\x7c\xac\x6f\x3e\x5c\x9a\x7f\xce\xc6\xeb\xb3\ -\x3f\xed\xbb\xb3\x7f\x4c\xd9\x0b\xc4\x07\x0e\xec\x3e\xf2\xbc\x62\ -\x49\xc7\x78\x92\xeb\xb0\x74\x38\x78\x4b\xb1\xd9\x55\x97\x64\x01\ -\xe7\xb7\xe7\x57\xef\xf8\xe8\xd2\xea\xfe\x52\xca\x4a\x94\x00\x75\ -\xd6\x79\x65\x9d\x31\xca\xc7\xfa\xb2\x17\xff\x8f\x67\x9b\x6f\xcc\ -\xfe\x74\xf6\xc5\x3f\x37\x4c\xd3\x37\x17\x9b\x74\x90\x27\xba\x0e\ -\x3b\xb8\xfb\xc6\x3f\xcb\x1e\xfe\xf7\x68\xd5\x69\xdf\x9f\xa4\xe9\ -\xad\x4b\x2b\x0b\xef\xfb\xf5\x9b\xf6\xce\x74\xfd\x55\x09\x50\x87\ -\xcd\x58\x06\xf4\x1b\x37\x2d\x5c\x7e\x68\x65\xe1\xbf\xe6\x63\x7d\ -\xd9\xf2\x49\xa3\xbd\x1d\x16\xc2\x5f\x5d\xbb\xe7\x68\xfe\xc9\x84\ -\x74\x94\x00\xd0\x61\x21\x24\x69\xf6\x64\xf5\x2b\xc5\xb2\xeb\xf2\ -\xcb\x59\x2f\xdc\x36\x37\xb8\x73\x69\x65\xff\x75\x8b\xb7\xef\x9d\ -\xee\x74\xaf\x12\xa0\xce\x9a\xb6\x0c\x28\x1f\xeb\x5b\x3e\xbe\x6f\ -\x69\x38\x97\xdc\x9e\xfd\x90\x3d\xbf\xd8\xdd\x79\xe9\x30\xfc\x72\ -\xb1\x49\x47\x09\x00\x1d\x77\x60\xd7\xe1\x3f\xce\x1e\x0e\x8f\x56\ -\xbd\x70\x41\xf6\xd4\x75\xfd\xfc\x3d\x83\x4f\x2e\xdd\xbc\x30\xf1\ -\x47\xab\x2a\x01\xea\xae\x49\xcb\x80\xce\x8e\xf5\xad\x2e\xbc\x68\ -\x3e\x0c\xee\xca\x92\xf4\x81\x6c\xd7\x8e\xd1\xdf\x74\x5f\x9a\x86\ -\x77\x5f\xbb\xe7\xc6\x3f\x2d\x96\x74\x94\x00\xd0\x03\x27\xe7\xb7\ -\xbd\x3c\x7b\xb8\x6b\xb4\xea\x8d\xef\xcc\x7e\xba\xff\x70\x69\x65\ -\xe1\x03\x6f\x38\x7e\xd5\x3f\x29\xf6\x6d\x49\x09\x50\x77\x4d\x52\ -\x06\x74\xe8\xe6\xbd\xff\x7c\x79\x75\xff\x2d\x49\x9a\xbc\x3b\x5b\ -\xf6\x2d\x14\x7e\x62\xdb\xa9\xf3\x7e\xae\xd8\xa6\xc3\x04\x80\x1e\ -\x58\x7c\xea\xfb\xbe\x12\x86\xc3\xfc\xdd\xf0\x17\x47\x7b\x7a\xe5\ -\x39\x83\x30\xfc\xeb\x2c\x08\xbc\x71\xf9\xd6\x1f\x7e\x70\xb1\x6f\ -\x63\x4a\x80\x3a\x6b\x9c\x32\xa0\xd1\x58\xdf\xc2\x3b\xc2\x60\xf0\ -\x97\xd9\xfb\xe0\xe6\x3e\x8f\xa2\x31\xe1\x0b\x73\x61\x78\xe5\x6b\ -\x9f\xfd\x9e\xaf\x17\x3b\xe8\x30\x01\xa0\x27\x0e\x3c\xf3\xd8\x5d\ -\x21\x49\xf3\x26\xbd\x53\xa3\x3d\xbd\x92\x7f\x16\xfc\x6b\xd2\x33\ -\xf3\x77\x1d\x5a\xdd\xf7\xb2\xc5\x74\x71\xe3\x9f\x7b\x97\x00\x3a\ -\x2b\x6c\x52\x06\x94\xdf\x33\xb2\x74\x7c\xff\xd5\x6b\xa7\x4f\x7d\ -\x3a\x5b\xbe\x34\xfb\xd3\xc7\xe7\xc6\x13\xd9\x37\xfd\x23\xaf\xdd\ -\x75\xec\xef\x8a\x35\x1d\x27\x00\xf4\xc8\x81\xdd\x47\x8f\x87\x90\ -\xfe\x4c\xb1\xec\xa1\xf0\xc8\x90\x86\xdf\x9b\x5f\xbd\xf3\x23\xcb\ -\xc7\xf7\x3f\xa5\xd8\xf9\x8f\x28\x01\xea\xb4\x07\x3c\xbb\xb3\xbc\ -\x72\xd5\x0f\xce\xdf\x33\xf8\xeb\x24\xa4\x37\x64\xcb\x0b\x47\x7b\ -\x7b\x27\xfb\xd1\x4f\x5e\x7c\xcd\xee\xc3\x1f\x2a\xd6\xf4\x80\x22\ -\xa0\x1e\xca\x5b\xf4\x42\x12\xf2\x12\x93\x3e\xcb\x8b\x83\xde\xbb\ -\x76\x66\x70\xcd\xeb\x7e\xe0\xc6\xcf\xe6\x3b\x16\x8f\xbf\x64\x7e\ -\x3e\x9c\xc8\x4f\x7d\x0a\xc6\xdd\x74\xfa\xe4\xae\x27\xcc\xaf\x97\ -\x46\xe5\x63\x7d\xc3\x6d\xe9\x5b\x93\x34\xf4\xbe\xe8\x26\x4d\xc3\ -\xaf\x5e\xbb\xe7\xf0\x62\xb1\xa4\x27\x04\x80\x1e\xca\x4f\x81\xef\ -\x5c\xbd\xf3\xbd\x69\x92\x5e\x55\xec\xea\xb3\x2f\x67\x4f\x7f\x6f\ -\x38\x79\x49\xfa\x96\x1d\x9f\x4b\x1e\x1d\xc2\xe0\x33\xc5\x7e\x3a\ -\x28\x6c\x0b\x97\x25\xc9\x37\xbe\x9a\x9c\xd9\xf9\xfa\xec\x1d\x6f\ -\x1e\x82\x7b\x73\x67\xff\x86\xd2\xe4\xf7\x0e\xee\x39\xf2\xd3\xc5\ -\x8a\x1e\xf1\x4e\xa7\x87\xf2\x77\x40\x27\xd2\xf9\x97\x65\x9b\x1f\ -\x1d\xed\xe9\xb5\x0b\xb3\x97\x85\xe5\xfc\x14\x70\x18\xcc\xbd\xb8\ -\xd8\x47\x47\xa5\x67\xd2\x5f\x4a\xcf\xec\xbc\x33\x7b\xf1\x7f\x6d\ -\xb6\xf4\xe2\x1f\x92\x9b\x2e\x7e\xf0\x85\xaf\x2c\x56\xf4\x8c\x33\ -\x00\x3d\x96\xdf\xf1\xbc\x76\xfa\xd4\x6d\xd9\xe6\xe5\xa3\x3d\x40\ -\x8f\x7c\x6a\x47\x7a\xef\xd3\x5e\xbd\xe7\x0f\xbf\x54\xac\xe9\x19\ -\x67\x00\x7a\xec\xb5\x4f\x7b\xcf\xe7\xc2\x70\x98\x5f\xff\xec\xe3\ -\x78\x20\xf4\xd8\xd9\x71\xbf\xe7\x7b\xf1\xef\x37\x01\xa0\xe7\x7a\ -\x3e\x1e\x08\x7d\x74\x6f\xf6\xc4\x6f\xdc\x0f\x01\x00\xe3\x81\xd0\ -\x23\x69\x12\xc2\xcb\x8c\xfb\x91\x13\x00\x38\xeb\xc0\xae\xa3\xef\ -\xce\x9e\x18\x7e\xbd\x58\x02\x5d\x94\x26\xd7\x1d\xdc\x75\xf8\xfd\ -\xc5\x8a\x9e\x73\x13\x20\xdf\x94\x7f\xf8\xc9\xf2\xea\xbe\xa3\xd9\ -\x8f\xc5\x8f\x17\xbb\x80\xee\x78\xe7\xc1\xdd\x47\xf2\xe9\x1f\x38\ -\xcb\x19\x00\xbe\x29\xff\xf8\xe0\xed\xdb\xd3\x17\x65\x9b\xc6\x03\ -\xa1\x4b\xf2\x71\xbf\x0b\x2e\xcc\x3f\x14\x0c\xbe\xc9\x19\x00\xce\ -\x61\x3c\x10\x3a\xe5\x8e\x1d\xe9\xbd\x57\xb8\xe3\x9f\xfb\x73\x06\ -\x80\x73\x18\x0f\x84\xae\x38\x3b\xee\xf7\x3c\x2f\xfe\x3c\x10\x01\ -\x80\x07\x64\x3c\x10\x5a\xcf\xb8\x1f\x9b\x12\x00\xd8\x90\xf1\x40\ -\x68\x2d\xe3\x7e\x6c\x49\x00\x60\x53\xc6\x03\xa1\x85\x8c\xfb\x31\ -\x06\x37\x01\xb2\xa5\xd1\x78\xe0\x42\xfe\x64\xb2\x7f\xb4\x07\x88\ -\x57\x78\xc7\xc1\xdd\x87\x7f\xaa\x58\xc0\x86\x9c\x01\x60\x4b\xf9\ -\x78\xe0\xc9\x74\xe7\x4b\xb3\x4d\xe3\x81\x10\xb5\xf4\xe6\x8b\x2f\ -\x78\xc8\x2b\x8a\x05\x6c\xca\x19\x00\xc6\x66\x3c\x10\xa2\x66\xdc\ -\x8f\x89\x38\x03\xc0\xd8\x8c\x07\x42\xac\xd2\xcf\x19\xf7\x63\x52\ -\x02\x00\x13\xc9\xc7\x03\xd3\x34\xfc\x68\xb6\x69\x3c\x10\xe2\x70\ -\x6f\x48\xc3\x95\xc6\xfd\x98\x94\x00\xc0\xc4\xae\xdd\x73\x78\xc5\ -\x78\x20\x44\xe1\xec\xb8\xdf\x81\x3d\x47\xdc\x9f\xc3\xc4\x04\x00\ -\xa6\x62\x3c\x10\x22\x60\xdc\x8f\x19\xb8\x09\x90\xa9\xf9\xf4\x40\ -\x68\x94\x4f\xf7\x63\x26\xce\x00\x30\x35\x9f\x1e\x08\x4d\x49\x6f\ -\x3e\x79\xc9\xd0\xb8\x1f\x33\x71\x06\x80\x99\x15\xe3\x81\x1f\xc9\ -\x36\x1f\x3f\xda\x03\x54\xe8\x6f\x76\xa4\xf7\x7e\xbf\x3b\xfe\x99\ -\x95\x33\x00\xcc\xec\xec\x78\x60\x48\x9e\x9f\x6d\x1a\x0f\x84\x4a\ -\x85\x2f\x0c\xc2\xdc\x73\xbd\xf8\x53\x06\x01\x80\x52\x1c\xd8\x75\ -\xe4\x0e\x9f\x1e\x08\x95\x3a\xfb\xe9\x7e\xd7\xec\x7a\xff\x67\x8a\ -\x35\xcc\x44\x00\xa0\x34\x3e\x3d\x10\x2a\xe3\xd3\xfd\x28\x9d\x00\ -\x40\xa9\xf2\xf1\xc0\x34\x49\xdf\x56\x2c\x81\x12\xa4\x69\xf8\x35\ -\xe3\x7e\x94\x4d\x00\xa0\x74\xf7\xee\x7a\xe2\xab\xb3\xa7\xac\xdf\ -\x2f\x96\xc0\x6c\xde\x79\xed\x9e\xc3\x8b\xc5\x36\x94\x46\x00\xa0\ -\x74\x8b\x61\x71\x68\x3c\x10\xca\x60\xdc\x8f\xea\x18\x03\xa4\x32\ -\xc6\x03\x61\x26\xc6\xfd\xa8\x94\x33\x00\x54\xc6\x78\x20\x4c\xcb\ -\xb8\x1f\xd5\x13\x00\xa8\xd4\xb7\x8c\x07\x9e\x19\xed\x01\xb6\x60\ -\xdc\x8f\x5a\x08\x00\x54\x2e\x1f\x0f\x4c\x42\xf2\xf3\xc5\x12\xd8\ -\x98\x71\x3f\x6a\x23\x00\x50\x8b\x83\xbb\x8e\xbc\xdd\x78\x20\x6c\ -\xce\xb8\x1f\x75\x12\x00\xa8\x8d\xf1\x40\xd8\x94\x71\x3f\x6a\x25\ -\x00\x50\x1b\xe3\x81\xb0\x11\xe3\x7e\xd4\xcf\x18\x20\xb5\x33\x1e\ -\x08\xff\x88\x71\x3f\x1a\xe1\x0c\x00\xb5\x33\x1e\x08\xeb\xc2\x17\ -\x86\x73\xc9\xf3\xbc\xf8\xd3\x04\x01\x80\x46\x18\x0f\x84\xd1\xb8\ -\xdf\x75\x4f\x3f\xf2\xe9\x62\x0d\xb5\x12\x00\x68\x8c\xf1\x40\x7a\ -\xcc\xb8\x1f\x8d\x13\x00\x68\x94\xf1\x40\xfa\xc8\xb8\x1f\x31\x10\ -\x00\x68\x9c\xf1\x40\x7a\xe6\x5d\xc6\xfd\x88\x81\x00\x40\xe3\x8c\ -\x07\xd2\x1f\x67\xc7\xfd\x5e\x5e\x2c\xa0\x51\xc6\x00\x89\x86\xf1\ -\x40\x3a\xce\xb8\x1f\x51\x71\x06\x80\x68\x18\x0f\xa4\xbb\x8c\xfb\ -\x11\x1f\x01\x80\xa8\x18\x0f\xa4\x83\x8c\xfb\x11\x25\x01\x80\xe8\ -\x18\x0f\xa4\x43\x8c\xfb\x11\x2d\x01\x80\x28\x19\x0f\xa4\x0b\x8c\ -\xfb\x11\x33\x01\x80\x68\x19\x0f\xa4\xe5\x8c\xfb\x11\x35\x01\x80\ -\x68\x19\x0f\xa4\xad\x42\x48\x3e\x6c\xdc\x8f\xd8\x09\x00\x44\xed\ -\x35\x57\x1c\x3b\x31\x77\xde\xf6\x2b\xb3\xcd\xbb\x47\x7b\x20\x7a\ -\x7f\x33\x37\x1c\xbc\x60\xf1\x49\xc7\x4e\x15\x6b\x88\x92\x00\x40\ -\xf4\x8c\x07\xd2\x1e\xa3\x71\xbf\xab\xf7\xdc\xf8\xf9\x62\x07\x44\ -\x4b\x00\xa0\x15\x8c\x07\xd2\x02\xc6\xfd\x68\x15\x01\x80\xd6\x30\ -\x1e\x48\xc4\x8c\xfb\xd1\x3a\x02\x00\xad\x62\x3c\x90\x18\x19\xf7\ -\xa3\x8d\x04\x00\x5a\xc7\x78\x20\x91\x31\xee\x47\x2b\x09\x00\xb4\ -\x8e\xf1\x40\x62\x61\xdc\x8f\x36\x13\x00\x68\x25\xe3\x81\x44\xc0\ -\xb8\x1f\xad\x26\x00\xd0\x5a\xc6\x03\x69\x8e\x71\x3f\xda\x4f\x00\ -\xa0\xd5\x8c\x07\xd2\x00\xe3\x7e\x74\x82\x00\x40\xeb\x19\x0f\xa4\ -\x46\xc6\xfd\xe8\x0c\x01\x80\x4e\x30\x1e\x48\x1d\x8c\xfb\xd1\x25\ -\x02\x00\x9d\x61\x3c\x90\x8a\x19\xf7\xa3\x53\x04\x00\x3a\xc3\x78\ -\x20\x55\x31\xee\x47\x17\x09\x00\x74\x8a\xf1\x40\x2a\x60\xdc\x8f\ -\x4e\x12\x00\xe8\x1c\xe3\x81\x94\xc7\xb8\x1f\xdd\x25\x00\xd0\x49\ -\xc6\x03\x29\x81\x71\x3f\x3a\x4d\x00\xa0\xb3\x8c\x07\x32\x83\x34\ -\x84\xe4\xa7\x8c\xfb\xd1\x65\x02\x00\x9d\x66\x3c\x90\x69\xe4\xe3\ -\x7e\x07\x76\x1d\x79\x5f\xb1\x84\x4e\x12\x00\xe8\x3c\xe3\x81\x4c\ -\xc8\xb8\x1f\xbd\x20\x00\xd0\x79\xc6\x03\x19\x97\x71\x3f\xfa\x44\ -\x00\xa0\x17\xbe\x65\x3c\xf0\xef\x46\x7b\xe0\x1c\xc6\xfd\xe8\x15\ -\x01\x80\xde\x28\xc6\x03\x9f\x97\x6d\x1a\x0f\xe4\x7e\x8c\xfb\xd1\ -\x3f\x02\x00\xbd\x62\x3c\x90\x07\x60\xdc\x8f\x5e\x12\x00\xe8\x9d\ -\x7c\x3c\x30\x4d\xd3\x57\x15\x4b\xfa\xcd\xb8\x1f\xbd\x25\x00\xd0\ -\x4b\xd7\xee\x39\xfa\xdb\xc6\x03\x31\xee\x47\x9f\x09\x00\xf4\x96\ -\xf1\xc0\xde\x33\xee\x47\xaf\x09\x00\xf4\x96\xf1\xc0\xfe\x32\xee\ -\x07\x02\x00\x3d\x67\x3c\xb0\x97\x8c\xfb\x41\x46\x00\xa0\xf7\x8c\ -\x07\xf6\xca\x3d\xc6\xfd\x60\x44\x00\x80\x8c\xf1\xc0\x5e\xb8\x77\ -\x98\x0c\xaf\x34\xee\x07\x23\x02\x00\x14\x8c\x07\x76\xda\xd9\x71\ -\xbf\xeb\x76\x1f\xfb\x48\xb1\x86\xde\x13\x00\xe0\x5b\x18\x0f\xec\ -\x26\xe3\x7e\x70\x2e\x01\x00\xee\xc7\x78\x60\xe7\x18\xf7\x83\x07\ -\x20\x00\xc0\xfd\x18\x0f\xec\x0e\xe3\x7e\xb0\x31\x01\x00\x1e\x80\ -\xf1\xc0\x4e\x30\xee\x07\x9b\x10\x00\x60\x03\xc6\x03\xdb\xcc\xa7\ -\xfb\xc1\x56\x04\x00\xd8\x84\xf1\xc0\x56\xf2\xe9\x7e\x30\x06\x01\ -\x00\xb6\x60\x3c\xb0\x55\x7c\xba\x1f\x8c\x49\x00\x80\x31\x18\x0f\ -\x6c\x07\xe3\x7e\x30\x3e\x01\x00\xc6\x64\x3c\x30\x7a\xc6\xfd\x60\ -\x02\x02\x00\x8c\xc9\x78\x60\xbc\x8c\xfb\xc1\xe4\x04\x00\x98\x80\ -\xf1\xc0\x28\x19\xf7\x83\x29\x08\x00\x30\x21\xe3\x81\x31\x31\xee\ -\x07\xd3\x12\x00\x60\x0a\xc6\x03\xa3\x70\x6f\x12\x86\x3f\x6a\xdc\ -\x0f\xa6\x23\x00\xc0\x94\x8c\x07\x36\xea\xec\xb8\xdf\xc1\x5d\x47\ -\x6f\x29\xd6\xc0\x84\x04\x00\x98\x81\xf1\xc0\x66\x18\xf7\x83\xd9\ -\x09\x00\x30\x23\xe3\x81\xb5\x33\xee\x07\x25\x10\x00\x60\x46\xc6\ -\x03\xeb\x63\xdc\x0f\xca\x23\x00\x40\x09\x8c\x07\xd6\xc2\xb8\x1f\ -\x94\x48\x00\x80\x92\x18\x0f\xac\x92\x71\x3f\x28\x9b\x00\x00\x25\ -\xca\xc7\x03\xd3\x30\xf8\xf1\x6c\xd3\x78\x60\x79\x8c\xfb\x41\x05\ -\x04\x00\x28\xd9\xb5\xbb\x6e\xbc\xd9\x78\x60\x69\x8c\xfb\x41\x45\ -\x04\x00\xa8\x80\xf1\xc0\x72\x18\xf7\x83\xea\x08\x00\x50\x11\xe3\ -\x81\x33\x33\xee\x07\x15\x12\x00\xa0\x22\xc6\x03\xa7\x67\xdc\x0f\ -\xaa\x27\x00\x40\x85\x8c\x07\x4e\xc5\xb8\x1f\xd4\x40\x00\x80\x8a\ -\x19\x0f\x9c\x84\x71\x3f\xa8\x8b\x00\x00\x35\x30\x1e\x38\x16\xe3\ -\x7e\x50\x23\x01\x00\x6a\x62\x3c\x70\x53\xc6\xfd\xa0\x66\x02\x00\ -\xd4\xc8\x78\xe0\x03\x33\xee\x07\xf5\x13\x00\xa0\x66\xc6\x03\xcf\ -\x61\xdc\x0f\x1a\x20\x00\x40\xcd\x8c\x07\xde\xc7\xb8\x1f\x34\x47\ -\x00\x80\x06\xe4\xe3\x81\x6b\x67\x06\x2f\xc8\x36\xfb\x3c\x1e\x68\ -\xdc\x0f\x1a\x14\x8a\x47\xa0\x01\xcb\xab\x0b\x4f\x48\xd3\xe4\xc3\ -\xd9\xe6\xc5\xa3\x3d\x7d\x91\x8f\xfb\xa5\x57\xb8\xe3\x1f\x9a\xe3\ -\x0c\x00\x34\xa8\xa7\xe3\x81\xc6\xfd\x20\x02\x02\x00\x34\xac\x67\ -\xe3\x81\xc6\xfd\x20\x12\x02\x00\x44\xa0\x2f\xe3\x81\xc6\xfd\x20\ -\x1e\x02\x00\x44\xa2\x07\xe3\x81\xef\x3a\xb8\xfb\xf0\xaf\x16\xdb\ -\x40\xc3\x04\x00\x88\x44\x97\xc7\x03\xd7\xc7\xfd\xb2\xc7\xb4\xd8\ -\x05\x34\x4c\x00\x80\x88\x74\x74\x3c\xd0\xb8\x1f\x44\xc8\x18\x20\ -\x44\xa8\x3b\xe3\x81\xc6\xfd\x20\x56\xce\x00\x40\x84\x3a\x32\x1e\ -\x68\xdc\x0f\x22\x26\x00\x40\xa4\x5a\x3e\x1e\x68\xdc\x0f\x22\x27\ -\x00\x40\xc4\xda\x3a\x1e\x68\xdc\x0f\xe2\x27\x00\x40\xe4\x46\xe3\ -\x81\xe1\x68\xb1\x6c\x03\xe3\x7e\xd0\x02\x02\x00\x44\x2e\x1f\x0f\ -\x3c\x99\xce\xbf\x38\x24\xe1\x23\xc5\xae\x98\x1d\x37\xee\x07\xed\ -\x60\x0a\x00\x5a\xe2\x86\x0f\xff\xe4\xc3\xd7\x4e\x9f\xca\x43\xc0\ -\xe3\x47\x7b\xa2\x73\x67\x3a\x37\x77\xc5\xb5\x4f\x7f\xff\x17\x8b\ -\x35\x10\x31\x01\x00\x5a\xa4\x18\x0f\xbc\x2d\xdb\xbc\x68\xb4\x27\ -\x1a\xf7\x64\x2f\xfe\x4f\xcd\x5e\xfc\xef\x2e\xd6\x40\xe4\x5c\x02\ -\x80\x16\x29\xc6\x03\x7f\x2c\xdb\x3c\x3d\xda\x13\x85\x93\x49\x08\ -\x2f\xf0\xe2\x0f\xed\x22\x00\x40\xcb\x9c\x1d\x0f\x0c\xe9\x2b\x8a\ -\x65\xd3\xd2\x34\x84\x97\x1c\xdc\x75\x38\x3f\x2b\x01\xb4\x88\x00\ -\x00\x2d\x74\xed\xae\xa3\xef\x48\x93\x70\xa8\x58\x36\x26\x84\xe4\ -\xf5\xd7\xee\x3a\x7c\xa4\x58\x02\x2d\xe2\x1e\x00\x68\xa9\x34\x4b\ -\x00\xcb\xab\xfb\x0f\x67\x5b\xfb\x8a\x5d\x75\x7b\xd7\xc1\xdd\x47\ -\x5e\x5a\x6c\x03\x2d\xe3\x0c\x00\xb4\x54\x3e\x6a\x97\x8f\x07\x66\ -\x9b\xb5\x7f\x7a\x60\xf6\xff\x7d\xf6\xd3\xfd\x8a\x25\xd0\x42\xce\ -\x00\x40\xcb\x5d\xff\xc1\xab\x2e\x9d\xdb\x36\xcc\xc7\x03\x1f\x37\ -\xda\x53\xb9\x3b\xb7\xa5\x83\xa7\x5f\xbd\xe7\xc6\xcf\x17\x6b\xa0\ -\x85\x04\x00\xe8\x80\x1a\xc7\x03\x8d\xfb\x41\x47\xb8\x04\x00\x1d\ -\x90\x8f\x07\x26\x21\xbd\x32\xdb\xfc\xc6\x68\x4f\x25\xbe\x3a\x1c\ -\x86\x1f\xf2\xe2\x0f\xdd\x20\x00\x40\x47\xe4\x9f\xbc\x97\xa6\x67\ -\x43\xc0\x57\x47\x7b\x4a\xf5\xe5\x2c\x60\x3c\xff\xba\x67\x1e\xfe\ -\x8b\x62\x0d\xb4\x9c\x4b\x00\xd0\x31\x4b\xab\x7b\xbf\x3b\x49\x07\ -\x7f\x90\x6d\x5e\x3e\xda\x33\xb3\x4f\x87\x90\xbc\xe0\xec\x59\x06\ -\xa0\x33\x9c\x01\x80\x8e\x39\xb8\xeb\xd8\x27\xe6\xee\xdd\xfe\x3d\ -\x59\xbc\x7f\x4b\xb6\x9c\xa5\x31\xf0\x54\xf6\xae\xff\x37\xb7\x6f\ -\x1f\x7e\xaf\x17\x7f\xe8\x1e\x67\x00\xa0\xc3\x0e\x7d\xe8\x85\x8f\ -\x1f\x0c\x87\xaf\x4d\xd3\xf4\xaa\x6c\x79\xe1\x68\xef\x96\xbe\x94\ -\xa4\xe9\xfb\xb6\x0d\xb7\xdd\x70\xf5\xb3\xde\xff\x0f\xc5\x3e\xa0\ -\x63\x04\x00\xe8\x81\x37\xdd\xb6\x77\xe7\xc9\xd3\x61\xcf\xdc\x30\ -\x3c\x33\x1d\x24\x4f\x4e\xd2\xb3\x23\x83\x79\x20\xc8\x3f\xb6\xf7\ -\x2b\x21\x49\xef\x4e\x43\xf2\xc9\x74\x38\x77\xd3\x8e\x1d\x67\x56\ -\x5f\x73\xc5\xb1\x13\xf9\x7f\x0f\xe8\xaa\x24\xf9\xff\x1a\x94\x1d\ -\x80\x49\x1d\x95\xb1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ -\x82\ -\x00\x00\x22\xbd\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x01\x87\x00\x00\x00\x81\x08\x03\x00\x00\x00\x1c\xee\x86\xe5\ -\x00\x00\x00\xf3\x50\x4c\x54\x45\xff\xff\xff\x8c\xb6\x3c\x2c\x44\ -\x91\xc1\x77\x24\x29\x42\x90\x8a\xb5\x37\x00\x2d\x88\x1a\x38\x8c\ -\x85\xb2\x2a\x15\x35\x8b\x88\xb4\x33\x25\x3f\x8f\x22\x3d\x8e\x0d\ -\x31\x89\x83\xb1\x23\x1f\x3b\x8d\x11\x33\x8a\xf7\xfa\xf2\xf7\xf8\ -\xfb\x32\x4a\x95\xa0\xc2\x63\xdc\xdf\xea\xbf\xc4\xd9\xde\xe9\xce\ -\xfb\xfc\xfe\x9e\xa6\xc7\xa7\xae\xcb\x00\x2a\x87\x82\x8d\xb8\xf9\ -\xfb\xf6\x7a\x86\xb4\xcf\xdf\xb4\xb8\xd1\x8e\xeb\xed\xf4\x3d\x52\ -\x99\x8e\x98\xbe\xbe\xd5\x98\xb8\xbf\xd6\xda\xde\xea\x70\x7e\xb0\ -\x4e\x5f\x9f\x94\xbb\x49\xeb\xf2\xe0\xe0\xea\xd1\xc2\xd7\xa0\xcf\ -\xd3\xe4\x97\xa0\xc4\x58\x68\xa3\xbd\x6c\x00\xae\xca\x7f\xc8\xdb\ -\xac\x60\x6f\xa7\x4e\x60\x9f\xa7\xc6\x70\x98\xbd\x54\xd8\xe5\xc1\ -\xf0\xf5\xe8\x67\x75\xaa\x00\x24\x85\xb2\xcd\x83\x7c\x88\xb5\x97\ -\xbc\x50\xe1\xeb\xd0\xbf\xd5\x9a\xe9\xd1\xbc\xa3\xc4\x6a\xf9\xf2\ -\xeb\x00\x1d\x83\xc4\x7e\x32\xef\xde\xce\xde\xb9\x99\xd2\xa0\x71\ -\xd7\xaa\x82\xc8\x88\x45\x00\x17\x81\x7c\xad\x07\xcc\x90\x55\xc3\ -\x7b\x2a\xe3\xc5\xaa\xf4\xe9\xde\x00\x0f\x80\x59\x84\xfe\xe4\x00\ -\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x5d\x09\x5b\xdb\x3a\xd6\ -\x4e\x5c\xef\x6b\x16\x12\xb2\x92\x38\x21\x0b\x81\x10\x08\x4b\x12\ -\xa0\xf4\x72\xd7\x99\xe9\xcc\x37\xf3\xff\x7f\xcd\x77\x8e\x36\xcb\ -\xb6\x4c\xb9\x2d\xb4\xa5\xe5\x3c\x77\xa6\xc4\x96\x25\x59\xaf\x74\ -\x36\x9d\x23\x97\x4a\x39\xea\x6f\xef\x37\xeb\xc3\xe1\xf9\xc3\xde\ -\xd1\x51\x59\xd0\xb6\x3f\xbc\x1a\x1e\x9e\x0c\x36\xc7\xdb\x7e\xfe\ -\x99\x37\x7a\x56\xda\x6e\x0e\xf7\x8e\xec\xd0\xb6\x5d\xd7\x35\x0c\ -\x23\x41\xa1\x6c\x1f\x97\x4e\xf0\xaa\x6d\xc3\xed\xf2\xf5\xf9\xc9\ -\x66\xf1\x06\xc7\xcb\xd0\x62\x58\x0e\x6d\x57\x1e\x7c\x19\x87\x41\ -\x69\x63\xf3\x1f\x00\x11\x00\x12\x1e\x9d\xaf\x8f\xdf\xc0\x78\x6e\ -\xda\x7e\xd8\xb3\xed\x02\x14\xca\x65\xf7\xa4\xb4\xb0\xd3\x97\x0c\ -\x3b\xfc\x18\x96\x6f\xef\xdf\xa0\x78\x46\x1a\x9c\x2c\xe0\xff\x37\ -\x57\x61\xc1\x82\x70\x87\xa5\x6a\x28\xff\xb6\xc3\xeb\x0f\x1b\x2a\ -\x2a\xfa\x6f\x48\x3c\x17\x9d\x84\xc0\x68\xce\x37\x30\xa6\x27\x86\ -\x5d\x80\x43\x49\xe0\x60\xd8\xee\xf9\x46\x1e\xfc\x37\x24\x9e\x87\ -\x06\x21\x9d\xe3\xc6\x61\x15\x30\x71\x5d\x35\x0e\xec\xb2\x11\xee\ -\x6d\xb2\x15\xbc\xe1\xf0\x1c\x24\x38\x8e\xe1\x86\xc3\x7e\xa9\x7f\ -\x1e\x16\xe3\x60\x84\x57\x0b\x45\x15\x6f\x40\x3c\x03\xdd\x4a\x0b\ -\xc0\x0d\x07\x20\x27\x72\x52\x02\xe4\x34\xc1\x21\x7c\x48\xa1\x40\ -\x6c\x8d\xf5\x1a\xac\x8a\xea\xb7\xea\xfc\x8f\x43\xd5\xb4\x44\xb0\ -\x1f\xfa\xa5\xea\x51\x86\x37\x81\xde\x0a\x38\xb8\x65\x89\x23\xf5\ -\x37\xc3\x6b\x17\x6c\x0d\x42\xe1\xf9\xb7\xeb\xff\x8f\x42\x83\x8c\ -\x64\x76\x8d\x6d\xa9\xb4\x97\x06\xc2\xde\x07\x39\x1d\xde\x8a\x67\ -\xaa\x83\xbd\xb4\xb1\x61\xbf\x71\xa6\x2f\xa5\xab\x2c\x13\x32\x6c\ -\x60\x3e\xd7\xa9\xab\xe1\xb6\xb4\xfd\x28\x16\xc3\xe2\x3c\x67\x6a\ -\x20\x50\x6f\xf4\x45\x64\xe4\x4c\x06\xc3\xde\x96\xfa\x65\xf9\xb2\ -\xd1\x2f\x2d\xb8\x64\x58\x80\x95\x91\x7d\xa2\xec\x1e\x7e\xd3\x77\ -\xf8\x01\xa8\xaa\x30\x18\x8c\x72\x3f\x65\x3f\x1b\x7b\x49\xf1\xf3\ -\x50\x65\xea\x49\x25\xde\xe8\xb3\x68\x91\xd7\x52\x61\x7a\x5f\x95\ -\x4a\xeb\x04\x08\x54\x97\x28\x0d\x6c\x85\x75\x81\x38\x18\xdf\xf2\ -\x1d\x7e\x04\xda\x57\x1a\xd0\x21\x08\x83\x3d\x31\xf1\xc3\x63\x56\ -\xf8\x4a\x05\x1a\x85\xea\x4d\x50\x7f\x19\x6d\x94\x38\x94\xcb\xd2\ -\x4a\x71\x1f\x68\xd1\x6d\x56\x9d\x95\xc8\x2e\xb6\x20\x5a\x71\x1c\ -\xd7\xbe\xd2\xdb\xbc\x5e\xca\xaa\xad\x7c\x5c\xc1\x62\x38\xa7\xc3\ -\x6e\xbc\xa7\x25\x17\x45\x5e\xf1\x47\x71\xe8\xac\x2c\x33\x30\xcd\ -\x51\xaf\xf1\xd5\x5e\xe9\xcb\xe8\xe2\xf2\x72\x34\xfd\xfa\xcd\x16\ -\xe0\x60\x1c\xc1\xfc\x27\x0b\xc2\x70\xe9\x10\xdf\x17\xf2\x24\xb2\ -\x66\xd4\x7c\x69\xe9\x3b\x9e\xae\x01\xe9\xd1\xcd\xf8\x6b\xbe\x56\ -\x31\x35\xda\xed\xf6\x63\x73\xa2\xee\x79\xe6\xf2\xab\xf5\x46\x50\ -\x01\x0e\xe5\x10\x2c\x82\x07\x5c\x00\xe1\x3d\x29\x77\xfc\x28\x0c\ -\xc8\xc7\x14\xd4\x31\x01\x84\xc8\xa9\x38\x11\x40\xe1\x5c\x7c\xcd\ -\xf7\x2a\xa4\x66\xd7\xba\x69\x3e\x72\x7f\xa4\x6b\xc1\x37\x58\x0f\ -\x45\xf2\xc1\x3d\xa7\xf7\xec\x21\x29\xb6\x2d\x28\xc6\x97\xcf\x95\ -\xaa\xee\x66\x57\xd3\x3c\xb3\xd7\x5c\x36\xc7\x96\x07\x40\x7c\x17\ -\x2b\xa2\xe9\x68\x95\xc7\x70\xf0\xcc\xe0\x5f\xdf\x60\x3d\x14\xe1\ -\x50\xb6\x4b\xa5\x7e\x48\xf8\x13\x50\xda\xac\x53\xa0\xb6\x56\x54\ -\x5d\xb3\x00\x86\x51\x4c\xff\x5e\xf9\x9a\xd6\xfd\x1e\x64\xc4\xa7\ -\x70\x00\xad\x22\x6e\x7d\xb5\xde\x08\x2a\xc4\x21\x5c\x20\x63\x62\ -\x2a\xeb\x55\x56\x53\x32\x0c\x12\x35\x60\x63\x50\x01\x58\xe4\xa1\ -\xca\x1b\xde\x8b\x34\xdd\x17\x9a\x12\xac\x77\xff\xe0\x6b\xbd\xd5\ -\x23\xf4\x29\x1c\xbe\x11\xdd\x17\xe1\x80\x53\x7c\xcd\x1c\xa9\x6b\ -\xb9\x90\xe1\xda\xa1\x7d\x7d\x35\x3c\x59\x0f\x36\x9b\xc1\x60\x3d\ -\xbc\xba\x0e\xdf\x2b\x6a\xae\x05\xba\xfc\xc6\x4b\x53\xf7\x9c\xef\ -\x40\x7f\xfd\x4e\x71\x58\x7c\x2c\x30\x91\x51\x40\xdc\x7f\x24\xba\ -\xd2\x36\x91\xd1\x86\x6d\xbf\x3f\xdc\x6c\xb3\xb5\xe4\x2e\x00\x4d\ -\x1c\x4d\x1f\x49\xbf\x2f\xe7\xf3\xba\x60\xbc\xad\xc6\x72\x19\xe7\ -\x9f\x89\x1b\x29\xd6\x15\x2f\x73\xa5\x6a\xd3\xe5\x34\xcf\x36\x5a\ -\x0d\x45\x65\xa2\x16\x78\x24\xb9\x0d\x38\x38\x29\x1c\xa0\x91\xe9\ -\x63\xf3\xa3\xc6\xef\x62\xd3\x2f\x37\x91\xaa\x9b\x73\x5b\x05\x85\ -\x71\x0d\xf7\x86\xa4\x88\xb0\xac\xdd\x70\x6f\x40\x87\x7c\xb1\x59\ -\x9f\x0c\x6f\xaf\xae\xce\x6f\x0f\xd7\x9b\x85\xd2\x78\xd8\x79\x5a\ -\x74\xaa\x6e\x73\xb9\x0b\x82\x4a\x60\xd6\x4f\xe5\x11\x8d\xdb\x97\ -\x01\x90\x75\xc7\xdf\xb5\x39\x37\x2b\x50\x6a\x3e\x49\xca\x4c\xe6\ -\x26\x3c\x58\x99\x71\xb4\x26\x51\x3d\x5a\x96\x5a\x77\x15\xd0\x8a\ -\x9b\x51\xdd\x4f\x8a\xce\xb4\x7a\x84\x15\xc5\xe3\x3a\x3e\x62\xce\ -\x3b\xbc\x56\x47\xd3\xea\xf5\xba\x36\xa7\x3f\x3b\xa3\x2e\xde\x5e\ -\x09\x68\xee\xf4\xba\x47\x7a\x70\xea\xd5\xad\x56\xa9\xb1\x32\xa9\ -\xd8\x5e\x5e\x40\x9f\x2b\xe6\xea\x85\x64\x78\x15\xc7\x75\x1f\xa0\ -\xc8\x03\xc1\x23\x00\x36\x6c\x39\xd8\xee\x21\x16\xae\x6e\x86\x47\ -\x21\x8f\x36\x73\x43\xfb\xe1\xf0\x24\xb7\x63\x8d\x04\x82\xb9\xa2\ -\xee\x74\xaf\x0b\x46\x85\x0e\xff\x59\x51\x32\xfd\xc7\xa6\xe5\xc1\ -\x35\xb8\xa8\x51\x20\xee\x4c\x4f\xd3\xa1\xa0\x17\xcc\x19\x32\xad\ -\x55\xe0\xe9\x1e\x94\xf2\xbb\x6c\x54\x27\x8e\x1e\x2c\x5b\x9a\xa5\ -\x03\xe2\xad\x8a\x1e\xed\x78\x6d\x2d\x53\xf7\x67\x58\xa0\x1b\x61\ -\x53\xf0\xbf\xe0\x92\xde\x41\x1c\xe0\x8a\x47\x96\x6a\x5c\x77\xb0\ -\x49\x54\xeb\xf8\xa3\x07\x91\x4e\xd9\xe7\xd8\xd2\xcd\xd2\x14\x3a\ -\x41\xde\xa2\x67\x42\xbb\xd8\x1b\xf3\xee\xef\x0f\xf2\x13\x68\xfb\ -\xf1\x68\x08\xa6\x42\x7f\x5d\xce\x22\x11\xf2\x22\x47\x64\x39\xb8\ -\xf6\x09\xa0\x52\x5d\x5f\xcb\x3b\x40\x6e\x79\x50\x54\x71\x6c\x6a\ -\x9a\xa9\x5c\xc6\xbd\x00\x8c\x8a\x4a\x64\x55\x60\x74\x1c\xc6\x30\ -\x6a\x73\xe0\x62\x8e\x13\xa1\xa5\x11\x11\x71\xde\x31\x35\xbd\x32\ -\xda\x8d\x02\x4f\xf3\x75\x5a\x6a\x15\x69\xbe\x73\xb9\xc3\xb1\xeb\ -\xd2\xf9\x0b\xbc\xaf\x32\xdd\x81\x3e\xe0\xc0\xca\x9b\x79\x7a\x45\ -\xac\x25\xe0\x3e\x13\x84\x41\xd7\xa3\xca\x68\x1e\xc1\xe0\x5b\x07\ -\xfc\x8e\x66\x05\xb0\x18\xb1\x55\x1d\xa0\x06\xeb\xa6\x62\xe9\x9a\ -\xc5\x80\x38\xf0\x75\x8b\xe2\x10\x69\x4e\xcd\x87\x3e\xa2\x59\x07\ -\x7d\xd6\x03\xe8\x0d\xf4\x39\x78\x11\xf5\x7b\x6b\x63\x74\xde\x10\ -\xf4\x9d\x41\x06\x89\x90\x71\x1b\x62\xe9\x19\x18\x42\x50\x5a\x9c\ -\x87\xa9\x1d\x20\x5b\x69\x36\x50\x5a\x42\xcf\x35\xe5\x0d\x04\xe8\ -\x34\x2e\xb5\x96\x73\x5f\xf3\x18\x7b\x18\x45\x5a\xa4\x4d\x6a\xa5\ -\xd6\xd8\xd2\xe8\x68\xc2\x9c\xb5\x70\x22\x36\x56\x56\x34\x27\x38\ -\xb4\x1d\x2d\xda\xe1\xad\x26\x8c\x06\x1d\x2b\xc0\xc1\xeb\x59\x5a\ -\x64\xad\x26\x69\x09\x3c\xf3\x71\x12\xc4\x15\x60\x40\x63\xf2\x08\ -\x2c\x0b\x93\x2c\x3e\x28\x65\x75\x40\x0e\xe1\x0f\x40\xd0\xab\x37\ -\xa1\x5c\x07\xc7\x97\x32\x35\x19\x07\x1d\x16\x47\x45\xbf\x68\x94\ -\x96\x5d\xd0\xc0\xf1\x89\x69\x1d\xea\x79\x09\x33\x8f\xee\x3f\xb8\ -\xe1\x35\x2c\x8a\x93\xd4\x20\x73\x1c\x70\x39\xd8\xd7\x0b\xc5\x0e\ -\x90\xfb\x08\x0c\xf8\xbe\xfa\x5c\x75\x03\x14\x58\x87\xf1\xf1\x39\ -\xbc\x3d\x19\xb9\x3b\x4b\x73\x66\x54\x58\x5c\x7a\x5a\x00\xe3\x1f\ -\x07\x5a\xc4\x26\xde\xc1\x9c\xdc\x69\xc1\xa0\x71\xde\x52\xd1\xac\ -\x36\xfe\x01\x38\x68\x50\x7e\x4c\x0b\x04\x42\x33\x6e\xf9\x9a\x2f\ -\x78\x54\x89\x95\xb4\x26\xac\x5f\x9c\x5d\x4e\x61\xc9\x31\x26\x88\ -\xb3\xc6\xa7\xad\x49\x38\x68\x9e\x4e\x1f\xba\x04\x7e\x48\x0b\xc6\ -\x8e\xee\xbd\x84\x63\x80\xef\x03\x19\x21\x0c\xf5\x76\xcf\xce\xe1\ -\x80\x8e\xf1\x10\x37\x20\x86\xf9\x1d\xa0\xc7\x9c\xdd\x38\x55\x55\ -\x1d\x86\x97\xf7\x56\xd2\xdf\x38\x5c\xf1\x8d\xe6\x73\xb6\xdb\xb6\ -\x88\x3e\x33\x05\x1c\xda\xec\x12\x05\x08\x06\x30\xe0\xf2\x66\xae\ -\x53\x55\x0c\x71\xd0\x02\x2e\x82\x77\xb0\xbe\xe8\x5f\x30\xac\x8e\ -\x24\xde\x4b\x84\x4d\x52\xad\x41\x5a\x35\x60\xe0\x88\x52\xb0\x80\ -\x68\xed\x29\x1c\x34\xa7\xc1\x1e\xb6\x78\x67\xee\xa2\x02\x76\xfb\ -\x65\xd4\x4f\xe2\x87\x31\x10\xe0\x24\xcc\xe2\xf0\x00\xc2\x18\x8c\ -\xb9\xfd\x7c\x7c\x99\xad\x14\xcf\x9c\x10\x87\x95\xe2\x3a\x8e\xb3\ -\x18\xa2\x11\x30\x9f\x12\x19\x74\x4b\xd2\x67\xf0\x7e\x8c\x6c\x2d\ -\xa5\x8c\xc2\x00\x78\xfc\xef\xd3\x48\xeb\xc6\xb4\x11\x2d\xea\x49\ -\x4d\x32\xa4\x7a\x51\x22\x2a\x28\xd5\x14\x38\xd4\x41\x78\xf0\xfb\ -\x80\x1c\xad\x28\x85\x43\xc0\xc4\x90\xa5\x05\x5c\xa3\x58\x56\x5e\ -\xc6\xfe\x90\xa3\x97\x8e\x16\x60\xd7\xf1\x59\x1f\x92\xd9\x5e\x0d\ -\xdd\xf7\x55\x5c\x0c\x59\x14\xb8\xcb\xa3\x88\x8a\xd6\xc3\xcc\xd3\ -\x4c\x31\xbe\x30\x23\x91\x6b\x2b\x70\x28\xcd\x41\x84\xfa\x6d\x69\ -\x30\xe7\x7a\x82\x2b\x0c\x0c\x61\x2e\x04\x07\x51\xa6\xe6\xe8\x0c\ -\x94\x28\xdd\x76\x63\xd2\x03\x16\x98\xc5\x01\xa0\x49\x4a\x01\x53\ -\xa3\xd5\xcb\x38\xf0\x06\xa1\x9b\x01\x2f\x08\x13\x44\xac\x8d\xe7\ -\x24\x79\x9a\x1b\xe1\xa6\xb4\xe5\x81\x03\x36\xb9\xbd\x0e\x71\xeb\ -\x79\x4f\x61\x75\x27\xbb\xa5\x4a\x42\xf9\x70\xa9\xb8\x0e\xfc\xbf\ -\x22\x7e\x74\x60\x71\x2c\xd5\x38\x4c\xbb\x3a\x2a\x36\x33\xa1\xfa\ -\x56\x74\xbd\x0e\xb6\x20\xd2\xe5\x9c\xc9\x18\xc0\x21\x92\xd4\x97\ -\x0b\xd0\xad\xf0\x5f\xac\x4f\xac\xb9\x65\x4f\x37\x2d\x1f\x1d\xbf\ -\x19\x1c\xa0\x94\x2f\xd6\x12\x2e\x4d\x54\xa1\x52\x38\x70\x41\x02\ -\xf5\xea\x97\x97\xa2\xe9\x64\x05\x3e\x23\xa5\xd9\x0d\x00\x51\xa5\ -\x40\xb0\xe9\xfe\xfe\x3d\xf0\xae\xf7\x2a\x93\x5b\xe9\x53\x4a\x08\ -\xd6\xaf\x52\x5f\xaa\xb3\xf7\x25\x34\xa1\x4c\x4a\x85\x43\x69\xaa\ -\x23\xf3\xf7\x83\x11\xe3\x02\x5d\x50\xf4\x3d\x46\x08\x11\x3e\x80\ -\xd2\xb7\x93\xd4\x8d\x8c\x09\x95\x99\x71\xc2\xc3\x27\xf5\x20\x02\ -\xf6\xe3\x38\x79\x1c\x96\x15\x79\x66\xaf\x40\x26\xa3\x20\x92\x71\ -\x08\xd8\xc2\x85\xb9\xa3\x49\x4d\x13\xcb\xe4\xb9\x29\x23\x7c\x71\ -\x45\x90\xc9\x4f\x5d\xd9\x5b\xa3\x5f\x00\x43\xc1\x96\x83\xa0\x22\ -\xfb\x21\x8d\x83\x53\x8c\x43\xa9\xd5\xb6\x1c\x18\x00\xb0\xc0\xb0\ -\x1a\xe0\x22\x60\xd2\x25\xf4\x9b\x02\x87\x5a\x97\x0e\xf6\x88\xb3\ -\xb0\xd6\x85\x09\x20\x98\xa3\x71\x13\xaa\xcd\xe1\x90\x7a\x78\xa7\ -\xc2\x81\x09\x05\x58\x03\x9a\xd4\xf4\xcd\x4b\xe0\x70\x94\x19\x5d\ -\x98\xe6\x64\x67\x9a\xba\xb2\xd7\x60\x41\x5f\x2b\x61\x70\x3f\x15\ -\x4b\x09\xd6\x96\xca\x9e\x06\xb5\x55\x17\x3f\x26\x42\x39\x52\xe0\ -\x80\x3f\x76\x30\x9b\xc1\x8e\xab\xa1\x85\x8c\xdc\xbc\x95\x10\x79\ -\x3e\x8d\x03\x30\x10\xd4\xa3\x1a\x26\xbf\x3a\x07\x1e\x6f\x9d\xe2\ -\xac\x6e\x04\xaa\xf5\x20\x39\x5e\x60\xce\xfb\x8f\xe0\x50\x97\x9b\ -\x7e\x09\xbf\xf8\xfb\xcc\x82\x30\xca\xd4\x74\xa3\x6c\x07\x60\xb8\ -\x55\x7b\x64\xe5\x2d\x87\x58\xb5\xb1\x70\x91\xf1\x2f\xd5\x96\x4b\ -\x84\x65\x05\xfa\xbe\x78\x8f\x36\x95\xb7\x85\x38\x40\xd5\xa7\x68\ -\xff\x22\x43\x0e\x14\x72\x3f\x8b\x03\xfc\x06\x25\x00\x6a\x0d\xb8\ -\xe5\xe7\x5f\x52\xde\x32\xcd\xe3\x00\xd0\xf8\x89\x93\xa2\xce\x54\ -\x61\x15\x0e\x00\xaf\x53\x38\x80\xcf\x44\x7b\xb9\xe0\xee\x5b\xb2\ -\xdf\x60\xb3\xfb\x9b\x82\x0d\x51\x29\x94\xb2\x71\xd3\x5d\xe5\xfd\ -\x9d\x20\x83\x75\x5d\xfe\x7d\xe3\xdc\x74\xf0\x3d\x13\x1d\x90\x98\ -\xbd\xf1\xa3\x38\x40\xed\x15\x5a\xcf\x48\x4f\xb9\x6f\x09\x65\x71\ -\x88\x2b\xf8\x1b\xd8\x12\xd5\x10\xc0\xf8\xf5\x18\xe6\x0a\x1c\x5a\ -\x92\x25\x93\x28\x4f\x2a\x1c\x0e\x7c\x49\xc7\x7b\x21\xca\xc5\xb7\ -\x62\xb8\x52\xdf\x45\x77\x2b\x52\xbf\x28\x4a\x23\x4c\x7c\xdd\x30\ -\x9a\x51\x3d\xb7\x56\x51\x40\x38\xd2\x20\x81\x84\x43\xed\x1e\xe0\ -\x49\x86\x0e\xf4\x10\x14\x16\x8f\xe2\x80\xa3\x80\x6e\x28\xd5\x60\ -\x64\x71\x80\xd5\xe6\x5d\xd4\x78\x6d\x71\x37\x51\x6d\x14\x7c\x09\ -\x55\xe3\x40\x72\x48\xd1\xfb\x2a\x1c\x3a\x56\xb6\x4f\xcf\x4f\xe7\ -\x39\xee\x8f\x10\x0c\xc2\x21\xbd\x3d\x2c\x8a\x59\xb2\x93\x2a\x22\ -\x9d\xb1\x8e\x34\xed\x60\x94\x93\xa9\x7f\x10\xd1\xed\x08\x80\x47\ -\x08\x6a\x54\x3b\xf1\xb9\xc7\x71\x00\xa3\x0c\x47\x06\x0a\xfb\xd9\ -\x46\x72\x38\x74\x2c\x5d\x87\x51\xa3\x80\x35\xcc\x84\x33\x82\x09\ -\x90\xe0\xc0\xc4\x16\xf0\x2f\xa1\x30\x01\xbb\xa4\x7e\x23\x15\x0e\ -\xd0\x67\x4f\xa5\x83\x3f\x27\x29\x06\x1a\x0d\x65\xe6\x48\xad\x2a\ -\xb9\x12\x66\xee\x26\x56\x1c\x8c\x22\x50\x7e\xe1\xc6\x26\x3a\x54\ -\xe9\x98\xc6\x3b\x60\xf3\x26\x99\x87\x3b\x9f\x83\x16\xf3\x3d\x6b\ -\x05\x0e\x9d\xdd\x6c\xc7\xd8\x87\xc7\xf6\x93\x7c\xe1\x8b\x2b\xb5\ -\x0f\x0e\x08\x67\xcf\xe1\x80\x66\xf8\x88\x0f\x1a\xf0\x1a\xe6\xe2\ -\x8a\x2f\x2d\x49\x6f\xe5\x8f\xe0\x94\x60\x98\x80\x24\xa1\x9e\x70\ -\x25\x0e\x88\x92\xc5\xec\x94\xc9\xec\x60\xf6\x12\xbb\x41\x87\x79\ -\x1c\x70\x41\x6c\xf6\x0b\xee\xa2\x7b\xf6\xe8\xfc\x64\x73\x2c\x6a\ -\x80\x69\xa5\x69\x2a\xe3\xa6\x03\x9c\x49\xaf\xd4\x7b\xed\xd3\x0b\ -\xc7\x17\x8e\xe7\x06\xc0\x63\xad\x9a\x8d\x69\x1b\xbd\xcd\x44\x05\ -\x54\xe0\x70\xda\xf5\xbc\xe0\x60\xda\x6a\x2d\x81\x7b\x50\xf6\xd6\ -\x01\xbc\x83\xbb\x65\x1c\x37\xe7\x8e\xef\x90\x01\xce\xe1\x80\x23\ -\xa6\x89\x6b\xf0\x68\xb4\x9b\xc6\xcb\x5e\xc5\xf3\x05\x0e\x15\x28\ -\x30\x99\x2e\x11\xe4\x31\xd8\x9a\x95\xf1\xb2\xd1\xdc\xc1\x45\x16\ -\xb5\xa4\xc4\x61\x8a\x3c\xf6\xa2\x19\xc7\xcb\x5d\xe0\x47\xe6\x4b\ -\xe8\x4b\x27\x0a\xc6\x83\xd1\x01\xd4\xbb\xe4\x66\x41\x08\xdf\x7f\ -\x20\x39\xd3\xdb\xc4\x8a\x23\xaf\x0e\x2f\x94\xaf\x7b\x8c\xf1\x4b\ -\x7a\x64\x45\xb8\xef\x53\xe1\x0e\xd0\xc9\x0d\x58\x02\x4e\x50\x01\ -\x76\x16\x8d\xc8\x2b\xa9\xf8\x52\x0f\xec\x69\x3f\x30\x4d\x50\x7f\ -\x23\xe6\xb7\x9d\xc1\x9a\xf2\x2b\x66\x00\x56\x85\x4f\x7d\x4f\x79\ -\x1c\x3a\x38\x29\xba\x6c\x6d\x92\xc0\x9d\xc0\xac\xf8\xba\x39\xf3\ -\xd8\x4c\x89\x6f\x10\x28\xba\xff\x50\x5a\xe1\x32\xa9\x60\x85\x7a\ -\x97\x71\x30\x25\x0e\xa5\x36\xf4\x06\xfa\x6c\x42\xc9\x17\x0a\x33\ -\x1b\x28\x92\xa6\x85\x6d\x90\x8e\xe6\x30\xc2\x23\xb4\x27\xaa\x83\ -\xdb\xa3\xf0\xa3\xd8\x00\x42\x03\x0b\xc9\x51\x78\xbf\x9a\x9e\x43\ -\x41\xd2\xad\x20\xd1\x61\x9b\x16\x6e\xbd\xe9\xba\x6f\x5e\xd0\x99\ -\x15\xdf\x44\x22\xb6\x6b\x09\x7f\x13\x46\xdd\xac\x57\x48\xa9\x88\ -\x97\xc2\x4d\xb1\x08\xb7\xd6\xe0\xd2\x8e\xb2\x86\xa9\xf4\x20\xeb\ -\x4d\x37\x8a\x92\x88\xb5\xd3\xae\x8f\xed\x54\xea\xcb\x52\x10\x05\ -\x74\xc5\xde\x99\x58\x07\x63\x5d\x07\xa6\x4f\x6a\xb4\x84\xd3\x76\ -\x6c\x46\xc4\x9e\x2b\xb5\xcd\xa8\x9b\x30\xa0\x4e\x85\xf4\x19\x60\ -\x1d\xbd\x4c\xf4\x4f\x75\x83\x47\x09\x64\xe6\x3d\x0f\x93\x94\x85\ -\x87\x11\x3e\xe0\x32\x39\x79\x1f\x62\x69\x5b\xac\x07\xb2\xd1\x88\ -\x1e\x08\xd5\x86\x61\x6b\x72\x11\x39\x81\x63\xcd\xdb\xb2\xf8\xa8\ -\x75\xe6\x91\x65\xe9\x07\x62\x62\x2d\xef\x12\x07\x43\xe7\x80\x8b\ -\xe9\xc9\x4c\xb7\xa2\xfa\x9d\x34\xfd\x1a\xe3\x91\xe5\x58\x5a\x72\ -\x69\x72\x97\x5e\x0e\x58\x55\x6f\x9c\x0c\xdf\xf4\xa0\x1e\xd5\x67\ -\x08\x55\x4f\x5c\xee\x60\x1d\x11\xdf\x83\xe8\xd5\xe1\xd7\xe8\x54\ -\x74\xaf\x75\xda\x9b\xa6\xff\x60\x7d\x6e\x63\x9f\xbd\xdd\x4b\xc5\ -\x7a\x10\x06\x93\xdd\xa0\xe6\x2e\xed\xa3\x64\xa9\x84\x7b\x50\xf0\ -\x58\x1c\x39\x10\x8a\xbd\x07\xe2\xa7\xc7\x39\x5f\x2f\x68\xa1\x16\ -\xab\x74\xef\xda\xe7\x32\xd9\xcf\x7e\xb0\xb0\x8e\x27\x8b\xdd\xda\ -\x0b\xc6\xfd\x2c\x3e\xba\x7b\x6b\x10\x06\xa9\x0d\x6a\x97\xe6\x24\ -\x26\xc9\x42\xae\x01\xc8\x2c\xf6\xc4\x56\x90\xe4\xf4\x9e\xeb\x14\ -\x87\x97\x37\x75\x7e\x68\xc2\xe0\x49\x3b\x7c\xb8\xc7\x68\x31\xc1\ -\x85\x58\x7e\x8f\x48\x81\xb0\xaf\xfa\xe9\x0d\x39\x57\x24\x8f\xd6\ -\x1c\x8e\x83\x4a\x40\xbc\xd1\x93\x89\x7a\xb9\xc3\xf7\xf7\xa5\x7e\ -\x92\xef\x43\xad\x65\x9e\x2c\x84\xfb\xa2\x8b\xb2\x2c\x43\x6c\x21\ -\xa6\xb9\x78\xd0\x0a\xa3\x95\xde\xe8\x49\xc4\x52\x74\x8d\xf0\xaa\ -\x0a\xfa\x11\xdf\x04\x22\x02\x82\xa9\x4b\x98\xa5\xb5\x49\xef\x4e\ -\x27\x9b\x0f\x5c\x3c\x68\x74\xab\xf9\x8d\x3e\x97\x84\x83\xc9\xb5\ -\xef\x45\xee\x15\xdd\x6c\xa3\xc1\xaf\x98\x01\x71\x92\xb6\xab\x8d\ -\x64\xf3\x61\xc4\xd9\x52\xb1\xa0\x7e\xa3\xa7\x50\x62\xc8\x19\xc8\ -\x7f\xe8\x51\x02\x74\x17\x88\xe0\x80\xab\x61\x9d\x71\x6f\x24\xf9\ -\x0e\xdc\x7a\x20\x39\x3f\xdf\x41\x18\xf1\xeb\xa5\x85\xc4\x71\xd0\ -\xbb\xf7\x80\x40\x50\x77\x2b\xca\x69\xfb\x44\xe1\xfb\x56\x89\x07\ -\x4d\x6c\x23\xbe\xd1\x67\x51\x55\x8a\x02\xb0\x6f\x29\x10\x54\x2f\ -\xad\x86\x24\x59\x34\x9f\x63\x1d\x8a\xc8\xe2\x44\x3c\x68\x49\x78\ -\x51\x8e\x62\x7d\x54\x67\x06\x57\x47\xff\x89\x57\x4d\xa7\x3e\xd2\ -\x1f\x31\xc7\xa5\xa8\x18\xfb\x03\xdb\x1a\xc2\xeb\x60\x3f\x60\x96\ -\xe2\x51\xd6\xf1\x21\x1d\x1f\x20\xac\x87\x47\x15\xd7\x86\xa9\x3b\ -\xd4\x62\x6e\x59\x95\xac\x05\xfc\x8a\xa8\x35\x3e\x3d\xfd\x12\xed\ -\xbc\xe3\xe8\x8f\x46\x65\x4a\xfc\x1f\xc4\x41\xdf\x30\xd8\x09\x32\ -\x84\x01\x1d\xe6\x36\x46\xed\x9c\x73\x89\x90\x55\xb8\x57\xd2\x10\ -\x41\x3f\xcb\x40\x19\x5d\xf6\x4a\xa8\xf6\x1b\xf7\x52\x7d\x1e\x75\ -\xa4\x80\x34\x25\xc9\x40\x6c\xf1\x70\x0d\x6a\x40\x60\xd4\xcc\x36\ -\xbf\x05\x91\x1c\xf3\x23\x8b\x87\xac\xeb\x53\xa2\x04\x07\xdc\xcd\ -\xf9\x82\x17\xf9\xc6\x84\x51\x81\x2f\x8a\x83\xa4\x98\x62\xde\xfa\ -\x20\xb4\x49\xba\xee\xf5\x46\xb5\x61\x27\x85\x6a\xdc\x49\xe2\xe1\ -\x11\x43\x2e\xc1\xa1\x63\x91\x48\xca\x57\x4a\x2f\x8f\x43\x69\x28\ -\xb8\x8f\x7d\x88\x27\x69\x10\x43\xee\x50\xb9\x1c\xa4\x08\x32\x4d\ -\x97\x71\x28\xcc\x0c\x78\xc3\x81\xd2\x13\x70\xa0\xfa\x2a\xe7\x4c\ -\x7d\x12\xe2\x8d\x07\x20\xe6\xf7\x4d\x8d\x07\xf1\x0c\xdd\x12\xe5\ -\x94\xdb\x3e\x16\x94\xe0\xd0\x74\x5e\xb3\xb9\xf7\x35\x70\x48\x72\ -\xa4\x51\x1d\xda\x70\x4b\x2d\xbf\x5d\x27\x2d\x07\xba\x25\x2a\x70\ -\x50\xe4\xe5\x36\x48\x8e\x60\x82\x43\xc3\x94\xdd\x1f\xad\xe5\x64\ -\xb2\x4c\xe9\xb1\xb5\x7c\x6a\x22\x4d\x25\x6c\xe5\x2e\xe5\xb2\x06\ -\xf3\x69\x8d\x8d\xe6\xa4\x99\x7e\xef\x06\x3c\xa6\x7c\x7d\x56\x45\ -\x63\x9a\x2e\x8f\x75\x26\x57\x10\x87\x27\xa5\x03\xc5\xbc\x6f\xe9\ -\x1e\xa4\x70\x80\xae\x2c\x55\x3a\x7c\x72\xf4\x15\x32\x25\x26\x03\ -\xf2\xf9\xd5\x72\xf6\x89\xac\xb5\x2a\x70\x88\x0f\x30\x47\xb0\xbb\ -\x6a\x48\x41\xd2\xf5\x9b\x89\x7c\xdb\x71\x2a\xdd\x9d\x18\xbc\xe9\ -\xaa\x5b\x71\x2a\x66\xd4\x66\xa3\x7e\xfa\xdb\xbf\x26\xa5\xc6\x25\ -\x5c\x0c\xba\x3b\x69\x80\x3a\x23\x7c\x32\x30\xe5\x6b\xcd\x91\x09\ -\xc5\xcc\x51\xa2\xb4\x75\x74\xd3\x71\x1c\xb3\x2e\xae\xd4\xc6\x01\ -\x3e\xd6\x9d\xa9\xe7\xe4\xb4\x17\x99\x41\x10\x98\x63\x8e\x79\xab\ -\xad\x43\x9d\xf8\x00\x4f\x1f\x03\xf5\xd0\x37\x4d\xf3\x7f\xf8\xdb\ -\x34\xbb\x3c\x11\xa0\xf6\x3f\xf3\x86\x4c\xaf\x83\x1b\xf3\xb7\x1a\ -\xf6\xf8\x37\x62\x4b\x75\xb4\x74\x0f\x24\x1c\x3a\x58\x75\xd0\x9d\ -\x2b\xd4\x60\x61\x36\xa3\xa8\x66\x93\xfe\x36\x9f\xf6\x90\x64\x87\ -\xc6\xb2\xd6\x9a\xc7\xa1\x19\x60\x7a\x99\xa7\x7b\x95\x4e\x12\xa1\ -\xb2\x14\xeb\x7a\x59\xc1\x44\x77\x28\xe2\x9b\xac\x33\x9d\x2e\xa6\ -\x26\x7a\xa0\x79\xe9\x74\xd2\xb6\xad\xe8\x74\x69\x92\xfc\x45\x28\ -\xc5\xdf\x26\x1e\x39\x3a\x2d\xe7\x99\xe2\x35\x66\x01\xcd\x38\xd4\ -\x83\x15\x1b\xc6\xcb\x8a\xae\x7b\x11\x06\xef\xb0\x7e\xc5\xba\xa5\ -\x93\xc7\x7c\x53\xa1\x51\xc4\x3b\x33\xd2\x48\xa6\xa4\xc3\x62\x64\ -\x1a\xd0\x0f\xda\x4e\xc4\x4c\x54\xae\xa6\x93\xad\x16\x2d\x09\x6c\ -\x83\xeb\x34\xf8\xb8\x87\x59\x8e\xd3\x80\x25\x37\xae\x02\x68\xcf\ -\x87\x1e\x98\xb3\x2c\x0e\x17\x15\x5d\xf3\x48\xde\xe3\x2e\xbf\xaf\ -\x25\x2c\x85\x24\xc5\x24\xcf\x95\xa4\xcc\xc4\x34\x5b\xca\x2e\xd9\ -\x29\x39\x5e\x63\xb4\xd2\x03\x1d\xb4\xaa\x5c\xd2\x00\xc6\x6d\x38\ -\xa3\xbb\xde\x08\x23\x6a\x1a\xf4\x01\xbc\x32\x5b\xe1\x78\x74\x97\ -\xac\x81\x11\xbc\x99\x33\xf2\xe0\xd5\x74\xb6\x15\x5d\x03\xec\xa0\ -\xde\xdd\x2a\xc0\x72\x3c\xe4\x0e\xf3\x1c\xfd\x4b\x68\x4b\x8b\xa8\ -\x81\x82\x59\x8d\xd6\xac\xb7\xc3\x74\x7a\xda\xb1\xb9\xa7\x79\xd6\ -\x6e\xe7\x41\x83\x41\x2e\x54\x78\x6a\xf9\x9a\x17\x44\x23\xcc\x94\ -\xa4\x36\x67\x1c\x78\xba\x0f\xed\x5c\x06\xbe\xc6\x72\x48\xc9\x7a\ -\x80\x25\xf3\xaf\x3c\x0e\x1e\xc3\x41\x8b\xe2\x88\x25\x37\xae\x2c\ -\xd1\x03\xa7\x97\xc6\x01\x23\x45\x82\xd5\x6c\x64\x62\xac\x44\x9e\ -\x39\xf1\xf3\x1b\x78\x34\x5f\xfe\x7c\x93\x54\x4e\x5c\x9a\x2d\x65\ -\x71\xa8\xc3\x4c\x27\x19\x86\xcb\xba\xa7\xc0\x01\x46\xa5\x42\x66\ -\xf8\x24\x60\xe9\x8a\x3b\x9f\x46\xc8\xd4\xee\x02\xcf\x9f\x32\x1c\ -\x34\x4f\xc3\xe1\x6f\xc0\xb0\x32\x47\xe2\x6c\x34\x1a\x5d\xe0\xdb\ -\xb4\x0e\x22\xbe\x2b\xde\x84\x01\xb2\xb0\xdc\x12\xd6\x04\xb1\xd8\ -\xa1\xd6\x88\xa4\xdc\xc5\x23\x96\x5a\xb8\xc4\xd0\x49\xbc\x32\xb1\ -\xbc\xdc\x82\x88\x61\x89\x39\x98\x1c\xdd\xe2\x01\x6f\xa5\x15\xb4\ -\x43\x18\x52\x7c\xe1\xb1\xee\xe3\xbc\xbf\xc3\x24\xc7\x56\x31\x0e\ -\xda\xcc\xd3\x9d\x3a\x74\x10\x7b\x40\xe2\x19\xb0\x07\xdd\xa9\x8c\ -\x43\x0d\x96\x2a\x89\x38\x99\x8e\x7c\x8b\xf4\x29\x93\xe2\xc6\xa3\ -\x8e\xf9\x51\x70\xd9\x63\xe3\x52\x49\x40\x8d\x34\x5b\x4a\x12\xda\ -\x08\x4d\x2a\xe2\x3c\x81\xd6\xdc\xcb\xe1\xb0\x4c\x44\xc6\xa9\x45\ -\x5d\x53\xbe\x88\x37\xed\xb0\x7c\x5e\xc0\x41\xe7\xd3\x65\x95\xaf\ -\x43\x24\x8f\x90\xd3\x7a\x28\xeb\x88\x2d\xcd\xeb\xd2\x51\x9a\x8b\ -\x21\x26\x4c\x03\x13\x4b\x62\x56\x26\x67\x71\x8e\x3c\xcd\x64\xb5\ -\xc3\xe4\xea\x66\xa6\xa8\xc3\x02\xf9\x53\x72\xba\x08\x07\x8f\x05\ -\xcf\x25\x01\xb9\x31\xcb\x03\x14\x38\x2c\x93\x40\xa1\x4b\xaa\xb6\ -\xfc\xfe\x67\xaa\x41\xae\x34\x19\x4c\x4c\x2f\xb2\xfb\x0e\xf2\xd1\ -\x01\x3d\x3f\x8d\x43\xfa\xed\x2e\xbc\xc4\xf1\xd7\xc8\x27\x33\x1d\ -\x88\xa4\xc2\x52\xcd\xd2\x71\x5a\xb7\xa2\x24\x15\x93\x8d\x03\xc6\ -\x83\x73\x21\x8e\xa1\x7a\x59\x95\x17\x2a\x21\x61\x53\x53\x33\x49\ -\x0e\x69\xff\xb6\x9a\xb4\x48\xa6\x62\x33\x29\xd5\x6d\xc9\x38\xe4\ -\x23\x03\x9a\x52\x04\xd5\xcc\xcb\x29\x97\x3c\x2f\x32\xa5\xb7\x16\ -\xe1\xa0\x59\x0d\xd6\x27\x11\x20\x7a\xe7\xd3\x7c\x3d\x8e\x43\xd3\ -\x11\x4e\x20\x26\x1d\x7e\x3f\xfb\xe7\xaf\x72\x8b\x55\x06\x04\x97\ -\xc6\x29\x31\xed\xa6\x60\x68\x55\xd2\x6c\x29\x1d\x97\xda\x0a\xa4\ -\xe3\x35\x14\x49\x65\x20\x00\x05\x8f\x5e\x81\x2c\x87\x7f\x60\xad\ -\x3a\x69\x97\xad\x8c\x03\x89\xd8\xcf\x8c\x0f\x8e\x30\x2b\x27\x9e\ -\xa4\x49\x00\xa7\x52\x5a\xe7\x84\x86\xb4\xc2\xb2\x8b\x8a\x0e\x03\ -\x98\x24\x51\xaf\xe9\x00\x32\x4a\x7f\x0b\x07\x96\xdc\x28\xf7\x9d\ -\x07\xd5\x4a\xeb\x41\x9f\xa7\xe4\xf3\xd9\xbb\x77\x67\xff\x95\x2f\ -\xb0\xc3\xbd\xb9\x2b\x4f\x0e\xcb\xb7\xf7\x52\x5c\xac\x93\x96\xd2\ -\x19\x7f\xeb\x34\x90\xf4\xa7\xfc\x7a\xc0\x3c\x5a\x71\x05\x16\x16\ -\x72\x82\x1e\x70\x21\xb3\x27\x5b\x00\x29\x1c\xda\xe9\xa8\xeb\x78\ -\xd2\x5b\x81\x30\x20\x38\xec\xbc\x6c\xee\xd1\xce\x4b\x16\x4f\x83\ -\x4e\x76\xd4\x1b\xac\x4b\xb5\xbb\xf4\x11\x1c\x1a\x93\xde\xa5\xae\ -\x3d\x1d\x07\xce\x5b\x41\x4c\x08\x4f\x1a\xeb\x41\x22\xa7\x51\x53\ -\xd2\x3a\x09\x12\xbf\x02\x0e\xef\xce\xfe\x90\xbb\xd4\x7f\xb0\x25\ -\x49\x2d\xef\xd6\x7d\x48\xf7\xbd\x9e\x59\x0e\xe9\xf3\xd4\x9a\x15\ -\x89\x4f\xe5\x71\x40\x4b\xdc\x8b\x2c\x42\x18\x2f\x8e\xdd\xab\x69\ -\xa8\x22\x9a\xc8\x56\x18\xa5\x70\xc0\xc5\xcc\x2b\x69\x9c\xd6\x03\ -\xc7\xc7\x64\x35\x82\x03\xcc\xd7\x4c\x2e\x1e\xaa\x10\xbc\x7a\x9f\ -\xe5\x8a\xe2\x81\x12\x5e\x45\x3f\x55\x6c\x57\x15\xe1\x30\x1d\xeb\ -\x81\x15\x61\x76\xd8\x93\x71\xe0\xf5\x40\x0f\x74\xb9\x07\x28\x57\ -\x04\x0e\x18\xf1\xa9\x5b\xce\x01\x1f\xb1\x3f\x10\x87\x0c\x10\xa5\ -\x35\x9e\x1b\xc0\xb6\x7a\xee\x45\x9e\xfb\x5e\x26\x2f\x71\xe2\x68\ -\x59\x1c\xe2\xf4\xed\xc7\x70\x58\x62\xb8\xaf\x9e\x10\xd1\x5c\xe3\ -\x39\x1a\x01\x5e\xc5\xe3\x65\x53\x38\x2c\xc5\x11\x03\x8d\x9d\x49\ -\x92\x0f\x41\x99\xa5\x38\xd4\xf5\xec\xd9\x05\x38\x49\xa4\xea\x69\ -\xb4\xf6\xb8\xeb\xe3\xf6\xad\x39\xcb\x21\xa1\xc6\x61\x7a\xc9\xda\ -\xf9\x3b\x38\x70\x0c\xb3\x3d\xc0\xe7\x12\xfb\xa1\xe9\x00\x37\x01\ -\xb5\xf8\x92\xb6\xfa\x27\xc1\x21\x0b\xc4\xf6\x3c\x74\x19\x63\xc2\ -\x3c\x77\xc3\xb0\xc3\xab\xe3\x52\x86\xb4\xec\x72\x48\xef\x4f\x7f\ -\x1a\x07\x1d\xcf\xdf\xe1\x44\x65\x5b\x69\x32\x02\xe3\x01\x66\x8a\ -\xb0\xe3\x24\x1c\x44\x9e\x2d\x9a\x7b\x5e\x50\xef\x4d\x62\xe0\x47\ -\x04\x07\x2f\x77\x86\x04\x8e\x82\x54\xbd\xce\x00\x9c\x99\x16\x26\ -\x7c\x76\xb3\x6a\xab\x12\x87\x31\xb4\x43\x92\x1c\xe3\xfa\xe7\xe1\ -\xa0\x67\x7b\x20\xd9\xd3\xb5\x53\x92\x85\xc9\xec\xb8\xbf\xde\x51\ -\x4a\xcb\x08\x0c\x63\x3d\x62\x7b\x6e\x7b\x61\x68\x5c\x0d\xf2\x27\ -\x2c\xb5\xb3\xd2\x21\x7d\xea\xd5\x13\x70\x50\x6f\x57\x2c\xef\x22\ -\xb4\x96\xbb\xdc\x7e\x90\xd6\x43\x85\x2d\x6e\x13\x6c\xa0\x1d\x19\ -\x35\x8e\x43\x3d\x97\xb3\x95\x5f\x21\x94\xe2\x36\x9e\x60\x93\x3b\ -\x34\x46\x85\xc3\x18\xcf\x98\xb9\x23\xc3\xa6\xfd\x0d\x39\x9d\xe0\ -\x90\xcf\x23\x4b\xf9\x97\x5a\x13\xb4\x44\x69\x34\xfb\xef\xef\x0a\ -\x80\x80\x45\x51\x2d\x55\xab\xd5\xfe\x71\xfe\xf4\x31\xf2\x3e\x66\ -\x16\x86\x4c\xfc\x52\x2a\x1b\x53\x29\x1f\xa2\xac\x35\x20\xfa\xa7\ -\x7b\xcc\xb2\xcb\xc9\x87\x0e\xea\x5e\xba\xce\x54\x12\x81\x03\x98\ -\x0f\x5e\xba\x92\xb9\x5e\xe8\xd7\x9d\x5e\x38\xb9\x33\x1b\x15\x38\ -\x34\x80\x85\x47\x8c\x7f\x7f\x0e\x0e\xd0\x83\xdc\x8e\x57\xd6\xdf\ -\x1a\xf7\x68\xf2\xda\xaf\x67\xef\x04\xfd\x9a\x7d\xe8\x51\xa2\x49\ -\x0f\x69\x33\x2e\xb5\xd8\x63\xf9\xd4\x84\x3c\x0e\xa2\xe7\x2a\x6a\ -\xa1\x09\x8c\xe3\x9f\xc2\x01\x54\x51\xcc\x6c\x93\xd5\x26\x8e\xc3\ -\xce\xcb\x46\xd7\xce\xa4\xdc\xb7\x1c\x8d\xa3\xec\x9e\x95\x02\x07\ -\x49\xe4\x7e\x16\x0e\x68\xdb\x64\xe5\x50\xde\xef\x8d\xc7\x2e\xac\ -\x98\x98\xa6\xf4\x9f\xbf\x73\x54\x7a\x3b\x27\xa4\x73\x61\x02\xb0\ -\x2e\xc5\xb9\x88\x0a\xfb\x01\xac\x4d\xbd\x54\x44\xfc\xfc\x8c\x14\ -\x0e\x78\x4a\x50\x2c\x25\x8a\x94\x12\x1c\xda\xb9\x44\x42\x76\x6c\ -\x8d\x9a\xd0\x70\x4c\xfb\x24\x15\x38\x5c\x7a\xc9\x8e\x95\x8c\x83\ -\xca\x9e\x6e\x29\x70\xe8\x28\x7a\xa0\xd8\x7f\x58\x61\xca\xf7\xff\ -\x49\x38\xbc\xfb\xfd\xe9\x40\x34\xf3\x5c\x29\x17\xef\x0d\xaf\x23\ -\xc6\x1e\x13\x12\x33\x38\xe0\x71\x5f\x85\xfb\xd9\x13\xe6\xe9\x90\ -\x47\x73\xc9\xdc\x50\xa0\x97\x47\x4c\xb1\x5d\xfa\xcc\x7e\x00\x2e\ -\x97\x49\x24\x6c\x3c\x96\x5a\x08\x96\x7b\xc6\xa2\x53\xe0\x80\x07\ -\x9d\x26\xdd\x51\xac\x07\x3d\x39\xae\xa6\xcd\x5f\xa6\x97\x4e\x6e\ -\xcc\x8a\x28\x05\x0e\x17\x9e\x36\x2a\xfd\xe3\x9d\x4c\xbf\x3f\x95\ -\x35\x2d\x83\xac\xae\x44\xe4\x74\xba\x50\x23\xc9\x02\xc4\x03\xc4\ -\xb2\xfb\x27\x78\x9b\xd9\xc0\xf1\xc5\xea\xf2\x14\x4f\x4f\x9c\xed\ -\x18\x58\x2b\x76\xc4\x1b\xfa\x97\x98\x2c\x88\x35\x96\xa6\x08\x46\ -\x1f\xc3\x66\x8c\xb3\x81\xe0\x40\x0e\xd7\xa2\xcf\x4e\x2f\x49\x65\ -\xe8\x46\xe4\x39\xac\xe3\xcb\xd5\xbc\x56\x6a\xcd\x80\xe8\x42\xca\ -\xa7\x73\x29\x70\x40\xbf\x0c\x11\x0f\xad\x3b\x59\x6f\x4d\xc2\x4d\ -\x2e\x3d\xb6\x08\x6b\xb3\x0a\x1f\xf2\x5e\x26\xb9\x91\xf5\xe0\x14\ -\x3a\x25\xfb\x35\xc6\xf0\xaa\x54\xf4\xc4\x16\xfa\x15\xfe\x7a\x97\ -\xa6\x9c\xb0\x56\xd2\xd2\x51\xc1\x90\x39\x00\x8c\x1c\x32\xa6\x07\ -\xbd\x65\xa3\x39\x33\x41\xf0\xe6\xf6\xb1\xc8\xed\x83\x66\x63\x39\ -\xb6\x7c\x0f\x0f\x3e\x6c\xfe\xe6\x7b\x95\xd5\x32\xae\xe1\x89\x7b\ -\xf4\xc8\x43\x54\xca\xf4\x60\xb6\x8c\x1b\x1d\xb4\x40\xc9\xbb\x36\ -\x41\x8d\xb1\x3a\x8d\x69\xbb\x6e\x09\x3b\x0e\x0f\x6e\xd3\x2a\x3b\ -\xac\x2c\xf0\x48\x65\xd4\x7a\x9e\x4f\xa6\xd3\xce\xdc\xf2\x22\x94\ -\xd9\x11\xfc\xab\x77\xe2\x56\xdc\x46\x45\x28\xbd\x78\x15\x38\x74\ -\x80\x73\x6b\x93\xc6\xf4\xd4\x43\x33\x8c\xe1\x80\x27\xd2\xf5\x96\ -\xcb\x0e\x0e\xea\x29\xbc\x40\xd4\x9e\x2e\xc7\x3e\x18\xd1\x7e\x9c\ -\xc3\x61\x7a\x83\x3d\xe8\x60\x0f\x1c\x2f\x22\xcf\x73\x1c\x66\xa6\ -\xe7\x07\xe3\x46\x2d\x6e\x42\x1b\x66\xb3\xf4\xcf\x0c\x0e\x67\xbf\ -\x3c\x01\x86\x4e\x57\x05\x83\x42\x0d\x9d\x83\x56\xe6\x3b\x81\xe3\ -\xf9\xa3\x99\x97\xdf\x34\x9d\x5b\xf4\x36\x98\x4a\x26\xb9\x39\x31\ -\x41\x4f\xaa\x98\x66\xe0\x83\xa9\x1d\x73\x1c\xea\x9e\xe7\x04\x01\ -\x29\x4b\xdf\x75\x04\xd6\x82\x05\x57\x74\x67\xb5\xd2\x89\x07\x0f\ -\x07\xc5\x24\x89\x84\x98\x97\xca\xb6\x7d\xb0\x9b\x1e\x29\xa7\x45\ -\xc4\xc7\x1c\x8f\x2c\x4c\x84\x33\xa1\x2e\xbd\x9b\xe9\xec\x44\x3a\ -\xec\x6c\x4c\x0f\x85\x6a\xf9\xb4\x9d\x08\x26\x82\xf0\xeb\xce\x71\ -\x17\xc9\x71\x7e\x8b\x19\x28\x50\x00\x77\xb3\x9c\x39\x83\x95\x1d\ -\x28\x95\x0c\x94\xce\x7a\xe0\xc5\x1c\x07\xb2\x0e\x66\xb8\xf1\x40\ -\xb3\x30\x1d\x10\x2c\xef\xb2\x74\xf6\x8f\x4f\xa1\x10\xaf\x2a\x2a\ -\x14\x34\xa9\x7d\x4e\x2d\x34\x7b\x35\xdd\xab\x8c\xe2\xa6\xa9\x38\ -\xee\xfe\x80\x1c\x15\xaa\x7b\x0e\x0f\xf1\x6b\xcc\x03\x72\xcc\xa7\ -\x1f\x8c\x84\xdf\xbb\xd2\xc0\xd3\x42\xc1\xf4\x0c\xf8\xbb\xc6\x75\ -\x07\xcf\xf0\xc4\xcc\xc7\x71\x25\xba\x61\xb2\xa2\x1d\xd0\xca\x2c\ -\xb1\xb5\xd0\x8c\x1c\x72\x45\x64\x35\x96\x7a\x50\x46\x23\xe8\xe4\ -\xb2\xea\x6e\xa2\x1b\xbe\x42\x3a\x5d\x9a\x99\xdb\xc0\xe7\x3d\x18\ -\xf5\x4e\x69\x06\xd6\x2f\x2b\xe7\x13\xeb\x9f\x94\x5d\x92\xfe\x7b\ -\x51\xc5\x17\xd5\xe1\xb3\x89\x9a\x06\x3d\xf0\x53\x3d\x68\x8a\x66\ -\x26\xf8\x45\x06\xe8\x4a\x44\xce\x21\xcd\xe1\xf0\xee\xec\xf7\xb4\ -\x69\x9d\xa1\xe9\x81\x99\x57\x58\xa9\x74\x50\xa9\xeb\xcb\xbb\x51\ -\xa4\xed\xf0\x98\xb7\xbb\x9e\x62\x2b\xb2\x71\x7a\x31\xd2\x46\xbb\ -\x4e\xd2\xf3\x65\x6f\x14\x59\xa3\x19\x97\xcd\xf4\xc4\x92\xc9\x85\ -\x16\x8d\x0e\x24\xdd\xa3\xb3\x1b\xcd\x67\xf8\xd4\xf2\x6e\x2c\x7c\ -\x5a\x71\xfb\xa2\x6e\xd5\x2f\xa4\x84\xc8\xd6\x64\x36\xd2\xea\xab\ -\x71\x32\x41\xe2\xf6\xca\x8f\xbc\x55\x3b\xaf\xd1\x36\x7b\x89\xa7\ -\xb7\xc3\x12\x14\x6b\x9d\x0b\x68\x07\xbd\x5d\x93\x1e\xaf\x64\x3a\ -\xd3\xa2\x48\x63\x62\x2c\x1e\xaf\xea\xa3\x8b\x9e\xac\x15\xb5\x53\ -\xc9\x8d\xbc\x07\xe2\xda\x44\x34\xd3\x9a\xec\xea\x91\x3f\xa7\xf5\ -\xe6\x71\x00\x24\xfe\xad\x46\xa2\x36\x9d\xf4\xea\x81\xaf\x46\x01\ -\xd8\xd2\x4b\x64\x03\x89\x93\x63\x7e\x70\xfa\x8f\x0a\x08\x58\x13\ -\x7f\x66\xa1\x68\x9c\xce\x2d\x60\xbe\x4a\xc1\x40\xe9\x93\x71\x39\ -\x9f\x43\x3f\x0b\x0e\xff\x56\xe2\x00\x48\x9c\x9d\xa5\x74\xa7\xde\ -\x4d\xe4\x3d\x82\x01\xd0\x8b\x1c\x6a\xfa\xd3\xe0\xf0\xe7\x59\x01\ -\x10\x69\x81\x8d\xde\xf2\x4f\x50\x71\xee\xc3\x97\xd0\xcf\x82\xc3\ -\xaf\x45\x38\x9c\xfd\x25\x17\xcb\xed\xbc\xe5\x97\x83\xd2\xb9\xf9\ -\xc5\xf4\xb3\xe0\x90\x76\x6c\x48\x30\xa4\xa3\x07\xa6\x2a\x37\x46\ -\x8a\x5e\xe8\x13\x53\x6d\x4b\xef\xfe\x14\x38\x94\x7e\x51\x00\x71\ -\xf6\xef\xac\x5d\xbd\x8a\x1e\x87\x21\x7a\x89\x13\x1c\x81\x1a\xbe\ -\xf9\x3d\x7c\xcb\xe6\x6b\xd0\xaf\x7f\x9d\xa5\xa0\x38\x3b\xfb\x2b\ -\xaf\xb7\xd6\xea\x8f\x02\xa1\xbf\x5c\xce\xdb\x37\xf8\x64\xd2\xb7\ -\xa2\x5f\xff\xfc\xe7\x19\xa7\xdf\xff\xf1\x8b\xb2\x4c\x6d\xa5\x74\ -\xed\x31\x7a\xae\x0f\x61\xf5\x37\xfb\xfb\xfb\x8f\x1f\xcf\xfb\x63\ -\x53\xff\xbf\x7f\xfc\xf2\xcb\x2f\x7f\xfc\xf7\x11\xcf\x37\x1a\xe2\ -\x05\x32\x5a\x29\x1c\xfa\x55\x41\x99\x5a\xc9\x35\x65\x1b\x27\xa1\ -\x6d\xdb\xa1\xf2\xd6\xdf\xa6\x7c\xd3\xc5\xed\xbe\x2e\x9a\x5c\x9a\ -\x56\xde\x8a\xd0\x1d\xf5\xc1\x50\xfb\x1f\xc3\x84\xca\xe7\xd2\x0e\ -\xf7\x35\x5c\xf8\xa8\x42\x9c\xc4\x24\x94\xdd\x0f\x8a\x5b\x7f\x9b\ -\x36\xb4\x79\xe9\xbb\xd8\x55\xbc\x72\x5d\xfc\xc4\x2b\xa2\xb8\x73\ -\x01\x56\x75\xe4\xd1\x40\x78\x8c\x29\xb7\x82\x7a\xc1\x66\x4e\x3a\ -\x32\xd6\xb0\xf9\x01\x98\x34\x34\x2d\x54\xe1\x70\xe8\x96\xdd\xf7\ -\xc6\x63\xdf\xee\x7d\x3a\xb1\x7c\x81\x24\xa3\x92\x1c\x62\xf4\x03\ -\x7d\xaf\xbc\x31\x39\x9d\x5d\xd6\x23\xb3\x6b\x46\xf5\xd5\x5d\xa7\ -\x30\xb9\x26\xf7\x61\x6b\xfb\x88\x8d\x49\x11\x0e\xd5\x10\x0f\x2f\ -\x30\x0c\x77\xf8\x0c\xdd\xcc\x25\x10\xfc\x68\x38\x3c\x95\x28\x0e\ -\xec\x93\x8b\x34\x3a\x96\x47\xe2\x14\xe0\x70\xeb\x62\x22\xea\x22\ -\x94\x8f\xe8\xfd\x5c\xe2\xf1\xd1\x52\x6a\xeb\x4f\x8d\xc3\x06\x68\ -\x70\x32\xa4\x67\x9d\x85\xf4\x2c\xd2\x02\x1c\x16\xa1\x4b\x3e\xcb\ -\x38\x08\x1f\xfb\xfc\xd3\x13\x89\x84\x83\x62\x68\xae\x2b\x2e\xfd\ -\xd4\x38\xf0\x5f\x27\x24\x66\x96\x8e\x6f\x01\x0e\x87\x0f\x0f\x55\ -\xf6\xc7\xde\x17\x2f\x08\xcc\xe3\x78\x4f\x1a\x12\x71\x88\x3f\x33\ -\x0e\x86\xf8\x89\xdf\xb2\x66\x49\x2c\x85\x72\xfa\xf9\x08\xd3\x98\ -\xdc\xe1\x00\x16\x85\x7b\xc8\xaf\xbd\xe1\x80\xb4\x46\x46\x41\x8f\ -\x23\xe5\x38\xf4\x37\xeb\xf5\x20\x35\xf3\xb7\x78\x25\x17\x48\x8b\ -\x1f\xd1\xcc\x5c\xee\xef\xaf\xd7\xeb\xfd\x62\x2c\xf1\xc3\x09\xf6\ -\x06\x53\xf0\x93\x04\x26\x09\x87\xed\x76\x8b\x4b\xef\x78\x90\x6d\ -\x8d\xd4\xbb\x49\xd5\x0b\x85\xd6\xea\x90\xc6\xd7\x41\x19\x1c\x48\ -\xfe\x2f\xd5\x48\x09\x0e\xa5\xfe\x10\x25\xb8\x1d\x26\x82\xf4\xf8\ -\x1a\xbf\x96\x09\xff\xa5\x3e\x3c\x54\x3d\x34\xc8\xe5\xf0\x48\x18\ -\xda\xec\x51\x3b\xbc\x2d\xd2\x70\x1f\x28\xd4\xf8\x8d\x11\x21\xf4\ -\x13\x1c\xfa\x1f\xe1\xd1\xd2\xf1\x51\x88\xd5\x96\x93\xef\x27\x88\ -\x7a\xcf\x45\xbd\x83\x32\x14\x82\x52\xd7\xf7\x9f\x3d\x10\xdf\x98\ -\x1e\x5f\x0f\xf6\x3d\x3f\x76\x51\x08\xe5\x13\x71\x1e\x97\x7d\x9d\ -\xcc\xc8\x13\xf1\x15\x4d\xc3\x66\x23\xba\x15\x27\x36\xba\x6e\x81\ -\x13\x24\xa4\x09\x1c\x78\x16\x82\xcd\xbf\x17\x22\xad\x87\x10\xee\ -\xf2\x03\x07\x8d\x90\xc3\xae\xa8\xf7\x5c\x64\x32\x87\x87\xb9\x46\ -\x5e\x07\x65\x70\x40\xc1\xc9\x72\x5b\x48\x8a\x11\x32\x70\xaa\xcf\ -\x32\x49\x3a\x20\xaf\x4c\xbf\x11\xe5\x0a\xb3\xf7\x8a\xd4\xe2\x12\ -\x2c\x98\x0e\x4a\x52\xf8\xc0\x2e\xc4\x23\x1d\x0d\x57\xb9\x22\x70\ -\xf1\xe1\xaa\xda\xc8\x22\x21\x85\x03\x54\x80\x4f\x93\xd6\x42\x66\ -\x63\xc8\xf5\xd2\x95\x4b\x4e\xe1\x81\x35\x82\xc5\xb2\x59\x38\xaf\ -\x85\x52\xfa\x52\x95\x24\x04\x33\x99\x49\x53\xbd\x5c\xf7\x76\x4d\ -\xce\x56\xa1\x57\xc9\x07\x0e\x0c\x7b\xef\x8a\x4c\x4a\x9b\xcd\x51\ -\x02\x83\xfd\xfe\xe4\x84\x1c\xc5\x45\x3d\x4f\x68\x29\xbb\x0f\xf7\ -\xdb\x63\xbc\xa9\xfe\x4a\x11\x16\xc1\xd3\x27\xfa\x58\x29\x57\x09\ -\xd2\x38\x60\x07\xce\x0f\x1f\xc8\x10\x53\xa3\x1b\x17\x8f\xbb\x07\ -\xf5\x9e\xdb\x3c\x3d\x99\x2c\x85\xc1\xf1\x3e\x2c\x0b\x72\x82\xed\ -\x6b\x24\x8a\xc3\x2d\xd2\x39\x3b\x07\x99\xa5\x18\x11\x1c\xa8\x9b\ -\x03\xb9\x15\x3d\x36\x65\x48\x0e\xa3\x43\xce\x43\x92\xe9\xd9\xc7\ -\xeb\x70\xe8\x48\xe2\x3c\xf9\xec\x23\x39\xd8\x03\x01\x63\x27\xad\ -\x90\xe1\x56\x89\xd0\x32\x3f\x51\x93\xb0\x40\x36\xdd\x33\x38\xb8\ -\x57\x44\x54\x0b\xd4\x49\xbd\xf4\xf6\x90\xd5\x4b\x8e\x27\x24\x1c\ -\xea\x3e\xf1\xca\xbc\x36\xa2\x38\xb8\x2e\xf9\x4c\x35\x65\xb1\x6c\ -\x40\xc8\xe0\xb0\xcf\x7c\xd8\x5c\xa3\x21\x72\x61\x91\xdc\xc7\xb2\ -\xf4\x23\x20\xf4\xe2\x39\x5e\x44\x0e\xb6\x76\xc5\x49\x2b\xf8\xb4\ -\x60\xff\x12\x1d\x87\x7c\xa1\x10\x9c\xd9\x92\xc9\xf0\x25\x76\x68\ -\xce\x86\xf7\x00\x31\x67\x1d\xe8\x33\xb6\x46\x3e\xad\x4a\xe7\xce\ -\xeb\x55\x98\xb2\xfe\x25\xdb\xe5\xae\x1e\xd9\x7e\xe0\x47\x32\x2e\ -\x92\xd9\x48\xb9\xfb\x2d\xab\x82\x7b\x5f\x89\xc8\xc5\x1a\x50\x15\ -\xe2\xba\x28\x08\x1d\x43\x61\x7b\x7f\xe0\x65\xa9\x7b\x83\x09\xa9\ -\x34\x0e\x82\xa1\x21\xc7\xc3\xc9\x7f\x65\x24\xa7\xd2\x42\x0f\x0d\ -\x76\x3e\xa4\xf1\xf0\xca\x5d\xe5\x0c\x07\x83\x7f\x26\x33\x39\x96\ -\x43\xc6\x81\xcf\xc6\x81\x34\xe4\x64\xc0\x50\x52\x1f\xdb\x89\x1d\ -\x26\x70\xc0\xba\x40\x60\x10\x7a\x5f\x4e\x30\x91\x88\x0c\x2d\x1d\ -\x3e\xd4\x5c\xed\xe3\xa4\xda\x3c\x0e\x87\xac\x62\xac\xf7\x88\xd5\ -\x7b\xcd\xea\xc5\xbe\x1b\xe1\xd5\x7e\xbe\x89\xd7\x43\x14\x87\x23\ -\x24\x23\xe1\x39\x48\x2a\x1c\xd0\x1f\xc4\x53\xb6\xfb\x06\x3b\xe8\ -\x5d\x85\x43\x3f\x61\x77\x54\xdd\x42\x49\x72\x04\xac\xcf\xc0\x8f\ -\x16\x91\xa2\x5b\x8e\x23\x7b\x8c\x55\x51\x80\x03\x99\x01\x6b\x21\ -\xbb\x93\x7a\xfb\x42\x87\xb3\x8d\x0f\xaf\x77\x51\x48\xfa\x12\x02\ -\x21\xf1\x0f\x15\x0e\x87\x6e\x22\x50\x89\x02\x89\xfe\x39\x25\x0e\ -\xd9\x63\xea\xc2\x52\x72\xb0\x29\x75\xea\x11\xe9\x7e\xb5\x21\x34\ -\x14\x67\xd1\x16\xe1\xb0\x4f\x1b\xc9\x7d\x90\x8a\xf4\x90\xd9\x34\ -\x86\xfb\x5a\xb5\xd6\x94\xfd\x30\x10\xca\x0e\xa1\x42\x1c\xf8\xfa\ -\xff\x24\x0e\x86\x9d\xd0\xc7\x52\x16\x07\x94\x20\xbc\x08\xb5\x50\ -\x48\xd3\x4f\xc0\x41\xae\x97\xf6\x70\xf1\xc0\xbe\x41\x6f\xbf\x56\ -\xcf\x94\x6c\xc7\x91\x81\x11\x0b\x42\x85\xc3\x87\xd4\x7a\x28\x3f\ -\x8e\x03\x54\xd5\x4f\x08\x1f\x08\xd9\xd8\x61\xc9\xdc\x8a\x61\x9f\ -\xe0\x2c\xc0\x81\xdb\x7c\xaa\x7a\x91\x16\x43\x6a\xc7\xd9\xc3\x97\ -\x19\xa7\x97\x26\x19\x87\x75\x6a\x41\x14\xca\x69\xa6\x82\x92\x01\ -\xc3\xad\x08\xa5\x9c\x36\x14\x5e\xd3\x63\x4e\xf8\x23\x7f\x92\x1d\ -\x2d\x5f\x80\x03\x97\x4c\xae\x74\xea\x54\x86\x36\xd7\x76\x99\x5b\ -\x91\xaf\x8e\x52\x7e\x0d\x43\x96\x10\x2a\x1c\xee\xed\xa4\xc0\x31\ -\xff\x5b\x89\x03\x7e\xae\x22\x71\x97\x28\x88\x9c\x37\x6b\xf3\x08\ -\x05\xea\x93\x40\x31\x5b\x80\xc3\x03\xdb\xa4\xd8\x33\xe4\x4d\xa3\ -\x0c\x0d\xdd\xf2\xa7\xbe\xb7\xfd\xbd\x52\x0a\x07\xb2\x3d\xc6\x5f\ -\x44\x85\x03\x51\x83\xd8\x57\xba\x84\x77\x4e\x89\xc3\x50\x92\x24\ -\xfd\x73\x85\xb3\xa1\x4c\x2c\xbe\x05\xa3\x6d\x59\x58\x85\x69\x1c\ -\xd8\x87\x75\xc8\xf1\xb4\xd8\xb0\xac\x29\x88\x7a\x8f\x19\x5a\xc8\ -\xeb\x7e\x04\x1c\xe8\x30\xb3\x97\x52\xe1\x40\xec\x65\x5a\x80\xd8\ -\x5e\xc4\x5d\xa1\xc4\xe1\x98\x6c\x2a\xd0\xc7\xf7\x6c\x5b\x3a\x2d\ -\x90\xd2\x71\x98\x66\x30\x44\x63\xc2\xd5\x95\xb1\xa7\xcb\x89\xf1\ -\x4e\xda\xa5\x3b\xda\xb4\xde\x07\x9b\x9a\xe9\xeb\xd0\xa6\x70\xe1\ -\x51\x9e\x3f\x02\x0e\xf4\xfb\x98\xcc\x17\xa4\xc4\xe1\x98\xb8\x36\ -\xf7\x36\xfb\xa4\x24\x45\x44\xd0\x26\xb2\x8c\x00\x00\x01\x79\x49\ -\x44\x41\x54\x89\x03\xf5\xdc\x1e\x0d\x16\x8b\x01\x9e\x14\x15\xde\ -\x96\xd2\x84\xcf\xcb\x3b\x18\x1b\xde\x8f\xac\x9f\xcf\x1e\x2e\xb6\ -\xfb\xe4\xab\x23\xd4\xe3\x8b\xdd\x32\xca\x50\xef\x06\xbf\x3f\x8f\ -\xfb\x22\xe8\xf5\xb6\xf7\xe0\xe6\xe2\xda\xf8\x31\xe4\x03\x55\x0b\ -\xd9\x82\x50\xe2\x50\x3a\xb7\xa9\xe2\x48\x8d\x28\x62\x37\xa9\x71\ -\x38\x16\x1a\xa6\x91\x60\x9b\x10\xea\xb0\x92\xd1\x48\x97\x22\x9e\ -\x56\x9e\xc5\xa1\xec\x52\x1f\x37\xef\x16\x5d\x10\x72\xbd\x1b\xd6\ -\x92\x8b\x56\x84\x9b\x05\xfc\x95\x50\x66\xff\x61\x98\x48\x08\x35\ -\x0e\xa5\xe4\x6b\x20\x06\xdb\x92\x50\xe3\x00\x56\xae\x38\x23\xcd\ -\xb0\xb3\xcc\x82\xf0\x7b\x5b\xbe\x42\x38\xcf\x30\x87\xc3\x11\xdf\ -\x5f\x12\x9b\x1d\x1b\xb9\xde\xfb\xcc\x15\xf7\xe8\xb5\xfa\xbd\x3f\ -\xe2\xd4\x12\x3f\xb7\x24\x74\x95\xcc\xbc\x6b\xb4\xbe\xd8\x5b\xe1\ -\x55\xee\x5d\x1b\xc2\xf4\x44\xef\x44\x78\xbd\x48\xaa\x10\xdf\xc1\ -\x86\x92\x1f\x99\x18\xdd\x2f\xdb\x2e\x2d\x99\x0f\xec\x00\x96\x2e\ -\xef\xb5\x96\x58\xd0\xac\x8d\x71\x95\xf0\x0f\x1d\x73\x62\x2b\x1c\ -\xdb\x36\xa9\x23\xd9\x58\xc8\xd7\xbb\x78\x1f\xf2\x2b\xaf\xd5\xb3\ -\xb1\x5d\x0f\x80\x92\xdf\x1b\xfc\xb9\xe6\x7f\x71\x6f\xf5\x40\x2e\ -\x54\x5d\x5f\x5d\x5f\x3f\x0c\xef\x53\x55\xb0\x5f\xf7\xf8\x90\x18\ -\xf5\xcd\xed\xde\xf5\xde\xd5\x89\x42\x72\x92\xca\x53\xd7\x49\x2d\ -\xeb\x7e\xa9\x8f\xff\x52\x24\xa9\xdf\xbb\x7f\xf2\x70\xbd\x37\x4c\ -\x05\x0a\xe4\xeb\xbd\x1f\xee\x5d\x43\xa9\x57\xbb\x3d\xfd\x5d\x93\ -\xb4\xff\xf0\x46\xdf\x90\xde\x70\xf8\x3e\xe8\x0d\x87\xef\x83\xde\ -\x70\xf8\x3e\xe8\x0d\x87\xef\x83\xde\x70\xf8\x3e\xc8\x38\x3a\x3a\ -\xfa\xf2\xd8\xfe\xe7\xa3\xff\x07\x8c\x88\x30\xb7\x2e\xa3\xf2\x3b\ -\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x25\xd5\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ -\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\ -\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\ -\x0e\x1b\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\x24\xe8\x49\x44\x41\x54\x78\ -\x5e\xed\xdd\x0b\x90\x5d\xf7\x5d\x1f\xf0\xf3\xbf\xbb\x2b\xc7\x8f\ -\x58\xd2\xae\xec\x64\x52\x52\xdb\xa1\x90\x36\x21\x3c\x93\x00\x69\ -\x80\xe1\x1d\x68\x67\x3a\x4c\x71\x80\x06\x12\x49\x6d\x9d\x96\x62\ -\x6c\x39\xe1\x51\x5e\x15\xa5\x03\x81\x04\xad\x6c\x83\x19\xd4\x64\ -\x57\xb6\x5b\x08\x23\x12\x5a\xda\x26\x9d\x92\x04\xe8\x40\x43\x0a\ -\x4c\x4b\x81\x76\x08\x09\xe4\xe5\x60\xcb\x5a\xd9\x8e\x25\xdb\x7a\ -\xec\xfd\xf7\x5c\xdd\x83\x27\xb1\xbd\xbb\xf7\x71\x1e\xff\x73\xce\ -\xe7\x33\xa3\xde\xf3\x3f\x6a\x9b\x64\xaf\xa4\xf3\x3d\xff\x7b\xbe\ -\xbf\x1b\x32\xa0\xf3\x3e\x7e\xe8\xc6\xcb\xaf\x8c\x57\x7f\x4d\x0c\ -\xc3\xaf\xce\x62\xf6\xf9\x59\xc8\xae\x8f\x59\xb6\x67\xf4\x7b\xf9\ -\x3f\x02\x0f\xe7\xe7\x3e\x92\x1f\xfd\x71\x18\xc4\xdf\x7c\xe2\xcc\ -\xd2\xfb\x9e\x77\xec\xd8\x63\x97\xfe\x1f\x02\x9d\x25\x00\x40\x87\ -\x3d\x74\xeb\xfe\xeb\x37\xc3\xe0\xfb\x42\x16\x5f\x93\x2f\x77\x8f\ -\xcf\xee\xe8\x91\x98\xc5\x5f\x5e\xcc\x06\x6f\xde\xb3\xba\xf6\x17\ -\xc5\x39\xa0\x63\x04\x00\xe8\xa0\x4f\xde\x74\xd3\x15\x97\x5d\x71\ -\xf1\x27\xb2\x10\xbf\x27\x5f\xee\x1a\x9f\x9d\xda\x85\xfc\xd7\x5d\ -\x17\x16\x2e\xfe\xf0\x73\xdf\x72\xef\xd9\xf1\x29\xa0\x2b\x04\x00\ -\xe8\x98\x8d\x37\x1c\x78\x51\x36\x0c\xbf\x96\x65\xf1\x73\x8b\x53\ -\x73\x89\x31\xfb\xf0\x20\xc4\x6f\x59\x5e\x3d\xfe\xc7\xc5\x29\xa0\ -\x03\x04\x00\xe8\x90\x87\x0e\x1d\xf8\xaa\x61\x96\xfd\x7a\x7e\x78\ -\xf5\xf8\x4c\x69\x1e\x8d\x61\xf8\x2d\xfb\x8e\xdc\xfd\xde\x62\x0d\ -\xb4\x9c\x00\x00\x1d\x71\xea\x96\x03\x5f\x1a\x06\xd9\x6f\xe4\x87\ -\xcf\x1e\x9f\x29\xdd\x63\x61\x10\xbe\x71\xf9\x67\xd7\x7e\xa7\x58\ -\x03\x2d\x26\x00\x40\x07\x3c\xfc\xc6\x7f\x72\xc3\xe6\xe6\xe6\xef\ -\xe5\x87\xd7\x8e\xcf\x54\xe6\xf4\x70\x18\x5e\x71\xcd\xed\x6b\x7f\ -\x56\xac\x81\x96\x1a\x14\xaf\x40\x4b\x6d\xdc\xfc\x9a\xab\x37\x2f\ -\x6e\x8e\xb6\xfd\xab\xbe\xf8\x8f\x2c\x0f\x06\xc3\x77\xdf\xff\xc6\ -\xef\xaa\xe3\x3f\x0b\xa8\x90\x00\x00\x2d\x16\x6f\xba\x69\x29\x5b\ -\xbc\xec\x9d\x59\xc8\x3e\xaf\x38\x55\x83\x70\xc3\xd2\xe6\xd2\x3b\ -\xff\xf2\xf0\xfe\x67\x15\x27\x80\x16\x12\x00\xa0\xc5\x4e\x5f\x79\ -\xe1\xe7\xf2\x18\xf0\xb5\xc5\xb2\x46\xf1\xef\x5e\xfd\xc8\xe0\x9e\ -\xe8\x63\x44\x68\x2d\x01\x00\x5a\xea\xd4\xa1\x03\x3f\x92\xbf\xdc\ -\x34\x5e\x35\x21\xde\x78\xfa\xb6\xfd\x3f\x5e\x2c\x80\x96\x91\xde\ -\xa1\x85\x36\x6e\xdb\x7f\x63\x16\xc3\xaf\xe4\x87\x4d\xff\x1d\x8e\ -\x31\xcb\x0e\xec\x5b\x5d\xbf\xbb\x58\x03\x2d\x21\x00\x40\xcb\x9c\ -\xba\x65\xff\xcb\xc2\x20\xfc\x56\x7e\x78\xc5\xf8\x4c\xe3\x2e\xc4\ -\x30\xfc\x26\x33\x02\xa0\x5d\x04\x00\x68\x91\x1a\xeb\x7e\xd3\x52\ -\x0f\x84\x96\xf1\x0c\x00\xb4\x44\xcd\x75\xbf\x69\xa9\x07\x42\xcb\ -\x08\x00\xd0\x02\xcd\xd4\xfd\xa6\xa5\x1e\x08\x6d\x22\x00\x40\x0b\ -\x34\x57\xf7\x9b\xd6\xa8\x1e\x18\xee\x56\x0f\x84\xf4\x09\x00\x90\ -\xb8\x53\xb7\x1d\xf8\xe1\xfc\xa5\xc1\xba\xdf\xd4\x5e\xad\x1e\x08\ -\xe9\x93\xd2\x21\x61\x45\xdd\xef\xed\xf9\x61\xdb\xc2\xba\x7a\x20\ -\x24\x4e\x00\x80\x44\x25\x58\xf7\x9b\x96\x7a\x20\x24\x4c\x00\x80\ -\x04\x25\x5c\xf7\x9b\x96\x7a\x20\x24\xca\x33\x00\x90\x98\xc4\xeb\ -\x7e\xd3\x52\x0f\x84\x44\x09\x00\x90\x90\x76\xd4\xfd\xa6\xa5\x1e\ -\x08\x29\x12\x00\x20\x21\xa7\xaf\xb8\x70\x67\x3b\xea\x7e\xd3\x52\ -\x0f\x84\xd4\x08\x00\x90\x88\x4b\x75\xbf\x90\xbd\xbe\x58\x76\xd1\ -\xab\x4f\x1f\x3a\x70\xb8\x38\x06\x1a\x26\x8d\x43\x02\x5a\x5c\xf7\ -\x9b\x56\x8c\x21\xec\xdf\x77\x64\xed\x9e\x62\x0d\x34\x44\x00\x80\ -\x86\x75\xa0\xee\x37\x2d\xf5\x40\x48\x80\x00\x00\x0d\xea\x50\xdd\ -\x6f\x5a\xea\x81\xd0\x30\xcf\x00\x40\x43\x3a\x56\xf7\x9b\x96\x7a\ -\x20\x34\x4c\x00\x80\x06\x74\xb3\xee\x37\xad\x70\xc3\xd2\xc5\xc5\ -\x77\xa8\x07\x42\x33\x04\x00\x68\x40\x77\xeb\x7e\x53\x0a\xd9\x2b\ -\xd5\x03\xa1\x19\x02\x00\xd4\xac\x07\x75\xbf\x69\xa9\x07\x42\x03\ -\xa4\x6e\xa8\x51\x8f\xea\x7e\xd3\x52\x0f\x84\x9a\x09\x00\x50\x93\ -\x1e\xd6\xfd\xa6\x75\x21\xc6\xec\x55\xfb\x8e\xae\xbf\xaf\x58\x03\ -\x15\x12\x00\xa0\x06\x3d\xae\xfb\x4d\x4b\x3d\x10\x6a\x62\x1b\x12\ -\x2a\xd6\xf3\xba\xdf\xb4\xd4\x03\xa1\x26\x02\x00\x54\x48\xdd\x6f\ -\x16\xe3\x7a\x60\xbc\xf9\xe6\xcb\x8a\x13\x40\x05\x04\x00\xa8\x90\ -\xba\xdf\x8c\x42\xf6\xca\xd3\x8b\x67\xee\x51\x0f\x84\xea\x08\x00\ -\x50\x11\x75\xbf\xb9\xa9\x07\x42\x85\xa4\x6b\xa8\x80\xba\x5f\x69\ -\xd4\x03\xa1\x22\x02\x00\x94\x4c\xdd\xaf\x74\xea\x81\x50\x01\x01\ -\x00\x4a\xa4\xee\x57\x19\xf5\x40\x28\x99\xed\x49\x28\x89\xba\x5f\ -\xa5\x96\x07\x83\xf8\x2e\xf5\x40\x28\x8f\x00\x00\x25\x50\xf7\xab\ -\xc5\x0b\xd4\x03\xa1\x3c\x02\x00\x94\x40\xdd\xaf\x26\xea\x81\x50\ -\x1a\x01\x00\xe6\xa4\xee\x57\x3b\xf5\x40\x28\x81\x14\x0d\x73\x50\ -\xf7\x6b\x8c\x7a\x20\xcc\x49\x00\x80\x19\xa9\xfb\x35\x4e\x3d\x10\ -\xe6\x20\x00\xc0\x0c\xd4\xfd\x92\xa1\x1e\x08\x33\xb2\x6d\x09\x53\ -\x52\xf7\x4b\xca\xa5\x7a\xe0\xa3\x37\x1f\xb8\xa6\x58\x03\x13\x12\ -\x00\x60\x0a\xe3\xba\xdf\xae\x77\x64\xea\x7e\x29\x79\xc1\xf9\x85\ -\xec\x9d\xea\x81\x30\x1d\x01\x00\xa6\x30\xae\xfb\x65\x5f\x37\x5e\ -\x91\x0c\xf5\x40\x98\x9a\x00\x00\x13\x52\xf7\x4b\xde\xab\x4f\xdf\ -\x76\xf0\x5f\x15\xc7\xc0\x0e\xa4\x65\x98\x80\xba\x5f\x6b\xa8\x07\ -\xc2\x84\x04\x00\xd8\x81\xba\x5f\xeb\xa8\x07\xc2\x04\x04\x00\xd8\ -\x46\x51\xf7\x7b\x7f\x7e\xf8\x9c\xf1\x19\x5a\x42\x3d\x10\x76\x60\ -\x3b\x13\xb6\xf0\x69\x75\x3f\x17\xff\xf6\x51\x0f\x84\x1d\x08\x00\ -\xf0\x0c\xd4\xfd\x3a\x41\x3d\x10\xb6\x21\x00\xc0\x33\x50\xf7\xeb\ -\x08\xf5\x40\xd8\x92\x00\x00\x4f\x71\xea\xd0\xfe\x1f\xca\x2f\x17\ -\xea\x7e\xdd\xa1\x1e\x08\xcf\x40\x2a\x86\x4f\xa3\xee\xd7\x59\xea\ -\x81\xf0\x14\x02\x00\x14\xd4\xfd\x3a\x4f\x3d\x10\x3e\x8d\x00\x00\ -\x39\x75\xbf\xde\x38\x3d\x0c\x9b\x5f\x7e\xcd\x91\x7b\x3e\x58\xac\ -\xa1\xb7\x6c\x73\xd2\x7b\xea\x7e\xbd\xb2\x3c\x88\x0b\xef\x56\x0f\ -\x04\x01\x80\x9e\x53\xf7\xeb\x25\xf5\x40\xc8\x09\x00\xf4\x9a\xba\ -\x5f\x4f\x8d\xea\x81\x0b\x67\xee\x56\x0f\xa4\xcf\x04\x00\x7a\x4b\ -\xdd\xaf\xe7\x42\xf6\x6d\xea\x81\xf4\x99\xf4\x4b\x2f\xa9\xfb\x51\ -\x88\xb9\xd7\xed\x3b\x7a\xfc\xde\x62\x0d\xbd\x21\x00\xd0\x3b\xea\ -\x7e\x3c\x85\x7a\x20\xbd\x24\x00\xd0\x2b\xea\x7e\x6c\x41\x3d\x90\ -\xde\xb1\xfd\x49\x6f\xa8\xfb\xb1\x0d\xf5\x40\x7a\x47\x00\xa0\x17\ -\xd4\xfd\x98\x80\x7a\x20\xbd\x22\x00\xd0\x0b\xea\x7e\x4c\x44\x3d\ -\x90\x1e\x11\x00\xe8\x3c\x75\x3f\xa6\xa2\x1e\x48\x4f\x48\xb9\x74\ -\x9a\xba\x1f\x33\x52\x0f\xa4\xf3\x04\x00\x3a\x4b\xdd\x8f\x39\xa9\ -\x07\xd2\x69\x02\x00\x9d\xf4\xd0\xad\xfb\xaf\x1f\x86\xf0\x7b\xf9\ -\xa1\x27\xfe\x99\x87\x7a\x20\x9d\x65\x5b\x94\xce\x19\xd5\xfd\x86\ -\x59\xf8\x4f\xf9\xa1\x8b\x3f\xf3\x52\x0f\xa4\xb3\x04\x00\x3a\x45\ -\xdd\x8f\x0a\xa8\x07\xd2\x49\x02\x00\x9d\xa2\xee\x47\x25\xd4\x03\ -\xe9\x20\x01\x80\xce\x50\xf7\xa3\x52\xa3\x7a\xe0\xad\xfb\x7f\xac\ -\x58\x41\xeb\x49\xb3\x74\xc2\xc6\xad\x07\xbe\x35\xff\xd3\xfc\x2b\ -\xf9\xa1\x50\x4b\x95\xd4\x03\xe9\x0c\x01\x80\xd6\x53\xf7\xa3\x66\ -\x17\x86\x21\x7c\xe3\x35\x47\xd6\x7e\xb3\x58\x43\x2b\x09\x00\xb4\ -\x9a\xba\x1f\x0d\x51\x0f\xa4\xf5\x6c\x97\xd2\x5a\xea\x7e\x34\x48\ -\x3d\x90\xd6\x13\x00\x68\x25\x75\x3f\x12\xa0\x1e\x48\xab\x09\x00\ -\xb4\x92\xba\x1f\x49\x50\x0f\xa4\xc5\x04\x00\x5a\x47\xdd\x8f\xa4\ -\xa8\x07\xd2\x52\x52\x2b\xad\xa2\xee\x47\xa2\xd4\x03\x69\x1d\x01\ -\x80\xd6\x50\xf7\x23\x71\xea\x81\xb4\x8a\x00\x40\x2b\xa8\xfb\xd1\ -\x12\xea\x81\xb4\x86\x6d\x54\x92\xa7\xee\x47\x8b\xa8\x07\xd2\x1a\ -\x02\x00\x49\x53\xf7\xa3\x85\xd4\x03\x69\x05\x01\x80\xa4\xa9\xfb\ -\xd1\x4a\xea\x81\xb4\x80\x00\x40\xb2\xd4\xfd\x68\x35\xf5\x40\x12\ -\x27\x9d\x92\x24\x75\x3f\x3a\x42\x3d\x90\x64\x09\x00\x24\x47\xdd\ -\x8f\x8e\x39\x3f\x0c\xe1\x55\xea\x81\xa4\x46\x00\x20\x29\xea\x7e\ -\x74\x94\x7a\x20\xc9\xb1\xbd\x4a\x32\xd4\xfd\xe8\x30\xf5\x40\x92\ -\x23\x00\x90\x04\x75\x3f\x7a\xe0\x05\xe7\x17\xb3\x77\xa8\x07\x92\ -\x0a\x01\x80\x24\xa8\xfb\xd1\x13\x5f\xa1\x1e\x48\x2a\x04\x00\x1a\ -\xa7\xee\x47\xaf\xa8\x07\x92\x08\x29\x94\x46\xa9\xfb\xd1\x53\xea\ -\x81\x34\x4e\x00\xa0\x31\x0f\x1e\x3a\xf8\xd2\x41\x16\x7f\x3b\x3f\ -\x54\xf7\xa3\x8f\xd4\x03\x69\x94\x00\x40\x23\xd4\xfd\xe0\x92\x8d\ -\x61\xd8\x7c\x85\x7a\x20\x4d\xb0\xed\x4a\xed\xd4\xfd\xe0\x49\x2b\ -\xea\x81\x34\x45\x00\xa0\x56\xea\x7e\xf0\x34\xea\x81\x34\x42\x00\ -\xa0\x56\xea\x7e\xf0\x8c\xbe\xe2\xf4\xe2\xd9\xe3\xea\x81\xd4\x49\ -\x00\xa0\x36\xa7\x6e\x3b\xf0\x2f\xf3\x7f\xde\xd4\xfd\xe0\x19\xc5\ -\x6f\x3f\x7d\xe8\xc0\x8f\x16\x0b\xa8\x9c\xb4\x49\x2d\xd4\xfd\x60\ -\x22\xea\x81\xd4\x46\x00\xa0\x72\xea\x7e\x30\x15\xf5\x40\x6a\x21\ -\x00\x50\x29\x75\x3f\x98\x89\x7a\x20\x95\xb3\x1d\x4b\x65\xd4\xfd\ -\x60\x66\x2b\x61\xb8\xf0\x2e\xf5\x40\xaa\x24\x00\x50\x09\x75\x3f\ -\x98\x4f\x08\xd9\x67\xab\x07\x52\x25\x01\x80\x4a\x6c\x5c\x79\xfe\ -\x8e\xfc\x45\xdd\x0f\xe6\xa3\x1e\x48\x65\x04\x00\x4a\x37\xaa\xfb\ -\x85\x2c\xfc\xb3\x62\x09\xcc\x45\x3d\x90\x6a\x48\x95\x94\x4a\xdd\ -\x0f\x2a\xa1\x1e\x48\xe9\x04\x00\x4a\xa3\xee\x07\x95\x52\x0f\xa4\ -\x54\x02\x00\xa5\x50\xf7\x83\x5a\xa8\x07\x52\x1a\xdb\xb4\xcc\x4d\ -\xdd\x0f\x6a\xa3\x1e\x48\x69\x04\x00\xe6\xa2\xee\x07\xf5\x52\x0f\ -\xa4\x2c\x02\x00\x73\x51\xf7\x83\x46\xa8\x07\x32\x37\x01\x80\x99\ -\xa9\xfb\x41\x93\xd4\x03\x99\x8f\xf4\xc8\x4c\xd4\xfd\x20\x09\xea\ -\x81\xcc\x4c\x00\x60\x6a\xea\x7e\x90\x14\xf5\x40\x66\x22\x00\x30\ -\x15\x75\x3f\x48\x92\x7a\x20\x53\xb3\x7d\xcb\xc4\x2e\xd5\xfd\x42\ -\xf8\xf5\xfc\xd0\xc5\x1f\xd2\xa2\x1e\xc8\xd4\x04\x00\x26\xf2\x64\ -\xdd\x2f\xcb\x5e\x32\x3e\x03\xa4\x44\x3d\x90\x69\x09\x00\x4c\x44\ -\xdd\x0f\x5a\x41\x3d\x90\x89\x09\x00\xec\x48\xdd\x0f\xda\x24\x7e\ -\xfb\xe9\x5b\x0f\xfe\x48\xb1\x80\x2d\x49\x89\x6c\x4b\xdd\x0f\x5a\ -\x49\x3d\x90\x1d\x09\x00\x6c\x49\xdd\x0f\x5a\x4d\x3d\x90\x6d\x09\ -\x00\x3c\x23\x75\x3f\xe8\x04\xf5\x40\xb6\x64\x5b\x97\xa7\x51\xf7\ -\x83\xce\x50\x0f\x64\x4b\x02\x00\x9f\x41\xdd\x0f\xba\x45\x3d\x90\ -\xad\x08\x00\x7c\x06\x75\x3f\xe8\x24\xf5\x40\x9e\x46\x00\xe0\x49\ -\xea\x7e\xd0\x65\xea\x81\x7c\x26\x69\x90\x4b\xd4\xfd\xa0\x17\x62\ -\x08\xd9\x6b\x97\x8f\xac\xff\xbb\x62\x4d\x8f\x09\x00\xa8\xfb\x41\ -\xbf\xa8\x07\x72\x89\x00\xd0\x73\xea\x7e\xd0\x4b\x1b\x9b\x9b\xf1\ -\xcb\xaf\xbd\xe3\xf8\x9f\x17\x6b\x7a\xc8\x76\x6f\x8f\xa9\xfb\x41\ -\x6f\xad\x0c\x06\xe1\xdd\xea\x81\xfd\x26\x00\xf4\xd4\xb8\xee\x77\ -\xd9\x3b\xf3\x43\x75\xbf\xb1\x07\xb2\x18\x8f\x16\xc7\x74\xd7\xbf\ -\x89\x31\xfb\x70\x71\xdc\x6b\xa3\x7a\xe0\xb9\xc5\xec\x44\x3c\x7c\ -\xe3\xae\xe2\x14\x3d\x23\x00\xf4\xd4\xb8\xee\x17\xbf\xb6\x58\xf6\ -\xd9\x85\xfc\xd7\x1d\x61\xd7\xd2\x0b\x63\x18\xbe\x65\x7c\x8a\xce\ -\x0a\xd9\xb1\x95\xc7\x96\xfe\x4e\xfe\x67\xff\xd6\x7c\xf5\xe8\xf8\ -\x64\x7f\x85\x2c\xfb\xaa\xd3\x8f\x3c\xfb\x6e\xf5\xc0\x7e\xf2\xa6\ -\xf7\xd0\xa5\xba\x5f\xcc\x7e\xb2\x58\xf6\x58\x78\x6f\x96\x6d\xde\ -\xb2\xb2\x7a\xf7\x9f\x8e\x56\xf1\xc6\x1b\x17\x4e\x7f\xd6\x55\x4f\ -\xe4\x87\x8b\xa3\x35\x9d\xb3\xb9\xbc\xfb\xba\x67\x85\xc3\x87\x2f\ -\x8e\x16\x0f\x7e\xff\xc1\xe7\x2d\x5c\xc8\xde\x14\xb3\xf8\x9d\xf9\ -\xb2\xdf\xff\x16\xc6\xf0\x63\x2b\x47\xd7\x7e\xa2\x58\xd1\x13\x02\ -\x40\xcf\xa8\xfb\x5d\xfa\x43\xff\xa1\x18\xe2\x0f\xad\x1c\x39\x7e\ -\xa2\x38\xf5\xa4\x8d\x43\x07\x3e\x96\xbf\x3c\x7f\xbc\xa2\x63\xee\ -\x5b\x59\x5d\xff\xac\xe2\xf8\x49\xa7\x6e\xd9\xff\xb2\x30\x08\x77\ -\xe6\x87\x5f\x3a\x3e\xd3\x4b\xea\x81\x3d\xe4\x23\x80\x1e\x19\xd5\ -\xfd\xf2\xab\xdf\xdd\xf9\x61\x5f\xdf\xf7\xb3\x59\x08\x3f\xfe\xc8\ -\xee\xf8\x92\x67\xba\xf8\x17\x3e\x5e\xbc\xd2\x3d\xcf\xf8\xde\xee\ -\xbb\xfd\xf8\xef\x2f\xef\xbe\xee\x15\xf9\x15\xf0\x75\xf9\xf2\xe4\ -\xf8\x6c\xef\x84\x18\xb3\xb7\x3d\x78\xdb\xc1\xaf\x2e\xd6\xf4\x80\ -\x00\xd0\x13\xa3\xba\xdf\x20\x8b\xff\x39\x3f\xec\x63\xd7\x7f\xf4\ -\x11\xe7\x89\x30\xdc\x7c\xd1\xca\x91\xb5\xc3\x37\x1c\x3e\x3e\xda\ -\xe6\xdf\xca\x27\x8a\x57\xba\x67\xcb\xf7\x36\x1c\x3e\x3c\xdc\x77\ -\x64\xed\x9e\x41\x8c\x2f\x8c\x59\xf8\xe9\xfc\xd4\xf9\xf1\xef\xf4\ -\xca\xae\xfc\x7f\xff\x89\x93\xdf\xbb\xff\x73\x8a\x35\x1d\x27\x00\ -\xf4\xc0\xfd\x6f\xfc\xae\x2b\x7b\x5b\xf7\x0b\xd9\xef\xe7\xf7\x36\ -\xaf\x58\x59\x5d\x7b\xf5\xf2\xed\xf7\x8c\xb6\xf7\xb7\x17\x83\x00\ -\xd0\x5d\xf7\x15\xaf\x5b\xda\x7b\xf4\xf8\xc3\xfb\x56\xd7\x7e\x30\ -\x6c\x0e\xbe\x24\x5f\xbe\x6f\x7c\xb6\x57\x56\x16\x16\xc2\x7f\x38\ -\xf9\xdd\xdf\x7d\x55\xb1\xa6\xc3\x04\x80\x1e\xd8\xb5\xb9\xf4\x0b\ -\xf9\x4b\xdf\xea\x7e\xf7\xe7\xbf\x0e\x2e\x5f\x7d\xdd\x97\xad\x1c\ -\x39\x3e\x1a\x74\x34\x99\x81\x8f\x00\xba\x2b\x4c\xfc\xde\x2e\xdf\ -\xf1\xb6\x3f\x59\x59\x5d\xff\xda\x2c\x84\x6f\xcd\x97\x1f\x19\x9f\ -\xed\x8d\x17\x0d\x2e\x7b\x7c\xf4\x6f\x06\x1d\x27\x00\x74\xdc\xe9\ -\xdb\xf6\x7f\x73\xcc\xe2\x77\x15\xcb\x3e\x38\x9f\xdf\xf5\xbf\x25\ -\xbb\x78\xfe\x85\xf9\x3f\xe0\xeb\xa3\xad\xdd\xe2\xfc\x64\x86\xd1\ -\x0e\x40\x57\x85\xe9\xdf\xdb\x95\x23\x6b\xef\x78\x2c\x3b\xf3\xa2\ -\x2c\xc6\xc3\xf9\xf2\xb1\xf1\xd9\xee\x0b\x59\xf6\x9d\xa7\x6f\x3d\ -\xf8\x4d\xc5\x92\x8e\x12\x00\xba\x2e\x0e\xfe\x75\x71\xd4\x07\xef\ -\xc9\xaf\xe0\x5f\xbc\x72\x64\xfd\xfb\x56\xee\xfc\xf7\x9f\x2a\xce\ -\x4d\x67\x20\x00\x74\xd8\x4c\xbb\x3b\xcf\x5f\x3d\xf1\xf8\xca\xd1\ -\xe3\x3f\x1e\xb3\xcd\xcf\x0d\x59\xb8\x37\x3f\x15\xc7\xbf\xd3\x6d\ -\x31\xc4\x9f\x34\x1f\xa0\xdb\x04\x80\x0e\xdb\x38\x74\xf0\x1b\xf2\ -\xbb\xff\xd1\x67\x99\x9d\x36\xaa\xf5\xe5\x77\x77\xaf\xce\xef\xf8\ -\xbf\xfe\xaf\x3b\xfd\x33\xbb\xb0\x28\x00\x74\xd7\x5c\x1f\xef\xec\ -\x5b\xbd\xe7\xbe\xe5\xd5\xb5\xd7\xe6\xff\x68\x7e\x75\x7e\x79\xfc\ -\x3f\xc5\xe9\x2e\xfb\xc2\x8d\xdb\x5e\xf7\x35\xc5\x31\x1d\x24\x00\ -\x74\xda\xa5\x69\x67\x5d\xf6\x68\x88\xd9\x0f\xec\xdd\x7d\xe6\xc5\ -\xdb\xd4\xfa\xa6\xb2\x7c\xff\x23\x7f\x95\xbf\x5c\x1a\x14\x43\xa7\ -\x6c\x2e\x9f\x59\x1a\x3d\x17\x32\xb7\xbd\xab\xeb\xbf\xbd\xbc\xfb\ -\xfa\x2f\x89\x31\x7c\x4f\xbe\x3c\x3d\x3e\xdb\x51\x71\xd0\xf5\x7f\ -\x43\x7a\xcd\xf6\x4e\x47\xc5\x9b\x6f\xbe\xec\xf4\xe2\x99\x87\xf2\ -\xc3\xcb\xc7\x67\x3a\x65\xb4\x33\xf9\xab\xf9\x5d\xff\x1b\x56\x8e\ -\xac\x97\xfe\xd0\x9e\x61\x40\x9d\xf4\x8c\x43\x80\xe6\xf5\xf0\x0f\ -\xfe\xa3\xbd\x9b\xe7\x2e\x1b\x3d\x1f\xf0\x2f\xf2\x5f\x0b\x97\x4e\ -\x76\xcb\x63\xcb\xbb\xcf\xec\x0d\x87\x4f\xf4\xb1\x16\xd9\x79\x76\ -\x00\x3a\xea\xe1\xc5\x33\x5f\x96\xbf\x74\xee\xe2\x1f\xb2\xf0\x87\ -\xf9\xff\xf1\xca\x51\xad\xaf\x8a\x8b\x7f\xc1\xc7\x00\xdd\x53\xc9\ -\x7b\xba\xe7\x4d\xbf\xf4\x50\x1e\x2c\x6e\x89\x71\xe1\x25\x79\x2e\ -\xfd\x6f\xc5\xe9\x2e\xb9\xe2\xf4\xa7\xae\x7a\x69\x71\x4c\xc7\x08\ -\x00\x1d\x35\x8c\xd9\xcb\x8a\xc3\xae\xb8\x3f\x86\x70\x60\xef\xea\ -\xda\xcb\xf2\x0b\xff\xff\x28\xce\x55\xa5\xaa\x60\x41\x63\xaa\x7d\ -\xb8\x73\xdf\xd1\xb7\xfe\xbf\xe5\xd5\xe3\xaf\x0a\x59\xfc\x8e\x7c\ -\xd9\xad\x3f\x3f\x31\x76\xed\xdf\x12\x0a\x02\x40\x47\x85\x2c\x5b\ -\x2e\x0e\xdb\xee\xd2\xb7\xf5\x8d\x6a\x7d\xfb\x8e\xac\x1d\xcf\xff\ -\x77\x55\xff\x04\xb6\x61\x40\xdd\x13\xab\xbf\x28\x8f\xfe\x6c\xe6\ -\x21\xe0\xed\xe7\xce\x2e\xfd\xed\xd1\xc8\xe9\xfc\xd4\x76\x13\x27\ -\xdb\x23\x0c\xf6\x16\x47\x74\x8c\x00\xd0\x55\x83\x78\x75\x71\xd4\ -\x66\xef\xc9\xff\x84\x7e\xe1\x68\x8b\x75\xe6\x5a\xdf\x2c\x66\xe8\ -\x8b\x93\xb8\x30\xa8\xed\x3d\x7d\xde\xb1\x63\x8f\x8d\x46\x4e\x67\ -\x17\x17\x3e\xa7\xa8\x0d\xb6\xdb\x70\xb8\xbb\x38\xa2\x63\x04\x80\ -\xce\x1a\x4c\x37\x00\x27\x29\xe1\x83\x21\xc4\xbf\x77\xa9\xd6\xf7\ -\xb3\xeb\xff\xb7\x38\x59\x1f\x01\xa0\x7b\x1a\x78\x4f\x57\xee\x7c\ -\xeb\x27\x46\xb5\xc1\x98\x85\xaf\xcf\x97\xf5\xff\x39\x2e\x4b\xfe\ -\x97\xb1\x38\xa2\x63\x04\x80\x8e\x8a\xc3\xb8\xf3\xdc\xfb\xf4\x5c\ -\xfa\xb6\xbe\xe5\x8b\x57\x7e\xfe\xf2\x91\xe3\xef\x2a\xce\x35\xc1\ -\x33\x00\xdd\xd3\xd8\x7b\xba\x6f\x75\xed\x3d\xcb\xbb\xaf\xfb\x82\ -\x90\x85\xd7\xe7\xcb\x53\xe3\xb3\xed\x11\x43\xef\x46\x21\xf7\x86\ -\x00\xd0\x55\x83\xf8\xd1\xe2\xa8\x0d\x46\xbb\x15\xeb\x9b\x8b\xf1\ -\x6f\x8d\xb6\x4e\xc3\x9d\x77\x9e\x1b\x9f\x6e\x88\x61\x40\x9d\x33\ -\x08\x83\x1d\xbf\x08\xa8\x4a\xe1\xf0\xe1\x8b\xcb\xab\x6b\xc7\x2e\ -\x2c\x5c\x7c\x71\x16\xb2\xb7\xe6\xa7\x5a\xb3\x43\x17\xb3\x20\x00\ -\x74\x94\x00\xd0\x51\xc3\xc5\xc1\xef\xe6\x2f\x6d\xd8\xba\xfb\x83\ -\xfc\x16\xe3\x95\x2b\xab\xeb\x07\xaf\x7d\xf3\xf1\x52\x06\xb5\xcc\ -\xcb\x30\xa0\xce\xd9\xdc\xf3\xe8\xc2\x27\x8b\xe3\x46\x3d\xf7\x2d\ -\xf7\x9e\x5c\x39\xb2\xfe\x4f\xf3\x40\xf2\xd2\xfc\x6f\xe7\xef\x14\ -\xa7\x53\x36\x1c\x6e\x0e\x3e\x50\x1c\xd3\x31\x02\x40\x47\x5d\xf3\ -\x33\x6b\xa3\x7f\xf0\xfe\x70\xbc\x4a\x51\xfc\xab\xd1\x96\xe8\xf2\ -\xee\xeb\xbe\x74\xe5\xe8\xda\xfb\x8b\x93\x49\x08\x27\x4e\x6c\xe6\ -\x2f\x49\x84\x11\x4a\x71\x7f\x38\x76\x6c\xd4\x26\x49\xc6\xde\x23\ -\x6f\xfb\x5f\xcb\x47\xd7\xbf\x72\x34\xc2\x3a\x5f\x26\xfc\x71\x5d\ -\x78\xff\x73\x6e\x7f\xeb\x03\xc5\x82\x8e\x11\x00\x3a\x2c\xbf\xc0\ -\xbe\xa3\x38\x4c\x46\xcc\xb2\x73\x31\x0b\x3f\x3d\x5c\x1a\xbc\x70\ -\xb4\x25\x3a\xf5\xb7\xf5\xd5\xc7\x73\x00\x9d\x11\x1b\xdd\xfe\xdf\ -\xca\xa8\x36\x38\x1a\x61\xbd\x79\xee\xf2\x17\x8f\xfe\x4e\x8c\xfe\ -\x6e\x14\xbf\x95\x8e\x30\x7c\x67\x71\x44\x07\x09\x00\x5d\xb6\x6b\ -\x71\xf4\x9d\xde\x0f\x8f\x17\x49\x78\x4f\x16\x17\xbe\x68\xdf\xea\ -\xda\x0f\x5e\xf3\x33\x6b\x8f\x16\xe7\x12\x65\x16\x40\x77\x84\xa4\ -\x1f\x88\xbd\xf6\xae\xbb\xce\x8c\xfe\x4e\x0c\xb3\xc1\xe7\xe5\xff\ -\x5d\x4b\xf9\x4e\x8b\x92\x9c\x1e\x2e\x0e\xfe\x6d\x71\x4c\x07\x09\ -\x00\x1d\xb6\xfc\xd3\xc7\x1e\xc9\x5f\x7e\x6e\xbc\x6a\xd4\x9f\x87\ -\x38\xf8\xfb\xa3\x5a\xdf\x68\x62\x5a\x71\x2e\x6d\x35\x0c\x8e\xa1\ -\x26\xb1\x1d\xb5\xce\x6b\x57\xdf\xf6\xa1\xd1\x88\xeb\x18\x86\x5f\ -\x97\x2f\xe7\xfb\x56\xcb\x12\xc4\x2c\x5b\x4d\x3f\xa8\x33\x0f\x01\ -\xa0\xe3\x2e\x2c\x5c\x7c\x53\x7e\x57\xf1\xc1\x62\x59\xb7\xa2\xd6\ -\x77\xd5\x4b\x96\x8f\xbe\xed\xbf\x14\xe7\xda\x61\x30\x4c\x72\xdb\ -\x98\x19\xd4\x38\x04\xa8\x0c\xfb\x8e\xdc\xfd\xde\xe5\xb3\x4b\x5f\ -\x94\x5f\x82\x47\xdf\xc4\x37\x0a\xf1\xb5\x0b\x59\xf6\xa1\xe1\xb9\ -\xcb\x8f\x16\x4b\x3a\x4a\x00\xe8\xb8\xe7\xbe\xe5\xde\xb3\xc3\x2c\ -\x7b\x4d\x7e\x58\xe7\x43\x50\x71\x34\x01\xed\xe2\x70\xe1\xb3\x93\ -\xa8\xf5\xcd\xc6\x0e\x40\x57\xb4\x70\xb0\xd3\xe8\xa1\xc5\x95\xd5\ -\xe3\xb7\x2f\x9d\xdf\xfc\xec\x7c\x79\x47\xfe\xab\xce\x67\x65\x2e\ -\x0e\xb3\xc1\x6b\x46\x1f\x4d\x14\x6b\x3a\x4a\x00\xe8\x81\x6b\x56\ -\xd7\xfe\x20\x84\xec\x96\xfc\xb0\x8e\x5a\xe0\xfb\x87\x59\x78\xf9\ -\x68\x02\x5a\xab\x9f\x1e\x1e\xb6\xeb\xae\x91\xad\x85\xe1\xb0\xb5\ -\xef\xe5\xd5\x3f\x7f\xcf\xc6\xa5\x6f\x1b\x1c\x66\xaf\xc8\xff\xfa\ -\xfe\xcf\xe2\x74\x95\x62\x1e\x98\xbe\x7b\xdf\xea\xdb\xea\xf8\xcf\ -\xa2\x61\x02\x40\x4f\x2c\x1f\x59\xff\x85\xfc\xef\xf6\xa1\x62\x59\ -\x81\x27\x6b\x7d\xaf\x1c\x05\x8e\xe2\x64\x7b\x0d\x8c\x03\xee\x8c\ -\x18\x5b\xbf\x9b\xb3\xef\xf6\xf5\x0f\x2c\xaf\x1e\xff\xb2\x18\xc2\ -\xeb\xf2\x65\x55\x15\xd5\x98\xdf\x21\x7c\xef\xca\x91\xe3\x1e\xfc\ -\xeb\x09\x01\xa0\x47\x46\x5b\x8a\xf9\xcb\xc1\xfc\xd7\x63\x97\x4e\ -\x94\x60\x5c\xeb\x8b\x6f\xda\x3c\x77\xc5\xe7\x26\x5e\xeb\x9b\xca\ -\xf2\xd5\xd7\x8d\x86\x01\x8d\xe6\x01\xd0\x6e\xc3\xbd\x8f\x3f\x6b\ -\xf4\x5e\xb6\xde\xa8\x36\xb8\xef\xc8\xda\x3d\xa3\x6f\xc6\xcc\x97\ -\x3f\x9b\xff\x2a\xf3\x63\xbd\xb3\x79\xb8\xd8\xbf\x6f\x75\x3d\x85\ -\x87\x86\xa9\x49\xfe\x67\x8a\xbe\xd9\x38\xf4\xba\x17\xe7\xd9\xef\ -\x97\xf3\xc3\x97\x8c\xcf\xcc\x26\xc4\xec\xd7\x07\x4b\xc3\xdb\xf6\ -\xbc\xf9\xee\x0f\x17\xa7\x3a\x65\xe3\xd0\x81\xd1\x9d\xe3\x67\x8d\ -\x57\xb4\x52\xcc\x3e\xb9\x72\x74\xfd\x6f\x14\xab\x4e\x79\xf0\x96\ -\x83\x2f\x1c\x0c\xb2\xa3\xf9\xff\xc8\x57\x15\xa7\x66\xf5\x47\x31\ -\x2e\x7c\x47\x6b\x1a\x3a\x94\xc6\x0e\x40\x0f\xad\xac\xde\xfd\xa7\ -\xcb\x9f\x38\xf3\x45\xf9\xdd\xfb\xfe\xfc\x1f\x8f\xbf\x2c\x4e\x4f\ -\x6a\xf4\x1c\xc1\xfb\x42\x16\xbf\x72\xf9\xe8\xfa\x3f\xe8\xea\xc5\ -\xbf\xe0\x63\x80\xb6\xeb\xf0\x37\x3b\x5e\x73\xfb\xda\x9f\xad\xac\ -\xae\x7d\xd3\xa5\xda\x60\x88\xff\xbd\x38\x3d\xb1\x18\xb3\x0f\xc7\ -\x18\x5f\x9b\xff\x5b\xf0\x25\x2e\xfe\xfd\x64\x07\xa0\xe7\xe2\x4d\ -\x37\x2d\x9d\xbe\xfc\xc2\xd7\xe4\x7f\x12\xbe\x25\xff\xf5\xcd\xf9\ -\xa9\xe7\x8f\x7f\xe7\x33\x5c\xc8\x7f\xef\x7f\xe7\x97\xfe\x77\xe7\ -\x77\x0a\x6f\xef\xcb\x3f\x16\x1b\x87\x0e\x8c\x86\xb2\x7c\xeb\x78\ -\x45\x4b\xbd\x73\x65\x75\xfd\x1f\x16\xc7\x9d\x76\xfa\xd0\xfe\x97\ -\x64\x31\x7c\x5b\x16\xc2\xab\x62\x16\xbf\x20\x3f\xb5\x38\xfe\x9d\ -\xcf\xf0\xb1\xfc\xf7\xde\x15\xb2\xc1\xaf\x2d\xef\xfe\x9b\xef\x1b\ -\x7d\x49\x51\x71\x9e\x1e\x12\x00\xf8\x0c\x1f\x3f\x74\xe3\xe5\x97\ -\xc7\xdd\xd7\x0f\xc2\xc5\x7d\xd9\x70\x38\xea\x20\x3f\xbc\x77\xb8\ -\xfb\x81\x96\x56\xf9\xe6\x92\x07\x80\x23\xf9\x4b\x85\x0f\x4e\x52\ -\x83\x3b\x46\x4f\xd1\x17\xc7\xbd\x11\x6f\xbe\xf9\xb2\x87\x77\x3d\ -\xf6\xdc\xfc\x36\x7f\x4f\x8c\xc3\xab\x87\x83\xec\xc1\xc7\x87\x67\ -\x3f\xfa\xfc\xd5\x13\x8f\x17\xff\x57\x40\x00\x80\xad\x6c\xdc\xb6\ -\xff\xb6\xfc\x8e\x6a\xf4\xb0\x15\xad\x15\xde\xb8\xb2\xba\xe6\x3d\ -\x84\x67\xe0\x19\x00\xd8\x4a\x34\x0b\xa0\xf5\x3a\xfc\x0c\x00\xcc\ -\x4b\x00\x80\xad\xf8\x3e\x80\xd6\x6b\xf3\x10\x20\xa8\x9a\x00\x00\ -\x5b\x31\x0c\xa8\xfd\x3a\x30\x04\x08\xaa\x22\x00\xc0\x16\x96\x3f\ -\x7e\xe6\x93\xf9\x8b\x61\x40\xed\xd5\x99\x21\x40\x50\x05\x01\x00\ -\xb6\x10\x4e\x9c\x18\x5d\xfc\xab\x1a\xbb\x4a\xd5\x62\x76\xff\xe8\ -\x4b\x75\x8a\x15\xf0\x14\x02\x00\x6c\xcf\x16\x72\x5b\x05\xef\x1d\ -\x6c\x47\x00\x80\xed\x79\x0e\xa0\xb5\x3c\xc3\x01\xdb\x11\x00\x60\ -\x7b\xee\x22\x5b\x2b\x08\x00\xb0\x0d\x01\x00\xb6\x15\xee\x2b\x0e\ -\x68\x9b\x68\xf7\x06\xb6\x23\x00\xc0\xf6\xec\x00\xb4\xd5\xc0\x7b\ -\x07\xdb\x11\x00\x60\x3b\x26\xc9\xb5\x96\x21\x40\xb0\x3d\x01\x00\ -\xb6\x11\x36\x37\x5d\x44\xda\xca\x10\x20\xd8\x96\x00\x00\xdb\xd8\ -\xbb\xf7\x05\x86\x01\xb5\x93\x21\x40\xb0\x03\x01\x00\xb6\x51\x7c\ -\x5f\xba\x61\x40\x6d\x63\x08\x10\xec\x48\x00\x80\x9d\xf9\x18\xa0\ -\x6d\x3c\xbb\x01\x3b\x12\x00\x60\x67\x3e\x4b\x6e\x1f\xef\x19\xec\ -\x40\x00\x80\x9d\x44\x77\x93\xed\x63\x08\x10\xec\x44\x00\x80\x9d\ -\x84\x81\x8b\x49\xdb\x18\x02\x04\x3b\x12\x00\x60\x27\x3e\x4f\x6e\ -\x9d\xe0\x3d\x83\x1d\x09\x00\xb0\x33\x9f\x27\xb7\x8d\x19\x00\xb0\ -\x23\x01\x00\x76\x60\x18\x50\xfb\x84\x85\x45\xef\x19\xec\x40\x00\ -\x80\x1d\x18\x06\xd4\x3a\xc3\x3d\xcf\xfe\x94\x21\x40\xb0\x03\x01\ -\x00\x76\x70\x69\x18\x50\xcc\x1e\x28\x96\xa4\x6e\x34\x04\xe8\xf0\ -\x89\xf3\xc5\x0a\xd8\x82\x00\x00\x93\x08\x9e\x03\x68\x0d\x0f\x00\ -\xc2\x44\x04\x00\x98\x88\x8b\x4a\x8b\x08\x6b\x30\x01\x01\x00\x26\ -\x62\xb0\x4c\x7b\x78\xaf\x60\x12\x02\x00\x4c\xc2\x60\x99\xf6\xf0\ -\x5e\xc1\x44\x04\x00\x98\xc4\xc0\xb6\x72\x5b\x18\x02\x04\x93\x11\ -\x00\x60\x02\x61\x38\x74\x51\x69\x0b\x43\x80\x60\x22\x02\x00\x4c\ -\xc0\x60\x99\xf6\xf0\x5e\xc1\x64\x04\x00\x98\xc0\x9e\x47\x17\x0c\ -\x03\x6a\x07\x43\x80\x60\x42\x02\x00\x4c\x20\x1c\x3b\x76\xc1\x30\ -\xa0\x36\x88\x0f\x18\x02\x04\x93\x11\x00\x60\x52\x1e\x2e\x6b\x03\ -\x9f\xff\xc3\x84\x04\x00\x98\x9c\x8b\x4b\xf2\xcc\x00\x80\x49\x09\ -\x00\x30\x31\x17\x97\x16\x10\xd2\x60\x42\x02\x00\x4c\xca\x80\x99\ -\xe4\x85\x2c\xdc\x57\x1c\x02\x3b\x10\x00\x60\x42\x06\xcc\xb4\xc1\ -\xd0\x0e\x00\x4c\x48\x00\x80\x49\x19\x30\x93\xbe\xc1\x40\x48\x83\ -\x09\x09\x00\x30\x21\x03\x66\xd2\x17\xb2\x20\xa4\xc1\x84\x04\x00\ -\x98\x90\x61\x40\xc9\x33\x04\x08\xa6\x20\x00\xc0\x84\x2e\x0d\x03\ -\xca\xe2\xc9\x62\x49\x72\x0c\x01\x82\x69\x08\x00\x30\x1d\x5b\xcc\ -\xe9\xf2\xde\xc0\x14\x04\x00\x98\x8a\x59\x00\xe9\xf2\xde\xc0\x34\ -\x04\x00\x98\x8e\x8b\x4c\xba\xbc\x37\x30\x05\x01\x00\xa6\x10\xdc\ -\x65\x26\xcb\x7b\x03\xd3\x11\x00\x60\x2a\x06\xcd\xa4\xcb\x7b\x03\ -\xd3\x10\x00\x60\x1a\x06\xcd\xa4\xcb\x7b\x03\x53\x11\x00\x60\x0a\ -\x61\x73\xe8\x22\x93\x28\xef\x0d\x4c\x47\x00\x80\x29\xec\x79\x6c\ -\xd7\xe8\xcb\x66\x86\xe3\x15\x09\x19\xee\xd9\x73\x76\x34\xa8\x09\ -\x98\x90\x00\x00\x53\x28\x86\x01\x3d\x50\x2c\x49\x86\x21\x40\x30\ -\x2d\x01\x00\xa6\x15\x3c\x6d\x9e\x1c\xef\x09\x4c\x4d\x00\x80\x69\ -\x45\x13\xe7\x92\xe3\x3d\x81\xa9\x09\x00\x30\x3d\x77\x9b\xe9\xf1\ -\x9e\xc0\x94\x04\x00\x98\x92\x81\x33\xe9\xf1\x9e\xc0\xf4\x04\x00\ -\x98\x56\x8c\x2e\x36\xa9\xf1\x9e\xc0\xd4\x04\x00\x98\xd6\x42\xf0\ -\x79\x73\x6a\xbc\x27\x30\x35\x01\x00\xa6\x64\xe0\x4c\x7a\xbc\x27\ -\x30\x3d\x01\x00\xa6\x64\x18\x50\x72\x0c\x01\x82\x19\x08\x00\x30\ -\xa5\xf1\x30\xa0\xec\xe4\x78\x45\xf3\x0c\x01\x82\x59\x08\x00\x30\ -\x8b\xa0\x77\x9e\x0c\x43\x80\x60\x26\x02\x00\xcc\x22\xea\x9d\x27\ -\xc3\x7b\x01\x33\x11\x00\x60\x06\xc1\x5d\x67\x4a\xec\xc6\xc0\x0c\ -\x04\x00\x98\xc5\x50\xef\x3c\x15\x86\x00\xc1\x6c\x04\x00\x98\x8d\ -\xbb\xce\x54\x18\x02\x04\x33\x11\x00\x60\x16\xc1\x45\x27\x19\xde\ -\x0b\x98\x89\x00\x00\x33\x18\x2c\x2c\xba\xe8\x24\x22\xf8\x26\x40\ -\x98\x89\x00\x00\x33\xd8\x7d\xd5\x23\x86\x01\xa5\xc1\x10\x20\x98\ -\x91\x00\x00\x33\x28\x06\xcf\x18\x06\xd4\xbc\x93\x86\x00\xc1\x6c\ -\x04\x00\x98\x9d\x8f\x01\x9a\x66\x20\x13\xcc\x4c\x00\x80\xd9\xb9\ -\xf8\x34\xcd\x10\x20\x98\x99\x00\x00\x33\x32\x0c\x28\x09\x42\x18\ -\xcc\x48\x00\x80\x59\x19\x06\xd4\xb8\x10\xb3\xd1\xc3\x98\xc0\x0c\ -\x04\x00\x98\x95\xfe\x79\x0a\xec\x00\xc0\x8c\x04\x00\x98\x51\x18\ -\x2e\x08\x00\x4d\x13\xc2\x60\x66\x02\x00\xcc\x28\x2c\x05\x77\x9f\ -\x0d\x33\x04\x08\x66\x27\x00\xc0\x8c\x0c\x03\x6a\x9c\x21\x40\x30\ -\x07\x01\x00\x66\x54\x0c\xa0\x79\x70\xbc\xa2\x01\x86\x00\xc1\x1c\ -\x04\x00\x98\x8f\x2d\xe8\xe6\xf8\xfc\x1f\xe6\x20\x00\xc0\x1c\xcc\ -\x02\x68\x94\xf0\x05\x73\x10\x00\x60\x1e\xbe\x8b\xbe\x31\xc2\x17\ -\xcc\x47\x00\x80\x79\xa8\xa1\x35\xc7\x20\x26\x98\x8b\x00\x00\xf3\ -\x50\x43\x6b\x8e\xf0\x05\x73\x11\x00\x60\x0e\x86\x01\x35\x4a\xf8\ -\x82\x39\x08\x00\x30\x87\x30\x70\x17\xda\x94\xc1\xc2\xa2\x9f\x3d\ -\xcc\x41\x00\x80\x39\xec\xbe\x78\xe5\x68\x18\x50\x1c\xaf\xa8\x51\ -\xdc\x7d\xee\x72\x43\x80\x60\x0e\x02\x00\xcc\x21\xdc\x79\xe7\xb9\ -\xfc\xe5\xe4\x78\x45\x8d\x1e\x28\x7e\xf6\xc0\x8c\x04\x00\x98\x53\ -\xc8\xd4\xd1\x1a\xe0\x67\x0e\x73\x12\x00\x60\x5e\xc1\xc3\x68\x0d\ -\xf0\x33\x87\x39\x09\x00\x30\x2f\xc3\x80\x6a\x67\x08\x10\xcc\x4f\ -\x00\x80\x79\xe9\xa3\xd7\xcf\x10\x20\x98\x9b\x00\x00\xf3\x1a\x0e\ -\x5c\x8c\xea\x26\x74\xc1\xdc\x04\x00\x98\x53\x70\x31\x6a\x82\x67\ -\x00\x60\x4e\x02\x00\xcc\x29\x64\xc1\xc5\xa8\x66\x86\x00\xc1\xfc\ -\x04\x00\x98\x93\x61\x40\xb5\x33\x04\x08\x4a\x20\x00\xc0\x9c\x8a\ -\x81\x34\x0f\x8e\x57\xd4\xe0\xa4\x21\x40\x30\x3f\x01\x00\x4a\xe0\ -\x63\x80\x5a\xf9\x59\x43\x09\x04\x00\x28\x85\x07\x01\xeb\x62\x06\ -\x00\x94\x43\x00\x80\x32\x68\x02\xd4\xc9\x0e\x00\x94\x40\x00\x80\ -\x32\x44\xb3\x00\x6a\x63\x08\x10\x94\x42\x00\x80\x32\x44\x77\xa5\ -\xb5\xb1\xdb\x02\xa5\x10\x00\xa0\x04\x86\x01\xd5\x27\x0c\x17\xfc\ -\xac\xa1\x04\x02\x00\x94\x20\x2c\x0e\x5d\x94\x6a\x12\x96\x34\x2e\ -\xa0\x0c\x02\x00\x94\x60\xf7\x13\x57\x8f\x02\x80\x61\x40\xd5\x33\ -\x04\x08\x4a\x22\x00\x40\x09\x0c\x03\xaa\x8d\x21\x40\x50\x12\x01\ -\x00\x4a\x12\xb2\xcc\xc7\x00\xd5\xb3\xfd\x0f\x25\x11\x00\xa0\x2c\ -\x51\x00\xa8\x9a\x21\x40\x50\x1e\x01\x00\xca\x32\x88\xee\x4e\xab\ -\x16\xb5\x2d\xa0\x2c\x02\x00\x94\xc5\x30\xa0\xea\xa9\x5b\x42\x69\ -\x04\x00\x28\x8b\x8b\x53\xf5\x0c\x5c\x82\xd2\x08\x00\x50\x92\x4d\ -\x23\x6a\x2b\x67\x08\x10\x94\x47\x00\x80\x92\x2c\x2d\x79\x06\xa0\ -\x6a\x61\x20\x64\x41\x59\x04\x00\x28\x89\x61\x40\x95\x8b\xbb\x2f\ -\x5e\x79\x5f\x71\x0c\xcc\x49\x00\x80\x92\x8c\x06\xd4\xe4\x57\xff\ -\x53\xc5\x92\xf2\x19\x02\x04\x25\x12\x00\xa0\x44\xf9\x5f\x28\x1f\ -\x03\x54\x24\x64\x66\x00\x40\x99\x04\x00\x28\x93\x61\x40\xd5\x09\ -\xc2\x15\x94\x49\x00\x80\x12\x0d\x4d\xaa\xab\x8e\x21\x40\x50\x2a\ -\x01\x00\xca\x64\x16\x40\x75\xfc\x6c\xa1\x54\x02\x00\x94\xc8\x33\ -\x00\x15\x1a\x9a\xb4\x08\x65\x12\x00\xa0\x44\x86\x01\x55\x27\xc4\ -\x20\x5c\x41\x89\x04\x00\x28\x51\x0c\x26\xd5\x55\xc5\x10\x20\x28\ -\x97\x00\x00\x25\x3a\xbb\x7b\x73\x74\x91\x32\x0c\xa8\x7c\x86\x00\ -\x41\xc9\x04\x00\x28\xd1\x0d\x87\x8f\x3f\x61\x18\x50\x25\x0c\x01\ -\x82\x92\x09\x00\x50\x3e\x5b\xd5\x25\x33\x04\x08\xca\x27\x00\x40\ -\xf9\x5c\xac\x4a\xe7\xf3\x7f\x28\x9b\x00\x00\xa5\xf3\xb4\x7a\x05\ -\xfc\x4c\xa1\x64\x02\x00\x94\xcd\xc0\x9a\xf2\xf9\x99\x42\xe9\x04\ -\x00\x28\x9b\x59\x00\xe5\x33\x04\x08\x4a\x27\x00\x40\xc9\xe2\xc0\ -\xc5\xaa\x6c\x86\x00\x41\xf9\x04\x00\x28\x59\x74\xb1\x2a\x9d\x21\ -\x40\x50\x3e\x01\x00\x4a\x66\x18\x50\xe9\x0c\x01\x82\x0a\x08\x00\ -\x50\xb2\xd1\x30\xa0\xfc\x65\x63\xbc\xa2\x04\x0f\x1a\x02\x04\xe5\ -\x13\x00\xa0\x02\xf9\xed\xbf\x8f\x01\x4a\x12\xd4\x2a\xa1\x12\x02\ -\x00\x54\xc3\x67\xd6\xa5\xf1\xf9\x3f\x54\x41\x00\x80\x2a\x44\x01\ -\xa0\x44\x76\x00\xa0\x02\x02\x00\x54\xc1\xe0\x9a\x12\x05\x0f\x00\ -\x42\x05\x04\x00\xa8\x42\x74\xd7\x5a\x1a\x3f\x4b\xa8\x84\x00\x00\ -\x15\x30\x0c\xa8\x3c\xc1\x6e\x0a\x54\x42\x00\x80\x0a\xc4\x8b\x43\ -\x17\xad\x92\x68\x01\x40\x35\x04\x00\xa8\xc0\xd9\xe5\x4b\xdb\xd6\ -\x86\x01\xcd\x2f\x3e\xb4\x7b\xf8\xc9\xe2\x18\x28\x51\x28\x5e\x81\ -\x92\x6d\x1c\x3a\xf0\x60\xfe\xb2\x6f\xbc\x62\x46\x27\x57\x56\xd7\ -\x9f\x53\x1c\x03\x25\xb2\x03\x00\xd5\xf1\x31\xc0\x9c\xf2\x3b\x14\ -\x3f\x43\xa8\x88\x00\x00\x15\x89\x2e\x5e\x65\xf0\xf9\x3f\x54\x44\ -\x00\x80\xaa\xa8\xaf\xcd\x4f\x03\x00\x2a\x23\x00\x40\x55\x5c\xbc\ -\xe6\x17\xd5\x29\xa1\x2a\x02\x00\x54\x25\xb8\x78\xcd\xcd\x2e\x0a\ -\x54\x46\x00\x80\xaa\x0c\xed\x00\xcc\xcb\x10\x20\xa8\x8e\x00\x00\ -\x15\x19\x0e\xa3\xbb\xd7\x39\x85\x45\x03\x95\xa0\x2a\x02\x00\x54\ -\xe4\xdc\xc2\x59\x17\xaf\xf9\xc4\x87\xae\xf4\x45\x40\x50\x15\x01\ -\x00\x2a\xf2\xfc\xd5\x13\x8f\xe7\x2f\x1b\xe3\x15\x33\x78\xf0\x86\ -\xc3\xc7\x9f\x28\x8e\x81\x92\x09\x00\x50\x2d\x1f\x03\xcc\xc8\x10\ -\x20\xa8\x96\x00\x00\x15\x32\x0c\x68\x2e\xc2\x13\x54\x48\x00\x80\ -\x4a\x79\x8a\x7d\x66\x1a\x00\x50\x29\x01\x00\xaa\x14\x82\x8b\xd8\ -\xac\x0c\x01\x82\x4a\x09\x00\x50\xa5\xe8\x23\x80\x99\xd9\x01\x80\ -\x4a\x09\x00\x50\x25\x93\xec\x66\x16\xfc\xec\xa0\x52\x02\x00\x54\ -\x28\x0e\x36\xdd\xc5\xce\xc8\x10\x20\xa8\x96\x00\x00\x15\xba\x70\ -\xe6\x59\x2e\x62\xb3\x31\x04\x08\x2a\x16\x8a\x57\xa0\x22\x1b\x87\ -\x0e\x9c\xca\x5f\x56\xc6\x2b\x26\x74\x72\x65\x75\xfd\x39\xc5\x31\ -\x50\x01\x3b\x00\x50\x3d\xbb\x00\x53\x32\x04\x08\xaa\x27\x00\x40\ -\xe5\x3c\xcd\x3e\x35\xed\x09\xa8\x9c\x00\x00\x15\x8b\x26\xda\x4d\ -\x6f\xe0\x9b\x14\xa1\x6a\x02\x00\x54\xcd\x30\xa0\xe9\x19\x02\x04\ -\x95\x13\x00\xa0\x6a\xb6\xb3\xa7\x67\x08\x10\x54\x4e\x00\x80\xaa\ -\x05\x7d\xf6\x69\x6d\x0e\x05\x00\xa8\x9a\x00\x00\x15\x8b\x99\xcf\ -\xb3\xa7\xb5\xb4\xe4\x67\x06\x55\x13\x00\xa0\x62\x86\x01\x4d\xcd\ -\x10\x20\xa8\x81\x41\x40\x50\x83\x8d\x43\x07\x36\xf2\x97\xe5\xf1\ -\x8a\xed\xc4\x2c\x7b\x70\xdf\xea\xfa\xb5\xc5\x12\xa8\x88\x1d\x00\ -\xa8\x87\x2d\xed\x09\xe5\xff\x28\xf9\x59\x41\x0d\x04\x00\xa8\x85\ -\x87\xda\x26\xa6\x35\x01\xb5\x10\x00\xa0\x0e\xd1\x2c\x80\x49\x0d\ -\xcd\x4d\x80\x5a\x08\x00\x50\x83\x18\xdc\xd5\x4e\xcc\x0c\x00\xa8\ -\x85\x00\x00\x75\x70\x57\x3b\x31\xcf\x00\x40\x3d\x04\x00\xa8\xc5\ -\xa6\x8b\xda\x84\x0c\x01\x82\x7a\x08\x00\x50\x83\xb8\xb9\xe0\xa2\ -\x36\x21\x43\x80\xa0\x1e\x02\x00\xd4\xe0\xc2\xe3\x8b\x2e\x6a\x93\ -\x31\x04\x08\x6a\x62\x10\x10\xd4\xc4\x30\xa0\x9d\x19\x02\x04\xf5\ -\xb1\x03\x00\xb5\xf1\xd9\xf6\x04\xfc\x8c\xa0\x26\x02\x00\xd4\x46\ -\x13\x60\x27\x83\xa8\x01\x00\x75\x11\x00\xa0\x2e\x2e\x6e\x3b\x32\ -\x04\x08\xea\x23\x00\x40\x4d\x0c\x03\x9a\x80\x21\x40\x50\x1b\x01\ -\x00\xea\xe2\xee\x76\x67\x66\x00\x40\x6d\x04\x00\xa8\x8b\x2f\xb9\ -\xd9\x51\x34\x05\x10\x6a\x23\x00\x40\x4d\xe2\xd0\xc5\x6d\x27\x31\ -\x18\x98\x04\x75\x11\x00\xa0\x26\x9b\x4b\x17\x5c\xdc\xb6\x17\xcf\ -\x65\x9f\x32\x04\x08\x6a\x22\x00\x40\x4d\x9e\xfb\x96\x7b\xcf\x66\ -\x59\x78\xa8\x58\xf2\x14\x31\xcb\x4e\x3d\x7f\xf5\xc4\xe3\xc5\x12\ -\xa8\x98\x00\x00\xb5\x1a\xfa\x18\x60\x6b\x76\x48\xa0\x46\x02\x00\ -\xd4\x4a\x13\x60\x1b\x7e\x36\x50\x23\x01\x00\xea\xe5\x22\xb7\xa5\ -\x60\x77\x04\x6a\x24\x00\x40\x9d\xa2\x1d\x80\x2d\x19\x02\x04\xb5\ -\x12\x00\xa0\x4e\x2e\x72\x5b\x33\x04\x08\x6a\x25\x00\x40\x8d\xa2\ -\x6d\xee\x2d\x19\x02\x04\xf5\x12\x00\xa0\x4e\x83\xa1\xbb\xdc\x2d\ -\x18\x02\x04\xf5\x12\x00\xa0\x46\x17\xc3\xa6\xbb\xdc\x67\x66\x08\ -\x10\xd4\x4c\x00\x80\x1a\x19\x06\xb4\xa5\x0d\x43\x80\xa0\x5e\x02\ -\x00\xd4\xce\xc3\x6e\x4f\xe5\xf3\x7f\xa8\x9f\x00\x00\xf5\x13\x00\ -\x9e\xce\xcf\x04\x6a\x26\x00\x40\xfd\xdc\xed\x3e\x8d\x76\x04\xd4\ -\x4d\x00\x80\xba\x19\x06\xf4\x0c\x86\x1e\x00\x84\x9a\x09\x00\x50\ -\x37\xc3\x80\x9e\x2e\xda\x15\x81\xba\x09\x00\x50\xb7\x81\x00\xf0\ -\x54\x71\x30\xf0\x33\x81\x9a\x09\x00\x50\x33\x4f\xbc\x3f\x5d\x8c\ -\x9e\x01\x80\xba\x09\x00\x50\x33\xc3\x80\x9e\xce\x10\x20\xa8\x9f\ -\x00\x00\x35\x1b\x0f\x03\xca\x1e\x1e\xaf\xc8\x9d\x32\x04\x08\xea\ -\x27\x00\x40\x13\xa2\xde\xfb\x5f\xf3\x91\x08\x34\x43\x00\x80\x26\ -\x04\x17\xbd\x4f\x23\x0c\x41\x03\x04\x00\x68\x84\x59\x00\x4f\xb2\ -\x1b\x02\x8d\x10\x00\xa0\x11\xaa\x80\x4f\x32\x17\x01\x1a\x21\x00\ -\x40\x13\xa2\x8b\xde\x93\x0c\x01\x82\x46\x08\x00\xd0\x84\x05\x17\ -\xbd\xbf\x66\x08\x10\x34\x43\x00\x80\x06\xc4\xcd\x45\x17\xbd\x42\ -\xbc\x38\xf4\xb3\x80\x06\x08\x00\xd0\x80\xe1\xf9\x5d\x76\x00\x0a\ -\x17\x9f\xd8\x65\x08\x10\x34\x40\x00\x80\x06\x5c\x7b\xd7\x5d\x67\ -\xf2\x17\xc3\x80\xb2\xec\xd4\xf3\x8e\x1d\x7b\xac\x38\x06\x6a\x24\ -\x00\x40\x53\xd4\xdf\x46\xfc\x0c\xa0\x21\x02\x00\x34\x25\x98\x05\ -\x60\x0a\x20\x34\x47\x00\x80\xe6\xb8\xf8\xd9\x05\x81\xc6\x08\x00\ -\xd0\x18\xb3\x00\x0c\x01\x82\xe6\x08\x00\xd0\x14\xc3\x80\xf2\x00\ -\x60\x06\x00\x34\x45\x00\x80\xa6\xb8\xf8\x79\x06\x00\x1a\x24\x00\ -\x40\x43\x62\x1c\xf4\xfe\xe2\x67\x08\x10\x34\x47\x00\x80\x86\xc4\ -\x5d\x2e\x7e\x86\x00\x41\x73\x04\x00\x68\xc8\x35\x3f\xb3\xf6\x68\ -\xfe\xf2\xc8\x78\xd5\x4b\x86\x00\x41\x83\x04\x00\x68\x56\x9f\x77\ -\x01\x6c\xff\x43\x83\x04\x00\x68\x54\xe8\xed\x73\x00\x51\x00\x80\ -\x46\x09\x00\xd0\xa4\x3e\xf7\xe0\xa3\x06\x00\x34\x49\x00\x80\x26\ -\x0d\x7b\x1c\x00\x0c\x01\x82\x46\x09\x00\xd0\xa4\x3e\xcf\x02\x30\ -\x07\x01\x1a\x25\x00\x40\xb3\xfa\xbb\x0d\xde\xe7\xdd\x0f\x48\x80\ -\x00\x00\x4d\x1a\xf4\xf7\x22\x38\x1c\x46\xcf\x00\x40\x83\x04\x00\ -\x68\xd0\x70\xa1\xbf\x2d\x00\x43\x80\xa0\x59\x02\x00\x34\xa8\xc7\ -\xc3\x80\x36\x0c\x01\x82\x66\x09\x00\xd0\xbc\x3e\x7e\x0c\x60\xfb\ -\x1f\x1a\x26\x00\x40\xd3\x42\xff\x02\x80\x21\x40\xd0\x3c\x01\x00\ -\x9a\xd7\xbf\xbb\x61\x43\x80\xa0\x71\x02\x00\x34\x2e\xf4\xef\x61\ -\xb8\x41\xe6\x01\x40\x68\x98\x00\x00\x4d\xeb\xe5\xdd\x70\x7f\xdb\ -\x0f\x90\x0a\x01\x00\x9a\xd6\xc7\x81\x38\x86\x00\x41\xe3\x04\x00\ -\x68\xda\x62\xff\x76\x00\x0c\x01\x82\xe6\x09\x00\xd0\xb0\x3e\x0e\ -\x03\x32\x04\x08\x9a\x27\x00\x40\xc3\x8a\x61\x40\x9f\x1a\xaf\x7a\ -\xc1\x10\x20\x48\x80\x00\x00\x69\xe8\xd3\x67\xe2\x3e\xff\x87\x04\ -\x08\x00\x90\x82\xd0\x9f\xe7\x00\xa2\x29\x80\x90\x04\x01\x00\x52\ -\x10\xfb\xf4\x54\xbc\x06\x00\xa4\x40\x00\x80\x14\x84\x41\x7f\x2e\ -\x8a\x21\x08\x00\x90\x00\x01\x00\x52\xd0\xa7\x5e\x7c\xf4\x0c\x00\ -\xa4\x40\x00\x80\x14\xf4\x69\x1a\xa0\xef\x01\x80\x24\x08\x00\x90\ -\x82\xc1\xb0\x37\x77\xc5\x71\xb0\x69\x07\x00\x12\x20\x00\x40\x02\ -\x86\x4b\x0b\x1f\x2b\x0e\x3b\xef\xc2\x99\x67\x09\x00\x90\x00\x01\ -\x00\x12\xd0\xa3\x61\x40\x86\x00\x41\x22\x04\x00\x48\x47\x1f\xee\ -\x8c\xdd\xfd\x43\x22\x04\x00\x48\x46\xf7\x9b\x00\x86\x00\x41\x3a\ -\x04\x00\x48\x47\x0f\x2e\x8e\x86\x00\x41\x2a\x04\x00\x48\x45\x1f\ -\x86\x01\x19\x02\x04\xc9\x10\x00\x20\x15\x7d\x18\x06\x64\x08\x10\ -\x24\x43\x00\x80\x54\x84\x5e\x04\x00\xcf\x00\x40\x22\x04\x00\x48\ -\x46\xec\xfc\xc5\xd1\x10\x20\x48\x87\x00\x00\x89\x08\xbb\x2e\xeb\ -\xfc\xc5\xd1\x10\x20\x48\x47\x28\x5e\x81\x04\x6c\x1c\x3a\x30\x1a\ -\x06\xf4\xec\xf1\xaa\x73\x4e\xaf\xac\xae\xaf\x14\xc7\x40\xc3\xec\ -\x00\x40\x5a\xba\x7c\x87\xec\xf3\x7f\x48\x88\x00\x00\x49\xe9\xf2\ -\x73\x00\x66\x00\x40\x4a\x04\x00\x48\x49\x87\x7b\xf2\xa6\x00\x42\ -\x5a\x04\x00\x48\x4a\xe8\xee\x45\xd2\x10\x20\x48\x8a\x00\x00\x49\ -\x19\xde\x57\x1c\x74\x8f\x21\x40\x90\x14\x01\x00\x52\xd2\xe5\x41\ -\x39\x61\x28\x00\x40\x42\x04\x00\x48\x48\xd8\x5c\xe8\xf0\x33\x00\ -\xdd\x1f\x74\x04\x6d\x22\x00\x40\x4a\x2e\x5f\xe8\xec\x45\x72\x73\ -\x10\xbb\xfb\xf1\x06\xb4\x90\x41\x40\x90\x98\x8e\x0e\x03\x32\x04\ -\x08\x12\x63\x07\x00\xd2\xd3\xc5\x8f\x01\x6c\xff\x43\x62\x04\x00\ -\x48\x4d\x27\x9f\x96\x37\x04\x08\x52\x23\x00\x40\x6a\x06\x1d\xbc\ -\x5b\x8e\x66\x00\x40\x6a\x04\x00\x48\x4d\x07\x77\x00\x62\x30\x03\ -\x00\x52\x23\x00\x40\x6a\x42\x27\xb7\xcb\x3d\x03\x00\x89\x11\x00\ -\x20\x31\x61\x38\xe8\x5e\x00\x30\x04\x08\x92\x23\x00\x40\x6a\x86\ -\xdd\xfb\x3e\x80\xd8\xe1\x01\x47\xd0\x56\x02\x00\x24\x26\x0c\x36\ -\x3b\x77\xb1\x8c\x17\x9e\x65\x08\x10\x24\x46\x00\x80\xc4\xec\x3d\ -\x7a\xfc\xe1\xfc\xe5\xd1\xf1\xaa\x13\x4e\x5f\x7b\xd7\x5d\x67\x8a\ -\x63\x20\x11\x02\x00\xa4\xa9\x43\x77\xcc\x66\x00\x40\x8a\x04\x00\ -\x48\x51\xb7\xbe\x15\x50\x03\x00\x12\x24\x00\x40\x8a\xba\xd4\x9b\ -\x37\x04\x08\x92\x24\x00\x40\x9a\x3a\x73\xd7\x6c\x08\x10\xa4\x49\ -\x00\x80\x04\x85\x2c\x74\xe7\x19\x80\x60\x07\x00\x52\x24\x00\x40\ -\x8a\x3a\xf5\x0c\xc0\xa6\x67\x00\x20\x41\x02\x00\xa4\xa8\x43\x93\ -\xf3\x0c\x01\x82\x34\x09\x00\x90\xa0\xc1\x65\xe7\xbb\x13\x00\x0c\ -\x01\x82\x24\x09\x00\x90\xa0\x3d\x6f\xfa\xa5\x87\xf2\x97\x2e\x0c\ -\xcf\x31\x04\x08\x12\x25\x00\x40\xba\x3a\xb0\x0b\x60\x08\x10\xa4\ -\x4a\x00\x80\x74\x75\xe0\xe2\xa9\x01\x00\xa9\x12\x00\x20\x5d\xed\ -\x7f\x7a\xbe\x5b\x13\x0d\xa1\x53\x04\x00\x48\x55\x68\xff\xf6\xb9\ -\x21\x40\x90\x2e\x01\x00\x12\x15\xe2\xa0\xfd\x17\x4f\x43\x80\x20\ -\x59\x02\x00\xa4\xaa\x13\xb3\x00\x0c\x01\x82\x54\x09\x00\x90\xaa\ -\x0e\x7c\x7e\x6e\x08\x10\xa4\x4b\x00\x80\x44\x75\x61\x18\x90\x21\ -\x40\x90\x2e\x01\x00\x12\xd5\xfe\x61\x40\xe1\x21\x43\x80\x20\x5d\ -\x02\x00\xa4\xad\xc5\x77\xd0\x43\x9f\xff\x43\xc2\x04\x00\x48\x5b\ -\x8b\x2f\xa2\x1a\x00\x90\x32\x01\x00\x52\x16\x5b\x3c\x0b\xc0\x10\ -\x20\x48\x9a\x00\x00\x29\x1b\xb4\x7a\x07\xc0\x03\x80\x90\x30\x01\ -\x00\x12\x16\x5a\x7c\x11\x8d\xad\x0e\x2f\xd0\x7d\x02\x00\x24\x2d\ -\xb6\xf7\x22\x1a\x8d\x01\x86\x94\x09\x00\x90\xb2\xcd\xf6\x4e\x03\ -\x8c\x43\x3b\x00\x90\x32\x01\x00\x12\xb6\x30\x58\x6a\x6f\x00\x30\ -\x04\x08\x92\x16\x8a\x57\x20\x51\x1b\x87\x0e\x3c\x9a\xbf\x5c\x35\ -\x5e\xb5\x45\x78\x68\x65\x75\x6d\xb9\x58\x00\x09\xb2\x03\x00\xe9\ -\x6b\xe1\x9d\x74\xfb\xbf\xca\x18\xba\x4e\x00\x80\xe4\xb5\x72\xa0\ -\x8e\xcf\xff\x21\x71\x02\x00\xa4\x2e\xb6\x72\xa4\xae\x1d\x00\x48\ -\x9c\x00\x00\xa9\x0b\x2d\xdc\x01\x88\xc6\x00\x43\xea\x04\x00\x48\ -\x5c\x08\xed\xbb\x9b\x36\x04\x08\xd2\x27\x00\x40\xea\x86\x83\x16\ -\xee\x00\xf8\x08\x00\x52\x27\x00\x40\xea\xe2\x85\xf6\xdd\x4d\x0f\ -\xda\x3b\xc0\x08\xfa\x42\x00\x80\xc4\xb5\x71\x18\xd0\xf0\xf1\x2b\ -\x04\x00\x48\x9c\x41\x40\xd0\x02\x1b\x87\x0e\x9c\xc9\x5f\xae\x1c\ -\xaf\x52\x67\x08\x10\xb4\x81\x1d\x00\x68\x85\x36\x7d\x2b\xa0\x21\ -\x40\xd0\x06\x02\x00\xb4\x43\x9b\x9e\x03\xd0\x00\x80\x16\x10\x00\ -\xa0\x15\x5a\x75\x57\x6d\x07\x00\x5a\x40\x00\x80\x76\x68\xcf\x5d\ -\xb5\x21\x40\xd0\x0a\x02\x00\xb4\x40\x68\xd3\x33\x00\xc1\x33\x00\ -\xd0\x06\x02\x00\xb4\x41\x0c\xad\xd9\x01\x88\x59\x7b\xfe\xbb\x42\ -\x9f\x09\x00\xd0\x02\x71\x61\xf8\x97\xc5\x61\xf2\x16\x17\x37\x5b\ -\xf3\xdf\x15\xfa\x4c\x00\x80\x16\x58\x7e\xf6\x99\x0f\xe5\x2f\x17\ -\xc7\xab\x74\xc5\x2c\x3b\xb7\xfb\x23\x8f\x7d\xa4\x58\x02\x09\x13\ -\x00\xa0\x05\xc2\xe1\x13\xe7\xf3\x97\x0f\x8e\x57\xe9\x1a\x64\xe1\ -\x4f\xc2\x89\x13\x9b\xc5\x12\x48\x98\x00\x00\x2d\x11\x63\xf6\xdb\ -\xc5\x61\xb2\x62\x16\x7f\xab\x38\x04\x12\x27\x00\x40\x5b\x84\xf0\ -\x1b\xc5\x51\xc2\xe2\x7b\x8a\x03\x20\x71\x02\x00\xb4\xc4\xa3\xbb\ -\x87\xef\xce\x5f\x1e\x1e\xaf\x92\x74\x72\xf9\xec\xae\xf7\x16\xc7\ -\x40\xe2\x04\x00\x68\x89\x1b\x0e\x1f\x7f\x22\x66\xf1\xed\xc5\x32\ -\x45\xf7\x86\x63\xc7\x2e\x14\xc7\x40\xe2\x04\x00\x68\x91\xc5\x6c\ -\xf0\xe6\xfc\x25\xc5\x36\xc0\x85\x30\xdc\xbc\xa3\x38\x06\x5a\x40\ -\x00\x80\x16\xd9\xb3\xba\xf6\x17\x59\x16\xef\x2e\x96\xc9\x08\x21\ -\x1e\x5b\xbe\xfd\x9e\x8f\x15\x4b\xa0\x05\x04\x00\x68\x99\xa5\xf3\ -\xc3\x1f\xc8\x5f\x4e\x8d\x57\x49\x78\x60\xb0\xeb\xfc\x8f\x16\xc7\ -\x40\x4b\x08\x00\xd0\x32\x57\xff\xfc\x3d\x1b\x59\xcc\xfe\x79\xb1\ -\x6c\x5a\x8c\x59\xf6\xfa\x3d\x6f\xfa\xa5\x87\x8a\x35\xd0\x12\x02\ -\x00\xb4\xd0\xca\xd1\xf5\x5f\xcd\x2f\xbd\x47\x8b\x65\x63\x42\x16\ -\x7e\x6a\xdf\xea\xfa\x7f\x2c\x96\x40\x8b\x08\x00\xd0\x52\xcb\x7b\ -\xae\x7f\x43\x7e\x09\x6e\xb2\x15\xb0\xbe\x77\x75\xed\x47\x8a\x63\ -\xa0\x65\x04\x00\x68\xa9\x70\xf8\xf0\x70\xf9\x13\x8f\x7e\x67\x16\ -\xb3\x5f\x2c\x4e\xd5\x27\x64\x6b\xcb\xbb\xaf\xbb\x29\x8c\x86\xff\ -\x01\xad\x94\xff\xfd\x05\xda\x2c\xbf\x02\x87\xd3\xb7\x1e\x78\x43\ -\xfe\xb7\xf9\x27\xf3\xe5\xd2\xf8\x6c\x35\x46\x5f\xf6\x93\xff\xe7\ -\x7c\xff\xbe\x23\xeb\x2a\x7f\xd0\x72\x02\x00\x74\xc4\x83\x87\x0e\ -\xbe\x74\x21\x8b\xbf\x98\x5f\xa4\xbf\xb8\x38\x55\xb6\x0f\x0c\x42\ -\x78\xfd\xde\x23\x6b\x7f\x54\xac\x81\x16\xf3\x11\x00\x74\xc4\x35\ -\xab\x6b\x7f\xb0\xf7\x13\x67\x5e\x9e\xc5\xf8\x8f\x63\xcc\x3e\x5c\ -\x9c\x2e\xc3\x9f\xc5\x18\x5f\xbb\xbc\xfb\xba\x57\xb8\xf8\x43\x77\ -\xd8\x01\x80\x0e\x8a\x87\x0f\x2f\x9e\xfa\xd4\xc7\xbe\x79\x21\xc6\ -\x83\x31\xcb\xbe\x21\x3f\x75\xf9\xf8\x77\x26\x76\x36\xff\xf5\xee\ -\x10\xe2\xfa\xde\xab\xaf\xff\xaf\xa3\xe7\x0d\xc6\xa7\x81\xae\x10\ -\x00\xa0\xe3\x3e\x7e\xe8\xc6\xcb\xaf\x18\x5c\xf9\xca\x18\xc3\xcb\ -\x43\x0c\x5f\x90\x65\xc3\xeb\xf2\xbf\xfa\xfb\xf2\x5f\x7b\xc7\x35\ -\xfe\x4b\x5f\x30\x74\x32\x8b\xd9\x47\xe3\x20\xfb\xa3\x6c\x98\x7d\ -\x60\x65\xf3\xaa\xdf\x0d\x77\xde\x79\xee\xd2\xff\x07\x40\x07\x65\ -\xd9\xff\x07\xf8\x2f\xac\x3d\x01\xaa\x80\x8d\x00\x00\x00\x00\x49\ -\x45\x4e\x44\xae\x42\x60\x82\xee\xbd\xea\xc2\x8b\x46\x17\xbf\x24\ -\xe7\xf4\xf5\x29\xa7\xaf\x89\x18\x5f\x1e\x91\x76\x45\xa4\x9d\x67\ -\x6a\xfc\xf1\x40\x44\xdc\x1b\x39\x3e\x9d\x47\xf1\xa7\x31\x8e\x8f\ -\x2c\x6f\x5c\xf2\x87\xe9\x96\x5b\x4e\x94\x9e\x1d\xa8\xcf\xff\x03\ -\xbe\xa8\xc1\x4b\xa1\xf6\xe8\xa9\x00\x00\x00\x00\x49\x45\x4e\x44\ -\xae\x42\x60\x82\ -\x00\x00\xd1\xab\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc3\x00\x00\x0e\xc3\ -\x01\xc7\x6f\xa8\x64\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\xdd\x77\x78\x54\x55\xfa\xc0\xf1\xef\x4c\x26\ -\xbd\x17\x02\x21\xf4\xde\x8b\xf4\x26\xa2\x58\x10\xb0\x57\xec\x75\ -\xd5\x75\xad\xeb\x5a\xd6\xee\xea\xfa\xb3\xf7\xde\x00\x0b\x28\x8a\ -\xbd\x0b\x82\x80\xf4\xde\x7b\x4f\x80\xf4\x9e\xa9\xbf\x3f\x2e\x59\ -\x11\x29\xe7\x4c\xe6\xce\xdc\x99\xbc\x9f\xe7\xc9\x03\xca\x39\xf7\ -\xbe\x09\x21\xf7\xbd\xa7\xbc\x07\x84\x10\x42\x08\xd1\xe0\xd8\x42\ -\x1d\x80\xf0\x9b\x03\x48\x01\xd2\xf6\xff\x77\x2c\x90\xb0\xff\xf7\ -\xe5\x80\x1b\xf0\x02\xa5\x40\x09\xe0\x0b\x76\x80\x42\x08\x21\xac\ -\x4b\x12\x00\x6b\xb2\x03\x6d\x81\x8e\x40\xab\xfd\x1f\xad\x81\x5c\ -\x20\x13\x68\x04\xa4\x6a\x5c\xcf\x07\x14\x1e\xf0\xb1\x1d\xd8\x02\ -\x6c\xdd\xff\xb1\x76\xff\xff\x13\x42\x08\xd1\x40\x48\x02\x10\x7a\ -\x51\x40\x77\x60\x08\xd0\x0b\xe8\x09\x74\xe5\x8f\xb7\xf9\x60\x29\ -\x01\x96\xef\xff\x58\x04\xfc\x0e\xac\x0b\x72\x0c\x42\x08\x21\x82\ -\x44\x12\x80\xe0\xb3\x03\x7d\x81\x93\x81\x61\xc0\x40\x20\x39\xa4\ -\x11\x1d\xde\x5e\x8c\x44\x60\x06\xf0\x1d\xc6\x48\x81\x10\x42\x08\ -\x21\x14\x25\x03\x17\x00\x13\x31\x1e\xaa\xbe\x30\xfd\xd8\x0c\xbc\ -\x02\x9c\x0a\xc4\x04\xf4\x2b\x24\x84\x10\x42\x44\x88\x38\x60\x2c\ -\x30\x01\x63\x51\x5e\xa8\x1f\xde\x81\xfe\x28\xde\xff\xb9\x8d\x05\ -\xa2\x03\xf4\x35\x13\x42\x08\x21\xc2\x56\x1f\xe0\x79\xa0\x88\xd0\ -\x3f\xa4\x83\xf5\x91\x07\x3c\x8e\xb1\x70\x51\x08\x21\x84\x68\x30\ -\xe2\x80\x6b\x30\x16\xcf\x85\xfa\x61\x1c\xca\x0f\x2f\xf0\x13\x70\ -\x16\xc6\x5a\x07\x21\x84\x10\x22\x22\x35\x02\xee\x04\x76\x11\xfa\ -\x87\xaf\xd5\x3e\x36\x01\x37\x03\x89\x7e\x7f\x75\x85\x10\x42\x08\ -\x8b\xc9\x01\x5e\x00\xaa\x08\xfd\x83\xd6\xea\x1f\xfb\x80\x7b\x80\ -\x24\xbf\xbe\xd2\x42\x08\x21\x84\x05\x64\x62\xcc\x75\x57\x12\xfa\ -\x07\x6b\xb8\x7d\x14\x60\x8c\x96\x04\xbb\xbe\x81\x10\x42\x88\x43\ -\x90\x3a\x00\x6a\xe2\x80\x5b\x81\xbb\x09\xd1\x9e\x7d\x87\xcd\x46\ -\xd3\xf8\x38\x9a\xc5\xc7\x93\x11\x13\x4d\x66\x4c\x0c\x19\x31\x31\ -\xa4\x45\x3b\x00\x48\x74\x38\x88\xb6\x19\x7f\x9d\x35\x5e\x2f\x35\ -\x1e\x0f\x3e\xa0\xd0\xe9\xa4\xc8\xe9\xa2\x68\xff\xaf\xdb\xab\xaa\ -\xc9\xaf\xa9\xc1\x17\x8a\x4f\xc2\xb0\x1b\x63\x44\x60\x02\x84\x32\ -\x0c\x21\x84\x68\xd8\x24\x01\x38\xba\xb3\x81\x27\x31\x4a\xf1\x9a\ -\x2e\xce\x6e\xa7\x73\x4a\x32\xdd\x53\x53\xe8\x92\x92\x4c\xd7\x94\ -\x64\x5a\x25\x24\xd0\x34\x3e\x0e\x87\x2d\x30\x7f\x5d\xb5\x5e\x2f\ -\xdb\xab\xaa\xd9\x52\x59\xc5\xea\xb2\x32\x56\x96\x95\xb3\xaa\xac\ -\x9c\xf5\xe5\x15\xb8\x7d\x41\x7b\x26\x2f\xc0\x58\x23\xf0\x7b\xb0\ -\x6e\x28\x84\x10\xe2\x0f\x92\x00\x1c\x5e\x3b\xe0\x75\xe0\x78\x33\ -\x6f\x92\x16\x1d\xcd\xb0\xac\x4c\x06\x66\xa6\xd3\x3f\x3d\x8d\x5e\ -\x69\xa9\xc4\xd8\x43\xb3\x80\xbe\xd2\xed\x61\x61\x71\x09\x73\x8b\ -\x8a\xf8\xbd\xb0\x98\xb9\x45\xc5\x54\x7b\x3c\x66\xde\xd2\x87\x31\ -\x12\x70\x3b\xc6\x19\x05\x42\x08\x21\x82\x44\x12\x80\xbf\x72\x60\ -\x0c\xf7\x3f\x04\xc4\x9b\x71\x83\x6e\xa9\x29\x9c\xdc\xb8\x11\x27\ -\x66\x67\xd3\x3f\x23\x8d\xa8\x00\xbd\xd9\x07\x5a\xb5\xc7\xc3\xac\ -\x82\x22\x7e\xda\xbb\x8f\xef\xf2\xf7\xb0\xbd\xaa\xda\xac\x5b\xed\ -\x05\x6e\x02\x26\x9b\x75\x03\x21\x84\x10\x7f\x66\xcd\x27\x4f\xe8\ -\x74\x05\xc6\x63\x14\xf3\x09\xa8\xce\xc9\x49\x9c\x99\x9b\xc3\x59\ -\xb9\x4d\x69\x9f\x14\x7e\x3b\xe3\x7c\xc0\xa2\xe2\x12\x3e\xdb\x95\ -\xc7\xd4\xdd\x79\xec\xae\xae\x31\xe3\x36\x5f\x61\xd4\x53\xd8\x63\ -\xc6\xc5\x85\x10\x42\xfc\x41\x12\x80\x3f\x5c\x0a\xbc\x4a\x00\x57\ -\xa9\xc7\xd9\xed\x9c\xd2\xa4\x31\x57\xb4\x6a\xce\x71\x8d\xb2\x02\ -\x75\xd9\x90\xf3\xfa\x7c\xcc\x2c\x28\xe4\xdd\xad\x3b\xf8\x26\x3f\ -\x1f\x97\x37\xa0\xeb\x06\xf6\x01\x57\x61\x24\x03\x42\x08\x21\x4c\ -\x22\x09\x00\x64\x03\xef\x00\xa3\x03\x75\xc1\xb6\x89\x89\xdc\xd0\ -\xb6\x15\x17\x34\xcf\x25\xc9\xe1\x08\xd4\x65\x2d\x69\x4f\x6d\x2d\ -\xef\x6d\xdd\xce\x9b\x5b\xb6\xb1\xaf\xd6\x19\xa8\xcb\xfa\x80\x97\ -\x81\x3b\x00\x53\x86\x1a\x84\x10\xa2\xa1\x6b\xe8\x09\xc0\x40\xe0\ -\x13\xa0\x59\x20\x2e\x36\x20\x23\x9d\x7f\xb4\x6b\xcd\xe8\x26\x8d\ -\xb1\x5b\x74\x5e\xdf\x2c\x35\x5e\x2f\x93\xb6\xef\xe4\xc5\x4d\x5b\ -\xd8\x58\x51\x19\xa8\xcb\x2e\xc2\xd8\x85\xb1\x2d\x50\x17\x14\x42\ -\x08\x61\x68\x58\x4f\xa9\x3f\xbb\x14\x78\x8d\x00\x2c\xf4\xeb\x93\ -\x9e\xc6\x1d\x1d\xda\x31\xaa\x49\x76\xfd\xa3\x0a\x73\x5e\x9f\x8f\ -\x2f\xf3\xf2\x79\x78\xf5\x7a\x36\x55\x06\x24\x11\x28\x04\x2e\x02\ -\x7e\x08\xc4\xc5\x84\x10\x42\x18\x1a\x62\x02\x10\x8d\x71\xa6\xfd\ -\xd5\xf5\xbd\x50\x87\xa4\x24\x1e\xea\xda\x91\x53\x9b\x34\xae\x7f\ -\x54\x11\xc6\xe5\xf5\x31\x71\xfb\x0e\x1e\x5b\xbb\x3e\x10\x53\x03\ -\x1e\xe0\x2e\xe0\xa9\xfa\x47\x26\x84\x10\x02\x1a\x5e\x02\x90\x04\ -\x7c\x0c\x8c\xaa\xcf\x45\x52\xa3\xa3\xb9\xad\x7d\x1b\x6e\x68\xdb\ -\x3a\x64\x7b\xf6\xc3\x45\x95\xc7\xc3\xf3\x1b\x36\xf3\xec\x86\x4d\ -\xd4\x7a\xbd\xf5\xbd\xdc\xdb\xc0\xf5\x80\xab\xfe\x91\x09\x21\x44\ -\xc3\xd6\x90\x12\x80\x16\xc0\xd7\x40\x77\x7f\x2f\x60\x03\xc6\xb5\ -\x68\xc6\x23\x5d\x3b\x91\x19\x13\x13\xb0\xc0\x1a\x82\x8d\x15\x95\ -\xdc\xb2\x6c\x25\xbf\x15\xd4\xbb\xde\xcf\x77\xc0\xf9\x40\x79\xfd\ -\xa3\x12\x42\x88\x86\xab\xa1\x24\x00\x9d\x80\x9f\x81\x5c\x7f\x2f\ -\xd0\x32\x21\x81\xe7\x7b\x75\x63\x44\x04\x6d\xe7\x0b\x36\x1f\x30\ -\x71\xdb\x0e\xee\x5b\xb5\x96\x12\x57\xbd\x5e\xe2\x17\x02\xa7\x20\ -\xd5\x03\x85\x10\xc2\x6f\x0d\x21\x01\xe8\x01\xfc\x08\xf8\x35\x51\ -\x6f\x03\xae\x6c\xdd\x82\x47\xbb\x76\x26\x3e\x2a\x2a\xa0\x81\x35\ -\x54\xf9\x35\xb5\xfc\x7d\xc9\x72\x7e\xde\xbb\xaf\x3e\x97\x59\x01\ -\x9c\x88\x14\x0d\x12\x42\x08\xbf\x44\x7a\x02\xd0\x17\x63\xf5\x78\ -\x86\x3f\x9d\x1b\xc5\xc6\xf0\x52\xaf\x1e\x9c\x22\xab\xfb\x03\xce\ -\x07\xbc\xb6\x79\x2b\x0f\xae\x5a\x4b\x8d\xff\x6b\x03\xd6\x01\x23\ -\x81\x9d\x01\x0b\x4c\x08\x21\x1a\x88\x48\x4e\x00\x7a\x03\xd3\x80\ -\x34\x7f\x3a\x0f\xcd\xca\xe4\x9d\xbe\xbd\x68\x1c\x1b\x1b\xd8\xa8\ -\xc4\x9f\xac\x2a\x2b\xe7\x92\xf9\x8b\xeb\xb3\x65\x70\x03\x30\x1c\ -\xc8\x0b\x5c\x54\x42\x08\x11\xf9\x22\x35\x01\xe8\x00\xcc\xc4\xcf\ -\x61\xff\xcb\x5b\xb5\xe0\xa9\xee\x5d\x89\xb6\x47\xea\x97\xc7\x5a\ -\x2a\xdc\x6e\xae\x5b\xbc\x9c\xaf\xf2\xf2\xfd\xbd\xc4\x3a\x8c\x24\ -\x40\xa6\x03\x84\x10\x42\x51\x24\x4e\x6a\xb7\x05\x66\x00\x39\xba\ -\x1d\xe3\xa3\xa2\x78\xa3\x4f\x4f\x6e\x6b\xdf\xd6\xb2\x27\xf4\x45\ -\xa2\x18\xbb\x9d\x33\x73\x73\xb0\xd9\x60\x76\x41\x91\x3f\x97\xc8\ -\x02\x46\x60\x9c\x26\x58\x1b\xd0\xe0\x84\x10\x22\x42\x45\xda\x53\ -\x2e\x13\x98\x83\x31\x02\xa0\x25\x23\x26\x86\x0f\xfb\xf7\x61\x50\ -\x66\x7a\xe0\xa3\x12\xca\x3e\xdf\x9d\xc7\xdf\x16\x2d\xf3\x77\x5d\ -\xc0\x0c\xe0\x64\x24\x09\x10\x42\x88\xa3\x8a\xa4\x11\x80\x38\xe0\ -\x7b\xa0\x97\x6e\xc7\xf6\x49\x89\x7c\x33\x64\x20\xdd\x53\x53\x02\ -\x1f\x95\xd0\xd2\x29\x39\x99\xc1\x59\x19\x7c\x9b\xbf\x87\x1a\x8f\ -\x76\x12\xd0\x0a\xe3\x5c\x87\x2f\x03\x1e\x98\x10\x42\x44\x98\x48\ -\x49\x00\x6c\xc0\x7b\xf8\x71\xa2\x5f\xf7\xd4\x14\xbe\x1e\x32\x90\ -\xdc\xf8\xb8\x80\x07\x25\xfc\xd3\x22\x21\x9e\x51\x4d\x1a\xf3\x75\ -\xde\x1e\x2a\xdc\x6e\xdd\xee\xbd\x30\x4a\x07\xcf\x0c\x7c\x64\x42\ -\x08\x11\x39\x22\x25\x01\x78\x10\xf8\x87\x6e\xa7\x5e\x69\xa9\x7c\ -\x31\xb8\x3f\x99\xb1\x52\xd5\xcf\x6a\xb2\x62\x63\x18\xdb\xb4\x31\ -\xdf\xe6\xef\xa5\x54\xbf\x68\xd0\x71\xc0\xea\xfd\x1f\x42\x08\x21\ -\x0e\x21\x12\xd6\x00\x8c\xc6\x18\xf2\xd5\x2a\xca\x3f\x20\x23\x9d\ -\xcf\x06\xf5\x23\xc9\xe1\x30\x27\x2a\x11\x10\xdb\xab\xaa\x39\x75\ -\xf6\x5c\x76\x54\x55\xeb\x76\x2d\x07\xfa\x03\x6b\x03\x1f\x95\x10\ -\x42\x84\xbf\x70\x4f\x00\x5a\x61\x94\x85\xcd\xd4\xe9\x64\x0c\xfb\ -\x0f\x20\x2d\x3a\xda\x94\xa0\x44\x60\x6d\xa9\xac\x62\xd4\xac\xb9\ -\xe4\xd5\xd4\xe8\x76\x5d\x87\x91\x04\x94\x05\x3e\x2a\x21\x84\x08\ -\x6f\xe1\x7c\x94\x5d\x2c\x30\x15\xcd\x87\x7f\xd7\x94\x64\xbe\x1c\ -\xdc\x5f\x1e\xfe\x61\xa4\x75\x62\x02\x53\x07\xf7\x27\x43\xff\x00\ -\xa6\x8e\xc0\xeb\x26\x84\x24\x84\x10\x61\x2f\x9c\xd7\x00\xfc\x1f\ -\x70\x96\x4e\x87\x9c\xb8\x38\xbe\x19\x32\x90\xec\x38\xa9\xee\x17\ -\x6e\x1a\xc5\xc6\x30\x28\x33\x9d\x29\xbb\xf2\x70\xfb\x7c\x3a\x5d\ -\xbb\x01\x9b\x81\xe5\xe6\x44\x26\x84\x10\xe1\x29\x5c\x13\x80\xe1\ -\xc0\x6b\x68\x4c\x61\x24\x39\x1c\x7c\x35\xb8\x3f\x6d\x93\x12\xcd\ -\x8b\x4a\x98\x2a\x33\x26\x86\x96\x89\x09\x7c\x9f\xbf\x17\xad\x14\ -\xc0\x38\x34\x68\x0a\xe0\x57\x95\x21\x21\x84\x88\x44\xe1\x98\x00\ -\x64\x60\x1c\xed\x9b\xaa\xda\xc1\x61\xb3\xf1\xe1\x80\x3e\x0c\xcc\ -\xf4\xeb\x4c\x20\x61\x11\x6e\x9f\x8f\xa6\x71\x71\xc4\x45\x45\x31\ -\xbb\x50\xeb\x59\x1e\x03\xf4\x01\xc6\x83\x6e\xee\x20\x84\x10\x91\ -\x29\x1c\x13\x80\x97\x81\x63\x75\x3a\x3c\xdc\xb5\x33\x17\x34\xcf\ -\x35\x29\x1c\x11\x2c\x4e\xaf\x0f\xa7\xd7\xcb\x31\x69\xa9\xec\xaa\ -\xae\x61\x6d\x79\x85\x4e\xf7\xe6\x18\x23\x00\xf3\xcc\x89\x4e\x08\ -\x21\xc2\x4b\xb8\xed\x02\x18\x01\xfc\x82\x46\xdc\x63\x73\x9a\x30\ -\xb1\xff\x31\x61\xf7\x89\x8a\xbf\xaa\x70\xbb\xa9\x70\x7b\x00\xa8\ -\xf1\x78\x19\x37\x7f\x21\xab\xca\xca\x75\x2e\x51\x05\x74\xc7\x58\ -\x13\x20\x84\x10\x0d\x5a\x38\xed\x02\x48\x00\xde\x44\xe3\xe1\xdf\ -\x29\x39\x89\xd7\x8f\xe9\x29\x0f\xff\x08\xe1\x3d\x60\xf0\x3e\x2e\ -\xca\xce\xb3\x3d\xbb\x93\xac\x57\xc7\x21\x01\x63\x04\x49\x08\x21\ -\x1a\xbc\x70\x9a\x02\x78\x00\x38\x5d\xb5\x71\xac\xdd\xce\xa7\x83\ -\xfa\xd1\x2c\x21\xde\xc4\x90\x44\x30\x55\x79\x3c\x78\x0e\xd8\x01\ -\x90\x16\x1d\x4d\x4e\x7c\x1c\x3f\xee\xd9\xa7\x73\x99\x76\xc0\x2a\ -\xa4\x4a\xa0\x10\xa2\x81\x0b\x97\x11\x80\xe6\xc0\xad\x3a\x1d\xee\ -\xeb\xdc\x51\x0e\xf7\x89\x30\xde\x43\xac\xdf\x1b\x9b\xd3\x84\xb1\ -\x39\x4d\x74\x2f\xf5\x0c\xc6\x68\x80\x10\x42\x34\x58\xe1\x92\x00\ -\x3c\x8d\xc6\x0f\xec\xa1\x59\x99\xfc\xbd\x6d\x2b\xf3\xa2\x11\x21\ -\xe1\x39\xcc\xfe\xff\x07\xba\x74\xa4\x69\x9c\xd6\x61\x4e\xcd\x81\ -\x5b\x02\x11\x93\x10\x42\x84\xab\x70\x48\x00\x86\x01\xe7\xaa\x36\ -\x8e\x8f\x8a\xe2\xc5\x5e\xdd\xb1\xdb\x64\xe6\x3f\xd2\x78\x0f\xb3\ -\x81\x2f\xd9\xe1\xe0\x81\x2e\x1d\x75\x2f\x77\x37\x90\x53\xcf\x90\ -\x84\x10\x22\x6c\x85\xc3\x1a\x80\x89\x40\x4b\xd5\xc6\xf7\x77\xe9\ -\xc8\xa8\x26\xd9\x26\x86\x23\x42\xc1\xeb\xf3\x51\xe9\xf1\x1c\xf6\ -\xcf\x5b\x25\x26\xb0\xb9\xb2\x8a\x0d\x15\x95\xaa\x97\x8c\xd9\xff\ -\xf1\x5d\x00\xc2\x13\x42\x88\xb0\x63\xf5\xd7\xe4\x93\x81\xef\x55\ -\x1b\xf7\x48\x4d\x61\xfa\xf0\x21\x38\x22\xf8\xed\x7f\x77\x4d\x0d\ -\x1b\x2b\x2a\xd9\x58\x51\xc9\x86\x8a\x0a\xf2\x6a\x6a\xa9\x72\x7b\ -\xa8\xf4\x78\xa8\x70\xbb\x01\x48\x8d\x76\x90\x18\xe5\x20\xc1\x11\ -\x45\xb3\xf8\x38\xda\x25\x25\xd1\x3e\x29\x91\xf6\x49\x89\x64\xea\ -\xd7\xd3\xb7\x04\xa7\xd7\x4b\x91\xf3\xc8\xc7\x02\x17\x38\x9d\x8c\ -\x9a\xf5\x3b\x65\x2e\xb7\xea\x65\x6b\x81\xf6\xc0\x8e\x7a\x86\x27\ -\x84\x10\x61\xc7\xea\x67\xe1\x3e\xa4\xd3\xf8\xf1\xee\x5d\x22\xee\ -\xe1\xbf\xa3\xaa\x9a\x5f\x0b\x0a\xf9\x6d\x5f\x21\x33\x0b\x0a\xfd\ -\x39\x11\xef\x4f\xda\x25\x25\x32\x2c\x2b\x93\xe1\x59\x99\x0c\xcb\ -\xca\x24\x2b\x36\x3c\x12\x82\xc3\xcd\xff\x1f\x28\x2b\x26\x86\x7f\ -\xb4\x6d\xc3\xa3\x6b\xd7\xab\x5e\x36\x16\xf8\x37\x70\x5d\x3d\x42\ -\x13\x42\x88\xb0\x64\xe5\xa7\xe5\xa9\xc0\x37\xaa\x8d\xcf\xcc\xcd\ -\xe1\xbd\xbe\xbd\x4d\x0c\x27\x78\x4a\x5d\x2e\xa6\xee\xca\xe3\xa3\ -\x1d\xbb\x98\x57\x54\x6c\x5a\xed\x5a\xbb\xcd\x46\xff\xf4\x34\x2e\ -\x6c\x9e\xcb\xb9\xcd\x72\x49\x74\x58\x77\x46\xe8\xc0\x22\x40\x47\ -\xe2\xf6\xf9\x18\x3b\x7b\x1e\x9b\x2b\x95\xa7\x02\x5c\x18\xa3\x00\ -\xdb\xea\x11\x9e\x10\x42\x84\x1d\x2b\x27\x00\xd3\x30\x2a\xff\x1d\ -\x55\x9c\xdd\xce\xc2\x13\x86\xd3\x3c\xcc\xf7\xfc\xaf\x28\x2d\xe3\ -\x99\x0d\x9b\xf8\x3a\x6f\x0f\x4e\xaf\x37\xa8\xf7\x4e\x76\x38\xb8\ -\xb0\x79\x2e\x37\xb7\x6f\x43\xb3\x78\xeb\x7d\x1d\x4b\x5d\x2e\xaa\ -\x3d\x6a\x5f\x93\x99\x05\x85\x5c\xb3\x68\xa9\xce\xe5\x9f\x05\x6e\ -\xf3\x27\x2e\x21\x84\x08\x57\x56\x4d\x00\xfa\x00\x0b\x55\x1b\xdf\ -\xd0\xb6\x15\xff\xed\xd6\xc5\xc4\x70\xcc\xb5\xa0\xb8\x84\xa7\xd6\ -\x6f\xe4\x07\xfd\x53\xee\x02\x2e\xc6\x6e\xe7\x82\xe6\xb9\xdc\xda\ -\xbe\x2d\x6d\x12\xad\xb3\x55\xbe\xc8\xe9\xc4\x79\xb8\x6d\x00\x87\ -\x70\xc9\x82\xc5\xcc\x2f\x2a\x56\x6d\x5e\x0e\xb4\x00\x4a\xfc\x08\ -\x4d\x08\x21\xc2\x92\x55\xc7\x7c\x9f\xc6\xa8\xd9\x7e\x54\xf1\x51\ -\x51\xbc\xdb\xb7\xb7\x6e\x49\x58\x4b\xd8\x53\x5b\xcb\xed\xcb\x57\ -\x71\xe7\x8a\xd5\x6c\x54\x5f\xbd\x6e\x2a\x8f\xcf\xc7\xb2\xd2\x32\ -\xde\xd9\xba\x8d\x42\xa7\x8b\x41\x99\xe9\xc4\xd8\x43\xbf\x5b\xb4\ -\xdc\xed\xd6\x4a\x8e\x5a\x26\xc4\xf3\xe9\xae\x3c\xd5\xe6\xb1\x18\ -\x0f\xff\xd9\xda\x81\x09\x21\x44\x98\xb2\x62\x02\x90\x83\x51\xf3\ -\x5f\x29\xb6\xbf\xb7\x6d\xcd\x69\x4d\xb5\x2b\xc1\x85\x94\xc7\xe7\ -\xe3\xcd\x2d\xdb\xb8\x78\xc1\x62\x16\x15\x97\x86\x3a\x9c\x43\xf2\ -\xfa\x60\x61\x71\x09\x9f\xec\xda\x4d\xcb\xc4\x04\x3a\x24\x25\x85\ -\x30\x16\x9f\xd2\xfc\xff\x81\x9a\xc6\xc7\xb1\xa8\xa4\x94\x9d\xd5\ -\xd5\xaa\x5d\x3a\x02\x2f\x20\xc7\x05\x0b\x21\x1a\x08\x2b\x26\x00\ -\x37\x01\x27\xaa\x34\x8c\xb5\xdb\x79\xb7\x5f\x6f\x92\xc2\xe8\xed\ -\xbf\xa0\xd6\xc9\xa5\x0b\x96\xf0\xc6\x96\x6d\xd4\x06\x79\x9e\xdf\ -\x1f\x65\x2e\x37\x9f\xee\xca\x63\x6b\x55\x15\x27\x64\x37\x22\x3a\ -\x04\xa3\x01\x4e\x9f\x8f\x1a\xc5\xf9\xff\x03\xe5\xc4\xc5\x31\x75\ -\xb7\xf2\x28\x40\x2a\xc6\x51\xc1\x1b\xb4\x6f\x24\x84\x10\x61\x28\ -\xf4\x63\xbb\x7f\x66\x03\xae\x50\x6d\x7c\x41\xf3\x5c\x1a\xc7\xc6\ -\x9a\x18\x4e\x60\xcd\x2a\x28\x64\xc8\xaf\xbf\xf1\xcb\x5e\xad\xc3\ -\x6b\x2c\x61\xd2\x8e\x5d\x1c\x37\x63\x36\xab\xf5\x8e\xdf\x0d\x08\ -\x95\x2d\x80\x87\x32\x20\x23\x9d\x1e\x7a\xe7\x41\x5c\xe3\xd7\x8d\ -\x84\x10\x22\x0c\x59\x2d\x01\x18\x89\x71\x5a\xdb\x51\xd9\x80\x1b\ -\xda\xb6\x36\x37\x9a\x00\x7a\x63\xcb\x36\x4e\x9b\x33\x9f\xfc\x9a\ -\xda\x50\x87\xe2\xb7\x75\xe5\x15\x8c\xfc\x6d\x4e\xd0\x13\x18\xb7\ -\xc6\xe2\xbf\x83\x5d\xd6\xb2\x85\x4e\xf3\x31\x40\x53\xbf\x6f\x26\ -\x84\x10\x61\xc4\x6a\x09\xc0\xa5\xaa\x0d\x47\x64\x67\xd1\x29\x39\ -\x74\xf3\xd2\x3a\x1e\x5d\xbb\x9e\x3b\x96\xaf\xf2\xfb\x4d\xf6\x28\ -\x6a\x31\xf6\xb0\xaf\xc6\xd8\x39\xb1\x08\x58\x07\xec\x04\xf4\x26\ -\xce\x15\x54\xba\x3d\x5c\x30\x6f\x11\x9f\xec\xdc\x1d\xe8\x4b\x1f\ -\x96\xcb\xe7\xff\x54\xc9\xa8\x26\xd9\x34\x8e\x53\x1e\x25\x72\x00\ -\x17\xfa\x7d\x33\x21\x84\x08\x23\x56\x9a\x3c\x8f\x03\x4e\x53\x6d\ -\x7c\x85\xde\x9b\x5d\x48\xf8\x80\xdb\x96\xad\xe4\x9d\xad\xdb\x03\ -\x75\x49\x17\x30\x1f\xa3\x46\xc2\x5c\x8c\x07\xfd\x56\x0e\xff\xa0\ -\x8f\xc1\x18\x51\xe9\x04\x0c\x05\x8e\xc7\xd8\x5d\x51\xaf\xc4\xcf\ -\xe9\xf5\x72\xed\xe2\x65\x14\xbb\x5c\x5c\xdb\x5a\xf9\x98\x06\xbf\ -\xb9\xeb\x91\x38\x45\xd9\x6c\x9c\x9d\xdb\x94\x57\x36\x6d\x51\xed\ -\x72\x3e\xc6\x2e\x14\x21\x84\x88\x68\x56\xaa\x03\x70\x16\xf0\xa9\ -\x4a\xc3\xec\xd8\x58\x56\x9f\x74\x3c\xd1\x76\x2b\x85\xff\x57\xff\ -\x5e\xb9\x86\x97\xd4\x1f\x3c\x87\xe3\x03\x66\x02\xe3\x31\xbe\x3e\ -\x65\xf5\xbc\x5e\x0e\xc6\x5b\xee\x65\x40\x8f\xfa\x5c\xc8\x06\xbc\ -\x72\x4c\x0f\xc6\x35\x6f\x56\xcf\x90\x0e\xcf\xe5\xf5\x51\xe8\x74\ -\xd6\xeb\x1a\xbb\xaa\x6b\x18\xf9\xdb\x1c\xbc\xea\x89\x44\x3b\x60\ -\x53\xbd\x6e\x2a\x84\x10\x16\x67\xa5\x29\x00\xe5\x23\x7f\xc7\xb5\ -\xc8\xb5\xfc\xc3\xff\xd9\x0d\x9b\xea\xfb\xf0\xf7\x02\x9f\x00\x5d\ -\x81\xe3\x80\x77\xa9\xff\xc3\x1f\x20\x0f\x78\x06\xe8\x89\x31\x2a\ -\xf0\x35\x7e\x6e\x7d\xf3\x01\x37\x2e\x59\xc1\x57\x79\xf9\x01\x08\ -\xeb\xd0\xdc\xf5\x18\xfe\xaf\x93\x1b\x1f\xc7\xa0\x8c\x74\x9d\x2e\ -\xe7\xd4\xfb\xa6\x42\x08\x61\x71\x56\x49\x00\x62\x80\xd1\xaa\x8d\ -\xcf\xcd\xb5\xf6\x3a\xad\x8f\x77\xee\xe6\xa1\xd5\xeb\xea\x73\x89\ -\x2f\x31\xea\xd3\x9f\x07\xac\x09\x48\x50\x87\x36\x1b\x18\x0b\x0c\ -\x42\xa3\xf2\xe2\x81\x3c\x3e\x1f\xd7\x2c\x5a\xc6\x92\x12\x73\xea\ -\x19\x04\xaa\x24\xf2\x98\x1c\xad\x5a\x11\x67\x04\xe4\xa6\x42\x08\ -\x61\x61\x56\x49\x00\x86\x00\xc9\x2a\x0d\xdb\x27\x25\xd2\x4d\x6f\ -\x6b\x57\x50\xad\x2b\xaf\xe0\xe6\xa5\x2b\xfc\xad\x26\xb3\x13\x63\ -\x1d\xc4\xe9\xc0\xe6\x00\x86\x75\x34\xf3\x80\x01\xc0\x0d\x18\x65\ -\x71\xb5\x54\x7b\x3c\x5c\xbe\x70\x09\xa5\xae\x23\x1f\xd7\xeb\x0f\ -\x57\x3d\x76\x00\x1c\x68\x64\xe3\x46\x3a\x15\x0d\xfb\x01\x99\x01\ -\xb9\xb1\x10\x42\x58\x94\x55\x12\x80\x51\xaa\x0d\xcf\xb6\xf0\xdb\ -\x7f\x8d\xd7\xcb\x95\x8b\x96\x52\xe5\xf1\x6b\xf1\xfd\x2f\x40\x5f\ -\xe0\xab\xc0\x46\xa5\xcc\x0b\xbc\xba\x3f\x86\x65\xba\x9d\xb7\x56\ -\x56\x71\xe3\xd2\x15\x81\x0d\xc8\xe7\xab\xd7\x02\xc0\x03\xa5\x38\ -\x1c\x0c\xcd\xcc\x50\x6d\x1e\x85\x62\x31\x2a\x21\x84\x08\x57\x56\ -\x49\x00\x4e\x51\x6d\x38\x26\xa7\xb1\x99\x71\xd4\xcb\xdd\x2b\x56\ -\xb3\xb2\xd4\xaf\x69\xfa\x87\x31\x1e\x38\x7b\x02\x1b\x91\x5f\xd6\ -\x63\x4c\x09\x4c\xd6\xed\xf8\xe5\xee\xfc\x40\xee\x78\xc0\x19\xe0\ -\x6d\x93\x27\x36\xce\xd6\x69\xae\x9c\x94\x0a\x21\x44\x38\xb2\x42\ -\x02\x90\x0d\x74\x53\x69\x98\x13\x17\x67\xd9\xe1\xff\xc5\x25\xa5\ -\xbc\xb7\x6d\x87\x6e\x37\x1f\xc6\x31\xb4\x0f\x60\xad\x1a\xf4\xd5\ -\x18\x3b\x05\x9e\xd1\xed\x78\xff\xaa\xb5\x01\x2b\x76\xe4\x0a\x70\ -\xa9\xe4\x61\x59\x19\x3a\xdb\x5e\x4e\x08\xe8\xcd\x85\x10\xc2\x62\ -\xac\x90\x00\x0c\x41\x71\x3b\xe2\xc8\xec\x2c\x4b\xed\x5b\xac\xe3\ -\xf6\xf9\xb8\x69\xe9\x0a\x9d\x6d\x66\x60\x3c\xf0\xaf\xc6\x38\x8b\ -\xde\x8a\x7c\xc0\xed\x68\x26\x01\xe5\x6e\x37\x0f\xac\x5e\x1b\x90\ -\x00\x02\xb5\x00\xb0\x4e\xa3\xd8\x58\x3a\x25\x2b\x2d\x35\x01\xc8\ -\x05\xc2\xa7\xd4\xa4\x10\x42\x68\xb2\x42\x02\x30\x58\xb5\xe1\x09\ -\xd9\x8d\xcc\x8c\xc3\x6f\x6f\x6d\xd9\xc6\x0a\xfd\xa1\xff\xbb\x80\ -\x77\x4c\x08\x27\xd0\xfe\x09\x4c\xd4\xe9\x30\x79\xc7\x2e\x66\x17\ -\x16\xd5\xeb\xa6\x5e\x9f\x2f\x60\x0b\x00\x0f\x34\x2c\x4b\x6b\x6d\ -\xdf\x90\x80\x07\x20\x84\x10\x16\x61\x85\x04\x60\xa8\x6a\xc3\xc1\ -\x59\xca\x8b\xb8\x82\xa6\xda\xe3\xe1\xe9\xf5\xda\x35\x63\xde\x04\ -\x9e\x30\x21\x1c\x33\xf8\x80\xab\x80\x59\x3a\x1d\x1e\x5d\xb3\xbe\ -\x5e\x37\x0d\xf4\xfc\x7f\x9d\xfe\x19\x69\x3a\xcd\x25\x01\x10\x42\ -\x44\xac\x50\x27\x00\xd1\x40\x6f\x95\x86\xad\x13\x13\x2c\x79\xf2\ -\xdf\x84\x6d\x3b\xd8\x5b\xab\x35\xe7\xbd\x12\xb8\xc5\xa4\x70\xcc\ -\xe2\xc2\x58\x13\x50\xa0\xda\x61\x76\x61\x11\x73\xea\x31\x0a\xe0\ -\xf4\xe3\xf8\x5f\x15\xbd\xd2\x52\xb1\xdb\x94\x27\x92\x06\x9a\x12\ -\x84\x10\x42\x58\x40\xa8\x13\x80\x4e\x80\xd2\x53\x7d\x50\x86\xf5\ -\xde\xfe\x9d\x5e\x2f\x2f\x6c\xd4\xaa\xf6\x57\x8b\x51\xf1\xb0\xca\ -\x9c\x88\x4c\xb5\x13\x63\xcd\x82\xb2\x27\xd7\x6f\xf4\xfb\x66\xb5\ -\x01\x9e\xff\xaf\x93\xec\x70\xd0\x21\x29\x51\xb5\x79\x67\x8c\x24\ -\x55\x08\x21\x22\x4e\xa8\x13\x80\xee\xaa\x0d\xfb\xa6\x6b\x0d\xdd\ -\x06\xc5\x97\xbb\xf3\xd9\x59\x5d\xad\xd3\xe5\x09\x20\x30\x2b\xe4\ -\x42\xe3\x8b\xfd\x1f\x4a\xa6\xed\x2d\x60\x4d\x79\x85\xf6\x4d\x5c\ -\x5e\x9f\x59\x27\x27\x02\xc6\x28\x80\xa2\x58\xa0\x83\x69\x81\x08\ -\x21\x44\x08\x85\x3a\x01\x50\x3e\x8c\xa6\x7b\xaa\xf2\xea\xed\xa0\ -\xf9\x68\xc7\x2e\x9d\xe6\x5b\x80\xff\x9a\x14\x4a\x30\xdd\x82\xb1\ -\x4d\x50\xc9\xa4\x1d\x3b\xb5\x6f\x10\xe8\xd5\xff\x07\xd3\x3c\x46\ -\x5a\x39\x49\x15\x42\x88\x70\x12\xea\x04\x40\x69\xff\xbf\x0d\xe8\ -\x92\x62\xad\x04\x60\x6f\x6d\x2d\xbf\xee\x53\x9e\x12\x07\xf8\x0f\ -\x1a\x0f\x4e\x0b\xdb\x8a\xb1\x88\x51\xc9\xe4\x1d\xbb\xb5\xdf\xe6\ -\x6b\xbd\x7e\x55\x52\x54\xd6\x51\x2f\x01\x50\xfa\x1e\x15\x42\x88\ -\x70\x13\xea\x04\xa0\x8d\x4a\xa3\x56\x89\x09\x24\x39\x1c\x66\xc7\ -\xa2\x65\xf2\x8e\xdd\x3a\x65\x6a\x77\x00\xef\x9b\x18\x4e\xb0\x3d\ -\x09\x28\x9d\xd1\x9b\x57\x53\xc3\x6f\x05\x85\xca\x17\xf6\xfa\x7c\ -\x38\x4d\xd8\xfe\x77\xa0\x0e\x49\x49\x3a\xf5\x24\x94\xbe\x47\x85\ -\x10\x22\xdc\x84\x32\x01\xb0\x01\x2d\x55\x1a\xb6\x57\x5f\xb4\x15\ -\x34\x3f\xee\xd9\xab\xd3\xfc\x05\x14\x1f\x98\x61\x62\x27\x30\x49\ -\xb5\xf1\x8f\x7b\xf6\x29\x5f\xd8\xac\xc5\x7f\x07\x4a\x72\x38\xc8\ -\x8e\x53\xde\x51\x22\xc5\x80\x84\x10\x11\x29\x94\x09\x40\x36\x90\ -\xa0\xd2\xb0\x65\x82\x52\xb3\xa0\xa9\xf1\x7a\x59\x50\x5c\xa2\xda\ -\xdc\x03\x7c\x60\x62\x38\xa1\x32\x41\xb5\xe1\x4c\x8d\x11\x80\x6a\ -\xff\x0e\x52\xd2\x96\x1b\x17\xa7\xda\x54\x12\x00\x21\x44\x44\x0a\ -\x65\x02\xd0\x4a\xb5\x61\x8b\x84\x78\x13\xc3\xd0\xb7\xa0\xa8\x58\ -\xe7\x41\xf5\x23\x90\x67\x62\x38\xa1\x32\x1d\x63\x24\xe0\xa8\x56\ -\x96\x96\x51\xe8\x3c\xfa\x00\x48\x30\x86\xff\xeb\x34\x53\xff\x9e\ -\x52\x4e\x54\x85\x10\x22\x9c\x84\x32\x01\x50\x3e\xd6\xcf\x6a\x23\ -\x00\xb3\x0a\xb4\x0a\xdc\x84\xea\x78\x5f\xb3\x79\x81\xaf\x55\x1a\ -\xfa\x40\xa9\x34\x70\x30\x86\xff\xeb\x34\x8b\x57\x4e\x00\x6c\x18\ -\x49\x80\x10\x42\x44\x94\x50\x26\x00\x59\xaa\x0d\x1b\xab\xcf\xd7\ -\x06\xc5\x9a\xf2\x72\x9d\xe6\xd3\xcc\x8a\xc3\x02\xa6\xab\x36\x5c\ -\xa7\x50\x0f\x20\x58\xc3\xff\x00\x59\x31\x31\x3a\xcd\xb5\x0e\x10\ -\x10\x42\x88\x70\x10\x16\x09\x40\xa6\xde\x0f\x6b\xd3\x6d\xac\xa8\ -\x54\x6d\x9a\x0f\xac\x33\x31\x94\x50\x53\x4e\x00\xd6\x1f\x25\x01\ -\xf0\x04\x71\xf8\x1f\x20\x3d\x46\xab\xc0\x9f\xf2\xf7\xaa\x10\x42\ -\x84\x8b\x50\x26\x00\xca\x6f\x55\x19\x7a\x3f\xac\x4d\xe5\xf5\xf9\ -\xd8\x5c\xa9\x5c\xc9\x77\x85\x99\xb1\x58\xc0\x3e\x60\x8f\x4a\xc3\ -\xa3\x25\x4d\xc1\x7c\xfb\x07\x48\x8b\xd6\xfa\x9e\x92\x11\x00\x21\ -\x44\xc4\x09\x65\x02\xa0\x54\xd9\xc7\x86\xf6\x0f\x6b\x53\xe5\xd7\ -\xd4\xea\x3c\xac\x22\xf9\xed\xbf\x8e\x52\x69\xe3\x2d\x55\x47\x4e\ -\x9a\xaa\x4d\x3a\xfc\xe7\x70\x34\xbf\xa7\x52\xcc\x8a\x43\x08\x21\ -\x42\x25\x94\x09\x80\xd2\xc4\x7e\x8c\xdd\x4e\x94\xfa\xe9\x6d\xa6\ -\x2b\x75\xbb\x75\x9a\xfb\x7f\x1a\x4e\xf8\x50\xfa\x1c\xcb\x5c\x6e\ -\x0e\x37\xc0\xef\xf4\x7a\x4d\xad\xfd\x7f\x28\x71\x51\x5a\xdf\xfa\ -\xd6\x5a\x84\x22\x84\x10\x01\x10\xca\x04\x40\x69\x62\x3f\xda\x1e\ -\xea\x62\x85\x7f\x56\xa1\x97\x00\x28\x17\x0b\x08\x63\x4a\x9f\xa3\ -\xc7\xe7\xa3\xe6\x30\x23\x27\xc1\x1e\xfe\x07\xed\xef\x2b\x6b\x2d\ -\x42\x11\x42\x88\x00\xb0\x7c\x02\x10\x13\xde\x09\x80\xd6\x76\x81\ -\x30\xa5\xfc\x39\x96\x1f\xe2\x6b\xe7\xf5\xf9\xa8\x09\xe2\xf6\xbf\ -\x3a\x31\x36\x19\x01\x10\x42\x34\x6c\xa1\x7c\xba\x2a\x15\xf7\x77\ -\x58\x68\xf8\x1f\xa0\x46\x6f\xae\xba\xc6\xac\x38\x2c\x44\x79\x45\ -\x64\x95\xfb\xaf\x6f\xfa\x35\x5e\x2f\x41\x1e\xfd\x07\x20\xca\xae\ -\xf5\x7d\x65\x9d\x45\x28\x42\x08\x11\x20\xa1\x4c\x00\x94\xf6\xd2\ -\x55\x85\x60\x78\xf8\x48\xe2\xf5\xe6\x8e\xad\x55\xc2\xd0\x1c\xca\ -\x07\x35\x24\x1e\xe2\x40\xa7\xca\x43\x24\x05\xc1\x50\xa9\x37\x92\ -\xa3\xbc\xef\x53\x08\x21\xc2\x45\x28\x13\x80\x52\x95\x46\x55\x1e\ -\xcf\x61\x17\x8f\x85\x82\xe6\xa9\x84\xd6\x3a\xc3\xd8\x1c\xca\x9f\ -\x63\x92\x23\xea\x4f\xff\x5d\x13\x82\xc5\x7f\x75\x4a\x5d\x5a\x09\ -\x40\x99\x59\x71\x08\x21\x44\xa8\x84\x32\x01\x50\xfa\xa1\xea\xf5\ -\xf9\x42\xb2\x48\xec\x70\x34\x13\x80\x0c\xb3\xe2\xb0\x10\xa5\xcf\ -\xd1\x61\xb3\x11\x1f\xf5\xe7\x04\xa0\x3a\x44\x6f\xff\x00\x65\x2e\ -\x97\x4e\xf3\x86\xb0\x96\x43\x08\xd1\xc0\x58\x3e\x01\x00\xd8\x53\ -\x53\x6b\x66\x1c\x5a\x52\xa3\xb5\x12\x80\xf6\x66\xc5\x61\x21\x4a\ -\x9f\x63\xea\x41\xfb\xee\xdd\x3e\x5f\x50\x6b\xff\x1f\xac\x4c\x6f\ -\x0a\x40\x46\x00\x84\x10\x11\x27\x94\x09\x80\xf2\x19\xb1\x9b\x2b\ -\xad\x33\x05\xdb\x24\x2e\x8e\xc4\x83\x86\xb2\x8f\xa0\xa3\x99\xb1\ -\x58\x44\x27\x95\x46\x6d\x93\xfe\xbc\x54\x40\x73\x0e\x3e\xe0\xf6\ -\xd6\x6a\x25\x95\xbb\xcd\x8a\x43\x08\x21\x42\x25\x94\x09\xc0\x7a\ -\xd5\x86\x5b\x2b\xab\xcd\x8c\x43\x8b\x0d\x68\x97\x98\xa4\xda\xbc\ -\x07\xa1\xfd\x1a\x9b\xad\x19\x8a\x65\x72\xdb\x25\xfe\x91\x00\x78\ -\x42\xb4\xf5\xef\x40\x2a\x87\x13\x1d\xa0\x21\x14\x74\x12\x42\x34\ -\x30\xa1\x7c\x38\xad\x51\x6d\xb8\xc9\x42\x23\x00\x00\xed\x92\x94\ -\x17\xbe\x67\x02\xdd\x4d\x0c\x25\xd4\x8e\x57\x6d\xd8\x21\xf9\x8f\ -\xaf\x59\x95\xc7\x13\x92\xad\x7f\x07\xda\xa0\x7e\xa0\xd3\x1e\x14\ -\x17\xac\x0a\x21\x44\x38\x09\x65\x02\xb0\x0f\xc5\x69\x80\xa5\x25\ -\xd6\xfa\xf9\xdb\x35\x45\x6b\x71\xbf\xf2\x43\x32\x0c\x8d\x50\x6d\ -\xd8\x39\xd9\xf8\x9a\xf9\x08\xfd\xd6\x4e\x8f\xcf\xa7\x73\xa2\xa3\ -\xf2\x48\x95\x10\x42\x84\x93\x50\x0f\x4f\x2b\x8d\x02\x2c\x29\x29\ -\x0d\xd9\x76\xb1\x43\x19\x9a\xa5\xb5\xb8\xff\x0c\xb3\xe2\x08\xb1\ -\x68\x60\x8c\x4a\xc3\x28\x9b\x8d\x41\x99\xe9\x80\x51\x0c\x28\xd4\ -\x7f\x95\x3b\xab\xab\x75\x76\x96\x48\x02\x20\x84\x88\x48\xa1\x4e\ -\x00\x56\xab\x34\xaa\xf2\x78\x58\xab\x37\x67\x6b\xaa\x3e\xe9\x69\ -\x24\xab\x6f\x07\x1c\x06\xb4\x31\x31\x9c\x50\x39\x15\xc8\x52\x69\ -\xd8\x3b\x2d\x95\xd4\xe8\x68\xbc\x3e\x1f\x95\x9e\xd0\x2e\xfe\x03\ -\x58\x56\xa2\xb5\xa8\x7f\xbe\x59\x71\x08\x21\x44\x28\x85\x3a\x01\ -\x98\xad\xda\x70\x5e\x51\xb1\x99\x71\x68\x71\x1c\xf0\x46\xab\xc0\ -\x06\x5c\x66\x62\x38\xa1\xa2\xfc\x39\x0d\xcb\x32\xd6\x09\x56\x79\ -\x3c\x78\x2d\x30\x90\x33\xbb\xb0\x48\xa7\xf9\x1c\xb3\xe2\x10\x42\ -\x88\x50\x0a\x75\x02\x30\x53\xb5\xe1\xb4\xbd\x05\x66\xc6\xa1\x6d\ -\x54\x93\xc6\x3a\xcd\x6f\x40\xa3\x64\x6e\x18\xe8\x04\x9c\xae\xda\ -\x78\x54\x93\xec\xfd\x6f\xff\xa1\x2f\xe8\xe4\x43\x2b\x01\x28\x41\ -\x71\x94\x4a\x08\x21\xc2\x4d\xa8\x13\x80\xad\xc0\x36\x95\x86\xbf\ -\xee\x2b\xc0\x65\x85\xd7\xc7\xfd\xce\xca\xcd\x21\x56\xfd\xa4\xc2\ -\x2c\xe0\x6f\x26\x86\x13\x6c\x77\xa3\xf8\xbd\xd3\x3a\x31\x81\xfe\ -\x19\xe9\x54\x5a\x60\xe5\x3f\xc0\x86\xf2\x0a\xf6\xa9\xd7\x00\xf8\ -\x1d\x08\xed\x7e\x45\x21\x84\x30\x49\xa8\x13\x00\x50\x1c\x05\x28\ -\x77\xbb\x2d\x35\x0d\x90\x16\x1d\xcd\xc9\x4d\xb2\x75\xba\xdc\x09\ -\x28\xcf\x1b\x58\x58\x0f\x60\x9c\x6a\xe3\x0b\x9a\xe7\xe2\xf5\xf9\ -\x42\xbe\xf2\xbf\xce\x9c\x22\xad\xe1\x7f\xe5\x29\x2a\x21\x84\x08\ -\x37\x56\x48\x00\x66\xa8\x36\xfc\x71\xcf\x5e\x33\xe3\xd0\x36\xae\ -\x79\x33\x9d\xe6\xd9\xc0\x63\x26\x85\x12\x2c\x36\xe0\x15\x14\x8f\ -\x72\xb6\xdb\x6c\x5c\xd0\x2c\x97\x0a\xb7\xdb\x12\x6f\xff\x00\xbf\ -\xee\x53\x2e\x40\x09\xf0\xad\x59\x71\x08\x21\x44\xa8\x59\x21\x01\ -\xf8\x1e\xd4\x0e\xfc\x9b\xb2\x6b\xb7\xa5\x4e\x06\x3c\xb9\x71\x23\ -\x3a\x26\x2b\x57\x05\x04\xb8\x16\x18\x6c\x52\x38\xc1\x70\x0d\x30\ -\x44\xb5\xf1\xd8\x9c\xc6\xe4\xc6\xc7\x53\xed\xb1\xc6\x28\xfa\xbe\ -\xda\x5a\xe6\xab\x8f\x22\xed\x06\x96\x9a\x18\x8e\x10\x42\x84\x94\ -\x15\x12\x80\x5d\xc0\x3c\xa5\x86\xd5\x35\x2c\x2c\x2e\x31\x39\x1c\ -\x75\x76\x9b\x8d\x5b\xdb\xb7\xd5\xea\x02\x4c\x42\x71\xfb\x9c\xc5\ -\x74\x05\x9e\xd5\xe9\x70\x5b\xfb\xb6\x54\x84\xb8\xe6\xff\x81\xbe\ -\xcd\xdf\xab\x53\x4f\xe2\x4b\x14\x13\x53\x21\x84\x08\x47\x56\x48\ -\x00\x00\xa6\xaa\x36\xfc\x6c\x97\xb5\xce\x65\x39\xb7\x59\x53\x5a\ -\x25\x26\xe8\x74\x69\x0e\xbc\x8b\x75\xbe\xf6\x2a\x52\x80\x4f\x00\ -\xe5\x4f\x74\x54\x93\x6c\x3a\xa5\x24\x87\xf4\xc4\xbf\x83\x7d\x9d\ -\x97\xaf\xd3\xfc\x1b\xb3\xe2\x10\x42\x08\x2b\xb0\xca\x43\xe8\x33\ -\xd5\x86\x53\x77\xe5\xe3\xb6\xca\x84\x32\x46\x4d\x80\x7f\x77\xea\ -\xa0\xdb\x6d\x0c\xf0\x92\x09\xe1\x98\x21\x16\xe3\xef\xa7\xb3\x6a\ -\x87\xba\xaf\x49\x85\xcb\x3a\x6f\xff\xdb\xab\xaa\x59\x51\xaa\x5c\ -\x00\xa8\x02\x98\x66\x62\x38\x42\x08\x11\x72\x56\x49\x00\x36\x02\ -\xcb\x55\x1a\xe6\xd5\xd4\x58\x6e\x31\xe0\xb9\xcd\x9a\xfe\xaf\xd8\ -\x8d\x86\xeb\x81\x87\x4c\x08\x27\x90\x1c\xc0\x44\xe0\x04\x9d\x4e\ -\xd7\xb4\x6e\x49\xeb\xc4\x04\x4b\x25\x6a\x5f\xe7\xe5\xeb\x8c\xe7\ -\x4f\x05\xaa\x4c\x0b\x46\x08\x21\x2c\xc0\x2a\x09\x00\xc0\x14\xd5\ -\x86\x13\xb6\xed\x30\x33\x0e\x6d\x36\xe0\xb9\x9e\xdd\x74\xea\x02\ -\xd4\xb9\x1f\x78\x1e\x6b\xfd\x3d\xd4\x89\xc5\x58\xaf\x70\xae\x4e\ -\xa7\xc6\xb1\xb1\xdc\xd9\xb1\xbd\x25\x8a\xfe\xd4\xf1\xf8\x7c\x7c\ -\xb2\x53\x6b\xea\xe8\x7d\xb3\x62\x11\x42\x08\xab\xb0\xd2\x83\xe7\ -\x5d\x40\xe9\xa9\xf1\xe3\x9e\x7d\xec\xaa\xae\x31\x39\x1c\x3d\xed\ -\x92\x12\xb9\x45\x6f\x41\x60\x9d\x9b\x80\x09\x40\x7c\x60\x23\xaa\ -\x97\x26\x18\x43\xe0\x67\xeb\x76\x7c\xaa\x67\x57\x00\xcb\x6c\xfb\ -\x03\xa3\x8a\xe4\xee\x1a\xe5\xef\x97\x3c\xe0\x17\x13\xc3\x11\x42\ -\x08\x4b\xb0\x52\x02\xb0\x13\xf8\x59\xa5\xa1\xc7\xe7\x63\xe2\x76\ -\x6b\x8d\x02\x00\xdc\xd5\xb1\x1d\xc3\x1b\x69\x4f\x05\x00\x5c\x04\ -\x2c\x02\xba\x05\x36\x22\xbf\x1c\x07\x2c\xc6\x8f\xed\x8a\xd7\xb6\ -\x6e\xc9\x49\x8d\xb3\x2d\xb5\xf0\x0f\xe0\xc3\x1d\x3b\x75\x9a\x7f\ -\x84\x62\x22\x2a\x84\x10\xe1\xcc\x4a\x09\x00\xc0\x3b\xca\x0d\xb7\ -\x6c\xb7\xdc\x83\xc6\x6e\xb3\xf1\xfa\x31\x3d\x69\x14\x1b\xe3\x4f\ -\xf7\xce\xc0\x5c\xe0\x76\x14\x0b\xed\x04\x58\x0a\xc6\x36\xbf\x9f\ -\x81\x1c\xdd\xce\x3d\x53\x53\x79\xa4\x5b\x67\xca\x2d\xb4\xf0\x0f\ -\x60\x4b\x65\x15\xbf\xeb\x1d\xfe\x33\xc1\xac\x58\x84\x10\xc2\x4a\ -\xac\x96\x00\x7c\x0e\xec\x53\x69\xb8\xa7\xb6\x96\x29\x7a\xf3\xba\ -\x41\x91\x13\x17\xc7\xdb\x7d\x7a\x13\xa3\xbf\x1e\x00\x8c\x03\x83\ -\x9e\xc2\x78\x03\x1f\x19\xd0\xc0\x0e\x2f\x0a\xb8\x04\x58\x03\xdc\ -\xb2\xff\xbf\xb5\x64\xc5\xc6\x30\xbe\x5f\x6f\x6a\x3d\x1e\x9d\x7d\ -\xf6\x41\xf1\xc1\xf6\x9d\x3a\x8b\xff\xe6\x00\xcb\x4c\x0b\x46\x08\ -\x21\x2c\xc4\x6a\x09\x80\x13\xf8\x40\xb5\xf1\x2b\x9b\xb7\x9a\x17\ -\x49\x3d\x0c\x6f\x94\xc9\xab\xbd\x7b\x60\xb7\xd9\xfc\xbd\x44\x77\ -\xe0\x27\x8c\xc3\x68\xc6\x60\xce\xdf\x53\x2c\x70\x05\xc6\x83\x7f\ -\x02\xd0\xd4\x9f\x8b\x24\x3a\xa2\xf8\x64\x60\x3f\x9a\xc6\xc7\x59\ -\xa6\xe2\x5f\x9d\x32\xb7\x9b\xa9\xbb\xf3\x74\xba\xbc\x6a\x56\x2c\ -\x42\x08\x61\x35\x56\x4b\x00\x00\xde\x40\xb1\x02\xdb\xca\xd2\x32\ -\x66\xe8\xd5\x76\x0f\x9a\x73\x9a\x35\xe5\xbf\xdd\x94\xb7\xce\x1f\ -\xce\x40\xe0\x2b\x8c\x13\x13\x1f\x07\x7a\x62\x6c\x3a\xf0\x97\x03\ -\x38\x16\x78\x1d\x63\xb1\xdb\x3b\x40\x7b\x7f\x2f\x16\x63\xb7\xf3\ -\x7e\xbf\x3e\xf4\x4e\x4b\xa5\xcc\x62\x43\xff\x00\xef\x6f\xdb\xa1\ -\x53\x89\x70\x1f\x46\xb1\x23\x21\x84\x68\x10\xea\xf3\x30\x31\xd3\ -\x37\xc0\xa9\x2a\x0d\x8f\x6b\x94\xc5\x17\x83\xfb\x9b\x1c\x8e\xff\ -\x9e\xdf\xb8\x99\x07\x56\xad\x0d\x64\x4d\xd9\xbd\xc0\x74\x8c\xf5\ -\x02\x6b\x81\xf5\x18\x75\xeb\x0f\x5e\xe6\x9e\x88\x51\x75\xb0\xd3\ -\xfe\x8f\xa1\x18\x0f\xff\xe4\x40\x04\x11\x67\xb7\xf3\x76\xdf\xde\ -\x8c\xc9\x69\x4c\x99\xcb\x6d\x99\xd3\xfe\xea\x54\x7b\x3c\x1c\x3f\ -\x73\x0e\x45\x4e\xa7\x6a\x97\xc7\x80\x7f\x9b\x18\x92\x10\x42\x58\ -\x8a\x55\x13\x80\x91\x18\x43\xe0\x4a\x7e\x1a\x36\x88\xfe\x19\xd6\ -\x3d\x69\xf7\xc3\x1d\x3b\xf9\xc7\x92\x15\x66\x17\xc6\x71\x03\xe5\ -\xfb\x7f\x9f\x86\x89\x7f\xb7\xa9\xd1\xd1\x4c\x1a\xd0\x87\xc1\x99\ -\x19\xd4\x78\xbd\x94\x38\x5d\x66\xdd\xca\x6f\xe3\xb7\xed\xe0\xb1\ -\xb5\xeb\x55\x9b\x7b\x80\xb6\x18\x23\x2d\x42\x08\xd1\x20\x58\x71\ -\x0a\x00\x8c\x95\xe8\xca\x27\xb1\x3d\xb5\x7e\x93\x89\xa1\xd4\xdf\ -\xb8\xe6\xcd\xf8\x70\x40\x1f\x92\x1c\xa6\x2e\xee\x77\x00\xe9\xfb\ -\x3f\x4c\x7b\xf8\xe7\xc6\xc7\xf1\xdd\xd0\x81\x0c\xce\xcc\xc0\xe3\ -\xf3\x51\xe6\xb2\xde\xc3\xdf\xed\xf3\xf1\xde\xd6\xed\x3a\x5d\x3e\ -\x46\x1e\xfe\x42\x88\x06\xc6\xaa\x09\x00\x18\x15\xf2\x94\xfc\xb8\ -\x67\x2f\xcb\x4a\x4b\xcd\x8c\xa5\xde\x4e\x6e\x9c\xcd\x8c\xe1\x43\ -\xe8\x9e\x9a\x12\xea\x50\xfc\x76\x5c\xa3\x2c\x7e\x1d\x3e\x84\xae\ -\x29\xc6\x2c\x42\x99\xcb\x8d\xd7\x5a\x8b\xfe\x01\x98\xba\x2b\x4f\ -\xa7\xf0\x8f\x0f\x78\xc2\xc4\x70\x84\x10\xc2\x92\xac\x9c\x00\x7c\ -\x04\x28\x1d\xdf\xe6\x03\xfe\xb3\x46\x79\xb8\x37\x64\xda\x25\x25\ -\xf2\xd3\xb0\x41\x5c\xde\xaa\x45\xa8\x43\xd1\xe2\xb0\xd9\x78\xa8\ -\x4b\x27\x3e\x1f\xdc\x9f\xec\xd8\x58\x00\x2a\xdd\x1e\xcb\xd5\x61\ -\x00\x70\x7a\xbd\xbc\xb2\x79\x8b\x4e\x97\x1f\xd1\x18\x6d\x12\x42\ -\x88\x48\xa1\xbd\xe7\x3b\x88\x3c\x18\x09\xca\x89\x2a\x8d\x37\x55\ -\x56\x31\x24\x2b\x83\x96\x09\x5a\x47\xf3\x06\x5d\xb4\xdd\xce\xa8\ -\x26\xd9\x0c\xcd\xca\x60\x51\x49\x29\x85\xea\x8b\xd4\x42\xa2\x77\ -\x5a\x2a\x1f\x0e\xe8\xc3\x99\xb9\x39\xff\x9b\x57\x70\x7a\xbd\x94\ -\x5a\x70\xd5\x3f\xc0\xfb\xdb\x77\xf2\x6d\xfe\x1e\x9d\x2e\xd7\x00\ -\x5b\xcd\x89\x46\x08\x21\xac\xcb\xaa\x8b\x00\xeb\x24\x02\x9b\x81\ -\x6c\x95\xc6\xc7\xa4\xa5\x32\x6d\xf8\x10\xcb\x7f\x52\x75\x6a\xbd\ -\x5e\x9e\xdb\xb0\x89\x67\x37\x6c\xa6\xda\x62\xab\xe8\x1b\xc5\xc6\ -\xf0\x50\x97\x4e\x8c\x6b\xd1\xec\x4f\x5f\x4f\xaf\xcf\x47\xa1\xd3\ -\x65\xb9\x82\x3f\x00\x55\x1e\x0f\x27\xce\x9c\x43\x81\x7a\x52\xb5\ -\x00\xb0\xee\x16\x12\x21\x84\x30\x91\x95\x47\x00\x00\x5c\x18\x31\ -\x2a\x55\xc5\xcb\xab\xa9\xa5\x73\x4a\x12\x9d\x92\x03\xb2\xd3\xcd\ -\x74\x0e\x9b\x8d\xa1\x59\x99\x5c\xd6\xb2\x05\x09\x51\x51\x2c\x2f\ -\x2b\x0b\xf9\xb0\x7a\x56\x6c\x0c\x37\xb5\x6b\xc3\xdb\x7d\x7a\xd3\ -\x2f\x23\xed\x2f\xc9\x54\x89\xcb\x8d\xcb\x82\x0f\x7f\x80\x37\xb6\ -\x6c\x63\xfa\xbe\x02\x9d\x2e\x7f\x03\x36\x98\x14\x8e\x10\x42\x58\ -\x5a\x38\xbc\x2c\x27\x02\x5b\x80\x46\x2a\x8d\x5b\x25\x26\xb0\xe0\ -\xf8\x63\xfd\x2d\xc5\x1b\x52\x85\x4e\x27\xaf\x6d\xde\xca\xfb\xdb\ -\x77\xb2\x3b\xc8\xa7\x1d\x76\x4a\x4e\xe2\xca\x56\x2d\xb8\xb4\x65\ -\x73\xe2\xa3\x0e\x9d\x17\x56\xb8\xdd\x54\xb8\xad\x35\x52\x51\xa7\ -\xd8\xe9\x62\xe4\x6f\x73\x74\x0a\xff\x2c\xc4\x78\xfb\xb7\x66\x36\ -\x23\x84\x10\x26\xb3\xfa\x08\x00\x18\xa3\x00\x0e\xe0\x04\x95\xc6\ -\x25\x2e\x17\x4d\xe2\x62\x39\x26\x3d\xcd\xdc\xa8\x4c\x90\x10\x15\ -\xc5\xb1\x59\x99\xdc\xd0\xa6\x15\x83\x33\x33\x00\xd8\x5a\x55\x8d\ -\xd3\xa4\x51\x81\xec\xd8\x58\x2e\x69\xd9\x9c\xa7\x7b\x74\xe5\xbe\ -\xce\x1d\xe9\x9b\x9e\x46\xf4\x61\x12\xa7\x1a\xaf\xd7\x92\xd5\xfe\ -\xea\x3c\xbf\x71\x33\xf3\x8b\x8a\x75\xba\x5c\x09\x6c\x34\x29\x1c\ -\x21\x84\xb0\xbc\x70\x18\x01\x00\xa3\x7a\xdd\x16\x40\xe9\xac\xdd\ -\xec\xd8\x58\x96\x8e\x3c\x8e\x44\x47\x38\xe4\x37\x47\xe6\xf2\xfa\ -\x58\x54\x52\xc2\x8c\x7d\x05\xcc\x2c\x28\x64\x49\x49\x29\x95\x7e\ -\xbe\x85\xa7\xc7\x44\x33\x20\x23\x9d\x63\xb3\x32\x19\x9e\x95\x49\ -\xd7\xd4\x14\xa5\x6f\x00\x97\xd7\x47\x91\xcb\x89\x45\x47\xfe\xd9\ -\x56\x55\xcd\xe8\xd9\x73\x71\xa9\x27\x4a\xb3\x80\x61\x26\x86\x24\ -\x84\x10\x96\x17\x2e\x09\x00\xc0\x6d\xc0\xd3\xaa\x8d\xef\xea\xd8\ -\x9e\xbb\x3b\xf9\x5d\xe6\xde\xd2\x76\x55\xd7\xb0\xb1\xa2\x92\x8d\ -\x15\x95\xe4\xd7\xd6\x50\xe9\xf6\x50\xe1\x76\x53\xea\x72\x63\xb7\ -\x41\x4a\x74\x34\x29\x0e\x07\x89\x8e\x28\x9a\xc6\xc5\xd1\x3e\x29\ -\x89\xf6\x49\x89\x64\xf9\x71\x4c\xb1\x95\x17\xfd\xd5\xb9\x61\xc9\ -\x72\x7e\xd9\xab\x74\x88\x64\x9d\xe3\x31\xca\x29\xd7\x89\xc5\x48\ -\x2e\x33\x81\x2c\x8c\xe9\xa6\x34\x8c\x11\xb2\xba\xc2\x0d\x75\xd5\ -\x15\x93\x80\xe8\xfd\x7d\x12\x30\x76\xab\x94\x1d\x74\xfd\x52\x8c\ -\x91\xab\xb2\xfd\x1f\x95\x40\x15\x50\xb2\xff\x63\x2f\x50\xb0\xff\ -\xff\x09\x21\x44\x48\x84\x53\x02\x10\x8b\x51\xfb\xbe\x95\x4a\xe3\ -\x44\x47\x14\x4b\x46\x1e\x47\xe3\xfd\xfb\xd6\x85\x3e\x1f\x50\xec\ -\x74\xe2\xb4\x62\xb5\x9f\xfd\xe6\x14\x16\x71\xc5\xc2\x25\x3a\x5d\ -\x6a\x81\x5f\xf8\xe3\x41\x9f\x45\x80\xce\x47\xf0\x43\x15\x46\x22\ -\xb0\x0f\xe3\x70\xa6\x1d\xc0\xce\xfd\xbf\x6e\xdb\xff\xfb\x9d\x18\ -\xa7\x64\x0a\x21\x44\x40\x85\x53\x02\x00\x70\x31\x30\x51\xb5\xf1\ -\xf9\xcd\x72\x79\xa3\x4f\x4f\x13\xc3\x89\x6c\xa5\x2e\x97\xe5\x8e\ -\xf8\x3d\x90\xc7\xe7\xe3\x8c\xdf\xe7\xb3\xbe\xbc\x22\xd4\xa1\x98\ -\xc9\x83\x91\x0c\x6c\xc0\x58\xb3\xb0\x7e\xff\xef\xd7\x61\x4c\x8b\ -\x59\x37\x3b\x13\x42\x58\x5a\xb8\x25\x00\x76\x8c\xd5\xdb\xbd\x55\ -\x1a\xdb\x80\xaf\x87\x0c\x64\x68\x56\x86\xa9\x41\x45\x22\x2b\xaf\ -\xf8\xaf\xf3\xd1\x8e\x9d\x3c\xb8\x7a\x5d\xa8\xc3\x08\xa5\x72\x60\ -\x15\xb0\x7c\xff\xc7\x8a\xfd\xbf\x96\x84\x32\x28\x21\x44\x78\x08\ -\xb7\x04\x00\xe0\x24\xe0\x07\xd5\xc6\x9d\x93\x93\xf8\xed\xb8\x61\ -\x44\xdb\xc3\xf1\x53\x0d\x8d\x6a\x8f\xc7\xb2\x95\xfe\xea\x94\xb9\ -\xdc\x9c\x34\x6b\x0e\xc5\x16\x3c\x89\x30\xc4\x7c\x18\xa3\x04\x0b\ -\xf6\x7f\xcc\xc7\x28\x75\x1c\xdc\x7d\xa5\x42\x08\xcb\x0b\xc7\x65\ -\xf2\x9b\x80\xc1\x18\xc7\xb7\x1e\x55\x81\xd3\x49\x52\xb4\x83\x81\ -\x16\x3e\x2e\xd8\x4a\x6a\x2c\x5c\xe6\xf7\x40\x8f\xaf\xdf\xc0\x82\ -\x22\x79\xd1\x3d\x04\x1b\xc6\xba\x86\x1e\xc0\x28\xe0\x6a\xe0\x4e\ -\x60\x0c\xd0\x09\x63\x2d\xcd\x3e\x24\x21\x10\xa2\xc1\x0b\xd7\xd7\ -\xe2\xae\x18\x6f\x35\x4a\xe7\xeb\x26\x3a\xa2\x58\x70\xfc\x70\x72\ -\xe3\xe3\xcc\x8d\x2a\xcc\x39\xbd\x5e\x8a\x5d\x2e\xcb\x6e\xf7\xab\ -\xb3\xac\xb4\x8c\x0b\xe6\x2d\xc4\x6b\xf5\x40\xad\xcb\x0b\xac\x04\ -\x66\x60\xec\x86\x98\x86\xb1\x73\x41\x08\xd1\x80\x84\xe3\x08\x00\ -\x18\x6f\x30\x59\xc0\x00\x95\xc6\x2e\xaf\x8f\x9d\xd5\xd5\x9c\x99\ -\x9b\x63\x6e\x54\x61\xcc\xe5\xf5\x51\x12\x06\x0f\x7f\x8f\xcf\xc7\ -\x0d\x4b\x96\xb3\xb7\xb6\x36\xd4\xa1\x84\x33\x1b\xd0\x18\xe3\xdf\ -\xcf\xf9\xc0\x1d\xc0\x69\x40\x9b\xfd\x7f\xbe\x03\x23\x49\x10\x42\ -\x44\xb0\x70\x1d\x01\x00\x48\xc7\x58\x09\xad\x54\x22\x18\xe0\xb3\ -\x41\xfd\x38\x21\x5b\xb9\x79\x83\xe1\xf2\xfa\x28\x76\x39\xb1\xf0\ -\x6e\xbf\xc8\x62\x9a\xb5\x00\x00\x20\x00\x49\x44\x41\x54\xff\x79\ -\x67\xeb\x76\xfe\x6f\x9d\x94\xef\x37\x59\x11\xf0\x2d\xf0\x05\xc6\ -\x7a\x9b\xf2\xd0\x86\x23\x84\x30\x43\xb8\x8e\x00\x80\x31\x87\x59\ -\x0a\x8c\x55\xed\xb0\xb0\xb8\x94\xcb\x5a\xb5\xc0\x61\x0b\xe7\xbc\ -\x27\xb0\xdc\xbe\xf0\x79\xf8\xef\xae\xae\xe1\xa6\x65\x2b\x70\x5b\ -\x7d\x98\x22\xfc\xc5\x63\xac\x21\x38\x0f\xa3\x00\xd7\x60\x8c\x02\ -\x48\xbb\x81\x88\xde\x73\x29\x44\x43\x12\xce\x09\x00\x18\xeb\x00\ -\xc6\x02\x4a\x63\xfb\xc5\x2e\x17\x0e\x9b\x8d\x61\x59\x4a\x15\x85\ -\x23\x9e\xdb\xe7\xa3\xd8\xe9\x0a\x8b\x87\x3f\xc0\xbf\x56\xac\x62\ -\x43\x45\x65\xa8\xc3\x20\x26\x36\x96\xa4\xe4\x14\xe2\xe2\xe2\xb1\ -\xdb\xec\xb8\xdd\x11\xbd\x13\xc1\x01\xb4\xc7\x58\x44\x78\x2b\x30\ -\x02\x88\xc3\xa8\x4d\x20\x95\x0c\x85\x08\x63\x91\xf0\x2a\x3c\x14\ -\x98\x89\xe2\xe7\x12\x63\xb7\xf3\xeb\xf0\x21\x74\x4d\x09\x8f\x23\ -\x83\xcd\x52\xf7\xf0\xb7\x72\x89\xdf\x03\x7d\x9f\xbf\x97\x9b\x97\ -\xad\xa8\xf7\x75\xe2\xe2\xe3\xc9\xca\x6a\x44\xe3\x26\x4d\xc8\xcc\ -\x6a\x44\x56\xa3\x46\x34\x6e\x9c\x43\x66\x56\x16\x69\xe9\x19\x24\ -\x27\x27\x93\x94\x9c\x4c\x72\x72\x32\xa9\x69\xe9\x24\x25\x25\xe3\ -\x70\x44\x91\x92\x9a\x86\xed\x28\x23\x47\xe5\xe5\x65\x78\x3d\x1e\ -\xdc\x6e\x0f\x15\x15\xc6\xa8\x79\x65\x65\x05\xd5\x55\xd5\x14\x15\ -\x16\x50\x54\x58\x48\x51\x51\x21\x05\x05\xfb\x28\x2c\xd8\x47\x51\ -\x61\x21\xc5\x45\x85\x14\x15\x16\x52\xb0\x6f\x1f\xa5\xa5\x61\xb5\ -\xab\xc1\x0d\xfc\x0c\x4c\x02\xa6\xf2\xd7\x72\xc8\x42\x08\x8b\x8b\ -\x84\x04\x00\xe0\x6d\x8c\xd3\xdd\x94\xf4\x4a\x4b\xe5\x97\x63\x07\ -\x37\xd8\xa9\x00\xb7\xcf\x47\x91\x33\x3c\x86\xfd\xc1\x38\xe1\xf1\ -\xd4\x59\x73\x29\x74\xaa\x57\xc4\x1d\x34\x74\x18\x5d\xba\x76\xa7\ -\x59\xf3\x16\x34\x6b\xde\x7c\xff\xaf\x2d\x69\x94\x9d\x6d\x62\xa4\ -\xf5\x53\x51\x51\xce\xd6\x2d\x9b\xd9\xb6\x65\x0b\xdb\xb6\x6e\x61\ -\xfb\x56\xe3\xd7\x6d\x5b\xb7\xb0\x63\xc7\x76\x5c\x1a\x9f\x7f\x90\ -\x55\x01\x53\x80\x77\x31\x76\x16\x84\xc9\x77\x96\x10\x0d\x5b\xa4\ -\x3c\x01\x33\x81\x35\x68\x2c\x08\xbc\xbf\x73\x47\x6e\xef\xa0\x54\ -\x4a\x20\xa2\x84\xd3\x82\xbf\x3a\xff\x5c\xbe\x8a\xaf\xf2\xf2\x95\ -\xdb\xf7\xec\xdd\x87\x6f\x7f\x99\x49\x54\x54\xb8\xcf\x70\xfd\xc1\ -\xe3\xf1\x90\xb7\x7b\x17\x9b\x37\x6d\x64\xe5\xf2\x65\xac\x5a\xb1\ -\x8c\x15\xcb\x97\xb1\x69\xc3\x7a\x3c\x1e\x4b\x55\x6c\xdc\x0c\x8c\ -\x07\xde\x03\xb6\x87\x36\x14\x21\xc4\x91\x44\x4a\x02\x00\x70\x19\ -\xc6\x0f\x1d\x25\xb1\xfb\xa7\x02\xba\x34\xa0\xa9\x00\xa7\xd7\x4b\ -\x89\x2b\x7c\xe6\xfc\x01\xa6\xef\x2b\xe0\xba\xc5\xcb\x94\xdb\x3b\ -\x1c\x0e\xbe\x9b\xf6\x1b\xdd\x7b\x2a\x55\x8b\x0e\x7b\x2e\x97\x8b\ -\xcd\x1b\x37\xb0\x6c\xe9\x12\x96\x2f\x5d\xcc\xf2\xa5\x8b\x59\xb9\ -\x7c\x39\x55\x55\x21\x5f\x2b\xe1\xc5\xa8\x2f\xf0\x06\xf0\x19\xc6\ -\x99\x06\x42\x08\x0b\x89\xa4\x04\xc0\x86\x31\x27\x79\xbc\x6a\x87\ -\x3e\xe9\x69\xfc\x34\x6c\x10\x51\x0d\x60\x2a\xc0\xa8\xf0\x67\xfd\ -\x7d\xfe\x07\x2a\x77\xbb\x19\x33\x7b\x2e\xf9\x35\xea\x7b\xfe\xff\ -\x7e\xcb\xed\xdc\xf7\xd0\xa3\x26\x46\x65\x7d\x1e\x8f\x87\x8d\xeb\ -\xd7\x31\x7f\xde\xef\xcc\x9c\x3e\x8d\x59\x33\xa7\x53\x5c\x54\x14\ -\xca\x90\x36\x01\x6f\x62\x4c\xd5\x15\x84\x32\x10\x21\xc4\x1f\x22\ -\xed\xc9\xd7\x11\x58\x86\x51\xee\x54\xc9\x43\x5d\x3a\x71\x4b\xfb\ -\x36\x47\x6f\x18\xc6\xc2\xa1\xb6\xff\xa1\xdc\xb3\x72\x35\x9f\xee\ -\xca\x53\x6e\xdf\xb2\x55\x6b\x7e\x9d\xbb\x88\xf8\xf8\x04\x13\xa3\ -\x0a\x3f\x5e\xaf\x97\x35\xab\x57\xf2\xfb\xac\xdf\xf8\x7d\xd6\x6f\ -\xcc\xfd\x7d\x16\x85\x05\x21\x79\x0e\x57\x61\x4c\x0f\x3c\x83\x71\ -\xb2\xa1\x10\x22\x84\x22\x2d\x01\x00\x78\x10\x78\x40\xb5\x71\x9c\ -\xdd\xce\xac\x11\xc3\x68\x9f\x94\x68\x5e\x44\x21\x54\xe9\xf6\x50\ -\xee\x0e\xbf\x87\xff\xf4\x7d\x05\x5c\xbf\x78\x99\xd6\x6a\xb2\x49\ -\x53\xbf\xe6\xb8\xe3\x47\x9a\x16\x53\xa4\xf0\xf9\x7c\xac\x5f\xbb\ -\x86\x19\xd3\x7f\xe1\xc7\xef\xbe\x61\xee\x9c\x59\xb8\x83\xfb\x3d\ -\xe2\x05\x3e\x07\x9e\x06\xe6\x04\xf3\xc6\x42\x88\x3f\x44\x62\x02\ -\x10\x03\x2c\x02\xba\xa9\x76\x18\x90\x91\xce\xf7\x43\x07\x62\x8f\ -\xa0\xa9\x00\x1f\x50\xe6\x72\x51\xed\x09\xbf\x8a\xae\x85\x4e\x27\ -\x63\x67\xcf\xd3\x5a\xf5\x7f\xce\xf9\x17\xf2\xd2\x1b\xef\x9a\x18\ -\x55\xe4\x2a\x2d\x2d\x61\xda\x4f\x3f\xf0\xc3\xb7\xdf\x30\xfd\xe7\ -\x1f\x83\xbd\x1d\x71\x0e\xf0\x18\x46\xe5\xc1\x30\x9a\xa0\x12\x22\ -\xfc\x45\xce\x13\xef\xcf\xfa\x01\xbf\xa3\x51\xe8\xe8\x91\xae\x9d\ -\xb8\xa9\x5d\x64\x4c\x05\x78\x7d\x46\x5d\x7f\x67\x38\xad\xf6\xdb\ -\xcf\x07\x5c\xbf\x78\x19\xd3\xf7\xa9\x0f\x51\xa7\x67\x64\x30\x6b\ -\xc1\x72\x32\xb3\xb2\xcc\x0b\xac\x81\x70\xb9\x5c\xcc\x9d\x33\x8b\ -\x1f\xbf\xfb\x86\x1f\xbe\xfd\x9a\xed\xdb\xb6\x06\xeb\xd6\x8b\x80\ -\x47\x80\x2f\x91\x44\x40\x88\xa0\x88\xd4\x04\x00\xe0\x09\x8c\x43\ -\x4e\x94\xc4\xda\xed\xfc\x72\xec\x60\xba\xa7\xa6\x98\x18\x92\xf9\ -\xc2\xad\xc0\xcf\xc1\x3e\xda\xb1\x8b\x07\x57\xaf\xd5\xea\xf3\xca\ -\x5b\xef\x71\xd6\xb9\x17\x98\x14\x51\xc3\xb6\x72\xc5\x32\xa6\x4c\ -\xfa\x90\xa9\x53\x26\xb3\x27\x5f\x7d\x2b\x66\x3d\x2c\xc5\x48\x04\ -\xa6\x22\x89\x80\x10\xa6\x8a\xe4\x04\x20\x16\x58\x0c\x74\x51\xed\ -\xd0\x31\x39\x89\x19\xc3\x87\x10\x1f\xa6\xfb\xc7\x6b\xf7\xaf\xf4\ -\x0f\xc3\x17\x7f\x00\xb6\x55\x55\x73\xc6\x9c\x79\x54\x69\xec\x6b\ -\x3f\x65\xf4\x58\xde\xfb\xf0\x13\x13\xa3\x12\x60\x2c\x24\x5c\x30\ -\x6f\x2e\x53\x26\x7d\xc0\x67\x9f\x4c\xa6\xb2\xd2\xf4\x23\x01\x56\ -\x02\x0f\x03\xf2\x97\x2b\x84\x49\x22\x39\x01\x00\x18\x04\xfc\x86\ -\xc6\x54\xc0\xb5\xad\x5b\xf2\x64\x8f\xae\xe6\x45\x64\x92\x70\x5d\ -\xec\x57\xc7\xe3\xf3\x71\xe1\xbc\x85\x2c\x2b\x55\xaf\x28\x9b\x91\ -\x99\xc9\x8c\xb9\x4b\x2c\x5d\xdd\x2f\x12\xd5\x54\x57\xf3\xd3\x0f\ -\xdf\xf2\xf1\x47\x1f\x30\xfd\xe7\x1f\xcd\x5e\x40\xf8\x33\x70\x17\ -\xc6\x14\x81\x10\x22\x80\xc2\xf3\x55\x57\xdd\x4e\x8c\x2a\x81\x03\ -\x54\x3b\x2c\x2e\x29\xe5\x98\xf4\x34\xda\x86\xc9\xae\x00\x63\xbe\ -\xdf\xad\xf5\xd6\x6c\x45\x2f\x6c\xdc\xcc\xd7\xf9\x7b\xb4\xfa\x3c\ -\xff\xea\x9b\x1c\xd3\xb7\x9f\x49\x11\x89\xc3\x71\x44\x47\xd3\xb1\ -\x53\x17\xce\x3a\xf7\x7c\x2e\xbc\xe4\x32\xd2\x33\x32\xd8\xb4\x71\ -\x03\x15\xe5\xa6\x9c\x1a\xdc\x06\xb8\x06\xe8\x0c\x2c\x04\xc2\xea\ -\xc0\x04\x21\xac\x2c\xd2\x47\x00\xc0\x38\xb9\x6c\x21\xa0\xfc\x5a\ -\x9f\x15\x1b\xc3\x9c\x11\xc3\x68\x1c\xab\x5c\x4e\x20\x24\x5c\x5e\ -\x63\xb1\x5f\xb8\xce\xf7\xd7\x59\x5c\x52\xc2\xc5\xf3\x17\x6b\x7d\ -\x1e\xa7\x9f\x75\x2e\xaf\xbf\x3b\xd1\xc4\xa8\x84\x0e\xaf\xd7\xcb\ -\xcf\x3f\x7c\xc7\x5b\xaf\xbd\xcc\x6f\x33\xa6\xe3\x33\xe7\x7b\xd2\ -\x09\xbc\x06\xdc\x87\x1c\x3e\x24\x44\xbd\x35\x84\x04\x00\xe0\x18\ -\x60\x2e\x10\xad\xda\x61\x64\x76\x23\xa6\x0c\xea\x67\xd9\x2f\x50\ -\x95\xc7\x18\xf2\x0f\xf3\x67\x3f\x55\x1e\x0f\x67\xcc\x99\xc7\xb6\ -\xaa\x6a\xe5\x3e\x99\x59\x59\xcc\x98\xbb\x84\xac\x46\xca\x47\x3f\ -\x88\x20\xda\xb4\x61\x3d\xef\xbe\xf5\x3a\x1f\x4e\x78\xcf\xac\x92\ -\xc4\x05\xc0\x7f\x80\x97\x90\x12\xc3\x42\xf8\x2d\xd2\xa7\x00\xea\ -\xe4\x61\x9c\x6b\x3e\x5c\xb5\xc3\xe6\xca\x2a\x1a\xc5\xc6\x70\x4c\ -\x7a\x9a\x79\x51\xf9\x21\x52\x86\xfc\xeb\xdc\xbb\x6a\x2d\xf3\x8a\ -\x8a\xb5\xfa\xbc\xf4\xfa\x3b\xf4\x3a\xa6\x8f\x49\x11\x89\xfa\xca\ -\xc8\xcc\xe4\xf8\x13\x4f\xe6\xb2\xab\xae\x21\x23\x23\x93\x2d\x9b\ -\x37\x05\xba\xb6\x40\x02\x70\x0a\x30\x16\x58\x0b\x6c\x0b\xe4\xc5\ -\x85\x68\x28\xac\xfa\x82\x6b\x86\x68\x8c\xda\x00\xca\x4f\x8e\xf8\ -\xa8\x28\x66\x0c\x1f\x42\xc7\xe4\x24\xf3\xa2\xd2\x10\xee\xab\xfc\ -\x0f\xf6\x5d\xfe\x1e\x6e\x59\xb6\x52\xab\xcf\x79\x17\x5e\xc4\x0b\ -\xaf\xbd\x6d\x52\x44\xc2\x0c\xf9\x79\x79\x0c\xe8\xd5\x99\xda\x9a\ -\x1a\x33\x2e\xef\x03\x3e\x00\xfe\x09\xe8\x2d\x22\x11\xa2\x81\xb3\ -\x87\x3a\x80\x20\x72\x01\x97\x02\xca\x3f\x85\xaa\x3d\x1e\xae\x58\ -\xb8\x84\xea\x10\xbf\x6d\x1b\x55\xfd\xdc\x14\x3b\x23\xe7\xe1\x9f\ -\x57\x53\xc3\x03\xab\xd7\x69\xf5\x69\xd1\xb2\x15\x8f\x3e\xf9\xac\ -\x49\x11\x09\xb3\x3c\x74\xef\x5d\x66\x3d\xfc\xc1\x78\x89\xb9\x18\ -\x63\x24\xe0\x7a\x1a\xd6\xcf\x34\x21\xea\xa5\xa1\xfd\x63\x59\x8d\ -\xb1\xa5\x48\xd9\xaa\xb2\x72\xee\x5a\xb9\xc6\xa4\x70\x8e\xce\xe9\ -\xf5\x52\x58\xeb\x8c\x98\x21\x7f\x30\x8a\x15\xdd\xba\x6c\x25\xa5\ -\x2e\x97\x72\x9f\xa8\xa8\x28\x5e\x7a\xe3\x5d\x92\x93\xc3\xbb\x50\ -\x53\x43\x33\xed\xe7\x1f\x99\x3a\x65\x72\x30\x6e\x95\x06\xbc\x82\ -\x51\x5a\xb8\x61\x9c\x05\x2d\x44\x3d\x35\x94\x35\x00\x07\x9a\x8f\ -\x31\x0d\xd0\x41\xb5\xc3\xd2\x92\x52\xda\x27\x25\xd2\x25\x25\xd9\ -\xbc\xa8\x0e\xe2\x03\x2a\xdd\x6e\x4a\x5d\x6e\xc2\xaf\x9a\xff\x91\ -\x3d\xb9\x7e\x23\xdf\xe5\xef\xd5\xea\x73\xdb\xbf\xee\xe1\xbc\x0b\ -\x2f\x32\x29\x22\x61\x86\x5d\x3b\x77\x70\xc9\x79\x67\x52\x59\x69\ -\xca\x42\xc0\xc3\x69\x06\x5c\x0d\xa4\x62\xd4\x00\x09\xdf\xe2\x18\ -\x42\x98\xac\x21\xad\x01\x38\x50\x16\xc6\xb1\xc1\x4d\x55\x3b\x24\ -\x39\x1c\xcc\x18\x3e\x84\x76\x41\xa8\x0f\x50\xeb\xf5\x52\xe6\x72\ -\x87\xfd\xf6\xbe\x43\xf9\x65\xef\x3e\xfe\xbe\x64\xb9\x56\x8d\xd7\ -\x63\xfa\xf6\xe3\xcb\x1f\xa6\xe3\x70\x38\x4c\x8b\x4b\x04\x56\x45\ -\x45\x39\xa7\x9d\x74\x3c\xab\x57\xad\x50\xee\x13\x9f\x90\x44\x4d\ -\x75\x65\x20\xb7\x10\x6e\x00\xae\x04\x66\x05\xea\x82\x42\x44\x92\ -\x86\x36\x05\x50\xa7\x00\x63\xde\x50\xf9\xe5\xba\xc2\xed\xe6\xb2\ -\x85\x4b\xa8\xf1\x9a\xf7\x3e\xee\xf5\xf9\x28\x75\xb9\xc2\xba\x96\ -\xff\x91\xec\xac\xae\xe6\xae\x95\xab\xb5\x1e\xfe\x89\x89\x49\xbc\ -\xfc\xe6\x7b\xf2\xf0\x0f\x23\xd5\xd5\x55\x5c\x73\xe9\x38\xad\x87\ -\x3f\xc0\x4d\xff\x7a\x86\x07\x9e\xf8\x80\xa6\xcd\x02\x76\x28\x57\ -\x7b\x60\x06\xf0\x1c\xc6\xce\x01\x21\xc4\x01\x1a\xe2\x14\x40\x9d\ -\xad\x18\x47\x07\x1f\xab\xda\x61\x6f\x6d\x2d\x05\x4e\x27\xa3\x9a\ -\x04\xbe\xf4\x6c\xb5\xc7\x43\xb1\xcb\x85\x2b\x52\x56\xf9\x1d\xc4\ -\xe9\xf5\x72\xf5\xa2\x65\xec\xa8\x56\xdf\xef\x0f\xf0\xe4\x73\x2f\ -\x31\x6c\xf8\x08\x93\xa2\x12\x81\x56\xb0\x6f\x1f\x17\x9e\x35\x96\ -\xdf\x67\xff\xa6\xd5\xaf\x7b\xaf\xc1\x8c\xbb\xf2\x0e\xb2\x9b\x34\ -\x67\xe4\xa9\x17\x12\x15\xe5\x60\xfd\x9a\xc5\x78\xbd\xf5\x5e\xfb\ -\x62\x03\x06\x02\x17\x60\x8c\xfa\xc9\x96\x41\x21\xf6\x6b\xc8\x09\ -\x00\xc0\x4c\x60\x24\xd0\x5c\xb5\x43\xa0\xd7\x03\x38\xbd\x5e\x4a\ -\x5c\x2e\xaa\x3c\x91\x36\xd3\xff\x67\xff\x59\xbb\x9e\x5f\xf6\xee\ -\xd3\xea\x73\xfa\x59\xe7\x72\xf7\xfd\x0f\x99\x14\x91\x08\xb4\xb5\ -\xab\x57\x71\xee\xe9\xa3\x58\xbb\x7a\x95\x56\xbf\xe8\x98\x58\xee\ -\x7a\xf8\x2d\x52\x52\x33\x00\x63\xc1\x67\xd7\x9e\x03\x19\x3c\x7c\ -\x0c\x3b\xb6\xae\x67\xef\x9e\x9d\x81\x08\x2f\x03\x63\x17\x50\x32\ -\xc6\xa8\x40\xe4\xac\xaa\x15\xc2\x4f\x0d\x75\x0d\xc0\x81\x9a\x63\ -\x1c\x41\x9a\xa1\xda\x21\xd1\x11\xc5\xaf\xc3\x87\xd0\x21\xc9\xff\ -\xfa\x00\x6e\x9f\x8f\x0a\xb7\x9b\x9a\x08\x7f\xf0\x83\x7f\xfb\xfd\ -\x5b\xb5\x6e\xc3\x8f\x33\x7f\x27\x25\x25\xd5\xa4\xa8\x44\xa0\xb8\ -\x5c\x2e\x5e\x7f\xf9\x79\x9e\x78\xec\x11\x9c\xb5\xb5\xda\xfd\x2f\ -\xbd\xe6\x1e\x4e\x3b\xf7\x9a\xc3\xfe\xf9\xef\x33\xbf\xe5\xad\x97\ -\xee\xa7\xb4\xa4\xb0\x3e\x61\x1e\x68\x25\x30\x0e\xd0\x9b\xa3\x10\ -\x22\xc2\x34\xf4\x11\x00\x30\x6a\x8a\x6f\x06\xce\x53\xed\xe0\xf2\ -\xfa\xf8\xbd\xa8\x98\x71\xcd\x73\x89\xb6\xeb\x2d\xa3\xf0\xfa\x7c\ -\x54\x78\x3c\x94\xb9\xdd\xb8\x23\x74\xb8\xff\x40\x5b\x2b\xab\xf8\ -\xdb\x92\x65\x5a\x53\x1b\xd1\x31\x31\x7c\xf4\xe9\x17\xb4\x6c\xd5\ -\xda\xc4\xc8\x44\x7d\x79\x3c\x1e\xbe\xf9\x72\x2a\x57\x5f\x36\x8e\ -\x2f\x3e\xfd\x04\x8f\x1f\x5b\x55\x7b\xf6\x19\xc6\xd5\x37\x3e\x84\ -\xcd\x76\xf8\x7f\x47\xcd\x5b\xb6\xe7\xf8\x93\xce\xa5\xa8\x70\x0f\ -\xdb\xb7\xac\xad\x4f\xc8\x75\xb2\x81\xcb\x80\x42\xe4\x94\x41\xd1\ -\x80\x49\x02\x60\x58\x8d\xb1\x23\x40\xb9\x4a\xe0\xde\xda\x5a\x76\ -\x55\xd7\x30\x26\xa7\x89\x52\x7b\x1f\x50\xe5\xf6\x50\xea\x76\xe1\ -\x6c\x00\x0f\x7e\x80\x1a\x8f\x97\x2b\x16\x2d\x21\xbf\x46\xef\xad\ -\xf0\x81\x47\xfe\xcb\xe8\xd3\xce\x34\x29\x2a\x51\x5f\x7b\xf7\xec\ -\xe1\x83\x09\xef\xf2\xf7\x6b\x2e\xe7\xfd\xf7\xde\xa1\xb8\xc8\xbf\ -\x37\xf3\x46\x8d\x73\xb9\xef\xbf\x13\x88\x8b\x3b\xfa\xfa\xbc\xd8\ -\xb8\x78\x06\x0e\x3d\x85\xb6\x1d\x7a\xb0\x66\xc5\x7c\xaa\xab\x2a\ -\xfc\xba\xe7\x01\xa2\x81\x31\x18\x35\x03\x7e\x06\xaa\xea\x7b\x41\ -\x21\xc2\x8d\x4c\x01\xfc\x21\x01\xa3\x46\x80\xf2\xa9\x81\x00\x4f\ -\xf7\xe8\xca\xd5\xad\x5b\x1e\xf6\xcf\x7d\x40\xcd\xfe\x83\x7b\x1a\ -\xc8\x73\xff\x7f\xee\x59\xb9\x86\x4f\x77\xed\xd6\xea\x73\xd2\xa8\ -\xd1\x8c\xff\x68\x0a\x36\x9b\x7c\x6b\x5a\x85\xcb\xe9\x64\xc5\xf2\ -\x65\xcc\x9d\x33\x8b\x1f\xbe\xfd\x8a\x05\xf3\xe6\xe2\xad\xe7\x6e\ -\x98\xc4\xa4\x14\x1e\x79\xfa\x63\x5a\xb4\xee\xa8\xdd\xb7\xba\xaa\ -\x82\x89\x6f\x3d\xce\x4f\xdf\x7c\x18\xa8\x2d\x83\x3b\x30\x46\x00\ -\xe7\x06\xe2\x62\x42\x84\x0b\xf9\x29\xfb\x67\xdd\x81\x79\x40\xbc\ -\x6a\x87\x18\xbb\x9d\x6f\x86\x0c\xa0\x7f\x46\xfa\x9f\xfe\xbf\x0f\ -\x63\x65\x7f\xa5\xdb\x13\x91\x5b\xfa\x8e\xe6\xb3\x5d\x79\xdc\xbd\ -\x72\xb5\x56\x9f\xa6\xb9\xcd\xf8\x65\xd6\x7c\xd2\x33\x94\x97\x63\ -\x88\x00\x2a\x2e\x2a\x62\x4f\x7e\x1e\x3b\x77\x6c\x67\xc3\xfa\x75\ -\x6c\xda\xb0\x9e\xb5\x6b\x56\xb1\x62\xf9\xb2\x80\x96\xf2\x8d\x89\ -\x8d\xe3\xbe\xff\x4e\xa0\x73\xb7\x7e\xf5\xba\xce\xea\xe5\xf3\x78\ -\xe5\x99\x3b\xc9\xdf\x1d\x90\x85\xfd\x4e\xe0\x5f\xc0\xf3\x81\xb8\ -\x98\x10\xe1\x40\x12\x80\xbf\xba\x0e\x78\x55\xa7\x43\xd3\xb8\x38\ -\x66\x1c\x37\x84\xec\xd8\xd8\xff\x3d\xf8\x2b\x1a\xe0\x1b\x7f\x9d\ -\x55\x65\xe5\x8c\x9b\xbf\x50\x6b\x81\xa3\xc3\xe1\x60\xca\x57\x3f\ -\x30\x70\xf0\x10\x13\x23\x6b\x98\x4a\x4b\x4b\xd8\x93\x97\xc7\x9e\ -\x3d\xf9\xe4\xe7\xe5\xb1\x37\x3f\x8f\xfc\xfc\x3c\xf6\xe4\xe7\xb3\ -\x27\x7f\x37\xf9\x79\xc6\x7f\x9b\x58\xaf\xff\x7f\xe2\xe3\x13\xb9\ -\xf3\xe1\x37\xe9\xd6\x73\x50\x40\xae\xe7\xac\xad\xe1\xc3\x77\x9f\ -\xe4\x9b\xa9\xef\xe1\xf3\x05\x64\x41\xed\x14\xe0\x2a\x8c\xb5\x41\ -\x42\x44\x34\x49\x00\x0e\xed\x7d\x40\xab\xee\xec\x90\xcc\x0c\x3e\ -\x18\xd0\x07\xa7\xd7\x4b\x03\x7c\xe1\xff\x9f\x42\xa7\x93\x73\x7e\ -\x5f\xc0\x6e\xcd\x87\xc9\xfd\x0f\x3f\xc6\x0d\x37\xdf\x66\x52\x54\ -\x91\xcf\xeb\xf5\xb2\x79\xe3\x06\xd6\xae\x59\xc5\xba\xb5\x6b\x58\ -\xbb\x7a\x35\xeb\xd6\xae\x66\xfb\xb6\xad\xd4\x68\xd6\x5e\x30\x4b\ -\x6a\x5a\x26\x77\x3f\xf2\x36\xed\x3a\xf6\x0c\xf8\xb5\x57\x2f\x9f\ -\xc7\x4b\x4f\xfe\x33\x50\x5b\x06\xd7\x03\xe7\x20\xbb\x04\x44\x84\ -\x93\x04\xe0\xd0\xe2\x81\xd9\x68\x1e\x2a\x72\x79\xcb\x16\xdc\xdd\ -\xa9\xbd\x39\x11\x85\x01\x8f\xcf\xc7\xe5\x0b\x97\x30\xbf\xa8\x58\ -\xab\xdf\xa8\x31\xa7\xf1\xce\xfb\x93\x65\xde\x5f\xd3\xb6\xad\x5b\ -\x98\xf9\xeb\x34\x66\x4e\x9f\xc6\xac\x99\xd3\x29\x2e\x2a\x0a\x75\ -\x48\x87\xd5\xaa\x4d\x67\xfe\xf5\xd0\x1b\x64\x37\x6e\x66\xda\x3d\ -\x6a\x6b\xab\xf9\xe0\xed\x27\xf8\xee\x8b\xf1\x81\x58\x1b\x50\x89\ -\xb1\x53\xe0\xd3\xfa\x47\x26\x84\x35\xc9\x4f\xdc\xc3\x6b\x0f\x2c\ -\xc0\x38\x54\x44\xd9\x33\x3d\xba\x31\x3a\xa7\xb1\x39\x11\x59\xdc\ -\x7f\xd6\xac\x67\xe2\xf6\x1d\x5a\x7d\xda\x77\xec\xc4\x77\xd3\x7e\ -\x23\x29\x29\x78\x07\x2d\x85\xb3\x35\xab\x56\xf2\xc9\xe4\x0f\x99\ -\xfa\xc9\x64\xf2\x76\xef\x0a\x75\x38\x47\x65\xb3\xd9\x38\x69\xcc\ -\xc5\x5c\x76\xed\x3d\xc4\xc4\xc6\x05\xe5\x9e\x8b\xe7\x4f\xe7\xd5\ -\x67\xee\xa4\xb8\x48\xaf\xf0\xd4\x21\xf8\x80\x07\x81\x47\xf6\xff\ -\x5e\x88\x88\x22\x09\xc0\x91\x9d\x01\x7c\x86\xc6\xd7\x29\x3e\x2a\ -\x8a\x4f\x06\xf6\xa5\x7d\x3d\x8a\x04\x85\xa3\xa9\xbb\xf3\xb8\x6b\ -\x85\xde\xa2\xbf\xa4\xa4\x64\xbe\x9b\xf6\x1b\xed\x3b\x76\x32\x29\ -\xaa\xc8\x50\x59\x59\xc1\xfb\xef\xbd\xc3\xe4\x0f\x26\x6a\xd7\xd7\ -\x0f\xa5\xec\x26\xcd\xf9\xdb\xcd\x8f\xd2\xb3\xcf\xb0\xa0\xdf\xbb\ -\xac\xb4\x90\x57\x9e\xbe\x93\x85\x73\x7f\x09\xc4\xe5\xa6\x00\x97\ -\x63\x8c\x0a\x08\x11\x31\x24\x01\x38\xba\xc7\x81\x3b\x75\x3a\x34\ -\x8f\x8f\x67\xca\xa0\x7e\xa4\x45\x47\x9b\x14\x92\xb5\xac\x28\x2d\ -\xe3\xa2\xf9\x8b\xa8\xd5\xd8\x1a\x66\xb3\xd9\x78\x73\xfc\x07\x8c\ -\x39\xfd\x2c\x13\x23\x0b\x6f\xe5\xe5\x65\xbc\xfd\xfa\x2b\xbc\xf1\ -\xca\x8b\x14\x15\x06\xac\x0a\x9e\xe9\xe2\xe3\x13\x39\xe3\xfc\xeb\ -\x38\xed\x9c\x6b\x88\x8e\x89\x0d\x59\x1c\x55\x95\xe5\xfc\xf2\xfd\ -\xc7\x4c\x7a\xef\x69\x6a\x6b\xeb\xbd\x0e\x62\x29\x70\x3a\xb0\xbd\ -\xfe\x91\x09\x61\x0d\x92\x00\x1c\x5d\x14\xf0\x23\x70\xbc\x4e\xa7\ -\x41\x99\x19\xbc\xdd\xa7\x17\x51\x11\x3e\xaf\x5d\xb0\x7f\xd1\x5f\ -\x9e\xe6\xa2\xbf\x1b\x6e\xbe\x8d\xfb\x1f\x7e\xcc\xa4\xa8\xc2\x9b\ -\xc7\xe3\xe1\xcd\x57\x5f\xe2\xd9\x27\x1f\xa7\xb4\x44\x6f\x3d\x45\ -\x28\xa5\x67\x64\x73\xea\x19\x97\x73\xd2\x98\x8b\x48\x4c\x4a\x09\ -\x75\x38\x78\xbd\x1e\xca\x4a\x8a\xc8\xdb\xbd\x95\x37\x5f\xbc\x8f\ -\xed\x5b\xd6\xd5\xf7\x92\xf9\x18\xc5\x83\xa4\x7a\xa0\x88\x08\x91\ -\xfd\x74\x0a\x9c\x6c\x8c\x7f\xf4\x5a\x2b\x98\x2e\x69\xd1\x9c\x7b\ -\x3b\x77\x30\x27\x22\x0b\x70\xfb\x7c\x5c\xbe\x60\x31\x0b\x8a\x4b\ -\xb4\xfa\x0d\x19\x36\x9c\xc9\x9f\x7f\x23\x47\xfc\x1e\xc2\xea\x55\ -\x2b\xb8\xed\xc6\xeb\x59\xba\x78\x61\xa8\x43\x51\x62\xb7\x1b\x07\ -\xf7\x1c\x7b\xc2\x19\x0c\x1d\x71\x1a\xd1\xd1\x31\xa1\x0e\xe9\x4f\ -\xaa\x2a\xcb\xa9\xad\xad\xc6\xed\x76\x31\x75\xd2\xab\x81\x28\x1e\ -\x54\x01\x9c\x0f\x7c\x1b\x98\x08\x85\x08\x1d\x49\x00\xd4\x0d\x02\ -\x7e\xc5\x38\x42\x58\xd9\xa3\x5d\x3b\x73\x4e\xb3\xa6\xa6\x04\x14\ -\x6a\x0f\xaf\x59\xc7\x07\xdb\xf5\xb6\x5d\xe5\x34\xcd\xe5\xa7\x99\ -\x73\xc9\x6a\xd4\xc8\xa4\xa8\xc2\x93\xcf\xe7\xe3\xc5\x67\x9f\xe4\ -\xc9\xc7\x1e\xc1\xe5\x72\x85\x3a\x9c\x23\x8a\x4f\x48\xa2\x53\xd7\ -\xbe\xf4\x1d\x78\x02\x03\x87\x8d\x22\x35\x2d\x33\xd4\x21\x1d\x56\ -\xdd\x28\x80\x6f\xff\x1a\xbe\x55\xcb\xe7\xf1\xce\xcb\x0f\x52\x56\ -\x5a\xaf\x1d\x13\x6e\xe0\x06\xe0\xcd\x00\x84\x28\x44\xc8\x48\x02\ -\xa0\xe7\x46\xe0\x45\x9d\x0e\xd1\x76\x3b\x13\xfa\xf5\xe6\x98\xb4\ -\x34\x93\x42\x0a\x8d\x4f\x77\xe5\x71\x8f\x66\xa5\xbf\xe8\x98\x18\ -\x3e\xff\xf6\x67\xfa\xf4\xeb\x6f\x52\x54\xe1\xc9\xe5\x74\x72\xfb\ -\x4d\xd7\xf3\xf1\x47\x1f\x84\x3a\x94\xbf\x88\x8d\x8d\x27\xb7\x45\ -\x3b\x5a\xb6\xee\x48\xab\xb6\x5d\xe8\xdc\xbd\x1f\xad\xda\x74\xc6\ -\x6e\x0f\x9f\x63\x44\xea\x46\x01\xea\x94\x96\x14\xf0\xfa\x73\xff\ -\x66\xc3\xda\xa5\xf5\xbd\xf4\xa3\xc0\x7d\xc8\x0e\x01\x11\xa6\x24\ -\x01\xd0\xa7\x5d\x24\x28\x2b\x26\x86\x29\x83\xfa\x91\x13\x17\x9c\ -\x6d\x50\x66\x5b\x52\x52\xca\x65\x0b\x16\x6b\x2d\xfa\x03\x78\xfc\ -\x99\x17\xb8\xfc\xaa\x6b\x4d\x8a\x2a\x3c\x95\x96\x96\x70\xe5\x45\ -\xe7\x33\xfb\xb7\x19\x41\xbf\x77\x94\xc3\x41\x5a\x5a\x16\x59\xd9\ -\xb9\x64\x64\x66\x93\x91\xd5\x84\xcc\x46\x39\x64\x64\x36\x26\xab\ -\x51\x53\x32\x1a\x35\xa1\x51\x76\xd3\x23\x9e\xd4\x17\x0e\x3c\x1e\ -\x0f\x65\xa5\x7f\x5e\x44\xe9\xf5\x78\xf8\xec\xa3\x97\xf9\xb1\xfe\ -\x53\x02\xef\x01\x57\x03\xfa\x47\x21\x0a\x11\x62\x92\x00\xe8\x6b\ -\x09\x6c\x04\xb4\x26\xb0\xbb\xa6\x24\xf3\x61\xff\xbe\xc4\x45\x85\ -\xf7\x0f\xd3\x5d\xd5\x35\x9c\x3b\x77\x01\x85\x4e\xa7\x56\xbf\xf3\ -\xc6\x5d\xcc\x0b\xaf\xbe\x65\x52\x54\xe1\xc9\xe5\x74\x72\xfe\x99\ -\x63\x98\x33\x6b\x66\xc0\xaf\x6d\xb3\xd9\xc9\x6e\xd2\x8c\xa6\xcd\ -\x5a\x93\x93\xdb\x8a\xb4\xf4\x46\x64\x64\x35\x21\x35\x2d\x8b\xcc\ -\xac\x26\xa4\xa4\x65\x92\x96\x9e\x15\xf0\xfb\x5a\x55\x65\x45\x29\ -\x4e\xe7\x5f\x4f\xa5\x5c\xb2\x60\x06\xef\xbe\xfa\x70\x7d\x4f\x17\ -\xfc\x0c\x18\x07\xe8\x1d\x7b\x29\x44\x88\x49\x02\xa0\xa7\x09\xc6\ -\xd1\xa1\x5a\x27\x06\xd6\x39\xb5\x49\x63\x9e\xe9\xd9\x2d\x6c\xbf\ -\xe8\x95\x6e\x0f\x17\xcc\x5f\xc8\xfa\x72\xbd\x1f\x96\xdd\x7b\xf4\ -\xe2\xab\x1f\xa7\x13\x17\xaf\x7c\xc6\x52\xc4\xf3\xf9\x7c\xdc\x74\ -\xdd\x55\x7c\x32\xe9\xc3\x80\x5c\x2f\x3e\x3e\x91\x6e\xbd\x07\xd3\ -\xb9\x5b\x3f\xda\x77\xea\x45\x9b\x76\x5d\x89\x55\x38\x66\xb7\xa1\ -\xf0\xb8\xdd\x94\x95\x1d\x7a\xde\x7f\x6f\xfe\x4e\x5e\x7b\xee\x6e\ -\x76\x6c\x5d\x5f\x9f\x5b\xfc\x04\x9c\x89\xd4\x0a\x10\x61\x24\x5c\ -\x9f\x45\xa1\x90\x0b\xfc\x02\xe8\x9f\x5f\x7a\x80\x1b\xdb\xb6\xe6\ -\x1f\xed\xda\x04\x26\xa2\x20\xf2\xf8\x7c\xdc\xb0\x64\x39\xbf\xee\ -\x2b\xd0\xea\x97\x96\x9e\xc1\x8f\x33\xe6\xd0\xa2\x65\x2b\x73\x02\ -\x0b\x53\x2f\x3c\xf3\x04\x8f\x3d\x74\x7f\xbd\xae\x91\x98\x94\xca\ -\xd0\x11\xa7\x31\xf8\xd8\x53\xe9\xd4\xb5\x2f\x51\xb2\xab\xe2\x88\ -\xca\xcb\x8a\x71\xbb\x0f\xbd\xc0\xd2\xe5\xac\xe5\xbd\xd7\xff\xc3\ -\xfc\xd9\x3f\xd6\xe7\x16\x73\x80\xd1\x80\xde\xb6\x18\x21\x42\x44\ -\x12\x00\x35\x2d\x80\x69\x40\xdb\xfa\x5e\xc8\x06\x3c\xd9\xa3\x2b\ -\x63\x73\x9a\xd4\x3b\xa8\x60\x7a\x6c\xed\x7a\xc6\x6f\xd3\x2b\xf3\ -\xeb\x70\x38\xf8\xe8\xb3\xaf\x18\x36\x7c\x84\x49\x51\x85\xa7\x4d\ -\x1b\xd6\x33\x62\x48\x3f\x9c\xb5\xfe\x8d\x18\xb7\x6a\xd3\x99\x33\ -\x2f\xb8\x9e\xfe\x83\x4f\x0a\x69\xa1\x9d\x70\xe3\x72\xd6\x52\x51\ -\x51\x7a\xd8\x3f\xf7\xf9\x7c\x7c\xf7\xc5\x04\x3e\x9f\xfc\x5a\x7d\ -\x4e\x16\x5c\x06\x9c\x08\xd4\xbb\x0e\xb1\x10\x66\x93\x04\xe0\xe8\ -\xda\x60\xbc\xf9\xb7\x0a\xd4\x05\x63\xed\x76\xc6\xf7\x3b\x86\xde\ -\x69\x5a\xc7\x0c\x84\xcc\xe4\x9d\xbb\xb8\x7f\xd5\x5a\xed\x7e\x8f\ -\x3f\xfd\x3c\x97\x5f\xfd\x37\x13\x22\x0a\x5f\x3e\x9f\x8f\x73\xc6\ -\x9e\xe2\xd7\xa2\xbf\xdc\xe6\x6d\x19\x77\xc5\x3f\xe9\x3f\xe4\x64\ -\x39\x38\xc9\x4f\xa5\x25\x85\x78\xbd\x47\x5e\xaf\xb7\x6c\xd1\x6f\ -\xbc\xf5\xd2\xfd\xd4\x54\x57\xf9\x7b\x9b\x15\xc0\x09\x48\x12\x20\ -\x2c\x4e\x7e\x8a\x1c\x59\x07\x8c\x87\x7f\xc0\x8f\x30\xcb\x8c\x89\ -\xe1\x93\x81\xfd\xc8\x8d\xb7\xf6\xce\x80\xdf\x0b\x8b\xb8\x7a\xd1\ -\x52\xdc\x9a\x2b\xa5\x2f\xbf\xfa\x6f\x3c\xfe\xf4\xf3\x26\x45\x15\ -\xbe\x3e\xff\xf4\x63\xae\xbb\xf2\x52\xad\x3e\x36\x9b\x9d\xd1\x67\ -\x5e\xc1\xb8\x2b\xfe\x19\xb4\x03\x75\x22\x55\x6d\x4d\x15\x55\x0a\ -\x0b\xfe\x76\xed\xd8\xc4\xcb\x4f\xde\xc1\xbe\xbd\x7e\x1f\xb8\x24\ -\x49\x80\xb0\x3c\x49\x00\x0e\xaf\x0b\xc6\x82\xbf\x1c\xb3\x6e\xd0\ -\x3e\x29\x89\x49\x03\xfa\x90\x64\xd1\xb9\xdb\x2d\x95\x55\x9c\x37\ -\x6f\x01\x65\x2e\xb7\x56\xbf\x61\xc3\x47\xf0\xd1\x67\x5f\x49\xa5\ -\xbf\x83\xf8\x7c\x3e\x8e\x1b\xd4\x87\x75\x6b\xd4\xeb\x27\xc4\xc6\ -\xc6\x73\xc7\x03\xaf\xd1\xab\xef\xb1\x26\x46\xd6\x70\xf8\x7c\x5e\ -\x4a\x8b\x0b\xff\x57\x18\xe8\x48\x2a\xca\x4b\x78\xf5\x99\xbb\x58\ -\xbf\x66\x89\xbf\xb7\x5b\x8e\x91\x04\xe8\x2d\x9c\x11\x22\x48\xc2\ -\xa7\x9a\x47\x70\x75\x01\xa6\x63\xac\xfa\x37\x4d\x91\xd3\xc9\x9a\ -\xf2\x0a\x46\xe7\x34\xc6\x6e\xb1\x21\xdd\x52\x97\x8b\x4b\x17\x2c\ -\x61\xaf\xe6\x3c\x75\x9b\xb6\xed\x98\x3c\xf5\x6b\x12\x12\x13\x4d\ -\x8a\x2c\x7c\x4d\xfb\xe9\x07\xde\x78\x45\xbd\x8e\x54\x7c\x7c\x22\ -\xf7\x3c\xfa\x2e\xdd\x7b\x0f\x36\x31\xaa\x86\xc5\x66\xb3\xe1\xf5\ -\x7a\xf1\x78\x8e\x9e\xd4\xc6\xc4\xc6\x31\x60\xc8\x49\xec\xc9\xdf\ -\xc1\xee\x9d\x9b\xfd\xb9\x5d\x63\xe0\x14\x8c\xd3\x04\xfd\x9e\x4f\ -\x10\xc2\x2c\x92\x00\xfc\x55\x2b\x8c\x87\xbf\xf6\x9b\x7f\x46\x66\ -\x26\x35\x9a\x87\xe2\x6c\xaf\xaa\xa6\xc4\xe5\x62\x78\x23\xeb\xec\ -\xc9\x76\x79\xbd\x5c\xb7\x64\x39\xab\xca\xca\xb5\xfa\xa5\xa6\xa6\ -\x31\xe5\xcb\xef\x68\xda\xac\xb9\x49\x91\x85\xb7\xff\x3e\xfc\x00\ -\xeb\xd7\xae\x51\x6a\x6b\xb3\xd9\xb9\xeb\x91\xb7\xe9\xde\x6b\x90\ -\xc9\x51\x35\x3c\x76\x7b\x94\xf2\xe9\x80\xf6\xa8\x28\xfa\x0c\x18\ -\x41\x4d\x75\x15\x9b\x37\xac\xf4\xe7\x76\x8d\x81\x93\x80\x49\x48\ -\x9d\x00\x61\x31\x92\x00\xfc\x59\x63\x8c\x87\x7f\x2b\xdd\x8e\xcd\ -\x5b\xb4\xe4\xcb\x1f\xa6\x91\x9e\x91\xa1\xbd\xc0\x6b\x45\x69\x19\ -\xf1\x51\x51\x1c\x93\x1e\xfa\x72\xc1\x3e\xe0\x9e\x95\x6b\xf8\x65\ -\xaf\xde\xd4\xa5\xc3\xe1\xe0\xdd\x0f\x3f\xe6\x98\xbe\x52\xe6\xf7\ -\x50\xaa\xaa\x2a\xb9\xed\x1f\xd7\xe1\x71\xab\x4d\xa7\x8c\x3d\xfb\ -\x2a\x4e\x1e\x7b\xb1\xc9\x51\x35\x4c\x76\xbb\x1d\xb7\xd3\x89\x57\ -\x71\xa5\xbf\xcd\x66\xa3\x6b\xcf\x81\xc4\xc7\x27\xb2\x7a\xc5\x02\ -\xfc\xa8\xfc\xdb\x04\x18\x0a\x4c\x06\xac\x7d\xd0\x83\x68\x50\x24\ -\x01\xf8\x43\x1a\x7e\x16\xf9\x69\xd3\xb6\x1d\x53\xbf\xfd\x89\xe6\ -\x2d\x5a\x32\x70\xf0\x50\x76\x6c\xdb\xca\xaa\x95\x2b\xb4\xae\x31\ -\xb7\xa8\x98\x36\x89\x09\xb4\x4f\x4a\xd2\xbd\x7d\x40\xbd\xb8\x71\ -\x33\x13\xb7\xeb\x6d\xf7\x03\x78\xf8\xbf\x4f\x72\xd6\xb9\x17\x98\ -\x10\x51\x64\x98\x39\x7d\x1a\x1f\x7f\xf4\xbe\x52\xdb\x84\xc4\x64\ -\xee\x7c\xf0\x0d\xd9\xe2\x67\x26\x1b\xb8\x5c\x7a\xd5\x2c\xdb\x76\ -\xe8\x4e\x93\xdc\x96\x2c\x5b\x3c\xeb\xa8\x3b\x09\x0e\xa1\x05\x70\ -\x0c\xf0\x31\xe0\xf7\x1e\x43\x21\x02\x29\xbc\xeb\xd2\x06\x4e\x02\ -\xf0\x15\xd0\x4b\xb7\x63\xc7\xce\x5d\x98\xfa\xed\xcf\x34\xcd\x35\ -\x36\x0a\xd8\x6c\x36\x9e\x7e\xe1\x55\x06\x0d\x1d\xa6\x75\x1d\xaf\ -\xcf\xc7\x9d\x2b\x56\x6b\x1f\xad\x1b\x48\x9f\xee\xca\xe3\xe5\x4d\ -\x5b\xb4\xfb\x5d\x72\xf9\x55\x5c\x7d\xdd\xdf\x4d\x88\x28\x72\xcc\ -\x99\xfd\x9b\x72\xdb\xe1\x23\xcf\x24\x21\x31\xd9\xc4\x68\x44\x4c\ -\x4c\x1c\x36\x3f\xd6\x40\xf7\x1b\x74\x22\x37\xdf\xf5\x1c\xb1\x71\ -\x7e\x55\xb5\x1c\x05\x4c\x40\x7e\xee\x0a\x8b\x90\x6f\x44\x88\x06\ -\x3e\xc1\x18\xa2\xd3\xd2\xbd\x47\x2f\xa6\x7e\xf3\x13\x8d\x9b\xfc\ -\x79\xad\x60\x74\x4c\x0c\xef\xbe\x3f\x99\xb6\xed\xda\x6b\x5d\xcf\ -\xe9\xf5\x72\xc3\x92\x65\x6c\xac\x08\x7e\x35\xd1\xd9\x85\x45\xdc\ -\xbf\x4a\x6d\x7e\xfa\x40\x83\x87\x1e\xcb\x63\x4f\x3d\x67\x42\x44\ -\x91\x65\xf5\x8a\xe5\xca\x6d\x4f\x1c\xad\x75\xd6\x94\xf0\x83\xcd\ -\x66\xf3\x7b\x84\xa5\x53\xd7\x3e\xdc\x7a\xcf\x0b\xc4\x27\xf8\x35\ -\x5a\x77\x01\xf0\xb2\x5f\x37\x16\x22\xc0\x1a\x7a\x02\x60\x07\xc6\ -\x03\xa7\xea\x76\xec\xd6\xbd\x27\x9f\x7c\xf9\x2d\x19\x99\x87\x3e\ -\x0b\x3d\x2d\x3d\x83\x89\x1f\x4f\x25\x3d\x23\x43\xeb\xba\x65\x2e\ -\x37\xd7\x2c\x5e\xca\x3e\x3f\xab\xc4\xf9\x63\x5d\x79\x05\x37\x2d\ -\x5d\xa1\xbd\xd7\xbf\x55\xeb\x36\xbc\x3d\x71\x12\xd1\xd1\xd1\x26\ -\x45\x16\x39\x36\x6f\xda\xa8\xd4\x2e\x25\x35\x83\x16\xad\x3a\x98\ -\x1c\x8d\x00\xfc\x7d\x8b\x07\xa0\x6d\x87\x1e\xdc\x76\xef\x4b\x24\ -\x26\xa5\xf8\xd3\xfd\x3a\x8c\x63\x84\x85\x08\xa9\x86\x9e\x00\xbc\ -\x08\x5c\xa8\xdb\xa9\x63\xe7\x2e\x4c\xfe\xfc\x1b\xd2\xd2\x8f\xfc\ -\x70\x6f\xd3\xb6\x1d\xef\x7e\xf0\x09\x31\xb1\x7a\x6f\x1a\xbb\xab\ -\x6b\xb8\x76\xf1\x32\x2a\xdd\xe6\x9f\x30\xba\xa7\xa6\x96\x6b\x17\ -\x2f\xa5\x42\x71\x71\x5a\x9d\xd4\xd4\x34\x26\x4c\xfa\x54\x3b\xc1\ -\x69\xa8\x4a\x8a\x8b\x95\xda\xb5\x69\xdf\xcd\xe4\x48\x44\x1d\x87\ -\x23\x1a\xbb\xdd\xff\x65\x50\xad\xda\x74\xe6\x9f\xf7\xbf\x4a\x72\ -\x4a\xba\x3f\xdd\x1f\x02\x2e\xf1\xfb\xe6\x42\x04\x40\x43\x4e\x00\ -\x6e\x03\x6e\xd0\xed\xd4\xb6\x5d\x7b\x3e\xfe\xfc\x5b\x32\xb3\xd4\ -\xb6\xed\x0d\x1c\x3c\x84\x67\x5e\x7c\x4d\xbb\x74\xeb\xea\xb2\x72\ -\x6e\x5a\xa6\xff\x56\xae\xa3\xc2\xed\xe6\xda\xc5\x4b\xc9\xaf\xd1\ -\x1b\x6d\x88\x8e\x89\xe1\xed\xf7\x27\xd1\xa1\x53\x67\x93\x22\x8b\ -\x2c\x1e\x8f\x87\xf2\xf2\x32\xa5\xb6\x4d\x9b\x85\xdf\x41\x51\xe1\ -\xac\xbe\x95\x15\x9b\xb5\x68\xc7\xbf\x1e\x7c\xcd\x9f\xa3\x95\x6d\ -\xc0\x5b\x80\x1c\x94\x21\x42\xa6\xa1\x26\x00\x63\x80\x27\x74\x3b\ -\xb5\x68\xd9\x8a\x29\x5f\x7d\xff\x97\x39\xff\xa3\x39\xe7\xfc\x0b\ -\xb9\xfd\xce\x7f\xeb\xde\x8e\x59\x05\x85\x7e\xd5\xe0\x57\xe1\xf6\ -\xf9\xb8\x79\xe9\x0a\xd6\x6a\x1e\xed\x6b\xb3\xd9\x78\xe6\xc5\xd7\ -\x18\x7a\xec\x71\xa6\xc4\x15\x89\xca\xcb\x4a\xf1\x7a\xd5\x16\x7e\ -\xd7\x67\x58\x5a\xe8\x8b\x89\xa9\x7f\x69\xe5\x26\x4d\x5b\x71\xc7\ -\x03\xaf\x91\x9a\x76\xe8\xe9\xc0\x23\xdd\x1e\xf8\x0c\x3f\x8f\x17\ -\x17\xa2\xbe\x1a\x62\x02\xd0\x1d\xf8\x10\xcd\x2d\x90\x39\x4d\x9b\ -\xf2\xe9\xd7\x3f\x90\xd3\x34\xd7\xaf\x9b\xde\x7e\xd7\xbf\x39\xfb\ -\x3c\xfd\x6d\x72\x9f\xee\xda\xcd\x4b\x7e\xac\xcc\x3f\x12\x1f\xf0\ -\xef\x95\x6b\x98\x55\x78\xe8\xf3\xd1\x8f\xe4\x5f\xff\xbe\x9f\x73\ -\x2f\x18\x17\xd0\x78\x22\x9d\xc7\xa3\xbe\xeb\x2b\x3a\x3a\xc6\xc4\ -\x48\xc4\xc1\xa2\xa2\xa2\x70\x44\xd5\x7f\x0d\x4b\x76\x93\xe6\xdc\ -\xfa\xef\x17\x49\x4a\xd6\x3e\xe0\x2b\x0d\xf8\x06\x93\xab\x8e\x0a\ -\x71\x28\x0d\x2d\x01\xc8\x02\xa6\x02\x5a\x7b\xac\x52\x52\x52\x79\ -\xff\x93\xcf\x69\xde\xa2\xa5\xdf\x37\xb6\xd9\x6c\x3c\xf7\xf2\x1b\ -\x0c\x19\x36\x5c\xbb\xef\x4b\x1b\x37\xf3\xe9\xae\x3c\xbf\xef\x7d\ -\xb0\x27\xd6\x6d\xe0\xf3\xdd\xfa\xd7\xbb\xf0\x92\xcb\xb8\xf5\x8e\ -\xbb\x03\x16\x47\x43\x91\x92\x9a\xaa\x3c\x05\x54\x8f\x13\xe8\x84\ -\x9f\x02\x55\x6f\x21\xb7\x79\x5b\x6e\xfb\xf7\x4b\xfe\x6c\xe1\x6c\ -\x89\x31\x12\x20\x85\x1f\x44\x50\x35\xa4\x04\x20\x06\xa3\x26\x77\ -\x5b\x9d\x4e\x71\xf1\xf1\x4c\x98\xfc\x19\x5d\xbb\xf5\xa8\x77\x00\ -\xd1\x31\x31\xbc\x35\xe1\x23\xda\xb4\x6d\xa7\xd5\xcf\x07\xdc\xbf\ -\x6a\x0d\xb3\x0a\x0a\xeb\x1d\xc3\x9b\x5b\xb6\xf1\xce\xd6\xed\xda\ -\xfd\x86\x0c\x1b\xce\x13\xcf\xa8\xd7\xb1\x17\x7f\x88\x8e\x8e\x26\ -\x21\x41\xed\x6c\x84\xa2\xc2\x3d\x26\x47\x23\x0e\xa6\xbb\x48\xf7\ -\x48\x9a\xb7\xea\xc0\x4d\x77\x3e\xeb\xcf\x54\xce\x20\xe0\x8d\x80\ -\x05\x22\x84\x82\x86\x94\x00\xbc\x05\x68\xbd\x7e\x47\x45\x45\xf1\ -\xda\xdb\x13\x18\x38\x78\x48\xc0\x82\x48\xcf\xc8\x60\xe2\xe4\xcf\ -\x8e\xba\x83\xe0\x60\x6e\x9f\x8f\x9b\x96\xad\x60\xb5\x66\x7d\xfe\ -\x03\x7d\xb6\x2b\x8f\xa7\xd7\xab\x6d\x47\x3b\x50\xd7\x6e\x3d\x18\ -\x3f\x69\x0a\xd1\x31\x32\x3c\xed\xaf\x94\x54\xb5\xa1\xe1\xa2\x82\ -\x7c\x93\x23\x11\x07\xb3\xdb\x03\x33\x0d\x50\xa7\x6d\x87\xee\xdc\ -\x70\xfb\x13\x38\xf4\xa7\x73\x2e\x05\xfe\x11\xb0\x40\x84\x38\x8a\ -\x86\x92\x00\xdc\x8d\xe6\x96\x1b\x9b\xcd\xc6\x13\xcf\xbe\xc4\x29\ -\xa3\xc7\x06\x3c\x98\xb6\xed\x3b\x30\xfe\xa3\x29\xc4\xc5\xeb\xbd\ -\x25\x54\xba\x3d\x5c\xb3\x68\x29\xdb\xaa\xf4\x87\x89\xa7\xed\x2b\ -\xe0\xde\x55\x6b\xb4\xab\x98\xe7\x34\xcd\xe5\xfd\x4f\x3e\x27\x29\ -\x49\x2a\xd3\xd5\x47\xf3\x16\x2d\x94\xda\x6d\xdb\xb2\x0e\x9f\x89\ -\x3b\x3f\xc4\xa1\x05\x72\x14\x00\xa0\x4b\xf7\xfe\x5c\x73\xe3\xc3\ -\xd8\x6c\xda\x3f\x62\x9f\x01\x8e\x0f\x68\x30\x42\x1c\x46\x43\x48\ -\x00\xc6\x02\xff\xd1\xed\x74\xeb\x1d\x77\x73\xd1\x65\x57\x98\x10\ -\x8e\x61\xc0\xa0\xc1\xbc\xfa\xd6\x78\xa2\xa2\xf4\xf6\x21\x17\x38\ -\x9d\x5c\xb1\x50\xef\x98\xde\x45\xc5\x25\xdc\xba\x6c\x05\x1e\xcd\ -\x07\x4b\x4a\x4a\x2a\x1f\x4e\xf9\x82\x9c\xa6\x4d\xb5\xfa\x89\xbf\ -\xea\xd4\x59\x6d\xa1\x77\x65\x45\x29\x7b\xf3\xf5\xcf\x62\x10\xf5\ -\x63\xc6\xb9\x0b\xc7\x0c\x18\xc1\xb9\x17\x6b\xbf\xd0\x3b\x30\xce\ -\x0b\x68\x15\xf0\x80\x84\x38\x48\xa4\x1f\x06\xd4\x12\xf8\x1e\xa3\ -\xd6\xbf\xb2\xd3\xce\x3c\x87\xff\x3e\xfd\x9c\xf6\xde\x7d\x5d\xed\ -\x3b\x74\x24\xab\x51\x36\x3f\xff\xf0\x9d\x56\xbf\x72\xb7\x9b\x59\ -\x05\x45\x8c\xce\x69\x4c\xdc\x51\x12\x88\xf5\xe5\x15\x5c\xb9\x68\ -\x89\x76\x51\xa1\xe8\xe8\x68\xc6\x4f\x9a\x42\xdf\xfe\x03\xb4\xfa\ -\x89\x43\xdb\xbe\x6d\x2b\xd3\x7e\xfa\x41\xa9\x6d\xc7\xae\x7d\xa4\ -\x1a\x60\x90\xd9\x6c\x76\x5c\xce\x5a\x7c\x8a\x27\x04\xaa\x6a\xdb\ -\xa1\x3b\x15\x65\x25\x6c\xdd\xb4\x5a\xa7\x5b\x02\x46\x69\xf2\x09\ -\x80\xf9\xd5\xc0\x44\x83\x15\xc9\x09\x40\x0c\xf0\x1d\xa0\xb5\xe2\ -\xae\x77\x9f\x7e\x8c\xff\xf0\x93\xa0\x95\xb7\xed\xd5\xbb\x0f\x5e\ -\xaf\x97\xdf\x35\x0e\x8b\x01\x28\x72\x3a\x59\x58\x5c\xc2\xe8\x9c\ -\xc6\x44\xdb\x0f\x3d\x90\xb3\xab\xba\x86\x4b\x17\x2c\xa6\xc8\xa9\ -\x77\x02\xa9\xcd\x66\xe3\xd9\x97\x5e\xe7\xd4\xb1\xa7\x6b\xf5\x13\ -\x87\x57\x55\x55\xa9\x7c\x1a\x60\x72\x72\x1a\x7d\x07\x9e\x60\x72\ -\x44\xe2\x60\x5e\x9f\x17\xb7\x3b\xf0\xa7\xf5\x76\xed\x39\x88\x1d\ -\x5b\xd7\xb3\x27\x4f\x6b\xf1\x6d\x53\x20\x03\xf8\x36\xe0\x01\x09\ -\xb1\x5f\x24\x27\x00\x4f\x03\x67\xeb\x74\x68\x92\x93\xc3\x27\x5f\ -\x7c\x17\xf4\xf2\xb6\x43\x8e\x1d\x4e\x61\x61\x01\x4b\x17\x2f\xd4\ -\xea\x97\x5f\x53\xcb\xf2\xd2\x32\x4e\x6d\xd2\x98\xa8\x83\x46\x2b\ -\x8a\x9d\x2e\x2e\x5d\xb8\x98\x5d\xd5\x35\xda\xf1\xdc\xfb\xd0\x7f\ -\xb8\xe2\x9a\xeb\xb4\xfb\x89\xc3\xcb\xcc\xca\xe2\x95\xe7\x9f\x51\ -\x2a\x08\x54\x51\x56\xc2\xe8\xb3\xae\x0c\x42\x54\xe2\x40\x36\x9b\ -\x0d\x67\xad\xfe\xbf\x17\x95\xeb\xf6\xee\x37\x9c\x35\x2b\x17\x50\ -\x5c\xb4\x57\xa7\x6b\x3f\x60\x13\xa0\x7e\x92\x94\x10\x1a\x22\x75\ -\x0d\xc0\x99\xc0\x4d\x3a\x1d\x12\x13\x93\xf8\x20\x84\xf3\xdd\x8f\ -\x3c\xfe\x14\x27\x8d\x1a\xad\xdd\x6f\x4e\x61\x11\x77\xaf\x5c\x8d\ -\xf7\x80\xf9\xfd\x4a\xb7\x87\xab\x17\x2d\x65\x4b\xa5\xfe\x62\xc1\ -\x6b\x6f\xf8\x07\x37\xde\xf2\x4f\xed\x7e\xe2\xc8\x12\x13\x93\xe8\ -\xde\xb3\xb7\x52\xdb\xbd\x7b\x76\x92\xb7\x6b\xab\xb9\x01\x89\xbf\ -\x70\x38\xa2\xfd\x59\xb4\xa7\x24\x3a\x26\x96\x1b\x6e\x7f\x82\x8c\ -\xcc\xc6\xba\x5d\x5f\x01\x3a\x99\x10\x92\x10\x11\x99\x00\xb4\x01\ -\xde\x01\xf5\xc3\xbe\x6d\x36\x1b\xcf\xbd\xf2\x7a\x40\xf6\xfa\xfb\ -\xcb\xe1\x70\xf0\xfa\xbb\x13\xfd\x9a\x73\xff\x3a\x6f\x0f\x8f\xae\ -\x5d\x0f\x80\xcb\xeb\xe5\xc6\xa5\xcb\x59\x59\xa6\x56\x7b\xfe\x40\ -\x67\x9d\x7b\x01\x0f\x3e\xfa\x7f\xda\xfd\x84\x9a\x41\x43\x87\x29\ -\xb7\x9d\x37\xeb\x7b\x13\x23\x11\x87\x63\x66\x25\xc6\xd4\xb4\x4c\ -\xae\xbf\xed\x71\xdd\x7b\x24\x63\x2c\x0a\xd4\x5a\xc7\x24\x84\x8a\ -\x48\x9b\x02\x88\xc5\x98\xf7\xd7\x3a\x51\xe5\x86\x9b\x6f\xe3\xda\ -\xeb\x43\xbf\xfd\x36\x3a\x3a\x9a\x51\x63\x4e\xe7\x87\xef\xbe\xa6\ -\xa8\x50\xaf\xe8\xcf\xf2\xd2\x32\x7c\xc0\xc7\x3b\x77\x33\x7d\x5f\ -\x81\xf6\xbd\x47\x9c\x70\x22\x6f\xbc\xf7\x01\x0e\x87\x43\xbb\xaf\ -\x50\xe3\x71\xbb\xf9\xf4\xe3\x49\x4a\x6d\xab\xaa\x2a\x18\x79\xaa\ -\x7e\xe9\x68\x51\x4f\x3e\x1f\x2e\x97\x79\x47\x71\xa7\x65\x34\x22\ -\x35\x3d\x8b\x65\x8b\xb4\xd6\xfc\x34\xc6\x58\x0f\xf0\x8d\x39\x51\ -\x89\x86\xca\xdc\x65\xee\xc1\xf7\x12\xf0\x77\x9d\x0e\x43\x8f\x3d\ -\x8e\x49\x53\xbf\xb6\xd4\x83\x2f\x6f\xf7\x2e\x46\x8f\x1c\xce\xee\ -\x5d\x3b\x83\x72\xbf\x5e\xc7\xf4\xe5\xd3\xaf\xbf\x27\x31\x31\x29\ -\x28\xf7\x6b\xa8\x9c\xb5\xb5\x74\x69\xd3\x8c\x8a\x8a\xa3\x17\x73\ -\xb2\xd9\x6c\xbc\x3a\x71\x16\x59\xd9\xb2\x05\x33\x98\x7c\x3e\x2f\ -\x25\xc5\xfa\x09\xb4\xae\xf7\xdf\x7a\x9c\x19\x3f\x4f\xd5\xe9\xe2\ -\x03\x4e\x07\xbe\x32\x27\x22\xd1\x10\x45\xd2\x14\xc0\xe9\x68\x3e\ -\xfc\x73\x9b\x35\xe7\xf5\x77\xdf\xb7\xd4\xc3\x1f\x8c\xe2\x3b\x13\ -\x3f\xfe\x8c\x94\x14\xed\x83\x45\xb4\xb5\x6d\xdf\x81\x0f\xa7\x7c\ -\x21\x0f\xff\x20\x88\x89\x8d\x65\xc4\xc8\x93\x94\xda\xfa\x7c\x3e\ -\xe6\xcf\xf9\xd1\xe4\x88\xc4\xc1\x6c\x36\x3b\x51\x51\xe6\xff\x3c\ -\xb8\xe0\xb2\xdb\x68\xd3\xbe\x9b\x4e\x97\xba\xe3\x83\xb5\x17\x11\ -\x08\x71\x38\x91\x92\x00\x64\x01\xaf\xeb\x74\x88\x89\x8d\xe5\x9d\ -\xf7\x27\x91\x99\xa5\x7d\x8e\x77\x50\x74\xed\xd6\x83\x89\x1f\x4f\ -\x25\x3e\xde\xbc\xa9\xbf\x9c\xa6\x4d\x99\x3c\xf5\x6b\x32\x32\xb5\ -\x8f\x31\x15\x7e\x1a\x35\x46\xbd\xb2\xe4\x5c\x59\x07\x10\x12\xc1\ -\x38\x91\xd1\x11\x1d\xc3\xf5\xb7\x3e\x4e\x4a\xaa\xd6\x8e\xa3\x6c\ -\x34\xd7\x37\x09\x71\x24\x91\x92\x00\xbc\x82\x66\x66\x7c\xdf\x43\ -\x8f\xd2\xb3\x77\x1f\x93\xc2\x09\x8c\x01\x83\x06\xf3\xf6\xc4\x8f\ -\x4c\xa9\xc1\x9f\x96\x9e\xc1\x87\x53\xbe\xa4\x59\x73\xb5\x12\xb5\ -\x22\x30\x46\x9e\x3c\x4a\xf9\xef\x73\xed\xca\x85\x94\x96\xd4\xff\ -\x00\x28\xa1\xc7\x8f\x1a\xfe\x7e\x49\xcb\x68\xc4\xd5\xff\xd0\x2e\ -\x17\x7c\x2a\x70\x83\x49\x21\x89\x06\x26\x12\x12\x80\x0b\x81\x73\ -\x75\x3a\x9c\x70\xd2\x29\x5c\x7d\x9d\xd6\x6c\x41\xc8\x1c\x7f\xe2\ -\xc9\xbc\xfe\xce\x44\xed\x92\xc1\x47\x92\x90\x90\xc8\xf8\x8f\xa6\ -\xd0\xb9\xab\xd6\x10\xa4\x08\x80\x94\x94\x54\x86\x2a\x1e\x09\xed\ -\xf5\x7a\x58\x38\xf7\x67\x93\x23\x12\x07\x73\x38\xa2\xb1\x05\xe9\ -\x25\xbb\x73\xb7\x7e\x9c\x3c\xf6\x22\xdd\x6e\x4f\x00\xed\x4d\x08\ -\x47\x34\x30\xe1\xbe\x0b\x20\x07\x63\x51\x8c\xf2\x38\x79\x4e\xd3\ -\xa6\x4c\xfa\xec\x6b\x12\x12\xc2\x67\x57\x4d\xfb\x8e\x9d\x68\xde\ -\xbc\x25\xdf\x7f\x5b\xff\xf5\x3f\x71\xf1\xf1\x7c\x30\xe5\x73\x06\ -\x0d\x19\x1a\x80\xc8\x84\x3f\xaa\xaa\xaa\xf8\xe9\x7b\xb5\x02\x6f\ -\x3e\xaf\x97\x61\xc7\x4b\x45\xc6\x60\xb2\xd9\x6c\xb8\x9c\x4e\xbc\ -\x01\x2e\x0b\x7c\x38\x1d\xbb\x1c\xc3\xaa\xe5\xf3\x28\x29\xda\xa7\ -\xda\x25\x1a\xe8\x03\xbc\x07\xda\xe7\x7b\x09\xf1\x3f\xe1\x3e\x02\ -\xf0\x3a\xa0\x3c\x81\x1d\x15\x15\xc5\x2b\x6f\x8e\x0f\xcb\x39\xef\ -\xf3\xc6\x5d\xcc\xbd\x0f\x6a\x9f\x69\xf4\x27\xd1\xd1\xd1\xbc\x35\ -\xfe\x43\x06\x0f\x3d\x36\x40\x51\x09\x7f\x9c\x72\xea\x58\xec\x87\ -\x29\xdf\x7c\xb0\xe5\x4b\x66\x53\x53\xad\x5f\xd0\x49\xd4\x8f\x23\ -\x48\xa5\xc0\x01\xa2\xa2\x1c\x5c\x7d\xe3\x43\xc4\xc6\x69\x9d\x0e\ -\x3a\x18\x99\x0a\x10\xf5\x14\xce\x23\x00\x97\x03\xff\xd2\xe9\x70\ -\xdb\xbf\xee\xe1\xfc\x8b\xb4\x4e\x05\xb6\x94\xfe\x03\x07\x53\x5b\ -\x5b\xcb\xfc\xb9\x73\xb4\xfb\x46\x45\x45\xf1\xca\x5b\xef\x31\x6a\ -\x8c\xbc\x4d\x86\x5a\x62\x52\x12\x33\xa6\xff\xcc\xae\x9d\x47\xdf\ -\xe6\xe9\xf5\x78\x68\xdd\xbe\x1b\xcd\x5b\xca\x88\x6f\x50\xf9\x7c\ -\x38\x9d\xe6\xd5\x03\x38\x58\x62\x52\x2a\xa9\x69\x59\x2c\xf8\x09\ -\xc5\x52\x00\x00\x20\x00\x49\x44\x41\x54\x5d\x38\x53\xa7\xdb\x70\ -\xe0\x23\xa0\xc4\x9c\xa8\x44\xa4\x0b\xd7\x04\xa0\x39\xf0\x25\x10\ -\xa7\xda\xa1\x47\xaf\x63\x78\xf1\xf5\xb7\x03\x3a\x97\x1e\x0a\xc3\ -\x86\x8f\xa0\x70\xdf\x3e\x96\x2e\x59\xa4\xdc\xc7\x66\xb3\xf1\xf4\ -\x0b\xaf\x72\xce\xf9\xe3\x4c\x8c\x4c\xe8\x28\x29\x29\x61\xc6\x34\ -\xb5\xf9\x7d\x87\x23\x9a\x81\x43\x4f\x31\x39\x22\x71\x20\xbb\xdd\ -\x4e\x4d\x4d\x70\x47\x5e\x5a\xb4\xea\x40\xde\xae\xad\xec\xde\xb9\ -\x59\xb5\x4b\x0c\xd0\x1d\x98\x68\x5e\x54\x22\x92\x85\xeb\x14\xc0\ -\x1b\x80\xf2\x26\xf9\xd8\xb8\x38\x5e\x7a\xfd\xed\xa0\x9d\xf0\x67\ -\x26\x9b\xcd\xc6\x63\x4f\x3d\xa7\x35\x92\xf1\xf0\x7f\x9f\xe4\xc2\ -\x4b\x2e\x33\x31\x2a\xa1\x6b\xf4\x69\x67\x28\xb7\x5d\x3c\x7f\x1a\ -\x1e\xb7\xdb\xc4\x68\xc4\xc1\x6c\x36\x3b\x76\x7b\xf0\x5f\x16\x2e\ -\xbe\xea\x4e\xdd\xad\x81\xc7\x03\x57\x9b\x14\x8e\x88\x70\xe1\x98\ -\x00\x9c\x0d\x68\xbd\x0e\xdd\x75\xef\x83\x74\xe8\xd4\xd9\xa4\x70\ -\x82\xcf\x6e\xb7\xf3\xcc\x8b\xaf\x71\xc6\xd9\xe7\x1d\xb5\xed\x9d\ -\xf7\x3e\xc0\x35\xd7\xdf\x18\x84\xa8\x84\x8e\x16\x2d\x5b\xd1\xbd\ -\x47\x2f\xa5\xb6\x95\x15\x65\xac\x5b\xad\x3e\xe2\x23\x02\xc3\xe1\ -\x08\xfe\x0b\x43\x62\x52\x0a\xe3\xae\xbc\x43\xb7\xdb\xe3\x40\x23\ -\x13\xc2\x11\x11\x2e\xdc\xc6\xc3\x13\x31\x56\xfd\x2b\xbf\xfd\x0f\ -\x18\x3c\x84\x27\x9f\x7b\x19\x9b\x2d\xb2\x6a\x67\xd8\xed\x76\x4e\ -\x3e\x75\x0c\x3b\xb7\x6f\x63\xf5\xca\x15\x7f\xf9\x73\x9b\xcd\xc6\ -\x9d\xf7\x3e\xc0\xad\x77\xdc\x1d\x82\xe8\x84\x8a\x82\x82\xbd\xcc\ -\xfe\x6d\x86\x52\xdb\x46\x8d\x9b\xd1\xb5\xe7\x40\x93\x23\x12\x07\ -\xf2\x79\x3d\xb8\x5c\xce\xa0\xdf\xb7\x69\xb3\xd6\xec\xdc\xb6\x91\ -\xfc\xdd\x5b\x55\xbb\xc4\x63\x24\x00\x5f\x98\x16\x94\x88\x48\xe1\ -\x96\x00\x3c\x82\x51\x08\x43\x49\x42\x42\x22\x93\xa7\x7e\x4d\x7a\ -\xba\xd6\x90\x5a\xd8\x88\x8a\x8a\xe2\xd4\xb1\xa7\xd3\xad\x47\x4f\ -\x2a\x2b\x2b\xa9\xa9\xae\x26\x33\x2b\x8b\x11\x23\x4f\xe2\xa9\x17\ -\x5e\xe1\xac\x73\xe5\x30\x19\x2b\x4b\x4b\x4b\x67\xfc\xdb\x6f\xa8\ -\x35\xb6\xc1\x88\x93\xce\x31\x37\x20\xf1\x17\xce\xda\x9a\x90\xdc\ -\xb7\x43\x97\xde\xcc\x9a\xfe\x95\x4e\x02\xd2\x13\x98\x06\x6c\x37\ -\x2f\x2a\x11\x69\xc2\xe9\xb5\xb8\x03\xb0\x1c\xe3\xc4\x3f\x25\x0f\ -\x3e\xfa\x7f\x5c\x77\xe3\xcd\xe6\x45\x24\x44\x3d\xf8\x7c\x3e\x7a\ -\x75\x6a\xcd\x9e\xfc\xfc\xa3\xb6\x8d\x8e\x89\x65\xc2\x67\xcb\x88\ -\x8e\x51\xfe\xf6\x17\xf5\xe4\xf3\xf9\x28\x29\x56\xde\x9b\x1f\x70\ -\xb3\x7f\xfd\x9a\xf7\x5e\x7b\x44\xa7\xcb\x2a\xa0\x37\xe0\x32\x27\ -\x22\x11\x69\xc2\x69\x0d\xc0\xab\x68\x3c\xfc\xbb\xf7\xec\x1d\x36\ -\xd5\xfe\x44\xc3\x64\xb3\xd9\x18\x36\x7c\x84\x52\x5b\x97\xb3\x96\ -\x0d\x6b\x97\x9a\x1c\x91\x38\x90\xcd\x66\x0b\xca\xc1\x40\x87\x33\ -\x78\xf8\x68\xba\x74\xef\xaf\xd3\xa5\x2b\x70\xab\x49\xe1\x88\x08\ -\x14\x2e\x09\xc0\x05\x18\xab\x5d\x95\x44\x45\x45\xf1\xf4\x0b\x2f\ -\x5b\xee\x94\x3f\x21\x0e\x76\xec\x71\x27\x28\xb7\x5d\xb9\x6c\xae\ -\x89\x91\x88\x43\x09\x65\x02\x60\xb3\xd9\xb8\xf8\x9a\xbb\x74\x0f\ -\x27\xba\x17\x68\x62\x52\x48\x22\xc2\x84\x43\x02\x90\x0c\x3c\xa5\ -\xd3\xe1\x9a\xeb\x6f\xa4\x47\xaf\x63\x4c\x0a\x47\x88\xc0\x19\x76\ -\x9c\x72\x5e\xcb\x96\x8d\x2b\x4d\x8c\x44\x1c\x4a\x28\x13\x00\x80\ -\x46\xd9\xb9\x9c\x34\xf6\x62\x9d\x2e\xc9\x18\x6b\xa5\x84\x38\xaa\ -\x70\x48\x00\x1e\x00\x72\x55\x1b\xa7\x67\x64\xf0\xcf\xbb\xef\x35\ -\x31\x1c\x21\x02\x27\xa7\x69\x53\x72\x9b\x35\x57\x6a\xbb\x6d\xcb\ -\x3a\x93\xa3\x11\x07\x8b\xb2\xc0\x28\xe2\xa9\xa7\x5f\x46\x46\x96\ -\xd6\x4b\xfd\x15\x80\xda\x1e\x53\xd1\xa0\x59\x3d\x01\x68\x0d\xfc\ -\x43\xa7\x43\x71\x51\x11\x23\x87\x0e\xe0\x95\x17\x9e\xa5\xb8\xa8\ -\xc8\xa4\xb0\x84\x08\x9c\x8e\x8a\x35\x2a\xf6\xed\xd9\x49\x6d\x6d\ -\xb5\xc9\xd1\x88\x03\x59\xa1\x72\x68\x4c\x6c\x1c\xe7\x5e\xa4\xf5\ -\x63\x30\x0a\x78\xc6\xa4\x70\x44\x04\xb1\x7a\x02\xf0\x30\x46\xb9\ -\x4b\x2d\x5b\xb7\x6c\xe6\xe1\xfb\xee\xa6\x57\xe7\x36\xdc\xf2\xf7\ -\x6b\xd9\xbc\x69\xa3\x09\xa1\x09\x11\x18\xaa\x45\xaa\x7c\x3e\x1f\ -\x05\x7b\x77\x9b\x1c\x8d\x38\x90\xdd\x1e\x15\xb4\xa3\x81\x8f\xa4\ -\xef\xa0\x91\x74\xea\xda\x47\xa7\xcb\x08\x40\xbd\xdc\xa4\x68\x90\ -\xac\x9c\x00\xf4\x04\xea\x55\xbc\xbe\xb6\xa6\x86\x49\xef\x4f\xe0\ -\xd8\xfe\xbd\xb8\xe9\xfa\xab\xd9\xb2\x79\x53\x80\x42\x13\x22\x70\ -\x3a\x74\x54\xaf\x52\x59\xb0\x2f\xcf\xc4\x48\xc4\xa1\x84\x7a\x1d\ -\x40\x9d\x0b\x2e\xbb\x1d\xbb\xde\x88\xc4\xff\x01\xd6\x08\x5e\x58\ -\x92\x95\x13\x80\xff\x12\xa0\xf8\xdc\x6e\x37\x1f\x7f\xf8\x3e\xc3\ -\xfa\xf5\xe4\x5f\xb7\xdc\x48\x69\x49\x71\x20\x2e\x2b\x44\x40\xb4\ -\x68\xd5\x4a\xb9\x6d\x45\x99\x7c\xef\x06\x9b\xe6\x43\xd7\x34\xb9\ -\x2d\xda\x72\xdc\x89\x67\xeb\x74\xe9\x80\xb1\x1e\x40\x88\x43\xb2\ -\x6a\x02\x70\x2c\x30\x2a\xd0\x17\x75\xbb\xdd\x4c\x78\xf7\x2d\x06\ -\xf4\xea\xca\xc4\xf7\xde\xc6\xe7\xf3\x05\xfa\x16\x42\x68\x4b\x4e\ -\x4e\x56\x6e\x1b\xec\x13\xea\x84\x75\x46\x00\x00\xc6\x9e\x7d\x15\ -\xf1\xf1\x89\x3a\x5d\x1e\xc4\x28\x15\x2c\xc4\x5f\x58\x31\x01\xb0\ -\x01\x4f\x98\x79\x83\x92\xe2\x22\xee\xb8\xf9\xef\x9c\x33\xf6\x14\ -\xf2\x76\xef\x32\xf3\x56\x42\x1c\x55\x8c\x46\x75\xbf\x50\xd4\xa6\ -\x6f\xe8\xac\xb0\x10\xb0\x4e\x52\x72\x1a\x27\x8e\xb9\x48\xa7\x4b\ -\x53\xe0\x7a\x93\xc2\x11\x61\xce\x8a\x09\xc0\x59\xc0\x80\x60\xdc\ -\x68\xf6\x6f\x33\x38\x61\x68\x7f\x7e\x55\x3c\x97\x5d\x08\x33\xe8\ -\x3c\xd4\xa3\x1d\xda\x6b\x62\x45\x3d\x85\xe2\x58\xe0\x23\x39\x69\ -\xf4\x38\xdd\x23\x83\xef\x06\x52\x4c\x0a\x47\x84\x31\xab\x25\x00\ -\x0e\xe0\x3f\xc1\xbc\x61\x51\x61\x21\x17\x9d\x73\x3a\x2f\x3c\xf3\ -\x84\x4c\x09\x88\x90\x28\x2d\x2d\x55\x6e\xeb\xd0\xab\x0a\x27\x02\ -\xc0\x1e\x65\xad\x1f\x93\xb1\x71\xf1\x8c\x3e\x53\x6b\x6a\x3f\x0b\ -\xb8\xc5\xa4\x70\x44\x18\xb3\xd6\x77\x36\x5c\x02\x74\x0a\xf6\x4d\ -\x3d\x1e\x0f\x8f\x3d\x74\x3f\x77\xdd\x76\x93\x24\x01\x22\xe8\xf2\ -\x76\xa9\x4f\x43\x69\xbe\xf9\x89\x00\xb0\xd9\xec\x96\xd8\x0a\x78\ -\xa0\x63\x47\x9e\x49\x66\xa3\x1c\x9d\x2e\xb7\xa2\x71\x8c\xba\x68\ -\x18\xac\x94\x00\xd8\x81\x3b\x55\x1b\xc7\xc6\xc6\xf3\x9f\x67\x3e\ -\xe1\xcc\x0b\xae\x27\x3d\x23\x3b\x20\x01\x8c\x7f\xe7\x4d\x49\x02\ -\x44\xd0\x6d\xda\xb8\x41\xb9\x6d\xa6\x5e\x45\x38\x11\x20\x56\xd9\ -\x09\x50\xc7\xe1\x88\xe6\xf4\xf3\xfe\xa6\xd3\x25\x0d\x90\xd3\xd1\ -\xc4\x9f\x58\x29\x01\x38\x13\xe8\xa8\xda\x78\xd4\xe9\x97\xd2\xa9\ -\x5b\x5f\x2e\xba\xf2\x5f\xbc\xf6\xc1\x6c\x6e\xbf\xef\x15\x3a\x76\ -\xd1\x2a\x94\x71\x48\xe3\xdf\x79\x93\xbb\x6f\x97\x23\x84\x45\xf0\ -\xac\x58\xae\x76\xca\x9f\xcd\x66\xa3\x51\x93\x66\x26\x47\x23\x0e\ -\xc5\x6e\xb7\xd2\x8f\x4a\xc3\xc0\xa1\x27\x93\xdb\xbc\xad\x4e\x97\ -\x5b\x00\xad\x2d\x04\x22\xb2\x59\x29\xad\x9d\x80\xb1\x62\xf5\xa8\ -\xe2\x13\x92\xb8\xfd\xde\x97\x89\x8d\x35\x76\xb7\xd8\xed\x76\x9a\ -\xb7\x6c\xcf\x09\xa7\x9c\x47\xef\x7e\xc7\x51\x5c\xb8\x97\xbc\x5d\ -\x5b\xfd\x0e\x64\xe9\x92\x45\x24\xa7\xa4\xd0\xb7\x7f\x50\xd6\x22\ -\x8a\x06\xcc\xe5\x72\x71\xdf\x9d\xb7\x53\x5b\x5b\x73\xd4\xb6\x8d\ -\x73\x5a\x70\xfa\xb9\xd7\x06\x21\x2a\x71\x30\xb7\xdb\x85\xc7\xe3\ -\x0e\x75\x18\x7f\x62\xb3\xd9\x48\x4c\x4e\x61\xd1\xbc\x69\xaa\x5d\ -\x12\x81\x02\x40\x8e\x95\x14\x80\x75\x46\x00\x46\x02\x7d\x55\x1b\ -\x8f\x3d\xfb\x2a\x92\x53\xd2\x0f\xf9\x67\xed\x3b\xf5\xe2\x9e\xff\ -\xbc\xc3\xa3\xcf\x4d\xd1\x3d\x4b\xfb\x4f\x1e\xb9\xff\x1e\x16\xcc\ -\x93\x7f\x27\xc2\x5c\xf3\xe7\xce\xa1\xb4\xb4\x44\xa9\x6d\xab\x36\ -\xea\x15\x03\x45\x60\x59\x6d\x27\x40\x9d\x3e\x03\x4e\xa0\x71\x4e\ -\x0b\x9d\x2e\xff\x04\xe2\x4c\x0a\x47\x84\x19\xab\x24\x00\x77\xa9\ -\x36\x4c\x4a\x4e\x63\xcc\x59\x57\x1d\xb5\x5d\xc7\x2e\x7d\x78\xe8\ -\xa9\x49\xdc\x78\xc7\x53\x24\xa7\x1e\x3a\x59\x38\x12\xb7\xdb\xcd\ -\xcd\xd7\x5f\x4d\x75\xb5\x14\x5e\x11\xe6\xf9\xe5\xc7\xef\x95\xdb\ -\x76\xd4\xab\x05\x2f\x02\xc8\x66\xb7\xd6\x22\xc0\x3a\x76\xbb\x9d\ -\x51\xa7\x5f\xa6\xd3\xa5\x29\x70\xb9\x39\xd1\x88\x70\x63\x85\x04\ -\xa0\x1f\x70\x82\x6a\xe3\xd1\x67\x5e\x41\x42\xa2\x5a\xe5\x34\x9b\ -\xcd\xc6\x71\x27\x9e\xcd\x0b\x6f\xfd\x42\x9f\x01\xea\xe7\xae\xd7\ -\xd9\xbc\x69\x23\x2f\x3d\xfb\xb4\x76\x3f\x21\x54\xfd\xf4\xc3\x77\ -\xca\x6d\xbb\xf5\x1c\x68\x62\x24\xe2\x48\xac\x3a\x02\x00\x30\x70\ -\xd8\x29\xba\xc7\x05\xdf\x8a\x35\x7e\xf6\x8b\x10\xb3\xc2\x37\x81\ -\xf2\xdb\x7f\x7c\x7c\x22\xa7\x9e\xa1\x95\xed\x02\x90\x9c\x9a\xce\ -\x5d\x0f\xbf\xc9\x79\x97\xdc\x82\xcd\xa6\xf7\x29\xbf\xf2\xc2\xb3\ -\xec\xc9\xcf\xd7\xbe\xa7\x10\x47\xb3\x61\xdd\x5a\x36\xac\x5b\xab\ -\xd4\x36\x39\x35\x9d\x56\x6d\xbb\x98\x1c\x91\x38\x1c\xbb\xe6\xcf\ -\x8d\x60\x8a\x8a\x72\x70\xf2\xd8\x8b\x75\xba\x74\x00\x46\x9b\x14\ -\x8e\x08\x23\xa1\xfe\xae\xee\x84\xc6\x91\x95\x27\x8f\xbd\x98\xc4\ -\x24\xff\xb6\xb2\xda\x6c\x76\xce\xbb\xe4\x66\x6e\xba\xf3\x69\xad\ -\x24\xa0\xba\xba\x8a\xb7\x5e\x7b\xd9\xaf\x7b\x0a\x71\x24\xef\x8f\ -\x7f\x47\xb9\x6d\x9f\xfe\xc7\x5b\xfa\x2d\x34\xd2\x59\x75\x0a\xa0\ -\xce\xb0\x11\xa7\x91\x9a\x96\xa9\xd3\xe5\x56\xb3\x62\x11\xe1\x23\ -\xd4\x09\xc0\x6d\xaa\x31\xc4\xc4\xc6\x29\xcd\xfd\x1f\xcd\xb0\xe3\ -\xcf\xe0\xea\x1b\x1f\xd2\xea\x33\xe1\xdd\xb7\xa8\xad\x39\xfa\x2a\ -\x6d\x21\x54\x39\x6b\x6b\xf9\xf8\xa3\xf7\x95\xdb\xf7\x1b\x34\xd2\ -\xc4\x68\xc4\xd1\xe8\x8e\x1c\x06\x5b\x74\x4c\x2c\x23\x4f\xbd\x50\ -\xa7\xcb\x08\xa0\xb7\x49\xe1\x88\x30\x11\xca\x63\xae\x52\x81\x71\ -\xaa\x8d\x47\x9c\x74\x2e\x69\x19\x8d\x02\x72\xe3\x93\xc7\x5e\xcc\ -\xbe\xbd\xbb\xf8\x7c\xf2\x6b\x4a\xed\x4b\x4b\x8a\xf9\xe5\xa7\x1f\ -\x38\x75\xec\xe9\x01\xb9\xbf\x10\xdf\x7c\xf5\xff\xec\x9d\x77\x74\ -\x54\x55\xd7\x87\x9f\xc9\xa4\x93\x46\x0a\x29\xb4\x24\x40\x80\x24\ -\xf4\xde\x7b\xef\x55\x8a\x52\x54\xc4\x8e\x1d\x0b\xa2\x82\x82\x1d\ -\xf1\x15\x44\x11\x14\x10\x50\x44\xba\x82\x74\xe9\xbd\x13\x6a\xe8\ -\x84\xf4\xde\x26\x93\x99\xf9\xfe\xc8\x87\xa2\x12\x72\xee\xcc\xbd\ -\x33\x93\xe4\x3e\x6b\xb9\xd6\xfb\xca\x3e\xf7\xfc\x0c\x99\x39\xfb\ -\xee\xb3\xcb\x1a\xd2\x52\x53\x85\x6c\x2b\x78\x78\xd1\xa8\x59\x47\ -\x65\x05\xd9\x21\x99\x19\xa9\xc4\xdd\xba\x42\x56\x46\x1a\x59\x59\ -\x69\x64\xa6\xa7\x52\x58\xa8\xc7\xd1\xd1\x09\xf7\x0a\x9e\x68\x1d\ -\x1d\xf1\xf2\xf2\xa5\x52\x50\x55\x82\x2b\x87\xe2\xec\xa2\x5c\x72\ -\xbb\x46\xa3\x41\x83\x06\x13\xf6\xd9\x24\xcc\x64\x32\x91\x93\x9d\ -\x29\x75\xd9\x8b\xc0\x18\x05\xe4\xa8\x94\x12\x6c\xe9\x00\x8c\x41\ -\xb0\x29\x85\x46\xe3\x40\xbf\x21\x96\xbf\xfd\xdf\xcb\xc8\xb1\x2f\ -\x73\xec\xd0\x0e\x6e\x5c\xbd\x20\x64\xbf\x71\xc3\x5a\xd5\x01\x50\ -\x91\x8d\x25\xdf\x2f\x10\xb6\x6d\xdb\x69\x80\xa2\x87\x9b\xbd\x90\ -\x9a\x1c\xcf\xc1\xbd\x9b\xb9\x78\xee\x38\x97\xce\x1f\x27\x3e\xee\ -\xba\xf0\x5a\x8d\x46\x83\x9f\x7f\x10\xc1\x95\xc3\xa8\x51\xbb\x3e\ -\x75\xa3\x9b\x51\x37\xba\x99\x70\xc2\xb0\xd0\x1e\x0e\x0e\x98\x8c\ -\x06\xd9\x9e\x27\x17\x3a\x5d\x1e\xdf\xcf\x9d\x26\xa5\x1f\xc0\x5d\ -\x1e\x02\x5e\x03\xd4\x24\xa7\x72\x8a\x2d\x2f\xb6\xce\x02\x42\x59\ -\x4d\xcd\x5a\x77\x63\xf2\xbb\xdf\xca\x2e\xe0\xe8\xc1\xed\xcc\x7c\ -\x5b\xcc\xb1\xa8\x5c\xa5\x2a\x47\xcf\x8a\xb7\x6c\x55\x51\x29\x8e\ -\x8b\xe7\xcf\xd1\xa1\x65\x63\xe1\x96\xd3\x1f\xcf\x59\x47\x78\xad\ -\x7a\x0a\xab\xb2\x0d\x05\xba\x7c\x0e\xee\xdd\xc4\xce\x2d\xab\x38\ -\x7d\x7c\x1f\x46\x19\x0f\x58\x8d\xc6\x81\xea\xe1\x75\x88\x6e\xd0\ -\x92\x66\xad\xba\x51\xb7\x5e\x33\x8b\xf2\x28\x32\x33\x52\xed\xae\ -\x19\x50\x5a\x6a\x22\x5f\x7d\xfc\x0a\x37\xae\x89\xbd\xc8\xdc\x87\ -\x37\x81\x99\x32\x4a\x52\x29\x45\xd8\x2a\x02\xd0\x01\xc1\xc3\x1f\ -\xa0\x9f\x0c\x77\xff\xf7\xa3\x71\xf3\x4e\x04\x57\x0e\x15\xea\x1a\ -\x78\xfb\xd6\x4d\x92\x12\x13\x09\xa8\x24\xcf\xdc\x01\x95\xf2\xcb\ -\xbc\x39\xb3\x85\x0f\xff\xd0\xf0\xba\x65\xf2\xf0\x37\x1a\x0d\xec\ -\xf8\x63\x25\x3f\x2d\xfa\x9c\xb4\xd4\x44\x45\xf6\x30\x99\x8c\x5c\ -\x8b\x8d\xe1\x5a\x6c\x0c\x1b\x56\x2d\xc4\xa7\xa2\x3f\xcd\xdb\xf4\ -\xa0\x55\xbb\x5e\x44\x35\x68\x29\xd9\x19\xb0\xb7\x81\x40\x67\x4f\ -\x1d\x64\xe1\x9c\x77\xc9\xcc\x10\xbb\x4a\x2a\x86\x09\xc0\x47\x80\ -\x51\x1e\x55\x2a\xa5\x09\x5b\x39\x00\x4f\x8a\x1a\x86\xd7\x8c\x26\ -\xb2\xbe\x32\x2d\x79\x35\x1a\x0d\x2d\xda\xf4\x60\xcd\x8a\x6f\x84\ -\xec\x6f\xdf\xba\xa1\x3a\x00\x2a\x16\x91\x98\x90\xc0\xca\x9f\x97\ -\x0b\xdb\x77\xee\x39\x5c\x41\x35\xb6\xe1\xe4\xb1\x3d\x2c\x9a\x37\ -\x9d\x1b\xd7\x2e\x5a\x75\xdf\xf4\xb4\x64\x36\x6f\x58\xca\xe6\x0d\ -\x4b\xf1\xf6\xf1\xa3\x63\xb7\x21\x74\xe9\x35\x82\x90\x2a\x61\x42\ -\xeb\x35\x0e\x1a\xb0\x83\x1b\x00\x83\xa1\x90\xd5\x3f\x7d\xcd\xe6\ -\x0d\x4b\xe5\x18\x5c\x16\x06\x74\x07\xc4\x3b\x52\xa9\x94\x19\x6c\ -\xe1\x00\x04\x02\x83\x45\x8d\xfb\x0c\x7e\x54\x41\x29\x10\x11\xd9\ -\x58\xd8\xf6\xf6\xad\x5b\x34\x6c\x2c\xdc\xb1\x58\x45\xe5\x3f\x2c\ -\xf8\x66\x2e\x05\x3a\x9d\x90\xad\x93\x93\x33\xed\x3a\x97\x9d\xbc\ -\x13\x83\xa1\x90\x65\x0b\x3f\x61\xdd\xca\xf9\x36\x9f\xb8\x99\x91\ -\x9e\xc2\xda\x5f\xbe\x65\xdd\xca\xf9\x44\xd5\x6f\x49\xd7\xde\x23\ -\x68\xd1\xb6\x27\x4e\x4e\xce\xc5\xae\xd1\x68\x6c\x1f\x01\x48\xb8\ -\x73\x83\xef\xbe\x7a\x87\x6b\xb1\x31\x72\x3e\xf6\x49\x54\x07\xa0\ -\x5c\x62\x0b\x07\xe0\x31\xa0\xf8\x4f\xd9\x3d\x78\x7a\x57\xa4\x75\ -\x07\x65\xfb\x55\xf8\xfa\x89\x77\xd0\x4a\x4a\x4c\x50\x50\x89\x4a\ -\x59\x27\x27\x27\x9b\x45\x0b\xe7\x0b\xdb\xb7\xed\xd4\xbf\xd8\x99\ -\x17\xa5\x8d\x94\xe4\x78\x66\x7d\xf0\x1c\xe7\xcf\x1e\xb1\xb5\x94\ -\x7f\x60\x32\x99\x38\x73\x72\x3f\x67\x4e\xee\xc7\xd3\xbb\x22\x1d\ -\xbb\x0e\xa1\x6b\xef\x11\xc5\x4c\xd9\xb3\x9d\x03\x50\xa8\x2f\x60\ -\xe3\xda\xc5\x6c\x5c\xbb\x08\xbd\xbe\x40\xee\xc7\xf7\x01\x2a\x03\ -\xb7\xe5\x7e\xb0\x8a\x7d\x63\x6d\x07\x40\x0b\x08\x8f\x33\xeb\xd4\ -\x7d\xe8\x03\x3d\x72\x39\x70\x73\x17\x9f\x8e\x69\x6f\x33\xc1\x55\ -\x4a\x17\xcb\x97\x2c\x22\x3d\x4d\xec\xbe\x56\xa3\xd1\xd0\x6f\xc8\ -\xe3\x0a\x2b\xb2\x0e\xf1\x71\xd7\x99\xfa\xca\x08\x52\x93\xed\x3b\ -\xd9\x3c\x2b\x23\x8d\xf5\xbf\x7e\xc7\x86\x55\x0b\xa8\x5b\xaf\x39\ -\xdd\x7a\x8f\xa0\x65\xdb\x5e\x38\x39\xbb\x00\xb6\x8b\x00\x9c\x3b\ -\x7d\x88\xa5\x0b\x3f\x21\xe1\xce\x0d\xa5\xb6\x70\x04\xc6\x03\xef\ -\x2b\xb5\x81\x8a\x7d\x62\x6d\x07\xa0\x2b\x50\x5d\xc4\x50\xa3\xd1\ -\xd0\xad\xb7\x70\x9b\x00\xb3\xc9\xcd\xc9\x12\xb6\x75\x2d\x07\xa5\ -\x58\x2a\xca\x50\x58\x58\xc8\x37\x73\xbe\x14\xb6\xaf\xdf\xb8\x2d\ -\xd5\xc2\x6a\x2b\xa8\xc8\x3a\x24\xdc\xb9\xc1\xbb\xaf\x8e\xb4\xfb\ -\xc3\xff\x5e\x4c\x26\x13\x31\xa7\x0e\x12\x73\xea\x20\x0b\xbd\xa6\ -\xd1\xa1\xeb\x60\xba\xf5\x19\x89\xaf\x5f\xa0\x55\x75\xc4\x5e\x3c\ -\xc5\xda\x15\xdf\x72\xee\xcc\x61\x6b\x6c\xf7\x08\xaa\x03\x50\xee\ -\xb0\xb6\x03\x20\x7c\xa2\x47\x37\x6c\x4d\x70\xe5\x50\x05\xa5\x14\ -\x91\x9c\x74\x47\xd8\xd6\xd5\x4d\x75\x00\x54\xcc\x63\xfd\x9a\x5f\ -\xb9\x79\x43\xbc\xae\xbd\xff\xd0\x09\x0a\xaa\xb1\x0e\xa9\xc9\xf1\ -\xbc\xfb\xda\x28\x49\x9f\x31\x7b\x23\x2b\x33\x8d\x0d\xab\x16\xb0\ -\x61\xd5\x02\xea\x44\x35\xa1\x45\xdb\x9e\x34\x6e\xde\x49\xd6\xfe\ -\x02\xf7\x62\x32\x19\x39\x7f\xe6\x08\x9b\x37\x2c\xe3\xcc\xc9\xfd\ -\x8a\xec\x51\x0c\x11\x40\x4b\x40\x9d\x81\x5e\x8e\xb0\xa6\x03\xe0\ -\x86\x84\xbe\xff\xdd\xfb\x28\xff\xf6\x0f\x70\xf5\xd2\x19\x61\xdb\ -\xd0\xb0\x70\x05\x95\xa8\x94\x65\xe6\xce\x9e\x25\x6c\x5b\x2d\xac\ -\x36\xf5\x1b\xb7\x55\x50\x8d\xf2\x18\x0a\x0b\xf9\xec\xfd\x67\x49\ -\x4a\x28\x3b\xd7\xca\xe7\xcf\x1e\xe5\xfc\xd9\xa3\x2c\x5d\xf0\x31\ -\x51\x0d\x5a\xd2\xa4\x45\x67\xa2\x1a\xb4\xc4\xcb\xdb\xd7\xe2\x67\ -\xa7\xa6\x24\xb0\x7f\xd7\xef\xec\xdd\xb1\x9e\xa4\x44\x79\x7e\x66\ -\xe1\x35\x6b\xe1\xe4\xe4\xc4\x85\x73\xc2\x09\x83\x8f\xa0\x3a\x00\ -\xe5\x0a\x6b\x3a\x00\x7d\x00\x2f\x11\x43\x4f\xaf\x8a\x34\x6b\xdd\ -\x4d\x61\x39\x45\x9c\x39\x25\xf6\xfb\xae\xd1\x68\xa8\x19\x51\xfa\ -\x43\xb2\x2a\xd6\xe7\xcf\x1d\xdb\x38\x7d\xea\x84\xb0\x7d\xbf\x21\ -\x8f\xdb\x45\xc6\xb9\x25\xfc\xb8\xe0\x23\x2e\xc4\x1c\x35\x7b\xbd\ -\x56\xab\xa5\x65\xeb\xb6\x34\x6d\xde\x92\xc8\xe8\x68\xc2\x6b\xd4\ -\xc4\xcb\xdb\x07\x17\x17\x57\xb4\x5a\x2d\xe9\x69\xa9\xa4\xa5\xa5\ -\x91\x98\x18\xcf\x85\x73\x31\x9c\x8f\x89\xe1\x5c\xcc\x19\x62\x2f\ -\x5d\x54\xbc\xc2\xa0\xb0\x50\xcf\xc9\xa3\xbb\x39\x79\x74\x37\x1a\ -\x8d\x86\x6a\x61\xb5\xa9\x1b\xdd\x8c\xea\xe1\x75\xa9\x1e\x56\x9b\ -\x80\xc0\x2a\x25\x3e\x23\x3d\x35\x89\x5b\x37\x2e\x11\x73\xfa\x30\ -\x67\x4f\x1e\x20\xee\xd6\x15\x59\x35\xf6\xe9\x37\x90\x29\xd3\x3e\ -\x60\xf3\xc6\xdf\x78\xe7\xcd\xd7\x44\x97\x3d\x44\x51\x7b\x60\xd9\ -\xb3\x0c\x55\xec\x13\x6b\x3a\x00\xc2\x93\x2a\xda\x74\xec\x87\xa3\ -\xa3\x93\x92\x5a\x80\xa2\x0f\xe1\xa5\x73\x62\x5f\xcc\x55\xab\x55\ -\xc7\x5d\x42\xc2\xa0\x8a\xca\x5d\xe6\xce\xfe\x5c\xd8\xd6\xd7\x2f\ -\xb0\xd4\x97\xfe\x1d\x3d\xb8\x9d\x0d\xab\xc4\x5b\x1d\xdf\x4b\x70\ -\x48\x08\xcf\x4c\x7a\x99\x01\x83\x87\x3d\xb0\xe7\xc6\xbd\x7f\xd6\ -\xb7\xff\xa0\xbf\xfe\x77\x72\x52\x12\x7b\x77\xef\x64\xcf\x9f\x3b\ -\xd9\xb1\x6d\x0b\xb7\x6e\x2a\x96\x38\x07\x14\xe5\x0b\x5c\xbf\x72\ -\x9e\xeb\x57\xfe\x1e\xeb\xec\xe6\x56\x81\x8a\x7e\x95\xf0\xf2\xf6\ -\xc5\xbb\x62\x00\x98\x4c\x18\x0c\x85\xe4\xe7\xe5\x92\x9d\x95\x4e\ -\xfc\x9d\xeb\xe4\xe7\xe5\x2a\xa2\xc7\xd9\xd9\x99\xd7\xde\x7c\x87\ -\x61\x23\x47\x03\xd0\xad\x47\x6f\x66\x4c\x9b\x2a\x3a\xcc\xcc\x8f\ -\xa2\x17\xb5\xd5\x8a\x88\x53\xb1\x3b\xac\xe5\x00\x78\x03\xbd\x45\ -\x8d\x3b\x76\x1b\xa2\xa0\x94\xbf\xd9\xb5\x7d\x0d\x26\x93\x58\x03\ -\xac\x56\x6d\xdb\x29\xac\x46\xa5\x2c\x72\xfa\xd4\x09\xfe\xdc\xb1\ -\x4d\xd8\xbe\xf7\xc0\x71\x56\x71\x7e\x95\xa2\x40\x97\xcf\x82\x39\ -\xef\x4a\x7e\x0b\x77\x76\x71\xe1\xe5\xc9\x6f\xf2\xc4\xd3\xcf\xe1\ -\xe6\xe6\x6e\xf6\xfe\xfe\x01\x01\x0c\x18\x3c\x8c\x01\x83\x87\x61\ -\x32\x99\x38\x7e\xf4\x08\xeb\x56\xaf\x64\xdd\xea\x5f\x89\xbb\x7d\ -\xcb\xec\xe7\x4a\x21\x2f\x2f\x87\xbc\x5b\x57\x89\xbb\x75\xd5\x2a\ -\xfb\xdd\x25\xbc\x66\x2d\x66\x7c\x3c\x8b\xba\x51\xd1\x7f\xfd\xbb\ -\x0a\x1e\x1e\x74\xea\xd2\x8d\x4d\xbf\xad\x17\x7d\xcc\x28\x54\x07\ -\xa0\xdc\x60\xad\x19\x97\x83\x01\xa1\x0c\xba\x2a\xd5\x6b\x51\xb3\ -\x76\x7d\x85\xe5\x14\xb5\x22\xdd\xb8\x76\x91\xb0\x7d\xc7\xce\xea\ -\x38\x56\x15\xe9\x48\xb9\xfb\x77\x73\xf7\xa0\x7b\xdf\xd1\x0a\xaa\ -\x51\x9e\x35\x2b\xe6\x91\x18\x7f\x53\xd2\x9a\xca\x55\xaa\xb2\x76\ -\xe3\x56\x26\xbd\x3c\xd9\xa2\xc3\xff\xdf\x68\x34\x1a\x1a\x37\x6d\ -\xc6\xbb\x1f\x7c\xc4\xd1\xb3\x97\xf8\x65\xdd\x46\x06\x0c\x1e\x86\ -\x93\xb3\xb2\xa5\xc5\xd6\x46\xab\x75\xe4\xb1\x89\x4f\xf3\xf3\xea\ -\xdf\xfe\x71\xf8\xdf\xa5\xef\x00\xe1\xbe\x6b\x50\xf4\xa2\x26\xdf\ -\x5f\x82\x8a\x5d\x63\xad\x08\x80\x70\xf8\xbf\x63\x57\x49\xbf\xac\ -\x66\x73\x70\xef\x66\xe1\x04\x25\xad\x56\x4b\xfb\x8e\x5d\x14\x56\ -\xa4\x52\xd6\x48\x88\x8f\x67\xc3\xda\x55\xc2\xf6\xdd\xfb\x8c\x52\ -\x2c\xbb\xdc\x1a\x24\x27\xc6\xb1\x5a\x70\xc4\xf6\x5d\x6a\xd4\xac\ -\xc5\x9a\x8d\xdb\x14\x6f\xb1\xad\xd1\x68\x68\xd7\xa1\x13\xed\x3a\ -\x74\x22\x25\x39\x99\x9f\x97\x2e\xe6\xc7\x45\x0b\xb9\x12\x7b\x59\ -\xd1\x7d\x95\xa6\x56\x44\x1d\xa6\x7d\xf8\x09\x91\x51\xc5\xcf\x8b\ -\x68\xdd\xb6\x1d\x7e\xfe\xfe\xa4\x24\x27\x8b\x3c\xd2\x9d\x22\x27\ -\x60\xa5\x4c\x12\x55\xec\x18\x6b\x44\x00\x02\x81\xce\x22\x86\x1a\ -\x8d\x86\x36\x1d\xfb\x29\x2c\xa7\x88\xdf\x56\x2d\x14\xb6\xed\xd0\ -\xb9\x2b\x7e\xfe\xfe\x0a\xaa\x51\x29\x8b\x2c\x5d\xbc\x10\xbd\x5e\ -\x2f\x64\xeb\xe8\xe8\xa4\x78\xdb\x6b\xa5\x59\xfd\xf3\xd7\xe8\x0b\ -\xc4\xda\x1c\x03\x84\x54\xae\xc2\x8a\xb5\xbf\x5b\x7d\xbe\x86\x9f\ -\xbf\x3f\x4f\x4f\x7a\x89\xbd\x47\x4f\xb3\x72\xfd\x26\x06\x0e\x19\ -\x8e\xb3\x8b\x8b\x55\x35\x58\x8a\xb7\xb7\x0f\xaf\xbe\x39\x95\xe5\ -\xab\xd6\x3f\xf0\xf0\x87\xa2\x08\x41\xaf\x3e\xfd\xa5\x3c\x7e\xa8\ -\x45\xe2\x54\x4a\x0d\xd6\x70\x00\x86\x51\xd4\x01\xb0\x44\x6a\xd5\ -\x69\x48\x40\x60\x65\x85\xe5\xc0\xf9\x33\x47\x24\xb5\x24\x1d\x31\ -\xfa\x11\x05\xd5\xa8\x94\x45\x0c\x06\x03\x3f\xfe\x20\xee\x64\xb6\ -\xef\x32\xc8\xea\x8d\x66\xe4\x24\x35\x39\x9e\xed\x9b\x56\x08\xdb\ -\x3b\x3a\x3a\xf2\xdd\xe2\xe5\x54\xae\x52\x55\x41\x55\x0f\x46\xa3\ -\xd1\xd0\xb6\x7d\x47\xe6\x2d\x5c\xcc\x89\x73\x57\x78\xf7\x83\x8f\ -\xa8\x55\xbb\x8e\xcd\xf4\x88\xe0\xe4\xe4\xc4\x23\xe3\x1f\x67\xc3\ -\xd6\x3f\x79\x78\xec\xa3\x38\x39\x89\xe5\x8b\x48\xbc\x06\xe8\x43\ -\x51\xd9\xb6\x4a\x19\xc7\x1a\x0e\x40\x5f\x51\xc3\x56\xed\x85\xf3\ -\x04\x2d\x62\xd9\x0f\x9f\x0a\xdb\xfa\xfa\xf9\xd1\xa3\x97\xf0\x7f\ -\x82\x8a\x0a\x00\x3b\xb7\x6d\x11\x4e\x3a\xd3\x68\x34\xf4\x1f\x5a\ -\xba\xdb\xfe\xae\x5b\x39\x5f\x52\x8f\xfa\x97\x5f\x7f\x8b\xc6\x4d\ -\x9b\x29\xa8\x48\x1a\xbe\x7e\x7e\x3c\xf9\xec\x24\x76\x1f\x3a\xc1\ -\xda\x4d\xdb\x19\x3e\x72\x34\xae\x6e\xf6\x73\x06\xba\xb8\xba\x32\ -\x74\xc4\x28\xd6\x6c\xdc\xc6\x2b\xaf\x4f\xc1\xcb\xcb\x5b\xd2\xfa\ -\xba\x51\xd1\x52\xfa\x98\x78\x00\x3d\xa4\x6a\x54\x29\x7d\x28\xed\ -\x00\x54\x00\x3a\x8a\x18\x6a\x34\x1a\x5a\xb5\x57\x76\xf0\x0f\xc0\ -\xc9\xa3\xbb\x89\x39\x75\x50\xd8\x7e\xdc\x63\x13\x71\x71\x55\x3b\ -\x00\xaa\x48\x63\xf5\xca\x9f\x85\x6d\xeb\x46\x37\xa3\x4a\xf5\x5a\ -\x0a\xaa\x51\x16\x5d\x7e\x2e\xdb\xff\xf8\x45\xd8\x3e\xa2\x4e\x5d\ -\x9e\x7b\xf1\x55\x05\x15\x59\x46\x8b\x56\xad\xf9\x72\xde\x02\x4e\ -\x5e\xb8\xca\x8c\x4f\x66\xd1\xa8\x89\xed\x1c\x95\x8a\xbe\xbe\x3c\ -\xf9\xec\x0b\xfc\xb1\x63\x1f\x6f\xbf\x37\x83\x2a\x55\xab\x99\xfd\ -\xac\xce\xdd\x24\x9d\xe9\x83\x4a\x36\x51\x29\xed\x28\xed\x00\x74\ -\x05\x84\x2e\xd7\x22\xea\x36\xc6\x3f\x20\x58\x51\x31\x26\x93\x89\ -\xe5\x12\xde\xfe\x5d\x5c\x5d\x19\x3f\xe1\x49\x05\x15\xa9\x94\x45\ -\xf2\xf2\x72\xd9\xb8\x41\xb8\xec\x8a\x2e\xbd\x46\x28\xa8\x46\x79\ -\x76\x6f\x5f\x27\x69\xa6\xc6\xd4\x69\x33\x70\x74\xb4\xc5\x20\x52\ -\x69\x78\x7b\xfb\xf0\xe8\x13\x4f\xb1\x71\xfb\x6e\x0e\x9f\xbe\xc0\ -\xab\x6f\x4e\x25\xaa\x5e\x03\xc5\x9b\x34\xb9\xb8\xb8\xd0\xb5\x47\ -\x2f\x3e\xfd\x72\x2e\x7f\xec\xd8\xc7\x53\xcf\xbd\x40\x45\x5f\xcb\ -\xbb\x0d\x76\xee\x2a\xc9\x01\xe8\x85\xf5\xaa\xc4\x54\x6c\x84\xd2\ -\x9f\x42\xe1\x98\x7e\x8b\x36\xca\x47\x9c\x0e\xed\xdb\xcc\xe5\x0b\ -\xa7\x84\xed\x47\x8c\x7a\xc4\xea\x09\x4a\x2a\xa5\x9f\x2d\x9b\x7e\ -\x27\x27\x27\x5b\xc8\xb6\x82\x87\x17\xad\xda\xf5\x52\x58\x91\xb2\ -\x6c\xde\xb0\x54\xd8\xb6\x65\x9b\xb6\x74\xed\x51\xfa\xfe\x7b\xab\ -\x56\xab\xce\xe3\x13\x9f\xe2\xe1\xb1\x8f\x92\x9a\x92\xc2\xc1\xfd\ -\x7b\x39\xb0\x6f\x0f\x07\xf7\xef\xe5\x4e\x9c\xe5\xad\x7b\xab\x54\ -\xad\x46\xe3\xa6\xcd\x68\xd9\xa6\x1d\x1d\x3b\x77\xa3\x42\x05\xf9\ -\x9b\x8e\x45\xd7\x6f\x40\x40\xa5\x40\xd1\xb1\xe6\x01\x40\x73\xd4\ -\xd6\xc0\x65\x1a\x25\x1d\x00\x0d\x12\x1c\x80\xa6\xad\x94\x2d\xb3\ -\x33\x1a\x0d\xfc\xf4\x83\x78\x47\x36\x17\x57\x57\x5e\x78\xf5\x75\ -\x05\x15\xa9\x94\x55\xb6\xfe\xb1\x51\xd8\xb6\x5d\xe7\x81\x38\x97\ -\xe2\x29\x93\xd7\xaf\x9c\xe7\xca\x65\xf1\x79\x1a\xcf\xdb\x71\xe8\ -\x5f\x14\x5f\x3f\x3f\x7a\xf5\xed\x4f\xaf\xbe\x45\x99\xf5\xe9\xe9\ -\x69\x5c\x3c\x7f\x8e\x0b\xe7\xcf\x11\x7b\xe9\x22\xc9\xc9\x49\xa4\ -\xa6\xa4\x90\x92\x9c\x48\x76\x76\x36\x0e\x9a\xa2\x17\x69\xad\xa3\ -\x16\x4f\x4f\x2f\x2a\x05\x06\x51\xb9\x6a\x55\xaa\x54\xa9\x4a\x68\ -\x58\x38\x0d\x1b\x37\xa5\x52\x60\x90\xe2\xba\x35\x1a\x0d\x9d\xba\ -\x74\x63\xc5\xf2\x1f\x45\x97\xf4\x46\x75\x00\xca\x34\x4a\x3a\x00\ -\x0d\x80\x92\x9b\x62\x03\x21\x55\xc2\x08\xa9\xa2\xec\xa0\x9d\xdd\ -\xdb\xd6\x72\xf3\xfa\x45\x61\xfb\xb1\x8f\x4e\x20\x38\x44\xf9\x8a\ -\x04\x95\xb2\x85\xc9\x64\x62\xe7\xf6\xad\xc2\xf6\x5d\x7b\x3d\xa4\ -\xa0\x1a\xe5\xd9\xb3\x73\x9d\xb0\x6d\x64\x54\x3d\x3a\x75\xed\xae\ -\xa0\x1a\x65\x29\xae\xbb\xa1\x8f\x4f\x45\x9a\xb7\x6c\x4d\xf3\x96\ -\xad\xad\xac\x48\x3a\x9d\xbb\xf6\x90\xe2\x00\xf4\x01\xa6\x2a\x28\ -\x47\xc5\xc6\x28\x79\xc7\x23\x9c\xd1\xd7\xb4\xa5\xb2\x5d\xf6\x0a\ -\x0b\xf5\xfc\xbc\xe4\x0b\x61\x7b\x77\xf7\x0a\x76\x9d\xa4\xa4\x62\ -\xbf\x9c\x39\x7d\x92\xc4\x04\xa1\x10\x2b\x55\xab\x47\x10\x5a\x23\ -\x52\x61\x45\xca\x61\x32\x99\xd8\xbb\x43\x3c\xd7\x61\xdc\x84\x89\ -\xa5\x7a\xc8\x91\xd1\xa8\xec\x90\x21\x6b\xd0\xb4\x45\x4b\x3c\x3c\ -\x85\x9b\x4d\x35\x02\x42\x14\x94\xa3\x62\x63\x94\x74\x00\xc4\xc3\ -\xff\x2d\x95\x0d\xff\x6f\xfd\x7d\xb9\xa4\xf6\xa4\x8f\x4d\x7c\x5a\ -\xbd\xfb\x57\x31\x8b\x83\xfb\xf6\x0a\xdb\x2a\x7d\xed\xa5\x34\x97\ -\xce\x1d\x27\x31\x41\xac\xd4\xd1\xdd\xbd\x02\x83\x86\x0e\x57\x58\ -\x91\xb2\x18\x8d\x62\x73\x43\xec\x19\x27\x27\x27\xda\x77\x14\xea\ -\xcb\x06\x45\xd7\xb8\x3d\x15\x94\xa3\x62\x63\x94\x72\x00\xfc\x81\ -\x16\x22\x86\x15\x3c\xbc\xa8\x1d\xd5\x44\x21\x19\x60\x30\x14\xb2\ -\xf6\x97\x6f\x85\xed\xbd\xbc\xbc\x79\xfa\xf9\x17\x15\xd3\xa3\x52\ -\xb6\x39\x73\xfa\xa4\xb0\x6d\x93\x16\xc2\x5f\xc4\x76\xc9\x9e\x9d\ -\xe2\x6f\xff\x7d\x07\x0e\xc2\xd3\x53\x68\x1a\xb8\xdd\x52\x16\x1c\ -\x00\x40\x6a\x5b\xf3\xd2\xfd\x4b\xaa\xf2\x40\x94\x72\x00\x3a\x22\ -\xd8\xfd\x2f\xba\x41\x2b\xb4\x5a\xe5\x52\x11\xf6\xfd\xb9\x41\xb8\ -\xe7\x3f\xc0\xd3\x93\x5e\x94\xa5\xe4\x46\xa5\x7c\x72\xe6\xa4\x98\ -\x03\xe0\xe4\xec\x42\xad\xda\x0d\x15\x56\xa3\x1c\x26\x93\x91\x03\ -\xbb\xc5\x93\x1d\x07\x0f\x2b\xdd\xa5\x8e\x26\x93\x49\xf2\x84\x43\ -\x7b\xa5\x45\xab\x36\x52\xae\x62\x54\x07\xa0\x0c\xa3\x94\x03\xd0\ -\x56\xd4\xb0\x5e\xe3\x36\x0a\x49\x28\x62\xdd\xca\xef\x84\x6d\xfd\ -\x03\x02\x98\xf0\xd4\xb3\x0a\xaa\x51\x29\xcb\x14\x16\x16\x72\xf1\ -\xe2\xf9\x92\x0d\x81\xb0\x1a\x91\x68\x4b\x41\x2d\x7c\x71\x9c\x39\ -\xb1\x9f\xd4\x14\xb1\x5c\x07\x3f\x7f\x7f\xda\xb6\xef\xa8\xac\x20\ -\x85\x29\x2b\x6f\xff\x50\x54\xc5\x50\x2b\xa2\xb6\xa8\x79\x30\x60\ -\xdf\xfd\x91\x55\xcc\xc6\xe6\x0e\x40\x83\xc6\xed\x14\x92\x00\x27\ -\x8f\xed\xe1\xea\xe5\xb3\xc2\xf6\x93\x5e\x9e\x4c\x85\x0a\x1e\x8a\ -\xe9\x51\x29\xdb\xa4\xa6\xa4\x50\xa0\x13\x1b\x86\x53\x23\xe2\xc1\ -\x03\x5c\xec\x9d\x3d\x12\x92\xff\xfa\xf6\x1f\x54\x2a\x1a\xff\x3c\ -\x88\xb2\xf2\xf6\x7f\x97\x16\xad\x24\xbd\x78\x75\x52\x4a\x87\x8a\ -\x6d\x51\xc2\x01\xf0\xa4\xa8\x04\xb0\x44\x02\x02\x2b\x13\x5c\x39\ -\x54\x01\x09\x45\x6c\x5a\xbb\x48\xd8\x36\x30\x28\x88\x31\xe3\x4b\ -\x77\x3f\x76\x15\xdb\x92\x94\x24\xf6\x46\x0c\x10\x10\x28\x54\x21\ -\x6b\x97\xe8\xf5\x05\x1c\xd8\x23\x1e\xfe\x1f\x38\xa4\x74\x27\xff\ -\x01\x98\xca\x50\x04\x00\x54\x07\x40\xa5\x08\x25\x1c\x80\x56\x08\ -\xf6\x17\xa8\xdf\x48\x38\x50\x20\x99\xf4\xb4\x64\x8e\x1d\xde\x29\ -\x6c\xff\xc4\x53\xcf\xa9\x3d\xff\x55\x2c\x22\x29\x31\x51\xd8\xd6\ -\xcf\x5f\xf9\xc6\x2f\x4a\x71\xfc\xf0\x4e\x72\xb2\x33\x85\x6c\x83\ -\x82\x83\x69\xd1\x5a\xd9\x6b\x3e\x6b\x50\x96\xae\x00\x00\x1a\x37\ -\x6b\x21\x25\x2a\xd3\x91\xa2\x8a\x00\x95\x32\x86\x12\x0e\x80\xf0\ -\xa9\x1e\x59\xaf\xb9\x02\xdb\x17\xb1\x77\xe7\x7a\x0c\x85\x85\x42\ -\xb6\xde\xde\x3e\x8c\x7d\xfc\x09\xc5\xb4\xa8\x94\x0f\xb2\x32\x33\ -\x84\x6d\x3d\xbd\x4a\x6f\xa2\xe9\x9e\x1d\xe2\xcd\x7f\xfa\x0d\x1c\ -\x82\x83\x43\xe9\x6f\x29\x6f\x34\x95\x2d\x07\xa0\x42\x85\x0a\x44\ -\xd7\x17\x4e\x42\x0d\x00\x4a\xef\xb4\x2a\x95\x62\x51\xe2\x93\x29\ -\x7c\xa9\x5f\x27\xba\xa9\x02\xdb\x17\x71\xe4\xc0\x36\x61\xdb\x31\ -\x8f\x4e\xc0\xc3\x43\xb8\x39\x86\x8a\xca\x7d\x71\x72\x72\x16\xb6\ -\x35\x95\xd2\x03\x25\x2f\x2f\x47\xd2\x67\x6b\xc0\xe0\x61\x0a\xaa\ -\xb1\x1e\x06\x83\xc1\xd6\x12\x64\x47\xe2\x35\x40\x4b\xa5\x74\xa8\ -\xd8\x0e\xb9\x1d\x00\x67\x8a\x06\x48\x94\x88\xaf\x7f\x10\x81\xc1\ -\xe6\x8f\xb6\x7c\x10\x79\xb9\xd9\xc4\x9c\x16\x1f\xf9\xfb\xd0\xa8\ -\x87\x15\xd1\xa1\x52\xbe\x70\x76\x16\x77\x00\x0a\x0b\xf5\x0a\x2a\ -\x51\x8e\x43\x7b\x37\x53\xa0\xcb\x17\xb2\xad\x5c\xa5\x2a\x4d\x9a\ -\x29\x17\xe5\xb3\x26\x65\xd1\x01\x68\xde\xb2\x95\x14\x73\x49\xc6\ -\x2a\xa5\x03\xb9\x1d\x80\x26\x80\xbb\x88\x61\xdd\x68\xe5\x66\x6c\ -\x5f\x3a\x7f\x52\x38\xfc\xdf\xa0\x51\x13\x6a\x8a\x97\xc4\xa8\xa8\ -\x14\x8b\xb3\x8b\xd0\xe4\x6b\x00\x49\xe3\x73\xed\x89\x3d\x3b\xd6\ -\x0a\xdb\xf6\x1f\x34\xa4\x54\xb7\xfe\xbd\x17\xa3\xa1\x74\x46\x6c\ -\x1e\x44\x64\x74\x3d\x1c\xb4\x42\xed\x5a\x40\x8d\x00\x94\x49\xe4\ -\x76\x00\x84\xa7\x61\xd4\x55\x30\xfc\x7f\xf1\xfc\x71\x61\xdb\x21\ -\xc3\x4b\x77\x83\x12\x15\xfb\x41\x4a\x03\xa9\x04\x09\xad\xa9\xed\ -\x85\xc4\xf8\x9b\x9c\x3c\xba\x47\xd8\x7e\xf0\xb0\xd2\x3d\xe8\xe8\ -\x5e\xca\x62\x04\xc0\xdd\xbd\x02\x35\x6a\x08\x5f\xed\xd7\x03\xd4\ -\x1a\xe9\x32\x86\xdc\x0e\x40\x23\x51\xc3\x88\xc8\xc6\x32\x6f\xfd\ -\x37\x37\xae\x8a\x35\x63\x01\x4a\xe5\x6c\x72\x15\xfb\xa4\x5a\xf5\ -\x50\x61\xdb\xab\x97\xc4\x47\xe8\xda\x0b\x9b\xd6\x2f\xc1\x68\x14\ -\x3b\x08\xeb\x44\x46\x51\xaf\x81\xf0\xd7\x81\x5d\x63\x32\x99\xca\ -\xa4\x03\x00\x50\xaf\x81\x70\x22\xa0\x16\x50\x2e\x6c\xab\x62\x13\ -\xe4\x76\x00\x84\xea\xff\x9d\x9c\x9c\xa9\x16\xaa\x5c\xd8\x5d\xb4\ -\xf5\xaf\x7f\x40\x00\xe1\x35\x6a\x2a\xa6\x43\xa5\x7c\xe1\xe9\xe9\ -\x85\x9f\xbf\xbf\x90\x6d\xcc\x99\x43\xc2\x87\xa9\x3d\xa0\xd3\xe5\ -\xb1\x7d\xd3\x2f\xc2\xf6\xc3\x47\x8c\x56\x50\x8d\x75\x29\xab\x87\ -\x3f\x40\x74\x7d\xa1\xaf\xec\xbb\x28\xf7\xd6\xa6\x62\x13\xe4\x74\ -\x00\x5c\x10\x6c\x19\x59\x3d\xbc\x2e\x8e\x8e\x4e\x32\x6e\xfd\x4f\ -\x52\x92\xee\x08\xd9\xd5\xa8\x15\xa1\x98\x06\x95\xf2\x49\xc3\xc6\ -\x62\x57\x5b\x59\x19\x69\x9c\x3f\x73\x44\x61\x35\xf2\xb1\xe5\xb7\ -\x65\x64\x67\xa5\x0b\xd9\x6a\xb5\x5a\x06\x95\xf2\xde\xff\xf7\x62\ -\x2c\xc3\x0e\x80\xc4\x28\x8d\x24\x6f\x41\xc5\xfe\x91\xd3\x01\x88\ -\x42\xb0\x01\x50\x8d\x88\xfa\x32\x6e\xfb\x5f\x74\xba\x3c\x21\xbb\ -\x90\x90\xd2\xdb\x8d\x4d\xc5\x3e\x69\xd6\x42\x3c\x57\x6a\xe7\x96\ -\x55\x0a\x2a\x91\x8f\xbc\xbc\x1c\x56\x2d\x9f\x2b\x6c\xdf\xad\x67\ -\x6f\x82\x43\xca\xce\x18\x79\x43\x29\x8a\xd4\x48\xa5\x66\xcd\x5a\ -\xb8\xb9\x09\xe5\x6d\x03\x94\xde\xe9\x55\x2a\xf7\x45\x4e\x07\x40\ -\xd8\x3b\xac\xa9\x70\x1f\xf4\x42\xbd\x58\x89\x95\x56\x5b\xfa\x1b\ -\x94\xa8\xd8\x17\x6d\xdb\x8b\x77\x4d\xdd\xbd\x63\x2d\x19\xe9\x29\ -\x0a\xaa\x91\x87\x0d\xbf\x2e\x20\x33\x23\x55\xd8\xfe\xf1\x27\x9f\ -\x51\x50\x8d\xf5\x29\xcb\x57\x00\x0e\x5a\x2d\x51\xf5\x84\xbf\x8f\ -\xeb\x50\x14\xe9\x55\x29\x23\xc8\x79\x02\x0a\xbf\xd6\x87\xd7\x52\ -\xd8\x01\x30\x94\xce\x1a\x6b\x95\xd2\x4f\xe3\xa6\xcd\x08\x0a\x0e\ -\x16\xb2\xd5\x17\xe8\x58\xfe\xc3\xa7\x0a\x2b\xb2\x8c\xdb\x37\x63\ -\x59\xb3\xe2\x1b\x61\xfb\xba\x51\xd1\xa5\x7e\xf2\xdf\xbf\x11\x2d\ -\x29\x2e\xad\x44\xd5\x13\x7e\x77\x73\xa2\x28\xd2\xab\x52\x46\xb0\ -\x7a\x04\x40\xeb\xe8\x48\xe5\x6a\x35\x64\xdc\xf6\xbf\x78\x7a\xfa\ -\x08\xd9\xa5\xa5\xa5\x29\xaa\x43\xa5\xfc\xe1\xe0\xe0\x40\xef\x7e\ -\x03\x85\xed\xb7\x6d\x5c\xc1\x95\x4b\xa7\x15\x54\x64\x3e\x7a\x7d\ -\x01\xb3\x66\x3c\x8f\x2e\x3f\x57\x78\xcd\x84\x27\xcb\xde\x38\xed\ -\xc2\xc2\xb2\x1b\x01\x00\xa8\x59\x4b\x52\x42\xb6\x9a\x07\x50\x86\ -\xb0\xba\x03\x10\x52\x39\x5c\xd1\x04\x40\x00\x1f\xdf\x4a\x42\x76\ -\x17\xce\xc5\x28\xaa\x43\xa5\x7c\xf2\xf0\xb8\x47\x85\x6d\x4d\x26\ -\x23\xdf\x7d\xf5\x8e\x5d\x56\x04\xfc\xf8\xdd\x87\x5c\x8b\x15\xff\ -\x8c\x54\x0f\x0d\x63\xd8\x88\x51\x0a\x2a\xb2\x3e\x26\x93\x89\xc2\ -\x32\x1e\x01\xa8\x51\x53\x52\x25\x54\xb4\x52\x3a\x54\xac\x8f\x5c\ -\x0e\x40\x55\x40\xa8\x0b\x4a\xb5\x50\xe5\x33\xef\x7d\xfd\x02\x85\ -\xec\x6e\xdf\xba\x49\xa6\x84\x01\x2e\x2a\x2a\x22\x44\x46\xd5\x93\ -\x34\x01\xef\xe2\xb9\xe3\x2c\x99\xff\xa1\x82\x8a\xa4\xb3\x69\xdd\ -\x62\x7e\x5f\xf3\x83\xa4\x35\xaf\xbe\x39\x15\x27\x09\xed\x90\x4b\ -\x03\x65\xfd\xf0\x07\x08\xab\x51\x53\x4a\xc7\x46\xb5\x6d\x6a\x19\ -\x42\x2e\x07\x40\xf8\x5e\xa8\xaa\x15\x1c\x00\x51\x27\xc3\x64\x32\ -\xb1\x73\xdb\x16\x85\xd5\xa8\x94\x47\x9e\x7b\xe1\x15\x49\xf6\xeb\ -\x7f\xfd\x8e\x1d\x9b\x57\x2a\xa4\x46\x1a\x5b\x7e\x5f\xce\x82\x39\ -\xef\x62\x32\x99\x84\xd7\x44\x46\xd5\x2b\x53\x9d\xff\xee\x52\x5a\ -\x67\x36\x48\xc1\xdd\xbd\x02\x41\xc1\xc2\x55\x1b\xaa\x03\x50\x86\ -\x90\xcb\x01\x08\x17\x35\xb4\x86\x03\x50\xab\xae\x78\x6d\xeb\x6f\ -\xeb\xc4\x7b\x9b\xab\xa8\x88\xd2\xb5\x47\x2f\x49\x25\x81\x00\xdf\ -\xce\x7e\x8b\x93\xc7\xc4\x5b\xed\x2a\xc1\xe6\x0d\x4b\xf9\x76\xf6\ -\x14\x49\x87\x3f\xc0\x94\x69\x1f\x94\x89\xb1\xbf\xff\xa6\x3c\x44\ -\x00\x00\x6a\xd4\x14\x6e\x09\x1c\x86\x5a\x09\x50\x66\x90\xeb\x13\ -\x1b\x26\x6a\x58\xb9\xaa\xb2\x09\x80\x00\x11\x12\x1c\x80\x2d\x9b\ -\x7e\x27\x23\x5d\x4d\x06\x54\x91\x9f\xb7\xde\xfd\x40\xd2\x30\x1c\ -\xbd\xbe\x80\x99\x53\x1e\x65\xf7\xf6\x35\x0a\xaa\x2a\x66\xef\x02\ -\x1d\x5f\xcf\x7a\x9d\x6f\xbf\x9c\x22\x79\x54\xf1\xf0\x51\x0f\xd3\ -\xb9\x6b\x77\x85\x94\xd9\x96\xb2\x5e\x01\x70\x97\x70\x71\x07\x40\ -\x0b\x28\xff\x25\xae\x62\x15\xac\xea\x00\x68\x34\x0e\x04\x06\x55\ -\x95\x69\xcb\xe2\xa9\xe8\x5b\x49\xf8\x1a\x20\x37\x37\x87\x45\x0b\ -\xe7\x2b\xac\x48\xa5\x3c\xd2\xb2\x75\x1b\x46\x8d\x19\x27\x69\x4d\ -\x61\xa1\x9e\x2f\x3f\x7a\x89\x35\x3f\xcf\x93\xfc\x16\x6e\x2e\xf1\ -\x71\xd7\x79\xf3\x85\x21\x6c\xdb\xf8\xb3\xe4\xb5\xc1\x21\x95\x99\ -\xfe\xa1\x7d\x97\x32\x5a\x82\x5e\x5f\x4e\x1c\x00\x69\x2d\xd1\xd5\ -\x6b\x80\x32\x82\x55\x1d\x00\xbf\x80\x20\x9c\x9c\xad\x13\x3d\x6a\ -\xdd\xb1\x9f\xb0\xed\x82\x6f\xe6\x92\x97\x27\x5e\xea\xa4\xa2\x22\ -\xca\xd4\x69\x33\x84\xfb\x02\xdc\xc5\x64\x32\xf1\xe3\x82\x8f\x98\ -\xf6\xfa\x23\x24\xdc\xb9\xa1\x90\x32\xd0\xe5\xe7\xb2\xfc\x87\xcf\ -\x78\xf1\x89\x1e\x5c\xbd\x7c\x56\xf2\x7a\x27\x67\x67\xe6\x2f\x5a\ -\x86\xb7\xb7\x58\xd9\x6d\x69\xc3\x68\x34\x62\x34\x96\xbd\x31\xc0\ -\xf7\x23\x5c\x7c\x2a\x20\x80\xda\x43\xbd\x8c\x60\x55\x07\x20\x38\ -\x24\x54\xa6\xed\x4a\xa6\x75\xfb\x3e\xc2\xb6\x09\xf1\xf1\xcc\x99\ -\xfd\xb9\x82\x6a\x54\xca\x2b\xde\x3e\x15\x99\xfb\xdd\x22\xb4\xe2\ -\x73\xd7\xff\xe2\xf4\xf1\xbd\xbc\xf4\x44\x4f\xd6\xad\x9c\x8f\x5e\ -\x5f\x20\x9b\x26\xbd\xbe\x80\x1d\x7f\xfc\xc2\x73\x8f\x76\xe1\xd7\ -\x65\x5f\xa1\x2f\xd0\x99\xf5\x9c\x69\x33\x3e\xa6\x69\xf3\x16\xb2\ -\xe9\xb2\x37\x44\x3b\x8a\x96\x05\xaa\x56\xab\x2e\xc5\xbc\x9a\x52\ -\x3a\x54\xac\x8b\x1c\x0e\x80\x0f\x50\x51\xc4\x30\x28\x44\xd2\x2f\ -\x99\x45\x84\x54\x09\x93\x94\x0b\x30\xe7\x8b\xcf\xb9\x7d\xab\xf4\ -\xcd\x68\x57\xb1\x7f\x5a\xb7\x6d\xcf\xab\x6f\xbe\x6d\xd6\x5a\x9d\ -\x2e\x8f\xc5\xdf\xce\xe0\xc9\xd1\xad\x59\xb1\xe4\x0b\xd2\xd3\x92\ -\xcd\xd6\x71\xe7\xf6\x35\x16\xcf\x9f\xc1\x13\xa3\x5a\x32\xe7\xb3\ -\xd7\x48\x4d\x8e\x37\xfb\x59\x4f\x3d\xf7\x02\xe3\x27\x3c\x69\xf6\ -\xfa\xd2\x40\x81\x8c\x4e\x97\xbd\x53\xd1\xd7\x17\x17\x57\x57\x51\ -\x73\xd5\x01\x28\x23\x48\x7f\x2d\xf9\x2f\x75\x81\x89\x22\x86\xad\ -\x3b\xf4\xa5\x4e\x94\xd8\xb4\x34\x39\x70\xf7\xf0\x62\xff\xae\xdf\ -\x84\x6c\x0b\x0b\xf5\x9c\x8f\x39\xcb\xd0\x11\xa3\x24\x25\x6e\xa9\ -\xa8\x88\xd0\xa2\x55\x1b\x6e\x5e\xbf\xc6\xd9\x33\xe6\x75\xfd\xd3\ -\xe5\xe7\x71\xf6\xd4\x41\x36\xae\x5d\xc4\xd5\xcb\x67\xc9\xcf\xcf\ -\xc1\xc5\xc5\x0d\x4f\x2f\x9f\x62\x7f\x5f\xd3\x53\x93\x38\x79\x6c\ -\x0f\x9b\x37\x2c\x65\xc9\xfc\x99\xfc\xbc\x78\x16\x17\xce\x1e\xa5\ -\x40\x97\x6f\xc9\x7f\x0a\xc3\x47\x8e\xe6\xc3\xcf\xbe\x2c\xf3\x9f\ -\x93\xdc\x9c\x9c\x32\x3d\x07\xe0\x5e\x34\x1a\x0d\xeb\x56\xaf\x24\ -\x23\x43\x68\xe2\x63\x3e\x30\x4f\x61\x49\x2a\x56\x40\x68\x7a\x5f\ -\x09\x08\x57\x00\xf8\x07\x48\xbb\x0b\xb5\x94\x16\x6d\xba\x13\x14\ -\x52\x9d\xf8\xb8\xeb\x42\xf6\xbb\x76\x6e\xe7\xbb\x79\x73\x98\xf0\ -\x54\xd9\x6b\x67\xaa\x62\x5b\x34\x1a\x0d\x9f\xfd\x6f\x1e\x49\x89\ -\x89\xec\xb0\xa0\xf7\x84\x5e\x5f\xc0\xc1\xbd\x7f\x70\x70\xef\x1f\ -\x00\x45\x4e\x80\x77\x45\xdc\x2b\x78\xe2\xee\xee\x89\xd1\x64\x24\ -\x35\x39\x9e\x8c\xb4\x64\x59\xaf\x0d\xee\x32\xf2\x91\xb1\x7c\x3a\ -\x7b\x6e\x99\x3f\xfc\x01\x0a\x0a\xca\xcf\x15\x00\x14\x25\x74\xde\ -\xb8\x7e\x4d\xc4\x54\x8d\x00\x94\x11\xe4\xb8\x02\x10\x76\x00\xfc\ -\xac\xec\x00\x38\x38\x68\x19\x30\x5c\x28\x38\xf1\x17\xd3\xde\x7e\ -\x83\xbd\xbb\xff\x54\x48\x91\x4a\x79\xc6\xc9\xc9\x89\xef\x97\xae\ -\xa0\x73\xb7\x1e\xb2\x3d\x53\xa7\xcb\x23\x39\x31\x8e\x1b\x57\x2f\ -\x70\xfe\xec\x11\x2e\xc6\x1c\x23\x39\x31\x4e\x91\xc3\x7f\xe2\x33\ -\xcf\xf3\xf9\xff\xe6\x99\x95\xcf\x50\xda\xd0\xeb\xf5\x56\xab\xc2\ -\xb0\x17\x82\xc4\x47\x38\xfb\x00\x5e\x0a\x4a\x51\xb1\x12\x72\x38\ -\x00\xc2\x75\x7d\x7e\xfe\x41\x32\x6c\x27\x8d\x2e\x3d\x87\x53\x3d\ -\xbc\x8e\xb0\xbd\x5e\xaf\xe7\xf1\x31\x23\xb9\x7e\xed\xaa\x82\xaa\ -\x54\xca\x2b\xae\x6e\x6e\xfc\xb0\x74\x05\x7d\x07\x0c\xb6\xb5\x14\ -\x61\x9c\x9c\x9d\xf9\xec\xcb\xaf\x79\x6f\xc6\xc7\xe5\xe2\xcd\x1f\ -\x50\xc4\x81\xb2\x77\x82\x83\x2b\x4b\x31\x57\xa3\x00\x65\x00\x39\ -\x1c\x00\x7f\x11\x23\x8d\x46\x43\x45\xc1\x1e\xfd\x72\xe2\xe0\xa0\ -\xe5\xd1\xa7\xde\x91\xb4\x26\x2d\x35\x95\xb1\x23\x87\x8a\xde\x87\ -\xa9\xa8\x48\xc2\xd9\xc5\x85\xf9\x8b\x96\x98\x7e\x20\x72\x00\x00\ -\x20\x00\x49\x44\x41\x54\xf2\xe2\xab\x6f\xd8\xfd\x81\x5a\xad\x7a\ -\x28\x6b\x7e\xdf\xca\xe8\xb1\xe3\x6d\x2d\xc5\xaa\xe8\xcb\x51\x05\ -\xc0\x5d\x24\x96\xab\x5a\x37\x9c\xab\xa2\x08\x72\x38\x00\x7e\x22\ -\x46\x5e\xde\xbe\x38\x39\xd9\x66\x50\x48\x54\x83\x96\xb4\xee\x20\ -\x5e\x16\x08\x70\x3e\xe6\x2c\x23\x06\xf5\x53\x87\x05\xa9\x28\x82\ -\x46\xa3\x61\xf2\x94\x77\x58\xb0\xe4\x27\x2a\xfa\x0a\xcd\xd1\xb2\ -\x3a\xc3\x47\x8e\x66\xdb\xde\x43\x34\x69\xd6\xdc\xd6\x52\xac\x8e\ -\xbe\x9c\xdd\xff\x03\x04\x05\x09\x5f\x01\x00\x04\x28\xa5\x43\xc5\ -\x7a\x58\x2d\x02\x50\x51\x70\x44\xaf\x52\x4c\x78\x76\xba\x64\x0d\ -\xc7\x8f\x1e\x66\xd4\x90\xfe\x64\x67\x67\x29\xa4\x4a\xa5\xbc\xd3\ -\xbb\xdf\x00\x76\xec\x3b\x2a\x6b\x5e\x80\xa5\x84\xd7\xa8\xc9\x8a\ -\xb5\xbf\xf3\xe5\xbc\x05\x78\x7a\x96\xbf\xab\x5e\x83\xc1\x50\x6e\ -\xb2\xff\xef\xa5\x52\xa0\xa4\x08\xad\x6d\xbf\xd0\x55\x64\xc1\x6a\ -\x0e\x80\xa7\xb7\x6d\xdf\x72\x3c\xbd\x2b\xf2\xcc\x2b\x9f\x48\x0e\ -\xb9\x1e\x39\x74\x90\x51\x43\xfa\x93\x93\x93\xad\x90\x32\x95\xf2\ -\x4e\x50\x70\x30\xcb\x56\xae\x65\xc1\x92\x9f\xa4\x36\x64\x91\x15\ -\xff\x80\x00\xa6\xcd\xfc\x84\x9d\xfb\x8f\xd2\xbe\x63\x67\x9b\xe9\ -\xb0\x35\xfa\x82\xf2\x77\xff\x0f\xe0\x5d\x51\xa8\x9d\xcb\x5d\x54\ -\x07\xa0\x0c\x60\xbd\x2b\x00\x2f\x49\xbf\x5c\x8a\xd0\xb0\x69\x7b\ -\x7a\x0f\x1c\x27\x79\xdd\xa1\x03\xfb\x19\x3d\x6c\xa0\xea\x04\xa8\ -\x28\x4a\x9f\xfe\x03\xd9\x7d\xe8\x04\xef\x7f\xf4\x19\xc1\x21\x92\ -\x12\xb2\x2c\xa2\x6a\xb5\xea\xbc\xf3\xfe\x87\x1c\x3c\x79\x8e\x27\ -\x9e\x7e\x0e\x67\x97\xf2\x3d\xec\x4d\x67\x66\x67\xc4\xd2\x8e\x97\ -\x97\xb7\x14\x73\xf5\x0a\xa0\x0c\x60\xa9\x03\xe0\x02\x78\x8a\x18\ -\xda\x3a\x02\x70\x97\x31\x13\xde\xa4\x5e\xa3\x36\x92\xd7\x1d\xd8\ -\xbb\x87\xc1\x7d\x7a\x90\x9c\x94\xa4\x80\x2a\x15\x95\x22\x5c\xdd\ -\xdc\x78\xfc\xc9\x67\x38\x74\xf2\x1c\x5f\xce\x5b\x40\x8b\xd6\x6d\ -\x14\x49\x14\x74\x76\x71\xa1\x77\xbf\x01\x7c\xbf\x74\x05\x07\x4e\ -\xc4\xf0\xd4\x73\x2f\x50\xa1\x82\x87\xec\xfb\x94\x46\x0a\x74\xe5\ -\x33\x02\xe0\xec\xec\x8c\x9b\x9b\xbb\xa8\xb9\x1a\x01\x28\x03\x58\ -\xfa\xcd\x52\x19\xb8\x25\x62\x38\xfc\x91\x49\x0c\x7f\xe4\x05\x0b\ -\xb7\x93\x87\x9c\xec\x0c\xde\x78\x7e\x30\x71\xb7\xae\x48\x5e\x1b\ -\x5e\xa3\x26\x3f\xad\xde\x40\xb5\xea\xa1\xf2\x0b\x53\x51\xb9\x0f\ -\x57\x62\x2f\xb3\x71\xfd\x5a\xb6\x6e\xd9\xc4\xe1\x03\xfb\xcd\x9e\ -\x51\x1f\x18\x14\x44\xfb\x8e\x9d\xe9\xd4\xb5\x3b\x5d\xba\xf5\xc0\ -\xdb\xc7\xf6\x51\x39\x7b\x43\xaf\xd7\x93\x9a\x92\x62\x6b\x19\x36\ -\xa3\x47\xc7\x56\xc4\xdf\xb9\x23\x62\xba\x17\x68\xab\xb0\x1c\x15\ -\x85\xb1\xd4\x01\xa8\x0f\x9c\x14\x31\x7c\xec\x99\xf7\xe8\x35\x60\ -\x8c\x85\xdb\xc9\x47\x7c\xdc\x75\xde\x98\x34\x88\xac\x8c\x34\xc9\ -\x6b\x03\x83\x82\x58\xf6\xeb\x3a\xa2\xa2\xeb\x2b\xa0\x4c\x45\xa5\ -\x78\x72\x73\x73\x38\x7d\xf2\x24\xa7\x4e\x1c\x23\xf6\xf2\x25\xee\ -\xc4\xdd\x26\x29\x31\x81\xc2\x42\x03\x99\x19\xe9\x38\xbb\xb8\xe0\ -\xe1\xe1\x81\x8f\x4f\x45\x42\x2a\x57\xa1\x6a\xf5\xea\xd4\x8a\xa8\ -\x43\xc3\xc6\x4d\x08\xa9\x5c\xc5\xd6\xf2\xed\x9e\x9c\x9c\x6c\xb2\ -\xb3\xca\xef\x55\xdf\xf0\x01\xbd\xb8\x70\xfe\x9c\x88\xe9\x69\x8a\ -\xbe\xff\x55\x4a\x31\x96\xb6\x02\x16\x4a\x00\x04\x70\x77\xb7\xaf\ -\xf0\x62\x50\x48\x75\xa6\xce\x5c\xc2\xbb\xaf\x8d\x26\x27\x5b\x5a\ -\xa9\x5f\x42\x7c\x3c\x83\x7a\x75\xe3\x87\xe5\xbf\xd0\xba\x6d\x7b\ -\x85\x14\xaa\xa8\xfc\x17\x77\xf7\x0a\xb4\x68\xd5\x9a\x16\xad\x5a\ -\xdb\x5a\x4a\x99\xa4\xbc\x86\xff\xef\xe2\x29\x9e\x07\x20\x74\xf5\ -\xab\x62\xdf\x58\x9a\x03\x20\xfc\xdb\xe2\x2a\x7e\xb7\x64\x35\xc2\ -\x6a\x46\x31\xf5\xc3\x25\xb8\x57\x90\xfe\xbb\x9c\x99\x99\xc1\x88\ -\xc1\xfd\x58\xbb\xea\x17\x05\x94\xa9\xa8\xa8\x58\x1b\xa3\xd1\x48\ -\x41\x39\xad\x00\xb8\x8b\xb7\x8f\x8f\xa8\xa9\x7d\xbd\xd1\xa9\x98\ -\x85\x1c\x49\x80\x42\xb8\xba\x55\xb0\x70\x2b\x65\xa8\x11\x51\x8f\ -\x29\x33\x16\xe1\x66\x86\xbe\x02\x9d\x8e\xa7\x1e\x1b\xcb\xd7\xff\ -\xfb\x42\x01\x65\x2a\x2a\x2a\xd6\xa4\xbc\x96\xff\xdd\x8b\xb7\xb7\ -\xb0\x03\xa0\x46\x00\xca\x00\x56\x74\x00\xec\x2f\x02\x70\x97\x88\ -\xba\x8d\x98\x32\xd3\x3c\x27\xc0\x68\x34\xf2\xde\x94\xd7\x99\x32\ -\xf9\x65\x8c\x46\xa3\x02\xea\x54\x54\x54\xac\x41\x79\x2d\xff\xbb\ -\x17\x17\x57\x57\x61\x53\xc0\x36\xad\x5d\x55\x64\xc3\x52\x07\x40\ -\xf8\x17\xc0\xd5\xd5\x3e\x23\x00\x77\xa9\x1d\xd9\x84\xb7\x66\xfc\ -\x40\x05\x0f\x49\xb5\xb0\x7f\xf1\xdd\xbc\x39\x3c\x31\xee\x61\x0a\ -\x74\xea\x97\x88\x8a\x4a\x69\x44\x97\xaf\x7e\x76\x9d\x9c\x9c\xa4\ -\x98\xab\x51\x80\x52\x8e\xd5\x22\x00\x2e\xae\x6e\x16\x6e\xa5\x3c\ -\x75\xa2\x9a\x32\xfd\xf3\x15\xf8\x9a\x39\xb5\x70\xc3\xda\x55\x3c\ -\xf2\xd0\x60\x72\x73\x73\x64\x56\xa6\xa2\xa2\xa2\x24\xfa\x82\x02\ -\x35\x82\x87\x64\x07\xa0\x7c\x77\x8c\x2a\x03\x58\xcd\x01\x70\x74\ -\x94\xf4\x8b\x65\x33\xaa\x85\x46\xf0\xc1\xac\x95\x84\x54\x09\x37\ -\x6b\xfd\x9f\x3b\xb6\x31\xb8\x4f\x0f\xd2\x52\x53\x65\x56\xa6\xa2\ -\xa2\xa2\x14\x79\xf9\x79\xb6\x96\x60\x17\x48\x1c\xd8\x66\x69\x15\ -\x99\x8a\x8d\xb1\xda\x15\x80\x83\x56\x6b\xe1\x56\xd6\x23\x20\xb0\ -\x32\x33\x66\xff\x4a\xed\xc8\x26\x66\xad\x3f\x71\xec\x08\x03\x7b\ -\x77\x25\x21\x3e\x5e\x66\x65\x2a\x2a\x2a\x4a\xa0\x86\xff\x8b\x70\ -\x74\x94\x74\xa6\xab\x0e\x40\x29\xc7\x7a\x0e\x80\x43\xe9\x71\x00\ -\x00\x3c\x3c\x7d\x78\x7b\xe6\x62\x1a\x37\xef\x64\xd6\xfa\x0b\xe7\ -\x62\x18\xd2\xaf\x07\x77\xe2\xe2\x64\x56\xa6\xa2\xa2\x22\x27\x05\ -\x3a\x9d\x1a\xfe\xff\x7f\x9c\x9d\x25\x45\x00\x4a\x47\x58\x57\xa5\ -\x58\xac\x78\x05\x50\xfa\x9c\x45\x57\x37\x77\x5e\x9f\x36\x9f\xee\ -\x7d\x47\x9b\xb5\xfe\xf2\xc5\x0b\x0c\xed\xd7\x83\xa4\xc4\x44\x99\ -\x95\xa9\xa8\xa8\xc8\x45\xbe\x2e\xdf\xd6\x12\xec\x06\x47\x27\x35\ -\x02\x50\x9e\xb0\x5a\x04\x40\xab\x2d\x9d\xbf\x2b\x0e\x0e\x5a\x9e\ -\x78\xfe\x7d\xc6\x3f\x35\xd5\xac\xa1\x2c\xb1\x97\x2f\x31\x72\x70\ -\x3f\x32\x32\xd2\x15\x50\xa7\xa2\xa2\x62\x29\x6a\xf8\xff\x6f\x24\ -\xe6\x00\xa8\x11\x80\x52\x8e\xa5\x0e\x80\xf8\xa9\xae\xc0\x44\x33\ -\x6b\xd2\x67\xd0\x78\x9e\x79\xe5\x13\xb4\x66\x44\x32\xce\x9c\x3e\ -\xc9\x84\x31\xa3\xcc\x1e\xe2\xa2\xa2\xa2\xa2\x0c\x6a\xf8\xff\x9f\ -\x68\xa5\xe5\x6a\xc9\x31\x4e\x5e\xc5\x86\x58\xfa\x5a\x2e\xec\x3a\ -\x1b\x0d\xa5\xff\xf0\xeb\xd8\x6d\x08\xde\x3e\x7e\x7c\x3a\xed\x69\ -\x74\x3a\x69\x59\xc3\xbb\x76\x6e\xe7\xed\xd7\x5f\x61\xe6\xa7\x6a\ -\xd7\x40\x15\x15\x7b\x41\xcd\xfe\xff\x27\x7a\xbd\x5e\x8a\xf9\x18\ -\xa0\xdb\x03\xfe\x3c\x19\xb8\x03\x1c\x04\xca\xef\x88\x45\x3b\xc6\ -\x52\x07\x40\xb8\x77\xa6\xd1\x50\x36\xbc\xec\x46\xcd\x3a\x32\x65\ -\xe6\x22\x66\xbe\xfd\x18\xb9\x39\x59\x92\xd6\x7e\x3f\x7f\x1e\x75\ -\xa3\xa2\x19\x33\xfe\x71\x85\xd4\xa9\xa8\xa8\x88\x62\x32\x99\xca\ -\xfd\xf0\x9f\x7f\x23\x31\x4a\x39\x49\xf4\xb1\xc0\x2e\x60\x2e\xb0\ -\x0a\x30\x49\x94\xa5\xa2\x10\x96\x86\x70\x84\x23\x00\x86\x32\x10\ -\x01\xb8\x4b\xdd\xe8\x66\xbc\xfb\xc9\x32\xbc\xbc\x7d\x25\xaf\x7d\ -\xeb\xd5\x17\x39\x7a\xf8\x90\x02\xaa\x54\x54\x54\xa4\xa0\xcb\xcf\ -\x57\xc3\xff\xff\x42\xaf\x57\xc4\x21\x72\x04\x3a\x03\x2b\x81\xbd\ -\x40\x1d\x25\x36\x51\x91\x8e\xa5\x0e\x80\xf0\x6f\x8b\xc1\x68\xb0\ -\x70\x2b\xfb\x22\xbc\x66\x34\xd3\x3f\x5f\x81\x9f\xc4\xae\x81\x7a\ -\xbd\x9e\x67\x26\x8c\x23\x3b\x5b\x5a\xf4\x40\x45\x45\x45\x5e\xf2\ -\xf2\xd4\xf0\xff\xbd\x14\x16\x16\x72\x68\xff\x3e\xa5\xb7\x69\x05\ -\xec\x07\x7a\x28\xbd\x91\x4a\xc9\xa8\x11\x00\x0b\xa8\x5c\xb5\x06\ -\xd3\x3e\xfb\x19\x5f\xbf\x40\x49\xeb\xae\x5d\xbd\xc2\x9b\xaf\xbe\ -\xa8\x90\x2a\x15\x15\x95\x92\x28\x2c\x2c\x2c\xf7\xa3\x7f\xef\xc5\ -\x60\x28\xe4\xf5\x97\x9e\x67\xdf\x9e\x5d\xd6\xd8\xce\x07\x58\x0b\ -\xb4\xb6\xc6\x66\x2a\xc5\x63\x35\x07\x40\x5f\x46\x27\x6d\x05\x06\ -\x57\x63\xca\xcc\xc5\x78\x7a\x55\x94\xb4\x6e\xc5\xb2\x1f\xd9\xb0\ -\x76\x95\x42\xaa\x54\x54\x54\x1e\x44\x5e\x5e\xae\xad\x25\xd8\x15\ -\xf3\xbe\xfa\x92\x2d\x7f\xfc\x6e\xcd\x2d\x5d\x28\xca\x07\x08\xb6\ -\xe6\xa6\x2a\xff\xc4\x6a\x57\x00\xf9\x65\xf8\x03\x57\x2d\x34\x82\ -\xd7\xa7\xcd\xc7\xc9\x59\xda\x6c\x8c\xb7\x5f\x7f\x85\x9c\x9c\x6c\ -\x85\x54\xa9\xa8\xa8\xdc\x0f\x93\xc9\x44\x7e\x9e\xda\xfc\xe7\x2e\ -\x57\x62\x2f\xf3\xfd\xfc\xaf\x6d\xb1\x75\x20\x30\xdd\x16\x1b\xab\ -\x14\x61\xb5\x08\x40\x7e\x5e\xd9\x9e\x90\x57\x3b\xb2\x09\x4f\xbe\ -\x30\x53\xd2\x9a\x3b\x71\x71\x7c\xfe\xb1\xb4\x35\x2a\x2a\x2a\x96\ -\xa1\x26\xff\xfd\x93\x39\xb3\x3f\x93\x5a\xfe\x27\x27\xe3\x80\x08\ -\x5b\x6d\x5e\xde\xb1\x9e\x03\x90\x5f\x76\x23\x00\x77\xe9\xd0\x75\ -\x10\x03\x86\x3d\x21\x69\xcd\xb7\x73\xff\x47\xec\xa5\x8b\x0a\x29\ -\x52\x51\x51\xf9\x37\xf9\x6a\xed\xff\x5f\x64\x66\x66\xb0\x6b\xc7\ -\x36\x5b\x4a\xd0\x02\x23\x6c\x29\xa0\x3c\x63\xb5\x46\x40\x65\x3d\ -\x02\x70\x97\x51\xe3\x5f\x25\xe6\xf4\x21\x2e\x9d\x3f\x21\x64\xaf\ -\x2f\x28\x60\xfa\x3b\x6f\xf1\xc3\xb2\x5f\x14\x56\xa6\xa2\xa2\x52\ -\x58\x58\x88\xae\x94\xd4\xfe\xe7\xe4\xe4\xb0\x7d\xcb\x26\x4e\x1c\ -\x3f\xca\xc5\xf3\xe7\x48\x4f\x4b\xc3\x68\x34\x12\x14\x1c\x42\xad\ -\x88\xda\xb4\x6c\xd3\x96\xb6\xed\x3b\x59\x34\x67\x65\xfb\x96\xcd\ -\xf6\x90\x0c\x39\x00\x98\x66\xe1\x33\xc2\x28\x72\x24\x1a\x03\x91\ -\x80\x2b\xa0\x07\x2e\x03\x07\x80\xf5\xc0\x49\x0b\xf7\x28\x73\x58\ -\xda\x9f\xb7\x2d\xb0\x5b\xc4\xf0\xc9\x17\x66\xd2\xb5\x77\xf9\x70\ -\xf4\x12\xe3\x6f\xf2\xca\x53\x7d\x84\x1b\x05\x69\x34\x1a\xfe\x3c\ -\x70\x8c\x88\x3a\x75\x15\x56\xa6\xa2\x52\xbe\xc9\xcc\xcc\x20\x2f\ -\xd7\xbe\x23\x00\xa9\x29\x29\x7c\xff\xdd\x3c\x56\xfd\xf2\x13\xd9\ -\x59\x0f\xfe\x0e\xf1\xf5\xf3\x63\xec\xa3\x4f\xf0\xf0\xb8\xc7\xcc\ -\x72\x04\x66\xbc\xf7\x36\x3f\x2f\x5b\x62\xae\x54\xb9\xd0\x01\x6e\ -\x98\xd7\x20\xa8\x3e\xf0\x39\x45\x7d\x06\x4a\x3a\xcf\xb6\x03\x33\ -\x81\xad\x66\xec\x53\x26\xb1\x34\x02\x90\x24\x6a\x98\x9d\x55\x7e\ -\x86\xe1\x54\x0a\xaa\xca\x23\x8f\xbf\xce\x37\xb3\xdf\x12\xb2\x37\ -\x99\x4c\x7c\x35\xfb\x33\xbe\xfc\xfa\x3b\x85\x95\xa9\xa8\x94\x5f\ -\x8c\x46\xa3\x5d\x27\xff\x15\x16\x16\xb2\x7c\xc9\x0f\xcc\x9b\x33\ -\xbb\xc4\x83\xff\x2e\xa9\x29\x29\xcc\xfa\x64\x26\xeb\xd7\xac\xe2\ -\xd3\x2f\xe7\x12\x16\x5e\x43\xd2\x9e\x49\x49\x62\x93\x4a\x35\x0e\ -\x5a\x1a\x77\x9a\x4c\x05\x2f\xb1\xbe\x27\x26\x93\x91\x98\x83\x0b\ -\x48\xb9\x73\x5a\xc4\xdc\x05\xf0\xa3\xa8\x75\xb0\x28\x1a\x8a\x12\ -\x08\x27\x23\x7e\x8e\x75\xfe\xff\x7f\xd6\x03\x2f\x03\x97\x24\xec\ -\x57\x26\xb1\x34\x07\x40\xf8\x2f\x2c\x33\x33\xd5\xc2\xad\x4a\x17\ -\x5d\x7b\x8f\xa0\x56\x9d\x86\xc2\xf6\xab\x7f\xf9\x99\xb8\xdb\xb7\ -\x14\x54\xa4\xa2\x52\xbe\xc9\xcb\xcb\xc5\x64\xb2\xcf\x2e\xb4\xbb\ -\xff\xdc\xc1\x90\xbe\xdd\xf9\xf4\xc3\xf7\x85\x0f\xff\x7b\xb9\x7c\ -\xe9\x02\xe3\x47\x0f\x23\xe6\xac\xd0\x81\xfb\x17\xf9\x82\xcd\x90\ -\x5c\xdd\xfd\xf0\x0f\x69\x80\x9b\x47\xa0\xd0\x3f\xee\x9e\xc1\xf8\ -\x87\x88\x7f\xff\x01\x52\xea\xa8\x9d\x80\x25\xc0\x5b\x98\xf7\x12\ -\xdb\x0f\x38\x03\x7c\x0a\x78\x9b\xb1\xbe\xcc\x60\xa9\x03\x90\x06\ -\x08\xb5\xf8\xcb\xca\x48\xb3\x70\xab\xd2\x85\x46\xe3\xc0\x13\xcf\ -\xbf\x8f\x46\x23\xf6\x23\xd6\xeb\xf5\x2c\x5e\xa8\x46\x00\x54\x54\ -\x94\xc0\x64\x32\x91\x9b\x63\x7f\x89\xc8\x57\xaf\xc4\xf2\xcc\x84\ -\x71\x3c\xfb\xc4\x78\xae\x5d\xbd\x62\xd1\xb3\xd2\x52\x53\x79\xea\ -\xb1\xb1\x24\x0b\xbe\xd5\x4b\x43\xf1\x69\xae\x52\x36\xf8\x1c\x18\ -\x6d\xe1\x7e\xce\xfc\x1d\x05\x98\x48\x51\x32\x62\xb9\xc3\x52\x07\ -\xc0\x08\x08\xbd\xda\x67\x65\x96\x2f\x07\x00\x20\xac\x66\x14\xad\ -\xda\xf7\x12\xb6\x5f\xb7\x7a\xa5\x82\x6a\x54\x54\xca\x2f\xf9\xf9\ -\x79\x76\x55\xfa\x97\x95\x99\xc9\xa7\x33\xa7\x33\xb4\x5f\x0f\xf6\ -\xec\xda\x29\xdb\x73\xd3\xd3\x52\x99\xf2\xfa\xcb\x76\x1b\xe9\x90\ -\x81\x01\xc0\x33\x32\x3e\x2f\x00\x98\x07\x1c\xa3\xe8\x7a\xa0\x5c\ -\x21\xc7\x3c\x67\xa1\x3c\x80\xcc\x72\xe8\x00\x00\x0c\x19\xf9\x2c\ -\x1a\x8d\x98\x73\x7b\x25\xf6\x32\xa7\x4f\x89\x55\x0f\xa8\xa8\xa8\ -\x88\x63\x2f\x6f\xff\x46\x83\x81\x95\x3f\x2d\xa3\x5f\x8f\x8e\x2c\ -\xf9\x61\x81\xd4\xe9\x7b\x42\xec\xdf\xb3\x9b\xdf\xd6\xad\x96\xfd\ -\xb9\x76\x80\x07\x45\x13\x05\x95\x08\x47\xd4\x07\xb6\x51\xd4\x9d\ -\x30\x5c\x81\xe7\xdb\x25\x72\x38\x00\x42\x79\x00\x19\x69\x52\xf2\ -\x3b\xca\x0e\xd5\xc3\xeb\xd0\xb4\x65\x17\x61\xfb\xb5\xbf\xaa\x51\ -\x00\x15\x15\x39\xd1\xe5\xe7\x2b\x72\xd0\x4a\x25\x31\x21\x9e\x09\ -\xe3\x46\x33\xfd\x9d\x37\x49\x4b\x55\x36\x27\xea\x8b\x4f\x3f\x22\ -\x37\xb7\xcc\x95\x5e\x4f\x06\x42\x14\xde\x63\x10\x70\x0a\x18\xaf\ -\xf0\x3e\x76\x81\xd5\x1c\x80\xd4\x94\x84\xb2\x1c\x96\x7a\x20\x9d\ -\x7b\x0c\x17\xb6\xdd\xf8\xdb\x3a\x05\x95\xa8\xa8\x94\x3f\x72\x73\ -\x6d\xff\xf6\x1f\x73\xf6\x34\xc3\xfa\xf7\xe2\xc8\xa1\x03\x56\xd9\ -\x2f\x29\x31\x81\x85\xdf\xda\xa4\xbd\xaf\x52\x54\xa3\xe8\xce\xde\ -\x1a\x54\x00\x16\x02\x5f\x63\x85\xe4\x07\x5b\x62\xb5\x2b\x00\x7d\ -\x81\xae\x5c\xe6\x01\x00\x34\x6a\xde\x51\x78\x58\x50\xec\xa5\x8b\ -\x24\xc4\xc7\x2b\xac\x48\x45\xa5\x7c\xa0\x2f\x28\xb0\x79\xa3\x9b\ -\x1b\xd7\xaf\xf1\xec\x13\xe3\x49\x4f\xb7\xee\xf7\xdf\xa2\x05\xdf\ -\x72\xe3\xfa\x35\xab\xee\xa9\x20\x1f\x51\xd4\x2b\xc0\x9a\x3c\x09\ -\x7c\x61\xe5\x3d\xad\x8a\xd5\x22\x00\x00\x29\x49\x77\x64\xd8\xae\ -\xf4\xe1\xe8\xe8\x44\xcb\x76\xe2\xc9\x80\x47\x0f\x1f\x54\x50\x8d\ -\x8a\x4a\xf9\x21\x3b\xdb\xb6\xc3\xb6\x0c\x86\x42\x5e\x99\xf4\x34\ -\x29\xc9\x96\x5f\x81\x7a\xf9\x85\x53\xc1\x4b\x7c\x78\x5e\x41\x41\ -\x01\xb3\x3f\xfb\xa8\xd8\x3f\xcf\xce\xca\x22\x2b\x2b\xd3\x62\x5d\ -\x32\x11\x4e\xf1\x6f\xdb\xad\x80\x87\x44\x1f\xe4\xa0\x75\xc2\x2f\ -\xa4\x3e\x5a\x47\x69\xc3\xd9\x8a\xe1\x79\xa0\xaf\x1c\x0f\xb2\x47\ -\xe4\x70\x00\x6e\x8a\x1a\xa6\x24\x97\xdf\x37\xdb\xe8\x06\x2d\x85\ -\x6d\xcf\xc5\x9c\x51\x50\x89\x8a\x4a\xf9\xa0\x40\xa7\xb3\xf9\xdb\ -\xff\xf2\x1f\x17\x73\xe1\x5c\x8c\x45\xcf\x70\xf3\x08\xa4\x61\x87\ -\x97\x69\xd5\x7b\x26\x2d\x7a\x7d\x80\xb3\xab\x78\xe9\xfa\xd6\x3f\ -\x36\xfe\x75\xed\x60\x34\x18\x38\x75\xe2\x38\xdf\xcc\x99\xcd\xd8\ -\x91\x43\x69\xdf\xa2\x11\xa7\x4f\xda\x4d\xd2\xf1\x46\x20\x91\xa2\ -\x24\xbc\x67\xf9\x3b\x11\x4f\x03\xcc\x42\x42\x28\xbe\x4e\xd3\x71\ -\x34\xed\xf2\x16\x6d\x07\xcc\x22\x38\xac\xad\x94\xa5\xc5\xf1\x3f\ -\xc0\xdd\xd2\x87\xd8\x23\x96\x76\x02\x04\x10\x2e\x5e\x2d\xaf\x11\ -\x00\x80\x9a\xb5\x1b\x08\xdb\x5e\x3c\x7f\x5e\x41\x25\x2a\x2a\xe5\ -\x03\x5b\xbf\xfd\x1b\x0d\x06\x16\x2d\xf8\xd6\xec\xf5\x5a\x47\x57\ -\xc2\xeb\x0d\x22\xb4\x6e\x1f\x1c\xb4\x4e\x00\x38\x39\x57\xa0\x56\ -\xc3\x87\x38\x7b\x40\xfc\xb9\xd3\xa7\xbe\x49\xcd\x88\xda\x1c\xda\ -\xbf\x8f\xcc\xcc\x0c\xb3\xf5\x58\x01\x7f\x8a\x92\xf0\x06\x51\x74\ -\xe8\xc6\x00\x67\x81\x16\xa2\x0f\xf0\xac\x58\x9d\x2a\xb5\x8a\xaa\ -\xf9\x5c\xdd\xfd\xa8\xdf\xf6\x39\xaa\xd5\xe9\xc9\xf9\xc3\x3f\x90\ -\x91\x7c\xd9\x5c\x5d\xa1\x14\xcd\x19\x58\x68\xee\x03\xec\x15\xab\ -\x3a\x00\x09\xf1\x37\x64\xd8\xae\x74\x12\x18\x5c\x0d\x2f\x6f\x5f\ -\x32\x33\x4a\xce\xfe\x8d\xbb\x2d\x1c\x54\x51\x51\x51\xb9\x0f\xba\ -\xfc\x7c\x5b\x8e\xb8\x05\xe0\xe0\xfe\x7d\x24\x26\x98\x13\xf5\xd4\ -\x10\x12\xde\x8e\x88\xc6\xa3\x70\x71\xfb\x6f\xee\x50\xe5\x9a\x9d\ -\xb8\x71\x71\x33\x59\xa9\xd7\x84\x9e\x76\xed\xea\x15\x8b\x9b\x0c\ -\xd9\x88\xc8\xff\xff\x47\x98\x3a\x4d\xc7\xfc\xa7\xf9\x9a\x8f\x7f\ -\x2d\x5a\xf6\x7a\x9f\xb8\x2b\xbb\xb9\x74\x7c\x39\xf9\xb9\x66\x55\ -\x60\x8c\xa3\x0c\x3a\x00\x72\x5c\x01\xdc\x40\xb0\x1b\x60\x42\x5c\ -\xf9\x75\x00\xa0\x68\x46\x80\x08\x89\x09\x09\x0a\x2b\x51\x51\x29\ -\xdb\xe4\xe4\xd8\xbe\x04\xee\xc0\xfe\x3d\x92\xd7\x78\xf9\x85\xd3\ -\xa2\xe7\x34\xea\xb5\x79\xe6\xbe\x87\x3f\x14\x75\x19\x8d\x6c\xf6\ -\x28\x65\x3c\x41\x5d\x32\x81\xd5\x9a\xe3\x1b\x14\x5d\xcc\x9f\x6a\ -\x08\x09\x6f\x4f\xdb\x01\x5f\x10\xd1\x78\x14\x5a\x47\x57\xa9\x8f\ -\x6f\x43\x51\x75\x40\x99\x42\x8e\x08\x80\x9e\xa2\x3c\x80\xd0\x92\ -\x0c\xef\xc4\x5d\x93\x61\xbb\xd2\x4b\x85\x0a\x9e\x42\x76\xe9\xe9\ -\xe5\x67\x70\x92\x8a\x8a\xdc\xd8\xc3\xdb\x3f\x14\x55\xf4\x88\xe2\ -\xea\xee\x4b\xad\x46\xa3\x08\x09\x17\xbb\xb3\xf6\xa9\x54\x9b\xa0\ -\xea\x2d\x88\xbf\x6e\x9d\xb2\x42\xad\xa3\x93\x19\x6b\x9c\x15\x50\ -\x72\x7f\x1c\x1c\x1c\x89\x68\x5c\x72\x77\x60\xad\xa3\x0b\x61\x51\ -\x03\x08\x0e\x6d\xc3\x85\x63\x4b\x89\xbf\xb6\x1f\xc1\x21\x84\x0e\ -\x40\x6d\x8a\x3a\x06\x96\x19\xe4\x88\x00\x80\xe0\x35\x40\xc2\x9d\ -\x9b\xe5\xb6\x17\x00\x80\xbb\x87\x97\x90\x5d\xa1\x1d\x7c\x79\xa9\ -\xa8\x94\x56\x6c\x7d\xf7\x7f\x97\xc4\x44\xb1\x48\x9e\xab\xbb\x2f\ -\x6d\xfa\x7f\x46\x48\x78\x3b\xa4\xbc\xd5\x47\x34\x7e\x18\xad\xd6\ -\x3a\x87\xac\x87\x4f\x35\xab\xac\x31\x97\x6a\x75\x7a\xe2\xee\x29\ -\x36\xa9\x10\xc0\xb5\x82\x3f\x0d\xda\x4d\x22\xa2\xf1\x48\x29\xdb\ -\x28\xdd\x84\xc8\xea\x58\xd5\x01\xd0\xe5\xe7\x92\x9e\x26\x3c\x41\ -\xb8\xcc\xe1\x28\xe8\x45\xdb\x53\xcf\x72\x15\x95\xd2\x44\x5e\x5e\ -\xae\x5d\x74\xfd\x03\x70\x72\x12\xfb\xbc\x6b\x34\x5a\xb3\x4a\xd6\ -\xdc\x3c\x02\x08\x8d\xb4\x4e\x85\x5a\x95\x5a\xe2\xdd\x4c\xef\xe2\ -\x13\x50\x9b\x0a\xde\x95\x15\x50\xf3\x4f\x9c\x5d\xbd\xa8\x51\x6f\ -\xb0\x59\x6b\x1d\x9d\x24\x45\xf5\xcb\xdc\x9b\x99\x55\x1d\x00\x80\ -\xb8\x9b\xa5\x32\x19\x45\x16\x44\xcb\x20\xbd\xbc\xc5\x22\x05\x2a\ -\x2a\x2a\x7f\x63\x32\x99\xc8\xce\xb2\x8f\xb7\x7f\x00\x4f\x4f\xb1\ -\xcf\x71\x5e\x4e\x12\x37\x2f\x6e\x35\x6b\x8f\xb0\xe8\x81\xb8\xba\ -\xfb\x9a\xb5\x56\x94\xaa\x11\x5d\xf1\x2b\xf6\x6e\xbd\x78\x34\x1a\ -\x0d\xd1\xad\x9f\x92\xab\x1e\xbf\x58\x6a\x36\x18\x8e\xa3\xb3\xf4\ -\xeb\x79\x43\xa1\x8e\x2b\xa7\x7f\x95\xb2\xc4\xae\x4b\x28\xcc\x41\ -\x8e\x1c\x00\x90\xe0\x00\xdc\xbc\x7e\x91\x28\x09\x35\xf1\x65\x89\ -\xe4\xc4\x38\x21\x3b\x9f\x8a\xca\x7e\xa0\xcb\x3a\x99\x99\x19\x9c\ -\x8f\x89\xe1\xd6\xcd\xeb\xdc\xb9\x7d\x9b\xa4\xa4\x44\x72\xee\x09\ -\x0b\x7b\x78\x7a\xe2\x53\xb1\x22\x01\x01\x81\x84\xd7\xac\x45\xdd\ -\xc8\x48\xbc\x7d\xa4\x8c\x23\x57\xb1\x47\xb2\xb3\xb3\xec\x2a\x7a\ -\x16\x55\xaf\x3e\xfb\xf7\xee\x16\xb2\xbd\x7c\x72\x05\xc1\xa1\x6d\ -\x70\x72\xf1\x90\xb4\x87\xd6\xd1\x85\x5a\x8d\x46\x71\x7a\xef\x57\ -\xe6\x48\x2c\xe1\xd9\xae\x84\x45\x0f\x20\x3c\x7a\x90\xd9\xcf\xf0\ -\xf1\xaf\x45\xb3\x6e\x53\x39\xbb\xff\x1b\xb2\xd2\xe5\x4f\x02\xf7\ -\xf4\xa9\x66\x56\x74\x02\xe0\xea\x99\x35\x52\x2a\x02\xf4\xc0\x49\ -\xb3\x36\xb2\x63\xac\xee\x00\xdc\xb8\x26\x9e\x18\x53\x96\x48\x4f\ -\x4d\x22\x29\xe1\x96\x90\x6d\x68\x58\xb9\x19\x46\x25\x0b\x69\xa9\ -\xa9\x6c\xf9\x63\x23\xbb\x77\x6e\xe3\xf8\xb1\xa3\xc4\x5e\xba\x28\ -\x39\xd7\x24\x38\xa4\x32\x6d\xdb\x77\xa0\x53\xd7\xee\x74\xe8\xd4\ -\x15\x3f\x7f\x7f\x85\xd4\xaa\x28\x81\xc1\x60\x20\x2f\x37\xcf\xd6\ -\x32\xfe\x41\xc3\xc6\x4d\x85\x6d\xf5\xba\x6c\x2e\x9f\x5c\x41\xdd\ -\xe6\x8f\x4a\xde\x27\x24\xbc\x2d\x37\x2f\xfc\x41\x7a\xf2\x25\xc9\ -\x6b\xef\xc5\xd5\xdd\x0f\x4f\xdf\x50\xbc\x7c\x43\xf1\xf2\x0b\xc7\ -\x37\x30\x0a\x47\x27\xcb\xbb\xef\x7a\xfb\xd7\xa4\x75\xbf\x8f\xc9\ -\x4c\xb9\x4a\x5a\xd2\x05\xb2\x52\xaf\x91\x95\x76\x8d\xec\xf4\x5b\ -\x18\x8d\x96\x5d\xd7\xd4\xbe\x4f\xd9\x9f\x08\x79\xd9\x89\x5c\x8d\ -\x59\x2f\x65\xc9\x11\xc0\xbe\x7e\xc1\x64\x40\x2e\x07\xe0\x1c\x60\ -\x44\xe0\x4a\xe1\x66\x39\x75\x00\x8e\x1f\xde\x29\x7c\x28\xd5\x8a\ -\xa8\xa3\xb0\x9a\xd2\x4f\x7e\x5e\x1e\xab\x57\xae\x60\xc5\x4f\x3f\ -\x72\x68\xff\x3e\x0c\x06\xa1\x4a\xd4\x62\xb9\x13\x77\x9b\x5f\x7e\ -\x5a\xc6\x2f\x3f\x2d\xc3\xd1\xd1\x91\x6e\x3d\x7b\xf3\xf0\xd8\x47\ -\xe9\xd4\xb5\x3b\x0e\x0e\x72\xdd\x94\xa9\x28\x45\x56\x66\x86\xdd\ -\x25\x18\xb7\x6e\xdb\x8e\xe0\x90\x10\xee\xc4\x89\x45\xfe\x6e\x5e\ -\xdc\x4a\xd5\x88\x6e\x78\xf8\x88\x95\x0b\xff\x8d\x86\x3a\xcd\xc7\ -\x73\x70\xe3\x14\x4c\x26\xf1\x08\x88\x9b\x47\x20\x7e\xc1\xd1\x54\ -\xac\x54\x17\xdf\xa0\x48\x5c\xdd\xfd\x24\xee\x2b\x4d\xa3\x97\x5f\ -\x38\x5e\x7e\x7f\xbf\xdc\x18\x0c\x05\x64\x24\x5f\x26\x2d\x21\x86\ -\xd4\x84\x73\xa4\x27\x9e\x97\xe4\x10\x54\xaa\xda\x0c\xbf\xe0\x7a\ -\x66\xa9\xb9\x70\xf4\x47\x8c\x06\x49\x57\xfa\xf3\xcd\xda\xc8\xce\ -\x91\xcb\x01\xc8\x06\x62\x81\x5a\x25\x19\x2a\x11\x01\xd0\xe5\xe7\ -\x92\x95\x95\x41\x7e\x6e\x36\x4e\xce\x2e\x78\x7a\x55\xc4\x5d\xb0\ -\xe4\xce\x5a\x1c\xda\xb7\x59\xd8\xb6\x61\x93\x26\x0a\x2a\x29\xdd\ -\x24\xc4\xc7\xf3\xcd\x9c\xd9\x2c\x5b\xb2\x88\xf4\x34\x65\x46\xaa\ -\x16\x16\x16\xb2\x71\xc3\x3a\x36\x6e\x58\x47\x78\x8d\x9a\x4c\x9e\ -\xf2\x0e\xfd\x07\x0d\x45\xa3\x51\xeb\xae\xed\x91\x02\x9d\x0e\x9d\ -\xce\xb6\x2d\x7f\xef\x87\x56\xeb\xc8\xc8\x87\xc7\xf1\xf9\xc7\x33\ -\x84\xec\x4d\x26\x03\xe7\x0e\xff\x40\xb3\x6e\x6f\x4b\xde\xcb\xdb\ -\xaf\x06\xb5\x1a\x8d\xe0\xe2\xb1\x65\x0f\xb6\xf3\xaf\x49\x60\xd5\ -\x66\x04\x54\x69\x62\x86\xa3\x21\x2f\x5a\xad\x33\xbe\x81\x91\xf8\ -\x06\x46\x52\x03\x28\xd4\xe7\x91\x12\x77\x92\xc4\x5b\x47\x49\xbc\ -\x75\x94\xc2\x82\xe2\x7b\x39\xb8\x7b\x06\x11\xd5\x72\x82\x59\xfb\ -\xa6\xc6\x9f\x25\xe1\x86\xa4\x79\x2b\x09\xc0\x72\xb3\x36\xb3\x73\ -\xe4\xfc\x46\x5b\x01\x0c\x13\x31\xfc\x66\xd9\x7e\xfc\xfc\xc5\x4b\ -\x36\xee\x45\x97\x9f\xcb\xd1\x83\x3b\xb8\x10\x73\x94\x4b\xe7\x4f\ -\x70\x35\x36\x06\x7d\x81\xee\x3f\x76\x15\x3c\xbc\xa9\x5c\x35\x9c\ -\x88\xba\x8d\xa8\x5b\xaf\x39\x0d\x1a\xb7\xc3\xd5\xcd\x36\xed\x9c\ -\xe3\x6e\x5d\x65\xd2\x63\x5d\x85\xbc\x73\x07\x07\x07\xce\x5c\xbe\ -\x89\xaf\x9f\x92\xde\x78\xe9\x23\x33\x33\x83\xb9\xb3\x67\xf1\xed\ -\xdc\xff\xd9\x64\xce\x79\xfd\x86\x8d\xf9\xe8\xf3\xd9\x34\x6a\xd2\ -\xcc\xea\x7b\xab\x3c\x98\x94\xe4\x64\xbb\xc9\xfc\xff\x37\xf9\x79\ -\x79\x0c\xe8\xd5\x99\xf8\x3b\xe2\x6d\xd0\x1b\x76\x78\x99\xc0\x6a\ -\xcd\xcd\xda\xef\xce\xb5\x7d\x5c\x3a\xbe\x9c\xbc\xec\xc4\xbf\xfe\ -\x9d\xbb\x67\x20\xc1\x61\xed\x08\x09\x6f\x8b\xbb\xa7\xf8\x30\x21\ -\x5b\x62\x34\xe8\x49\xba\x75\x94\xb8\xab\xbb\x49\x8e\x3b\xf9\xd7\ -\xdb\xba\x46\xa3\x25\x38\xac\x0d\xb5\x9b\x3c\x82\xb3\xab\xf4\x64\ -\x69\x93\xc9\xc8\xfe\xdf\x26\x93\x95\x26\x29\x1f\xe1\x29\x60\x9e\ -\xe4\xcd\x4a\x01\x72\x3a\x00\x6f\x01\xef\x8b\x18\x4e\x7e\x6f\x3e\ -\xcd\x5a\x75\x95\xf4\xf0\xf3\x67\x8f\xb0\xe5\xf7\xe5\x1c\xdc\xb3\ -\x89\xfc\x3c\xe9\xf3\xbd\x9d\x9c\x5d\x68\xd4\xb4\x03\x5d\x7b\x8f\ -\xa0\x51\xb3\x0e\x66\xdd\x1b\x99\xcb\xd7\xb3\x5e\x67\xdb\xc6\x9f\ -\x85\x6c\x1b\x36\x6e\xca\xa6\x1d\xd2\x3b\x88\x95\x65\x7e\x5b\xb7\ -\x86\xc9\x2f\x3d\x47\x72\x92\x6d\x4b\x48\x1d\x1d\x1d\x79\xf9\xf5\ -\xb7\x78\xfe\xa5\xd7\xd0\x6a\xb5\x36\xd5\x62\x6d\x72\x73\x73\x88\ -\xbd\x7c\x89\x1b\xd7\xae\x91\x9a\x9a\x02\x80\x8b\x8b\x2b\x7e\x7e\ -\x7e\x54\x0f\x0d\x23\xac\x46\x4d\x9b\xfc\x4c\x72\x73\x73\xc8\xca\ -\xcc\xb2\xfa\xbe\x52\xd8\xb8\x61\x1d\xaf\xbf\xfc\xbc\xb0\xbd\x9b\ -\x47\x25\xda\xf6\xff\xfc\xaf\xfe\xff\xd2\x31\x91\x93\x11\x87\x2e\ -\x2f\x1d\xd7\x0a\xbe\xa5\xe6\xd0\x2f\x0e\x43\x61\x7e\xd1\x81\x6d\ -\x32\xe1\x51\xb1\x2a\x8e\x4e\xe6\xbf\xc8\xdd\xbc\xb8\x99\x98\x83\ -\x0b\xa4\x2c\x39\x09\x34\x41\xb0\xdb\x6d\x69\x43\x4e\x07\xa0\x0f\ -\xb0\x41\xc4\x70\xd8\xc3\xcf\xf3\xd0\x98\x17\x85\x1e\x7a\xe5\xd2\ -\x69\x96\xff\xf0\x19\xc7\x0f\xff\x69\x89\xb6\x7f\x10\x10\x58\x99\ -\x2e\xbd\x46\xd0\xbd\xcf\x28\xbc\xbc\x95\xcd\xb8\x8f\xbd\x78\x9a\ -\x37\x27\x0d\x12\xbe\xa3\x9e\x3a\x7d\x26\x4f\x3f\x2f\xf6\xb3\x29\ -\xeb\x64\x64\xa4\x33\xe5\xb5\x97\xf8\xe5\xa7\x07\x87\x35\xad\x4d\ -\x9b\x76\x1d\xf8\x7e\xd9\x0a\xbc\xbc\xc4\xa7\xb2\x95\x36\xf4\x7a\ -\x3d\xfb\xf6\xec\x62\xd3\x6f\xeb\xd9\xbe\xe5\x0f\xae\x5f\xbb\xfa\ -\x40\x7b\x77\xf7\x0a\x34\x69\xd6\x9c\x1e\xbd\xfb\xd2\xa7\xff\x40\ -\x82\x43\x94\xaf\xff\x36\x18\x0c\xa4\xa6\xa4\xd8\x55\xe6\xff\xfd\ -\x30\x99\x4c\x8c\x1f\x3d\x9c\xe3\x47\x0f\x0b\xaf\xa9\xd5\xf0\x21\ -\xc2\xcd\xac\x6d\x57\xb9\x3f\xfa\x82\x1c\xf6\xac\x99\x44\x81\x4e\ -\x92\xc3\xd8\x09\xd8\xa9\x8c\x22\xdb\x23\xa7\x03\x50\x19\x10\x4a\ -\x73\x6f\xd2\xa2\x33\x6f\x4c\x7f\xb0\x17\xa6\xcb\xcf\x65\xf1\xfc\ -\x0f\xd9\xbc\xe1\x47\xc5\x92\x7b\x5c\x5c\xdd\xe9\xde\x67\x14\xfd\ -\x87\x4d\xa0\xa2\x6f\x25\xd9\x9f\xaf\xd7\x17\xf0\xda\xd3\xfd\xb8\ -\x79\x5d\x2c\xef\xc1\xd1\xd1\x91\x43\xa7\xce\x13\x52\xb9\x8a\xec\ -\x5a\x4a\x1b\x17\xce\xc5\x30\x6e\xd4\x30\xae\x5e\x89\xb5\xb5\x94\ -\xfb\x12\x5d\xaf\x01\xcb\x7e\x5d\x47\xa5\xc0\x40\x5b\x4b\x91\x95\ -\x8c\xf4\x34\x16\xce\x9f\xc7\x77\xf3\xe6\x98\x3d\xc3\x5e\xab\xd5\ -\xd2\xbd\x57\x1f\x26\x3e\x33\x89\x96\xad\xdb\xc8\xac\xf0\x6f\x32\ -\xd2\xd3\xc8\xcf\xff\xef\xf5\x9f\x3d\x72\xee\xec\x19\x46\x0d\xed\ -\x2f\xec\xac\x68\x1d\x5d\x69\x3b\x60\x96\xe2\x35\xfe\xe5\x89\xf3\ -\x87\x7f\xe0\xfa\xf9\x8d\x52\x96\xac\x44\xf0\x5a\xbb\xb4\x22\x67\ -\x1c\xfc\x36\x20\xf4\x8d\x11\x7b\xe9\xf4\x03\xff\xfc\x42\xcc\x51\ -\x5e\x9a\xd8\x8b\x3f\xd6\x2f\x51\x34\xb3\x57\x97\x9f\xcb\xfa\x5f\ -\xbf\xe3\xe9\x31\xed\x59\x30\xe7\x1d\x52\x53\xe4\x1b\xc2\x63\x32\ -\x99\xf8\xee\xab\xa9\xc2\x87\x3f\x40\xef\x7e\x03\xd5\xc3\x9f\xa2\ -\x19\xe6\x7d\xba\x76\xb0\xdb\xc3\x1f\xe0\xcc\xe9\x93\x0c\xec\xd5\ -\x85\xb4\x54\x65\x12\x11\xad\x8d\x2e\x3f\x9f\x4f\x66\x4c\xa7\x49\ -\x54\x04\x1f\xbd\xff\x9e\xd9\x87\x3f\x14\xbd\x99\x6f\xdc\xb0\x8e\ -\x81\xbd\xba\x30\x6a\xe8\x00\x2e\x5d\x90\x7f\xbc\xb5\x2e\x3f\xbf\ -\xd4\x1c\xfe\x00\x75\xa3\xa2\x19\x38\x64\xb8\xb0\xbd\xa1\x30\x9f\ -\x4b\xc7\xed\x2b\xf2\x55\x9a\xc9\xce\xb8\xc5\x8d\x0b\xe2\x89\xd8\ -\x14\x95\xfc\xbd\xaa\x90\x1c\xbb\x41\xee\x4b\xbb\xee\x40\x89\x45\ -\xec\xf9\x79\xb9\x74\xe9\x35\x02\x77\xf7\xff\x36\xbd\xd8\xfe\xc7\ -\x0a\x3e\x7f\xff\x59\xa1\xb1\xb9\x72\x61\x34\x18\xb8\x7c\xe1\x24\ -\x9b\xd6\x2f\x21\x3b\x33\x8d\xd0\x1a\x51\x16\x27\x0c\x2e\xfe\x76\ -\x06\x9b\xd6\x2d\x91\xb4\x66\xd6\x9c\x6f\xac\x12\x3a\xb5\x67\x7e\ -\xf9\x69\x19\x4f\x3f\x3e\x96\xfc\x7c\xfb\x2f\xb9\x4d\x4b\x4b\xe5\ -\xd8\xd1\x43\x0c\x19\x36\xa2\x54\xe7\x04\x1c\x3e\x78\x80\xd1\xc3\ -\x07\xb2\x61\xed\x6a\x0a\x0a\xe4\xcd\xa6\xbf\x7a\x25\x96\xa5\x8b\ -\xbf\xc7\x64\x32\xd1\xac\x45\x2b\x59\x4a\x2a\x4d\x26\x13\xe9\xe9\ -\xe9\x56\x2b\xfb\xd3\xeb\xf5\x5c\xbd\x72\x99\xf8\xf8\x3b\xe8\x74\ -\x3a\x5c\xdd\xdc\xcc\xfa\xfb\xae\xdf\xa0\x11\xbf\xae\x58\x2e\xfc\ -\x33\xce\x4e\xbf\x49\x50\x68\x6b\x9c\x5d\xec\xab\xa2\xa9\x34\x72\ -\xee\xd0\x42\xb2\xa5\x35\x22\xfa\x10\x58\x6d\xe6\x76\xc1\x14\x9d\ -\x83\x55\x28\x7a\xc9\xb6\xdb\x24\x15\xb9\xeb\x9a\x3e\x01\x5e\x11\ -\x31\x7c\x79\xca\x1c\x5a\xb5\xef\xfd\xd7\xff\x37\x99\x4c\x2c\xf9\ -\x6e\x26\xeb\x7e\xb1\x7d\xb9\xa5\x8b\x8b\x1b\x5d\x7a\x0d\xa7\xef\ -\x90\xc7\xa9\x14\x28\xed\x8d\x5c\xa7\xcb\x63\xe1\x9c\xf7\xd8\xb6\ -\x49\x2c\xe9\xef\x2e\x3d\x7a\xf7\x65\xd1\xf2\x95\x92\xd6\x94\x35\ -\x96\x2f\x59\xc4\x4b\xcf\x3d\xa9\xd8\x17\xbb\x46\xa3\x51\xe4\xd9\ -\x63\x1f\x9d\xc0\x47\xb3\xfe\x27\xfb\x73\x95\xc6\x64\x32\xf1\xc9\ -\x8c\xe9\x7c\xf1\xe9\x87\x56\xb9\x47\x6f\xd5\xb6\x1d\xf3\x16\x2c\ -\x21\x30\xc8\xbc\x0a\xa0\xbb\x64\x66\x66\x28\xde\xf4\xe7\x4e\xdc\ -\x6d\xd6\xaf\x59\xc5\xe6\x8d\xbf\x71\x25\xf6\x32\x06\xc3\xdf\x55\ -\x06\x4e\x4e\x4e\xd4\x8d\x8a\xa6\x73\xb7\x1e\x0c\x1d\x3e\x0a\x4f\ -\x2f\xf1\x6c\xf4\xe7\x9f\x7a\x9c\x3f\xb7\x8b\xb7\xfd\x8d\x68\x3c\ -\x8a\xb0\xa8\x01\x92\xb4\xab\xfc\x13\xa3\xb1\x90\xed\x3f\x8d\xc7\ -\x60\x10\x76\x6e\x4d\x40\x43\xe0\x94\x84\x6d\xba\x00\x4f\x00\x6d\ -\xf9\xef\xd0\xa0\x34\x60\x17\xb0\x08\xf8\x0d\xb0\x9b\x9a\x55\xb9\ -\x1d\x80\xd1\xc0\x8f\x22\x86\x7d\x06\x8d\x67\xfc\x53\x53\x81\xa2\ -\xd2\x8c\x6f\xbf\x7c\x9b\x2d\xbf\xd9\x57\xc8\x4b\xab\xd5\xd2\xba\ -\x43\x3f\xba\xf5\x1e\x41\xdd\x7a\xcd\x4a\xac\x1c\xb8\x74\xfe\x04\ -\x73\x3e\x7d\x95\x5b\x37\x2e\x4b\xda\xc7\xd1\xd1\x91\x6d\x7b\x0e\ -\x51\xbb\x6e\xa4\x25\x72\x4b\x35\xab\x57\xfe\xcc\xb3\x4f\x3c\x6a\ -\x71\x43\x1f\x8d\x46\x43\x68\x8d\x48\xea\x46\x37\xa3\x56\x9d\x06\ -\x04\x57\x0e\xa7\x52\x50\x15\x2a\x78\x78\xa1\xd5\x16\xb5\xbd\xd0\ -\xe5\xe7\x92\x94\x70\x9b\x3b\x71\xd7\xb9\x7c\xe1\x24\x67\x4e\xec\ -\xe7\xe2\xb9\xe3\x92\x9a\xa8\xfc\x7b\xcf\x15\x6b\x7f\xa7\x5d\x87\ -\x4e\x16\x69\xb7\x26\x79\x79\xb9\x3c\x37\xf1\x71\x36\xac\x5d\x65\ -\xd5\x7d\x83\x43\x2a\xb3\xfc\xd7\x75\xd4\x89\x8c\x32\x6b\xbd\xbe\ -\xa0\x80\x54\x05\xaf\x5d\x72\x73\x73\x98\xfb\xe5\x2c\x96\x2d\xfe\ -\xe1\x1f\x87\x7e\x71\xb8\xbb\x57\x60\xe4\x23\x63\x79\xfc\xc9\x67\ -\x70\x77\x7f\x70\x3f\xfa\xcf\x3e\xfa\x80\xc5\x0b\xa5\xbd\xe0\x54\ -\xab\xdd\x93\xba\xcd\xc7\x4b\x5a\xa3\xf2\x4f\x74\x79\x69\xec\x5c\ -\xf9\xa4\xd4\x65\x37\x29\x4a\x00\x2c\xe9\x1e\xb2\x3b\xf0\x31\xd0\ -\x40\xf0\xb9\x97\x80\x67\x80\x2d\x52\x05\x29\x81\xdc\x0e\x40\x18\ -\x82\x6d\x81\xc3\x6b\xd5\xe3\xe3\x39\xeb\x30\x99\x4c\xcc\xfd\x7c\ -\x32\x3b\xfe\xf8\x45\x66\x29\xf2\xe2\xeb\x1f\x44\xeb\xf6\xbd\xa9\ -\xdf\xb8\x2d\xa1\x35\x22\xf1\xf6\xf1\x03\x13\x24\x25\xde\xe6\xdc\ -\x99\xc3\xec\xde\xbe\x86\x53\xc7\xf6\x9a\xf5\xec\x49\x2f\x4f\xe6\ -\x8d\xa9\xef\xc9\xac\xb8\xf4\xb0\x7f\xcf\x6e\x86\x0f\xea\x83\xde\ -\x82\xf0\x73\xe5\xaa\x35\xe8\xde\x77\x34\x2d\xda\xf6\xc4\x3f\x40\ -\x7a\xd9\x53\x6a\x72\x3c\xdb\xff\xf8\x85\xdf\xd7\xfc\x60\xd6\xf5\ -\x53\x8d\x9a\xb5\xd8\xbe\xf7\x30\x2e\xae\xae\x92\xd7\x5a\x9b\x94\ -\xe4\x64\x46\x0e\xe9\xcf\xa9\x13\xb6\x19\x6d\xee\xed\x53\x91\x65\ -\x2b\xd7\xd2\xa4\x99\xb4\x5a\x77\x93\xc9\x44\x6a\x4a\x8a\x62\x35\ -\xff\x37\xae\x5f\xe5\xa9\xc7\xc6\x72\xeb\xa6\xf4\x9e\xf5\x01\x95\ -\x02\x99\xf4\xf2\x6b\xf4\x1d\x30\xf8\xbe\x0d\xa3\x3e\xfd\xf0\x7d\ -\x96\x7c\xff\x9d\xe4\xe7\xd6\x6c\x30\x8c\x1a\xf5\x87\x4a\x5e\xa7\ -\xf2\x37\x46\x83\x9e\xad\xcb\xc7\x62\x32\x49\x7e\xb9\x78\x90\x13\ -\x50\x03\xf8\x1c\xe8\x6f\xa6\xac\x4f\x81\xd7\x28\x8a\x36\xd8\x0c\ -\x25\x5a\x9b\xdd\x00\x4a\x6c\x31\xa5\xd5\x6a\x59\xb4\xea\x14\x3f\ -\x2f\x9e\xc5\xfa\x5f\xa5\x7f\x30\xca\x0a\xb5\xeb\x46\xb2\xe5\xcf\ -\xfd\x38\xbb\x28\x3b\x31\xcb\x5e\xb9\x7a\x25\x96\x5e\x9d\xdb\x99\ -\xdd\xd5\x2f\xac\x66\x14\xa3\xc6\xbf\x42\xc3\xa6\x1d\x64\xe9\xd4\ -\xa7\xcb\xcf\x65\xc5\x92\xd9\x6c\x58\xb5\x40\x72\x34\xe2\xad\x77\ -\xa7\xf3\xdc\x8b\xf6\x9d\x37\x94\x91\x91\xce\xd0\xbe\x3d\x39\x7d\ -\xea\x84\x4d\x75\x78\x7b\xfb\xb0\x72\xfd\x46\xea\x35\x68\x24\xbc\ -\x26\x2b\x2b\x93\xdc\x1c\xe9\x3d\x40\x44\xb8\x78\xe1\x3c\x13\xc7\ -\x8f\x26\x35\x25\xc5\xa2\xe7\xd4\x6b\xd0\x90\xd7\xa7\xbc\x47\x74\ -\xfd\xbf\x5f\x08\x3f\x9d\x39\x9d\x25\x3f\x48\xaa\x3d\xff\x8b\x96\ -\xbd\x3e\xc0\xdb\xbf\xa6\x45\x9a\x54\xe0\xc8\xd6\xf7\x49\xb9\xf3\ -\xe0\xe4\xf3\x62\xb8\x45\x91\x13\x70\x37\xac\xeb\x41\x51\xcf\x9b\ -\x17\x01\x4b\xbf\xb4\x17\x00\x13\xb0\xa1\x13\xa0\x84\x03\xb0\x14\ -\x18\x25\x62\xd8\xac\x75\x37\x0e\xef\xb3\x2c\x12\x52\xb5\x5a\x75\ -\x5a\xb5\x69\x4b\x95\xaa\xd5\xf1\x0f\x08\x20\x3b\x3b\x8b\x2b\xb1\ -\x97\x39\x7a\xf8\x90\x22\xd9\xc7\x72\xe2\xe1\xe1\xc9\xc6\xed\xbb\ -\xa9\x55\xbb\x7c\xf6\xfe\xd7\xeb\xf5\xf4\xed\xd6\x91\x93\xc7\x8f\ -\x4a\x5e\xeb\xe6\x56\x81\x31\x13\xdf\xa2\x6b\xaf\x87\x14\x69\xea\ -\x74\xfe\xec\x11\x3e\x7e\x77\xa2\xa4\x68\x80\x7f\x40\x00\x47\x4e\ -\x5f\xc4\xd5\xcd\xf2\x01\x2a\x4a\x90\x93\x93\xcd\x43\x03\xfb\x70\ -\xe4\x90\xa4\x36\xa8\x8a\x51\x29\x30\x90\x2d\xbb\x0e\x0a\xe5\x04\ -\x14\xe8\x74\xa4\xa5\xa5\x29\xa2\x23\x27\x27\x87\x11\x83\xfa\x70\ -\xe3\xfa\x35\x59\x9e\xa7\xd1\x68\xe8\x37\x70\x30\xcf\xbf\xf4\x1a\ -\x3f\x7c\xf7\x0d\x3f\x2e\x5a\x68\xd6\x73\x2a\x55\x69\x4a\xa3\x4e\ -\xf6\xed\x50\x96\x16\xd2\x93\x2e\x72\xe8\x8f\x77\xcd\x89\x02\x40\ -\x91\x13\xd0\x19\x68\x01\x7c\xc4\x7f\xef\xf8\x2d\xe1\x19\x60\xae\ -\x8c\xcf\x93\x84\x12\x0e\xc0\x44\x14\x6e\x9b\xa8\xd1\x68\x18\x32\ -\x7c\x04\xe3\x27\x3c\x45\xe3\xa6\xcd\x8a\x7d\xf3\xbb\x70\x2e\x86\ -\xb5\xab\x56\xf2\xeb\x8a\xe5\x25\x36\x32\xb1\x36\x0e\x0e\x0e\x7c\ -\xbb\x68\x29\x7d\xfb\x9b\x3f\x6a\xb3\xb4\xf3\xc1\xbb\x6f\xf3\xbf\ -\x59\x9f\x48\x5e\x57\x2d\xac\x36\x93\xdf\xfd\x96\xc0\xe0\x6a\x0a\ -\xa8\xfa\x9b\xf8\xb8\xeb\xbc\xfd\xd2\x70\xd2\x52\x13\x4b\x36\xfe\ -\x7f\x3e\xfe\xe2\x2b\xc6\x8c\x7f\x5c\x41\x55\xe6\x61\x30\x18\x78\ -\x64\xf8\x20\xb6\x6f\x95\x54\x0a\xa5\x38\x2d\x5a\xb5\x66\xe5\xfa\ -\x3f\x70\x72\x2a\xbe\xeb\x9d\xd1\x68\x24\x25\x39\x59\xb1\x44\xc5\ -\xa9\x6f\xbc\xc2\xda\x55\xf2\x27\xe0\x3a\x39\x39\xa1\xd7\x4b\x1a\ -\x38\xf3\x17\x3e\x01\x11\x34\xe9\xf2\x86\x45\x5d\xef\x54\xfe\x49\ -\xdc\x95\x5d\x9c\xd9\x37\xcf\x5c\x27\xa0\x00\x70\x96\x59\x12\x14\ -\x95\x1b\x36\x06\x6c\xf2\xb6\xaa\x84\x03\x10\x09\x9c\x55\xe0\xb9\ -\x40\x51\xab\xdc\x0f\x3f\xfb\x42\xd2\xa8\x4d\xa3\xd1\xc8\xef\xeb\ -\xd7\xf0\xbf\x59\x9f\x99\xf5\xb6\x29\x37\x1a\x8d\x86\x8f\xbf\xf8\ -\x8a\x47\xc6\x3d\x66\x6b\x29\x36\x63\xdf\x9e\x5d\x0c\xed\xd7\x53\ -\xf2\x97\x7a\xfd\xc6\x6d\x78\xe5\xed\xaf\xad\x36\xec\xe9\xea\xe5\ -\xb3\x4c\x79\x71\x18\x3a\x9d\x58\xd6\x79\xe3\xa6\xcd\xf8\x7d\x9b\ -\xd8\x0c\x78\x6b\x32\x73\xda\x3b\xcc\xfe\xec\x23\xb3\xd7\xdf\xcd\ -\x81\x09\xad\x11\x49\xe5\xaa\x35\x28\xd0\xe5\x53\x50\x90\xcf\xc5\ -\x73\xc7\x39\x7e\xf8\x4f\x62\x2f\x9e\x36\x3b\x89\xf2\x89\xa7\x9f\ -\x63\xda\xcc\xe2\x1d\x41\x25\x1b\xfe\x9c\x38\x7e\x94\x71\x23\x87\ -\xda\xd5\x24\xc1\xa0\xea\xad\x88\x6e\xf3\x34\x5a\xad\x12\xe7\x4d\ -\xf9\x26\xe5\xce\x29\x4e\xfc\x39\x8b\x42\xbd\x32\x57\x49\x66\xb2\ -\x09\xe8\x65\x8b\x8d\x95\x70\x00\x34\x14\x4d\x4f\x0a\x90\xfb\xc1\ -\xe3\x1e\x7b\x82\xe9\x1f\x7e\x8a\x93\xb3\xf9\x1f\x8c\x3f\x77\x6c\ -\xe3\xd3\x99\xd3\x39\x7c\xf0\x80\x8c\xca\xc4\x71\x70\x70\x60\xc6\ -\x27\xb3\x18\xf7\xf8\x44\x9b\xec\x6f\x0f\x64\xa4\xa7\xd1\xa9\x75\ -\x33\xe2\x6e\x0b\x35\x8e\xfc\x8b\x4e\xdd\x87\xf2\xe4\x0b\x33\xd1\ -\x3a\xca\x35\xc4\x52\x8c\x35\x2b\xbe\xe1\xc7\xef\x3e\x14\xb6\xdf\ -\x77\xec\x0c\xe1\x35\xec\xe7\xde\x76\xd3\x6f\xeb\x19\x3f\x7a\xb8\ -\x59\x87\x5c\x95\xea\xb5\x18\x39\xee\x65\x9a\xb6\xec\xf2\x57\x15\ -\xc5\xfd\xb8\x71\xf5\x02\x3f\x2d\xfa\x9c\xc3\xfb\xb7\x98\xb5\xcf\ -\x8f\x2b\x56\xd3\xb5\xc7\x7f\xbf\x03\xf3\xf2\x72\xc9\xcc\xc8\x94\ -\xfc\x3c\x11\x8c\x46\x23\x0f\x0f\x1f\xc4\xd9\xd3\x27\x15\x79\xbe\ -\x39\xd4\xa8\x37\x98\x9a\x0d\x87\xa3\xcc\x57\xb3\x0a\x14\xf5\x57\ -\x38\xb6\xe3\x23\xf2\xb2\x6d\x3b\x5b\xe4\x5f\xf4\xa5\xa8\x44\xd0\ -\xaa\x28\xd5\xbd\xa4\x15\x50\x57\xae\x87\x39\x38\x38\xf0\xe1\xe7\ -\x5f\xf2\xca\xeb\x53\x2c\x6e\xb8\x12\x1a\x16\xce\xa8\x47\xc6\xd1\ -\xa8\x49\x53\x62\x2f\x5f\x22\x21\x5e\x7c\x4a\x97\xa5\xb8\xba\xb9\ -\xf1\xf5\xc2\xc5\x0c\x1f\xf9\xb0\xd5\xf6\xb4\x47\xa6\xbd\xfd\x26\ -\xbb\x76\x6e\x97\xb4\xa6\x75\x87\x3e\x3c\x3f\xf9\x73\x1c\x6c\xd0\ -\x70\xa7\x56\x9d\x86\xec\xda\xb6\x86\x9c\x6c\xb1\x83\xa8\x46\xcd\ -\x5a\x76\x33\x35\xf0\xe6\x8d\xeb\x8c\x1c\xdc\x0f\x9d\x2e\x5f\xd2\ -\x3a\xad\x56\xcb\x88\xb1\x2f\xf1\xfc\xe4\xcf\xa9\x16\x1a\x51\x62\ -\x03\x1f\xef\x8a\xfe\xb4\xe9\xd8\x8f\xda\x91\x8d\x39\x79\x74\x17\ -\x3a\x89\x8d\x9c\x4e\x1c\x3b\xca\x98\xf1\x8f\xff\xe3\xf3\x5d\x58\ -\x58\x48\x46\x7a\xba\xa4\xe7\x48\x61\xfd\x9a\x55\xfc\xbc\x6c\xb1\ -\x62\xcf\x97\x82\x46\xa3\xa1\x6e\xf3\x47\x09\x8b\x1e\x80\x7a\xf8\ -\x2b\x8b\xb3\xab\x37\x81\xd5\x5b\x92\x1c\x77\x02\xbd\xb4\xb9\x00\ -\x4a\xd2\x04\xf8\x06\xb0\xea\x60\x0b\xa5\xbe\x4d\x83\x81\x9e\x72\ -\x3c\x48\xab\xd5\xf2\xc5\xdc\xf9\x8c\x1e\x33\x4e\x8e\xc7\xfd\x45\ -\x78\x8d\x9a\x3c\x3c\xf6\x51\x1a\x36\x6a\xc2\xf5\x6b\x57\xb8\x13\ -\x17\x27\xeb\xf3\xff\x4d\x9d\xc8\x28\x7e\x5e\xbd\x81\xd6\x6d\xdb\ -\x2b\xba\x8f\xbd\x13\x7b\xe9\x22\x2f\x3d\xfb\xa4\xa4\xd0\x7f\x64\ -\xbd\xe6\xbc\x3a\x75\x1e\x5a\x47\x73\xa7\xa3\x59\x86\x83\x83\x03\ -\xfa\x02\x1d\xa7\x8e\x8b\x95\x79\x3a\x39\x3b\x4b\x6a\xfb\xaa\x14\ -\x26\x93\x89\x89\xe3\x1f\xe6\xc2\xf9\x73\x92\xd6\x79\x78\xfa\xf0\ -\xfa\x7b\xf3\xe9\xd8\x7d\x28\x0e\x0e\xd2\xbe\x22\x82\x42\xaa\xd3\ -\xae\xf3\x00\xce\x9d\x39\x2c\xa9\xb5\x76\x5a\x5a\x2a\x9e\x5e\x5e\ -\x34\x6b\xd1\xea\xaf\x7f\x97\x9e\x96\x66\x71\x5f\x88\xe2\xc8\xcd\ -\xcd\xe1\x85\x67\x9e\x20\x37\xc7\xfa\xa3\xa5\xff\x8d\x46\xa3\x25\ -\xba\xf5\x53\x54\xa9\xd5\xc5\xd6\x52\xca\x0d\x8e\x4e\x6e\x04\x55\ -\x6f\x49\x4a\xfc\x69\x0a\xf2\x94\x73\x32\x25\xe0\x0f\xa4\x02\x56\ -\x0d\x4d\x2b\x35\x13\x57\x96\x4b\x50\x8d\x46\xc3\xac\xaf\xbe\x61\ -\xf8\xc8\xd1\x72\x3c\xee\xbe\xcf\xef\xd6\xb3\x37\xbf\x6f\xdb\xcd\ -\x4f\xab\x37\xd0\xb6\x7d\x47\x59\x4a\xc9\xee\xc5\xc5\xd5\x95\x97\ -\x5e\x7b\x93\x4d\xdb\xf7\x94\xeb\x46\x3f\x77\x99\x36\xf5\x4d\x49\ -\x89\x51\x95\xab\xd6\x60\xf2\x7b\xdf\xe2\xe4\x6c\xdb\x32\xc9\xce\ -\x3d\x87\xe3\xe4\x24\x76\xf5\xb4\x6f\xf7\x2e\xbb\x98\x4f\xbf\x62\ -\xd9\x8f\xec\x94\xd0\x75\x0e\xc0\xa7\xa2\x3f\xef\xcf\xfa\x85\x7a\ -\x8d\xcc\x1f\xe2\xe3\xeb\x17\xc8\xd4\x0f\x97\x50\xb3\xb6\x68\x6f\ -\x94\x22\x66\x7d\x3c\x93\xad\x27\x85\x09\x00\x00\x20\x00\x49\x44\ -\x41\x54\xa4\xc4\xa2\x84\xcb\xac\xac\x4c\xb3\x13\xe8\x44\x58\xf0\ -\xcd\x5c\x92\x12\xc5\x1d\x14\x2f\xbf\x70\x22\x5b\x4c\xc0\xcb\x37\ -\x54\x56\x1d\x1a\x8d\x03\xf5\xdb\x3e\x4b\x48\x78\xf9\x7e\x31\xb0\ -\x05\xce\xae\xde\x34\xeb\x36\x55\xf6\xbf\x53\xad\xa3\x33\xd5\xea\ -\xf4\x24\xb4\x6e\x1f\x90\x76\x9e\x4c\xa5\xc8\x11\xb0\x1a\x4a\x45\ -\x00\x12\x81\x67\x01\x8b\xea\xa1\xde\x98\xfa\x1e\x8f\x4d\x7c\x5a\ -\x1e\x45\x25\x10\x1a\x16\xce\xf0\x51\x0f\x33\x68\xc8\x70\x9c\x9c\ -\x9c\x88\xbd\x7c\xc9\xa2\x7e\xf4\x2e\xae\xae\x8c\x1c\x3d\x86\x6f\ -\xbe\x5f\x42\xef\x7e\x03\x70\x7c\x40\x96\x73\x79\x61\xef\xee\x3f\ -\x99\xf1\xde\x54\x61\x7b\x47\x47\x27\xde\x9e\xb9\x88\x4a\x41\x25\ -\xb6\x95\x50\x1c\x17\x57\x37\x2e\x9d\x3f\xc1\x9d\xdb\x25\x57\x93\ -\xe8\x74\x3a\x3a\x77\xeb\x61\xd3\xc1\x4e\x09\xf1\xf1\x8c\x19\x39\ -\x14\x5d\xbe\x78\xe8\xdf\xcb\xdb\x97\x77\x3f\x59\x46\xd5\xea\xb5\ -\x2c\xde\xdf\xc9\xd9\x85\x56\xed\x7b\x73\x68\xef\x66\xb2\x32\xc5\ -\xca\xf7\x0a\x0a\x74\xb8\xbb\xbb\xd3\xb4\x59\x0b\xb2\xb2\x94\x0b\ -\xcd\xc6\xdd\xbe\xc5\x9b\xaf\xbc\x20\x1c\x5d\x70\xd0\x3a\xd1\xac\ -\xdb\x54\xfc\x43\xea\x53\xa5\x56\x57\x5c\xdd\x2b\x92\x91\x7c\x19\ -\x43\xa1\xa5\x89\x89\x1a\xa2\x5b\x3f\x49\x48\x78\x3b\x0b\x9f\xa3\ -\x62\x2e\x5a\xad\x33\x81\xd5\x5a\x90\x1c\x77\x9c\x82\x7c\x4b\x73\ -\x4d\x34\x54\xaa\xda\x94\xe8\x56\x4f\xe2\x1f\xd2\x00\x9f\x80\x5a\ -\xe8\x72\x53\xc9\xce\x10\xce\x75\x72\xa3\xa8\xcf\xc0\xef\x16\x0a\ -\x11\x46\x29\x07\xc0\x44\x51\x6b\xc4\x7a\xe6\x3e\x60\xe4\x23\x63\ -\x79\xe7\x7d\xf1\xc4\x2b\xb9\xf0\xf5\xf3\xa3\x53\x97\x6e\x4c\x78\ -\xf2\x19\x9a\xb7\x6c\x85\x9f\x7f\x00\x59\x59\x59\x42\xd3\xd1\xb4\ -\x5a\x2d\x2d\xdb\xb4\xe5\x89\xa7\x9e\x63\xf6\xdc\xf9\x0c\x1c\x32\ -\x0c\x6f\x1f\x1f\x2b\xa8\xb6\x7f\x4c\x26\x13\x8f\x3d\x32\x92\xc4\ -\x84\x78\xe1\x35\x23\xc6\xbe\x44\xab\xf6\x7d\x14\x54\x25\x8d\xb4\ -\xd4\x44\x4e\x1e\x15\x0b\x6e\xd5\x6f\xd4\x98\x86\x8d\x9b\x28\xac\ -\xa8\x78\xde\x7a\xed\x45\x8e\x1e\x16\xaf\xf7\x77\x74\x74\xe2\xcd\ -\x0f\xbe\xa7\x46\x44\x7d\xd9\x34\x38\x3b\xbb\x10\x55\xbf\x25\x3b\ -\xb6\xac\x14\x6a\xab\x0b\x70\x25\xf6\x32\x43\x1e\x1a\xa9\x48\x6f\ -\x87\xbb\xbc\x37\xe5\x75\x2e\x4a\xe8\x11\x12\x1a\xd9\x97\xa0\xd0\ -\xd6\x40\x51\xd4\xd0\xcb\x2f\x9c\xaa\xb5\xba\x60\x34\x16\x92\x99\ -\x7a\x05\xcc\xac\x20\xa8\xdb\xfc\x51\xaa\xd6\xea\x6a\xd6\x5a\x15\ -\xf9\xd0\x3a\xba\x10\x58\xad\x39\x89\x37\x0f\xa3\x2f\x30\xef\x4a\ -\xc8\xc3\xa7\x2a\x91\xcd\x1f\xa5\x4a\xad\x2e\x38\x3a\xfd\xdd\x0d\ -\xd4\xcb\xb7\x3a\x77\xae\xee\xc5\x64\x14\x8e\x08\x36\xa2\x68\x08\ -\x91\x78\xed\xb1\x05\x28\x99\x6d\x32\x12\x30\xab\xb9\x7f\xbd\x06\ -\x8d\xd8\xb0\x79\x87\x5d\xb5\x55\xbd\x13\x17\xc7\xb9\xb3\xa7\xb9\ -\x7c\xe9\x22\x49\x89\x89\x64\x65\x66\xe0\xe8\xe4\x84\xb7\xb7\x0f\ -\x01\x95\x2a\x51\x37\xaa\x1e\x91\xd1\xd1\x78\x7a\x8a\x0f\x06\x29\ -\x4f\xec\xda\xb9\x9d\xe1\x03\x7a\x97\x6c\xf8\xff\x44\xd4\x6d\xc4\ -\xfb\xb3\x7e\x91\x7c\x07\xad\x24\x57\x2e\x9d\xe6\xb5\x67\xc4\x3a\ -\x7f\x8e\x7b\x7c\x22\x1f\x7e\x36\x5b\x61\x45\xf7\xe7\xdc\xd9\x33\ -\x74\x6d\xd7\x42\xd2\xfd\xf9\xc4\x49\x1f\xd0\xad\x8f\x50\xff\x2e\ -\xc9\x6c\x5a\xb7\x98\xef\xbe\x7a\x47\xd8\xfe\xb3\x2f\xbf\xbe\x6f\ -\x45\x80\x1c\x1c\x3d\x7c\x88\x47\x1f\x16\xcf\xcf\x70\x76\xf5\xa6\ -\xdd\xc0\xd9\x38\x3a\xdd\x3f\x98\x99\x93\x71\x9b\xf3\x47\x16\x93\ -\x1c\x27\xad\xb3\x62\x58\x54\x7f\x22\x1a\x2b\x73\xb5\xa9\x62\x1e\ -\xb9\x59\x77\x38\xb8\xf1\x6d\x0a\x24\x24\x06\x3a\x39\x7b\x10\x16\ -\xd5\x8f\xa0\xd0\xd6\xc5\x3a\xad\x37\x2e\xfc\xc1\xd5\xb3\xeb\xa4\ -\x48\xd9\x0a\x74\x93\xb2\xc0\x5c\x94\x74\x00\x2a\x52\xe4\xc5\x48\ -\xaa\xd9\xf2\xf6\xa9\xc8\x96\x5d\xfb\xa9\x56\x3d\x54\x11\x51\x2a\ -\xb6\x61\xf4\xb0\x81\x6c\xdb\xbc\x49\xc8\xd6\xc1\x41\xcb\x67\xdf\ -\xfc\x4e\xd5\xea\x11\x0a\xab\x92\x86\xd1\x68\xe0\x91\x81\xf5\xd1\ -\xe5\x97\x5c\x43\xdc\xaa\x6d\x3b\x56\xff\x66\x9b\x79\x1f\x52\x7e\ -\xd6\x00\x4d\x5a\x74\xe6\x8d\xe9\xe6\xb5\xaa\x15\xc1\x68\x34\xf0\ -\xca\x93\xbd\xb9\x71\xed\xa2\x90\x7d\xeb\xb6\xed\xf9\x7a\x81\xfc\ -\xd9\xf9\x46\xa3\x91\x91\x43\xfa\x71\x3e\x46\xbc\x4d\x49\x54\xab\ -\x89\x54\xa9\xd9\xb9\x44\xbb\xa4\x5b\xc7\x38\x7f\x64\x31\xb9\x59\ -\x25\x57\x15\x05\x56\x6f\x49\x83\x76\x2f\xc8\x9e\x6f\xa4\x62\x39\ -\xe9\x49\x17\x39\xbc\x65\x1a\x46\xc3\x83\xf3\x4f\x34\x1a\x07\x42\ -\xc2\xdb\x13\x1a\xd9\xa7\xc4\x66\x4d\x46\x83\x9e\xc3\x5b\xa7\x93\ -\x9f\x23\xa9\xcd\x74\x7f\x60\xbd\x94\x05\xe6\xa0\x5c\x9c\xad\x68\ -\x04\xa2\xa4\xe9\x38\x0e\x0e\x0e\x7c\xf5\xcd\x02\xf5\xf0\x2f\x63\ -\x5c\xbe\x78\x81\xed\x5b\xfe\x10\xb6\xef\xd0\x6d\xb0\xdd\x1d\xfe\ -\x50\xe4\x98\x54\xae\x5a\x43\xc8\xf6\xc2\xb9\x18\x85\xd5\xdc\x9f\ -\xbd\xbb\xff\x94\x74\xf8\x57\xf0\xf0\x66\xe2\x0b\x33\x14\x54\x54\ -\xf4\x73\x7b\x64\xc2\x1b\xc2\xf6\x47\x0e\x1d\x20\x2f\x4f\xfe\x46\ -\x2d\xbb\x77\x6e\x97\x74\xf8\x7b\xf9\x86\x52\xb9\x86\xd8\x84\xc7\ -\x80\x2a\x8d\x69\xd3\xff\x53\x22\x1a\x8f\x2e\x36\x5a\x00\xe0\x1b\ -\x14\x4d\xbd\x36\xcf\xa8\x87\xbf\x9d\xe2\x13\x10\x41\x83\x76\x93\ -\xd0\x3c\x20\xf2\xe8\x1b\x18\x49\x93\x2e\x6f\x52\xb3\xc1\x30\xa1\ -\x4e\x8d\x0e\x5a\x27\xc2\xa3\x25\x77\x7c\x9d\x22\x75\x81\x39\x28\ -\xe9\x00\x00\x6c\x90\x62\xfc\xfc\x4b\xaf\xd1\xad\xa7\x78\x98\x58\ -\xa5\x74\xf0\xdd\xbc\x39\xc2\xcd\x61\x9c\x9c\x5d\x78\x68\xcc\x8b\ -\x0a\x2b\x32\x9f\x2a\xd5\xc4\x1c\x80\xd4\x94\x14\x32\xd2\x95\xe9\ -\x5d\x5f\x1c\x26\x93\x89\x69\x6f\xbf\x29\x69\xcd\x63\xcf\xbc\x8b\ -\xaf\x5f\xa0\x42\x8a\xfe\xa6\x61\xd3\x0e\x84\x54\x09\x13\xb2\x2d\ -\x28\x28\xe0\x88\x02\x8d\xba\x16\x4b\x9c\xc6\x57\xbb\xe9\x58\x49\ -\x07\xb5\x83\x83\x23\x61\x51\xfd\x69\x3b\xe0\x0b\xaa\xd5\xee\x8e\ -\xd6\xf1\xef\x2b\x4c\x67\x17\x4f\x6a\x36\x18\x46\x93\x2e\x6f\xa8\ -\x1d\xfe\xec\x9c\x4a\x55\x9b\xd1\xa2\xc7\x34\x7c\x03\x23\xff\xf1\ -\xf7\xef\xe5\x17\x4e\xc3\x0e\x2f\xd3\xa8\xd3\x6b\x54\xf0\x92\x36\ -\x71\x34\xa0\x72\x23\xa9\x43\x9d\x9a\x03\xe6\x97\xe2\x08\xa2\x74\ -\x4b\xb5\x0d\x80\x50\xb3\x77\xad\x56\xcb\xd3\x93\xec\xf7\x8b\x5f\ -\xc5\x3c\x32\xd2\xd3\x58\xb1\x7c\xa9\xb0\x7d\xaf\x01\x63\xcc\x1a\ -\xe7\x6b\x2d\x44\x23\x00\x00\x37\x6e\x5c\xa7\x9e\x4f\x45\x05\xd5\ -\xfc\x93\xdf\xd6\xad\x96\xd4\xea\xba\x51\xb3\x0e\xb4\xef\x32\x50\ -\x41\x45\x7f\xa3\xd1\x68\xe8\xda\x7b\x24\x8b\xbf\x15\x8b\x36\xec\ -\xdb\xbb\x9b\x76\x1d\x4b\x0e\xbd\x8b\x92\x9e\x96\x2a\x29\x29\x32\ -\xb0\x7a\x4b\x7c\x03\xcd\x2b\xdb\x75\x71\xf3\xa1\x6e\xf3\xc7\xa8\ -\xdd\x74\x2c\x79\x59\x09\x68\x1c\x1c\x70\xf3\x08\x54\x34\xb1\x51\ -\x45\x5e\xbc\xfd\x6b\xd2\xac\xfb\x3b\xe8\x75\xd9\xe8\xf2\xd2\x70\ -\x76\xf5\xc2\xd9\xd5\x1b\x00\x43\xa1\xb4\xa6\x5a\x77\xa9\x59\x7f\ -\x28\x47\x77\x7c\x24\x25\x69\x74\x30\x12\xa3\xe8\x52\x51\xfa\x37\ -\xf2\x3c\x7f\x8f\x51\x7c\x20\x06\x83\x81\xad\x7f\x6c\x54\x58\x8e\ -\x8a\xb5\x59\xbf\x76\x35\xb9\xb9\x62\x99\xb5\x4e\x4e\xce\x0c\x18\ -\x66\xdf\x2d\x92\x83\x42\xaa\x0b\xdb\xde\xba\x21\x7d\xae\xbc\xb9\ -\x18\x0c\x06\x3e\x9e\x31\x5d\xd8\xde\xc1\x41\xcb\x23\x8f\x8b\x87\ -\xe5\xe5\xa0\x65\x5b\xf1\xde\x60\x52\x0e\x6b\x11\x4e\x9d\x38\x2e\ -\x1c\x85\x72\xd0\x3a\x51\x5b\x86\x04\x3d\x07\x07\x47\x2a\x78\x57\ -\xc6\xdd\x33\x58\x3d\xfc\x4b\x29\x4e\x2e\x1e\x78\xf8\x54\xfd\xeb\ -\xf0\x2f\xc2\xbc\xeb\x1b\x0f\x9f\xaa\x04\x55\x6f\x55\xb2\xe1\xdf\ -\x48\x32\x36\x07\x6b\xfc\x56\x0a\x5f\x03\x28\x31\x91\x4b\xc5\xb6\ -\xac\xfd\xf5\x17\x61\xdb\x56\xed\x7b\xe3\xed\xe3\xa7\xa0\x1a\xcb\ -\x09\xa8\x54\x59\xd8\xf6\xe6\x8d\xeb\x0a\x2a\xf9\x27\xab\x57\xae\ -\xe0\xa2\x84\x8e\x7f\xed\xbb\x0c\xa4\x5a\x58\x6d\x05\x15\xfd\x97\ -\x4a\x41\x55\x85\x1d\xa8\xab\xb1\x97\x65\x6d\xa6\x74\xed\xea\x15\ -\x61\xdb\xd0\xba\x7d\x71\xf3\xa8\x24\xdb\xde\x2a\x2a\x77\x09\x8b\ -\xea\xff\x8f\xab\xa1\x12\x50\xfc\x03\x6a\x8d\xa9\x2a\x1b\x80\x17\ -\x44\x0c\xb7\x6f\xdd\x4c\x46\x7a\x1a\xde\x56\x0c\x9b\xaa\x28\x47\ -\x72\x52\x12\xfb\xf6\xec\x12\xb6\xef\xd9\x7f\x8c\x82\x6a\xe4\xc1\ -\x3f\xd0\xfe\x1c\x80\xc2\xc2\x42\x3e\xfb\xf0\x7d\x61\x7b\x27\x67\ -\x17\x46\x8c\x7d\x49\x41\x45\xc5\x53\xaf\x51\x1b\xe2\xe3\x4a\xfe\ -\xb9\x14\x14\x14\x70\xfd\xea\x15\x6a\xd4\x92\x27\x19\xb4\xa0\xa0\ -\x40\xd8\x56\x6d\xc9\x5b\x3c\x7a\x5d\x36\x79\xd9\x89\xe8\x0b\x72\ -\x28\xd4\xe7\x61\x28\xcc\xc7\x68\x28\xc0\xd1\xd9\x03\xad\xa3\x0b\ -\x5a\x47\x17\x5c\xdd\x2b\xe2\xe6\x51\x09\x8d\xc6\x7e\x4a\x78\x65\ -\xc5\x82\x04\x4e\x67\x17\x4f\x7c\x83\x22\x49\xba\x75\x4c\xc8\xdc\ -\xec\x8d\x04\xb1\x86\x03\xb0\x13\x88\x07\x82\x4a\x32\xd4\x17\x14\ -\xf0\xfb\xfa\x75\x8c\x7c\x64\xac\xe2\xa2\x54\x94\x67\xc3\xba\xd5\ -\xc2\xb5\xe8\x35\x22\xea\x11\x51\xb7\x91\xc2\x8a\x2c\xa7\xa2\x6f\ -\x00\x4e\x4e\xce\xe8\xf5\x25\x1f\x28\xd7\xaf\x95\xdc\x35\x50\x0e\ -\x56\x2c\xfb\x91\xab\x57\x62\x85\xed\x7b\x0f\x18\x8b\x7f\xa5\x10\ -\x05\x15\x15\x4f\x78\xcd\x28\x61\xdb\x4b\x17\x2f\xc8\xe6\x00\x94\ -\x34\xcc\xe8\x5e\x62\x4f\xad\xa4\x4e\xd3\x31\x38\x3a\x57\x90\x65\ -\xef\xd2\x8a\x5e\x97\x45\x6a\x42\x0c\xa9\xf1\x67\xc9\x4a\xbb\x4e\ -\x4e\x66\x9c\x70\xb7\x3c\x07\x07\x47\xdc\x3c\x03\xf1\xf0\xae\x8c\ -\x4f\x40\x04\xbe\x41\xd1\x78\x56\x0c\x2d\x13\xd5\x0f\x1a\x0b\xaa\ -\xe7\xd3\x12\xcf\x93\x96\x20\xdc\x84\x4a\x99\x41\x18\xf7\x60\x0d\ -\x07\xc0\x00\xfc\x0c\x4c\x12\x31\x5e\xf3\xeb\x0a\xd5\x01\x28\x23\ -\xac\x93\x70\xa5\xd3\xad\xb7\x32\x4d\x68\xe4\x46\xa3\x71\x20\x20\ -\xb0\x32\x71\xb7\x4a\x3e\xdc\x6f\x5c\xbf\xa6\xb8\x9e\xbc\xbc\x5c\ -\x3e\x95\xf0\xf6\x5f\xc1\xc3\x8b\xc1\x23\xad\xd3\x5e\xfb\x7e\x48\ -\xc9\xa1\x88\x8b\x93\x36\x2e\xfa\x41\x84\x86\x85\x0b\xdb\xde\x8e\ -\xdd\x49\xd2\xed\x63\xd4\x6c\xf0\x10\x55\x6a\x75\x2e\x57\xf7\xf7\ -\xf9\x39\xc9\xc4\x5d\xdd\x4d\xfc\xf5\x03\x64\xa7\x5d\x37\x6b\xb4\ -\x33\x80\xd1\x58\x48\x4e\xc6\x6d\x72\x32\x6e\x93\x70\xe3\x10\x50\ -\x74\x9f\xee\x17\x5c\x9f\x90\xf0\x76\xf8\x87\x34\x28\xbb\x11\x82\ -\xfb\x90\x97\x9d\x48\xec\xe9\xd5\xa4\xdc\x39\x25\x65\x99\x58\xe3\ -\x0c\x0b\xb0\xd6\x60\xf5\x65\x08\x3a\x00\x7b\x77\xff\x49\x72\x52\ -\x12\xfe\x01\x01\x0a\x4b\x52\x51\x92\xe4\xa4\x24\x0e\xec\xdb\x23\ -\x64\xab\xd5\x6a\x69\xd1\xa6\x87\xc2\x8a\xe4\x23\x30\xb8\x9a\x98\ -\x03\x70\xed\x1a\x26\x93\x49\xd1\xb7\x9e\x39\xb3\x3f\x27\xee\xb6\ -\xf8\x41\xd9\x6f\xe8\x04\x2a\x78\x78\x97\x6c\xa8\x00\x85\x85\x7a\ -\x2a\xfa\x8a\x97\x1c\x26\x27\xca\x37\xaf\x3d\xa2\x8e\xb4\xe9\xe4\ -\x05\xf9\x99\xc4\x1c\x9c\xcf\xcd\x8b\x7f\x50\xa7\xe9\x38\x7c\x83\ -\xc4\x23\x17\xa5\x0d\x93\xc9\x48\xc2\xf5\x03\xdc\xbc\xb4\x95\xb4\ -\x84\x18\xb3\x0f\xfd\x92\xd0\xeb\xb2\x89\xbf\xb6\x8f\xf8\x6b\xfb\ -\x70\x76\xf5\x26\x38\xac\x2d\xd5\xeb\xf4\xc2\xcd\xa3\x74\x7d\xd7\ -\x9b\x10\xff\xf9\x14\xea\xf3\xb8\x71\x7e\x13\xb7\x62\x77\x4a\x69\ -\x07\x7c\x97\x93\x52\x17\x48\xc5\x5a\xae\xed\x21\xe0\x92\x88\x61\ -\x61\x61\x21\xab\x7e\xf9\x49\x61\x39\x2a\x4a\xb3\x77\xf7\x4e\xe1\ -\x91\xbf\x91\xf5\x5a\xe0\xe9\x5d\x7a\xf2\x3e\x2a\x05\x55\x13\xb2\ -\xcb\xcd\xcd\xf9\x6b\xba\x9d\x12\xdc\x89\xbb\xcd\x9c\x2f\x3e\x17\ -\xb6\xf7\xf4\xae\x48\x9f\x41\xe3\x15\xd3\xf3\x20\x0c\x85\x85\x64\ -\x67\x65\xe0\xee\xe1\x89\xa3\xe0\x58\xe7\xe4\x64\xf9\x7e\x76\x55\ -\xaa\x56\x23\x32\x4a\xfa\x68\x92\xac\xb4\x1b\x1c\xde\x32\x8d\x13\ -\x7f\x7e\x46\x6e\x96\xf8\xf4\xc0\xd2\x80\xc9\x68\x20\xee\xca\x2e\ -\xf6\xae\x7b\x99\x93\xbb\x67\x93\x1a\x7f\x56\xb1\xc3\xff\xdf\x14\ -\xe4\x67\x70\xfd\xdc\x6f\xec\x5e\x3b\x89\xd3\x7b\xe7\x90\x93\x71\ -\xdb\x2a\xfb\xca\x82\xc0\xcf\xc8\x64\x32\x72\xe7\xea\x1e\x0e\x6d\ -\x7e\x8f\x9b\x97\xb6\x9a\x73\xf8\x03\xac\x30\x67\x91\x14\xac\x19\ -\xdb\x12\x9e\x0b\xb0\x74\xf1\xf7\x4a\xea\x50\xb1\x02\xfb\x76\x8b\ -\x27\xff\xb5\x68\x27\x5e\x1e\x66\x0f\x04\x06\x8b\x4f\x27\x54\x32\ -\x0f\xe0\x83\x77\xa7\x48\xea\x98\x37\x68\xf8\x53\xb8\xb9\x59\xff\ -\x5e\xdb\x60\x30\x90\x95\x95\x8e\xc9\x64\x44\xa3\xd1\xe0\xe1\x25\ -\x36\x20\x2b\x2d\x35\x55\x56\x1d\x03\x87\x8a\xcf\x00\xf8\x37\x09\ -\x37\x0e\xb1\x77\xfd\xcb\x5c\x3c\xb6\x8c\x42\xbd\xf9\x53\x42\xed\ -\x85\xa4\x5b\xc7\xd8\xbd\xf6\x85\xa2\xc3\x37\x33\xce\x66\x3a\xfe\ -\x72\x42\xd6\xbf\x4c\xcc\xc1\xf9\xe8\x75\xd9\x36\xd3\x22\x17\xe9\ -\x49\x97\x38\xb6\xfd\x43\x2e\x1e\x5f\x8e\x5e\xc2\x5c\x81\x7f\x71\ -\x0d\xd8\x26\x9f\xaa\xfb\x63\x97\x0e\xc0\x85\x73\x31\x1c\x39\x24\ -\x6f\x1d\xb0\x8a\x75\xd9\xb3\xfb\x4f\x21\x3b\x8d\xc6\x81\xe6\xad\ -\xbb\x2b\xac\x46\x5e\x02\x83\xc5\x22\x00\x00\xe7\x62\xce\x28\xa2\ -\xe1\xe8\xe1\x43\xfc\xba\x42\x3c\x52\x56\xd1\xb7\x12\x3d\xfa\x3f\ -\xac\x88\x96\x07\x61\x34\x1a\xc8\xfe\xff\xc3\xff\x2e\x1e\x82\x57\ -\x10\x05\x3a\x4b\xc7\xed\xfe\x93\xc1\xc3\x46\x10\x5e\x43\x52\x37\ -\xb6\x7f\x60\x34\xe8\xb9\x7a\x76\x2d\x7b\xd6\xbe\xc0\xed\xcb\x3b\ -\xac\xf6\xb6\x2c\x27\x79\x39\x49\x1c\xdf\xf9\x09\xc7\x76\x7c\x44\ -\x5e\xb6\x55\x06\xce\x09\x61\x32\x99\xb8\x79\x71\x2b\x7b\xd6\xbd\ -\xc8\xed\xd8\x9d\x20\x21\xcc\x6e\x2f\xe4\xe7\x24\x13\x73\x70\x3e\ -\x27\x77\x7f\x41\xb6\xe5\x11\x8d\xd7\x00\xb1\x10\xaa\x05\x58\xd3\ -\x01\xb8\x08\x1c\x16\x35\x5e\xba\x78\xa1\x82\x52\x54\x94\x24\xfe\ -\xce\x1d\x62\x2f\x89\xe5\xaf\x84\xd5\x8c\xb2\x4a\x2b\x5a\x39\x91\ -\xe2\x00\x9c\x3d\x25\xff\x35\x5e\x81\x4e\xc7\x2b\x93\x9e\x96\x74\ -\x00\x0d\x1e\xf9\x0c\x2e\x2e\xc5\xf7\xa8\x57\x02\x93\xc9\x48\x76\ -\x56\x06\x46\xe3\x3f\x93\x99\x45\xaf\x00\xa4\x94\xee\x89\xe0\xe4\ -\xe4\xc4\x94\xf7\x66\xa0\xd5\x5a\x96\xfa\xa4\xcb\x4b\xe7\xcc\xfe\ -\x79\x1c\xf8\xfd\x0d\x32\x53\xaf\xc9\x23\xce\x0a\x24\xdc\x38\xc4\ -\xbe\x0d\x93\x49\xbc\x79\xc4\xd6\x52\x8a\xa5\x20\x3f\x93\x33\xfb\ -\xbe\xe6\xd8\x8e\x8f\x2d\x79\x7b\x56\x94\x7b\x9d\x59\x00\x93\xb1\ -\x90\x6b\x31\xeb\x39\xbc\xf5\x7d\x92\x6e\x4b\x9b\x0a\x59\x0c\x1b\ -\x00\xf1\x06\x2a\x16\x60\xed\xf4\x56\xe1\x28\xc0\xba\x55\xbf\x92\ -\x9d\x6d\x9f\xbf\x00\x2a\x0f\x66\xef\xee\x9d\xc2\xb6\x51\xf5\x5b\ -\x28\x27\x44\x21\x2a\x57\x09\x17\x3e\xc4\x0e\x1d\xdc\x2f\xfb\xfe\ -\x1f\xcf\x98\xce\xb9\xb3\xe2\x91\x85\xe0\xca\xa1\x74\xeb\x33\x52\ -\x76\x1d\x0f\xc2\x64\x32\x92\x95\x99\x8e\xc1\xf0\xdf\xbb\x4f\xad\ -\xa3\xd8\x01\x2c\xb7\x03\x00\xd0\xa4\x59\x73\xa6\xcd\xfc\x58\x52\ -\x59\x60\x71\x64\xa6\x5e\xe5\xd0\xa6\xb7\x49\x4d\xb0\xcd\xe0\x27\ -\x51\x8c\x06\x3d\xe7\x0f\xff\xc0\x89\x3f\x3f\xa3\xd0\xcc\x79\xf7\ -\xd6\x26\xe9\xd6\x31\xf6\x6d\x98\x4c\x7a\xe2\x05\x5b\x4b\xf9\x2f\ -\xf7\x38\x00\x26\x93\x91\x33\xfb\xbf\xe1\xfa\xf9\x4d\x25\x4e\x10\ -\x14\xe4\x10\x60\xb5\x0f\xab\xb5\x1d\x80\x9f\x11\xac\x6d\xcc\xc9\ -\xc9\x66\xf5\x4a\xc5\x73\x20\x54\x14\x60\xff\x9e\xdd\xc2\xb6\x91\ -\xa5\xd0\x01\x70\x72\x76\xa1\x5a\x58\x1d\x21\xdb\xf3\x31\x67\x49\ -\x4c\x90\x2f\x79\x6c\xe7\xf6\xad\x7c\xfd\xbf\x59\x92\xd6\x3c\xfc\ -\xd8\x64\x61\x87\x45\x0e\x4c\x26\x13\xd9\x99\x19\xf7\x3d\xfc\x01\ -\xe1\xb2\x3a\xa5\xaa\x27\xfa\x0e\x18\xcc\xf4\x0f\x3f\xc5\xdd\xdd\ -\xf2\x7c\x08\x83\xa1\x80\x53\xbb\xbf\xc4\x50\x28\xef\x75\x85\x5c\ -\x14\xe8\xb2\x38\xb4\xf9\x5d\xae\x9f\x2f\x7d\x6d\xd6\xf3\x73\x53\ -\x38\xb4\xe5\x3d\xe2\xae\x88\xe7\x13\x59\x83\x7b\x23\x6f\xb7\x2e\ -\x6f\x97\xd3\x01\xdc\x0c\xf4\x02\xac\x96\x08\x61\x6d\x07\xe0\x0e\ -\xf0\x9b\xa8\xf1\xd2\x45\x6a\x32\x60\x69\xe4\xd4\x49\xb1\x30\x98\ -\x46\xe3\x40\xdd\xe8\xa6\x0a\xab\x51\x86\x1a\x11\x62\x19\xe5\x26\ -\x93\x89\xdf\xd7\xaf\x91\x65\xcf\xab\x57\x62\x99\x38\xfe\x11\xe1\ -\xe6\x4a\x50\xe4\x60\xb5\x90\xd0\x83\xdf\x52\x4c\x26\x13\xd9\x59\ -\xe9\x14\x3e\xe0\x6d\x48\xa7\x13\x4b\xa2\x73\x76\x56\xae\x11\x5a\ -\xdf\x01\x83\xf9\x79\xcd\x06\x1a\x34\x6a\x6c\xf1\xb3\x74\x79\x69\ -\x24\xdc\xb0\xbf\x9c\x25\x5d\x5e\x1a\x47\x36\x4f\x23\x23\x59\x68\ -\x1c\x8b\x5d\x62\x32\x1a\x38\xbd\x77\x2e\x97\x4f\x5a\x25\x22\x2e\ -\xc4\xbd\x65\x80\x71\xb1\x62\xb9\x4e\x25\x90\x0b\xbc\x0c\xf4\x04\ -\xe4\xcd\x7c\x2d\x01\x6b\xf5\x01\xb8\x97\xb9\x40\x7f\x11\xc3\x13\ -\xc7\x8e\x70\xec\xc8\x61\x1a\x37\x6d\xa6\xb0\x24\x15\xb9\x28\x2c\ -\x2c\xe4\xc2\x79\x31\x8f\xb8\x7a\x58\x6d\x3c\x3c\xc5\x32\xc2\xed\ -\x8d\xc8\x7a\xcd\xd9\xf2\x9b\xd8\x8d\xd6\xb2\x25\x8b\x18\xf7\xb8\ -\x65\x43\x8e\xee\xc4\xdd\x66\xf4\xd0\x01\x92\x46\x0c\x6b\x1d\x1d\ -\x99\xf0\xdc\x34\x8b\xf6\x95\xc2\xdd\x3b\xff\xc2\xc2\x07\x87\x42\ -\xf3\x72\xc5\x5e\x70\x9c\x14\x74\x00\x00\xaa\x55\x0f\x63\xd1\xf2\ -\x5f\xf9\x6d\xdd\x6a\x66\x7f\xf6\x31\x89\x09\xf1\x66\x3f\x2b\x33\ -\xe5\x0a\x21\xe1\xed\x65\x54\x67\x19\x39\x99\x77\x38\xb2\x65\x3a\ -\xf9\xb9\x29\xb2\x3c\x4f\xa3\xd1\x50\xbb\x6e\x24\xf5\x1b\x34\xa4\ -\x46\xad\x08\xaa\x87\x86\xe1\xeb\xe7\x4f\x85\x0a\x1e\x38\x39\x39\ -\x92\x95\x95\x45\x6e\x4e\x0e\xf1\xf1\x45\xf9\x3f\x17\xcf\x9f\xe3\ -\xc8\xa1\x83\x64\x66\x66\xc8\xb0\xbb\x89\xd8\x53\x2b\x31\x1a\x0b\ -\x89\x68\x64\xdd\xab\xac\xfb\xcb\x29\xba\x02\xd0\xeb\xb2\xc8\xcf\ -\xb5\xe8\xbc\x36\x01\xcb\x81\xc9\x80\x7c\x5d\xaf\x24\x60\x0b\x07\ -\x60\x0b\x45\x13\x02\x85\xd2\x71\xbf\x9d\xfb\x3f\xe6\x2d\x5c\xac\ -\xac\x22\x15\xd9\xb8\x1a\x7b\x19\x5d\xbe\xd8\xb8\xcc\xda\x51\xa5\ -\xf3\xed\x1f\xa0\x71\xf3\x8e\x68\xb5\x5a\xa1\xb7\xf1\x53\x27\x8e\ -\xb1\x71\xc3\x3a\x7a\xf5\x15\xf2\x7b\xff\x43\xec\xe5\x4b\x8c\x1c\ -\xdc\x4f\x72\x67\xc1\x7e\x43\x1e\xa7\x6a\x75\x79\x5a\xe9\x96\x84\ -\xc9\x64\x24\x3b\x33\xe3\x81\x6f\xfe\x77\xc9\xcf\x13\xbb\x87\x76\ -\x75\x15\x1e\x9a\x62\x36\x1a\x8d\x86\xbe\x03\x06\xd3\xa5\x7b\x4f\ -\x16\x7e\xfb\x35\x8b\x16\xce\x17\xfe\xfd\xbd\x17\x7b\xaa\x08\xd0\ -\xe5\xa5\x71\x74\xdb\x07\x16\x1f\xfe\x4e\xce\xce\x74\xed\xde\x93\ -\x41\x43\x87\xd3\xa6\x5d\x47\xfc\xfc\xfd\x25\xad\x37\x18\x0c\x9c\ -\x3e\x79\x9c\xad\x7f\x6c\xe2\x97\x9f\x96\x5a\x5c\x12\x7b\xf5\xcc\ -\x1a\x9c\x9c\x2b\x10\x16\x65\xde\xe7\x48\x2e\xee\x26\x01\x5a\xf8\ -\x37\x7e\x88\xa2\x19\x39\xf2\x27\x09\x49\xc0\x16\x3d\x2e\x8d\xc0\ -\x3c\x51\xe3\xdf\xd6\xad\x96\xd4\xe9\x4c\xc5\xb6\xc4\x9c\x3d\x2d\ -\x6c\x5b\xdd\xca\xd3\xe8\xe4\xa4\x82\x87\x37\x75\xa2\xc5\x23\x53\ -\x53\xdf\x78\x95\x94\xe4\x64\xc9\xfb\xac\x5b\xbd\x92\x9e\x1d\xdb\ -\x48\x3e\xfc\x43\xaa\x84\x33\xec\xe1\xe7\x25\xef\x67\x0e\x46\xa3\ -\x81\xac\xcc\x07\x87\xfd\xef\x25\x4f\x70\x3c\xb4\xa7\xa7\x97\x25\ -\xb2\x24\xe1\xe6\xe6\xce\x33\x93\x5e\x66\xed\xc6\x6d\x74\xef\xd5\ -\x57\x72\xfe\x81\xa7\xaf\x78\x8b\x63\x25\xd1\x17\xe4\x70\x74\xeb\ -\x0c\xf2\xb2\xcd\xef\xa2\x18\x50\xa9\x12\x53\xde\x7b\x9f\x53\x17\ -\xae\xf1\xfd\xd2\x15\xf4\x1f\x34\x54\xf2\xe1\x0f\x45\x1d\x3e\x1b\ -\x36\x6e\xca\x2b\x6f\x4c\xe1\xc0\x89\x18\x56\xff\xb6\x85\xae\x3d\ -\x7a\x59\x94\xdb\x71\xf1\xd8\xb2\xff\x2f\x13\xb4\x1d\xa6\xff\x6f\ -\x70\xe6\xec\xe2\xf1\xaf\x31\xc1\x42\xc4\x01\x63\x81\x96\xd8\xf8\ -\xf0\x07\xdb\x38\x00\x00\xdf\x03\x42\x17\x81\x7a\xbd\x9e\x85\xdf\ -\x0a\xfb\x0b\x2a\x36\x26\xe6\x8c\x78\x76\x7a\xf5\x70\xb1\x44\x3a\ -\x7b\xa5\x75\xfb\x3e\xc2\xb6\x37\x6f\x5c\x67\xec\xc8\x21\xa4\xa6\ -\x88\xbd\x95\x5d\x89\xbd\xcc\x98\x11\x43\x78\x62\xdc\xc3\x64\x65\ -\x89\x0d\x60\xb9\x8b\xd6\xd1\x91\xe7\x27\xcf\xb2\x4a\xd9\x5f\x51\ -\x9d\x7f\xf1\x09\x7f\xff\xa6\x40\x97\x2f\x6c\xeb\xed\x63\xfd\xeb\ -\xa1\xe0\x90\xca\x7c\xf2\xc5\x57\x7c\xfc\xc5\x57\xc2\x6b\x34\x1a\ -\x2d\x95\xaa\x34\x51\x50\x95\x18\x26\x93\x89\x93\xbb\x66\x91\x95\ -\x7e\xc3\xac\xf5\x5e\x5e\xde\xbc\x37\xe3\x63\x0e\x9f\xba\xc0\xb3\ -\x2f\xbc\x42\x45\x5f\x5f\xd9\xb4\x69\x34\x1a\x5a\xb5\x6d\xc7\x8f\ -\x2b\x56\xb3\x79\xd7\x7e\xda\xb6\xef\x68\xe6\x93\x4c\x9c\xdd\xff\ -\x2d\x69\x09\xe2\xa3\xaf\xe5\xa4\xe8\xed\xff\xee\xbb\xbf\x06\xff\ -\x90\x86\x52\x96\x1f\x00\x22\x80\xc5\xd8\x49\xa3\x03\x5b\x39\x00\ -\xa9\x14\x55\x04\x08\xf1\xe3\xa2\x85\xe4\x0a\xbe\x35\xa8\xd8\x96\ -\xb3\x67\xc4\x86\x5d\x68\x34\x1a\xaa\x85\x96\xde\x08\x00\x40\xc7\ -\x6e\x83\x25\xf5\xd5\x3f\x72\xe8\x20\x5d\xdb\xb5\x60\xdd\xea\x95\ -\xe8\xf5\xff\x7d\x5b\xd6\xeb\xf5\xec\xd9\xb5\x93\x09\x63\x47\xd3\ -\xbe\x79\x43\x36\x6f\x14\xce\x97\xfd\x07\xc3\x1f\x9e\x44\xcd\xda\ -\xf5\xcd\x5a\x2b\x05\x83\xc1\x50\x6c\xa9\x5f\x71\xe4\x09\x86\xff\ -\xa1\xe8\x40\xb2\x15\x59\x99\xe2\x4e\x97\x5f\x70\xb4\x39\x6f\x82\ -\xb2\x73\xe5\xf4\xaf\xa4\xdc\x11\x8f\xc0\xdd\xcb\x80\xc1\xc3\xd8\ -\x7d\xf8\x24\x13\x9f\x79\x1e\x57\x37\x65\x1d\xc7\x7a\xf5\x1b\xb2\ -\x72\xfd\x26\xe6\x7e\xf7\x83\x59\x33\x5f\x4c\x26\x03\xa7\xf6\x7c\ -\x29\x3c\x99\x50\x4e\x4c\xff\xea\x69\x51\xa9\xaa\xa4\x6b\xcc\xea\ -\x14\x25\xfc\xd9\x0d\xb6\x1c\x73\x35\x57\xd4\x30\x3d\x2d\x95\x15\ -\xcb\x97\x2a\xa9\x45\x45\x26\x2e\x9c\x13\x4b\x00\x0c\x08\xac\x82\ -\x9b\xbb\x87\xc2\x6a\x94\xc5\xc5\xd5\x9d\x2e\xbd\xa4\xb5\x97\x8d\ -\xbb\x7d\x8b\x27\xc6\x3d\x4c\xe3\xc8\x1a\x8c\x1e\x36\x90\x57\x27\ -\x3d\xc3\x73\x13\x1f\x65\x68\xbf\x9e\xd4\xa9\x1e\xcc\xd0\x7e\x3d\ -\x59\xbf\xe6\x57\x0a\x0b\xcd\xea\x1d\x4e\xb3\xd6\xdd\xac\x32\xed\ -\xcf\x60\x28\xea\xf0\xf7\xef\x26\x3f\x25\x91\x99\x2e\x7e\x2f\x2d\ -\xe7\x1b\xa8\x54\x0e\xec\xdb\x2b\x6c\x1b\x1c\xd6\x56\x41\x25\x62\ -\xa4\x26\xc4\x10\x7b\xea\x57\xc9\xeb\x5c\xdd\xdc\x98\xfe\xe1\xa7\ -\x7c\xf3\xfd\x12\x02\x83\x4a\x9c\xd8\x2e\x2b\x83\x87\x8d\x60\xe7\ -\xfe\x63\x74\xec\xdc\x55\xf2\xda\xfc\xdc\x54\x4e\xef\x9d\x63\xf5\ -\xdc\x8b\x7f\x37\x01\xf2\xf6\x0b\xc3\xd5\x5d\xf8\xf7\x34\x18\xb0\ -\xbc\xec\x44\x46\x6c\xe9\x00\x1c\x46\x42\x67\xc0\xf9\x73\xff\x27\ -\xa9\xfc\x49\xc5\xfa\xe8\xf5\x7a\xe1\x7c\x8d\xd2\x7c\xff\x7f\x2f\ -\x7d\x07\x3d\x6a\x96\x23\x93\x94\x98\xc8\xb6\xcd\x9b\x58\xf2\xc3\ -\x02\x7e\xf9\x69\x19\x7b\x76\xed\x24\x27\xc7\xb2\xf2\xdf\x6a\xa1\ -\x11\x3c\x3f\x79\x96\xe2\xe3\x6b\x0b\x0b\xf5\x64\x65\xa6\x49\x3e\ -\xfc\x01\xd2\xd3\xc4\xf3\x20\x02\x2a\xd9\xa6\x43\xa4\xd1\x68\xe4\ -\xd0\x7e\x31\x07\x40\xe3\xa0\x95\xfa\x16\x28\x3b\x86\x42\xdd\xff\ -\x1f\x86\xd2\x3a\xc7\x86\x54\xae\xc2\xa6\xed\x7b\x98\xf0\xd4\xb3\ -\x0a\x29\x2b\x19\xff\x80\x00\x96\xae\x5c\xcb\x13\x4f\x3f\x27\x79\ -\x6d\x72\xdc\x09\x6e\x5d\xda\xaa\x80\xaa\xe2\xf9\xef\x50\x1f\x0d\ -\xfe\x95\x1b\x49\x79\x44\x6f\x19\xe5\x58\x8c\xad\x07\x5d\x7f\x2d\ -\x6a\x18\x7b\xf9\x12\xeb\xd7\x48\xf7\x70\x55\xac\xc7\xed\x5b\x37\ -\x85\x9d\xb4\x90\x2a\xe2\xf3\xd9\xed\x19\x5f\xff\x20\x46\x8d\x7f\ -\xd5\xd6\x32\xa8\x14\x54\x95\xd7\xa7\x2f\x50\x7c\xd8\x4f\x81\x2e\ -\x9f\xec\xcc\x74\xc9\x87\xcd\x5d\xd2\x53\xc5\xfb\xcf\x57\x0a\xb4\ -\xee\x1b\xe9\x5d\xce\xc5\x9c\x21\x5d\xb0\xdc\xb2\x62\xa5\xba\x38\ -\x3a\xb9\x2b\xac\xe8\xc1\xc4\x9e\x5a\x49\x7e\x8e\xb4\x04\xd3\x9a\ -\x11\xb5\x59\xbf\x79\x07\x75\x22\x6d\x3f\xe6\x58\xab\xd5\x32\x6d\ -\xe6\x27\x4c\xff\xf0\x53\xc9\x09\x82\x97\x8e\x2f\xa7\x20\x5f\x8e\ -\x52\x43\x31\xee\xe7\xf4\xfa\x05\x45\x4b\x79\x44\x27\xd9\xc4\xc8\ -\x80\xad\x1d\x80\x65\x14\x65\x45\x0a\xf1\xf9\xc7\x33\x85\x47\xcc\ -\xaa\x58\x1f\x29\x65\x3e\x95\x82\xc4\x27\xea\xd9\x3b\x3d\xfb\x3f\ -\x4c\xed\x48\xdb\x25\x81\x85\x54\x09\x67\xfa\xe7\x2b\xa8\x14\x58\ -\x45\xd1\x7d\xf2\xf2\x72\xc8\xc9\xc9\x94\x34\x0f\xfd\xdf\xa4\x49\ -\x72\x00\x6c\x13\x01\x38\xb0\x77\x8f\xb0\x6d\xa5\x2a\xb6\x8d\xe8\ -\x66\x67\xdc\xe2\xda\x39\x69\xb9\x22\xa1\x61\xe1\xac\xda\xb0\x99\ -\xca\x55\xec\xeb\x33\x38\xe1\xa9\x67\x79\xfb\xbd\x0f\x24\xad\xd1\ -\x17\xfc\x5f\x7b\xe7\x1d\x1e\x55\x95\xfe\xf1\xcf\x4c\x7a\x99\x54\ -\x12\x48\xe8\x5d\xba\x34\x41\x14\xc5\x86\x05\x7b\xef\xee\xb2\xae\ -\xbd\x17\xd4\xf5\xb7\xf6\x55\xd7\xbe\xb6\x5d\x74\x5d\x5d\x59\xfb\ -\x5a\x28\x82\x22\xd2\x8b\x14\xe9\xa1\x85\x40\x1a\x90\x9e\x4c\xa6\ -\xb7\x7b\x7f\x7f\x5c\xe2\x22\x42\x72\xee\xcc\xbd\x53\x92\xfb\x79\ -\x9e\x79\x42\x39\xe5\x4d\x66\x72\xcf\x7b\xce\x79\xdf\xef\xeb\x60\ -\xd7\x7a\x61\x85\xf9\x90\x91\x8e\x50\xd6\x37\x33\xb7\x2f\xf1\x09\ -\xc2\x71\x13\xe3\x81\x24\x2d\x6d\x0a\x85\x48\x3b\x00\x1e\x40\xb8\ -\xa0\xf9\xae\x1d\xdb\x99\x37\x67\x96\x8e\xe6\x18\x84\x42\x45\x79\ -\x99\x70\xdb\xfc\x2e\xfa\x2e\x56\xe1\xc4\x64\x32\x73\xd7\x43\xaf\ -\x60\xc9\xcc\x0e\xfb\xdc\xbd\xfa\x0c\xe2\xa9\x97\x3f\x23\xb7\x93\ -\x7e\xbb\x65\x59\x96\x71\xd8\x9b\x85\xf3\xf7\x5b\xa3\x49\x45\x0c\ -\x40\x5e\x5e\x7e\xc8\xf3\x1d\x09\x87\xc3\x41\x73\xb3\xf5\xa8\xaf\ -\x95\xcb\xc5\xa5\x67\x55\x46\x81\x6b\xce\xae\xf5\x1f\xfd\x26\x30\ -\xad\x35\x3a\x77\xe9\xc2\x67\xdf\x7c\x1b\x31\xe7\xaa\x2d\x6e\xbb\ -\xfb\x3e\x6e\xbd\xf3\x1e\x55\x7d\xf6\x95\x2c\xc1\xd6\x28\xfe\xec\ -\x09\x16\x59\x96\x7f\x55\x07\xa0\x05\x93\x39\x8e\xec\x7c\xe1\x8c\ -\xa6\x14\x60\x12\x90\xdd\xca\x2b\x6c\xfa\x3c\x91\x10\x02\x3a\x9c\ -\xe9\xc0\x9f\x00\xa1\x48\x8a\xd7\x5e\x7c\x9e\x73\xce\xbb\x40\x37\ -\x9d\x70\x83\xe0\x29\xdb\x2b\x7e\x02\xa0\xa6\xa2\x5e\x2c\xd0\xb9\ -\xa0\x07\x0f\x3f\xf9\x2e\xcf\x3c\x72\x83\xaa\x48\xf7\x50\x38\xed\ -\xac\x2b\x98\x7a\xfb\xe3\xba\xa6\xfb\x89\xaa\xfb\x89\x22\x7a\x05\ -\x90\x91\x91\xa9\x49\x34\xba\xdf\xef\x67\xc5\xd2\xc5\x2c\x5c\x30\ -\x9f\x9f\xd7\xae\xa6\xb6\xb6\x06\xb7\x4b\x4c\x8a\xb8\x2d\x12\x93\ -\x33\x49\xcb\x2c\xd4\x64\xac\x60\xb0\x35\x96\x51\x5b\xb9\x41\xb8\ -\x7d\x7c\x7c\x3c\xd3\xdf\xff\x88\x9e\xbd\x7a\xeb\x68\x55\xe8\xfc\ -\xf9\xa9\x67\xd9\x5e\xb4\x95\xc5\x0b\x45\xef\xf7\x65\xf6\x6c\xf9\ -\x9a\x11\x27\xa9\x73\x1c\xd4\xf2\xdb\xfb\xff\xff\x91\xd9\xa9\x3f\ -\xb5\xfb\x84\xdf\x8b\xef\xda\xf8\x7f\x09\xa8\x01\x76\x02\x33\x81\ -\x2f\x81\xe0\x72\x3b\xdb\x20\xd2\x27\x00\xa0\x14\x3e\x78\x43\xb4\ -\xf1\x96\xcd\x1b\x59\xf0\x7d\xec\x15\xb6\xe8\x08\x88\x8a\xd5\x98\ -\x4c\x66\xf2\xf2\xbb\xea\x6b\x4c\x04\x18\x38\x78\x34\x7f\x7e\xee\ -\x43\x32\x32\xf5\x8d\x5e\x4f\x4d\xb3\x70\xef\xa3\x6f\x70\xeb\x7d\ -\xcf\xeb\xba\xf8\xff\x22\xf0\xa3\xd1\xe2\x0f\xd0\xd4\x20\x26\x50\ -\x93\xa7\xc1\x0e\x75\xfe\x77\xdf\x72\xd1\x39\xa7\x73\xd7\xad\x37\ -\xf2\xcd\x97\x9f\x53\x51\x5e\xa6\xd9\xe2\x0f\x90\xdd\x79\x10\x10\ -\xb9\x8d\xc8\x9e\x2d\x5f\xa3\x26\x9d\x7c\xda\xa3\x8f\x31\x7e\xc2\ -\x09\xfa\x19\xa4\x11\x66\xb3\x99\x37\xa6\xff\x4b\x55\x56\x42\x75\ -\xf9\x4f\x38\xac\xfb\x74\xb4\xea\xc8\xc7\xff\x2d\x64\x76\x12\x12\ -\xb6\x15\xc5\x0c\x74\x01\x4e\x46\x39\x21\xdf\x8d\xb2\x46\x6a\x7e\ -\x24\x16\x0d\x0e\x00\x28\xdf\x9c\x70\x08\xf4\xab\x2f\x3e\xa7\xa3\ -\x29\x06\xc1\x22\xea\x00\x64\xe7\xe4\x91\x90\x18\x35\xd7\x60\x9a\ -\x32\x60\xf0\x28\xfe\xfa\xe6\x2c\xfa\x0d\x1c\xa1\xf9\xd8\x66\x73\ -\x1c\xa7\x9e\x79\x39\xaf\xbe\x3b\x9f\x13\x4e\x3e\x57\xf3\xf1\x0f\ -\xc5\xef\xf7\xd1\x6c\x6d\x54\x95\xe3\x2f\x42\x7d\x9d\x98\xde\x7e\ -\x28\x47\xd4\x1e\x8f\x87\x47\xa7\xdd\xc7\x83\x77\xdf\xae\x5a\x41\ -\x51\x0d\x39\xf9\x83\x74\x1b\xbb\x2d\x5c\xf6\x1a\x55\x05\x88\x46\ -\x8c\x1c\xcd\x1d\xf7\x3c\xa0\xa3\x45\xda\x92\x97\x9f\xcf\xb3\x2f\ -\xbe\x26\xdc\x5e\x96\x65\x4a\xb7\xcd\xd1\xd1\x22\x5a\x2d\xf7\x9b\ -\x9e\x51\xa8\x26\x0e\x40\x2d\x09\xc0\x1d\xc0\x46\x94\x18\x02\xcd\ -\x88\x16\x07\xa0\x1e\x78\x47\xb4\xf1\xfa\x75\x6b\xf9\x7e\xae\xbe\ -\x6f\xb6\x81\x7a\xca\xcb\xc4\xae\x00\xda\x53\x00\xe0\x91\xc8\xeb\ -\xdc\x95\xbf\xbc\xf6\x5f\xae\xfd\xc3\x43\x9a\x68\x1d\x98\x4c\x26\ -\xc6\x4e\x38\x83\x57\xa6\xcf\xe3\xb6\xfb\xff\xaa\xeb\x7d\x3f\x80\ -\xdb\xe5\xc4\xd6\xdc\x18\x74\xa4\xff\xd1\xf0\xb8\x5d\x38\x1d\x36\ -\xa1\xb6\x05\x05\xc1\x9d\x10\x79\x3c\x1e\x6e\x99\x7a\x1d\x73\x66\ -\x7e\x15\x54\x7f\x35\x64\xe4\x46\x2e\x93\x65\xff\x9e\xa5\xc2\xef\ -\x8f\xd9\x6c\xe6\xb9\x97\x5e\xc3\x6c\x8e\x96\xc7\xbd\x18\x53\xce\ -\xbf\x90\xd3\xcf\x3c\x5b\xb8\x7d\x55\xd9\x2a\x5d\xcb\x32\x4b\x52\ -\x2b\x27\x61\x26\x13\xe9\x59\xba\x5f\x6b\x16\x00\x8b\x50\xaa\x06\ -\x6a\x42\x34\x7d\x22\x5e\x41\x09\x0a\x14\xe2\xd9\xa7\x1e\x33\x74\ -\x01\xa2\x08\xbb\xdd\x26\xac\x75\xdf\x9e\x02\x00\x8f\x46\x5c\x5c\ -\x3c\x17\x5e\x71\x0b\x6f\x7f\xb8\x94\x4b\xaf\xbe\x83\x9c\x5c\xf5\ -\x3b\xda\x82\xae\xbd\xb8\xe2\xfa\x7b\x79\xf3\x83\xc5\x3c\xf4\xc4\ -\x3b\x74\xeb\xd9\x5f\x07\x4b\xff\x87\x12\xec\x67\xc5\xe5\xd2\xa7\ -\x1c\x79\x43\x7d\xb5\x70\xdb\x2e\x05\x05\xaa\xc7\x97\x65\x99\x27\ -\x1f\x7d\x88\xf5\xeb\xd6\xa8\xee\xab\x16\x93\xc9\x84\x25\x3b\x52\ -\xfa\xff\x32\xfb\xf7\x2c\x13\x6e\x7d\xe9\x15\x57\xc5\x6c\x45\xd5\ -\x27\x9e\x79\x5e\xd8\x71\xf1\xfb\x5c\xd4\x54\xae\xd3\xc5\x0e\x59\ -\x0a\x40\x1b\xa2\x43\xe9\x59\x61\x79\xae\x25\x03\x9f\x02\x83\xb5\ -\x18\x2c\x1a\x82\x00\x5b\xd8\x07\xcc\x00\x6e\x14\x69\xbc\x73\xfb\ -\x36\xbe\xf8\xe4\x23\xae\xbc\xf6\x7a\x7d\xad\x32\x10\xa2\xa2\x4c\ -\x4d\x06\x40\xfb\x3e\x01\x38\x14\x4b\x46\x36\x57\xfe\xee\x7e\x2e\ -\xbf\xfe\x1e\x8a\x36\xaf\x66\xcb\x86\x95\x14\xef\xd8\xc8\x81\x7d\ -\x7b\x69\xac\xaf\xfe\xc5\x89\x4d\x4d\xb3\xd0\x29\xbf\x90\xc2\x6e\ -\x7d\x18\x70\xcc\x48\x06\x0f\x1f\x17\x16\x39\xdf\x16\x02\x81\x00\ -\x0e\xbb\xb8\xa6\x7f\x30\xa8\x71\x00\x3a\x77\x51\x1f\x5c\xf7\xfd\ -\xdc\x39\x7c\x3b\xfb\x1b\xd5\xfd\x82\x21\xd5\x52\x40\x5c\x7c\x64\ -\xae\xb1\x9a\x6a\x8b\x71\xda\xc4\xae\x52\xcc\x66\x33\x77\xdd\x37\ -\x4d\x67\x8b\xf4\xa3\xdf\x80\x81\x9c\x7b\xc1\xc5\xcc\xfa\xfa\xbf\ -\x42\xed\xf7\xef\x59\x4a\x41\x2f\xed\xe3\x1c\x5a\xdd\xfd\x1f\x24\ -\x3d\x33\x6c\x1b\x9b\x4c\x94\xb5\x72\x2c\x4a\xc0\x60\xd0\x44\x93\ -\x03\x00\xf0\x57\xe0\x77\x08\xda\xf5\xc2\xb3\x4f\x71\xe1\x25\x97\ -\xe9\xae\x5d\x6d\xd0\x36\x95\x15\xe2\x41\xaa\x9d\x3b\x90\x03\xd0\ -\x82\xd9\x1c\xc7\xb0\x63\x27\x30\xec\xd8\x09\xbf\xfa\x77\x59\x96\ -\x23\x9e\xd1\xe2\xf5\xb8\x71\x3a\x6c\x21\xe5\xf7\x8b\xd0\x20\x78\ -\xff\x0f\x50\x50\xa8\xce\x01\xf0\xf9\x7c\xbc\xf9\xda\x4b\x6a\x4d\ -\x0a\x9a\xcc\x3c\x7d\x4f\x63\x5a\x43\x45\xb4\x39\x67\x4d\x39\x8f\ -\x7e\x03\x62\x5b\x75\xf3\xce\x7b\xef\x17\x76\x00\x1a\xaa\x8a\x08\ -\x04\xbc\xc4\xc5\x25\x6a\x6a\x43\xc0\xef\x6d\xb3\x4d\x46\x4e\x2f\ -\x4d\xe7\x6c\x83\x51\xc0\x55\x40\x48\x1a\xf9\xd1\x74\x05\x00\x4a\ -\xb4\xe3\x7b\xa2\x8d\xf7\xef\xab\xe4\x5f\xef\x08\x8b\x09\x1a\xe8\ -\x88\x1a\x07\xa0\x23\x9d\x00\xb4\x45\x24\x17\x7f\x59\x96\x71\x39\ -\xed\x21\x8b\xfb\x88\xa2\x46\x04\xa8\x4b\x81\x3a\x07\x60\xe9\xa2\ -\x1f\x55\xe9\x50\x84\x4a\x61\xef\x89\x61\x9b\xeb\x70\x1a\xaa\xc4\ -\x2b\x6e\x5e\x79\x4d\xec\x9f\x90\x0e\x1b\x31\x92\xc1\x43\x86\x09\ -\xb5\x95\x02\x3e\xac\xb5\xbb\x34\xb6\x40\x6e\x35\x00\xb0\x85\x94\ -\xf4\xfc\x70\x5f\x0b\x85\x9c\xf7\x18\x6d\x0e\x00\xc0\x93\xa8\xa8\ -\x98\xf4\xb7\x57\x5e\xc4\x2a\x28\xdb\x69\xa0\x1f\x95\x95\x15\xc2\ -\x6d\xf3\x3a\xb7\xbf\x14\xc0\x58\x23\x10\x08\x60\x6f\x6e\xc2\xed\ -\x0e\x5f\x71\x32\x35\x85\x80\xf2\xf2\xd5\x65\x3c\x2d\xfa\xf1\x07\ -\xb5\xe6\x04\x4d\x61\x9f\x93\xc8\x2d\x10\x5b\x90\xb4\xc6\xef\x73\ -\x61\xad\x2f\x11\x6a\xdb\x29\x2f\x8f\x53\x4e\x9f\xac\xb3\x45\xe1\ -\xe1\xb2\xab\xae\x11\x6e\x5b\x7f\x40\xdc\x41\x12\x41\x0a\xf8\x11\ -\x4d\xb7\xec\x3f\xf2\x4a\xcc\x1a\x9f\x3e\xb4\xc2\x68\x20\xa4\xdd\ -\x54\x34\x3a\x00\x07\x00\xe1\xfc\x0f\x6b\x53\x23\xaf\xbe\xf8\xbc\ -\x8e\xe6\x18\x88\x50\x59\x2e\x76\x02\x60\x36\xc7\x91\xdb\x49\x7d\ -\x80\x97\x81\x76\x78\xdc\x4e\x6c\xd6\x06\xfc\x02\xbb\x1a\x2d\xb1\ -\xd9\x9a\x84\xda\xc5\xc7\xc7\x93\x9a\xaa\xae\xa6\xc1\xba\x35\x3f\ -\x05\x63\x92\x2a\x4c\xa6\x38\x7a\x1e\x73\x0e\x43\x8f\xbf\x45\xf7\ -\xb9\x8e\x86\xb5\x6e\xb7\xb0\xf2\xdf\xa9\xa7\x4f\x26\x21\x21\x41\ -\x67\x8b\xc2\xc3\xe4\xb3\xa7\x08\xb7\x6d\xac\xdd\xa1\xe9\xdc\x81\ -\x40\xdb\xc7\xff\x2d\x58\xb2\x7a\x30\xe2\xc4\x3b\x49\x49\xeb\xa4\ -\xa9\x0d\x47\xc1\x04\x9c\x14\xca\x00\xd1\x16\x03\xd0\xc2\x0b\xc0\ -\x4d\x80\xd0\x4f\xf1\xbd\xe9\x6f\x73\xf5\x75\xbf\x63\xc0\x31\x91\ -\xcb\xcb\xed\xe8\xec\xab\x14\x73\x00\x72\x72\xf3\x89\x8b\x8f\xd6\ -\x8f\x5d\xfb\x46\x96\x25\x1c\xf6\x66\x7c\x3e\xf1\x07\x9a\x96\xd8\ -\x6d\x62\x45\x5b\x2c\x19\x19\xaa\xc6\x95\x65\x99\xba\x5a\xb1\xeb\ -\x85\xf8\x84\x54\xba\xf6\x9b\x84\xd9\x2c\xbe\x30\x9a\xcc\x71\x24\ -\xa7\xe6\x90\xd7\x75\x24\xc9\xe1\x79\xb0\x1f\x15\x35\x62\x37\x27\ -\x9e\x14\x55\x75\x67\x42\xa2\x6f\xbf\xfe\x14\x14\x76\xe5\xc0\xfe\ -\xb6\xbf\x7f\x87\x55\xb8\xbc\x8c\x10\x92\x0a\x07\x00\x94\xf4\xd0\ -\xb1\x93\x1f\xa7\xb1\x66\x3b\xf6\xc6\x0a\xfc\x2a\x53\x13\x6d\x8d\ -\x7b\x69\xaa\x2d\x16\x6d\x1e\xd2\x71\x6a\xb4\x3e\x89\xad\xc0\xb3\ -\x08\xd6\x09\xf0\xf9\x7c\xfc\xdf\x43\xf7\xf3\xf9\xcc\xb9\xfa\x5a\ -\x65\x70\x54\x44\x63\x00\x3a\x19\xc7\xff\x11\xc1\xe7\xf3\xe2\xb0\ -\x37\x6b\x9e\xdb\xaf\x06\x87\x5d\xd0\x01\xb0\xa8\x73\x00\x9a\x9b\ -\xad\xf8\x7c\x62\xa7\x19\xdd\x07\x9c\xce\x80\x51\xe2\xc7\xc9\xd1\ -\x86\xa3\x59\x7c\x71\x1b\x17\x03\xaa\x7f\x6a\x98\x70\xe2\x44\xbe\ -\xfc\xfc\xd3\x36\xdb\x79\xdd\x56\x7c\x1e\x3b\x09\x49\xa1\x6b\x70\ -\x48\x92\x5f\x55\xad\x85\x16\x4c\x26\x33\x39\x9d\x87\x90\xd3\x59\ -\x7d\xb5\x45\xbf\xcf\xc5\x8a\xd9\xc2\xa2\x4d\x21\x49\x66\x46\xe3\ -\x15\x40\x0b\x6f\x01\x7b\x44\x1b\x2f\x5d\xbc\x90\x39\xb3\xbe\xd6\ -\xd1\x1c\x83\xa3\xe1\xf3\x7a\xa9\xa9\x16\x4b\xf1\xca\xcb\x6f\xff\ -\x1a\x00\xd1\x84\x2c\xcb\x38\x1d\x36\xec\xb6\xe0\x4b\xf8\x6a\x85\ -\xd7\x23\xb6\x13\xca\xc8\xcc\x54\x35\x6e\xc0\x2f\xfe\x80\x0e\xe3\ -\xfd\xac\x2e\x88\x9e\x00\x24\xa7\xa4\xd0\xbd\x47\xa4\x74\x0a\xf4\ -\xa1\xff\x40\xe1\x82\x3b\x38\x6c\x07\x34\x99\x53\x4f\x61\xa1\xa3\ -\xa1\x32\x83\x21\xa4\x4d\x7c\x34\x3b\x00\x5e\x94\x80\x40\x61\x1e\ -\x7b\xf8\x41\x9c\xce\xf0\x14\x62\x31\xf8\x1f\x95\x95\x15\xc2\x65\ -\x9a\x3b\x82\x08\x50\xb4\xe0\xf3\x79\x69\xb6\x36\xe0\xf1\x68\xa7\ -\x7f\x1f\x0a\x3e\xaf\x5b\xa8\x9d\xda\x2b\x80\x8e\x84\xdb\x25\x16\ -\xf0\xdc\xb7\x6f\xff\x98\x53\xfe\x6b\x0b\x35\xe9\x8c\x1e\x87\x78\ -\xc0\x69\x6b\xa8\x3d\xfe\x8f\x35\xa2\xfd\x13\xf2\x1f\x60\xb3\x68\ -\xe3\xfd\xfb\x2a\x79\xe3\x95\xf0\xe5\x02\x1b\x28\xec\x53\x91\x01\ -\xd0\x29\x3f\x72\xd5\xd3\x3a\x0a\xb2\x2c\xfd\xb2\xeb\x97\x82\x38\ -\xbe\xd4\x0b\xd1\xd8\x83\xb4\xb4\xd0\x8f\x6e\xdb\x2b\x01\x9f\x98\ -\x13\x55\xd8\xad\xfd\x39\xda\x5d\xbb\x8a\x7f\x4f\x7e\xbf\xd8\xcf\ -\xa9\x35\xa4\x80\x2f\xa8\xe3\xff\x58\x22\xda\x1d\x00\x09\xb8\x57\ -\x4d\x87\xb7\xdf\x78\x95\x3d\x25\xbb\x75\x32\xc7\xe0\x48\xa8\x51\ -\x01\x6c\x8f\x55\x00\xa3\x09\x9f\xd7\x83\xb5\x29\x7a\x76\xfd\x87\ -\x22\x7a\x4a\x64\x8a\x60\x85\xbd\x68\xc7\xef\x13\x7b\x5f\xd3\xd3\ -\x2d\x3a\x5b\x12\x7e\xd4\x7c\x4f\xa2\x8e\x52\xab\x63\x68\xe0\x44\ -\x44\x3b\xd1\xee\x00\x00\x2c\x44\xd1\x3e\x16\xc2\xe3\x76\x73\xff\ -\x5d\xb7\x22\xb7\xa1\xdb\x6c\xa0\x1d\x25\xbb\x85\x23\x56\x8d\x2b\ -\x00\x9d\x90\xa4\x00\x76\x5b\x13\x76\xbb\x35\xe2\x77\xfd\x47\x23\ -\x2e\x2e\x4e\xa8\x5d\x38\x44\x89\x62\x15\xd1\x3b\xe9\xb4\x34\x75\ -\x69\x94\xb1\x40\xba\x45\xdc\x01\xf0\xfb\x42\xd3\xb7\x90\x65\x59\ -\x48\xfd\x2f\xd6\x89\x05\x07\x00\xe0\x7e\x40\xac\x8c\x18\xb0\x6a\ -\xf9\x32\x66\x7c\x20\x2c\x28\x68\x10\x22\x7b\x05\x4f\x5c\x4c\x26\ -\x13\x9d\xf2\x8c\x2b\x00\x2d\x91\x65\x19\x8f\xdb\x49\x73\x53\x43\ -\xc4\xd2\xfb\x44\x89\x8b\x13\x8b\x57\x92\x8c\x22\x5f\x47\x45\x54\ -\x39\x32\xd0\x0e\x8f\xae\xfd\x7e\xf1\x3a\x15\x26\x73\x68\x09\x6e\ -\x52\xc0\x83\xa8\xf8\x4f\x2c\x13\x2b\x0e\xc0\x7e\xe0\x71\x35\x1d\ -\x9e\x79\xec\x51\x0e\xec\xd7\x36\x1f\xd4\xe0\xc8\xec\xde\x2d\x26\ -\xbd\x99\x9b\x57\x40\x62\x52\xb2\xce\xd6\x74\x1c\x7c\x3e\x2f\xb6\ -\xe6\x46\x9c\x4e\x7b\x4c\xec\x9a\x45\x1d\x00\xbb\x5d\x9f\x6a\x84\ -\xed\x81\x38\xc1\x9a\xf3\x0e\x7b\xfb\x0b\x86\xb6\xdb\x84\xf7\x80\ -\xc4\x27\x84\xf6\x9c\xf1\x6b\x70\x85\x10\x0b\xc4\x8a\x03\x00\xf0\ -\x06\xb0\x49\xb4\x71\x73\xb3\x95\x07\xef\xb9\x5d\x47\x73\x0c\x40\ -\xb9\xd7\x2d\xdd\x2b\x96\xad\xd9\xb5\x7b\x5f\x9d\xad\xe9\x18\x04\ -\x02\x07\x8f\xfb\x6d\x4d\xba\x56\xef\xd3\x9a\x14\xc1\xe0\xbe\xa6\ -\xc6\x06\x9d\x2d\x89\x5d\x44\x17\xb6\x66\xab\x98\xea\x62\x2c\xd1\ -\xdc\xdc\x2c\xdc\x36\x2e\x3e\x78\x07\x40\x09\xfe\x8b\x9d\xdf\xab\ -\x50\x88\x25\x07\xc0\x0f\xdc\x89\x8a\x73\x99\x05\xdf\xcf\x63\xe6\ -\x57\x5f\xe8\x67\x91\x01\xe5\x65\xa5\x78\xdc\x62\xde\x72\xd7\xee\ -\x7d\x74\xb6\xa6\x7d\x23\xcb\x12\x2e\xa7\x9d\x66\x6b\x7d\xd4\x1f\ -\xf7\x1f\x89\x8c\xcc\x5c\xa1\x76\x4d\x4d\xed\x6f\xf1\xd2\x8a\xf8\ -\x84\x54\xa1\x76\xa2\x4e\x79\x2c\x51\xa6\xe2\x7b\x8a\x4f\x14\xfb\ -\x39\x1d\x09\xd1\x40\xcb\xf6\x40\x2c\x39\x00\x00\xcb\x50\xea\x20\ -\x0b\xf3\x7f\x0f\xdd\x4f\x7d\x5d\x9d\x4e\xe6\x18\x6c\xdd\x22\x7c\ -\x28\x43\xa1\x71\x02\x10\x34\x1e\xb7\x13\x6b\x53\x43\x58\x8b\xf7\ -\x68\x4d\x46\x66\x8e\x50\xbb\xba\xba\x5a\x3c\x82\xa2\x41\x1d\x8d\ -\x94\x74\xb1\x22\x49\x15\xe5\x65\xc2\x8e\x79\xac\x50\xbc\x6b\xa7\ -\x70\xdb\xd4\xf4\xe0\x04\xf2\x64\x39\xd0\xee\x73\xff\x0f\x25\xd6\ -\x1c\x00\x80\x69\x80\xf0\x16\xa1\xb6\xa6\x86\x7b\x6f\xbf\x49\x47\ -\x73\x3a\x05\xdd\xbc\xaf\x00\x00\x20\x00\x49\x44\x41\x54\x36\x45\ -\x9b\x85\x65\x1a\x8c\x2b\x80\x20\xf0\x7a\xdc\x34\x5b\x1b\x94\x7b\ -\xfe\x28\x8d\xee\x17\x25\x33\x4b\xec\x04\x40\x0a\x04\x28\x2f\xdb\ -\x2b\x3c\x6e\x72\x8a\xf8\x71\xaf\xdb\x11\xdb\x9b\x81\xb4\x0c\xb1\ -\x20\xda\x40\x20\xc0\xce\x1d\xdb\x74\xb6\x26\xbc\x14\x6d\x15\x7b\ -\xd6\x98\x4c\x66\x52\x2d\x5d\x82\x9a\xc3\xef\x8d\xfc\xee\xdf\xed\ -\x54\x25\x62\x14\xd2\x8e\x20\x5a\x6b\x01\xb4\x46\x35\xf0\x10\x30\ -\x5d\xb4\xc3\xfc\xef\xe6\x32\xfd\xad\xd7\x99\xfa\xc7\x5b\x48\x48\ -\x8c\x6d\x29\xd0\x68\x43\xcd\x09\x40\xaf\xde\x46\xb1\x26\x51\xbc\ -\x1e\x37\x6e\xb7\x33\xa6\xee\xf8\xdb\xa2\x4b\x41\x0f\xe1\xb6\x7b\ -\x4b\x76\xd3\x7f\x80\x98\xf4\x6b\x6a\x6a\x1a\x69\x69\x69\x38\x1c\ -\x6d\x07\xbe\xed\x2b\x59\x8c\xb5\xbe\x04\x73\x9c\x8a\x62\x40\x26\ -\xb3\x52\x0c\xa8\xdb\x68\x0a\x7a\x9f\x88\x39\xc4\x08\xf3\x50\x48\ -\xcb\x14\xcf\xa2\x59\xbe\x74\x09\xc3\x8f\x1d\xa5\xa3\x35\xe1\xc3\ -\xef\xf7\xb3\x66\xd5\x4a\xa1\xb6\xc9\x69\x79\xaa\xde\xdf\x16\x64\ -\x59\xd2\x4c\xfa\xd7\xd1\x7c\x80\xaa\xd2\x15\xd8\x9b\x2a\x55\x8f\ -\xe9\x72\xd4\xaa\x69\x1e\x92\xe6\x71\x2c\x3a\x00\x00\xef\x02\x17\ -\x03\x67\x8a\x76\x78\xfe\xe9\x27\x18\x35\x66\x2c\xfd\xfa\x0f\x24\ -\x3d\x3d\xdd\x70\x04\x34\x62\xeb\x66\x31\x07\xa0\x53\x5e\x01\x96\ -\xcc\x6c\x9d\xad\x89\x7d\x7c\x5e\x0f\x6e\x97\x33\xec\xa5\x7a\xc3\ -\x81\x9a\x2b\xa0\xcd\x1b\x37\x30\xf9\xec\x73\xc5\xc7\xee\xda\x9d\ -\xe2\x5d\x62\x65\x60\xed\x4d\xe2\xca\x95\x2d\x58\x81\xea\xf2\x35\ -\x94\x6d\x9f\xcb\xa8\x53\x1f\x22\x39\x55\xec\x34\x43\x6b\x2c\x59\ -\xe2\x4e\xd4\xf2\xa5\x8b\xb9\xed\x2e\x55\x3a\x6a\x51\xcb\xfa\x75\ -\x6b\xb1\xdb\xc5\xb2\x00\x2c\xd9\xdd\x83\x9a\x43\xb9\xfb\x0f\x3d\ -\x9b\xa6\x62\xd7\x02\xf6\x16\xcd\x0c\xd7\x89\x5d\x48\xc1\x1e\xb1\ -\x78\x05\x00\xca\xbb\x74\x23\x2a\xae\x02\x5c\x2e\x27\x8f\x3c\x70\ -\x0f\x4e\xa7\x93\x86\x86\x06\x1a\x1b\x1a\xda\xdd\x1d\x59\xb8\xa9\ -\xae\xaa\x12\x2a\xcf\x09\xd0\xbb\xff\x50\x9d\xad\x89\x6d\x7c\x3e\ -\x2f\x36\x6b\x23\x76\xbb\xb5\x5d\x2e\xfe\x00\x85\xdd\xfb\x08\xe7\ -\xb1\xff\xb4\x72\x85\xaa\xb1\x4f\x3c\x69\x52\x10\x16\xa9\xc7\xd6\ -\x58\xc6\xfa\x85\xcf\x23\x45\xe8\x3d\xb2\xe4\xf4\x22\x3e\x51\x4c\ -\xe4\x67\xd9\x92\x45\x34\xd4\x6b\xa3\x89\x1f\x69\x66\x7d\xfd\x5f\ -\xe1\xb6\xc1\x54\xe0\x93\xe5\x80\x26\xea\x81\xd5\xe5\x6b\xd8\xb3\ -\xf5\xeb\x70\x2d\xfe\x2e\x60\x51\x28\x03\xc4\xaa\x03\x00\x50\x89\ -\x4a\x99\xe0\xad\x9b\x37\x31\xfd\xad\xd7\x01\xf0\x7a\xbd\x34\x35\ -\x35\xd1\xd8\xd0\x20\x5c\xa5\xcc\xe0\xd7\xfc\xb4\x72\x99\x70\xdb\ -\xde\x7d\xd5\xff\x52\x76\x04\xbc\x1e\xb7\xb2\xf0\xdb\x9a\xda\xed\ -\xc2\xdf\x42\x4a\x4a\x9a\xb0\x10\xd4\xee\xe2\x9d\xd4\xd5\x89\x1f\ -\x85\x9e\x7e\xe6\xd9\xc1\x9a\xa5\x1a\x5b\x63\x39\xfb\xf7\x8a\x7f\ -\xf6\xb5\xc4\x64\x32\x93\x93\x2f\x76\x95\xe6\xf3\x7a\x55\x2d\x9c\ -\xd1\x8a\xdf\xef\x57\x95\xcd\x95\x53\xa0\x7e\xb3\xa1\xdc\xfd\x87\ -\xb6\xfb\x97\x65\x89\xbd\x45\x33\x43\x1a\x43\x25\xdf\x01\x21\x09\ -\x3e\xc4\xb2\x03\x00\xf0\x01\x30\x5b\x4d\x87\x7f\x4e\x7f\x8b\xf5\ -\xeb\xd6\xfc\xf2\x77\xaf\xd7\x4b\x63\x63\x23\xf5\x75\x75\xb8\x5d\ -\x2e\x43\x42\x58\x05\xab\x96\xab\x70\x00\xfa\x19\x0e\x40\x0b\x2d\ -\xea\x7d\xd6\xa6\x7a\x1c\x8e\xe6\x76\xbf\xf0\x1f\xca\x31\xc3\xc6\ -\x0a\xb5\x93\x65\x99\x6f\x67\x8a\x97\xf7\x1e\x3a\x7c\x04\x13\x4e\ -\x3c\x29\x58\xb3\x54\x53\x53\xb1\x2e\x6c\x73\x1d\x4e\x4e\x81\xf8\ -\xef\xd2\x8c\xf7\xdf\x8b\xf9\x67\xda\xbc\x39\x33\xa9\xad\xa9\x11\ -\x6a\x9b\x98\x9c\x89\x25\x4b\xdd\x15\x80\x2c\x07\x34\xb9\xfb\xb7\ -\x37\x55\xe0\x71\x85\x2d\x85\x55\x02\x9e\x09\x75\x90\x58\x77\x00\ -\x00\x6e\x06\x84\x95\x43\xa4\x40\x80\x69\xf7\xde\xf9\x9b\xd4\x40\ -\xbf\xdf\x8f\xd5\x6a\xa5\xbe\xae\x0e\xa7\xd3\x11\xf3\xbf\x34\xe1\ -\x60\xe5\x0a\x31\x07\xc0\x64\x32\x31\x60\xd0\x48\x9d\xad\x89\x7e\ -\x24\x29\x80\xcb\xe5\xc0\xda\x54\x8f\xd3\x69\x8f\xaa\x4a\x7d\xe1\ -\x62\xc8\xf0\x71\xc2\x6d\x3f\xfb\x78\x86\x2a\x59\xe0\x7b\x1e\x78\ -\x98\xf8\xf8\xf0\x84\x35\x35\xd7\x47\x2e\xcf\xbe\x73\xf7\xe3\x84\ -\xaf\x52\x8a\xb6\x6e\x66\xc1\xf7\xf3\x74\xb6\x48\x5f\xde\x78\xf5\ -\x65\xe1\xb6\x9d\x7b\x8c\x05\x95\xc5\xa4\x7c\x1e\x07\x5a\xdc\xfd\ -\xdb\x1a\xc5\x8b\xa2\x69\xc0\x87\xc0\xfa\x50\x07\x69\x0f\x0e\xc0\ -\x01\xe0\x0e\x35\x1d\x6a\x6b\xaa\x79\xf8\xfe\xbb\x8e\xf8\x70\x09\ -\x04\x02\xd8\x9a\x6d\xd4\xd6\xd4\xd0\xdc\x6c\xc5\xe7\xeb\x38\xbb\ -\x33\x35\xd4\xd7\xd5\x51\xbc\x53\x2c\xe8\xaa\x5b\x8f\xfe\xc2\x29\ -\x60\xed\x91\x80\xdf\x8f\xc3\xde\x4c\x73\x53\x03\x6e\x97\x23\xe6\ -\xd3\xf9\x42\x61\xd0\xd0\xb1\xc2\x75\xea\xf7\x55\x56\xb0\x64\xf1\ -\x42\xe1\xb1\x07\x0e\x1a\xcc\x23\x8f\x3d\x15\xac\x69\xaa\xf0\xb8\ -\x1a\xf1\xba\xad\x61\x99\xeb\x70\x92\xd3\x3a\x91\xdd\x79\xb0\x70\ -\xfb\x57\x5e\x78\x2e\x66\x37\x34\xf3\xe6\xcc\x62\xf3\x46\xf1\x75\ -\xae\xb0\xb7\xba\x53\x20\x29\xe0\xd3\x2c\xef\x3f\x98\xe0\xd2\x20\ -\xd9\x84\xca\x35\xef\x68\x88\x95\xe7\x8a\x7e\xb6\x02\xc3\x00\xe1\ -\xdf\x8a\x7d\x95\x15\x48\x92\xc4\x71\xe3\x27\x1c\xb5\x8d\xdf\xe7\ -\xc7\xe5\x72\xe1\xf5\x78\x30\x99\x4c\xc4\x27\xa8\x4f\x2d\x69\xaf\ -\xcc\x99\xf9\x35\xf3\xe6\x88\xdd\x77\x4d\x38\x79\x0a\xa3\x8e\x3b\ -\x45\x67\x8b\xa2\x0b\x59\x96\xf1\xfb\xbc\xb8\x9c\x76\x5c\x2e\x7b\ -\xbb\x4a\xe7\x0b\x85\x84\xc4\x24\x76\x14\xfd\x4c\x7d\xad\x58\xf6\ -\x52\x79\x69\x29\x17\x5f\x7a\x05\x26\x41\xa7\x61\xf0\xd0\x61\xc8\ -\xb2\xfc\xab\x6b\x3e\xbd\xc8\x2d\x18\x1a\x74\xbe\x79\xe8\xc8\xc2\ -\xd7\x10\x55\x07\xf6\xd3\xad\x5b\x0f\x86\x8d\x38\x56\x67\x9b\xb4\ -\xc5\xed\x72\xf1\xbb\xab\x2f\xc3\x2a\xa8\x0c\x99\x6a\xe9\xcc\xc0\ -\xd1\xd7\xa2\xe6\x04\xc0\xeb\x69\x06\x8d\x9c\xa3\xb2\xed\xf3\xc2\ -\xe1\x14\xee\x00\xa6\x00\x9a\x08\x5a\xb4\x87\x13\x80\x16\x6e\x41\ -\x09\x0c\x14\xe6\xbd\xe9\x6f\xb3\x6c\x49\xdb\x41\x94\x3e\x9f\x0f\ -\xab\xd5\x4a\x6d\x4d\x0d\x76\xbb\x4d\x55\x55\xaa\xf6\x8a\xe8\xe2\ -\x0f\x30\x74\xc4\x78\x1d\x2d\x89\x2e\x02\x7e\x3f\x4e\x87\x0d\x6b\ -\x63\x1d\x76\xbb\x35\x26\x25\x7b\xf5\xe6\x84\x93\xa7\x08\xb7\xdd\ -\x56\xb4\x85\xcf\x3e\x56\x25\xfe\xc9\x6d\x77\xdd\xcb\x5f\x5e\x7c\ -\x95\x94\x94\xe0\xe5\x60\x45\x68\xaa\x15\x2f\x83\xad\x35\x9d\x7b\ -\x8c\x13\xce\x06\x00\x78\xfa\xf1\x3f\xc5\x5c\x46\xc0\xdf\x5e\x7e\ -\x81\xb2\x52\x71\x41\xa8\xae\xfd\x4e\x45\xcd\xe2\xef\xf7\xb9\x90\ -\x35\xba\x86\x93\x02\x5e\xec\xcd\xba\x17\x9f\x9b\x03\x8c\x07\xca\ -\xb5\x1a\xb0\x3d\x39\x00\x75\xc0\xd5\x28\x35\x03\x84\x90\x24\x89\ -\x47\x1f\xbc\x57\x38\x95\x4d\x92\x24\x1c\x76\x07\xf5\x75\x75\x34\ -\xd4\xd7\xe3\x74\x3a\x90\xa4\x8e\x77\x9c\xeb\x74\x3a\x58\xf4\xe3\ -\x0f\x42\x6d\x4d\x26\x13\x43\x86\xb7\x6f\x07\x40\x96\x65\x3c\x1e\ -\x17\x36\x6b\x23\xcd\xcd\x0d\x78\x3c\xae\x98\xa8\xce\x17\x29\x46\ -\x8f\x3b\x8d\x94\x54\xb1\xc2\x40\x00\x6f\xbc\xf6\x12\xb5\x35\xd5\ -\xaa\xe6\x98\x72\xde\x85\xcc\xf9\x61\x31\x97\x5e\x71\x35\x09\x3a\ -\x9d\xdc\x35\xd6\x6c\xd7\x65\x5c\x11\xe2\x13\x52\xe8\x39\x50\x58\ -\x06\x85\x86\xfa\x7a\xee\xbc\xe5\x0f\x31\x73\x15\xf0\xf3\xda\x35\ -\xbc\xf9\xda\x4b\xc2\xed\xe3\x13\x52\xe9\x31\xe0\x0c\xe1\xf6\xb2\ -\x1c\xc0\xef\xd5\x4e\x56\xdb\x5a\xbf\x57\xcf\x02\x42\x9b\x81\x73\ -\x81\xf3\x50\x24\x29\x34\xa3\xbd\x5c\x01\xb4\x50\x8e\xe2\x00\x9c\ -\x26\xda\xc1\xe3\x71\xb3\x7e\xdd\x5a\xce\x3d\xff\x22\x55\x47\xfc\ -\x92\x24\xe1\xf5\x78\x71\x39\x9d\xf8\x03\x7e\xcc\x26\x13\x71\x61\ -\x0a\x40\x8a\x34\xdf\xcf\x9d\xc3\x57\x5f\x7c\x26\xd4\xb6\xef\x80\ -\x61\x4c\xb9\x78\xaa\xce\x16\x85\x9f\x96\x23\x7e\xb7\xcb\x81\xd3\ -\x61\xc3\xe7\xf3\x20\x75\xe0\xbb\x7d\x35\xc4\xc7\x27\xe0\x72\x3a\ -\xd8\xbd\x53\x4c\x44\xca\xe7\xf5\x52\x5c\xbc\x93\x73\xce\xbd\x40\ -\xf8\x2a\x00\x20\x35\x2d\x8d\x93\x4f\x39\x8d\xab\xaf\xfb\x3d\x03\ -\x06\x0e\x22\x2b\x27\x9b\xbc\xfc\xce\x58\x2c\x16\x3a\x75\xca\x27\ -\x2f\xbf\xf3\x11\x5f\xcd\xb6\x66\x02\x02\xa7\x7c\x5e\x97\x95\x5e\ -\x43\xce\xc7\x64\x8a\xcc\x3e\xca\x92\xdd\x93\xf2\x9d\xdf\x0b\xef\ -\x62\xf7\x96\xec\x26\x2d\x35\x8d\xb1\xe3\x8f\xd7\xd9\xb2\xd0\xa8\ -\xaf\xab\xe3\xd2\xf3\xcf\xc2\xaa\xa2\xa2\x61\xef\xa1\xe7\xd3\xa9\ -\xab\x78\xa0\xb1\xcf\x63\x47\x96\xb5\x0b\xc2\xad\x2e\x5f\x8d\xb5\ -\x4e\xf8\x44\xa8\x04\xd8\x8b\x12\xbf\x76\xa4\xd7\x0e\x60\x39\xf0\ -\x39\x70\x37\xf0\x14\xa0\xcb\x71\x93\xba\x70\xc9\xd8\xc0\x0c\x7c\ -\x0b\x9c\xa5\xa6\xd3\xe4\xb3\xa6\xf0\xc2\x6b\x6f\x0a\x47\xd7\x1e\ -\x71\x62\xb3\x99\xc4\xa4\x44\x92\x93\x92\x49\x4a\x6e\xbf\x75\xef\ -\x6f\xfe\xfd\x75\xc2\x79\xb9\x57\x4f\x7d\x90\x8b\xaf\xbc\x4d\x67\ -\x8b\xc2\x43\xcb\xa2\xef\xf5\x7a\xf0\x79\x3d\xc6\x2e\x3f\x04\xac\ -\x4d\xf5\x3c\x72\xd7\x45\xf8\xbc\xe2\xe9\x57\xd7\xde\x30\x95\x07\ -\xff\xf4\x98\x8e\x56\x29\x4c\xbb\xf7\x0e\xbe\x9f\x3b\x47\xa8\xed\ -\x71\x93\x9f\x20\xbb\x73\xe4\x24\xae\x77\xad\xff\x88\xbd\x45\xb3\ -\x84\xdb\xc7\xc5\xc5\x31\xfd\xfd\x19\x9c\x7b\xc1\xc5\x3a\x5a\x15\ -\x3c\x4e\xa7\x83\x4b\xce\x3d\x8b\x0d\x3f\xaf\x15\xee\x13\x9f\x90\ -\xca\x49\x17\xbd\x4e\x42\x92\x45\xa8\x7d\xc0\xef\xc1\xe7\x11\x53\ -\x15\x14\x65\xe3\xd2\x57\xb1\xd6\xed\x16\x6d\x3e\x10\xd8\xa5\xa9\ -\x01\x41\xd2\xde\x4e\x00\x40\xc9\xe7\x98\x8f\x72\x1d\x90\x21\xda\ -\xa9\x64\x77\x31\x60\x62\xec\xb8\xe0\x8f\xab\x65\x59\xc6\xef\xf7\ -\xe3\x76\xbb\x71\x39\x9d\x48\x52\x00\x13\xb4\xab\x93\x81\xfa\xba\ -\x3a\x1e\xb8\xe7\x76\x02\x82\xe9\x59\x7f\xbc\xf3\x69\x2c\x19\xb1\ -\x2b\x01\xfc\xbf\x9d\xbe\x13\xa7\xc3\x86\xd7\xeb\x36\x02\xfa\x34\ -\x20\x39\x39\x15\xaf\xc7\x4d\xf1\x8e\x8d\xc2\x7d\x36\x6f\xda\x40\ -\x5e\x7e\x3e\x83\x87\x0e\xd3\xd1\x32\xb0\xd9\x9a\x59\xb2\x70\x81\ -\x50\xdb\xc4\xe4\x0c\x72\x0b\x86\xeb\x6a\x4f\x6b\x64\x76\xea\xcf\ -\xfe\x92\x25\x04\xfc\x62\x2a\x76\xb2\x2c\xf3\xdd\xdc\x39\x8c\x1e\ -\x3b\x8e\x9e\xbd\x7a\xeb\x6c\x9d\x3a\xbc\x1e\x0f\x53\xaf\xbd\x82\ -\x55\x82\xe9\xc5\x2d\x0c\x18\x7d\x0d\x39\x5d\xc4\xb4\x11\x64\x59\ -\x52\x02\xff\x34\xc4\xef\x73\xb2\x7b\xd3\x17\x08\xa6\x12\x96\x01\ -\x7f\xd6\xd4\x80\x10\x68\x4f\x31\x00\x87\x52\x8b\xca\x78\x00\x80\ -\xe9\x6f\xfd\x8d\xf9\xdf\x7d\xab\x89\x01\x92\x24\xe1\x74\x38\x69\ -\x6c\x6c\xa4\xa6\xba\x1a\xab\xb5\x09\xb7\xcb\x15\xf3\x31\x03\x33\ -\x3e\xf8\xa7\xb0\x72\x62\x8f\x5e\x03\x28\xec\xd6\x47\x67\x8b\xb4\ -\x47\x92\x02\x78\x3c\x2e\x1c\x76\xeb\x2f\xc1\x7c\x5e\xaf\xdb\xd8\ -\xf1\x6b\xcc\x59\x17\x5c\xaf\xda\x39\x7c\xf6\xc9\xc7\xf8\x76\xf6\ -\x37\x3a\x59\xa4\x70\xfc\x09\x13\x85\xdb\xd6\xee\x0b\x39\x15\x3b\ -\x24\xe2\x13\x52\x18\x38\xe6\x3a\x55\x7d\xbc\x1e\x0f\xd7\x5e\x7e\ -\x51\x54\xa9\x04\x3a\x1c\x76\xae\xbf\xf2\x12\x16\x2e\x98\xaf\xaa\ -\x9f\x25\xab\x07\x3d\x06\x4e\x16\x6e\xef\xf3\xd8\x35\x8b\xfa\x6f\ -\xa1\xa1\x6a\x9b\x9a\xd4\x5e\x31\xcf\x32\x4c\xb4\xc7\x13\x80\x16\ -\xca\x50\xd4\x92\x4e\x55\xd3\x69\xd9\x92\x45\x9c\x30\xf1\x64\xf2\ -\xf2\x83\xab\x27\x7d\x34\xfc\x7e\x3f\x1e\x8f\x07\xa7\xc3\x81\xcf\ -\xeb\x55\x4e\x07\x4c\x26\xe2\xe2\x62\xe7\x2d\xf0\x79\xbd\xdc\x71\ -\xd3\x54\xec\x36\xb1\xe3\xb3\x33\xcf\xbb\x96\x21\x31\x90\x01\x20\ -\xcb\x32\x81\x80\x1f\x8f\xdb\x75\x30\x6d\xcf\x81\xcf\xe7\x15\x3e\ -\xe5\x30\x08\x8e\x84\x84\x44\x72\x72\x3b\xf3\xf3\x6a\xf1\x5c\x7f\ -\x59\x96\x58\xb4\x60\x3e\x59\xd9\xd9\x0c\x1d\x3e\x42\x17\xbb\x2c\ -\x96\x0c\xe6\xce\xfe\x46\xe8\x0e\xda\xeb\x6e\xa6\x6b\xdf\x93\x48\ -\x48\x14\x0f\x6a\xd4\x1a\x4b\x56\x0f\x9a\xea\x76\xe1\xb2\x89\x07\ -\x4a\x06\x02\x01\xe6\xce\x9e\x49\x7a\xba\x85\xd1\x63\xc5\x85\x85\ -\xf4\xa0\xac\x74\x2f\x57\x5e\x74\x1e\x6b\x57\xaf\x52\xd5\xcf\x64\ -\x32\x73\xec\x29\x0f\x90\x92\xd6\x49\xa8\xbd\xdf\xe7\x12\x3e\x29\ -\x51\x43\xf9\xae\xf9\x38\xc4\x33\x00\x5e\x00\x8a\x34\x37\x22\x48\ -\x62\x67\xf5\x09\x8e\x15\x28\x69\x13\xfd\x44\x3b\xf8\xfd\x7e\x96\ -\x2f\x59\xcc\x59\x53\xce\x23\x2d\x4d\x9f\x5f\xea\x40\x20\x80\xd7\ -\xeb\xc5\xe5\x72\x29\x41\x84\x3e\x2f\xb2\x2c\x63\x36\x9b\x85\x45\ -\x52\x22\xc1\x27\xff\xf9\x37\x5f\x7d\xfe\xa9\x50\x5b\x93\xc9\xc4\ -\x4d\x77\x3d\x43\x46\x66\x8e\xce\x56\x05\x47\x20\x10\xc0\xe7\xf3\ -\xe0\x71\x2b\x47\xfb\x1e\x8f\x0b\xbf\xdf\xd7\xa1\x45\x7a\x22\x41\ -\xd7\xee\x7d\x29\xdf\xbb\x93\xea\x03\xe2\x99\x4d\xb2\x2c\xb3\xfc\ -\x60\xfa\xae\x5e\x8b\x57\xe9\x9e\x12\x8a\xb6\x88\xd5\x9f\x4f\x4a\ -\xc9\x22\x3b\x5f\xac\x74\xb1\x5e\xe4\x16\x0c\x63\xff\x9e\x65\xaa\ -\x24\x6d\x65\x59\x66\xf1\x8f\x3f\xb0\xbd\x68\x2b\x93\x4e\x3b\x83\ -\xe4\x08\xc4\x2d\x7d\x3b\xeb\x1b\xae\xbd\xec\x22\x2a\x2a\xd4\xab\ -\xe8\xf5\x1b\x71\x19\x85\xbd\x4f\x14\x6a\x2b\x4b\x01\xcd\xef\xfd\ -\x41\x11\x12\xda\xb5\xfe\x63\xd1\x0c\x00\x09\xb8\x1d\xd0\x2e\xfd\ -\x20\x44\xa2\x77\xb5\xd1\x06\x09\xb8\x0a\x95\x01\x17\xd5\x55\x07\ -\xb8\x65\xea\xf5\x34\x37\xeb\xaf\xf4\x25\x49\x12\x6e\xb7\x87\x66\ -\x6b\x33\x75\xb5\xb5\xd4\xd6\xd4\xd0\xd4\xd8\x80\xc3\x61\xc7\xe7\ -\xf5\x46\x4d\xda\x8e\xcf\xe7\xe3\xf5\x97\x5f\x10\x6e\x3f\x74\xc4\ -\xf1\x74\x55\x51\xfe\x55\x4f\x94\xd8\x0c\x1f\x6e\x97\x13\xbb\xad\ -\x89\xa6\xc6\x3a\x9a\xad\xf5\x07\xef\xf4\x8d\x60\xbe\x48\x73\xc3\ -\xcd\x8f\x92\x95\x2d\xb6\x8b\x3b\x94\x7f\xbc\xf9\x1a\x37\xfd\xee\ -\x1a\xd5\x29\x82\x22\x8c\x9f\x20\xb6\xb0\x00\x1c\x28\x55\x57\xb9\ -\x50\x0f\x92\x52\xb2\x19\x31\xf1\xee\xa0\x32\x12\xe6\xce\x9e\xc9\ -\xc4\xb1\x23\xf8\xfc\x93\x8f\xc2\xf6\xbc\xa9\xae\xaa\xe2\xce\x9b\ -\xa7\xf2\x87\xeb\xae\x54\x15\xed\xdf\x42\x4e\x97\x21\xf4\x19\x76\ -\x91\x60\x6b\xf9\xe0\xbd\xbf\xf6\xdf\x5b\x7d\xd5\x16\x35\xa7\x0a\ -\x1b\x51\xae\xa7\xa3\x86\xf6\xee\x00\x00\x34\x02\xe7\xa3\xa2\x74\ -\x30\x28\xd5\xc8\xee\xbd\xfd\x66\xbc\xde\xf0\x0a\xb9\x48\x92\x84\ -\xc7\xe3\xc5\x6e\xb3\xd3\xd0\xd0\x40\x6d\x4d\x0d\x8d\x0d\x0d\xd8\ -\xed\x36\x3c\x6e\x77\xc4\x44\x88\x3e\x9e\xf1\x01\xe5\x65\xa5\xc2\ -\xed\x27\x9f\x7b\x8d\x7e\xc6\xb4\x41\x20\x10\xc0\xe7\xf5\xe0\x72\ -\xda\xb1\x59\x1b\x69\x6a\xac\xc5\xd6\xdc\x88\xcb\x65\xc7\xe7\xf3\ -\x1a\xbb\xfc\x28\xc3\x92\x91\xcd\x8d\x77\x3e\x8d\x39\x88\xeb\xb0\ -\xb5\xab\x57\x71\xc5\x45\x53\x58\xb1\x6c\x89\x66\xf6\xb8\x5d\x2e\ -\xb6\x6c\x12\x0f\x4e\xb4\x35\x96\x63\xb7\xaa\xd2\x20\xd3\x85\x9c\ -\x2e\x43\xe8\x3b\xfc\xd2\xa0\xfa\xd6\x54\x57\x73\xd7\x2d\x7f\xe0\ -\xa2\x29\x67\xb0\x72\xf9\x52\x8d\x2d\xfb\x1f\xd6\xa6\x46\x5e\x7a\ -\xee\x19\x4e\x18\x3d\x8c\x2f\x3e\xfd\x38\xa8\x31\x92\xd3\x3a\xa9\ -\x72\x76\x7c\x1e\xbb\x66\x82\x3f\x87\x53\x5b\xa9\x2a\x06\xc4\x02\ -\x1c\xa7\x8b\x21\x41\xd2\xde\xaf\x00\x5a\xa8\x07\x36\xa0\x9c\x06\ -\x08\x3b\x3d\xfb\xf7\x55\x52\xba\xa7\x84\xd3\xcf\x3c\x3b\xa2\x77\ -\x64\xca\x82\xe6\xfb\x25\xbb\xc0\xe9\x70\xe0\xf5\x7a\x95\x23\x6b\ -\x49\x42\x46\x49\x41\xd4\xcb\x46\x6b\x53\x23\x53\xaf\xbd\x02\x97\ -\x53\xec\xe4\xaa\x53\x5e\x01\x37\xdd\xf5\x8c\xee\xd7\x19\xb2\x2c\ -\xe1\xf7\xfb\xf0\xfb\x3c\x78\x3d\x6e\xdc\x2e\x27\x2e\xa7\x1d\x8f\ -\xc7\x89\xd7\xeb\xc1\xef\xf7\x19\xb9\xf9\x31\x42\xa7\xbc\x02\x2c\ -\x19\x59\x6c\xd9\xa0\x7e\x37\xed\x72\x3a\xf9\x76\xd6\x37\x94\x14\ -\xef\x62\xe8\xf0\x11\x58\x32\x84\x93\x7f\x7e\x85\x2c\xcb\x7c\x3f\ -\x77\x0e\x77\xdf\x76\xa3\x90\x42\xe8\xa1\xa4\xa4\xe5\x91\x9d\x3f\ -\x30\xa8\x79\xb5\x24\xa7\xf3\x60\x3c\xae\x46\x9a\x1b\xc4\x15\xf4\ -\x0e\xa5\xb2\xa2\x9c\xcf\x3e\x9e\xc1\xd2\xc5\x3f\x92\x90\x98\x44\ -\xaf\x3e\x7d\x48\x48\x48\x0c\xd9\xae\xed\x45\x5b\x79\xeb\x6f\x2f\ -\x73\xc7\x4d\x53\x59\xbc\x70\x41\xd0\x1b\xab\x84\x24\x0b\xc7\x9d\ -\xf1\x18\x29\xe9\x79\x42\xed\xfd\x3e\x17\x01\x9f\x2b\xa8\xb9\xda\ -\x42\x96\x02\xec\xda\xf0\x89\x1a\x01\xa0\x5c\xe0\x46\xa0\x2f\xb0\ -\x1a\xd0\xfe\x4e\x42\x25\x1d\xc5\x01\x00\x45\x7c\xa1\x19\x95\xfa\ -\x00\x7b\x4a\x8a\xb1\x36\x35\x32\xf1\xe4\xe8\xd2\xb2\x57\xee\xb0\ -\x7d\x78\x3c\x1e\x5c\x2e\x17\x0e\x87\x03\xb7\xcb\x85\xd7\xeb\xc1\ -\xeb\xf3\x22\x49\xd2\x2f\xce\x81\xc9\x64\x0a\xc9\x39\x78\xe6\xf1\ -\xff\x63\xc5\x52\xf1\x1d\xd6\x95\xbf\x7b\x80\x81\x83\x47\x05\x3d\ -\xdf\xa1\xc8\xb2\x84\x14\x08\xe0\xf7\x79\xf1\xf9\xbc\x78\xbd\x6e\ -\x3c\x1e\x17\x4e\xa7\x1d\xb7\xcb\x81\xd7\xeb\x3e\x18\xb0\xe7\x37\ -\x16\xfb\x18\xa7\x57\xdf\xc1\xb8\x5d\x4e\xf6\x14\x6f\x09\xaa\xff\ -\x9e\x92\x62\xfe\xfb\xe9\x47\xb8\xdd\x6e\x86\x0e\x3f\x96\xc4\x44\ -\xf1\x85\xab\x68\xeb\x66\x1e\xbc\xe7\x0e\xfe\xf3\xc1\x7b\xd8\xed\ -\x76\xd5\x73\xa7\x5a\xba\x90\xd7\x4d\x9b\xcf\x7c\xa8\xe4\x75\x1d\ -\x89\xad\xb1\x5c\x4d\x60\xda\x6f\xd8\x57\x59\xc9\xdc\xd9\x33\x79\ -\x6f\xfa\xdf\xd9\xbe\xad\x88\x66\xab\x95\xcc\xac\x2c\x32\xb3\xb2\ -\x84\xfa\x7b\xdc\x6e\x7e\x5a\xb9\x9c\x8f\x3f\xfc\x80\xc7\xff\x34\ -\x8d\x17\x9f\x7b\x9a\x75\x6b\x56\x87\x74\xa2\x1a\x17\x9f\xc4\xe8\ -\xd3\x1e\x21\x23\x47\x2c\x7d\x51\x0a\xf8\x94\xa8\x7f\x9d\xf0\xba\ -\x9b\xa9\xd8\xa5\x2e\x6b\x01\x45\x7b\x67\x04\x8a\x74\xbd\x09\x58\ -\x87\xca\x6c\x35\x2d\x69\x8f\x42\x40\x6d\xf1\x0e\xf0\x47\xb5\x9d\ -\xee\xbc\xf7\x41\x6e\xbc\xe5\x76\x1d\xcc\x09\x0f\x66\xb3\x99\xb8\ -\xb8\x38\xe2\xe2\xcc\x98\xe3\xe2\x7e\x09\x38\x8c\x33\xc7\x61\x3a\ -\xf8\xe7\x23\x9d\x22\x6c\xd9\xb4\x81\xb3\x4f\x9d\x28\x7c\xf5\x90\ -\x99\x95\xcb\xdf\x67\x2c\x27\x31\xa9\xf5\x80\x22\x59\x96\x90\x24\ -\x19\x59\x56\x1c\x15\x49\x96\x90\x0f\xfe\x3d\x10\xf0\x23\x49\xca\ -\xc2\x6f\xdc\xcf\x77\x2c\x64\x59\x66\xc6\xbb\xcf\xb1\x6c\xa1\x78\ -\xad\x89\x23\x91\x6e\xb1\x70\xf1\x65\x57\x72\xd5\xb5\x37\x50\xd8\ -\xb5\xdb\x51\xdb\xd5\xd5\xd6\xf0\xfa\x2b\x2f\x30\xfb\x9b\xaf\x42\ -\x4a\xd1\xed\x3d\xf4\x42\x06\x8c\xbc\x2a\xe8\xfe\x5a\x23\x05\x7c\ -\x6c\x5a\xf6\x9a\x70\xc1\x20\x51\x32\x33\xb3\xe8\xdb\xbf\x3f\x7d\ -\xfb\xf5\xc7\x92\x91\x49\x5a\x5a\x3a\x49\xc9\x49\x38\x1d\x0e\x6c\ -\xcd\xcd\x1c\x38\xb0\x9f\x92\xe2\x5d\x94\x97\x95\x6a\x9a\x45\x13\ -\x9f\x90\xc2\xb1\x93\x1e\x20\xb7\xcb\x50\xa1\xf6\xb2\x1c\xc0\xe3\ -\xb2\x82\x8e\x9b\x82\x80\xdf\xcd\xf2\x59\x0f\x10\x62\x6c\x41\x29\ -\x30\x0d\x10\x53\x56\xd3\x98\x8e\xe8\x00\x24\x02\x3f\x00\xaa\xea\ -\x46\x9a\x4c\x26\x1e\x79\xec\x29\xae\xb8\x5a\x5d\xce\x6d\xac\xd1\ -\x72\x5a\x60\x32\x99\xf0\xfb\xfd\x5c\x76\xfe\xd9\x14\xef\x12\x2b\ -\xfb\x0b\x70\xe5\x0d\xf7\x71\xf6\x05\xd7\x03\xfc\x12\x50\x24\xcb\ -\x32\xc8\x1c\x5c\xe4\x25\x63\x51\x37\x68\x15\x59\x96\xf8\xf0\x9d\ -\x67\x59\xbe\x68\x76\xc8\x63\x99\xe3\xe2\x38\xfd\x8c\xb3\x38\xff\ -\xe2\x4b\x19\x3f\xe1\xc4\x5f\xd5\x05\xf8\xea\x8b\x4f\x79\xe9\xf9\ -\x67\x70\x04\xb1\xe3\x3f\x9c\x31\xa7\x3d\x4a\x6e\x61\xe4\x04\x81\ -\x8e\x84\x2c\x4b\x6c\x5b\xfd\x1e\x95\xc5\x51\x95\x7a\xae\x9a\x84\ -\x24\x0b\xa3\x4e\x7d\x88\xac\x4e\xfd\x85\xda\xcb\xb2\x8c\xd7\xdd\ -\xa4\xdb\xbd\xff\xa1\xac\x5f\xf4\x22\xb6\xc6\x52\x2d\x86\x9a\x0b\ -\x4c\x05\xb4\x8f\x68\x6d\x85\x8e\x74\x05\xd0\x42\x00\xa5\xaa\xd2\ -\x65\x80\x2a\x15\x92\xe5\x4b\x17\x93\xdf\xb9\x0b\x83\x86\x88\x79\ -\xa1\xb1\x8a\x2c\xcb\xc8\xb2\xcc\x1b\xaf\xbe\xc8\x82\xf9\xf3\x84\ -\xfb\xe5\xe6\x15\xf0\xfb\x5b\x15\xa9\xd6\x40\x20\x80\x24\xb5\xbc\ -\x0e\xee\xf0\xa3\x24\xa3\xc1\x20\xba\x31\x99\x4c\x8c\x18\x3d\x11\ -\xaf\xc7\x45\xc9\xae\xe0\xae\x03\x5a\x90\x65\x99\x92\xdd\xc5\xcc\ -\x9d\x3d\x93\x8f\x67\x7c\x40\x49\x71\x31\x26\xb3\x99\x8f\x3f\x7c\ -\x9f\xb7\x5f\x7f\x05\x9f\x06\x41\xbe\x59\x79\x03\xe8\x3f\xf2\x4a\ -\xa2\x6d\x3f\x65\x32\x99\xc8\x3f\x78\x2d\xd1\x58\x1d\xb9\xc2\x45\ -\xa1\x90\x96\x51\xc8\xd8\xc9\x8f\x61\xc9\xee\x29\xd8\x43\xc6\xe7\ -\x69\xd6\xb3\x30\xcf\xaf\x48\x4c\xc9\xd4\xea\x94\xa5\x3f\x70\x1d\ -\xb0\x04\xd0\xbd\xac\x60\x0b\x1d\xd1\x01\x00\x25\x0f\xf3\x7b\xe0\ -\x4a\x40\x55\xcd\xd0\x65\x8b\x17\xd2\xb5\x5b\x37\x06\x1e\x33\x58\ -\x17\xc3\xa2\x85\xd5\xab\x56\xf0\xcc\x13\xff\xa7\x6a\xd1\xbe\xe6\ -\x0f\xd3\xe8\xd1\x2b\xf2\x81\x50\x06\xb1\x8f\xc9\x64\x62\xf0\xf0\ -\x71\x64\x65\xe7\xb1\x7d\xcb\x1a\x24\x0d\x76\x73\x5e\xaf\x97\xe2\ -\x9d\x3b\xf8\x7e\xee\x6c\x8a\xb6\x8a\xe5\xf8\xb7\x45\x5a\x46\x21\ -\xa3\x4e\x9d\x46\x7c\x82\xbe\xa5\x87\x83\xc7\x44\x4e\x97\x21\x64\ -\x77\x3e\x86\xfa\x03\x9b\x75\x11\xc2\xd1\x8b\xce\x3d\xc6\x31\xea\ -\xd4\x87\x48\x4a\x11\xdf\xa7\x79\x3d\x76\xa4\x40\xf8\x32\xb7\x52\ -\xd3\xf3\x31\x9b\xe3\x69\xaa\xd5\x44\xda\x3f\x1d\xb8\x08\xa5\x96\ -\x4d\x58\xd2\x05\x3b\xaa\x03\x00\x4a\xf9\xe0\x25\x28\x99\x01\xc2\ -\xd1\x42\xb2\x2c\xb3\x78\xd1\x8f\xf4\xea\xd5\x87\x7e\x03\xda\xe7\ -\x62\x57\x5d\x75\x80\x5b\xfe\x70\x1d\x4e\x87\x43\xb8\x4f\xdf\x01\ -\xc3\xb8\xe2\xfa\x7b\x23\x9a\x2d\x61\xd0\xfe\xe8\xd9\xe7\x18\x86\ -\x8d\x3c\x81\x6d\x5b\x56\xe3\x74\x44\x3c\x68\xfa\x17\xcc\xe6\x78\ -\x7a\x0e\x3a\x87\x11\x13\xef\x22\x31\x29\xb8\xac\x83\x70\x92\x9a\ -\x9e\x4f\x97\x5e\x13\xb0\x35\xec\xc5\xe5\x88\xaa\x54\xf4\xdf\x10\ -\x17\x9f\xcc\xe0\xe3\xa6\x32\x60\xd4\x35\x98\xe3\xc4\x2b\xb4\xfa\ -\x3c\x76\x24\x15\x42\x48\x5a\x91\xd9\xa9\x1f\x59\x9d\xfa\x61\x6f\ -\xaa\xd0\x42\x6c\x28\x15\x98\x0c\xbc\x4b\x18\x82\x03\x3b\xb2\x03\ -\x00\xb0\x0f\x25\x0a\xf3\x0a\x54\xfc\x2c\x64\x59\x66\xd1\x82\x1f\ -\xe8\xdb\xaf\x3f\x7d\xfa\x89\xdd\x4b\xc5\x0a\x5e\xaf\x97\x3b\x6f\ -\x9e\x4a\xe9\x9e\x3d\xc2\x7d\xe2\xe2\xe2\xb9\x63\xda\xcb\x64\x66\ -\xe5\xea\x68\x99\x41\x47\x25\x33\xbb\x13\x13\x4e\x9a\xc2\x81\x7d\ -\x7b\x55\x29\x06\xea\x45\x5e\xb7\xd1\x8c\x9c\xf4\x20\x05\xbd\x4f\ -\xc0\x6c\x8e\x9d\x42\x5f\xf1\x09\xa9\x74\xed\x7b\x32\xa9\x96\xce\ -\x34\xd5\xee\x52\xa5\x1a\x18\x2e\xf2\xba\x8d\x62\xd4\xa9\x0f\x09\ -\x07\xfb\xb5\xe0\xf3\x3a\x22\x7a\xba\x91\x9c\x96\x4b\x41\xef\x13\ -\x49\x4c\xce\xc0\xd6\x50\x16\xea\x29\x44\x2e\xca\x55\xf5\x62\x4d\ -\x8c\x6b\x85\x8e\xee\x00\x00\xec\x41\xa9\xb5\x7c\x31\x2a\x2e\xf1\ -\x5a\x34\xc9\x7b\xf7\xed\x47\xdf\x76\xe2\x04\xc8\xb2\xcc\xa3\xd3\ -\xee\x55\x95\xf2\x07\x30\xf9\xdc\xab\x19\x3f\xf1\x6c\x9d\xac\x32\ -\x30\x80\x84\xc4\x24\xc6\x4e\x38\x83\xcc\xac\x5c\x4a\x8a\xb7\xa8\ -\x2a\x23\xac\x15\xe9\x59\xdd\x18\x7e\xc2\x9d\xf4\x1d\x7e\x31\x89\ -\x82\xa5\x67\xa3\x0f\x13\x96\xec\x9e\x74\xeb\x7f\x2a\x01\xbf\x07\ -\x5b\x53\x59\x54\x08\x63\x59\xb2\x7a\x30\xec\x84\xdb\xe8\x3b\xfc\ -\x52\x12\x12\xd3\x54\xf5\xf5\xfb\x9c\xba\xe5\xfa\xab\xc1\x64\x52\ -\x7e\xb6\x05\xbd\x4f\x40\x96\xfc\xd8\x9a\x2a\x42\x29\x3c\x34\x1a\ -\x78\x1d\xf0\x69\x67\xe1\x6f\x31\x1c\x00\x85\x22\x14\xb1\xa0\x73\ -\xd4\x74\x92\x24\x89\x05\xf3\xbf\xa3\xb0\xb0\x1b\x03\x07\xc5\x7e\ -\x4c\xc0\xeb\x2f\xbf\xc0\x17\x9f\x7e\xa4\xaa\x4f\x97\xc2\x5e\xdc\ -\x74\xd7\xd3\xed\xaa\xe4\xb1\x41\x74\x62\x32\x99\xe8\xd5\x77\x10\ -\x27\x4c\x3a\x0f\x87\xdd\x4a\x45\x59\x71\x58\xe6\x4d\x48\xb2\x30\ -\x70\xf4\xb5\x0c\x3d\xfe\x66\x52\x33\x0a\xc2\x32\xa7\xde\xc4\xc5\ -\x25\x92\xd7\x75\x24\xdd\xfb\x9f\x46\x5c\x7c\x12\xb6\x86\xbd\x48\ -\x61\x0a\x9c\x3b\x14\x4b\x76\x4f\x06\x8e\xbe\x96\x41\xe3\x6e\x24\ -\x2d\x88\x9f\xad\xdf\xeb\xc0\x1f\x05\x8b\xff\xa1\x98\xe3\x12\xc8\ -\xe9\x3c\x98\xbc\xae\xa3\x70\x3b\xeb\x70\xd9\x83\xba\x72\x49\x02\ -\x76\x02\x9b\xb4\xb5\xee\xd7\x18\x0e\xc0\xff\x58\x8b\x72\x02\x30\ -\x49\x4d\xa7\x96\x82\x1a\x59\xd9\x39\xba\x55\x27\x0b\x07\xff\x7e\ -\xef\x1d\xde\x7e\xe3\x55\x55\x7d\xe2\xe2\xe2\xb9\xfb\xe1\x57\xc9\ -\xcd\xeb\xa2\x93\x55\x06\x06\xbf\x25\x29\x29\x85\x63\xc7\x9c\xc4\ -\xe0\xe1\xe3\x28\x2f\xdd\x89\xb5\xa9\x5e\x97\x79\x4c\xe6\x38\x7a\ -\x0e\x3c\x8b\x63\x4f\xbe\x8f\x9c\xce\x83\x83\xd2\xd9\x8f\x76\xe2\ -\xe2\x93\xc9\xe9\x32\x84\x6e\xfd\x4f\x23\x39\x35\x1b\xaf\xbb\x19\ -\x8f\x4b\xbd\x36\xbf\x1a\xe2\x13\x52\x28\xe8\x7d\x22\xc7\x8c\xbd\ -\x81\x01\xa3\xae\xc6\x92\xdd\x33\xa8\xd8\x21\x9f\xd7\x11\x15\x3b\ -\xff\xa3\x91\x90\x94\x4e\xe7\xee\x63\xc9\xc8\xe9\xad\xc4\x07\x78\ -\x55\xa7\x9b\xfa\x00\x5d\x6b\x36\x1b\x11\x5b\xbf\xe5\x6d\xe0\xd6\ -\x60\x3a\xde\x7d\xff\x43\x4c\xbd\x29\xa8\xae\x11\x65\xc6\x07\xef\ -\xf1\xd2\x73\x4f\xab\xee\x77\xd1\x95\xb7\x71\xce\x85\x37\xe8\x60\ -\x91\x81\x81\x18\xb2\x2c\xb3\x65\xc3\x0a\xbe\x9b\x35\x83\xe2\x1d\ -\xe2\xfa\xfd\x6d\xd1\xa9\xf0\x58\x8e\x19\x73\x3d\x69\x99\x5d\x35\ -\x1b\x33\x56\xb0\x37\x55\x50\x55\xf6\x13\x0d\x55\x5b\xb1\xd6\xed\ -\xd6\xe4\x64\x20\x39\x35\x97\x9c\x2e\x43\xe8\xd4\xf5\x58\xf2\xbb\ -\x8d\x21\x2e\x3e\x29\xa4\xf1\x7c\x1e\x7b\x4c\x65\x34\xc8\x52\x80\ -\xfd\x7b\x97\x51\xba\x7d\x2e\x7e\xaf\x70\x70\xf5\x36\x60\x88\x8e\ -\x66\x19\x0e\xc0\x11\x30\xa3\x44\x60\x4e\x0d\xa6\xf3\x1f\x6f\xbd\ -\x83\x3b\xee\x79\x40\x5b\x8b\x74\xe4\xc3\x7f\xbd\xcb\x2b\x2f\x3c\ -\xab\x3a\x47\x7f\xd8\xc8\x09\xdc\x39\xed\xe5\x76\xb9\x2b\x32\x88\ -\x4d\x4a\x76\x6d\xe1\xfb\xd9\x33\xd8\xb8\x6e\x59\x48\xf7\xda\x43\ -\xc6\xdf\x44\xb7\xfe\xa7\x69\x68\x59\xec\x12\xf0\x7b\x68\xaa\xd9\ -\x49\x73\x63\x29\xce\xe6\x03\x38\x9a\xf7\xe3\xb4\x55\xe1\xf7\x3a\ -\x09\xfc\x26\xd0\xcd\x44\x42\x62\x2a\x89\x29\x59\xa4\x65\x14\x2a\ -\xaf\xcc\x42\xb2\xf2\x06\x06\x75\xbc\x7f\x64\x64\x25\xd5\x2f\x0a\ -\x03\x18\x45\xf0\x79\x1d\x6c\x5c\xf2\x32\x4e\x9b\x90\xde\x8f\x03\ -\x25\x35\x50\x37\x0c\x07\xe0\xc8\x98\x81\xe9\x28\x85\x1b\x54\x73\ -\xd9\x95\xd7\xf0\xa7\xc7\x9e\x0a\xaa\xba\x59\xb8\x90\x65\x99\xbf\ -\xbd\xf4\x57\xde\xff\xe7\x3f\x54\xf7\xcd\xcb\xef\xca\xff\x3d\xf7\ -\x6f\x52\xd3\x62\x35\x10\xca\xa0\x3d\x53\x5b\x5d\xc9\x9a\x95\x3f\ -\xb0\x76\xd5\x0f\xec\x2b\x2f\x51\xdd\x7f\xc2\x79\x2f\x62\xc9\xea\ -\xa1\x83\x65\xed\x0b\x59\x96\xf0\xfb\x5c\xc8\x52\x80\xb8\xf8\xa4\ -\x90\x77\xf5\x22\xf3\x79\xdd\xe1\x13\xf9\xd1\x8b\xcd\x2b\xde\x14\ -\x15\x66\x6a\x06\x32\xf5\xb4\x25\x7a\x57\xa8\xc8\x22\xa3\x88\x31\ -\x14\xa2\x44\x63\xaa\x62\xdb\xd6\x2d\x6c\xdf\x56\xc4\x29\xa7\x9d\ -\xf1\x2b\xe9\xd1\x68\xc1\xe7\xf3\xf1\xf8\x9f\xa6\xf1\xd9\xc7\x33\ -\x54\xf7\x4d\x4a\x4e\xe1\x9e\x47\xfe\x46\xa7\xfc\x42\x1d\x2c\x33\ -\x30\x08\x9d\xb4\xf4\x0c\x06\x0c\x1a\xc9\xa4\x33\x2e\x61\xcc\xf8\ -\xd3\x48\x4f\xcf\xa2\xb1\xa1\x16\xa7\xa3\x59\xa8\xbf\xd7\x6d\xa5\ -\x4b\xaf\x09\x3a\x5b\x19\xfb\x98\x4c\x26\xe2\xe2\x12\x89\x8b\x4f\ -\xd2\x3d\x1d\x52\x96\x03\x07\x17\x7f\xfd\xe5\x7d\xf5\xc4\xd6\x54\ -\xce\xde\x22\xe1\x3a\x17\x0d\xc0\xcb\x3a\x9a\x63\x38\x00\xad\x20\ -\xa3\x48\x06\x77\x22\x88\x1a\xce\x65\xa5\x7b\x59\xba\xe8\x47\x26\ -\x9d\x7a\x3a\x69\xe9\xba\x9e\xe2\xa8\xa2\xb6\xa6\x9a\xdb\x6f\xfa\ -\x1d\x4b\x17\x2f\x54\xdd\xd7\x6c\x36\x73\xf3\xdd\xcf\x6a\x56\xe9\ -\xcf\xc0\x40\x6f\x2c\x19\xd9\x1c\x33\x64\x34\x7d\xfa\x0f\x15\x2e\ -\x30\xe4\xb0\xee\x23\x3b\x6f\x20\xa9\x96\xce\x3a\x5b\x67\x20\x42\ -\x20\xe0\xc5\xeb\x6e\xd6\xb5\xb0\x4f\x78\x90\xd9\xbe\xe6\x7d\x3c\ -\xce\x06\xd1\x0e\x4b\x81\x8f\x75\x34\xc8\x70\x00\x04\x98\x07\xe4\ -\x03\x63\xd5\x76\xac\xaf\xaf\x63\xe1\x0f\xdf\x33\x61\xe2\xc9\x64\ -\x67\xe7\x68\x6f\x99\x4a\x36\xae\x5f\xc7\xcd\xbf\xbf\x8e\x3d\x25\ -\xbb\x83\xea\x7f\xcd\xd4\x69\x8c\x9f\xa8\xaa\x9a\xb2\x81\x41\x54\ -\x90\x99\x99\xcb\x82\x79\x9f\xe0\xf7\x8b\xa5\x55\xdb\x9a\xca\xe8\ -\xd6\xff\xf4\xa0\x95\x2d\x25\xc9\x4f\xed\xbe\xf5\x54\x95\xae\xa4\ -\xa9\x76\x27\x92\x14\x20\x25\x2d\xcf\x50\xca\x54\x89\xdf\xe7\xc4\ -\xaf\x63\x49\xdf\xd6\xf0\xb8\x9a\xa8\xdd\xf7\x33\xf5\xfb\x37\xe3\ -\xb4\x1d\x20\x3e\x31\x9d\x84\xc4\xe0\x25\x9f\x6b\x2a\xd7\x53\x59\ -\xfc\xa3\x9a\x2e\x1f\x02\xcb\x82\x9e\x50\x00\xc3\x01\x10\x63\x2e\ -\x41\x9e\x04\xd8\x9a\x9b\x99\x37\x67\x16\x23\x46\x8e\xa2\xa0\x30\ -\x32\x11\xc5\x52\x20\xc0\x3b\x7f\x7f\x83\xc7\x1e\x99\x86\xdd\x1e\ -\x9c\x54\xe5\xf9\x97\xfe\x91\xc9\xe7\x5d\xa3\xb1\x65\x06\x06\xe1\ -\xc1\x64\x36\x73\x60\x5f\x29\x95\xe5\x62\xce\xaf\xd7\x6d\x25\x29\ -\x25\x8b\xcc\xdc\xbe\x2a\x67\x92\x39\xb0\x77\x05\x1b\x16\xbf\x40\ -\xe5\xae\x05\x34\x54\x6f\xa3\xa1\x6a\x2b\xfb\xf7\x2c\xa5\xa6\x7c\ -\x0d\xd9\x9d\x07\x91\x98\xac\xeb\xb5\x6e\xbb\x40\x96\x65\x7c\x1e\ -\x5b\x64\x22\xfd\x65\x99\xbd\xdb\x66\xb3\x6d\xcd\xbf\xa8\xdf\xbf\ -\x09\x6b\xdd\x6e\x1a\xaa\x8a\xd8\xb7\x67\x09\x6e\x47\x2d\x96\xec\ -\x5e\xc4\x27\xb4\x5e\xee\xfc\x70\xa4\x80\x97\xad\x3f\xbd\xa3\x26\ -\x6d\xd1\x8f\x12\x83\x66\x55\x69\xbd\x2a\x0c\x07\x40\x9c\x79\x40\ -\x16\x30\x5e\x6d\x47\x8f\xc7\xcd\xbc\x39\x33\xc9\xcb\xcf\x67\xd0\ -\xe0\xf0\x56\x12\xac\xac\x28\xe7\xae\x5b\xff\xc8\xec\x6f\xbe\x0a\ -\x3a\x32\xfa\xac\xf3\xaf\xe7\xc2\x2b\x6e\xd1\xd8\x32\x03\x83\xf0\ -\x92\x97\x5f\xc8\x92\x05\x5f\x0b\xb7\xb7\xd6\xed\xa6\x5b\xff\xd3\ -\x88\x8b\x13\x2b\x15\xd2\x5c\xbf\x87\x8d\x4b\x5f\xa5\x6c\xc7\xbc\ -\x23\x8a\xd3\x78\xdd\x56\xaa\xca\x56\x91\xdf\x6d\x34\x89\xc9\xd1\ -\x5f\x3f\x20\x52\x48\x01\x5f\x58\x2b\xfa\x1d\xce\xae\x8d\x9f\xb2\ -\x6f\xf7\xa2\x23\x5e\x39\x38\xac\xfb\x38\x50\xba\x1c\x30\x61\xc9\ -\xe9\x25\x9c\x05\x55\xbe\xf3\x7b\xea\x0f\xa8\x2a\x40\xf5\x15\x4a\ -\x36\x9a\xae\x18\x0e\x80\x3a\xbe\x43\xf1\xcc\x4e\x41\x65\x06\x45\ -\x20\x10\x60\xf1\xc2\x05\x34\x35\x36\x70\xfc\x09\x13\x31\x9b\xf5\ -\x4d\x9f\xf3\xfb\xfd\x7c\xf0\xde\x74\xa6\xdd\x7b\x27\x95\x15\xc1\ -\xeb\xa7\x9f\x7e\xce\x95\x5c\x76\xed\x5d\x1a\x5a\x66\x60\x10\x19\ -\x32\xb3\x72\x39\xb0\xaf\x94\xfd\x95\x62\x75\x2e\x02\x01\x2f\x52\ -\xc0\x4b\xa7\xae\xc7\xb6\xda\xce\xe3\x6a\x62\xc7\xba\x0f\xd8\xbe\ -\xe6\x3d\xdc\x8e\xd6\x45\x89\xa4\x80\x97\xda\x7d\x1b\x28\xe8\x7d\ -\x02\x71\xf1\xea\x76\x91\x1d\x01\xbf\xcf\x89\xcf\x63\x0f\x45\x42\ -\x37\x24\xca\x77\xce\xa7\x62\xd7\x0f\xad\xb6\x91\xa5\x00\x4d\xb5\ -\x3b\xa9\xad\x58\x47\x52\x5a\x6e\x9b\xb1\x22\x1e\x57\x23\xdb\xd6\ -\xbc\x8f\x2c\x0b\x07\x30\xfa\x51\x2a\xd5\xea\x5e\xb5\xc9\x70\x00\ -\xd4\xb3\x0c\xa8\x00\xa6\xa0\xa4\x0b\xaa\x62\xeb\x96\x4d\xfc\xbc\ -\xf6\x27\x4e\x9a\x74\x1a\x29\x29\x29\x9a\x1b\x07\xb0\x6e\xcd\x6a\ -\xee\xb9\xed\x26\xe6\xce\x9e\x89\xdf\x1f\xbc\x17\x7d\xde\xa5\x37\ -\x72\xc9\x55\xb7\x6b\x68\x99\x81\x41\x64\xe9\xdd\x6f\x08\x4b\x16\ -\x7c\x8d\x14\x10\x7b\x18\x37\x37\xec\xa5\x4b\xcf\xf1\x47\xdc\xb1\ -\x4b\x92\x9f\xd2\x6d\x73\xd8\xb4\xf4\x55\xac\x75\xe2\xb2\xc4\x7e\ -\xaf\x83\xc6\x9a\xed\x14\xf4\x99\x88\xd9\x6c\x3c\x82\xe1\x7f\x51\ -\xfe\x91\xcc\xef\xaf\xad\xfc\x99\xe2\x8d\x9f\x09\xb7\xf7\xfb\x9c\ -\xd4\x56\xfe\x4c\x73\xfd\x1e\x2c\xd9\x3d\x49\x48\x3a\x72\xb0\x77\ -\xf1\xc6\x4f\xb1\x37\x55\xa8\x31\xe5\x6d\xe0\xdf\x6a\x3a\x04\x8b\ -\xf1\xe9\x0b\x8e\x0d\x07\x5f\x17\x02\xaa\xf3\xfc\x0e\xec\xdf\xc7\ -\xf7\xf3\x66\x33\x7a\xec\x38\xf2\xf2\xf3\x35\x33\x6a\x4f\xc9\x6e\ -\x1e\x7f\x74\x1a\xaf\xbf\xf2\x02\x0d\xf5\x75\x41\x8f\x63\x32\x99\ -\xb8\xf2\x86\xfb\x38\xfb\x82\xeb\x35\xb3\xcd\xc0\x20\x1a\x48\x4d\ -\x4d\xc7\xef\xf3\xb1\x6b\xfb\x06\xb1\x0e\xb2\x8c\xd3\x56\x45\x61\ -\x9f\x89\xbf\xfa\xe7\xda\xca\xf5\x6c\x58\xf4\x22\x55\x65\x2b\x83\ -\x52\xca\xf3\x38\x1b\xb0\x35\x94\xd1\xb9\xe7\xf8\x0e\x2f\xa6\xe5\ -\xf7\xb9\xf0\xb9\x6d\x11\x8d\xf2\x6f\xac\xde\xce\xb6\x35\xef\x05\ -\x75\x4d\xea\x76\xd4\x71\xa0\x74\x05\x7e\xaf\x83\x8c\x9c\xde\xbf\ -\x2a\x61\x6c\xad\xdf\x43\xc9\xe6\xaf\xd4\x0c\xd7\x80\x52\x98\x2e\ -\x2c\x1a\xc7\x86\x03\x10\x3c\xbb\x80\x85\xc0\x45\x28\x35\x9c\x55\ -\x61\xb7\xd9\x98\x3d\xf3\x2b\x0a\x0a\x0b\x19\x70\xcc\xa0\x90\x0c\ -\xd9\x53\xb2\x9b\x97\xff\xfa\x17\xfe\xf2\xc4\x9f\xd9\xbb\x27\xb8\ -\x08\xff\x16\x12\x93\x92\xb9\xe9\xce\x67\x38\x61\xd2\xb9\x21\x8d\ -\x63\x60\x10\xad\xf4\xea\x33\x88\x45\xf3\xbf\x10\xce\x08\x70\xda\ -\xaa\xc9\xc8\xed\x4d\x5a\x46\x21\x0e\xeb\x3e\xb6\xac\x78\x93\x92\ -\x2d\x5f\x06\xa3\xed\x7e\xd8\xb8\x07\x70\x36\xef\xa7\x73\x8f\x71\ -\x1d\x32\x3b\x40\x92\xfc\x11\xdf\xf5\x03\x58\xeb\x4b\xd8\xb2\xf2\ -\xef\x48\x52\x08\x85\xf7\x64\x99\xe6\x86\x52\xaa\xca\x56\x11\x9f\ -\x98\x82\x25\xb3\x3b\x32\x32\xdb\x7e\x7a\x17\xaf\x5b\x55\x1c\xdf\ -\x34\x40\x5d\x39\xd6\x10\xe8\x78\x9f\x3a\xed\x39\x06\x25\x36\xa0\ -\x67\xb0\x03\x5c\x78\xc9\xe5\x3c\xf2\xe7\x27\x49\x56\x79\x25\xb0\ -\x71\xfd\x3a\x3e\x7c\xff\x9f\x2c\x5a\x30\x1f\x49\x0a\xdd\x7b\xce\ -\xcc\xea\xc4\x1d\x0f\xbe\x48\xaf\xbe\xb1\x5f\xd9\xd0\xc0\xe0\x48\ -\x58\x9b\xea\x79\xef\xad\x27\xd8\xbe\x65\x8d\xaa\x7e\x71\xf1\xc9\ -\x64\xe5\xf5\xa7\xa1\x7a\x9b\xe6\x62\x34\x85\x7d\x4e\x62\xe8\x84\ -\x5b\x3b\xcc\x49\x80\x2c\xcb\x51\x53\xc2\xb7\xb9\xa1\x94\xcd\xcb\ -\xdf\xd0\x3c\xdb\x20\x2d\xa3\x00\xb3\x39\x01\x5b\x93\xaa\xf8\xab\ -\x22\xe0\x58\x94\x18\x80\xb0\x60\x38\x00\xda\x50\x88\x92\x25\x30\ -\x3c\xd8\x01\xfa\xf6\x1f\xc0\x8b\xaf\xbe\x49\xdf\xfe\x03\x5a\x6d\ -\xe7\xb0\xdb\xf9\x76\xf6\x37\x7c\xf1\xc9\x7f\xd8\xb5\x73\x47\xb0\ -\xd3\xfd\x86\x7e\xc7\x8c\xe0\xe6\xbb\xfe\x42\x56\x4e\x9e\x66\x63\ -\x1a\x18\x44\x13\xdb\xb6\xac\xe1\xbd\x37\x1f\xa7\xd9\x2a\x2c\xc4\ -\x12\x36\xba\xf4\x1c\xcf\xf0\x13\xef\xc2\xd4\xce\x63\x02\x02\x7e\ -\x37\x3e\xaf\x23\x62\x41\x7e\x87\xd2\x54\x5b\xcc\xd6\x55\xff\x88\ -\xa6\xa2\x42\x93\x81\xd6\x23\x10\x35\xc6\x70\x00\xb4\x23\x03\xf8\ -\x0f\x70\x5e\xb0\x03\x24\xa7\xa4\xf0\xc8\x9f\x9f\xe4\xc2\x4b\x2e\ -\xff\xd5\xbf\xbb\x5c\x4e\x96\x2e\x5a\xc8\x77\x73\x67\xb3\x62\xe9\ -\x62\x3c\x1e\xed\x8e\xcc\x4c\x26\x13\x93\xa7\x5c\xcd\xc5\x57\xdd\ -\x1e\xd5\xb5\x0b\x0c\x0c\x82\x45\x0a\x04\x98\xf9\xc5\x74\xe6\xcd\ -\x9c\x11\x52\x91\x20\xbd\xc9\xeb\x3a\x8a\x11\x27\xdf\x2b\x9c\x76\ -\x18\x4b\x48\x01\x1f\x3e\xaf\x3d\x6a\xa4\x7c\x1b\xaa\x8a\x28\x5a\ -\xfd\x2e\x52\x20\x84\x63\x7f\x6d\x99\x05\x5c\x10\xee\x49\x0d\x07\ -\x40\x5b\xcc\xc0\xd3\xc0\x23\x84\xf0\xb3\x9d\x72\xde\x85\x5c\xf7\ -\xfb\x1b\x59\xb7\xe6\x27\x56\x2c\x5f\xc2\xfa\x75\x6b\xf1\xb8\xb5\ -\xf7\x52\x33\xb3\x72\xb9\xe1\xe6\xff\x63\xd8\x48\x43\xf7\xdc\xa0\ -\x7d\xd2\x50\x57\xc5\x3b\xaf\xff\x99\x92\x5d\xaa\x72\xb0\x23\x46\ -\x56\xde\x00\x46\x4e\x7a\xb0\xdd\xe8\x04\x48\x01\x1f\x7e\x9f\x33\ -\x9a\x16\x5a\x0e\x94\xae\xa4\x78\xc3\x27\xd1\xe4\x0c\x7a\x80\xa1\ -\x40\x68\x01\x5c\x41\x60\x38\x00\xfa\x70\x19\xf0\x3e\x90\x16\x69\ -\x43\x8e\xc6\xa8\x71\xa7\x70\xdd\x8d\x0f\x93\x6e\xc9\x8a\xb4\x29\ -\x06\x06\xba\xb0\xe9\xe7\x65\xbc\xff\xf7\xa7\x70\xd8\xc5\x8a\x00\ -\x45\x0b\x29\xe9\xf9\x8c\x3e\xf5\x61\xd2\x32\x23\xa3\x1c\xaa\x05\ -\xd1\xb8\xf0\x83\x4c\xe9\xf6\xb9\x94\x6d\x9f\x1b\x69\x43\x0e\xe7\ -\xaf\xc0\xc3\x91\x98\xd8\x70\x00\xf4\x63\x24\xf0\x0d\x10\x55\x75\ -\x45\xb3\x72\xf2\xb8\xe2\xfa\x7b\x19\x33\xde\xa8\x77\x6e\xd0\x3e\ -\x71\xbb\x9c\x7c\xfe\x9f\xbf\xb1\xec\xc7\x6f\x22\x6d\xca\x52\x14\ -\xf9\x70\xd5\x8a\x3f\x09\x49\x16\xc6\x9e\xf1\x18\x96\xec\xa8\x7a\ -\x7c\xb4\x49\x20\xe0\x25\xe0\x73\x45\xd9\xc2\x0f\x20\xb3\x73\xfd\ -\x47\x54\x95\xae\x0a\x76\x80\xb5\xc0\x40\x94\xab\x5e\x2d\xd9\x8d\ -\xb2\x56\x44\xa4\xe0\x81\xe1\x00\xe8\x4b\x3e\xf0\x5f\x60\x62\x5b\ -\x0d\xf5\xc6\x1c\x17\xc7\x29\x93\x2f\xe5\xc2\xcb\x6f\x21\x39\x25\ -\xf8\x82\x16\x06\x06\xd1\xcc\x8e\xa2\x9f\xf9\xf7\xf4\x67\xa8\xab\ -\xd9\x1f\x49\x33\x76\x03\xf7\xa3\xdc\xeb\x9e\x05\x7c\x4d\x10\x4e\ -\x40\x5a\x46\x21\x27\x9c\xff\x12\x26\x53\xb4\xc7\xe6\xc8\x04\xfc\ -\x1e\xfc\x3e\x57\xd4\xdc\xf1\x1f\x4e\x55\xd9\x4f\xec\xfc\x59\x7d\ -\xf9\xf3\x83\xcc\x45\xc9\xcd\xcf\x06\x9e\x05\x6e\x20\x08\x11\xb8\ -\x23\xe0\x03\x26\x00\xeb\x34\x18\x2b\x28\x0c\x07\x40\x7f\x12\x81\ -\x37\x80\x9b\x22\x65\xc0\xf0\x51\x27\x72\xc9\xd5\x77\x50\xd8\xad\ -\x77\xa4\x4c\x30\x30\xd0\x15\x8f\xdb\xc5\x97\x1f\xbf\xc9\xe2\x1f\ -\xbe\x44\x8e\x5c\x84\xb9\x0d\xf8\x0b\xf0\x1a\xca\xbd\x6e\x0b\x67\ -\xa2\x9c\x06\xaa\x76\x02\x46\x4e\x7a\x80\xfc\xee\xaa\x0b\x91\x86\ -\x05\x59\x0a\x10\xf0\xbb\xf1\xfb\xdd\x51\x11\xd5\xdf\x1a\xeb\x16\ -\xfc\x05\x47\x73\x50\x4e\x61\xcb\xe2\x7f\xe8\xfb\x39\x16\x78\x9d\ -\x20\xea\xc2\x1c\x82\x1b\xb8\x0a\xe5\x73\x11\x31\xe2\x23\x39\x79\ -\x07\xc1\x0b\xdc\x0c\xac\x00\xde\x02\x8e\xac\x17\xa9\x03\x7d\xfa\ -\x0f\xe5\xa2\x2b\x6f\xe5\x98\x21\x63\xc2\x35\xa5\x81\x41\xd8\xd9\ -\xb2\x61\x25\x1f\xbd\xf7\x57\xea\xeb\xaa\x42\x1d\x6a\x3f\x8a\xb8\ -\xd7\x35\xa8\xdb\x1c\x49\x28\xa5\x5b\xff\x04\x1c\x38\xc2\xff\x7f\ -\x8f\xa2\x1a\xaa\xda\x09\x68\xaa\xdd\x15\x55\x0e\x80\x2c\x4b\x04\ -\xfc\x1e\x02\x7e\x4f\xc4\x8a\xf5\xa8\x25\xe0\x73\x6b\xb9\xf8\x83\ -\x72\x1d\x30\x01\xb8\x0e\x78\x1e\x28\x50\x39\xee\x3e\xe0\x5a\x60\ -\x71\x30\x46\x69\x89\xe1\x00\x84\x8f\x0f\x81\xd5\xc0\x67\xc0\x08\ -\x3d\x27\x1a\x30\x68\x24\x53\x2e\x9e\xca\xe0\x61\xaa\xab\x17\x1b\ -\x18\xc4\x0c\xd6\xa6\x7a\x3e\xfb\xf7\xab\xac\x5d\xa5\x49\xea\xf4\ -\x5c\xe0\x77\x28\x05\x58\xde\x03\x9e\xa2\xed\xab\x3b\xf9\x60\xbf\ -\x27\x51\x16\x85\xd6\x08\xca\x09\x88\x86\xbb\x74\x59\x96\x91\x02\ -\xca\xa2\x1f\x0d\xf6\xa8\x25\x48\x85\xbf\xa3\x2d\xfe\x2d\xc8\x28\ -\xcf\xf4\xaf\x81\xfb\x80\x5b\x81\xd6\xab\x02\x29\x27\x44\xef\xa0\ -\x7c\x5e\x82\xab\xcb\xae\x31\xc6\x15\x40\xf8\x49\x06\x5e\x06\x6e\ -\xd3\x72\xd0\xb8\xb8\x78\x46\x8d\x3b\x85\xd3\xce\xba\x82\x92\xba\ -\x06\x59\x00\x00\x10\xf0\x49\x44\x41\x54\xbe\x03\x86\x69\x39\xb4\ -\x81\x41\x54\x21\xcb\x32\xcb\x17\xcd\xe2\xbf\x1f\xbd\x81\xd3\x11\ -\xf2\x73\xd4\x8b\xb2\x73\x7f\x05\xe5\xa1\x7e\x28\x23\x80\xf3\x51\ -\x8e\x7c\xfb\xa3\x5c\xe7\xb9\x50\xee\xf8\x57\xa2\x2c\xe6\xbb\x54\ -\xce\xf7\x09\x4a\xa5\x37\x21\x06\x8f\xfb\x23\xdd\x07\x9c\xae\x72\ -\x8a\xd0\x91\x24\x3f\x52\xc0\x87\x14\xf0\xc6\xe4\xa2\xff\x6b\x64\ -\x56\x7e\xfb\xb0\x52\x65\x50\xb4\x83\xa2\xf0\xaa\xe6\xbd\x4d\x42\ -\x71\xf0\x26\xa2\x04\x7e\xe6\x1e\xfc\xf7\x3a\x60\x0b\x4a\x40\xe8\ -\x97\x80\x43\xc5\x98\xba\x63\x38\x00\x91\xe3\x62\x94\x9d\x46\xc8\ -\x79\x78\x29\xa9\xe9\xdc\xf7\xe8\x1b\x86\x84\xaf\x41\xbb\xa7\xa2\ -\xac\x98\x4f\xde\x7f\x89\xe2\x1d\x1b\xb5\x18\x6e\x0f\xca\x62\xdc\ -\xd6\xee\x5d\x2b\x46\x00\x3f\x23\x58\x83\x25\x2e\x3e\x89\x93\x2f\ -\x7e\x8b\x84\x24\x8b\xbe\x56\xa1\xdc\xe7\x4b\x92\x0f\x29\xe0\x23\ -\x10\xf0\x45\xb4\x30\x8f\x1e\xec\xd9\xfa\x35\x15\xbb\x16\xa8\xe9\ -\xf2\x39\x70\x85\x4e\xe6\x44\x0d\xd1\x1e\x5e\xda\x9e\xd9\x8e\x72\ -\x1d\x30\x1e\xe8\x16\xca\x40\x7e\x9f\x97\x35\x2b\xe7\x03\x26\x7a\ -\xf7\x1d\x6c\x28\xfa\x19\xb4\x3b\xec\x36\x2b\x5f\xfc\xe7\x75\x66\ -\xbc\xfb\x1c\xf5\xb5\x47\xba\x66\x57\xcd\x67\xc0\xb9\xc0\x5e\x2d\ -\x06\x13\xe4\x53\xa0\x8f\x68\xe3\xbe\xc3\x2e\xa1\x53\xd7\x63\x35\ -\x37\x42\x96\x03\x07\x77\xf8\x4a\xe4\xbe\xcf\x6b\x3f\x98\xba\xe7\ -\x3d\x18\xc5\x1f\xdd\x01\x7d\xc1\x60\xc9\xea\x41\x55\xe9\x4a\x35\ -\xa7\x19\x43\x50\xee\xe8\xcb\x74\x33\x2a\x0a\x30\x4e\x00\x22\x4f\ -\x02\xca\x7d\xe3\x83\x68\xe0\x90\xe5\xe5\x77\xe5\xb2\xeb\xee\x66\ -\xe4\xd8\x93\x43\x36\xcc\xc0\x20\xd2\x04\x02\x7e\x96\x2c\xf8\x9a\ -\x59\x5f\xbc\xa3\x95\xa0\x4f\x03\x70\x17\xf0\x91\x16\x83\xa9\xe0\ -\x32\x94\x5d\xa5\x10\x29\x69\x79\x9c\x70\xc1\x2b\x41\xca\x02\xcb\ -\xc8\xb2\x84\x2c\x49\xca\x57\x39\x80\x2c\x05\x90\x65\x09\x29\xe0\ -\xa7\x3d\x2e\xf0\x22\xec\xdf\xb3\x84\xe2\x8d\xc2\x6f\x01\xc0\x46\ -\x60\x0c\x10\x9d\xb9\x8d\x1a\x60\x38\x00\xd1\xc3\x38\x14\xf5\xc0\ -\xd0\x6a\x03\x1f\x64\xf0\xb0\xe3\xb8\xe2\x86\xfb\x8c\xd4\x3f\x83\ -\x98\x65\xfd\x9a\x45\x7c\xf5\xc9\xdb\x54\x1f\x50\x55\x51\xad\x35\ -\xbe\x45\x49\xc7\x0d\xb7\x48\x40\x0a\xca\x89\x9f\x70\xc5\xd0\x21\ -\xc7\xdf\x4c\x7e\xb7\x31\x70\xb0\x4c\xb0\xa9\xe5\x51\x6d\x32\xfd\ -\x92\x72\x27\xb7\x2c\xe4\xb2\x7c\x50\xd6\xf6\xe0\xd7\x28\x4f\xc9\ -\x8b\x14\xb2\x2c\xf1\xf3\x8f\xcf\xa9\xcd\x08\xb8\x05\x98\xae\x93\ -\x49\x11\xc7\x70\x00\xa2\x8b\x64\x94\x08\xd1\xfb\xd1\xe0\x34\xc0\ -\x1c\x17\xc7\x84\x93\xa6\x70\xde\xa5\x37\x92\x93\xdb\x56\x80\xaa\ -\x81\x41\x74\x50\xb2\x6b\x33\x5f\xfc\xe7\x0d\x2d\xf5\xfb\xad\x28\ -\x91\xda\xff\xd2\x6a\x40\x95\x3c\x86\xf2\x7b\x2d\x44\x56\x5e\x7f\ -\x46\x4c\xbc\x27\xe8\xc9\x5c\xf6\x1a\x1a\xaa\xb7\xe3\x75\x5b\x49\ -\x4a\xcd\x26\x27\x7f\x30\xc9\x69\xb9\x6d\x77\x8c\x42\x64\xc9\x4f\ -\x63\xed\x2e\x6c\x8d\x65\x20\xcb\xa4\x67\x75\x23\xa7\xf3\x60\x4c\ -\xe6\xe0\x12\xd8\x9a\x6a\x77\xb2\x69\xd9\xeb\x6a\xba\xd4\x02\x03\ -\x80\xa6\xa0\x26\x8c\x72\x0c\x07\x20\x3a\xd1\xf4\x34\x20\x21\x21\ -\x91\x49\x93\x2f\xe5\x9c\x0b\x6f\x30\xb4\xff\x0d\xa2\x96\x8a\xb2\ -\x62\x66\x7d\xf1\x0e\x9b\x7e\x5e\xa6\xa5\x98\xcf\x0f\xc0\x8d\x80\ -\x66\xc7\x08\x2a\xe9\x0e\xec\x00\x84\xe4\x37\x4d\x26\x33\xa3\x4e\ -\x7d\x98\xf4\x20\xea\x00\x48\x01\x1f\xc5\x9b\x3e\xa7\xaa\x6c\xd5\ -\x61\xa7\x00\x26\x32\x72\x7a\x91\xdf\x7d\x0c\x79\x5d\x47\x45\x7d\ -\xa1\x21\x59\x96\xb0\xd6\x15\x53\x5d\xb1\x8e\xba\x7d\x1b\xf1\xfb\ -\x9c\xbf\xfa\xff\xe4\xd4\x5c\x8e\x19\x73\x3d\x99\x9d\xfa\x05\x35\ -\x7e\xd1\x4f\xef\x52\xb7\x5f\x55\x10\xe9\xdf\x80\xe0\x3d\xb2\x28\ -\xc6\x70\x00\xa2\x17\x4d\x4f\x03\x00\x52\x52\xd2\x98\x7c\xde\x35\ -\x9c\x71\xce\xd5\x24\x25\xa7\x68\x31\xa4\x81\x41\xc8\xec\xaf\xdc\ -\xc3\xac\x2f\xde\x65\xfd\x9a\x45\x5a\x2e\xfc\x0d\xc0\x34\x94\x5d\ -\x7f\x24\xcf\xc4\xdf\x00\xee\x10\x6d\x5c\xd8\x7b\x22\xfd\x47\x0a\ -\x67\x09\xfe\x8a\xa2\x9f\xde\xa1\x6e\xff\xa6\xd6\x1b\x99\x4c\x64\ -\x64\xf7\x24\xb7\xcb\x30\x72\x0a\x86\x1e\x74\x34\x22\xbf\x0c\xf8\ -\x7d\x4e\x1a\xab\xb7\x53\x5f\xb5\x95\x86\xaa\x22\x7c\xde\xd6\xb3\ -\xe5\xcc\x71\x09\x1c\x7b\xd2\xbd\x58\xb2\x85\x6f\x55\x7e\xc1\xed\ -\xa8\x67\xed\x82\xa7\xd5\x04\x04\xba\x81\x5e\x40\xb5\xea\xc9\xa2\ -\x9c\xc8\xbf\xf3\x06\x6d\x31\x0e\xe5\x21\xa6\x59\x8e\x9f\x25\x23\ -\x9b\x33\xa6\x5c\xc5\xa4\xc9\x97\x92\x92\x12\xb5\x05\x0b\x0d\xda\ -\x39\x55\xfb\x4b\x99\xf5\xdf\x7f\xb2\x6e\xd5\x8f\x5a\x96\x66\x6d\ -\x11\x68\x79\x10\xe5\xf8\x36\x92\x64\x03\x15\x08\x56\x05\x8d\x4f\ -\x48\xe5\xb8\x33\x1f\x27\x21\x51\xbd\x58\x68\x4d\xc5\x5a\xb6\xaf\ -\xfd\x40\x75\xbf\x84\xc4\x34\x32\x73\xfb\x92\x99\xd7\x9f\x8c\x9c\ -\xde\xa4\x67\x76\xc5\x1c\x54\xe0\xa1\x3a\xdc\x8e\x3a\x6c\x8d\xe5\ -\x58\xeb\x4b\xb0\xd6\x15\x63\x6f\xde\xaf\x3a\x76\x21\x2d\xa3\x80\ -\xd1\xa7\xfd\x09\x93\x49\xbd\x2c\xff\xde\x6d\xb3\x29\xdf\xf1\x9d\ -\x9a\x2e\x4f\x01\x8f\xab\x9e\x28\xca\x31\x1c\x80\xd8\x20\x01\xe5\ -\x08\xea\x31\x34\x94\x12\x4e\x4d\xb3\x70\xda\x59\x97\x73\xea\x59\ -\x57\x90\x6e\xc9\xd4\x6a\x58\x03\x83\x56\x29\xdd\xb3\x9d\x79\x33\ -\xff\xcd\x86\x35\x4b\xb4\xae\xc9\xbe\x03\x45\x91\x6d\xb1\x96\x83\ -\x86\xc0\xf5\xc0\xbf\x45\x1b\xf7\x1b\x71\x19\x5d\xfb\x4e\x52\x3d\ -\x49\xc0\xef\x65\xed\x0f\x4f\xe2\x71\x85\x7e\x4d\x6d\x32\x99\x49\ -\xb1\x74\xc6\x92\xd5\x9d\xdc\x2e\x43\xe9\xd4\x75\x64\x50\x0b\xec\ -\xe1\x38\x9a\x0f\x50\x5d\xbe\x06\x5b\xe3\x5e\xec\x4d\x95\xf8\x7d\ -\xae\x90\xc7\x04\xe8\x37\xe2\x72\xba\xf6\x55\x9f\xf1\x14\xf0\x7b\ -\x58\xfb\xc3\x53\x6a\x7e\x66\x3b\x51\xc4\x81\xda\x15\x86\x03\x10\ -\x5b\x74\x05\x5e\x42\x85\x92\x98\x08\x49\xc9\x29\x4c\x3a\xe3\x12\ -\xce\x98\x72\x35\x99\x59\xb1\x19\x2c\x64\x10\xfd\x6c\xdf\xb2\x86\ -\x79\xb3\x66\xb0\x7d\xcb\x1a\xad\x87\x76\xa1\x54\x69\x7b\x01\x45\ -\xd9\x2f\x5a\xf8\x3b\x4a\x14\x79\x9b\xa4\x66\x14\x30\x26\x7c\xbb\ -\x59\x61\xd2\xb3\xba\x33\xf4\xf8\x5b\x48\x4a\x09\x3e\x76\xa8\x74\ -\xfb\xb7\x94\xed\x98\xa7\x4b\x76\x42\x42\x62\x1a\xc7\x4d\x7e\x9c\ -\xf8\x44\xf5\x27\x99\x2a\x4f\x4d\x64\xa0\x13\xca\xd5\x52\xbb\xc1\ -\x50\x8c\x89\x2d\x6c\x28\x72\x92\x4b\x51\xf2\x53\xf3\xb5\x18\x34\ -\xe0\xf7\x53\xb2\x6b\x33\x8b\xbe\xff\x82\xfa\xba\x2a\x3a\xe5\x17\ -\x92\x91\x99\xa3\xc5\xd0\x06\x1d\x1c\x29\x10\x60\xfd\xda\xc5\xbc\ -\xff\xf6\x93\xcc\x9b\xf5\x21\x75\x35\xfb\xb4\x9e\xe2\x2b\xe0\x22\ -\x60\x26\xd1\x97\xaf\xfd\x10\x82\xa9\x7f\x83\xc6\xfe\x9e\x94\xf4\ -\x3c\xd5\x13\xb8\x1d\xf5\xec\x58\xf7\x81\xd6\x27\x29\xbf\xe0\x75\ -\x37\xd3\x58\xb3\x9d\x2e\x3d\x8f\xc7\x64\x56\xbf\x5c\x54\xee\x5e\ -\xc8\xde\xa2\x59\x3a\x58\xa6\xa0\xc8\x15\xfb\xc8\xe9\x32\x44\x75\ -\xdf\xb4\xcc\x42\x1a\xab\xb7\x8b\x9e\x02\x98\x50\xd2\x48\x23\x15\ -\x4c\xaa\x0b\x86\x03\x10\x9b\x94\x02\xef\xa2\xa4\xa6\x1c\x8f\xa2\ -\x43\x1d\x32\x92\x14\xa0\x7c\xef\x4e\x96\x2c\xf8\x8a\xe2\x9d\x9b\ -\x48\x4b\xcf\x20\xbf\x4b\x37\x4c\x26\xe3\xa0\xc8\x40\x1d\xb6\xe6\ -\x46\x7e\x9c\xf7\x39\xef\xbd\xf5\x38\xcb\x16\xce\xa4\xa9\xb1\x4e\ -\xeb\x29\xd6\xa3\x94\x53\x7d\x01\x68\xd4\x7a\x70\x8d\xb8\x15\xe5\ -\xd4\xae\x55\xd2\x32\xbb\xd2\x77\xd8\x45\x41\x4d\xb0\x73\xfd\x47\ -\xc1\x56\xba\x13\xc6\xe7\xb1\x93\x98\x9c\x41\x46\x4e\x2f\x55\xfd\ -\x02\x3e\x37\x5b\x57\xfd\x43\xf7\xaa\x81\x76\x6b\x05\x79\x5d\x47\ -\x92\x90\xa4\xf6\x76\xd4\x44\x5c\x5c\xa2\x9a\x8c\x80\x8f\x51\xe4\ -\xa3\xdb\x0d\x86\x03\x10\xbb\x48\xc0\x2a\x94\x80\xa7\x7c\x60\x18\ -\x1a\x5e\xe9\xd4\xd5\xec\x63\xcd\x8a\xf9\xac\x5e\x31\x1f\x93\xc9\ -\x44\x41\xd7\xde\xc4\x27\x24\x68\x35\xbc\x41\x3b\xa5\x6c\xcf\x0e\ -\xbe\xfe\xf4\x6d\xfe\x3d\xfd\x2f\x14\x6d\xfe\x09\x97\x4b\xf3\xda\ -\x27\xfb\x81\xbb\x81\xdb\x51\x1c\xe1\x68\xe6\x26\xa0\xb0\xad\x46\ -\x01\xbf\x9b\x8c\x9c\x5e\xa4\xa4\x75\x52\x35\x78\x53\xed\x4e\xf6\ -\x16\xcd\x0c\xd6\x36\x55\xc8\xb2\x9f\xce\x3d\xc6\xa9\xea\xd3\x50\ -\x5d\x44\x75\xf9\x6a\x9d\x2c\x3a\x04\x59\xc6\xed\xa8\xa7\x73\x0f\ -\x75\x65\x93\xfd\x3e\x17\x65\x3b\xe6\xe1\xb2\xd7\x88\x76\x99\x81\ -\xe1\x00\x18\x44\x19\x36\x94\x92\x94\xdf\xa0\x1c\x37\xf6\xd7\x72\ -\x70\x87\xbd\x99\xad\x1b\x57\xb2\xf0\xfb\xcf\xa9\xad\xae\xc4\x92\ -\x91\x6d\x88\x0a\x19\xfc\x0a\xaf\xc7\xcd\x9a\x95\xf3\xf9\xe8\xbd\ -\xbf\x32\xf3\xf3\xe9\x54\x94\x15\x23\x49\x9a\x9f\xc6\xbb\x80\xbf\ -\xa2\xc4\xbf\xac\x21\x36\xf4\x6c\x4f\x41\x71\xcc\x5b\x45\x96\x25\ -\xaa\xcb\xd7\xe0\xb0\xee\xc3\x92\xdd\x93\x84\xc4\xb6\x25\x03\x64\ -\x59\xa2\x68\xd5\x3b\xf8\x3c\xe1\xa9\x2a\x6b\x32\xc5\xa9\x0e\x50\ -\x6c\xac\xd9\x41\x43\xf5\x36\x7d\x0c\x3a\x0c\x97\xa3\x96\x8c\xec\ -\x5e\xa4\xa4\xb7\x7d\x2b\x2a\xcb\x12\x07\x4a\x97\x53\xf4\xd3\x3b\ -\xd8\x9b\x2a\xd5\x4c\xf3\x38\xed\x4c\x10\x28\x38\x39\x25\x83\x68\ -\x64\x33\x30\x05\x38\x09\x78\x1e\xe5\x6a\x40\x33\x3c\x6e\x17\xcb\ -\x17\xcd\x66\xf9\xa2\xd9\x14\x76\xeb\xc3\xc4\x53\x2f\x60\xfc\xc4\ -\xb3\x8d\xec\x81\x0e\x4c\xc9\xae\xcd\xac\x58\x3c\x87\x75\xab\x16\ -\xe8\xb1\xd3\x6f\xc1\x8b\x72\xdd\xf5\x2c\xe1\x97\xf0\x0d\x95\x2d\ -\x28\xd7\x14\x42\xd4\xed\xdf\x44\x43\x55\x11\xdd\xfa\x9f\x4a\x8f\ -\x81\x67\x12\x17\x9f\x7c\xd4\xb6\x07\xf6\x2e\xd7\xfd\xe8\xff\x50\ -\x64\x59\xbd\x43\xa7\x57\x5c\xc2\xd1\x28\xd9\xf2\x25\xd9\xf9\xc7\ -\xb4\x1a\xab\xd0\x58\xb3\x93\x92\xcd\xff\x0d\xe6\x67\x67\xa3\x1d\ -\x16\x06\x32\x2e\x77\xdb\x2f\x17\x02\x7f\x41\x43\xfd\x80\xc3\x89\ -\x4f\x48\xe4\xd8\x31\x27\x31\xee\x84\x33\x19\x3a\x62\x3c\xf1\x09\ -\xfa\xe7\x0f\x1b\x44\x16\x6b\x53\x1d\xab\x96\xce\x63\xc5\xe2\x39\ -\x54\xed\x2f\xd5\x73\x2a\x3f\x4a\x0a\xdd\xd3\xc4\xee\x83\x77\x10\ -\x10\xd4\x16\x38\x31\x39\x93\xde\x43\xce\xa7\x4b\x8f\x71\xbf\xd4\ -\x03\x68\xc1\xef\x75\xb0\x66\xfe\x93\x6d\x8a\xe5\x68\x49\x72\x5a\ -\x2e\xe3\xce\x7c\x4a\x55\x9f\xca\xdd\x0b\x29\xd9\xfc\xa5\x4e\x16\ -\x1d\x99\x7e\xc3\x2f\xa5\x6b\xbf\x53\x7e\xf3\xef\x2e\x7b\x2d\x7b\ -\xb6\x7e\xdd\xb6\x50\xd2\xd1\x99\x81\x92\xd6\xd9\xae\x30\x1c\x80\ -\xf6\x4d\x1c\xca\x87\xf6\x09\xa0\x87\x9e\x13\xa5\xa6\x59\x18\x75\ -\xdc\x29\x8c\x3b\xf1\x4c\x06\x0c\x1a\x85\xd9\x1c\x7a\xee\xb0\x41\ -\x74\xe0\x74\xd8\xd8\xb8\x6e\x09\x6b\x57\xfd\xc8\xb6\x2d\xab\x91\ -\x02\xba\x06\xdb\x4b\xc0\x27\x28\x2a\x98\xc5\x7a\x4e\x14\x26\x56\ -\xa1\x94\xfc\x0e\x0a\x4b\x76\x4f\xfa\x0d\xbf\x94\x8c\xdc\xff\x55\ -\x11\xde\xbd\xe9\x73\xf6\x95\x2c\x51\x33\xcc\x37\x28\xd7\x84\x67\ -\x00\xa7\x03\x5d\xd4\xda\x11\x66\x07\xc0\x0f\xac\x06\x16\xa0\x94\ -\x6b\xfe\x17\x20\xf4\x40\x51\xc4\x94\x9e\x20\xe1\x60\x5a\x60\xc0\ -\xe7\xa6\x6c\xe7\x3c\xf6\xed\x5e\x8c\x14\x5a\x30\xe2\x29\x44\x8f\ -\xbe\x84\x66\x18\x0e\x40\xc7\x20\x09\xf8\x1d\x8a\x3a\x5a\x5f\xbd\ -\x27\xcb\xca\xee\xc4\x98\xe3\x4f\x67\xe4\xd8\x49\xf4\x1b\x38\xc2\ -\x70\x06\x62\x10\xa7\xc3\xc6\x86\xb5\x4b\x58\xf7\xd3\x8f\xec\xd8\ -\xba\x16\xbf\x5f\x58\x36\x35\x58\xfc\x28\xe5\x72\x9f\x05\x8a\xf4\ -\x9e\x2c\x8c\x4c\x02\x16\x12\xd2\xb3\xd6\x44\x7e\xf7\x31\xf4\x19\ -\x72\x3e\x1e\x77\x33\x1b\x97\xbc\xac\xe6\x78\xdd\x85\x72\x12\xd1\ -\x72\x8a\x62\x42\x89\x4b\x38\xe3\xe0\xeb\x64\x14\xd9\xf1\x56\x09\ -\x83\x03\xb0\x0b\xf8\x1e\x65\xd1\x5f\x0c\x1c\x5a\xfb\xf9\x03\xe0\ -\x06\xd1\x81\x3a\xf7\x1c\xcf\xc0\x91\x57\x51\x55\xbe\x86\xd2\xa2\ -\x59\x78\x43\x8f\x93\xf8\x0e\x38\x3b\xd4\x41\xa2\x11\xc3\x01\xe8\ -\x58\xc4\x01\x97\xa3\xe4\x27\x8f\x08\xc7\x84\xe9\x96\x2c\x86\x8f\ -\x3a\x91\x63\xc7\x4c\x64\xc8\xf0\xf1\x24\x26\xb5\xf9\xac\x31\x88\ -\x10\x76\x5b\x13\x1b\xd7\x2d\xe3\xe7\xd5\x0b\xd9\xbe\x65\x0d\x81\ -\x80\xbe\xe9\x5b\x07\x71\xa3\x14\xbe\x7a\x89\x76\x16\x61\x7d\x08\ -\xef\xa3\x38\xe0\x91\xa0\x2d\x09\xdb\xef\x80\x33\xdb\x1a\x24\x0c\ -\x0e\xc0\x00\x8e\x7e\xe2\x53\x88\xa2\xc4\xa7\x99\x0a\xaa\x0a\x1c\ -\x28\xcf\xca\x92\x08\xcc\xad\x3b\x46\x10\x60\xc7\x22\x80\x72\xbc\ -\xfa\x29\x8a\x47\xfb\x08\x70\xa2\x9e\x13\xda\x6d\x4d\xac\x5c\x32\ -\x87\x95\x4b\xe6\x90\x90\x98\xc4\xe0\x61\xc7\x31\x6c\xe4\x09\x0c\ -\x1e\x7e\x1c\x79\xf9\xea\x2b\x9e\x19\x68\x87\x24\x49\x94\xed\xd9\ -\xce\x96\x8d\x2b\xd9\xba\x71\x15\xa5\x25\xdb\xc3\x19\xb8\x65\x05\ -\xde\x46\xa9\xb4\xd6\xee\x8a\xac\x1c\xc6\xad\x28\xc5\x64\x26\x85\ -\x79\xde\x0a\x94\xcc\x89\x58\x67\x3f\xf0\x1c\x4a\x4c\x53\x38\xf1\ -\x02\x17\xd3\x4e\x17\x7f\x30\x1c\x80\x8e\x8a\x0c\xcc\x3d\xf8\x3a\ -\x11\x78\x18\x38\x07\x9d\x4f\x84\x7c\x5e\x0f\x9b\x7e\x5e\xc6\xa6\ -\x9f\x97\x01\x90\xd7\xb9\x1b\x83\x87\x1f\xc7\xe0\x61\xc7\x71\xcc\ -\x90\x31\xa4\xa6\x59\xf4\x9c\xde\x00\x68\xb6\x36\x50\xb4\xe9\x27\ -\xb6\x6e\x5a\xc5\xb6\xcd\xab\xb1\xdb\xac\xe1\x36\xa1\x02\x78\x13\ -\xf8\x07\xbf\x3e\xe6\x6d\xcf\xb8\x81\x0b\x80\xcf\x80\xb3\xc2\x38\ -\xef\x34\xc0\xd9\x66\xab\xd8\xe0\x15\x94\xb2\xce\xbd\xc3\x34\x9f\ -\x15\xb8\x0e\x98\x1f\xa6\xf9\x22\x82\xe1\x00\x18\x2c\x07\xce\x05\ -\x86\xa0\xec\x54\xae\x03\xc2\x52\x30\xbc\xb6\xba\x92\x25\x3f\x54\ -\xb2\xe4\x87\xaf\x30\x9b\xcd\xf4\xec\x33\x88\x7e\x03\x47\xd0\xff\ -\x98\x11\xf4\x1d\x30\xdc\x90\x23\xd6\x80\x86\xfa\x6a\x76\xef\xd8\ -\x44\x49\xf1\x16\x8a\x77\x6c\xa4\xb2\x6c\x77\xd8\xd3\xb3\x0e\xb2\ -\x08\x78\x0b\x45\xb2\x37\x2c\x77\x0b\x51\x46\x33\x8a\x93\x7d\x37\ -\x4a\x9c\x83\xde\xf5\xb8\x97\xa1\x38\x1c\xed\x05\x37\x8a\x43\xf3\ -\x45\x18\xe6\x5a\x86\x12\x3c\x5d\x1a\x86\xb9\x22\x8a\x11\x03\x60\ -\x70\x38\x16\xe0\x1a\x14\x67\x60\x78\x24\x0d\xc9\xef\xd2\x9d\x7e\ -\x03\x87\xd3\x6f\xc0\x70\x7a\xf5\x1d\x4c\x61\xf7\x3e\xc4\xc5\x19\ -\x3e\xeb\xd1\x90\x02\x01\x2a\xca\x8a\xd9\xbd\x6b\x13\x25\x3b\xb7\ -\xb0\x7b\xe7\x26\x1a\x1b\x84\x55\xce\xf4\xc0\x81\x92\x3e\xf5\x16\ -\xb0\x35\x92\x86\x44\x19\x3d\x50\x24\x8c\x2f\x47\x9f\x67\x70\x00\ -\x18\x0b\x6c\x10\x68\x1b\x0b\x31\x00\x87\xb2\x08\xfd\xae\x52\x2a\ -\x51\x4e\x43\x3f\x26\x36\x84\xa6\x42\xc6\x78\x9a\x1a\x1c\x8e\x0d\ -\xe5\x78\xf6\x1f\x28\xd7\x03\xb7\x01\x97\x00\x61\x4f\xf2\xaf\xa9\ -\xaa\xa0\xa6\xaa\x82\x95\x4b\xbe\x05\x20\x3e\x3e\x81\xae\x3d\xfa\ -\xd2\xa3\xf7\x31\xf4\xe8\x35\x80\x1e\xbd\x06\xd2\xad\x47\xbf\x0e\ -\x19\x58\xe8\x74\xd8\xd8\x5f\xb1\x87\x7d\x15\x25\x54\x96\xef\x66\ -\x5f\x45\x09\xe5\x7b\x77\xe2\xf1\x68\x53\x66\x35\x44\x8a\x80\x7f\ -\xa2\x04\xbf\x85\xfd\x8e\x21\x06\x28\x47\x51\x34\x7c\x0b\x78\x0d\ -\x18\xa5\xf1\xf8\xcf\x21\xb6\xf8\xc7\x22\x7f\x40\xf9\xde\xb4\x3c\ -\xa5\x74\xa2\x04\xa1\xbe\x80\xe2\xb4\x76\x18\x0c\x07\xc0\xa0\x35\ -\x96\x1f\x7c\xe5\xa3\xfc\xe2\x4d\x05\xfa\x45\xca\x18\xbf\xdf\x47\ -\xd9\x9e\x1d\x94\xed\xd9\xf1\xcb\xbf\x99\x4c\x26\x72\x3a\x75\xa1\ -\x4b\x61\x4f\xba\x14\xf6\xa4\xa0\xb0\x17\x9d\x0f\xfe\x39\x2b\x5b\ -\x9d\xb6\x7a\x34\x62\x6b\x6e\xa4\xa1\xae\x9a\xfd\xfb\xf6\xb2\xbf\ -\xa2\x84\xca\xf2\x12\xf6\x57\x94\xd0\x50\x1f\x75\x71\x73\x8d\x28\ -\xc1\xa5\xef\x03\x6b\x23\x6c\x4b\xac\xb0\x0c\x65\xa7\x3e\x15\x78\ -\x06\xd0\x42\x63\x7b\x25\x4a\xe4\x7f\x7b\x65\x0f\x4a\x89\xe5\x8f\ -\x08\xfd\xf4\x44\x46\xf9\xcc\x3e\x84\x12\x9b\xd2\xe1\x30\x1c\x00\ -\x03\x11\x6a\x50\x76\x15\xcf\xa1\x88\x9a\x5c\x0d\x5c\x81\x46\xe5\ -\x88\x43\x41\x96\x65\xea\x6b\x0f\x50\x5f\x7b\x80\xa2\x4d\x3f\xfd\ -\xea\xff\x12\x12\x12\xc9\xcd\x2b\x20\x27\xb7\xb3\xf2\xb5\x53\x67\ -\x72\xf3\x0a\xc9\xce\xc9\xc3\x62\xc9\x26\x3d\x23\x13\x8b\x25\x1b\ -\x73\x5c\xf8\x4b\x62\xc8\xb2\x8c\xd3\x61\xc3\xda\x54\x4f\x63\x7d\ -\x35\x0d\xf5\xd5\x34\x36\xd4\x50\x5f\x5b\xf5\xcb\xdf\x1b\xea\xaa\ -\xf0\xf9\xa2\xa9\xbc\xfd\x6f\x90\x50\xf2\xb6\xdf\x47\x11\x9b\x71\ -\x47\xd6\x9c\x98\x44\x42\x39\x2d\xf9\x1c\xf8\x33\x70\x17\xc1\x9f\ -\xb6\x2d\x05\xce\x03\xd4\x88\x36\x08\x05\x84\xc8\x41\xd4\x76\x50\ -\xd9\x47\x4d\xe3\x4f\x50\x7e\x46\xff\x24\xf8\x35\x6c\x2d\x70\x0f\ -\x8a\xc3\xd4\x61\x31\x62\x00\x0c\x82\x25\x1e\x45\x48\xe4\x6a\x14\ -\xd9\xe1\x48\xe4\xe8\x6a\x42\xba\x25\x93\x74\x4b\x36\xe9\x96\x4c\ -\x12\x13\x93\x48\x4d\xb3\x90\x98\x94\x42\x62\x52\x32\xc9\xc9\xa9\ -\xa4\xa4\xa6\x1d\x26\x66\x64\xfa\x25\x63\xc1\xef\xf3\xe2\xf5\x2a\ -\xeb\x9e\xcb\x69\x47\x92\x64\xfc\x7e\x2f\x5e\x8f\x1b\x9f\xcf\x8b\ -\xcf\xeb\xc1\xed\x76\x11\x08\xf8\x71\x39\x6c\x38\x1c\x36\x1c\x76\ -\x2b\x4e\x47\x78\x8a\xb8\xe8\x80\x8c\x52\x8c\xe7\x0b\x94\x45\xab\ -\x43\xee\x9c\x74\xa4\x3f\xf0\x32\xca\x42\x2e\x4a\x00\x25\xb3\xe2\ -\x4f\xa8\x8f\xfa\xff\x00\x41\x91\x9d\x82\xde\x27\x62\xc9\xea\x2e\ -\x34\xa8\x14\xf0\x51\xb1\x7b\x21\x1e\x67\x83\xa8\x1d\x16\xc0\x2e\ -\xda\xf8\x20\x67\xa0\x5c\x55\xf6\x69\xab\xe1\x21\xec\x47\xf9\x39\ -\xcd\x40\xd0\xf9\x31\x30\x30\x68\x9d\x34\x14\x47\xe0\x5b\x94\xdc\ -\x59\xd9\x78\xb5\xbb\xd7\x1a\xe0\x01\x94\x7c\x76\x03\xfd\x99\x00\ -\x7c\x89\xb2\xb8\x1f\xed\x3d\x71\xa3\x1c\x61\x8f\x0e\x61\x9e\xe7\ -\x5a\x19\x3f\x5c\xaf\x50\xe2\x44\x52\x50\xf4\x4c\x4a\xda\x98\x63\ -\x0f\x70\x27\xca\xb3\xca\xe0\x20\xc6\x09\x80\x81\xd6\x64\xa2\x44\ -\x15\x9f\x8b\x92\xf6\x94\x1b\x59\x73\x0c\x82\x24\x00\xfc\x04\xcc\ -\x42\xd9\xed\xef\x8d\xac\x39\x1d\x96\x7c\x94\xca\x9e\xa3\x50\x62\ -\x04\x4c\x28\xa7\x2e\x5b\x51\x62\x08\xea\x43\x1c\xff\x5c\x60\x76\ -\x88\x63\x84\xca\x3c\x94\x67\x45\x28\x98\x80\xe3\x80\x91\xc0\x40\ -\x20\x15\x25\xf5\xb2\x1c\xe5\xe7\xb4\x05\x75\xd7\x0c\x06\x06\x06\ -\x21\x62\x46\xd9\x9d\x3c\x01\xac\x23\xf2\x3b\x0d\xe3\xd5\xfa\xab\ -\x01\xe5\x58\xff\x26\x82\x28\x18\x63\x10\x93\x24\xa1\x2c\x94\x91\ -\xfc\xdc\xdd\xa4\xfb\x77\x69\x60\x60\x10\x71\xfa\xa2\x08\xa1\xcc\ -\x25\xf2\x0f\x1d\xe3\xa5\xec\x88\x7e\x06\x9e\x07\x26\xa2\xd4\x8a\ -\x30\xe8\x78\xfc\x8d\xc8\x7d\x06\xeb\x80\x2c\xfd\xbf\x45\x03\x03\ -\x83\x68\x22\x0e\x45\x7d\xf0\x26\x94\x5d\x67\x1d\x91\x5f\x10\x3b\ -\xc2\xab\x04\x98\x0e\x5c\x06\x18\x52\x8b\x06\x00\x9d\x80\x26\x22\ -\xf3\x79\xbc\x27\x0c\xdf\x9f\x81\x81\x41\x94\x63\x06\x8e\x45\x39\ -\x21\xf8\x0a\xa5\x40\x4c\xa4\x17\xcb\x58\x7f\x39\x50\x74\x1c\x5e\ -\x01\x2e\xc2\x88\xc7\x30\x38\x3a\x57\xa2\x44\xc5\x87\xf3\xf3\xb9\ -\x10\x48\x08\xc7\x37\x67\x70\x64\x8c\x20\x40\x83\x68\xa6\x1b\x4a\ -\x50\x4f\xcb\x6b\x14\x8a\x8c\xaa\xc1\x6f\x09\x00\xdb\x51\xa2\xf5\ -\xd7\x00\xab\x51\x02\xc5\x3a\xa2\xee\xbe\x41\x70\x3c\x8e\x12\xaf\ -\x13\x0e\x8a\x51\x32\x1d\xea\xc2\x34\x9f\xc1\x11\x30\x1c\x00\x83\ -\x58\x23\x97\xff\x39\x03\x23\x51\x34\xc4\xfb\xa2\x64\x1f\x74\x04\ -\x64\x94\x22\x25\x45\x87\xbd\xb6\x03\x51\xa1\x03\x6c\x10\xd3\xdc\ -\x02\xbc\x8e\xbe\x3b\xf3\xc5\x28\x57\x50\xc6\xe2\x1f\x61\x0c\x07\ -\xc0\xa0\xbd\x90\x87\xe2\x08\xf4\x3b\xf8\xea\x7b\xc8\xd7\xbc\x08\ -\xda\x15\x0c\x6e\x94\x45\xbe\x14\x25\xfd\x6e\xef\xc1\x3f\xef\x01\ -\x76\xd0\xc1\xf4\xca\x0d\xc2\xce\x18\xe0\x45\xb4\x2f\xba\xd3\x80\ -\x52\x09\xf1\x75\xd4\xa9\x15\x1a\xe8\x84\xe1\x00\x18\x74\x04\x52\ -\x51\x72\xa8\x3b\xa3\x38\x03\xf9\x28\x69\x6e\x79\x07\x5f\x05\x07\ -\xbf\xa6\xa2\x44\x24\x9b\x0e\xf9\x1a\x0a\x0e\x94\xc5\xdc\x8a\xb2\ -\x3b\x77\xa3\x68\xe6\xbb\x80\x5a\x94\x38\x87\x1a\x94\x9d\x50\x2d\ -\x50\x75\xf0\xeb\x01\x94\x9d\xbe\x81\x41\x24\x99\x84\xb2\x53\x3f\ -\x1b\xe8\x1d\xe4\x18\x4e\x60\x05\xf0\x35\x8a\x68\x51\xa3\x26\x96\ -\x19\x68\x82\xe1\x00\x18\x18\xb4\x4e\xf6\x21\x5f\x5b\x1c\x03\x1f\ -\xbf\x96\x2d\x75\xa0\x28\x20\xb6\x60\x3c\xe4\x0c\xda\x1b\x89\x28\ -\x8e\xb3\x9a\x3a\x05\x0d\x28\xd9\x05\x06\x06\x06\x06\x06\x06\x06\ -\x06\x06\xd1\xc2\xff\x03\x40\x5b\x4b\x5d\x14\x80\x8b\xbc\x00\x00\ -\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -" - -qt_resource_name = b"\ -\x00\x07\ -\x07\x3b\xe0\xb3\ -\x00\x70\ -\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x73\ -\x00\x0a\ -\x08\x7a\x89\xc8\ -\x00\x43\ -\x00\x65\x00\x6e\x00\x52\x00\x61\x00\x5f\x00\x46\x00\x4c\x00\x55\x00\x58\ -\x00\x10\ -\x06\x05\x5c\x67\ -\x00\x61\ -\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x62\x00\x6f\x00\x74\x00\x74\x00\x6f\x00\x6d\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x08\ -\x05\xe2\x59\x27\ -\x00\x6c\ -\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0c\ -\x09\xd0\x7a\x07\ -\x00\x61\ -\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x75\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0b\ -\x0a\xd0\x2e\xa7\ -\x00\x72\ -\x00\x65\x00\x66\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ -" - -qt_resource_struct_v1 = b"\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ -\x00\x00\x00\x14\x00\x02\x00\x00\x00\x04\x00\x00\x00\x03\ -\x00\x00\x00\x54\x00\x00\x00\x00\x00\x01\x00\x00\x24\xa6\ -\x00\x00\x00\x2e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\x6a\x00\x00\x00\x00\x00\x01\x00\x00\x47\x67\ -\x00\x00\x00\x88\x00\x00\x00\x00\x00\x01\x00\x00\x6d\x40\ -" - -qt_resource_struct_v2 = b"\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x14\x00\x02\x00\x00\x00\x04\x00\x00\x00\x03\ -\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x54\x00\x00\x00\x00\x00\x01\x00\x00\x24\xa6\ -\x00\x00\x01\x8d\xf4\x5f\x22\xc4\ -\x00\x00\x00\x2e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x01\x8d\xf4\x5f\x22\x8b\ -\x00\x00\x00\x6a\x00\x00\x00\x00\x00\x01\x00\x00\x47\x67\ -\x00\x00\x01\x8d\xf4\x5f\x22\x8d\ -\x00\x00\x00\x88\x00\x00\x00\x00\x00\x01\x00\x00\x6d\x40\ -\x00\x00\x01\x8d\xf4\x5f\x22\xdb\ -" - -qt_version = [int(v) for v in QtCore.qVersion().split('.')] -if qt_version < [5, 8, 0]: - rcc_version = 1 - qt_resource_struct = qt_resource_struct_v1 -else: - rcc_version = 2 - qt_resource_struct = qt_resource_struct_v2 - -def qInitResources(): - QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) - -def qCleanupResources(): - QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) - -qInitResources() diff --git a/CenRa_FLUX/resources.qrc b/CenRa_FLUX/resources.qrc deleted file mode 100644 index 81e24df..0000000 --- a/CenRa_FLUX/resources.qrc +++ /dev/null @@ -1,8 +0,0 @@ - - - reficon.png - arrow-up.png - arrow-bottom.png - logo.png - - diff --git a/CenRa_FLUX/scripts/compile-strings.sh b/CenRa_FLUX/scripts/compile-strings.sh deleted file mode 100644 index 9d76083..0000000 --- a/CenRa_FLUX/scripts/compile-strings.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -LRELEASE=$1 -LOCALES=$2 - - -for LOCALE in ${LOCALES} -do - echo "Processing: ${LOCALE}.ts" - # Note we don't use pylupdate with qt .pro file approach as it is flakey - # about what is made available. - $LRELEASE i18n/${LOCALE}.ts -done diff --git a/CenRa_FLUX/scripts/run-env-linux.sh b/CenRa_FLUX/scripts/run-env-linux.sh deleted file mode 100644 index 668247c..0000000 --- a/CenRa_FLUX/scripts/run-env-linux.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -QGIS_PREFIX_PATH=/usr/local/qgis-2.0 -if [ -n "$1" ]; then - QGIS_PREFIX_PATH=$1 -fi - -echo ${QGIS_PREFIX_PATH} - - -export QGIS_PREFIX_PATH=${QGIS_PREFIX_PATH} -export QGIS_PATH=${QGIS_PREFIX_PATH} -export LD_LIBRARY_PATH=${QGIS_PREFIX_PATH}/lib -export PYTHONPATH=${QGIS_PREFIX_PATH}/share/qgis/python:${QGIS_PREFIX_PATH}/share/qgis/python/plugins:${PYTHONPATH} - -echo "QGIS PATH: $QGIS_PREFIX_PATH" -export QGIS_DEBUG=0 -export QGIS_LOG_FILE=/tmp/inasafe/realtime/logs/qgis.log - -export PATH=${QGIS_PREFIX_PATH}/bin:$PATH - -echo "This script is intended to be sourced to set up your shell to" -echo "use a QGIS 2.0 built in $QGIS_PREFIX_PATH" -echo -echo "To use it do:" -echo "source $BASH_SOURCE /your/optional/install/path" -echo -echo "Then use the make file supplied here e.g. make guitest" diff --git a/CenRa_FLUX/scripts/update-strings.sh b/CenRa_FLUX/scripts/update-strings.sh deleted file mode 100644 index a31f712..0000000 --- a/CenRa_FLUX/scripts/update-strings.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/bash -LOCALES=$* - -# Get newest .py files so we don't update strings unnecessarily - -CHANGED_FILES=0 -PYTHON_FILES=`find . -regex ".*\(ui\|py\)$" -type f` -for PYTHON_FILE in $PYTHON_FILES -do - CHANGED=$(stat -c %Y $PYTHON_FILE) - if [ ${CHANGED} -gt ${CHANGED_FILES} ] - then - CHANGED_FILES=${CHANGED} - fi -done - -# Qt translation stuff -# for .ts file -UPDATE=false -for LOCALE in ${LOCALES} -do - TRANSLATION_FILE="i18n/$LOCALE.ts" - if [ ! -f ${TRANSLATION_FILE} ] - then - # Force translation string collection as we have a new language file - touch ${TRANSLATION_FILE} - UPDATE=true - break - fi - - MODIFICATION_TIME=$(stat -c %Y ${TRANSLATION_FILE}) - if [ ${CHANGED_FILES} -gt ${MODIFICATION_TIME} ] - then - # Force translation string collection as a .py file has been updated - UPDATE=true - break - fi -done - -if [ ${UPDATE} == true ] -# retrieve all python files -then - echo ${PYTHON_FILES} - # update .ts - echo "Please provide translations by editing the translation files below:" - for LOCALE in ${LOCALES} - do - echo "i18n/"${LOCALE}".ts" - # Note we don't use pylupdate with qt .pro file approach as it is flakey - # about what is made available. - pylupdate4 -noobsolete ${PYTHON_FILES} -ts i18n/${LOCALE}.ts - done -else - echo "No need to edit any translation files (.ts) because no python files" - echo "has been updated since the last update translation. " -fi diff --git a/CenRa_FLUX/styles_couches/RNN.qml b/CenRa_FLUX/styles_couches/RNN.qml deleted file mode 100644 index 3e22d49..0000000 --- a/CenRa_FLUX/styles_couches/RNN.qml +++ /dev/null @@ -1,321 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 0.6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /home/tga/travail/47CASS/2014/donnees/SIG/production/cartographie/presentation - - 0 - /home/tga/travail/47RODI/2015/donnees/SIG/production/cartographie/presentation - - 0 - generatedlayout - - - - - - COALESCE( "ID_MNHN", '<NULL>' ) - - 3 - diff --git a/CenRa_FLUX/styles_couches/RNR.qml b/CenRa_FLUX/styles_couches/RNR.qml deleted file mode 100644 index b4c3960..0000000 --- a/CenRa_FLUX/styles_couches/RNR.qml +++ /dev/null @@ -1,846 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 0.6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /home/tga/travail/47CASS/2014/donnees/SIG/production/cartographie/presentation - - 0 - /home/tga/travail/47RODI/2015/donnees/SIG/production/cartographie/presentation - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - COALESCE( "ID_MNHN", '<NULL>' ) - - 2 - diff --git a/CenRa_FLUX/styles_couches/RPG.qml b/CenRa_FLUX/styles_couches/RPG.qml deleted file mode 100644 index e9ec8ae..0000000 --- a/CenRa_FLUX/styles_couches/RPG.qml +++ /dev/null @@ -1,1589 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ID_PARCEL - - 2 - diff --git a/CenRa_FLUX/styles_couches/cheflieu.qml b/CenRa_FLUX/styles_couches/cheflieu.qml deleted file mode 100644 index 1a149ed..0000000 --- a/CenRa_FLUX/styles_couches/cheflieu.qml +++ /dev/null @@ -1,509 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - "nom_chef_lieu" - - 0 - diff --git a/CenRa_FLUX/styles_couches/emprise_drone.qml b/CenRa_FLUX/styles_couches/emprise_drone.qml deleted file mode 100644 index 3d91502..0000000 --- a/CenRa_FLUX/styles_couches/emprise_drone.qml +++ /dev/null @@ -1,537 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "nomcouche" - - 2 - diff --git a/CenRa_FLUX/styles_couches/frayeres.qml b/CenRa_FLUX/styles_couches/frayeres.qml deleted file mode 100644 index 02a3b2e..0000000 --- a/CenRa_FLUX/styles_couches/frayeres.qml +++ /dev/null @@ -1,1414 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "nom_modif" - - 0 - diff --git a/CenRa_FLUX/styles_couches/habitats_carhab.qml b/CenRa_FLUX/styles_couches/habitats_carhab.qml deleted file mode 100644 index eaba92d..0000000 --- a/CenRa_FLUX/styles_couches/habitats_carhab.qml +++ /dev/null @@ -1,2490 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "nom_complet_hab" - - 2 - diff --git a/CenRa_FLUX/styles_couches/mfu_cenna.qml b/CenRa_FLUX/styles_couches/mfu_cenna.qml deleted file mode 100644 index 8b4c040..0000000 --- a/CenRa_FLUX/styles_couches/mfu_cenna.qml +++ /dev/null @@ -1,895 +0,0 @@ - - - - 1 - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "nom" - - 2 - diff --git a/CenRa_FLUX/styles_couches/parcelles_af.qml b/CenRa_FLUX/styles_couches/parcelles_af.qml deleted file mode 100644 index d7a12e4..0000000 --- a/CenRa_FLUX/styles_couches/parcelles_af.qml +++ /dev/null @@ -1,1081 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "nom" - - 2 - diff --git a/CenRa_FLUX/styles_couches/pigma_ocs.qml b/CenRa_FLUX/styles_couches/pigma_ocs.qml deleted file mode 100644 index 891b0b7..0000000 --- a/CenRa_FLUX/styles_couches/pigma_ocs.qml +++ /dev/null @@ -1,3446 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "lib20niv1" - - 2 - diff --git a/CenRa_FLUX/styles_couches/sites_inscrits.qml b/CenRa_FLUX/styles_couches/sites_inscrits.qml deleted file mode 100644 index aa3fd92..0000000 --- a/CenRa_FLUX/styles_couches/sites_inscrits.qml +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - gid - - 3 - diff --git a/CenRa_FLUX/styles_couches/style_piezo.qml b/CenRa_FLUX/styles_couches/style_piezo.qml deleted file mode 100644 index d558e1e..0000000 --- a/CenRa_FLUX/styles_couches/style_piezo.qml +++ /dev/null @@ -1,482 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "id_cen" - - 0 - diff --git a/CenRa_FLUX/styles_couches/znieff1.qml b/CenRa_FLUX/styles_couches/znieff1.qml deleted file mode 100644 index 2a0cced..0000000 --- a/CenRa_FLUX/styles_couches/znieff1.qml +++ /dev/null @@ -1,331 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 0.6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /home/tga/travail/47CASS/2014/donnees/SIG/production/cartographie/presentation - - 0 - /home/tga/travail/47RODI/2015/donnees/SIG/production/cartographie/presentation - - 0 - generatedlayout - - - - - - - - - - - - - - - - ID_MNHN - - 3 - diff --git a/CenRa_FLUX/styles_couches/znieff2.qml b/CenRa_FLUX/styles_couches/znieff2.qml deleted file mode 100644 index abf4198..0000000 --- a/CenRa_FLUX/styles_couches/znieff2.qml +++ /dev/null @@ -1,331 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 0.6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /home/tga/travail/47CASS/2014/donnees/SIG/production/cartographie/presentation - - 0 - /home/tga/travail/47RODI/2015/donnees/SIG/production/cartographie/presentation - - 0 - generatedlayout - - - - - - - - - - - - - - - - ID_MNHN - - 3 - diff --git a/CenRa_FLUX/styles_couches/zones_baties_carhab.qml b/CenRa_FLUX/styles_couches/zones_baties_carhab.qml deleted file mode 100644 index 17e18ab..0000000 --- a/CenRa_FLUX/styles_couches/zones_baties_carhab.qml +++ /dev/null @@ -1,579 +0,0 @@ - - - - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "nom_complet_hab" - - 2 - diff --git a/CenRa_FLUX/reficon.png b/CenRa_FLUX/tools/icons/icon.png similarity index 100% rename from CenRa_FLUX/reficon.png rename to CenRa_FLUX/tools/icons/icon.png diff --git a/CenRa_FLUX/tools/resources.py b/CenRa_FLUX/tools/resources.py index 6292309..96ba8e5 100644 --- a/CenRa_FLUX/tools/resources.py +++ b/CenRa_FLUX/tools/resources.py @@ -89,7 +89,7 @@ def resources_path(*args): :return: Absolute path to the resources folder. :rtype: str """ - path = abspath(abspath(join(plugin_path(), "CenRa_Metabase\\tools"))) + path = abspath(abspath(join(plugin_path(), "CenRa_FLUX\\tools"))) for item in args: path = abspath(join(path, item)) return path diff --git a/CenRa_FLUX/FluxCEN_dialog_base.ui b/CenRa_FLUX/tools/ui/CenRa_Flux_base - Copie.ui similarity index 100% rename from CenRa_FLUX/FluxCEN_dialog_base.ui rename to CenRa_FLUX/tools/ui/CenRa_Flux_base - Copie.ui diff --git a/CenRa_FLUX/tools/ui/CenRa_Flux_base.ui b/CenRa_FLUX/tools/ui/CenRa_Flux_base.ui new file mode 100644 index 0000000..dbeae75 --- /dev/null +++ b/CenRa_FLUX/tools/ui/CenRa_Flux_base.ui @@ -0,0 +1,252 @@ + + + Dialog + + + true + + + + 0 + 0 + 910 + 800 + + + + + 910 + 800 + + + + + 910 + 800 + + + + SIG CEN-RA + + + + + 260 + 130 + 171 + 22 + + + + false + + + + + + + + + 370 + 80 + 171 + 22 + + + + false + + + + + + + + + 345 + 10 + 221 + 71 + + + + + + + :/plugins/CenRa_FLUX/logo.jpg + + + true + + + + + + 370 + 750 + 171 + 23 + + + + Charger les couches + + + + + true + + + + 30 + 170 + 850 + 281 + + + + QAbstractItemView::SingleSelection + + + true + + + + + + 30 + 550 + 850 + 181 + + + + QAbstractItemView::SingleSelection + + + + + + 400 + 470 + 61 + 61 + + + + + + + + :/plugins/CenRa_FLUX/arrow-bottom.png:/plugins/CenRa_FLUX/arrow-bottom.png + + + + 50 + 40 + + + + + + + 460 + 470 + 61 + 61 + + + + + + + + :/plugins/CenRa_FLUX/arrow-up.png:/plugins/CenRa_FLUX/arrow-up.png + + + + 50 + 40 + + + + + + true + + + + 480 + 130 + 171 + 21 + + + + Recherche par mots-clés + + + Qt::AlignCenter + + + false + + + true + + + + + + 40 + 150 + 161 + 16 + + + + + Calibri + 10 + false + + + + Liste des flux disponibles : + + + + + + 30 + 530 + 171 + 16 + + + + + Calibri + 10 + false + + + + Flux sélectionné(s) à charger : + + + label_3 + comboBox + comboBox_2 + pushButton_2 + tableWidget + tableWidget_2 + commandLinkButton + commandLinkButton_2 + lineEdit + label + label_2 + + + + diff --git a/CenRa_FLUX/tools/ui/CenRa_IssuesSend.ui b/CenRa_FLUX/tools/ui/CenRa_IssuesSend.ui new file mode 100644 index 0000000..14d923e --- /dev/null +++ b/CenRa_FLUX/tools/ui/CenRa_IssuesSend.ui @@ -0,0 +1,332 @@ + + + CenRa_IssuesSend + + + + 0 + 0 + 810 + 587 + + + + CEN-RA Metabase + + + + icon.svgicon.svg + + + + + 0 + 550 + 811 + 31 + + + + + + + Annuler + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Envoyer + + + + + + + + + 10 + 10 + 791 + 531 + + + + Issues + + + + + 240 + 40 + 321 + 41 + + + + Qt::AlignCenter + + + + + + 10 + 101 + 571 + 421 + + + + + + + 589 + 100 + 191 + 431 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 9 + 9 + 341 + 411 + + + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Bug + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Aide + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Question + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Amélioration + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Autre + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 250 + 20 + 51 + 21 + + + + + Arial + 14 + + + + Titre: + + + + + + 20 + 70 + 91 + 31 + + + + + Arial + 12 + + + + Messages: + + + + + + 600 + 70 + 91 + 31 + + + + + Arial + 12 + + + + Sujet: + + + + + + ok_button + annuler_button + + + + diff --git a/CenRa_FLUX/forms/flux_about_form.ui b/CenRa_FLUX/tools/ui/CenRa_about_form.ui similarity index 98% rename from CenRa_FLUX/forms/flux_about_form.ui rename to CenRa_FLUX/tools/ui/CenRa_about_form.ui index 1c65e2a..3e3608f 100644 --- a/CenRa_FLUX/forms/flux_about_form.ui +++ b/CenRa_FLUX/tools/ui/CenRa_about_form.ui @@ -11,7 +11,7 @@ - FLUX + Metabase diff --git a/CenRa_FLUX/arrow-bottom.png b/CenRa_FLUX/tools/ui/arrow-bottom.png similarity index 100% rename from CenRa_FLUX/arrow-bottom.png rename to CenRa_FLUX/tools/ui/arrow-bottom.png diff --git a/CenRa_FLUX/arrow-up.png b/CenRa_FLUX/tools/ui/arrow-up.png similarity index 100% rename from CenRa_FLUX/arrow-up.png rename to CenRa_FLUX/tools/ui/arrow-up.png diff --git a/CenRa_FLUX/tools/ui/logo.png b/CenRa_FLUX/tools/ui/logo.png new file mode 100644 index 0000000..4d8ca58 Binary files /dev/null and b/CenRa_FLUX/tools/ui/logo.png differ diff --git a/plugins.xml b/plugins.xml index 6688494..117caad 100644 --- a/plugins.xml +++ b/plugins.xml @@ -17,9 +17,9 @@ cenra,postgis - + - 1.5 + 2.0 3.16 https://plateformesig.cenra-outils.org/ CenRa_COPIE.zip @@ -28,7 +28,7 @@ https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS/releases/download/latest/CenRa_COPIE.zip CEN-Rhone-Alpes 2024-02-06 - 2024-09-13 + 2024-10-22 False False cenra,copie @@ -51,9 +51,9 @@ cenra,sicen - + - 1.14 + 2.0 3.16 https://plateformesig.cenra-outils.org/ CenRa_FLUX.zip @@ -62,7 +62,7 @@ https://gitea.cenra-outils.org/CEN-RA/Plugin_QGIS/releases/download/latest/CenRa_FLUX.zip CEN-Rhone-Alpes 2024-02-06 - 2024-10-03 + 2024-10-22 False False cenra,flux