diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..711dba5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +resources.pyc +pghydro_tools.pyc +pghydro_tools_dialog.pyc +__init__.pyc diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..fe71598 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.linting.pylintEnabled": false +} \ No newline at end of file diff --git a/Logo_pghydro_hexa.png b/Logo_pghydro_hexa.png new file mode 100644 index 0000000..175f77a Binary files /dev/null and b/Logo_pghydro_hexa.png differ diff --git a/README.md b/README.md index 53dc701..ed09a8d 100644 --- a/README.md +++ b/README.md @@ -2,17 +2,17 @@ QGIS PgHydroTools Plugin is an interface used in QGIS to activate all functionality of PgHydro Extension for PostgreSQL/PostGIS. -To use this plugin, you have to install the PgHydro extension for PostgreSQL/PostGIS at https://github.com/pghydro/pghydro +To use this plugin, you have to install the PgHydro 6.2 extension for PostgreSQL/PostGIS at https://github.com/pghydro/pghydro # STATUS ## Branches -The master branch has the latest minor release. (2.0.1) +The master branch has the latest minor release. (2.2) -The develop branch has the next minor release. (2.1-dev) +The develop branch has the next minor release. (2.3-dev) -Next LTR: version 2.2 (November 2017) +Next LTR: version 2.4 (Julho 2018) # INTRODUCTION @@ -24,17 +24,17 @@ PgHydro is Open Source, available under the GPLv2 license and is supported by a # REQUIREMENTS -Postgresql version = postgresql-9.3.5-3-windows-x64 -(https://drive.google.com/file/d/0B2u6WhefYxhZMmlPazUwR2pZYWs/view?usp=sharing) +Postgresql version 9.1+ -PostGIS version = postgis-bundle-pg93x64-setup-2.1.4-1 -(https://drive.google.com/file/d/0B2u6WhefYxhZdTIyVlRBWllPeXc/view?usp=sharing) +PostGIS version 2.0+ -QGIS version = QGIS-OSGeo4W-2.6.1-1-Setup-x86_64 -(https://drive.google.com/file/d/0B2u6WhefYxhZWVI4XzYzdkplXzg/view?usp=sharing) +QGIS version 2.14+ -To use this plugin, you have to install the PgHydro Extension (v.6.0) for PostgreSQL/PostGIS -(https://github.com/pghydro/pghydro) +Pghydro 6.2 + +Pghydro Consistency 6.2 + +Pghydro Output 6.2 ## INSTALLATION diff --git a/metadata.txt b/metadata.txt index 858e090..dba9f7e 100644 --- a/metadata.txt +++ b/metadata.txt @@ -10,7 +10,7 @@ name=Pghydro Tools qgisMinimumVersion=2.0 description=PgHydro Tools Interface for PgHydro Extension for PostgreSQL/PostGIS -version=2.0.1 +version=2.2 author=PgHydro Team email=pghydro.project@gmail.com @@ -26,9 +26,19 @@ repository=www.github.com/pghydro/pghydrotools # Uncomment the following line and add your changelog: # changelog= 2.0.1 - "No module named resources_rc" fixed. - + 2.0.2 - Execute and Return Queries update. + 2.1 - Translate to English + - Creation of Print_Message_Console Function + - Rename function pgh_consistency.pghft_drainageareahaveselfintersection and associated objects to pgh_consistency.pghft_drainageareaoverlapdrainagearea + - Rename function def Check_DrainageTouchDrainageLine to def Check_DrainageLineTouchDrainageLine + - Insertion of function self.Turn_OFF_Audit() before the each main procedure + - Disable_role bug fixed + - Insert of new version logo + - Resource_rc bug fixed including and not more deleting codes. + - ... + # Tags are comma separated with spaces allowed -tags=spatial database system, otto pfafstetter, drainage +tags=spatial database system, otto pfafstetter, drainage, hydrology, hydrography, hydro homepage=www.pghydro.org category=Database diff --git a/pghydro_tools.py b/pghydro_tools.py index 5789268..4844184 100644 --- a/pghydro_tools.py +++ b/pghydro_tools.py @@ -215,7 +215,6 @@ def initGui(self): callback=self.run, parent=self.iface.mainWindow()) - def unload(self): """Removes the plugin menu item and icon from QGIS GUI.""" for action in self.actions: @@ -227,102 +226,116 @@ def unload(self): del self.toolbar ###Database Editing - - def create_database(self): + + def execute_sql(self, sql): host = self.dlg.lineEdit_host.text() port = self.dlg.lineEdit_port.text() dbname = self.dlg.lineEdit_base.text() schema = self.dlg.lineEdit_schema.text() user = self.dlg.lineEdit_user.text() password = self.dlg.lineEdit_password.text() - postgres = 'postgres' connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - connection_str_postgres = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, postgres, user, password) + + try: + conn = None + conn = psycopg2.connect(connection_str) + conn.autocommit = True + cur = conn.cursor() + cur.execute(sql) + cur.close() + conn.close() + + except: + self.print_console_message('ERROR\nCheck Database Input Parameters!') + + def return_sql(self, sql): + host = self.dlg.lineEdit_host.text() + port = self.dlg.lineEdit_port.text() + dbname = self.dlg.lineEdit_base.text() + schema = self.dlg.lineEdit_schema.text() + user = self.dlg.lineEdit_user.text() + password = self.dlg.lineEdit_password.text() + connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + + try: + conn = None + conn = psycopg2.connect(connection_str) + conn.autocommit = True + cur = conn.cursor() + cur.execute(sql) + result = str(cur.fetchone()[0]) + cur.close() + conn.close() + return result + + except: + self.print_console_message('ERROR\nCheck Database Input Parameters!') + + def print_console_message(self, message): + self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Criando Banco de Dados e Extensoes do PgHydro. Aguarde...") + self.dlg.console.append(message) self.dlg.console.repaint() + + def create_database(self): + host = self.dlg.lineEdit_host.text() + port = self.dlg.lineEdit_port.text() + dbname = self.dlg.lineEdit_base.text() + user = self.dlg.lineEdit_user.text() + password = self.dlg.lineEdit_password.text() + postgres = 'postgres' + connection_str_postgres = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, postgres, user, password) + + self.print_console_message("Creating Spatial Database and Pghydro Extension. Please, Wait...") try: conn = psycopg2.connect(connection_str_postgres) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) + conn.autocommit = True cur = conn.cursor() + createdatabase = """ CREATE DATABASE """+dbname+"""; """ cur.execute(createdatabase) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Banco de Dados Criado Com Sucesso!\n") - self.dlg.console.repaint() - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - drop_previous_extensions = """ - - DROP EXTENSION IF EXISTS pgh_output; - DROP EXTENSION IF EXISTS pgh_consistency; + self.print_console_message("Database Created With Success!\n") - DROP EXTENSION IF EXISTS pghydro; - - DROP EXTENSION IF EXISTS postgis; - - CREATE EXTENSION postgis; - - """ + cur.close() + conn.close() create_spatial_database = """ - CREATE EXTENSION postgis; - """ create_pghydro = """ - CREATE EXTENSION pghydro; - """ create_pgh_consistency = """ - CREATE EXTENSION pgh_consistency; - """ create_pgh_output = """ - CREATE EXTENSION pgh_output; - """ -# cur.execute(drop_previous_extensions) - cur.execute(create_spatial_database) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Banco de Dados Espaciais Criado Com Sucesso!\n") - self.dlg.console.repaint() - cur.execute(create_pghydro) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Extensao PgHydro Criada Com Sucesso!\n") - self.dlg.console.repaint() - cur.execute(create_pgh_consistency) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Extensao PgHydro Consistency Criada Com Sucesso!\n") - self.dlg.console.repaint() - cur.execute(create_pgh_output) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Extensao PgHydro Output Criada Com Sucesso!\n") - self.dlg.console.repaint() - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Banco de Dados Espaciais e Extensoes do PgHydro Criadas Com Sucesso!\n") - self.dlg.console.repaint() + + self.execute_sql(create_spatial_database) + + self.print_console_message("Spatial Database Successfully Created!\n") + + self.execute_sql(create_pghydro) + + self.print_console_message("PgHydro Extension successfully Created!\n") + + self.execute_sql(create_pgh_consistency) + + self.print_console_message("PgHydro Consistency Extension Successfully Created!\n") + + self.execute_sql(create_pgh_output) + + self.print_console_message("PgHydro Output Extension Successfully Created!\n") + + self.print_console_message("Spatial Database and Pghydro Extensions Successfully Created!\n") except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def connect_database(self): host = self.dlg.lineEdit_host.text() @@ -333,22 +346,16 @@ def connect_database(self): password = self.dlg.lineEdit_password.text() connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Conectando ao Banco de Dados. Aguarde...") - self.dlg.console.repaint() + self.print_console_message('Connecting to Database. Please, wait...') try: conn = psycopg2.connect(connection_str) conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Conexao Realizada Com Sucesso!\n") - self.dlg.console.repaint() + self.print_console_message('Database Successfully Connected!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') ###Input Drainage Line @@ -356,14 +363,6 @@ def import_drainage_line(self): try: - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - layers = self.iface.legendInterface().layers() selectedLayerIndex = self.dlg.input_drainage_line_table_MapLayerComboBox.currentIndex() selectedLayer = layers[selectedLayerIndex] @@ -372,57 +371,30 @@ def import_drainage_line(self): input_drainage_line_table_attribute_name = self.dlg.input_drainage_line_table_attribute_name_MapLayerComboBox.currentText() input_drainage_line_table_attribute_geom = QgsDataSourceURI(selectedLayer.dataProvider().dataSourceUri()).geometryColumn () - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Importando Trechos de Drenagem...\n') - self.dlg.console.repaint() + self.print_console_message('Importing Drainage Lines. Please, wait...\n') self.dlg.console.append('SCHEMA: '+input_drainage_line_table_schema) self.dlg.console.append('TABELA GEOMETRICA: '+input_drainage_line_table) self.dlg.console.append('COLUNA COM NOME: '+input_drainage_line_table_attribute_name) self.dlg.console.append('COLUNA GEOMETRICA: '+input_drainage_line_table_attribute_geom) - self.dlg.console.repaint() - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pghydro.pghfn_input_data_drainage_line('"""+input_drainage_line_table_schema+"""','"""+input_drainage_line_table+"""','"""+input_drainage_line_table_attribute_geom+"""','"""+input_drainage_line_table_attribute_name+"""'); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Importacao dos Trechos de Drenagem Realizada Com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Drainage Lines Successfully Imported!\n') except: - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') ###Input Drainage Area def import_drainage_area(self): try: - - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Importando Areas de Contribuicao Hidrografica...\n') - self.dlg.console.repaint() + self.print_console_message('Importing Drainage Areas. Please, wait...\n') layers = self.iface.legendInterface().layers() selectedLayerIndex = self.dlg.input_drainage_area_table_MapLayerComboBox.currentIndex() @@ -430,73 +402,41 @@ def import_drainage_area(self): input_drainage_area_table_schema = QgsDataSourceURI(selectedLayer.dataProvider().dataSourceUri()).schema() input_drainage_area_table = QgsDataSourceURI(selectedLayer.dataProvider().dataSourceUri()).table() input_drainage_area_table_attribute_geom = QgsDataSourceURI(selectedLayer.dataProvider().dataSourceUri()).geometryColumn () - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Bacias...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Drainage Areas. Please, wait...\n') - self.dlg.console.append('SCHEMA: '+input_drainage_area_table_schema) - self.dlg.console.append('TABELA GEOMETRICA: '+input_drainage_area_table) - self.dlg.console.append('COLUNA GEOMETRICA: '+input_drainage_area_table_attribute_geom) + self.dlg.console.append('SCHEME: '+input_drainage_area_table_schema) + self.dlg.console.append('GEOMETRIC TABLE: '+input_drainage_area_table) + self.dlg.console.append('GEOMETRIC COLUMN: '+input_drainage_area_table_attribute_geom) self.dlg.console.repaint() - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pghydro.pghfn_input_data_drainage_area('"""+input_drainage_area_table_schema+"""','"""+input_drainage_area_table+"""','"""+input_drainage_area_table_attribute_geom+"""'); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + self.execute_sql(sql) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Importacao das Bacias Realizada Com Sucesso!\n') - self.dlg.console.repaint() + + self.print_console_message('Drainage Areas Successfully Imported!\n') + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') #####Consistency Drainage Line def Check_DrainageLineIsNotSingle(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Geometrias Nao Unicas...") - self.dlg.console.repaint() + self.print_console_message("Checking Non-Single Geometries. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelineisnotsingle; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Nao Unicas: ") + result = self.return_sql(sql) + + self.dlg.console.append("Non-Single Geometries: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -506,85 +446,43 @@ def Check_DrainageLineIsNotSingle(self): self.dlg.pushButton_ExplodeDrainageLine.setEnabled(True) else: self.dlg.pushButton_ExplodeDrainageLine.setEnabled(False) + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() - + self.print_console_message('ERROR\nCheck Database Input Parameters!') def ExplodeDrainageLine(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Explodindo Feições Nao Unicas...") - self.dlg.console.repaint() + self.print_console_message("Exploding Non-Single Geometries. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_explodedrainageline(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + + self.execute_sql(sql) self.dlg.lineEdit_Check_DrainageLineIsNotSingle.setText('') self.dlg.lineEdit_Check_DrainageLineIsNotSingle.repaint() self.dlg.pushButton_ExplodeDrainageLine.setEnabled(False) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Drenagens Explodidas com sucesso!\n') - self.dlg.console.repaint() + self.print_console_message('Geometries Successfully Exploded!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageLineIsNotSimple(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Geometrias Nao Simples...") - self.dlg.console.repaint() + self.print_console_message("Checking Non-Simple Geometries. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelineisnotsimple; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Nao Simples: ") + result = self.return_sql(sql) + + self.dlg.console.append("Non-Simple Geometries: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -596,83 +494,41 @@ def Check_DrainageLineIsNotSimple(self): self.dlg.pushButton_MakeDrainageLineSimple.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def MakeDrainageLineSimple(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Simplificando Feicoes Nao Simples...") - self.dlg.console.repaint() + self.print_console_message("Simplifying Non-Simple Geometries. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_makedrainagelinesimple(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + + self.execute_sql(sql) self.dlg.lineEdit_Check_DrainageLineIsNotSimple.setText('') self.dlg.lineEdit_Check_DrainageLineIsNotSimple.repaint() self.dlg.pushButton_MakeDrainageLineSimple.setEnabled(False) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Feicoes Simplificadas com sucesso!\n') - self.dlg.console.repaint() + self.print_console_message('Non-Simple Geometries Successfully Simpliflyed!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageLineIsNotValid(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Geometrias Nao Validas...") - self.dlg.console.repaint() + self.print_console_message("Checking Invalid Geometries. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelineisnotvalid; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Nao Validas: ") + result = self.return_sql(sql) + + self.dlg.console.append("Invalid Geometries: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -684,82 +540,51 @@ def Check_DrainageLineIsNotValid(self): self.dlg.pushButton_MakeDrainageLineValid.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def MakeDrainageLineValid(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Validando Feicoes Nao Validas...") - self.dlg.console.repaint() + self.print_console_message("Validating Invalid Geometries. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_makedrainagelinevalid(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + + self.execute_sql(sql) self.dlg.lineEdit_Check_DrainageLineIsNotValid.setText('') self.dlg.lineEdit_Check_DrainageLineIsNotValid.repaint() self.dlg.pushButton_MakeDrainageLineValid.setEnabled(False) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Feicoes Validadas com sucesso!\n') - self.dlg.console.repaint() + + self.print_console_message('Geometries Successfully Validated!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageLineGeometryConsistencies(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + DrainageLinePrecision = self.dlg.lineEdit_DrainageLinePrecision.text() DrainageLineOffset = self.dlg.lineEdit_DrainageLineOffset.text() try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Consistencia Topologica...\n') - self.dlg.console.repaint() + self.print_console_message('Checking Geometric Consistency. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ - + sql1 = """ DROP INDEX IF EXISTS pghydro.drn_gm_idx; ALTER TABLE pghydro.pghft_drainage_line DROP CONSTRAINT IF EXISTS drn_pk_pkey; + """ + sql2 = """ SELECT pgh_consistency.pghfn_MakeSnapToGridDrainageLine("""+DrainageLinePrecision+"""); SELECT pgh_consistency.pghfn_removereapetedpointsdrainageline(); SELECT pgh_consistency.pghfn_DeleteDrainageLineGeometryEmpty(); + """ + sql3 = """ SELECT setval(('pghydro.drn_pk_seq'::text)::regclass, """+DrainageLineOffset+""", false); UPDATE pghydro.pghft_drainage_line @@ -768,61 +593,41 @@ def Check_DrainageLineGeometryConsistencies(self): CREATE INDEX drn_gm_idx ON pghydro.pghft_drainage_line USING GIST(drn_gm); ALTER TABLE pghydro.pghft_drainage_line ADD CONSTRAINT drn_pk_pkey PRIMARY KEY (drn_pk); - + """ + + sql4 = """ SELECT pgh_consistency.pghfn_UpdateDrainageLineConsistencyGeometryTables(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + self.Turn_OFF_Audit() + self.execute_sql(sql1) + self.execute_sql(sql2) + self.execute_sql(sql3) + self.execute_sql(sql4) + + self.Check_DrainageLineIsNotSingle() self.Check_DrainageLineIsNotSimple() self.Check_DrainageLineIsNotValid() - self.Check_DrainageLineIsNotSingle() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Consistencia Topologica Verificada!\n') - self.dlg.console.repaint() + + self.print_console_message('Geometric Consistency Successfully Checked!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') + def Check_DrainageLineWithinDrainageLine(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Geometria Dentro de Geometria...") - self.dlg.console.repaint() + self.print_console_message("Checking Geometry WITHIN Geometry. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelinewithindrainageline; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Dentro de Geometrias: ") + result = self.return_sql(sql) + + self.dlg.console.append("Geometry WITHIN Geometry: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -835,83 +640,40 @@ def Check_DrainageLineWithinDrainageLine(self): self.dlg.pushButton_DeleteDrainageLineWithinDrainageLine.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def DeleteDrainageLineWithinDrainageLine(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Excluindo Geometrias Dentro de Geometrias...") - self.dlg.console.repaint() + self.print_console_message("Deleting Geometry WITHIN Geometry. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_deletedrainagelinewithindrainageline(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + self.execute_sql(sql) self.dlg.lineEdit_Check_DrainageLineWithinDrainageLine.setText('') self.dlg.lineEdit_Check_DrainageLineWithinDrainageLine.repaint() self.dlg.pushButton_DeleteDrainageLineWithinDrainageLine.setEnabled(False) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Geometrias Exlcuidas com Sucesso!\n') - self.dlg.console.repaint() + self.print_console_message('Geometries Successfully Deleted!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageLineOverlapDrainageLine(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Geometria Sobreposta a Geometria...") - self.dlg.console.repaint() + self.print_console_message("Checking Geometry OVERLAP Geometry. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelineoverlapdrainageline; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Sobrepostas a Geometrias: ") + result = self.return_sql(sql) + + self.dlg.console.append("Geometry OVERLAP Geometry: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -919,42 +681,21 @@ def Check_DrainageLineOverlapDrainageLine(self): self.dlg.lineEdit_Check_DrainageLineOverlapDrainageLine.repaint() except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageLineLoops(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Loops...") - self.dlg.console.repaint() + self.print_console_message("Checking LOOPS. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelineloops; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Com Loops: ") + result = self.return_sql(sql) + + self.dlg.console.append("Geometries with LOOPS: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -962,83 +703,43 @@ def Check_DrainageLineLoops(self): self.dlg.lineEdit_Check_DrainageLineLoops.repaint() except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageLineTopologyConsistencies_1(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Consistencia Topologica Parte 1...\n') - self.dlg.console.repaint() + self.print_console_message('Checking Topological Consistency Part I. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_UpdateDrainageLineConsistencyTopologyTables_1(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + + self.Turn_OFF_Audit() + self.execute_sql(sql) self.Check_DrainageLineWithinDrainageLine() self.Check_DrainageLineOverlapDrainageLine() self.Check_DrainageLineLoops() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Consistencia Topologica Parte 1 Verificada!\n') - self.dlg.console.repaint() + + self.print_console_message('Topological Consistency Part I Successfully Checked!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageLineCrossDrainageLine(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Geometrias Que Cruzam Geometrias...") - self.dlg.console.repaint() + self.print_console_message("Checking Geometry CROSS Geometry. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelinecrossdrainageline; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Com Cruzamento: ") + result = self.return_sql(sql) + + self.dlg.console.append("Geometry CROSS Geometry: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -1051,175 +752,102 @@ def Check_DrainageLineCrossDrainageLine(self): self.dlg.pushButton_BreakDrainageLines.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') + - def Check_DrainageTouchDrainageLine(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + def Check_DrainageLineTouchDrainageLine(self): try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Geometrias Que Tocam Geometrias...") - self.dlg.console.repaint() + self.print_console_message("Checking Geometry TOUCH Geometry. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelinetouchdrainageline; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Que se Tocam: ") + result = self.return_sql(sql) + + self.dlg.console.append("Geometry TOUCH Geometry: ") self.dlg.console.append(result) self.dlg.console.repaint() - self.dlg.lineEdit_Check_DrainageTouchDrainageLine.setText(result) - self.dlg.lineEdit_Check_DrainageTouchDrainageLine.repaint() + self.dlg.lineEdit_Check_DrainageLineTouchDrainageLine.setText(result) + self.dlg.lineEdit_Check_DrainageLineTouchDrainageLine.repaint() if int('0' if result =='' else result) > 0: self.dlg.pushButton_BreakDrainageLines.setEnabled(True) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') + def Check_DrainageLineTopologyConsistencies_2(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Consistencia Topologica Parte 2...\n') - self.dlg.console.repaint() + self.print_console_message('Checking Topological Consistency Part II. Please wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_UpdateDrainageLineConsistencyTopologyTables_2(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + + self.Turn_OFF_Audit() + self.execute_sql(sql) self.Check_DrainageLineCrossDrainageLine() - self.Check_DrainageTouchDrainageLine() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Consistencia Topologica Parte 2 Verificada!\n') - self.dlg.console.repaint() + self.Check_DrainageLineTouchDrainageLine() + + self.print_console_message('Topological Consistency Part II Successfully Checked!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def BreakDrainageLines(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + DrainageLinePrecision = self.dlg.lineEdit_DrainageLinePrecision.text() try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Quebrando Geometrias...") - self.dlg.console.repaint() + self.print_console_message("Breaking Geometries. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ - + sql1 = """ SELECT pgh_consistency.pghfn_CreateDrainageLineVertexIntersections("""+DrainageLinePrecision+"""); - + """ + + sql2 = """ SELECT pgh_consistency.pghfn_BreakDrainageLine(); - - SELECT pgh_consistency.pghfn_ExplodeDrainageLine(); + """ + sql3 = """ + SELECT pgh_consistency.pghfn_ExplodeDrainageLine(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Geometrias Quebradas Com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql1) + self.execute_sql(sql2) + self.execute_sql(sql3) + + self.print_console_message('Geometries Successfully Broken!\n') self.dlg.lineEdit_Check_DrainageLineCrossDrainageLine.setText('') self.dlg.lineEdit_Check_DrainageLineCrossDrainageLine.repaint() - self.dlg.lineEdit_Check_DrainageTouchDrainageLine.setText('') - self.dlg.lineEdit_Check_DrainageTouchDrainageLine.repaint() + self.dlg.lineEdit_Check_DrainageLineTouchDrainageLine.setText('') + self.dlg.lineEdit_Check_DrainageLineTouchDrainageLine.repaint() self.dlg.pushButton_BreakDrainageLines.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_PointValenceValue2(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Pseudos Nos (Valencia = 2)...") - self.dlg.console.repaint() + self.print_console_message("Checking Pseudo-Nodes (Valence = 2)...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_pointvalencevalue2; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Pseudos Nos (Valencia = 2): ") + result = self.return_sql(sql) + + self.dlg.console.append("Pseudo-Nodes (Valence = 2): ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -1232,83 +860,41 @@ def Check_PointValenceValue2(self): self.dlg.pushButton_UnionDrainageLineValence2.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def UnionDrainageLineValence2(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Unindo Drenagens...\n') - self.dlg.console.repaint() + self.print_console_message('Uniting Drainage Lines. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_uniondrainagelinevalence2(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + + self.execute_sql(sql) self.dlg.lineEdit_Check_PointValenceValue2.setText('') self.dlg.lineEdit_Check_PointValenceValue2.repaint() self.dlg.pushButton_UnionDrainageLineValence2.setEnabled(False) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Drenagens Unidas com Sucesso!\n') - self.dlg.console.repaint() + + self.print_console_message('Drainage Lines Successfully United!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_PointValenceValue4(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Confluencias Multiplas (Valencia = 4)...") - self.dlg.console.repaint() + self.print_console_message("Checking Multiple Confluences (Valence = 4)...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_pointvalencevalue4; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Confluencias Multiplas (Valencia = 4): ") + result = self.return_sql(sql) + + self.dlg.console.append("Multiple Confluences (Valence = 4): ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -1316,40 +902,32 @@ def Check_PointValenceValue4(self): self.dlg.lineEdit_Check_PointValenceValue4.repaint() except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Execute_Network_Topology(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + DrainagePointOffset = self.dlg.lineEdit_DrainagePointOffset.text() try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Executando Topologia de Rede...\n') - self.dlg.console.repaint() + self.print_console_message('Creating Drainage Line Network. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ - + sql1 = """ DROP INDEX IF EXISTS pghydro.drp_gm_idx; DROP INDEX IF EXISTS pghydro.drn_gm_idx; ALTER TABLE pghydro.pghft_drainage_line DROP CONSTRAINT IF EXISTS drn_pk_pkey; + """ + sql2 = """ SELECT pghydro.pghfn_assign_vertex_id("""+DrainagePointOffset+"""); + """ + sql3 = """ SELECT pghydro.pghfn_CalculateValence(); + """ + sql4 = """ DROP INDEX IF EXISTS pghydro.drn_gm_idx; CREATE INDEX drn_gm_idx ON pghydro.pghft_drainage_line USING GIST(drn_gm); @@ -1359,134 +937,76 @@ def Execute_Network_Topology(self): CREATE INDEX drp_gm_idx ON pghydro.pghft_drainage_point USING GIST(drp_gm); ALTER TABLE pghydro.pghft_drainage_line ADD CONSTRAINT drn_pk_pkey PRIMARY KEY (drn_pk); + """ + sql5 = """ SELECT pgh_consistency.pghfn_updatedrainagelinenetworkconsistencytables(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + self.Turn_OFF_Audit() + self.execute_sql(sql1) + self.execute_sql(sql2) + self.execute_sql(sql3) + self.execute_sql(sql4) + self.execute_sql(sql5) + self.Check_PointValenceValue2() self.Check_PointValenceValue4() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Topologia de Rede Executada Com Sucesso!\n') - self.dlg.console.repaint() + + self.print_console_message('Drainage Line Network Successfully Created!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def UpdateShorelineEndingPoint(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + UpdateShorelineEndingPoint = self.dlg.lineEdit_UpdateShorelineEndingPoint.text() - + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Identificando "No Fim da Drenagem"...\n') - self.dlg.console.repaint() + self.print_console_message('Identifying "End Node". Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pghydro.pghfn_UpdateShorelineEndingPoint("""+UpdateShorelineEndingPoint+"""); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('"No Fim da Drenagem" Identificada com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('"End Node" Successfully Identified!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def UpdateShorelineStartingPoint(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + UpdateShorelineStartingPoint = self.dlg.lineEdit_UpdateShorelineStartingPoint.text() try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Identificando "No Inicio da Drenagem"...\n') - self.dlg.console.repaint() + self.print_console_message('Identifying "Start Node"...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pghydro.pghfn_UpdateShorelineStartingPoint("""+UpdateShorelineStartingPoint+"""); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('"No Inicio da Drenagem" Identificada com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('"Start Node" Successfully Identified!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageLineIsDisconnected(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Trechos Desconexos...") - self.dlg.console.repaint() + self.print_console_message("Checking Disconnected Drainage Lines. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelineisdisconnected; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Trechos Desconexos: ") + result = self.return_sql(sql) + + self.dlg.console.append("Disconnected Drainage Lines: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -1494,41 +1014,21 @@ def Check_DrainageLineIsDisconnected(self): self.dlg.lineEdit_Check_DrainageLineIsDisconnected.repaint() except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_PointDivergent(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Pontos Divergentes...') - self.dlg.console.repaint() + self.print_console_message('Checking Divergent Points...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_pointdivergent; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Pontos Divergentes: ") + result = self.return_sql(sql) + + self.dlg.console.append("Divergent Points: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -1536,39 +1036,30 @@ def Check_PointDivergent(self): self.dlg.lineEdit_Check_PointDivergent.repaint() except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Execute_Flow_Direction(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Executando Direcao de Fluxo...\n') - self.dlg.console.repaint() - - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ + self.print_console_message('Calculating Flow Direction. Please, wait...\n') + sql1 = """ DROP INDEX IF EXISTS pghydro.drp_gm_idx; DROP INDEX IF EXISTS pghydro.drn_gm_idx; ALTER TABLE pghydro.pghft_drainage_line DROP CONSTRAINT IF EXISTS drn_pk_pkey; - + """ + + sql2 = """ SELECT pghydro.pghfn_CalculateFlowDirection(); + """ + sql3 = """ SELECT pghydro.pghfn_ReverseDrainageLine(); - + """ + + sql4 = """ DROP INDEX IF EXISTS pghydro.drn_gm_idx; CREATE INDEX drn_gm_idx ON pghydro.pghft_drainage_line USING GIST(drn_gm); @@ -1578,62 +1069,42 @@ def Execute_Flow_Direction(self): CREATE INDEX drp_gm_idx ON pghydro.pghft_drainage_point USING GIST(drp_gm); ALTER TABLE pghydro.pghft_drainage_line ADD CONSTRAINT drn_pk_pkey PRIMARY KEY (drn_pk); - + """ + + sql5 = """ SELECT pgh_consistency.pghfn_updatedrainagelineconnectionconsistencytables(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + + self.Turn_OFF_Audit() + self.execute_sql(sql1) + self.execute_sql(sql2) + self.execute_sql(sql3) + self.execute_sql(sql4) + self.execute_sql(sql5) self.Check_DrainageLineIsDisconnected() self.Check_PointDivergent() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Direcao de Fluxo Concluida\n') - self.dlg.console.repaint() + + self.print_console_message('Flow Direction Successfully Calculated!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') ###Drainage Area Consistency def Check_DrainageAreaIsNotSingle(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Geometrias Nao Unicas...') - self.dlg.console.repaint() + self.print_console_message('Checking Non-Single Geometries. Please, wait...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainageareaisnotsingle; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Nao Unicas: ") + result = self.return_sql(sql) + + self.dlg.console.append("Non-Single Geometries: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -1646,84 +1117,41 @@ def Check_DrainageAreaIsNotSingle(self): self.dlg.pushButton_ExplodeDrainageArea.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() - + self.print_console_message('ERROR\nCheck Database Input Parameters!') def ExplodeDrainageArea(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Explodindo Geometrias Nao Unicas...') - self.dlg.console.repaint() - - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ + self.print_console_message('Exploding Non-Single Geometries. Please, wait...') + sql = """ SELECT pgh_consistency.pghfn_explodedrainagearea(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Bacias Explodidas com sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Geometries Successfully Exploded!\n') self.dlg.lineEdit_Check_DrainageAreaIsNotSingle.setText('') self.dlg.lineEdit_Check_DrainageAreaIsNotSingle.repaint() self.dlg.pushButton_ExplodeDrainageArea.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageAreaIsNotSimple(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Geometrias Nao Simples...') - self.dlg.console.repaint() + self.print_console_message('Checking Non-Simple Geometries...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainageareaisnotsimple; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Nao Simples: ") + result = self.return_sql(sql) + + self.dlg.console.append("Non-Simple Geometries: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -1736,83 +1164,41 @@ def Check_DrainageAreaIsNotSimple(self): self.dlg.pushButton_MakeDrainageAreaSimple.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def MakeDrainageAreaSimple(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Simplificando Geometrias Nao Simples...') - self.dlg.console.repaint() + self.print_console_message('Simplifying Non-Simple Geometries. Please, wait...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_makedrainageareasimple(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Bacias Simplificadas com sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Non-Simple Geometries Successfully Simplifyed!\n') self.dlg.lineEdit_Check_DrainageAreaIsNotSimple.setText('') self.dlg.lineEdit_Check_DrainageAreaIsNotSimple.repaint() self.dlg.pushButton_MakeDrainageAreaSimple.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageAreaIsNotValid(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Geometrias Nao Validas...') - self.dlg.console.repaint() + self.print_console_message('Checking Invalid Geometries...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainageareaisnotvalid; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Nao Validas: ") + result = self.return_sql(sql) + + self.dlg.console.append("Invalid Geometries: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -1825,87 +1211,61 @@ def Check_DrainageAreaIsNotValid(self): self.dlg.pushButton_MakeDrainageAreaValid.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def MakeDrainageAreaValid(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Validando Geometrias Nao Validas...') - self.dlg.console.repaint() + self.print_console_message('Validating Invalid Geometries. Please, wait...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_makedrainageareavalid(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Bacias Validadas Com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Invalid Geometries Successfully Validated!\n') self.dlg.lineEdit_Check_DrainageAreaIsNotValid.setText('') self.dlg.lineEdit_Check_DrainageAreaIsNotValid.repaint() self.dlg.pushButton_MakeDrainageAreaValid.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageAreaGeometryConsistencies(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Consistencia Topologica\n') - self.dlg.console.repaint() + + self.print_console_message('Checking Geometric Consistency. Please, wait...\n') + DrainageAreaPrecision = self.dlg.lineEdit_DrainageAreaPrecision.text() DrainageAreaOffset = self.dlg.lineEdit_DrainageAreaOffset.text() try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Consistencias Topologicas...') - self.dlg.console.repaint() + self.print_console_message('Checking Geometric Consistency. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ - + sql1 = """ DROP INDEX IF EXISTS pghydro.dra_gm_idx; ALTER TABLE pghydro.pghft_drainage_area DROP CONSTRAINT IF EXISTS dra_pk_pkey; - + """ + + sql2 = """ SELECT pgh_consistency.pghfn_makesnaptogriddrainagearea("""+DrainageAreaPrecision+"""); + """ + sql3 = """ SELECT pgh_consistency.pghfn_removereapetedpointsdrainagearea(); + """ + sql4 = """ SELECT pgh_consistency.pghfn_DeleteDrainageAreaGeometryEmpty(); - + """ + + sql5 = """ SELECT pgh_consistency.pghfn_RemoveDrainageAreaInteriorRings(); + """ + sql6 = """ SELECT setval(('pghydro.dra_pk_seq'::text)::regclass, """+DrainageAreaOffset+""", false); UPDATE pghydro.pghft_drainage_area @@ -1914,65 +1274,48 @@ def Check_DrainageAreaGeometryConsistencies(self): CREATE INDEX dra_gm_idx ON pghydro.pghft_drainage_area USING GIST(dra_gm); ALTER TABLE pghydro.pghft_drainage_area ADD CONSTRAINT dra_pk_pkey PRIMARY KEY (dra_pk); - + """ + + sql7 = """ SELECT pgh_consistency.pghfn_updatedrainageareaconsistencygeometrytables(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + self.Turn_OFF_Audit() + self.execute_sql(sql1) + self.execute_sql(sql2) + self.execute_sql(sql3) + self.execute_sql(sql4) + self.execute_sql(sql5) + self.execute_sql(sql6) + self.execute_sql(sql7) + + self.Check_DrainageAreaIsNotSingle() self.Check_DrainageAreaIsNotSimple() self.Check_DrainageAreaIsNotValid() - self.Check_DrainageAreaIsNotSingle() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Consistencia Topologica Verificada Com Sucesso\n') - self.dlg.console.repaint() + + self.print_console_message('Geometric Consistency Successfully Checked!\n') except: - QMessageBox.information(self.iface.mainWindow(),"AVISO","Conexao Nao Realizada") - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') - def Check_DrainageAreaHaveSelfIntersection(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + def Check_DrainageAreaOverlapDrainageArea(self): + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Geometrias Com auto-interseccao...') - self.dlg.console.repaint() + self.print_console_message('Checking Geometry OVERLAP Geometry. Please, wait...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) sql = """ - SELECT count(id) - FROM pgh_consistency.pghft_drainageareahaveselfintersection; - + FROM pgh_consistency.pghft_drainageareaoverlapdrainagearea; """ - cur = conn.cursor() - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Com Auto-interseccao: ") + result = self.return_sql(sql) + + self.dlg.console.append("Geometry OVERLAP Geometry: ") self.dlg.console.append(result) self.dlg.console.repaint() - self.dlg.lineEdit_Check_DrainageAreaHaveSelfIntersection.setText(result) - self.dlg.lineEdit_Check_DrainageAreaHaveSelfIntersection.repaint() + self.dlg.lineEdit_Check_DrainageAreaOverlapDrainageArea.setText(result) + self.dlg.lineEdit_Check_DrainageAreaOverlapDrainageArea.repaint() if int('0' if result =='' else result) > 0: self.dlg.pushButton_RemoveDrainageAreaOverlap.setEnabled(True) @@ -1980,88 +1323,46 @@ def Check_DrainageAreaHaveSelfIntersection(self): self.dlg.pushButton_RemoveDrainageAreaOverlap.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def RemoveDrainageAreaOverlap(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Removendo Geometrias Sobrepostas...') - self.dlg.console.repaint() + self.print_console_message('Updating OVERLAP Geometries. Please, wait...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_removedrainageareaoverlap(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Sobreposicoes Geometricas Removidas Com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Overlap Geometries Successfully Updated!\n') - self.dlg.lineEdit_Check_DrainageAreaHaveSelfIntersection.setText('') - self.dlg.lineEdit_Check_DrainageAreaHaveSelfIntersection.repaint() + self.dlg.lineEdit_Check_DrainageAreaOverlapDrainageArea.setText('') + self.dlg.lineEdit_Check_DrainageAreaOverlapDrainageArea.repaint() self.dlg.pushButton_RemoveDrainageAreaOverlap.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() - + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageAreaWithinDrainageArea(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Geometrias Duplicadas...') - self.dlg.console.repaint() + self.print_console_message('Checking Geometry WITHIN Geometry. Please, wait...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainageareawithindrainagearea; - """ - cur = conn.cursor() - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Geometrias Duplicadas: ") + result = self.return_sql(sql) + + self.dlg.console.append("Geometry WITHIN Geometry: ") self.dlg.console.append(result) self.dlg.console.repaint() - self.dlg.lineEdit_Check_DrainageAreaHaveDuplication.setText(result) - self.dlg.lineEdit_Check_DrainageAreaHaveDuplication.repaint() + self.dlg.lineEdit_Check_DrainageAreaWithinDrainageArea.setText(result) + self.dlg.lineEdit_Check_DrainageAreaWithinDrainageArea.repaint() if int('0' if result =='' else result) > 0: self.dlg.pushButton_DeleteDrainageAreaWithinDrainageArea.setEnabled(True) @@ -2069,124 +1370,63 @@ def Check_DrainageAreaWithinDrainageArea(self): self.dlg.pushButton_DeleteDrainageAreaWithinDrainageArea.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def DeleteDrainageAreaWithinDrainageArea(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Excluindo Geometrias Dentro de Geometrias...') - self.dlg.console.repaint() + self.print_console_message('Deleting Geometry WITHIN Geometry. Please, wait...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_deletedrainageareawithindrainagearea(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Geometrias Dentro de Geometrias Excluidas Com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) - self.dlg.lineEdit_Check_DrainageAreaHaveDuplication.setText('') - self.dlg.lineEdit_Check_DrainageAreaHaveDuplication.repaint() + self.print_console_message('Geometry WITHIN Geometry Successfully Deleted!\n') + + self.dlg.lineEdit_Check_DrainageAreaWithinDrainageArea.setText('') + self.dlg.lineEdit_Check_DrainageAreaWithinDrainageArea.repaint() self.dlg.pushButton_DeleteDrainageAreaWithinDrainageArea.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageAreaTopologyConsistencies(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Verificando Topologia das Geometrias...') - self.dlg.console.repaint() + self.print_console_message('Checking Topological Geometry. Please, wait...') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_updatedrainageareaconsistencytopologytables(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + + self.Turn_OFF_Audit() + self.execute_sql(sql) self.Check_DrainageAreaWithinDrainageArea() - self.Check_DrainageAreaHaveSelfIntersection() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Topologia das Geometrias Verificada Com Sucesso!\n') - self.dlg.console.repaint() + self.Check_DrainageAreaOverlapDrainageArea() + + self.print_console_message('Topological Geometry Successfully Checked!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') ###Drainage Line x Drainage Area Consistency def Check_DrainageAreaNoDrainageLine(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Bacias Sem Drenagem...") - self.dlg.console.repaint() + self.print_console_message("Checking Drainage Area Without Drainage Line. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainageareanodrainageline; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Bacias Sem Drenagem: ") + result = self.return_sql(sql) + + self.dlg.console.append("Drainage Area Without Drainage Line: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -2198,123 +1438,63 @@ def Check_DrainageAreaNoDrainageLine(self): self.dlg.pushButton_Union_DrainageAreaNoDrainageLine.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Union_DrainageAreaNoDrainageLine(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Unindo Bacias Sem Drenagem...") - self.dlg.console.repaint() + self.print_console_message("Uniting Drainage Area Without Drainage Line. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT pgh_consistency.pghfn_uniondrainageareanodrainageline(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Bacias Sem Drenagem Unidas Com sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Drainage Area Without Drainage Line Successfully United!\n') self.dlg.lineEdit_Check_DrainageAreaNoDrainageLine.setText('') self.dlg.lineEdit_Check_DrainageAreaNoDrainageLine.repaint() self.dlg.pushButton_Union_DrainageAreaNoDrainageLine.setEnabled(False) except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageLineNoDrainageArea(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Drenagens Sem Bacia...") - self.dlg.console.repaint() + self.print_console_message("Checking Drainage Line Without Drainage Area. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelinenodrainagearea; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Drenagens Sem Bacia: ") + result = self.return_sql(sql) + + self.dlg.console.append("Drainage Line Without Drainage Area: ") self.dlg.console.append(result) self.dlg.console.repaint() self.dlg.lineEdit_Check_DrainageLineNoDrainageArea.setText(result) self.dlg.lineEdit_Check_DrainageLineNoDrainageArea.repaint() + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageAreaMoreOneDrainageLine(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Bacias Com Mais De Uma Drenagem...") - self.dlg.console.repaint() + self.print_console_message("Checking Drainage Area >1:1 Drainage Line. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainageareamoreonedrainageline; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Bacias Com Mais De Uma Drenagem: ") + result = self.return_sql(sql) + + self.dlg.console.append("Drainage Area >1:1 Drainage Line: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -2322,41 +1502,21 @@ def Check_DrainageAreaMoreOneDrainageLine(self): self.dlg.lineEdit_Check_DrainageAreaMoreOneDrainageLine.repaint() except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageLineMoreOneDrainageArea(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Drenagens Com Mais De Uma Bacia...") - self.dlg.console.repaint() + self.print_console_message("Checking Drainage Line >1:1 Drainage Area. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ - SELECT count(id) FROM pgh_consistency.pghft_drainagelinemoreonedrainagearea; - """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Drenagens Com Mais De Uma Bacia: ") + result = self.return_sql(sql) + + self.dlg.console.append("Drainage Line >1:1 Drainage Area: ") self.dlg.console.append(result) self.dlg.console.repaint() @@ -2364,36 +1524,28 @@ def Check_DrainageLineMoreOneDrainageArea(self): self.dlg.lineEdit_Check_DrainageLineMoreOneDrainageArea.repaint() except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_DrainageAreaDrainageLineConsistencies(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Consistencia Topologica...") - self.dlg.console.repaint() + self.print_console_message("Checking Topological Consistency. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ - + sql1 = """ ALTER TABLE pghydro.pghft_drainage_area DROP CONSTRAINT IF EXISTS dra_pk_pkey; ALTER TABLE pghydro.pghft_drainage_line DROP CONSTRAINT IF EXISTS drn_pk_pkey; + """ + sql2 = """ SELECT pghydro.pghfn_AssociateDrainageLine_DrainageArea(); - + """ + + sql3 = """ SELECT pgh_consistency.pghfn_updatedrainagelinedrainageareaconsistencytables(); + """ + sql4 = """ DROP INDEX IF EXISTS pghydro.drn_gm_idx; CREATE INDEX drn_gm_idx ON pghydro.pghft_drainage_line USING GIST(drn_gm); @@ -2405,7 +1557,9 @@ def Check_DrainageAreaDrainageLineConsistencies(self): DROP INDEX IF EXISTS pghydro.dra_gm_idx; CREATE INDEX dra_gm_idx ON pghydro.pghft_drainage_area USING GIST(dra_gm); - + """ + + sql5 = """ ALTER TABLE pghydro.pghft_drainage_area DROP CONSTRAINT IF EXISTS dra_pk_pkey; ALTER TABLE pghydro.pghft_drainage_area ADD CONSTRAINT dra_pk_pkey PRIMARY KEY (dra_pk); @@ -2413,520 +1567,312 @@ def Check_DrainageAreaDrainageLineConsistencies(self): ALTER TABLE pghydro.pghft_drainage_line DROP CONSTRAINT IF EXISTS drn_pk_pkey; ALTER TABLE pghydro.pghft_drainage_line ADD CONSTRAINT drn_pk_pkey PRIMARY KEY (drn_pk); - + """ + + sql6 = """ SELECT pgh_consistency.pghfn_updatedrainagelinedrainageareaconsistencytables(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() + + self.Turn_OFF_Audit() + self.execute_sql(sql1) + self.execute_sql(sql2) + self.execute_sql(sql3) + self.execute_sql(sql4) + self.execute_sql(sql5) + self.execute_sql(sql6) - self.Check_DrainageLineNoDrainageArea() self.Check_DrainageAreaMoreOneDrainageLine() - self.Check_DrainageLineMoreOneDrainageArea() + self.Check_DrainageLineNoDrainageArea() self.Check_DrainageAreaNoDrainageLine() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Consistencia Topologica Verificada Com Sucesso\n') - self.dlg.console.repaint() + self.Check_DrainageLineMoreOneDrainageArea() + + self.print_console_message('Topological Consistency Successfully Checked!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') ###Principal Procedures def Principal_Procedure(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() srid_drainage_line_length = self.dlg.lineEdit_srid_drainage_line_length.text() srid_drainage_area_area = self.dlg.lineEdit_srid_drainage_area_area.text() factor_drainage_line_length = self.dlg.lineEdit_factor_drainage_line_length.text() factor_drainage_area_area = self.dlg.lineEdit_factor_drainage_area_area.text() distance_to_sea = self.dlg.lineEdit_distance_to_sea.text() pfafstetter_basin_code = self.dlg.lineEdit_pfafstetter_basin_code.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + pfafstetter_basin_code_level = len(pfafstetter_basin_code) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Desligando Indices...\n') - self.dlg.console.repaint() + self.print_console_message('Turning Off Indexes. Please, wait...\n') + self.Turn_OFF_Audit() - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_TurnOffKeysIndex(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Indices desligados com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Indexes Successfully Turned Off!\n') if self.dlg.checkBox_CalculateDrainageLineLength.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Calculando Comprimento do Trecho...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Drainage Line Length. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_CalculateDrainageLineLength("""+srid_drainage_line_length+""", """+factor_drainage_line_length+"""); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Comprimento do Trecho Calculado com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Drainage Line Length Successfully Updated!\n') if self.dlg.checkBox_CalculateDrainageAreaArea.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Calculando Area da Bacia...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Drainage Area Area. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_CalculateDrainageAreaArea("""+srid_drainage_area_area+""", """+factor_drainage_area_area+"""); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Area da Bacia Calculada com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Drainage Area Area Successfully Updated!\n') if self.dlg.checkBox_CalculateDistanceToSea.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Calculando Distancia a Foz da Bacia...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Sea Distance. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_CalculateDistanceToSea("""+distance_to_sea+"""); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Distancia a Foz da Bacia Calculada com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Sea Distance Successfully Updated!\n') if self.dlg.checkBox_CalculateUpstreamArea.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Calculando Area a Montante...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Upstream Area. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_CalculateUpstreamArea(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Area a Montante Calculada com Sucesso!\n') - self.dlg.console.repaint() + + self.execute_sql(sql) + + self.print_console_message('Upstream Area Successfully Updated!\n') if self.dlg.checkBox_CalculateUpstreamDrainageLine.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Calculando Drenagem a Montante...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Upstream Drainage Line. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_CalculateUpstreamDrainageLine(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Drenagem a Montante Calculada com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Upstream Drainage Line Successfully Updated!\n') if self.dlg.checkBox_CalculateDownstreamDrainageLine.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Calculando Drenagem a Jusante...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Downstream Drainage Line...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_CalculateDownstreamDrainageLine(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Drenagem a Jusante Calculada com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Downstream Drainage Line Successfully Updated!\n') if self.dlg.checkBox_Calculate_Pfafstetter_Codification.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Calculando Codificacao de Bacias de Pfafstetter...\n') - self.dlg.console.repaint() + + self.print_console_message('Calculating Pfafstetter Basin Coding. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_Calculate_Pfafstetter_Codification(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Codificacao de Bacias de Pfafstetter Calculada com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Pfafstetter Basin Coding Successfully Calculated!\n') if self.dlg.checkBox_UpdatePfafstetterBasinCode.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Codificacao de Bacias de Pfafstetter...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Pfafstetter Basin Coding. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_UpdatePfafstetterBasinCode('"""+pfafstetter_basin_code+"""'); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizacao da Codificacao de Bacias de Pfafstetter Calculada com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Pfafstetter Basin Coding Successfully Updated!\n') if self.dlg.checkBox_UpdatePfafstetterWatercourseCode.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Codificacao de Curso Dagua de Pfafstetter...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Pfafstetter Water Course Coding. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_UpdatePfafstetterWatercourseCode(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Codificacao de Curso Dagua de Pfafstetter Atualizado com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Pfafstetter Water Course Coding Successfully Updated!\n') if self.dlg.checkBox_UpdateWatercourse.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Curso Dagua...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Water Course. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_UpdateWatercourse(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Curso Dagua Atualizado com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Water Course Successfully Updated!\n') if self.dlg.checkBox_InsertColumnPfafstetterBasinCodeLevel.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Colunas Com Codificacao de Pfafstetter...\n') - self.dlg.console.repaint() + + self.print_console_message('Adding Pfafstetter Basin Coding Columns. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_InsertColumnPfafstetterBasinCodeLevel(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Colunas com Codificacao de Pfafstetter Atualizadas com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Pfafstetter Basin Coding Columns Successfully Updated!\n') if self.dlg.checkBox_UpdateWatercourse_Point.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Ponto de Inicio do Curso Dagua...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Water Course Starting Point. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_UpdateWatercourse_Starting_Point(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Ponto de Inicio do Curso Dagua Atualizado com Sucesso!\n') - self.dlg.console.repaint() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Ponto de Fim de Curso Dagua...\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Water Course Starting Point Successfully Updated!\n') + + self.print_console_message('Updating Water Course Ending Point. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_UpdateWatercourse_Ending_Point(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Ponto de Fim de Curso Dagua Atualizado com Sucesso!\n') - self.dlg.console.repaint() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Foz Maritima...\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Water Course Ending Point Successfully Updated!\n') + + self.print_console_message('Updating Outlet Sea. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_UpdateStream_Mouth(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Foz Maritima Atualizada com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Outlet Sea Successfully Updated!\n') if self.dlg.checkBox_calculatestrahlernumber.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Calculando Ordem de Strahler...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Strahler Order. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_calculatestrahlernumber(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Ordem de Strahler Calculada com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Strahler Order Successfully Updated!\n') if self.dlg.checkBox_updateshoreline.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Linha de Costa...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Shoreline. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_updateshoreline(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Linha de Costa Atualizada com Sucesso!\n') - self.dlg.console.repaint() + + self.execute_sql(sql) + + self.print_console_message('Shoreline Successfully Updated!\n') if self.dlg.checkBox_UpdateDomainColumn.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Dominio de Curso Dagua...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Water Course Domain. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_UpdateDomainColumn(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Dominio de Curso Dagua Atualizado com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Water Course Domain Successfully Updated!\n') if self.dlg.checkBox_TurnOnKeysIndex.isChecked(): - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Ligando Indices...\n') - self.dlg.console.repaint() + + self.print_console_message('Turning On Indexes...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_TurnOnKeysIndex(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Indices Ligados com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Indexes Successfully Turned On!\n') if self.dlg.checkBox_UpdateWatershed.isChecked(): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) if self.dlg.checkBox_TurnOnKeysIndex.isChecked(): x=1 else: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Ligando Indices...\n') - self.dlg.console.repaint() + + self.print_console_message('Turning On Indexes. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ + sql1 = """ SELECT pghydro.pghfn_TurnOnKeysIndex(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Indices Ligados com Sucesso!\n') - self.dlg.console.repaint() - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur_min = conn.cursor() - cur_max = conn.cursor() + self.execute_sql(sql1) + + self.print_console_message('Indexes Successfully Turned On!\n') + sql_min = """ SELECT pghydro.pghfn_PfafstetterBasinCodeLevelN(1); """ + sql_max = """ SELECT pghydro.pghfn_PfafstetterBasinCodeLevelN((SELECT pghydro.pghfn_numPfafstetterBasinCodeLevel()::integer)); """ - cur_min.execute(sql_min) - result_min = str(cur_min.fetchone()[0]) - cur_min.close() - cur_max.execute(sql_max) - result_max = str(cur_max.fetchone()[0]) - cur_max.close() - conn.commit() - conn.autocommit = True - conn.close() + + result_min = pfafstetter_basin_code_level + + result_max = self.return_sql(sql_max) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Atualizando Nivel "+result_max+" de Bacia...") - self.dlg.console.repaint() + + self.print_console_message("Updating Pfafstetter Basin Coding Level "+result_max+". Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ + sql2 = """ TRUNCATE TABLE pghydro.pghft_watershed; + """ - SELECT pghydro.pghfn_updatewatersheddrainagearea((SELECT pghydro.pghfn_PfafstetterBasinCodeLevelN((SELECT pghydro.pghfn_numPfafstetterBasinCodeLevel()::integer)))); + sql3 = """ + SELECT pghydro.pghfn_updatewatersheddrainagearea("""+str(result_max)+"""); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Nivel "+result_max+" de bacia Atualizado com Sucesso!") - self.dlg.console.repaint() + + self.execute_sql(sql2) + + self.execute_sql(sql3) + + self.print_console_message("Pfafstetter Basin Coding Level "+result_max+" Successfully Updated!") except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') result_min = int(result_min) result_max = int(result_max) @@ -2934,131 +1880,85 @@ def Principal_Procedure(self): while (count > result_min): try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Atualizando Nivel "+str(count-1)+" de Bacia...") - self.dlg.console.repaint() - - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ + + self.print_console_message("Updating Pfafstetter Basin Coding Level "+str(count-1)+". Please, wait...") + + sql4 = """ SELECT pghydro.pghfn_updatewatershed("""+str(count)+"""); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Nivel "+str(count-1)+" de Bacia Atualizado com Sucesso!") - self.dlg.console.repaint() + + self.execute_sql(sql4) + + self.print_console_message("Pfafstetter Basin Coding Level "+str(count-1)+" Successfully Updated!") + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + + self.print_console_message('ERROR\nCheck Database Input Parameters!') count = count -1 + self.print_console_message("All Pfafstetter Basin Coding Level Successfully Updated!") + ###Export Data def UpdateExportTables(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Atualizando Dados de Saída...\n') - self.dlg.console.repaint() - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Desligando Indices...\n') - self.dlg.console.repaint() + + self.print_console_message('Updating Output Geometry Tables. Please, wait...\n') + + self.print_console_message('Turning Off Indexes. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_TurnOffKeysIndex(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Indices desligados com Sucesso!\n') - self.dlg.console.repaint() + self.Turn_OFF_Audit() + + self.execute_sql(sql) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Ligando Indices...\n') - self.dlg.console.repaint() + self.print_console_message('Indexes Successfully Turned Off!\n') + + self.print_console_message('Turning On Indexes. Please, wait...\n') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pghydro.pghfn_TurnOnKeysIndex(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Indices Ligados com Sucesso!\n') - self.dlg.console.repaint() - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() + self.execute_sql(sql) + + self.print_console_message('Indexes Successfully Turned Off!\n') + sql = """ SELECT pgh_output.pghfn_UpdateExportTables(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Dados de Saida Atualizados com Sucesso!\n') - self.dlg.console.repaint() + + self.execute_sql(sql) + + self.print_console_message('Output Geometry Tables Successfully Updated!\n') def Start_Systematize_Hydronym(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Preparando Dados para Sistematizacao dos Hidronimos...") - self.dlg.console.repaint() + self.print_console_message("Starting Hydronima Systematization. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ - + sql1 = """ SELECT pghydro.pghfn_TurnOffKeysIndex(); - + """ + + sql2 = """ ALTER TABLE pghydro.pghft_drainage_line DROP COLUMN IF EXISTS drn_dra_cd_pfafstetterbasin, DROP COLUMN IF EXISTS drn_wtc_cd_pfafstetterwatercourse, DROP COLUMN IF EXISTS drn_wtc_gm_area; + """ + sql3 = """ ALTER TABLE pghydro.pghft_drainage_line ADD COLUMN drn_dra_cd_pfafstetterbasin varchar, ADD COLUMN drn_wtc_cd_pfafstetterwatercourse varchar, ADD COLUMN drn_wtc_gm_area numeric; + """ + sql4 = """ DROP INDEX IF EXISTS pghydro.drn_pk_idx; CREATE INDEX drn_pk_idx ON pghydro.pghft_drainage_line(drn_pk); @@ -3070,12 +1970,16 @@ def Start_Systematize_Hydronym(self): DROP INDEX IF EXISTS pghydro.dra_pk_idx; CREATE INDEX dra_pk_idx ON pghydro.pghft_drainage_area(dra_pk); + """ + sql5 = """ UPDATE pghydro.pghft_drainage_line drn SET drn_dra_cd_pfafstetterbasin = dra.dra_cd_pfafstetterbasin FROM pghydro.pghft_drainage_area dra WHERE drn.drn_dra_pk = dra.dra_pk; + """ + sql6 = """ DROP INDEX IF EXISTS pghydro.drn_wtc_pk_idx; CREATE INDEX drn_wtc_pk_idx ON pghydro.pghft_drainage_line(drn_wtc_pk); @@ -3083,17 +1987,23 @@ def Start_Systematize_Hydronym(self): DROP INDEX IF EXISTS pghydro.wtc_pk_idx; CREATE INDEX wtc_pk_idx ON pghydro.pghft_watercourse(wtc_pk); + """ + sql7 = """ UPDATE pghydro.pghft_drainage_line drn SET drn_wtc_cd_pfafstetterwatercourse = wtc.wtc_cd_pfafstetterwatercourse FROM pghydro.pghft_watercourse wtc WHERE drn.drn_wtc_pk = wtc.wtc_pk; + """ + sql8 = """ UPDATE pghydro.pghft_drainage_line drn SET drn_wtc_gm_area = wtc.wtc_gm_area FROM pghydro.pghft_watercourse wtc WHERE drn.drn_wtc_pk = wtc.wtc_pk; + """ + sql9 = """ DROP INDEX IF EXISTS pghydro.drn_pk_idx; DROP INDEX IF EXISTS pghydro.drn_dra_pk_idx; @@ -3109,41 +2019,30 @@ def Start_Systematize_Hydronym(self): ALTER TABLE pghydro.pghft_drainage_line DROP CONSTRAINT IF EXISTS drn_pk_pkey; ALTER TABLE pghydro.pghft_drainage_line ADD CONSTRAINT drn_pk_pkey PRIMARY KEY (drn_pk); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Dados Preparados para Sistematizacao com Sucesso!") - self.dlg.console.repaint() + self.Turn_OFF_Audit() + self.execute_sql(sql1) + self.execute_sql(sql2) + self.execute_sql(sql3) + self.execute_sql(sql4) + self.execute_sql(sql5) + self.execute_sql(sql6) + self.execute_sql(sql7) + self.execute_sql(sql8) + self.execute_sql(sql9) + + self.print_console_message("Hydronymia Systematization Successfully Started!") + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Systematize_Hydronym(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Sistematizando Hidronimos...") - self.dlg.console.repaint() + self.print_console_message("Systematizing Names. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ - + sql1 = """ DROP INDEX IF EXISTS pghydro.drn_wtc_pk_idx; DROP INDEX IF EXISTS pghydro.drn_dra_pk_idx; @@ -3155,9 +2054,13 @@ def Systematize_Hydronym(self): DROP INDEX IF EXISTS pghydro.drn_gm_idx; ALTER TABLE pghydro.pghft_drainage_line DROP CONSTRAINT IF EXISTS drn_pk_pkey; - + """ + + sql2 = """ SELECT pgh_consistency.pghfn_systematize_hydronym(); - + """ + + sql3 = """ DROP INDEX IF EXISTS pghydro.drn_wtc_pk_idx; CREATE INDEX drn_wtc_pk_idx ON pghydro.pghft_drainage_line(drn_wtc_pk); @@ -3177,44 +2080,31 @@ def Systematize_Hydronym(self): DROP INDEX IF EXISTS pghydro.drn_gm_idx; CREATE INDEX drn_gm_idx ON pghydro.pghft_drainage_line USING GIST(drn_gm); + """ + sql4 = """ ALTER TABLE pghydro.pghft_drainage_line DROP CONSTRAINT IF EXISTS drn_pk_pkey; ALTER TABLE pghydro.pghft_drainage_line ADD CONSTRAINT drn_pk_pkey PRIMARY KEY (drn_pk); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Hidronimos Sistematizados com Sucesso!") - self.dlg.console.repaint() + self.Turn_OFF_Audit() + self.execute_sql(sql1) + self.execute_sql(sql2) + self.execute_sql(sql3) + self.execute_sql(sql4) + + self.print_console_message("Names Successfully Systematized!") + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Update_OriginalHydronym(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Atualizando Hidronimos Originais...") - self.dlg.console.repaint() + self.print_console_message("Updating Original Names. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ - + sql1 = """ DROP INDEX IF EXISTS pghydro.drn_gm_idx; DROP INDEX IF EXISTS pghydro.drn_wtc_pk_idx; @@ -3228,107 +2118,68 @@ def Update_OriginalHydronym(self): DROP INDEX IF EXISTS pghydro.drn_gm_idx; ALTER TABLE pghydro.pghft_drainage_line DROP CONSTRAINT IF EXISTS drn_pk_pkey; - + """ + + sql2 = """ SELECT pgh_consistency.pghfn_update_drn_nm(); - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Hidronimos Originais Atualizados com Sucesso!\nRode Novamente a Sistematizacao de Nomes") - self.dlg.console.repaint() + self.Turn_OFF_Audit() + self.execute_sql(sql1) + self.execute_sql(sql2) + + self.print_console_message("Original Names Successfully Updated!\nRun Again Systematize Names") + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_ConfluenceHydronym(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Hidronimos Confluentes...") - self.dlg.console.repaint() + self.print_console_message("Checking Confluent Hydronymias. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ - + sql1 = """ DROP INDEX IF EXISTS pghydro.drn_nm_idx; CREATE INDEX drn_nm_idx ON pghydro.pghft_drainage_line(drn_nm); - + """ + + sql2 = """ SELECT pgh_consistency.pghfn_updateconfluencehydronymconistencytable(); DROP INDEX IF EXISTS pghydro.drn_nm_idx; - """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Hidronimos Confluentes Atualizados Com Sucesso!') - self.dlg.console.repaint() + + self.Turn_OFF_Audit() + self.execute_sql(sql1) + self.execute_sql(sql2) + + self.print_console_message('Confluent Hydronymias Successfully Updated!') - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT count(id) FROM pgh_consistency.pghft_confluencehydronym; """ - cur.execute(sql) - result = str(cur.fetchone()[0]) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Hidronimos Confluentes: ") + result = self.return_sql(sql) + + self.dlg.console.append("Confluent Hydronymias: ") self.dlg.console.append(result) - self.dlg.console.append("Depois da Edicao Vetorial, Rode Novamente a Sistematizacao de Nomes") + self.dlg.console.append("After Vectorial Editing, Run Again Systematize Names") self.dlg.console.repaint() self.dlg.lineEdit_ConfluenceHydronym.setText(result) self.dlg.lineEdit_ConfluenceHydronym.repaint() except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Stop_Systematize_Hydronym(self): - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Processando Sistematizacao de Hidronimos...") - self.dlg.console.repaint() + self.print_console_message("Stoping Hydronymia Systematization. Please, wait...") - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ - + sql1 = """ DROP INDEX IF EXISTS pghydro.dra_cd_pfafstetterbasin_idx; DROP INDEX IF EXISTS pghydro.wtc_cd_pfafstetterwatercourse_idx; @@ -3337,66 +2188,46 @@ def Stop_Systematize_Hydronym(self): DROP COLUMN IF EXISTS drn_dra_cd_pfafstetterbasin, DROP COLUMN IF EXISTS drn_wtc_cd_pfafstetterwatercourse, DROP COLUMN IF EXISTS drn_wtc_gm_area; + """ + sql2 = """ SELECT pghydro.pghfn_turnoffkeysindex(); - - SELECT pghydro.pghfn_turnonkeysindex(); + """ + sql3 = """ + SELECT pghydro.pghfn_turnonkeysindex(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Processo de Sistematizacao de Hidronimos Realizado com Sucesso!") - self.dlg.console.repaint() + self.Turn_OFF_Audit() + self.execute_sql(sql1) + self.execute_sql(sql2) + self.execute_sql(sql3) + + self.print_console_message("Hydronima Systematization Successfully Done!") + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Create_Role(self): role = self.dlg.lineEdit_role.text() role_password = self.dlg.lineEdit_role_password.text() - - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Criando Usuario...\n') - self.dlg.console.repaint() + + self.print_console_message('Creating User. Please, wait...\n') try: - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ CREATE USER """+role+""" WITH PASSWORD '"""+role_password+"""' SUPERUSER; """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Usuario Criado Com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('User Successfully Created!\n') + self.Check_Role() except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() - + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Check_Role(self): host = self.dlg.lineEdit_host.text() @@ -3406,20 +2237,22 @@ def Check_Role(self): user = self.dlg.lineEdit_user.text() password = self.dlg.lineEdit_password.text() connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) + try: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Verificando Usuarios...") - self.dlg.console.repaint() + self.print_console_message("Checking Users. Please, wait...") + conn = None conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) + conn.autocommit = True cur = conn.cursor() + sql = """ SELECT usename FROM pg_user; """ + cur.execute(sql) - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append("Usuarios: ") + + self.print_console_message("Users: ") self.dlg.listWidget_role.clear() @@ -3435,270 +2268,143 @@ def Check_Role(self): self.dlg.console.repaint() cur.close() - conn.commit() - conn.autocommit = True conn.close() + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Enable_Role(self): - - role = self.dlg.listWidget_role.selectedItems()[0].text() - - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() + dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Habilitando Usuario...\n') - self.dlg.console.repaint() + role = self.dlg.listWidget_role.selectedItems()[0].text() + + self.print_console_message('Granting Users. Please, wait...\n') try: - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ GRANT ALL PRIVILEGES ON DATABASE """+dbname+""" TO """+role+"""; """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Usuario Habilitado Com Sucesso:') + self.execute_sql(sql) + + + self.dlg.console.append('User Successfully Granted:') self.dlg.console.append(role) self.dlg.console.repaint() + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Disable_Role(self): - role = self.dlg.listWidget_role.selectedItems()[0].text() - - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Desabilitando Usuario...\n') - self.dlg.console.repaint() + role = self.dlg.listWidget_role.selectedItems()[0].text() + + self.print_console_message('Revoking User. Please, wait...\n') + try: - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ REVOKE ALL PRIVILEGES ON DATABASE """+dbname+""" FROM """+role+"""; """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Usuario Desabilitado Com Sucesso:') + self.execute_sql(sql) + + + self.dlg.console.append('User Successfully Revoked:') self.dlg.console.append(role) self.dlg.console.repaint() + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Drop_Role(self): role = self.dlg.listWidget_role.selectedItems()[0].text() - - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Excluindo Usuario...\n') - self.dlg.console.repaint() + + self.print_console_message('Dropping User. Please, wait...\n') try: - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ DROP USER IF EXISTS """+role+"""; """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Usuario Excluido Com Sucesso!\n') - self.dlg.console.repaint() + self.Disable_Role() + + self.execute_sql(sql) + + self.print_console_message('User Successfully Dropped!\n') + self.Check_Role() + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Turn_ON_Audit(self): - - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Ligando Auditoria...\n') - self.dlg.console.repaint() + + self.print_console_message('Turning On Log. Please, wait...\n') try: - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() - sql = """ SELECT pgh_consistency.pghfn_turnonbackup(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Auditoria Ligada Com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + + self.print_console_message('Log Successfully Turned On!\n') + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Turn_OFF_Audit(self): - - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Desligando Auditoria...\n') - self.dlg.console.repaint() + + self.print_console_message('Turning Off Log. Please, wait...\n') try: - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pgh_consistency.pghfn_TurnOffBackup(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Auditoria Desligada Com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Log Successfully Turned Off!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Reset_Drainage_Line_Audit(self): - - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Limpando Auditoria de Drenagem...\n') - self.dlg.console.repaint() + + self.print_console_message('Truncating Drainage Line Log. Please, wait...\n') try: - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pgh_consistency.pghfn_CleanDrainageLineBackupTables(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Auditoria de Drenagem Limpa Com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Drainage Line Log Successfully Truncated!\n') except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def Reset_Drainage_Area_Audit(self): - - host = self.dlg.lineEdit_host.text() - port = self.dlg.lineEdit_port.text() - dbname = self.dlg.lineEdit_base.text() - schema = self.dlg.lineEdit_schema.text() - user = self.dlg.lineEdit_user.text() - password = self.dlg.lineEdit_password.text() - connection_str = 'host={0} port={1} dbname={2} user={3} password={4}'.format(host, port, dbname, user, password) - - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Limpando Auditoria de Bacia...\n') - self.dlg.console.repaint() + + self.print_console_message('Truncating Drainage Area Log. Please, wait...\n') try: - conn = psycopg2.connect(connection_str) - conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) - cur = conn.cursor() sql = """ SELECT pgh_consistency.pghfn_CleanDrainageAreaBackupTables(); """ - cur.execute(sql) - cur.close() - conn.commit() - conn.autocommit = True - conn.close() - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Auditoria de Bacia Limpa Com Sucesso!\n') - self.dlg.console.repaint() + self.execute_sql(sql) + + self.print_console_message('Drainage Area Log Successfully Truncated!\n') + except: - self.dlg.console.append(time.strftime("\n%d.%m.%Y"+" - "+"%H"+":"+"%M"+":"+"%S")) - self.dlg.console.append('Procedimento Nao Realizado\nVerifique os Parametros de Entrada!') - self.dlg.console.repaint() + self.print_console_message('ERROR\nCheck Database Input Parameters!') def input_drainage_line_table_attribute_name_select(self): layers = self.iface.legendInterface().layers() diff --git a/pghydro_tools_dialog.py b/pghydro_tools_dialog.py index f0f9ad5..6fc9b6b 100644 --- a/pghydro_tools_dialog.py +++ b/pghydro_tools_dialog.py @@ -24,10 +24,10 @@ import os from PyQt4 import QtGui, uic - +import sys +sys.path.append(os.path.dirname(__file__)) FORM_CLASS, _ = uic.loadUiType(os.path.join( - os.path.dirname(__file__), 'pghydro_tools_dialog_base.ui')) - + os.path.dirname(__file__), 'pghydro_tools_dialog_base.ui'), resource_suffix='') class PghydroToolsDialog(QtGui.QDialog, FORM_CLASS): def __init__(self, parent=None): diff --git a/pghydro_tools_dialog_base.ui b/pghydro_tools_dialog_base.ui index 226ed9d..b55ec41 100644 --- a/pghydro_tools_dialog_base.ui +++ b/pghydro_tools_dialog_base.ui @@ -34,7 +34,7 @@ - Conectar SBDE + Connect Spatial Database @@ -46,7 +46,7 @@ - 1 - Informações da Conexão + 1 - Connection Data @@ -58,7 +58,7 @@ - Máquina + Host @@ -71,7 +71,7 @@ - Porta + Port @@ -84,7 +84,7 @@ - Base de dados + Database @@ -92,12 +92,12 @@ 20 160 - 46 - 13 + 61 + 16 - Usuário + Username @@ -110,7 +110,7 @@ - Senha + Password @@ -191,7 +191,7 @@ - Conectar + Connect @@ -220,7 +220,7 @@ - Esquema + Scheme @@ -233,15 +233,15 @@ - Criar Banco de Dados Espaciais - e PgHydro Schema + Create Spatial Database + And PgHydro Scheme - Importar Dados + Import Spatial Data @@ -253,7 +253,7 @@ - 2 - Importar Dados para o PgHydro Schema + 2 - Import Geometry Table to PgHydro Scheme @@ -265,19 +265,19 @@ - Drenagem + Drainage Line 120 120 - 111 + 121 23 - Importar Drenagem + Import Drainage Line @@ -290,7 +290,7 @@ - Tabela Geométrica + Geometry Table @@ -303,7 +303,7 @@ - Atributo Com Nome + Name Column @@ -337,7 +337,7 @@ - Bacia + Drainage Area @@ -349,7 +349,7 @@ - Tabela Geométrica + Geometry Table @@ -357,12 +357,12 @@ 120 120 - 111 + 121 23 - Importar Bacia + Import Drainage Area @@ -380,7 +380,7 @@ - Consistir Drenagem + Consist Drainage Line @@ -388,23 +388,23 @@ 10 10 201 - 281 + 341 - 3.1 - Consistência Geométrica + 3.1 - Geometric Consistency 10 - 80 + 150 181 - 51 + 61 - Geometria Não Simples + Non-Simple Geometry @@ -429,7 +429,25 @@ - Simplificar + Simplify + + + + + + 10 + 40 + 171 + 20 + + + + + 7 + + + + pghft_drainagelineisnotsimple @@ -437,13 +455,13 @@ 10 - 130 + 220 181 - 51 + 61 - Geometria Não Válida + Invalid Geometry @@ -468,7 +486,25 @@ - Validar + Validate + + + + + + 10 + 40 + 171 + 20 + + + + + 7 + + + + pghft_drainagelineisnotvalid @@ -482,7 +518,7 @@ - Verificar Tudo + Check All @@ -508,14 +544,14 @@ - PRECISÃO: + PRECISION: 110 - 240 + 300 81 20 @@ -528,7 +564,7 @@ 20 - 240 + 300 81 16 @@ -541,13 +577,13 @@ 10 - 180 + 80 181 - 51 + 61 - Geometria Não Única + Non-Single Geometry @@ -572,7 +608,25 @@ - Explodir + Explode + + + + + + 10 + 40 + 171 + 20 + + + + + 7 + + + + pghft_drainagelineisnotsingle @@ -582,12 +636,12 @@ 220 10 - 211 - 211 + 221 + 341 - 3.2 - Consistência Topológica + 3.2 - Topological Consistency - Part I @@ -599,7 +653,7 @@ - Verificar Tudo + Check All @@ -607,12 +661,12 @@ 10 50 - 191 - 51 + 201 + 61 - Geometria Dentro de Geometria + Geometry WITHIN Geometry @@ -637,7 +691,25 @@ - Excluir + Delete + + + + + + 10 + 40 + 181 + 20 + + + + + 7 + + + + pghft_drainagelinewithindrainageline @@ -645,13 +717,13 @@ 10 - 100 - 191 - 51 + 120 + 201 + 61 - Geometria Sobrepõe Geometria + Geometry OVERLAP Geometry @@ -673,7 +745,25 @@ - Correção Manual + Manual Editing + + + + + + 10 + 40 + 191 + 20 + + + + + 7 + + + + pghft_drainagelineoverlapdrainageline @@ -681,13 +771,13 @@ 10 - 150 - 191 - 51 + 190 + 201 + 61 - Geometria Com Loop + Geometry With LOOPS @@ -709,7 +799,25 @@ - Correção Manual + Manual Editing + + + + + + 10 + 40 + 181 + 20 + + + + + 7 + + + + pghft_drainagelineloops @@ -717,14 +825,14 @@ - 440 + 450 10 201 - 211 + 341 - 3.3 - Consistência Topológica + 3.3 - Topological Consistency - Part II @@ -736,7 +844,7 @@ - Verificar Tudo + Check All @@ -745,11 +853,11 @@ 10 50 181 - 51 + 61 - Geometria Cruza Geometria + Geometry CROSS Geometry @@ -761,20 +869,38 @@ + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_drainagelinecrossdrainagelines + + 10 - 100 + 120 181 - 51 + 61 - Geometria Toca Geometria + Geometry TOUCH Geometry - + 10 @@ -784,6 +910,24 @@ + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_drainagelinetouchdrainageline + + @@ -792,44 +936,44 @@ 60 - 170 + 190 75 23 - Quebrar + Break Lines - Consistir Arco-Nó + Consist Drainage Line Network 10 10 - 221 - 201 + 231 + 341 - 4.1 - Geração da Relação Arco-Nó + 4.1 - Create Drainage Line Network 10 50 - 201 - 51 + 211 + 61 - Nós com Valência = 2 (Pseudo-Nó) + Nodes with Valence = 2 (Pseudo-Node) @@ -854,7 +998,25 @@ - Unir Drenagens + Spatial Union + + + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_pointvalencevalue2 @@ -862,13 +1024,13 @@ 10 - 110 - 201 - 51 + 120 + 211 + 61 - Nós com Valência >=4 (Confl. Múlt) + Nodes with Valence >=4 (Multiple Confl.) @@ -890,7 +1052,25 @@ - Correção Manual + Manual Editing + + + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_pointvalencevalue4 @@ -904,14 +1084,14 @@ - Processar + Execute 30 - 170 + 200 91 20 @@ -924,7 +1104,7 @@ 130 - 170 + 200 81 20 @@ -937,26 +1117,26 @@ - 240 + 250 10 - 201 - 81 + 191 + 341 - 4.2 - Identificação dos Nós da Rede + 4.2 - Identify Network Nodes 60 50 - 131 + 121 23 - Nó Início da Drenagem + Start Node* @@ -964,12 +1144,12 @@ 60 20 - 131 + 121 23 - Nó Fim da Drenagem + End Node @@ -992,6 +1172,19 @@ + + + + 10 + 80 + 161 + 16 + + + + * Only available on coast basin + + @@ -999,11 +1192,11 @@ 450 10 201 - 161 + 341 - 4.3 - Continuidade e Direção de Fluxo + 4.3 - Connectivity and Flow Direction @@ -1011,11 +1204,11 @@ 10 50 181 - 51 + 61 - Drenagens Desconexas + Drainage Lines Disconnected @@ -1037,7 +1230,25 @@ - Correção Manual + Manual Editing + + + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_drainagelineisdisconnected @@ -1045,13 +1256,13 @@ 10 - 100 + 110 181 - 51 + 61 - Geometrias Com Nó Divergente + Divergent Drainage Points @@ -1073,7 +1284,25 @@ - Correção Manual + Manual Editing + + + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_pointdivergent @@ -1087,14 +1316,14 @@ - Processar + Execute - Consistir Bacia + Consist Drainage Area @@ -1102,25 +1331,25 @@ 220 10 201 - 161 + 341 - 5.2 - Consistência Topológica + 5.2 - Topological Consistency 10 - 100 + 110 181 - 51 + 61 - Geometria Com Auto-intersecção + Geometry OVERLAP Geometry - + 10 @@ -1143,7 +1372,25 @@ - Remover + Remove + + + + + + 10 + 40 + 171 + 20 + + + + + 7 + + + + pghft_drainageareaoverlapdrainagearea @@ -1153,13 +1400,13 @@ 10 50 181 - 51 + 61 - Geometria Dentro de Geometria + Geometry WITHIN Geometry - + 10 @@ -1182,7 +1429,25 @@ - Excluir + Delete + + + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_drainageareawithindrainagearea @@ -1196,7 +1461,7 @@ - Verificar Tudo + Check All @@ -1206,23 +1471,23 @@ 10 10 201 - 281 + 341 - 5.1 - Consistência Geométrica + 5.1 - Geometric Consistency 10 - 80 + 150 181 - 51 + 61 - Geometria Não Simples + Non-Simple Geometry @@ -1237,7 +1502,7 @@ - Simplificar + Simplify @@ -1250,18 +1515,36 @@ + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_drainageareaisnotsingle + + 10 - 130 + 220 181 - 51 + 61 - Geometria Não Válida + Invalid Geometry @@ -1276,7 +1559,7 @@ - Validar + Validate @@ -1289,6 +1572,24 @@ + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_drainageareaisnotvalid + + @@ -1313,14 +1614,14 @@ - PRECISÃO: + PRECISION: 110 - 240 + 300 81 20 @@ -1333,7 +1634,7 @@ 20 - 240 + 300 81 16 @@ -1352,20 +1653,20 @@ - Verificar Tudo + Check All 10 - 180 + 80 181 - 51 + 61 - Geometria Não Única + Non-Single Geometry @@ -1380,7 +1681,7 @@ - Explodir + Explode @@ -1393,36 +1694,54 @@ + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_drainageareaisnotsingle + + - Drenagem x Bacia + Consist Drainage Line x Drainage Area 10 10 - 211 - 261 + 221 + 341 - 6 - Consistência Topológica + 6 - Topological Consistency 10 - 50 - 191 - 51 + 120 + 201 + 61 - Drenagem Sem Bacia + Drainage Line WITHOUT Drainage Area @@ -1444,7 +1763,25 @@ - Correção Manual + Manual Editing + + + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_drainagelinenodrainagearea @@ -1452,13 +1789,13 @@ 10 - 100 - 191 - 51 + 50 + 201 + 61 - Bacia Com +1 Drenagem + Drainage Area >1:1 Drainage Line @@ -1480,7 +1817,25 @@ - Correção Manual + Manual Editing + + + + + + 10 + 40 + 181 + 20 + + + + + 7 + + + + pghft_drainageareamoreonedrainageline @@ -1488,13 +1843,13 @@ 10 - 150 - 191 - 51 + 260 + 201 + 61 - Drenagem Com +1 Bacia + Drainage Line >1:1 Drainage Area @@ -1516,7 +1871,25 @@ - Correção Manual + Manual Editing + + + + + + 10 + 40 + 181 + 20 + + + + + 7 + + + + pghft_drainagelinemoreonedrainagearea @@ -1530,20 +1903,20 @@ - Verificar Tudo + Check All 10 - 200 - 191 - 51 + 190 + 201 + 61 - Bacia Sem Drenagem + Drainage Area WITHOUT Drainage Line @@ -1568,7 +1941,25 @@ - Unir Bacias + Spatial Union + + + + + + 10 + 40 + 161 + 20 + + + + + 7 + + + + pghft_drainageareanodrainageline @@ -1576,7 +1967,7 @@ - Informações Hidrográficas Finais + Final Hydrographic Information @@ -1588,7 +1979,7 @@ - 7 - Gerar Informações Hidrográficas Finais + 7 - Execute Final Hydrographic Information @@ -1600,7 +1991,7 @@ - Processamento Principal + Main Procedures @@ -1612,7 +2003,7 @@ - Processar + Execute @@ -1631,7 +2022,7 @@ false - Atualizar Comprimento da Drenagem + Update Drainage Line Length true @@ -1647,7 +2038,7 @@ - Atualizar Área da Bacia Hidrográfica + Update Drainage Area Area true @@ -1658,12 +2049,12 @@ 10 60 - 181 + 211 17 - Calcular Distância à Foz da Bacia: + Update Sea Distance (OFFSET): true @@ -1679,7 +2070,7 @@ - Calcular Área a Montante + Update Upstream Area true @@ -1695,7 +2086,7 @@ - Atualizar Drenagem a Montante + Update Upstream Drainage Line true @@ -1706,12 +2097,12 @@ 10 120 - 171 + 221 17 - Atualizar Drenagem a Jusante + Update Downstream Drainage Line true @@ -1722,12 +2113,12 @@ 10 140 - 191 + 211 17 - Codificar Bacias de Otto Pfafstetter + Calculate Otto Pfafstetter Basin Coding true @@ -1743,7 +2134,7 @@ - Atualizar Código de Bacia de Otto Pfafstetter + Update Otto Pfafstetter Basin Coding: true @@ -1759,7 +2150,7 @@ - Atualizar Curso D'Água + Update Water Course true @@ -1775,7 +2166,7 @@ - Atualizar Pontos de Cursos D'Água + Update Water Course Points true @@ -1791,7 +2182,7 @@ - Calcular Ordem de Strahler + Update Strahler Order true @@ -1807,7 +2198,7 @@ - 29100 + 5880 @@ -1820,7 +2211,7 @@ - 29100 + 5880 @@ -1852,7 +2243,7 @@ - 350 + 360 20 51 20 @@ -1865,7 +2256,7 @@ - 350 + 360 40 51 20 @@ -1880,12 +2271,12 @@ 320 20 - 31 - 16 + 41 + 20 - Fator: + Factor: @@ -1893,18 +2284,18 @@ 320 40 - 31 - 16 + 41 + 20 - Fator: + Factor: - 190 + 200 60 51 20 @@ -1920,14 +2311,14 @@ - 250 + 220 160 61 20 - + 0 Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -1943,7 +2334,7 @@ - Atualizar Código de Curso D'Água de Otto Pfafstetter + Update Otto Pfafstetter Water Course Code true @@ -1959,7 +2350,7 @@ - Inserir as Colunas com Codificação de Bacias de Otto Pfafstetter + Add Pfafstetter Basin Coding Columns true @@ -1975,7 +2366,7 @@ - Atualizar Linha de Costa (se for o caso) + Update Shoreline (if exists) true @@ -1986,12 +2377,12 @@ 430 20 - 131 + 171 17 - Ligar Índices, PKs e FKs + Turn On Indexes, PKs and FKs true @@ -2003,11 +2394,11 @@ 430 40 181 - 17 + 20 - Atualizar Dominialidade (opicional) + Update Water Course Domain false @@ -2023,7 +2414,7 @@ - Atualizar Agregação de Bacias + Update Watersheds @@ -2031,7 +2422,7 @@ - Atualizar Dados de Saída + Update Output Geometry Tables @@ -2043,7 +2434,7 @@ - 8 - Atualizar Dados de Saída + 8 - Update Output Geometry Tables @@ -2055,14 +2446,14 @@ - Processar + Execute - Hidronímia + Hydronymia @@ -2074,19 +2465,19 @@ - 9 - Sistematização da Hidronímia (nomes dos rios) + 9 - Hydronymia Systematization (river names) - 440 + 430 20 - 171 + 201 51 - 9.4 Finalizar Sistematização + 9.4 Finish Hydronymia Systematization @@ -2098,7 +2489,7 @@ - Processar + Execute @@ -2107,24 +2498,24 @@ 220 20 - 211 + 201 201 - 9.2 Edição das Hidronímias + 9.2 Hydronymia Editing 10 140 - 191 + 181 51 - 9.2.3 Atualizar Nome Original + 9.2.3 Update Original Names @@ -2136,7 +2527,7 @@ - Processar + Execute @@ -2145,12 +2536,12 @@ 10 80 - 191 + 181 51 - 9.2.2 Revisar Nomes Sistematizados + 9.2.2 Review Systematized Names @@ -2162,7 +2553,7 @@ - Correção Tabular Manual + Manual Table Editing @@ -2171,12 +2562,12 @@ 10 20 - 191 + 181 51 - 9.2.1 Sistematizar Nomes + 9.2.1 Systematize Names @@ -2188,7 +2579,7 @@ - Processar + Execute @@ -2203,7 +2594,7 @@ - 9.1 Iniciar Sistematizacao + 9.1 Start Hydronymia Systematization @@ -2215,7 +2606,7 @@ - Processar + Execute @@ -2229,7 +2620,7 @@ - 9.3 Hidrônimos Confluente + 9.3 Confluent Hydronymia @@ -2241,7 +2632,7 @@ - Verificar + Check @@ -2258,14 +2649,13 @@ 90 - 50 + 40 111 31 - Correção Vetorial - Manual + Manual Vector Editing Qt::AlignCenter @@ -2276,7 +2666,7 @@ - Edição Multi-Usuário + Multi-User Editing @@ -2288,7 +2678,7 @@ - 10 - Edição Multi-Usuário + 10 - Multi-User Editing @@ -2300,7 +2690,7 @@ - 10.3 Gerenciar Auditoria + 10.3 Log Management @@ -2312,7 +2702,7 @@ - Desligar + Turn Off @@ -2325,7 +2715,7 @@ - Ligar + Turn On @@ -2338,7 +2728,7 @@ - Limpar Auditoria Drenagem + Reset Drainage Line Log @@ -2351,7 +2741,7 @@ - Limpar Auditoria Bacia + Reset Drainage Area Log @@ -2365,7 +2755,7 @@ - 10.2 Visualizar Usuário + 10.2 View Users @@ -2377,7 +2767,7 @@ - Excluir Usuário Selecionado + Drop Selected User @@ -2390,7 +2780,7 @@ - Visualizar Usuários + View Users @@ -2416,7 +2806,7 @@ - Desabilitar Usuário Selecionado + Revoke Selected User @@ -2429,7 +2819,7 @@ - Habilitar Usuário Selecionado + Grant Selected User @@ -2443,14 +2833,14 @@ - 10.1 Criar Usuário + 10.1 Criate User - 60 + 70 20 - 131 + 111 20 @@ -2465,15 +2855,15 @@ - Criar + Create - 60 + 70 50 - 131 + 111 20 @@ -2486,12 +2876,12 @@ 10 20 - 46 - 13 + 61 + 16 - Usuário: + Username: @@ -2499,12 +2889,12 @@ 10 50 - 46 - 13 + 51 + 16 - Senha: + Password: @@ -2512,13 +2902,13 @@ - Versão + Version - 200 - 210 + 230 + 150 221 31 @@ -2534,7 +2924,7 @@ www.pghydro.org - Qt::AlignCenter + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter false @@ -2559,8 +2949,8 @@ - 200 - 240 + 230 + 120 231 31 @@ -2573,28 +2963,51 @@ - PgHydro Tools Versão 2.0.1 + PgHydro Tools Version 2.2 - 240 - 60 - 151 - 141 + 60 + 100 + 161 + 181 - :/plugins/PghydroTools/Logo_quadrada.png + :/plugins/PghydroTools/Logo_pghydro_hexa.png true + + + + 230 + 190 + 411 + 51 + + + + + 8 + 50 + false + + + + REQUIREMENTS: + -Postgresql version 9.1+ + -PostGIS version 2.0+ + -PgHydro version 6.2: https://github.com/pghydro/pghydro/tree/master + + @@ -2621,5 +3034,8 @@ + + + diff --git a/resources.py b/resources.py index 311cb78..0ca601e 100644 --- a/resources.py +++ b/resources.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: qua 26. jul 10:21:01 2017 +# Created: seg 15. jan 14:44:40 2018 # by: The Resource Compiler for PyQt (Qt v4.8.5) # # WARNING! All changes made in this file will be lost! @@ -4024,6 +4024,3105 @@ \x00\x04\x20\x00\x01\x08\x40\x00\x02\x10\x80\x40\x1e\x04\x4e\xfa\ \xff\xf9\xaa\x5b\x33\xbb\x4e\x4a\x33\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ +\x00\x00\xc1\x85\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x02\x09\x00\x00\x02\x59\x08\x06\x00\x00\x00\x23\xec\xa6\x0f\ +\x00\x00\x0a\x37\x69\x43\x43\x50\x73\x52\x47\x42\x20\x49\x45\x43\ +\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x00\x00\x78\x9c\x9d\x96\x77\ +\x54\x53\xd9\x16\x87\xcf\xbd\x37\xbd\x50\x92\x10\x8a\x94\xd0\x6b\ +\x68\x52\x02\x48\x0d\xbd\x48\x91\x2e\x2a\x31\x09\x10\x4a\xc0\x90\ +\x00\x22\x36\x44\x54\x70\x44\x51\x91\xa6\x08\x32\x28\xe0\x80\xa3\ +\x43\x91\xb1\x22\x8a\x85\x01\x51\xb1\xeb\x04\x19\x44\xd4\x71\x70\ +\x14\x1b\x96\x49\x64\xad\x19\xdf\xbc\x79\xef\xcd\x9b\xdf\x1f\xf7\ +\x7e\x6b\x9f\xbd\xcf\xdd\x67\xef\x7d\xd6\xba\x00\x90\xfc\x83\x05\ +\xc2\x4c\x58\x09\x80\x0c\xa1\x58\x14\xe1\xe7\xc5\x88\x8d\x8b\x67\ +\x60\x07\x01\x0c\xf0\x00\x03\x6c\x00\xe0\x70\xb3\xb3\x42\x16\xf8\ +\x46\x02\x99\x02\x7c\xd8\x8c\x6c\x99\x13\xf8\x17\xbd\xba\x0e\x20\ +\xf9\xfb\x2a\xd3\x3f\x8c\xc1\x00\xff\x9f\x94\xb9\x59\x22\x31\x00\ +\x50\x98\x8c\xe7\xf2\xf8\xd9\x5c\x19\x17\xc9\x38\x3d\x57\x9c\x25\ +\xb7\x4f\xc9\x98\xb6\x34\x4d\xce\x30\x4a\xce\x22\x59\x82\x32\x56\ +\x93\x73\xf2\x2c\x5b\x7c\xf6\x99\x65\x0f\x39\xf3\x32\x84\x3c\x19\ +\xcb\x73\xce\xe2\x65\xf0\xe4\xdc\x27\xe3\x8d\x39\x12\xbe\x8c\x91\ +\x60\x19\x17\xe7\x08\xf8\xb9\x32\xbe\x26\x63\x83\x74\x49\x86\x40\ +\xc6\x6f\xe4\xb1\x19\x7c\x4e\x36\x00\x28\x92\xdc\x2e\xe6\x73\x53\ +\x64\x6c\x2d\x63\x92\x28\x32\x82\x2d\xe3\x79\x00\xe0\x48\xc9\x5f\ +\xf0\xd2\x2f\x58\xcc\xcf\x13\xcb\x0f\xc5\xce\xcc\x5a\x2e\x12\x24\ +\xa7\x88\x19\x26\x5c\x53\x86\x8d\x93\x13\x8b\xe1\xcf\xcf\x4d\xe7\ +\x8b\xc5\xcc\x30\x0e\x37\x8d\x23\xe2\x31\xd8\x99\x19\x59\x1c\xe1\ +\x72\x00\x66\xcf\xfc\x59\x14\x79\x6d\x19\xb2\x22\x3b\xd8\x38\x39\ +\x38\x30\x6d\x2d\x6d\xbe\x28\xd4\x7f\x5d\xfc\x9b\x92\xf7\x76\x96\ +\x5e\x84\x7f\xee\x19\x44\x1f\xf8\xc3\xf6\x57\x7e\x99\x0d\x00\xb0\ +\xa6\x65\xb5\xd9\xfa\x87\x6d\x69\x15\x00\x5d\xeb\x01\x50\xbb\xfd\ +\x87\xcd\x60\x2f\x00\x8a\xb2\xbe\x75\x0e\x7d\x71\x1e\xba\x7c\x5e\ +\x52\xc4\xe2\x2c\x67\x2b\xab\xdc\xdc\x5c\x4b\x01\x9f\x6b\x29\x2f\ +\xe8\xef\xfa\x9f\x0e\x7f\x43\x5f\x7c\xcf\x52\xbe\xdd\xef\xe5\x61\ +\x78\xf3\x93\x38\x92\x74\x31\x43\x5e\x37\x6e\x66\x7a\xa6\x44\xc4\ +\xc8\xce\xe2\x70\xf9\x0c\xe6\x9f\x87\xf8\x1f\x07\xfe\x75\x1e\x16\ +\x11\xfc\x24\xbe\x88\x2f\x94\x45\x44\xcb\xa6\x4c\x20\x4c\x96\xb5\ +\x5b\xc8\x13\x88\x05\x99\x42\x86\x40\xf8\x9f\x9a\xf8\x0f\xc3\xfe\ +\xa4\xd9\xb9\x96\x89\xda\xf8\x11\xd0\x96\x58\x02\xa5\x21\x1a\x40\ +\x7e\x1e\x00\x28\x2a\x11\x20\x09\x7b\x64\x2b\xd0\xef\x7d\x0b\xc6\ +\x47\x03\xf9\xcd\x8b\xd1\x99\x98\x9d\xfb\xcf\x82\xfe\x7d\x57\xb8\ +\x4c\xfe\xc8\x16\x24\x7f\x8e\x63\x47\x44\x32\xb8\x12\x51\xce\xec\ +\x9a\xfc\x5a\x02\x34\x20\x00\x45\x40\x03\xea\x40\x1b\xe8\x03\x13\ +\xc0\x04\xb6\xc0\x11\xb8\x00\x0f\xe0\x03\x02\x41\x28\x88\x04\x71\ +\x60\x31\xe0\x82\x14\x90\x01\x44\x20\x17\x14\x80\xb5\xa0\x18\x94\ +\x82\xad\x60\x27\xa8\x06\x75\xa0\x11\x34\x83\x36\x70\x18\x74\x81\ +\x63\xe0\x34\x38\x07\x2e\x81\xcb\x60\x04\xdc\x01\x52\x30\x0e\x9e\ +\x80\x29\xf0\x0a\xcc\x40\x10\x84\x85\xc8\x10\x15\x52\x87\x74\x20\ +\x43\xc8\x1c\xb2\x85\x58\x90\x1b\xe4\x03\x05\x43\x11\x50\x1c\x94\ +\x08\x25\x43\x42\x48\x02\x15\x40\xeb\xa0\x52\xa8\x1c\xaa\x86\xea\ +\xa1\x66\xe8\x5b\xe8\x28\x74\x1a\xba\x00\x0d\x43\xb7\xa0\x51\x68\ +\x12\xfa\x15\x7a\x07\x23\x30\x09\xa6\xc1\x5a\xb0\x11\x6c\x05\xb3\ +\x60\x4f\x38\x08\x8e\x84\x17\xc1\xc9\xf0\x32\x38\x1f\x2e\x82\xb7\ +\xc0\x95\x70\x03\x7c\x10\xee\x84\x4f\xc3\x97\xe0\x11\x58\x0a\x3f\ +\x81\xa7\x11\x80\x10\x11\x3a\xa2\x8b\x30\x11\x16\xc2\x46\x42\x91\ +\x78\x24\x09\x11\x21\xab\x90\x12\xa4\x02\x69\x40\xda\x90\x1e\xa4\ +\x1f\xb9\x8a\x48\x91\xa7\xc8\x5b\x14\x06\x45\x45\x31\x50\x4c\x94\ +\x0b\xca\x1f\x15\x85\xe2\xa2\x96\xa1\x56\xa1\x36\xa3\xaa\x51\x07\ +\x50\x9d\xa8\x3e\xd4\x55\xd4\x28\x6a\x0a\xf5\x11\x4d\x46\x6b\xa2\ +\xcd\xd1\xce\xe8\x00\x74\x2c\x3a\x19\x9d\x8b\x2e\x46\x57\xa0\x9b\ +\xd0\x1d\xe8\xb3\xe8\x11\xf4\x38\xfa\x15\x06\x83\xa1\x63\x8c\x31\ +\x8e\x18\x7f\x4c\x1c\x26\x15\xb3\x02\xb3\x19\xb3\x1b\xd3\x8e\x39\ +\x85\x19\xc6\x8c\x61\xa6\xb1\x58\xac\x3a\xd6\x1c\xeb\x8a\x0d\xc5\ +\x72\xb0\x62\x6c\x31\xb6\x0a\x7b\x10\x7b\x12\x7b\x05\x3b\x8e\x7d\ +\x83\x23\xe2\x74\x70\xb6\x38\x5f\x5c\x3c\x4e\x88\x2b\xc4\x55\xe0\ +\x5a\x70\x27\x70\x57\x70\x13\xb8\x19\xbc\x12\xde\x10\xef\x8c\x0f\ +\xc5\xf3\xf0\xcb\xf1\x65\xf8\x46\x7c\x0f\x7e\x08\x3f\x8e\x9f\x21\ +\x28\x13\x8c\x09\xae\x84\x48\x42\x2a\x61\x2d\xa1\x92\xd0\x46\x38\ +\x4b\xb8\x4b\x78\x41\x24\x12\xf5\x88\x4e\xc4\x70\xa2\x80\xb8\x86\ +\x58\x49\x3c\x44\x3c\x4f\x1c\x25\xbe\x25\x51\x48\x66\x24\x36\x29\ +\x81\x24\x21\x6d\x21\xed\x27\x9d\x22\xdd\x22\xbd\x20\x93\xc9\x46\ +\x64\x0f\x72\x3c\x59\x4c\xde\x42\x6e\x26\x9f\x21\xdf\x27\xbf\x51\ +\xa0\x2a\x58\x2a\x04\x28\xf0\x14\x56\x2b\xd4\x28\x74\x2a\x5c\x51\ +\x78\xa6\x88\x57\x34\x54\xf4\x54\x5c\xac\x98\xaf\x58\xa1\x78\x44\ +\x71\x48\xf1\xa9\x12\x5e\xc9\x48\x89\xad\xc4\x51\x5a\xa5\x54\xa3\ +\x74\x54\xe9\x86\xd2\xb4\x32\x55\xd9\x46\x39\x54\x39\x43\x79\xb3\ +\x72\x8b\xf2\x05\xe5\x47\x14\x2c\xc5\x88\xe2\x43\xe1\x51\x8a\x28\ +\xfb\x28\x67\x28\x63\x54\x84\xaa\x4f\x65\x53\xb9\xd4\x75\xd4\x46\ +\xea\x59\xea\x38\x0d\x43\x33\xa6\x05\xd0\x52\x69\xa5\xb4\x6f\x68\ +\x83\xb4\x29\x15\x8a\x8a\x9d\x4a\xb4\x4a\x9e\x4a\x8d\xca\x71\x15\ +\x29\x1d\xa1\x1b\xd1\x03\xe8\xe9\xf4\x32\xfa\x61\xfa\x75\xfa\x3b\ +\x55\x2d\x55\x4f\x55\xbe\xea\x26\xd5\x36\xd5\x2b\xaa\xaf\xd5\xe6\ +\xa8\x79\xa8\xf1\xd5\x4a\xd4\xda\xd5\x46\xd4\xde\xa9\x33\xd4\x7d\ +\xd4\xd3\xd4\xb7\xa9\x77\xa9\xdf\xd3\x40\x69\x98\x69\x84\x6b\xe4\ +\x6a\xec\xd1\x38\xab\xf1\x74\x0e\x6d\x8e\xcb\x1c\xee\x9c\x92\x39\ +\x87\xe7\xdc\xd6\x84\x35\xcd\x34\x23\x34\x57\x68\xee\xd3\x1c\xd0\ +\x9c\xd6\xd2\xd6\xf2\xd3\xca\xd2\xaa\xd2\x3a\xa3\xf5\x54\x9b\xae\ +\xed\xa1\x9d\xaa\xbd\x43\xfb\x84\xf6\xa4\x0e\x55\xc7\x4d\x47\xa0\ +\xb3\x43\xe7\xa4\xce\x63\x86\x0a\xc3\x93\x91\xce\xa8\x64\xf4\x31\ +\xa6\x74\x35\x75\xfd\x75\x25\xba\xf5\xba\x83\xba\x33\x7a\xc6\x7a\ +\x51\x7a\x85\x7a\xed\x7a\xf7\xf4\x09\xfa\x2c\xfd\x24\xfd\x1d\xfa\ +\xbd\xfa\x53\x06\x3a\x06\x21\x06\x05\x06\xad\x06\xb7\x0d\xf1\x86\ +\x2c\xc3\x14\xc3\x5d\x86\xfd\x86\xaf\x8d\x8c\x8d\x62\x8c\x36\x18\ +\x75\x19\x3d\x32\x56\x33\x0e\x30\xce\x37\x6e\x35\xbe\x6b\x42\x36\ +\x71\x37\x59\x66\xd2\x60\x72\xcd\x14\x63\xca\x32\x4d\x33\xdd\x6d\ +\x7a\xd9\x0c\x36\xb3\x37\x4b\x31\xab\x31\x1b\x32\x87\xcd\x1d\xcc\ +\x05\xe6\xbb\xcd\x87\x2d\xd0\x16\x4e\x16\x42\x8b\x06\x8b\x1b\x4c\ +\x12\xd3\x93\x99\xc3\x6c\x65\x8e\x5a\xd2\x2d\x83\x2d\x0b\x2d\xbb\ +\x2c\x9f\x59\x19\x58\xc5\x5b\x6d\xb3\xea\xb7\xfa\x68\x6d\x6f\x9d\ +\x6e\xdd\x68\x7d\xc7\x86\x62\x13\x68\x53\x68\xd3\x63\xf3\xab\xad\ +\x99\x2d\xd7\xb6\xc6\xf6\xda\x5c\xf2\x5c\xdf\xb9\xab\xe7\x76\xcf\ +\x7d\x6e\x67\x6e\xc7\xb7\xdb\x63\x77\xd3\x9e\x6a\x1f\x62\xbf\xc1\ +\xbe\xd7\xfe\x83\x83\xa3\x83\xc8\xa1\xcd\x61\xd2\xd1\xc0\x31\xd1\ +\xb1\xd6\xf1\x06\x8b\xc6\x0a\x63\x6d\x66\x9d\x77\x42\x3b\x79\x39\ +\xad\x76\x3a\xe6\xf4\xd6\xd9\xc1\x59\xec\x7c\xd8\xf9\x17\x17\xa6\ +\x4b\x9a\x4b\x8b\xcb\xa3\x79\xc6\xf3\xf8\xf3\x1a\xe7\x8d\xb9\xea\ +\xb9\x72\x5c\xeb\x5d\xa5\x6e\x0c\xb7\x44\xb7\xbd\x6e\x52\x77\x5d\ +\x77\x8e\x7b\x83\xfb\x03\x0f\x7d\x0f\x9e\x47\x93\xc7\x84\xa7\xa9\ +\x67\xaa\xe7\x41\xcf\x67\x5e\xd6\x5e\x22\xaf\x0e\xaf\xd7\x6c\x67\ +\xf6\x4a\xf6\x29\x6f\xc4\xdb\xcf\xbb\xc4\x7b\xd0\x87\xe2\x13\xe5\ +\x53\xed\x73\xdf\x57\xcf\x37\xd9\xb7\xd5\x77\xca\xcf\xde\x6f\x85\ +\xdf\x29\x7f\xb4\x7f\x90\xff\x36\xff\x1b\x01\x5a\x01\xdc\x80\xe6\ +\x80\xa9\x40\xc7\xc0\x95\x81\x7d\x41\xa4\xa0\x05\x41\xd5\x41\x0f\ +\x82\xcd\x82\x45\xc1\x3d\x21\x70\x48\x60\xc8\xf6\x90\xbb\xf3\x0d\ +\xe7\x0b\xe7\x77\x85\x82\xd0\x80\xd0\xed\xa1\xf7\xc2\x8c\xc3\x96\ +\x85\x7d\x1f\x8e\x09\x0f\x0b\xaf\x09\x7f\x18\x61\x13\x51\x10\xd1\ +\xbf\x80\xba\x60\xc9\x82\x96\x05\xaf\x22\xbd\x22\xcb\x22\xef\x44\ +\x99\x44\x49\xa2\x7a\xa3\x15\xa3\x13\xa2\x9b\xa3\x5f\xc7\x78\xc7\ +\x94\xc7\x48\x63\xad\x62\x57\xc6\x5e\x8a\xd3\x88\x13\xc4\x75\xc7\ +\x63\xe3\xa3\xe3\x9b\xe2\xa7\x17\xfa\x2c\xdc\xb9\x70\x3c\xc1\x3e\ +\xa1\x38\xe1\xfa\x22\xe3\x45\x79\x8b\x2e\x2c\xd6\x58\x9c\xbe\xf8\ +\xf8\x12\xc5\x25\x9c\x25\x47\x12\xd1\x89\x31\x89\x2d\x89\xef\x39\ +\xa1\x9c\x06\xce\xf4\xd2\x80\xa5\xb5\x4b\xa7\xb8\x6c\xee\x2e\xee\ +\x13\x9e\x07\x6f\x07\x6f\x92\xef\xca\x2f\xe7\x4f\x24\xb9\x26\x95\ +\x27\x3d\x4a\x76\x4d\xde\x9e\x3c\x99\xe2\x9e\x52\x91\xf2\x54\xc0\ +\x16\x54\x0b\x9e\xa7\xfa\xa7\xd6\xa5\xbe\x4e\x0b\x4d\xdb\x9f\xf6\ +\x29\x3d\x26\xbd\x3d\x03\x97\x91\x98\x71\x54\x48\x11\xa6\x09\xfb\ +\x32\xb5\x33\xf3\x32\x87\xb3\xcc\xb3\x8a\xb3\xa4\xcb\x9c\x97\xed\ +\x5c\x36\x25\x0a\x12\x35\x65\x43\xd9\x8b\xb2\xbb\xc5\x34\xd9\xcf\ +\xd4\x80\xc4\x44\xb2\x5e\x32\x9a\xe3\x96\x53\x93\xf3\x26\x37\x3a\ +\xf7\x48\x9e\x72\x9e\x30\x6f\x60\xb9\xd9\xf2\x4d\xcb\x27\xf2\x7d\ +\xf3\xbf\x5e\x81\x5a\xc1\x5d\xd1\x5b\xa0\x5b\xb0\xb6\x60\x74\xa5\ +\xe7\xca\xfa\x55\xd0\xaa\xa5\xab\x7a\x57\xeb\xaf\x2e\x5a\x3d\xbe\ +\xc6\x6f\xcd\x81\xb5\x84\xb5\x69\x6b\x7f\x28\xb4\x2e\x2c\x2f\x7c\ +\xb9\x2e\x66\x5d\x4f\x91\x56\xd1\x9a\xa2\xb1\xf5\x7e\xeb\x5b\x8b\ +\x15\x8a\x45\xc5\x37\x36\xb8\x6c\xa8\xdb\x88\xda\x28\xd8\x38\xb8\ +\x69\xee\xa6\xaa\x4d\x1f\x4b\x78\x25\x17\x4b\xad\x4b\x2b\x4a\xdf\ +\x6f\xe6\x6e\xbe\xf8\x95\xcd\x57\x95\x5f\x7d\xda\x92\xb4\x65\xb0\ +\xcc\xa1\x6c\xcf\x56\xcc\x56\xe1\xd6\xeb\xdb\xdc\xb7\x1d\x28\x57\ +\x2e\xcf\x2f\x1f\xdb\x1e\xb2\xbd\x73\x07\x63\x47\xc9\x8e\x97\x3b\ +\x97\xec\xbc\x50\x61\x57\x51\xb7\x8b\xb0\x4b\xb2\x4b\x5a\x19\x5c\ +\xd9\x5d\x65\x50\xb5\xb5\xea\x7d\x75\x4a\xf5\x48\x8d\x57\x4d\x7b\ +\xad\x66\xed\xa6\xda\xd7\xbb\x79\xbb\xaf\xec\xf1\xd8\xd3\x56\xa7\ +\x55\x57\x5a\xf7\x6e\xaf\x60\xef\xcd\x7a\xbf\xfa\xce\x06\xa3\x86\ +\x8a\x7d\x98\x7d\x39\xfb\x1e\x36\x46\x37\xf6\x7f\xcd\xfa\xba\xb9\ +\x49\xa3\xa9\xb4\xe9\xc3\x7e\xe1\x7e\xe9\x81\x88\x03\x7d\xcd\x8e\ +\xcd\xcd\x2d\x9a\x2d\x65\xad\x70\xab\xa4\x75\xf2\x60\xc2\xc1\xcb\ +\xdf\x78\x7f\xd3\xdd\xc6\x6c\xab\x6f\xa7\xb7\x97\x1e\x02\x87\x24\ +\x87\x1e\x7f\x9b\xf8\xed\xf5\xc3\x41\x87\x7b\x8f\xb0\x8e\xb4\x7d\ +\x67\xf8\x5d\x6d\x07\xb5\xa3\xa4\x13\xea\x5c\xde\x39\xd5\x95\xd2\ +\x25\xed\x8e\xeb\x1e\x3e\x1a\x78\xb4\xb7\xc7\xa5\xa7\xe3\x7b\xcb\ +\xef\xf7\x1f\xd3\x3d\x56\x73\x5c\xe5\x78\xd9\x09\xc2\x89\xa2\x13\ +\x9f\x4e\xe6\x9f\x9c\x3e\x95\x75\xea\xe9\xe9\xe4\xd3\x63\xbd\x4b\ +\x7a\xef\x9c\x89\x3d\x73\xad\x2f\xbc\x6f\xf0\x6c\xd0\xd9\xf3\xe7\ +\x7c\xcf\x9d\xe9\xf7\xec\x3f\x79\xde\xf5\xfc\xb1\x0b\xce\x17\x8e\ +\x5e\x64\x5d\xec\xba\xe4\x70\xa9\x73\xc0\x7e\xa0\xe3\x07\xfb\x1f\ +\x3a\x06\x1d\x06\x3b\x87\x1c\x87\xba\x2f\x3b\x5d\xee\x19\x9e\x37\ +\x7c\xe2\x8a\xfb\x95\xd3\x57\xbd\xaf\x9e\xbb\x16\x70\xed\xd2\xc8\ +\xfc\x91\xe1\xeb\x51\xd7\x6f\xde\x48\xb8\x21\xbd\xc9\xbb\xf9\xe8\ +\x56\xfa\xad\xe7\xb7\x73\x6e\xcf\xdc\x59\x73\x17\x7d\xb7\xe4\x9e\ +\xd2\xbd\x8a\xfb\x9a\xf7\x1b\x7e\x34\xfd\xb1\x5d\xea\x20\x3d\x3e\ +\xea\x3d\x3a\xf0\x60\xc1\x83\x3b\x63\xdc\xb1\x27\x3f\x65\xff\xf4\ +\x7e\xbc\xe8\x21\xf9\x61\xc5\x84\xce\x44\xf3\x23\xdb\x47\xc7\x26\ +\x7d\x27\x2f\x3f\x5e\xf8\x78\xfc\x49\xd6\x93\x99\xa7\xc5\x3f\x2b\ +\xff\x5c\xfb\xcc\xe4\xd9\x77\xbf\x78\xfc\x32\x30\x15\x3b\x35\xfe\ +\x5c\xf4\xfc\xd3\xaf\x9b\x5f\xa8\xbf\xd8\xff\xd2\xee\x65\xef\x74\ +\xd8\xf4\xfd\x57\x19\xaf\x66\x5e\x97\xbc\x51\x7f\x73\xe0\x2d\xeb\ +\x6d\xff\xbb\x98\x77\x13\x33\xb9\xef\xb1\xef\x2b\x3f\x98\x7e\xe8\ +\xf9\x18\xf4\xf1\xee\xa7\x8c\x4f\x9f\x7e\x03\xf7\x84\xf3\xfb\x8f\ +\x70\x66\x2a\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2e\x23\x00\ +\x00\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x20\x00\x49\x44\x41\x54\ +\x78\x9c\xec\x9d\x07\x98\x54\x45\xd6\x86\x0f\x93\x73\xce\x09\x86\ +\x1c\x87\x24\x08\x82\x88\x22\x41\xd4\x35\xac\x2e\xfa\x9b\x50\x0c\ +\xa0\xeb\xaa\x64\x03\x08\x22\xa0\x80\x98\xf3\x82\xba\xee\xea\xba\ +\xae\xba\xba\x8a\xa2\x22\x41\x25\x89\x64\x24\xc3\x24\x26\x87\x9e\ +\x3c\x3d\xf1\x3f\xe7\xf6\xf4\x3a\x84\x19\xfa\x86\xee\x5b\x7d\xef\ +\x79\x9f\xa7\x9e\x6b\x98\xee\xae\xe9\xb9\xb7\xea\xab\xaa\x73\xce\ +\xe7\xd5\xdc\xdc\x0c\x0c\xc3\x30\x38\x16\x5c\x8a\x97\x99\xd8\xde\ +\xe8\xd0\xa1\xc3\x7f\xf5\xee\x0f\xc3\x30\xfa\xe3\xa5\x77\x07\x18\ +\x86\xd1\x17\x14\x07\xa9\x78\x59\x8e\xed\x8f\x2d\xff\x69\x22\xfe\ +\xb7\x6f\xf1\xfa\x08\x8a\x85\xdf\xf4\xeb\x19\xc3\x30\x7a\xc3\x22\ +\x81\x61\x4c\x0a\x0a\x81\x40\xbc\x3c\x8a\x6d\x3a\x36\xff\x33\xfe\ +\xf7\x38\x6c\xbb\xf1\x67\x5e\xc3\xeb\x42\x14\x0b\xa5\xae\xee\x1f\ +\xc3\x30\xfa\xc3\x22\x81\x61\x4c\x08\x4e\xfe\xb7\xe1\x65\x29\xb6\ +\xc4\x76\x7e\xcc\x1b\xdb\x43\xd8\x6e\xc1\x9f\x5f\x00\xb6\x63\x88\ +\x46\x17\x74\x8f\x61\x18\x41\x60\x91\xc0\x30\x26\x02\x27\xfb\x0b\ +\xf1\xf2\x02\xb6\x61\x32\x5e\x16\x85\xed\x15\x6c\x53\xf1\xf5\x74\ +\x04\xf1\xbd\x53\x3a\xc7\x30\x8c\x70\xb0\x48\x60\x18\x13\x80\x93\ +\x7b\x3c\xd8\x76\x0e\x68\x07\xc1\x43\xe1\xdb\xf4\xc5\xf6\x1d\xbe\ +\xd7\xe7\x78\x9d\x81\x62\xe1\xb8\x56\xfd\x63\x18\x46\x4c\x58\x24\ +\x30\x8c\x81\xc1\x09\xdd\x17\x6c\x31\x07\x14\x7b\x10\xac\xd1\xdb\ +\x5e\x83\x6d\x3c\xbe\xf7\x8b\x78\x5d\x8c\x62\xa1\x42\xa3\xf7\x65\ +\x18\x46\x30\x58\x24\x30\x8c\x41\xc1\x49\x9c\xb2\x15\x96\x61\xeb\ +\xec\x84\xb7\xf7\xc3\x36\x07\xdb\xed\xf8\x39\x8f\xe3\xf5\x5d\x14\ +\x0b\x9c\x4f\xcd\x30\x06\x83\x45\x02\xc3\x18\x0c\x9c\xb4\xfb\x83\ +\x2d\xee\x60\xb4\x0b\x3e\x8e\x8e\x31\x56\x63\x9b\x86\x9f\xfb\x30\ +\x0a\x85\xcd\x2e\xf8\x4c\x86\x61\x5c\x04\x8b\x04\x86\x31\x08\x38\ +\x49\x53\x80\xe1\xd3\xd8\xa6\x80\xeb\x9f\xed\x21\xd8\x7e\xc4\x3e\ +\x7c\x88\xd7\xb9\x28\x16\xb2\x5d\xfc\xf9\x0c\xc3\x38\x01\x16\x09\ +\x0c\xe3\xe6\xe0\xc4\x4c\xcf\xf1\x83\xd8\xe6\x61\x0b\xd7\xb1\x2b\ +\x14\x10\x79\x0b\xb6\x6b\xb1\x4f\xcf\xe2\x75\x39\x8a\x85\x5a\x1d\ +\xfb\xc3\x30\x8c\x4a\x58\x24\x30\x8c\x1b\x83\x93\xf1\x15\x78\x59\ +\x89\xad\xa7\xde\x7d\x69\x05\x15\x69\x7a\x0a\xdb\x5d\xd8\xbf\xd9\ +\x28\x14\x3e\xd6\xbb\x43\x0c\xc3\x28\x83\x45\x02\xc3\xb8\x21\x38\ +\xf9\x76\x07\x9b\x38\xb8\x52\xef\xbe\xb4\x43\x27\x6c\xff\xc2\xbe\ +\x6e\xc4\x2b\xc5\x2b\xec\xd6\xb9\x3f\x0c\xc3\xc8\x84\x45\x02\xc3\ +\xb8\x11\x38\xe1\x86\x82\xed\x58\x81\x8e\x17\x7c\x74\xee\x8e\xa3\ +\x5c\x82\x6d\x07\xf6\xfd\xaf\x78\x9d\x87\x62\xa1\x50\xef\x0e\x31\ +\x0c\xe3\x18\x2c\x12\x18\xc6\x0d\xc0\x09\x96\xce\xfb\x29\x20\x91\ +\x02\x13\x63\x74\xee\x8e\x12\x3c\xb1\xdd\x87\xed\x26\xfc\x5d\x16\ +\xe3\xf5\x05\x14\x0b\xf5\x3a\xf7\x89\x61\x98\xf3\xc0\x22\x81\x61\ +\x04\x07\x27\xd5\x51\x60\x4b\x69\x1c\xa8\x77\x5f\x34\x80\x76\x42\ +\xa8\x76\xc3\xdd\xf8\x7b\xcd\x64\x4b\x6a\x86\x11\x1b\x16\x09\x0c\ +\x23\x28\x38\x89\x76\xc4\x0b\x65\x09\x4c\xd2\xbb\x2f\x4e\x80\x62\ +\x2a\xbe\xc0\xdf\x71\x2d\xd8\x2c\xa9\x0f\xea\xdd\x21\x86\x61\xce\ +\x86\x45\x02\xc3\x08\x06\x4e\x9c\x01\x78\x99\x8d\x6d\x16\xb6\x00\ +\x9d\xbb\xe3\x6c\xc6\x63\xdb\xd3\x62\x49\xbd\x00\xc5\x82\x45\xef\ +\x0e\x31\x0c\xf3\x3b\x2c\x12\x18\x46\x20\x5a\x2c\x9c\x97\x60\x4b\ +\xd2\xbb\x2f\x2e\xc4\x6e\x49\xfd\x7f\xf8\xfb\x3f\x89\xd7\x37\x51\ +\x2c\x34\xe9\xdc\x27\x86\x61\x80\x45\x02\xc3\x08\x01\x4e\x8e\x43\ +\xc1\x16\x77\x30\x5c\xef\xbe\xe8\x48\x34\x36\xda\x51\x98\xda\x52\ +\xe2\x79\xbd\xde\x1d\x62\x18\xb3\xc3\x22\x81\x61\x74\x44\x23\x0b\ +\x67\xa3\x91\x86\xed\x07\xfc\x6e\x3e\xc1\xeb\x2c\x14\x0b\x27\xf5\ +\xee\x10\xc3\x98\x15\x16\x09\x0c\xa3\x03\x4e\xb2\x70\x36\x1a\xe4\ +\x62\x39\x11\xbf\x2b\x2a\x1a\xb5\x14\xc5\x42\x95\xde\x1d\x62\x18\ +\xb3\xc1\x22\x81\x61\x5c\x0c\x4e\x7a\xd7\xe1\x65\x39\xb6\x2e\x7a\ +\xf7\xa5\x35\xd9\xd5\x0d\xf0\xea\xd1\x52\xb8\xab\x73\x18\x74\x0b\ +\xf6\xd6\xbb\x3b\x76\xfc\xb1\x91\x15\xf5\x64\xfc\xde\x1e\x45\xa1\ +\xf0\xbe\xde\x1d\x62\x18\x33\xc1\x22\x81\x61\x5c\x04\x4e\x72\x7d\ +\xc1\x16\x77\x30\x46\xef\xbe\xb4\xc6\xda\xd4\x0c\x2b\x0e\x96\xc0\ +\x32\x6c\xd5\x0d\x4d\xf0\xe2\xe1\x52\x78\xb0\x7b\x38\xcc\xeb\x1b\ +\x05\x41\x5e\x1d\xf4\xee\x9e\x9d\x44\x6c\x7f\xc3\xef\xf0\x7e\xb0\ +\x95\x78\xde\xa6\x77\x87\x18\xc6\x0c\xb0\x48\x60\x18\x27\x83\x13\ +\x5b\x24\x5e\x16\x82\xad\xe2\xa0\x50\xcf\xdc\x27\x59\x15\x30\x67\ +\x77\x21\x64\x54\xfd\x5e\xfc\xb0\x1e\x45\xc3\xca\x43\x25\xf0\xf7\ +\xf4\x72\x78\x2a\x2d\x0a\xa6\x74\x0e\xd5\xb1\x87\x67\x31\x0c\xdb\ +\x66\xfc\x4e\xff\x81\x57\xda\x59\x38\xa5\x77\x87\x18\xc6\xc8\x08\ +\x35\x60\x31\x8c\x91\xc0\x89\x8c\x4a\x11\xd3\xca\x77\x01\xb6\x08\ +\x7d\x7b\x73\x3a\x7b\x2c\x56\x98\xbe\xb3\x00\x36\x15\x54\xb7\xf9\ +\x33\x05\xb5\x0d\x30\x75\x7b\x1e\xbc\x79\xd4\x02\x2b\x07\xc5\xc0\ +\xc8\x68\x7f\x17\xf6\xb0\x5d\x28\xc0\x93\x02\x3d\xaf\xc3\xef\x98\ +\xaa\x37\xb2\x25\x35\xc3\x38\x09\x16\x09\x0c\xe3\x04\x70\xf2\x1a\ +\x8b\x97\xe7\xb1\xf5\xd1\xbb\x2f\xad\x29\xb2\x36\xc2\xfc\x7d\x45\ +\xb0\xfa\x44\x19\x34\x36\x35\x3b\xf4\x9a\x5d\xa5\xb5\x70\xd9\x0f\ +\x59\x70\x43\x72\x30\x3c\x3b\x20\x1a\x92\x03\x84\x19\x36\x82\x80\ +\x2d\xa9\x19\xc6\xa9\x08\xf3\xb4\x33\x8c\x11\xc0\xc9\xaa\x2b\x5e\ +\x56\x60\xbb\x46\xef\xbe\xb4\xa6\x01\xf5\xc0\xab\x47\x4a\x61\xd1\ +\x81\x62\x28\xab\x6b\x94\xfd\x7a\xfc\xbd\xe0\xe3\xcc\x72\xf8\x32\ +\xa7\x12\x66\xf6\x8c\x80\xd9\xbd\x22\xc0\xcf\x53\x98\x78\x85\x4e\ +\x60\xb3\xa4\xde\x00\xb6\x78\x85\x3d\xfa\x76\x87\x61\x8c\x03\x8b\ +\x04\x86\xd1\x00\x9c\xa0\x42\xf0\xf2\x04\xb6\xbf\x60\xf3\xd5\xb9\ +\x3b\xa7\xf1\x65\x4e\x15\xcc\xde\x55\x00\x47\x2b\xea\x54\xbf\x57\ +\x4d\x43\x13\x2c\xda\x5f\x04\xef\x9e\x2c\x83\xa5\xfd\xa3\x61\x52\ +\x8a\x50\xd9\x9b\xa3\xc1\x66\x49\xbd\x0a\xaf\x4f\xa0\x58\x28\xd2\ +\xb9\x3f\x0c\xe3\xf6\xb0\x48\x60\x18\x15\xe0\x84\x44\xcb\xe9\xbb\ +\xb1\x2d\xc2\x16\xab\x73\x77\x4e\xe3\x50\x79\x1d\xcc\x44\x71\xb0\ +\x36\x57\xfb\xf2\x02\x59\x55\xf5\x70\xeb\xe6\x1c\x78\xfd\x68\x80\ +\x14\xaf\x30\x28\x5c\x18\x5d\x44\x63\x1a\x05\x88\xfe\x09\xff\x36\ +\xf4\x37\x79\x19\xc5\x42\x83\xce\x7d\x62\x18\xb7\x85\x45\x02\xc3\ +\x28\x04\x27\xa1\x8b\xc1\x96\xd2\x38\x48\xef\xbe\xb4\xa6\xac\xbe\ +\x09\x16\xe2\x6a\xff\x8d\xa3\x16\x29\x53\xc1\x99\xfc\x5c\x58\x0d\ +\xc3\xbf\xcd\x80\x3b\x52\x43\xe1\xe9\xfe\x51\x10\xe3\xeb\xe9\xd4\ +\xcf\x93\x41\x38\x36\x2a\xc2\x74\x2f\xfe\x9d\xa6\xa3\x50\xf8\x5a\ +\xef\x0e\x31\x8c\x3b\xc2\x22\x81\x61\x64\x82\x93\x4e\x0a\x5e\x28\ +\xaa\xfe\x46\x10\xa8\x94\x32\xc9\x81\xb7\x8e\x59\x60\xc1\xbe\x62\ +\x28\xb2\xba\x6e\xf1\xdc\xd4\xdc\x0c\xef\x9c\xb0\x48\xe9\x94\x8f\ +\xf5\x89\x84\xbf\x74\x0f\x07\x6f\x61\xbe\x15\xe8\x89\x6d\x0d\xfe\ +\xcd\xd6\xe0\x95\xc4\xc2\x61\xbd\x3b\xc4\x30\xee\x04\x8b\x04\x86\ +\x71\x10\x9c\x68\x28\x07\x70\x0e\x08\x68\xe1\xbc\xa1\xa0\x06\x66\ +\xec\x2c\x80\xbd\x16\xe5\x99\x80\x7e\x9e\x1e\x70\x5d\x72\x10\xfc\ +\xf7\x54\x25\x54\xd6\xcb\x37\x61\x2c\xaf\x6f\x84\xb9\xbb\x0b\xe0\ +\xaf\xc7\x2d\xb0\x7c\x60\x0c\x5c\x95\x10\xa8\xb8\x2f\x4e\x60\x22\ +\xb6\xcb\xf1\x6f\xf8\x32\x5e\x17\xa1\x58\x28\xd3\xbb\x43\x0c\xe3\ +\x0e\xb0\x48\x60\x18\x07\xc0\xc9\xe5\x66\xbc\x3c\x83\x2d\x45\xef\ +\xbe\xb4\x26\xbd\xaa\x5e\x2a\x86\xf4\x29\xae\xe2\xd5\x70\x7d\x4b\ +\x7a\x63\xa7\x40\x6f\xc8\xab\x6d\x84\xc7\xf6\x14\x4a\xc5\x94\x28\ +\xab\x41\x2e\xc7\x2a\xea\xe0\xba\x4d\xd9\x30\x36\x2e\x10\x9e\x1b\ +\x14\x03\xbd\x42\x7c\x54\xf5\x4d\x43\xa8\x23\x33\xb0\xdd\x86\xbf\ +\x17\x05\x99\xae\x62\x4b\x6a\x86\x69\x1f\x16\x09\x0c\xd3\x0e\x38\ +\x99\x0c\x06\x5b\xdc\xc1\x48\xbd\xfb\xd2\x9a\xea\xc6\x66\x78\xe6\ +\xb7\x62\x78\xfe\x50\x29\xd4\x36\x2a\x9f\xe7\xfa\x85\xf9\xc2\xca\ +\x41\xb1\x30\x3a\xe6\xf7\x42\x49\x71\x7e\x9e\xb0\xfa\xc2\x38\x98\ +\xd6\x2d\x4c\x2a\xb8\xb4\xb5\xa8\x46\xd1\x7b\x7f\x97\x57\x05\x83\ +\xbe\x49\x97\xde\x67\x7e\xdf\x28\x08\x13\xe7\x0c\x22\x06\xdb\x5b\ +\xd8\xa6\xb5\x58\x52\x6f\xd2\xbb\x43\x0c\x23\x2a\x2c\x12\x18\xe6\ +\x1c\xe0\xe4\x41\x99\x0a\x8b\xb1\x4d\xc6\x26\x4c\x34\x1e\xf1\x0f\ +\x5c\xe1\x3f\xb6\xb7\x10\x72\xaa\x95\xc7\x1d\x44\xf9\x7a\xc1\x82\ +\x7e\x91\x70\x6f\xd7\x30\x68\xab\xda\xc1\x90\x08\x3f\xf8\xf1\xf2\ +\x14\xe9\xf3\x1e\xdf\x5b\x04\xa7\xaa\xeb\xdb\xf8\xc9\xb6\x69\x68\ +\x6a\x86\x97\x0f\x97\x4a\xef\x41\x42\x61\x1a\x7e\x9e\x87\x30\xe5\ +\x15\x60\x20\xb6\x8d\xf8\xb7\xa6\x22\x4c\x54\x8c\x29\x5d\xe7\xfe\ +\x30\x8c\x70\xb0\x48\x60\x98\x56\xe0\x84\x41\x5b\xd2\x0f\x81\xcd\ +\x79\x50\x28\xd3\x82\xed\xc5\xb5\x30\x7d\x57\x01\x6c\x53\xb8\xb2\ +\x27\xbc\x70\x86\xa6\x95\xfd\x93\x38\x61\x87\x3a\xb8\xb2\xbf\xa5\ +\x53\x88\x74\x1c\xb1\xfc\x60\x09\xac\x38\x54\x22\xd5\x4a\x90\x4b\ +\x89\xb5\x11\x1e\xfe\x35\x1f\xde\x3e\x66\x91\x8e\x20\xc6\xc4\x0a\ +\x15\xd2\x41\x01\xa8\x57\xb1\x25\x35\xc3\x9c\x0d\x8b\x04\x86\x69\ +\x01\x27\x89\xab\xf1\xf2\x1c\xb6\x6e\x7a\xf7\xa5\x35\x6a\x63\x04\ +\xec\x8c\x8b\x0f\x84\xe7\x06\xc6\x40\x4f\x05\x31\x02\xfe\x9e\x1d\ +\x60\x7e\xdf\x48\x98\xdc\x39\x14\xe6\xee\x2e\x94\xaa\x2f\x2a\xe1\ +\x40\x99\x15\x26\xac\xcf\x82\x3f\x24\x05\xc1\xf2\x01\x31\xd0\x39\ +\x88\x2d\xa9\x19\x46\x64\x58\x24\x30\xa6\x07\x27\x85\xde\x60\xf3\ +\x59\x18\xa7\x77\x5f\x5a\x53\xd7\xd4\x0c\xcf\x1f\x2e\x95\x62\x0f\ +\x94\x64\x1b\xd8\xe9\x16\xec\x03\xcb\x34\xca\x36\x48\x09\xf0\x82\ +\x0f\x2e\x8a\xff\x5f\xbc\xc2\xee\x52\x65\xd9\x14\x5f\x64\x57\xc2\ +\xda\xdc\x6a\x29\x5d\x92\xd2\x26\x05\xb4\xa4\x9e\x06\xb6\x12\xcf\ +\xdb\xf5\xee\x10\xc3\xe8\x09\x8b\x04\xc6\xb4\xe0\x44\x40\xce\x8c\ +\x0b\xb0\x4d\xc5\x26\xcc\x92\x96\xf8\x14\x27\x51\x5a\xb1\x9f\xac\ +\x54\x5e\x4a\x39\xc4\xdb\x53\x9a\x80\x1f\xea\x11\x0e\x5a\xcf\xc1\ +\x17\x47\xfb\xc3\xf6\xf1\x1d\x25\xa3\xa8\x79\x7b\x8b\xa0\xb0\x56\ +\x7e\x7c\x84\xb5\xb1\x09\x96\x1f\x2c\x86\xf7\xd3\xcb\xe0\xe9\xb4\ +\x68\xb8\x23\x35\x44\xdb\x4e\xaa\x63\x38\xb6\x2d\x78\x8f\xd0\x8e\ +\x02\xed\x2c\xe4\xea\xdd\x21\x86\xd1\x03\x16\x09\x8c\xe9\x68\x65\ +\xe1\xfc\x24\xb6\x48\x9d\xbb\x73\x1a\x7b\x5b\x2c\x9c\x37\xb6\x63\ +\xe1\x7c\x3e\x3c\x3a\x74\x80\x3b\x3b\x87\xc2\xa2\xb4\x28\x88\x76\ +\x62\x05\x44\xd2\x1d\x53\xf0\x73\x6e\x4c\x0e\x86\xa7\x0f\x14\xc3\ +\x2b\x47\x4a\x15\x55\x78\xcc\xab\x69\x80\xbb\xb7\xe5\xc2\x1b\xc7\ +\x4a\x61\xe5\xc0\x58\x18\x1e\xe5\xa7\x7d\x67\x95\x41\x41\x1b\x77\ +\x60\xbb\x1e\xef\x99\xa5\x78\x5d\x89\x62\xc1\xaa\x73\x9f\x18\xc6\ +\xa5\xb0\x48\x60\x4c\x05\x0e\xf6\x97\x83\xed\x68\xa1\xaf\xde\x7d\ +\x69\x4d\x71\x5d\xa3\xb4\x22\x97\x63\xe1\x7c\x2e\x46\xc5\xd8\xbc\ +\x14\xfa\x87\xb9\xce\x4b\x21\xc4\xdb\x03\x96\x0d\x88\x86\x7b\xba\ +\x84\x49\x5e\x11\x6b\x72\x2a\x15\xbd\xcf\x8e\xe2\x5a\xb8\x64\x5d\ +\x26\xdc\xd4\x31\x58\x32\x8f\x4a\xf4\x17\x66\x78\x22\x17\xab\x25\ +\xd8\xa6\xe0\xfd\x33\x0b\x85\xc2\x67\x7a\x77\x88\x61\x5c\x85\x30\ +\x4f\x21\xc3\x38\x13\x1c\xdc\xbb\x80\x2d\x28\x51\x28\x0b\xe7\x46\ +\xd4\x03\xb4\x02\xa7\x95\xb8\x45\x81\x85\xb3\x9d\x8e\x81\xde\x52\ +\x31\xa4\x3f\x26\xeb\xe7\xca\xd8\x2d\xd8\x1b\x3e\x1f\x95\x08\xdf\ +\xe4\x56\x49\x62\xe1\x70\xb9\xfc\xa3\x12\x0a\xcc\xfc\x30\xbd\x1c\ +\x3e\xcf\xae\x94\xec\xa8\x67\x62\xf3\x15\x27\x67\x92\xee\xa1\x4f\ +\xb1\x8f\xeb\xf0\xfa\x08\x8a\x85\x7d\x7a\x77\x88\x61\x9c\x0d\x8b\ +\x04\xc6\xd0\xe0\x80\x4e\xb3\x26\x45\xad\x53\x5a\xa3\x30\xfb\xd8\ +\x04\x4d\xa6\xb3\x76\x15\xc2\xa1\x72\xe5\x3b\xd8\x01\x5e\x1e\xc2\ +\x4d\xa6\x13\xe2\x03\x61\x6c\x5c\xaa\x2a\xf1\x53\xdd\xd0\x04\x0b\ +\xf6\x15\xc1\x3b\x27\xca\x74\x17\x3f\xe7\x60\x0c\xb6\x9d\x78\x6f\ +\xbd\x89\xd7\x27\x51\x2c\x14\xeb\xdd\x21\x86\x71\x16\x2c\x12\x18\ +\x43\xd2\x62\xe1\x3c\x19\x6c\x05\x91\xe2\xf5\xed\xcd\xe9\x1c\xad\ +\xa8\x57\xb5\x2d\x4f\xe0\xc4\x24\xe2\xb6\xfc\xff\xf0\xc4\x6f\x9f\ +\x02\x26\x6f\x4d\x0d\x51\x75\x8c\x92\x51\x55\x0f\x37\xfd\x9c\xa3\ +\xcb\x31\xca\x79\xa0\x2f\xfd\x01\x6c\x37\xe3\xbd\xb6\x00\xaf\xaf\ +\xb3\x25\x35\x63\x44\xc4\x1b\x5d\x18\x46\x25\x38\x68\x5f\x04\xb6\ +\x52\xca\x43\xf4\xee\x4b\x6b\xca\xeb\x9b\x54\x05\xf8\xd9\xb9\x20\ +\xd2\x4f\xb4\x00\xbf\x36\x89\xf4\xf1\x84\xd7\x2e\x88\x85\xa9\x5d\ +\xc3\x54\x05\x64\x6e\xc2\xd7\x0d\x5d\x9b\x01\x53\xba\x84\xc2\x53\ +\xfd\xa2\x20\x4a\x1c\x4b\x6a\xca\x90\x79\x09\xdb\x7d\x2d\x96\xd4\ +\xdf\xea\xdd\x21\x86\xd1\x12\x16\x09\x8c\x61\xc0\x41\x3a\x09\x6c\ +\x26\x4c\x64\xc6\x24\x8c\x51\x00\xc9\x01\x35\xa9\x82\x76\xe2\xfc\ +\xbd\x44\x4c\x15\x74\x88\xb4\x30\x5f\xf8\xfe\xb2\x64\xc9\x4e\x7a\ +\xee\x9e\x42\x48\xaf\x94\x5f\xe2\x99\x2c\xa9\xa9\x62\xe3\x47\x19\ +\x15\x4e\x4b\xed\x54\x41\x1f\x6c\x6b\xf1\x1e\xfc\x0a\x6c\x96\xd4\ +\x47\xf4\xee\x10\xc3\x68\x01\x8b\x04\xc6\xed\xc1\x81\x99\x96\xd4\ +\x64\xdf\x4c\x36\xce\x42\xf9\x13\xff\x58\x58\xa3\xaa\xe8\x10\xe1\ +\xeb\xe9\x21\x62\xd1\x21\x45\x50\x6c\xc1\x55\x89\x41\xb0\xf2\x50\ +\x29\x2c\x3b\xa8\xac\x48\x94\xdd\x92\x7a\xd5\x71\x8b\x66\x45\xa2\ +\x34\xe4\x4a\xb0\x59\x52\xbf\x82\xd7\xa7\x50\x2c\x28\x2b\x4d\xc9\ +\x30\x82\xc0\x22\x81\x71\x6b\x70\x30\xa6\xba\xfb\xcb\xb0\x75\xd2\ +\xb9\x2b\xa7\x91\x55\xdd\x20\x59\x38\x2b\x2d\x5f\x6c\x47\xc0\xf2\ +\xc5\xaa\xa1\x00\xcb\x47\x7b\x47\xc0\xe4\xd4\x50\x78\x7c\xaf\xf2\ +\x72\xd3\x47\x5b\x2c\xa9\xd5\x94\x9b\x76\x12\x14\x38\x41\x96\xd4\ +\xb7\xe2\xef\x35\x0f\xd8\x92\x9a\x71\x63\x58\x24\x30\x6e\x09\x0e\ +\xbe\x03\xf0\xf2\x22\xb6\x51\x7a\xf7\xa5\x35\x35\x8d\xcd\xaa\x8c\ +\x90\xec\xf4\x09\xf5\x15\xd1\x08\x49\x53\xe2\xfd\x6d\x96\xd4\x52\ +\xbc\x82\x0a\xe3\xaa\x6f\x73\xab\x60\x60\x7e\xba\x6c\xe3\x2a\x17\ +\x40\x4e\xa2\x64\x49\x3d\xb5\xc5\x92\xfa\x47\xbd\x3b\xc4\x30\x72\ +\x61\x91\xc0\xb8\x15\x38\xd8\xc6\x80\xad\xb0\xcd\x64\x10\xcc\xc2\ +\xf9\x43\x3a\x2b\xdf\x53\x08\xd9\x0a\x2c\x95\xed\x44\xf8\x7a\x8a\ +\x68\xa9\xec\x54\x86\x46\xfa\xc1\x4f\x2d\x96\xd4\x4a\x2d\xb0\xed\ +\x96\xd4\x1f\xa6\x57\x9c\xd7\x02\x5b\x07\x06\x61\xdb\x84\xf7\xee\ +\x47\x60\xb3\xa4\xce\xd4\xbb\x43\x0c\xe3\x28\x2c\x12\x18\xb7\x00\ +\x07\x58\xda\x6f\x7f\x18\x04\xb4\x70\xde\x51\x52\x0b\x8f\xec\x2c\ +\x80\xad\x2a\x2d\x9c\xa9\x62\xe1\xc2\x7e\x51\x10\xee\x23\xcc\x4a\ +\xd8\xa5\x90\x25\xf5\x75\xc9\xc1\x92\xa1\xd5\xf3\x87\x4a\xa1\xb6\ +\x51\xfe\x4e\x4c\x91\xb5\x01\xfe\xbc\x23\x1f\xde\x3c\x66\x81\x95\ +\x83\x62\x61\x74\x8c\xbf\x13\x7a\xaa\x98\x49\xd8\xae\xc6\x7b\x79\ +\x39\x5e\x97\xa1\x58\x50\x5e\x7b\x9b\x61\x5c\x04\x8b\x04\x46\x78\ +\x5a\x2c\x9c\x57\x60\xeb\xae\x77\x5f\x5a\xa3\x95\x85\xf3\xd8\xb8\ +\x40\xe9\x68\xa1\x97\x38\x67\xea\xba\x11\xe0\xd9\x41\x4a\x71\xbc\ +\xab\x73\xa8\x14\xd3\xf1\x69\x56\x85\xa2\xf7\xd9\x67\xb1\xc2\xd8\ +\x1f\x32\xe1\x7a\x14\x1d\x54\x8c\xa9\x53\xa0\x30\x31\x1d\x74\x7e\ +\x44\x9e\x21\x77\xe1\x3d\x33\x07\x85\xc2\x87\x7a\x77\x88\x61\xda\ +\x83\x45\x02\x23\x2c\x38\x88\xf6\x02\x9b\xcf\xc2\x78\xbd\xfb\xd2\ +\x1a\xad\x2c\x9c\xbb\x06\xfb\xc0\x72\xf1\xa2\xf3\x85\x80\x26\xf5\ +\x8f\x46\x24\xc0\x86\x02\xca\x0e\xc9\x97\x26\x7d\x25\x90\xc8\x58\ +\x93\x53\x05\x8f\xf4\x0c\x87\xb9\xbd\x23\x25\x11\x22\x08\xc9\xd8\ +\x3e\xc0\x7b\x9c\x0a\x32\x3d\x84\x62\xe1\x57\xbd\x3b\xc4\x30\xe7\ +\x82\x45\x02\x23\x1c\x38\x70\x86\x81\xcd\xc2\x99\x9c\x1a\x85\x59\ +\x02\x12\xff\xc9\xae\x94\x56\xb8\x27\x34\xb0\x70\xa6\xb4\x46\x71\ +\x62\xec\xc4\x84\x8e\x0b\x7e\x9d\xd0\x09\xde\x3a\x66\x81\x05\xfb\ +\x8a\xa5\xe3\x04\xb9\xd0\xb1\xc5\xd2\x03\xc5\xf0\xde\xc9\x32\x58\ +\x92\x16\x2d\x1d\x6b\x08\xc4\x08\x6c\xdb\xf0\x9e\x7f\x17\xaf\x8f\ +\xa3\x58\xc8\xd7\xb9\x3f\x0c\x73\x1a\x2c\x12\x18\x61\xc0\x81\x92\ +\xa6\xcc\xfb\xb0\x3d\x85\x2d\x4a\xe7\xee\x9c\xc6\x81\xb2\x3a\xa9\ +\xde\xc1\x0f\xf9\x55\x8a\xdf\x83\x2c\x9c\xef\x48\x0d\x85\xa7\xfb\ +\x47\x41\x8c\x38\x15\x03\x85\x87\xd6\xfe\xf7\x75\x0d\x83\x9b\x3a\ +\x86\xc0\xc2\xfd\x45\xf0\xfa\x51\x8b\x14\xa8\x28\x17\x0a\x88\x9c\ +\xbc\x35\x17\x5e\xa7\x78\x85\x81\x31\x52\xc0\xa4\x20\xd0\xcd\x30\ +\x05\xdb\x8d\xf8\x0c\x3c\x8d\xd7\x17\x51\x2c\x28\x57\xa1\x0c\xa3\ +\x21\x2c\x12\x18\x21\xc0\xc1\xf1\x52\xb0\x95\x52\x4e\xd3\xbb\x2f\ +\xad\x29\xa9\xb3\x19\x0d\xbd\x75\xdc\xa2\xca\xc2\x79\x44\xb4\xcd\ +\x7b\x60\x50\xb8\x30\xde\x03\x6e\x07\xa5\x36\xd2\xe4\x7e\x6f\x97\ +\x30\x98\xb1\xab\x40\x4a\x7d\x54\x02\xa5\x5a\x8e\xfc\x3e\x13\x6e\ +\xed\x14\x02\x8b\xd3\xa2\xa5\x54\x4c\x41\xa0\x2d\x0e\xaa\xf9\x71\ +\x1f\x5b\x52\x33\xa2\xc0\x22\x81\xd1\x15\x1c\x0c\x53\xf1\x42\xd1\ +\xde\x7f\xd4\xbb\x2f\xad\x21\x3d\x40\x2b\xce\x85\x28\x10\x4a\x55\ +\x58\x38\x27\x05\x78\xc3\x33\x03\xa2\x61\x52\x8a\x50\x2e\x86\x6e\ +\x0d\x15\x4d\xfa\xea\x92\x24\xf8\x32\xa7\x0a\x66\xa3\x58\xa0\xa2\ +\x4a\x72\xa1\x40\xd3\xf7\x4f\x96\xc1\x67\xd9\x15\x30\xbb\x57\x24\ +\x4c\xef\x19\x2e\x8c\x8b\x26\xfc\x6e\x49\xfd\x3d\xd8\x2c\xa9\xf7\ +\xeb\xdd\x21\xc6\xbc\xb0\x48\x60\x74\x01\x07\x40\x8a\xd6\x7b\x14\ +\xdb\x74\x6c\x42\xe5\xa9\x7d\x9f\x5f\x0d\x33\x76\x16\xc0\x6f\x65\ +\xca\x2d\x9c\xfd\xbd\x3c\x60\x66\xcf\x08\x98\xd5\x2b\x02\xfc\xc5\ +\x09\x96\x33\x14\x14\xf0\x39\x21\x3e\x15\x5e\x3c\x5c\x0a\x4b\x0e\ +\x14\x4b\xe5\x9a\xe5\x42\x81\xa7\xf3\xf7\x16\xc2\xea\x13\x16\x78\ +\xa6\xbf\x70\x96\xd4\x97\x83\xcd\x92\x9a\x0a\x32\xcd\x47\xb1\x50\ +\xa2\x77\x87\x18\xf3\xc1\x22\x81\x71\x39\x38\xe8\xdd\x86\x97\xa5\ +\xd8\x12\xf5\xee\x4b\x6b\x8e\x57\xd6\xc3\xec\xdd\x05\xf0\x45\xb6\ +\x3a\x0b\xe7\x1b\x5a\xd2\xee\x92\x03\xf8\xf1\x72\x36\x64\x65\x31\ +\xa3\x67\xb8\x64\x7a\x35\x7f\x5f\x11\xac\x3a\x5e\x26\x19\x41\xc9\ +\x85\x0c\xa7\xc8\x92\xfa\x92\x16\x4b\xea\x34\x71\x2c\xa9\x29\x70\ +\x97\x32\x20\x6e\xc2\xe7\x66\x21\x5e\x5f\xc3\x7b\x4c\xf9\xd6\x16\ +\xc3\xc8\x84\x47\x31\xc6\x65\xe0\x20\x37\x1c\x6c\x71\x07\x43\xf5\ +\xee\x4b\x6b\x2a\x1b\x9a\xa5\x95\xe8\x8b\x47\x4a\xa0\xae\x51\x79\ +\xdc\xc1\xc0\x70\x3f\x69\x82\x19\x19\x2d\xd4\xc6\x88\x29\x20\xeb\ +\x68\xb2\xa4\xbe\xaf\xc5\x92\x7a\x93\x42\x4b\x6a\xb2\xb2\x1e\xfa\ +\x6d\x86\x54\xa7\x61\x51\x5a\x94\x64\x75\x2d\x08\x91\xf0\xbb\x25\ +\x35\x1d\x41\x7c\xa7\x77\x87\x18\x73\xc0\x22\x81\x71\x3a\x38\xa8\ +\xd1\x8e\xc1\xb3\x20\x98\x85\x33\xf1\x4e\x8b\x85\x73\xbe\x0a\x0b\ +\xe7\x18\x3f\x2f\x78\x2a\xcd\x56\x00\x88\x0f\x16\xf4\xa5\x7f\x98\ +\x2f\xac\x6b\xb1\xa4\xa6\x54\xd5\x8c\x2a\xf9\x25\xb2\x29\x40\x95\ +\x2c\xa9\x3f\xce\xac\x80\x27\xfa\x44\xc2\x9f\xbb\x87\x83\x40\x27\ +\x46\x64\x49\xfd\x2d\x3e\x53\x9f\xe3\x75\x06\x8a\x85\xe3\x7a\x77\ +\x88\x31\x36\x2c\x12\x18\xa7\xd1\xca\xc2\x79\x36\xb6\x20\x9d\xbb\ +\x73\x1a\x3f\xb5\x58\x38\xef\x52\x61\xe1\xec\x83\x33\xc7\x03\xdd\ +\xc2\x61\x5e\xdf\x48\x08\xf6\x12\x4a\xfb\x98\x1e\xbb\x25\xf5\x8a\ +\x83\x25\xb0\x0c\x5b\xb5\x02\xb3\x2d\x4b\x5d\x23\xcc\xdc\x55\x00\ +\x6f\x1f\xb7\xc0\x8a\x81\x31\x30\x21\x5e\xa8\xa2\x57\xd7\x60\x9b\ +\x80\xcf\x18\xed\xcc\x2d\x46\xb1\xa0\xac\x34\x25\xc3\x9c\x07\x16\ +\x09\x8c\x53\x10\xdd\xc2\xf9\xdf\xb8\xd2\x54\x53\x4a\x99\x26\xa0\ +\x65\x03\x62\xa0\x5b\xb0\x50\xb5\x9e\x98\x56\x50\xb6\xc2\xe3\x7d\ +\x22\x61\x72\xe7\x50\x78\x74\x4f\x21\xfc\x33\x43\xd9\xdf\xfc\x70\ +\x79\x1d\x5c\xbd\x31\x1b\x26\x26\x04\x49\x62\x41\xa0\xbf\x39\x05\ +\x4e\xcc\xc1\x76\x3b\xfe\x5e\xe4\x69\xf2\x2e\x8a\x05\xe5\x37\x35\ +\xc3\x9c\x03\x16\x09\x8c\xa6\xe0\x60\xd5\x1f\x6c\x71\x07\xa3\x75\ +\xee\xca\x69\xd4\x36\x36\x4b\x2b\x4a\xb5\x16\xce\xbd\x43\x7d\xa5\ +\x89\x62\x6c\x9c\x71\x2d\x9c\x8d\x46\xa2\xbf\x17\xfc\x6d\x58\x3c\ +\x4c\xeb\x1a\x0e\xd3\x77\xe5\xc3\x8e\x62\x65\xbb\x47\x6b\x72\x2a\ +\xe1\xbb\xbc\x2a\xe9\xf8\x81\x8e\x21\x42\xc4\x29\x97\x19\x8f\x6d\ +\x35\xb6\xfb\xf1\xf9\xa3\x12\xcf\x9b\xf5\xee\x10\x63\x1c\x58\x24\ +\x30\x9a\x80\x83\x53\x34\x5e\x16\x81\xad\x72\x9c\x50\xf7\xd5\x47\ +\x99\x15\xd2\x4a\x32\x4b\xc1\xf9\xb4\x9d\x70\x1f\x4f\x78\xb2\x5f\ +\x14\x4c\xed\x1a\x26\xd2\xf9\x34\x23\x83\xe1\x51\x7e\xb0\x65\x6c\ +\x47\x78\xef\x64\x39\x3c\xb1\xb7\x10\xf2\x6a\xe4\xc7\xa1\xd4\x93\ +\x6f\x07\x0a\x4d\x32\xf5\x5a\x24\x5e\x1c\xca\x05\xd8\x7e\xc4\x67\ +\x91\x4c\xa3\xe6\xa2\x58\xc8\xd6\xbb\x43\x8c\xfb\x23\xd4\x60\xce\ +\xb8\x1f\x38\x20\xd1\x3d\xf4\x20\xb6\x79\xd8\xc2\x75\xee\xce\x69\ +\xec\x2c\xb5\x4a\x71\x07\x3f\x17\x2a\x77\xe4\xf5\xf4\xe8\x20\x55\ +\xf8\x5b\x80\x02\x21\xc2\xa4\x16\xce\x46\x83\xd2\x25\x29\x66\x81\ +\x32\x5a\x5e\x3a\x52\x0a\x56\x05\x96\xd4\x85\xb5\x0d\x30\x75\x7b\ +\x1e\xbc\x71\xd4\x22\x65\xb4\x5c\x2c\x4e\x46\x0b\xdd\xa4\xb7\x60\ +\xbb\x16\x9f\x4d\x0a\x16\x5e\x8e\x62\x41\x79\xe0\x0d\x63\x7a\x58\ +\x24\x30\x8a\xc1\x41\xe8\x0a\xbc\xac\xc4\xd6\x53\xef\xbe\xb4\xa6\ +\xc0\xda\x08\x4f\xec\x29\x92\x0c\x7d\x94\xe4\xcc\xdb\xb9\x2c\xd6\ +\x66\xe1\xdc\x37\x94\x2d\x9c\x8d\x46\x90\x57\x07\x58\xd2\x3f\x0a\ +\xee\xee\x12\x0a\xb3\x54\xd4\xc6\xd8\x5d\x5a\x0b\x97\xad\xcb\x84\ +\x1b\x53\x42\xa4\xca\x9a\x29\xe2\xd4\xc6\xa0\x28\x4b\xf2\x40\xb9\ +\x1b\x9f\xd3\xb9\x6c\x49\xcd\x28\x45\x98\x3b\x9a\x71\x1f\x70\xd0\ +\xe9\x01\x36\x71\x30\x51\xef\xbe\xb4\x86\x5c\x9b\x69\x65\xa8\xb4\ +\xfa\x9e\x9d\xce\x41\x3e\x52\x31\xa4\x6b\x93\x84\x4a\xc8\x60\x9c\ +\x40\xe7\x20\x6f\xf8\x64\x64\x22\xac\x6b\xa9\xb2\x79\x40\x61\x95\ +\xcd\x8f\x33\xcb\xe1\xcb\x9c\x4a\x98\xde\x23\x02\x66\xf7\x8e\x10\ +\xc9\x92\x3a\x05\x6c\x96\xd4\xe4\xa8\x4a\xf1\x0a\x3b\xf5\xee\x10\ +\xe3\x5e\xb0\x48\x60\x1c\x06\x07\x9a\x50\xb0\x1d\x2b\xd0\xf1\x82\ +\x50\xcb\x6b\xaa\xe3\x3f\x6b\x57\x01\x1c\x53\x50\xc7\xdf\x4e\x90\ +\xb7\x07\xcc\xed\x1d\x09\x8f\xf4\x08\x07\x1f\x71\xea\xf8\x33\x2e\ +\x60\x4c\x6c\x00\xec\x9c\xd0\x49\xf2\xeb\x78\x6a\x7f\x11\x94\x58\ +\xe5\x8b\x4c\x0a\x88\x5d\x7c\xa0\x08\xde\x3d\x59\x06\x8b\xd3\xa2\ +\x44\xb3\xa4\x1e\x89\x6d\x3b\x5b\x52\x33\x72\x61\x91\xc0\x9c\x97\ +\x16\x0b\x67\x0a\x48\x24\x1b\xdb\x18\x9d\xbb\x73\x1a\x07\xcb\xeb\ +\xa4\x15\x20\x45\x9d\x2b\x85\x4a\x29\x93\x23\xe0\x92\xfe\xd1\x10\ +\xe7\x27\x4c\x85\x3d\xc6\xc5\x90\x2e\x7c\xa0\x5b\x18\xfc\x5f\x8b\ +\x25\xf5\x9b\xc7\x94\x59\x52\x9f\xaa\xae\x97\x2c\xa9\xdf\x38\x66\ +\x8b\x57\x18\x12\x21\x9c\x25\xf5\x0d\xf8\x4c\x2f\xc6\xeb\x0b\x78\ +\xef\x2b\x8f\xe6\x65\x4c\x01\x8b\x04\xa6\x5d\x70\x30\x19\x0d\xb6\ +\x94\xc6\xfe\x3a\x77\xe5\x34\x2c\xf5\x4d\xd2\x8a\xef\xf5\xa3\xca\ +\x06\x72\x3b\xc3\xa2\xfc\x45\x1b\xc8\x19\x9d\x09\xf7\xf1\x80\x17\ +\xf0\x9e\xa0\x12\xcf\x6a\x04\xe8\xd6\xa2\x1a\x18\xf1\x5d\xa6\x88\ +\x02\x94\x76\x04\xa9\x86\x09\xc5\x2b\xcc\x44\xa1\xf0\x5f\xbd\x3b\ +\xc4\x88\x0b\x8b\x04\xe6\x9c\xe0\xe0\xd1\x09\x2f\x2b\x40\x40\x0b\ +\x67\xaa\x80\xf7\xe4\xbe\x22\x28\x56\xb0\x25\x6c\x27\x21\xc0\x0b\ +\x96\xa4\x45\x8b\xb6\x25\xcc\x08\x44\xaf\x10\x1f\x58\x33\x3a\x49\ +\xd5\x51\x56\x6b\x4b\x6a\x01\x8f\xb2\xba\x63\xfb\x02\xfb\xb8\x16\ +\x6c\x96\xd4\x07\xf5\xee\x10\x23\x1e\x2c\x12\x98\xd3\x10\xd9\xc2\ +\x59\x6d\x70\x19\xe1\xe7\xe9\x01\x8f\xf4\x0c\x97\x06\x6c\x81\x82\ +\xcb\x18\x81\x21\x4b\xea\xf1\x71\xa9\xaa\x82\x62\xc9\x92\xfa\x89\ +\x3d\x85\xb0\xfa\x78\x99\x88\x41\xb1\xe3\xb1\xed\xc1\x67\xff\x35\ +\xbc\x2e\x44\xb1\x50\xaa\x77\x87\x18\x71\x60\x91\xc0\xfc\x0f\x51\ +\x2d\x9c\x4f\x54\xd6\xab\x4a\x53\xb3\x73\x7d\x72\xb0\x54\x4a\xb9\ +\x63\x20\xdf\xf6\x8c\x3c\xa8\xb8\x22\x59\x52\xdf\x96\x1a\xa2\x2a\ +\xbd\xf6\x44\x65\x1d\xdc\xf8\xd3\x29\x29\xbd\x96\x8e\xb9\xfa\x88\ +\x93\x5e\x4b\xb5\xa6\x1f\xc2\x76\x0b\x8e\x03\xf3\xf1\xfa\x16\x5b\ +\x52\x33\x04\x8f\x96\x0c\x89\x03\xb2\x6e\x7e\x11\xdb\x30\xbd\xfb\ +\xd2\x1a\xbb\x85\xb3\xd2\x82\x37\x76\x06\xb4\x58\x38\x0b\x54\xf0\ +\x86\x71\x53\x62\x7c\x3d\xe1\xad\xa1\xb1\x30\xb5\x5b\x98\xaa\x42\ +\x5d\x3f\xe4\x57\xc1\xe0\xb5\xe9\x22\x16\xea\x8a\xc2\x46\x3b\x0a\ +\x53\x5b\x2c\xa9\x7f\xd0\xbb\x43\x8c\xbe\xb0\x48\x30\x31\x38\x08\ +\x50\xcd\x77\xda\x39\xa0\x1d\x04\x61\x46\x29\x42\x4d\xe9\x5c\x3b\ +\xd1\x7e\x5e\x22\x96\xce\x65\x0c\xc0\xa0\x70\x5f\xd8\x30\x26\x59\ +\x55\xc9\x6f\xb2\xa4\x7e\xfd\x68\x29\xfc\x33\xa3\x5c\x2a\xf9\x3d\ +\xad\x6b\x18\x88\x13\xae\x00\x69\xd8\xd6\xe1\x18\xf1\x09\x5e\x67\ +\xa1\x58\x38\xa9\x77\x87\x18\x7d\x60\x91\x60\x42\xf0\xc1\x27\xf7\ +\x38\x8a\x39\xa0\xd8\x83\x60\x9d\xbb\x73\x1a\x5b\x8a\x6a\x55\x99\ +\xf0\x10\xde\x38\xd2\x0a\x68\xc2\xc3\x18\x90\x49\x29\xc1\xf0\x87\ +\xc4\x20\x58\xae\xc2\x3c\xac\xb4\xae\x11\x1e\xfe\x35\x1f\xde\x3a\ +\x66\x91\x2a\x7c\x5e\x1e\x2b\x94\x79\x18\x05\x2e\x5f\x89\x63\xc6\ +\x73\x78\x7d\x06\xc5\x82\xba\x33\x3f\xc6\xed\x60\x91\x60\x32\xf0\ +\x61\xbf\x0e\x6c\x59\x0b\x9d\xf5\xee\x4b\x6b\x4e\xd5\x34\xa8\xb2\ +\xf3\xb5\x73\x45\x8b\x9d\x6f\x77\x71\xec\x7c\x19\x83\xe3\xef\xd9\ +\x01\xe6\xf7\x8d\x84\x3b\x3b\x87\xaa\xb2\x21\xff\xad\xcc\x0a\x57\ +\xac\xcf\x82\x3f\x24\xd9\x6c\xc8\xbb\x04\x09\x73\x0f\x53\x7e\x30\ +\x59\x51\xdf\xc5\x96\xd4\xe6\x83\x45\x82\x49\xc0\x87\xbb\x1f\x5e\ +\x9e\xc7\x36\x46\xef\xbe\xb4\xc6\xda\xd4\x0c\x2b\x70\x15\x46\x2b\ +\xb1\x2a\x15\x16\xce\x3d\x42\x7c\x24\x71\x30\x21\x3e\x50\xc3\xde\ +\x31\x8c\xe3\x24\x07\x78\xc1\x07\x17\xc5\xc3\xfd\x85\xb6\x78\x85\ +\x5d\xa5\xca\x76\xc3\x28\x40\xf7\x9b\xdc\x2a\x78\xa8\x7b\x04\x3c\ +\xd6\x27\x52\xf2\x99\x10\x04\xbb\x25\xf5\xb4\x16\x4b\xea\x2d\x7a\ +\x77\x88\x71\x3e\x2c\x12\x0c\x0e\x3e\xcc\x91\x78\x59\x88\xed\x3e\ +\x10\xec\xef\xfd\x09\xae\xb8\x68\xe5\x95\xa1\xc2\xc2\x39\xcc\xc7\ +\x53\x3a\x56\xa0\xe3\x05\xce\x68\x64\x44\x60\x64\xb4\x3f\x6c\x1b\ +\xdf\x11\x56\x9f\x28\x83\xf9\x7b\x8b\xa0\xa0\x56\x7e\x5c\x4d\x5d\ +\x63\x33\x0a\xe7\x62\x29\x8b\xe2\xa9\xb4\x28\x98\xd2\x39\xd4\x09\ +\x3d\x55\xcc\x10\x6c\x3f\xb5\x58\x52\xcf\x41\xb1\x70\x4a\xef\x0e\ +\x31\xce\x43\xa8\x49\x83\xd1\x8e\x16\x0b\xe7\x69\xd8\x16\x60\x8b\ +\xd0\xb7\x37\xa7\xb3\xc7\x62\xb3\x70\xde\x54\xa0\xce\xc2\x99\x02\ +\x12\x9f\xea\x17\x05\x51\xbe\xc2\x54\xb2\x63\x18\x09\xd2\xab\x34\ +\xb1\xff\x29\x25\x18\x16\xed\x2f\x86\x57\x8f\x96\x4a\x13\xbf\x5c\ +\x0a\x5a\x2c\xa9\xdf\x6c\xb1\xa4\x1e\x29\x4e\x86\x8e\xdd\x92\xfa\ +\x1a\x1c\x6b\xa8\x7a\x23\x5b\x52\x1b\x14\x16\x09\x06\x04\x1f\xda\ +\x71\x60\x73\x69\xec\xa3\x77\x5f\x5a\x53\x64\x6d\x84\xf9\xfb\x8a\ +\xa4\x15\x56\xa3\x8a\x52\xca\x97\xc4\x04\x48\x03\x66\x5a\x98\xaf\ +\x86\xbd\x63\x18\xed\x09\xf6\xf2\x80\x65\x03\xa2\xa5\x12\xcf\xb3\ +\x55\xd4\xfa\xa0\xa3\x8b\xcb\x7e\xc8\x82\x1b\x92\x83\xa5\x62\x4c\ +\xc9\xe2\x58\x52\x53\x55\x28\xb2\xa4\xa6\x78\x85\xd9\x28\x14\x3e\ +\xd6\xbb\x43\x8c\xb6\x08\x73\xa7\x31\xea\xc1\x87\x94\xca\xac\x92\ +\x38\xb8\x52\xef\xbe\xb4\xa6\x01\xf5\xc0\xab\x47\x4a\x61\xd1\x81\ +\x62\x28\xab\x53\x5e\x9f\xa5\x63\xa0\xb7\x34\x40\xfe\x31\x59\xa8\ +\x84\x0c\x86\x39\x2f\x5d\x5a\x2c\xa9\xbf\xcb\xab\x86\x99\xbb\x0a\ +\xa4\x20\x45\xb9\x50\x30\xa4\xdd\x92\x7a\x66\xcf\x08\x98\xdd\x2b\ +\x02\xfc\xc4\x39\x63\xeb\x84\xed\x5f\xd8\xc7\x8d\x60\xb3\xa4\xde\ +\xa3\x73\x7f\x18\x8d\x60\x91\x60\x00\xf0\xc1\x24\x03\x02\xaa\x92\ +\xf6\x67\x6c\x42\x2d\xaf\xa9\xee\xfd\x6c\x1c\x14\x8f\xaa\xb0\x70\ +\x0e\xc4\xd5\xd8\x2c\x1c\x10\x67\x62\xf3\x15\x28\x91\x9c\x61\xe4\ +\x32\x36\xce\x66\x49\x4d\x0e\x91\x0b\xf7\x15\x49\xe9\x8f\x72\xa1\ +\x34\xcb\x45\xfb\x6d\x96\xd4\x4b\xfb\x47\x4b\x69\x98\x02\x71\x09\ +\xb6\x1d\x38\x26\xad\xc2\xeb\x3c\x14\x0b\x85\x7a\x77\x88\x51\x07\ +\x8b\x04\x37\xa6\x95\x85\xf3\x22\x6c\xb1\x3a\x77\xe7\x34\x0e\x95\ +\xd7\x49\x2b\xa6\xb5\xb9\xea\x2c\x9c\x6f\xea\x18\x0c\xcf\xe0\x40\ +\x98\xe0\xcf\xb7\x2a\x63\x0c\x3c\x5b\x2c\xa9\x6f\xee\x18\x02\x0b\ +\x50\x28\xbc\x75\xdc\xa2\xe8\xf8\x8d\x0a\x38\xdd\xba\x39\x07\x5e\ +\x3f\x6a\x3b\x7e\xa3\x02\x4f\x82\x40\x0f\x2b\x05\x4a\x4f\xc2\x31\ +\x8a\x8e\x22\x5e\xc6\x67\x59\x79\x55\x34\x46\x57\x78\xe4\x75\x53\ +\xf0\xe1\xbb\x18\x6c\x16\xce\x83\xf4\xee\x4b\x6b\xca\xea\x9b\x60\ +\x21\xae\x72\xde\x38\x6a\x81\x7a\x15\x71\x07\x43\x22\x6d\x16\xce\ +\xc3\x22\xd9\xc2\x99\x31\x26\x54\x8a\xf9\xa5\xc1\x31\x70\x6f\x8b\ +\x25\x35\x95\x6a\x56\x02\x95\x86\x1e\xfe\x6d\x06\xdc\x91\x1a\x0a\ +\x4f\xf7\x8f\x92\x4a\x47\x0b\x42\x18\xd8\x8e\x3f\xef\xc5\xf1\x6a\ +\x3a\x0a\x85\xaf\xf5\xee\x10\x23\x1f\x16\x09\x6e\x06\x3e\x6c\x29\ +\x60\xf3\x82\xbf\x11\x04\x2a\xa5\x4c\x72\x80\x2a\xc6\x2d\xd8\x57\ +\x0c\x45\x56\xe5\x8b\x06\xb6\x70\x66\xcc\x46\xdf\x50\x1f\x58\x7b\ +\x69\x12\xfc\x27\xbb\x52\x4a\x09\x26\x13\x28\xb9\x90\xd9\xd4\x3b\ +\x27\x2c\x52\x5a\x31\xd5\x56\xf8\x4b\xf7\x70\x10\xa8\xd8\x68\x4f\ +\x6c\x6b\x70\xec\x5a\x83\x57\x12\x0b\x87\xf5\xee\x10\xe3\x38\x2c\ +\x12\xdc\x04\x7c\xc0\xa8\x56\xeb\x6c\x6c\xb3\xb0\x09\x55\xb7\x75\ +\x43\x41\x8d\xb4\x12\xda\x6b\x51\x9e\x01\xc5\x16\xce\x8c\xd9\x21\ +\xfb\xe8\x89\x09\x81\xf0\xfc\xe1\x52\x78\xe6\xb7\x62\xc9\x5e\x5a\ +\x2e\x64\x63\x3d\x77\x77\x01\xfc\xf5\xb8\x05\x96\x0f\x8c\x91\x6c\ +\xae\x05\x62\x22\xb6\xcb\x71\x2c\x7b\x19\xaf\x8b\x50\x2c\x94\xe9\ +\xdd\x21\xe6\xfc\xb0\x48\x70\x03\xf0\xa1\xba\x19\x2f\xcf\x62\x4b\ +\xd6\xbb\x2f\xad\x49\xaf\xaa\x97\x56\x3e\x9f\xe2\xea\x45\x0d\xd7\ +\xb7\xa4\x75\x75\x0a\x14\xa6\x0c\x2d\xc3\xe8\x82\x8f\x47\x07\x98\ +\xd3\x2b\x42\x3a\x3a\x78\x6c\x4f\x21\xfc\x3d\xbd\x5c\x51\x89\xe7\ +\x63\x15\x75\x70\xdd\xa6\x6c\x18\x1b\x17\x28\xf9\x41\xf4\x0a\x11\ +\xc6\x92\x9a\x3a\x32\x03\xdb\x6d\xf8\x7b\x3d\x81\xd7\x55\x28\x16\ +\x94\x97\x5a\x65\x9c\x0e\x8b\x04\x81\xc1\x87\x68\x30\xd8\x2c\x9c\ +\x47\xe8\xdd\x97\xd6\x54\x37\x36\x4b\x2b\x9d\xe7\x0f\x95\x42\xad\ +\x0a\x0b\xe7\x7e\x61\xbe\xb0\x72\x50\x2c\x8c\x8e\x11\xa6\x40\x0c\ +\xc3\x08\x41\x9c\x9f\x27\xac\xbe\x30\x0e\xa6\xb5\x58\x52\x6f\x2d\ +\xaa\x51\xf4\x3e\xdf\xe5\x55\xc1\xa0\x6f\xd2\xa5\xf7\x99\xdf\x37\ +\x0a\xc2\xc4\x39\x83\x88\xc1\xf6\x16\xb6\x07\x70\x9c\x7b\x18\x85\ +\xc2\x06\x9d\xfb\xc3\xb4\x01\x8b\x04\x01\xc1\x87\x86\x32\x15\x16\ +\x63\x9b\x8c\x4d\x98\x28\x24\xe2\x1f\xb8\xb2\x79\x6c\x6f\x21\xe4\ +\x54\x2b\x8f\x3b\x88\xf4\xf5\x84\x85\xfd\xa2\xe0\x9e\x2e\x42\x59\ +\xe3\x32\x8c\x70\x0c\x89\xf0\x83\x1f\x2f\x4f\x51\xf5\xdc\x35\x34\ +\x35\xc3\xcb\x87\x4b\xa5\xf7\x78\x12\x85\xc2\x54\xb1\x2c\xa9\xfb\ +\x63\x5b\xdf\x62\x49\x3d\x13\xc5\x42\xba\xce\xfd\x61\xce\x80\x45\ +\x82\x40\xe0\x83\x42\x5b\x71\x0f\x81\xcd\x71\x4d\xa8\x62\xed\xdb\ +\x8b\xc9\xc2\xb9\x00\xb6\x29\x5c\xd1\x10\x5e\x38\x32\xd1\x8a\x86\ +\x06\xaa\x50\x71\x56\x34\x0c\x23\x3c\x14\xc8\x7b\x5d\x72\xb0\xaa\ +\x1d\xbc\x12\x6b\x23\x3c\xd4\xca\x92\x7a\x8c\x78\x96\xd4\x13\x71\ +\x0c\xa4\x6c\x88\xa5\x28\x16\x94\xe7\x4e\x33\x9a\xc2\x22\x41\x10\ +\xf0\xe1\xb8\x1a\x2f\xe4\xd9\xde\x4d\xef\xbe\xb4\x26\xaf\xb6\x51\ +\xd5\xd9\xa8\x9d\x71\xf1\x81\xf0\xdc\xc0\x18\xe8\x29\xce\xd9\x28\ +\xc3\xb8\x15\x14\xd0\x4b\x5e\x25\x53\x3a\x87\xc1\xdc\x3d\x05\xf0\ +\xef\x4c\x65\xb1\x40\x07\xca\xac\x30\xa1\xc5\x92\x7a\xf9\x80\x18\ +\xe8\x2c\x8e\x25\x35\x9d\x3b\xd2\x02\x69\x32\x8e\x35\x8f\xa2\x50\ +\x78\x5f\xef\x0e\x31\x2c\x12\x74\x07\x1f\x86\xde\x60\xb3\x70\x1e\ +\xa7\x77\x5f\x5a\x53\xd7\xd4\xac\x2a\xca\xda\x4e\xb7\x60\x1f\x58\ +\x26\x5e\x94\x35\xc3\xb8\x2d\x1d\x03\xbd\xe0\xc3\x8b\x12\xe0\xfe\ +\x6e\x35\x52\xbc\xc2\x6e\x15\x96\xd4\x6b\x73\xab\xa5\x74\x49\xc1\ +\x2c\xa9\x13\xb1\xfd\x0d\xc7\xc6\xfb\xc1\x56\xe2\x79\xbb\xde\x1d\ +\x32\x33\x2c\x12\x74\x02\x1f\x00\x72\x66\xa4\x6a\x64\xf7\x62\x13\ +\x46\xca\x13\x9f\xe2\xe0\x31\x77\x77\x21\x9c\x54\x90\xaf\x6d\x27\ +\xc4\xdb\x53\x1a\x78\x1e\xea\x11\x0e\xe2\x8c\x3d\x0c\x63\x1c\x2e\ +\x8e\xf6\x87\xed\x2d\x96\xd4\xf3\xf6\x16\x41\xa1\x02\x4b\x6a\x6b\ +\x63\x93\x64\x49\xfd\x7e\x7a\x19\x3c\x9d\x16\x0d\x77\xa4\x0a\x55\ +\x9f\x64\x18\xb6\x2d\x38\x56\xd2\x8e\x02\xed\x2c\xe4\xea\xdd\x21\ +\x33\xc2\x22\xc1\xc5\xe0\x0d\x4f\x81\x88\xa4\x90\x9f\xc4\x16\xa9\ +\x73\x77\x4e\x63\x6f\x8b\x85\xf3\x46\x15\x16\xce\x1e\x1d\x3a\x48\ +\xe9\x5b\x8b\xfb\x47\x41\xb4\x38\x95\xdf\x18\xc6\x90\xd8\x2d\xa9\ +\x6f\x4c\x0e\x86\xa7\x0f\x14\xc3\x2b\x47\x4a\x15\x55\x3a\xcd\xab\ +\x69\x80\xbb\xb7\xe5\xc2\x1b\xc7\x4a\x61\xe5\xc0\x58\x18\x1e\x25\ +\x4c\xa5\x53\x0a\x5e\xba\x03\xdb\xf5\x38\x76\x2e\xc5\xeb\x4a\x14\ +\x0b\xf2\xdd\xb1\x18\xc5\xb0\x48\x70\x21\x78\x93\x5f\x0e\xb6\xa3\ +\x85\xbe\x7a\xf7\xa5\x35\xc5\x75\x8d\xd2\x4a\x44\xad\x85\xf3\x88\ +\xe8\x00\x78\x7e\x50\x0c\x0c\x14\xa7\x86\x3c\xc3\x98\x82\x10\x6f\ +\x9b\x25\xf5\xdd\x5d\xc2\x24\xcf\x94\xaf\x73\x94\x59\x52\xef\x28\ +\xae\x85\x4b\xd6\x65\x4a\x9e\x29\x64\x1e\x95\x28\x8e\x67\x0a\xb9\ +\x58\x2d\xc1\x36\x05\xc7\xd1\x59\x28\x14\x3e\xd3\xbb\x43\x66\x41\ +\x98\x3b\xc0\xc8\xe0\x4d\xdd\x05\x6c\x41\x89\xd7\xe8\xdd\x97\xd6\ +\x34\xa2\x1e\xa0\x95\x07\xad\x40\x2c\x2a\x2c\x9c\x53\x02\xbd\x25\ +\x13\xa6\x1b\xc5\x72\xa3\x63\x18\xd3\xd1\x3d\xd8\x1b\xbe\x18\x95\ +\x08\xdf\xe4\x56\x49\x62\xe1\x70\xb9\xfc\x23\x43\x0a\x50\xfe\x30\ +\xbd\x1c\x3e\xcf\xae\x94\xec\xa8\x05\x73\x5f\xa5\xb1\xf4\x53\xec\ +\xe3\x3a\xbc\x3e\x82\x62\x61\x9f\xde\x1d\x32\x3a\x2c\x12\x9c\x08\ +\xde\xc8\x34\x6b\x52\xb4\x2e\xa5\x35\x0a\xb3\x7f\x47\xd0\x20\x32\ +\x6b\x57\x21\x1c\x2a\x57\xbe\x73\x17\xe0\xe5\x21\xe2\x20\xc2\x30\ +\xa6\x67\x42\x7c\x20\x8c\x8d\x4b\x55\xb5\x08\xa8\x6e\x68\x92\x5c\ +\x2a\xdf\x39\x51\x26\x55\x44\xfd\x63\xb2\x50\x8b\x80\x31\xd8\x76\ +\xe2\x18\xfb\x26\x5e\x9f\x44\xb1\x50\xac\x77\x87\x8c\x0a\x8b\x04\ +\x27\x80\x37\x2e\xcd\x98\x93\xc1\x56\x10\x29\x5e\xdf\xde\x9c\xce\ +\xd1\x8a\x7a\x69\x85\xb1\x46\xe1\x76\x24\x61\xb7\x70\x16\x6c\x3b\ +\x92\x61\x98\x56\x90\x05\x0a\x05\x0e\xdf\x9a\x1a\xa2\xea\x38\x31\ +\xa3\xaa\x1e\x6e\xfa\x39\x07\x46\xc5\xd8\x2c\xa9\xfb\x87\x09\x73\ +\x9c\x48\x83\xcf\x03\xd8\x6e\xc6\x31\x77\x01\x5e\x5f\x67\x4b\x6a\ +\xed\xe1\x11\x5e\x63\xf0\x66\xbd\x08\x6c\x16\xce\x43\xf4\xee\x4b\ +\x6b\xca\xeb\x9b\x54\x05\x36\xd9\x19\x1c\xe1\x07\xcf\x0f\x12\x2a\ +\xb0\x89\x61\x98\x76\x88\xf4\xf1\x84\xd7\x2e\x88\x95\x2a\x2d\xaa\ +\x09\x4c\xde\x84\xaf\x1b\xba\x36\x03\xa6\x74\x09\x95\xea\x35\x44\ +\x89\x13\x98\x4c\x99\x62\x2f\x61\xbb\xaf\xc5\x92\xfa\x5b\xbd\x3b\ +\x64\x24\x58\x24\x68\x04\xde\x9c\x49\x78\x79\x06\x1b\x99\x31\x09\ +\x53\x4e\x90\xe4\x80\x9a\x14\x29\x3b\x71\xfe\x5e\x22\xa6\x48\x31\ +\x0c\xe3\x20\x69\x61\xbe\xf0\xfd\x65\xc9\x92\x9d\x34\x19\xb3\xd1\ +\x0e\x81\x5c\xc8\x92\xfa\xed\x63\x16\xf8\x57\x66\x05\x3c\xde\x27\ +\x12\x1e\xec\x2e\x54\x8a\x73\x1f\x6c\x6b\x71\x2c\xfe\x2f\xd8\x4a\ +\x3c\x1f\xd1\xbb\x43\x46\x80\x45\x82\x4a\xf0\x86\xa4\x25\x35\xd9\ +\x37\xcf\xc1\x26\x54\xc5\xa0\x1f\x0b\xd5\x15\x5b\x21\x7c\x3d\x3d\ +\x44\x2c\xb6\xc2\x30\x8c\x42\x28\xb6\xe0\xaa\xc4\x20\x58\x71\xb0\ +\x04\x96\x63\xab\x6a\x90\x5f\x2c\xad\xac\xae\x11\x66\xef\x2a\x90\ +\x04\x83\x80\xc5\xd2\xa8\x7a\xed\x38\x1c\x9b\x5f\xc1\xeb\x53\x28\ +\x16\xca\xf5\xee\x90\x3b\xc3\x22\x41\x05\x78\x13\xde\x88\x97\x65\ +\xd8\x3a\xe9\xdc\x95\xd3\xc8\xaa\x6e\x90\x56\x0a\x1f\x67\xaa\x7b\ +\x36\x04\x2c\xdb\xca\x30\x8c\x06\x50\xa0\x31\xed\x04\xdc\xd9\x39\ +\x14\xe6\xee\x29\x84\x7f\x66\x54\x28\x2a\xbb\x7e\xb4\xc5\x92\x5a\ +\xc0\xb2\xeb\x14\x38\x41\x96\xd4\xb7\xe2\xef\x35\x0f\xd8\x92\x5a\ +\x31\x2c\x12\x14\x80\x37\xdd\x00\xb0\xc5\x1d\x5c\xa2\x77\x5f\x5a\ +\x53\xd3\xd8\x2c\xad\x0c\x56\x1c\x2a\x81\x1a\x05\xab\x03\x3b\xbd\ +\x43\x7d\x25\x03\x98\xcb\xc5\x32\x80\x61\x18\x46\x63\x12\xfc\xbd\ +\xe0\x6f\xc3\xe2\xe1\xfe\x6e\xe1\xd2\xae\xe3\x2f\xc5\xca\x0c\xdc\ +\xbe\xcd\xad\x82\x81\xf9\xe9\x22\x1a\xb8\x91\xa3\x2e\x59\x52\x4f\ +\x6d\xb1\xa4\xfe\x51\xef\x0e\xb9\x1b\x2c\x12\x64\x80\x37\x59\x34\ +\x5e\x16\x61\xbb\x1b\x04\xb3\x70\xfe\x10\x57\x02\x64\xc4\x94\x5d\ +\x2d\xff\x9c\xd1\x4e\x84\xaf\xa7\xe4\x39\x3f\x4d\x2c\x2b\x59\x86\ +\x61\x9c\xcc\xb0\x48\x3f\xd8\x3c\x56\x1b\x4b\xea\x0f\xd3\x2b\x60\ +\x41\xbf\x48\xb8\x17\xc7\x11\x81\x86\x91\x41\xd8\x36\xe0\x18\xfe\ +\x31\x5e\x67\xa3\x58\xc8\xd4\xbb\x43\xee\x02\x8b\x04\x07\xc0\x1b\ +\x8b\xf6\xdb\x1f\x06\x01\x2d\x9c\x77\x94\xd4\xc2\x23\xb8\x02\xd8\ +\xaa\xd2\xc2\xf9\x9e\x2e\x61\xb0\xb0\x5f\x14\x84\xfb\x08\xb3\x02\ +\x60\x18\xc6\xc5\x68\x61\x49\x5d\x64\x6d\x80\x3f\xef\xc8\x87\x37\ +\x8f\x59\x60\xe5\xa0\x58\x18\x1d\xe3\xef\x84\x9e\x2a\x82\x06\xb7\ +\x49\xd8\xae\xc6\x31\x7d\x39\x5e\x97\xa1\x58\x50\x5e\x83\xde\x24\ +\xb0\x48\x38\x0f\x2d\x16\xce\x2b\xb0\x75\xd7\xbb\x2f\xad\xd1\xca\ +\xc2\x79\x4c\x9c\xed\x2c\xb1\x4f\xa8\x30\x67\x89\x0c\xc3\xe8\x88\ +\xdd\x92\xfa\xae\xce\xa1\x52\x6c\xd3\xa7\x59\xca\x2c\xa9\xf7\x59\ +\xac\x30\xf6\x87\x4c\xb8\x1e\x45\x07\x15\x63\xea\x14\x28\x4c\x6c\ +\x7b\x1d\x09\x2f\x00\x00\x20\x00\x49\x44\x41\x54\x13\x9d\xa3\x92\ +\x77\xce\x9d\x38\x76\xce\x45\xa1\xf0\xa1\xde\x1d\x12\x19\x16\x09\ +\x6d\x80\x37\x4f\x2f\xb0\xf9\x2c\x8c\xd7\xbb\x2f\xad\xd1\xca\xc2\ +\xb9\x73\x90\x8f\xf4\xe0\x5e\x9b\x14\xa4\x61\xef\x18\x86\x31\x0a\ +\x34\xa9\x7f\x34\x22\x01\x36\x14\x50\x96\x54\xbe\x34\xe9\x2b\x81\ +\x44\xc6\x9a\x9c\x2a\x78\xa4\x67\x38\xcc\xed\x1d\x29\x89\x10\x41\ +\x48\xc1\xf6\x41\x8b\x25\x35\xc5\x2b\xfc\xaa\x77\x87\x44\x84\x45\ +\xc2\x19\xe0\x0d\x13\x86\x97\x05\x60\x73\x6a\x14\x46\xfa\x12\xff\ +\xc9\xae\x94\x94\xfd\x09\x15\x16\xce\xc1\xde\x1e\xf0\x28\x3e\xa8\ +\x0f\xf7\x88\x00\x71\x62\x8b\x18\x86\x11\x15\x3a\x2e\xd8\x31\xbe\ +\x13\xbc\x7d\xdc\x02\x4f\xee\x2b\x82\x62\xab\xfc\x12\xcf\x74\x6c\ +\xb1\xf4\x40\x31\xbc\x77\xb2\x0c\x96\xa4\x45\x4b\xc7\x1a\x02\x31\ +\x12\xdb\x36\x1c\xfb\xdf\xc5\xeb\xe3\x28\x16\xf2\x75\xee\x8f\x50\ +\xb0\x48\x68\x01\x6f\x10\x9a\x32\xef\xc3\xb6\x10\x5b\xb4\xce\xdd\ +\x39\x8d\x03\x65\x75\x52\xe4\xf1\x0f\xf9\x55\x8a\xdf\xc3\x6e\xe1\ +\xfc\x74\xff\x28\x88\x11\xa7\x52\x1a\xc3\x30\x6e\x00\x05\x32\xdf\ +\xd7\x35\x0c\x6e\xea\x18\x02\x0b\xf7\x17\xc1\xeb\x47\x2d\x52\xa0\ +\xa2\x5c\x28\x20\x72\xf2\xd6\x5c\x78\x9d\xe2\x15\x06\xc6\xc0\xd0\ +\x48\x61\x2a\xb7\xd2\xa0\x38\x05\xdb\x0d\x38\x17\x50\x39\xfd\x17\ +\x51\x2c\x28\x5f\x8d\x19\x08\x16\x09\x20\x09\x84\x4b\xc1\x96\xd2\ +\x98\xa6\x77\x5f\x5a\x53\x5a\xd7\x24\x29\xf7\xb7\x50\xc1\xab\xb1\ +\x70\xbe\x28\xda\x5f\x2a\xa5\x3c\x88\x2d\x9c\x19\x86\x51\x01\xa5\ +\x36\xd2\xe4\x7e\x6f\x97\x30\x98\xb1\xab\x40\x4a\x7d\x54\xc2\xb6\ +\xa2\x1a\x18\xf9\x7d\x26\xdc\xda\x29\x04\x16\xa7\x45\x43\xbc\xbf\ +\x30\x0b\x17\x0a\x4c\xa7\xda\x37\xf7\xe0\xbc\x30\x03\x85\xc2\x7f\ +\xf5\xee\x90\xde\x98\x5a\x24\xe0\x4d\x90\x8a\x17\x8a\x72\xfd\xa3\ +\xde\x7d\x69\x0d\xe9\x01\x52\xda\x0b\x51\x20\x94\xaa\xb0\x70\x4e\ +\x0a\xf0\x86\x67\x06\x44\xc3\x24\xb6\x70\x66\x18\x46\x43\xa8\x68\ +\xd2\x57\x97\x24\xc1\x97\x39\x55\x52\xe5\x45\x2a\xaa\x24\x17\x0a\ +\xb8\x7e\xff\x64\x19\x7c\x96\x5d\x01\xb3\x7b\x45\xc2\xf4\x9e\xe1\ +\x22\xb9\xc9\x76\xc3\xf6\x05\xf6\x91\x7c\x20\xc8\x92\xfa\x37\xbd\ +\x3b\xa4\x17\xa6\x14\x09\xf8\x87\xa7\x1a\xa2\x8f\x62\x9b\x8e\x4d\ +\x98\xfc\x1c\xe2\xfb\xfc\x6a\x98\xb1\xb3\x00\x7e\x2b\x53\x6e\xe1\ +\xec\xef\xe5\x01\x33\x7b\x46\xc0\xac\x5e\x11\xe0\x2f\x4e\x90\x10\ +\xc3\x30\x06\x83\xca\x31\x4f\x88\x4f\x85\x17\x0f\x97\xc2\x92\x03\ +\xc5\x50\x5e\x2f\x7f\x51\x43\x01\xd8\xf3\xf7\x16\xc2\xea\x13\x16\ +\x78\xa6\xbf\x70\x96\xd4\xe3\xb0\xed\xc6\x39\xe3\x35\xbc\x2e\x44\ +\xb1\x50\xaa\x77\x87\x5c\x8d\xe9\x44\x02\xfe\xb1\x6f\xc3\xcb\x52\ +\x6c\x89\x7a\xf7\xa5\x35\xc7\x2b\xeb\x61\xf6\xee\x02\xf8\x22\x5b\ +\xb9\x85\x33\x71\x63\x4a\x88\x94\xb5\x90\x1c\x60\xba\x3f\x2d\xc3\ +\x30\x3a\x40\x96\x2e\x33\x7a\x86\xc3\xed\xa9\x21\xf0\xf8\x9e\x22\ +\x29\x38\xb1\x49\x41\x5a\x76\x7a\xa5\xcd\x92\xfa\x92\x16\x4b\xea\ +\x34\x71\x2c\xa9\x29\x80\xfd\x21\xb0\x95\x78\xa6\x98\xb5\xd7\x50\ +\x2c\x28\xdf\xe2\x75\x33\x4c\x33\x93\xe0\x1f\xf7\x42\xb0\xc5\x1d\ +\x0c\xd3\xbb\x2f\xad\xa9\x6c\x68\x96\x14\xf8\x8b\x47\x4a\xa0\xae\ +\x51\x79\xdc\xc1\xc0\x70\x3f\xe9\xc1\x1a\x19\x2d\xd4\xc6\x08\xc3\ +\x30\x26\x21\xda\xd7\x13\xde\x1a\x1a\x2b\x95\x66\xa6\x02\x6f\x3f\ +\x17\x2a\xab\x53\x44\x56\xd6\x43\xbf\xcd\x90\xea\x34\x2c\x4a\x8b\ +\x92\xac\xae\x05\x21\x12\x6c\x96\xd4\xf7\xe2\x7c\x42\x47\x10\xdf\ +\xeb\xdd\x21\x57\x60\x78\x91\x80\x7f\xcc\x04\xbc\x2c\xc1\x46\x3b\ +\x08\x42\x25\xfd\xbd\x77\xb2\x1c\x95\x77\x21\xe4\xab\xb0\x70\x8e\ +\xf1\xf3\x82\xa7\xd2\x6c\x85\x4f\xf8\x60\x81\x61\x18\xbd\x19\x18\ +\xee\x0b\x1b\xc6\x24\xc3\x47\x99\x15\xf0\x28\x8e\x6f\x59\x0a\x2c\ +\xa9\x29\x50\x9b\x1c\x26\x3f\xc6\xf7\x78\xa2\x4f\x24\xfc\xb9\x7b\ +\x38\x08\x74\x72\xda\x17\xdb\x77\x38\xb7\x7c\x8e\x57\x0a\x6e\x3c\ +\xae\x77\x87\x9c\x89\x61\x45\x02\xfe\x01\x69\xaf\x8a\x62\x0e\x28\ +\xf6\x40\xa8\x43\xae\x9f\x5a\x2c\x9c\x77\xa9\xb0\x70\xf6\xf6\xe8\ +\x20\x3d\x38\xf3\xfa\x46\x42\xb0\x97\x50\xda\x87\x61\x18\x46\x0a\ +\x98\xa6\x62\x6d\x64\x49\xbd\x0c\x5b\xb5\x02\xd3\x39\x4b\x5d\x23\ +\xcc\x24\x4b\xea\xe3\x16\x58\x31\x30\x06\x26\xc4\x0b\x65\x49\x7d\ +\x0d\xb6\xf1\x38\xd7\xbc\x88\xd7\xc5\x28\x16\x94\x95\xa6\x14\x1c\ +\x43\x8a\x04\xfc\xa3\x51\xb6\x02\xa5\xb1\x74\xd6\xbb\x2f\xad\xb1\ +\x5b\x38\xff\x3b\x4b\x99\x2d\xab\x9d\x89\x09\x41\xd2\x03\xd3\x2d\ +\x58\xa8\x5a\x4f\x0c\xc3\x30\xa7\x61\xb7\xa4\x9e\xdc\x39\x54\xda\ +\x55\x50\x6a\x49\x7d\xb8\xbc\x0e\xae\xde\x98\x2d\xe2\xd8\x47\x85\ +\x1e\xe6\x60\xbb\x1d\x7f\x2f\xf2\xf6\x79\x17\xc5\x82\xf2\xc1\x5d\ +\x40\x0c\x25\x12\xf0\x8f\xd4\x1f\x6c\x71\x07\xa3\x75\xee\xca\x69\ +\xd4\x36\x36\x4b\x4a\x5a\xad\x85\x73\xcf\x10\x5f\x58\x31\x28\x1a\ +\xc6\xc7\x09\xa5\xa6\x19\x86\x61\xda\x25\xb1\xc5\x92\x7a\x5a\xd7\ +\x70\x78\x64\x67\x3e\xfc\x5a\xa2\x6c\x17\x75\x4d\x4e\x25\x7c\x97\ +\x57\x25\xed\xa2\xd2\x31\x44\x88\x38\x65\x63\xe3\xb1\xad\xc6\x36\ +\xad\xc5\x92\x7a\xb3\xde\x1d\xd2\x0a\x43\x88\x04\xfc\xa3\x44\xe1\ +\xe5\x69\xb0\x55\xcc\x12\xea\x77\x52\x73\x2e\x67\x27\xcc\xc7\x53\ +\xc4\x73\x39\x86\x61\x18\x59\x0c\x8f\xf2\x83\xad\xe3\x3a\x4a\xf1\ +\x58\x4f\xec\x2d\x84\xbc\x1a\xf9\xf1\x58\xf5\xe4\x5f\x83\x0b\x2e\ +\x32\xb7\x5b\x24\x5e\x3c\xd6\x10\x6c\x3f\xe2\x9c\x44\xa6\x51\x64\ +\x1e\x95\xad\x77\x87\xd4\x22\xd4\x84\x2a\x17\xfc\x43\x50\xff\x1f\ +\xc4\x36\x0f\x5b\xb8\xce\xdd\x39\x8d\x9d\xa5\x56\x29\xee\x40\x69\ +\x84\x2f\xe1\xe9\xd1\x01\xee\xee\x12\x2a\x59\x38\x0b\x14\xe1\xcb\ +\x30\x0c\xa3\x8a\x3b\x52\x43\xa4\x7a\x08\x6a\x32\xbb\x0a\x6b\x1b\ +\x60\xea\xf6\x3c\x78\xe3\xa8\x45\xca\xec\xba\x58\x9c\xcc\x2e\xda\ +\xde\xb8\x05\xdb\xb5\x38\x47\x3d\x8b\xd7\xe5\x28\x16\x94\x07\xa0\ +\xe9\x8c\xdb\x8a\x04\xfc\xf2\x27\xe0\x65\x25\xb6\x5e\x7a\xf7\xa5\ +\x35\x05\xd6\x46\x78\x42\x45\xae\xb0\x9d\x4b\x63\x03\x24\x2f\xf6\ +\xbe\x6c\xe1\xcc\x30\x8c\x01\x09\xf2\xea\x00\x4b\xfa\x47\x49\x0b\ +\xa1\x59\x2a\x6a\xc4\xec\x2e\xad\x85\xcb\xd6\x65\x4a\x35\x62\xa8\ +\xc2\x6c\x8a\x38\x35\x62\xe8\x5c\xf8\x29\x6c\x77\xe1\x7c\x35\x1b\ +\x85\xc2\xc7\x7a\x77\x48\x09\xc2\x7c\x9b\x8e\x82\x5f\x76\x77\xb0\ +\x89\x83\x2b\xf5\xee\x4b\x6b\xc8\xb5\xf9\xa5\x23\xca\xab\x8e\xd9\ +\x49\x0d\xf2\x81\x65\x6c\xe1\xcc\x30\x8c\x49\xe8\x1c\xe4\x0d\x9f\ +\x8c\x4c\x54\x5d\x6d\xf6\xe3\xcc\x72\xf8\x32\xa7\x12\xa6\xf7\x88\ +\x80\xd9\xbd\x23\x44\xb2\xa4\xee\x84\xed\x5f\x38\x77\x6d\x04\x9b\ +\x25\xf5\x6e\x9d\xfb\x23\x0b\xb7\x11\x09\xf8\x05\x93\xf1\x06\x1d\ +\x2b\xd0\xf1\x82\x50\xcb\x6b\xaa\x5f\x3e\x6b\x57\x01\x1c\x53\x50\ +\xbf\xdc\x4e\x90\xb7\x87\xe4\xb5\xfe\x48\x8f\x70\xf0\x11\xa7\x7e\ +\x39\xc3\x30\x8c\x4b\xb8\x3c\x36\x00\x76\x4d\xe8\x24\xf9\xd6\x3c\ +\xb5\xbf\x08\x4a\x14\x58\x52\x53\x60\xf8\xe2\x03\x45\xf0\xee\xc9\ +\x32\x58\x9c\x16\x25\x9a\x25\xf5\x25\xd8\x7e\xc1\xb9\x6c\x15\x5e\ +\xe7\xa1\x58\x28\xd4\xbb\x43\x8e\x20\xbc\x48\x68\xb1\x70\xa6\x80\ +\xc4\x45\xd8\x62\x75\xee\xce\x69\x1c\x2c\xaf\x93\x94\x2f\x45\xdb\ +\x2a\x05\x6f\x14\xc9\x09\x6d\x49\xff\x68\x88\xf3\xe3\xb8\x03\x86\ +\x61\xcc\x0b\xad\x8f\x1e\xe8\x16\x06\xff\xd7\x31\x44\x72\xc0\xa5\ +\xfa\x08\x4a\x2c\xa9\x4f\x55\xd7\x4b\x96\xd4\x6f\x1c\xb3\xc5\x2b\ +\x0c\x89\x10\xc6\x92\x9a\xe6\xdc\xfb\xb0\x4d\xc2\xb9\x8d\x8e\x22\ +\x5e\xc1\x39\x40\x79\x54\xbb\x0b\x10\x5a\x24\xe0\x97\x38\x0a\x6c\ +\x29\x8d\x03\xf5\xee\x4b\x6b\x2c\xf5\x4d\x92\xd2\x55\xea\xa9\x6e\ +\xe7\xc2\x28\xb2\x70\x16\xea\x06\x66\x18\x86\xd1\x9d\x70\x1f\x0f\ +\x78\x69\x70\x0c\xdc\xd7\xd5\x66\x49\xbd\x4e\xe1\x42\x6c\x6b\x51\ +\x0d\x8c\xf8\x2e\x53\xc4\x85\x58\x18\xd8\x8e\xcd\xa7\xe2\x3c\x37\ +\x53\x64\x4b\x6a\x21\x45\x02\x7e\x69\x29\x60\x2b\x86\x34\x49\xef\ +\xbe\xb4\x86\xf4\x00\x29\x5b\x52\xb8\xc5\x0a\xb6\xc2\xec\x24\x04\ +\x78\xc1\x92\xb4\x68\xd1\xb6\xc2\x18\x86\x61\x84\xa2\x4f\xa8\x0f\ +\x7c\x33\x3a\x09\xfe\x93\x5d\x29\x15\xa2\x3b\x51\xa9\xce\x92\x5a\ +\xc0\x23\x5d\x8a\xb1\x23\x4b\xea\x6f\xf0\x3a\x1d\xc5\xc2\x41\xbd\ +\x3b\x74\x26\x42\x89\x04\xfc\xa2\x02\xf0\x32\x1b\xdb\x2c\x6c\x01\ +\x3a\x77\xe7\x34\xd6\xb5\x04\xd5\x1c\x50\x61\xe1\xec\xe7\xe9\x01\ +\x8f\xf4\x0c\x97\x6e\x54\x81\x82\x6a\xce\xa2\x08\x05\xd0\x5e\x8b\ +\x15\x68\x8f\xa4\x47\xb0\x0f\x24\x89\x13\x2d\xcc\x30\x8c\x09\xa1\ +\x40\xee\x2b\x13\x82\x60\xe5\xe1\x12\x78\xf6\xb7\x62\xa8\xa8\x97\ +\x5f\x94\x8e\x2c\xa9\x9f\xd8\x53\x08\xab\x8f\x97\x49\x4e\xb9\x82\ +\x05\x87\x53\xb6\xde\x65\x38\x07\xbe\x8e\xd7\x05\x28\x16\x2c\x7a\ +\x77\xc8\x8e\x30\xa3\x3f\x7e\x39\x37\xe3\x85\x72\x4a\x93\xf5\xee\ +\x4b\x6b\x4e\x54\xd6\xab\x4a\xcf\xb1\x73\x7d\x72\xb0\x74\x63\x76\ +\x0a\x14\xa6\x9c\xe8\x59\x94\xe3\x43\xf4\x30\x0a\xa1\x0f\x32\xca\ +\x25\x83\x15\x3b\x43\x23\xfd\x61\x29\xf6\x7d\x94\x38\x79\xc8\x0c\ +\xc3\x98\x0c\x2a\xae\x38\xa7\x57\x04\xdc\xd9\x39\x54\x55\x9a\x39\ +\xed\x46\xdc\xf8\xd3\x29\xb8\x2c\x36\x50\x8a\x57\xe8\x23\x4e\x9a\ +\x39\x75\x84\x2c\xa9\xff\x0f\xe7\xc3\x27\xf1\xfa\x26\x8a\x05\xe5\ +\x25\x7a\x35\x42\x77\x91\x80\x5f\xc6\x05\x60\x8b\x3b\x18\xa1\x77\ +\x5f\x5a\x63\xb7\x70\xa6\xb4\x46\x6b\xa3\xf2\xbf\x53\x5a\x98\x1f\ +\x3c\x87\x37\xe2\xe8\x18\xb1\x27\xd8\x9a\xc6\x66\x18\xb7\x3e\xeb\ +\x9c\xe5\x52\xb7\x17\xd7\xc0\xd8\x1f\xb2\xe0\x8d\x21\xb1\xd2\x03\ +\xca\x30\x0c\xa3\x17\x31\x2d\x96\xd4\x53\x25\x4b\xea\x7c\xd8\x5c\ +\x58\xa3\xe8\x7d\x7e\xc8\xaf\x82\xc1\x6b\xd3\xe1\xde\x2e\x61\xb0\ +\xa0\x5f\x14\x44\xf8\x08\x53\xe2\x39\x1a\xdb\x6b\xd8\xee\x6b\xb1\ +\xa4\x5e\xaf\x67\x67\x74\x13\x09\xf8\xcb\x53\xad\xeb\xa5\x20\xa8\ +\x85\xb3\xd2\x92\xa1\x76\xa2\x7c\xbd\xf0\xc6\x8b\x84\x7b\xbb\x86\ +\x89\x54\x32\xb4\x4d\x1e\xc7\xdf\xb7\xbd\x7a\xea\xa4\xd8\xef\xdf\ +\x91\x0f\xbd\x43\x7d\xe1\xc2\x48\x0e\xb4\x64\x18\x46\x5f\x06\x85\ +\xfb\xc2\xc6\x31\x29\x52\xe9\xfb\xb9\xbb\x0b\x21\xbb\x5a\x99\x25\ +\xf5\xeb\x47\x4b\xe1\x9f\x19\xe5\xf0\x24\x0a\x85\x69\x38\x5e\x8b\ +\x13\xae\x00\xe4\x45\xf4\x03\xce\x95\x9f\xe0\x75\x16\x8a\x85\x93\ +\x7a\x74\xc2\xe5\x22\x41\x64\x0b\xe7\x2d\x45\xb5\x30\x7d\x57\x3e\ +\xec\x28\x56\x67\xe1\x4c\x0a\xf7\xc9\xbe\x51\x10\x2a\x8e\xf9\x48\ +\xbb\xe4\xd7\x36\xc2\x9b\xc7\xce\x7f\x04\x46\x99\x1c\x52\xa9\xe9\ +\xb1\x29\x2e\xe8\x15\xc3\x30\xcc\xf9\x21\x4b\xea\x3f\x24\x06\xc1\ +\x72\x15\x26\x7a\xa5\x75\x8d\xf0\xf0\xaf\xf9\xf0\x16\x8e\x83\xb4\ +\xf3\x4b\x35\x1b\x04\x82\x5c\x8d\x27\xe2\xdc\x49\xd9\x10\x4b\x51\ +\x2c\x28\xcf\xb9\x57\x80\x4b\x45\x02\xfe\x92\xd7\xe1\x65\x39\xb6\ +\x2e\xae\xfc\xdc\xf3\x71\xaa\xa6\x41\x95\x8d\xa9\x9d\xf1\xf1\x81\ +\x92\x8d\x69\xcf\x10\x61\xce\xb8\x1c\xe2\x1f\xe9\xe5\x0e\xd7\x4e\ +\xa7\xa3\x87\xed\x28\xa2\x86\xf2\x6e\x02\xc3\x30\x82\xe0\xef\xd9\ +\x01\xe6\xf7\x8d\x94\x8e\x43\x29\x0b\x82\xaa\x2f\x2a\x81\xaa\x3d\ +\x5e\xb1\x3e\x0b\xfe\x90\x14\x04\xcb\x06\xc4\x40\x97\x20\x61\x62\ +\xc8\xe8\xbc\x9a\xac\xa8\x27\xe3\x1c\xf5\x28\x0a\x85\xf7\x5d\xf5\ +\xc1\x2e\x11\x09\xf8\x4b\xf5\x05\x5b\xdc\xc1\x18\x57\x7c\x9e\xa3\ +\x58\x71\x65\xbc\x02\xd5\x27\x29\xd0\x2a\x15\x16\xce\x3d\x50\x14\ +\x90\x38\x98\x10\xef\x9e\x16\xce\xdf\xe4\xca\x0b\xca\xa4\x74\x24\ +\x16\x09\x0c\xc3\x88\x46\x72\x80\x17\x7c\x70\x51\x3c\xdc\x2f\xc5\ +\x2b\x14\x48\xbe\x0e\x4a\xa0\x40\xf5\x6f\x72\xab\xe0\xa1\xee\x11\ +\xf0\x58\x9f\x48\xc9\x67\x42\x10\x12\xb1\xfd\x0d\xe7\xd4\xfb\xc1\ +\x56\xe2\x79\x9b\xb3\x3f\xd0\xa9\x22\x01\x7f\x91\x08\xb0\x19\x5c\ +\xdc\x8b\x4d\x18\x49\x46\x7c\x92\x55\x21\x29\xce\x0c\x15\x16\xce\ +\xa1\x3e\x9e\x30\x0f\x6f\xa0\x07\xba\x87\x83\x38\xf7\x90\x7c\x7e\ +\x91\xe9\xed\xfe\x73\x91\x72\x67\x4b\x86\x61\x18\x67\x33\x32\xda\ +\x1f\xb6\x8f\xef\x08\xab\x4f\x94\xc1\xfc\xbd\x45\x50\x50\x2b\x3f\ +\xbe\x8c\x76\x57\x97\x1f\x2c\x96\xb2\x28\x9e\x4a\x8b\x82\x29\x62\ +\x05\x6d\x0f\xc3\xb6\x19\xe7\x58\xda\x51\xa0\x9d\x85\x5c\x67\x7d\ +\x90\x53\x44\x02\x76\x9c\xca\x5a\x91\xd2\xa1\x34\x8e\x48\x67\x7c\ +\x86\x52\xf6\x58\x6c\x16\xce\x9b\x0a\xd4\x59\x38\x93\x87\xf9\x53\ +\xfd\xa2\x20\xca\x57\x98\x0a\x5e\x8a\x20\xd7\xca\x4a\x99\x39\xc7\ +\x87\xca\x95\x7b\x54\x30\x0c\xc3\xb8\x02\x5a\xb7\xd1\xc4\xfe\xa7\ +\x94\x60\x58\xb4\xbf\x18\x5e\x39\x52\x0a\xf5\x0a\x2a\xe4\x16\xb4\ +\x58\x52\xbf\xd9\x62\x49\x3d\x52\x9c\x54\x70\x0a\x7a\xbb\x03\xdb\ +\xf5\x38\xe7\x52\x12\xc0\x4a\x14\x0b\xca\x0b\xf9\xb4\x81\xe6\x22\ +\x01\x3b\x3b\x16\x2f\xcf\x63\xeb\xa3\xf5\x7b\xab\x81\x0a\x04\xcd\ +\xdf\x57\x24\x29\xcb\x46\x15\xa5\x94\x47\xc5\x04\x48\x37\x4a\xff\ +\x30\x5f\x0d\x7b\xa7\x1f\x99\x0a\x76\x52\x4a\xeb\x9a\x24\xd7\x4b\ +\x37\x89\xcb\x64\x18\xc6\xc4\x04\x7b\x79\x48\xce\xba\xf7\x74\x09\ +\x83\x99\xbb\x0a\x60\x4d\x8e\xb2\x9a\x37\xbb\xc8\x92\xfa\x87\x2c\ +\xb8\xa1\xa5\xe6\x4d\xb2\x38\x45\xe6\x28\x01\x60\x09\xb6\xbb\x5b\ +\x4a\x3c\x7f\xa6\xe5\x9b\x6b\xf6\x5b\x62\xe7\xba\xe2\x65\x05\xb6\ +\x6b\xb4\x7a\x4f\x2d\x68\x40\x3d\xf0\x2a\x2a\xc8\x45\x07\x8a\xa1\ +\xac\x4e\x79\x29\xe5\x8e\x81\xde\xd2\x8d\xf1\xc7\x64\xa1\x12\x32\ +\x54\x53\xae\xa0\x72\x19\x05\x77\x96\xe0\x77\x19\x2b\x4e\x1d\x74\ +\x86\x61\x98\x76\xe9\x16\xec\x0d\x9f\x8f\x4a\x84\xb5\x79\x55\x30\ +\x73\x67\x21\x1c\x2a\x97\xbf\xe8\xa6\xb1\xcf\x6e\x49\x3d\xb3\x67\ +\x04\xcc\xee\x15\x01\x7e\xe2\x54\xcf\xed\x8c\xed\x53\xec\xe3\x06\ +\xb0\xc5\x2b\xec\xd1\xe2\x4d\x55\x8b\x04\xec\x10\xcd\x9a\x14\x75\ +\xf9\x30\x36\xa1\x96\xd7\x64\xe1\x3c\x1b\x95\xe3\x51\x15\x16\xce\ +\x81\xa8\x42\x67\xe1\x8d\x30\x13\x9b\xaf\x40\x09\xb4\x5a\x51\xa7\ +\x70\x57\xa5\x83\xf1\xbe\x0a\x86\x61\x4c\xc0\xf8\xb8\x40\xb8\xfc\ +\x8a\x40\xe9\xf8\xe1\x69\x5c\x3c\x5a\x14\x2c\x1e\x29\xcd\x72\xd1\ +\x7e\x9b\x25\xf5\xd2\xfe\xd1\x52\x1a\xa6\x40\x8c\xc6\xb6\xa3\xc5\ +\x92\xfa\x09\x14\x0b\x45\x6a\xde\x4c\xb1\x48\xc0\x0e\xd0\x34\x31\ +\x19\x6c\xdb\x1c\x71\x6a\x3a\xa1\x35\x74\x66\x4e\xdb\x4a\x6b\x73\ +\xd5\x59\x38\xdf\xd4\x31\x18\x9e\xc1\x1b\x20\xc1\x5f\x98\x6d\x25\ +\x61\x10\x47\x3c\x33\x0c\xc3\xc8\x83\xc6\xaf\x87\x7a\x84\xc3\xad\ +\xa9\x21\x30\x6f\xaf\xf2\x63\xe8\xac\xaa\x7a\xb8\x75\x73\x0e\xbc\ +\x7e\xd4\x76\x0c\x4d\x05\x9e\x04\xc1\x6e\x49\xfd\x27\x9c\xab\x17\ +\xe1\xf5\x65\x9c\xd3\x14\x55\x07\x54\x34\xfb\xe1\x87\x5e\x84\x97\ +\x17\xb1\x5d\xa0\xe4\xf5\xce\xa2\xac\xbe\x09\x16\xa2\xba\x7b\xe3\ +\xa8\x45\x51\x80\x8a\x9d\x0b\x22\xfd\xe0\xf9\x41\xb1\x30\xcc\x04\ +\x69\x7e\xa1\xde\xf2\x8f\x0c\x3c\x50\x40\x85\x2b\x78\x1d\xc3\x30\ +\x8c\x48\x44\xfa\x78\xc2\x6b\x17\xc4\xc2\xfd\xdd\xc2\x61\xfa\xce\ +\x7c\x58\x9f\xaf\x2c\xa0\xfd\xe7\xc2\x6a\x18\xfe\x6d\x06\xdc\x91\ +\x1a\x0a\x4f\xf7\x8f\x92\x4a\x47\x0b\x42\x38\xd8\x2c\xa9\xef\xc1\ +\x79\x9b\x5c\x26\xbf\x91\xfb\x06\xb2\x44\x02\x7e\x48\x12\x5e\x9e\ +\xc1\x46\x66\x4c\xc2\x84\xad\x91\x1c\xa0\x4a\x59\x0b\xf6\x15\x43\ +\x91\x55\x79\x29\xe5\x38\x7f\x2f\x78\x3a\x2d\x1a\xff\xd0\xe6\xb1\ +\x70\x0e\x55\x50\xaf\x9c\x32\x3a\x0c\x78\xf2\xc2\x30\x8c\x49\xe9\ +\x1b\xea\x03\xdf\x5e\x9a\x2c\xd5\x80\x99\xbd\xbb\x10\x4e\x2a\xb0\ +\xa4\xa6\xd2\xf5\xef\x9c\xb0\x48\xe9\xf5\x54\x5b\xe1\x2f\xdd\xc3\ +\x45\x0a\xee\xee\x85\xed\x6b\x9c\xc3\xbf\x02\x9b\x25\xf5\x11\x47\ +\x5f\xe8\x90\x48\xc0\x37\xa6\x9c\x8f\x39\x20\xa0\x85\xf3\x86\x82\ +\x1a\xc9\xc2\x79\xaf\x45\x79\x29\x65\x5f\x4f\x0f\xe9\x0f\x2a\x58\ +\xd1\x0c\x97\xa0\x24\x42\x37\x55\x9c\x2a\x64\x0c\xc3\x30\x9a\x41\ +\xf6\xd1\x13\x13\x02\xe1\xf9\xc3\xa5\xf0\xcc\x6f\xc5\xb2\xd3\xc3\ +\x89\xf2\xfa\x46\x98\xbb\xbb\x00\xfe\x7a\xdc\x02\xcb\x07\xc6\xc0\ +\x55\x09\x42\x15\xd9\xbb\x12\xdb\x58\x9c\xd3\x5f\xc6\xeb\x22\x14\ +\x0b\x65\xe7\x7b\xc1\x79\x67\x88\x16\x0b\x67\xda\x3d\x10\xaa\x60\ +\x7f\x7a\x55\xbd\x54\x0c\xe9\x53\x54\x6d\x6a\xa0\xf2\x9b\xcb\x07\ +\xc4\x40\x67\x93\x4e\x7c\x94\x1e\x14\xe9\xeb\x09\xc5\x56\xc7\x83\ +\x77\xfa\x84\x0a\x73\xee\xc6\x30\x0c\xa3\x29\x3e\x1e\x1d\x24\x4b\ +\x6a\x3a\x3a\x78\x6c\x4f\x21\xfc\x3d\xbd\x5c\x51\xb9\xfe\x63\x15\ +\x75\x70\xdd\xa6\x6c\x18\x1b\x17\x28\xf9\x41\xf4\x12\xa7\x5c\x3f\ +\x75\x64\x06\xb6\x5b\xf1\xf7\x9a\x87\xd7\x55\xed\x59\x52\xb7\x29\ +\x12\xf0\xc5\x83\xc0\x16\x77\x30\x52\xf3\x2e\xaa\xa0\xba\xb1\x59\ +\x52\x78\xcf\x1f\x2a\x85\x5a\x15\x16\xce\x34\xd1\xd1\x1f\x6e\x8c\ +\x58\x46\x1e\x8a\xa0\xf2\xd2\x74\xdc\xf2\x61\x46\x05\x1c\x28\xb3\ +\xa5\xf5\x50\x1d\x07\x4a\xd7\x24\x17\x4a\xff\xf3\x44\x19\x76\x0f\ +\xf6\x81\x2d\x56\xc7\xed\x56\xe5\xd4\x88\xa0\x6a\x8e\x5f\x9e\xaa\ +\x84\x13\x95\xf5\x52\xa6\xc8\x45\x51\xfe\x70\x43\x4a\x30\x04\x70\ +\xe4\x23\xc3\x30\x02\x13\xe7\xe7\x09\xab\x2f\x8c\x83\x69\x2d\x25\ +\x9e\xb7\x15\x29\xb3\xa4\xfe\x2e\xaf\x0a\x06\x7d\x93\x2e\xbd\xcf\ +\xfc\xbe\x51\x10\x26\xce\x19\x44\x2c\xb6\xb7\xb0\x4d\xc3\xf9\xfe\ +\x21\x14\x0a\x3f\x9e\xeb\x87\xce\x12\x09\xf8\xc3\xf4\xc2\xc5\x60\ +\xcb\x5c\x10\x26\xfa\x82\x20\x23\xa2\xc7\xf6\x16\x42\x4e\xb5\xf2\ +\xb8\x03\x5a\x35\x2f\xec\x17\x25\x15\xd6\x30\xc2\xb9\xfa\x5e\x8b\ +\x15\x26\xfd\x9c\x23\xa9\xd6\xd6\x6c\xc1\x1b\x9a\xda\x8b\x47\x4a\ +\xe1\xdd\x61\xf1\x30\xaa\x9d\x2a\x61\x83\x22\xfc\xa4\x9f\x75\x94\ +\x11\x0e\x54\x1c\xcb\xa8\x6a\x80\xbb\xb7\xe7\xc2\x86\x33\x02\x81\ +\x56\x1d\xb7\xc0\x5c\x54\xe7\x2f\xa0\x40\xfb\x93\x58\x69\x43\x0c\ +\xc3\x30\x67\x31\x04\xc7\xc7\x9f\x2e\x4f\x51\x35\xff\x90\x83\xee\ +\xcb\x87\x4b\xa5\xf7\x20\xa1\x20\x98\x25\xf5\x40\x6c\x9b\x70\xee\ +\xff\x08\xaf\xb3\x51\x2c\x64\xb6\xfe\x9f\xff\x13\x09\xf8\x03\xb4\ +\xdf\x4e\xb5\x0e\xa8\xe6\x81\x50\x45\xaa\xc9\x75\x70\xfa\x2e\xe5\ +\x4a\x8e\xf0\xc2\xbf\x88\x80\x4a\x4e\x15\x3b\x70\x95\x3e\x7e\x7d\ +\xb6\x74\x06\xd6\x16\x94\xa2\x33\x7e\x7d\x16\x2a\xe2\x78\xb8\xb9\ +\xe3\xb9\x27\xe5\x0b\x22\x1c\xcf\xe2\x08\xf7\xf1\x3c\xef\x4e\xc2\ +\xfa\x82\x6a\xb8\xe1\xc7\x9c\x36\xfb\x55\x58\xdb\x00\xb7\x6c\xce\ +\x81\x83\xe5\x51\xf0\x64\x5f\xa1\xaa\x76\x33\x0c\xc3\x9c\x93\x5b\ +\x3a\x85\xc0\x75\xc9\xc1\xaa\x76\xb2\x4b\xac\x36\x4b\xea\xb7\x5b\ +\x2c\xa9\x05\xdb\xc9\x9e\x84\xed\x6a\xd4\x02\xe4\xd4\xbc\x0c\xc5\ +\x82\xb4\xc2\x93\x44\x02\xfe\xc7\xab\xc1\x56\x2d\xb1\xbb\x7e\xfd\ +\x3b\x9b\xbc\xda\x46\x55\x67\x42\x76\x04\x3c\x13\x52\x0d\x7d\x37\ +\xd7\x6c\x3a\xd5\xae\x40\xb0\x43\x2a\xf6\xce\x6d\xb9\xd2\x2e\xca\ +\xb8\xb8\xb3\x6f\xca\x8b\xa3\x1d\xbf\x51\xc7\x9e\xc7\xe9\xf2\xa7\ +\xc2\x1a\xa9\x5f\x8e\x78\xba\x3f\xbd\xbf\x48\x4a\x15\x22\xf1\xc6\ +\x30\x0c\x23\x3a\x74\x4c\x4a\x9e\x3d\x77\xb5\x58\x52\x2b\x8d\x89\ +\xa3\x63\xe1\x09\x2d\x96\xd4\x82\xc5\xc4\xd1\x64\x40\x9e\x4b\x77\ +\xe1\x9c\x3b\x07\x85\xc2\x87\x5e\x2d\x5e\x0b\x5f\xe8\xdc\xb1\xd3\ +\xa0\x2a\x80\x6a\xa2\x4b\xed\x74\x0d\xf6\x11\x31\xba\x54\x13\x1e\ +\xdc\x91\x2f\xcb\xd9\x8c\x0a\x85\xdc\xb6\x25\x07\x76\x8c\xef\x74\ +\x56\x46\x43\xc7\x40\x2f\xe8\x8e\x02\xea\x88\x03\xc6\x4d\xd7\x27\ +\xb5\x7d\x44\x90\x53\xd3\x20\x1d\x7d\x38\x22\x10\xec\xcc\xc2\x07\ +\xed\x52\x54\xd3\x3d\x0d\x24\xe0\x18\x86\x31\x36\x9d\x02\xbd\xe1\ +\xa3\x11\x09\xaa\xb3\xeb\xc8\x92\x7a\x6d\x6e\xb5\x88\xd9\x75\xc9\ +\xd8\x3e\x40\x7d\xe0\x45\xb3\x85\x50\xa3\xf3\xa7\xf8\xa5\xcd\x55\ +\x98\xa7\x6a\x27\xc4\xdb\x53\xc4\x3c\x55\xcd\x38\x50\x56\x07\xff\ +\xc9\x96\xaf\x60\x69\xab\xeb\x2f\xbf\xe6\xc3\x67\x17\x27\x9e\xf5\ +\xff\xae\x88\x0f\x42\x91\x50\xd2\xee\xeb\x83\xf0\xcb\x9c\xd8\x8e\ +\xe0\xba\xff\x17\x79\xc2\x85\xb0\x36\x36\xc1\x93\xfb\x8a\xa4\x07\ +\x8e\x61\x18\xc6\x9d\x18\x1d\xe3\x0f\x3b\x26\x74\x54\x55\xa7\x87\ +\xc6\x40\xb2\xa4\x7e\x3f\xbd\x4c\xc4\x3a\x3d\xde\xc2\xd4\x1b\xde\ +\xdb\x62\xe1\xbc\x51\x85\x85\x33\x55\x02\x14\xb0\xe2\x95\xe6\x28\ +\x11\x08\x76\x28\xd3\xe0\xdb\xbc\xea\xb3\x8e\x1d\x26\x75\x0c\x86\ +\x17\x0f\xb7\x2f\x12\x6e\x4a\x09\x69\x33\x53\x62\x4d\x6e\x15\x7c\ +\xa5\xd0\x5d\x8d\xcc\x52\xaa\x1a\x9a\x21\x50\x1c\x15\xcd\x30\x0c\ +\xe3\x10\x34\x6a\xdd\xd7\x35\x0c\x6e\xea\x18\xa2\xaa\xe2\x6f\x5e\ +\x4d\x03\xdc\xbd\x2d\x17\xde\x38\x56\x0a\x2b\x07\xc6\xc2\xf0\x28\ +\x31\x2a\xfe\xea\x2e\x12\x8a\xeb\x1a\x55\xd5\xce\xb6\x33\x22\x5a\ +\xb8\xda\xd9\x4e\xe3\x90\x03\xc7\x02\xed\x41\xc7\x38\x67\x8a\x04\ +\x8a\xe0\xed\x16\xec\xd3\xae\x19\xd6\xd4\x76\x62\x07\x9e\xde\x5f\ +\xac\xb8\x3f\x75\x8d\xcd\xd2\x19\xdd\x50\x13\x94\xc1\x66\x18\xc6\ +\x98\x84\x7a\x7b\xe0\xe4\x1e\x03\xf7\xb6\x58\x52\x2b\xf5\x0e\xda\ +\x51\x5c\x0b\x97\xac\xcb\x94\xbc\x83\xc8\x3c\x2a\x51\x67\xef\x20\ +\xdd\x3e\x1d\xe7\x05\x55\x2e\x5c\x76\x92\x03\xbd\x45\x74\xe1\x72\ +\x2a\x6a\x53\x67\x7e\x2c\xa8\x96\x76\x6e\xd2\xce\xc8\x52\xb8\x07\ +\xd5\x30\xb9\x66\x9e\x8b\x31\x71\x81\x6d\x66\x35\xfc\x5c\x54\x03\ +\xbf\x14\x2b\xcf\x3c\x21\x94\xba\x51\x32\x0c\xc3\x88\x04\xc5\x57\ +\x7d\x79\x49\x92\xb4\xbb\x4a\xe3\xe9\x61\x05\x8b\x3a\x0a\xd4\xff\ +\x30\xbd\x1c\x3e\xa7\x32\xd1\x3a\xbb\x10\xeb\x22\x12\xbe\xc1\x2f\ +\x6f\xd6\x2e\x65\x7e\xde\x76\xfc\xbd\x3c\x44\xf4\xf3\x76\x09\x7d\ +\x35\xa8\x78\x48\xf9\xba\x69\x03\xa2\x4f\xfb\x6f\x77\x77\x09\x95\ +\x76\x04\xce\x95\x31\x31\xbf\x9d\x54\x45\x7a\x2f\xb5\x50\x90\x29\ +\xc3\x30\x8c\x51\x98\x18\x1f\x08\xe3\xe2\x52\xe1\x55\x5c\x0c\x2f\ +\xc2\xc5\x70\x99\x82\xc5\x70\x75\x43\x13\x2c\xd8\x57\x04\xef\x9c\ +\x28\x83\x67\x71\xbc\xa6\x02\x79\xae\xc6\xa5\x22\xe1\x68\x45\xbd\ +\xb4\x0d\xb3\x46\xe1\xd9\x35\x41\x16\xce\x37\xe0\x17\x45\x5f\x98\ +\x12\xdf\x01\x23\x40\x37\xca\x13\x7b\x8b\x24\x43\x11\xa5\x50\x1c\ +\xc0\xb3\x67\x88\x04\x2a\xd1\x7c\x6f\xd7\x50\x58\x71\xf0\xf4\xd8\ +\x84\x89\x09\x41\x52\xa5\xc4\xb6\x20\xb5\xab\x86\xa1\x91\xfe\x52\ +\x75\x33\x86\x91\x43\x91\xb5\x11\xb2\x6b\x1a\x20\xab\xaa\x01\x0a\ +\xac\x0d\x50\x58\xdb\x08\x16\x14\xb8\xe5\xf5\x4d\x50\x85\x83\x2b\ +\xed\x4e\x59\x1b\x9b\xc1\xfe\x94\xd0\x52\xc2\x17\x17\x14\xbe\x1e\ +\x1e\x10\xe4\xdd\x01\xc2\xbc\x3d\xa5\xba\x1f\x31\x78\xef\x45\xfb\ +\x7a\x4a\x06\x6f\x49\xd8\xa2\x0c\x1c\xcf\xc4\xb8\x16\xaf\x16\x4b\ +\x6a\xaa\xb1\x30\x7f\x9f\xf2\x63\xf5\x8c\xaa\x7a\xb8\xe9\xe7\x1c\ +\x18\x15\x63\x3b\x56\x97\x53\xf5\x56\x2d\x2e\x99\x65\xe9\xa1\xa5\ +\x63\x05\x3a\x5e\x50\x63\xe1\x3c\x30\xdc\x4f\xfa\x82\x46\x3a\x50\ +\xf1\xcf\xc8\x50\x4e\xed\x6d\xa9\x21\xf0\xde\x89\xf3\x7a\x73\xb4\ +\x09\xa5\x3b\xe6\xe3\xa0\x1a\x7b\xc6\xe4\x3c\xa7\x77\x24\xac\x3a\ +\x5e\x06\xa5\x2d\xaa\xd7\xcf\xd3\x03\x5e\x18\x1c\xd3\xe6\xfb\x1c\ +\xc4\xf7\x91\x9b\xd1\x70\x26\x94\x89\xc2\x30\x6d\x51\x88\x62\xe0\ +\xd7\x92\x5a\xd8\x63\xb1\xc2\x3e\x6c\x14\x37\x43\xad\x42\x45\x7a\ +\x74\x7b\xd0\x3d\x4f\xcf\x58\xd7\x60\x6f\xe8\x12\xe4\x23\xd5\x57\ +\xe9\x15\xea\x0b\xbd\xf1\x1a\x62\xc4\x74\x29\xc6\xe9\x90\xf0\x24\ +\x4b\x6a\x0a\x70\xa4\x00\xfd\x4d\x0a\x03\xf4\xe9\x75\x43\xd7\x66\ +\xc0\x94\x2e\xa1\x52\xbd\x06\x57\x08\x5a\xa7\x8a\x04\x92\x03\xa4\ +\x9c\x28\x30\xb1\x50\xc5\x44\x12\xe3\xe7\x05\x4f\xa5\x45\xc1\x94\ +\xce\x42\x15\x82\xd4\x15\x0a\x90\xd9\x5c\x58\xd3\x6e\xa0\xe1\xf9\ +\xd8\x59\x5a\x0b\x57\x9c\x51\x1c\x89\xaa\x51\x2e\xe9\x1f\x0d\xd3\ +\x7e\xc9\x93\xfe\xfd\x71\x9c\xc0\x53\x03\xdb\x2e\xf4\x41\x83\xb7\ +\x1a\xee\xc0\xbf\xe9\x95\x06\xac\x63\xc1\x28\x87\x7c\x3e\xd6\xe5\ +\x57\xc3\x8f\x85\xd5\xf0\x33\xde\xe3\x99\xb8\x8a\x72\x25\x54\x49\ +\xef\xb7\x32\xab\xd4\x5a\x43\xbb\x98\x54\x53\x64\x40\x98\x9f\x54\ +\xca\xfc\xc2\x48\x3f\x69\x17\x4c\xa0\xdc\x76\x46\x70\x68\x07\x60\ +\xdd\x65\xc9\x92\x9d\x34\x15\x63\xca\x50\x70\x6f\xd3\x0e\x32\x55\ +\x6c\xfc\x57\x66\x85\x34\x3e\x3f\xd8\x3d\x1c\x9c\x79\x0b\x3a\x4d\ +\x24\xfc\x88\x0f\x37\x29\xa6\xdd\xa5\xca\x27\x11\x1f\xcf\x0e\xf0\ +\x50\xf7\x08\xd1\x8a\x4c\x08\x01\xad\x68\xd6\x8c\x4e\x82\xb1\xeb\ +\xb3\x20\xbd\x52\xd9\x20\x7a\xbc\x02\x5f\x17\x7f\xf6\x7f\xa7\xd8\ +\x04\xba\x89\x1b\xf1\x66\x9c\xd3\x3b\xa2\xdd\xf7\x38\x56\xa1\x7c\ +\x00\xbf\x32\x21\x08\xde\x18\x12\xa7\xf8\xf5\x8c\x31\xa0\xcd\xc5\ +\x4d\x38\x5e\x50\x7a\x2e\xa5\xd1\x9e\xe9\x43\x22\x0a\x14\x4c\x46\ +\xcf\x1a\x35\x7b\x1a\x32\xa5\x5d\x53\x8c\xd0\xc5\x31\xfe\x52\xe5\ +\x52\x2a\x0c\x16\xe1\xc3\xbb\x0d\x4c\xfb\xd0\x91\xf1\x55\x89\x41\ +\xd2\xd1\xee\x72\x6c\x55\x32\x0a\xd0\xd9\xa1\x18\x07\x0a\x8c\x24\ +\xc1\x40\x45\x03\x9d\xb5\xd8\xd2\x5c\x24\x64\x55\x37\x48\x0a\xe9\ +\xe3\x4c\x75\xc1\x6c\x54\xae\x72\xd9\x80\x18\xe8\x22\x4e\xb9\x4a\ +\xe1\xa0\xaa\x5f\x5b\xc7\x75\x84\x5b\x36\xe7\xc2\xba\x3c\xf9\xe9\ +\x36\xf9\xed\xec\xee\xfc\x6d\x78\xbc\x94\x81\x72\x3e\x69\x96\xab\ +\x60\x87\x88\x56\x64\xd3\x7b\x86\xc3\x92\xb4\x68\x91\x4c\x4e\x18\ +\x17\xb3\xb9\xa8\x06\x3e\xc8\x28\x87\x4f\x32\x2b\x15\x15\xa1\x11\ +\x01\x5a\xd5\x51\xb5\x3d\x6a\x14\xa0\x46\xa2\x61\x40\xb8\x2f\x5c\ +\x86\x62\x81\xca\xc1\x93\x70\xe0\x13\x0a\xe6\x5c\x50\xb6\x02\xed\ +\x04\x4c\xee\x1c\x0a\x8f\xee\x29\x84\x7f\x66\x54\x28\xb2\x1f\xa0\ +\xdd\xe4\x6b\x37\x65\xc3\x84\xf8\x20\xc9\x7e\xa0\x7b\xb0\xb6\x73\ +\xa6\xa6\x22\xa1\xa4\xae\x09\xfa\xac\x39\x29\xab\x2c\xef\x99\xf4\ +\x6e\xb1\x70\xbe\x5c\x2c\xe3\x0b\x61\x89\xf4\xf1\x84\x6f\x46\x27\ +\xc1\xaa\x13\x65\xf0\x38\xde\x68\xc5\x56\xc7\x23\x68\xad\xed\xc4\ +\x87\x44\x3b\x78\xd6\x25\xd7\xe4\xa4\x67\x88\x2f\xbc\x7c\x41\xac\ +\x54\xa9\x8c\x31\x1f\xa5\x38\x46\x50\xa4\xf6\xea\x13\x16\x45\xa9\ +\x61\xa2\x43\xa2\x61\x67\x49\xad\xd4\x68\x95\x18\x8c\x0a\xe1\xb2\ +\xd8\x40\x69\x95\x77\x35\xae\x1c\x39\x28\x92\x39\x13\xaa\x83\xf0\ +\xb7\x61\xf1\x30\xad\x6b\x38\x4c\xdf\x95\x2f\xd5\x49\x50\xc2\x37\ +\xb9\x95\xb0\xee\xeb\x2a\xd8\x73\x45\x2a\x74\xd3\x50\x28\x68\x2a\ +\x12\x28\x92\x58\xa9\x40\xa0\x28\xe3\x27\xfb\x09\x67\xa1\xe9\x36\ +\x50\xbc\x06\x55\x44\x7c\xeb\xb8\x05\x5e\x3f\x6a\x71\xa8\xac\xb5\ +\x16\x99\xa3\x9e\x1d\x1c\x7b\x13\x3a\xc3\x7d\xb8\x47\x84\x54\xcf\ +\x82\xff\xbe\xe6\x83\x32\x9b\x9e\x3f\x5c\x22\x99\xb5\xa9\x59\x44\ +\xb8\x1b\x14\x5c\xf9\x79\x76\x85\xd4\x3c\xf1\xc6\xa7\x2c\x21\xda\ +\x6a\x26\x0f\x94\x78\x7f\x16\x0c\xcc\xef\x50\x85\xc5\x2d\x63\x3b\ +\xc2\x7b\x27\xcb\xe1\x89\xbd\x85\x52\x05\x46\xb9\x50\x62\x40\x95\ +\x02\x77\xca\xf6\xd0\x3d\x87\x90\x1e\x1c\xaa\x50\xb5\x00\x05\x02\ +\x9f\xe5\xa9\x83\xca\x1a\x3f\xd2\x23\x5c\x6a\x5b\x51\x8d\xd2\x19\ +\xef\xc6\x96\xc2\x49\xd5\xe7\x18\x98\x63\xfd\xd4\xff\xf9\x63\xda\ +\x48\x5d\x0c\x43\xd1\x47\x15\x14\x69\xbb\xf5\xda\xa4\x20\x36\x70\ +\x32\x29\xfb\xca\xac\xb0\xe4\x40\x31\x7c\x9a\x55\xa9\x2a\x65\xd7\ +\x08\x50\xea\x1b\x15\x32\xa3\x46\xf1\x5a\x94\xa5\xf5\x27\x14\xcd\ +\x7f\x42\x71\x1f\xce\x63\x1f\xd3\x02\x79\x37\x90\x90\xa4\xe7\xe6\ +\xa5\x23\xa5\x92\xb7\x83\x9e\xe8\x2a\x12\x68\x1b\x8e\x52\x1a\xfb\ +\x84\xf2\x04\xa2\x35\xc3\x70\x82\x1e\xd6\xaa\xcc\x71\x66\x75\x03\ +\xe4\xa2\x32\xad\x68\xc9\x1f\x0f\xf0\xf4\xd0\xe4\x7b\x27\x13\x2d\ +\x3a\x0b\xab\xc6\x1b\xd9\x07\x05\x5f\x88\x97\x07\x74\x0a\xf2\x36\ +\xb4\x77\x06\x73\x7e\x8e\x57\xd6\x4b\x59\x4d\xff\xce\x52\x76\xce\ +\x6a\x74\x48\x30\x51\x3a\x1b\xb5\xe9\xbb\x0a\x60\x22\x3e\x43\xb7\ +\xe2\xe4\x70\x55\x42\x90\x26\x3b\x7c\x8c\x7b\x43\x81\xfa\x4b\xfa\ +\x47\x49\x41\xe4\xb3\x76\x17\x48\x6e\x91\x7a\xa1\x8b\x48\xe8\x1c\ +\xe4\x23\x15\xf2\xa1\x15\x26\xe3\x1a\x52\x02\xbc\xa4\xa6\x35\x09\ +\xfe\x5e\x52\x63\x5c\x43\x59\x7d\x93\xd4\xa8\xf6\x48\x25\x0a\x3e\ +\xda\xce\xae\x41\x81\x46\xdb\x8c\x75\x4d\xb6\x18\x91\x86\x66\xdb\ +\x24\x44\x21\x27\xb4\x06\x19\x17\x17\xa8\xe9\x19\x65\x7b\x68\x55\ +\x13\xc5\x4c\x90\x77\x09\x65\x4b\x50\xa3\xdd\x3d\x12\x0b\x77\x75\ +\x0e\xd3\x3c\x00\x8d\x71\x3f\xa8\x5e\xc7\x27\x23\x13\xa5\x94\x60\ +\xb2\xa4\x3e\x50\xa6\xbc\x4a\xb1\x52\x5c\x3e\xba\xa7\x85\xf9\xc1\ +\x96\x71\x29\xd2\xaa\x93\x61\x18\x9a\xd8\x9b\xa5\x9d\x9e\xf4\xaa\ +\x7a\xc8\xaa\xae\x87\x1c\xfc\xe7\x7c\xab\x6d\xe7\x27\xb7\xa6\x51\ +\x2a\x6c\x55\x82\xcd\x82\x2a\x40\xee\x96\x7d\xdf\x30\x5f\xb8\xa7\ +\x8b\x6b\xea\x8b\x50\x79\x6e\xca\x6c\x6a\x2f\x6b\x86\x69\x1f\xfa\ +\xee\x9e\x3b\x58\x02\x2b\x0f\x95\xc2\x25\x31\xfe\xd2\x51\xec\x75\ +\xc9\xc1\x4e\xcd\x83\x67\xc4\x67\x4c\x6c\x00\xec\x9c\xd0\x09\xae\ +\xd8\x90\x0d\x3f\xe4\x2b\x33\x8e\x52\x8a\xcb\x45\x02\x9d\xbd\xb1\ +\x40\x60\xcc\x08\x65\xff\x50\x7c\xc8\x7e\x6c\x87\x2a\xac\x52\x74\ +\x3f\x39\x7a\x2a\x09\x50\x72\x04\xaa\x33\xf2\xde\xb0\x78\xa7\x3f\ +\x6f\x94\xf6\x7c\xef\xf6\x3c\xf8\x5e\x41\x1a\x2e\x73\x6e\xe8\x88\ +\x66\x03\xae\x1e\xa9\xd1\xee\xc2\xbd\x5d\xc3\xa4\xc6\xe5\xcb\xcd\ +\x0b\x3d\xc6\x91\x3a\x1c\xe3\xf2\x3e\x31\xc3\x38\x01\xda\x1d\xd8\ +\x5e\x52\x0b\xdb\x8a\x6a\x60\x7b\x71\x2d\xfc\x82\xff\x7c\xaa\xda\ +\xb5\x95\x03\x9f\xe8\x13\x75\x96\xd3\xa7\xd6\x50\x24\xf6\x23\x3b\ +\xf3\x9d\x56\x22\x99\xb1\xed\x2e\x2c\xda\x5f\x24\x59\xbc\x5f\x9f\ +\x1c\x0c\x8f\xf4\x88\x80\xc1\x11\xae\xab\xdd\xcf\x98\x1b\x16\x09\ +\x0c\xa3\x11\x3b\x50\x08\x90\xc3\xe9\x7a\x5c\xfd\x6d\x2d\xae\x91\ +\xce\x9a\xf5\x82\xbc\x06\x66\xf5\x6a\xbf\x5a\xa6\x1a\x2a\x1b\x9a\ +\xe1\x9e\xed\xb9\xf0\xef\xcc\x0a\xa7\x7d\x06\x73\x3a\x14\xe3\xf1\ +\x51\x46\xb9\xd4\xc8\xe8\xe7\x91\x9e\x11\x70\x15\x97\x34\x67\x9c\ +\x0c\x8b\x04\x06\x2c\xb8\x0a\x0c\xe3\xb2\x70\xb2\xa1\xb8\xbc\xef\ +\x51\x10\xd0\x44\x49\xce\xa6\xa2\x9c\xc5\x53\x45\xcb\x57\x2f\x88\ +\x75\xda\x39\x36\x99\x7a\xdd\xf8\xd3\x29\x43\x16\x43\x72\x17\xec\ +\x99\x11\x54\x7c\x6e\x36\x8a\xc1\x9b\x3b\x86\x70\xfd\x11\xc6\x29\ +\xb0\x48\x60\xa0\xc7\x97\x27\x70\x42\xb1\xd5\xa0\xef\x13\xe6\x03\ +\x7d\xe8\x2a\x35\x1f\xc9\x3e\x9a\x39\x9d\x03\x65\x75\xb0\xea\x84\ +\x05\x57\x74\x15\xaa\x1d\x30\x9d\x01\xd9\xd2\x5e\xec\x24\xa7\x54\ +\x4a\x69\xbc\x67\x7b\x1e\x54\xf2\xf1\x82\x10\x90\x09\xd5\xe4\xad\ +\xb9\xb0\x80\x8e\x23\xfa\x47\x4b\xf9\xf5\x0c\xa3\x25\x2c\x12\x18\ +\xa0\x80\xf9\x02\x6b\x03\xfc\x80\x13\x5e\xeb\xc8\x59\x5a\x91\x26\ +\x07\x78\x49\xe2\xa1\x57\x28\x59\xe6\xda\x84\xc3\x80\x70\x3f\xd3\ +\x45\x5b\xd3\xae\x01\x99\x5e\x51\x71\x93\xad\x45\x35\x7a\x77\xa7\ +\x4d\xfc\x51\xd4\x3d\x9d\x16\xe5\x94\xf7\x5e\x7c\xa0\x18\x16\xee\ +\x2f\xe6\xba\x07\x02\x42\xa6\x53\x37\x6f\xce\x85\xd9\xbd\xac\xb0\ +\x08\xff\xfe\x26\x7b\x3c\x19\x27\xc2\x22\x81\x81\xb6\x86\x7c\x9a\ +\x0c\xc8\xa6\x97\xda\x9a\x9c\xdf\xff\xfb\xcf\x63\x3b\x4a\xd5\x14\ +\xcd\x00\xd5\x1c\x58\x75\xdc\x22\x39\xb5\x29\xb1\x75\x75\x35\x0f\ +\xf7\x08\x97\x6a\xc1\x6b\x09\x09\xa4\x3f\xff\x9a\x2f\xb9\xcd\x31\ +\xe2\x42\xcf\xeb\xb3\xbf\x15\xc3\x3e\x8b\x15\xfe\x7e\x51\x3c\xef\ +\x02\x32\x9a\xc0\x22\x81\x01\xb9\x35\x6f\xfc\x4d\xb2\x8d\x40\x0e\ +\x85\x4f\xee\x2b\x52\x6c\xc5\xed\x6a\x62\xfc\xbc\x60\x4e\xaf\x48\ +\x4d\xdf\x93\x4c\xc0\x6e\xfa\x39\x47\x2a\xf1\xcd\xb8\x07\x14\x1f\ +\x33\xfa\xfb\x2c\xf8\xfa\xd2\x24\xae\x7c\xca\xa8\x86\x45\x02\x03\ +\xcd\x6d\xee\x25\x9c\x1b\x2a\xe9\x6c\x64\x76\x95\x5a\xe1\x41\x5c\ +\x39\x6f\x13\xf8\x58\xe1\x5c\x50\x36\x43\xa0\x86\x02\x8e\xd2\x38\ +\xaf\xfd\xf1\x94\x22\x1b\x72\x46\x5f\xc8\xba\xfa\x92\xef\x33\xe1\ +\x9b\xd1\xc9\xd0\x31\x90\x87\x79\x46\x39\x7c\xf7\x30\xf2\x77\x12\ +\x0c\x5a\x5c\x9e\x62\xf1\x16\x1d\x28\x92\x8e\x16\x1a\xdc\xac\xa4\ +\x70\x9c\xbf\x17\x4c\xed\x1a\xa6\xd9\xfb\x91\x40\xb8\x66\xd3\x29\ +\x97\x57\x77\x63\xb4\xe3\x58\x45\x1d\x8c\x5a\x97\x01\xeb\x2e\x4b\ +\x81\xae\x41\x5c\xe2\x99\x51\x06\x8b\x04\x46\xe6\x3e\x02\x89\x04\ +\xe3\xed\x24\x90\x21\xd1\xff\x6d\xce\x81\x9d\x25\xca\xbc\xdc\xf5\ +\x86\xd2\xe0\xfc\x34\x12\x6f\x64\x00\xf6\x87\x4d\xd9\x52\xbd\x07\ +\xc6\xbd\xa1\x12\xdf\xe3\xd6\x67\xc1\x86\x31\x29\x4e\xf1\x6e\x61\ +\x8c\x0f\xdf\x35\x8c\xec\x9d\x84\x00\x83\xc5\x24\x7c\x9d\x5b\x05\ +\xb7\x6e\xce\x85\xf2\xfa\x46\xbd\xbb\xa2\x88\x68\x3f\x2f\xb8\xa7\ +\x8b\x36\xbb\x08\x74\x2b\xdc\xb6\x25\x97\x05\x82\x81\xc8\xaa\xaa\ +\x87\xf1\x2d\x42\x21\x96\xcb\x3a\x33\x32\x61\x91\xc0\xc8\xda\x49\ +\xa0\xb4\x48\x5f\x03\x55\x6d\x79\xed\xa8\x45\xb2\xea\x6d\x74\xb3\ +\xe3\x85\xd6\x3c\xd0\x2d\x4c\xb3\x5d\x84\x87\x77\x16\xc0\xa7\x59\ +\x5c\x45\xd1\x68\xd0\xd1\xc3\x55\x1b\xb3\x61\xe3\xe5\x29\x10\x60\ +\xd0\xe3\x42\xc6\x39\xb0\x48\x60\x64\x05\x2e\x6a\x35\x19\x89\x00\ +\xe5\xfd\x2f\xd8\x57\xa4\x77\x37\x54\x11\xe8\xe5\x01\xf7\x77\x0b\ +\xd7\xe4\xbd\x56\x1c\x2a\x81\xd7\x8e\x94\x6a\xf2\x5e\x8c\x78\xec\ +\x2e\xad\x85\xdb\xb7\xe4\xc2\xbf\x47\x26\xe8\xdd\x15\xc6\x8d\x60\ +\x91\xc0\xc8\x3a\x6e\x30\xca\x2a\x84\x82\x13\xdd\x5d\x20\x10\x93\ +\x3b\x87\x4a\xce\xaa\x6a\xa1\x23\x97\xc7\xf7\xb8\xff\xf7\xc1\xb4\ +\xcf\xe7\xd9\x15\x30\x6f\x6f\x91\x54\x70\x89\x61\x1c\x81\x45\x02\ +\x23\xeb\xb8\xc1\x08\x41\x8b\x7f\x3b\x59\x0e\x8f\xef\x75\xff\x09\ +\x91\x8e\x7e\x1e\xd0\x60\x17\xe1\x44\x65\x3d\xdc\x81\x2b\xcc\x26\ +\xae\xa4\x68\x0a\x9e\x45\x81\x3c\x32\xc6\x1f\xc6\xc7\xb1\x39\x14\ +\x73\x7e\x58\x24\x30\xb2\x76\x12\xdc\x3d\xfd\x71\x4b\x51\x2d\x4c\ +\xdb\x91\x67\x88\xd2\xc2\x63\x62\x03\xa0\x5b\xb0\xba\xd4\xb6\xea\ +\xc6\x66\xb8\xfe\xc7\x53\x50\x5a\xe7\x9e\x41\x9b\x8c\x7c\xe8\xde\ +\x9f\xb2\x35\x0f\x76\x5d\xd1\x09\xa2\xb9\xd8\x12\x73\x1e\x58\x24\ +\x30\xb2\x26\xcc\x00\x37\x2e\xf5\x5a\x8c\x13\xe1\xa4\x9f\x4f\xe9\ +\x6a\xe1\xac\x25\xd3\xba\xa9\xcf\x68\x78\xe8\xd7\x7c\x38\x50\x66\ +\xd5\xa0\x37\x8c\x3b\x41\x8e\xa5\x77\x6f\xcb\x83\xcf\x47\x25\xea\ +\xdd\x15\x46\x70\x58\x24\x30\xb2\x70\xe7\x9d\x04\x1a\x14\x73\x6b\ +\xc4\x73\x6d\x54\x42\x52\x80\x37\x5c\x9d\x18\xa4\xea\x3d\xc8\xb0\ +\xea\xdd\x13\x65\x1a\xf5\x88\x71\x37\xa8\x7c\xf3\xbf\x32\x2b\xe0\ +\x4f\x29\xec\x1c\xc9\xb4\x0d\x8b\x04\x93\x23\x77\x4d\xed\xae\x25\ +\x99\x3f\xcc\xa8\x30\x94\xff\xc0\xed\xa9\x21\xaa\x9c\xfe\xb2\xaa\ +\x1b\x60\xea\x2f\xf9\x9a\xf5\x87\x71\x4f\x66\xec\x2a\x80\x09\xf1\ +\x81\x10\xe2\xed\x9e\xcf\x35\xe3\x7c\x58\x24\x98\x1c\xb9\x47\xf3\ +\xee\xb8\x93\x50\x5e\xdf\x24\x0d\x86\x46\x81\x02\x16\x29\xab\x41\ +\x0d\xf7\x6c\xcf\x03\x0b\xc7\x21\x98\x9e\xbc\x9a\x06\x98\xbf\xaf\ +\x08\x5e\x18\x14\xa3\x77\x57\x18\x41\x61\x91\x60\x72\x9a\x64\xfe\ +\xbc\x3b\x3a\x40\x2e\xfd\xad\x18\x0a\x6b\x8d\x71\xcc\x40\x8c\x8a\ +\xf6\x87\xd4\x40\xe5\x01\x8b\xef\xa7\x97\xb3\x69\x13\xf3\x3f\xde\ +\x3a\x66\x81\x87\x7a\x84\xab\xba\xa7\x18\xe3\xc2\x22\xc1\xe4\xc8\ +\xdf\x49\x70\xaf\x6d\xc9\xfc\xda\x46\x78\xe5\x88\x45\xef\x6e\x68\ +\xca\x1d\x2a\x76\x11\x8a\xac\x8d\x30\xcb\x40\xbb\x2a\x8c\x7a\xea\ +\x9b\x9a\x61\xfe\xde\x22\x78\x7f\x78\xbc\xde\x5d\x61\x04\x84\x45\ +\x82\xc9\x69\x92\x19\x95\xe0\x6e\xc7\x0d\xcf\x1d\x2a\x81\xda\x46\ +\xb9\xfb\x25\xe2\xe2\x87\x22\xed\xda\x24\xe5\x01\x8b\x74\xec\x52\ +\x6c\xe5\x63\x06\xe6\x74\x28\x80\xf1\xb1\x3e\x91\xd0\x2b\xc4\x47\ +\xef\xae\x30\x82\xc1\x22\xc1\xe4\x18\x79\x27\xa1\xaa\xa1\x19\xfe\ +\x7a\xdc\x58\xbb\x08\x13\x13\x02\x21\x58\x61\x1a\xea\xd6\xe2\x5a\ +\x29\x80\x93\x61\xce\x84\x0a\x69\xbd\x70\xb8\x14\xde\x1c\x12\xab\ +\x77\x57\x18\xc1\x60\x91\x60\x72\xe4\xae\xb1\xdd\xc9\x01\xf2\xfd\ +\xf4\x32\xa8\xa8\x37\xce\x2e\x02\x31\xa9\x63\x88\xe2\xd7\x4e\xdf\ +\x59\x60\x88\x22\x52\x8c\x73\xf8\x47\x7a\x39\x3c\x9d\x16\xc5\x05\ +\x96\x98\xd3\x60\x91\x60\x72\x8c\xbc\x93\x60\xb4\x1a\x00\xc1\xde\ +\x1e\x70\x65\x82\xb2\x52\xba\x34\x01\xfc\x52\x5c\xa3\x71\x8f\x18\ +\x23\x61\x6d\x6c\x82\xb7\x8f\x5b\xe0\xb1\xde\x91\x7a\x77\x85\x11\ +\x08\x16\x09\x26\x47\x7e\x9d\x04\xf7\xd8\x49\x38\x54\x5e\x07\xbf\ +\x96\xd4\xea\xdd\x0d\x4d\x99\x10\x1f\xa4\xc8\xa6\x9b\x36\x53\xe6\ +\x19\xc0\xcc\x8a\x71\x3e\xef\x9f\x2c\x67\x91\xc0\x9c\x06\x8b\x04\ +\x93\x23\xd7\xd4\xc7\x5d\x76\x12\x3e\xcb\x36\x4e\xe1\x24\x3b\xd7\ +\x29\x0c\x58\xa4\xb8\x8c\xac\xaa\x7a\x8d\x7b\xc3\x18\x91\x63\x15\ +\x75\xb0\xb9\xa8\x06\x2e\x8a\xf2\xd7\xbb\x2b\x8c\x20\xb0\x48\x30\ +\x39\x72\x77\x12\xdc\xa5\x4e\xc2\x17\xa7\x8c\x15\xa0\xe7\x8b\xe2\ +\xec\x8a\x04\xf9\x22\xc1\xda\xd4\x0c\xcf\x1c\x2c\x76\x42\x8f\x18\ +\xa3\x42\xc1\xad\x2c\x12\x18\x3b\x2c\x12\x4c\x8e\x1c\x07\x48\xc2\ +\x1d\x8e\x1b\x4a\xeb\x9a\x60\x67\x89\xb1\x4c\x8b\xc8\xf1\x31\x48\ +\x81\x40\xa3\x42\x39\x39\xd5\xc6\x29\x24\xc5\x38\x9f\xaf\x72\x2a\ +\xe1\xe5\xc1\x5c\x81\x91\xb1\xc1\x22\xc1\xe4\xc8\xdd\x49\xf0\x73\ +\x83\xe3\x86\xf5\x05\xd5\xb2\x8f\x51\x44\x67\xa2\x82\x80\x45\x32\ +\xbb\x5c\x79\xa8\xd4\x09\xbd\x61\x8c\x0c\x1d\x4d\xed\x2b\xb3\x42\ +\xbf\x50\x5f\xbd\xbb\xc2\x08\x00\x8b\x04\x93\x23\x3f\x26\x41\xfc\ +\x9d\x84\x9f\x0b\x8d\x17\xc5\x4f\x41\x8b\x72\xf9\x38\xb3\x02\xb2\ +\xab\x39\x16\x81\x91\xcf\x37\x39\x55\x2c\x12\x18\x09\x16\x09\x26\ +\x47\x76\x76\x83\xc2\x42\x3e\xae\x64\x9b\xc1\x52\xfd\x7a\x86\xf8\ +\x42\xc7\x40\xf9\x8f\xea\xca\x43\x25\x4e\xe8\x0d\x63\x06\x48\x68\ +\xcf\xea\xa5\x77\x2f\x18\x11\x60\x91\x60\x72\x64\x9d\x9b\x73\xe1\ +\x00\x00\x20\x00\x49\x44\x41\x54\x07\x2e\x0a\xbe\x93\x40\x31\x16\ +\x7b\x4a\x8d\x15\x8f\x30\x41\xc1\x51\xc3\xc6\x82\x1a\xd8\x55\x6a\ +\xac\x14\x50\xc6\x75\x6c\x31\x98\xd0\x66\x94\xc3\x22\xc1\xe4\xc8\ +\x0d\x5c\x14\x3d\x05\xf2\x48\x45\x9d\xa1\xbc\x1a\x88\x71\x71\xf2\ +\x45\xc2\x9b\xc7\x8c\x55\x8e\x9a\x71\x2d\x25\xd6\x46\x7c\x96\xea\ +\xa1\x7b\x30\x3b\x43\x9a\x1d\x16\x09\x26\x47\x6e\x7c\x9f\xe8\xd9\ +\x0d\x54\x44\xc9\x48\xf8\xe0\xf7\x3d\x32\x5a\x5e\x3a\x1a\x39\x3d\ +\x7e\x6e\xb0\x14\x50\xc6\xf5\xec\xb3\x58\x59\x24\x30\x2c\x12\xcc\ +\x8e\x6c\x17\x48\xc1\xeb\x24\x9c\x34\x58\xd1\xa0\x0b\x23\xfd\x65\ +\x1f\xf1\xfc\xed\x64\x39\xd4\x35\x1a\x2b\xbb\x83\x71\x3d\x07\xcb\ +\xe9\xd8\x4e\xb9\xe3\x28\x63\x0c\x58\x24\x98\x1c\xf9\x3b\x09\x62\ +\x1f\x37\x1c\xaf\x34\xd6\x4e\xc2\xa5\x31\x01\xb2\x5f\xb3\xfa\x04\ +\x1f\x35\x30\xea\xf9\xad\xcc\x58\xcf\x12\xa3\x0c\x16\x09\x26\x47\ +\xee\xe9\xbd\xe8\x81\x8b\x27\x2a\x8c\xb5\x93\x30\x3a\x56\x9e\x48\ +\xd8\x55\x6a\x85\xc3\x06\x3b\x72\x61\xf4\x21\xc3\x60\xbb\x72\x8c\ +\x32\x58\x24\x98\x1c\x39\x3b\x09\xbe\x82\xef\x22\x10\x19\x06\xaa\ +\x0b\x40\xf1\x08\x43\x23\xfd\x64\xbd\xe6\x9f\x19\xe5\x4e\xea\x0d\ +\x63\x36\x72\x6a\xb8\x52\x27\xc3\x22\xc1\xf4\xc8\x89\x49\x10\x3d\ +\x68\x91\x28\xac\x6d\xd4\xbb\x0b\x9a\x31\x38\xdc\x4f\xb6\xeb\xe3\ +\xc7\x59\x1c\xb0\xc8\x68\x43\x5e\x6d\x83\x34\x3a\x88\xff\xd4\x33\ +\xce\x84\x45\x82\xc9\x91\xb3\x93\x20\x7a\xd0\x22\xc5\xea\x59\xea\ +\x8d\x93\xfe\x78\x91\xcc\xac\x06\x72\xef\x63\xb7\x47\x46\x2b\x1a\ +\x9a\x9a\x25\x1f\x94\x08\x1f\xf1\x77\x10\x19\xe7\xc1\x22\xc1\xe4\ +\xc8\x89\x5b\x14\xbd\x46\x02\xa5\xfe\x35\x1b\xc8\xb3\x41\xae\x13\ +\xdf\x7f\x4f\x19\xcf\x1e\x9b\xd1\x97\xca\x06\x16\x09\x66\x87\x45\ +\x82\xc9\x91\x53\x4c\x49\xf4\xe3\x86\x42\xab\x71\x8e\x1a\x88\xe1\ +\x32\x45\xc2\x57\x39\x55\x4e\xea\x09\x63\x56\xaa\x1a\x8c\xb3\x33\ +\xc7\x28\x83\x45\x82\xc9\x31\xd2\x4e\x42\x85\x81\x8e\x1a\x92\x03\ +\xbd\x21\xda\xd7\xd3\xe1\x9f\x3f\x51\x59\x0f\x07\xcb\x8c\x55\x8e\ +\x9a\xd1\x9f\xea\x06\xe3\xec\xcc\x31\xca\x60\x91\x60\x72\xe4\xb8\ +\x40\x8a\x9e\xfe\x58\x65\xa0\x72\xcc\x17\x44\xc8\xcb\x6a\x58\xc3\ +\xbb\x08\x8c\x13\xe8\x20\xf6\x23\xcf\xb8\x00\x16\x09\x26\x47\xce\ +\x3a\x41\x74\x07\xc8\x6a\x03\x6d\x8d\xca\x15\x09\x3f\xe4\xb3\x48\ +\x60\xb4\x47\x66\x72\x0d\x63\x40\x58\x24\x98\x1c\x39\x31\x09\xa2\ +\xef\x24\xd4\x18\xa8\x14\xf1\x60\x19\x22\x81\x7e\xeb\x4d\x85\xec\ +\xda\xc7\x68\x8f\xd8\xcb\x02\xc6\x15\xb0\x48\x30\x39\x46\x8a\x49\ +\xa8\x31\xd0\x71\xc3\x80\x70\x5f\x87\x7f\x96\xaa\x2c\x96\xd5\x19\ +\x2b\x68\x93\x11\x83\x40\xc1\x77\x0f\x19\xe7\xc3\x22\xc1\xe4\x34\ +\xcb\x90\x09\xa2\xef\x24\x18\xe5\xb4\x21\xde\xdf\x0b\x22\x7d\x1c\ +\x0f\x5a\xdc\x90\x5f\xed\xc4\xde\x30\x66\x26\xd4\x9b\x45\x82\xd9\ +\x61\x91\x60\x72\x64\x1d\x37\x08\x5e\x4c\x49\xce\xef\x22\x32\x69\ +\x61\x8e\xef\x22\x10\x5b\x8b\xf9\xa8\x81\x71\x0e\xa1\xde\x8e\x8b\ +\x55\xc6\x98\xb0\x48\x30\x39\xb2\x02\x17\x05\x3f\x6e\x90\x6b\x7b\ +\x2d\x2a\x7d\x65\x8a\x84\xed\xc5\xb5\x4e\xea\x09\x63\x66\x82\xbd\ +\x3d\x80\x37\x12\x18\x16\x09\x26\xc7\x48\x81\x8b\x66\xdc\x49\xc8\ +\xad\x69\x84\x53\x06\x32\xb5\x62\xc4\x21\x29\xc0\x5b\xef\x2e\x30\ +\x02\xc0\x22\xc1\xe4\xc8\xf2\x6e\x10\x7c\x27\xc1\x20\x1a\x01\x7a\ +\x04\x3b\x2e\x12\xb6\x97\xf0\x51\x03\xe3\x1c\x12\xfd\x79\x7a\x60\ +\x58\x24\x98\x1e\x59\x2e\x90\x82\xc7\x24\x78\x1b\xa4\xf2\x4b\x8f\ +\x10\x1f\x87\x7f\x76\x6f\x29\x57\x59\x64\x9c\x43\x52\x00\x4f\x0f\ +\x0c\x8b\x04\xd3\x63\xa4\x9d\x04\x19\x09\x01\xc2\x92\x80\x03\x73\ +\x90\x0c\x31\x76\x80\x4b\x31\x33\x4e\xa2\x7b\xb0\xe3\x62\x95\x31\ +\x2e\x2c\x12\x4c\x8e\xbc\x3a\x09\x62\xaf\xd4\x7d\x0c\x50\x1e\xae\ +\x87\xcc\x81\xf9\x40\x59\x9d\x93\x7a\xc2\x98\x9d\xee\x32\x76\xb4\ +\x18\xe3\xc2\x22\xc1\xe4\xc8\x0b\x5c\x14\x7c\x27\xc1\x00\x22\xa1\ +\x9b\x0c\x91\x50\x87\x7f\xbc\x63\x95\x2c\x12\x18\xe7\xd0\x93\x45\ +\x02\x03\x2c\x12\x4c\x8f\xac\x62\x4a\x82\xc7\x24\x78\x19\x20\x26\ +\x21\x35\xc8\xf1\x88\xf2\xe3\x95\xf5\xd0\x60\x94\x94\x0e\x46\x28\ +\xfc\xbd\x3c\xa0\x5b\x10\x8b\x04\x86\x45\x82\xe9\x91\x33\xc7\x04\ +\x88\x7e\xdc\x20\x78\xff\x1c\x21\x35\xd0\x71\x91\x40\xf6\xd0\x0c\ +\xe3\x0c\xfa\x87\xf9\xea\x6a\xee\xf4\x8f\xf4\x72\xe8\x84\x82\x79\ +\x44\x94\xbf\x7e\x9d\x60\x24\x58\x24\x98\x1c\x23\x79\x37\x18\xe1\ +\xb8\xa1\xa3\x0c\x91\x90\x5e\xc5\x22\x81\x71\x0e\x83\x64\xba\x90\ +\x6a\x85\xa5\xbe\x09\xa6\x6c\xcb\x85\x72\xbc\x7e\x77\x69\xb2\x2e\ +\x7d\x60\x4e\x87\x45\x82\xc9\x31\x52\x31\x25\x23\x88\x04\x39\xc7\ +\x0d\x27\x79\x27\x81\x71\x12\x43\x74\x10\x09\x7b\x2d\x56\xb8\xe1\ +\xa7\x1c\xa8\x6c\x68\x82\x5f\xc7\x77\x72\xf9\xe7\x33\xe7\x86\x45\ +\x82\xc9\x91\x55\x96\x59\x70\x47\x38\x77\x17\x09\xe4\xb8\x27\xc7\ +\xd8\x29\x83\x77\x12\x18\x27\x31\x32\xda\xb5\xdb\xfc\x9f\x66\x57\ +\xc2\x9d\x5b\x73\xc1\x8a\xab\x96\xaf\x2e\x49\x82\x78\x7f\x03\xe4\ +\x33\x1b\x04\x16\x09\x26\xc7\x48\x2e\x90\xee\x2e\x12\x12\x64\x56\ +\xb8\xcb\xab\x6d\x70\x52\x4f\x18\x33\x93\x18\xe0\x0d\x9d\x64\x1c\ +\x7b\xa9\x65\xf9\xc1\x12\x78\x62\x6f\x11\x34\x35\x37\xc3\xd2\x01\ +\xd1\x30\x26\x36\xc0\x65\x9f\xcd\x9c\x1f\x16\x09\x26\xc7\x48\x29\ +\x90\x7e\x82\x8b\x98\xf3\x21\x57\x24\xe4\xd7\x36\x3a\xa9\x27\x8c\ +\x99\x19\x15\xe3\x9a\x5d\x84\x46\x1c\x7b\xee\xdf\x91\x0f\xab\x8f\ +\x5b\xa4\x7f\x9f\xd4\x31\x04\x66\xf6\x8c\x70\xc9\x67\x33\x8e\xc3\ +\x22\xc1\xe4\xb4\xd6\x08\x1e\x1d\x3a\x40\x90\x97\x07\x84\x78\x7b\ +\x40\x98\x8f\xed\x1a\xe2\xe5\x29\xb9\xc1\xd1\x3f\x8b\x9e\xdd\x20\ +\x7a\xff\xce\x47\x3c\xef\x24\x30\x02\x30\x36\x2e\xd0\xe9\x9f\x51\ +\xd1\xd0\x04\x37\xfe\x94\x03\xeb\xf2\xaa\xa4\x7f\x1f\x1c\xe1\x07\ +\xab\x2e\x8c\x73\xfa\xe7\x32\xf2\x61\x91\x60\x72\x28\xc5\x28\xe3\ +\x9a\x2e\x28\x02\x3c\x65\x95\x03\x16\x11\xd1\x63\x26\xce\x87\x9c\ +\x9d\x84\xca\x86\x66\xa8\xc1\x81\x96\x61\xb4\xa4\x03\x2e\x14\xc6\ +\x39\x59\x24\xd0\x0e\xd8\x95\x1b\xb3\x61\x4f\xa9\xcd\xe2\x3c\x0e\ +\xef\xfb\x4f\x2f\x4e\x04\x5f\x37\x3f\x2e\x34\x2a\x2c\x12\x4c\x0e\ +\xc5\x19\xf8\x1b\xc4\xed\x2d\x40\xf0\xe3\x90\xf3\x11\x27\xe3\xef\ +\x60\xa9\xe3\xa3\x06\x46\x7b\x06\x84\xf9\x42\xac\x9f\xf3\x82\x06\ +\x8f\x55\xd6\xc3\xc4\x0d\xd9\x70\xb2\xa5\x52\xa8\x2f\x3e\xb3\x1f\ +\x8f\x4c\x94\x7d\xd4\xc6\xb8\x0e\xfe\xcb\x30\x86\x41\xeb\xc0\xca\ +\x9e\x21\xbe\x70\x43\x4a\x30\xf4\x0d\xf5\x01\x6f\x5c\xe5\x50\x5d\ +\x82\x6f\x73\xab\xe0\xbb\xbc\x6a\x29\xc8\x4a\x6b\xa2\x7c\x1d\x1f\ +\x9c\xcb\x79\x17\x81\x71\x02\x13\x13\x82\x9c\xf6\xde\xbf\x94\xd4\ +\xc2\x1f\x36\x9e\x82\x22\xeb\xef\xc7\x64\xaf\x0f\x89\x85\x61\x91\ +\xfa\xd4\x64\x60\x1c\x83\x45\x02\x63\x18\x48\x23\xd0\x64\x5e\xaf\ +\xb2\x54\x71\x90\xb7\x07\xbc\x30\x28\x16\xee\x48\x0d\x39\xeb\xff\ +\xfd\xa5\x7b\x38\xec\xb6\x58\xe1\x8e\x2d\xb9\xf0\x9b\xc6\x0e\x8c\ +\x11\x32\xd2\x1f\x2b\xea\x59\x24\x30\xda\x73\x7d\xb2\x73\x44\xc2\ +\xda\xbc\x2a\x98\xf4\x53\x0e\x54\xb5\x12\xb7\x33\x7b\x45\xc0\x6d\ +\x9d\xce\x7e\xc6\x18\xb1\x60\x91\xc0\x18\x0a\x8a\x4b\x28\x53\xb1\ +\x15\x4f\xaf\x5f\x3b\x3a\x19\x86\xb6\xb3\xba\xa1\x2d\xd9\x9f\xc6\ +\xa6\xc0\x98\x75\x59\xb0\xab\xe5\x5c\x55\x0b\x22\xe5\xec\x24\xb0\ +\x48\x60\x34\xa6\x4b\xb0\x0f\xa4\xe1\xbd\xad\x35\xff\xce\xaa\x80\ +\x3b\xb6\xe6\x42\x5d\xe3\xef\xe2\xfd\xaa\xc4\x20\x58\xd2\x3f\x5a\ +\xf3\xcf\x62\xb4\x87\x45\x02\x63\x28\x28\xc3\xa1\x4c\xc5\xeb\x97\ +\x0d\x88\x6e\x57\x20\xd8\x09\x46\x31\xf1\xd1\xc8\x04\xe8\xff\x75\ +\xba\x66\x01\x84\x72\x8e\x1b\xaa\x1b\x59\x24\x30\xda\x72\x7d\x52\ +\xb0\xe6\xef\xb9\xea\x44\x19\x3c\xb0\x23\x1f\x1a\x5b\xed\xee\xf5\ +\x09\xf5\x85\xf7\x87\x27\x00\x87\x29\xba\x07\x2c\x12\x18\x43\xa1\ +\x26\xc3\x21\x39\xd0\x1b\xee\xe9\x12\xe6\xf0\xcf\x93\x19\xd3\xed\ +\xa9\x21\xf0\xe6\x51\x8b\xe2\xcf\x6c\x4d\x98\xb7\xe3\x7d\xe7\x90\ +\x04\x46\x6b\xfe\x4f\xe3\xad\xff\x15\x87\x4a\xe0\xb1\x3d\x45\xd0\ +\xdc\x2a\x7e\x87\x76\xcb\xfe\x33\x2a\xd1\xed\x33\xa9\xcc\x04\x8b\ +\x04\xc6\x50\xa8\xa9\x95\xf0\x87\xc4\x20\xd9\xce\x77\xb4\xfa\xd2\ +\x4a\x24\x04\xcb\x10\x09\xce\x08\x9c\x64\xcc\x4b\xff\x70\x3f\x29\ +\x40\x57\x2b\x1e\xdf\x5b\x04\xcb\x7e\x2b\x3e\xed\xbf\x79\xe1\xc3\ +\xf5\xcf\x11\x89\x2e\xad\xe6\xc8\xa8\x87\x45\x82\x89\xa1\x73\xc2\ +\xdf\xca\xea\x1c\xfa\xd9\x77\x87\xc5\x43\x1f\x0d\x07\x11\x67\xa1\ +\x66\x27\xa1\x67\x88\xfc\xdf\xaf\x57\x88\x36\x67\xb8\x34\x80\xca\ +\xc9\x13\x6f\x60\x8d\xc0\x68\xc8\xad\x1a\xee\x22\xcc\xd8\x55\x08\ +\x2f\x1d\x2e\x39\xeb\xbf\x3f\x37\x30\x06\x46\xbb\xa8\x9a\x23\xa3\ +\x1d\x2c\x12\x4c\xcc\xc6\x82\x1a\x38\x55\xed\x98\x49\x50\xa9\x9b\ +\xe4\xe5\xab\x49\x83\xf4\xec\x20\xff\xb5\x5a\x95\x66\x08\x92\x29\ +\x6e\x1a\x79\x27\x81\xd1\x08\xca\x08\xd2\xea\xa8\xe1\xcf\xbf\xe6\ +\x9f\x73\x67\xed\xce\xce\x61\x70\x7f\x37\xc7\x8f\xf2\x18\x71\x60\ +\x91\x60\x52\x28\xd0\x58\x4e\x59\xdf\x5a\x95\x69\x85\xae\xc2\xcf\ +\x43\xf9\xac\x7d\xbc\xd2\xb1\x5d\x95\xd6\x1c\xab\x90\xff\x9a\x73\ +\x21\xe7\xa8\x81\xf0\xe6\xea\x74\x8c\x46\xd0\x31\x5b\x8c\x8c\xa0\ +\xd9\x73\x41\xa3\xc3\xbd\xdb\xf3\xe0\xdd\x13\x67\x87\x0d\x5f\x14\ +\xed\x0f\xaf\x5e\x10\xab\xea\xfd\x19\xfd\x60\x91\x60\x52\x4e\xd5\ +\x34\x9c\x16\x71\x7c\x3e\x6a\x1b\xdd\x43\x24\xf8\xab\x08\x88\xfa\ +\xea\x54\x15\x3c\x23\x33\x2d\xeb\xab\x9c\x2a\xc5\x9f\xd7\x1a\xb9\ +\x3b\x20\x5e\x0a\x76\x3d\x18\xe6\x5c\xdc\xd3\x55\xdd\x0a\x9f\x46\ +\x86\xc9\x5b\x73\xe1\x83\xf4\xf2\xb3\xfe\x1f\xf9\x91\xfc\x6b\x44\ +\x22\xc8\xd4\xc0\x8c\x40\xb0\x48\x30\x29\x59\x0e\x1e\x33\xd8\x69\ +\x70\x97\x9d\x04\x15\xc7\x0d\x87\xca\xad\x92\xaf\xfd\xf5\x49\x8e\ +\x15\x94\x29\xae\x6b\x84\xb7\x8f\x69\x13\xb4\x28\xd7\xe6\xda\xdd\ +\x6d\xb1\x19\x31\xe8\x1a\xec\xa3\xda\x9a\xf9\xae\x6d\x79\xe7\x14\ +\x08\xb4\xdb\xf5\xe1\x88\x04\xa7\x96\x79\x66\x9c\x0f\x8b\x04\x93\ +\x92\x55\x25\xcf\x41\xd0\x4d\x36\x12\x54\x1d\x37\x10\x7f\xde\x91\ +\x0f\x03\xc3\x7d\xa5\xf4\xc6\xf6\xa0\xef\x83\xaa\x2e\x6a\x15\xab\ +\xe1\x2d\x73\x67\x40\x46\x71\x46\x86\x69\x93\x07\xba\x85\xab\x7a\ +\xfd\xbd\xdb\xf3\xe1\xef\x27\xcf\x5d\x99\x64\xf9\xc0\x18\xc9\x40\ +\x8e\x71\x6f\x58\x24\x98\x14\xb9\x3b\x09\xee\x92\x72\xa7\xe6\xb8\ +\x81\x28\xac\x6d\x80\xd1\xeb\x32\xe1\xef\xc3\x13\xe0\xe2\xe8\x73\ +\x0f\x70\xe4\x62\x47\xdb\xab\xdf\xe7\x69\x73\xd4\x40\xf8\xc8\xdc\ +\x01\x91\x1b\xe8\xc8\x30\x67\x42\xce\xaf\x93\x3b\x87\x2a\x7e\xfd\ +\xfd\x28\xa8\xdf\x39\x71\xee\x9d\x34\x0a\x84\x7c\x80\x03\x15\x0d\ +\x01\x8b\x04\x93\x92\x59\x6d\xcc\x9d\x04\x2d\xb6\xe1\x73\xf0\xbb\ +\x19\xf3\x43\x16\x4c\x8c\x0f\x84\x1b\x53\x82\xa1\x4f\x98\xaf\xf4\ +\xbe\x27\x2b\xeb\xe1\x5b\x14\x06\x7f\xc3\x95\x53\xa5\xc6\x65\x91\ +\xe5\xee\x24\x84\x7a\xf3\x56\x02\xa3\x8e\x3b\x51\x20\x28\x2d\x6a\ +\xf4\xe4\xbe\xa2\x36\x8f\xda\x7a\x85\xfa\xc2\x1b\x43\xe2\xd4\x74\ +\x8d\x11\x08\x16\x09\x26\x25\x5b\xee\x4e\x02\xb8\x87\x4a\xd0\xea\ +\xac\x9e\xaa\xc4\x7d\x95\x53\x29\x35\x57\x20\xb7\xdb\xa1\x1c\x09\ +\xc6\xa8\x80\xe2\x05\x1e\xea\xa1\xec\xa8\x61\xf5\x89\x32\x58\x72\ +\xa0\xf8\x9c\xff\xcf\xdf\xcb\x03\x3e\xbc\x28\x41\x73\x47\x56\x46\ +\x3f\x58\x24\x98\x94\x2c\xde\x49\x10\x0a\xb9\x71\xa1\x61\x3e\x2c\ +\x12\x18\xe5\xdc\xdc\x31\x04\x92\x03\xe4\x0f\xff\x5b\x8a\x6a\x25\ +\x2f\x86\xb6\x58\xda\x3f\xda\x2d\x8a\xae\x31\x8e\xc3\x22\xc1\xa4\ +\xc8\xdd\x49\x70\x97\xe2\x3d\x6e\x2b\x12\x64\xee\xd4\x90\xc1\x94\ +\x16\xb6\xd8\x8c\xf9\xf0\xe8\xd0\x01\xe6\xf4\x8e\x94\xfd\x3a\x4b\ +\x7d\x13\xdc\xba\x25\xa7\xcd\x4c\xa7\xcb\x62\x03\x39\x0e\xc1\x80\ +\xb0\x48\x30\x21\x54\xd2\xb7\xa4\x4e\xde\x99\x3a\xef\x24\x38\x17\ +\x25\x73\x7d\xac\x9f\x97\x6c\xb1\xc7\x30\xd7\x27\x07\x41\xf7\x60\ +\xf9\xfe\x09\x53\xb6\xe5\x42\x66\xd5\xb9\xef\x37\x5f\x4f\x0f\x78\ +\x75\x08\x17\x4c\x32\x22\x2c\x12\x4c\x48\x5e\x4d\xc3\x69\xce\x6c\ +\x8e\xe0\x2e\xce\xc4\xee\x7a\x54\xaf\x44\x24\x50\xa1\x1a\x16\x09\ +\x8c\x1c\x68\x17\x61\x7e\xdf\x28\xd9\xaf\x7b\xf9\x48\x29\x7c\x91\ +\xdd\x76\x7c\xce\x1d\xa9\x21\xd0\x35\x88\x8d\x9b\x8c\x08\x8b\x04\ +\x13\x92\x2b\xa3\x1c\xb3\x1d\x77\x09\x5c\xf4\x70\x53\x97\xfa\x3a\ +\x05\x2a\x21\xde\x9f\x33\x1c\x18\x79\x4c\xea\x18\x0c\xbd\x64\x1a\ +\x99\xed\x2c\xb5\xc2\xdc\x3d\x85\xed\xfe\xcc\x34\x95\xf5\x16\x18\ +\x71\x61\x91\x60\x42\xf2\x6a\xe4\x17\x00\x72\x97\xe3\x06\x37\x3d\ +\x6d\x80\x6a\x05\x5b\x35\xb4\x93\xc0\x30\x8e\x42\x4e\xa3\x72\x77\ +\x11\x6a\xf0\xc1\xbf\x7d\x4b\x0e\xd4\xb5\x33\x00\x0c\xd0\xd8\x66\ +\x9a\x11\x0b\x1e\x65\x4c\x88\x1c\x63\x27\x3b\xee\x12\xb8\xe8\xae\ +\x22\xa1\x46\x81\x0a\x4b\x0d\xe4\x81\x99\x71\x9c\xc9\xa9\xa1\xb2\ +\x8f\x04\x66\xec\x2a\x80\xc3\xe5\xed\x9b\x98\xdd\x9e\xaa\x9d\xcd\ +\x34\x23\x1e\x2c\x12\x4c\x48\x6e\x8d\x12\x91\xe0\x84\x8e\x38\x01\ +\x77\x3d\x6e\xa8\x6e\x90\xbf\x93\xd0\x99\xcf\x80\x19\x07\x09\xf4\ +\xf2\x80\x05\xfd\xe4\xed\x22\xfc\xf7\x54\xd5\x79\xbd\x49\x28\xc3\ +\x86\xd2\x29\x19\xe3\xc2\x22\xc1\x84\x28\x13\x09\xee\xa1\x12\xdc\ +\xd5\x1c\x51\xc9\x4e\x42\x17\x16\x09\x8c\x83\x4c\xef\x19\x21\xcb\ +\x68\x89\x4a\x8f\x93\xf5\xf3\xf9\xb8\x22\x21\x10\xa2\x54\xda\x4c\ +\x33\x62\xc3\x22\xc1\x84\xe4\x2b\x38\x6e\x50\xb0\xd0\xd5\x05\x37\ +\xd5\x08\xd2\x4e\x02\xa5\xa6\xca\xa9\x92\xdb\x39\x88\x8f\x1b\x98\ +\xf3\x93\x10\xe0\x05\x33\x7b\x45\xc8\x7a\xcd\xd4\x5f\xf2\xa0\xc8\ +\x7a\xfe\x71\xe2\xb6\x4e\xca\xbd\x1f\x18\xf7\x80\x45\x82\x09\xc9\ +\xab\x95\x1f\xb8\xe8\x2e\x45\x7b\xdc\x65\xc7\xe3\x5c\x94\xd4\x35\ +\x42\x8c\x8c\x55\x19\xd5\xdd\x4f\x0a\xf0\xe6\x34\x48\xa6\x5d\xa8\ +\x0a\x62\x80\x8c\x32\xc9\xef\x9d\x2c\x87\x2f\x4f\x9d\xbf\x1c\x79\ +\x24\xde\xab\x57\x25\x3a\x66\xab\xce\xb8\x2f\x2c\x12\x4c\x48\x91\ +\x55\xbe\x48\x68\x70\x93\xc9\xb7\xc1\x3d\xba\x79\x4e\x4a\x65\x8a\ +\x04\xa2\x6f\xa8\x2f\x8b\x04\xa6\x4d\x86\x47\xf9\xc3\xff\xc9\x88\ +\x19\xc8\xae\x6e\x80\xe9\x3b\x0b\x1c\xfa\xd9\x9b\xf0\x7d\x55\x9a\ +\xae\x32\x6e\x00\x8b\x04\x13\xe2\xc8\x36\xe2\x99\x68\x6c\x7a\xe8\ +\x34\xda\x2a\x19\xeb\x0e\x94\x58\xf1\x4b\x0e\x96\xf7\x9a\xbe\x61\ +\x3e\xf0\x4d\xae\x73\xfa\xc3\xb8\x37\x54\x38\xe9\xf9\x41\xf2\xaa\ +\x20\xde\xbd\x3d\x0f\xca\xeb\x1d\x5b\x44\xdc\xd2\x89\x03\x16\xcd\ +\x00\x8b\x04\x93\x41\x93\x7d\x85\x82\x19\xbf\x9e\x77\x12\x9c\x4e\ +\x71\x9d\xfc\x1d\x9e\x7e\x61\xbe\x4e\xe8\x09\x63\x04\xee\xed\x1a\ +\x06\x83\x23\x1c\xbf\x3f\x56\x9d\x28\x83\x75\x79\x55\x0e\xfd\x6c\ +\xf7\x10\x1f\x18\x12\xe1\xa7\xb4\x6b\x8c\x1b\xc1\x22\xc1\x64\x28\ +\x99\x88\x08\x8e\x49\x70\x3e\x79\x0a\xb2\x4e\xfa\x87\xf1\x40\xcd\ +\x9c\x0d\xf9\x7a\x2c\x4e\x73\x3c\xe5\x31\x07\xef\xbd\x39\xbb\xdb\ +\xaf\xaa\xd8\x1a\xde\x45\x30\x0f\x2c\x12\x4c\x86\x92\x78\x04\xc2\ +\x5d\x44\x82\xbb\xf4\xf3\x5c\xe4\x28\x10\x09\xbd\x43\x7d\x20\xd8\ +\xdb\x43\xd1\xee\x10\x63\x5c\x56\x0c\x8c\x81\x10\x19\x46\x26\x7f\ +\xde\x91\x0f\x65\x0e\x2e\x20\x3a\x74\xe8\x20\x2b\xce\x81\x71\x6f\ +\x58\x24\x98\x8c\x62\xc5\x22\x41\xe3\x8e\x38\x89\x6a\x77\xa9\xfa\ +\x74\x0e\x94\xd4\xaf\xa0\xb8\xb1\x0b\x22\xfc\x60\x7d\x7e\xb5\xf6\ +\x1d\x62\xdc\x92\xf1\xf1\x81\x70\x53\x47\xc7\x83\x5b\x3e\xce\xac\ +\x80\xff\x3a\x90\xcd\x60\xe7\xa2\x28\x7f\xe8\x14\xc8\x35\x3a\xcc\ +\x02\x8b\x04\x93\xa1\x78\x27\xc1\x4d\xb6\xf1\x95\x54\x2e\x14\x05\ +\x25\x22\x81\x18\x1a\xe9\xcf\x22\x81\x91\xa0\x5d\xa5\x37\x86\xc4\ +\x39\xfc\xf3\xe5\xa8\xfe\xa7\xef\x72\x2c\x9b\xc1\x0e\x1f\x35\x98\ +\x0b\x16\x09\x26\xa3\xc4\xe0\x31\x09\x55\x6e\x1c\xb9\x98\xa9\x30\ +\x95\x71\x18\xae\xec\x18\x86\x78\xa6\x7f\x0c\x24\x05\x38\x3e\xac\ +\x3f\xb6\xb7\x50\x56\x2c\x8c\x8f\x67\x07\xb8\x31\x45\x66\x0a\x0e\ +\xe3\xd6\xb0\x48\x30\x19\x4a\x8f\x1b\xac\x6e\xb2\x8d\x5f\xa5\xc0\ +\x4d\x51\x14\x4e\x54\x2a\x13\x09\xa3\xa2\xfd\xc1\xd3\xa3\x03\x34\ +\xba\x89\x90\x63\x9c\xc3\xa5\xb1\x01\x70\x6f\x57\xc7\x2b\x20\x6e\ +\x2f\xae\x85\xb7\x8f\x95\xc9\xfa\x8c\x09\xf1\x81\x10\x26\x23\xd6\ +\x81\x71\x7f\x58\x24\x98\x8c\x72\x85\xc1\x05\x35\x6e\x32\xf9\xd6\ +\xb8\xf1\x71\x43\x15\xf6\x9d\x6a\xe6\xcb\xa9\xb1\x4f\x50\x80\xda\ +\xc0\x70\x5f\xd8\x81\x83\x3e\x63\x4e\x42\x7d\x3c\x61\xd5\x85\xf1\ +\x0e\xff\x3c\xc9\xc9\x07\x76\xe4\x43\x93\xcc\x63\xc4\x9b\x52\xf8\ +\xa8\xc1\x6c\xb0\x48\x30\x19\xe5\x0d\xca\x76\x12\x6a\xdd\x65\x27\ +\xc1\x8d\x8f\x1b\x88\xe3\x95\x75\x28\x12\xe4\x1f\x1f\x5c\x1a\x13\ +\xc8\x22\xc1\xc4\xbc\x30\x28\x06\x92\x65\x1c\x33\xbc\x79\xcc\x02\ +\xbb\x4b\xe5\xdd\x2f\xe4\x24\xc9\x65\x98\xcd\x07\x8b\x04\x93\xa1\ +\x7c\x27\xc1\x3d\x26\xdf\x52\x85\x31\x17\xa2\x40\x47\x0e\x17\x29\ +\x88\x31\xa0\xad\xe6\xe5\x07\x8b\x9d\xd0\x23\x46\x74\xfe\x98\x1c\ +\x0c\xb7\xca\x08\x26\x2c\xa9\x6b\x82\x27\xf7\x15\xc9\xfe\x9c\xab\ +\x51\x20\xf8\xcb\xf0\x80\x60\x8c\x01\x8b\x04\x93\xa1\x34\x9f\xde\ +\x5d\x76\x12\x94\x16\x8b\x12\x85\xdf\xca\xea\x14\xbd\x6e\x74\x4c\ +\x00\x04\x79\x7b\x40\xa5\xbb\xe4\xaa\x32\x9a\x90\x1c\xe8\x0d\x6f\ +\x0c\x75\x3c\x9b\x81\x78\x7c\x4f\x21\x94\x28\x88\x4d\xba\x89\x6b\ +\x23\x98\x12\x16\x09\x26\xc3\xe8\x31\x09\x4a\x03\x33\x45\x61\x7f\ +\x99\x55\xd1\xeb\x28\x96\x6c\x6c\x5c\x20\x7c\x96\x55\xa1\x71\x8f\ +\x18\x51\xa1\x60\xd5\xf7\x86\xc5\xcb\x0a\x24\xdc\x6b\xb1\xc2\x3b\ +\x27\xe5\x05\x2b\x12\xe1\x3e\x9e\x52\xfd\x05\xc6\x7c\xb0\x48\x30\ +\x19\x46\x3e\x6e\xa0\x5f\xad\xca\x8d\x03\x17\x89\x7d\x16\x65\x22\ +\x81\xb8\x2a\x21\x88\x45\x82\x89\x98\xdb\x2b\x12\x2e\x8e\x96\x77\ +\x34\x35\x63\x57\x81\xa2\x2c\x98\xeb\x93\x83\xd9\xf1\xd1\xa4\xb0\ +\x48\x30\x19\x4a\x45\x82\x3b\x1c\x37\xb8\xfb\x51\x03\x41\xb6\xcf\ +\x65\xf8\x37\x0a\x55\x90\x66\x76\x45\x42\x20\xa7\x42\x9a\x84\xd1\ +\xb1\x01\xf0\x64\xbf\x48\x59\xaf\xf9\xfc\x54\x25\x6c\x50\x58\x74\ +\xeb\x06\xae\x8d\x60\x5a\x58\x24\x98\x0c\x23\x1f\x37\xb8\xfb\x51\ +\x83\x9d\x3d\x16\xab\x54\xfb\x40\x2e\xd1\xbe\x9e\x70\x49\x74\x00\ +\xfc\x90\xef\x98\x93\x1f\xe3\x9e\xc4\xf9\x7b\xc1\xdf\x87\x27\x80\ +\x9c\x85\x3d\x69\xfc\xb9\x32\x0c\x9c\x5a\x13\x89\xf7\xd5\x65\x31\ +\x01\x8a\x5e\xcb\xb8\x3f\x2c\x12\x4c\x86\xd2\xc9\xbe\xd6\x0d\x56\ +\xa7\x05\x56\x65\x65\x8d\x45\x63\x7b\x71\x8d\x22\x91\x40\x4c\xea\ +\x18\xcc\x22\xc1\xc0\xd0\x4e\xd1\xfb\x28\x10\xe4\xd6\xd2\xa0\x94\ +\xc7\x63\x15\xca\x82\x62\xaf\x4d\x0a\x06\x0f\x3e\x6a\x30\x2d\x2c\ +\x12\x4c\x86\xd2\xc9\x9e\xb6\xb0\x69\x13\x42\xe4\x62\x6b\x4a\xbd\ +\x0f\x44\x63\x5b\x91\xf2\x7a\x07\x74\x76\xfc\xe0\xaf\xf9\x50\xe7\ +\x06\xc7\x43\x8c\x7c\x16\xa7\x45\xc3\xe8\x18\x79\x02\xb2\xa2\xa1\ +\x09\x16\xed\x57\x9e\x1e\xcb\x47\x0d\xe6\x86\x45\x82\x89\xa0\x79\ +\x43\xcd\x79\x35\x15\x62\x8a\xf4\x91\xb7\x82\x71\x25\xb9\x35\xc6\ +\x38\x6e\xd8\x56\x5c\xa3\xf8\xb5\x14\xe9\x3e\x2e\x2e\x10\xbe\x94\ +\xe1\xea\xc7\xb8\x07\x37\xa6\x84\xc0\x8c\x9e\xe1\xb2\x5f\xb7\xe2\ +\x60\x09\x14\x29\xdc\x65\x8b\xf2\xf5\xe2\xa3\x06\x93\xc3\x22\xc1\ +\x44\xa8\x0d\x3e\xa4\x78\x06\x91\x45\x42\xb6\x42\x83\x24\xd1\xa0\ +\x1d\x91\xac\xea\x06\x59\x15\xf4\x5a\x73\x47\x6a\x28\x8b\x04\x83\ +\xd1\x37\xcc\x17\xfe\x7a\xa1\xbc\x7a\x08\x44\x81\xb5\x11\x5e\x3c\ +\x5c\xaa\xf8\x73\xaf\x49\x0a\xe2\xa3\x06\x93\xc3\x22\xc1\x44\xa8\ +\x0d\x3e\x54\x1a\xf4\xe8\x2a\x68\x62\x35\x0a\x1b\x0b\xaa\x65\x55\ +\xd1\x6b\x0d\x55\xc6\x8b\xf5\xf3\x82\xfc\x5a\xe3\x7c\x1f\x66\x86\ +\x56\xf3\x9f\x5d\x9c\x08\x01\x0a\xaa\x1d\x2e\x39\x50\xac\x2a\x2d\ +\xf8\xba\x64\x2e\xc3\x6c\x76\x58\x24\x98\x08\x2d\x76\x12\x44\x26\ +\xa3\xca\x18\x3b\x09\xc4\xba\x7c\xe5\x22\x81\xe6\x92\xdb\x53\x43\ +\xb9\x4c\xb3\x01\x20\x6b\xe6\x8f\x47\x26\x40\xa7\x40\x6f\xd9\xaf\ +\xcd\xa8\x6a\x80\xb7\x8f\x5b\x14\x7f\x36\x99\x46\x8d\x89\xe5\x02\ +\x4a\x66\x87\x45\x82\x89\x50\x9b\xa1\x50\x21\x78\xa1\x22\x23\x89\ +\x84\xf5\x0a\xf3\xd9\xed\x4c\xe9\x12\x0a\x2b\x0e\x95\x40\xb3\x4c\ +\x97\x3f\x46\x2c\x5e\xbd\x20\x16\x46\x2a\xcc\x74\x59\xb8\xbf\x48\ +\x55\x00\xeb\xc4\x84\x40\x2e\xa0\xc4\xb0\x48\x30\x13\x56\x95\x3b\ +\x09\x4a\x7d\x1f\x5c\x41\x69\x5d\x93\xdb\x9b\x3b\xb5\xe6\x54\x75\ +\x3d\x1c\xa9\xa8\x87\xee\xc1\xf2\x57\x90\x44\x97\x20\x6f\x98\x18\ +\x1f\x08\x5f\xe5\x70\x6c\x82\xbb\x32\xbb\x77\x24\x4c\x4e\x0d\x55\ +\xf4\xda\x83\xe5\x75\xf0\x41\x46\xb9\xaa\xcf\xa7\xd4\x47\x86\x61\ +\x91\x60\x22\x9a\xc0\xb8\xc7\x0d\x64\xb1\x6c\x34\xbe\xc9\xad\x44\ +\x91\x20\x3f\x9a\xdd\xce\x43\x3d\xc3\x59\x24\xb8\x29\x93\x3a\x86\ +\xc0\xe2\xb4\x28\xc5\xaf\x27\x97\x47\x35\x99\x4c\x7e\x9e\x1e\x30\ +\x81\xbd\x1a\x18\x60\x91\x60\x2a\xd4\xd6\x43\x12\x59\x24\x1c\xab\ +\x30\xce\x51\x83\x9d\xcf\xb3\x2b\xe1\x2f\xdd\x95\x8b\x84\x4b\x63\ +\x02\xa0\x7f\xb8\x1f\xec\x29\x55\x5e\x77\x81\x71\x3d\x23\xa3\x03\ +\x60\xb5\x82\x4c\x06\x3b\xbf\x96\x58\xe1\x3f\xd9\xea\xc4\xe1\xd8\ +\xb8\x00\x45\x81\x92\x8c\xf1\x60\x91\x60\x22\xd4\x9e\x4e\x97\xd7\ +\x8b\xbb\x9d\x7f\xa8\xdc\x78\x3b\x09\x3f\x17\xd5\x48\x7e\x14\x6a\ +\xd2\x4e\x1f\xe9\x11\x0e\x93\xb7\xe6\x6a\xd8\x2b\xc6\x99\xf4\x09\ +\xf5\x85\xcf\x46\x25\x82\x8f\x8a\xbc\xc3\x79\x7b\x0b\x55\xc7\xa2\ +\x5c\x95\xc8\x59\x0d\x8c\x0d\x16\x09\x26\x42\xed\x4e\x82\xc8\x81\ +\x8b\x07\xcb\x95\xbb\x27\x8a\x0a\x6d\x17\x7f\x79\xaa\x0a\xee\x48\ +\x55\x96\xe5\x40\xdc\xdc\x31\x04\x16\x1d\x28\x86\xe3\x0a\x4b\xf2\ +\x32\xae\xa3\x63\xa0\x37\xac\x19\x9d\x24\xcb\xfa\xf9\x4c\x36\x15\ +\xd6\xc0\x77\x79\xea\xca\x72\x77\xe8\xd0\x01\xae\x4c\x60\x91\xc0\ +\xd8\x60\x91\x60\x22\xd4\x06\xba\x5b\xea\xc4\x14\x09\xa7\x6a\x1a\ +\x60\xa7\x41\xb7\xd4\x3f\xcd\xaa\x50\x25\x12\x68\x41\xfa\x58\xef\ +\x48\x98\xb2\x8d\x77\x13\x44\x86\x6a\x21\x7c\x85\x02\x21\xc1\x5f\ +\xdd\x90\x4c\xbb\x08\x6a\x19\x1c\xe1\x2b\xdb\x1b\x82\x31\x2e\x2c\ +\x12\x4c\x84\xda\xc0\xc5\x12\x81\x5c\x16\x69\x57\xe4\xcb\x9c\x4a\ +\x58\x75\xbc\x0c\xd6\xe2\xca\xc9\xa8\xf6\xc8\xdf\xe2\xef\x46\x55\ +\xf3\x62\x7c\x95\x0f\xda\x54\x6f\x61\xf1\x81\x62\x38\x61\xc0\xe0\ +\x4e\x23\x40\xf5\x08\xbe\xbe\x34\x09\x7a\x04\xfb\xa8\x7a\x9f\x2f\ +\x4e\x55\xc2\xe6\x42\xe5\x25\xbd\xed\x5c\xc5\xbb\x08\x4c\x2b\x58\ +\x24\x98\x08\xb5\x3b\x09\xc5\x02\xa4\x18\x66\x56\x37\xc0\x6a\x14\ +\x06\xef\x9c\xb4\x40\x8e\x81\x2a\x2c\xb6\x45\x03\x8a\x9f\x0f\xd2\ +\xcb\xe1\xe1\x1e\xca\x03\x18\x69\x37\x61\x5e\xdf\x48\xb8\x93\x63\ +\x13\x84\x23\xd0\xcb\x03\xbe\x18\x95\x08\x03\xc2\x7c\x55\xbd\x0f\ +\x69\xe4\xc7\xf7\x14\x69\xd2\x27\x8e\x47\x60\x5a\xc3\x22\xc1\x44\ +\xa8\xad\xc1\x5e\xac\xd3\x4e\x02\x95\x77\xf8\xfc\x14\xed\x1a\x58\ +\xe0\xfb\xbc\x6a\x1c\x10\x8d\xb9\x6b\xd0\x16\xef\x9f\x54\x27\x12\ +\x08\xda\x4d\x78\xe9\x70\x29\xec\x32\xe8\xb1\x8c\x3b\xe2\x8f\x02\ +\xe1\xd3\x8b\x13\xe1\xa2\x28\x65\xc5\x92\x5a\xb3\xfa\x44\x19\x1c\ +\xd2\x20\x2e\x27\xde\xdf\x0b\xfa\xab\x14\x2c\x8c\xb1\x60\x91\x60\ +\x22\xd4\x44\x4c\x13\xae\xde\x49\x38\x59\x55\x2f\x1d\x27\xbc\x8b\ +\x03\xa0\x99\x7d\x08\xf6\x5a\x6a\x61\x67\xa9\x15\x06\x85\xab\x1b\ +\xbc\x9f\x1d\x18\x0d\xe3\x7e\xc8\xd2\xa8\x57\x8c\x1a\xa8\x0e\xc1\ +\x27\x23\x13\xe1\xb2\x58\xf5\x0e\x8b\x35\xa8\xa2\x9f\xda\xaf\xcd\ +\x2e\xc2\x38\xae\x8d\xc0\x9c\x01\x8b\x04\x13\xa1\x56\x24\x50\xe0\ +\x22\xad\xe1\x9d\x99\x3d\xdd\x80\x1f\xf0\x59\x56\x05\xfc\x15\xc5\ +\xc1\xfa\x82\x6a\x2e\x2b\xdc\xc2\xcb\x47\x4a\xe1\x1d\x15\xb9\xf3\ +\x04\xd5\x4d\xa0\xa8\x75\x2e\xb0\xa4\x2f\x24\x10\x68\x07\x81\x6a\ +\x11\x68\xc1\x73\x87\x4a\x24\xe7\x50\x2d\xe0\x02\x4a\xcc\x99\xb0\ +\x48\x30\x11\xde\x2a\x45\x02\x6d\xf3\x17\xaa\x0c\xa2\x6b\x8b\x63\ +\x95\xf5\x28\x0c\x2c\xf0\xde\x89\x72\x28\xb2\x9a\x77\xd7\xa0\x2d\ +\x3e\xce\xac\x80\x67\x07\x44\xab\xfe\xee\x9f\x1b\x14\x23\x99\x47\ +\xd5\xaa\x74\x04\x65\x94\x41\x47\x0c\xb4\x83\xa0\x95\x40\x48\xaf\ +\xaa\x87\x65\x07\x4b\x34\x79\x2f\x4f\x1c\x1f\x2e\x8f\x63\x91\xc0\ +\x9c\x0e\x8b\x04\x13\xa1\x76\x27\x81\xc8\xc3\x15\x8b\x56\x22\xa1\ +\xae\xa9\x19\x3e\xcb\xae\x94\xc4\xc1\xc6\x82\x1a\xde\x35\x68\x07\ +\x2b\x4e\xea\x6f\x1d\xb3\xc0\x13\x7d\x22\x55\xbd\x0f\x79\x3a\xcc\ +\xe9\x1d\x01\x0b\xf7\x69\xb3\x3d\xcd\x38\x4e\x90\xb7\x07\xfc\xe7\ +\xe2\x24\xb8\x24\x46\x7d\x0c\x82\x9d\x87\x7f\x2d\x80\x1a\x8d\xea\ +\x97\x0c\x89\xf0\x53\x55\xa3\x81\x31\x26\x2c\x12\x4c\x84\x16\x22\ +\x21\xbf\x56\x7d\x5c\x02\x55\x47\xa4\xe3\x84\xf7\xd3\xcb\x84\x4a\ +\xab\x14\x9d\xd7\x8f\x5a\x60\x46\xcf\x08\xf0\x57\x59\x2e\x77\x76\ +\xaf\x08\xf8\x30\xa3\x1c\x8e\x18\xb0\x4a\xa5\xa8\x50\x9a\xe3\x97\ +\x97\x24\xc1\xb0\x48\x3f\xcd\xde\x93\x52\x1e\xb5\x3c\x3a\xe2\x5d\ +\x04\xe6\x5c\xb0\x48\x30\x11\xda\x88\x04\x65\x47\x01\xd6\xa6\x66\ +\xf8\x77\xa6\x2d\xd6\xe0\xa7\x42\x75\x36\xc8\x66\xa5\x00\xbf\x7b\ +\x12\x0a\xd3\x7b\xaa\xcb\x74\xa0\xfb\xe0\xd5\x0b\xe2\x60\xdc\xfa\ +\x2c\xde\xbd\x71\x01\xb1\x7e\xb6\x42\x49\x5a\x66\x0d\x50\xb0\xe2\ +\x23\x3b\x0b\x34\x7b\x3f\xe2\x52\x0d\x82\x28\x19\xe3\xc1\x22\xc1\ +\x44\x04\x68\x60\x0e\x2f\x77\x27\x61\x7f\x59\x9d\x74\x9c\xf0\x8f\ +\xf4\x72\xb0\x08\x50\x67\xc1\xdd\x59\x71\xa8\x04\xa6\x75\x0b\x53\ +\xbd\x9b\x30\x3a\xc6\x1f\x1e\xc0\xf7\x79\xe5\x48\xa9\x46\x3d\x63\ +\xce\x45\x6a\x90\x0f\x7c\x8d\x02\x81\x8e\x79\xb4\xe4\xf1\xbd\x85\ +\x90\x59\xa5\x9d\xa9\x19\xc5\x4a\x0c\x8f\xd4\xee\x18\x84\x31\x0e\ +\x2c\x12\x4c\x84\x2f\xae\x20\x29\x78\xb1\x5e\x45\x75\xc2\x1c\x07\ +\xa2\xa8\x69\x95\xf3\x2f\x69\xd7\xc0\x02\x5b\x8b\xd4\x57\x80\x63\ +\x7e\xa7\x50\xa3\xdd\x04\x62\x69\xff\x68\xa9\xee\x84\x16\xf9\xf5\ +\xcc\xd9\xf4\x0b\xf3\x85\x35\xa3\x93\x21\x4e\xe3\x12\xc7\x14\xbf\ +\xf3\xea\x11\x8b\xa6\xef\x39\x32\xca\x1f\x38\x1c\x81\x39\x17\x2c\ +\x12\x4c\x46\x30\x8e\x04\x6a\xe2\x00\xb2\xab\xdb\x5e\xbd\xec\xb1\ +\x58\xe1\x6d\x14\x06\x1f\xa6\x57\x08\xed\x18\xe9\xee\x54\x6a\x14\ +\xa8\xe6\xe7\xd9\x01\xde\x19\x16\x07\x17\x7f\x9f\x29\x55\x76\x64\ +\xb4\xe3\xb2\xd8\x40\xf8\xf7\xc5\x09\x10\xec\xa5\xed\xcc\x6b\xa9\ +\x6f\x82\xbb\xb6\xe5\x6a\x5e\x50\x8c\x8f\x1a\x98\xb6\x60\x91\x60\ +\x32\x42\x54\x8a\x84\xac\x36\x4a\x21\x67\x54\x35\x48\x95\x01\x37\ +\xe6\xd7\xb0\x40\x70\x22\xb4\x13\x74\xbb\x0a\xc3\xa7\x33\xb9\x20\ +\xc2\x0f\x16\xa7\x45\xc3\x9c\xdd\xda\x9e\x6f\x9b\x99\x5b\x3a\x85\ +\xc2\x5f\x2f\x8c\x03\x0d\x4e\xf7\xce\xe2\xae\xad\xb9\x9a\x1e\x33\ +\xd8\x19\x19\xcd\x22\x81\x39\x37\x2c\x12\x4c\x46\x88\x17\x6d\x7d\ +\x2a\x1f\x64\xb2\xda\xd8\x49\xe8\x18\xe8\x05\x2b\x06\x46\x4b\x8d\ +\x84\x04\x19\x13\x7d\x2f\xb5\x6a\x8e\x45\xd0\x90\xbb\xbb\x84\x41\ +\xa7\x40\x6d\xcf\xb7\xe9\xe8\x62\x4b\x51\x0d\xfc\x27\xbb\x42\xd3\ +\xf7\x35\x1b\x64\xb1\x3c\xaf\x4f\xa4\xe4\x93\xe1\x0c\x96\x1f\x2c\ +\x81\xff\x9e\xd2\xbe\x10\x16\x15\x77\x22\xb1\xc8\x30\xe7\x82\x45\ +\x82\xc9\x08\x51\x79\xf0\x58\x50\xdb\x28\x55\x45\x6c\x6f\x95\x94\ +\x1c\xe0\x05\x53\x3a\x87\x4a\x8d\x76\xb1\xb7\x16\xd7\xc0\xb7\xb9\ +\xd5\xb0\x36\xaf\x12\x76\x96\x58\x4d\xe7\xbd\xa0\x15\x09\xf8\xbd\ +\x2e\x4a\x8b\x72\xca\x7b\xaf\xc2\x95\xef\xbe\x32\x2b\x1c\xaf\xe0\ +\xb4\x48\x25\x50\xe0\xdf\xaa\xa1\x71\x70\x63\x4a\xb0\x53\xde\xff\ +\xeb\xdc\x2a\x78\x62\xaf\x73\x6a\x5b\x0c\x8d\xf4\xe3\x78\x04\xa6\ +\x4d\x58\x24\x98\x8c\x50\x95\xa3\x01\x4d\xf0\xb4\xdd\xd9\xd9\xc1\ +\x68\x6d\xca\xba\x24\x03\x1b\x6a\x0b\xfa\x45\x42\x69\x5d\x93\xb4\ +\xc3\x40\xf6\xce\xdf\xe2\xc0\x67\x2f\x27\x4b\xab\x30\x8a\xd8\x0f\ +\xc2\xc1\xf6\x7f\xcd\xfb\xf7\x7f\x27\xb7\x3c\xca\xce\x08\xf0\xb4\ +\xfd\xf3\x8b\x87\x4b\xa0\xa2\xde\x3c\x55\x03\xe9\xfb\x79\x7b\x68\ +\xbc\xea\xbf\x5f\x5b\x90\x78\xfc\xf7\xc8\x44\x18\xf5\x7d\x86\xa9\ +\xbe\x57\x2d\x48\x0c\xf0\xc6\xef\x2e\xc1\x69\xab\x71\x12\x6f\xb7\ +\x6d\xd1\x3e\x0e\xc1\xce\x88\x68\xce\x6a\x60\xda\x86\x45\x82\xc9\ +\x88\xd2\x20\xd2\xfa\x78\xa5\xe3\x22\xe1\x4c\xc2\x7d\x3c\xa4\xd5\ +\x96\x7d\xc5\x45\x65\x9e\xfd\x3d\x49\x08\x38\x7e\x80\xfb\x63\x61\ +\x0d\x3c\xad\x91\xa1\x8d\xbb\x70\x4f\x97\x50\x18\xa7\x51\x29\xdf\ +\xb6\xe8\x1b\xea\x03\x1f\x5c\x94\x00\xd7\xfe\x78\x0a\x1a\x39\x90\ +\xd1\x21\x46\xc5\x04\xc0\x3f\x47\x24\x40\xb4\x13\x4a\x95\x13\x74\ +\x74\x77\xf5\xc6\x53\x50\xe6\xc4\x23\xbb\xe1\x1a\xb8\x50\x32\xc6\ +\x85\x45\x82\xc9\xa0\xc2\x2e\x6a\x39\x51\x49\x5b\xd2\xda\x4c\x58\ +\x4a\x06\xd7\xe7\x34\xaa\x55\xef\x2e\x50\x2a\xdd\x73\x03\x63\x5c\ +\xf2\x59\x64\xf0\xf3\x3c\x7e\xd6\x5f\x7e\xcd\x77\xc9\xe7\xb9\x33\ +\x0f\xf6\x08\x87\xe5\x03\x62\x40\x65\xc9\x8a\x36\x29\x40\x01\x7d\ +\xc5\x86\x2c\x38\xd5\x4e\x46\x91\x16\x0c\xd5\xb0\x0a\x24\x63\x3c\ +\x58\x24\x98\x0c\x2d\x7c\x17\xc8\x8c\x49\x2f\x0e\x96\xd7\xc1\x9a\ +\xdc\x2a\xdd\x3e\xdf\xd5\x84\x78\x7b\xc2\xbf\x46\x26\x4a\xe9\x8a\ +\xae\x82\x8a\x35\x91\x71\xd0\xca\x43\xe6\x12\x63\x8e\x42\x69\xc4\ +\x6f\x0d\x8d\x83\x1b\x92\x9d\x13\x7f\x40\x90\x2d\xfb\xf8\xf5\x59\ +\x70\xd8\xc9\xa5\xb3\xa9\xd8\x53\xa4\x8f\x73\x76\x41\x18\x63\xc0\ +\x22\xc1\x64\x68\xb7\x93\xa0\x0f\x2b\x0e\x96\x98\xa6\x94\x30\xc5\ +\x21\xac\x1e\x16\x07\x5d\x35\xae\xd6\xe7\x08\xe4\x38\x59\x56\xdf\ +\x04\xab\x8e\x6b\x5b\xb4\xc7\xdd\xe9\x1f\xee\x07\x1f\x8d\x48\xd0\ +\xbc\x82\x62\x6b\xe8\x08\x6e\xc2\xfa\x6c\xd8\x6f\x71\x7e\x91\xab\ +\x21\xbc\x8b\xc0\x9c\x07\x16\x09\x26\x23\x5a\x83\x98\x84\x23\xe5\ +\xfa\xec\x24\x64\x56\x37\x48\xc6\x44\x66\x61\x6e\xef\x08\xb8\x26\ +\x31\x48\xb7\xcf\x7f\x63\x48\x2c\x54\x35\x34\xc1\x3f\x4d\xf4\x9d\ +\xb7\x05\x09\xb6\xfb\xbb\x85\xc1\x32\x14\x4f\x5a\x78\xa0\xb4\x05\ +\xd5\x1b\x99\xb0\x21\x0b\x8e\xb9\x28\xcb\x64\x08\xa7\x3e\x32\xe7\ +\x81\x45\x82\xc9\x88\xd3\x60\x27\xe1\x58\x65\x9d\x64\xf3\xec\xcc\ +\xc1\xf2\x5c\x2c\x3b\x58\xac\xaa\xa4\xb4\x3b\x71\x43\x4a\x08\x3c\ +\xd5\xcf\x39\xe9\x8e\x72\x78\x77\x58\x3c\x34\x34\xdb\xcc\xb9\xcc\ +\x4a\x34\x3e\x33\x54\x1c\x69\x62\xbc\x73\x5d\x12\x29\x8b\xe1\xaa\ +\x8d\xd9\x90\xd3\x46\xc1\x32\x67\xd0\x3f\x5c\x3b\xd3\x29\xc6\x98\ +\xb0\x48\x30\x19\x1d\x35\x28\xc4\x43\x25\x7c\xc9\xee\x39\x4d\x43\ +\x57\xbb\xf3\x91\x5b\xd3\x08\xef\x9e\x30\xc7\x8a\x76\x48\xa4\x3f\ +\x4e\xce\x71\x7a\x77\x43\x82\x42\x21\x28\xe3\x21\xc8\x2b\x0f\xbf\ +\xff\x32\xbd\xbb\xe3\x72\xae\x4b\x0e\x86\x57\x2f\x88\x75\x5a\xf6\ +\x82\x9d\xaf\x72\xaa\xe0\xd6\x2d\x39\x50\xe9\xe2\xf4\x53\x57\x3e\ +\xc3\x8c\x7b\xc2\x22\xc1\x64\x50\xaa\x61\x24\x0e\x78\xc5\x2a\x4a\ +\x33\x13\x07\xca\x5c\x2b\x12\x68\x17\xc1\xda\x68\xfc\xfc\xfd\x14\ +\x14\x71\xff\x19\x95\x28\x99\x71\x89\x02\xf5\xe4\xed\xa1\x71\x10\ +\xea\xed\x29\xd5\xa7\x30\x03\xe1\x3e\x9e\xf0\xfc\xa0\x18\xb8\xa5\ +\x93\x76\x25\xb0\xdb\xe2\xc5\xc3\xa5\x30\x67\x4f\xa1\xcb\xd3\x4e\ +\xa9\xbe\x03\x07\x2d\x32\xe7\x83\x45\x82\x09\xa1\xb2\xbe\x6a\x45\ +\xc2\xfe\x32\x0a\xaa\x72\x5e\x74\x77\x6b\xc8\x79\xf2\xaf\xc7\x8d\ +\xbf\x8a\x25\xf1\xb6\x66\x74\x92\x26\x19\x28\xce\x80\x4a\x6e\xc7\ +\xf9\x7b\xc2\xe3\x7b\x8a\x0c\x5d\x35\xf3\xc6\x94\x10\x78\x61\x70\ +\x8c\xd3\xff\x0e\xe4\x96\x7a\xcf\xf6\x3c\xf8\x48\xa7\x98\x8f\x7e\ +\xa1\xbc\x8b\xc0\x9c\x1f\x16\x09\x26\x84\x44\xc2\xaf\x25\xb5\xaa\ +\xde\x63\xa7\xca\xd7\xcb\x61\xc9\x6f\xc5\x50\x6b\xf0\x5d\x84\x00\ +\x2f\x0f\xf8\x7c\x54\x12\xf4\x08\xf6\xd1\xbb\x2b\xed\x32\xb3\x67\ +\x04\xf6\xd1\x17\x6e\xdf\xea\xfa\xad\x71\x67\x93\x8c\xcf\xc5\x4b\ +\x83\x63\xe1\xaa\x04\xe7\xc6\x1e\x10\x54\x90\xec\xc6\x9f\x4e\xc1\ +\x3e\x17\x64\x30\xb4\x45\x8f\x10\xb1\xef\x35\x46\x0c\x58\x24\x98\ +\x10\x2d\xe2\x12\x7e\x71\x91\x48\xa0\x7c\xfd\x77\x0c\x7e\x16\x4e\ +\xce\x8e\x94\x56\x77\xa1\x9b\xa4\xa3\x5d\x9d\x18\x08\x1b\xc7\xa4\ +\x48\x95\x19\xb3\x9c\xe0\x48\xe8\x6a\x7c\x3d\x3d\xe0\xe1\x1e\xe1\ +\xf0\x78\x9f\x48\xa9\x34\xb8\xb3\x79\x3f\xbd\x5c\x2a\x56\xa5\xb7\ +\xc8\xea\xc9\x22\x81\x71\x00\x16\x09\x26\xa4\x9b\x06\xab\x55\x2a\ +\x13\x7b\xb8\xa2\xce\xe9\x2b\xdf\x79\x7b\x8b\xa0\xae\xd1\xb8\x5b\ +\xdb\x36\x4f\x86\x38\xa9\xd2\xa1\x3b\x41\xf1\x28\xbf\x8e\xef\x04\ +\x53\xb6\xe5\x3a\xc5\x99\xd0\x55\x5c\x9b\x14\x0c\xcf\x0c\x88\x76\ +\x6a\xdd\x03\x3b\x95\x0d\xcd\x70\xff\x8e\x3c\xf8\x30\x5d\x8c\x00\ +\x5c\xde\x49\x60\x1c\x81\x45\x82\x09\xe9\x1d\xaa\xcd\xe0\xb0\xbd\ +\xb8\xd6\xa9\x22\x61\x57\xa9\x15\x3e\x32\x70\xea\x1d\x09\x84\x97\ +\x06\xbb\x26\x38\xce\x19\x90\x0f\xc7\xa7\x17\x27\x4a\x81\x77\x8f\ +\xed\x2d\x74\x2b\x31\x37\x38\xc2\x0f\x96\x0d\x8c\x81\x51\x2e\x32\ +\x37\xda\x50\x50\x03\x77\xa3\xa0\xca\x10\x68\xe7\xa5\x6b\x10\x8b\ +\x04\xe6\xfc\xb0\x48\x30\x21\x7d\x34\x0a\x58\xda\x5c\x58\x03\xb7\ +\x39\x71\x82\x9b\xbd\xbb\xc0\xd0\xd5\x15\xa9\x30\xcf\xd4\xae\x61\ +\x7a\x77\x43\x35\x0f\xf5\x08\x97\x8c\x8e\x68\x57\x41\xcf\x33\x76\ +\x47\xe8\x1b\xe6\x0b\xf3\xfa\x46\xc1\xf5\x49\xae\x29\x52\x55\x8b\ +\xc2\x89\x04\xd4\xab\x47\x2c\x42\x05\x7b\xd2\x11\x4b\xbc\xbf\x98\ +\x01\xb2\x8c\x58\xb0\x48\x30\x21\x64\x37\x4c\xe9\x4f\x6a\x8d\x63\ +\x36\x16\x54\x6b\xd4\xa3\xb3\xf9\x24\xab\x12\x36\xe4\x3b\xef\xfd\ +\xf5\x66\x51\x5a\xb4\x74\x0e\x6e\x14\x06\x86\xfb\xc2\xf6\xf1\x9d\ +\x60\xe9\x81\x62\x78\xe6\x60\xb1\x70\xbb\x0a\x03\xc2\xfd\x60\x4e\ +\xef\x08\xa7\xfa\x2d\x9c\xc9\x26\x14\xd1\x53\xb7\xe7\xc1\x51\x17\ +\x55\x4f\x94\x43\x4a\x00\x0f\xfd\x8c\x63\xf0\x9d\x62\x52\xfa\x84\ +\xfa\xa8\x16\x09\x34\xf8\x91\x95\x6d\xb2\xc6\x03\x8e\xb5\xa9\x19\ +\xe6\xec\x2e\xd0\xf4\x3d\x45\xe2\xb1\x3e\x91\x52\xc9\x65\xa3\x41\ +\x6e\xdf\xf3\xfa\x46\x4a\x05\x88\xa6\xfe\x92\x07\xdb\x8a\x6a\x74\ +\xed\x0f\x1d\xe7\x5c\x1a\x13\x00\x33\x7a\x45\x38\xdd\x66\xbb\x35\ +\x96\xfa\x26\x98\xbd\xab\x10\xde\x3d\x59\x26\xec\x4e\x58\x27\x0d\ +\x82\x97\x19\x73\xc0\x22\xc1\xa4\x90\xfd\xf0\xb7\x1a\xb8\x29\x7e\ +\x83\xef\x71\x4f\x97\x50\x0d\x7a\xf4\x3b\x4b\x70\x35\x2a\xd2\xd9\ +\xad\x96\x90\x40\x58\x28\x40\xb9\x65\x67\xd2\x17\x05\xe8\x4f\x97\ +\xa7\xc0\x7b\x27\xcb\x61\xde\xde\x42\xc8\xad\x71\x5d\x99\x61\x82\ +\x9c\x33\x29\xce\x83\xbc\x16\x5c\x1d\xc1\x4f\x31\x34\xd3\x77\x16\ +\x40\x41\xad\x6b\x7f\x67\xb9\xc4\xfb\xf3\xd0\xcf\x38\x06\xdf\x29\ +\x26\x65\x68\xa4\x36\x01\x5b\x14\xd9\xae\xa5\x48\x20\x2b\xe8\x15\ +\x06\xb5\x28\x5e\x80\xe2\x80\xd2\xec\xcc\xc2\x1d\xa9\x21\xf0\xa7\ +\x94\x60\x78\xfe\x70\x09\xac\x3c\x54\x2a\x65\xc4\x38\x0b\x2f\x0f\ +\xdb\xae\xc1\x6d\xa9\xa1\x70\x5d\x52\x90\x4b\xad\xb5\x09\xba\x6f\ +\x29\xad\xd1\x5d\x8e\xc8\xe2\x58\x24\x30\x0e\xc2\x77\x8a\x49\x19\ +\xa6\x51\x4e\xfe\xba\xfc\x2a\xc9\x52\x98\xe2\x1c\xd4\x42\x1b\xb3\ +\xb4\x4d\x2d\xda\x79\xb6\x16\x2c\x1d\x10\x2d\x15\x22\x72\x26\x0d\ +\xf8\xb5\x95\xe0\x44\x5c\xdd\xd0\x04\x75\x4d\xf0\x3f\x13\x2e\x9a\ +\x30\xc3\xf0\xef\x13\xa2\xc1\xdf\x48\x2e\x54\x77\xe0\xb1\xde\x91\ +\xb8\xaa\x0f\x87\xe7\x0e\x96\xc0\x6b\x47\x2d\x50\x5e\xaf\x8d\x58\ +\x08\xc2\xdf\x67\x34\x0a\x83\x3f\x24\x06\xc1\x1f\x50\x18\xe8\x51\ +\x62\xb8\x1a\xef\xd5\xa7\xf7\x17\xc3\x0b\x28\x84\xdc\xc9\x7c\x2c\ +\x5e\x03\xa3\x37\xc6\x1c\xf0\x9d\x62\x52\x12\x70\x25\x91\x14\xe0\ +\x0d\xd9\x2a\xe3\x12\x68\x42\xff\x24\xab\x02\xee\xea\xac\x7e\x37\ +\x61\x39\x4e\x22\x94\x31\x61\x24\xe8\x5c\xfc\xb9\x81\xd1\xf0\x60\ +\x77\x6d\x82\x14\xa9\xfe\xce\x81\x72\xab\x94\x45\x40\xed\x78\x65\ +\x1d\x1c\xab\xa8\xc7\xbf\x63\xc3\x79\x27\x5f\x1f\x9c\xb0\x63\x71\ +\x72\x48\x0d\xf4\x96\x6a\x65\x50\x2a\xec\xa0\x70\x3f\x18\x88\x2d\ +\xd0\xcb\xb9\x2b\x6f\x12\x29\x8b\xd2\xa2\x60\x56\xaf\x08\xa9\xc4\ +\xf6\x77\x79\x55\xb0\xb9\xa8\x46\x12\x34\x8e\x42\x5b\xe4\x43\x50\ +\xdc\x0e\x89\xf0\x87\x91\xd1\xfe\x30\x2c\xca\x1f\x9c\xdc\xed\x76\ +\xf9\x47\x7a\xb9\x94\xb9\xe0\x4a\xd7\x46\xad\x88\x12\xb4\xf4\x37\ +\x23\x1e\x2c\x12\x4c\x0c\x55\xf8\x53\x2b\x12\x08\x72\x07\x54\x2b\ +\x12\x76\xe3\x84\xb7\x70\x7f\x91\xea\xbe\x88\x84\x27\xae\xe2\x5f\ +\x19\x1c\x0b\x77\xab\x3c\x8e\xa1\xea\x96\x14\x3f\xb2\xa1\xa0\x1a\ +\xb6\x16\xd5\x2a\x2e\x51\x4d\x82\x8e\x2a\x24\x52\xdb\xd4\x2a\x33\ +\x85\xfa\x39\x18\x85\xc2\x98\xb8\x00\xb8\x22\x3e\x08\x86\x47\x39\ +\xaf\xf2\x23\xed\x66\x4c\xef\x19\x2e\x35\x5a\x78\x1f\xab\xac\x87\ +\xc3\xe5\x75\x90\x57\xdb\x20\xed\x82\xd4\x34\x34\x03\x79\x5b\x51\ +\x15\xca\x08\x1f\x0f\xc9\xa6\x99\x22\xf1\x49\xd4\x68\xb1\x5b\xa5\ +\x05\x5b\xf0\x6f\x30\x63\x57\x01\xfc\x52\xec\xbe\x82\x36\xcc\x47\ +\x8c\xef\x92\x11\x1f\x16\x09\x26\x66\x04\xae\xc6\x68\x17\x40\x2d\ +\x5b\x70\x45\xb8\xb3\xd4\x8a\xab\x52\x65\xf5\x17\xca\x71\x79\x3c\ +\xe9\xa7\x1c\x43\x1d\x33\xf8\x79\x7a\xc0\xfb\xc3\xe3\xe1\x5a\x85\ +\xf9\xf8\x94\x3e\xf7\x01\xae\x54\xbf\xca\xa9\x84\x3c\x27\x07\xfe\ +\x91\xfb\xe0\x76\x9c\xf0\xa8\x51\x0a\x23\x39\x51\x52\x2c\xc1\x94\ +\x2e\x61\xd0\xd5\x89\x95\x08\x49\x0c\x74\x0f\xf6\x96\x9a\x3b\x90\ +\x51\xd5\x00\x8f\xef\x2d\x84\x7f\x65\x56\x08\x9b\xb5\xe0\x28\xe1\ +\xec\xfe\xc8\x38\x08\x8b\x04\x13\x8f\x05\x52\x43\x00\x00\x20\x00\ +\x49\x44\x41\x54\x33\x3a\x56\xbb\xb4\xb0\x65\xbf\x15\xc3\x3f\x47\ +\x24\xc8\x7e\x1d\x0d\xb5\x77\x6e\xcb\x85\x13\x95\xe2\xe5\x92\x2b\ +\x25\x14\x07\x60\xaa\x44\x28\xb7\x9a\x5f\x31\xae\xa4\xdf\x3a\x56\ +\x26\x79\x55\x9c\xd4\xf1\xfb\xc8\xfc\xff\xf6\xce\x03\x3e\xaa\x2a\ +\xfb\xe3\x27\x6d\xd2\x7b\x27\x84\x10\x3a\xd2\xb1\x01\x82\x80\x20\ +\x60\xd9\x55\xd7\xfe\x5f\x5d\xd9\xb5\xe1\xea\x2e\xe2\x02\x22\x20\ +\xa0\x80\x28\x28\xac\xa2\x62\xd7\x15\x15\x5d\xac\xbb\xae\x0a\x82\ +\x22\x2a\x82\xd2\x42\xef\x09\x21\x84\xf4\xde\xeb\xff\x9c\xfb\x32\ +\x31\xc2\xd4\xf7\x66\xe6\xdd\x99\x39\xdf\xff\xe7\xee\xcb\xdf\x84\ +\xc9\xcd\xcc\x7b\xf7\xfe\xee\xbd\xe7\x9c\x5f\x75\x23\x3c\x7d\xb0\ +\x04\x9e\x39\x54\x0a\xe3\xf0\x1e\x99\xd6\xc7\xb5\x29\x84\xb2\x41\ +\x29\x8d\x94\x71\x43\xf1\x14\x9e\x62\x57\xae\x47\x7c\x0a\xe3\x9e\ +\xb0\x48\xf0\x62\xc8\x2a\x36\x21\xc8\xdf\x21\xe9\x5a\x1f\xe7\x54\ +\xc1\x8e\x92\x7a\x38\x3f\xc6\xbe\xdd\x84\xe9\xbb\x0a\xe1\x3f\x39\ +\xee\x5b\xfb\xff\x6c\xe8\xcc\xff\x7f\x63\x3a\xc3\xa0\x28\xdb\xdf\ +\x87\x4c\x9c\x94\x9f\x3a\x50\x22\xce\xb8\x65\x72\xbb\xa4\xd5\xf2\ +\x86\xbc\x6a\xd1\xe8\xfc\x7f\xf1\xa0\x78\x97\x95\x31\x96\x01\x0a\ +\xfc\x5c\x79\xa4\x0c\x3f\x9b\x62\x28\x75\x62\x66\x86\x1e\xb8\xc2\ +\xc8\x8a\xf1\x0c\x58\x24\x78\x39\x13\x93\x43\x61\x75\xa6\x76\x97\ +\x45\x9a\x50\x1e\xd8\x91\x07\x3f\x8c\x4f\x03\x5b\xc7\x9f\x45\xb8\ +\x3a\x7b\xee\xb0\xe7\xa4\x3b\xf6\x08\x37\xc0\x17\x28\x10\xd2\x6d\ +\x2c\x54\x43\x85\xa8\x16\xee\x2b\x86\xd5\x59\xe5\xd0\x24\x79\x64\ +\xfc\xd6\xa2\x5a\x18\xb7\x31\x1b\x6e\xec\x12\x01\xcb\x86\xc4\x43\ +\x8a\x07\xa7\xd0\xd1\x47\x41\x4e\x8d\x0b\xf7\x15\x79\x6c\xbd\x8e\ +\x60\x3f\xde\x49\x60\x6c\xc3\x73\x9f\x74\xc6\x26\xae\xec\xe4\x18\ +\x91\x40\x6c\x2f\xae\x83\x59\x19\x85\xb0\x6c\x70\xbc\xd5\x9f\x9d\ +\xb3\xa7\x48\x1c\x51\x78\x0a\xa3\x12\x42\xe0\xc3\x91\x29\x22\xd8\ +\xce\x1a\x54\xcf\x7f\xe9\xc1\x12\x51\x0f\xa2\xd6\x8e\xe8\x7e\x19\ +\x58\x9b\x5d\x01\xeb\xf3\xaa\xe1\xd9\xa1\xee\x6b\x4c\x65\x09\xda\ +\x11\x9b\x8f\xf7\xe6\xa1\x0a\xb9\x3d\x28\xb4\xe2\xea\x3a\x12\x8c\ +\xfb\xc2\x22\xc1\xcb\x99\x94\x1c\x26\xcc\x5e\x1c\x75\xd6\xfa\x4f\ +\x9c\xf8\x22\xfc\x7d\x45\x79\x5e\x53\x14\xd4\x37\xc3\x5d\xdb\xf2\ +\xe0\xcb\x5c\xcf\x39\x62\xf8\x3f\x9c\x2c\x5f\xbb\x28\x19\x6c\x39\ +\xe6\xfd\xb6\xa0\x06\xee\xf9\x39\x0f\xb2\xaa\xdc\x77\x85\x4a\x45\ +\x91\x26\x6f\x3d\x03\x1b\xf2\x6b\xe0\xe5\x0b\x13\x45\x2d\x06\x77\ +\x67\x7d\x5e\x8d\xa8\x0e\xb9\xb3\xa4\x4e\xef\xae\xb8\x04\x0f\xf8\ +\xc8\x18\x17\xc1\x22\xc1\xcb\x09\xf3\xf7\x81\xcb\x93\x42\xe0\xf3\ +\xd3\x8e\x9b\xb4\x1f\xdf\x57\x24\x72\xe0\xa9\x04\x31\xe5\xb3\xd3\ +\x78\x44\xa9\x6e\x14\xad\xbf\xf2\x48\x29\x94\x79\xc8\xf9\x2e\xd5\ +\x40\x78\x14\xff\x46\x73\x82\xa8\x23\xe4\x47\x31\x63\x57\x21\xbc\ +\x74\xac\xcc\xed\x23\xe3\x8d\xbc\x93\x59\x0e\x47\x2a\x1a\x44\x90\ +\x66\x62\x90\x7b\x46\xcb\x53\x16\xc9\x63\x7b\x8b\x7e\x93\x12\xea\ +\x0d\xf8\x02\xab\x04\xc6\x36\x58\x24\x30\x70\x73\x97\x08\x87\x8a\ +\x04\xc2\x18\xf0\x46\x39\xf8\xb4\xb3\xe9\x49\xe9\x8d\x04\xed\xbe\ +\xbc\x76\x51\x12\xdc\x92\x66\xdd\x55\xf0\x04\x0a\xa4\x9b\x7e\xcc\ +\x85\x8c\x52\xcf\x5b\xa5\x52\xda\xe4\xe8\x8d\xd9\xf0\xf5\xd8\x54\ +\x87\x1b\x7d\x39\x13\xaa\x75\xb0\x00\xc5\xc1\x37\xf9\xda\xfd\x4b\ +\xdc\x11\x1f\xd6\x08\x8c\x8d\xb8\xcf\x53\xcd\x38\x8d\x6b\x3a\x87\ +\x89\x12\xb7\x55\x8d\x8e\x3f\x1f\xa7\x1c\x7c\xcf\xd8\x37\xf8\x95\ +\x4e\x38\x19\xae\xbd\x24\x05\x2e\xb2\xa1\xb4\xf5\x3a\x14\x4a\x7f\ +\xdc\x72\xc6\xa9\xbe\x05\x7a\x73\xbc\xb2\x01\xc6\xa2\x50\xd8\x32\ +\x21\x0d\x12\x24\xaf\xe4\x47\x85\xa9\x48\x1c\x38\xc2\xdc\xcc\x9d\ +\x11\x81\xb2\x1c\x97\xc0\xd8\x00\x8b\x04\x46\xa4\x43\xdd\xd4\x25\ +\x02\xde\x38\x5e\xa6\x77\x57\xa4\x87\x52\x01\xd7\x8e\x4c\x81\x24\ +\x1b\xb6\xd7\x5f\x3d\x5e\x2e\x4c\x7f\x64\xcf\x5c\x70\x04\x94\x05\ +\x30\x75\x47\x01\xac\x19\x91\xac\x77\x57\x2c\x72\xf5\x77\x39\x50\ +\x52\xef\xb9\x82\xcd\x56\x1a\x3d\xe4\xc8\x8b\x71\x3e\x2c\x12\x18\ +\x01\x95\x0e\x66\x91\x60\x99\xbb\x7b\x44\xc1\xb3\x43\x13\x6d\x0a\ +\x50\x5c\xbc\xbf\x58\xac\x58\xbd\x89\x0f\xb3\x2b\xe0\xbe\x9e\x51\ +\x52\xd7\x52\xa8\x70\xc2\x6e\x99\x3b\xc2\x6f\x03\x63\x2b\x2c\x12\ +\x18\xc1\x85\x31\x41\xc2\x3e\xfa\x67\x37\xae\x47\xef\x2c\x82\xfd\ +\x7d\xe1\x85\x0b\x12\xe1\x76\x1b\x53\xfe\x96\x1c\x28\xf1\x3a\x81\ +\x60\x64\xd6\xee\x42\xd8\x72\x79\x17\xbd\xbb\x61\x92\xea\xa6\x56\ +\xaf\xd8\xd5\xb1\x05\xc5\x58\x4b\xee\xa3\x21\x46\x0e\x58\x24\x30\ +\xed\x3c\xd8\x3b\x1a\xfe\x6f\x0b\x8b\x84\x8e\xf4\x8a\x30\x88\x72\ +\xd3\x54\x9d\xd2\x16\x9e\x3d\x5c\x0a\xf3\xf6\x14\x3a\xb9\x57\xf2\ +\x42\xa6\x47\x14\x87\x31\x31\x29\x54\xef\xae\x9c\x43\xb9\x83\x2c\ +\xaa\x3d\x81\x6a\x89\x2a\x7b\x32\x72\xc3\x22\x81\x69\xe7\x86\x2e\ +\xe1\xf0\xe8\x5e\x83\x08\x44\x63\x00\xfe\xd8\x35\x12\x5e\xbc\x30\ +\x11\x42\x6c\x0c\xf0\xfa\xe8\x54\x15\xcc\xdc\xed\xbd\x02\xc1\xc8\ +\x8a\x43\xa5\x52\x8a\x84\x32\xde\x63\x6f\x87\x76\x55\x18\xc6\x16\ +\x58\x24\x30\xed\xd0\x54\x38\xa7\x5f\x2c\xfc\x65\xeb\x19\xbd\xbb\ +\xa2\x2b\x94\xe9\x41\xb1\x07\x7f\x4a\xb7\xbd\xa2\x20\xf9\x56\x50\ +\x81\xa1\x16\x0e\x08\x83\x6f\xf2\x6b\xe0\x68\x65\x23\xf4\x94\xcc\ +\xdd\xb1\xbc\x81\x45\x82\x11\xde\x55\x61\x6c\x85\x45\x02\xf3\x1b\ +\x6e\xeb\x1a\x21\x1c\x00\x0f\x94\x7b\x76\x59\x5a\x73\x50\x5c\xc6\ +\xdb\xc3\x93\xa1\xbb\x1d\x16\xc9\xe5\xb8\x42\xbd\x75\x4b\xae\x54\ +\xe6\x4c\x7a\x42\xc5\xa2\xde\xc9\x2a\x87\xc7\x06\xc4\xe9\xdd\x95\ +\xdf\x50\xc6\x13\x63\x3b\x15\x2c\x98\x18\x1b\x61\x91\xc0\xfc\x06\ +\xda\x4d\x58\x3a\x24\x1e\xae\xde\x94\xa3\x77\x57\x5c\x4a\x80\xaf\ +\x0f\xcc\x3a\x2f\x16\xe6\xf6\x8b\xb5\xbb\x64\x2d\x95\x99\xd6\xd3\ +\xda\x59\x46\x3e\xc8\xae\x94\x4e\x24\x78\x9a\x93\xa3\x16\x4a\x59\ +\x24\x30\x36\xc2\x22\x81\x39\x07\x3a\x4f\xbe\xa6\x73\x38\x7c\x96\ +\x53\xa9\x77\x57\x5c\xc2\x80\xa8\x40\x78\x63\x58\x32\x0c\xb6\xc3\ +\xde\xd9\x08\x4d\x86\x9f\x7a\xc9\xfb\x64\x0f\x14\xd7\x72\xa0\xa2\ +\x01\xce\x8b\x30\xe8\xdd\x95\x76\xf2\x6a\x59\x24\x18\x29\x66\xc1\ +\xc4\xd8\x08\x8b\x04\xc6\x24\xcf\x9d\x9f\x00\x9b\x0a\x6a\x3c\xba\ +\x52\xa0\xc1\xcf\x07\x1e\xee\x1b\x2b\x3c\x26\xfc\x55\x14\x9f\xa3\ +\x81\x76\xda\xce\x02\xc7\x77\xcc\x43\xa0\xaa\x86\x32\x89\x84\xfc\ +\xba\x26\xbd\xbb\x20\x0d\x45\x5c\x50\x8a\xb1\x11\x16\x09\x8c\x49\ +\x3a\x05\xfb\x0b\x3b\xe0\xc9\x1e\x1a\xc4\x38\x3c\x2e\x18\x5e\xbe\ +\x28\x09\xfa\x6a\x98\xc4\xe6\x66\x14\x41\x21\x4f\x3c\x66\xd9\x94\ +\x5f\x23\xd2\x6a\x65\x21\x8f\x3f\xab\x76\x8a\xea\xf9\xbd\x60\x6c\ +\x83\x45\x02\x63\x96\x3f\x76\x8d\x10\x76\xc0\xe4\xf6\xe7\x29\xc4\ +\x06\xfa\xc1\xa2\x81\xf1\xa2\xc2\xa4\x16\x0e\x56\x34\xc0\x9b\x1e\ +\xf4\xbe\x38\x83\xad\x92\x15\xe6\xca\xaf\xe3\xd5\xb3\x91\x62\xde\ +\x49\x60\x6c\x84\x45\x02\x63\x91\x17\x2f\x48\x14\x99\x0e\x3b\x4b\ +\xdc\xdb\xc1\xd0\xd7\xc7\x07\xee\xee\x11\x09\x0b\x07\xc4\x43\xb4\ +\xc1\x86\xba\xca\x56\x98\x9d\x51\x28\xcc\xab\x18\xf3\xd0\x44\x74\ +\xb2\xba\x09\xd2\x42\xe5\x18\x66\xf2\x6a\x79\xf5\x6c\x84\x63\x12\ +\x18\x5b\x91\xe3\xe9\x65\xa4\x85\xcc\x9f\x3e\x19\x95\x02\xa3\x36\ +\x64\x43\x76\x75\xa3\xde\xdd\x51\xc5\xf8\xa4\x50\x91\xb1\x61\x6b\ +\xd5\x44\x6b\xec\x45\xd1\xf4\xbf\x5c\xef\x76\x11\xb4\x95\x7d\xf8\ +\x5e\x49\x23\x12\xf8\xb8\xa1\x9d\x42\xde\x55\x61\x6c\x44\x8e\xa7\ +\x97\x91\x1a\x8a\x4f\x58\x37\x36\x15\x2e\xdb\x98\x0d\x67\xdc\x68\ +\x35\x36\x28\x3a\x08\x16\x0d\x8c\x83\x49\xc9\x8e\xad\xfe\xf7\xcc\ +\xc1\x52\x51\x0b\x80\xb1\xce\x51\x51\xbd\x53\xff\xea\x8b\x54\x60\ +\xb0\x84\xd3\xfe\xda\x29\xe0\xe3\x06\xc6\x46\x58\x24\x30\x36\xd1\ +\x23\x2c\x00\xbe\x19\xd7\x05\xae\xd8\x74\x0a\xb2\xaa\xe4\xde\x51\ +\x38\x2f\x32\x10\xe6\xf5\x8f\x85\xeb\x53\xc3\x1d\xfe\xda\x79\xb8\ +\x02\xfb\x77\x76\x85\xc3\x5f\xd7\x53\xc9\x94\x64\xf7\xa9\xa0\xae\ +\x89\x85\x5d\x07\x6a\x9b\x5a\x44\x69\xe6\x50\x35\x69\x3d\x8c\x57\ +\xc1\x22\x81\xb1\x19\x12\x0a\x3f\x8c\x4f\x83\x3f\x7c\x7f\x5a\x4a\ +\xb7\xc8\x0b\x62\x83\x60\x46\xdf\x58\xf8\x43\xe7\x30\xa7\xfd\x8e\ +\x77\xb3\x2a\xa0\x91\x63\x11\x6c\x46\x96\x9d\x27\x5e\x39\x9f\x4b\ +\x41\x7d\x13\xa4\xfb\xcb\x55\x3a\x9b\x91\x0f\x16\x09\x8c\x5d\x24\ +\x06\xf9\xc1\xa6\x71\x5d\xe0\xe1\x8c\x02\x78\xfe\x48\x99\xee\xab\ +\x33\x0a\x48\xa4\xe3\x84\xa9\xbd\xa3\xe1\xb2\xc4\x10\xa7\xff\xbe\ +\xb7\x39\xa3\xc1\x2e\x0a\x24\x39\xfb\x96\xa5\x1f\x32\x41\xef\x49\ +\x7a\x28\x8b\x04\xc6\x32\x2c\x12\x18\xbb\x09\xf0\x05\x58\x3e\x24\ +\x01\xae\x49\x09\x87\xfb\xb7\xe7\xc1\xe1\x0a\xd7\x97\x24\x4e\x08\ +\xf2\x17\x3e\x13\x53\x7a\x46\xb9\x6c\xa0\x3b\x51\xd5\xe8\xb5\x9e\ +\x16\x6a\x91\xc5\x48\x88\xeb\x59\x9c\x0b\x0b\x27\xc6\x16\x58\x24\ +\x30\xaa\x19\x9d\x10\x0c\x19\x57\xa4\xc3\x2b\xc7\xca\xe0\xa9\x83\ +\x25\x70\xba\xc6\xb9\xe7\xcf\xe4\xce\x38\x29\x39\x0c\x6e\x4f\x8f\ +\x80\x49\x49\xa1\x76\x7b\x2c\x68\xe5\x28\xfb\x33\xd8\x8d\x2c\x96\ +\xc4\x25\x9c\xf2\x77\x0e\x85\x5c\x50\x89\xb1\x01\x16\x09\x8c\x26\ +\xfc\x70\xa2\xbe\x0f\x57\xf3\x77\x75\x8f\x12\x01\x7d\x6f\x65\x96\ +\xc3\xe6\x82\x5a\x87\x59\x26\x77\x0d\x0b\x80\xb1\x09\xa1\x70\x75\ +\x4a\x28\x4c\x4c\x0e\x85\x40\x57\x2b\x83\x0e\x64\x4a\x1e\xb0\x29\ +\x23\xb2\xc4\x6f\x94\x71\x66\xc3\x39\x70\x69\x66\xc6\x16\x58\x24\ +\x30\x0e\x81\x8e\x20\xa8\x42\x23\x35\xaa\x6c\xf7\xe5\x99\x2a\xf8\ +\x0e\xc5\x02\x05\x38\x1e\xab\x6c\xb4\x49\x34\xc4\x05\xfa\x43\xff\ +\x28\x03\x0c\x8a\x0a\x82\xa1\x31\x81\x30\x2a\x3e\x04\x52\x43\xe4\ +\xb9\x45\x73\x25\x09\xc2\x73\x27\xe4\x90\x08\x64\x13\xcd\x22\xe1\ +\x6c\x58\x24\x30\xb6\x20\xcf\x08\xcc\x78\x0c\x14\xdc\x38\x39\x3d\ +\x52\x34\xa2\x01\x57\x93\x54\x79\xef\x4c\x5d\x13\x54\x35\xb5\x40\ +\x5d\x73\xab\xa8\x56\x18\xec\xef\x0b\x61\xd8\x12\xf0\xe7\xd3\x42\ +\x02\xa4\x4f\xc7\x62\x17\x41\xfb\x09\xd0\x5e\xdc\xd2\x21\x94\xf1\ +\x71\xc3\x39\xb0\x48\x60\x6c\x81\x45\x02\xe3\x74\x0c\xbe\x3e\xd0\ +\x33\x3c\x40\x34\x77\x46\x96\x20\x3c\x77\x22\xc4\x4f\x0e\x95\x50\ +\xdb\x2c\xcb\x9e\x86\x3c\xb0\x7f\x03\x63\x0b\x2c\x12\x18\xc6\x46\ +\x2a\x79\xcb\xda\x6e\x22\x24\xd9\x4a\x68\x90\x24\x36\x42\x26\x78\ +\x27\x81\xb1\x05\x16\x09\x0c\x63\x23\x8d\x5c\xb1\xcf\x6e\xe2\x03\ +\xfd\xf4\xee\x82\xa0\x9e\x77\x12\xce\x81\x45\x02\x63\x0b\x2c\x12\ +\x18\xc6\x46\x58\x23\xd8\x4f\x62\x90\x1c\x43\x0c\x0b\xbc\x73\x61\ +\x27\x48\xc6\x16\xe4\x78\x82\x19\xc6\x0d\x08\xf4\x93\x3b\xb0\x52\ +\x46\xba\x85\xc9\x11\x87\x22\x79\x4c\xac\x2e\xf0\xf1\x19\x63\x0b\ +\x2c\x12\x18\xc6\x46\x42\xfd\xe5\x38\x5f\x77\x27\xba\x87\x1b\xf4\ +\xee\x82\xc0\xa0\x63\x7d\x0d\x59\xa1\xb4\xe4\xaa\xa6\x56\x08\x63\ +\x05\xc5\x58\x80\x45\x02\xc3\xd8\x48\xac\x41\x8e\xf3\x75\x77\xa2\ +\x87\x24\x3b\x09\x01\x2c\x12\x4c\x52\xd1\xd8\x8c\x22\x81\xa7\x01\ +\xc6\x3c\x7c\x77\x30\x8c\x8d\x24\x07\xf3\xe3\x62\x0f\x34\x31\xf7\ +\x8e\x90\x63\x27\x21\x84\x77\x81\x4c\x52\xde\xd8\x02\x9d\x82\xf5\ +\xee\x05\x23\x33\x3c\xea\x31\x8c\x8d\xa4\x4b\xb2\x2a\x76\x17\x06\ +\x44\x05\xea\x5a\x46\xbb\x23\x31\xbc\x0b\x64\x92\x0a\x8e\x4b\x60\ +\xac\xc0\x22\x81\x61\x6c\xa4\xaf\x24\xab\x62\x77\xe1\xc2\xd8\x20\ +\xbd\xbb\xd0\x4e\x52\x10\x8b\x04\x53\x94\xb3\x48\x60\xac\xc0\x22\ +\x81\x61\x6c\xa4\x7f\x64\x20\xf8\xe3\xca\xb8\x89\x0b\xf3\xd8\xc4\ +\xb0\x58\x79\xf6\xb1\x53\x43\x78\x17\xc8\x14\x95\x5c\x45\x94\xb1\ +\x02\x8b\x04\x86\xb1\x91\x20\x3f\x1f\x18\x1c\x1d\x08\xdb\x8b\xeb\ +\xf4\xee\x8a\x5b\x30\x36\x31\x44\xef\x2e\xb4\xd3\xc3\xcd\x4b\x82\ +\x3b\x0b\x59\xac\xbc\x19\x79\x61\x91\xc0\x30\x76\x40\xb6\xd5\x2c\ +\x12\xac\xd3\x2f\x32\x10\x52\x24\x0a\xf4\xec\x13\x11\x08\xbe\x3e\ +\x3e\x0e\xb3\x30\xf7\x14\x6a\x9b\xf9\xb8\x81\xb1\x8c\x3c\x4f\x31\ +\xc3\xb8\x01\x57\x76\x0a\x85\x65\x07\x8b\xf5\xee\x86\xf4\xfc\x2e\ +\x25\x4c\xef\x2e\xfc\x06\xaa\x05\x40\x06\x63\x87\x2b\x1a\xf4\xee\ +\x8a\x54\xb0\xf1\x15\x63\x0d\x16\x09\x0c\x63\x07\x23\xe3\x83\xa1\ +\x53\x88\x3f\xe4\xd6\x34\xe9\xdd\x15\xa9\xb9\xa1\x4b\xb8\xde\x5d\ +\x38\x87\x4b\xe2\x43\x58\x24\x9c\x05\x8b\x04\xc6\x1a\x2c\x12\x18\ +\xc6\x4e\x6e\xef\x1a\x09\x4f\x1d\xe0\xdd\x04\x73\xf4\x8d\x0c\x84\ +\x41\x51\x81\x7a\x77\xe3\x1c\xc6\x27\x86\xc0\x1b\xc7\xcb\xf4\xee\ +\x86\x54\xb0\xf1\x15\x63\x0d\x16\x09\x0c\x63\x27\xf7\xf4\x88\x82\ +\x67\x0e\x95\x70\x96\x83\x19\xfe\xdc\x2d\x52\xef\x2e\x98\xe4\x8a\ +\x4e\x61\x10\xe4\xe7\x0b\x75\x7c\x0e\xdf\x0e\x1b\x5f\x31\xd6\x60\ +\x91\xc0\x30\x76\xd2\x25\xc4\x1f\x6e\xee\x12\x01\xef\x66\x95\xeb\ +\xdd\x15\xe9\x08\xf6\xf7\x85\x3b\xd2\xe5\x14\x09\x14\x97\x70\x75\ +\x4a\x18\x7c\x98\x5d\xa1\x77\x57\xa4\xa1\x91\x85\x2e\x63\x05\x16\ +\x09\x0c\xa3\x82\xf9\x03\x62\x61\xed\xa9\x0a\x68\xe0\xed\xda\xdf\ +\x70\x5b\xd7\x08\x88\x31\xc8\x5b\x02\x79\x4a\x8f\x28\x16\x09\x1d\ +\x60\x91\xc0\x58\x83\x45\x02\xc3\xa8\x20\x3d\x34\x00\xa6\xf6\x8a\ +\xe1\x4c\x87\x0e\x50\xa1\xa9\x19\x7d\x63\xf4\xee\x86\x45\x46\x27\ +\x04\xc3\xb0\xb8\x60\xd8\x5a\x54\xab\x77\x57\xa4\x80\xcb\x24\x30\ +\xd6\x60\x91\xc0\x30\x2a\x99\xd7\x3f\x16\x3e\xce\xa9\x84\xe3\x95\ +\x1c\x31\x4f\x50\x40\x27\x89\x27\xd9\x79\x62\x50\x3c\x8c\xfb\xe6\ +\x14\xb4\xf2\x79\x3c\xb4\x02\xbf\x07\x8c\x65\x58\x24\x30\x8c\x4a\ +\xa8\x02\xe3\xbf\x86\x25\xc3\xd8\x8d\xd9\x5e\xbf\x6d\x1b\xea\xef\ +\x0b\x0b\x06\xc4\xea\xdd\x0d\x9b\x18\x15\x1f\x8c\x82\x26\x02\xde\ +\xce\xe4\x98\x12\x86\xb1\x06\x8b\x04\x86\xd1\xc0\xc5\xb1\x41\xb0\ +\x6c\x48\x02\x3c\xb8\x23\x5f\xef\xae\xe8\xca\x9c\x7e\xb1\xd0\x49\ +\xa2\x0a\x8b\xd6\x78\xf6\xfc\x44\xf8\xb1\xa8\xd6\xeb\x77\x81\x78\ +\x33\x85\xb1\x86\xfb\x3c\xd5\x0c\x23\x29\xf7\xf7\x8c\x82\x63\x38\ +\xd9\x3c\x7f\xa4\x54\xef\xae\xe8\xc2\xd0\x98\x20\x78\xa8\x8f\xdc\ +\xb1\x08\x67\x43\x99\x0e\x9f\x8e\x4a\x81\x4b\x37\x64\x43\x69\x83\ +\xf7\x9a\x1c\xb1\x46\x60\xac\xc1\x22\x81\x61\x1c\xc0\x8a\xa1\x09\ +\x50\xd1\xd8\xe2\x75\x5b\xd8\x21\xfe\xbe\xe2\xc8\xc5\xcf\x47\xef\ +\x9e\xd8\x4f\x9f\x08\x03\xfc\x77\x74\x67\xb8\xfa\xbb\x1c\x28\xf3\ +\x52\xa1\xe0\xeb\x86\x9f\x1b\xe3\x5a\x58\x24\x30\x8c\x83\x78\xfd\ +\xe2\x24\x71\x36\xbf\xea\xa8\xf7\xec\x28\xac\xba\x30\x51\x4c\xb6\ +\xee\x0a\x1d\x17\x7d\x33\x2e\x15\xae\xff\x3e\x17\x32\xab\xbc\xef\ +\xe8\xc1\xdf\x87\x55\x02\x63\x19\x16\x09\x0c\xe3\x40\x9e\x3b\x3f\ +\x01\xba\x85\x05\xc0\xac\x8c\x42\x68\xf6\xf0\x60\xc6\x47\xfa\xc5\ +\xc2\xff\xa5\x45\xe8\xdd\x0d\xcd\x0c\x88\x0c\x84\x6d\x13\xd2\xe0\ +\xaf\xdb\xf3\xe0\xc3\xec\x4a\xbd\xbb\xe3\x52\xfc\x58\x24\x30\x56\ +\x60\x91\xc0\x30\x0e\xe6\xc1\xde\xd1\x70\x7e\x4c\x10\xdc\xfe\xd3\ +\x19\x38\x5d\xd3\xa8\x77\x77\x9c\xc2\x83\x7d\x62\xe0\xf1\x01\x71\ +\x7a\x77\xc3\x61\x44\x1b\x7c\x61\xcd\x88\x4e\x70\x5b\xd7\x6a\x98\ +\x8d\x02\xef\x40\x79\xbd\xde\x5d\x72\x09\xfe\xac\x11\x18\x2b\xb0\ +\x48\x60\x18\x27\x40\x69\x76\x19\x57\x74\x85\x87\x76\x16\xc0\xea\ +\xac\x0a\x8f\xc9\xc9\x8f\x0b\xf4\x87\x17\x2f\x4c\x84\xeb\x3a\xcb\ +\x65\x05\xed\x28\xae\xea\x14\x2a\xec\xc0\x69\x47\xe1\xb9\x23\xa5\ +\xb0\xbd\xa4\x4e\xef\x2e\x39\x15\x03\x07\x25\x30\x56\x60\x91\xc0\ +\x30\x4e\x22\x32\xc0\x57\xc4\x29\x90\xe1\x11\x1d\x3f\x6c\x73\xe3\ +\x2a\x7f\x01\x38\x99\xdc\xdb\x23\x0a\x16\x0c\x88\x13\x7f\x97\x27\ +\x43\xd3\xe6\x8d\x5d\xc2\x45\x63\x18\x6f\x87\x45\x02\xc3\x38\x99\ +\x91\xf1\xc1\xf0\xc3\xf8\x2e\xf0\x71\x4e\x15\x3c\xb1\xbf\x18\x32\ +\x4a\xdd\x67\x75\x4a\xae\x89\x77\x74\x8b\x80\x99\x7d\x63\x85\xb1\ +\x15\xc3\x30\xde\x05\x3f\xf5\x0c\xe3\x22\xfe\xd0\x39\x4c\xb4\xcd\ +\x85\xb5\xb0\xf2\x70\x29\x7c\x9e\x5b\x25\xad\xdd\x74\xef\x08\x03\ +\xdc\xd9\x3d\x0a\x26\xa7\x47\x8a\xf3\x7a\x86\x61\xbc\x13\x16\x09\ +\x0c\xe3\x62\x2e\x8d\x0f\x16\xad\xa8\xbe\x19\x3e\xc8\xae\x84\x7f\ +\x67\x57\xc0\xb6\xe2\x3a\xdd\xb3\x21\x06\x46\x05\xc1\x55\x29\xa1\ +\x70\x43\x6a\x38\x7e\x1d\xa8\x6b\x5f\x18\x86\x91\x03\x16\x09\x0c\ +\xa3\x13\x71\x81\x7e\xa2\x5a\x23\xb5\xd2\x86\x16\xd8\x90\x57\x0d\ +\x5f\xe7\xd5\xa0\x60\xa8\x85\x43\x15\x0d\xd0\xe2\xc4\x60\x47\x5f\ +\x1f\x1f\x51\xdf\x60\x78\x5c\x30\x8c\xc0\x36\x3e\x29\xc4\xad\xca\ +\x2a\x33\x0c\xe3\x1a\x78\x54\x60\x18\x09\xa0\x2d\xfd\x8e\xc1\x72\ +\x95\x4d\x2d\xb0\xa3\xa4\x1e\x0e\x96\x63\x43\xc1\x70\xb4\xb2\x01\ +\x72\x6b\x9b\x20\xa7\xa6\x09\x2a\x1a\x6d\xab\x0e\xe8\xe7\xeb\x03\ +\xf1\x28\x44\x92\x83\xfc\x21\x3d\x2c\x40\xb4\x1e\x61\x06\xb1\x4b\ +\x30\x00\x5b\xb0\x3b\x96\x49\x64\x18\xc6\xa5\xb0\x48\x60\x18\x09\ +\x09\xf7\xf7\x85\x31\x09\xc1\xa2\x9d\x4d\x7d\x4b\x2b\x54\x36\xb6\ +\x88\x32\xd0\xd5\xcd\x2d\xd0\xdc\x0a\x40\x27\x15\x34\xe5\xd3\xc4\ +\x4f\xa5\x92\x43\xfd\x7d\x20\xc6\xe0\x07\x2c\x03\x18\x86\xd1\x02\ +\x8b\x04\x86\x71\x33\x02\x7d\x7d\x20\x30\xd0\x4f\x1c\x57\x30\x0c\ +\xc3\x38\x13\x16\x09\x0c\xc3\x30\x0c\xc3\x98\x84\x45\x02\xc3\x30\ +\x0c\xc3\x30\x26\x61\x91\xc0\x30\x0c\xc3\x30\x8c\x49\x58\x24\x30\ +\x0c\xc3\x30\x0c\x63\x12\x16\x09\x0c\xc3\x30\x0c\xc3\x98\x84\x45\ +\x02\xc3\x30\x0c\xc3\x30\x26\x61\x91\xc0\x30\x0c\xc3\x30\x8c\x49\ +\x58\x24\x30\x0c\xc3\x30\x0c\x63\x12\x16\x09\x0c\xc3\x30\x0c\xc3\ +\x98\x84\x45\x02\xc3\x30\x0c\xc3\x30\x26\x61\x91\xc0\x30\x0c\xc3\ +\x30\x8c\x49\x58\x24\x30\x0c\xc3\x30\x0c\x63\x12\x16\x09\x0c\xc3\ +\x30\x0c\xc3\x98\x84\x45\x02\xc3\x30\x0c\xc3\x30\x26\x61\x91\xc0\ +\x30\x0c\xc3\x30\x8c\x49\x58\x24\x30\x0c\xc3\x30\x0c\x63\x12\x16\ +\x09\x0c\xc3\x30\x0c\xc3\x98\x84\x45\x82\xce\xb4\xb4\x02\x1c\xaa\ +\x6c\x70\xe9\xef\xf4\xf7\xf1\x81\x10\x3f\x1f\x08\xf5\xf7\x85\x68\ +\x83\xaf\x4b\x7f\xb7\xbb\x92\x53\xd3\x04\x15\x4d\x2d\x66\xbf\x1f\ +\xe8\xeb\x03\xdd\xc3\x02\x5c\xd8\xa3\x73\xc9\xad\x6d\x82\xb2\x46\ +\xf3\x7d\xa4\xcf\xbc\x6b\xa8\xbe\x7d\xf4\x44\x32\xab\x1b\xa1\xb6\ +\xb9\xd5\xec\xf7\xcf\x8b\x30\xb8\xb0\x37\x0c\xe3\x58\x58\x24\xe8\ +\x4c\x51\x43\x33\x0c\xfa\x22\x53\xb7\xdf\x1f\x8c\x42\x21\x35\xc4\ +\x1f\x7a\x86\x19\x60\x68\x4c\x10\x5c\x18\x1b\x04\x63\x12\x42\x20\ +\x18\x27\x14\xe6\x57\xa6\xef\x2a\x80\x8f\x4e\x55\x9a\xfd\x7e\xcf\ +\x70\x03\x1c\xb8\x2a\xdd\x85\x3d\x3a\x97\x39\x7b\x8a\xe0\x9d\xcc\ +\x72\xb3\xdf\x1f\x1e\x17\x0c\x9b\xc7\x77\x71\x61\x8f\xbc\x83\xdb\ +\xb6\x9c\x81\x9f\x8b\x6b\xcd\x7e\xbf\xea\xa6\x5e\x42\x44\x32\x8c\ +\x3b\xc2\x22\xc1\xcb\xa9\xc5\xd5\xf1\x91\x8a\x06\xd1\xfe\x97\x5b\ +\x25\xfe\x5b\x90\x9f\x2f\x8c\x4f\x0a\x81\x3b\xbb\x47\xc1\x55\x9d\ +\x42\x81\x87\x37\x86\x61\x18\xef\x84\x45\x02\x73\x0e\x75\xcd\x2d\ +\xf0\xf9\xe9\x2a\xd1\xba\x85\x19\xe0\x89\x41\x71\x70\x7d\x6a\xb8\ +\xde\xdd\x62\x18\x86\x61\x5c\x0c\x8b\x04\xc6\x22\x27\xaa\x1a\xe0\ +\x96\x1f\x73\x61\x7c\x52\x28\xbc\x39\x2c\x19\x92\x82\xfc\xf4\xee\ +\x12\xc3\x30\x0c\xe3\x22\x58\x24\xb8\x01\xc3\xe2\x82\x21\x2e\x50\ +\xdb\xe4\x4c\x01\x92\x75\xcd\xad\x50\xd3\xdc\x02\x65\x0d\x2d\x70\ +\xb2\xa6\x51\x1c\x35\xd8\xca\x86\xbc\x6a\xb8\x78\x7d\x16\x7c\x31\ +\x3a\x15\xfa\x45\x72\x20\x16\xc3\x30\x8c\x37\xc0\x22\xc1\x0d\x78\ +\x7c\x60\x1c\x8c\x4d\x08\x71\xf8\xeb\x16\xd4\x37\xc3\xce\x92\x3a\ +\xd8\x98\x5f\x03\x6b\xb3\x2b\xe1\x34\x0a\x07\x4b\xe4\xd6\x34\xc1\ +\x84\x6f\x4f\xc1\x4f\x13\xd2\xa0\x4b\x08\xdf\x3a\x0c\xc3\x30\x9e\ +\x0e\x8f\xf4\x5e\x4c\x42\xa0\x1f\x4c\x4a\x0e\x15\xed\xa9\x41\xf1\ +\xf0\x4e\x56\x05\xcc\xca\x28\x84\xc2\xba\x26\xb3\xff\xa6\x00\xbf\ +\xf7\xe7\xad\x67\x60\xe3\x65\xa9\x2e\xec\x29\xc3\x30\x0c\xa3\x07\ +\x2c\x12\x18\x01\x65\x68\xfd\x29\x3d\x02\xc6\x25\x85\x88\xdd\x02\ +\xca\x76\x30\xc7\xe6\x82\x1a\xf8\x20\xbb\x12\x6e\xee\xc2\xc1\x8c\ +\x0c\xc3\x30\x9e\x0c\x8b\x04\xe6\x37\xa4\x04\xfb\xc3\xda\x91\x29\ +\x70\xfe\x57\x59\xd0\xd4\x62\xbe\x40\xcc\x53\x07\x8a\x59\x24\x30\ +\x0c\xc3\x78\x38\x2c\x12\x98\x73\xa0\x0a\x71\xd7\xa4\x84\x59\x2c\ +\x1e\xb4\xb7\xac\x1e\xb2\x6b\x9a\x38\x36\x81\x61\x18\xc6\x83\xe1\ +\x11\x9e\x31\xc9\xd8\xc4\x10\x8b\x22\x81\xd8\x57\x5e\xef\x50\x91\ +\x40\xa2\xe3\xc7\xc2\x5a\xc8\x28\xab\x83\x43\xe5\x0d\x70\xba\xb6\ +\x09\xf2\xeb\x9a\x44\xc9\x5b\x6a\x54\xb5\x2e\x36\xd0\x0f\x7a\x87\ +\x1b\x60\x70\x74\x20\x8c\x4b\x0a\x85\xd1\x09\xc1\x26\x8b\x3d\x51\ +\x79\x62\x73\x1b\x21\x01\xbe\x00\xe1\xfe\x5c\x8e\xda\x5b\x69\xc0\ +\x1b\x63\x5f\xb9\x52\x40\x8c\xb2\x7c\x0a\xeb\x9a\xa1\xb2\xa9\x05\ +\x1a\xf1\xbf\x1b\xf0\x1e\x0b\xf2\xf3\x81\xa8\x00\x3f\x48\x0b\xf5\ +\x87\xae\x61\x01\x30\x38\x2a\xc8\xad\xca\x97\x9f\xc2\xe7\xe8\x78\ +\x55\xa3\x08\x44\x2e\xaa\x6f\x86\x1a\x7c\x76\x9a\x5b\x5b\x61\x6e\ +\xbf\x58\xcd\xaf\x5d\xd5\xd4\x0a\x07\xf0\xb9\x3f\x56\xd5\x20\x4a\ +\x95\xd3\xeb\x97\x37\x2a\xef\x1d\x11\x80\xef\x5f\x24\x3e\x60\x94\ +\x8d\x45\xbb\x92\xe9\xf8\xfe\xf5\x8b\x0c\x14\xff\x8d\x71\x4f\x58\ +\x24\x30\x26\x89\x0b\xb4\x7e\x6b\x54\x34\xd8\x9e\x42\x69\x8e\xac\ +\xea\x46\x78\xeb\x44\x05\xbc\x9f\x5d\x01\xc7\xad\x78\x58\xe0\x78\ +\x04\x15\x8d\xcd\x90\x89\x03\xd4\x57\x67\xaa\xe0\xc9\x03\xc5\x90\ +\x1a\x1a\x00\x7f\xed\x19\x85\x2d\x5a\x78\x13\x18\x19\xf2\x65\x16\ +\x0e\x62\xa6\xb3\x35\x2e\x47\x71\xf1\xc5\x98\xce\x9a\xfb\xee\x69\ +\xac\xce\xaa\x80\xe5\x87\x4a\x2c\xfe\xcc\xc7\xa3\x52\x20\xdd\x89\ +\xfe\x0f\x8b\xf6\x17\x5b\x14\xa7\xff\x97\x16\x01\x33\xfa\xc6\xd8\ +\xfd\xba\xf9\x28\x04\x3e\xc0\x7b\xec\x3f\x39\x55\xb0\xb5\xb8\x0e\ +\xef\x25\xdb\xef\x5d\x5f\x1f\x1f\x18\x1a\x13\x08\xb7\x74\x89\x80\ +\xbf\x74\x8f\x74\xaa\xc0\xdc\x5e\x52\x07\xb7\xff\x74\xc6\xec\xf7\ +\x7f\x99\xd8\x15\xc2\xfc\x7f\x2b\x8b\xc9\x36\xe2\xbf\xa7\xab\x60\ +\x2d\xbe\x6f\xdf\xe4\xd5\xe0\xc4\x7d\x6e\xe0\x71\x08\xf6\x59\xad\ +\x48\xf8\xae\xa0\x56\xbc\xfe\x37\xf9\xd5\xb0\x1f\xc5\x55\x4b\xab\ +\xf9\x63\x48\x53\xf8\xe0\xfb\xd7\x2b\x3c\x00\xc6\xe0\xc2\xe3\x77\ +\x29\x61\x30\x3e\x31\x14\xb8\xea\xbb\xfb\xc0\x22\x81\x31\x49\x95\ +\x0d\x35\x14\xc2\x34\xac\x0e\xc8\x14\xe7\xb1\xbd\xc5\x42\x1c\x34\ +\x5b\x88\x7d\xb0\xc6\x29\x7c\x9d\x47\x76\x17\xc2\x3f\x0f\x95\xc2\ +\x53\x83\xe3\xe1\x8f\x5d\x23\x54\xbf\x96\xb7\x43\x55\x35\xe9\xbd\ +\xcc\xb7\x90\xdd\xf2\x04\x4e\xe2\xaf\x5e\x94\xe4\x94\xdf\x4f\x29\ +\xb9\xcb\x0e\x96\x40\x8d\x99\x7b\x2f\xd0\xcf\x17\x6e\x4d\xb3\xef\ +\xf3\x3d\x8c\xc2\x73\xd1\x3e\x45\x78\x34\xaa\xbc\xcf\x68\x52\xdc\ +\x8e\xc2\x82\xda\x93\x07\x4a\x60\xfe\x80\x58\x98\xd2\x23\x4a\xd5\ +\x6b\x59\x83\x76\xcc\x8e\x59\x10\xcb\xcd\x62\x82\xfe\x75\x86\xfd\ +\x0f\x4e\xde\x8f\x64\x14\x5a\x0c\x34\x56\x43\x75\x53\x2b\xbc\x78\ +\xb4\x14\x5e\x3a\x56\x06\xd9\xd5\x96\x53\xa3\xad\xd1\x8a\x7d\x3e\ +\x8c\xfd\xa3\xf6\xf2\xd1\x32\x48\x08\xf2\x87\xbb\x50\x6c\x4d\xed\ +\x1d\x03\x31\x6e\xb4\x43\xe3\xad\xb0\x48\x60\x4c\x42\x5b\xfe\xd6\ +\xe8\xa6\xc2\xf5\x90\x56\x3d\xb4\x5a\xa4\xc9\xc0\x9e\xd5\x9c\x35\ +\x68\x62\x9b\xbc\xf5\x0c\x7c\x86\x83\xe6\x1b\x17\x27\x3b\xec\x75\ +\xbd\x09\xda\x89\x99\xd7\x3f\x0e\xee\xdf\x9e\x67\xf6\x67\x28\x4d\ +\xf6\x91\xf3\x62\x55\x7d\xf6\xd6\x78\xda\x82\x40\x20\xee\xc6\x89\ +\xa5\xb3\x8d\xc7\x5b\x34\xd9\xce\xdb\x5b\x04\xcf\x1f\x29\xb5\x18\ +\x80\x6b\x2f\xb4\x4a\xff\xdb\xf6\x7c\x78\x0f\xdf\x87\xd5\xc3\x3b\ +\x89\x23\x09\x3d\xa0\xe3\xb4\xfb\x7e\xc9\x87\x0f\x51\x64\x3b\x9a\ +\x57\x8e\x95\xc3\x82\x7d\x45\x16\x53\xa1\xb5\x40\x69\xd4\x24\x36\ +\x9f\x3f\x52\x06\xb3\xfb\xc5\xc2\x83\xbd\xa3\x79\x67\x41\x62\x58\ +\x24\x30\xe7\x40\x6e\xc3\x1f\x66\x5b\x8e\x47\x88\x09\xf4\xb3\xdb\ +\x02\x97\xb6\x7c\x6f\xf8\xe1\x34\x6c\x2d\x32\xef\x98\xa7\x95\x4f\ +\x70\xc5\x78\xbc\xb2\x11\x57\x42\x8e\x13\x20\xde\x04\xad\xf0\x9e\ +\x3b\x52\x22\x56\x7d\xa6\xa0\x09\xf7\x89\x03\xc5\xf0\x9a\x83\x77\ +\x13\x0a\xeb\x9b\xe1\x65\x5c\xb5\x9a\x83\x6c\xcd\x67\xdb\xb8\x5d\ +\x7e\xa2\xaa\x11\xae\xfb\xfe\xb4\x38\x3b\xb7\x15\xda\x12\xa7\xb8\ +\x83\x10\x3f\x65\x65\x5b\x8b\x02\xb6\xa4\xa1\x45\xac\x82\x4d\xf1\ +\x13\xde\xc3\x17\xad\xcf\x12\x99\x40\xae\xe6\x08\xde\xdf\xd7\x6c\ +\xce\xb1\xb8\xe3\xa0\x06\x8a\x01\xa2\xa3\x8e\xef\x0b\x6a\x6c\xfa\ +\x79\x3a\x86\x49\x0a\xf6\x83\x84\x40\x7f\x11\xc7\x41\x90\x38\x2b\ +\xc6\xcf\x92\x6c\xcb\xad\x1d\x4b\xd0\xd1\xe1\xac\xdd\x05\xf0\xfe\ +\xc9\x0a\x58\x73\x49\x27\xe8\xa1\xb3\xd5\x3a\x63\x1a\x16\x09\xcc\ +\x39\xd0\x2a\xe2\x4c\xad\xe5\x55\xc4\x2d\x76\x6e\xfb\x52\xec\xc1\ +\x84\x6f\x73\x44\x3c\x81\x2d\xd0\xa0\x4d\x83\x46\x0a\xae\x1c\x83\ +\x7c\x7d\xa1\xae\xa5\x45\x0c\x3e\x74\x4c\x51\xd5\x68\x59\x00\xec\ +\xb1\x61\x17\x84\x31\x0d\xd5\xcb\x58\x34\x30\x1e\x6e\x44\x31\x67\ +\x8e\x77\x71\x15\x3d\xdb\xc1\xbb\x09\xd6\x76\x11\xfe\xd6\x2b\x1a\ +\xe2\x6d\x28\x4d\x7e\x10\xc5\xcd\xf8\x6f\x4e\x89\xd5\xaa\x25\xc8\ +\xda\xfb\xda\xce\xe1\x30\x32\x21\x18\xfa\x47\x06\x8a\x20\xbb\xb3\ +\x57\xb3\x74\x9b\xd1\x71\xc5\xb6\xe2\x5a\xf8\x2c\xa7\x0a\xd6\xe7\ +\x55\xff\xe6\x68\xac\x04\xef\xc7\xab\x36\xe5\x40\x88\xbf\xeb\x96\ +\xc1\x19\x65\xf5\x70\x13\x7e\x36\xf4\x2c\x58\x23\x22\x00\x27\xf0\ +\x20\x3f\x08\x43\x81\x15\x6e\xe5\x68\xf0\xe7\xe2\x3a\xb8\x16\x85\ +\x95\xb5\xdd\x83\x81\x51\x41\x70\x53\x5a\xb8\xa8\x00\x3b\x30\x2a\ +\xb0\x5d\x1c\x9c\x0d\x95\x80\xdf\x55\x5a\x2f\xca\xb9\xaf\x41\x11\ +\x70\xd4\x82\xa0\xd9\x5d\x5a\x07\xc3\xd6\x9f\x84\x8f\x50\x70\x51\ +\x20\x32\x23\x17\x2c\x12\x98\xdf\x40\xc7\x00\xd4\x2c\x61\xc0\x81\ +\xe1\xef\x38\x68\xdb\x4a\x29\xae\xc8\xae\xdc\x64\x9b\x40\xa0\x40\ +\xc4\x07\x7a\x46\xc3\x6d\xe9\x11\xa2\x22\xa4\x29\x8e\xe1\x4a\xf1\ +\x87\xc2\x1a\xf8\xe4\x54\x15\xac\x3b\x6b\xe0\x66\xb4\x73\x6d\xe7\ +\x30\x18\x1e\x17\x2c\x56\xcb\xa6\x70\xf4\x6e\x02\x45\xc8\xbf\x64\ +\x61\x17\x21\xda\xe0\x07\xd3\x6d\x08\x56\xa4\xd7\xb9\xea\xbb\x1c\ +\x8b\x02\x81\x5c\x4d\x9f\x1e\x92\x00\xbf\x4b\x09\xb5\xfa\x7a\x34\ +\xaf\xf6\x8f\x34\x88\x76\x67\xb7\x48\x21\x74\xe7\xec\x29\x82\x7f\ +\x9f\xfc\x75\x8b\x9f\x1c\x53\xeb\xac\xcf\xd7\x0e\xe3\xba\xcd\xa7\ +\xc5\x0a\xfc\x6c\x48\x10\x4c\x48\x0e\x85\x31\x38\xc9\x0e\x89\x0e\ +\x82\xde\x11\x06\x9b\x33\x0a\x76\x94\xd4\xc3\xa4\x4d\xa7\xa0\xd2\ +\x82\xf8\xee\x13\x11\x08\xcb\x87\x26\xc0\xe5\x49\xb6\x95\x87\x27\ +\xf1\x30\x3c\x2e\x48\xb4\x47\xfb\xc7\x8a\x98\x90\x7f\xec\x2a\x34\ +\x5b\xfa\xbd\xbc\xa1\x19\x7e\xb7\x39\x07\xfe\x7b\x69\x67\x16\x0a\ +\x92\xc1\x22\x81\x11\x7c\x5f\x58\x0b\x0b\xf6\x16\x89\x6a\x8a\xd6\ +\x98\xda\x2b\x06\xba\xdb\xb1\x8a\xa4\x58\x01\x4b\x2b\x09\x82\x8e\ +\x2f\x1e\x1f\x10\x07\x77\x75\x8f\xb2\x7a\x3e\x49\x3b\x0c\x3d\xc2\ +\x22\x61\x72\x7a\xa4\x48\xf5\x9a\x9d\x51\x08\x1f\x5b\x49\xd7\x74\ +\x36\x34\x81\xf4\xfc\xfc\x84\xae\x7d\x28\xb2\x61\x75\x69\x2b\x4b\ +\x06\xc7\xc3\x98\x0d\xd9\x66\xbf\xef\xc8\xdd\x84\xa7\x0f\x59\xde\ +\x45\xa0\x6c\x06\x5b\x26\xbc\x7b\x7f\xc9\x13\x81\xac\xe6\x18\x85\ +\xab\xdf\x4f\x47\xa5\xe0\x84\xaa\x2e\x58\xae\x2b\x0a\xd8\x77\x87\ +\x27\xc3\x15\x38\x19\xdf\xf3\x73\x9e\xea\x40\x48\x2d\x9c\x2d\x10\ +\x06\xa1\x20\xa0\xf7\xe7\x3a\x14\x76\x94\xbe\x69\x2f\x74\x04\x78\ +\xdd\xf7\x39\x16\x05\x02\xed\xb8\xbc\x8d\x7f\x77\xb0\x86\xc0\x01\ +\x0a\x8a\xbd\x2c\x31\x14\xee\xdc\x76\x46\x64\x4a\x98\x82\x0c\xe7\ +\xc4\x71\xe4\x84\x34\xbb\xc6\x17\xc6\xb9\xb8\x5c\x24\x6c\xc1\xd5\ +\xc9\xcc\xdd\x85\x22\x1d\x47\xed\xc3\xca\x68\x83\xb6\x02\xa9\x26\ +\xc1\xfe\xf2\x7a\xb1\x5a\xfc\x22\xb7\xca\xec\x19\xf4\xd9\x50\x1a\ +\x13\x19\x4e\xd9\x0a\x4d\x26\xf4\xfa\x96\x18\x1a\x13\x24\xb6\x1a\ +\x6d\x0d\x4a\xeb\x08\x0d\x26\x1f\x5c\xd2\x09\x5e\x3f\x51\x0e\xf7\ +\x6f\xcf\xd7\x6d\x57\x81\x26\x8c\xac\x2a\x6d\x51\xe0\x32\x71\x49\ +\x5c\x30\x5c\x83\x93\xc3\x67\x39\xa6\xc5\x17\xed\x26\x2c\xde\x5f\ +\x0c\xaf\x5f\xac\x6d\x37\xa1\x18\x57\x90\x2f\x1d\x35\xbf\x8b\x90\ +\x1c\xec\x2f\x8e\x1a\xac\xf1\x49\x4e\x95\x48\x6f\xb4\xf4\x3a\x74\ +\x8f\x39\x62\xcc\xb9\xad\x6b\x84\xa8\x07\x40\xe7\xf7\xe6\x62\x16\ +\x9c\x0d\xc5\x68\xd0\x8e\x08\xc5\x90\x68\xe1\x3e\x14\x56\x96\x8e\ +\x16\x47\xa3\xb0\xa2\x78\x01\x47\x9c\xa8\x50\xcc\xc7\x47\x28\xd2\ +\xa6\xfc\x92\x0f\x6f\x1c\x37\xfd\x99\x97\xe1\xfd\x70\x07\x2e\x2a\ +\x7e\x18\xdf\x45\xfb\x2f\xf4\x20\x68\xcc\x5e\x7a\xb0\x04\x3e\xb7\ +\x32\x96\x3a\x03\x97\x8b\x04\x1a\x4c\x57\xe0\xca\x81\x26\x0f\x9a\ +\x6c\xfe\xd2\x2d\xd2\x64\x31\x1c\xe6\x57\x68\x25\x6e\x0c\xa8\x52\ +\x0b\xcd\x9d\xf5\xf8\x3f\xe5\xb8\x12\xb1\x76\xa6\x6f\x8e\x89\xb8\ +\x82\xfa\x37\x0e\xb4\xb6\x0e\x18\x4d\xad\x4a\x7c\x83\x25\xce\x47\ +\x81\xf0\xf5\x65\xa9\x9a\x73\xcf\x69\x3b\x98\x8a\x2d\x91\xf9\x14\ +\xe3\x18\x16\x0f\x8a\x83\xff\xe1\xa0\x64\x2e\x3b\xe0\xbd\x93\x15\ +\x30\xa7\x9f\xb6\xdd\x04\x8a\x45\xb0\x14\x64\x4a\xaf\x6f\xee\xdc\ +\xbb\x23\xf3\xf6\x58\xbe\xcf\x96\xe1\x84\xea\xc8\x82\x48\x54\x92\ +\xfc\x9b\xfc\x1a\xb3\x93\x9d\x33\x89\x0f\xf2\x87\x75\x63\x3b\xc3\ +\x80\xc8\x40\x4d\xaf\xb3\x3e\xaf\xc6\xec\xaa\x9e\xa0\xdd\xbd\x77\ +\x47\x38\x46\x20\x18\xa1\x97\x7a\xf1\x82\x44\xd8\x57\x56\x0f\x3f\ +\x17\x9b\x3e\xce\xda\x86\x0b\x97\x7f\x65\x56\xc0\x1d\xe9\x9c\xce\ +\x4c\x90\x4f\x0e\xa5\xb9\x5a\xda\x25\x73\x26\xba\x1d\x37\xd0\xb9\ +\xe1\x94\x9f\xf3\xc4\x2a\x82\xce\xba\x46\xc5\xf3\x39\x94\x39\xc8\ +\xa2\x59\x4f\x82\xfc\x94\xc8\xf2\x59\xe7\xc5\xd8\x25\xe8\xc8\x7e\ +\xda\xd2\xea\x3a\xca\xe0\x27\xa2\xc3\x1d\x55\x9c\x86\x56\x78\x54\ +\xb1\xf1\x35\x1d\x06\x6e\x4f\x84\x2a\x5b\xd2\x91\x8e\xb9\xf7\x53\ +\xeb\x6e\x02\xed\x22\xac\xb2\xb0\x8b\xd0\x1d\x7f\x3f\x1d\x3f\x59\ +\xe3\xdb\x82\x1a\x38\x54\x61\x3e\x93\x81\xce\xe7\x9d\xe1\x33\xb2\ +\x08\x17\x39\x1f\xa0\x50\x72\x75\x26\x0d\x6d\xfd\x6b\x15\x08\x04\ +\xa5\x21\x5a\x82\x02\x58\x13\x83\xac\x07\x8b\xda\x0b\x69\xbe\x95\ +\x28\x14\x28\x58\xd1\xdc\x4e\xcc\x42\x5c\x5c\xdc\x8e\xcf\xb3\x8a\ +\x13\x14\x8f\x81\x02\x3f\xa7\xed\x2c\xc0\x31\xcd\xb6\x6c\x13\x67\ +\xa1\x7b\x4c\x02\x45\xb6\x5e\xb6\x31\x1b\x6e\xec\x12\x21\x8a\xe1\ +\xa4\xb2\x17\x80\x34\xf8\xe3\x13\x7a\x13\x0e\xae\x0b\x06\xc4\xa9\ +\xaa\xb2\xb7\xea\x68\xa9\xc5\xef\xd3\x20\xeb\xe8\xcf\x9b\x56\x8c\ +\x9f\xe6\x54\x99\xac\x3a\xc7\xd8\xcf\x7c\xfc\xec\xd7\x58\x98\x08\ +\xb5\xec\x26\x2c\x3f\x54\x6a\x71\x82\xa5\x18\x15\x5b\x8e\xc1\x3f\ +\xb3\x70\xcc\x40\xfc\xb9\x9b\x73\x0a\x1f\x51\xb6\xc5\x4d\x38\x6e\ +\xbd\x79\xc2\x75\xa2\x94\xb6\xff\xc7\x27\xda\x16\x3c\x68\x09\xca\ +\x02\xb1\x34\xf9\x74\xc1\xe7\x9d\x76\x79\x9d\xc5\xd0\xe8\x40\x98\ +\x90\x14\x02\xeb\xce\x54\x9b\xfc\xfe\x49\x5c\x35\xff\x2f\xb7\xda\ +\xa6\x00\x53\x4f\x83\x8a\x8a\xcd\xcd\x28\x82\x7f\x65\x96\xdb\x5d\ +\xdd\xd2\x19\x48\x33\x23\xaf\xcd\xae\x10\xe7\x2d\xd3\xfb\xc4\x88\ +\x40\x1c\x2d\x41\x32\x8c\x7a\x28\xf5\x70\x70\x54\x20\x5c\x97\x1a\ +\x2e\xac\xa3\x29\x35\x4c\x0d\x54\x3f\xde\x5c\x74\x3c\x41\x55\xd7\ +\xee\xb4\x61\x95\x68\x2f\x54\xb2\xf6\xce\xee\x91\xc2\xa5\xd2\x95\ +\xa4\x87\x19\x60\xd3\xb8\x54\x97\xfe\xce\xb3\x79\x08\x57\x1d\xd6\ +\xfc\x36\xec\x25\x09\x57\x92\x0f\xf6\x8e\x81\xc5\xfb\x4d\x6f\xe7\ +\xab\xdd\x4d\xa0\x1a\x04\x2f\x5a\x10\x91\x14\xa1\x7f\x93\x8d\xab\ +\x7f\x6b\xc1\xb6\x57\x75\x72\xde\x44\x73\x7d\x97\x30\x97\x8a\x04\ +\xf2\x2b\x71\x04\xd6\x84\x15\x09\x04\x67\x0f\xc1\xb7\x75\x8d\x34\ +\x2b\x12\x88\x0f\x4f\x55\x78\x95\x48\xa0\xe3\xd9\x67\x0f\x97\x8a\ +\x1d\x1e\x53\x19\x2c\x7a\xe1\x50\x91\x40\x85\x35\x28\x98\x86\x2a\ +\xea\x51\x00\x8a\xbd\x50\x74\x2b\x6d\x33\xbd\x79\xa2\x1c\x9e\x1c\ +\x1c\xcf\x56\xc4\x6d\xd0\x19\x64\xa0\x03\xf7\xdd\x28\x0a\x9a\x72\ +\xbb\xe9\xac\x37\xce\xe0\x0f\x69\x61\xd8\x42\x02\xa0\x1f\x8a\x83\ +\x8b\x62\x82\x84\x39\x8b\x56\xac\x05\x2b\xfe\x3e\x25\xcc\xa1\x67\ +\x9d\x1d\xb9\x02\x27\x05\x57\x8b\x04\xfa\x5b\x3a\xa9\x14\x54\x8e\ +\x22\xd8\x49\x9e\x02\x94\x7e\xf8\xca\xf1\x32\xb3\x39\xf4\xb4\x9b\ +\x40\xc7\x51\xf6\x44\xa4\x93\x47\x84\xa5\xd8\x98\x45\x83\xe2\x6d\ +\x7a\x1d\x5a\x67\x1d\xb2\x10\x74\x4b\xa9\x81\x7d\xec\x2c\xfa\x65\ +\x0f\x97\xc6\x87\x80\x1f\x3e\x4f\xae\x0a\x98\x75\xc4\xb3\x49\xd0\ +\xb1\x9c\x25\xc8\x63\xc1\xd9\x8c\xb7\x92\x4e\xb9\xb9\xc0\x79\x45\ +\xd7\x64\xe3\xf3\xdc\x6a\x98\xb9\xab\xc0\x6a\x16\x98\x25\x28\x98\ +\x95\x16\xd8\xfd\x22\xb4\x1f\x45\x75\xc4\xa1\xa3\x1a\x8d\xf9\x53\ +\x7b\x47\xc3\xed\xe9\x91\x30\x7f\x6f\x11\xbc\x8a\x03\x8b\x9a\x87\ +\x87\x8c\x79\x6e\xdb\x92\x8b\x2b\x8d\x60\x58\x3e\x24\x11\xce\x8f\ +\x71\xec\x1f\xed\x6e\xbc\x3b\x22\x59\x14\x2f\x71\x27\x28\xf7\xda\ +\x12\x17\xc6\x06\x39\xed\x77\x0f\xc5\x55\x28\xed\x88\xe8\x15\x79\ +\xee\x69\xd0\xee\x0c\x65\x23\x4d\xdd\x91\x6f\xf2\xfb\xc6\xdd\x84\ +\x37\x6c\xdc\x4d\xa0\x5d\x84\x17\x2c\xec\x22\x90\x03\xe9\x04\x1b\ +\xf3\xf1\xa9\xa8\x90\xa5\x54\x44\x67\xa7\xd2\xd1\x8e\x67\xb7\xd0\ +\x00\x4d\x83\xbb\x3d\x38\x4a\x57\x1f\xb4\x10\xc3\x41\x31\x48\x03\ +\xa2\x9c\x3f\xe6\x0a\xa7\x48\x5c\x9c\x98\xab\x9d\x40\xf3\x40\x05\ +\x0a\x49\x4f\xce\x82\x23\x81\xfb\x0f\x14\x07\xeb\x2d\xec\xa8\x58\ +\x83\xc6\xba\x5b\xd2\xc2\xe1\x49\x14\xd6\xce\x58\xa8\x38\x65\xe9\ +\x43\xa6\x1d\x2b\xcf\x4f\x80\x7b\x7b\x44\xc1\x3f\x76\x16\x08\xf7\ +\x30\x35\x6c\x41\xb5\x3b\xe2\xeb\x93\x28\x3a\x22\x44\x10\x4d\x92\ +\x13\x82\x68\x18\xe7\x70\xb8\xd2\xb2\x48\x88\xb7\xc1\x65\x52\x2d\ +\x34\x70\x53\x30\xa4\x4c\x5b\x76\xee\xce\x3d\xf8\x2c\xaf\x3c\x52\ +\x6a\xb6\x14\xf0\x9a\xb6\xd8\x04\x5b\x26\xe5\x15\x16\x76\x11\x68\ +\xc0\x5b\x32\x28\xc1\xe6\x7e\x59\x4b\xd4\x89\x75\xd0\xca\xdb\x12\ +\x69\x2e\x14\x09\x8e\xa2\xc0\x42\x4d\x0d\x9a\x68\x5c\x75\xd8\x4b\ +\xc7\x99\xe6\x44\x02\x41\x75\x1c\x3c\x51\x24\x90\xf7\xc6\xe3\xfb\ +\x8a\x44\xe0\xae\x16\x6f\x91\x0b\x63\x83\x45\xe0\xff\x30\x27\x2e\ +\xba\x9c\xba\x3f\x4a\x95\xca\x28\x55\x87\x02\xc9\x1e\xde\x5d\x08\ +\x27\x6c\x2c\xc9\xdb\x11\x0a\xdc\xf8\xd7\x89\x72\x71\xd6\x3a\xeb\ +\xbc\x58\x98\xd6\x3b\x5a\x55\xd1\x10\xc6\xb5\x94\x3a\xc0\x46\x5a\ +\x0b\xa1\xb8\xfa\xad\xf0\x9c\xb2\x05\xba\xe3\xef\xa3\x04\x9a\xde\ +\xf2\x63\xae\xc9\xef\xdb\xba\x9b\x50\x6a\x65\x17\xe1\x86\xd4\x70\ +\xbb\x76\x0e\xad\x95\x1b\xf6\xf7\x71\xfe\x58\x11\xe3\x02\x21\xe2\ +\x68\x2c\x4d\x4c\xae\x9c\x93\xad\x8d\xe5\x8d\x1e\xb6\x1b\x48\x6f\ +\x3b\xed\xb0\xd3\x4e\xbb\x2d\xa5\xb5\xcd\xd1\x29\xc4\x5f\x2c\x9c\ +\x6f\x77\x81\xeb\xad\x4b\x0e\x51\xa9\xcc\xeb\x95\x9d\x42\x61\xc5\ +\xe1\x52\x78\xf2\x40\xb1\xaa\x3c\x7d\xfa\x37\x73\x33\x0a\xe1\x8d\ +\xe3\xe5\x22\x0b\x82\x5e\x93\x91\x97\xfa\x66\xcb\x0f\xb7\x2d\x56\ +\xd4\x5a\x20\xab\x5b\xc6\xb1\x50\xd5\x3c\x5a\xb9\xfc\x62\x26\xbf\ +\xdd\x96\xdd\x84\x15\x87\x4b\xcc\x56\xf7\xa3\x72\xdf\x8b\xec\x28\ +\xd4\x45\xd0\x51\x08\x15\x36\x32\x77\xe4\xe0\xec\xfb\x8c\x08\x72\ +\xc3\x45\x0b\xf9\x39\x94\x9a\x89\x1b\x2b\x73\xa1\xc0\x37\xd7\x07\ +\x23\x11\x4e\x8a\xb3\xd1\x03\x4a\xd5\xa5\x9d\xf5\xbd\x65\xb6\x1b\ +\x8f\x9d\x0d\x1d\x05\x4d\xeb\x13\x2d\x16\xcc\x21\x2e\x0a\xee\x77\ +\x59\xa4\x15\x29\xc6\x87\xfb\xc6\xc0\x1d\xe9\x91\xa2\x8c\x2e\x59\ +\xce\xaa\x39\x33\xa6\xdd\x08\x32\x9f\xa1\x12\x9f\xb4\xcd\xd2\x2f\ +\xd2\x79\x41\x49\x8c\x7a\xac\xad\xf0\xb2\x2d\x6c\x31\x6a\xa5\x0a\ +\x05\x02\x1f\x35\x38\x07\x12\xe8\x94\xb2\x6c\x0a\x5a\x9d\x52\xd0\ +\xf2\x9b\x66\x76\x13\x68\x8b\xf5\x85\x23\xe6\x33\x01\xe8\x78\x52\ +\x4d\x2a\x25\xd5\x41\xd8\x67\x66\xe0\x3d\xe5\xc4\xfb\xcc\x48\xbd\ +\x1b\x7a\x87\x50\x8a\xa3\xb9\x09\x9a\x8e\x22\xe8\x19\x0a\x73\xb2\ +\x71\x15\xbd\x6d\xc7\x2d\xd4\x51\x09\xc4\x09\x51\xef\x60\x60\x47\ +\x40\x25\xdb\x69\x27\x5d\x6b\xe9\xf8\x3f\xa0\x48\xa7\xe7\xaf\xab\ +\x8a\x74\x74\x2d\xb8\xfc\x13\xa0\xb8\x02\xda\x92\xbc\xaf\x67\x94\ +\x28\x14\xb1\x4d\xa5\x6d\x30\xc5\x39\x5c\xb0\x2e\x0b\xee\xee\x1e\ +\x05\x8f\x0d\x88\x73\x68\x35\x35\x46\x3b\x69\xa1\xfe\x90\x61\xa1\ +\x4c\xc2\x7e\x3b\x6c\x7c\xed\x65\x57\x29\xbb\x40\x3a\x0b\x2a\x7a\ +\x76\x55\xa7\x30\x51\x89\xd1\x14\xc6\xdd\x04\x53\xb6\xbf\x14\x8b\ +\x60\x4e\xbc\x45\x1a\xfc\x60\x6e\x3f\xfb\x76\x11\x8c\x0c\x8a\x0a\ +\x32\x2b\x12\xa8\xfc\x38\x1d\x71\x38\x73\x7c\xc8\xb7\xe2\x9c\x28\ +\x23\x83\xa3\x03\xf1\xf9\x34\xfd\x9c\xd0\xe2\x8d\xd2\x97\x6d\x35\ +\x73\x52\xcb\x2f\x25\x75\xc2\x20\xcb\x1c\x83\xa2\x02\xdd\xba\x98\ +\x12\xed\x66\x3e\x75\xb0\x58\xd4\x03\xa9\xb7\xf0\x77\x5a\x83\x82\ +\x48\x9f\xc1\x05\xb1\x5e\xc1\xeb\xba\xc9\xb4\x0b\x63\x82\x44\x7d\ +\x6e\x61\x14\xb3\xa7\x50\x55\x55\x41\x5a\xb9\x50\xc1\x9e\x0f\xb2\ +\x2b\x60\x5e\xff\x38\xb8\x0f\x57\x22\xee\x7c\x53\x79\x12\x64\x29\ +\x6b\xa9\x96\xfe\xa6\x7c\xe7\x55\x11\xfb\x4a\x43\xa4\x30\x63\x9d\ +\x27\x70\x35\xf3\x95\x19\xf7\xcd\xe6\xb6\xd8\x84\xb3\x77\x13\x68\ +\x17\xe1\x79\x0b\xbb\x08\x54\xcd\x33\x46\xe5\x44\x4e\xa9\x74\xef\ +\x66\x95\x9b\xfc\x1e\x4d\x78\x94\x8b\x4f\xd1\xdf\xce\x42\xcb\xf6\ +\xb1\x5e\x8c\x4f\x0c\x15\xb1\x5e\xe6\x20\x11\xe8\x6c\x91\xf0\xa9\ +\x19\x5f\x10\x23\xd6\xf2\xf8\xff\x00\x00\x20\x00\x49\x44\x41\x54\ +\x93\x92\xdd\xb7\x46\x02\x95\x95\x9e\x8b\xf3\x5a\x9e\x05\x5f\x0c\ +\x6b\x50\xd0\x2d\x2d\x80\x69\x21\xac\xe7\xbc\xa6\xfb\x5e\xce\x1f\ +\xbb\x46\x88\xc2\x3d\x14\xab\xb0\x02\x15\x97\x25\x65\x69\x0e\xf2\ +\x75\x7f\x70\x47\x3e\xbc\x72\xac\x4c\x28\x2e\x47\x54\x24\x63\xb4\ +\x41\x03\xf7\xa2\x7d\xe6\xbf\x4f\xa6\x32\x3f\xe2\x6a\x85\x8c\x84\ +\x1c\x09\x85\x22\xbc\x63\x66\xc2\x60\x1c\xc3\x79\x11\x06\x11\x30\ +\xf5\x96\x99\x49\xc6\xd4\x6e\xc2\x3f\xf1\xd9\x36\xb7\x8b\x40\x5b\ +\xdf\xb6\x98\x38\x99\x83\x72\xfa\xe9\xac\xd6\xdc\xd8\x41\x75\x57\ +\x9c\x25\x12\xc8\xb0\x4e\x4b\x00\x9a\x5e\x5c\x8d\xef\x59\x58\x80\ +\xaf\xd9\xf8\xb0\xf7\xf1\x33\xa4\xad\x6d\x47\xd6\x67\xe9\x08\x19\ +\x16\xad\xce\xac\x30\xfb\x7d\x5f\x1f\x1f\xf8\x3f\x17\x04\xe5\x39\ +\x9a\xad\xc5\x75\x30\x6d\x67\x3e\x6c\x2f\x56\xbf\x9b\x49\x95\x6e\ +\x69\xa7\x9d\x16\xbe\x51\x12\x64\x76\xe8\x2e\x12\x08\x0a\xc0\xa0\ +\x12\xac\x77\x76\x8b\x82\x99\xbb\x0b\x54\x9f\xdd\x1c\x28\xaf\x87\ +\x2b\xbe\x3d\x05\xbf\xef\x1c\x06\x4b\x07\x27\xb0\xdd\xa8\x8e\x8c\ +\xc0\xc9\x3f\x15\x07\x7f\x4b\xa6\x24\x54\x50\xe7\x92\x91\x29\x0e\ +\xfd\xbd\xe4\x05\xa2\xb7\xd7\x85\x37\x40\x2b\x1c\x32\x9e\xa9\x35\ +\x11\x18\x78\xf6\x6e\x42\x39\xed\x22\x58\xc8\x68\x58\x3c\x50\xdb\ +\x64\x44\x36\xd2\x24\x02\xcc\x89\x16\x3a\x9a\xfc\xae\xa0\x16\x46\ +\x27\x38\xde\x1f\x86\x2a\xe4\xb9\x23\x14\x6f\x40\xf1\x61\x2f\x1c\ +\x31\xdd\x7f\x12\x3e\x14\x3f\xf2\x50\x1f\xf5\xe2\xcd\x12\xcf\xe2\ +\xef\xb5\x74\x4c\x73\x0d\x8e\xe1\xee\x34\x7e\xe7\xe2\xa2\x67\x56\ +\x46\x21\x8a\xab\x4a\x4d\xf5\x59\x26\x24\x87\xc2\x33\x43\x12\x9c\ +\x5a\x00\xcc\x5e\xa4\x10\x09\x46\xe8\x1c\x9b\x6c\x7f\xe9\x81\xa6\ +\x12\xb3\x7b\xca\xd4\xa9\x31\xda\xe6\xa6\x2d\xe7\xa9\xbd\x62\x44\ +\x25\x38\x67\x07\xe0\x30\xe7\x42\xef\xf8\x94\x1e\x51\x30\x07\x1f\ +\x1c\x73\xfc\xf7\xb4\x63\x07\x6f\x0a\x82\x9a\xb7\xd7\xfc\xef\x63\ +\x1c\x07\x05\x94\xfd\x1d\x57\xff\xe6\x2a\x5b\xd2\x6e\xc2\xec\xf3\ +\x62\xa1\x67\x78\x80\x98\x48\xcb\xcd\x04\xc9\x5d\x10\x1b\xe4\x90\ +\x55\xfe\xc3\xf8\xbb\x28\x18\xda\x5c\x6a\xdf\xbd\xbf\xe4\xc1\x2f\ +\x13\xd3\x1c\x66\x26\x46\x7c\x76\xba\x4a\x73\x30\x9a\x9e\x50\x84\ +\x3c\xf9\x03\x98\xdb\x4d\x20\x07\xd7\x71\x49\x21\x22\x36\xc0\x91\ +\xec\x2c\xad\x87\x85\xfb\xcc\x57\x44\xa5\x95\x34\x89\x50\x77\x80\ +\x82\x56\xc9\xc9\x74\x99\x15\x37\x53\x6b\xf4\x08\x37\x08\xdf\x99\ +\xab\x9d\x58\x42\x5c\x2d\x24\x12\x7e\xc6\xf6\x01\xb6\x9b\x75\xee\ +\x4b\x3b\x34\x69\x6c\x9f\x94\x06\xaf\x1d\x2f\x17\xf9\xa4\xe6\xca\ +\xc1\x5a\xa2\xa1\xb9\x15\x3f\xb8\x62\x78\x1b\x1f\x82\xc5\x83\xe2\ +\xd9\x76\x54\x07\x68\x12\xa1\x62\x21\x39\x66\x22\xcc\x49\x71\xd3\ +\xe0\xbd\x75\x42\x9a\xe6\x6d\xb5\x42\x5c\xf9\xfc\x7e\x73\x8e\xd9\ +\xf4\x3a\xc6\xf1\x3c\x7c\x5e\x8c\x70\x88\x34\xb5\xdd\x6e\xdc\x4d\ +\x78\xf6\xfc\x04\x78\xce\xcc\x6a\x95\x58\x36\xd8\xf6\xc2\x49\x96\ +\xa0\xa3\x0d\x3a\xbb\x35\x67\x2a\x76\xbc\xb2\x01\x6e\xf8\x3e\x17\ +\x3e\xbb\x34\xc5\x26\xeb\x69\x6b\x90\xcd\xf2\x1d\x3f\xb9\xb7\x2d\ +\x39\x05\x91\x53\xae\xfd\x83\x66\x2a\x69\xd2\x2e\xd1\x95\x9b\x72\ +\xe0\x2b\x07\xd8\x52\x1b\x39\x50\xd1\x00\xbf\xff\x2e\xc7\x62\x20\ +\xdf\x43\x7d\x62\xa0\xaf\x44\x2b\x69\x73\x50\xed\x1e\xca\x5a\x38\ +\xa9\xc1\xc2\x99\xca\x86\xd3\x42\x96\x2a\x15\x4b\xb8\x96\xfd\x02\ +\xdb\x06\x7f\x1f\x1f\x1f\x5a\x7a\xdd\x82\x03\xf6\x0b\x78\xfd\x27\ +\xb6\xa1\xfa\xf6\x4b\x81\xde\xaf\xbb\xbb\x47\x0a\xff\x06\x4a\xab\ +\x7a\x1e\x07\x1a\x4b\xe5\x57\xcd\x41\x5b\x5a\x77\x6d\x3b\x23\x06\ +\x8f\x15\x43\x13\x61\x78\x9c\xf3\x2a\x53\x31\xbf\x85\x06\xe3\xe7\ +\x2f\x48\x84\xeb\xbe\x3f\x6d\x76\x0b\x8e\x06\xef\x6b\x37\x9f\x86\ +\xff\xe0\xe0\xad\xb6\xb2\xda\xb1\xaa\x46\xb8\x06\x05\xc2\x11\x0b\ +\x35\xfc\x19\xc7\x43\xab\x72\x1a\xe0\x28\xf7\xdb\x14\xef\x67\x57\ +\x40\x2b\xfe\x9f\xb9\x5d\x04\xaa\xbb\x30\xd2\x81\x16\xf1\x4b\x70\ +\x31\xb0\x31\xbf\xda\xec\x7d\x40\xc7\x0e\x93\x70\xd2\x5b\x33\xa2\ +\x13\x24\x07\xab\x2b\x80\x54\x21\x2a\xe5\x15\x8b\xea\x93\x32\x38\ +\xf4\x69\xe5\xfe\x9e\x51\xf0\x7d\x41\x8d\x59\x63\xb0\x02\x1c\x3f\ +\x47\x6f\xc8\x86\x95\xe7\x27\x8a\xf8\x31\x2d\xd0\xef\x98\xf2\x4b\ +\xbe\x45\x5f\x9f\x11\x78\x3f\xc8\xbe\x8b\xb0\xa7\x4c\xb1\x70\xb6\ +\x66\x2c\x66\x09\x8a\xb9\xa0\xe3\x9e\x45\x83\xe2\x20\x41\xbe\x62\ +\x5c\x87\xb0\x3d\x84\xda\xe0\x4b\xfa\x7f\xda\x8f\x1b\xf0\x3f\x7c\ +\x8f\x03\xf9\x85\xf8\xe5\x9d\xd8\x16\x62\x4b\xd4\xa7\x7f\xbf\x85\ +\x26\x8e\xa5\x83\xe3\x85\xaf\xfc\xf4\x5d\x05\xf0\xa5\x15\xe3\x20\ +\x73\xec\x28\xa9\x83\xd1\x1b\xb3\xc5\xd6\x26\x0d\x26\x6a\xdd\x0d\ +\x19\xfb\x20\x07\x3e\x3a\xd7\x7c\xe6\x60\x89\xd9\x9f\x21\xcb\xda\ +\x4b\xbe\xce\x16\x4e\x82\x17\xd9\x51\x5e\x94\x86\xe8\x57\x8f\x95\ +\xc3\x23\x19\x85\x5c\x17\x41\x27\xee\xeb\x11\x2d\xb2\x16\x32\x4d\ +\x54\x53\xa5\xdd\x84\xf7\xb2\x4c\x07\xa7\x51\x0e\x3c\x99\xb8\x39\ +\x12\xaa\xb2\xf9\xe9\xa8\xce\xe2\x39\x37\xb7\xfb\x48\xf7\xda\xc0\ +\x2f\x33\xe1\x91\xf3\x62\xe1\xee\x1e\x91\x36\x1f\x3f\xd0\x99\xf3\ +\xab\xc7\xcb\xc5\x62\xc3\x1d\x03\x15\x2d\xf1\xaf\xe1\xc9\x22\xfb\ +\x64\x63\x9e\xe9\xac\x20\xda\x9d\x9b\xbc\xf5\x8c\xc8\x44\x7b\x04\ +\x45\xe1\x28\x3b\x85\x1d\x1d\x2f\x2c\xc1\x85\x9e\xb5\x6c\x86\x41\ +\xd1\x41\xe2\xf3\x93\x70\x45\x2d\x28\xc2\xcf\x7d\xde\xde\x22\x78\ +\xe3\x44\xb9\x26\x43\xaf\x4b\xe2\x43\x70\xc1\x9a\x00\x43\xa2\xa5\ +\xf3\x24\xa2\xf4\xa3\xc7\xb1\xad\x44\x3d\xd0\xfe\x00\xfd\x66\xa6\ +\xc4\x6f\xd0\x1e\xd0\xab\x28\x16\xe8\xf8\x61\x1e\xb6\x07\xb0\x49\ +\xf1\x97\xf4\x0a\x0f\x10\xab\x4d\x8a\x35\x20\xb1\x70\x58\xc5\xaa\ +\x91\x56\xb3\x6b\xf0\x46\x27\x9b\x54\xa3\x25\xb5\x23\xb6\x1e\x19\ +\xcb\x90\xf1\x48\x5e\x6d\xb3\xd9\x34\x35\xe2\x50\x45\x3d\x8c\xc2\ +\x15\xcb\x8d\x5d\xc2\xc5\xd6\x1b\xa5\xc8\x9a\x83\x0c\x82\xe8\x2c\ +\x98\xb6\xb1\x0f\x3a\xb1\xde\x02\x63\x1d\xda\xfc\x59\x38\x30\x4e\ +\x18\xb2\xd9\x03\x1d\x45\x39\xa3\x28\x0c\xc5\x40\x7c\x3b\x2e\x15\ +\xae\xda\x94\x63\x76\x1b\x98\x56\xb2\x0f\xef\x2e\x10\xb5\xf3\x27\ +\x26\x87\x8a\xdd\x8c\xbe\x91\x81\x62\xe1\x40\x95\x08\x9b\x71\x9c\ +\xa0\x7b\x2c\xb3\xaa\x11\x32\xca\xea\xe0\x3b\x5c\x31\x6e\x2d\xaa\ +\x33\xbb\x73\x40\x85\xdd\xd4\xfa\xd3\xc8\x00\x05\x8d\xfe\xf7\xd2\ +\xce\x70\xcf\x2f\x79\xf0\x4e\xa6\xf9\x67\xf4\x6b\x14\x11\xd4\xba\ +\x86\x05\xc0\xe5\x49\xa1\x42\xd0\xa7\x87\x1a\x20\x31\xc8\x0f\x42\ +\xda\xc4\x56\x4d\x53\x8b\x28\xc6\x94\x85\xef\xdd\xce\xd2\x3a\x7c\ +\x5f\x6a\x6c\x7a\x46\xaf\xec\x14\x06\xef\x8c\x48\x76\x68\xcc\x88\ +\xa3\xa0\xe2\xb1\xb4\x93\xbd\x10\x85\x8e\xb9\x5d\x31\x5b\xa0\x40\ +\x6e\x5a\xa0\x4a\xe8\x6e\x4c\x82\xe0\x75\x6c\x8f\xb6\x9d\x2c\xfc\ +\x06\x93\xcb\x69\xfc\x41\x92\xff\xd3\x71\x52\x7d\x05\xaf\xcb\xb1\ +\x5d\xe5\xd4\x2e\xda\x01\xe5\xce\x8e\x4f\x4a\x17\x51\xb9\x6a\x3f\ +\x34\xba\x91\x69\x80\x78\x13\x1f\x08\x49\x3f\x34\x8f\xe3\xad\x61\ +\x49\x90\x12\xe2\x2f\x02\x7c\xcc\x1d\x3d\xd0\x20\xfc\xc1\xc9\x0a\ +\xd1\xc8\x34\x67\x58\x5c\x30\xf4\x08\x33\x88\xdd\xa4\x4a\xfc\xcc\ +\xa8\x7a\xde\x1e\x5c\x95\xec\xc1\x41\xc7\x92\x92\xa7\xd4\x2e\x8a\ +\x21\x52\x93\x4e\xcb\xd8\x0f\x3d\x3f\xcb\x0f\x05\xc1\xce\x12\xdb\ +\x02\x8d\x93\x70\x32\xa6\x63\x0a\x67\xd1\x3b\xdc\x20\xe2\x5c\xee\ +\xc0\xd5\xaf\x25\x77\x3d\x0a\x34\x23\xb1\xa9\x25\xf8\x90\xd2\xf4\ +\x68\x0c\x49\xfb\xec\xb8\xea\xd7\x90\x01\x12\x7b\x94\x8d\x42\x05\ +\x7b\xc8\x95\xd0\xd2\x91\x00\x09\x80\x57\x8f\x95\x61\xd3\xfe\x7b\ +\xc9\xde\x98\x62\xc6\xe8\xd8\x43\x46\xb4\x2c\x4a\x8d\x90\x85\x3b\ +\x2d\x4a\x67\xca\xb9\x28\xfd\x0e\xdb\x54\x9c\xf3\x33\xcc\xfd\x80\ +\xc5\x3d\x77\xfc\x87\x47\xf0\x72\x35\x0e\xea\x13\x40\x11\x0b\xfd\ +\x1c\xdb\x3f\x75\xd0\x76\x14\xad\x36\xe9\x8c\x4c\xcb\xf6\x0f\xa5\ +\xe7\xd1\x0a\x68\xd5\x51\x69\xb7\x7f\x3c\x8a\xc5\xb8\xe2\xa4\xad\ +\xca\xfb\x7e\xc9\x37\x1b\xcc\x68\x84\x56\x81\x6a\x02\x82\x68\x45\ +\xb2\xf2\x82\x44\x71\x8e\x9a\x53\xc3\x22\xc1\x55\xd0\xd1\xc1\x84\ +\x6f\x4e\xd9\xf4\xb3\x94\xf2\xe8\xec\x8c\x23\xb2\x21\xfe\xdf\xe8\ +\xce\xa2\x46\xc2\x9c\x3d\xea\x82\x9f\x2d\x11\x1f\xe4\x2f\x76\xc8\ +\xfe\x94\x1e\x21\xb6\xa1\x3d\x05\xfa\x7b\xae\xe8\x14\x2a\x02\xc6\ +\x29\xa5\x54\x4d\x1c\x98\x2d\x50\x06\x03\x8d\xdf\x94\xfa\x2e\x63\ +\xe9\xe5\x23\x95\x8d\x9a\x8e\xb7\x09\x72\x34\xbd\xa9\x8b\x62\xe1\ +\xdc\x39\x44\xba\xbf\x31\x0b\xdb\x4c\xec\xe3\x5a\x6b\x3f\x68\x53\ +\xcf\xf1\x85\xd6\xa3\x50\x18\x8c\x5f\xde\x87\x6d\x01\xb6\x18\x2d\ +\xbd\x73\x14\x34\x10\xbc\x88\x13\x02\xd5\x7c\x7f\x48\x43\x20\x09\ +\x9d\x53\x0e\x5b\x7f\x52\xe6\x40\x12\x8f\x81\x76\x82\xf6\x5f\x95\ +\x2e\x76\x14\x28\xf8\x4b\xcb\xf6\x5d\x47\x68\xcb\x97\xce\x4b\xc7\ +\xb4\xa5\x53\xb6\x80\x25\x97\x3b\xe9\xd4\xbc\xdb\x43\x2b\x50\xda\ +\xba\x5f\x67\xa5\xda\x25\x19\x44\xfd\xc9\x85\x99\x46\x7f\xee\x16\ +\x89\x03\x75\x04\xbc\x8c\x2b\xdf\x97\x8e\x99\x8e\x9d\xb0\x07\xda\ +\xe1\x9a\x82\xab\xde\x29\x3d\xa2\x3d\x36\xb5\x3a\xbe\x6d\x5c\xa5\ +\x14\x56\x72\xec\xa4\xd4\x52\x2d\x95\x03\x3b\x12\x17\xe8\x2f\x76\ +\x5f\xfe\xd6\x2b\xca\xe5\x1e\x04\xb6\x40\x81\xa9\x5a\x02\xe5\x8d\ +\x9c\x1f\x13\x24\x6b\xa0\x3c\xa9\x9e\xa5\xd8\x96\xe1\xbc\x6e\xd3\ +\xd6\x9f\xcd\xf2\xa6\x2d\x90\x61\x25\x8a\x85\xf7\xf0\xfa\x18\xb6\ +\x7b\xed\xf9\xf7\xce\x84\xf2\x78\x37\x5e\x96\xaa\x29\x25\x85\xb6\ +\xba\xdf\x3c\x51\x26\x5e\xc3\x95\x29\x29\xe4\x72\xf6\xe2\x85\x96\ +\xed\x75\xfb\x84\x7b\xd6\x0e\x07\x15\xcf\x9a\xdf\x5f\xb1\xfd\x5e\ +\x8d\x03\xd0\xea\xcc\x72\x11\xdc\x64\x6f\x11\x92\x6e\x61\x06\x11\ +\x21\x4f\x2b\x92\xb3\x8d\xbe\x2c\xa5\x42\x86\xaa\x38\xf7\xbc\x0b\ +\x85\xe8\xb8\x24\xf3\x39\xcc\x32\x54\x46\x23\x91\x3b\xc2\x42\x05\ +\xcb\x84\x20\xe7\x8a\xdf\x25\x83\xe3\xe1\xeb\xbc\x1a\xb3\x67\xf7\ +\x14\xd1\xfd\xdc\xf9\x8e\x49\x79\xb4\x07\x0a\x68\xa4\xe0\x59\x6a\ +\x3f\x17\xd7\x89\x2d\xe4\xef\x71\x61\xb0\x1b\xef\x39\x4b\xdb\xea\ +\x04\xa5\xa8\x0d\xc3\x81\x9e\xde\x57\x12\xa2\xa6\x06\x7d\x32\x33\ +\xb3\xf4\x0c\xdb\x63\x6d\xdf\x33\xdc\x60\xf1\xb5\x1c\x99\x0d\x62\ +\x0d\x5a\xfd\xd2\x51\xca\x13\xd8\x7e\x2c\xac\x85\x0d\xf8\xd9\x6e\ +\x2b\xae\x85\x8c\xb2\x7a\x9b\x77\x66\xc8\x46\x7b\x20\x8e\xcf\x17\ +\xa3\x38\x1c\x8f\xcf\x0f\xed\x24\xca\xb7\xe3\xae\x04\x41\xd3\x8e\ +\xf4\xa3\x1a\x77\x9d\x12\x83\xfc\x65\x4d\xb9\xa7\x01\x71\x0d\xb6\ +\x87\x71\x2e\x3f\x6d\xcf\x3f\xb4\x7b\x92\xc7\x5f\x40\x55\x30\x1e\ +\xc0\x01\xfd\x65\xbc\xae\xc0\x36\xce\xde\xd7\x70\x16\x34\x61\x50\ +\xb9\x51\x2d\xc5\x2d\x28\x4a\x7e\xd6\xee\x02\x78\xfd\x78\x19\x2c\ +\x75\x41\x71\x0b\x3a\xa3\xa2\x54\x4f\x6f\x84\x62\x0d\xe8\x2c\x92\ +\x1a\x05\x3b\xfd\x80\x03\xd1\xee\xd2\x3a\x38\x56\xd9\x28\xa2\xc9\ +\xe9\xf3\x23\x35\x1f\x8c\x83\x3c\x05\x94\xd1\x03\x98\x8e\xab\x0f\ +\x32\x3c\xa1\x78\x85\x2e\x66\xb6\xf0\xa8\x66\x82\x25\x91\x90\xa2\ +\x62\xeb\x4f\x94\xfa\x96\x22\xdf\xc7\x3c\xb4\x8b\x32\xc6\x09\x55\ +\x05\x6d\xa5\x7f\x64\xa0\x58\x69\x9b\x5b\xad\x4f\xc6\x55\xfd\x05\ +\x16\x02\x52\x5d\x01\x05\xdb\x29\x19\x34\x4a\x4c\x04\x05\x28\x92\ +\x23\x29\x1d\x19\x50\x51\x21\x0a\x5a\x24\x11\x19\x63\xf0\x13\xf7\ +\x89\x2d\x59\x50\x14\xf8\xe7\xa8\x67\x98\x6a\x17\xc8\x36\x1e\xd0\ +\x9c\x4e\xe2\xa4\xa3\x40\xa1\x6c\x88\x9c\x9a\x26\xf1\xbe\xd1\x98\ +\x69\x5c\x75\xd3\x31\x02\x05\x1f\xd2\x2e\x2f\xbd\x7f\xb1\x06\xf9\ +\x77\x65\xb5\x16\xef\x23\xc8\xe6\x5c\xe2\xe2\x7d\x54\x0b\xe9\x41\ +\x9c\xbb\x7f\x52\xf3\x8f\x55\xef\x04\xe0\x2f\xdc\x8b\x97\xf1\x28\ +\x16\xae\xc3\xeb\x32\x6c\xdd\xd5\xbe\x96\x23\xa1\x07\x96\xea\xc6\ +\xd3\x36\xa3\x96\x32\x99\x47\x2b\x1b\xe0\xba\xcd\x39\x52\x96\xc9\ +\xf4\x44\xe8\x88\xe7\x0f\x9d\xc3\x44\xd3\x8a\x35\xf3\x28\x77\x28\ +\xd4\xe2\x8e\x50\x3a\xaa\x39\x81\x10\x8d\x93\xc5\x13\x83\xe4\xcb\ +\x7f\x27\x53\xa9\x18\x83\x67\xed\xd4\xb9\x02\xda\x39\x8b\x8a\x74\ +\xef\xe7\xe8\x64\x75\x93\x26\x1b\x00\x23\x12\xdb\x00\xd0\x8e\xc1\ +\x1c\x6c\x6f\xe3\x7c\xad\xfa\xec\x44\xf3\x71\x01\xfe\xf2\x4f\x70\ +\x12\xa6\xca\x4c\x0f\x61\x7b\x04\x9b\x14\xa9\x02\x14\x0c\xf3\xf6\ +\xb0\x64\xf8\x6b\xcf\x68\x4d\x86\x1b\x14\x1d\x3d\x24\x3f\x4b\x2a\ +\xc3\x0d\xc6\x32\x74\xfe\x6c\x89\xd1\x3a\x59\xae\x7a\x32\xf9\x75\ +\xcd\x30\x67\x8f\xf9\x92\xd8\xb4\x65\xed\x0e\xab\x4a\xc6\xf3\xa9\ +\x69\x6e\xd5\x64\x28\x68\xe4\xbc\xc8\x40\x59\x0d\x05\x6b\x41\x49\ +\x34\x58\x82\xf3\xb3\xe6\xdc\x5c\x87\xc4\x14\x60\x47\x28\x11\x76\ +\x09\x8a\x85\xb7\xe8\x8a\xed\x76\x6c\x52\xcc\xa6\xc3\x62\x83\xe0\ +\xa7\xcb\xd3\x34\x59\x77\x52\x3d\xf8\x95\x87\x4b\x45\x61\x18\x19\ +\xac\x3b\xdd\x05\x0a\x14\x7b\xea\x80\xe9\x22\x4a\x74\x2e\x79\xe8\ +\xea\x6e\x0e\x8f\xfb\x58\x73\xb2\x52\xe4\xb5\x9b\xa3\x1f\x3e\xd8\ +\x12\x2a\x7e\xb7\x67\xea\x0e\xf3\x95\xf4\xe8\x68\xe8\x2e\xc9\xb6\ +\xd0\x19\xef\x84\x0a\x42\xcd\xc6\x79\x40\x8b\x09\x1c\xed\x8a\xcd\ +\xc7\x79\xe0\xbe\x1e\x52\xce\x03\x1f\x61\x9b\x81\x73\x72\xa6\xa3\ +\x5e\xd0\xa1\x81\x87\xd8\x31\x2a\x66\x3e\x19\xc5\xc2\x8b\xa0\x94\ +\x78\x1e\xee\xc8\xd7\xd7\x02\x05\x92\xdc\x90\x1a\x2e\xea\xc9\x53\ +\x11\x1e\x4b\xb5\xc3\xcd\x41\x95\xd6\x1e\xd8\x9e\x2f\x56\xaa\xa4\ +\x20\xc7\xf2\x8a\xd4\x22\x14\x73\x60\x29\xd5\x91\xcc\x65\xee\xec\ +\xe6\xb8\xc9\x83\x82\xe6\xc8\x0b\xc2\x12\x7f\xef\xed\x1c\x57\x3b\ +\x6f\xe6\xc3\x53\x95\x66\xcb\xfa\xd2\x59\xed\xcb\x17\x59\x0e\xcc\ +\x65\x18\x67\xf3\x4b\x49\x9d\x28\xa5\xbc\xad\xa8\x56\xf5\x6b\xf8\ +\xa1\x22\xb8\x07\x17\x88\xb4\x50\x8c\x36\x48\xb1\x06\xee\xc8\x1e\ +\x50\xe2\x0e\xbe\x75\xf4\x0b\x3b\x25\x3b\x01\x3b\x4a\x81\x12\x23\ +\x50\x2c\xd0\x8e\x02\xed\x2c\x38\xd6\x0f\x58\x25\x14\xe5\x4c\xe7\ +\xa2\xb4\xaa\xa1\x2c\x08\x6b\x65\x42\xcd\xb1\xb7\xac\x5e\xe4\x84\ +\xff\x01\x45\x07\x79\xae\xcb\x98\xca\x23\x03\x97\xc6\x87\x88\x88\ +\x76\x73\xd1\xee\x53\x77\x14\x40\x88\x9f\x2f\xdc\xaa\xd1\x05\xb0\ +\xb6\xb9\x15\x96\x1c\x28\x16\xc1\xaa\xe6\x5c\x00\x89\x81\x51\x41\ +\x30\x39\x9d\x57\xb4\x8e\x84\x9c\x37\xa9\xee\x85\x39\x66\xf5\x8d\ +\x85\xf3\x38\x06\x84\xd1\x89\xbc\xba\x66\x98\x9d\x51\x28\xd2\x38\ +\xb5\x58\x38\x53\x66\xcb\x72\x5c\x18\x9e\x9d\x45\x25\x01\x45\xa0\ +\x54\x47\x7e\x05\xe7\x5d\xa7\x14\xec\x70\x6a\x0a\x23\x76\x7a\x35\ +\x7e\x30\x1f\x83\x12\xab\x40\x31\x0b\xfa\x85\x5e\x77\xa0\x5b\x58\ +\x00\xac\x1d\xd9\x09\xbe\x2d\xa8\x11\xe6\x34\x34\xe9\xab\x81\x02\ +\x5e\xbe\xc8\xad\x86\x69\x7d\xa2\x85\xed\x6a\x88\x8c\xb9\x3d\x3a\ +\x42\x29\x54\xd7\x76\x0e\x33\x1b\x18\x44\xbb\x39\x7f\xfa\x29\x17\ +\x1f\xe0\x50\x61\xf5\x7b\xa9\x9d\xe9\x5d\x74\x0e\xfe\x56\x66\xb9\ +\xc8\x69\xb6\x76\x8c\x44\x69\x6a\x54\xa3\x5e\xc2\xed\x41\x69\x29\ +\x6d\x68\x11\xe9\x7b\xa1\x26\xce\x84\x48\x8b\x7d\x9e\x5b\x05\x7f\ +\xb3\x70\xcc\x40\x35\x11\x9c\x59\x59\x91\x61\xcc\xd1\x80\x37\xe8\ +\x8a\xc3\xa5\x22\xf6\xc0\x9c\x15\xb6\x2d\x50\x9a\x35\x2d\x04\xaf\ +\x75\x40\x40\xb5\x83\xa1\x2d\x5a\xda\xb1\x7f\x0c\xe7\x59\xf3\x36\ +\xab\x0e\xc0\xe9\x75\x0e\xda\x02\x27\xe6\xa2\x58\x78\x0d\x94\x22\ +\x0e\x37\x3a\xfb\x77\xda\x0a\x1d\x17\x6c\x9f\xd8\x15\x5e\x3d\x5e\ +\x26\x2a\x8c\xa9\x31\x6e\xa1\xc0\x17\x32\x2f\xa1\xad\x73\xb2\x5d\ +\xbd\x5d\xa3\x53\x9a\xa7\x41\x95\x2c\xb7\x14\xd5\x5a\x9c\xc4\x29\ +\x38\x94\x5a\xf7\x70\x03\x4c\x48\x52\x6a\xe9\x53\x36\x09\x95\xef\ +\xa5\x74\x2a\x4a\xaf\xa2\xb2\xcc\x05\x28\x0a\x4e\xb4\xd5\xd3\xff\ +\xbe\xa0\x16\x7e\x2a\xae\xb5\xa9\xd2\x26\x09\x84\x0f\x47\xa6\x40\ +\x7f\xf9\x56\x01\x52\xf3\xe5\x99\x2a\xf8\xf3\xd6\x3c\x48\xc6\xcf\ +\x81\x0a\xec\x18\x4b\xca\x52\x7a\x69\x66\x75\xa3\x28\x6f\x6e\x8e\ +\x48\x83\x1f\xbc\x83\xa2\x8c\x75\x33\xe3\x6a\x3e\xcd\xa9\x12\x3b\ +\xc5\x27\x34\x14\xce\xa2\xd2\xee\xb4\xf0\xa3\x5a\x2e\xf6\xd4\xb9\ +\x70\x11\xeb\xb0\x4d\xc3\xb9\xf5\xa0\x2b\x7e\x99\xcb\x8a\x21\xe1\ +\x1f\x94\x85\x97\x9b\x50\x2c\x5c\x0a\x4a\xbc\xc2\x10\x57\xfd\x6e\ +\x4b\xd0\xe7\x4f\x15\x1b\x6f\x4e\x8b\x10\x7e\x0e\xab\x8e\x96\x59\ +\xdc\xb2\x36\x07\x05\xc2\xfc\x65\xeb\x19\xf1\xef\x69\x5b\x6a\x98\ +\x1d\x6e\x86\x9e\x0c\x65\x99\x7c\x3d\x36\x15\xae\xd9\x7c\xda\xea\ +\x43\x4b\xb6\xd1\xab\xa8\x1d\x75\x9c\x30\xa6\x40\xc5\xb7\x71\xb2\ +\xa2\x82\x2e\x8c\x7d\xd0\x63\x40\x47\x45\xa7\x6b\x1a\x45\xb3\x95\ +\x20\x3f\x5f\xf8\xf7\x25\x9d\xc4\x8e\x1d\xc3\xb8\x8a\x7d\xe5\x0d\ +\x62\x67\x58\x8b\xd9\x16\x95\x52\xbe\x0d\x17\x7a\x94\x8d\x93\xe4\ +\xe4\xe2\x63\x2a\x20\x9b\x84\xe9\xd8\xc7\xff\xba\xf2\x97\xba\xbc\ +\x62\x22\xfe\x81\x9b\x51\x28\x5c\x00\x8a\x25\xf5\x22\x6c\xae\x2f\ +\xc1\x66\x02\x4a\x6d\x5c\x3e\x24\x41\x64\x2e\xd0\x8d\xf6\xb5\x19\ +\xdb\x54\x6b\xfc\x82\xab\xdb\x4b\x37\x28\x96\xd4\x54\xb3\x5b\xc6\ +\xba\xe4\xae\x86\x76\x05\x76\x4e\xea\x2a\x76\x6b\x9e\x47\x01\xa0\ +\xc5\x66\xd5\x56\xa8\xd2\x1b\x99\xaa\x3c\xd8\x3b\x06\x38\x6b\x55\ +\x1d\x6a\x3e\xa5\x58\x7c\xdf\x3f\xb8\x24\x05\x46\xeb\x58\xd4\x89\ +\xf1\x2e\xa8\x20\xd6\x02\x1c\x5b\x5e\x39\x5e\xa6\x69\x6c\xa1\x2c\ +\x1c\x5a\xe0\x59\x72\xa0\xd5\x09\xb2\xe6\x5c\x8c\xed\x9f\x38\x7f\ +\xda\x5f\x4e\x58\x23\xba\xcc\x60\x1d\x2c\xa9\xff\x8d\xd7\x47\xb1\ +\xfd\x0d\x9b\x14\x7b\xc1\x54\x68\xe7\x8b\x31\x9d\xe1\xf3\xdc\x6a\ +\x98\xb1\xab\x00\x8e\x55\xaa\xb7\xa4\xfe\x4f\x4e\x95\xb0\xa3\x9e\ +\x8e\x2d\x50\xbe\x2d\x2b\x97\x42\xe7\xda\x4f\x0f\x89\x17\xf5\x26\ +\x28\xc0\xf0\xfd\x93\x15\xaa\x2a\x62\x5a\x83\x72\x97\xef\xe9\x11\ +\x25\x4a\x14\x4b\x58\xf9\xcc\xad\xb0\x67\xbc\xa5\x00\xd5\x9b\x51\ +\x18\x2f\x1b\x9c\x20\xac\x83\x19\xc6\xd9\x90\x85\x33\xa5\x59\x3f\ +\x86\x02\xa1\x54\x83\x07\x4c\x4a\x48\x80\x30\x9f\xfb\xa3\x7c\x47\ +\xc5\xf4\x47\xbd\x85\x6d\x36\xce\x99\x05\x7a\x75\x42\xd7\x65\x2e\ +\xfe\xe1\xa4\x90\xc8\x92\xfa\x55\x50\x8a\x3f\x5c\xa9\x67\x7f\x3a\ +\x42\xe5\x98\x27\x26\xa5\x8b\x74\xc9\x27\xf6\x17\x8b\xd2\xa3\xf6\ +\x42\x93\x20\x29\x5c\x72\xa2\xa3\xe0\x17\x2a\x1b\xed\xed\x50\x8d\ +\x82\x97\x2e\x4c\x14\xb1\x0a\xff\xcb\xad\x12\x7e\xf3\x54\x17\xfe\ +\x30\x8a\x31\x35\xab\x00\x3a\x3b\xbc\x28\x26\x18\x2e\x4b\x0a\x81\ +\x2b\xf1\x33\x1b\x10\xc9\xc7\x0a\x8e\x82\x3c\x0b\x66\xf4\x8d\x85\ +\x7d\xe5\xf5\xc2\xa6\x9b\x82\xc1\x7c\xc1\x47\xc4\x26\x28\xa5\x8b\ +\x7d\xa1\x53\x88\x3f\x0c\x8c\x0c\x82\xab\x53\x42\x79\xd7\x8c\x71\ +\x19\x94\xee\x4c\x2e\x8d\x07\xca\xd5\x05\x9d\x13\x46\x0b\x67\x5a\ +\xc8\x05\xcb\x17\x3c\xf3\x3d\x28\x29\x8d\x3b\xf5\xee\x88\x14\x4f\ +\x35\xbe\x11\x87\xf1\x72\x15\x8a\x85\x2b\x40\x11\x0b\x7d\x74\xee\ +\x92\x80\xb6\xa9\xff\xd1\x27\x1a\x6e\x4f\x8f\x80\xb9\x19\x45\x22\ +\x38\xd1\x5c\x3a\x9f\x25\xc8\x70\xea\x96\x1f\x73\xe1\xd2\x04\xc5\ +\x92\x9a\xcf\xc7\x41\x3c\x94\x54\xb7\xe2\x86\x36\xe1\x54\x87\xcb\ +\x82\x03\x15\x0d\x90\x85\xef\x55\x36\x36\x0a\x52\x2c\xc1\xd5\x01\ +\xfd\x77\xaa\xa7\x4f\xce\x8d\x34\x39\x25\x04\xfa\x8b\x95\x6a\x1a\ +\x8a\x8d\x1e\x61\x06\xe8\x19\x1e\x00\xd2\x3d\xde\x1e\x42\xef\x70\ +\x83\x94\xa5\x94\x19\xef\xe5\x68\x65\xa3\x28\xa5\xfc\xf9\x69\xf5\ +\x16\xce\xc4\x8d\x5d\x22\x84\xbd\xb9\x39\xff\x17\x1d\x39\x09\x8a\ +\x09\xd3\x07\x7a\x77\xc4\x88\x54\xef\x10\xbe\x31\x5f\xa2\x50\xf8\ +\x1a\x94\xe3\x07\x3a\x86\x90\xa2\xf2\x0d\xf9\x0a\xbc\x72\x51\xa2\ +\xb0\x88\x25\x23\x10\xb2\x96\x56\x03\x59\x59\x5f\xb4\xfe\x24\xfc\ +\xa5\x5b\xa4\xf0\x51\x8f\x63\x4b\xea\x76\x48\x00\x0c\x8d\x0e\x14\ +\x8d\x61\x18\xa6\x23\x94\xdd\xb4\x70\x5f\xb1\xb0\xae\x6e\x68\x56\ +\x1f\x77\x30\x38\x3a\x48\xc4\x1d\x8c\x72\xa1\x9b\xa6\x8d\x50\x10\ +\xdc\x53\x60\x87\x85\xb3\xab\x90\x4a\x24\x10\x6d\x96\xd4\x2b\x50\ +\x2c\xac\x06\x25\xb0\x91\x02\x1c\xa5\xe8\x27\x4d\x60\x9b\xc6\xa5\ +\xc2\x07\xd9\x95\xf0\x48\x46\x21\x9c\x52\x61\x49\x4d\x5b\xea\xaf\ +\x1e\x2b\x83\xb5\xf8\x1a\x73\xfb\xc5\xc2\x03\xbd\xa2\x39\x4d\x8c\ +\x61\x18\xc6\x04\x46\x0b\xe7\x79\x7b\x8a\xa0\x40\x83\x85\x73\x7c\ +\x90\x3f\x2c\x1c\x18\x27\x16\x68\x92\x0d\xb7\x46\x0b\xe7\x59\x38\ +\xf7\xe5\xe8\xdd\x19\x53\x48\x31\xf9\x9a\x02\xdf\x30\xaa\x24\x35\ +\x05\xc5\xc2\x2a\x50\x52\x26\xc7\xe8\xdb\xa3\x5f\xb9\xb9\x4b\x38\ +\x5c\x93\x12\x06\x4b\x0f\x96\xc0\xd3\x87\x4a\xa0\x56\x45\x00\x1e\ +\x15\xa0\xa1\x33\x35\xaa\xd1\xf0\xf4\x90\x04\x98\x94\xec\x5c\x4b\ +\x6a\x86\x61\x18\x77\x82\xac\xe3\x69\xe7\x76\x57\xa9\xfa\x85\x35\ +\x1d\x53\xd2\x42\x8c\x16\x64\x11\xf2\xa5\x39\xfd\x02\x4a\xdc\xc1\ +\x16\xbd\x3b\x62\x09\x69\x45\x82\x11\x7c\x03\x33\xf0\x32\x16\xc5\ +\x02\x15\x61\xa2\x62\x4c\x5d\xf5\xed\x91\x02\x6d\x8f\xcf\xeb\xaf\ +\x58\x52\x53\xe1\x0e\xaa\x5f\xaf\xa6\xec\xe7\xe1\x8a\x06\xf8\xdd\ +\x77\x39\x70\x45\xa7\x30\x21\x16\x7a\x85\x73\x6e\x39\xc3\x30\xde\ +\xcb\xa9\x9a\x26\x4d\x63\xaa\x91\x2b\xdb\xc6\xd4\x9e\xf2\x8d\xa9\ +\xe4\x71\x44\x16\xce\x6f\x69\xb1\x70\x76\x15\xd2\x8b\x04\x23\xf8\ +\x66\xae\xc5\x1b\x86\x8a\x48\xcc\xc0\x36\x13\x9b\x14\x75\x32\x53\ +\x43\xfc\xe1\xbd\x11\xc9\xf0\xd7\xc2\x28\x4d\xaa\xf7\xcb\xdc\x2a\ +\xd8\x90\x57\x2d\xb3\xea\x65\x18\x86\x71\x1a\xe4\xc1\xb2\x4c\xc3\ +\xee\xac\x91\xde\x11\x06\x59\x77\x67\x69\x72\x78\x16\xdb\x62\x9c\ +\xcf\xd4\x19\x07\xe9\x80\xdb\x88\x04\xa2\x2d\xa0\x63\x21\x8a\x85\ +\x37\x40\x31\x8e\xfa\x23\x48\x62\x49\x4d\xa5\x84\x7f\x9e\x98\x06\ +\xaf\x6b\x38\x3f\xa3\xf2\xc3\x2b\xf0\x01\x21\x33\x12\x49\xcf\xcf\ +\x18\x86\x61\x1c\x8e\x96\x38\x2f\x23\x51\x06\x3f\x99\xe3\xbc\x3e\ +\xc3\xf6\x0f\x9c\xc3\x8e\xeb\xdd\x11\x7b\x71\x2b\x91\x60\x04\xdf\ +\xe8\xd3\x78\xf9\x13\x8a\x85\x17\x40\x89\x57\x18\xa6\x73\x97\xda\ +\x21\xeb\xe3\x9b\xba\x28\x96\xd4\x2b\x8f\xa8\x8b\xc4\x2d\x44\x81\ +\x31\xe5\xe7\x3c\x78\xa9\xad\xc4\xb3\x84\x91\xb8\x0c\xc3\x30\x9a\ +\xd9\x59\x5a\xaf\x29\x63\x8c\x20\x0b\x67\x5a\x50\xd1\xc2\x2a\xd6\ +\x20\x5d\xc6\xd8\x3e\x50\x7c\x16\x36\xe8\xdd\x11\xb5\xb8\xa5\x48\ +\x30\x82\x6f\xfc\x36\xbc\x0c\x97\xcd\x92\x9a\x4c\x89\xa8\x24\x33\ +\x95\x78\xa6\x9c\x5e\xaa\xbc\xa8\x86\xdd\xa5\x75\x70\xd9\xc6\x6c\ +\x61\x49\xbd\x74\x70\x02\xa4\x85\xba\xf5\xc7\xc5\x30\x0c\x23\x28\ +\xa8\x6f\xd6\x54\x7b\xc6\xc8\xe8\x84\x10\xb1\x90\x92\xb0\xf6\x4c\ +\x31\xb6\xc7\xb0\xbd\xe8\x2c\x0b\x67\x57\xe1\x11\xb3\x8e\xac\x96\ +\xd4\x54\x5d\xf0\xa3\x91\x29\x9a\xab\x83\xb1\x25\x35\xc3\x30\x9e\ +\x00\xb9\x36\x6b\xa9\x62\x6b\x24\x2d\x34\x40\xd6\x2a\xb6\x74\x5e\ +\xf2\x0a\xb6\x79\x38\x2f\x95\xe8\xdd\x19\x47\xe0\x11\x22\x81\xe8\ +\x60\x49\xfd\x3a\x5e\x97\x61\xbb\x5e\xe7\x2e\xb5\x73\x79\x52\x88\ +\x30\x38\xd2\x52\x67\xbc\xa3\x25\xf5\x13\x03\xe3\x65\xac\x33\xce\ +\x30\x0c\x63\x16\x2d\x7e\x38\x46\xa8\x1c\xb8\xc4\x7e\x38\x74\xa4\ +\x40\x47\x0b\xfb\xf4\xee\x88\x23\xf1\x18\x91\x60\x04\x3f\xa0\x4c\ +\xbc\xdc\x80\x62\x61\x2c\x28\xf1\x0a\x03\x75\xee\x92\x80\x16\xff\ +\xf7\xf7\x8c\x82\x5b\xd3\x22\x34\x39\x96\x91\x25\xf5\xe4\xad\x67\ +\x84\xe0\x90\xd4\xb1\x8c\x61\x18\xa6\x9d\x83\x15\x0d\x9a\x9c\x75\ +\x09\xb2\x70\x96\xd8\x59\xf7\x28\x28\x41\x89\x2e\xb5\x70\x76\x15\ +\xd2\xbd\xdb\x8e\x02\x3f\xb0\x6f\x51\x28\x0c\xc1\x2f\xef\x05\xe5\ +\x6c\x28\x5e\xe7\x2e\x09\xc8\x14\xe7\xb9\xf3\x13\x84\x53\xa1\x16\ +\xef\xf3\xad\x45\xb5\x70\xc9\xd7\xd9\x32\x7b\x9f\x33\x0c\xe3\xc5\ +\x94\x36\xb4\xc0\x63\xfb\x8a\xe0\x65\x5c\xd0\x34\x69\xb0\x70\xbe\ +\x30\x56\xb1\x70\x1e\x16\x2b\xdd\x82\xc8\x68\xe1\xfc\x2c\xce\x37\ +\xea\xb7\x47\x24\xc7\x63\x45\x02\xd1\x66\x49\xbd\x0a\xc5\x02\x95\ +\xbd\x5c\x80\xed\xaf\xd8\xa4\xa8\xac\xd1\x3f\xd2\x00\xeb\xc6\x76\ +\x86\x4f\x73\xaa\x44\xe1\x90\x13\x55\xea\x2c\xa9\x57\x67\x96\xc3\ +\x27\x39\x95\x22\x56\x61\x5a\xef\x68\x30\xc8\xb7\x05\xc7\x30\x8c\ +\x17\x41\x7a\x60\x15\x0a\x83\xc7\x51\x20\x94\xd4\xab\x8f\x3b\x20\ +\x87\x51\x49\x8f\x56\x8d\x16\xce\x73\x70\x8e\xc9\xd7\xb9\x2f\x4e\ +\xc7\xa3\x45\x82\x11\xfc\x20\xcb\xf0\xf2\x20\x4e\xaa\x2f\xe3\x75\ +\x05\xb6\x89\x3a\x77\xa9\x9d\x6b\x3b\x87\x09\x8b\xe3\x15\x87\x4b\ +\xe1\xc9\x03\xc5\x50\xd5\x68\x7f\x11\x11\xfa\x37\x73\x33\x0a\xe1\ +\x8d\xe3\x8a\x25\x35\xbd\x26\xc3\x30\x8c\xab\xd9\x98\x5f\x23\x76\ +\x48\xf7\x6b\xb0\x70\x0e\xf2\xf3\x95\x39\x48\xfb\x47\x6c\x53\x71\ +\x4e\xd9\xa1\x77\x47\x5c\x85\x57\x88\x04\x23\xf8\xc1\x1e\xc4\xcb\ +\x24\x14\x0b\xbf\xc3\xeb\xd3\xd8\x7a\xe9\xdc\x25\x01\xad\xfe\x1f\ +\xee\x1b\x03\x77\xa4\x47\xc2\x6c\x9c\xec\xa9\x98\x92\x9a\x72\xa4\ +\xb4\x1b\x71\xe3\x0f\xa7\xe1\xb2\xc4\x50\x78\x66\x68\x82\xd8\xad\ +\x60\x18\x86\x71\x36\x27\xaa\x1a\x61\x86\x86\x74\x6f\x23\x94\xee\ +\x4d\x0b\x9d\xae\xa1\x52\x6c\xf8\x76\xe4\x14\x28\x16\xce\x6b\xf4\ +\xee\x88\xab\xf1\x2a\x91\x60\x84\x02\x4c\x70\x12\xfe\x0a\xbf\x7c\ +\x10\x94\x1a\xda\x91\x3a\x77\x49\x40\x71\x05\x6f\x5c\x9c\x04\xf7\ +\xb5\x59\x52\x53\xdc\x81\x1a\x28\xce\xe1\x82\x75\x59\x70\x4f\xf7\ +\x28\x58\x30\x20\x4e\xc4\x41\x30\x0c\xc3\x38\x9a\xaa\xa6\x56\x91\ +\xce\x48\x69\x8d\xf5\xcd\xea\x4b\x29\x0f\x88\x0a\x84\xe5\x43\x13\ +\x61\x4c\x82\x14\xd9\xeb\x1d\xa1\x2a\x4f\x94\x2d\xb7\x14\xe7\x0d\ +\xf5\x15\x9f\xdc\x18\xaf\x14\x09\x04\x7e\xe0\x94\xcf\xba\x0c\xc5\ +\xc2\x5b\x78\x5d\x88\xed\x2e\x6c\x52\x44\xff\x51\xc6\xc2\xf7\xe3\ +\xbb\xc0\xbb\x59\x15\x30\x7b\x4f\xa1\xc8\x68\xb0\x17\xca\x9c\x58\ +\x75\xb4\x14\xde\x3f\x59\x01\xf3\x51\x28\x4c\xe9\x11\x25\x63\xa9\ +\x52\x86\x61\xdc\x94\x7f\x65\x56\xc0\x5c\x1c\x9f\xf2\x6a\xd5\x5b\ +\x38\xc7\x06\xfa\xc1\x63\x38\x3e\x51\xe1\x39\xc9\xc2\xa9\x48\xf1\ +\xac\xc5\x36\x13\xe7\x8a\x6c\xbd\x3b\xa3\x27\x5e\x2b\x12\x8c\xe0\ +\x0d\x50\x08\x8a\x25\xf5\x4b\xa0\xa4\x4c\x8e\xd6\xb9\x4b\xed\x50\ +\xc0\xce\x75\xa9\xe1\x22\x56\x61\xc5\xa1\x52\x51\x2b\xc1\x5e\xa8\ +\x26\xc3\x83\x3b\xf2\xe1\x95\x63\x8a\x25\x35\xd5\x6c\x60\x18\x86\ +\x51\xcb\x4f\x45\x75\xf0\xd0\xae\x7c\xd8\x5e\xac\xde\xc2\xd9\x1f\ +\x15\x01\xed\x98\xce\xeb\x1f\x07\x51\xf2\x99\xd9\xed\x04\xc5\xc2\ +\xf9\x7b\xbd\x3b\x22\x03\x5e\x2f\x12\x8c\xe0\x0d\xb1\x1b\x2f\x63\ +\x64\xb3\xa4\xa6\xc0\x9d\xc7\x51\x69\xdf\xd9\x4d\x29\xf1\x4c\xd5\ +\x17\xd5\x40\xd5\x1e\xaf\xdc\x74\x0a\x7e\xdf\x39\x4c\x94\x78\xa6\ +\x6a\x90\x0c\xc3\x30\xb6\x72\xba\xb6\x49\x98\x30\xbd\x7f\x52\x9b\ +\x85\xf3\x84\xe4\x50\x78\x06\x17\x2c\x7d\x22\xa4\x8b\x99\xa2\x4c\ +\x85\x47\xb1\xbd\xde\x96\x19\xc7\x00\x8b\x84\x73\x38\xcb\x92\xfa\ +\x61\x6c\x52\xf8\x8d\x92\x6f\xc3\x07\x97\x74\x82\xef\x0a\x6a\x45\ +\xbc\xc2\x9e\x32\x75\x2a\x9e\x02\x8b\xbe\x3a\x53\x0d\xf7\xf7\x8c\ +\x86\x47\xfb\xc7\x0a\x9f\x09\x86\x61\x18\x73\xd4\xb7\xb4\xc2\xd3\ +\x07\x4b\x60\x29\xb6\x1a\x0d\x16\xce\x3d\xc3\x0d\xb0\x14\xc5\xc1\ +\xd5\x9d\xa4\x18\x52\x3b\x42\xa9\x18\xcf\x63\x7b\x1c\xc7\xff\x0a\ +\xbd\x3b\x23\x1b\x2c\x12\x4c\xd0\xc1\x92\xfa\x4d\xbc\x3e\x89\xed\ +\x56\x90\xc4\x92\x7a\x74\x42\x30\x6c\x9f\x94\x06\x6f\x9c\x28\x87\ +\x47\xf7\x14\x09\xc7\x48\x7b\x21\x67\x4a\xb2\xa4\xa6\x98\x87\xc7\ +\xd9\x92\x9a\x61\x18\x33\x7c\x74\xaa\x52\xd4\x71\x39\xa9\xc1\xc2\ +\x39\x22\xc0\x0f\x66\xf7\x8b\x85\xa9\xbd\xa3\xc1\x5f\xbe\x81\x86\ +\x2c\x9c\xa7\xe3\x98\x7f\x4c\xef\x8e\xc8\x0a\x8b\x04\x0b\xe0\x8d\ +\x93\x83\x97\xdb\x50\x2c\xbc\x08\x4a\xbc\xc2\x85\x3a\x77\x49\x40\ +\xcf\x19\x59\x52\xdf\x98\x1a\x0e\x8b\xf6\x17\xc3\xf3\x47\x4a\xa1\ +\x51\x45\x45\xb3\x82\x36\x4b\xea\x97\xdb\x2c\xa9\x47\xb2\x25\x35\ +\xc3\x30\x48\x46\x99\x62\xe1\xbc\xb9\x40\x7d\x40\xbf\xaf\x8f\x8f\ +\x48\xeb\x5e\x34\x28\x0e\x12\x02\xa5\x88\x09\xef\xc8\x7e\x6c\x0f\ +\xe1\x18\xbf\x5e\xef\x8e\xc8\x0e\x8b\x04\x1b\xc0\x1b\x69\x0b\x0a\ +\x85\x8b\xf1\xcb\xc9\xa0\x94\xe1\x4c\xd6\xb7\x47\x0a\x11\x01\xbe\ +\xb0\x74\x70\x3c\xdc\xd5\x3d\x4a\xb8\x4c\x7e\x99\xab\x2e\x47\x79\ +\x17\x59\x52\x7f\x73\x0a\x6e\x68\xcb\x51\x4e\x0d\xe1\xdb\x82\x61\ +\xbc\x91\xa2\xfa\x66\x98\xb7\xb7\x48\xec\x54\xaa\xf1\x96\x31\x72\ +\x49\x7c\x08\xac\xc0\x85\xc7\x90\x68\xe9\x2c\x9c\xc9\x99\x71\x01\ +\xb6\x55\x38\xae\xab\x4f\xcb\xf0\x22\x78\x36\xb0\x11\xbc\xa1\xe8\ +\x89\x79\x13\xc5\xc2\x87\xa0\xd4\x56\x98\x8a\x4d\x8a\x62\xe2\xbd\ +\xc2\x03\xe0\x3f\x97\xa6\x88\x58\x03\x12\x0b\x87\x2b\xd4\x95\x78\ +\x5e\x9b\x5d\x01\x9f\xa3\xd0\x98\xde\x27\x06\x66\xf6\x8d\x81\x20\ +\xce\x99\x64\x18\xaf\xa0\x09\x47\xb7\x95\x47\x4a\x61\xf1\xfe\x62\ +\x28\x57\xe1\x52\x6b\x24\x35\x34\x00\x96\x0c\x8a\x87\x9b\xbb\x48\ +\x67\xe1\x4c\x82\x80\x2a\xee\xce\xc7\xb1\xbc\x58\xef\xce\xb8\x13\ +\x2c\x12\xec\x04\x6f\x30\x4a\x2f\x98\x85\x93\xea\xab\x78\x7d\x06\ +\xdb\x35\x3a\x77\xa9\x9d\x49\xc9\xa1\x70\x79\x52\xba\x38\x7e\x58\ +\xa8\xf2\x61\xaf\x6d\x6a\x81\x85\xfb\x8a\xe0\xad\xcc\x72\x59\x1f\ +\x76\x86\x61\x1c\x08\x59\x38\xcf\xc4\xc5\xc5\x51\x0d\x16\xce\xc1\ +\xfe\xbe\x32\x2f\x2e\x36\x82\x62\xe1\xbc\x57\xef\x8e\xb8\x23\x2c\ +\x12\x54\x82\x37\xdc\x71\xbc\x5c\x8b\x62\x61\x3c\x28\x7e\x10\xfd\ +\x75\xee\x92\x80\x9e\x4f\x0a\x10\xa2\x1a\x0b\x5a\xb6\x0d\x4f\x55\ +\x37\xc2\x6d\x5b\x72\x61\xd5\xd1\x10\x11\xaf\x30\x54\xbe\x6d\x43\ +\x86\x61\x34\x70\xa8\xa2\x41\xec\x3c\xae\x3b\xa3\xdd\xc2\x99\x16\ +\x14\x29\xf2\x59\x38\xd3\x18\x3d\x03\xfb\xf8\x89\xde\x1d\x71\x67\ +\xa4\xfb\x54\xdd\x0d\xbc\x01\x37\xa0\x50\x18\x8c\x5f\x4e\x01\xe5\ +\xac\x2b\x4e\xdf\x1e\x29\xc4\x05\xfa\xc1\x8b\x17\x24\xc2\xbd\x3d\ +\xa2\x34\x05\x20\xfd\x58\x58\x03\xc3\xd7\x9f\x94\x39\x00\x89\x61\ +\x18\x3b\x28\x6f\x54\x2c\x9c\x5f\x3a\x5a\xa6\x2a\xe0\xd9\xc8\xf9\ +\x31\x41\xb0\x62\x68\x22\x0c\x8f\x93\xe2\xd4\xb5\x23\xb4\xdb\xbb\ +\x04\xdb\x72\x1c\x9f\xd5\x3b\x4d\x31\x02\x16\x09\x0e\x00\x6f\x44\ +\xda\xd7\x7f\x01\xc5\xc2\x7b\x78\x9d\x0f\x12\x59\x52\x0f\x8a\x0a\ +\x84\x8d\x97\xa5\x6a\x4a\x65\x6a\x69\x6d\x85\x37\x4f\x94\x89\xd7\ +\xa0\x54\xa6\xbf\xf7\x8a\x06\xf9\x8a\xa4\x31\x0c\x63\x09\x92\x03\ +\x54\x79\x75\xc1\xde\x62\x28\xaa\x57\x1f\xb3\x97\x18\xe4\x0f\x8b\ +\x07\xc5\xe3\xc2\x41\x3a\x0b\x67\x2a\xe2\xb0\x1a\xdb\x23\x38\x26\ +\x9f\xd1\xbb\x33\x9e\x02\x8b\x04\x07\x82\x37\x66\x29\x28\x96\xd4\ +\xaf\x80\x72\x04\x31\x41\xe7\x2e\xb5\x73\x7d\x6a\x38\x5c\x9d\x12\ +\x26\x8a\xa2\x2c\xc3\x56\xad\xa2\x28\x4a\x45\x63\x33\xcc\xda\x5d\ +\x00\xaf\x1d\x2f\x83\x65\x72\x16\x45\x61\x18\xc6\x04\x9b\x0a\x6a\ +\x85\x85\xb3\xda\x22\x6c\x84\xc1\xcf\x07\xa6\xf6\x8a\x11\x0b\x85\ +\x30\xf9\x0a\x1e\xfc\x04\x4a\x29\xe5\x9f\xf5\xee\x88\xa7\xc1\x22\ +\xc1\x09\xe0\x8d\x7a\x00\x2f\x13\xdb\x2c\xa9\x29\xb8\xb1\xa7\xce\ +\x5d\x12\x04\xfa\xfa\xc0\x1c\x7c\xc0\xff\xdc\x2d\x12\x66\x69\x28\ +\xaf\x7a\xac\xb2\x01\xae\xdb\x9c\x03\x97\x27\x29\x96\xd4\x7d\xe5\ +\x2b\xaf\xca\x30\x0c\x92\x55\xdd\x28\x76\x10\xd5\x96\x73\x37\x22\ +\x71\x39\x77\xaa\x65\x33\x1b\xc7\xdc\xd5\x7a\x77\xc4\x53\x61\x91\ +\xe0\x44\xda\x2c\xa9\xd7\x81\x92\x2e\x29\x8d\x25\x75\xa7\x60\x7f\ +\x78\x7b\x58\x32\xfc\xb5\x67\x34\x4c\xdb\xa9\xde\xa8\xe5\xeb\xbc\ +\x6a\x18\xfa\x55\x96\xcc\x46\x2d\x0c\xe3\x95\xd4\x34\xb7\x6a\x32\ +\x86\x33\x72\x5e\x64\xa0\x58\x08\x8c\x4f\x94\xce\x18\x8e\x82\xac\ +\x68\x01\xf6\x14\x8e\xb3\xea\x23\x2f\x19\xab\xb0\x48\x70\x32\x78\ +\x03\x53\x5e\x11\x59\x52\xbf\x0d\x4a\x21\xa6\xc9\x20\x89\x25\xf5\ +\xb0\xd8\x20\xf8\xe9\xf2\x34\x4d\x96\xaf\x4d\x2d\xad\xb0\xf2\x70\ +\xa9\x28\xf1\x4c\x42\xe1\xbe\x1e\xd2\x59\xbe\x32\x8c\x57\xa1\xc5\ +\x62\xde\x48\xb4\xc1\x4f\x58\xcc\x4b\xfa\x3c\x7f\x80\xed\x61\x1c\ +\x5b\x4f\xea\xdd\x11\x6f\x80\x45\x82\x8b\xc0\x1b\x9a\x1c\xc6\xee\ +\x42\xb1\xb0\x0a\x94\x12\xcf\x23\x75\xee\x52\x3b\x14\x80\x44\xd5\ +\x16\xa9\x90\xca\x73\x47\x4a\xa1\x5e\xc5\xca\xa3\xa4\x5e\xb1\xa4\ +\x7e\xf5\x58\x99\x58\x79\x8c\x93\x6f\xe5\xc1\x30\x1e\xcd\xcf\xc5\ +\x64\xe1\x5c\x00\xdb\x8a\x6a\x55\xbf\x86\x1f\x2a\x82\x7b\xba\x47\ +\xc1\x63\x28\x10\xa2\x0d\xd2\xed\x0c\xee\x02\x25\xee\x60\xb3\xde\ +\x1d\xf1\x26\x58\x24\xb8\x18\xbc\xc1\x77\xe0\x65\x14\x8a\x05\x32\ +\x8d\x22\xf3\xa8\x2e\x3a\x77\x49\x10\xea\xef\x03\x4f\x0c\x8a\x83\ +\x7b\x7a\x44\x6a\x3a\xc3\xdc\x5f\x5e\x0f\x93\xbe\x55\x2c\xa9\x97\ +\x0d\x4e\x80\x6e\xf2\x9d\x61\x32\x8c\x47\x91\x57\xd7\x0c\xb3\x33\ +\x0a\xe1\x9d\xac\x0a\x4d\x16\xce\x97\x25\x86\x8a\x9a\x28\xfd\x22\ +\xa5\x8b\x31\x2a\xc0\x36\x17\xd8\xc2\x59\x17\x58\x24\xe8\x04\xde\ +\xec\x6b\xf0\x81\xfe\x14\x14\x3b\x6a\xb2\xa5\x96\x62\xe9\xdd\x35\ +\x34\x40\x58\x52\x7f\x5b\x50\x23\xa2\xa1\xf7\x96\xa9\x4b\x33\x26\ +\x4b\xea\x75\x67\x6a\x44\xba\xa4\xa4\xd1\xd0\x0c\xe3\xd6\x34\xb4\ +\xb4\xc2\x8a\xc3\xa5\x22\xf6\xa0\xaa\x51\xfd\xdc\xd9\x2d\xcc\x20\ +\x3c\x5b\xae\x45\x61\x2f\x19\x74\x54\xbb\x12\xdb\x42\x1c\x2f\xcb\ +\xf5\xee\x8c\xb7\xc2\x22\x41\x47\xf0\xc6\xa7\x7d\xc1\x05\x28\x16\ +\xde\xc0\xeb\x52\x6c\x37\x82\x24\x96\xd4\x63\x13\x42\x60\xfb\xc4\ +\xae\xf0\xea\xf1\x32\x98\xbf\xb7\x08\x8a\xeb\xed\x2f\xf1\x4c\xc7\ +\x16\xcb\x0e\x16\xc3\xea\xac\x72\x58\x34\x50\xca\xbc\x6a\x86\x71\ +\x4b\x3e\x46\x11\x3e\x6b\x77\x21\x64\x56\xa9\x2f\xa5\x1c\x16\xe0\ +\x0b\xb3\xce\x8b\x85\x69\xbd\xa3\xc1\x20\x5f\xe0\xc1\xff\x40\x71\ +\x69\x3c\xa2\x77\x47\xbc\x1d\x16\x09\x12\x80\x0f\x42\x36\x5e\x6e\ +\x41\xb1\xf0\x02\x28\xf1\x0a\x43\x75\xee\x92\x80\xc6\x0d\xaa\xd8\ +\x78\x73\x5a\x04\x3c\xbe\xaf\x08\x56\x1d\x2d\x13\x81\x8a\xf6\x42\ +\x01\x91\x77\x6d\x3b\x03\x2f\x1d\x2b\x85\xe5\x43\xa4\xac\xd0\xc6\ +\x30\x6e\xc1\x9e\x36\x0b\xe7\xef\x34\x58\x38\x53\x29\xe5\xdb\xba\ +\x46\xc0\x13\x83\xe2\x21\x29\x48\x8a\x18\xea\x8e\x1c\x02\x45\x1c\ +\x7c\xa9\x77\x47\x18\x05\x16\x09\x12\x81\x0f\xc6\xf7\x28\x14\x2e\ +\xc0\x2f\xff\x82\x6d\x11\xb6\x24\x9d\xbb\x24\xa0\xd4\xc6\xe5\x43\ +\x12\xe0\xee\xee\x51\xe2\x08\x82\x52\x1f\xd5\x40\xa9\x96\xa3\x37\ +\x66\xcb\x5c\xeb\x9d\x61\xa4\xa4\xb8\xa1\x19\x1e\xdd\xa3\xdd\xc2\ +\x79\x78\x5c\xb0\x88\x3b\xb8\x20\x46\x3a\xa1\x4e\x85\xe8\x16\x62\ +\x5b\xc9\x16\xce\x72\xc1\xa3\xb4\x64\xb4\x59\x52\xbf\x8e\x62\xe1\ +\xdf\xa0\xd4\x56\x78\x10\x9b\x14\xee\x4a\x54\x34\xe9\x8b\x31\x9d\ +\x85\x6b\xdc\x8c\x5d\x05\xa2\xa8\x92\xbd\x50\x60\xd5\x9a\xac\x0a\ +\xf8\x2c\xa7\x4a\x38\xc6\x4d\xc7\x16\x28\xdf\x56\x27\xc3\x48\x41\ +\x33\x8e\x06\xe4\xea\xba\x68\x7f\x31\x94\x69\xb0\x70\xee\x1c\x12\ +\x20\x76\x0e\x6e\x4d\x93\xce\xd5\x95\x04\xc1\xeb\xd8\xe6\xe2\xd8\ +\x57\xa4\x77\x67\x98\x73\x61\x91\x20\x29\x1d\x2c\xa9\x5f\xc3\xeb\ +\xd3\x20\x91\x25\x35\x95\x63\x9e\x98\x94\x2e\xd2\x25\x9f\xc0\xc1\ +\x8b\xca\x35\xdb\x4b\x4d\x53\x0b\x2c\xd8\x5b\x04\x6f\xe2\xca\x88\ +\x82\xa6\xa8\x6c\x34\xc3\x30\xbf\xb2\x2e\xaf\x1a\xa6\xef\x2c\x84\ +\x43\x15\xea\x3d\x8a\x8c\x16\xce\x33\x50\x8c\x07\xcb\x67\xe1\xbc\ +\x09\x94\x94\xc6\x0c\xbd\x3b\xc2\x98\x87\x45\x82\xe4\xe0\x03\x74\ +\x0c\x14\x4b\xea\xcb\x41\xf1\x83\xe8\xa7\x73\x97\x04\x54\x5c\xf1\ +\x1f\x7d\xa2\xe1\xf6\xf4\x08\x98\x9b\x51\x04\xff\xca\x2c\x17\x46\ +\x50\xf6\x42\x86\x53\xb7\xfc\x98\x0b\x97\x26\x28\x96\xd4\x64\x48\ +\xc5\x30\xde\xcc\xd1\xca\x46\x61\xe1\xfc\x45\x6e\x95\xa6\xd7\xb9\ +\xb1\x4b\x84\x10\xe0\xa9\x21\xd2\x0d\xf3\x99\xa0\x14\x43\x5a\xab\ +\x77\x47\x18\xeb\x48\x77\xf7\x30\xa6\xc1\x07\xea\x6b\x14\x0a\x83\ +\x40\x71\x98\x5c\x80\x2d\x46\xdf\x1e\x29\x90\x75\xf4\x2b\x17\x25\ +\xc2\x94\x9e\x8a\x25\x35\x59\x4b\xab\x81\xac\xac\x2f\x5e\x7f\x12\ +\xfe\xd2\x2d\x12\x1e\x1f\x10\x27\xac\xae\x19\xc6\x9b\xa8\x68\x6c\ +\x11\xc7\x0a\x74\xbc\xa0\xc5\xc2\x79\x70\x74\x90\x10\xdc\xa3\xe2\ +\x83\x1d\xd8\x3b\x87\x40\xbb\xa3\x4f\x61\x7b\x06\xc7\x33\xf5\x4e\ +\x53\x8c\x4b\x61\x91\xe0\x46\xb4\x59\x52\xaf\x44\xb1\xf0\x2e\x5e\ +\x1f\xc7\x76\x2f\x48\xf2\x19\x0e\x8d\x0e\x84\x4d\xe3\x52\xe1\x83\ +\xec\x4a\x78\x24\xa3\x10\x4e\xa9\xb0\xa4\xa6\x80\x2c\xaa\xd8\xf8\ +\x6f\x7c\x0d\x32\xa2\xfa\x5b\xaf\x68\xe0\xf2\x0a\x8c\xa7\x43\x72\ +\x80\x02\x12\x29\x30\xb1\xb0\x4e\x7d\xcc\x5e\x7c\x90\x3f\x2c\x1c\ +\x18\x27\x84\xb6\x64\x8f\x8d\xd1\xc2\x99\x8c\x98\x72\xf5\xee\x0c\ +\x63\x1f\x52\x4c\x30\x8c\x7d\xe0\x83\x56\x82\x97\x07\x50\x2c\xbc\ +\x04\x4a\xca\xe4\x38\x9d\xbb\xd4\xce\xcd\x5d\xc2\xe1\x9a\x94\x30\ +\x58\x7a\xb0\x04\x9e\x3e\x54\x02\xb5\x2a\x2c\xa9\xcb\x1b\x9a\x61\ +\xe6\xae\x02\x21\x18\x96\xb2\x25\x35\xe3\xc1\x7c\x5f\x58\x2b\x76\ +\xe0\x76\x97\xaa\x5f\x58\x07\xf8\xfa\xc0\x03\x28\xa8\xe7\xa2\xb0\ +\x8e\x90\xcf\x64\x6d\x2b\x28\x71\x07\xdb\xf4\xee\x08\xa3\x0e\x16\ +\x09\x6e\x0c\x3e\x78\xfb\xf0\x32\x1e\xc5\xc2\x75\x78\x5d\x86\xad\ +\xbb\xce\x5d\x12\x04\xf9\xf9\xc0\xbc\xfe\xb1\x62\x45\x33\x73\x77\ +\x21\x7c\x78\x4a\x9d\x25\xf5\xd1\x36\x4b\xea\x89\xc9\xa1\xf0\x34\ +\x8a\x85\x3e\x6c\x49\xcd\x78\x08\xa7\x6a\x9a\x44\xf9\xf3\xb5\xd9\ +\x15\x9a\x5e\xe7\xca\x4e\x61\xe2\xd9\xe8\x19\x2e\x5d\xf9\xf3\xd3\ +\xd8\x1e\x61\x0b\x67\xf7\x87\x45\x82\x07\x80\x0f\xe2\x27\x38\x09\ +\x7f\x81\x5f\x3e\x84\xed\x11\x6c\x52\xa4\x0a\x74\x0e\xf1\x87\xf7\ +\x60\x8f\x4f\xde\x00\x00\x16\xb8\x49\x44\x41\x54\x46\x24\xc3\x03\ +\x45\x4a\xbc\xc2\x8e\x12\x75\xab\xa5\x75\x67\xaa\xe1\x9b\xfc\x2c\ +\x11\xf7\x30\xbf\x7f\x1c\x44\xca\xb7\x5a\x62\x18\x9b\xa8\x6d\x6e\ +\x85\x65\x1a\x76\xd9\x8c\xf4\x89\x08\x84\x65\x43\xe2\x61\x52\xb2\ +\x74\xbb\x6c\x54\x45\x76\x39\xb6\x25\x6c\xe1\xec\x19\xb0\x48\xf0\ +\x10\xf0\x81\xa4\x3c\xa9\x25\x28\x16\xde\xa2\x2b\xb6\xdb\x41\x92\ +\x12\xcf\x23\xe2\x82\x61\xeb\x04\xc5\x92\x7a\x4e\x46\x21\xe4\xab\ +\x38\x77\x6d\x6c\xb3\xa4\x5e\x93\x55\x09\x0b\x06\xc4\xc2\x3d\x3d\ +\xa2\x64\x3b\x77\x65\x18\x8b\x50\xbc\x0e\x95\x52\xce\xa9\xb1\x3f\ +\x5e\xc7\x48\x94\xc1\x4f\x1c\x2b\xd0\xf1\x82\x7c\x19\x8d\xf0\x11\ +\xb6\x19\x38\x16\x65\xea\xdd\x11\xc6\x71\xb0\x48\xf0\x30\xf0\x01\ +\x3d\x83\x97\xc9\x6d\x25\x9e\x9f\xc5\x36\x5c\xe7\x2e\xb5\x43\xde\ +\x0d\x54\x0f\x81\x6a\x2b\x3c\x7b\xa4\x04\x1a\x9a\xed\x3f\x82\x28\ +\xaa\x6f\x82\x07\xb6\xe7\xc3\xcb\xc7\xca\x60\xf9\xd0\x44\x18\x93\ +\x20\x5d\x04\x37\xc3\xfc\x86\xed\x25\x75\x30\x6d\x67\x01\x6c\xd5\ +\x68\xe1\x4c\xc7\x77\x14\x98\x18\x6b\x90\x2e\xf3\x67\x0f\x28\x71\ +\x07\xdf\xea\xdd\x11\xc6\xf1\xb0\x48\xf0\x50\xf0\x81\xfd\x05\x2f\ +\x23\xda\x2c\xa9\x29\xed\x28\x55\xe7\x2e\x09\xc2\xda\x2c\xa9\xef\ +\xec\x4e\xf1\x0a\x05\xc2\x2d\x52\x0d\xe4\x4e\x79\xf9\x37\xd9\xf0\ +\x07\x14\x1d\x94\x0b\x4e\xee\x95\x0c\x23\x13\x8e\xb2\x70\x1e\xdd\ +\x56\x43\x64\xa0\x7c\x35\x44\x0a\xb1\xcd\xc7\xf6\x32\x5b\x38\x7b\ +\x2e\x2c\x12\x3c\x9c\x36\x4b\xea\xcf\xf0\xcb\x99\x20\x91\x25\x75\ +\xf7\xb0\x00\xf8\x68\x64\x0a\x6c\xc8\x57\x2c\xa9\x0f\x94\xab\xab\ +\x2a\xf7\xf1\xa9\x4a\xf8\x22\xb7\x1a\xa6\xf5\x89\x16\x8e\x76\x21\ +\x12\xee\xc1\x32\xde\x85\xa3\x2c\x9c\xd3\xc3\x0c\xf0\x24\x0a\xe0\ +\x3f\xc8\x69\xe1\xbc\x0a\xdb\x02\x1c\x5f\xca\xf4\xee\x0c\xe3\x5c\ +\x58\x24\x78\x01\xf8\x20\x53\x85\xa3\x8e\x96\xd4\x37\xeb\xdc\xa5\ +\x76\xc6\x27\x86\xc0\xae\x49\x5d\x61\xd5\xb1\x32\x78\x6c\x6f\x11\ +\x94\xaa\xa8\x4f\x5f\xd7\xdc\x02\x4b\xf6\x17\x8b\xaa\x8f\x4f\x0c\ +\x8c\x87\x3f\x76\x65\x4b\x6a\x46\x1f\x3e\xcd\xa9\x12\x59\x0b\x27\ +\x3c\xd7\xc2\xf9\x2b\x50\x5c\x1a\x0f\xea\xdd\x11\xc6\x35\xb0\x48\ +\xf0\x22\x3a\x58\x52\xbf\x08\x4a\x7d\x85\x21\x3a\x77\x49\x40\xe3\ +\xe0\xfd\x3d\xa3\xe0\xff\xd2\x22\x60\x3e\x0a\x85\x57\x8e\x97\xa9\ +\x72\xba\xcb\xad\x69\x82\xc9\x5b\xcf\x08\xc1\x41\xae\x95\x17\xc5\ +\x4a\xe7\x74\xc7\x78\x28\xfb\xcb\x1b\x44\x06\xcf\x37\xf9\xea\x03\ +\xfa\x25\xb7\x70\x3e\x82\x6d\x3a\xf6\xf1\xbf\x7a\x77\x84\x71\x2d\ +\x2c\x12\xbc\x10\x7c\xd0\x37\xb7\x59\x52\xdf\x09\x8a\x3d\x6b\xa2\ +\xce\x5d\x12\x44\x1b\x7c\xe1\xb9\xf3\x13\xe0\xde\x1e\x51\x9a\x06\ +\xdc\x6d\x45\xb5\x30\x72\x43\xb6\x18\x70\x17\x0f\x8c\x87\xe4\x60\ +\xe9\x06\x5c\xc6\x43\x28\x6d\x68\xd1\x24\x6c\x8d\x5c\x4c\x16\xce\ +\x72\x0a\x5b\x3a\x4e\xa0\xea\xae\xcf\xe3\xb8\xa1\x3e\x2d\x83\x71\ +\x5b\x58\x24\x78\x29\x6d\x81\x46\xaf\xb6\x59\x52\x3f\x8a\xed\x6f\ +\xd8\xa4\xa8\x56\xd4\x2f\xd2\x00\xeb\xc6\x76\xd6\xb4\x75\x4b\x81\ +\x62\xab\x33\xcb\xe1\x93\x9c\x4a\x99\xb7\x6e\x19\x37\x85\xf4\x80\ +\x96\x23\x32\x23\x9d\x42\xfc\x65\x3d\x22\x33\x5a\x38\x3f\x8a\x63\ +\x45\xa1\xde\x9d\x61\xf4\x83\x45\x82\x97\x83\x03\x40\x39\x5e\xa6\ +\xe3\xa4\xfa\x0a\x28\x45\x50\xae\xd2\xb9\x4b\xed\x5c\xdb\x39\x0c\ +\xae\xec\x14\xaa\x29\x08\x8c\xfe\xcd\xdc\x8c\x42\x78\x0d\x57\x7a\ +\x4f\x0e\x62\x4b\x6a\x46\x3b\x5a\x83\x6d\x89\x20\x3f\x5f\x99\x83\ +\x6d\xbf\x03\x25\xa5\x71\xb7\xde\x1d\x61\xf4\x87\x45\x02\x23\xc0\ +\x01\x81\xce\x1c\xaf\x46\xb1\x30\x09\x14\xb1\xd0\x57\xe7\x2e\x09\ +\x68\xf5\xff\x70\xdf\x18\xb8\x23\x3d\x52\x53\x3a\x59\x56\x95\x62\ +\x49\x2d\x71\x3a\x19\x23\x39\xc7\xf1\x1e\xd2\x92\xb6\x6b\x44\xe2\ +\xb4\xdd\x2c\x6c\x33\xd9\xc2\x99\xe9\x08\x8b\x04\xe6\x37\xe0\x00\ +\xf1\x15\x4e\xc2\x1b\x40\x39\x7e\xa0\x63\x88\x68\x9d\xbb\x24\xa0\ +\x40\xae\x37\x2e\x4e\x82\xfb\x7b\x46\xc3\x43\xbb\xf2\x61\x4b\xa1\ +\xba\xc2\x34\xdf\x15\xd4\xc0\x45\x6d\x96\xd4\x92\x16\xa6\x61\x24\ +\xa3\xaa\xa9\x55\x53\x01\x30\x23\x03\xa3\x82\xe0\x19\x14\xa8\x12\ +\x16\x00\x23\xd5\x43\x59\x4f\xcb\xd8\xc2\x99\x39\x1b\x16\x09\xcc\ +\x39\xe0\x40\x41\xe7\x91\x2b\x50\x2c\x90\x39\xcb\x22\x50\x02\x1c\ +\xa5\xb8\x57\xce\x8f\x09\x84\xef\xc6\x75\xd1\x54\xe2\xd6\x68\x49\ +\xbd\x16\x5f\x43\xe2\x12\xb7\x8c\x04\x68\x29\x25\x6e\x24\x2e\xd0\ +\x5f\xd6\x52\xe2\x74\x7e\xb7\x06\xdb\x2c\x7c\xe6\x73\xf4\xee\x0c\ +\x23\x27\x52\x0c\xfc\x8c\x9c\xe0\xc0\x51\x84\x97\x29\x28\x16\xa8\ +\x70\x0a\xa5\x4c\x8e\xd1\xb7\x47\xbf\x42\x96\xd4\xbf\x4f\x09\xd3\ +\x64\x96\x53\xd6\xd0\x0c\xd3\xc9\x92\xfa\x78\x99\x70\xd2\x93\xd0\ +\x2c\x87\xd1\x89\x2d\x45\xb5\x9a\x4c\xc9\x08\xb2\x70\x96\xd8\x94\ +\x8c\x2a\xb2\x52\xdc\xc1\x16\xbd\x3b\xc2\xc8\x0d\x8b\x04\xc6\x2a\ +\x38\x90\x64\xe0\x65\x2c\x8a\x85\xeb\x41\xd9\x96\xec\xa6\x73\x97\ +\x04\xc1\x6d\x96\xd4\x7f\xee\x16\xa9\xc9\x76\xf7\x70\x45\x03\xfc\ +\xee\xbb\x1c\x99\x6d\x77\x19\x17\x61\xb4\x70\x56\x6b\x6f\x6e\x44\ +\x62\x7b\x73\xf2\x76\x99\x83\xed\x2d\x7c\xae\xd5\xff\x81\x8c\xd7\ +\xc0\x22\x81\xb1\x19\x1c\x54\x3e\xc2\x81\xf3\x73\x90\xcc\x92\x3a\ +\xb5\xcd\x92\xfa\xbe\x9e\x4a\x7d\x85\xdd\xa5\xea\x56\x7f\x5f\xe4\ +\x56\xc1\xd7\x79\xd5\xe2\xf8\x81\x8e\x21\x22\xe4\x5b\xfd\x31\x4e\ +\xa2\xae\xb9\x15\x96\x3a\xc0\xc2\xb9\x67\xb8\x01\x96\xa2\x38\xb8\ +\xba\x93\x74\xbb\x52\xf4\x50\x90\xe1\xdb\x62\x7c\x8e\x2b\xf5\xee\ +\x0c\xe3\x3e\xb0\x48\x60\xec\x42\x66\x4b\xea\x51\xf1\xc1\xf0\xf3\ +\xc4\x34\x78\xe3\x44\x39\xcc\xdb\x53\x04\x05\x2a\x2d\xa9\x57\xe0\ +\x44\x41\x59\x14\x14\xd8\x48\x01\x8e\x92\x9d\x23\x33\x0e\x86\xe2\ +\x5b\x1e\xc9\x28\x84\x53\xd5\xea\x6b\x05\x45\x1a\xfc\xe0\x51\x14\ +\x96\xf7\xa3\xc0\xf4\x97\xef\x86\x21\xef\x96\x7f\xe0\xb3\x7b\x5c\ +\xef\x8e\x30\xee\x07\x8b\x04\x46\x15\x1d\x2c\xa9\x8d\xf1\x0a\xc3\ +\x74\xee\x92\x80\xc6\xe7\x3b\x71\x62\xbf\x31\x35\x1c\x16\xed\x2f\ +\x86\xe7\x8f\x94\x8a\x89\xdf\x5e\x0a\x51\x60\x4c\xf9\x39\x0f\x5e\ +\x3a\x5a\x26\x52\x26\x49\x80\x30\x9e\xc5\xce\xd2\x7a\xb1\xf3\xf4\ +\x63\x61\x8d\xea\xd7\x30\x5a\x38\x3f\x3e\x20\x0e\xe2\x02\xa5\xcb\ +\x94\xd9\x87\x6d\x1a\x3e\xab\x1b\xf4\xee\x08\xe3\xbe\xb0\x48\x60\ +\x34\x81\x03\xd0\x36\xbc\x0c\x47\xb1\x40\x3b\x0a\xb4\xb3\x90\xa2\ +\x73\x97\x04\x74\x54\xb0\x74\x70\x3c\xdc\xdd\x3d\x4a\x04\x27\xd2\ +\x51\x82\x1a\xe8\xe8\xe2\xb2\x8d\xd9\x70\x63\x97\x08\x91\xdb\x4e\ +\x47\x1b\x8c\x7b\x53\x50\xdf\x0c\x73\x33\x8a\x84\x21\x58\x8b\x86\ +\xb8\x83\x4b\xdb\x6a\x6e\x0c\x92\xaf\xe6\x46\x31\xb6\xc7\xb0\xbd\ +\x88\xcf\xa7\xfa\x72\x90\x0c\x03\x2c\x12\x18\x07\x81\x83\xd1\x6a\ +\x14\x0a\x1f\x83\x12\xab\x40\x31\x0b\x52\x2c\xbd\x29\x08\xf1\xb3\ +\x4b\x53\x60\x5d\x5e\x35\x4c\xdf\x59\x08\x87\x2a\xd4\x55\xc9\xa3\ +\xa0\xc8\xcf\x51\x68\x4c\xef\x13\x03\x33\xfa\xc6\x88\xa0\x49\xc6\ +\xbd\xa0\x82\x9d\xcf\x1d\x29\x15\x35\x0f\x2a\x1a\xd5\xcf\x9d\x69\ +\xa1\x01\x42\x30\x4a\x58\xbd\x93\xce\x4b\xc8\xbc\xed\x31\x7c\x1e\ +\x4b\xf5\xee\x0c\xe3\x19\xb0\x48\x60\x1c\x06\x0e\x4c\xe4\xc8\x34\ +\x17\xc5\x02\xd5\x7c\x5f\x86\xed\x7a\x9d\xbb\xd4\xce\xc4\xa4\x50\ +\x18\x7f\x45\xa8\x38\x7e\xa0\x63\x88\x32\x15\xf5\xf6\x29\xa0\x6d\ +\xe1\xbe\x22\x78\xf3\x44\xb9\x70\xea\xbb\x35\x4d\xba\x49\x82\x31\ +\xc3\xe7\xb9\xd5\x30\x63\x57\x01\x1c\xab\x54\x6f\xe1\x1c\xea\xef\ +\x2b\x04\xe2\x74\x6c\x81\xf2\xf9\x80\xac\x07\xe5\x68\xe1\x80\xde\ +\x1d\x61\x3c\x0b\x16\x09\x8c\xc3\xc1\x81\x2a\x13\x2f\x37\xa0\x58\ +\x18\x8b\xd7\x15\xd8\x06\xe9\xdc\x25\x01\x2d\xfe\xa7\xf6\x8e\x86\ +\xdb\xd2\x23\xe0\xd1\x3d\x45\x22\xc0\x51\x8d\x73\x1f\x15\x70\xfa\ +\xd3\x4f\xb9\xf0\xe2\xd1\x60\x58\x31\x34\x01\x2e\x88\x91\xce\xb9\ +\x8f\x69\xe3\x60\x45\x83\x38\x6e\x5a\x7f\x46\x9b\x85\xf3\x2d\x28\ +\x08\x97\xa0\x30\x4c\x09\x96\x6e\xc8\x3c\x0a\x4a\x50\x22\x5b\x38\ +\x33\x4e\x41\xba\x3b\x9e\xf1\x1c\x70\xe0\xfa\x16\x85\xc2\x50\xfc\ +\xf2\x5e\x50\xce\x48\xe3\x75\xee\x92\x80\x4a\x31\xbf\x78\x41\x22\ +\x4c\x69\xb3\xa4\xa6\x52\xcd\x6a\xd8\x5a\x54\x0b\x23\xbe\x56\x2c\ +\xa9\x69\x67\x81\x4a\x47\x33\x72\x50\xd6\xd8\x02\x8f\xef\x2b\x82\ +\x55\x47\xcb\xa0\x49\x83\x85\xf3\x05\xb1\x41\xb0\x7c\x48\x22\x0c\ +\x8f\x93\x4e\x08\x92\x31\xdb\x62\x6c\xcf\xe2\x73\xa6\x7e\x7b\x84\ +\x61\xac\xc0\x22\x81\x71\x2a\x6d\x96\xd4\xab\x50\x2c\x50\xf9\xd7\ +\x05\xd8\xee\x03\x49\x2c\xa9\xc9\xe4\x69\xc3\x65\xa9\xc2\x92\x7a\ +\xe6\xee\x42\xc8\x64\x4b\x6a\xb7\x87\xf4\x00\x55\xd0\x9c\xbf\xb7\ +\x08\x8a\xeb\xd5\xc7\x1d\x24\x05\xfb\xc3\xa2\x81\xf1\x70\x47\xba\ +\x74\x16\xce\xf4\x47\xbd\x85\x6d\x0e\x3e\x5b\xf9\x3a\xf7\x85\xf1\ +\x02\x58\x24\x30\x2e\x01\x07\xb4\x32\xbc\x3c\x88\x93\xea\xcb\xa0\ +\xb8\x4c\x4e\xd2\xb9\x4b\xed\x38\xd2\x92\xfa\x8d\xe3\xe5\x22\xa8\ +\x8d\x5e\x93\x71\x2d\xdf\x16\x28\x16\xce\x7b\xcb\xd4\x5b\x38\x07\ +\xfa\xf9\xc2\xdf\x7b\x45\xc3\xec\x7e\xb1\x10\x26\x5f\xc1\x83\x1f\ +\x40\x29\xa5\xbc\x43\xef\x8e\x30\xde\x03\x8b\x04\xc6\xa5\xe0\x00\ +\x77\x10\x2f\x57\xa0\x58\xf8\x1d\x5e\x9f\xc6\xd6\x4b\xe7\x2e\x09\ +\x1c\x65\x49\x7d\xa2\xaa\x01\x6e\xfc\xe1\x34\x5c\x96\x18\x2a\xd2\ +\xe3\xfa\x45\x4a\xb1\x69\xe2\xd1\x9c\xa8\x6a\x14\xa5\x94\x3f\xcd\ +\xd1\x56\x48\xf0\xf7\x28\xec\x96\x0d\x4e\x80\x6e\x61\xd2\x95\xe5\ +\xce\x06\xc5\x84\x69\x8d\xde\x1d\x61\xbc\x0f\x16\x09\x8c\x2e\x50\ +\xa0\x15\x4e\xc2\x5f\xe1\x97\x7f\xc7\x36\x17\x5b\x94\xce\x5d\x12\ +\x18\x2d\xa9\xa9\xc4\xf3\x34\x5c\x95\x6e\x2b\x52\x67\x49\xfd\x4d\ +\x7e\x35\x9c\xbf\x2e\x0b\xee\xe9\x1e\x05\x8f\x0d\x88\x83\x68\x83\ +\x14\x45\x29\x3d\x8a\xea\xa6\x56\x58\xbc\xbf\x58\xa4\x35\xd6\x37\ +\xab\x2f\xa5\xdc\x2f\x32\x50\x58\x38\x8f\x4b\x0c\x71\x60\xef\x1c\ +\x02\x05\xcb\x50\x96\xd0\x53\xf8\xbc\xa8\xbb\x11\x19\x46\x23\x2c\ +\x12\x18\xdd\xc0\x81\x8f\xf2\xba\x9f\x41\xb1\xf0\x36\x5e\x17\x62\ +\xbb\x0b\x9b\x14\xd1\x7f\x17\xc6\x04\xc1\x0f\xe3\xbb\xc0\xbb\x59\ +\x15\x30\x7b\x4f\x21\xe4\xd6\xd8\x5f\xe2\x99\x32\x27\x56\x1d\x2d\ +\x85\xf7\x4f\x56\xc0\x7c\x14\x0a\xf7\xf5\x88\x02\x0e\x57\x70\x0c\ +\x64\xe1\x3c\x17\x3f\x97\xbc\x5a\xf5\x16\xce\xb1\x81\x7e\x42\xc0\ +\x51\xc1\x2d\xc9\x3e\x17\x52\x3c\x6b\xb1\xcd\xc4\x67\x24\x5b\xef\ +\xce\x30\xde\x0d\x8b\x04\x46\x77\x70\x20\x2c\x04\xc5\x92\xfa\x25\ +\x50\x4a\x3c\x8f\xd6\xb9\x4b\xed\xfc\xb1\x6b\x04\x5c\x97\x1a\x2e\ +\x62\x15\x56\x1c\x2a\x85\x3a\x15\x2b\xd6\xd2\x86\x66\x78\x70\x47\ +\x3e\xbc\x72\xac\x4c\xac\x58\xc7\xcb\xb7\x62\x75\x1b\xb6\x16\xd7\ +\xc1\xb4\x9d\xf9\xb0\xbd\x58\xbd\x85\xb3\x3f\x2a\x02\xda\x29\x9a\ +\xd7\x3f\x0e\xa2\xe4\x33\xf1\xda\x09\x4a\xdc\xc1\xf7\x7a\x77\x84\ +\x61\x08\x16\x09\x8c\x34\xe0\xc0\xb8\x1b\x2f\x63\x50\x2c\xdc\x08\ +\x8a\x25\x75\x57\x7d\x7b\xa4\x10\xe2\xe7\x23\x6a\xf3\xff\xa5\xcd\ +\x92\xfa\xe3\x53\xea\xce\xbe\x0f\x94\xd7\xc3\x15\xdf\x9e\x12\x67\ +\xdf\x4b\x07\x27\x40\x77\xf9\xce\xbe\xa5\x25\xb7\xb6\x09\x66\x65\ +\x14\xc2\xfb\x27\xb5\x59\x38\x5f\x9e\x14\x2a\x84\x5a\x5f\xf9\x2c\ +\x9c\x29\x53\xe1\x51\x6c\xaf\xb7\x65\x04\x31\x8c\x14\xb0\x48\x60\ +\xa4\x03\x07\xc9\xb5\x38\x11\x50\x71\x98\x19\xd8\x1e\xc6\x26\x85\ +\xef\x6e\xd7\xd0\x00\xf8\xe0\x92\x4e\xb0\xa9\xa0\x56\x44\xd1\xef\ +\x29\x53\xb7\x9a\xfd\x4f\x4e\x15\x7c\x75\xa6\x1a\xa6\xf6\x8a\x91\ +\x35\x8a\x5e\x1a\xea\x5b\x5a\xe1\xe9\x83\x25\xb0\x0c\x5b\xb5\x06\ +\x0b\xe7\x1e\xe1\x06\x58\x26\xa7\x85\x33\xa5\x62\x3c\x8f\xed\x71\ +\xbc\xef\x2b\xf4\xee\x0c\xc3\x9c\x0d\x8b\x04\x46\x4a\x70\xc0\xa4\ +\x19\x78\x21\x8a\x85\x37\xf1\xfa\x24\xb6\x5b\x41\x12\x4b\xea\x31\ +\x09\xc1\xb0\x7d\x52\x9a\x38\x3e\x58\xb0\xb7\x18\x8a\xea\xed\x3f\ +\x17\x6f\x68\x6e\xc5\x89\xaf\x18\xde\xce\x2c\x87\xc5\x83\xa4\xcc\ +\xc7\xd7\x9d\x8f\x4e\x55\x8a\x9d\x9b\x93\x1a\x2c\x9c\x23\x02\xfc\ +\x84\x10\xa3\xb4\x46\xf9\x4e\x16\x84\x85\xf3\x74\xbc\xd7\x8f\xe9\ +\xdd\x11\x86\x31\x07\x8b\x04\x46\x6a\x70\x00\xcd\xc1\xcb\x6d\x28\ +\x16\xc8\xb8\x86\xe2\x15\x2e\xd4\xb9\x4b\x02\x5a\xfb\xdf\xdb\x23\ +\x0a\x6e\x49\x8b\x80\xc7\xf6\x15\x09\x4b\x69\x35\x96\xd4\xf9\x75\ +\x4d\x70\xd7\xb6\x33\xf0\xc2\x91\x52\x58\x71\x7e\x02\x5c\x12\x27\ +\x85\x2f\x96\xae\x64\x94\x29\x16\xce\x9b\x55\x56\xc2\x24\x7c\x7d\ +\x7c\x44\x3a\xeb\xa2\x41\x71\x90\x20\x9f\x85\xf3\x7e\x6c\x0f\xe1\ +\xbd\xbd\x5e\xef\x8e\x30\x8c\x35\x58\x24\x30\x6e\x01\x0e\xa8\x5b\ +\x50\x28\x5c\x8c\x5f\x4e\x06\xa5\x1c\x6d\xb2\xbe\x3d\x52\x88\xc4\ +\xe5\xe9\xf2\x21\x09\x22\xd5\x91\x3c\x02\xd6\xa9\xf4\x08\xd8\x55\ +\x5a\x07\x63\x37\x9e\x82\x1b\x52\xc3\xbd\xd6\x92\xba\xa8\xbe\x19\ +\xe6\xed\x55\xef\xa9\x61\xe4\x92\x78\xc5\xc2\x79\x68\xb4\x74\x16\ +\xce\x25\xa0\x54\x1d\x5d\x85\xf7\xb3\xfa\xb4\x0c\x86\x71\x21\xde\ +\x37\x12\x31\x6e\x0b\x0e\xac\x34\x73\xbc\x89\x62\xe1\x43\xbc\xce\ +\xc1\x36\x15\x9b\x14\x45\xf5\xfb\x44\x18\xe0\xf3\xd1\x9d\x45\xac\ +\x01\x89\x85\xc3\x15\xea\x4a\x3c\x77\xb4\xa4\x9e\xd9\x37\x06\x82\ +\xbc\xc0\x92\xba\x09\x3f\x55\xda\x49\x59\xb8\xbf\x18\xca\x55\xb8\ +\x73\x1a\x49\x0d\x0d\x10\x26\x4c\x37\x77\x91\xce\x9d\x93\x04\x01\ +\x55\x1a\x9d\x8f\xf7\x70\xb1\xde\x9d\x61\x18\x7b\x60\x91\xc0\xb8\ +\x1d\x38\xd0\x52\x7a\xc1\x2c\x9c\x54\x5f\xc5\xeb\x33\xd8\xae\xd1\ +\xb9\x4b\xed\x4c\x4a\x0e\x85\xf1\x49\xe9\x9a\x26\x3d\xa3\x25\xf5\ +\x5b\x99\xe5\xb2\x4e\x7a\x0e\x43\x8b\xa8\x32\x12\xec\xef\x2b\xb3\ +\xa8\xda\x08\x8a\x85\xf3\x5e\xbd\x3b\xc2\x30\x6a\x60\x91\xc0\xb8\ +\x2d\x38\xf0\x1e\xc7\xcb\xb5\x28\x16\xc6\x83\x62\x49\xdd\x5f\xe7\ +\x2e\x09\xfc\xdb\x2c\xa9\xa9\xc6\x82\x96\xed\xf3\x53\xd5\x8d\x70\ +\xdb\x96\x5c\x58\x75\x54\xda\xed\x73\xd5\x1c\xa9\x6c\x14\xe2\xe0\ +\xcb\xdc\x2a\xd5\xaf\x41\x16\xce\x12\x1f\xcf\xd0\xbd\x39\x03\xfb\ +\xf8\x89\xde\x1d\x61\x18\x2d\x48\xf7\x64\x31\x8c\xbd\xe0\x40\xbc\ +\x01\x85\xc2\x60\xfc\xf2\xaf\xd8\xe6\x63\x8b\xd5\xb9\x4b\x82\xb8\ +\x40\xc5\x92\xfa\xde\x36\x4b\x6a\xb5\x81\x78\x3f\x16\xd6\xc0\xf0\ +\xf5\x27\x65\x0e\xc4\xb3\x99\xf2\xc6\x16\x4d\x81\x9e\x46\x86\x44\ +\x07\x09\xe1\x34\x32\x5e\xba\x40\x4f\xda\xe5\x5a\x82\x6d\x39\xde\ +\x97\xea\x9d\xa6\x18\x46\x12\x58\x24\x30\x1e\x01\x0e\xc8\xb4\xaf\ +\xbf\x12\xc5\xc2\xbb\xa0\x04\x87\x4d\xc1\x26\x45\xb5\xa2\x41\x51\ +\x81\xb0\xf1\xb2\x54\x4d\x29\x7d\x2d\xad\xad\xf0\xe6\x89\x32\xf1\ +\x1a\x12\xa7\xf4\x99\x85\xe4\x80\x96\x94\x51\x23\x89\x41\xfe\xb0\ +\x70\x60\x1c\xfc\xb9\x5b\xa4\xe3\x3a\xe7\x18\xa8\x88\xc3\x6a\x6c\ +\x8f\xe0\xbd\x78\x46\xef\xce\x30\x8c\xa3\x60\x91\xc0\x78\x14\x38\ +\x40\x53\x04\xf9\xdf\xdb\x4a\x3c\xd3\x11\xc4\x04\x9d\xbb\xd4\xce\ +\xf5\xa9\xe1\x70\x75\x4a\x98\xa6\xe2\x40\x15\x8d\xcd\x30\x6b\x77\ +\x01\xbc\x76\xbc\x4c\xd6\xe2\x40\xe7\xa0\xb5\xf8\x14\x61\xf0\xf3\ +\x91\xb9\xf8\xd4\x4f\xa0\x94\x52\xfe\x59\xef\x8e\x30\x8c\xa3\x61\ +\x91\xc0\x78\x24\x38\x60\x1f\xc0\xcb\xc4\x36\x4b\x6a\x0a\x6e\xec\ +\xa9\x73\x97\x04\x81\xbe\x3e\x30\x07\x27\x3a\x5a\x09\x6b\x29\x33\ +\x7c\xac\xb2\x01\xae\xdb\x9c\x23\x73\x99\x61\x38\x59\xdd\x04\x33\ +\x51\xd0\xa8\x2d\x63\x6d\x44\xe2\x32\xd6\xa7\x41\xd9\x39\x58\xad\ +\x77\x47\x18\xc6\x59\xb0\x48\x60\x3c\x9a\x36\x4b\xea\x75\xa0\xa4\ +\x4b\x52\xda\xa4\x14\xfb\xd4\x9d\x82\xfd\xe1\xed\x61\xc9\xf0\xd7\ +\x9e\xd1\x9a\x0c\x8b\xbe\xce\xab\x86\xa1\x5f\x65\x49\x65\x58\x54\ +\xd3\xdc\xaa\xc9\x10\xcb\xc8\x79\x6d\x16\xce\x12\x1a\x62\x91\x6d\ +\xf3\x72\x6c\x4b\xf0\xfe\x52\x57\x18\x83\x61\xdc\x04\x16\x09\x8c\ +\xc7\x83\x03\x39\xe5\xd7\x2d\x6b\xb3\xa4\xa6\x42\x4c\x93\x41\x12\ +\x4b\xea\x61\xb1\x41\xf0\xd3\xe5\x69\x9a\xac\x8f\x9b\x5a\x5a\x61\ +\xe5\xe1\x52\x78\x2f\xab\x42\x77\xeb\x63\x2d\xd6\xda\x46\xa2\x0d\ +\x7e\x32\x5b\x6b\x7f\x04\x4a\x29\xe5\x2c\xbd\x3b\xc2\x30\xae\x80\ +\x45\x02\xe3\x35\xe0\xc0\x4e\x4e\x7b\x77\xa1\x58\x58\x05\x4a\x89\ +\xe7\x91\x3a\x77\xa9\x1d\xf2\x6e\xa0\x98\x85\x27\xf6\x17\xc3\x73\ +\x47\x4a\xa1\x5e\xc5\x0a\xbc\xb8\xbe\x19\x1e\xd8\x9e\x0f\x2f\xb7\ +\x59\x52\x8f\x4d\x70\xdd\x0a\xfc\x97\x12\xb2\x70\x2e\x80\x6d\x45\ +\xb5\xaa\x5f\xc3\x0f\x15\x01\x55\xae\x5c\x80\x02\x21\xc6\xa0\xff\ +\x8e\xc8\x59\xec\x02\x25\xee\x60\xb3\xde\x1d\x61\x18\x57\xc2\x22\ +\x81\xf1\x3a\x70\xa0\xdf\x81\x97\x51\x28\x16\xc8\x34\xea\x29\x6c\ +\xa9\x3a\x77\x49\x40\x01\x79\x4f\x0c\x8a\x83\xbb\xba\x2b\x96\xd4\ +\x9f\xe6\xa8\x3b\xcb\xdf\x5b\x56\x0f\x13\xbe\x51\x2c\xa9\x97\x0d\ +\x4e\x80\x6e\x4e\x3c\xcb\xcf\xab\x6b\x86\xd9\x19\x85\xf0\x4e\x56\ +\x85\x26\x0b\xe7\xcb\x12\x43\x45\x4a\x63\xbf\x48\xe9\x62\x2b\x0a\ +\xb0\xcd\x05\xb6\x70\x66\xbc\x14\x16\x09\x8c\xd7\x82\x83\xfe\x1a\ +\x9c\xd8\xc8\x89\x6f\x26\x28\xb6\xd4\x52\x1c\x7e\xd3\xa4\xbe\x76\ +\x64\x27\xf8\xb6\xa0\x46\x64\x05\xd0\xa4\xaf\x06\xb2\xa4\x5e\x77\ +\xa6\x46\xa4\x4b\x3a\x3a\x2b\xa0\xa1\xa5\x15\x56\x1c\x2e\x15\xb1\ +\x07\x55\x8d\xea\xe7\xce\x6e\x61\x06\x51\x0c\xe9\x5a\x14\x34\x92\ +\x41\x47\x54\x2b\xb1\x2d\xc4\xfb\xa4\x5c\xef\xce\x30\x8c\x5e\xb0\ +\x48\x60\xbc\x1a\x9c\x00\xa8\xc2\xd1\x02\x14\x0b\x6f\xe0\x75\x29\ +\xb6\x1b\x41\x12\x4b\x6a\x3a\x2e\xd8\x3e\xb1\x2b\xbc\x7a\xbc\x0c\ +\xe6\xef\x2d\x12\xc7\x09\xf6\x42\xc7\x16\x64\x49\xbd\x3a\xab\x1c\ +\x16\x0d\x74\x8c\x25\xf5\xa7\x28\x3e\x66\xee\x2e\x84\xcc\x2a\xf5\ +\xa5\x94\xc3\x02\x7c\x61\xd6\x79\xb1\x30\xad\x77\x34\x18\xe4\x0b\ +\x3c\xf8\x02\x14\x97\xc6\xc3\x7a\x77\x84\x61\xf4\x86\x45\x02\xc3\ +\x80\x10\x0b\xd9\x78\xb9\x05\xc5\xc2\x0b\xa0\xc4\x2b\x0c\xd5\xb9\ +\x4b\x02\x9a\x3f\xa9\x62\xe3\xcd\x69\x11\xf0\xf8\xbe\x22\x58\x75\ +\xb4\x4c\x04\x2a\xda\x0b\x05\x44\x92\x25\xf5\x4b\xc7\x4a\x61\xc5\ +\xd0\x44\x11\x30\x69\x2f\xfb\xca\x1b\xe0\xa1\x9d\xf9\xf0\x6d\xbe\ +\x7a\x0b\x67\x2a\xa5\x7c\x5b\xd7\x08\x78\x62\x50\x3c\x24\x05\x49\ +\x11\x3b\xda\x91\x43\xa0\x88\x83\x2f\xf5\xee\x08\xc3\xc8\x02\x8b\ +\x04\x86\xe9\x00\x4e\x10\xdf\xa3\x50\xb8\x10\xbf\xbc\x13\xdb\x42\ +\x6c\x89\x3a\x77\x49\x10\xd5\x66\x49\x7d\x77\x9b\x25\xf5\x7a\x95\ +\x96\xd4\x94\x6a\x79\xe9\x86\x6c\xb8\x25\x2d\x1c\x9e\xc4\x89\x9a\ +\x52\x31\xad\x51\xdc\xd0\x2c\x76\x32\x5e\x3b\xae\xcd\xc2\x79\x58\ +\x5c\x30\x0a\x94\x04\xb8\x20\x46\x0a\xe3\xce\x8e\x94\x82\xf2\x59\ +\xaf\x64\x0b\x67\x86\xf9\x2d\x2c\x12\x18\xe6\x2c\xda\x02\xd4\x5e\ +\x45\xb1\xf0\x01\x5e\xe7\x61\x7b\x00\x9b\x14\xee\x4a\x54\x34\xe9\ +\x7f\xa3\x3b\xc3\xe7\xb9\xd5\x30\x03\xc5\x02\x15\x55\xb2\x17\x0a\ +\x30\x5c\x93\x55\x21\x62\x16\x66\xf4\x8d\x81\xe9\xd8\x02\x4d\x6c\ +\xf9\x37\xa3\x1e\x78\xfe\x48\x29\x2c\xda\x5f\x0c\x65\x1a\x2c\x9c\ +\x3b\x87\x04\x88\x9d\x83\x5b\xd3\xa4\x73\xb3\x24\x41\xf0\x3a\xb6\ +\x47\xf1\x33\x2f\xd4\xbb\x33\x0c\x23\x23\x2c\x12\x18\xc6\x0c\x38\ +\x71\x54\xe0\x65\x3a\x4e\xaa\xaf\x80\x52\x3c\xe7\x2a\x9d\xbb\xd4\ +\x0e\x95\x63\x9e\x98\x94\x2e\xd2\x25\x29\x6d\x92\xca\x35\xdb\x0b\ +\x95\x85\x5e\xb0\xb7\x08\xde\x3c\x51\x2e\x82\x07\x29\x05\xd3\xc8\ +\xba\xbc\x6a\x98\xbe\xb3\x10\x0e\x55\xa8\xf7\x28\x32\x5a\x38\x93\ +\x10\x09\x96\xcf\xc2\xf9\x3b\x6c\x53\xf1\x33\xce\xd0\xbb\x23\x0c\ +\x23\x33\x2c\x12\x18\xc6\x0a\x38\x91\x1c\xc1\xcb\xd5\x28\x16\xc8\ +\x07\x82\xc4\x42\x3f\x9d\xbb\x24\xa0\xe2\x8a\xff\xe8\x13\x0d\xb7\ +\xa7\x47\xc0\xdc\x8c\x22\xf8\x57\x66\xb9\x30\x82\xb2\x17\x32\x9c\ +\xba\xe5\xc7\x5c\xb8\x34\x21\x04\x1e\xc2\x49\x9d\x8c\x98\xbe\xd0\ +\x60\xe1\x4c\xdc\xd8\x25\x42\x56\x0b\xe7\x2c\x6c\x33\xf1\x33\x5d\ +\xab\x77\x47\x18\xc6\x1d\x90\xee\x09\x66\x18\x59\xc1\x89\x65\x7d\ +\x9b\x25\xf5\x7d\xa0\x38\x4d\xc6\xe8\xdb\x23\x05\xb2\x8e\x7e\xe5\ +\xa2\x44\x98\xd2\x53\xb1\xa4\x26\x6b\x69\x35\x90\x95\xb5\x5a\x3b\ +\x6b\x23\x83\xdb\x2c\x9c\x47\xc9\x67\xe1\x4c\xaa\x87\xb2\x57\x96\ +\xe1\xe7\xa8\xde\x69\x8a\x61\xbc\x0c\x16\x09\x0c\x63\x07\x6d\x81\ +\x6d\x64\x49\xfd\x1e\x5e\x1f\xc3\x76\x2f\x48\xf2\x1c\x0d\x8d\x0e\ +\x84\x4d\xe3\x52\xe1\x83\xec\x4a\x78\x24\xa3\x10\x4e\xa9\xb0\xa4\ +\x56\x4b\x7c\x9b\x85\xf3\x5f\xba\x45\x82\x64\x07\x0b\x14\x5f\xb2\ +\x06\xdb\xc3\xf8\xd9\x9d\xd6\xbb\x33\x0c\xe3\x6e\x48\x31\xb8\x31\ +\x8c\xbb\x81\x13\x4e\x31\x5e\x1e\x40\xb1\xf0\x32\x28\x96\xd4\xe3\ +\x74\xee\x52\x3b\x37\x77\x09\x87\x6b\x52\xc2\x60\xe9\xc1\x12\x78\ +\xfa\x50\x09\xd4\xaa\xb0\xa4\xb6\x95\x00\x5f\x1f\x78\xa0\x57\x34\ +\xcc\xed\x17\x0b\x11\x12\x98\x4b\x9d\xc5\x2f\xa0\xc4\x1d\xfc\xa4\ +\x77\x47\x18\xc6\x5d\x61\x91\xc0\x30\x1a\xc0\x09\x68\x2f\x5e\xc6\ +\xa3\x58\xb8\x0e\xaf\xcb\xb0\x75\xd7\xb9\x4b\x82\x20\x3f\x1f\x98\ +\xd7\x3f\x56\xac\xec\xa9\xf0\xd1\x87\xa7\xd4\x59\x52\x5b\xe2\xca\ +\x4e\x61\xf0\xf4\x90\x04\xe8\x19\x2e\x9d\x85\xf3\x19\x50\x1c\x3f\ +\xdf\xc2\xcf\xc7\xb1\x7f\x34\xc3\x78\x19\x2c\x12\x18\xc6\x01\xe0\ +\x64\xf4\x09\x4e\xc2\xa2\x52\x1f\xb6\x47\xb0\x49\x91\xef\xd7\x39\ +\xc4\x1f\xde\x1b\x91\x0c\x0f\x14\x29\xf1\x0a\x3b\x4a\xb4\x1f\xc7\ +\xf7\x89\x08\x84\x65\x43\xe2\x61\x52\x72\xa8\x03\x7a\xe8\x50\xe8\ +\x8f\x7b\x06\xdb\x93\xf8\x79\x68\x8b\xbc\x64\x18\x46\xc0\x22\x81\ +\x61\x1c\x04\x4e\x4c\x94\x2f\xb8\x04\xc5\xc2\x5b\x74\xc5\x76\x3b\ +\x48\x52\xe2\x79\x44\x5c\x30\x6c\x9d\xa0\x58\x52\xcf\xc9\x28\x84\ +\xfc\x3a\xfb\x6b\x06\x45\x19\xfc\xc4\xb1\x02\x1d\x2f\xc8\x97\xd1\ +\x28\x2c\x9c\x67\xe0\x67\x90\xa9\x77\x47\x18\xc6\x93\x60\x91\xc0\ +\x30\x0e\x06\x27\x2a\xda\xee\x9e\x8c\x62\xe1\x45\xbc\x3e\x8b\x6d\ +\x98\xce\x5d\x6a\xa7\xa3\x25\xf5\xb3\x47\x4a\xa0\xa1\xd9\xfa\x6e\ +\x3c\x59\x38\xd3\xb1\x05\x05\x26\xc6\x1a\xa4\x2b\xa5\xbc\x07\xdb\ +\x34\x7c\xcf\xbf\xd1\xbb\x23\x0c\xe3\x89\xb0\x48\x60\x18\x27\x81\ +\x13\xd7\xcf\x78\x19\x8e\x62\x81\x76\x14\x68\x67\x21\x45\xe7\x2e\ +\x09\x8c\x96\xd4\x77\x76\xa7\x78\x85\x02\x51\x79\xd1\x1c\xa3\x13\ +\x42\x44\x4a\xe3\xc0\x28\x29\x0a\x4e\x76\xa4\x08\x94\x6a\x98\xaf\ +\xe0\xfb\xac\xbe\x1c\x24\xc3\x30\x16\x61\x91\xc0\x30\x4e\x06\x27\ +\xb1\xd5\x28\x14\x3e\x06\x25\x56\x81\x62\x16\xa4\x28\x22\xd0\x3d\ +\x2c\x00\x3e\x1a\x99\x02\x1b\xf2\x15\x4b\xea\x03\xe5\xbf\x56\x57\ +\x4c\x0f\x33\xc0\x93\x83\xe3\xe1\x0f\xf2\x59\x38\x53\x5e\x27\xed\ +\xd0\x3c\x86\xef\x6b\xa9\xde\x9d\x61\x18\x4f\x87\x45\x02\xc3\xb8\ +\x00\x9c\xd0\xc8\x91\x69\x2e\x8a\x85\xd7\xf0\xfa\x34\xb6\xeb\x75\ +\xee\x52\x3b\xe3\x13\x43\x60\xd7\xa4\xae\xb0\xea\x58\x19\x2c\x3f\ +\x54\x02\xf7\xf4\x88\x92\xd5\xc2\x79\x1d\x28\x47\x0b\x07\xf5\xee\ +\x08\xc3\x78\x0b\x2c\x12\x18\xc6\x85\xe0\x04\x97\x85\x97\x1b\x50\ +\x2c\x8c\x01\xc5\x92\x7a\x90\xae\x1d\x6a\x83\xf4\xc0\xfd\x3d\xa3\ +\x44\x93\x10\x2a\x8b\x3d\x1d\xdf\xbb\xff\xea\xdd\x11\x86\xf1\x36\ +\x58\x24\x30\x8c\x0e\xe0\x84\xb7\x09\x85\xc2\x50\xfc\xf2\x6e\x6c\ +\x8f\x63\x4b\xd0\xb9\x4b\x32\x52\x8e\x6d\x31\xb6\x7f\xe2\xfb\xe5\ +\xba\xf2\x91\x0c\xc3\xb4\xc3\x22\x81\x61\x74\xa2\xcd\x92\xfa\x65\ +\x14\x0b\xef\xe3\xf5\x51\x6c\x7f\xc3\x66\xd0\xb7\x57\x52\x40\x81\ +\x88\x6f\x61\x9b\x83\xef\x51\xbe\xce\x7d\x61\x18\xaf\x86\x45\x02\ +\xc3\xe8\x0c\x4e\x84\xb4\x62\x26\x4b\xea\x57\x41\x71\x99\xbc\x52\ +\xe7\x2e\xe9\xc9\x0f\xa0\x94\x52\xde\xa9\x77\x47\x18\x86\x61\x91\ +\xc0\x30\xd2\x80\x13\xe3\x61\xbc\x5c\x85\x62\xe1\x0a\x50\xc4\x42\ +\x1f\x9d\xbb\xe4\x4a\xb2\xb1\xcd\xc2\xf7\x60\x8d\xde\x1d\x61\x18\ +\xe6\x57\x58\x24\x30\x8c\x64\xe0\x44\xf9\x25\x0a\x85\xaf\x41\x39\ +\x7e\xa0\x5a\x00\x52\x46\x13\x3a\x08\xf2\xa6\x26\xcf\x8b\xa7\xf0\ +\xef\xae\xd5\xbb\x33\x0c\xc3\xfc\x16\x16\x09\x0c\x23\x21\x6d\x96\ +\xd4\x2b\x50\x2c\xbc\x83\xd7\x85\xd8\xee\x04\xcf\x7a\x5e\x8d\x16\ +\xce\xb4\x7b\x90\xa3\x77\x67\x18\x86\x31\x8d\x27\x0d\x3a\x0c\xe3\ +\x71\xe0\x04\x5a\x88\x97\x29\x28\x16\x5e\x02\x25\x65\x72\xb4\xce\ +\x5d\x72\x04\xdb\x41\x89\x3b\xd8\xa2\x77\x47\x18\x86\xb1\x0c\x8b\ +\x04\x86\x71\x03\x70\x42\xdd\x8d\x97\x31\x28\x16\x6e\xc4\xeb\x52\ +\x6c\x5d\xf5\xed\x91\x2a\xf2\xb0\xcd\x06\xb6\x70\x66\x18\xb7\x81\ +\x45\x02\xc3\xb8\x11\x38\xb9\xae\x45\xa1\x40\x45\x85\x66\x60\x9b\ +\x89\x4d\xba\xba\xc9\x26\xa0\x7a\xcf\xb4\x0b\xb2\x18\xfb\x5f\xa9\ +\x77\x67\x18\x86\xb1\x1d\x16\x09\x0c\xe3\x66\xe0\x44\x5b\x87\x97\ +\x85\x28\x16\xde\xc0\xeb\x53\xd8\x6e\x05\x49\x2c\xa9\x4d\xf0\x19\ +\x28\xd5\x12\x8f\xe9\xdd\x11\x86\x61\xec\x87\x45\x02\xc3\xb8\x29\ +\x38\xf1\x9e\xc6\xcb\x6d\x28\x16\x5e\x00\xc5\x92\xfa\x42\x9d\xbb\ +\xd4\x91\xfd\xa0\xf8\x2c\x7c\xad\x77\x47\x18\x86\x51\x0f\x8b\x04\ +\x86\x71\x73\x70\x22\xfe\x09\x85\xc2\xc5\xf8\xe5\x64\x50\xca\x18\ +\x27\xeb\xd8\x9d\x12\x6c\x0b\xb0\xbd\xc8\x16\xce\x0c\xe3\xfe\xb0\ +\x48\x60\x18\x0f\xa0\x2d\x10\xf0\x4d\x14\x0b\x6b\x41\x09\x0e\x9c\ +\x86\x2d\xc8\x85\x5d\x20\x6f\x85\x57\xb0\xcd\xc3\xbe\x94\xb8\xf0\ +\xf7\x32\x0c\xe3\x44\x58\x24\x30\x8c\x07\x81\x13\x74\x15\x5e\x66\ +\xb7\x95\x78\xa6\x22\x45\xae\xb0\xa4\xde\x88\xed\x41\xfc\xdd\xfb\ +\x5c\xf0\xbb\x18\x86\x71\x21\x2c\x12\x18\xc6\x03\xc1\x09\x3b\x13\ +\x14\x4b\xea\xcb\xf0\xba\x02\xdb\x40\x27\xfc\x9a\xe3\xd8\x66\xe0\ +\xef\xfa\xc4\x09\xaf\xcd\x30\x8c\x04\xb0\x48\x60\x18\x0f\x06\x27\ +\xf0\x6f\xda\x2c\xa9\xef\x01\xc5\x92\x3a\xce\x01\x2f\x4b\x69\x8c\ +\x4b\xb0\x2d\xc7\xd7\xaf\x77\xc0\xeb\x31\x0c\x23\x29\x2c\x12\x18\ +\xc6\xc3\x69\x0b\x20\x5c\xd5\x66\x49\x3d\x1f\xdb\x5f\xb1\x05\xa8\ +\x78\x29\x2a\xa5\xbc\x1a\xdb\x23\xf8\x9a\x67\x1c\xd8\x45\x86\x61\ +\x24\x85\x45\x02\xc3\x78\x09\x38\xb1\x97\xe2\xe5\x41\x14\x0b\x2f\ +\x83\x72\x04\x31\xd1\x8e\x7f\xfe\x23\x28\x71\x07\xdb\x9d\xd2\x39\ +\x86\x61\xa4\x84\x45\x02\xc3\x78\x19\x38\xd1\x1f\xc4\xcb\x24\x14\ +\x0b\xbf\xc3\xeb\x33\xd8\x7a\x5a\xf8\xf1\x53\xd8\x1e\x66\x0b\x67\ +\x86\xf1\x4e\x58\x24\x30\x8c\x97\x82\x13\xff\x7f\x51\x28\xac\xc3\ +\x2f\xa7\x62\x9b\x83\x2d\xb2\xc3\xb7\x8d\x16\xce\x4b\xf1\xe7\x6a\ +\xf4\xe8\x1f\xc3\x30\xfa\xc3\x22\x81\x61\xbc\x18\x14\x00\x0d\x78\ +\x59\x86\x62\xe1\x6d\x50\x0a\x31\x4d\xc6\xf6\x21\xb6\x99\xf8\xbd\ +\x6c\x3d\xfb\xc6\x30\x8c\xfe\xb0\x48\x60\x18\x86\xc4\x42\x3e\x5e\ +\xee\x42\xb1\x30\x0b\xbf\x2e\xd2\xbb\x3f\x0c\xc3\xc8\xc1\xff\x03\ +\xc1\xce\xe8\xeb\x30\xf2\xe8\x71\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ " qt_resource_name = "\ @@ -4044,13 +7143,19 @@ \x00\x4c\ \x00\x6f\x00\x67\x00\x6f\x00\x5f\x00\x71\x00\x75\x00\x61\x00\x64\x00\x72\x00\x61\x00\x64\x00\x61\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ +\x00\x15\ +\x0a\xcd\xd1\x87\ +\x00\x4c\ +\x00\x6f\x00\x67\x00\x6f\x00\x5f\x00\x70\x00\x67\x00\x68\x00\x79\x00\x64\x00\x72\x00\x6f\x00\x5f\x00\x68\x00\x65\x00\x78\x00\x61\ +\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct = "\ \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\x02\x00\x00\x00\x03\ +\x00\x00\x00\x14\x00\x02\x00\x00\x00\x03\x00\x00\x00\x03\ \x00\x00\x00\x32\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\x70\x00\x00\x00\x00\x00\x01\x00\x00\xfa\x9e\ \x00\x00\x00\x48\x00\x00\x00\x00\x00\x01\x00\x00\x0e\x14\ " diff --git a/resources.qrc b/resources.qrc index f197981..9a316e4 100644 --- a/resources.qrc +++ b/resources.qrc @@ -1,6 +1,7 @@ icon.png + Logo_pghydro_hexa.png Logo_quadrada.png