code
stringlengths
22
1.05M
apis
listlengths
1
3.31k
extract_api
stringlengths
75
3.25M
"""Remove dead ads table Revision ID: <KEY> Revises: 1307b62614a4 Create Date: 2020-02-27 23:14:41.314000 """ # revision identifiers, used by Alembic. revision = '<KEY>' down_revision = '1307b62614a4' from alembic import op # lgtm[py/unused-import] import sqlalchemy as sa # lgtm[py/unused-import] from sqlalchemy.dialects import postgresql def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.drop_index('ind_ads_end', table_name='ads') op.drop_table('ads') # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('ads', sa.Column('id', sa.INTEGER(), autoincrement=True, nullable=False), sa.Column('owner', sa.VARCHAR(length=254), autoincrement=False, nullable=False), sa.Column('link_target', sa.TEXT(), autoincrement=False, nullable=False), sa.Column('file', sa.INTEGER(), autoincrement=False, nullable=False), sa.Column('start', postgresql.TIMESTAMP(), autoincrement=False, nullable=True), sa.Column('end', postgresql.TIMESTAMP(), autoincrement=False, nullable=True), sa.ForeignKeyConstraint(['file'], [u'media.mediaid'], name=u'ads_file_fkey', onupdate=u'CASCADE', ondelete=u'CASCADE'), sa.PrimaryKeyConstraint('id', name=u'ads_pkey') ) op.create_index('ind_ads_end', 'ads', ['end'], unique=False) # ### end Alembic commands ###
[ "sqlalchemy.ForeignKeyConstraint", "alembic.op.drop_table", "sqlalchemy.VARCHAR", "sqlalchemy.PrimaryKeyConstraint", "sqlalchemy.TEXT", "sqlalchemy.INTEGER", "alembic.op.drop_index", "sqlalchemy.dialects.postgresql.TIMESTAMP", "alembic.op.create_index" ]
[((434, 480), 'alembic.op.drop_index', 'op.drop_index', (['"""ind_ads_end"""'], {'table_name': '"""ads"""'}), "('ind_ads_end', table_name='ads')\n", (447, 480), False, 'from alembic import op\n'), ((485, 505), 'alembic.op.drop_table', 'op.drop_table', (['"""ads"""'], {}), "('ads')\n", (498, 505), False, 'from alembic import op\n'), ((1313, 1373), 'alembic.op.create_index', 'op.create_index', (['"""ind_ads_end"""', '"""ads"""', "['end']"], {'unique': '(False)'}), "('ind_ads_end', 'ads', ['end'], unique=False)\n", (1328, 1373), False, 'from alembic import op\n'), ((1131, 1253), 'sqlalchemy.ForeignKeyConstraint', 'sa.ForeignKeyConstraint', (["['file']", "[u'media.mediaid']"], {'name': 'u"""ads_file_fkey"""', 'onupdate': 'u"""CASCADE"""', 'ondelete': 'u"""CASCADE"""'}), "(['file'], [u'media.mediaid'], name=u'ads_file_fkey',\n onupdate=u'CASCADE', ondelete=u'CASCADE')\n", (1154, 1253), True, 'import sqlalchemy as sa\n'), ((1255, 1302), 'sqlalchemy.PrimaryKeyConstraint', 'sa.PrimaryKeyConstraint', (['"""id"""'], {'name': 'u"""ads_pkey"""'}), "('id', name=u'ads_pkey')\n", (1278, 1302), True, 'import sqlalchemy as sa\n'), ((673, 685), 'sqlalchemy.INTEGER', 'sa.INTEGER', ([], {}), '()\n', (683, 685), True, 'import sqlalchemy as sa\n'), ((747, 769), 'sqlalchemy.VARCHAR', 'sa.VARCHAR', ([], {'length': '(254)'}), '(length=254)\n', (757, 769), True, 'import sqlalchemy as sa\n'), ((838, 847), 'sqlalchemy.TEXT', 'sa.TEXT', ([], {}), '()\n', (845, 847), True, 'import sqlalchemy as sa\n'), ((909, 921), 'sqlalchemy.INTEGER', 'sa.INTEGER', ([], {}), '()\n', (919, 921), True, 'import sqlalchemy as sa\n'), ((984, 1006), 'sqlalchemy.dialects.postgresql.TIMESTAMP', 'postgresql.TIMESTAMP', ([], {}), '()\n', (1004, 1006), False, 'from sqlalchemy.dialects import postgresql\n'), ((1066, 1088), 'sqlalchemy.dialects.postgresql.TIMESTAMP', 'postgresql.TIMESTAMP', ([], {}), '()\n', (1086, 1088), False, 'from sqlalchemy.dialects import postgresql\n')]
""" http://yutori-datascience.hatenablog.com/entry/2014/12/10/123157 """ from numba import cuda import numpy as np from numba import double from numba.decorators import jit from numba import guvectorize import time import math @jit def pairwise_numba(X,D): M,N=X.shape[0],X.shape[1] for i in range(M): for j in range(M): d=0.0 for k in range(N): tmp=X[i,k]-X[j,k] d+=tmp *tmp D[i,j]=np.sqrt(d) @jit('void(f8[:,:],f8[:,:])') def pairwise_numba_with_type(X,D): M,N=X.shape[0],X.shape[1] for i in range(M): for j in range(M): d=0.0 for k in range(N): tmp=X[i,k]-X[j,k] d+=tmp *tmp D[i,j]=np.sqrt(d) @guvectorize(['void(f8[:, :], f8[:, :])'], '(x, y)->(x, x)') def pairwise_vectorize(X, D): M = X.shape[0] N = X.shape[1] for i in range(M): for j in range(M): d = 0.0 for k in range(N): tmp = X[i, k] - X[j, k] d += tmp * tmp D[i, j] = np.sqrt(d) def pairwise_python(X,D): M,N=X.shape[0],X.shape[1] for i in range(M): for j in range(M): d=0.0 for k in range(N): tmp=X[i,k]-X[j,k] d+=tmp *tmp D[i,j]=np.sqrt(d) @cuda.jit('void(f8[:, :], f8[:, :])') def pairwise_numba_cuda1(X, D): M = X.shape[0] N = X.shape[1] i, j = cuda.grid(2) if i < M and j < M: d = 0.0 for k in range(N): tmp = X[i, k] - X[j, k] d += tmp * tmp D[i, j] = math.sqrt(d) def measure_time(func,X,D): start=time.time() func(X,D) end=time.time() print("elapsed time",end-start) def main(): griddim = (100, 100) blockdim =(16, 16) SIZE=5000 X=np.random.random((SIZE,3)) D=np.empty((SIZE,SIZE)) measure_time(pairwise_python,X,D) measure_time(pairwise_numba,X,D) measure_time(pairwise_numba_with_type,X,D) measure_time(pairwise_vectorize,X, D) start=time.time() pairwise_numba_cuda1[griddim, blockdim](X, D) end=time.time() print("elapsed gpu=",end-start) if __name__ == '__main__': main()
[ "numpy.sqrt", "numpy.random.random", "numba.decorators.jit", "numba.cuda.grid", "math.sqrt", "numba.cuda.jit", "numba.guvectorize", "numpy.empty", "time.time" ]
[((422, 450), 'numba.decorators.jit', 'jit', (['"""void(f8[:,:],f8[:,:])"""'], {}), "('void(f8[:,:],f8[:,:])')\n", (425, 450), False, 'from numba.decorators import jit\n'), ((647, 706), 'numba.guvectorize', 'guvectorize', (["['void(f8[:, :], f8[:, :])']", '"""(x, y)->(x, x)"""'], {}), "(['void(f8[:, :], f8[:, :])'], '(x, y)->(x, x)')\n", (658, 706), False, 'from numba import guvectorize\n'), ((1167, 1203), 'numba.cuda.jit', 'cuda.jit', (['"""void(f8[:, :], f8[:, :])"""'], {}), "('void(f8[:, :], f8[:, :])')\n", (1175, 1203), False, 'from numba import cuda\n'), ((1290, 1302), 'numba.cuda.grid', 'cuda.grid', (['(2)'], {}), '(2)\n', (1299, 1302), False, 'from numba import cuda\n'), ((1518, 1529), 'time.time', 'time.time', ([], {}), '()\n', (1527, 1529), False, 'import time\n'), ((1546, 1557), 'time.time', 'time.time', ([], {}), '()\n', (1555, 1557), False, 'import time\n'), ((1660, 1687), 'numpy.random.random', 'np.random.random', (['(SIZE, 3)'], {}), '((SIZE, 3))\n', (1676, 1687), True, 'import numpy as np\n'), ((1690, 1712), 'numpy.empty', 'np.empty', (['(SIZE, SIZE)'], {}), '((SIZE, SIZE))\n', (1698, 1712), True, 'import numpy as np\n'), ((1873, 1884), 'time.time', 'time.time', ([], {}), '()\n', (1882, 1884), False, 'import time\n'), ((1937, 1948), 'time.time', 'time.time', ([], {}), '()\n', (1946, 1948), False, 'import time\n'), ((1469, 1481), 'math.sqrt', 'math.sqrt', (['d'], {}), '(d)\n', (1478, 1481), False, 'import math\n'), ((409, 419), 'numpy.sqrt', 'np.sqrt', (['d'], {}), '(d)\n', (416, 419), True, 'import numpy as np\n'), ((634, 644), 'numpy.sqrt', 'np.sqrt', (['d'], {}), '(d)\n', (641, 644), True, 'import numpy as np\n'), ((969, 979), 'numpy.sqrt', 'np.sqrt', (['d'], {}), '(d)\n', (976, 979), True, 'import numpy as np\n'), ((1154, 1164), 'numpy.sqrt', 'np.sqrt', (['d'], {}), '(d)\n', (1161, 1164), True, 'import numpy as np\n')]
#!/usr/bin/env python import itertools import torch import mlflow from selective_gp.utils import ( load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists) import click def run_single(device, M, noise, epochs, adaptive, prior_weight, dataset_name, fold, n_folds): # Get data and model test_size = 1 / n_folds if n_folds > 1 else 0 dataset = load_data(dataset_name, seed=fold, device=device, test_size=test_size) dataset.add_noise(noise) collapsed = (dataset.task_type == "regression") model = get_model( dataset, n_inducing=M, device=device, collapsed=collapsed, prior_weight=prior_weight) # Initialize hyperparameters gp, = model.gps gp.kernel.outputscale = 1.0 gp.kernel.base_kernel.lengthscale = 1.0 if not adaptive: # Fit model model.fit(X=dataset.X_train, Y=dataset.Y_train, max_epochs=epochs) else: # Pre-fit model.fit(X=dataset.X_train, Y=dataset.Y_train, max_epochs=epochs // 2) # Prune gp.prior_point_process.rate.fill_(prior_weight) gp.variational_point_process.probabilities = 0.5 model.fit_score_function_estimator( X=dataset.X_train, Y=dataset.Y_train, learning_rate=0.3, max_epochs=300, n_mcmc_samples=64) remove_points(gp) eprint(f"Post pruning: {gp.n_inducing}\n") # Post-fit model.fit(X=dataset.X_train, Y=dataset.Y_train, max_epochs=epochs) # Log metrics scaled_log_lik, KL = get_ELBO(model, dataset, reps=1) ELBO = scaled_log_lik - KL mlflow.log_metrics({ "ELBO": ELBO, "n_inducing": gp.n_inducing, }) if adaptive: vpp = gp.variational_point_process mlflow.log_metrics({ "mean_M": vpp.expected_points.item(), "var_M": vpp.expected_points_variance.item(), }) @click.command() @click.option("--epochs", default=1000) @click.option("--device", default="cpu", type=click.Choice(["cpu", "cuda"])) @click.option("--dataset-name", default="uci_energy") @click.option("--inducing-range", nargs=3, default=(10, 101, 10)) @click.option("--noise", default=0.0) @click.option("--n-folds", default=5) @click.option("--adaptive/--no-adaptive", default=False) @click.option("--prior-weight", default=0.5) def run_all(dataset_name, epochs, device, n_folds, adaptive, prior_weight, noise, inducing_range): dataset = load_data(dataset_name) eprint(f"{bold('Dataset: ')} {dataset_name}\n" f"{bold('Task type: ')} {dataset.task_type}\n" f"{bold('N: ')} {len(dataset)}\n" f"{bold('D: ')} {dataset.input_dims}\n") Ms = torch.arange(*inducing_range).tolist() # ID of currently running experiment exp_id = get_experiment_id("controlled_setting_real_data") for M, fold in itertools.product(Ms, range(1, n_folds + 1)): eprint(f"{bold('Noise: ')} {noise:.3f}\n" f"{bold('M: ')} {M}\n" f"Fold {fold}/{n_folds}") # Set parameters defining this run params = {"M": M, "noise": noise, "epochs": epochs, "adaptive": adaptive, "prior_weight": prior_weight, "dataset_name": dataset_name, "fold": fold} if run_exists(params): eprint(green("Already exists\n")) continue with mlflow.start_run(experiment_id=exp_id): mlflow.log_params(params) run_single(n_folds=n_folds, device=device, **params) eprint() if __name__ == "__main__": run_all()
[ "click.Choice", "selective_gp.utils.eprint", "selective_gp.utils.get_ELBO", "mlflow.log_metrics", "click.option", "selective_gp.utils.run_exists", "selective_gp.utils.get_model", "selective_gp.utils.green", "selective_gp.utils.remove_points", "mlflow.log_params", "selective_gp.utils.bold", "ml...
[((1954, 1969), 'click.command', 'click.command', ([], {}), '()\n', (1967, 1969), False, 'import click\n'), ((1971, 2009), 'click.option', 'click.option', (['"""--epochs"""'], {'default': '(1000)'}), "('--epochs', default=1000)\n", (1983, 2009), False, 'import click\n'), ((2088, 2140), 'click.option', 'click.option', (['"""--dataset-name"""'], {'default': '"""uci_energy"""'}), "('--dataset-name', default='uci_energy')\n", (2100, 2140), False, 'import click\n'), ((2142, 2206), 'click.option', 'click.option', (['"""--inducing-range"""'], {'nargs': '(3)', 'default': '(10, 101, 10)'}), "('--inducing-range', nargs=3, default=(10, 101, 10))\n", (2154, 2206), False, 'import click\n'), ((2208, 2244), 'click.option', 'click.option', (['"""--noise"""'], {'default': '(0.0)'}), "('--noise', default=0.0)\n", (2220, 2244), False, 'import click\n'), ((2246, 2282), 'click.option', 'click.option', (['"""--n-folds"""'], {'default': '(5)'}), "('--n-folds', default=5)\n", (2258, 2282), False, 'import click\n'), ((2284, 2339), 'click.option', 'click.option', (['"""--adaptive/--no-adaptive"""'], {'default': '(False)'}), "('--adaptive/--no-adaptive', default=False)\n", (2296, 2339), False, 'import click\n'), ((2341, 2384), 'click.option', 'click.option', (['"""--prior-weight"""'], {'default': '(0.5)'}), "('--prior-weight', default=0.5)\n", (2353, 2384), False, 'import click\n'), ((423, 493), 'selective_gp.utils.load_data', 'load_data', (['dataset_name'], {'seed': 'fold', 'device': 'device', 'test_size': 'test_size'}), '(dataset_name, seed=fold, device=device, test_size=test_size)\n', (432, 493), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((613, 712), 'selective_gp.utils.get_model', 'get_model', (['dataset'], {'n_inducing': 'M', 'device': 'device', 'collapsed': 'collapsed', 'prior_weight': 'prior_weight'}), '(dataset, n_inducing=M, device=device, collapsed=collapsed,\n prior_weight=prior_weight)\n', (622, 712), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((1587, 1619), 'selective_gp.utils.get_ELBO', 'get_ELBO', (['model', 'dataset'], {'reps': '(1)'}), '(model, dataset, reps=1)\n', (1595, 1619), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((1655, 1718), 'mlflow.log_metrics', 'mlflow.log_metrics', (["{'ELBO': ELBO, 'n_inducing': gp.n_inducing}"], {}), "({'ELBO': ELBO, 'n_inducing': gp.n_inducing})\n", (1673, 1718), False, 'import mlflow\n'), ((2511, 2534), 'selective_gp.utils.load_data', 'load_data', (['dataset_name'], {}), '(dataset_name)\n', (2520, 2534), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((2863, 2912), 'selective_gp.utils.get_experiment_id', 'get_experiment_id', (['"""controlled_setting_real_data"""'], {}), "('controlled_setting_real_data')\n", (2880, 2912), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((1379, 1396), 'selective_gp.utils.remove_points', 'remove_points', (['gp'], {}), '(gp)\n', (1392, 1396), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((1405, 1447), 'selective_gp.utils.eprint', 'eprint', (['f"""Post pruning: {gp.n_inducing}\n"""'], {}), "(f'Post pruning: {gp.n_inducing}\\n')\n", (1411, 1447), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((3360, 3378), 'selective_gp.utils.run_exists', 'run_exists', (['params'], {}), '(params)\n', (3370, 3378), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((3613, 3621), 'selective_gp.utils.eprint', 'eprint', ([], {}), '()\n', (3619, 3621), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((2056, 2085), 'click.Choice', 'click.Choice', (["['cpu', 'cuda']"], {}), "(['cpu', 'cuda'])\n", (2068, 2085), False, 'import click\n'), ((2769, 2798), 'torch.arange', 'torch.arange', (['*inducing_range'], {}), '(*inducing_range)\n', (2781, 2798), False, 'import torch\n'), ((3461, 3499), 'mlflow.start_run', 'mlflow.start_run', ([], {'experiment_id': 'exp_id'}), '(experiment_id=exp_id)\n', (3477, 3499), False, 'import mlflow\n'), ((3513, 3538), 'mlflow.log_params', 'mlflow.log_params', (['params'], {}), '(params)\n', (3530, 3538), False, 'import mlflow\n'), ((2549, 2568), 'selective_gp.utils.bold', 'bold', (['"""Dataset: """'], {}), "('Dataset: ')\n", (2553, 2568), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((2602, 2621), 'selective_gp.utils.bold', 'bold', (['"""Task type: """'], {}), "('Task type: ')\n", (2606, 2621), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((2660, 2679), 'selective_gp.utils.bold', 'bold', (['"""N: """'], {}), "('N: ')\n", (2664, 2679), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((2713, 2732), 'selective_gp.utils.bold', 'bold', (['"""D: """'], {}), "('D: ')\n", (2717, 2732), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((3399, 3424), 'selective_gp.utils.green', 'green', (['"""Already exists\n"""'], {}), "('Already exists\\n')\n", (3404, 3424), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((2997, 3012), 'selective_gp.utils.bold', 'bold', (['"""Noise: """'], {}), "('Noise: ')\n", (3001, 3012), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n'), ((3047, 3062), 'selective_gp.utils.bold', 'bold', (['"""M: """'], {}), "('M: ')\n", (3051, 3062), False, 'from selective_gp.utils import load_data, get_model, get_ELBO, get_experiment_id, eprint, bold, green, remove_points, run_exists\n')]
import pytest from d1lod.graph import Graph from d1lod.interface import Interface @pytest.fixture(scope="module") def store(): return Graph('localhost', 8890, 'test') @pytest.fixture(scope="module") def graph(store): namespaces = { 'owl': 'http://www.w3.org/2002/07/owl#', 'rdfs': 'http://www.w3.org/2000/01/rdf-schema#', 'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', 'xsd': 'http://www.w3.org/2001/XMLSchema#', 'foaf': 'http://xmlns.com/foaf/0.1/', 'dcterms': 'http://purl.org/dc/terms/', 'datacite': 'http://purl.org/spar/datacite/', 'geolink': 'http://schema.geolink.org/1.0/base/main#', 'd1dataset': 'http://dataone.org/dataset/', 'd1person': 'http://dataone.org/person/', 'd1org': 'http://dataone.org/organization/', 'd1node': 'https://cn.dataone.org/cn/v1/node/', 'd1landing': 'https://search.dataone.org/#view/', "prov": "http://www.w3.org/ns/prov#" } graphh = Graph('localhost', 8890, 'test', ns=namespaces) return graphh @pytest.fixture(scope="module") def interface(graph): return Interface(graph)
[ "pytest.fixture", "d1lod.interface.Interface", "d1lod.graph.Graph" ]
[((85, 115), 'pytest.fixture', 'pytest.fixture', ([], {'scope': '"""module"""'}), "(scope='module')\n", (99, 115), False, 'import pytest\n'), ((175, 205), 'pytest.fixture', 'pytest.fixture', ([], {'scope': '"""module"""'}), "(scope='module')\n", (189, 205), False, 'import pytest\n'), ((1077, 1107), 'pytest.fixture', 'pytest.fixture', ([], {'scope': '"""module"""'}), "(scope='module')\n", (1091, 1107), False, 'import pytest\n'), ((140, 172), 'd1lod.graph.Graph', 'Graph', (['"""localhost"""', '(8890)', '"""test"""'], {}), "('localhost', 8890, 'test')\n", (145, 172), False, 'from d1lod.graph import Graph\n'), ((1008, 1055), 'd1lod.graph.Graph', 'Graph', (['"""localhost"""', '(8890)', '"""test"""'], {'ns': 'namespaces'}), "('localhost', 8890, 'test', ns=namespaces)\n", (1013, 1055), False, 'from d1lod.graph import Graph\n'), ((1141, 1157), 'd1lod.interface.Interface', 'Interface', (['graph'], {}), '(graph)\n', (1150, 1157), False, 'from d1lod.interface import Interface\n')]
from setuptools import setup ENVIRON_VERSION = "0.0.0" with open("README.md", "r") as f: README = f.read() setup( name="environ", packages=["environ"], version=ENVIRON_VERSION, install_requires=[], dependency_links=[], description="easy but incompetent .env loader", long_description=README, license="Apache", author="<NAME>", author_email="<EMAIL>", )
[ "setuptools.setup" ]
[((114, 370), 'setuptools.setup', 'setup', ([], {'name': '"""environ"""', 'packages': "['environ']", 'version': 'ENVIRON_VERSION', 'install_requires': '[]', 'dependency_links': '[]', 'description': '"""easy but incompetent .env loader"""', 'long_description': 'README', 'license': '"""Apache"""', 'author': '"""<NAME>"""', 'author_email': '"""<EMAIL>"""'}), "(name='environ', packages=['environ'], version=ENVIRON_VERSION,\n install_requires=[], dependency_links=[], description=\n 'easy but incompetent .env loader', long_description=README, license=\n 'Apache', author='<NAME>', author_email='<EMAIL>')\n", (119, 370), False, 'from setuptools import setup\n')]
import sublime import sublime_plugin import os from os import path class LoadtemplateCommand(sublime_plugin.TextCommand): def run(self, edit, **args): template_path = os.path.join( os.path.join(os.path.dirname(os.path.abspath(__file__)), 'templates'), args['module'], '{}.tpl'.format(args['template']) ) if path.exists(template_path): with open(template_path, 'r') as template_file: content = template_file.read() template_file.close() self.view.insert( edit, self.view.sel()[0].begin(), content ) else: message = "Unable to find template:\n\n{}\n\nPlease check if template exists!".format(template_path) sublime.error_message(message)
[ "os.path.abspath", "os.path.exists", "sublime.error_message" ]
[((326, 352), 'os.path.exists', 'path.exists', (['template_path'], {}), '(template_path)\n', (337, 352), False, 'from os import path\n'), ((667, 697), 'sublime.error_message', 'sublime.error_message', (['message'], {}), '(message)\n', (688, 697), False, 'import sublime\n'), ((218, 243), 'os.path.abspath', 'os.path.abspath', (['__file__'], {}), '(__file__)\n', (233, 243), False, 'import os\n')]
# Copyright 2018 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """Collections utilities.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function import collections def tf_namedtuple(name, fieldnames_and_docs): """A `namedtuple` class factory that supports field-docstrings. ``` cls = tf_namedtuple("MyNamedTuple",[("a", "Docs for a"), ("b", "Docs for b")]) cls.a.__doc__ # ==> "Docs for a" ``` Args: name: The name of the new class. fieldnames_and_docs: A sequence of `(fieldname, docstring)` pairs. The fieldnames are passed to `collections.namedtuple`. Returns: A namedtuple class. """ fieldnames_and_docs = list(fieldnames_and_docs) fieldnames = [fieldname for fieldname, doc in fieldnames_and_docs] cls = collections.namedtuple(name, fieldnames) for fieldname, doc in fieldnames_and_docs: old_prop = getattr(cls, fieldname) new_prop = property(fget=old_prop.fget, fset=old_prop.fset, fdel=old_prop.fdel, doc=doc) setattr(cls, fieldname, new_prop) return cls
[ "collections.namedtuple" ]
[((1477, 1517), 'collections.namedtuple', 'collections.namedtuple', (['name', 'fieldnames'], {}), '(name, fieldnames)\n', (1499, 1517), False, 'import collections\n')]
from linz_logger import get_log from topo_processor.util import time_in_ms from .get_fs import get_fs def transfer_file(source_file: str, checksum: str, content_type, target_file: str): start_time = time_in_ms() with get_fs(source_file).open(source_file, "rb") as f1: data = f1.read() with get_fs(target_file).open(target_file, "wb", ContentType=content_type, Metadata={"hash": checksum}) as f2: f2.write(data) get_log().debug( "File transferred", source_file=source_file, target_file=target_file, duration=time_in_ms() - start_time )
[ "linz_logger.get_log", "topo_processor.util.time_in_ms" ]
[((207, 219), 'topo_processor.util.time_in_ms', 'time_in_ms', ([], {}), '()\n', (217, 219), False, 'from topo_processor.util import time_in_ms\n'), ((463, 472), 'linz_logger.get_log', 'get_log', ([], {}), '()\n', (470, 472), False, 'from linz_logger import get_log\n'), ((575, 587), 'topo_processor.util.time_in_ms', 'time_in_ms', ([], {}), '()\n', (585, 587), False, 'from topo_processor.util import time_in_ms\n')]
import os import torch import segmentation_models_pytorch as smp import argparse from refer.utils import * from refer.datasets import * from refer.model import build_model # Argument Parsing parser = argparse.ArgumentParser(description="Train the Model") parser.add_argument('--base', '--b', help = 'the base address of the data') parser.add_argument('--architecture', '--a', help = 'the Architecture of model') parser.add_argument('--encoder', '--e', help = 'the Encoder of model') parser.add_argument('--batch_size', '--bat', type=int, help = 'the batch_size of training') parser.add_argument('--epochs', '--ep', type=int, help = 'the epochs of training') args = parser.parse_args() Basic = args.base Basic = os.path.abspath(Basic) archi = args.architecture encoder = args.encoder batch_size = args.batch_size epochs = args.epochs # Directory x_train_dir = os.path.join(Basic, 'train') x_train_dir = os.path.abspath(x_train_dir) y_train_dir = os.path.join(Basic, 'M_train') y_train_dir = os.path.abspath(y_train_dir) x_valid_dir = os.path.join(Basic, 'valid') x_valid_dir = os.path.abspath(x_valid_dir) y_valid_dir = os.path.join(Basic, 'M_valid') y_valid_dir = os.path.abspath(y_valid_dir) x_test_dir = os.path.join(Basic, 'tests') x_test_dir = os.path.abspath(x_test_dir) y_test_dir = os.path.join(Basic, 'M_tests') y_test_dir = os.path.abspath(y_test_dir) model_dir = os.path.join(Basic, 'best_model.pth') model_dir = os.path.abspath(model_dir) # Basic Setting CLASSES = ['gum'] ACTIVATION = 'sigmoid' DEVICE = 'cuda' ENCODER_WEIGHTS = 'imagenet' loss = smp.utils.losses.DiceLoss() metrics = [smp.utils.metrics.IoU(threshold=0.5),] # Model Setting model, preprocessing_fn = build_model (Architecture = archi, encoder = encoder, weights = ENCODER_WEIGHTS, CLASSES = CLASSES, activation = ACTIVATION) optimizer = torch.optim.Adam([dict(params=model.parameters(), lr=0.0001),]) # Train def train (x_train_dir, y_train_dir, x_valid_dir, y_valid_dir, model_dir, model, preprocessing_fn, CLASSES, DEVICE, loss, metrics, optimizer, batch_size, epochs) : train_dataset = Dataset( x_train_dir, y_train_dir, preprocessing=get_preprocessing(preprocessing_fn), classes=CLASSES, ) valid_dataset = Dataset( x_valid_dir, y_valid_dir, preprocessing=get_preprocessing(preprocessing_fn), classes=CLASSES, ) train_loader = DataLoader(train_dataset, batch_size, shuffle=True, num_workers=4) valid_loader = DataLoader(valid_dataset, batch_size=1, shuffle=False, num_workers=1) train_epoch = smp.utils.train.TrainEpoch( model, loss=loss, metrics=metrics, optimizer=optimizer, device=DEVICE, verbose=True, ) valid_epoch = smp.utils.train.ValidEpoch( model, loss=loss, metrics=metrics, device=DEVICE, verbose=True, ) # train model for 40 epochs max_score = 0 for i in range(0, epochs): print('\nEpoch: {}'.format(i)) train_logs = train_epoch.run(train_loader) valid_logs = valid_epoch.run(valid_loader) # do something (save model, change lr, etc.) if max_score < valid_logs['iou_score']: max_score = valid_logs['iou_score'] torch.save(model, model_dir) print('Model saved!') if i == 25: optimizer.param_groups[0]['lr'] = 1e-5 print('Decrease decoder learning rate to 1e-5!') # Train print ("Training the Model") train (x_train_dir, y_train_dir, x_valid_dir, y_valid_dir, model_dir, model, preprocessing_fn, CLASSES, DEVICE, loss, metrics, optimizer, batch_size, epochs) print ("Train is finished")
[ "segmentation_models_pytorch.utils.losses.DiceLoss", "argparse.ArgumentParser", "os.path.join", "segmentation_models_pytorch.utils.metrics.IoU", "segmentation_models_pytorch.utils.train.ValidEpoch", "segmentation_models_pytorch.utils.train.TrainEpoch", "torch.save", "os.path.abspath", "refer.model.b...
[((207, 261), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {'description': '"""Train the Model"""'}), "(description='Train the Model')\n", (230, 261), False, 'import argparse\n'), ((720, 742), 'os.path.abspath', 'os.path.abspath', (['Basic'], {}), '(Basic)\n', (735, 742), False, 'import os\n'), ((870, 898), 'os.path.join', 'os.path.join', (['Basic', '"""train"""'], {}), "(Basic, 'train')\n", (882, 898), False, 'import os\n'), ((913, 941), 'os.path.abspath', 'os.path.abspath', (['x_train_dir'], {}), '(x_train_dir)\n', (928, 941), False, 'import os\n'), ((956, 986), 'os.path.join', 'os.path.join', (['Basic', '"""M_train"""'], {}), "(Basic, 'M_train')\n", (968, 986), False, 'import os\n'), ((1001, 1029), 'os.path.abspath', 'os.path.abspath', (['y_train_dir'], {}), '(y_train_dir)\n', (1016, 1029), False, 'import os\n'), ((1045, 1073), 'os.path.join', 'os.path.join', (['Basic', '"""valid"""'], {}), "(Basic, 'valid')\n", (1057, 1073), False, 'import os\n'), ((1088, 1116), 'os.path.abspath', 'os.path.abspath', (['x_valid_dir'], {}), '(x_valid_dir)\n', (1103, 1116), False, 'import os\n'), ((1131, 1161), 'os.path.join', 'os.path.join', (['Basic', '"""M_valid"""'], {}), "(Basic, 'M_valid')\n", (1143, 1161), False, 'import os\n'), ((1176, 1204), 'os.path.abspath', 'os.path.abspath', (['y_valid_dir'], {}), '(y_valid_dir)\n', (1191, 1204), False, 'import os\n'), ((1219, 1247), 'os.path.join', 'os.path.join', (['Basic', '"""tests"""'], {}), "(Basic, 'tests')\n", (1231, 1247), False, 'import os\n'), ((1261, 1288), 'os.path.abspath', 'os.path.abspath', (['x_test_dir'], {}), '(x_test_dir)\n', (1276, 1288), False, 'import os\n'), ((1302, 1332), 'os.path.join', 'os.path.join', (['Basic', '"""M_tests"""'], {}), "(Basic, 'M_tests')\n", (1314, 1332), False, 'import os\n'), ((1346, 1373), 'os.path.abspath', 'os.path.abspath', (['y_test_dir'], {}), '(y_test_dir)\n', (1361, 1373), False, 'import os\n'), ((1387, 1424), 'os.path.join', 'os.path.join', (['Basic', '"""best_model.pth"""'], {}), "(Basic, 'best_model.pth')\n", (1399, 1424), False, 'import os\n'), ((1437, 1463), 'os.path.abspath', 'os.path.abspath', (['model_dir'], {}), '(model_dir)\n', (1452, 1463), False, 'import os\n'), ((1578, 1605), 'segmentation_models_pytorch.utils.losses.DiceLoss', 'smp.utils.losses.DiceLoss', ([], {}), '()\n', (1603, 1605), True, 'import segmentation_models_pytorch as smp\n'), ((1702, 1819), 'refer.model.build_model', 'build_model', ([], {'Architecture': 'archi', 'encoder': 'encoder', 'weights': 'ENCODER_WEIGHTS', 'CLASSES': 'CLASSES', 'activation': 'ACTIVATION'}), '(Architecture=archi, encoder=encoder, weights=ENCODER_WEIGHTS,\n CLASSES=CLASSES, activation=ACTIVATION)\n', (1713, 1819), False, 'from refer.model import build_model\n'), ((1618, 1654), 'segmentation_models_pytorch.utils.metrics.IoU', 'smp.utils.metrics.IoU', ([], {'threshold': '(0.5)'}), '(threshold=0.5)\n', (1639, 1654), True, 'import segmentation_models_pytorch as smp\n'), ((2603, 2719), 'segmentation_models_pytorch.utils.train.TrainEpoch', 'smp.utils.train.TrainEpoch', (['model'], {'loss': 'loss', 'metrics': 'metrics', 'optimizer': 'optimizer', 'device': 'DEVICE', 'verbose': '(True)'}), '(model, loss=loss, metrics=metrics, optimizer=\n optimizer, device=DEVICE, verbose=True)\n', (2629, 2719), True, 'import segmentation_models_pytorch as smp\n'), ((2792, 2886), 'segmentation_models_pytorch.utils.train.ValidEpoch', 'smp.utils.train.ValidEpoch', (['model'], {'loss': 'loss', 'metrics': 'metrics', 'device': 'DEVICE', 'verbose': '(True)'}), '(model, loss=loss, metrics=metrics, device=DEVICE,\n verbose=True)\n', (2818, 2886), True, 'import segmentation_models_pytorch as smp\n'), ((3329, 3357), 'torch.save', 'torch.save', (['model', 'model_dir'], {}), '(model, model_dir)\n', (3339, 3357), False, 'import torch\n')]
# Copyright 2020 (c) Aalto University - All Rights Reserved # ELEC-E8125 - Reinforcement Learning Course # AALTO UNIVERSITY # ############################################################# import numpy as np from time import sleep from sailing import SailingGridworld epsilon = 10e-4 # TODO: Use this criteria for Task 3 # Set up the environment env = SailingGridworld(rock_penalty=-2) value_est = np.zeros((env.w, env.h)) env.draw_values(value_est) if __name__ == "__main__": # Reset the environment state = env.reset() # Compute state values and the policy # TODO: Compute the value function and policy (Tasks 1, 2 and 3) value_est, policy = np.zeros((env.w, env.h)), np.zeros((env.w, env.h)) # 15x10 grid gamma = 0.9 # discount factor value number_iterations = 100 actions = [0,1,2,3] value_est_history = [] policy_history = [] for i in range(number_iterations): print("iteration step: ", i) env.clear_text() # remove previously drawn values value_est_copy = value_est.copy() # copy to make sure that values are only taken from current state. In next iteration the upadted value_est will be retrieved policy_copy = policy.copy() value_est_history.append(value_est_copy) policy_history.append(policy_copy) for x in range(env.w): # loop through all states/cell in the environment for y in range(env.h): state_values_of_actions = [] # keep track of calculated state values of each action # calculate new state value for every action and add to list above #for transitions in env.transitions[x,y]: # the four different actions are 1) .LEFT 2) .DOWN 3) .RIGHT 4) .UP - each transition is a list with three tuples (state, reward, done, probability) for action in actions: transitions = env.transitions[x,y,action] state_value_of_action = 0 for transition in transitions: state_next = transition[0] reward = transition[1] done = transition[2] probability = transition[3] if (state_next == None): state_value_of_action += 0 else: state_value_of_action += probability * (reward + gamma * value_est_copy[state_next]) state_values_of_actions.append(state_value_of_action) # update value_est and policy value_est[x][y] = np.max(state_values_of_actions) policy[x][y] = np.argmax(state_values_of_actions) max_diff_val = np.max(abs(abs(value_est) - abs(value_est_copy))) if (max_diff_val < epsilon): print("Converged! Value state converged in iteration: ", i+1) break max_diff_policy = np.max(abs(policy_copy - policy)) if (max_diff_policy < epsilon): print("Converged! Policy converged in iteration: ", i+1) #env.draw_values(value_est) # draw the new calculated values after every iteration #env.draw_actions(policy) #env.render() # Just for my understanding how the data is stored/provided #print(env.transitions[3,3][0]) # gives us one of the four actions #print(env.transitions[3,3][0][0]) # gives us one of the three tuples #print(env.transitions[3, 3][0][0].state) # access entries of tuple #print(env.transitions[3, 3][0][0][3]) #print(env.transitions[6,3]) # Show the values and the policy env.draw_values(value_est) env.draw_actions(policy) env.render() sleep(1) # Save the state values and the policy fnames = "values.npy", "policy.npy" np.save(fnames[0], value_est) np.save(fnames[1], policy) print("Saved state values and policy to", *fnames) # Run a single episode # TODO: Run multiple episodes and compute the discounted returns (Task 4) number_episodes = 1000 discounted_return_history = [] for i in range(number_episodes): done = False counter_discount = 0 discounted_return = 0 while not done: # Select a random action # TODO: Use the policy to take the optimal action (Task 2) action = policy[state] # Step the environment state, reward, done, _ = env.step(action) # calculate discounted reward discounted_return += reward * gamma**counter_discount counter_discount += 1 # Render and sleep #env.render() #sleep(0.5) discounted_return_history.append(discounted_return) state = env.reset() print("discounted return (initial state) - mean: ", np.mean(discounted_return_history)) print("discounted return (initial state) - std: ", np.std(discounted_return_history))
[ "numpy.mean", "numpy.argmax", "time.sleep", "sailing.SailingGridworld", "numpy.max", "numpy.zeros", "numpy.std", "numpy.save" ]
[((356, 389), 'sailing.SailingGridworld', 'SailingGridworld', ([], {'rock_penalty': '(-2)'}), '(rock_penalty=-2)\n', (372, 389), False, 'from sailing import SailingGridworld\n'), ((402, 426), 'numpy.zeros', 'np.zeros', (['(env.w, env.h)'], {}), '((env.w, env.h))\n', (410, 426), True, 'import numpy as np\n'), ((3714, 3722), 'time.sleep', 'sleep', (['(1)'], {}), '(1)\n', (3719, 3722), False, 'from time import sleep\n'), ((3811, 3840), 'numpy.save', 'np.save', (['fnames[0]', 'value_est'], {}), '(fnames[0], value_est)\n', (3818, 3840), True, 'import numpy as np\n'), ((3845, 3871), 'numpy.save', 'np.save', (['fnames[1]', 'policy'], {}), '(fnames[1], policy)\n', (3852, 3871), True, 'import numpy as np\n'), ((671, 695), 'numpy.zeros', 'np.zeros', (['(env.w, env.h)'], {}), '((env.w, env.h))\n', (679, 695), True, 'import numpy as np\n'), ((697, 721), 'numpy.zeros', 'np.zeros', (['(env.w, env.h)'], {}), '((env.w, env.h))\n', (705, 721), True, 'import numpy as np\n'), ((4844, 4878), 'numpy.mean', 'np.mean', (['discounted_return_history'], {}), '(discounted_return_history)\n', (4851, 4878), True, 'import numpy as np\n'), ((4935, 4968), 'numpy.std', 'np.std', (['discounted_return_history'], {}), '(discounted_return_history)\n', (4941, 4968), True, 'import numpy as np\n'), ((2614, 2645), 'numpy.max', 'np.max', (['state_values_of_actions'], {}), '(state_values_of_actions)\n', (2620, 2645), True, 'import numpy as np\n'), ((2677, 2711), 'numpy.argmax', 'np.argmax', (['state_values_of_actions'], {}), '(state_values_of_actions)\n', (2686, 2711), True, 'import numpy as np\n')]
""" Includes two functions which use shortest path policies 1) run_sss_curriculum - trains a PyMARL agent using experiences gathered while following an epsilon greedy shortest path policy. 2) mean_sss_time - returns the mean time taken to complete a map while following an epsilon greedy shortest path policy. """ import datetime import os from os.path import dirname, abspath import time #from sympy import EX import yaml import torch as th from types import SimpleNamespace as SN from utils.logging import Logger, log_mac_weights import numpy as np import random from logging import getLogger, INFO from rapport_topological.navigation import construct_shortest_path_policy from rapport_models.markov.state import State from learners import REGISTRY as le_REGISTRY from runners import REGISTRY as r_REGISTRY from controllers import REGISTRY as mac_REGISTRY from components.episode_buffer import ReplayBuffer from components.transforms import OneHot from src.components.episode_buffer import EpisodeBatch from runners import AsyncEpisodeRunner from main import recursive_dict_update from run import args_sanity_check from torch.utils.tensorboard import SummaryWriter def load_configs(): """ Load configuration dictionaries from default locations """ # Get the defaults from default.yaml with open(os.path.join(os.path.dirname(__file__), "config", "default.yaml"), "r") as f: try: config_dict = yaml.load(f, Loader=yaml.FullLoader) except yaml.YAMLError as exc: assert False, "default.yaml error: {}".format(exc) # Get qmix params from qmix.yaml with open(os.path.join(os.path.dirname(__file__), "config", "algs", "qmix.yaml"), "r") as f: try: alg_dict = yaml.load(f, Loader=yaml.FullLoader) except yaml.YAMLError as exc: assert False, "default.yaml error: {}".format(exc) # Get camas params from camas.yaml with open(os.path.join(os.path.dirname(__file__), "config", "envs", "camas.yaml"), "r") as f: try: env_dict = yaml.load(f, Loader=yaml.FullLoader) except yaml.YAMLError as exc: assert False, "default.yaml error: {}".format(exc) config_dict = recursive_dict_update(config_dict, alg_dict) config_dict = recursive_dict_update(config_dict, env_dict) return config_dict class SSS_Runner(AsyncEpisodeRunner): """ PyMARL Episode Runner for gathering shortest path based experience episodes """ debug = False def __init__(self, args, logger, epsilon_mean=0.15, epsilon_var=0.1): super().__init__(args, logger) self.epsilon_mean = epsilon_mean self.epsilon_var = epsilon_var self.epsilon = self._draw_epsilon() self.env.reset() self.policies = {agent: construct_shortest_path_policy(self.env._tm, self.env._goal_states[agent]) for agent in self.env.agents} def run(self) -> EpisodeBatch: """ Returns an transistions for one episode for an agent acting in an epsilon greedy fashion while following its shortest path. """ if self.debug: print('*** reset environment ***') self.reset() self.epsilon = self._draw_epsilon() terminated = False episode_return = 0 #self.mac.init_hidden(batch_size=self.batch_size) # NOTE not sure what this is obs, reward, done, info = self.env.last() k = 0 while not terminated: k += 1 pre_transition_data = self.env.get_pretran_data() if self.debug: print(f'-- step {k} \nState: {self.env.state()}, Agent: {self.env.agent_selection}, Time: {self.env.sim_time()}') print(f"Pre transition data: {pre_transition_data}") self.batch.update(pre_transition_data, ts=self.t) #actions = self.mac.select_actions(self.batch, t_ep=self.t, t_env=self.t_env, test_mode=False) #print(f'actions {actions}, type {type(actions)}, size {actions.size()}') #print('my selector: ', self.select_actions()) actions = self.select_actions() action = actions[0][self.env.agent_idx()].item() if action == 4: self.env.step(None) # terminated action to update env correctly else: self.env.step(action) obs, reward, done, env_info = self.env.last() if done: if self.debug: print(f'{self.env.agent_selection} done!') if len(self.env.agents) == 1: terminated = True if self.debug: print(f'Actions: {actions}\nReward {reward}, Time {self.env.sim_time()}') episode_return += reward post_transition_data = { "actions": actions, "reward": [(reward,)], "terminated": [[(terminated),]], # NOTE used to be: [(terminated != env_info.get("episode_limit", False),)] # env info here is info from step() } self.batch.update(post_transition_data, ts=self.t) self.t += 1 if self.t == self.episode_limit: terminated = True pre_transition_data = self.env.get_pretran_data() self.batch.update(pre_transition_data, ts=self.t) actions = self.select_actions() self.batch.update({"actions": actions}, ts=self.t) self.t_env += self.t return self.batch def select_actions(self) -> th.Tensor: """ Choose the action to stay on the shorest path or a random action depending on epsilon test. """ acts = th.ones(1, self.args.n_agents, dtype=int)*4 # choose action for agent acting agent = self.env.agent_selection agent_loc = self.env._agent_location[agent] agent_idx = self.env.agent_name_mapping[self.env.agent_selection] if self.debug: print(f'choosing action for {agent}, loc: {agent_loc}, idx: {agent_idx}') if random.uniform(0, 1) > self.epsilon: # exploit camas_act = self.policies[agent]._state_action_map[State({'loc': agent_loc})] if self.debug: print(f'exploiting, camas act {camas_act}') if camas_act is None: action = 4 else: action = self.env.to_gym_action(agent_loc, camas_act) else: # explore avail_actions = self.batch["avail_actions"][:, self.t] action = random.choice([i for i, x in enumerate(avail_actions[0, agent_idx]) if x==1]) if self.debug: print(f'random, action {action}, avail agent acts {avail_actions[0, agent_idx]}') acts[0, agent_idx] = action if self.debug: print(f'acts {acts}') return acts def _draw_epsilon(self): epsilon = np.random.normal(self.epsilon_mean, self.epsilon_var) if epsilon < 0: epsilon = 0 return epsilon def episode_makespan(self): return self.env.sim_time() def run_sss_curriculum(args, logger, num_episodes, cycle_after, max_train_steps, test_makespan_cutoff, test_episodes=20, epsilon_mean=0.25, epsilon_var=0.15, log_freq=10000, agent_weight_log_freq=20000): """Trains a PyMARL method using shortest path experiences and saves the result to the results/model directory Args: num_episodes (int): number of experience episodes to gather max_train_steps (int): number of steps to train the model for test_episodes (int): number of episodes to evaluate the model on once training is complete """ def _gather_data(_num_episodes, _buffer, _sss_runner, _logger, _iteration=0): _start_time = time.time() _logger.console_logger.info(f'...gathering {_num_episodes} of data, iteration: {_iteration}...') ep_rewards = np.zeros(_num_episodes) ep_epsilons = np.zeros(_num_episodes) ep_times = np.zeros(_num_episodes) ep_step_count = np.zeros(_num_episodes) for k in range(_num_episodes): episode_batch = _sss_runner.run() _buffer.insert_episode_batch(episode_batch) ep_rewards[k] = th.sum(episode_batch["reward"]) ep_epsilons[k] = _sss_runner.epsilon ep_times[k] = _sss_runner.episode_makespan() ep_step_count[k] = _sss_runner.t if k % log_freq == 0: _logger.console_logger.info(f'...{k} episodes complete, mean time {np.mean(ep_times)} ({np.std(ep_times)}), mean step count {np.mean(ep_step_count)} ({np.std(ep_step_count)})...') _logger.console_logger.info(f'...mean rewards {np.mean(ep_rewards)} ({np.std(ep_rewards)}), mean epsilon {np.mean(ep_epsilons)} ({np.std(ep_epsilons)})') save_curriculum_data([ep_rewards, ep_epsilons, ep_times, ep_step_count], _iteration) data_gathering_time = time.time() - _start_time _logger.console_logger.info(f'...time to gather {_num_episodes} episodes: {datetime.timedelta(seconds=data_gathering_time)}, mean time {np.mean(ep_times)} ({np.std(ep_times)}), mean step count {np.mean(ep_step_count)} ({np.std(ep_step_count)})...') _logger.console_logger.info(f'...mean rewards {np.mean(ep_rewards)} ({np.std(ep_rewards)}), mean epsilon {np.mean(ep_epsilons)} ({np.std(ep_epsilons)})') def _test_env(_runner, _test_episdoes): """ Test environment using `_runner` Returns: tt: test sim times sc: test step counts gc: test reached goal %'s """ tt, sc, gc = [], [], [] for _ in range(_test_episdoes): _runner.run(test_mode=True) tt.append(_runner.env.sim_time()) sc.append(_runner.env.step_count()) gc.append(_runner.env.agents_at_goal()) return tt, sc, gc def _save_model(_args, _logger, _learner, label): _logger.console_logger.info('...saving model...') _save_path = os.path.join("curriculum", _args.unique_token, str(label)) os.makedirs(_save_path, exist_ok=True) _logger.console_logger.info("Saving models to {}".format(_save_path)) _learner.save_models(_save_path) print(' -- Env args', args.env_args) start_time = time.time() tb_logs_direc = os.path.join(dirname(dirname(abspath(__file__))), "results", "curriculum_tb") tb_exp_direc = os.path.join(tb_logs_direc, "{}").format(args.unique_token) logger.setup_tb(tb_exp_direc) args.log_interval = log_freq args.learner_log_interval = log_freq main_runner = r_REGISTRY[args.runner](args=args, logger=logger) sss_runner = SSS_Runner(args, logger, epsilon_mean=epsilon_mean, epsilon_var=epsilon_var) # Set up schemes and groups env_info = sss_runner.get_env_info() args.n_agents = env_info["n_agents"] args.n_actions = env_info["n_actions"] args.state_shape = env_info["state_shape"] scheme = { "state": {"vshape": env_info["state_shape"]}, "obs": {"vshape": env_info["obs_shape"], "group": "agents"}, "actions": {"vshape": (1,), "group": "agents", "dtype": th.long}, "avail_actions": {"vshape": (env_info["n_actions"],), "group": "agents", "dtype": th.int}, "reward": {"vshape": (1,)}, "terminated": {"vshape": (1,), "dtype": th.uint8}, } groups = { "agents": args.n_agents } preprocess = { "actions": ("actions_onehot", [OneHot(out_dim=args.n_actions)]) } buffer = ReplayBuffer(scheme, groups, args.buffer_size, env_info["episode_limit"] + 1, preprocess=preprocess, device="cpu" if args.buffer_cpu_only else args.device) # Setup multiagent controller here mac = mac_REGISTRY[args.mac](buffer.scheme, groups, args) # Give runners the scheme main_runner.setup(scheme=scheme, groups=groups, preprocess=preprocess, mac=mac) sss_runner.setup(scheme=scheme, groups=groups, preprocess=preprocess, mac=mac) # Learner learner = le_REGISTRY[args.learner](mac, buffer.scheme, logger, args) if args.use_cuda: learner.cuda() ## --- Save config --- config_save_path = os.path.join("curriculum", args.unique_token) os.makedirs(config_save_path, exist_ok=True) with open(os.path.join(config_save_path, "config.yaml"), 'w') as outp: # NOTE this has not been tested yaml.dump(args, outp) ## --- Gather Data --- _gather_data(num_episodes, buffer, sss_runner, logger) ## --- Train Network --- logger.console_logger.info(f'...training network...') for i in range(max_train_steps): episode_sample = buffer.sample(args.batch_size) # Truncate batch to only filled timesteps max_ep_t = episode_sample.max_t_filled() episode_sample = episode_sample[:, :max_ep_t] if episode_sample.device != args.device: episode_sample.to(args.device) learner.train(episode_sample, i, i) if (i % cycle_after == 0) and (i > 0): # Gather new data with freq `cycle_after` _gather_data(num_episodes, buffer, sss_runner, logger, i/cycle_after) if i % log_freq == 0: tt, sc, gc = _test_env(main_runner, test_episodes) logger.log_stat("Test_mean_sim_time", np.mean(tt), i) logger.log_stat("Test_mean_step_count", np.mean(sc), i) logger.log_stat("Test_mean_goal_found", np.mean(gc), i) logger.console_logger.info(f'...logging at step {i}, mean sim time {np.mean(tt)}...') if np.mean(tt) < test_makespan_cutoff: tt, _, _ = _test_env(main_runner, test_episodes) if np.mean(tt) < test_makespan_cutoff: logger.console_logger.info(f'Training passed evaluation at step {i}. Mean makespan: {np.mean(tt)}, cutoff: {test_makespan_cutoff}') break if i % agent_weight_log_freq == 0: log_mac_weights(logger, mac, i) _save_model(args, logger, learner, i) _gather_data(num_episodes, buffer, sss_runner, logger, 1000) # -- Train for 20e3 more steps -- for i in range(20000): episode_sample = buffer.sample(args.batch_size) # Truncate batch to only filled timesteps max_ep_t = episode_sample.max_t_filled() episode_sample = episode_sample[:, :max_ep_t] if episode_sample.device != args.device: episode_sample.to(args.device) learner.train(episode_sample, i, i) if i % log_freq == 0: tt, sc, gc = _test_env(main_runner, test_episodes) logger.log_stat("Test_mean_sim_time", np.mean(tt), i) logger.log_stat("Test_mean_step_count", np.mean(sc), i) logger.log_stat("Test_mean_goal_found", np.mean(gc), i) logger.console_logger.info(f'...logging at step {i}, mean sim time {np.mean(tt)}...') if i % agent_weight_log_freq == 0: log_mac_weights(logger, mac, i) tdelta = time.time()-start_time logger.console_logger.info(f'...time taken for training: {datetime.timedelta(seconds=tdelta)}...') ## --- Evaluate final agent --- logger.console_logger.info(f'...evaluating final agent...') tt, sc, gc = _test_env(main_runner, test_episodes) logger.log_stat("Test_mean_sim_time", np.mean(tt), i) logger.log_stat("Test_mean_step_count", np.mean(sc), i) logger.log_stat("Test_mean_goal_found", np.mean(gc), i) logger.console_logger.info(f'-- evaluation av test time: {np.mean(tt)} ({np.var(tt)}), av step count {np.mean(sc)} ({np.var(sc)}), percentage at goal {np.mean(gc)} ({np.var(gc)}), {len(sc)} episodes') _save_model(args, logger, learner, i+1) def save_curriculum_data(array_to_save, iteration=0): save_path = os.path.join(args.local_results_path, "curriculum", "ep_data", args.unique_token) os.makedirs(save_path, exist_ok=True) np.save('{}/ep_data_{}.npy'.format(save_path, iteration), array_to_save, allow_pickle=True) def mean_sss_time(args, logger, num_episodes, epsilon_mean): """Runs a PyMARL-Camas map using an epsilon greedy shortest path policy Args: num_episodes (int): number of episodes to run for epislon (int): epsilon to use in action selection """ print(' -- Env args', args.env_args) start_time = time.time() sss_runner = SSS_Runner(args, logger, epsilon_mean=epsilon_mean, epsilon_var=0.0) # Set up schemes and groups env_info = sss_runner.get_env_info() args.n_agents = env_info["n_agents"] args.n_actions = env_info["n_actions"] args.state_shape = env_info["state_shape"] scheme = { "state": {"vshape": env_info["state_shape"]}, "obs": {"vshape": env_info["obs_shape"], "group": "agents"}, "actions": {"vshape": (1,), "group": "agents", "dtype": th.long}, "avail_actions": {"vshape": (env_info["n_actions"],), "group": "agents", "dtype": th.int}, "reward": {"vshape": (1,)}, "terminated": {"vshape": (1,), "dtype": th.uint8}, } groups = { "agents": args.n_agents } preprocess = { "actions": ("actions_onehot", [OneHot(out_dim=args.n_actions)]) } buffer = ReplayBuffer(scheme, groups, args.buffer_size, env_info["episode_limit"] + 1, preprocess=preprocess, device="cpu" if args.buffer_cpu_only else args.device) # Setup multiagent controller here mac = mac_REGISTRY[args.mac](buffer.scheme, groups, args) # Give runners the scheme #main_runner.setup(scheme=scheme, groups=groups, preprocess=preprocess, mac=mac) sss_runner.setup(scheme=scheme, groups=groups, preprocess=preprocess, mac=mac) # Learner learner = le_REGISTRY[args.learner](mac, buffer.scheme, logger, args) if args.use_cuda: learner.cuda() logger.console_logger.info(f'...running {num_episodes} episodes...') episode_times = [] step_count = [] rewards = [] for i in range(num_episodes): batch = sss_runner.run() episode_times.append(sss_runner.env.sim_time()) step_count.append(sss_runner.t) rewards.append(th.sum(batch["reward"])) if i % 50 == 0: logger.console_logger.info(f'...{i} episodes complete...') print(f'Mean sim time for {num_episodes} on {args.env_args["map_name"]} and an epsilon of {epsilon_mean}: {np.mean(episode_times)} ({np.var(episode_times)})') print(f'mean step count {np.mean(step_count)} ({np.var(step_count)}), mean reward: {np.mean(rewards)} ({np.var(rewards)})') return np.mean(episode_times), np.mean(step_count) def load_default_params(map_name="bruno"): pass #TODO if __name__ == "__main__": ## *** Curriculum specific variables *** num_episodes = int(5e3) cycle_after = int(2.5e4) train_steps_max = int(5e5) test_episodes = 20 test_makespan_cutoff = 60 console_logger = getLogger() logger = Logger(console_logger) config_dict = load_configs() # NOTE should sanity check args = SN(**config_dict) # gives attribute access to namespace if args.use_cuda: args.use_cuda = th.cuda.is_available() # Check that cuda is valid args.device = "cuda" if args.use_cuda else "cpu" if args.use_cuda: logger.console_logger.info('... Using CUDA...') args.unique_token = "cur<PASSWORD>{}".format(args.name, datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")) #args.batch_size = 64 logger.console_logger.setLevel(INFO) if args.prioritised_replay: logger.console_logger.warning('Turning PER off') args.prioritised_replay = False # not implemented #mean_sss_time(args, logger, 200, 0.0) if num_episodes > args.buffer_size: args.buffer_size = num_episodes print(f'Buffer size now {args.buffer_size}') run_sss_curriculum(args, logger, num_episodes, cycle_after, train_steps_max, test_makespan_cutoff, test_episodes=test_episodes, log_freq=int(2e4), agent_weight_log_freq=int(4e4))
[ "logging.getLogger", "yaml.load", "main.recursive_dict_update", "rapport_topological.navigation.construct_shortest_path_policy", "torch.cuda.is_available", "torch.sum", "components.transforms.OneHot", "datetime.timedelta", "numpy.mean", "components.episode_buffer.ReplayBuffer", "numpy.random.nor...
[((2258, 2302), 'main.recursive_dict_update', 'recursive_dict_update', (['config_dict', 'alg_dict'], {}), '(config_dict, alg_dict)\n', (2279, 2302), False, 'from main import recursive_dict_update\n'), ((2321, 2365), 'main.recursive_dict_update', 'recursive_dict_update', (['config_dict', 'env_dict'], {}), '(config_dict, env_dict)\n', (2342, 2365), False, 'from main import recursive_dict_update\n'), ((10781, 10792), 'time.time', 'time.time', ([], {}), '()\n', (10790, 10792), False, 'import time\n'), ((12049, 12213), 'components.episode_buffer.ReplayBuffer', 'ReplayBuffer', (['scheme', 'groups', 'args.buffer_size', "(env_info['episode_limit'] + 1)"], {'preprocess': 'preprocess', 'device': "('cpu' if args.buffer_cpu_only else args.device)"}), "(scheme, groups, args.buffer_size, env_info['episode_limit'] + \n 1, preprocess=preprocess, device='cpu' if args.buffer_cpu_only else\n args.device)\n", (12061, 12213), False, 'from components.episode_buffer import ReplayBuffer\n'), ((12738, 12783), 'os.path.join', 'os.path.join', (['"""curriculum"""', 'args.unique_token'], {}), "('curriculum', args.unique_token)\n", (12750, 12783), False, 'import os\n'), ((12788, 12832), 'os.makedirs', 'os.makedirs', (['config_save_path'], {'exist_ok': '(True)'}), '(config_save_path, exist_ok=True)\n', (12799, 12832), False, 'import os\n'), ((16418, 16504), 'os.path.join', 'os.path.join', (['args.local_results_path', '"""curriculum"""', '"""ep_data"""', 'args.unique_token'], {}), "(args.local_results_path, 'curriculum', 'ep_data', args.\n unique_token)\n", (16430, 16504), False, 'import os\n'), ((16504, 16541), 'os.makedirs', 'os.makedirs', (['save_path'], {'exist_ok': '(True)'}), '(save_path, exist_ok=True)\n', (16515, 16541), False, 'import os\n'), ((16979, 16990), 'time.time', 'time.time', ([], {}), '()\n', (16988, 16990), False, 'import time\n'), ((17872, 18036), 'components.episode_buffer.ReplayBuffer', 'ReplayBuffer', (['scheme', 'groups', 'args.buffer_size', "(env_info['episode_limit'] + 1)"], {'preprocess': 'preprocess', 'device': "('cpu' if args.buffer_cpu_only else args.device)"}), "(scheme, groups, args.buffer_size, env_info['episode_limit'] + \n 1, preprocess=preprocess, device='cpu' if args.buffer_cpu_only else\n args.device)\n", (17884, 18036), False, 'from components.episode_buffer import ReplayBuffer\n'), ((19628, 19639), 'logging.getLogger', 'getLogger', ([], {}), '()\n', (19637, 19639), False, 'from logging import getLogger, INFO\n'), ((19653, 19675), 'utils.logging.Logger', 'Logger', (['console_logger'], {}), '(console_logger)\n', (19659, 19675), False, 'from utils.logging import Logger, log_mac_weights\n'), ((19753, 19770), 'types.SimpleNamespace', 'SN', ([], {}), '(**config_dict)\n', (19755, 19770), True, 'from types import SimpleNamespace as SN\n'), ((7107, 7160), 'numpy.random.normal', 'np.random.normal', (['self.epsilon_mean', 'self.epsilon_var'], {}), '(self.epsilon_mean, self.epsilon_var)\n', (7123, 7160), True, 'import numpy as np\n'), ((8212, 8223), 'time.time', 'time.time', ([], {}), '()\n', (8221, 8223), False, 'import time\n'), ((8350, 8373), 'numpy.zeros', 'np.zeros', (['_num_episodes'], {}), '(_num_episodes)\n', (8358, 8373), True, 'import numpy as np\n'), ((8396, 8419), 'numpy.zeros', 'np.zeros', (['_num_episodes'], {}), '(_num_episodes)\n', (8404, 8419), True, 'import numpy as np\n'), ((8439, 8462), 'numpy.zeros', 'np.zeros', (['_num_episodes'], {}), '(_num_episodes)\n', (8447, 8462), True, 'import numpy as np\n'), ((8487, 8510), 'numpy.zeros', 'np.zeros', (['_num_episodes'], {}), '(_num_episodes)\n', (8495, 8510), True, 'import numpy as np\n'), ((10559, 10597), 'os.makedirs', 'os.makedirs', (['_save_path'], {'exist_ok': '(True)'}), '(_save_path, exist_ok=True)\n', (10570, 10597), False, 'import os\n'), ((12949, 12970), 'yaml.dump', 'yaml.dump', (['args', 'outp'], {}), '(args, outp)\n', (12958, 12970), False, 'import yaml\n'), ((15620, 15631), 'time.time', 'time.time', ([], {}), '()\n', (15629, 15631), False, 'import time\n'), ((15948, 15959), 'numpy.mean', 'np.mean', (['tt'], {}), '(tt)\n', (15955, 15959), True, 'import numpy as np\n'), ((16008, 16019), 'numpy.mean', 'np.mean', (['sc'], {}), '(sc)\n', (16015, 16019), True, 'import numpy as np\n'), ((16068, 16079), 'numpy.mean', 'np.mean', (['gc'], {}), '(gc)\n', (16075, 16079), True, 'import numpy as np\n'), ((19270, 19292), 'numpy.mean', 'np.mean', (['episode_times'], {}), '(episode_times)\n', (19277, 19292), True, 'import numpy as np\n'), ((19294, 19313), 'numpy.mean', 'np.mean', (['step_count'], {}), '(step_count)\n', (19301, 19313), True, 'import numpy as np\n'), ((19856, 19878), 'torch.cuda.is_available', 'th.cuda.is_available', ([], {}), '()\n', (19876, 19878), True, 'import torch as th\n'), ((1444, 1480), 'yaml.load', 'yaml.load', (['f'], {'Loader': 'yaml.FullLoader'}), '(f, Loader=yaml.FullLoader)\n', (1453, 1480), False, 'import yaml\n'), ((1765, 1801), 'yaml.load', 'yaml.load', (['f'], {'Loader': 'yaml.FullLoader'}), '(f, Loader=yaml.FullLoader)\n', (1774, 1801), False, 'import yaml\n'), ((2089, 2125), 'yaml.load', 'yaml.load', (['f'], {'Loader': 'yaml.FullLoader'}), '(f, Loader=yaml.FullLoader)\n', (2098, 2125), False, 'import yaml\n'), ((2860, 2934), 'rapport_topological.navigation.construct_shortest_path_policy', 'construct_shortest_path_policy', (['self.env._tm', 'self.env._goal_states[agent]'], {}), '(self.env._tm, self.env._goal_states[agent])\n', (2890, 2934), False, 'from rapport_topological.navigation import construct_shortest_path_policy\n'), ((5877, 5918), 'torch.ones', 'th.ones', (['(1)', 'self.args.n_agents'], {'dtype': 'int'}), '(1, self.args.n_agents, dtype=int)\n', (5884, 5918), True, 'import torch as th\n'), ((6256, 6276), 'random.uniform', 'random.uniform', (['(0)', '(1)'], {}), '(0, 1)\n', (6270, 6276), False, 'import random\n'), ((8693, 8724), 'torch.sum', 'th.sum', (["episode_batch['reward']"], {}), "(episode_batch['reward'])\n", (8699, 8724), True, 'import torch as th\n'), ((9399, 9410), 'time.time', 'time.time', ([], {}), '()\n', (9408, 9410), False, 'import time\n'), ((10915, 10948), 'os.path.join', 'os.path.join', (['tb_logs_direc', '"""{}"""'], {}), "(tb_logs_direc, '{}')\n", (10927, 10948), False, 'import os\n'), ((12847, 12892), 'os.path.join', 'os.path.join', (['config_save_path', '"""config.yaml"""'], {}), "(config_save_path, 'config.yaml')\n", (12859, 12892), False, 'import os\n'), ((14541, 14572), 'utils.logging.log_mac_weights', 'log_mac_weights', (['logger', 'mac', 'i'], {}), '(logger, mac, i)\n', (14556, 14572), False, 'from utils.logging import Logger, log_mac_weights\n'), ((15570, 15601), 'utils.logging.log_mac_weights', 'log_mac_weights', (['logger', 'mac', 'i'], {}), '(logger, mac, i)\n', (15585, 15601), False, 'from utils.logging import Logger, log_mac_weights\n'), ((18835, 18858), 'torch.sum', 'th.sum', (["batch['reward']"], {}), "(batch['reward'])\n", (18841, 18858), True, 'import torch as th\n'), ((1340, 1365), 'os.path.dirname', 'os.path.dirname', (['__file__'], {}), '(__file__)\n', (1355, 1365), False, 'import os\n'), ((1659, 1684), 'os.path.dirname', 'os.path.dirname', (['__file__'], {}), '(__file__)\n', (1674, 1684), False, 'import os\n'), ((1982, 2007), 'os.path.dirname', 'os.path.dirname', (['__file__'], {}), '(__file__)\n', (1997, 2007), False, 'import os\n'), ((6367, 6392), 'rapport_models.markov.state.State', 'State', (["{'loc': agent_loc}"], {}), "({'loc': agent_loc})\n", (6372, 6392), False, 'from rapport_models.markov.state import State\n'), ((10847, 10864), 'os.path.abspath', 'abspath', (['__file__'], {}), '(__file__)\n', (10854, 10864), False, 'from os.path import dirname, abspath\n'), ((11992, 12022), 'components.transforms.OneHot', 'OneHot', ([], {'out_dim': 'args.n_actions'}), '(out_dim=args.n_actions)\n', (11998, 12022), False, 'from components.transforms import OneHot\n'), ((13865, 13876), 'numpy.mean', 'np.mean', (['tt'], {}), '(tt)\n', (13872, 13876), True, 'import numpy as np\n'), ((13933, 13944), 'numpy.mean', 'np.mean', (['sc'], {}), '(sc)\n', (13940, 13944), True, 'import numpy as np\n'), ((14001, 14012), 'numpy.mean', 'np.mean', (['gc'], {}), '(gc)\n', (14008, 14012), True, 'import numpy as np\n'), ((14143, 14154), 'numpy.mean', 'np.mean', (['tt'], {}), '(tt)\n', (14150, 14154), True, 'import numpy as np\n'), ((15256, 15267), 'numpy.mean', 'np.mean', (['tt'], {}), '(tt)\n', (15263, 15267), True, 'import numpy as np\n'), ((15324, 15335), 'numpy.mean', 'np.mean', (['sc'], {}), '(sc)\n', (15331, 15335), True, 'import numpy as np\n'), ((15392, 15403), 'numpy.mean', 'np.mean', (['gc'], {}), '(gc)\n', (15399, 15403), True, 'import numpy as np\n'), ((15705, 15739), 'datetime.timedelta', 'datetime.timedelta', ([], {'seconds': 'tdelta'}), '(seconds=tdelta)\n', (15723, 15739), False, 'import datetime\n'), ((16146, 16157), 'numpy.mean', 'np.mean', (['tt'], {}), '(tt)\n', (16153, 16157), True, 'import numpy as np\n'), ((16161, 16171), 'numpy.var', 'np.var', (['tt'], {}), '(tt)\n', (16167, 16171), True, 'import numpy as np\n'), ((16190, 16201), 'numpy.mean', 'np.mean', (['sc'], {}), '(sc)\n', (16197, 16201), True, 'import numpy as np\n'), ((16205, 16215), 'numpy.var', 'np.var', (['sc'], {}), '(sc)\n', (16211, 16215), True, 'import numpy as np\n'), ((16239, 16250), 'numpy.mean', 'np.mean', (['gc'], {}), '(gc)\n', (16246, 16250), True, 'import numpy as np\n'), ((16254, 16264), 'numpy.var', 'np.var', (['gc'], {}), '(gc)\n', (16260, 16264), True, 'import numpy as np\n'), ((17815, 17845), 'components.transforms.OneHot', 'OneHot', ([], {'out_dim': 'args.n_actions'}), '(out_dim=args.n_actions)\n', (17821, 17845), False, 'from components.transforms import OneHot\n'), ((19075, 19097), 'numpy.mean', 'np.mean', (['episode_times'], {}), '(episode_times)\n', (19082, 19097), True, 'import numpy as np\n'), ((19101, 19122), 'numpy.var', 'np.var', (['episode_times'], {}), '(episode_times)\n', (19107, 19122), True, 'import numpy as np\n'), ((19156, 19175), 'numpy.mean', 'np.mean', (['step_count'], {}), '(step_count)\n', (19163, 19175), True, 'import numpy as np\n'), ((19179, 19197), 'numpy.var', 'np.var', (['step_count'], {}), '(step_count)\n', (19185, 19197), True, 'import numpy as np\n'), ((19215, 19231), 'numpy.mean', 'np.mean', (['rewards'], {}), '(rewards)\n', (19222, 19231), True, 'import numpy as np\n'), ((19235, 19250), 'numpy.var', 'np.var', (['rewards'], {}), '(rewards)\n', (19241, 19250), True, 'import numpy as np\n'), ((20094, 20117), 'datetime.datetime.now', 'datetime.datetime.now', ([], {}), '()\n', (20115, 20117), False, 'import datetime\n'), ((9508, 9555), 'datetime.timedelta', 'datetime.timedelta', ([], {'seconds': 'data_gathering_time'}), '(seconds=data_gathering_time)\n', (9526, 9555), False, 'import datetime\n'), ((9569, 9586), 'numpy.mean', 'np.mean', (['ep_times'], {}), '(ep_times)\n', (9576, 9586), True, 'import numpy as np\n'), ((9590, 9606), 'numpy.std', 'np.std', (['ep_times'], {}), '(ep_times)\n', (9596, 9606), True, 'import numpy as np\n'), ((9627, 9649), 'numpy.mean', 'np.mean', (['ep_step_count'], {}), '(ep_step_count)\n', (9634, 9649), True, 'import numpy as np\n'), ((9653, 9674), 'numpy.std', 'np.std', (['ep_step_count'], {}), '(ep_step_count)\n', (9659, 9674), True, 'import numpy as np\n'), ((9737, 9756), 'numpy.mean', 'np.mean', (['ep_rewards'], {}), '(ep_rewards)\n', (9744, 9756), True, 'import numpy as np\n'), ((9760, 9778), 'numpy.std', 'np.std', (['ep_rewards'], {}), '(ep_rewards)\n', (9766, 9778), True, 'import numpy as np\n'), ((9796, 9816), 'numpy.mean', 'np.mean', (['ep_epsilons'], {}), '(ep_epsilons)\n', (9803, 9816), True, 'import numpy as np\n'), ((9820, 9839), 'numpy.std', 'np.std', (['ep_epsilons'], {}), '(ep_epsilons)\n', (9826, 9839), True, 'import numpy as np\n'), ((14263, 14274), 'numpy.mean', 'np.mean', (['tt'], {}), '(tt)\n', (14270, 14274), True, 'import numpy as np\n'), ((14097, 14108), 'numpy.mean', 'np.mean', (['tt'], {}), '(tt)\n', (14104, 14108), True, 'import numpy as np\n'), ((15488, 15499), 'numpy.mean', 'np.mean', (['tt'], {}), '(tt)\n', (15495, 15499), True, 'import numpy as np\n'), ((8993, 9010), 'numpy.mean', 'np.mean', (['ep_times'], {}), '(ep_times)\n', (9000, 9010), True, 'import numpy as np\n'), ((9014, 9030), 'numpy.std', 'np.std', (['ep_times'], {}), '(ep_times)\n', (9020, 9030), True, 'import numpy as np\n'), ((9051, 9073), 'numpy.mean', 'np.mean', (['ep_step_count'], {}), '(ep_step_count)\n', (9058, 9073), True, 'import numpy as np\n'), ((9077, 9098), 'numpy.std', 'np.std', (['ep_step_count'], {}), '(ep_step_count)\n', (9083, 9098), True, 'import numpy as np\n'), ((9169, 9188), 'numpy.mean', 'np.mean', (['ep_rewards'], {}), '(ep_rewards)\n', (9176, 9188), True, 'import numpy as np\n'), ((9192, 9210), 'numpy.std', 'np.std', (['ep_rewards'], {}), '(ep_rewards)\n', (9198, 9210), True, 'import numpy as np\n'), ((9228, 9248), 'numpy.mean', 'np.mean', (['ep_epsilons'], {}), '(ep_epsilons)\n', (9235, 9248), True, 'import numpy as np\n'), ((9252, 9271), 'numpy.std', 'np.std', (['ep_epsilons'], {}), '(ep_epsilons)\n', (9258, 9271), True, 'import numpy as np\n'), ((14404, 14415), 'numpy.mean', 'np.mean', (['tt'], {}), '(tt)\n', (14411, 14415), True, 'import numpy as np\n')]
import copy import pickle import unittest from op_hierarchical_chainmap._ext import ChainMap class TestChainMap(unittest.TestCase): def test_basics(self): c = ChainMap() c['a'] = 1 c['b'] = 2 d = c.new_child() d['b'] = 20 d['c'] = 30 self.assertEqual(d.maps, [{'b':20, 'c':30}, {'a':1, 'b':2}]) # check internal state self.assertEqual(d.items(), dict(a=1, b=20, c=30).items()) # check items/iter/getitem self.assertEqual(len(d), 3) # check len for key in 'abc': # check contains self.assertIn(key, d) for k, v in dict(a=1, b=20, c=30, z=100).items(): # check get self.assertEqual(d.get(k, 100), v) del d['b'] # unmask a value self.assertEqual(d.maps, [{'c':30}, {'a':1, 'b':2}]) # check internal state self.assertEqual(d.items(), dict(a=1, b=2, c=30).items()) # check items/iter/getitem self.assertEqual(len(d), 3) # check len for key in 'abc': # check contains self.assertIn(key, d) for k, v in dict(a=1, b=2, c=30, z=100).items(): # check get self.assertEqual(d.get(k, 100), v) for e in d.copy(), copy.copy(d): # check shallow copies self.assertEqual(d, e) self.assertEqual(d.maps, e.maps) self.assertIsNot(d, e) self.assertIsNot(d.maps[0], e.maps[0]) for m1, m2 in zip(d.maps[1:], e.maps[1:]): self.assertIs(m1, m2) # check deep copies # pybind11 doesn't seem to support pickle v0 & v1 for proto in range(2, pickle.HIGHEST_PROTOCOL + 1): e = pickle.loads(pickle.dumps(d, proto)) self.assertEqual(d, e) self.assertEqual(d.maps, e.maps) self.assertIsNot(d, e) for m1, m2 in zip(d.maps, e.maps): self.assertIsNot(m1, m2, e) for e in [copy.deepcopy(d), ]: self.assertEqual(d, e) self.assertEqual(d.maps, e.maps) self.assertIsNot(d, e) for m1, m2 in zip(d.maps, e.maps): self.assertIsNot(m1, m2, e) f = d.new_child() f['b'] = 5 self.assertEqual(f.maps, [{'b': 5}, {'c':30}, {'a':1, 'b':2}]) self.assertEqual(f.parents.maps, [{'c':30}, {'a':1, 'b':2}]) # check parents self.assertEqual(f['b'], 5) # find first in chain self.assertEqual(f.parents['b'], 2) # look beyond maps[0] def test_ordering(self): # Combined order matches a series of dict updates from last to first. # This test relies on the ordering of the underlying dicts. baseline = {'music': 'bach', 'art': 'rembrandt'} adjustments = {'art': 'van gogh', 'opera': 'carmen'} cm = ChainMap(adjustments, baseline) combined = baseline.copy() combined.update(adjustments) self.assertEqual(list(combined.items()), list(cm.items())) def test_constructor(self): self.assertEqual(ChainMap().maps, [{}]) # no-args --> one new dict self.assertEqual(ChainMap({1:2}).maps, [{1:2}]) # 1 arg --> list def test_bool(self): self.assertFalse(ChainMap()) self.assertFalse(ChainMap({}, {})) self.assertTrue(ChainMap({1:2}, {})) self.assertTrue(ChainMap({}, {1:2}))
[ "pickle.dumps", "op_hierarchical_chainmap._ext.ChainMap", "copy.deepcopy", "copy.copy" ]
[((174, 184), 'op_hierarchical_chainmap._ext.ChainMap', 'ChainMap', ([], {}), '()\n', (182, 184), False, 'from op_hierarchical_chainmap._ext import ChainMap\n'), ((3143, 3174), 'op_hierarchical_chainmap._ext.ChainMap', 'ChainMap', (['adjustments', 'baseline'], {}), '(adjustments, baseline)\n', (3151, 3174), False, 'from op_hierarchical_chainmap._ext import ChainMap\n'), ((1449, 1461), 'copy.copy', 'copy.copy', (['d'], {}), '(d)\n', (1458, 1461), False, 'import copy\n'), ((2199, 2215), 'copy.deepcopy', 'copy.deepcopy', (['d'], {}), '(d)\n', (2212, 2215), False, 'import copy\n'), ((3586, 3596), 'op_hierarchical_chainmap._ext.ChainMap', 'ChainMap', ([], {}), '()\n', (3594, 3596), False, 'from op_hierarchical_chainmap._ext import ChainMap\n'), ((3623, 3639), 'op_hierarchical_chainmap._ext.ChainMap', 'ChainMap', (['{}', '{}'], {}), '({}, {})\n', (3631, 3639), False, 'from op_hierarchical_chainmap._ext import ChainMap\n'), ((3665, 3687), 'op_hierarchical_chainmap._ext.ChainMap', 'ChainMap', (['{(1): 2}', '{}'], {}), '({(1): 2}, {})\n', (3673, 3687), False, 'from op_hierarchical_chainmap._ext import ChainMap\n'), ((3710, 3732), 'op_hierarchical_chainmap._ext.ChainMap', 'ChainMap', (['{}', '{(1): 2}'], {}), '({}, {(1): 2})\n', (3718, 3732), False, 'from op_hierarchical_chainmap._ext import ChainMap\n'), ((1951, 1973), 'pickle.dumps', 'pickle.dumps', (['d', 'proto'], {}), '(d, proto)\n', (1963, 1973), False, 'import pickle\n'), ((3374, 3384), 'op_hierarchical_chainmap._ext.ChainMap', 'ChainMap', ([], {}), '()\n', (3382, 3384), False, 'from op_hierarchical_chainmap._ext import ChainMap\n'), ((3472, 3490), 'op_hierarchical_chainmap._ext.ChainMap', 'ChainMap', (['{(1): 2}'], {}), '({(1): 2})\n', (3480, 3490), False, 'from op_hierarchical_chainmap._ext import ChainMap\n')]
# Copyright 2018 Red Hat, Inc. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. import os.path from six.moves import configparser from sphinx.util import logging import pbr.version _project = None logger = logging.getLogger(__name__) def _find_setup_cfg(srcdir): """Find the 'setup.cfg' file, if it exists. This assumes we're using 'doc/source' for documentation, but also allows for single level 'doc' paths. """ # TODO(stephenfin): Are we sure that this will always exist, e.g. for # an sdist or wheel? Perhaps we should check for 'PKG-INFO' or # 'METADATA' files, a la 'pbr.packaging._get_version_from_pkg_metadata' for path in [ os.path.join(srcdir, os.pardir, 'setup.cfg'), os.path.join(srcdir, os.pardir, os.pardir, 'setup.cfg')]: if os.path.exists(path): return path return None def _get_project_name(srcdir): """Return string name of project name, or None. This extracts metadata from 'setup.cfg'. We don't rely on distutils/setuptools as we don't want to actually install the package simply to build docs. """ global _project if _project is None: parser = configparser.ConfigParser() path = _find_setup_cfg(srcdir) if not path or not parser.read(path): logger.info('Could not find a setup.cfg to extract project name ' 'from') return None try: # for project name we use the name in setup.cfg, but if the # length is longer then 32 we use summary. Otherwise thAe # menu rendering looks brolen project = parser.get('metadata', 'name') if len(project.split()) == 1 and len(project) > 32: project = parser.get('metadata', 'summary') except configparser.Error: logger.info('Could not extract project metadata from setup.cfg') return None _project = project return _project def _builder_inited(app): # TODO(stephenfin): Once Sphinx 1.8 is released, we should move the below # to a 'config-inited' handler project_name = _get_project_name(app.srcdir) try: version_info = pbr.version.VersionInfo(project_name) except Exception: version_info = None if version_info and not app.config.version and not app.config.release: app.config.version = version_info.canonical_version_string() app.config.release = version_info.version_string_with_vcs() def setup(app): app.connect('builder-inited', _builder_inited) return { 'parallel_read_safe': True, 'parallel_write_safe': True, }
[ "sphinx.util.logging.getLogger", "six.moves.configparser.ConfigParser" ]
[((731, 758), 'sphinx.util.logging.getLogger', 'logging.getLogger', (['__name__'], {}), '(__name__)\n', (748, 758), False, 'from sphinx.util import logging\n'), ((1714, 1741), 'six.moves.configparser.ConfigParser', 'configparser.ConfigParser', ([], {}), '()\n', (1739, 1741), False, 'from six.moves import configparser\n')]
# -*- coding: utf-8 -*- """ Created on Sun May 21 14:31:32 2017 @author: <NAME> """ import random inf = 0 prime = 2**17-1 order = 131307 # remember to check isSingular(a,b,p) == False a = 1 b = 6 # Uses the idea of squareAndMultiply to compute c*p quickly in E. # Based on algorithm on p. 266 in course literature. # Using NAF representation (and adding subtract step) makes our implementation # a bit faster. def doubleAndAddOrSubtract(p, c): q = inf b = intToNAF(c) for i in range(len(b)-1,-1, -1): q = addPoints(q,q) if b[i] == 1: q = addPoints(p,q) elif b[i] == -1: q = addPoints(negPoint(p),q) if q == inf: return inf else: return (q[0], q[1]) # Adds two points P and Q in E. # P and Q should be tuples of the form (x,y) # This method returns a tuple representing the new coordinates. # See p. 258 in course lit. def addPoints(p,q): if q == inf: return p if p == inf: return q if q[0] == p[0] and q[1] == -p[1] % prime: return inf l = 0 if p != q: #maybe need add prime to q1-p1 l = ((q[1] - p[1] ) * modInverse(q[0]-p[0], prime)) % prime else: l = ((3 *p[0]**2 + a) * modInverse(2*p[1], prime)) % prime x3 = (l**2 - p[0]-q[0]) % prime return (x3, (l*(p[0] - x3) - p[1]) % prime); # Computes the multiplicative inverse of the 'number' in modulo 'base'. # If no inverse exists, '-1' will be returned. Inverse otherwise. # Based on algorithm on p. 168 in course lit. def modInverse(number, base): number0 = number % base base0 = base t0 = 0 t = 1 q = base0 // number0 r = base0 - q * number0 while r > 0: temp = (t0 - q*t) % base t0 = t t = temp base0 = number0 number0 = r q = base0 // number0 r = base0 - q* number0 if number0 != 1: return 0 #-1 else: return t # Returns number of affine points on the elliptic curve (wihout point at inf). def countResidues(a, b, p): counter = 0 for x in range(0,p): # the curve in y2 = (x**3+a*x+b) % p # if x^3+ax+b = 0 (mod p), then there exists one point only. # i.e. the point is still on the curve even if there is no residue. if y2 == 0: counter += 1 continue # if quadratic residues exists, two points are on the curve # i.e. the solutions to y^2 = x^3+ax+b (mod p) if isQuadRes(y2, p): counter +=2 return counter # Check if a curve is singular by checking that 4a^3+27b^2 = 0 # See p. 255 in course lit. def isSingular(a, b, p): return ( -(4*a*a*a % p)-(27*b*b % p)) % p == 0 # Determines if there exists an x such that x^2=a (mod p), in other words, # it will return true if the quadratic residue exists. # Based on Euler's criterion, see course lit p. 180. def isQuadRes(a,p): return squareAndMultiply(a,((p-1)//2), p) == 1 # Convert a number to Non-adjacent form # Based on pseudo-code at https://en.wikipedia.org/wiki/Non-adjacent_form def intToNAF(number): i = 0 z = [] #z = [0]*(math.floor(math.log2(number) +1) +10) while number > 0: if number % 2 == 1: z.append(2 - (number % 4)) number = number - z[i] else: z.append(0) number = number // 2 i = i +1 return z # Get the negative point, eg. -p, given p. def negPoint(point): return (point[0], (-point[1]) % prime) # Return an array that contains the binary representation of the number. def intToBin(number): return '{:b}'.format(number) def mod(number, base): return number - base * (number//base) # Calculate 'x^c mod n' using square-and-multiply algorithm. def squareAndMultiply(x,c,n): # get the binary representation of c, the exponent. b = intToBin(c) z = 1 # the main algorithm, adjusted from p. 177 from course lit. for i in range(len(b)): z = mod(z*z, n) if b[i] == '1': z = mod(z*x, n) return z def find_g(order): g = random.randint(0,prime) if mod(prime,4) != 3: print("Cannot use this method to find the root.") return while True: # not(isQuadRes(g, prime)): g = random.randint(0,prime) root = squareAndMultiply(g,3,prime) g1 = (g,root) if doubleAndAddOrSubtract(g1, order) == inf: return g1 return -1 def find_order(g): r = order_range() for i in range(int(r[0]), int(r[1])+1): if doubleAndAddOrSubtract(g, i) == inf: return i return -1 #countResidues(a, b, prime)+1 def order_range(): import math return ( prime +1 -2*math.sqrt(prime), prime +1 +2*math.sqrt(prime) ) def find_public_key(g, secret): return doubleAndAddOrSubtract(g, secret) def sign(g,secret, k_rnd, hash_val): m = secret k = k_rnd q = order u, v = doubleAndAddOrSubtract(g, k) r = mod(u,q) s = mod(modInverse(k, q) * mod(hash_val + m*r, q), q) # NOTE: if either r==0 or s==0, a new random # value k needs to be chosen return (r,s) def verify(g, signature, public_key, hash_value): h = hash_value q = order r = signature[0] s = signature[1] w = modInverse(s, q) i = mod(w * h, q) j = mod(w*r, q) t1 = doubleAndAddOrSubtract(g, i) t2 = doubleAndAddOrSubtract(public_key, j) print(addPoints(t1, t2)) r1, _ = addPoints(t1, t2) #return addPoints(t1, t2) return r1 == r def find_gen_order(g): i = 2 while doubleAndAddOrSubtract(g, i) != 0: i+=1 return i print(isSingular(a,b,prime) == False) #order = countResidues(a, b, prime) secret = 111 g = (89887, 3726) #order = #find_order(g) pub = find_public_key(g, secret) res = sign(g, secret, 16, 44444) print(res) print(verify(g, res, pub, 44444)) # https://rosettacode.org/wiki/Miller%E2%80%93Rabin_primality_test#Python:_Probably_correct_answers def is_Prime(n): """ Miller-Rabin primality test. A return value of False means n is certainly not prime. A return value of True means n is very likely a prime. """ if n!=int(n): return False n=int(n) #Miller-Rabin test for prime if n==0 or n==1 or n==4 or n==6 or n==8 or n==9: return False if n==2 or n==3 or n==5 or n==7: return True s = 0 d = n-1 while d%2==0: d>>=1 s+=1 assert(2**s * d == n-1) def trial_composite(a): if pow(a, d, n) == 1: return False for i in range(s): if pow(a, 2**i * d, n) == n-1: return False return True for i in range(8):#number of trials a = random.randrange(2, n) if trial_composite(a): return False return True
[ "math.sqrt", "random.randint", "random.randrange" ]
[((4258, 4282), 'random.randint', 'random.randint', (['(0)', 'prime'], {}), '(0, prime)\n', (4272, 4282), False, 'import random\n'), ((4447, 4471), 'random.randint', 'random.randint', (['(0)', 'prime'], {}), '(0, prime)\n', (4461, 4471), False, 'import random\n'), ((7013, 7035), 'random.randrange', 'random.randrange', (['(2)', 'n'], {}), '(2, n)\n', (7029, 7035), False, 'import random\n'), ((4926, 4942), 'math.sqrt', 'math.sqrt', (['prime'], {}), '(prime)\n', (4935, 4942), False, 'import math\n'), ((4956, 4972), 'math.sqrt', 'math.sqrt', (['prime'], {}), '(prime)\n', (4965, 4972), False, 'import math\n')]
''' Description: This script calculate the sentiment score for every headline in a dataset of over a million headlines taken from the Australian news source ABC. This is done using the spaCyTextBlob approach. It saves a plot of sentiment over time with a 1-week rolling average and a plot of sentiment over time with a 1-month rolling average. ''' # Packages # Path operations import os # Suppress warnings import warnings warnings.filterwarnings("ignore") # Importing pandas to make changes in dataframe import pandas as pd # NLP tools import spacy from spacytextblob.spacytextblob import SpacyTextBlob # Plotting import matplotlib.pyplot as plt # Commandline arguments import argparse class headline_polarity: def __init__(self, args): self.args = args # Assigns args to use it throughout the script ''' Load data and change data formats ''' print('[INFO] Loading and prepocessing data...') # Defining path and csv self.ds = pd.read_csv(args['path']) # Sample data if self.args['sample'] is not None: self.ds = self.ds.sample(self.args['sample']) # Change date format to year-month-day self.ds["publish_date"]= pd.to_datetime(self.ds.publish_date, format="%Y%m%d") # Achieving polarity def polarity(self): ''' Function that calculates text polarity with SpacyTextBlob ''' print('[INFO] Calculating polarity...') # Initialising spaCy nlp = spacy.load('en_core_web_sm') # Spacy text blob spacy_text_blob = SpacyTextBlob() nlp.add_pipe(spacy_text_blob) # Initialising Vader import nltk nltk.download('vader_lexicon') from nltk.sentiment.vader import SentimentIntensityAnalyzer sentiment = SentimentIntensityAnalyzer() # Empty array polarity_scores = [] polarity_scores_vader = [] # Looping through headline in dataset and appending polarities to the array defined above for doc in nlp.pipe(self.ds["headline_text"]): polarity_scores.append(doc._.sentiment.polarity) # Assigning polarity to the dataset self.ds["polarity_TextBlob"] = polarity_scores # Vader polarity for headline in self.ds["headline_text"]: polarity_scores_vader.append(sentiment.polarity_scores(headline).get('compound')) self.ds["polarity_Vader"] = polarity_scores_vader # Plot function def plot_polarity(self, save = True): ''' Function that plots text polarity with a weekly and monthly rolling mean ''' # Splitting argument up rolling_means = self.args['rolling_means'].split(sep=" ") print(f'[INFO] Creating plot of polarity with rolling means of {rolling_means[0]} and {rolling_means[1]}...') # Changing the color map to Paired instead of Viridis plt.rcParams["image.cmap"] = "Paired" plt.rcParams['axes.prop_cycle'] = plt.cycler(color=plt.cm.Paired.colors) # Grouping dataset by date and taking mean polarity within 7 and 30 days pol_1 = self.ds[["publish_date", "polarity_TextBlob"]].groupby("publish_date", as_index = False).mean("polarity_TextBlob").rolling(int(rolling_means[0])).mean() pol_2 = self.ds[["publish_date", "polarity_TextBlob"]].groupby("publish_date", as_index = False).mean("polarity_TextBlob").rolling(int(rolling_means[1])).mean() pol_3 = self.ds[["publish_date", "polarity_Vader"]].groupby("publish_date", as_index = False).mean("polarity_Vader").rolling(int(rolling_means[0])).mean() pol_4 = self.ds[["publish_date", "polarity_Vader"]].groupby("publish_date", as_index = False).mean("polarity_Vader").rolling(int(rolling_means[1])).mean() # Plotting linewidth=0.5 plt.figure(figsize=(15, 10)) plt.plot(pol_1, label = 'Weekly TextBlob', linewidth=linewidth) plt.plot(pol_2, label = 'Monthly TextBlob',linewidth=linewidth) plt.plot(pol_3, label = 'Weekly Vader',linewidth=linewidth) plt.plot(pol_4, label = 'Monthly Vader',linewidth=linewidth) plt.title('Headline polarity scores') plt.xlabel('Date') plt.ylabel('Polarity score') plt.legend() # Save figure if save == True: plt.savefig(os.path.join(self.args['outpath'], 'polarity_plot.png')) plt.show() def main(): ap = argparse.ArgumentParser(description = "[INFO] calculating sentiments") # Defining an argument parse ap.add_argument("--path", "-p", default = os.path.join("..","..", "data", "1","abcnews-date-text.csv"), help = "str, path to data") ap.add_argument("--sample", "-s", default = 10000, help = "sample of data to perform sentiment analysis on, if nothing is specified, if nothing is specified, the entire data set is used") ap.add_argument("--rolling_means", "-r", default = "7 30", help = "str, timeframes to create mean over") ap.add_argument("--outpath", "-o", default = os.path.join("..","..", "out", "1"), help = "str, output path") args = vars(ap.parse_args()) # Adding them together # Code to execute to calculate polarity and plot it headline_polarity_calculator = headline_polarity(args) headline_polarity_calculator.polarity() headline_polarity_calculator.plot_polarity() # Define behaviour when called from command line if __name__=="__main__": main()
[ "nltk.sentiment.vader.SentimentIntensityAnalyzer", "argparse.ArgumentParser", "pandas.read_csv", "spacy.load", "nltk.download", "matplotlib.pyplot.xlabel", "matplotlib.pyplot.plot", "spacytextblob.spacytextblob.SpacyTextBlob", "matplotlib.pyplot.ylabel", "matplotlib.pyplot.legend", "os.path.join...
[((426, 459), 'warnings.filterwarnings', 'warnings.filterwarnings', (['"""ignore"""'], {}), "('ignore')\n", (449, 459), False, 'import warnings\n'), ((4562, 4630), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {'description': '"""[INFO] calculating sentiments"""'}), "(description='[INFO] calculating sentiments')\n", (4585, 4630), False, 'import argparse\n'), ((1003, 1028), 'pandas.read_csv', 'pd.read_csv', (["args['path']"], {}), "(args['path'])\n", (1014, 1028), True, 'import pandas as pd\n'), ((1235, 1288), 'pandas.to_datetime', 'pd.to_datetime', (['self.ds.publish_date'], {'format': '"""%Y%m%d"""'}), "(self.ds.publish_date, format='%Y%m%d')\n", (1249, 1288), True, 'import pandas as pd\n'), ((1531, 1559), 'spacy.load', 'spacy.load', (['"""en_core_web_sm"""'], {}), "('en_core_web_sm')\n", (1541, 1559), False, 'import spacy\n'), ((1612, 1627), 'spacytextblob.spacytextblob.SpacyTextBlob', 'SpacyTextBlob', ([], {}), '()\n', (1625, 1627), False, 'from spacytextblob.spacytextblob import SpacyTextBlob\n'), ((1724, 1754), 'nltk.download', 'nltk.download', (['"""vader_lexicon"""'], {}), "('vader_lexicon')\n", (1737, 1754), False, 'import nltk\n'), ((1843, 1871), 'nltk.sentiment.vader.SentimentIntensityAnalyzer', 'SentimentIntensityAnalyzer', ([], {}), '()\n', (1869, 1871), False, 'from nltk.sentiment.vader import SentimentIntensityAnalyzer\n'), ((3073, 3111), 'matplotlib.pyplot.cycler', 'plt.cycler', ([], {'color': 'plt.cm.Paired.colors'}), '(color=plt.cm.Paired.colors)\n', (3083, 3111), True, 'import matplotlib.pyplot as plt\n'), ((3923, 3951), 'matplotlib.pyplot.figure', 'plt.figure', ([], {'figsize': '(15, 10)'}), '(figsize=(15, 10))\n', (3933, 3951), True, 'import matplotlib.pyplot as plt\n'), ((3960, 4021), 'matplotlib.pyplot.plot', 'plt.plot', (['pol_1'], {'label': '"""Weekly TextBlob"""', 'linewidth': 'linewidth'}), "(pol_1, label='Weekly TextBlob', linewidth=linewidth)\n", (3968, 4021), True, 'import matplotlib.pyplot as plt\n'), ((4033, 4095), 'matplotlib.pyplot.plot', 'plt.plot', (['pol_2'], {'label': '"""Monthly TextBlob"""', 'linewidth': 'linewidth'}), "(pol_2, label='Monthly TextBlob', linewidth=linewidth)\n", (4041, 4095), True, 'import matplotlib.pyplot as plt\n'), ((4106, 4164), 'matplotlib.pyplot.plot', 'plt.plot', (['pol_3'], {'label': '"""Weekly Vader"""', 'linewidth': 'linewidth'}), "(pol_3, label='Weekly Vader', linewidth=linewidth)\n", (4114, 4164), True, 'import matplotlib.pyplot as plt\n'), ((4175, 4234), 'matplotlib.pyplot.plot', 'plt.plot', (['pol_4'], {'label': '"""Monthly Vader"""', 'linewidth': 'linewidth'}), "(pol_4, label='Monthly Vader', linewidth=linewidth)\n", (4183, 4234), True, 'import matplotlib.pyplot as plt\n'), ((4254, 4291), 'matplotlib.pyplot.title', 'plt.title', (['"""Headline polarity scores"""'], {}), "('Headline polarity scores')\n", (4263, 4291), True, 'import matplotlib.pyplot as plt\n'), ((4300, 4318), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Date"""'], {}), "('Date')\n", (4310, 4318), True, 'import matplotlib.pyplot as plt\n'), ((4327, 4355), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Polarity score"""'], {}), "('Polarity score')\n", (4337, 4355), True, 'import matplotlib.pyplot as plt\n'), ((4364, 4376), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (4374, 4376), True, 'import matplotlib.pyplot as plt\n'), ((4515, 4525), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (4523, 4525), True, 'import matplotlib.pyplot as plt\n'), ((4732, 4794), 'os.path.join', 'os.path.join', (['""".."""', '""".."""', '"""data"""', '"""1"""', '"""abcnews-date-text.csv"""'], {}), "('..', '..', 'data', '1', 'abcnews-date-text.csv')\n", (4744, 4794), False, 'import os\n'), ((5264, 5300), 'os.path.join', 'os.path.join', (['""".."""', '""".."""', '"""out"""', '"""1"""'], {}), "('..', '..', 'out', '1')\n", (5276, 5300), False, 'import os\n'), ((4449, 4504), 'os.path.join', 'os.path.join', (["self.args['outpath']", '"""polarity_plot.png"""'], {}), "(self.args['outpath'], 'polarity_plot.png')\n", (4461, 4504), False, 'import os\n')]
from app.api import apiRestful from flask_restplus import Resource class Admin: @apiRestful.route('/admin/anotheradmin') class AnotherAdminView(Resource): def get(self): return {"return" : "Hello World from AnotherMyAdmin!"}, 200 @apiRestful.route('/admin/myadminview') class MyAdminView(Resource): def get(self): return {"return" : "Hello World from MyAdmin!"}, 200
[ "app.api.apiRestful.route" ]
[((89, 128), 'app.api.apiRestful.route', 'apiRestful.route', (['"""/admin/anotheradmin"""'], {}), "('/admin/anotheradmin')\n", (105, 128), False, 'from app.api import apiRestful\n'), ((278, 316), 'app.api.apiRestful.route', 'apiRestful.route', (['"""/admin/myadminview"""'], {}), "('/admin/myadminview')\n", (294, 316), False, 'from app.api import apiRestful\n')]
import json import time from typing import Dict from scrapy.exceptions import NotConfigured from scrapy.http.response.html import HtmlResponse from scrapy_cdr import CDRItem from dd_crawler.utils import get_domain class RequestLogMiddleware: def __init__(self, *, jl_logger, relevancy_threshold: float): # This are per-worker values, while stats values updated in # dd_crawler.queue are global. self.domains = set() self.relevant_domains = set() self.total_score = 0. self.n_crawled = 0 self.jl_logger = jl_logger self.relevancy_threshold = relevancy_threshold @classmethod def from_crawler(cls, crawler) -> 'RequestLogMiddleware': log_path = crawler.settings.get('RESPONSE_LOG_FILE') if not log_path: raise NotConfigured('RESPONSE_LOG_FILE not defined') jl_logger = get_jl_logger(log_path) threshold = crawler.settings.getfloat('PAGE_RELEVANCY_THRESHOLD', 0.5) return cls(jl_logger=jl_logger, relevancy_threshold=threshold) def process_spider_output(self, response, result, spider): for item in result: if isinstance(item, CDRItem): self.log_item(item, response) yield item def log_item(self, item: CDRItem, response: HtmlResponse): self.n_crawled += 1 domain = get_domain(item['url']) self.domains.add(domain) metadata = item.get('metadata', {}) score = metadata.get('page_score', 0.) if score is not None: self.total_score += score if score > self.relevancy_threshold: self.relevant_domains.add(domain) log_entry = { 'time': time.time(), 'url': response.url, 'id': metadata.get('id'), 'parent': metadata.get('parent'), 'depth': response.meta.get('depth', ''), 'priority': response.request.priority, 'score': score, 'total_score': self.total_score, 'n_crawled': self.n_crawled, 'n_domains': len(self.domains), 'n_relevant_domains': len(self.relevant_domains), } if metadata.get('has_login_form'): log_entry['has_login_form'] = True if 'autologin_active' in response.meta: log_entry['login_success'] = response.meta['autologin_active'] self.jl_logger.write_entry(log_entry) class JsonLinesLogger: def __init__(self, log_path): self._log_file = open(log_path, 'at') def write_entry(self, log_entry: Dict): json.dump(log_entry, self._log_file) self._log_file.write('\n') self._log_file.flush() _loggers = {} def get_jl_logger(log_path): if log_path not in _loggers: _loggers[log_path] = JsonLinesLogger(log_path) return _loggers[log_path]
[ "dd_crawler.utils.get_domain", "scrapy.exceptions.NotConfigured", "time.time", "json.dump" ]
[((1370, 1393), 'dd_crawler.utils.get_domain', 'get_domain', (["item['url']"], {}), "(item['url'])\n", (1380, 1393), False, 'from dd_crawler.utils import get_domain\n'), ((2608, 2644), 'json.dump', 'json.dump', (['log_entry', 'self._log_file'], {}), '(log_entry, self._log_file)\n', (2617, 2644), False, 'import json\n'), ((817, 863), 'scrapy.exceptions.NotConfigured', 'NotConfigured', (['"""RESPONSE_LOG_FILE not defined"""'], {}), "('RESPONSE_LOG_FILE not defined')\n", (830, 863), False, 'from scrapy.exceptions import NotConfigured\n'), ((1727, 1738), 'time.time', 'time.time', ([], {}), '()\n', (1736, 1738), False, 'import time\n')]
import pandas as pd import openpyxl df = pd.read_excel("Arquivo.xlsx", engine="openpyxl") print(df.loc[[True, False, False, True, True, True, False], [True, False, False]]) #Mostra apenas linhas e colunas que estão True na lista passada print() print(df.Nome == "Jonathan") #Retorna uma lista de True e False com True apenas nas linhas que correspondem ao que foi passado print() print(df[df.Idade == 19]) #Retorna as linhas em que o valor foi igual ao valor passado print() print(df[(df.Nome == "Lucas") | (df.Idade == 19)]) #Retorna as linhas em que Nome for igual a lucas ou idade for igual a 19 print()
[ "pandas.read_excel" ]
[((42, 90), 'pandas.read_excel', 'pd.read_excel', (['"""Arquivo.xlsx"""'], {'engine': '"""openpyxl"""'}), "('Arquivo.xlsx', engine='openpyxl')\n", (55, 90), True, 'import pandas as pd\n')]
import pygame, thorpy from utilidades.texto import Texto, TextArea from utilidades.button import Button from utilidades.colores import * import config as config """ CLASE PRINCIPAL: Aplicación """ ScreenSize = width, height = 1056, 672 Caption = "CMC v0.11" if not config.pantalla_completa: thorpy.Application(size=ScreenSize, caption=Caption, flags= pygame.DOUBLEBUF) # Declarar propiedades ventana else: thorpy.Application(size=ScreenSize, caption=Caption,flags= pygame.DOUBLEBUF | pygame.FULLSCREEN) # Declarar propiedades ventana class App: # Constructor def __init__(self, resolucion = ScreenSize): # self.screen = None self.pantalla_completa = config.pantalla_completa # Tamaño de la ventana self.ScreenSize = resolucion # Crear pantalla self.screen = thorpy.get_screen() pygame.init() # self.screen.fill((0,0,0)) # pygame.display.set_caption('Proyecto v3', 'icontitle=None') def getScreen(self): return self.screen def getScreenSize(self): return self.ScreenSize def getPantallaCompleta(self): return self.pantalla_completa def general_events(self, pantalla): # Eventos generales - No usar eventos de tipo KEYDOWN keys = pygame.key.get_pressed() # Quitar con Alt + F4 if keys[pygame.K_LALT] and keys[pygame.K_F4]: thorpy.functions.quit_func() # Alternar entre pantalla completa/ventana con ALT + ENTER if keys[pygame.K_LALT] and keys[pygame.K_RETURN]: self.togglePantallaCompleta(pantalla) # Alternar entre pantalla completa/ventana def togglePantallaCompleta(self, pantalla): if not self.pantalla_completa: self.pantalla_completa = True pygame.display.quit() thorpy.Application(size=self.ScreenSize, caption=Caption,flags= pygame.FULLSCREEN | pygame.HWSURFACE) # Declarar propiedades ventana # Crear pantalla self.screen = thorpy.get_screen() pygame.display.init() pantalla.thorpy() else: self.pantalla_completa = False pygame.display.quit() thorpy.Application(size=self.ScreenSize, caption=Caption) # Declarar propiedades ventana # Crear pantalla self.screen = thorpy.get_screen() pygame.display.init() pantalla.thorpy() # Escribir en el archivo config.py la configuración de pantalla completa f = open("config.py","r+") d = f.readline(0) f.seek(0) for i in d: if i != "pantalla_completa=False" or i != "pantalla_completa=True": f.write(f'pantalla_completa={self.pantalla_completa}') # f.truncate() f.close() pass
[ "thorpy.get_screen", "pygame.init", "pygame.display.init", "thorpy.Application", "thorpy.functions.quit_func", "pygame.key.get_pressed", "pygame.display.quit" ]
[((298, 374), 'thorpy.Application', 'thorpy.Application', ([], {'size': 'ScreenSize', 'caption': 'Caption', 'flags': 'pygame.DOUBLEBUF'}), '(size=ScreenSize, caption=Caption, flags=pygame.DOUBLEBUF)\n', (316, 374), False, 'import pygame, thorpy\n'), ((417, 517), 'thorpy.Application', 'thorpy.Application', ([], {'size': 'ScreenSize', 'caption': 'Caption', 'flags': '(pygame.DOUBLEBUF | pygame.FULLSCREEN)'}), '(size=ScreenSize, caption=Caption, flags=pygame.DOUBLEBUF |\n pygame.FULLSCREEN)\n', (435, 517), False, 'import pygame, thorpy\n'), ((826, 845), 'thorpy.get_screen', 'thorpy.get_screen', ([], {}), '()\n', (843, 845), False, 'import pygame, thorpy\n'), ((854, 867), 'pygame.init', 'pygame.init', ([], {}), '()\n', (865, 867), False, 'import pygame, thorpy\n'), ((1293, 1317), 'pygame.key.get_pressed', 'pygame.key.get_pressed', ([], {}), '()\n', (1315, 1317), False, 'import pygame, thorpy\n'), ((1414, 1442), 'thorpy.functions.quit_func', 'thorpy.functions.quit_func', ([], {}), '()\n', (1440, 1442), False, 'import pygame, thorpy\n'), ((1820, 1841), 'pygame.display.quit', 'pygame.display.quit', ([], {}), '()\n', (1839, 1841), False, 'import pygame, thorpy\n'), ((1854, 1960), 'thorpy.Application', 'thorpy.Application', ([], {'size': 'self.ScreenSize', 'caption': 'Caption', 'flags': '(pygame.FULLSCREEN | pygame.HWSURFACE)'}), '(size=self.ScreenSize, caption=Caption, flags=pygame.\n FULLSCREEN | pygame.HWSURFACE)\n', (1872, 1960), False, 'import pygame, thorpy\n'), ((2042, 2061), 'thorpy.get_screen', 'thorpy.get_screen', ([], {}), '()\n', (2059, 2061), False, 'import pygame, thorpy\n'), ((2074, 2095), 'pygame.display.init', 'pygame.display.init', ([], {}), '()\n', (2093, 2095), False, 'import pygame, thorpy\n'), ((2195, 2216), 'pygame.display.quit', 'pygame.display.quit', ([], {}), '()\n', (2214, 2216), False, 'import pygame, thorpy\n'), ((2229, 2286), 'thorpy.Application', 'thorpy.Application', ([], {'size': 'self.ScreenSize', 'caption': 'Caption'}), '(size=self.ScreenSize, caption=Caption)\n', (2247, 2286), False, 'import pygame, thorpy\n'), ((2373, 2392), 'thorpy.get_screen', 'thorpy.get_screen', ([], {}), '()\n', (2390, 2392), False, 'import pygame, thorpy\n'), ((2405, 2426), 'pygame.display.init', 'pygame.display.init', ([], {}), '()\n', (2424, 2426), False, 'import pygame, thorpy\n')]
# Generated by Django 2.0.4 on 2018-04-13 07:47 from django.conf import settings from django.db import migrations, models import django.utils.timezone class Migration(migrations.Migration): dependencies = [ ('report_builder_scheduled', '0001_initial'), ] operations = [ migrations.AlterField( model_name='scheduledreport', name='last_run_at', field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), preserve_default=False, ), migrations.AlterField( model_name='scheduledreport', name='users', field=models.ManyToManyField(blank=True, help_text='Staff users to notify', limit_choices_to={'is_staff': True}, to=settings.AUTH_USER_MODEL), ), ]
[ "django.db.models.DateTimeField", "django.db.models.ManyToManyField" ]
[((418, 492), 'django.db.models.DateTimeField', 'models.DateTimeField', ([], {'auto_now_add': '(True)', 'default': 'django.utils.timezone.now'}), '(auto_now_add=True, default=django.utils.timezone.now)\n', (438, 492), False, 'from django.db import migrations, models\n'), ((658, 797), 'django.db.models.ManyToManyField', 'models.ManyToManyField', ([], {'blank': '(True)', 'help_text': '"""Staff users to notify"""', 'limit_choices_to': "{'is_staff': True}", 'to': 'settings.AUTH_USER_MODEL'}), "(blank=True, help_text='Staff users to notify',\n limit_choices_to={'is_staff': True}, to=settings.AUTH_USER_MODEL)\n", (680, 797), False, 'from django.db import migrations, models\n')]
import pandas as pd def lookup_dates(s): """ This is an extremely fast approach to datetime parsing. For large data, the same dates are often repeated. Rather than re-parse these, we store all unique dates, parse them, and use a lookup to convert all dates. """ dates_dict = {date:pd.to_datetime(date,errors='coerce') for date in s.unique()} return s.map(dates_dict) def end_quarter(series): return (series - pd.tseries.offsets.DateOffset(days=1) + pd.tseries.offsets.QuarterEnd())
[ "pandas.tseries.offsets.QuarterEnd", "pandas.to_datetime", "pandas.tseries.offsets.DateOffset" ]
[((310, 347), 'pandas.to_datetime', 'pd.to_datetime', (['date'], {'errors': '"""coerce"""'}), "(date, errors='coerce')\n", (324, 347), True, 'import pandas as pd\n'), ((487, 518), 'pandas.tseries.offsets.QuarterEnd', 'pd.tseries.offsets.QuarterEnd', ([], {}), '()\n', (516, 518), True, 'import pandas as pd\n'), ((447, 484), 'pandas.tseries.offsets.DateOffset', 'pd.tseries.offsets.DateOffset', ([], {'days': '(1)'}), '(days=1)\n', (476, 484), True, 'import pandas as pd\n')]
# coding: UTF-8 from unittest import TestCase from chipy8.chip8 import Chip8 class TestChip8Architecture(TestCase): def setUp(self): self.cpu = Chip8() def test_memory_length(self): 'Chip8 has 4096 bytes of memory.' self.assertEqual(4096, len(self.cpu.memory)) def test_register_count(self): 'Chip8 has 16 registers.' self.assertEqual(16, len(self.cpu.registers)) def test_program_counter(self): 'Chip8 has a program counter starting at 0x200.' self.assertEqual(0x200, self.cpu.program_counter) def test_index_register(self): 'Chip8 has an index register.' self.assertEqual(0, self.cpu.index_register) def test_screen(self): 'Chip8 has a 64 * 32 screen (2048 pixels).' self.assertEqual(2048, len(self.cpu.screen)) def test_delay_timer(self): 'Chip8 has a delay timer that counts to 0 at 60Hz.' self.assertEqual(0, self.cpu.delay_timer) def test_sound_timer(self): 'Chip8 has a count down sound timer that beeps on non-zero value.' self.assertEqual(0, self.cpu.sound_timer) def test_stack(self): 'Chip8 has a stack to return from jumps and calls.' self.assertIsInstance(self.cpu.stack, list) def test_keyboard(self): 'Chip8 has a hex keyboard with 16 keys.' self.assertEqual(16, len(self.cpu.keyboard))
[ "chipy8.chip8.Chip8" ]
[((158, 165), 'chipy8.chip8.Chip8', 'Chip8', ([], {}), '()\n', (163, 165), False, 'from chipy8.chip8 import Chip8\n')]
import pandas as pd import numpy as np from datetime import datetime, timedelta def test_drawdown_and_returns_series(): index_range = pd.date_range(start=datetime(2000, 1, 1), periods=4, freq='AS-JAN') wealth_index = pd.Series(data=[0.4, 0.3, 0.2, 0.5], index=index_range) dd = wealth_index.drawdown assert dd is not None drawdown_df = dd.data assert drawdown_df is not None assert isinstance(drawdown_df, pd.Series) assert drawdown_df.dtypes == 'float64' assert drawdown_df.name == 'Drawdown' np.testing.assert_almost_equal(drawdown_df['2000-01-01'], 0.0) np.testing.assert_almost_equal(drawdown_df['2001-01-01'], -0.25) np.testing.assert_almost_equal(drawdown_df['2002-01-01'], -0.5) np.testing.assert_almost_equal(drawdown_df['2003-01-01'], 0.0) def test_max_drawdown(): index_range = pd.date_range(start=datetime(2000, 1, 1), periods=4, freq='AS-JAN') wealth_index = pd.Series(data=[0.4, 0.3, 0.2, 0.5], index=index_range) assert wealth_index.drawdown.max_drawdown == -0.5 def test_durations(): index_range = pd.date_range(start=datetime(2000, 1, 1), periods=9, freq='AS-JAN') wealth_index = pd.Series(data=[0.4, 0.3, 0.2, 0.5, 0.4, 0.4, 0.3, 0.3, 0.5], index=index_range) durations = wealth_index.drawdown.durations assert isinstance(durations, pd.Series) assert durations.dtypes == 'timedelta64[ns]' assert durations.name == 'Durations' assert len(durations) == 2 assert durations['2003-01-01'] == timedelta(days=1096) assert durations['2008-01-01'] == timedelta(days=1826)
[ "pandas.Series", "numpy.testing.assert_almost_equal", "datetime.timedelta", "datetime.datetime" ]
[((227, 282), 'pandas.Series', 'pd.Series', ([], {'data': '[0.4, 0.3, 0.2, 0.5]', 'index': 'index_range'}), '(data=[0.4, 0.3, 0.2, 0.5], index=index_range)\n', (236, 282), True, 'import pandas as pd\n'), ((536, 598), 'numpy.testing.assert_almost_equal', 'np.testing.assert_almost_equal', (["drawdown_df['2000-01-01']", '(0.0)'], {}), "(drawdown_df['2000-01-01'], 0.0)\n", (566, 598), True, 'import numpy as np\n'), ((603, 667), 'numpy.testing.assert_almost_equal', 'np.testing.assert_almost_equal', (["drawdown_df['2001-01-01']", '(-0.25)'], {}), "(drawdown_df['2001-01-01'], -0.25)\n", (633, 667), True, 'import numpy as np\n'), ((672, 735), 'numpy.testing.assert_almost_equal', 'np.testing.assert_almost_equal', (["drawdown_df['2002-01-01']", '(-0.5)'], {}), "(drawdown_df['2002-01-01'], -0.5)\n", (702, 735), True, 'import numpy as np\n'), ((740, 802), 'numpy.testing.assert_almost_equal', 'np.testing.assert_almost_equal', (["drawdown_df['2003-01-01']", '(0.0)'], {}), "(drawdown_df['2003-01-01'], 0.0)\n", (770, 802), True, 'import numpy as np\n'), ((935, 990), 'pandas.Series', 'pd.Series', ([], {'data': '[0.4, 0.3, 0.2, 0.5]', 'index': 'index_range'}), '(data=[0.4, 0.3, 0.2, 0.5], index=index_range)\n', (944, 990), True, 'import pandas as pd\n'), ((1174, 1259), 'pandas.Series', 'pd.Series', ([], {'data': '[0.4, 0.3, 0.2, 0.5, 0.4, 0.4, 0.3, 0.3, 0.5]', 'index': 'index_range'}), '(data=[0.4, 0.3, 0.2, 0.5, 0.4, 0.4, 0.3, 0.3, 0.5], index=index_range\n )\n', (1183, 1259), True, 'import pandas as pd\n'), ((1507, 1527), 'datetime.timedelta', 'timedelta', ([], {'days': '(1096)'}), '(days=1096)\n', (1516, 1527), False, 'from datetime import datetime, timedelta\n'), ((1566, 1586), 'datetime.timedelta', 'timedelta', ([], {'days': '(1826)'}), '(days=1826)\n', (1575, 1586), False, 'from datetime import datetime, timedelta\n'), ((160, 180), 'datetime.datetime', 'datetime', (['(2000)', '(1)', '(1)'], {}), '(2000, 1, 1)\n', (168, 180), False, 'from datetime import datetime, timedelta\n'), ((868, 888), 'datetime.datetime', 'datetime', (['(2000)', '(1)', '(1)'], {}), '(2000, 1, 1)\n', (876, 888), False, 'from datetime import datetime, timedelta\n'), ((1107, 1127), 'datetime.datetime', 'datetime', (['(2000)', '(1)', '(1)'], {}), '(2000, 1, 1)\n', (1115, 1127), False, 'from datetime import datetime, timedelta\n')]
# -*- coding: utf-8 -*- # MinIO Python Library for Amazon S3 Compatible Cloud Storage, (C) # 2020 MinIO, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Time formatter for S3 APIs.""" from __future__ import absolute_import import locale from contextlib import contextmanager from datetime import datetime, timezone from . import __LOCALE_LOCK__ _HTTP_HEADER_FORMAT = "%a, %d %b %Y %H:%M:%S GMT" @contextmanager def _set_locale(name): """Thread-safe wrapper to locale.setlocale().""" with __LOCALE_LOCK__: saved = locale.setlocale(locale.LC_ALL) try: yield locale.setlocale(locale.LC_ALL, name) finally: locale.setlocale(locale.LC_ALL, saved) def _to_utc(value): """Convert to UTC time if value is not naive.""" return ( value.astimezone(timezone.utc).replace(tzinfo=None) if value.tzinfo else value ) def from_iso8601utc(value): """Parse UTC ISO-8601 formatted string to datetime.""" if value is None: return None try: time = datetime.strptime(value, "%Y-%m-%dT%H:%M:%S.%fZ") except ValueError: time = datetime.strptime(value, "%Y-%m-%dT%H:%M:%SZ") return time.replace(tzinfo=timezone.utc) def to_iso8601utc(value): """Format datetime into UTC ISO-8601 formatted string.""" if value is None: return None value = _to_utc(value) return ( value.strftime("%Y-%m-%dT%H:%M:%S.") + value.strftime("%f")[:3] + "Z" ) def from_http_header(value): """Parse HTTP header date formatted string to datetime.""" with _set_locale("C"): return datetime.strptime( value, _HTTP_HEADER_FORMAT, ).replace(tzinfo=timezone.utc) def to_http_header(value): """Format datatime into HTTP header date formatted string.""" with _set_locale("C"): return _to_utc(value).strftime(_HTTP_HEADER_FORMAT) def to_amz_date(value): """Format datetime into AMZ date formatted string.""" return _to_utc(value).strftime("%Y%m%dT%H%M%SZ") def utcnow(): """Timezone-aware wrapper to datetime.utcnow().""" return datetime.utcnow().replace(tzinfo=timezone.utc) def to_signer_date(value): """Format datetime into SignatureV4 date formatted string.""" return _to_utc(value).strftime("%Y%m%d")
[ "datetime.datetime.strptime", "locale.setlocale", "datetime.datetime.utcnow" ]
[((1042, 1073), 'locale.setlocale', 'locale.setlocale', (['locale.LC_ALL'], {}), '(locale.LC_ALL)\n', (1058, 1073), False, 'import locale\n'), ((1556, 1605), 'datetime.datetime.strptime', 'datetime.strptime', (['value', '"""%Y-%m-%dT%H:%M:%S.%fZ"""'], {}), "(value, '%Y-%m-%dT%H:%M:%S.%fZ')\n", (1573, 1605), False, 'from datetime import datetime, timezone\n'), ((1172, 1210), 'locale.setlocale', 'locale.setlocale', (['locale.LC_ALL', 'saved'], {}), '(locale.LC_ALL, saved)\n', (1188, 1210), False, 'import locale\n'), ((1644, 1690), 'datetime.datetime.strptime', 'datetime.strptime', (['value', '"""%Y-%m-%dT%H:%M:%SZ"""'], {}), "(value, '%Y-%m-%dT%H:%M:%SZ')\n", (1661, 1690), False, 'from datetime import datetime, timezone\n'), ((2628, 2645), 'datetime.datetime.utcnow', 'datetime.utcnow', ([], {}), '()\n', (2643, 2645), False, 'from datetime import datetime, timezone\n'), ((1105, 1142), 'locale.setlocale', 'locale.setlocale', (['locale.LC_ALL', 'name'], {}), '(locale.LC_ALL, name)\n', (1121, 1142), False, 'import locale\n'), ((2129, 2174), 'datetime.datetime.strptime', 'datetime.strptime', (['value', '_HTTP_HEADER_FORMAT'], {}), '(value, _HTTP_HEADER_FORMAT)\n', (2146, 2174), False, 'from datetime import datetime, timezone\n')]
from mongoengine import Document, StringField, BooleanField, IntField, ListField, ReferenceField, EmailField, LongField from mongoengine import NULLIFY, PULL class User(Document): ID = LongField(unique=True, required=True) Username = StringField(required=True) Password = StringField() IsLock = BooleanField(required=True)
[ "mongoengine.BooleanField", "mongoengine.StringField", "mongoengine.LongField" ]
[((191, 228), 'mongoengine.LongField', 'LongField', ([], {'unique': '(True)', 'required': '(True)'}), '(unique=True, required=True)\n', (200, 228), False, 'from mongoengine import Document, StringField, BooleanField, IntField, ListField, ReferenceField, EmailField, LongField\n'), ((244, 270), 'mongoengine.StringField', 'StringField', ([], {'required': '(True)'}), '(required=True)\n', (255, 270), False, 'from mongoengine import Document, StringField, BooleanField, IntField, ListField, ReferenceField, EmailField, LongField\n'), ((286, 299), 'mongoengine.StringField', 'StringField', ([], {}), '()\n', (297, 299), False, 'from mongoengine import Document, StringField, BooleanField, IntField, ListField, ReferenceField, EmailField, LongField\n'), ((313, 340), 'mongoengine.BooleanField', 'BooleanField', ([], {'required': '(True)'}), '(required=True)\n', (325, 340), False, 'from mongoengine import Document, StringField, BooleanField, IntField, ListField, ReferenceField, EmailField, LongField\n')]
# -*- coding: utf-8 -*- # Generated by Django 1.9.13 on 2017-11-22 15:40 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('surveys', '0021_surveyresponserule'), ] operations = [ migrations.AddField( model_name='molosurveyformfield', name='page_break', field=models.BooleanField(default=False, help_text='Inserts a page break which puts the next question onto a new page'), ), migrations.AddField( model_name='personalisablesurveyformfield', name='page_break', field=models.BooleanField(default=False, help_text='Inserts a page break which puts the next question onto a new page'), ), ]
[ "django.db.models.BooleanField" ]
[((416, 534), 'django.db.models.BooleanField', 'models.BooleanField', ([], {'default': '(False)', 'help_text': '"""Inserts a page break which puts the next question onto a new page"""'}), "(default=False, help_text=\n 'Inserts a page break which puts the next question onto a new page')\n", (435, 534), False, 'from django.db import migrations, models\n'), ((676, 794), 'django.db.models.BooleanField', 'models.BooleanField', ([], {'default': '(False)', 'help_text': '"""Inserts a page break which puts the next question onto a new page"""'}), "(default=False, help_text=\n 'Inserts a page break which puts the next question onto a new page')\n", (695, 794), False, 'from django.db import migrations, models\n')]
# Simple script that uses dataPaser.py to get symbols on Binance # By default it only shows symbols with the status of 'TRADING' # You can get all symbols by setting "onlyTrading=False" and # use "includes='LTC|DAI'" to pull the symbols that include # LTC and/or DAI. We use getKlines to retrieve the kline data # of each of those symbols. from bapiw.dataParser import DataParser import pandas as pd dp = DataParser() # Puts list of all symbols on Binance into symbols var that # includes LTC and DAI in them. # dataParser already put's them into a Dataframe symbols = dp.getSymbols(includes='LTC|DAI') # Print symbols list print(symbols) # Convert symbols dataframe column to a list symbol_list = symbols['symbols'].tolist() # Pull every symbols Kline data of 1min intervals and print them # Using data='ohlcv' we get open, high, low, close and volume values for symbol in symbol_list: df = dp.getKlines(symbol=symbol, interval=dp.INTERVAL_1MIN, data='ohlcv') print(symbol, "Kline data:") print(df)
[ "bapiw.dataParser.DataParser" ]
[((407, 419), 'bapiw.dataParser.DataParser', 'DataParser', ([], {}), '()\n', (417, 419), False, 'from bapiw.dataParser import DataParser\n')]
"""PFIM: Personal Finance Manager""" import os from queue import Queue import sys import sqlite3 import logging import statistics import functools from datetime import date, timedelta from enum import Enum, auto from collections import namedtuple from typing import List, Dict, Callable, Generator, Mapping, Union ## -- set up a logger for the application logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG) _filehandler = logging.FileHandler( os.path.join(os.environ["HOME"], ".pfim.log")) _filehandler.setLevel(logging.DEBUG) _consolehandler = logging.StreamHandler() _consolehandler.setLevel(logging.ERROR) _formatter = logging.Formatter( "[%(asctime)s]::%(name)s::%(message)s") _filehandler.setFormatter(_formatter) _consolehandler.setFormatter(_formatter) # Global Constants and Structures PfimEntry = namedtuple("PfimEntry", "date tag description amount") PfimOutput = namedtuple("PfimOutput", "report summary") PfimQuery = namedtuple("PfimQuery", "query args") _DBNAME = os.path.join(os.environ["HOME"], ".pfimdata.db") _EARN_KIND = "E" _SPENT_KIND = "S" # ---- DATABASE OPERATION CONSTANT ---- RECORD = 1 FETCH = 2 UPDATE = 3 DELETE = 4 _PFIMCmdDoc = {} def _register_cmd_doc(func): functools.wraps(func) def wrapper(*args, **kws): fname = func.__name__ fname = fname[1:] if fname.startswith("_") else fname # fname = fname[:len(fname)-4] if fname[-4:] == "_doc" else fname _PFIMCmdDoc[fname] = func.__doc__ return return wrapper #-record-rcv, -record-xpx, -show, -show-rcv, -show-xpx, -update, #-update-rcv, -update-xpx, -delete, -delete-rcv, -delete-xpx @_register_cmd_doc def _record_rcv(): """record_rcv() Record an income entry into PFIM backend database. This command requires information supplied through its options. The option are as follow. Options: --tag Tag given to this entry. The tag option can be ignored. If ignored, the field will simply be filled with a default symbol "N/A", meaning Not Available. --date This is the date on which the supposed entry was actually made. The date option can be ignored, in which the current date is considered. --descr A short description for the entry. It must not exceed 30 ASCII characters, otherwise it will be truncated. --amount The value of the income being entered into the database. Example ------- In pfim default mode: $ pfim --date=2021-12-26 --descr="Payment from <NAME>" --tag=PWM \ --amount=275.00 In interactive mode: $ pfim --interactive pfim>> record_rcv --date=2021-12 --descr="Payment from <NAME>" --tag=PWM \ --amount=275.00 """ pass _record_rcv() @_register_cmd_doc def _record_xpx(): """record_xpx() Record an expense entry into PFIM backend database. This command requires information supplied through its options. The option are as follow. Options: --tag Tag given to this entry. The tag option can be ignored. If ignored, the field will simply be filled with a default symbol "N/A", meaning Not Available. --date This is the date on which the supposed entry was actually made. The date option can be ignored, in which the current date is considered. --descr A short description for the entry. It must not exceed 30 ASCII characters, otherwise it will be truncated. --amount The value of the expense being entered into the database. Example ------- In pfim default mode: $ pfim --date=2021-12-26 --descr="Bought Cinema ticket" --tag=OUT \ --amount=75.00 In interactive mode: $ pfim --interactive pfim>> record_rcv --date=2021-12 --descr="Bout Ciema ticket" --tag=OUT \ --amount=275.00 """ pass @_register_cmd_doc def _show(): """show() """ pass @_register_cmd_doc def _show_xpx(): """show_xpx() """ pass @_register_cmd_doc def _show_rcv(): """show_rcv() """ pass @_register_cmd_doc def _update(): """update() """ pass @_register_cmd_doc def _update_xpx(): """update_xpx() """ pass @_register_cmd_doc def _update_rcv(): """update_rcv() """ pass @_register_cmd_doc def _delete(): """delete() """ pass @_register_cmd_doc def _delete_xpx(): """delete_xpx() """ pass @_register_cmd_doc def _delete_rcv(): """delete_rcv() """ pass # --- PFIM utility class -- class OutputBeautify: def __init__(self, textstr: str): #self._logger = logging.getLogger("pfim.Pfim.OutPutBeautify") self._textstr = textstr def decorate(self, color="green", slant="normal", underline=False, bold=False): mapping = { "black": 30, "red": 31, "green": 32, "yellow": 33, "blue": 34, "magenta": 35, "cyan": 36, "white": 37, } stylemap = {"noraml": 0, "bold": 1, "italic": 3, "underline": 4} base = 38 if color.lower() in mapping.keys(): cval = mapping[color.lower()] else: cval = mapping["black"] txt = self._textstr if slant.lower() in ("italic", "normal"): sval = stylemap[slant.lower()] else: sval = stylemap["normal"] uval = stylemap["underline"] if underline else None bval = stylemap["bold"] if bold else None deco = f"\x1b[{base};" #"\x1b[m" if sval: deco = deco + f"{sval};" if uval: deco = deco + f"{uval};" if bval: deco = deco + f"{bval};" deco = deco + f"{cval}m;{txt}\x1b[m" return deco def _adapter(dateObj: date): return dateObj.isoformat() def _converter(datestr: str): return date.fromisoformat(datestr) sqlite3.register_adapter(date, _adapter) sqlite3.register_converter("date", _converter) class PfimQueryCmdEnum(Enum): RECORD_RCV = auto() RECORD_XPX = auto() SHOW = auto() SHOW_RCV = auto() SHOW_XPX = auto() UPDATE = auto() # UPDATE_DESC = auto() # FIXME: maybe included as a new command UPDATE_RCV = auto() UPDATE_XPX = auto() DELETE = auto() DELETE_RCV = auto() DELETE_XPX = auto() def _validate_datestr(datestr: str) -> bool: result = None try: result = date.fromisoformat(datestr) except Exception: result = None if result is None: return False return True class PfimData: """PFIM database interface.""" def __init__(self): self._logger = logging.getLogger("pfim.PfimData") # start the db: create a new if it doesn't exists sql = """CREATE TABLE IF NOT EXISTS pfim( id INTEGER PRIMARY KEY AUTOINCREMENT NON NULL, opdate DATE, tag TEXT, description TEXT, amount REAL )""" with sqlite3.connect(_DBNAME, detect_types=sqlite3.PARSE_DECLTYPES|sqlite3.PARSE_COLNAMES ) as conn: conn.cursor().execute(sql).commit() def _run_query(self, query, *args, out=False) ->Union[sqlite3.Cursor, None]: retval = None with sqlite3.connect(_DBNAME) as conn: if args: retval = conn.cursor().execute(query, args) else: retval = conn.cursor().execute(query) conn.commit() if out: return retval def add_entry(self, query: str, *args) -> None: try: self._run_query(query, args) self._logger.debug("New entry added") except sqlite3.Error as err: self._logger.error(f"Failed to add a new entry to database. {err}") sys.exit(1) def fetch(self, query: str, *args) -> Generator: try: retval = self._run_query(query, args) self._logger.debug("Fetched data from database") except sqlite3.Error as err: self._logger.error(f"Failed to fetch data from database. {err}") sys.exit(1) for row in retval: yield row def update(self, query: str, *args) -> None: try: retval = self._run_query(query, args) self._logger.debug("Updated database content") except sqlite3.Error as err: self._logger.error(f"Failed to update database content. {err}") sys.exit(1) for row in retval: yield row def delete(self, query: str, *args) -> None: try: retval = self._run_query(query, args) self._logger.debug("Deleted data from database") except sqlite3.Error as err: self._logger.error(f"Failed to delete data from database. {err}") sys.exit(1) for row in retval: yield row class InteractivePfim: # Use builtin module *Cmd* ? PROMPT = "pfim>> " def __init__(self): self._logger = logging.getLogger("pfim.InteractivePfim") pass def record(self, kw: Dict) -> PfimQuery: pass def report(self, kw: Dict) -> PfimQuery: pass def delete(self, kw: Dict) -> PfimQuery: pass def update(self, kw: Dict) -> PfimQuery: pass def quit(self) -> None: import sys sys.exit(0) def clear_console(self) -> None: pass class Report: def __init__(self): self._logger = logging.getLogger("pfim.Report") self._fmt = None self._head = None self._line = None def create_entry(self, *args, **kw): pass class ReportSummary: def __init__(self, data: List[float]): self._logger = logging.getLogger("pfim.ReportSummary") self._data = data self._compute() def _compute(self): self._count = len(self._data) self._min = min(self._data) self._max = max(self._data) self._median = statistics.median(self._data) self._mean = statistics.fmean(self._data) self._stdev = statistics.stdev(self._data) def __str__(self): summary = f""" SUMMARY ------- Count: {self._count} Minimum: {self._min} Maximum: {self._max} Average: {self._mean} Median: {self._median} Stdev: {self._stdev} """ return summary class PfimCore: """PFIM Core class.""" prolog = "" epilog = "" def __init__(self): self._logger = logging.getLogger("pfim.PfimCore") self._mode = None self._output = None self._query_history = Queue(maxsize=128) def record(self, kw: Dict) -> PfimQuery: pass def update(self, kw: Dict) -> PfimQuery: pass def delete(self, kw: Dict) -> PfimQuery: pass def report(self, kw: Dict) -> PfimQuery: pass def make_output(self) -> PfimOutput: pass def write_output(self, file=sys.stdout): pass def process_fetch_result(self, *args) -> None: pass """ def create_query(self, cmd: PfimQueryCmdEnum, kw: Dict) -> str: # -- Create a new query-- query = None # addgrp # addcmds = (record-rcv|record-xpx) # addOpts = [recDate|recTag] if cmd == PfimQueryCmdEnum.RECORD_RCV: # TODO: make query then return it immediatly return query if cmd == PfimQueryCmdEnum.RECORD_XPX: # TODO: make query then return it immediatly return query # showcmds=(show|show-rcv|show-spent) # showOpts=[sort-(date|tag|amount)]|[after-date|before-date|on-date| # --desc] if cmd == PfimQueryCmdEnum.SHOW: # TODO: make query then return it immediatly return query if cmd == PfimQueryCmdEnum.SHOW_RCV: # TODO: make query then return it immediatly return query if cmd == PfimQueryCmdEnum.SHOW_XPX: # TODO: make query then return it immediatly return query # upcmds = (update|update-rcv|update-spent) # upOpts = [(old-tag, new-tag)|(old-date,new-date)|(old-amount, # new-amount)] if cmd == PfimQueryCmdEnum.UPDATE: # TODO: make query then return it immediatly return query if cmd == PfimQueryCmdEnum.UPDATE_RCV: # TODO: make query then return it immediatly return query if cmd == PfimQueryCmdEnum.UPDATE_XPX: # TODO: make query then return it immediatly return query # rmcmds = (delete|delete-rcv|delete-spent) # rmOpts = [target-tag|target-date|target-mount] if cmd == PfimQueryCmdEnum.DELETE: # TODO: make query then return it immediatly return query if cmd == PfimQueryCmdEnum.DELETE_RCV: # TODO: make query then return it immediatly return query if cmd == PfimQueryCmdEnum.DELETE_XPX: # TODO: make query then return it immediatly return query """ del _filehandler, _consolehandler, _formatter
[ "logging.getLogger", "sqlite3.register_converter", "collections.namedtuple", "logging.StreamHandler", "sqlite3.register_adapter", "enum.auto", "statistics.stdev", "sqlite3.connect", "logging.Formatter", "statistics.fmean", "os.path.join", "functools.wraps", "statistics.median", "sys.exit",...
[((368, 395), 'logging.getLogger', 'logging.getLogger', (['__name__'], {}), '(__name__)\n', (385, 395), False, 'import logging\n'), ((569, 592), 'logging.StreamHandler', 'logging.StreamHandler', ([], {}), '()\n', (590, 592), False, 'import logging\n'), ((646, 703), 'logging.Formatter', 'logging.Formatter', (['"""[%(asctime)s]::%(name)s::%(message)s"""'], {}), "('[%(asctime)s]::%(name)s::%(message)s')\n", (663, 703), False, 'import logging\n'), ((836, 890), 'collections.namedtuple', 'namedtuple', (['"""PfimEntry"""', '"""date tag description amount"""'], {}), "('PfimEntry', 'date tag description amount')\n", (846, 890), False, 'from collections import namedtuple\n'), ((904, 946), 'collections.namedtuple', 'namedtuple', (['"""PfimOutput"""', '"""report summary"""'], {}), "('PfimOutput', 'report summary')\n", (914, 946), False, 'from collections import namedtuple\n'), ((959, 996), 'collections.namedtuple', 'namedtuple', (['"""PfimQuery"""', '"""query args"""'], {}), "('PfimQuery', 'query args')\n", (969, 996), False, 'from collections import namedtuple\n'), ((1008, 1056), 'os.path.join', 'os.path.join', (["os.environ['HOME']", '""".pfimdata.db"""'], {}), "(os.environ['HOME'], '.pfimdata.db')\n", (1020, 1056), False, 'import os\n'), ((6134, 6174), 'sqlite3.register_adapter', 'sqlite3.register_adapter', (['date', '_adapter'], {}), '(date, _adapter)\n', (6158, 6174), False, 'import sqlite3\n'), ((6175, 6221), 'sqlite3.register_converter', 'sqlite3.register_converter', (['"""date"""', '_converter'], {}), "('date', _converter)\n", (6201, 6221), False, 'import sqlite3\n'), ((467, 512), 'os.path.join', 'os.path.join', (["os.environ['HOME']", '""".pfim.log"""'], {}), "(os.environ['HOME'], '.pfim.log')\n", (479, 512), False, 'import os\n'), ((1228, 1249), 'functools.wraps', 'functools.wraps', (['func'], {}), '(func)\n', (1243, 1249), False, 'import functools\n'), ((6105, 6132), 'datetime.date.fromisoformat', 'date.fromisoformat', (['datestr'], {}), '(datestr)\n', (6123, 6132), False, 'from datetime import date, timedelta\n'), ((6270, 6276), 'enum.auto', 'auto', ([], {}), '()\n', (6274, 6276), False, 'from enum import Enum, auto\n'), ((6294, 6300), 'enum.auto', 'auto', ([], {}), '()\n', (6298, 6300), False, 'from enum import Enum, auto\n'), ((6312, 6318), 'enum.auto', 'auto', ([], {}), '()\n', (6316, 6318), False, 'from enum import Enum, auto\n'), ((6334, 6340), 'enum.auto', 'auto', ([], {}), '()\n', (6338, 6340), False, 'from enum import Enum, auto\n'), ((6356, 6362), 'enum.auto', 'auto', ([], {}), '()\n', (6360, 6362), False, 'from enum import Enum, auto\n'), ((6376, 6382), 'enum.auto', 'auto', ([], {}), '()\n', (6380, 6382), False, 'from enum import Enum, auto\n'), ((6469, 6475), 'enum.auto', 'auto', ([], {}), '()\n', (6473, 6475), False, 'from enum import Enum, auto\n'), ((6493, 6499), 'enum.auto', 'auto', ([], {}), '()\n', (6497, 6499), False, 'from enum import Enum, auto\n'), ((6513, 6519), 'enum.auto', 'auto', ([], {}), '()\n', (6517, 6519), False, 'from enum import Enum, auto\n'), ((6537, 6543), 'enum.auto', 'auto', ([], {}), '()\n', (6541, 6543), False, 'from enum import Enum, auto\n'), ((6561, 6567), 'enum.auto', 'auto', ([], {}), '()\n', (6565, 6567), False, 'from enum import Enum, auto\n'), ((6659, 6686), 'datetime.date.fromisoformat', 'date.fromisoformat', (['datestr'], {}), '(datestr)\n', (6677, 6686), False, 'from datetime import date, timedelta\n'), ((6892, 6926), 'logging.getLogger', 'logging.getLogger', (['"""pfim.PfimData"""'], {}), "('pfim.PfimData')\n", (6909, 6926), False, 'import logging\n'), ((9277, 9318), 'logging.getLogger', 'logging.getLogger', (['"""pfim.InteractivePfim"""'], {}), "('pfim.InteractivePfim')\n", (9294, 9318), False, 'import logging\n'), ((9624, 9635), 'sys.exit', 'sys.exit', (['(0)'], {}), '(0)\n', (9632, 9635), False, 'import sys\n'), ((9750, 9782), 'logging.getLogger', 'logging.getLogger', (['"""pfim.Report"""'], {}), "('pfim.Report')\n", (9767, 9782), False, 'import logging\n'), ((10003, 10042), 'logging.getLogger', 'logging.getLogger', (['"""pfim.ReportSummary"""'], {}), "('pfim.ReportSummary')\n", (10020, 10042), False, 'import logging\n'), ((10251, 10280), 'statistics.median', 'statistics.median', (['self._data'], {}), '(self._data)\n', (10268, 10280), False, 'import statistics\n'), ((10302, 10330), 'statistics.fmean', 'statistics.fmean', (['self._data'], {}), '(self._data)\n', (10318, 10330), False, 'import statistics\n'), ((10353, 10381), 'statistics.stdev', 'statistics.stdev', (['self._data'], {}), '(self._data)\n', (10369, 10381), False, 'import statistics\n'), ((10827, 10861), 'logging.getLogger', 'logging.getLogger', (['"""pfim.PfimCore"""'], {}), "('pfim.PfimCore')\n", (10844, 10861), False, 'import logging\n'), ((10946, 10964), 'queue.Queue', 'Queue', ([], {'maxsize': '(128)'}), '(maxsize=128)\n', (10951, 10964), False, 'from queue import Queue\n'), ((7221, 7313), 'sqlite3.connect', 'sqlite3.connect', (['_DBNAME'], {'detect_types': '(sqlite3.PARSE_DECLTYPES | sqlite3.PARSE_COLNAMES)'}), '(_DBNAME, detect_types=sqlite3.PARSE_DECLTYPES | sqlite3.\n PARSE_COLNAMES)\n', (7236, 7313), False, 'import sqlite3\n'), ((7506, 7530), 'sqlite3.connect', 'sqlite3.connect', (['_DBNAME'], {}), '(_DBNAME)\n', (7521, 7530), False, 'import sqlite3\n'), ((8048, 8059), 'sys.exit', 'sys.exit', (['(1)'], {}), '(1)\n', (8056, 8059), False, 'import sys\n'), ((8364, 8375), 'sys.exit', 'sys.exit', (['(1)'], {}), '(1)\n', (8372, 8375), False, 'import sys\n'), ((8723, 8734), 'sys.exit', 'sys.exit', (['(1)'], {}), '(1)\n', (8731, 8734), False, 'import sys\n'), ((9086, 9097), 'sys.exit', 'sys.exit', (['(1)'], {}), '(1)\n', (9094, 9097), False, 'import sys\n')]
import torch from torch import nn from torch.nn import functional as F from .resnet import resnet18, resnet34 from .segmentation import SegmentationHead from .attention import Attention from .erfnet import ERFNet class Normalize(nn.Module): """ ImageNet normalization """ def __init__(self, mean, std): super().__init__() self.mean = nn.Parameter(torch.tensor(mean), requires_grad=False) self.std = nn.Parameter(torch.tensor(std), requires_grad=False) def forward(self, x): return (x - self.mean[None,:,None,None]) / self.std[None,:,None,None] class RGBModel(nn.Module): def __init__(self, seg_channels, pretrained=True): super().__init__() self.num_channels = len(seg_channels) self.backbone = resnet18(pretrained=pretrained) self.normalize = Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]) self.head = None def forward(self, rgb): embd = self.backbone(self.normalize(rgb/255.)) return self.head(embd).squeeze(-1) class RGBSegmentationModel(nn.Module): def __init__(self, seg_channels): super().__init__() self.erfnet = ERFNet(len(seg_channels)+1) self.normalize = lambda x: (x/255.-.5)*2 def forward(self, rgb): return self.erfnet(self.normalize(rgb)) class RGBBrakePredictionModel(nn.Module): def __init__(self, seg_channels, pretrained=True): super().__init__() self.conv_backbone = resnet18(pretrained=pretrained) self.normalize = Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]) self.seg_head = SegmentationHead(512, len(seg_channels)+1) self.classifier = nn.Sequential( nn.Linear(1024,1), nn.Sigmoid() ) def forward(self, rgb1, rgb2, mask=False): x1 = self.conv_backbone(self.normalize(rgb1/255.)) x2 = self.conv_backbone(self.normalize(rgb2/255.)) h1 = x1.mean(dim=[2,3]) h2 = x2.mean(dim=[2,3]) pred_bra = self.classifier(torch.cat([h1,h2], dim=1)) if mask: pred_sem1 = F.interpolate(self.seg_head(x1), scale_factor=4) pred_sem2 = F.interpolate(self.seg_head(x2), scale_factor=4) return pred_bra[:,0], pred_sem1, pred_sem2 else: return pred_bra[:,0]
[ "torch.tensor", "torch.cat", "torch.nn.Sigmoid", "torch.nn.Linear" ]
[((373, 391), 'torch.tensor', 'torch.tensor', (['mean'], {}), '(mean)\n', (385, 391), False, 'import torch\n'), ((446, 463), 'torch.tensor', 'torch.tensor', (['std'], {}), '(std)\n', (458, 463), False, 'import torch\n'), ((1732, 1750), 'torch.nn.Linear', 'nn.Linear', (['(1024)', '(1)'], {}), '(1024, 1)\n', (1741, 1750), False, 'from torch import nn\n'), ((1763, 1775), 'torch.nn.Sigmoid', 'nn.Sigmoid', ([], {}), '()\n', (1773, 1775), False, 'from torch import nn\n'), ((2062, 2088), 'torch.cat', 'torch.cat', (['[h1, h2]'], {'dim': '(1)'}), '([h1, h2], dim=1)\n', (2071, 2088), False, 'import torch\n')]
"""Implementation of predictive classifiers.""" from abc import ABC, abstractmethod import pandas as pd from google_drive_downloader import GoogleDriveDownloader as gdd from joblib import load as jload from geniepy.errors import ClassifierError import geniepy.config as gc ERROR_SCORE = float(-1) PCPCLSFR_NAME = "pub_score" CTCLSFR_NAME = "ct_score" class BaseClassifier(ABC): """Base Classifier Abstract Class.""" __slots__ = [ "_is_trained", # True if classifier is trained "_model", # The classifier model "_name", # The name of the classifier (used as name of prediction col) ] def __init__(self, name): """ Construct classifier obj. Arguments: name {[type]} -- The classifier's name """ self._name = name self._is_trained = False self._model = None @property def name(self): """Return name prediction column.""" return self._name @property def is_trained(self): """Return true is model is trained.""" return self._is_trained @abstractmethod def predict(self, features: pd.DataFrame) -> float: """ Calculate publication count label. It is import for this method to always produce results and handle exceptions internally, so execution isn't halted due to exceptions. Arguments: features {pd.DataFrame} -- Pandas series necessary prediction data Returns: float -- the classifier prediction """ def load(self): """ Load classifier model. Raises: ClassifierError -- If model doesn't load successfully """ # Download model from google drive model_path = gc.TMP_DIR.joinpath("gene_disease_gbc.joblib") model_id = gc.get_model() try: gdd.download_file_from_google_drive( file_id=model_id, dest_path=model_path, unzip=True, ) self._model = jload(model_path) self._is_trained = True model_path.unlink() except Exception: # If load fail raise ClassifierError("Unable to load model") class Classifier(BaseClassifier): """Implementation of Publication Count Predictive Classifier.""" def predict(self, features: pd.DataFrame): """ Calculate publication count label. It is import for this method to always produce results and handle exceptions internally, so execution isn't halted due to exceptions. Arguments: features {pd.DataFrame} -- Pandas series necessary prediction data Returns: float -- the classifier prediction """ if (not self._is_trained) or (features is None): # TODO log event "Received None features to predict" # TODO log event "Untrained classifier can't calculate predictions" return ERROR_SCORE # Only keep expected columns features.dropna(inplace=True) scores_df = pd.DataFrame(features["gene_disease_relationship"]) filtered_features = features[ [ "num_publications", "citations_cum_sum", "authors_cum_sum", "chemicals_cum_sum", "cum_sum_journals", "num_languages", "sjr", "h_index", "us_published", "us_uk_published", ] ] # Predictions and probabilities predictions = self._model.predict(filtered_features) probs = self._model.predict_proba(filtered_features) prob_1 = [item[0] for item in probs] # Get positiive probs only # Add new fields into original df scores_df["classifier_prediction"] = predictions scores_df["classifier_prob"] = prob_1 return scores_df
[ "geniepy.errors.ClassifierError", "geniepy.config.get_model", "geniepy.config.TMP_DIR.joinpath", "google_drive_downloader.GoogleDriveDownloader.download_file_from_google_drive", "joblib.load", "pandas.DataFrame" ]
[((1781, 1827), 'geniepy.config.TMP_DIR.joinpath', 'gc.TMP_DIR.joinpath', (['"""gene_disease_gbc.joblib"""'], {}), "('gene_disease_gbc.joblib')\n", (1800, 1827), True, 'import geniepy.config as gc\n'), ((1847, 1861), 'geniepy.config.get_model', 'gc.get_model', ([], {}), '()\n', (1859, 1861), True, 'import geniepy.config as gc\n'), ((3092, 3143), 'pandas.DataFrame', 'pd.DataFrame', (["features['gene_disease_relationship']"], {}), "(features['gene_disease_relationship'])\n", (3104, 3143), True, 'import pandas as pd\n'), ((1887, 1978), 'google_drive_downloader.GoogleDriveDownloader.download_file_from_google_drive', 'gdd.download_file_from_google_drive', ([], {'file_id': 'model_id', 'dest_path': 'model_path', 'unzip': '(True)'}), '(file_id=model_id, dest_path=model_path,\n unzip=True)\n', (1922, 1978), True, 'from google_drive_downloader import GoogleDriveDownloader as gdd\n'), ((2032, 2049), 'joblib.load', 'jload', (['model_path'], {}), '(model_path)\n', (2037, 2049), True, 'from joblib import load as jload\n'), ((2189, 2228), 'geniepy.errors.ClassifierError', 'ClassifierError', (['"""Unable to load model"""'], {}), "('Unable to load model')\n", (2204, 2228), False, 'from geniepy.errors import ClassifierError\n')]
from keras_metrics import f1, f1b import keras.backend as K import tensorflow as tf def f1_loss(y_true, y_pred): return 1 - K.mean(f1(y_true, y_pred)) def f1b_loss(y_true, y_pred): return 1-K.mean(f1b(y_true, y_pred)) def KerasFocalLoss(target, input): """ Should be applied without sigmoid activtion layer from https://www.kaggle.com/rejpalcz/focalloss-for-keras :param target: :param input: :return: """ gamma = 2. input = tf.cast(input, tf.float32) max_val = K.relu(-input) loss = input - input * target + max_val + K.log(K.exp(-max_val) + K.exp(-input - max_val)) invprobs = tf.log_sigmoid(-input * (target * 2.0 - 1.0)) loss = K.exp(invprobs * gamma) * loss return K.mean(K.sum(loss, axis=1))
[ "keras.backend.sum", "keras.backend.exp", "keras_metrics.f1", "keras_metrics.f1b", "tensorflow.cast", "tensorflow.log_sigmoid", "keras.backend.relu" ]
[((475, 501), 'tensorflow.cast', 'tf.cast', (['input', 'tf.float32'], {}), '(input, tf.float32)\n', (482, 501), True, 'import tensorflow as tf\n'), ((517, 531), 'keras.backend.relu', 'K.relu', (['(-input)'], {}), '(-input)\n', (523, 531), True, 'import keras.backend as K\n'), ((642, 687), 'tensorflow.log_sigmoid', 'tf.log_sigmoid', (['(-input * (target * 2.0 - 1.0))'], {}), '(-input * (target * 2.0 - 1.0))\n', (656, 687), True, 'import tensorflow as tf\n'), ((699, 722), 'keras.backend.exp', 'K.exp', (['(invprobs * gamma)'], {}), '(invprobs * gamma)\n', (704, 722), True, 'import keras.backend as K\n'), ((749, 768), 'keras.backend.sum', 'K.sum', (['loss'], {'axis': '(1)'}), '(loss, axis=1)\n', (754, 768), True, 'import keras.backend as K\n'), ((136, 154), 'keras_metrics.f1', 'f1', (['y_true', 'y_pred'], {}), '(y_true, y_pred)\n', (138, 154), False, 'from keras_metrics import f1, f1b\n'), ((207, 226), 'keras_metrics.f1b', 'f1b', (['y_true', 'y_pred'], {}), '(y_true, y_pred)\n', (210, 226), False, 'from keras_metrics import f1, f1b\n'), ((584, 599), 'keras.backend.exp', 'K.exp', (['(-max_val)'], {}), '(-max_val)\n', (589, 599), True, 'import keras.backend as K\n'), ((602, 625), 'keras.backend.exp', 'K.exp', (['(-input - max_val)'], {}), '(-input - max_val)\n', (607, 625), True, 'import keras.backend as K\n')]
#!/usr/bin/env python3 from setuptools import find_packages, setup setup( name="lean_proof_recording", version="0.0.1", packages=find_packages(), package_data={}, install_requires=[ "mpmath", "pandas", "jsonlines", "tqdm", ], )
[ "setuptools.find_packages" ]
[((142, 157), 'setuptools.find_packages', 'find_packages', ([], {}), '()\n', (155, 157), False, 'from setuptools import find_packages, setup\n')]
from shminspector.api.context import Context from shminspector.api.reactor import Reactor, ReactorCommand, UserInput from shminspector.api.tags import macos, interactive, experimental, prerequisites from shminspector.api.validator import ValidationResult, Status @macos @interactive @experimental @prerequisites("homebrew") class GCloudInstallReactor(Reactor): def react(self, data: ValidationResult, ctx: Context): commands = [] if data.status == Status.NOT_FOUND: commands.append(ReactorCommand(cmd=["brew", "cask", "install", "google-cloud-sdk"])) else: ctx.logger.info("Gcloud already installed") return commands @macos @interactive @experimental @prerequisites("gcloud", "network-connectivity") class GCloudConfigInstallReactor(Reactor): def react(self, data: ValidationResult, ctx: Context): commands = [] if data.status == Status.NOT_FOUND: ctx.logger.info("Going to configure missing gcloud authentication...") if data.input_data is None or not data.input_data.docker_ok: commands.append(ReactorCommand(cmd=["gcloud", "auth", "configure-docker", "--quiet"])) if data.input_data is None or not data.input_data.auth_ok: email_input = UserInput(key="gcloud_email", prompt="\nPlease enter your GCloud email address: ") commands.append(ReactorCommand(cmd=["gcloud", "auth", "login", email_input])) commands.append(ReactorCommand(cmd=["gcloud", "auth", "application-default", "login"])) else: ctx.logger.info("Gcloud authentication already configured") return commands
[ "shminspector.api.tags.prerequisites", "shminspector.api.reactor.ReactorCommand", "shminspector.api.reactor.UserInput" ]
[((300, 325), 'shminspector.api.tags.prerequisites', 'prerequisites', (['"""homebrew"""'], {}), "('homebrew')\n", (313, 325), False, 'from shminspector.api.tags import macos, interactive, experimental, prerequisites\n'), ((719, 766), 'shminspector.api.tags.prerequisites', 'prerequisites', (['"""gcloud"""', '"""network-connectivity"""'], {}), "('gcloud', 'network-connectivity')\n", (732, 766), False, 'from shminspector.api.tags import macos, interactive, experimental, prerequisites\n'), ((518, 585), 'shminspector.api.reactor.ReactorCommand', 'ReactorCommand', ([], {'cmd': "['brew', 'cask', 'install', 'google-cloud-sdk']"}), "(cmd=['brew', 'cask', 'install', 'google-cloud-sdk'])\n", (532, 585), False, 'from shminspector.api.reactor import Reactor, ReactorCommand, UserInput\n'), ((1299, 1389), 'shminspector.api.reactor.UserInput', 'UserInput', ([], {'key': '"""gcloud_email"""', 'prompt': '"""\nPlease enter your GCloud email address: """'}), '(key=\'gcloud_email\', prompt=\n """\nPlease enter your GCloud email address: """)\n', (1308, 1389), False, 'from shminspector.api.reactor import Reactor, ReactorCommand, UserInput\n'), ((1126, 1195), 'shminspector.api.reactor.ReactorCommand', 'ReactorCommand', ([], {'cmd': "['gcloud', 'auth', 'configure-docker', '--quiet']"}), "(cmd=['gcloud', 'auth', 'configure-docker', '--quiet'])\n", (1140, 1195), False, 'from shminspector.api.reactor import Reactor, ReactorCommand, UserInput\n'), ((1414, 1474), 'shminspector.api.reactor.ReactorCommand', 'ReactorCommand', ([], {'cmd': "['gcloud', 'auth', 'login', email_input]"}), "(cmd=['gcloud', 'auth', 'login', email_input])\n", (1428, 1474), False, 'from shminspector.api.reactor import Reactor, ReactorCommand, UserInput\n'), ((1508, 1578), 'shminspector.api.reactor.ReactorCommand', 'ReactorCommand', ([], {'cmd': "['gcloud', 'auth', 'application-default', 'login']"}), "(cmd=['gcloud', 'auth', 'application-default', 'login'])\n", (1522, 1578), False, 'from shminspector.api.reactor import Reactor, ReactorCommand, UserInput\n')]
import re from .AssertionException import AssertionException class _Assert(object): def __init__(self, log): if callable(log): self.__log = log else: self.__log = log # def isIn(self, value, valueList, message = None): Assert.l_isIn(self.__log, value, valueList, message) # def isNotIn(self, value, valueList, message = None): Assert.l_isNotIn(self.__log, value, valueList, message) # def raisesException(self, function, arguments, message = None): Assert.l_raisesException(self.__log, function, arguments, message) # def isCallable(self, value, message = None): Assert.l_isCallable(self.__log, value, message) # def isInstance(self, value, typeOrTypes, message = None): Assert.l_isInstance(self.__log, value, typeOrTypes, message) # def isRegExMatch(self, value, regexPattern, message = None): Assert.l_isRegExMatch(self.__log, value, regexPattern, message) # def isEqual(self, value, otherValue, message = None): Assert.l_isEqual(self.__log, value, otherValue, message) # def isGreater(self, value, otherValue, message = None): Assert.l_isGreater(self.__log, value, otherValue, message) # def isGreaterOrEqual(self, value, otherValue, message = None): Assert.l_isGreaterOrEqual(self.__log, value, otherValue, message) # def isSmaller(self, value, otherValue, message = None): Assert.l_isSmaller(self.__log, value, otherValue, message) # def isSmallerOrEqual(self, value, otherValue, message = None): Assert.l_isSmallerOrEqual(self.__log, value, otherValue, message) # def isNotEqual(self, value, otherValue, message = None): Assert.l_isNotEqual(self.__log, value, otherValue, message) # def isNone(self, value, message = None): Assert.l_isNone(self.__log, value, message) # def isNotNone(self, value, message = None): Assert.l_isNotNone(self.__log, value, message) # def isNotNoneOrEmpty(self, value, message = None): Assert.l_isNotNoneOrEmpty(self.__log, value, message) # def isTrue(self, value, message = None): Assert.l_isTrue(self.__log, value, message) # def isFalse(self, value, message = None): Assert.l_isFalse(self.__log, value, message) # # class Assert(object): @staticmethod def createCustomAssert(log): return _Assert(log) # """ @staticmethod def getAllBaseClasses(cls): # TODO: convert this to an iteration c = list(cls.__bases__) for base in c: c.extend(getAllBaseClasses(base)) return c # """ @staticmethod def isIn(value, valueList, message = None, log = None, identifier:str = None): bSuccess = value in valueList if not bSuccess: if message is None: message = "" else: message += " :: " message = "ASSERTION ERROR :: " + message + "Value is " + repr(value) + " so value is not an element of list " + repr(valueList) + "!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isIn(log, value, valueList, message = None, identifier:str = None): bSuccess = value in valueList if not bSuccess: if message is None: message = "" else: message += " :: " message = "ASSERTION ERROR :: " + message + "Value is " + repr(value) + " so value is not an element of list " + repr(valueList) + "!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isNotIn(value, valueList, message = None, log = None, identifier:str = None): bSuccess = value not in valueList if not bSuccess: if message is None: message = "" else: message += " :: " message = "ASSERTION ERROR :: " + message + "Value is " + repr(value) + " so value is not an element of list " + repr(valueList) + "!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isNotIn(log, value, valueList, message = None, identifier:str = None): bSuccess = value not in valueList if not bSuccess: if message is None: message = "" else: message += " :: " message = "ASSERTION ERROR :: " + message + "Value is " + repr(value) + " so value is not an element of list " + repr(valueList) + "!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def raisesException(function, arguments, message = None, log = None, identifier:str = None): bSuccess = True try: function(*arguments) bSuccess = False except Exception as ee: pass if not bSuccess: if message is None: message = "" else: message += " :: " message = "ASSERTION ERROR :: " + message + "No exception was raised!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_raisesException(log, function, arguments, message = None, identifier:str = None): bSuccess = True try: function(*arguments) bSuccess = False except Exception as ee: pass if not bSuccess: if message is None: message = "" else: message += " :: " message = "ASSERTION ERROR :: " + message + "No exception was raised!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isCallable(value, message = None, log = None, identifier:str = None): if callable(value): return if message is None: message = "" else: message += " :: " message = "ASSERTION ERROR :: " + message + "Value is not a callable but of type " + str(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isCallable(log, value, message = None, identifier:str = None): if callable(value): return if message is None: message = "" else: message += " :: " message = "ASSERTION ERROR :: " + message + "Value is not a callable but of type " + str(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isInstance(value, typeOrTypes, message = None, log = None, identifier:str = None): if isinstance(value, typeOrTypes): return if issubclass(type(value), typeOrTypes): return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is of type " + str(type(value)) + " and not of type " + str(typeOrTypes) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isInstance(log, value, typeOrTypes, message = None, identifier:str = None): if isinstance(value, typeOrTypes): return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is of type " + str(type(value)) + " and not of type " + str(typeOrTypes) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isEqual(value, otherValue, message = None, log = None, identifier:str = None): if value == otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " and not " + repr(otherValue) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isEqual(log, value, otherValue, message = None, identifier:str = None): if value == otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " and not " + repr(otherValue) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isRegExMatch(value, regexPattern, message = None, log = None, identifier:str = None): m = re.match(regexPattern, value) if m: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which does not match " + repr(regexPattern) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isRegExMatch(log, value, regexPattern, message = None, identifier:str = None): m = re.match(regexPattern, value) if m: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which does not match " + repr(regexPattern) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isNotEqual(value, otherValue, message = None, log = None, identifier:str = None): if value != otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which is not expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isNotEqual(log, value, otherValue, message = None, identifier:str = None): if value != otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which is not expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isGreater(value, otherValue, message = None, log = None, identifier:str = None): if value > otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which not greater than " + repr(otherValue) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isGreater(log, value, otherValue, message = None, identifier:str = None): if value > otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which not greater than " + repr(otherValue) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isGreaterOrEqual(value, otherValue, message = None, log = None, identifier:str = None): if value >= otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which not greater or equal to " + repr(otherValue) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isGreaterOrEqual(log, value, otherValue, message = None, identifier:str = None): if value >= otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which not greater or equal to " + repr(otherValue) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isSmaller(value, otherValue, message = None, log = None, identifier:str = None): if value < otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which not smaller than " + repr(otherValue) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isSmaller(log, value, otherValue, message = None, identifier:str = None): if value < otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which not smaller than " + repr(otherValue) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isSmallerOrEqual(value, otherValue, message = None, log = None, identifier:str = None): if value <= otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which not smaller or equal to " + repr(otherValue) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isSmallerOrEqual(log, value, otherValue, message = None, identifier:str = None): if value <= otherValue: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is " + repr(value) + " which not smaller or equal to " + repr(otherValue) + " as expected!" if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isNone(value, message = None, log = None, identifier:str = None): if value is None: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is not None as expected: " + repr(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isNone(log, value, message = None, identifier:str = None): if value is None: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is not None as expected: " + repr(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isNotNone(value, message = None, log = None, identifier:str = None): if value is not None: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is None which is not expected: " + repr(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isNotNone(log, value, message = None, identifier:str = None): if value is not None: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is None which is not expected: " + repr(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isNotNoneOrEmpty(value, message = None, log = None, identifier:str = None): if value: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is None or empty which is not expected: " + repr(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isNotNoneOrEmpty(log, value, message = None, identifier:str = None): if value: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is None or empty which is not expected: " + repr(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isTrue(value, message = None, log = None, identifier:str = None): if value is True: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is not true as expected: " + repr(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isTrue(log, value, message = None, identifier:str = None): if value is True: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is not true as expected: " + repr(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def isFalse(value, message = None, log = None, identifier:str = None): if value is False: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is not false as expected: " + repr(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # @staticmethod def l_isFalse(log, value, message = None, identifier:str = None): if value is False: return if message is None: message = "ASSERTION ERROR" else: message += " ::" message = "ASSERTION ERROR :: " + message + " Value is not false as expected: " + repr(value) if identifier: message = "<" + identifier + "> " + message if log != None: if callable(log): log(message) else: log.error(message) else: print(message) raise AssertionException(message) # #
[ "re.match" ]
[((9429, 9458), 're.match', 're.match', (['regexPattern', 'value'], {}), '(regexPattern, value)\n', (9437, 9458), False, 'import re\n'), ((10022, 10051), 're.match', 're.match', (['regexPattern', 'value'], {}), '(regexPattern, value)\n', (10030, 10051), False, 'import re\n')]
import sqlite3 import argparse from os.path import join import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns from keras.models import model_from_json import preprocessing.config as cfg import preprocessing.file_utils as futils from preprocessing.data import LightDataManager def paper_plot(): cnn_stator_id = 'ebb3' cnn_rotor_id = '2950' rnn_stator_id = 'f334' rnn_rotor_id = 'c329' plt.figure(figsize=(2*5, 2*2)) hp_reports = futils.HyperparameterSearchReport() hp_reports.read_search(cnn_stator_id) hp_reports.read_search(cnn_rotor_id) hp_reports.read_search(rnn_stator_id) hp_reports.read_search(rnn_rotor_id) # hack: cut off first 50 iterations in RNN Stator search tab = hp_reports.hp_searches[rnn_stator_id] hp_reports.hp_searches[rnn_stator_id] = \ tab[tab.n_iter >= 50].reset_index(drop=True) plt.subplot(2, 2, 1) hp_reports.plot_convergence(rnn_stator_id, 'Stator (RNN)') plt.ylabel(r'MSE in $\mathrm{K^2}$ (RNN)') plt.xlabel('') plt.title('') plt.subplot(2, 2, 2) hp_reports.plot_convergence(rnn_rotor_id, 'Rotor (RNN)') plt.xlabel('') plt.ylabel('') plt.legend().remove() plt.title('') plt.subplot(2, 2, 3) hp_reports.plot_convergence(cnn_stator_id, 'Stator (CNN)') plt.legend().remove() plt.title('') plt.xlabel('Stator search iteration') plt.ylabel(r'MSE in $\mathrm{K^2}$ (CNN)') plt.subplot(2, 2, 4) hp_reports.plot_convergence(cnn_rotor_id, 'Rotor (CNN)') plt.xlabel('Rotor search iteration') plt.ylabel('') plt.legend().remove() plt.title('') # find best performing models hp_reports.plot_best_models_performance(rnn_rotor_id, rnn_stator_id) hp_reports.plot_best_models_performance(cnn_rotor_id, cnn_stator_id) plt.show() if __name__ == '__main__': parser = argparse.ArgumentParser(description='Visualize performance of the ' 'given model uid.') parser.add_argument('-s', '--stator_id', required=False, help='The 4-digit id in hex of the experiment on ' 'stator temperatures') parser.add_argument('-r', '--rotor_id', required=False, help='The 4-digit id in hex of the experiment on ' 'rotor temperatures') parser.add_argument('-p', '--paper_plot', required=False, action='store_true', help='Flag for ignoring given IDs and instead plot ' 'four predefined searches for the IEMDC Paper') args = parser.parse_args() sns.set_context('paper') sns.set_style('whitegrid') if args.paper_plot: paper_plot() else: assert args.rotor_id is not None and args.stator_id is not None hp_reports = futils.HyperparameterSearchReport() hp_reports.read_search(args.rotor_id) hp_reports.read_search(args.stator_id) try: print('Plot stator temperature convergence ..') plt.figure(figsize=(5, 2.4)) hp_reports.plot_convergence(args.stator_id) print('Plot rotor temperature convergence ..') plt.figure(figsize=(5, 2.4)) hp_reports.plot_convergence(args.rotor_id) plt.show() except Exception: print('plot failed')
[ "argparse.ArgumentParser", "matplotlib.pyplot.ylabel", "matplotlib.pyplot.xlabel", "seaborn.set_context", "seaborn.set_style", "matplotlib.pyplot.figure", "matplotlib.pyplot.title", "preprocessing.file_utils.HyperparameterSearchReport", "matplotlib.pyplot.subplot", "matplotlib.pyplot.legend", "m...
[((447, 481), 'matplotlib.pyplot.figure', 'plt.figure', ([], {'figsize': '(2 * 5, 2 * 2)'}), '(figsize=(2 * 5, 2 * 2))\n', (457, 481), True, 'import matplotlib.pyplot as plt\n'), ((495, 530), 'preprocessing.file_utils.HyperparameterSearchReport', 'futils.HyperparameterSearchReport', ([], {}), '()\n', (528, 530), True, 'import preprocessing.file_utils as futils\n'), ((911, 931), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(2)', '(2)', '(1)'], {}), '(2, 2, 1)\n', (922, 931), True, 'import matplotlib.pyplot as plt\n'), ((999, 1041), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""MSE in $\\\\mathrm{K^2}$ (RNN)"""'], {}), "('MSE in $\\\\mathrm{K^2}$ (RNN)')\n", (1009, 1041), True, 'import matplotlib.pyplot as plt\n'), ((1046, 1060), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['""""""'], {}), "('')\n", (1056, 1060), True, 'import matplotlib.pyplot as plt\n'), ((1065, 1078), 'matplotlib.pyplot.title', 'plt.title', (['""""""'], {}), "('')\n", (1074, 1078), True, 'import matplotlib.pyplot as plt\n'), ((1083, 1103), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(2)', '(2)', '(2)'], {}), '(2, 2, 2)\n', (1094, 1103), True, 'import matplotlib.pyplot as plt\n'), ((1169, 1183), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['""""""'], {}), "('')\n", (1179, 1183), True, 'import matplotlib.pyplot as plt\n'), ((1188, 1202), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['""""""'], {}), "('')\n", (1198, 1202), True, 'import matplotlib.pyplot as plt\n'), ((1233, 1246), 'matplotlib.pyplot.title', 'plt.title', (['""""""'], {}), "('')\n", (1242, 1246), True, 'import matplotlib.pyplot as plt\n'), ((1252, 1272), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(2)', '(2)', '(3)'], {}), '(2, 2, 3)\n', (1263, 1272), True, 'import matplotlib.pyplot as plt\n'), ((1367, 1380), 'matplotlib.pyplot.title', 'plt.title', (['""""""'], {}), "('')\n", (1376, 1380), True, 'import matplotlib.pyplot as plt\n'), ((1385, 1422), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Stator search iteration"""'], {}), "('Stator search iteration')\n", (1395, 1422), True, 'import matplotlib.pyplot as plt\n'), ((1427, 1469), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""MSE in $\\\\mathrm{K^2}$ (CNN)"""'], {}), "('MSE in $\\\\mathrm{K^2}$ (CNN)')\n", (1437, 1469), True, 'import matplotlib.pyplot as plt\n'), ((1474, 1494), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(2)', '(2)', '(4)'], {}), '(2, 2, 4)\n', (1485, 1494), True, 'import matplotlib.pyplot as plt\n'), ((1561, 1597), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Rotor search iteration"""'], {}), "('Rotor search iteration')\n", (1571, 1597), True, 'import matplotlib.pyplot as plt\n'), ((1602, 1616), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['""""""'], {}), "('')\n", (1612, 1616), True, 'import matplotlib.pyplot as plt\n'), ((1647, 1660), 'matplotlib.pyplot.title', 'plt.title', (['""""""'], {}), "('')\n", (1656, 1660), True, 'import matplotlib.pyplot as plt\n'), ((1847, 1857), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (1855, 1857), True, 'import matplotlib.pyplot as plt\n'), ((1900, 1989), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {'description': '"""Visualize performance of the given model uid."""'}), "(description=\n 'Visualize performance of the given model uid.')\n", (1923, 1989), False, 'import argparse\n'), ((2708, 2732), 'seaborn.set_context', 'sns.set_context', (['"""paper"""'], {}), "('paper')\n", (2723, 2732), True, 'import seaborn as sns\n'), ((2737, 2763), 'seaborn.set_style', 'sns.set_style', (['"""whitegrid"""'], {}), "('whitegrid')\n", (2750, 2763), True, 'import seaborn as sns\n'), ((2913, 2948), 'preprocessing.file_utils.HyperparameterSearchReport', 'futils.HyperparameterSearchReport', ([], {}), '()\n', (2946, 2948), True, 'import preprocessing.file_utils as futils\n'), ((1207, 1219), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (1217, 1219), True, 'import matplotlib.pyplot as plt\n'), ((1341, 1353), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (1351, 1353), True, 'import matplotlib.pyplot as plt\n'), ((1621, 1633), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (1631, 1633), True, 'import matplotlib.pyplot as plt\n'), ((3128, 3156), 'matplotlib.pyplot.figure', 'plt.figure', ([], {'figsize': '(5, 2.4)'}), '(figsize=(5, 2.4))\n', (3138, 3156), True, 'import matplotlib.pyplot as plt\n'), ((3284, 3312), 'matplotlib.pyplot.figure', 'plt.figure', ([], {'figsize': '(5, 2.4)'}), '(figsize=(5, 2.4))\n', (3294, 3312), True, 'import matplotlib.pyplot as plt\n'), ((3380, 3390), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (3388, 3390), True, 'import matplotlib.pyplot as plt\n')]
import json def get_event(): return json.dumps({ 'test': True })
[ "json.dumps" ]
[((41, 67), 'json.dumps', 'json.dumps', (["{'test': True}"], {}), "({'test': True})\n", (51, 67), False, 'import json\n')]
from discord.ext import commands import discord import logging class Log(commands.Cog): def __init__(self, bot): self.bot = bot @commands.Cog.listener() async def on_connect(self): logging.getLogger().addHandler(DiscordLogger(self.bot)) @commands.Cog.listener() async def on_disconnect(self): logging.getLogger().removeHandler(DiscordLogger) def setup(bot): bot.add_cog(Log(bot)) class DiscordLogger(logging.StreamHandler): """ A handler class which sends messages to a Discord channel """ LEVEL_COLORS = { logging.NOTSET: discord.colour.Color.darker_grey(), logging.DEBUG: discord.colour.Color.blue(), logging.INFO: discord.colour.Color.green(), logging.WARNING: discord.colour.Color.gold(), logging.ERROR: discord.colour.Color.red(), logging.CRITICAL: discord.colour.Color.red(), } def __init__(self, bot): super().__init__() self.bot = bot self.setLevel(logging.WARN) def emit(self, record): self.bot.loop.create_task(self.send_discord_err(record)) async def send_discord_err(self, record): channel = self.bot.get_channel(self.bot.bot_config['error_channel_id']) embed = discord.Embed(title=f"{record.levelname} in {record.name}") embed.description = f"```{record.getMessage()}```" embed.colour = self.LEVEL_COLORS[record.levelno] if record.exc_text is not None: embed.add_field(name="Exception Info", value=record.exc_text) embed.add_field(name=f"Error in {record.funcName} on line {record.lineno}", value=record.filename) try: await channel.send(embed=embed) except (RuntimeError, discord.ClientException): # RuntimeError: raised by aiohttp when the bot is closing; quiets log spam on exit # ClientException: raised when we can't send the message; prevents infinite cycle of errors pass
[ "discord.ext.commands.Cog.listener", "logging.getLogger", "discord.colour.Color.darker_grey", "discord.colour.Color.green", "discord.colour.Color.red", "discord.colour.Color.gold", "discord.Embed", "discord.colour.Color.blue" ]
[((148, 171), 'discord.ext.commands.Cog.listener', 'commands.Cog.listener', ([], {}), '()\n', (169, 171), False, 'from discord.ext import commands\n'), ((274, 297), 'discord.ext.commands.Cog.listener', 'commands.Cog.listener', ([], {}), '()\n', (295, 297), False, 'from discord.ext import commands\n'), ((603, 637), 'discord.colour.Color.darker_grey', 'discord.colour.Color.darker_grey', ([], {}), '()\n', (635, 637), False, 'import discord\n'), ((662, 689), 'discord.colour.Color.blue', 'discord.colour.Color.blue', ([], {}), '()\n', (687, 689), False, 'import discord\n'), ((713, 741), 'discord.colour.Color.green', 'discord.colour.Color.green', ([], {}), '()\n', (739, 741), False, 'import discord\n'), ((768, 795), 'discord.colour.Color.gold', 'discord.colour.Color.gold', ([], {}), '()\n', (793, 795), False, 'import discord\n'), ((820, 846), 'discord.colour.Color.red', 'discord.colour.Color.red', ([], {}), '()\n', (844, 846), False, 'import discord\n'), ((874, 900), 'discord.colour.Color.red', 'discord.colour.Color.red', ([], {}), '()\n', (898, 900), False, 'import discord\n'), ((1261, 1320), 'discord.Embed', 'discord.Embed', ([], {'title': 'f"""{record.levelname} in {record.name}"""'}), "(title=f'{record.levelname} in {record.name}')\n", (1274, 1320), False, 'import discord\n'), ((212, 231), 'logging.getLogger', 'logging.getLogger', ([], {}), '()\n', (229, 231), False, 'import logging\n'), ((341, 360), 'logging.getLogger', 'logging.getLogger', ([], {}), '()\n', (358, 360), False, 'import logging\n')]
from classes.database import * import shutil import os if (os.getcwd().endswith('functions')): os.chdir('..') def move_known(src, dest=None, rename=False): src = src.replace('//', '/') if not dest: dest = src+'known/' db = Database() # db.loadCache() for root, dirs, files in os.walk(src): for file_name in files: file_path = os.path.join(root, file_name).replace('\\', '/') file = GameFile(file_path) game = db.getGameByFileMD5(file.getMD5()) # print(src+file_name, dest+file_name) if game: print(file, 'known as', game.findFileByMD5(file.md5).getTOSECName()) dest_path = dest+file_path.replace(src, '') # print(file_path, os.path.dirname(dest_path)) # print(dest_path) # continue os.makedirs(os.path.dirname(dest_path), exist_ok=True) if os.path.exists(dest_path): os.unlink(dest_path) dest_dir = os.path.dirname(dest_path) shutil.move(file_path, dest_dir) if rename: os.rename(dest_path, os.path.join(dest_dir, game.findFileByMD5(file.md5).getTOSECName())) if __name__=='__main__': move_known('tosec/unsorted files/spectrum4ever.org/dest/renamed/Unknown/', rename=True) pass
[ "os.path.exists", "shutil.move", "os.path.join", "os.getcwd", "os.chdir", "os.path.dirname", "os.unlink", "os.walk" ]
[((99, 113), 'os.chdir', 'os.chdir', (['""".."""'], {}), "('..')\n", (107, 113), False, 'import os\n'), ((309, 321), 'os.walk', 'os.walk', (['src'], {}), '(src)\n', (316, 321), False, 'import os\n'), ((59, 70), 'os.getcwd', 'os.getcwd', ([], {}), '()\n', (68, 70), False, 'import os\n'), ((953, 978), 'os.path.exists', 'os.path.exists', (['dest_path'], {}), '(dest_path)\n', (967, 978), False, 'import os\n'), ((1048, 1074), 'os.path.dirname', 'os.path.dirname', (['dest_path'], {}), '(dest_path)\n', (1063, 1074), False, 'import os\n'), ((1091, 1123), 'shutil.move', 'shutil.move', (['file_path', 'dest_dir'], {}), '(file_path, dest_dir)\n', (1102, 1123), False, 'import shutil\n'), ((379, 408), 'os.path.join', 'os.path.join', (['root', 'file_name'], {}), '(root, file_name)\n', (391, 408), False, 'import os\n'), ((891, 917), 'os.path.dirname', 'os.path.dirname', (['dest_path'], {}), '(dest_path)\n', (906, 917), False, 'import os\n'), ((1000, 1020), 'os.unlink', 'os.unlink', (['dest_path'], {}), '(dest_path)\n', (1009, 1020), False, 'import os\n')]
import yaml from makestack import appdir from makestack.helpers import progress DEFAULT_CONFIG = { 'BOARD': { 'type': 'str', 'value': 'esp8266' } } def main(args): appdir.chdir_to_app_dir(args.appdir) application_yaml = yaml.load(open('application.yaml')) app_config = {} if application_yaml['config'] is None else application_yaml['config'] config = DEFAULT_CONFIG for k, c in app_config.items(): if 'default' in c: c['value'] = c['default'] del c['default'] config[k] = c progress('GEN', '.config.yaml') yaml.dump(config, open('.config.yaml', 'w'), default_flow_style=False)
[ "makestack.appdir.chdir_to_app_dir", "makestack.helpers.progress" ]
[((195, 231), 'makestack.appdir.chdir_to_app_dir', 'appdir.chdir_to_app_dir', (['args.appdir'], {}), '(args.appdir)\n', (218, 231), False, 'from makestack import appdir\n'), ((569, 600), 'makestack.helpers.progress', 'progress', (['"""GEN"""', '""".config.yaml"""'], {}), "('GEN', '.config.yaml')\n", (577, 600), False, 'from makestack.helpers import progress\n')]
import tkinter import random from tkinter import messagebox colours = ['Red','Blue','Green','Pink','Black', 'Yellow','Orange','White','Purple','Brown'] score = 0 timeleft = 30 def startGame(event): if timeleft == 30: timer() changeColor() def changeColor(): global score global timeleft if timeleft > 0: inputBox.focus_set() if inputBox.get().lower() == colours[0].lower(): score += 1 inputBox.delete(0, tkinter.END) random.shuffle(colours) colorlabel.config(text=str(colours[1]), fg=str(colours[0])) scorelabel.config(text="Score: "+str(score)) def timer(): global timeleft if timeleft > 0: timeleft -= 1 timelabel.config(text="Time left: "+str(timeleft)) timelabel.after(1000, timer) else: endgame() def endgame(): global score global timeleft q = messagebox.askyesno("Play again", "Do you want to play again?") if q: score = 0 timeleft = 30 scorelabel.config(text="Press Enter to start\n") timelabel.config(text="Time left: "+str(timeleft)) colorlabel.config(text="") else: root.quit() root = tkinter.Tk() root.title("COLOR GAME") root.geometry("400x300") instructions = tkinter.Label(root, text = "Type in the colour\nof the words, and not the word text!\n", font = ('Helvetica', 14)) instructions.pack() scorelabel = tkinter.Label(root, text="Press Enter to start\n", font=('Helvetica', 14)) scorelabel.pack() timelabel = tkinter.Label(root, text="Time left: "+str(timeleft), font=('Helvetica', 14)) timelabel.pack() colorlabel = tkinter.Label(root, font = ('Helvetica', 60)) colorlabel.pack() inputBox = tkinter.Entry(root, font =('Helvetica',15)) root.bind('<Return>', startGame) inputBox.pack() inputBox.focus_set() root.mainloop()
[ "tkinter.Entry", "random.shuffle", "tkinter.messagebox.askyesno", "tkinter.Tk", "tkinter.Label" ]
[((1230, 1242), 'tkinter.Tk', 'tkinter.Tk', ([], {}), '()\n', (1240, 1242), False, 'import tkinter\n'), ((1310, 1432), 'tkinter.Label', 'tkinter.Label', (['root'], {'text': '"""Type in the colour\nof the words, and not the word text!\n"""', 'font': "('Helvetica', 14)"}), '(root, text=\n """Type in the colour\nof the words, and not the word text!\n""", font=(\n \'Helvetica\', 14))\n', (1323, 1432), False, 'import tkinter\n'), ((1498, 1572), 'tkinter.Label', 'tkinter.Label', (['root'], {'text': '"""Press Enter to start\n"""', 'font': "('Helvetica', 14)"}), "(root, text='Press Enter to start\\n', font=('Helvetica', 14))\n", (1511, 1572), False, 'import tkinter\n'), ((1713, 1756), 'tkinter.Label', 'tkinter.Label', (['root'], {'font': "('Helvetica', 60)"}), "(root, font=('Helvetica', 60))\n", (1726, 1756), False, 'import tkinter\n'), ((1789, 1832), 'tkinter.Entry', 'tkinter.Entry', (['root'], {'font': "('Helvetica', 15)"}), "(root, font=('Helvetica', 15))\n", (1802, 1832), False, 'import tkinter\n'), ((923, 986), 'tkinter.messagebox.askyesno', 'messagebox.askyesno', (['"""Play again"""', '"""Do you want to play again?"""'], {}), "('Play again', 'Do you want to play again?')\n", (942, 986), False, 'from tkinter import messagebox\n'), ((510, 533), 'random.shuffle', 'random.shuffle', (['colours'], {}), '(colours)\n', (524, 533), False, 'import random\n')]
import os, json, base64, cv2, glob import numpy as np import matplotlib.pyplot as plt from coco import CocoConfig from Mask.config import Config import Mask.utils as utils import Mask.model as modellib import Mask.visualize as visualize from convert_file import load_image def init(): np.set_printoptions(threshold=np.inf) def run(input_df): data = json.loads(input_df) im = load_image(image64=data) config = CocoConfig() model = modellib.MaskRCNN(mode="inference", model_dir="./models/", config=config) model.load_weights(filepath="./models/mask_rcnn_moles_0090.h5", by_name=True) class_names = ["BG", "malignant", "benign"] # predict the mask, bounding box and class of the image r = model.detect([im])[0] prediction = None for idx, val in enumerate(class_names): if idx == r["class_ids"]: prediction = val print(val) else: continue return prediction
[ "json.loads", "Mask.model.MaskRCNN", "convert_file.load_image", "coco.CocoConfig", "numpy.set_printoptions" ]
[((290, 327), 'numpy.set_printoptions', 'np.set_printoptions', ([], {'threshold': 'np.inf'}), '(threshold=np.inf)\n', (309, 327), True, 'import numpy as np\n'), ((359, 379), 'json.loads', 'json.loads', (['input_df'], {}), '(input_df)\n', (369, 379), False, 'import os, json, base64, cv2, glob\n'), ((389, 413), 'convert_file.load_image', 'load_image', ([], {'image64': 'data'}), '(image64=data)\n', (399, 413), False, 'from convert_file import load_image\n'), ((428, 440), 'coco.CocoConfig', 'CocoConfig', ([], {}), '()\n', (438, 440), False, 'from coco import CocoConfig\n'), ((454, 527), 'Mask.model.MaskRCNN', 'modellib.MaskRCNN', ([], {'mode': '"""inference"""', 'model_dir': '"""./models/"""', 'config': 'config'}), "(mode='inference', model_dir='./models/', config=config)\n", (471, 527), True, 'import Mask.model as modellib\n')]
import io import logging import re from datetime import datetime from typing import List, Optional from pydantic import BaseModel from ..types import ChineseOrthography from omniglot.lexeme import Lexeme from omniglot.sense import Sense from omnilingual import LanguageCode, PartOfSpeech class CcCedictCounter(BaseModel): traditional: str simplified: Optional[str] pinyin: str class CcCedictEntry(BaseModel): traditional: str simplified: str pinyin: str equivalents: List[str] counters: List[str] class CcCedictJSON(BaseModel): created_date: str entries: List[CcCedictEntry] def extract_created_date(data: str) -> Optional[str]: CC_CEDICT_created_regexp = r"^#! date=(.+)$" for line in io.StringIO(data).readlines(): # Passed the header without finding the date. Abort. if not line.startswith("#"): return None match = re.search(CC_CEDICT_created_regexp, line) if match: extracted_date = match.group(1) if extracted_date[-1] == "Z": extracted_date = extracted_date[:-1] return datetime.fromisoformat(extracted_date).date().isoformat() return None def convert_CC_CEDICT_to_JSON(data: str) -> CcCedictJSON: entry_regex = r"^(.+?)\s(.+?)\s\[([\w\s:,·]*?)\]\s\/(.*)\/$" created_date = extract_created_date(data) if created_date is None: raise ValueError("[CC-CEDICT] Could not find the created date") entries: List[CcCedictEntry] = [] buffer = io.StringIO(data) for line in buffer.readlines(): entry = line.strip() # Skip the header if entry.startswith("#"): continue match = re.match(entry_regex, entry) if match is None: raise ValueError("Failed to parse entry\n%s" % (entry)) logging.debug(match.group(1), match.group(2), match.group(3), match.group(4)) traditional = match.group(1) simplified = match.group(2) pinyin = match.group(3).replace("u:", "ü") equivalents = match.group(4).split("/") entries.append( CcCedictEntry( traditional=traditional, simplified=simplified, pinyin=pinyin, equivalents=equivalents, counters=[], ) ) return CcCedictJSON(created_date=created_date, entries=entries,) def create_CC_CEDICT_database_entries( cc_cedict_dictionary: CcCedictJSON, ) -> List[Lexeme]: database_entries: List[Lexeme] = [] for entry in cc_cedict_dictionary.entries: # TODO: /abbr. for 四清運動|四清运动[Si4 qing1 Yun4 dong4]/ # TODO: Taiwanese pronunciation /Taiwan pr. []/ or /*sense* (Taiwan pr. [])/ # TODO: Cross-reference classifiers: /CL:封[feng1]/ # TODO: Extract tags (coll., idiom, math., finance, etc) # TODO: Parse traditional/simplified phrases with , and pinyin with , # TODO: Parse triditional/simplified names with · and pinyin with · senses: List[Sense] = [ Sense( definitions={LanguageCode.English: [equivalent]}, tags=[], information=[], references=[], antonyms=[], synonyms=[], source_language_words=[], ) for equivalent in entry.equivalents ] database_entries.append( Lexeme( language=LanguageCode.Chinese, lemma=entry.traditional, pos=PartOfSpeech.Nil, sources={"CC-CEDICT": cc_cedict_dictionary.created_date}, orthography=ChineseOrthography( all=[entry.traditional, entry.simplified], Hant=entry.traditional, Hans=entry.simplified, ), pronounce={"pinyin": entry.pinyin}, tags=[], senses=senses, features={}, declensions=None, conjugations=None, ) ) return database_entries
[ "omniglot.sense.Sense", "re.match", "datetime.datetime.fromisoformat", "io.StringIO", "re.search" ]
[((1540, 1557), 'io.StringIO', 'io.StringIO', (['data'], {}), '(data)\n', (1551, 1557), False, 'import io\n'), ((918, 959), 're.search', 're.search', (['CC_CEDICT_created_regexp', 'line'], {}), '(CC_CEDICT_created_regexp, line)\n', (927, 959), False, 'import re\n'), ((1722, 1750), 're.match', 're.match', (['entry_regex', 'entry'], {}), '(entry_regex, entry)\n', (1730, 1750), False, 'import re\n'), ((748, 765), 'io.StringIO', 'io.StringIO', (['data'], {}), '(data)\n', (759, 765), False, 'import io\n'), ((3092, 3247), 'omniglot.sense.Sense', 'Sense', ([], {'definitions': '{LanguageCode.English: [equivalent]}', 'tags': '[]', 'information': '[]', 'references': '[]', 'antonyms': '[]', 'synonyms': '[]', 'source_language_words': '[]'}), '(definitions={LanguageCode.English: [equivalent]}, tags=[],\n information=[], references=[], antonyms=[], synonyms=[],\n source_language_words=[])\n', (3097, 3247), False, 'from omniglot.sense import Sense\n'), ((1138, 1176), 'datetime.datetime.fromisoformat', 'datetime.fromisoformat', (['extracted_date'], {}), '(extracted_date)\n', (1160, 1176), False, 'from datetime import datetime\n')]
# -*- coding: utf-8 -*- import os import shutil import uuid from django.conf import settings from django.contrib.auth.models import User from django.test import TestCase, override_settings from filebrowser.models import Directory from filebrowser.utils import to_download_url from loader.exceptions import FileNotFound, SemanticError, SyntaxErrorPL from loader.parsers import pl FAKE_FB_ROOT = os.path.join("/tmp", str(uuid.uuid4())) FAKE_PL = os.path.join(settings.APPS_DIR, 'loader/tests/fake_pl') @override_settings(FILEBROWSER_ROOT=FAKE_FB_ROOT) class PlParserTestCase(TestCase): """ Test functions of parsers/pl.py """ @classmethod def setUpTestData(cls): if os.path.isdir(FAKE_FB_ROOT): shutil.rmtree(FAKE_FB_ROOT) cls.user = User.objects.create_user(username='user', password='<PASSWORD>') cls.dir = Directory.objects.create(name='dir1', owner=cls.user) cls.dir2 = Directory.objects.create(name='dir2', owner=cls.user) shutil.rmtree(cls.dir.root) shutil.copytree(FAKE_PL, cls.dir.root) with open(os.path.join(FAKE_FB_ROOT, 'dir2', 'fake.pl'), "w") as f: f.write("a=a") @classmethod def tearDownClass(cls): if os.path.isdir(FAKE_FB_ROOT): shutil.rmtree(FAKE_FB_ROOT) super().tearDownClass() def test_init_parser(self): pl.Parser(self.dir, "working.pl") with self.assertRaises(FileNotFoundError): pl.Parser(self.dir, "unknown.pl").parse() def test_get_parser(self): self.assertEqual({ 'ext': ['.pl'], 'parser': pl.Parser, 'type': 'pl' }, pl.get_parser()) def test_parse(self): dic, war = pl.Parser(self.dir, "full.pl").parse() # warning self.assertIn("Key 'e.f.h' overwritten at line", str(war)) # = += + self.assertEqual(dic['title'], 'testtesttest') # = -= - self.assertEqual(dic['title2'], 'AABBCC.') # == self.assertEqual(dic['text'], 'tests') # extends self.assertIn({ 'directory_name': 'dir1', 'lineno': 18, 'line': 'extends=working.pl\n', 'path': 'working.pl' }, dic["__extends"]) # =@ +=@ -=@ with open(os.path.join(FAKE_FB_ROOT, "dir1/working.pl")) as f: self.assertEqual(len(dic['test']), 3 * len(f.read())) # sub keys self.assertEqual('12', dic['e']['f']['g']) # % %= self.assertEqual({'a': 1, 'b': 2}, dic['e']['f']['i']) self.assertEqual({'a': 1, 'b': 2}, dic['b']) # Override % with a.a self.assertEqual({'a': '3', 'b': 2}, dic['a']) def test_parse_url(self): dic, war = pl.Parser(self.dir, "image.pl").parse() self.assertEqual(to_download_url('dir1/image.png'), dic['img']) def test_parse_component(self): pass # TODO def test_parse_errors(self): with self.assertRaises(SyntaxErrorPL): pl.Parser(self.dir, "no_string_in_sub_key.pl").parse() with self.assertRaises(SyntaxErrorPL): pl.Parser(self.dir, "syntax_extends.pl").parse() with self.assertRaises(SyntaxErrorPL): pl.Parser(self.dir, "syntax_file.pl").parse() with self.assertRaises(SyntaxErrorPL): pl.Parser(self.dir, "syntax_error.pl").parse() with self.assertRaises(FileNotFound): pl.Parser(self.dir, "extends_no_lib.pl").parse() with self.assertRaises(SyntaxErrorPL): pl.Parser(self.dir, "open_multiline.pl").parse() with self.assertRaises(SemanticError): pl.Parser(self.dir, "append_no_key.pl").parse() with self.assertRaises(FileNotFound): pl.Parser(self.dir, "no_file_from.pl").parse() with self.assertRaises(SyntaxErrorPL): pl.Parser(self.dir, "invalid_one_line_json.pl").parse() with self.assertRaises(SyntaxErrorPL): pl.Parser(self.dir, "invalid_multiline_json.pl").parse() with self.assertRaises(FileNotFound): pl.Parser(self.dir, "no_file_sandbox.pl").parse() with self.assertRaises(SyntaxErrorPL): pl.Parser(self.dir, "syntax_sandbox.pl").parse() with self.assertRaises(SyntaxErrorPL): pl.Parser(self.dir, "reference_binary.pl").parse() with self.assertRaises(FileNotFound): pl.Parser(self.dir, "no_image.pl").parse() with self.assertRaises(SemanticError): pl.Parser(self.dir, "prepend_no_key.pl").parse()
[ "filebrowser.models.Directory.objects.create", "loader.parsers.pl.get_parser", "filebrowser.utils.to_download_url", "os.path.join", "loader.parsers.pl.Parser", "uuid.uuid4", "shutil.copytree", "django.test.override_settings", "os.path.isdir", "shutil.rmtree", "django.contrib.auth.models.User.obj...
[((449, 504), 'os.path.join', 'os.path.join', (['settings.APPS_DIR', '"""loader/tests/fake_pl"""'], {}), "(settings.APPS_DIR, 'loader/tests/fake_pl')\n", (461, 504), False, 'import os\n'), ((509, 557), 'django.test.override_settings', 'override_settings', ([], {'FILEBROWSER_ROOT': 'FAKE_FB_ROOT'}), '(FILEBROWSER_ROOT=FAKE_FB_ROOT)\n', (526, 557), False, 'from django.test import TestCase, override_settings\n'), ((424, 436), 'uuid.uuid4', 'uuid.uuid4', ([], {}), '()\n', (434, 436), False, 'import uuid\n'), ((702, 729), 'os.path.isdir', 'os.path.isdir', (['FAKE_FB_ROOT'], {}), '(FAKE_FB_ROOT)\n', (715, 729), False, 'import os\n'), ((799, 863), 'django.contrib.auth.models.User.objects.create_user', 'User.objects.create_user', ([], {'username': '"""user"""', 'password': '"""<PASSWORD>"""'}), "(username='user', password='<PASSWORD>')\n", (823, 863), False, 'from django.contrib.auth.models import User\n'), ((882, 935), 'filebrowser.models.Directory.objects.create', 'Directory.objects.create', ([], {'name': '"""dir1"""', 'owner': 'cls.user'}), "(name='dir1', owner=cls.user)\n", (906, 935), False, 'from filebrowser.models import Directory\n'), ((955, 1008), 'filebrowser.models.Directory.objects.create', 'Directory.objects.create', ([], {'name': '"""dir2"""', 'owner': 'cls.user'}), "(name='dir2', owner=cls.user)\n", (979, 1008), False, 'from filebrowser.models import Directory\n'), ((1017, 1044), 'shutil.rmtree', 'shutil.rmtree', (['cls.dir.root'], {}), '(cls.dir.root)\n', (1030, 1044), False, 'import shutil\n'), ((1053, 1091), 'shutil.copytree', 'shutil.copytree', (['FAKE_PL', 'cls.dir.root'], {}), '(FAKE_PL, cls.dir.root)\n', (1068, 1091), False, 'import shutil\n'), ((1270, 1297), 'os.path.isdir', 'os.path.isdir', (['FAKE_FB_ROOT'], {}), '(FAKE_FB_ROOT)\n', (1283, 1297), False, 'import os\n'), ((1421, 1454), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""working.pl"""'], {}), "(self.dir, 'working.pl')\n", (1430, 1454), False, 'from loader.parsers import pl\n'), ((743, 770), 'shutil.rmtree', 'shutil.rmtree', (['FAKE_FB_ROOT'], {}), '(FAKE_FB_ROOT)\n', (756, 770), False, 'import shutil\n'), ((1311, 1338), 'shutil.rmtree', 'shutil.rmtree', (['FAKE_FB_ROOT'], {}), '(FAKE_FB_ROOT)\n', (1324, 1338), False, 'import shutil\n'), ((1730, 1745), 'loader.parsers.pl.get_parser', 'pl.get_parser', ([], {}), '()\n', (1743, 1745), False, 'from loader.parsers import pl\n'), ((2892, 2925), 'filebrowser.utils.to_download_url', 'to_download_url', (['"""dir1/image.png"""'], {}), "('dir1/image.png')\n", (2907, 2925), False, 'from filebrowser.utils import to_download_url\n'), ((1119, 1164), 'os.path.join', 'os.path.join', (['FAKE_FB_ROOT', '"""dir2"""', '"""fake.pl"""'], {}), "(FAKE_FB_ROOT, 'dir2', 'fake.pl')\n", (1131, 1164), False, 'import os\n'), ((1802, 1832), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""full.pl"""'], {}), "(self.dir, 'full.pl')\n", (1811, 1832), False, 'from loader.parsers import pl\n'), ((2363, 2408), 'os.path.join', 'os.path.join', (['FAKE_FB_ROOT', '"""dir1/working.pl"""'], {}), "(FAKE_FB_ROOT, 'dir1/working.pl')\n", (2375, 2408), False, 'import os\n'), ((2827, 2858), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""image.pl"""'], {}), "(self.dir, 'image.pl')\n", (2836, 2858), False, 'from loader.parsers import pl\n'), ((1518, 1551), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""unknown.pl"""'], {}), "(self.dir, 'unknown.pl')\n", (1527, 1551), False, 'from loader.parsers import pl\n'), ((3108, 3154), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""no_string_in_sub_key.pl"""'], {}), "(self.dir, 'no_string_in_sub_key.pl')\n", (3117, 3154), False, 'from loader.parsers import pl\n'), ((3222, 3262), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""syntax_extends.pl"""'], {}), "(self.dir, 'syntax_extends.pl')\n", (3231, 3262), False, 'from loader.parsers import pl\n'), ((3330, 3367), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""syntax_file.pl"""'], {}), "(self.dir, 'syntax_file.pl')\n", (3339, 3367), False, 'from loader.parsers import pl\n'), ((3435, 3473), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""syntax_error.pl"""'], {}), "(self.dir, 'syntax_error.pl')\n", (3444, 3473), False, 'from loader.parsers import pl\n'), ((3540, 3580), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""extends_no_lib.pl"""'], {}), "(self.dir, 'extends_no_lib.pl')\n", (3549, 3580), False, 'from loader.parsers import pl\n'), ((3648, 3688), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""open_multiline.pl"""'], {}), "(self.dir, 'open_multiline.pl')\n", (3657, 3688), False, 'from loader.parsers import pl\n'), ((3756, 3795), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""append_no_key.pl"""'], {}), "(self.dir, 'append_no_key.pl')\n", (3765, 3795), False, 'from loader.parsers import pl\n'), ((3862, 3900), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""no_file_from.pl"""'], {}), "(self.dir, 'no_file_from.pl')\n", (3871, 3900), False, 'from loader.parsers import pl\n'), ((3968, 4015), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""invalid_one_line_json.pl"""'], {}), "(self.dir, 'invalid_one_line_json.pl')\n", (3977, 4015), False, 'from loader.parsers import pl\n'), ((4083, 4131), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""invalid_multiline_json.pl"""'], {}), "(self.dir, 'invalid_multiline_json.pl')\n", (4092, 4131), False, 'from loader.parsers import pl\n'), ((4198, 4239), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""no_file_sandbox.pl"""'], {}), "(self.dir, 'no_file_sandbox.pl')\n", (4207, 4239), False, 'from loader.parsers import pl\n'), ((4307, 4347), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""syntax_sandbox.pl"""'], {}), "(self.dir, 'syntax_sandbox.pl')\n", (4316, 4347), False, 'from loader.parsers import pl\n'), ((4415, 4457), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""reference_binary.pl"""'], {}), "(self.dir, 'reference_binary.pl')\n", (4424, 4457), False, 'from loader.parsers import pl\n'), ((4524, 4558), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""no_image.pl"""'], {}), "(self.dir, 'no_image.pl')\n", (4533, 4558), False, 'from loader.parsers import pl\n'), ((4626, 4666), 'loader.parsers.pl.Parser', 'pl.Parser', (['self.dir', '"""prepend_no_key.pl"""'], {}), "(self.dir, 'prepend_no_key.pl')\n", (4635, 4666), False, 'from loader.parsers import pl\n')]
""" This module implements a Flask-based web application based on the functionality provided by the "flight_model" package. The site is not responsive but the Bootstrap customizer has been used to generate a cut-down version of bootstrap to provide button and form element styling. """ import os from flask import Flask, redirect from booking_web.airports import airports_bp from booking_web.airlines import airlines_bp from booking_web.layouts import layouts_bp from booking_web.passengers import passengers_bp from booking_web.flights import flights_bp from booking_web.boarding_cards import boarding_cards_bp app = Flask("Flight Booking", static_folder=os.path.join(os.path.dirname(__file__), "static"), template_folder=os.path.join(os.path.dirname(__file__), "templates")) app.secret_key = b'some secret key' app.register_blueprint(airports_bp, url_prefix='/airports') app.register_blueprint(airlines_bp, url_prefix='/airlines') app.register_blueprint(layouts_bp, url_prefix='/layouts') app.register_blueprint(passengers_bp, url_prefix='/passengers') app.register_blueprint(flights_bp, url_prefix='/flights') app.register_blueprint(boarding_cards_bp, url_prefix='/boarding_cards') @app.route("/") def home(): """ Serve the home page for the site. This just redirects to the flights list :return: Redirect to the flights list page """ return redirect("/flights/list")
[ "flask.redirect", "os.path.dirname" ]
[((1397, 1422), 'flask.redirect', 'redirect', (['"""/flights/list"""'], {}), "('/flights/list')\n", (1405, 1422), False, 'from flask import Flask, redirect\n'), ((685, 710), 'os.path.dirname', 'os.path.dirname', (['__file__'], {}), '(__file__)\n', (700, 710), False, 'import os\n'), ((764, 789), 'os.path.dirname', 'os.path.dirname', (['__file__'], {}), '(__file__)\n', (779, 789), False, 'import os\n')]
import streamlit as st import pandas as pd import altair as alt import pickle import numpy as np from map import create_map from airdata import AirData from utils import parse_time, parse_time_hms from vega_datasets import data #st.set_page_config(layout="wide") # Getting data ready, Refresh every hour (same data when user refreshes within an hour) @st.cache(ttl=60 * 60, suppress_st_warning=True) def get_AD_data(): ad = AirData() flight_df = ad.get_flights_df() flight_df = ad.add_time_to_df(flight_df) return ad, flight_df # Cache to prevent computation on every rerun @st.cache def save_AD_data(df): return df.to_csv().encode('utf-8') ad, flight_df = get_AD_data() # Definitions for flight delay ## Prepare data # load in files origin = pickle.load(open('flight-price/DestState.sav','rb')) dest = pickle.load(open('flight-price/DestState.sav','rb')) air = pickle.load(open('flight-price/AirlineCompany.sav','rb')) miles_dic = pickle.load(open('flight-price/miles_dic.sav','rb')) quarter_dic= {'Spring':'Q1','Summer':'Q2','Fall':'Q3','Winter':'Q4'} df_viz = pd.read_csv('flight-price/df_viz.csv').iloc[:,:] # fit the prediction model, get prediction and prediction interval def get_pi(X): all_models = pickle.load(open('flight-price/all_models.sav', 'rb')) lb = all_models[0].predict(X) pred = all_models[2].predict(X) ub = all_models[1].predict(X) return (round(np.exp(lb[0]),2), round(np.exp(pred[0]),2), round(np.exp(ub[0]),2)) # load data for non ML visual def load_data_viz(): return pd.read_csv('flight-price/train_viz.csv').iloc[:,:] # visual for price comparison @st.cache def get_slice_ogstate(df, ogstate=None): labels = pd.Series([1] * len(df), index=df.index) labels &= df['OriginState'] == ogstate return labels def get_slice_destate(df, destate=None): labels = pd.Series([1] * len(df), index=df.index) labels &= df['DestState'] == destate return labels def get_slice_membership(df, ogstate=None, destate=None, quarter=None,airline=None): labels = pd.Series([1] * len(df), index=df.index) if ogstate: labels &= df['OriginState'] == ogstate if destate is not None: labels &= df['DestState'] == destate if quarter: labels &= df['Quarter'].isin(quarter) if airline: labels &= df['AirlineCompany'].isin(airline) return labels #-------------------- Price Heat Map------------------------------------------- def load_data(url): file = url df = pd.read_csv(file) return df def get_season(df, quarter): sub = df[df['Quarter']== quarter] return sub menu_selection = st.sidebar.radio("Menu", ["Introduction","Flight Map", "Flight Delay Analysis", "Flight Price Analysis"]) if menu_selection == 'Introduction': #col1, col2, col3,col4 = st.columns([0.5,1,2,1]) #col2.image("image/flight-logo.jpg", width=150) #col3.markdown("<h1 style='text-align: left; color: #072F5F;'>Flight Traffic Brain</h1>", # unsafe_allow_html=True) col1, col2, col3 = st.columns([0.5,1,4]) col2.image("image/flight-logo.jpg", width=150) col3.markdown("<h1 style='text-align: left; color: #072F5F;'>Flight Traffic Brain</h1>", unsafe_allow_html=True) text = "<p style='font-size:18px'>Nowadays, air traffic control has become a complicated task as there are\ more and more flights and airlines. There has also been rising cases of flight delays possibly due to poor\ management and massive volume of traffic. While air traffic is important to manage from the perspective of\ airports and airlines, flight prices are crucial for customers who usually make decisions of their travel\ plans based on them. In this project we hope to help airports better manage airlines and control airline\ traffic and passengers make wiser decisions about airline flights.</p>" st.write(text, unsafe_allow_html=True) text = "<p style='font-size:18px'>A <span style='color: #1167b1'> real-time map of flights </span> with interactive information such as speed and altitude can help the specialists\ to make better decisions. Meanwhile, an <span style='color: #1167b1'> interactive network graph </span> that shows the connections between airports and\ flights can also improve the handling of dependencies among the traffic. A <span style='color: #1167b1'> data visualization section of delay time </span>\ can also enable users to analyze different flights in real time and in more detail. By filtering the flight according to their\ departure airport, the users can not only view the delay time of different flights, but also have a high-level overview of\ the delay information of flights of different airlines. This information will help airport specialists to better communicate\ with the airports and passengers, and make better decisions in terms of resource distribution. In addition, a <span style='color: #1167b1'> \ machine learning model </span> using historical data to <span style='color: #1167b1'> predict flight price </span> can help passengers\ estimate the potential fare of flight of their interest. An <span style='color: #1167b1'> interactive platform with visualizations of airline comparisons </span> can also allow\ them to compare different flight prices by modifying parameters of interest, thus helping optimize their travel plan.</p>" st.write(text, unsafe_allow_html=True) text = "<br><br><br>This project was created by [<NAME>](<EMAIL>), [<NAME>](<EMAIL>), \ [<NAME>](<EMAIL>) and [<NAME>](<EMAIL>) for the [Interactive Data Science](https://dig.cmu.edu/ids2022) course at\ [Carnegie Mellon University](https://www.cmu.edu)" st.write(text, unsafe_allow_html=True) elif menu_selection == "Flight Map": st.title("Real-time Flight Data Visualization") # ------------ Map starts --------------------- with st.sidebar.expander("Analysis for flights/airports"): st.write("This is an analysis tool from the perspective of flights or airports") to_show = st.selectbox("Data to look at", ["flight", "airport"]) if to_show == "flight": field = st.selectbox("Variable of interest", ["heading", "altitude", "ground_speed"]) else: field = st.selectbox("Variable of interest", ["origin_airport_iata", "destination_airport_iata"]) st.write("This is a map of real-time flights and airports. The blue circles are \ the airport, while the red squares are the flights. You can utilize \ the tool bar on the left tab to explore the data. You can also \ move your mouse over the map to see more information.") map_air = create_map(flight_df, field, to_show) st.altair_chart(map_air,use_container_width=True) st.sidebar.title("Note") st.sidebar.write("This visualization consists of three components.\ The first component is a map that shows real-time flights and airports\ in the U.S. The second component, linked to the first component, \ is an analysis tool for the real-time flight and airport data. \ The third component displays the time information of a flight.") st.sidebar.download_button("Download real-time data", data=save_AD_data(flight_df), file_name='airdata.csv', mime='text/csv') # ------------ Map ends --------------------- # ------------ Flight time starts --------------------- st.write("Here we display the time information of a flight.") option = st.selectbox("Which flight number are you looking into?", flight_df['number'].sort_values()) # Get the corresponding flight row in the dataframe option_row = flight_df[flight_df['number'] == option] option_id = option_row.id.values[0] option_detail = ad.get_flight_details(option_id) option_time = option_detail['time'] # Display scheduled and actual time for departual and arrival using metric col1, col2 = st.columns(2) col1.metric("Scheduled departure time", parse_time(option_time['scheduled']['departure'])) if option_time['real']['departure'] and option_time['scheduled']['departure']: depart_delta = option_time['real']['departure'] - option_time['scheduled']['departure'] else: depart_delta = None col2.metric("Actual departure time", parse_time(option_time['real']['departure']), parse_time_hms(depart_delta), delta_color='inverse') col3, col4 = st.columns(2) col3.metric("Scheduled arrival time", parse_time(option_time['scheduled']['arrival'])) arrival_time = option_time['real']['arrival'] if not arrival_time: arrival_time = option_time['estimated']['arrival'] col4.metric("Estimated/Actual arrival time", parse_time(arrival_time)) # Note that some flights are not displayed due to... so the number of routes # may appear larger than... # ------------ Flight time ends --------------------- elif menu_selection == "Flight Delay Analysis": # ------------ Delay Analysis starts --------------------- st.title("Flight Delay Analysis") st.sidebar.title("Note") st.sidebar.write("This flight delay analysis consists of four parts: \ The first part is a data slicing tool that allows the users to filter any flight data according to the different departure airport.\ The second part lists out all the flights flying from the selected departure airport, and displays the relevant delay time information of the flights. \ The third part displays a stripplot graph to allow the users to visually compare the different departure delay time of flights of different airlines.\ The last part compares the average delay time of different airlines. ") ad = AirData() flight_df = ad.get_flights_df() st.header("Slice Data") st.write("You can filter the airline data by choosing the different departure airport.") with st.expander("Airports"): origin_airport_list = flight_df['origin_airport_iata'].drop_duplicates() option1 = st.selectbox("Departure Airport:", (origin_airport_list)) flight_df_selected1 = flight_df[(flight_df['origin_airport_iata'] == option1)] st.header("Data Visualization") with st.expander("Flight delay from different departure airports"): st.write("This data indicates all the current flights coming from the departure airport and their related delay times.") index = 0 for row in flight_df_selected1.iterrows(): flight_number = flight_df_selected1['number'].values[index] option_id = flight_df_selected1['id'].values[index] option_detail = ad.get_flight_details(option_id) option_time = option_detail['time'] if option_time['real']['departure'] is None: continue elif option_time['real']['arrival'] is None: depart_delta = option_time['real']['departure'] - option_time['scheduled']['departure'] arrive_delta = None col1, col2, col3 = st.columns(3) col1.metric("Flight number", flight_number) col2.metric("Departure delay", parse_time_hms(depart_delta)) col3.metric("Arrival delay", arrive_delta) else: depart_delta = option_time['real']['departure'] - option_time['scheduled']['departure'] arrive_delta = option_time['real']['arrival'] - option_time['scheduled']['arrival'] col1, col2, col3 = st.columns(3) col1.metric("Flight number", flight_number) col2.metric("Departure delay", parse_time_hms(depart_delta)) col3.metric("Arrival delay", parse_time_hms(arrive_delta)) index = index + 1 with st.expander("Flight delay of different airlines"): st.write("This data compares the punctuality and departure delay times between different airlines.") depart_delay = [] index = 0 for row in flight_df_selected1.iterrows(): option_id = flight_df_selected1['id'].values[index] option_detail = ad.get_flight_details(option_id) option_time = option_detail['time'] if option_time['real']['departure'] is None: continue else: depart_delta = option_time['real']['departure'] - option_time['scheduled']['departure'] depart_delta = parse_time_hms(depart_delta) depart_delay.append(depart_delta) index = index + 1 flight_df_selected1['depart_delay'] = depart_delay stripplot = alt.Chart(flight_df_selected1, width=640).mark_circle(size=30).encode( x=alt.X( 'depart_delay', title='Departure delay', scale=alt.Scale()), y=alt.Y( 'airline_iata', title='Airline iata'), color=alt.Color('airline_iata', legend=alt.Legend(orient="right")), tooltip=['number', 'airline_iata', 'depart_delay'] ).transform_calculate( jitter='sqrt(-2*log(random()))*cos(2*PI*random())' ).configure_facet( spacing=0 ).configure_view( stroke=None ) stripplot with st.expander("Compare average departure delay of different airlines"): depart_delay = [] index = 0 for row in flight_df_selected1.iterrows(): option_id = flight_df_selected1['id'].values[index] option_detail = ad.get_flight_details(option_id) option_time = option_detail['time'] if option_time['real']['departure'] is None: continue else: depart_delta = option_time['real']['departure'] - option_time['scheduled']['departure'] # depart_delta = parse_time_hms(depart_delta) depart_delay.append(depart_delta) index = index + 1 flight_df_selected1['depart_delay'] = depart_delay average_delay = [] airline_average_delay_parsed = [] index = 0 for row in flight_df_selected1.iterrows(): ite_airline = flight_df_selected1['airline_iata'].values[index] airline_data = flight_df_selected1[flight_df_selected1['airline_iata'] == ite_airline] airline_average_delay = airline_data['depart_delay'].mean() average_delay_parsed = parse_time_hms(airline_average_delay) average_delay_parsed = str(average_delay_parsed).rstrip(':0') airline_average_delay = round(airline_average_delay, 2) # airline_average_delay = parse_time_hms(airline_average_delay) average_delay.append(airline_average_delay) airline_average_delay_parsed.append(average_delay_parsed) index = index + 1 flight_df_selected1['airline_average_delay'] = average_delay flight_df_selected1['average_delay_parsed'] = airline_average_delay_parsed flight_df_selected2 = flight_df_selected1.drop_duplicates(subset=['airline_iata'], keep='first') flight_df_selected2 = flight_df_selected2.sort_values(by=['airline_average_delay'], ascending=False) barchart = alt.Chart(flight_df_selected2, width=640).mark_bar().encode( x=alt.X('airline_average_delay', axis=alt.Axis(labels=False)), y=alt.Y('airline_iata', sort=alt.EncodingSortField(field="airline_average_delay", op="count", order='ascending')), tooltip=['airline_iata', 'average_delay_parsed'] ) text = barchart.mark_text( align='left', baseline='middle', dx=3 # Nudges text to right so it doesn't appear on top of the bar ).encode( text='average_delay_parsed' ) (barchart + text).properties(height=900) barchart + text index = 0 for row in flight_df_selected2.iterrows(): ite_airline = flight_df_selected2['airline_iata'].values[index] ite_delay = flight_df_selected2['average_delay_parsed'].values[index] # ite_delay = parse_time_hms(ite_delay) ite_delay = str(ite_delay).rstrip(':0') col1, col2 = st.columns(2) col1.metric("Airline", ite_airline) col2.metric("Average departure delay", ite_delay) index = index + 1 # ------------ Delay Analysis ends --------------------- else: # ------------------------ Flight price prediction starts ------------------------------ ## Price Prediction st.title("Flight Price Analysis") # 1. ML prediction st.header("Flight Price Prediction") st.write("Tell us your intended flight information and get predicted flight price value and range.") X_train=pd.read_csv('flight-price/X_train.csv') features = list(X_train.columns) del X_train df_pred = pd.DataFrame(0, index=np.arange(1), columns=features) col1, col2 = st.columns([3, 2]) with col2: og = st.selectbox('Origin', np.array(origin),index=30) de = st.selectbox('Destination', np.array(dest),index=4) season = st.selectbox('Season', ['Spring','Summer','Fall','Winter']) airline = st.selectbox('Airline Company', np.array(air)) numT = st.slider('Number of tickets', 1, 15, 1) if og != "Virgin Islands": df_pred[f'o{og}'] = 1 else: df_pred['oU.S. Virgin Islands']=1 if de != "Virgin Islands": df_pred[f'd{de}'] = 1 else: df_pred['dU.S. Virgin Islands']=1 if season!='Spring': df_pred[quarter_dic[season]] = 1 if airline[-3:-1]!='AA': df_pred[airline[-3:-1]] = 1 df_pred['NumTicketsOrdered'] = numT if og!=de: try: miles = miles_dic[(og,de)] except: miles = miles_dic[(de,og)] df_pred['log_miles']=np.log(miles) else: st.markdown(" ") if og!=de: low, mean, high = get_pi(pd.DataFrame(df_pred)) with col1: st.subheader("Predicted Price per Ticket") st.metric("Low", f'${low}',"+$",delta_color="inverse") st.metric("Mean", f'${mean}') st.metric("High", f'${high}',"-$",delta_color="inverse") df_interval = pd.DataFrame([[low,mean,high]],columns=['Low','Mean','High']) st.write("See where your flight falls in the historical price distribution (2018)") with st.expander("See price distribution"): # plot price dist bar = alt.Chart(df_viz).mark_bar(opacity=0.3,tooltip = True).encode( alt.X('PricePerTicket:Q',title="Price per Ticket ($)"),#scale=alt.Scale(type='log')), alt.Y('count()',title='Raw Frequency Count') ).properties( title='Unit Price Distribution', width=600, height=400 #).transform_filter( ).interactive() mean = alt.Chart(df_interval).mark_rule(color='purple',tooltip=True).encode( x='Mean:Q', size=alt.value(4), ) low = alt.Chart(df_interval.sample(1)).mark_rule(color='darkblue',tooltip=True).encode( x='Low:Q', size=alt.value(2), #strokeDash='Quarter' ) high = alt.Chart(df_interval.sample(1)).mark_rule(color='darkblue',tooltip=True).encode( x='High:Q', size=alt.value(2), #strokeDash='Quarter' ) price_chart = bar + mean + low+ high st.altair_chart(price_chart,use_container_width=True) else: with col1: st.metric(" ", 'Not Available') st.markdown("**Please choose a different origin or destination!**") # ------------------------ Flight price prediction ends ------------------------------ # ------------------------ Flight price comparison starts ------------------------------ ## Price comparison st.header("Check the historical information of the flight you are interested in") st.write('We will look at some historical data in 2018.') df = load_data_viz() cols = st.columns(4) with cols[0]: ogs = sorted(df['OriginState'].unique()) ogstate = st.selectbox('Origin State', ogs,index=ogs.index('New York')) with cols[1]: des = sorted(df['DestState'].unique()) destate = st.selectbox('Destination State', des,index=des.index('California')) with cols[2]: quarter = st.multiselect('Quarter',sorted(df['Quarter'].unique())) with cols[3]: airline = st.multiselect('Airline Company', sorted(df['AirlineCompany'].unique())) slice_labels = get_slice_membership(df, ogstate, destate, quarter,airline) slice_labels.name = "slice_membership" df_show = df[slice_labels].iloc[:,:][['PricePerTicket','og','dest','Quarter','AirlineCompany']].sort_values(by='PricePerTicket') df_show = df_show.rename(columns={'PricePerTicket':'Price per Ticket ($)','og':'Origin','dest':'Destination'}).reset_index(drop=True) df_show['Price per Ticket ($)'] = df_show['Price per Ticket ($)'].apply(lambda x: "{:.2f}".format(x)) if df_show.empty: st.metric(" ", "No Historical Data Available") st.write("Please deselect some quarter/airline options or change origin/destination state.") else: st.dataframe(data=df_show) # ------------------------ Flight price comparison starts ------------------------------ -------- df = load_data('flight-price/train_viz.csv') st.header("Choose the season you want to travel, find the most economical route and airline") quarter = st.selectbox('Season(Quarter)', sorted(df['Quarter'].unique())) season_df = get_season(df,quarter) # Take top 20 frequency states statelist = ['California','Florida','Texas','New York','Georgia','Illinois','Nevada','Virginia','Massachusetts', 'Washington','Pennsylvania','Arizona','New Jersey','Minnesota','Michigan','Missouri','Maryland','Hawaii'] heat_price = season_df[season_df['OriginState'].isin(statelist) ] heat_price = heat_price[heat_price['DestState'].isin(statelist) ] # Take average price and miles per route heat_price = heat_price.groupby(['OriginState','DestState'])[['PricePerTicket','Miles']].mean().reset_index() # Drop the invalid value(origin = destination) heat_price = heat_price[heat_price['OriginState'] != heat_price['DestState']] pts = alt.selection(type="multi", encodings=['x','y']) heat = alt.Chart(heat_price).mark_rect().encode( x='OriginState:O', y='DestState:O', color=alt.condition(pts,'PricePerTicket:Q', alt.ColorValue("grey")), tooltip=['OriginState', 'DestState', 'PricePerTicket','Miles'] ).add_selection(pts) box = alt.Chart(df).mark_boxplot(extent='min-max').encode( x='AirlineCompany:O', y='PricePerTicket:Q', color=alt.Color('AirlineCompany') ).properties( width=500, height=300, ).transform_filter( pts ) st.altair_chart(alt.vconcat(heat,box),use_container_width=True) st.header("Compare the price of different destination based on the origin you choose") origin = st.selectbox('Origin', sorted(df['OriginState'].unique())) def origin_data(origin,df): subset = df[df['OriginState']==origin] subset = subset.groupby(['OriginState','DestState'])[['PricePerTicket','Miles']].mean().reset_index() merged = subset.merge(data.income().groupby('name').mean().reset_index(), how = 'inner', left_on ='DestState', right_on= 'name') return merged subset = origin_data(origin,df) pts = alt.selection(type="multi", encodings=['x','y']) heat_bar = alt.Chart(subset).mark_rect().encode( x='DestState:O', y='OriginState:O', color=alt.condition(pts,'PricePerTicket:Q', alt.ColorValue("grey")), tooltip=['DestState'] ).add_selection(pts) states = alt.topo_feature(data.us_10m.url, 'states') background = alt.Chart(states).mark_geoshape( fill='lightgray', stroke='white' ).properties( width=600, height=400 ).project('albersUsa') foreground = alt.Chart(subset).mark_geoshape().encode( shape='geo:G', color=alt.condition(pts, 'name:N', alt.value('lightgray')), tooltip=['OriginState', 'DestState', 'PricePerTicket','Miles'] ).transform_lookup( lookup='id', from_=alt.LookupData(data=states, key='id'), as_='geo' ).properties( width=600, height=400, ).project( type='albersUsa' ) map = background + foreground st.altair_chart(alt.vconcat(heat_bar, map),use_container_width=True) st.sidebar.title("Note") st.sidebar.write("This flight price analysis consists of four parts.\ The first part is a flight customization section with predicted price range \ against historical price distribution.\ The second part presents a table of customized historical flights of interest. \ The third part displays the historical average flight price by route and airline company.\ The last part shows the available destination on the map and other information based on a chosen origin. ")
[ "pandas.read_csv", "utils.parse_time_hms", "altair.Chart", "numpy.log", "streamlit.sidebar.expander", "utils.parse_time", "numpy.array", "altair.X", "altair.Y", "altair.Legend", "streamlit.metric", "map.create_map", "streamlit.header", "numpy.arange", "streamlit.title", "streamlit.side...
[((358, 405), 'streamlit.cache', 'st.cache', ([], {'ttl': '(60 * 60)', 'suppress_st_warning': '(True)'}), '(ttl=60 * 60, suppress_st_warning=True)\n', (366, 405), True, 'import streamlit as st\n'), ((2654, 2764), 'streamlit.sidebar.radio', 'st.sidebar.radio', (['"""Menu"""', "['Introduction', 'Flight Map', 'Flight Delay Analysis', 'Flight Price Analysis'\n ]"], {}), "('Menu', ['Introduction', 'Flight Map',\n 'Flight Delay Analysis', 'Flight Price Analysis'])\n", (2670, 2764), True, 'import streamlit as st\n'), ((434, 443), 'airdata.AirData', 'AirData', ([], {}), '()\n', (441, 443), False, 'from airdata import AirData\n'), ((2518, 2535), 'pandas.read_csv', 'pd.read_csv', (['file'], {}), '(file)\n', (2529, 2535), True, 'import pandas as pd\n'), ((3106, 3129), 'streamlit.columns', 'st.columns', (['[0.5, 1, 4]'], {}), '([0.5, 1, 4])\n', (3116, 3129), True, 'import streamlit as st\n'), ((3952, 3990), 'streamlit.write', 'st.write', (['text'], {'unsafe_allow_html': '(True)'}), '(text, unsafe_allow_html=True)\n', (3960, 3990), True, 'import streamlit as st\n'), ((5486, 5524), 'streamlit.write', 'st.write', (['text'], {'unsafe_allow_html': '(True)'}), '(text, unsafe_allow_html=True)\n', (5494, 5524), True, 'import streamlit as st\n'), ((5803, 5841), 'streamlit.write', 'st.write', (['text'], {'unsafe_allow_html': '(True)'}), '(text, unsafe_allow_html=True)\n', (5811, 5841), True, 'import streamlit as st\n'), ((1095, 1133), 'pandas.read_csv', 'pd.read_csv', (['"""flight-price/df_viz.csv"""'], {}), "('flight-price/df_viz.csv')\n", (1106, 1133), True, 'import pandas as pd\n'), ((5892, 5939), 'streamlit.title', 'st.title', (['"""Real-time Flight Data Visualization"""'], {}), "('Real-time Flight Data Visualization')\n", (5900, 5939), True, 'import streamlit as st\n'), ((6477, 6789), 'streamlit.write', 'st.write', (['"""This is a map of real-time flights and airports. The blue circles are the airport, while the red squares are the flights. You can utilize the tool bar on the left tab to explore the data. You can also move your mouse over the map to see more information."""'], {}), "(\n 'This is a map of real-time flights and airports. The blue circles are the airport, while the red squares are the flights. You can utilize the tool bar on the left tab to explore the data. You can also move your mouse over the map to see more information.'\n )\n", (6485, 6789), True, 'import streamlit as st\n'), ((6800, 6837), 'map.create_map', 'create_map', (['flight_df', 'field', 'to_show'], {}), '(flight_df, field, to_show)\n', (6810, 6837), False, 'from map import create_map\n'), ((6843, 6893), 'streamlit.altair_chart', 'st.altair_chart', (['map_air'], {'use_container_width': '(True)'}), '(map_air, use_container_width=True)\n', (6858, 6893), True, 'import streamlit as st\n'), ((6898, 6922), 'streamlit.sidebar.title', 'st.sidebar.title', (['"""Note"""'], {}), "('Note')\n", (6914, 6922), True, 'import streamlit as st\n'), ((6928, 7298), 'streamlit.sidebar.write', 'st.sidebar.write', (['"""This visualization consists of three components. The first component is a map that shows real-time flights and airports in the U.S. The second component, linked to the first component, is an analysis tool for the real-time flight and airport data. The third component displays the time information of a flight."""'], {}), "(\n 'This visualization consists of three components. The first component is a map that shows real-time flights and airports in the U.S. The second component, linked to the first component, is an analysis tool for the real-time flight and airport data. The third component displays the time information of a flight.'\n )\n", (6944, 7298), True, 'import streamlit as st\n'), ((7570, 7631), 'streamlit.write', 'st.write', (['"""Here we display the time information of a flight."""'], {}), "('Here we display the time information of a flight.')\n", (7578, 7631), True, 'import streamlit as st\n'), ((8112, 8125), 'streamlit.columns', 'st.columns', (['(2)'], {}), '(2)\n', (8122, 8125), True, 'import streamlit as st\n'), ((8664, 8677), 'streamlit.columns', 'st.columns', (['(2)'], {}), '(2)\n', (8674, 8677), True, 'import streamlit as st\n'), ((1423, 1436), 'numpy.exp', 'np.exp', (['lb[0]'], {}), '(lb[0])\n', (1429, 1436), True, 'import numpy as np\n'), ((1447, 1462), 'numpy.exp', 'np.exp', (['pred[0]'], {}), '(pred[0])\n', (1453, 1462), True, 'import numpy as np\n'), ((1473, 1486), 'numpy.exp', 'np.exp', (['ub[0]'], {}), '(ub[0])\n', (1479, 1486), True, 'import numpy as np\n'), ((1557, 1598), 'pandas.read_csv', 'pd.read_csv', (['"""flight-price/train_viz.csv"""'], {}), "('flight-price/train_viz.csv')\n", (1568, 1598), True, 'import pandas as pd\n'), ((6002, 6054), 'streamlit.sidebar.expander', 'st.sidebar.expander', (['"""Analysis for flights/airports"""'], {}), "('Analysis for flights/airports')\n", (6021, 6054), True, 'import streamlit as st\n'), ((6064, 6149), 'streamlit.write', 'st.write', (['"""This is an analysis tool from the perspective of flights or airports"""'], {}), "('This is an analysis tool from the perspective of flights or airports'\n )\n", (6072, 6149), True, 'import streamlit as st\n'), ((6163, 6217), 'streamlit.selectbox', 'st.selectbox', (['"""Data to look at"""', "['flight', 'airport']"], {}), "('Data to look at', ['flight', 'airport'])\n", (6175, 6217), True, 'import streamlit as st\n'), ((8187, 8236), 'utils.parse_time', 'parse_time', (["option_time['scheduled']['departure']"], {}), "(option_time['scheduled']['departure'])\n", (8197, 8236), False, 'from utils import parse_time, parse_time_hms\n'), ((8514, 8558), 'utils.parse_time', 'parse_time', (["option_time['real']['departure']"], {}), "(option_time['real']['departure'])\n", (8524, 8558), False, 'from utils import parse_time, parse_time_hms\n'), ((8576, 8604), 'utils.parse_time_hms', 'parse_time_hms', (['depart_delta'], {}), '(depart_delta)\n', (8590, 8604), False, 'from utils import parse_time, parse_time_hms\n'), ((8720, 8767), 'utils.parse_time', 'parse_time', (["option_time['scheduled']['arrival']"], {}), "(option_time['scheduled']['arrival'])\n", (8730, 8767), False, 'from utils import parse_time, parse_time_hms\n'), ((8952, 8976), 'utils.parse_time', 'parse_time', (['arrival_time'], {}), '(arrival_time)\n', (8962, 8976), False, 'from utils import parse_time, parse_time_hms\n'), ((9259, 9292), 'streamlit.title', 'st.title', (['"""Flight Delay Analysis"""'], {}), "('Flight Delay Analysis')\n", (9267, 9292), True, 'import streamlit as st\n'), ((9298, 9322), 'streamlit.sidebar.title', 'st.sidebar.title', (['"""Note"""'], {}), "('Note')\n", (9314, 9322), True, 'import streamlit as st\n'), ((9328, 9941), 'streamlit.sidebar.write', 'st.sidebar.write', (['"""This flight delay analysis consists of four parts: The first part is a data slicing tool that allows the users to filter any flight data according to the different departure airport. The second part lists out all the flights flying from the selected departure airport, and displays the relevant delay time information of the flights. The third part displays a stripplot graph to allow the users to visually compare the different departure delay time of flights of different airlines. The last part compares the average delay time of different airlines. """'], {}), "(\n 'This flight delay analysis consists of four parts: The first part is a data slicing tool that allows the users to filter any flight data according to the different departure airport. The second part lists out all the flights flying from the selected departure airport, and displays the relevant delay time information of the flights. The third part displays a stripplot graph to allow the users to visually compare the different departure delay time of flights of different airlines. The last part compares the average delay time of different airlines. '\n )\n", (9344, 9941), True, 'import streamlit as st\n'), ((9951, 9960), 'airdata.AirData', 'AirData', ([], {}), '()\n', (9958, 9960), False, 'from airdata import AirData\n'), ((10002, 10025), 'streamlit.header', 'st.header', (['"""Slice Data"""'], {}), "('Slice Data')\n", (10011, 10025), True, 'import streamlit as st\n'), ((10030, 10128), 'streamlit.write', 'st.write', (['"""You can filter the airline data by choosing the different departure airport."""'], {}), "(\n 'You can filter the airline data by choosing the different departure airport.'\n )\n", (10038, 10128), True, 'import streamlit as st\n'), ((10434, 10465), 'streamlit.header', 'st.header', (['"""Data Visualization"""'], {}), "('Data Visualization')\n", (10443, 10465), True, 'import streamlit as st\n'), ((17100, 17133), 'streamlit.title', 'st.title', (['"""Flight Price Analysis"""'], {}), "('Flight Price Analysis')\n", (17108, 17133), True, 'import streamlit as st\n'), ((17166, 17202), 'streamlit.header', 'st.header', (['"""Flight Price Prediction"""'], {}), "('Flight Price Prediction')\n", (17175, 17202), True, 'import streamlit as st\n'), ((17207, 17317), 'streamlit.write', 'st.write', (['"""Tell us your intended flight information and get predicted flight price value and range."""'], {}), "(\n 'Tell us your intended flight information and get predicted flight price value and range.'\n )\n", (17215, 17317), True, 'import streamlit as st\n'), ((17326, 17365), 'pandas.read_csv', 'pd.read_csv', (['"""flight-price/X_train.csv"""'], {}), "('flight-price/X_train.csv')\n", (17337, 17365), True, 'import pandas as pd\n'), ((17505, 17523), 'streamlit.columns', 'st.columns', (['[3, 2]'], {}), '([3, 2])\n', (17515, 17523), True, 'import streamlit as st\n'), ((20841, 20927), 'streamlit.header', 'st.header', (['"""Check the historical information of the flight you are interested in"""'], {}), "(\n 'Check the historical information of the flight you are interested in')\n", (20850, 20927), True, 'import streamlit as st\n'), ((20927, 20984), 'streamlit.write', 'st.write', (['"""We will look at some historical data in 2018."""'], {}), "('We will look at some historical data in 2018.')\n", (20935, 20984), True, 'import streamlit as st\n'), ((21023, 21036), 'streamlit.columns', 'st.columns', (['(4)'], {}), '(4)\n', (21033, 21036), True, 'import streamlit as st\n'), ((22460, 22563), 'streamlit.header', 'st.header', (['"""Choose the season you want to travel, find the most economical route and airline"""'], {}), "(\n 'Choose the season you want to travel, find the most economical route and airline'\n )\n", (22469, 22563), True, 'import streamlit as st\n'), ((23395, 23444), 'altair.selection', 'alt.selection', ([], {'type': '"""multi"""', 'encodings': "['x', 'y']"}), "(type='multi', encodings=['x', 'y'])\n", (23408, 23444), True, 'import altair as alt\n'), ((24078, 24174), 'streamlit.header', 'st.header', (['"""Compare the price of different destination based on the origin you choose"""'], {}), "(\n 'Compare the price of different destination based on the origin you choose'\n )\n", (24087, 24174), True, 'import streamlit as st\n'), ((24633, 24682), 'altair.selection', 'alt.selection', ([], {'type': '"""multi"""', 'encodings': "['x', 'y']"}), "(type='multi', encodings=['x', 'y'])\n", (24646, 24682), True, 'import altair as alt\n'), ((24935, 24978), 'altair.topo_feature', 'alt.topo_feature', (['data.us_10m.url', '"""states"""'], {}), "(data.us_10m.url, 'states')\n", (24951, 24978), True, 'import altair as alt\n'), ((25737, 25761), 'streamlit.sidebar.title', 'st.sidebar.title', (['"""Note"""'], {}), "('Note')\n", (25753, 25761), True, 'import streamlit as st\n'), ((25767, 26274), 'streamlit.sidebar.write', 'st.sidebar.write', (['"""This flight price analysis consists of four parts. The first part is a flight customization section with predicted price range against historical price distribution. The second part presents a table of customized historical flights of interest. The third part displays the historical average flight price by route and airline company. The last part shows the available destination on the map and other information based on a chosen origin. """'], {}), "(\n 'This flight price analysis consists of four parts. The first part is a flight customization section with predicted price range against historical price distribution. The second part presents a table of customized historical flights of interest. The third part displays the historical average flight price by route and airline company. The last part shows the available destination on the map and other information based on a chosen origin. '\n )\n", (25783, 26274), True, 'import streamlit as st\n'), ((6270, 6347), 'streamlit.selectbox', 'st.selectbox', (['"""Variable of interest"""', "['heading', 'altitude', 'ground_speed']"], {}), "('Variable of interest', ['heading', 'altitude', 'ground_speed'])\n", (6282, 6347), True, 'import streamlit as st\n'), ((6382, 6475), 'streamlit.selectbox', 'st.selectbox', (['"""Variable of interest"""', "['origin_airport_iata', 'destination_airport_iata']"], {}), "('Variable of interest', ['origin_airport_iata',\n 'destination_airport_iata'])\n", (6394, 6475), True, 'import streamlit as st\n'), ((10128, 10151), 'streamlit.expander', 'st.expander', (['"""Airports"""'], {}), "('Airports')\n", (10139, 10151), True, 'import streamlit as st\n'), ((10252, 10307), 'streamlit.selectbox', 'st.selectbox', (['"""Departure Airport:"""', 'origin_airport_list'], {}), "('Departure Airport:', origin_airport_list)\n", (10264, 10307), True, 'import streamlit as st\n'), ((10475, 10536), 'streamlit.expander', 'st.expander', (['"""Flight delay from different departure airports"""'], {}), "('Flight delay from different departure airports')\n", (10486, 10536), True, 'import streamlit as st\n'), ((10546, 10676), 'streamlit.write', 'st.write', (['"""This data indicates all the current flights coming from the departure airport and their related delay times."""'], {}), "(\n 'This data indicates all the current flights coming from the departure airport and their related delay times.'\n )\n", (10554, 10676), True, 'import streamlit as st\n'), ((12200, 12249), 'streamlit.expander', 'st.expander', (['"""Flight delay of different airlines"""'], {}), "('Flight delay of different airlines')\n", (12211, 12249), True, 'import streamlit as st\n'), ((12259, 12369), 'streamlit.write', 'st.write', (['"""This data compares the punctuality and departure delay times between different airlines."""'], {}), "(\n 'This data compares the punctuality and departure delay times between different airlines.'\n )\n", (12267, 12369), True, 'import streamlit as st\n'), ((13727, 13795), 'streamlit.expander', 'st.expander', (['"""Compare average departure delay of different airlines"""'], {}), "('Compare average departure delay of different airlines')\n", (13738, 13795), True, 'import streamlit as st\n'), ((17697, 17759), 'streamlit.selectbox', 'st.selectbox', (['"""Season"""', "['Spring', 'Summer', 'Fall', 'Winter']"], {}), "('Season', ['Spring', 'Summer', 'Fall', 'Winter'])\n", (17709, 17759), True, 'import streamlit as st\n'), ((17837, 17877), 'streamlit.slider', 'st.slider', (['"""Number of tickets"""', '(1)', '(15)', '(1)'], {}), "('Number of tickets', 1, 15, 1)\n", (17846, 17877), True, 'import streamlit as st\n'), ((19036, 19124), 'streamlit.write', 'st.write', (['"""See where your flight falls in the historical price distribution (2018)"""'], {}), "(\n 'See where your flight falls in the historical price distribution (2018)')\n", (19044, 19124), True, 'import streamlit as st\n'), ((22100, 22146), 'streamlit.metric', 'st.metric', (['""" """', '"""No Historical Data Available"""'], {}), "(' ', 'No Historical Data Available')\n", (22109, 22146), True, 'import streamlit as st\n'), ((22155, 22257), 'streamlit.write', 'st.write', (['"""Please deselect some quarter/airline options or change origin/destination state."""'], {}), "(\n 'Please deselect some quarter/airline options or change origin/destination state.'\n )\n", (22163, 22257), True, 'import streamlit as st\n'), ((22267, 22293), 'streamlit.dataframe', 'st.dataframe', ([], {'data': 'df_show'}), '(data=df_show)\n', (22279, 22293), True, 'import streamlit as st\n'), ((24021, 24043), 'altair.vconcat', 'alt.vconcat', (['heat', 'box'], {}), '(heat, box)\n', (24032, 24043), True, 'import altair as alt\n'), ((25675, 25701), 'altair.vconcat', 'alt.vconcat', (['heat_bar', 'map'], {}), '(heat_bar, map)\n', (25686, 25701), True, 'import altair as alt\n'), ((14899, 14936), 'utils.parse_time_hms', 'parse_time_hms', (['airline_average_delay'], {}), '(airline_average_delay)\n', (14913, 14936), False, 'from utils import parse_time, parse_time_hms\n'), ((16701, 16714), 'streamlit.columns', 'st.columns', (['(2)'], {}), '(2)\n', (16711, 16714), True, 'import streamlit as st\n'), ((17455, 17467), 'numpy.arange', 'np.arange', (['(1)'], {}), '(1)\n', (17464, 17467), True, 'import numpy as np\n'), ((17588, 17604), 'numpy.array', 'np.array', (['origin'], {}), '(origin)\n', (17596, 17604), True, 'import numpy as np\n'), ((17656, 17670), 'numpy.array', 'np.array', (['dest'], {}), '(dest)\n', (17664, 17670), True, 'import numpy as np\n'), ((17807, 17820), 'numpy.array', 'np.array', (['air'], {}), '(air)\n', (17815, 17820), True, 'import numpy as np\n'), ((18533, 18546), 'numpy.log', 'np.log', (['miles'], {}), '(miles)\n', (18539, 18546), True, 'import numpy as np\n'), ((18573, 18589), 'streamlit.markdown', 'st.markdown', (['""" """'], {}), "(' ')\n", (18584, 18589), True, 'import streamlit as st\n'), ((18652, 18673), 'pandas.DataFrame', 'pd.DataFrame', (['df_pred'], {}), '(df_pred)\n', (18664, 18673), True, 'import pandas as pd\n'), ((18706, 18748), 'streamlit.subheader', 'st.subheader', (['"""Predicted Price per Ticket"""'], {}), "('Predicted Price per Ticket')\n", (18718, 18748), True, 'import streamlit as st\n'), ((18761, 18817), 'streamlit.metric', 'st.metric', (['"""Low"""', 'f"""${low}"""', '"""+$"""'], {'delta_color': '"""inverse"""'}), "('Low', f'${low}', '+$', delta_color='inverse')\n", (18770, 18817), True, 'import streamlit as st\n'), ((18828, 18857), 'streamlit.metric', 'st.metric', (['"""Mean"""', 'f"""${mean}"""'], {}), "('Mean', f'${mean}')\n", (18837, 18857), True, 'import streamlit as st\n'), ((18870, 18928), 'streamlit.metric', 'st.metric', (['"""High"""', 'f"""${high}"""', '"""-$"""'], {'delta_color': '"""inverse"""'}), "('High', f'${high}', '-$', delta_color='inverse')\n", (18879, 18928), True, 'import streamlit as st\n'), ((18953, 19019), 'pandas.DataFrame', 'pd.DataFrame', (['[[low, mean, high]]'], {'columns': "['Low', 'Mean', 'High']"}), "([[low, mean, high]], columns=['Low', 'Mean', 'High'])\n", (18965, 19019), True, 'import pandas as pd\n'), ((19133, 19170), 'streamlit.expander', 'st.expander', (['"""See price distribution"""'], {}), "('See price distribution')\n", (19144, 19170), True, 'import streamlit as st\n'), ((20351, 20405), 'streamlit.altair_chart', 'st.altair_chart', (['price_chart'], {'use_container_width': '(True)'}), '(price_chart, use_container_width=True)\n', (20366, 20405), True, 'import streamlit as st\n'), ((20455, 20486), 'streamlit.metric', 'st.metric', (['""" """', '"""Not Available"""'], {}), "(' ', 'Not Available')\n", (20464, 20486), True, 'import streamlit as st\n'), ((20499, 20566), 'streamlit.markdown', 'st.markdown', (['"""**Please choose a different origin or destination!**"""'], {}), "('**Please choose a different origin or destination!**')\n", (20510, 20566), True, 'import streamlit as st\n'), ((12863, 12891), 'utils.parse_time_hms', 'parse_time_hms', (['depart_delta'], {}), '(depart_delta)\n', (12877, 12891), False, 'from utils import parse_time, parse_time_hms\n'), ((11295, 11308), 'streamlit.columns', 'st.columns', (['(3)'], {}), '(3)\n', (11305, 11308), True, 'import streamlit as st\n'), ((11846, 11859), 'streamlit.columns', 'st.columns', (['(3)'], {}), '(3)\n', (11856, 11859), True, 'import streamlit as st\n'), ((19776, 19788), 'altair.value', 'alt.value', (['(4)'], {}), '(4)\n', (19785, 19788), True, 'import altair as alt\n'), ((19970, 19982), 'altair.value', 'alt.value', (['(2)'], {}), '(2)\n', (19979, 19982), True, 'import altair as alt\n'), ((20187, 20199), 'altair.value', 'alt.value', (['(2)'], {}), '(2)\n', (20196, 20199), True, 'import altair as alt\n'), ((11472, 11500), 'utils.parse_time_hms', 'parse_time_hms', (['depart_delta'], {}), '(depart_delta)\n', (11486, 11500), False, 'from utils import parse_time, parse_time_hms\n'), ((12023, 12051), 'utils.parse_time_hms', 'parse_time_hms', (['depart_delta'], {}), '(depart_delta)\n', (12037, 12051), False, 'from utils import parse_time, parse_time_hms\n'), ((12126, 12154), 'utils.parse_time_hms', 'parse_time_hms', (['arrive_delta'], {}), '(arrive_delta)\n', (12140, 12154), False, 'from utils import parse_time, parse_time_hms\n'), ((15697, 15738), 'altair.Chart', 'alt.Chart', (['flight_df_selected2'], {'width': '(640)'}), '(flight_df_selected2, width=640)\n', (15706, 15738), True, 'import altair as alt\n'), ((15808, 15830), 'altair.Axis', 'alt.Axis', ([], {'labels': '(False)'}), '(labels=False)\n', (15816, 15830), True, 'import altair as alt\n'), ((15874, 15962), 'altair.EncodingSortField', 'alt.EncodingSortField', ([], {'field': '"""airline_average_delay"""', 'op': '"""count"""', 'order': '"""ascending"""'}), "(field='airline_average_delay', op='count', order=\n 'ascending')\n", (15895, 15962), True, 'import altair as alt\n'), ((23602, 23624), 'altair.ColorValue', 'alt.ColorValue', (['"""grey"""'], {}), "('grey')\n", (23616, 23624), True, 'import altair as alt\n'), ((24840, 24862), 'altair.ColorValue', 'alt.ColorValue', (['"""grey"""'], {}), "('grey')\n", (24854, 24862), True, 'import altair as alt\n'), ((19657, 19679), 'altair.Chart', 'alt.Chart', (['df_interval'], {}), '(df_interval)\n', (19666, 19679), True, 'import altair as alt\n'), ((23456, 23477), 'altair.Chart', 'alt.Chart', (['heat_price'], {}), '(heat_price)\n', (23465, 23477), True, 'import altair as alt\n'), ((23862, 23889), 'altair.Color', 'alt.Color', (['"""AirlineCompany"""'], {}), "('AirlineCompany')\n", (23871, 23889), True, 'import altair as alt\n'), ((24698, 24715), 'altair.Chart', 'alt.Chart', (['subset'], {}), '(subset)\n', (24707, 24715), True, 'import altair as alt\n'), ((25001, 25018), 'altair.Chart', 'alt.Chart', (['states'], {}), '(states)\n', (25010, 25018), True, 'import altair as alt\n'), ((25451, 25488), 'altair.LookupData', 'alt.LookupData', ([], {'data': 'states', 'key': '"""id"""'}), "(data=states, key='id')\n", (25465, 25488), True, 'import altair as alt\n'), ((19299, 19354), 'altair.X', 'alt.X', (['"""PricePerTicket:Q"""'], {'title': '"""Price per Ticket ($)"""'}), "('PricePerTicket:Q', title='Price per Ticket ($)')\n", (19304, 19354), True, 'import altair as alt\n'), ((19401, 19446), 'altair.Y', 'alt.Y', (['"""count()"""'], {'title': '"""Raw Frequency Count"""'}), "('count()', title='Raw Frequency Count')\n", (19406, 19446), True, 'import altair as alt\n'), ((23735, 23748), 'altair.Chart', 'alt.Chart', (['df'], {}), '(df)\n', (23744, 23748), True, 'import altair as alt\n'), ((24457, 24470), 'vega_datasets.data.income', 'data.income', ([], {}), '()\n', (24468, 24470), False, 'from vega_datasets import data\n'), ((13274, 13317), 'altair.Y', 'alt.Y', (['"""airline_iata"""'], {'title': '"""Airline iata"""'}), "('airline_iata', title='Airline iata')\n", (13279, 13317), True, 'import altair as alt\n'), ((25296, 25318), 'altair.value', 'alt.value', (['"""lightgray"""'], {}), "('lightgray')\n", (25305, 25318), True, 'import altair as alt\n'), ((19220, 19237), 'altair.Chart', 'alt.Chart', (['df_viz'], {}), '(df_viz)\n', (19229, 19237), True, 'import altair as alt\n'), ((25188, 25205), 'altair.Chart', 'alt.Chart', (['subset'], {}), '(subset)\n', (25197, 25205), True, 'import altair as alt\n'), ((13059, 13100), 'altair.Chart', 'alt.Chart', (['flight_df_selected1'], {'width': '(640)'}), '(flight_df_selected1, width=640)\n', (13068, 13100), True, 'import altair as alt\n'), ((13246, 13257), 'altair.Scale', 'alt.Scale', ([], {}), '()\n', (13255, 13257), True, 'import altair as alt\n'), ((13403, 13429), 'altair.Legend', 'alt.Legend', ([], {'orient': '"""right"""'}), "(orient='right')\n", (13413, 13429), True, 'import altair as alt\n')]
import numpy as np import pandas as pd def Loader(events,args): """ Create a table with the pulses """ gb = events.groupby('Pulse',sort=False) pulses = events.loc[gb.Sigma.idxmax()] pulses.index = pulses.Pulse pulses.index.name = None pulses = pulses.drop('Pulse', axis='columns') pulses.index.name = 'idx' pulses['Rank'] = 0 pulses.Rank = pulses.Rank.astype(np.int8) pulses['Candidate'] = -1 pulses.Candidate = pulses.Candidate.astype(np.int32) pulses['N_events'] = gb.DM.count() pulses.N_events = pulses.N_events.astype(np.int16) pulses = pulses[pulses.N_events >= args.N_min] if pulses.shape[0] == 0: return pulses # Apply filters to discriminate interesting pulses if not args.no_filter: classic_filters(events[events.Pulse.isin(pulses.index)], pulses, args) #Store the pulses pulses.sort_values(['DM','Time'], inplace=True) if not args.no_store: pulses.to_hdf(args.store_name, 'pulses') return pulses def classic_filters(events, pulses, args): """ Apply RFI filters to the pulses """ RFI_code = 9 events = events[events.Pulse.isin(pulses.index)] events.sort_values(by='DM',inplace=True) gb = events.groupby('Pulse') pulses.sort_index(inplace=True) #Remove flat SNR pulses pulses.Rank[pulses.Sigma / gb.Sigma.min() <= args.SNR_peak_min / args.SNR_min] = RFI_code #Remove flat duration pulses (from Eq.6.21 of Pulsar Handbook) pulses.Rank.loc[gb.Downfact.max() / pulses.Downfact < (args.SNR_peak_min / args.SNR_min)**2] = RFI_code #Remove pulses peaking near the DM edges if args.DM_range is not None: DM_frac = (args.DM_range[1] - args.DM_range[0]) * 0.05 #Remove 5% of DM range from each edge pulses.Rank[(pulses.DM < args.DM_range[0] + DM_frac) | (pulses.DM > args.DM_range[1] - DM_frac)] = RFI_code #Remove pulses intersecting half the maximum SNR other than 2,4,6,8 times def crosses(sig): diff = sig - (sig.max() + sig.min()) / 2. count = np.count_nonzero(np.diff(np.sign(diff))) return (count != 2) & (count != 4) & (count != 6) & (count != 8) pulses.Rank[gb.apply(lambda x: crosses(x.Sigma))] = RFI_code #Remove weaker pulses within 20 ms of brighter ones def simultaneous(p): puls = pulses.Rank[np.abs(pulses.Time-p.Time) < 0.02] if puls.shape[0] == 1: return False if p.name == puls.index[0]: return False else: return True pulses.Rank[pulses.apply(lambda x: simultaneous(x), axis=1)] = RFI_code return
[ "numpy.abs", "numpy.sign" ]
[((1990, 2003), 'numpy.sign', 'np.sign', (['diff'], {}), '(diff)\n', (1997, 2003), True, 'import numpy as np\n'), ((2239, 2267), 'numpy.abs', 'np.abs', (['(pulses.Time - p.Time)'], {}), '(pulses.Time - p.Time)\n', (2245, 2267), True, 'import numpy as np\n')]
from scapy.all import * import argparse parser = argparse.ArgumentParser(description="Simple SYN Flood Script") parser.add_argument("target_ip", help="Target IP address (e.g router's IP)") parser.add_argument("-p", "--port", help="Destination port (the port of the target's machine service, \ e.g 80 for HTTP, 22 for SSH and so on).") # parse arguments from the command line args = parser.parse_args() # target IP address (should be a testing router/firewall) target_ip = args.target_ip # the target port u want to flood target_port = args.port # forge IP packet with target ip as the destination IP address ip = IP(dst=target_ip) # or if you want to perform IP Spoofing (will work as well) # ip = IP(src=RandIP("192.168.1.1/24"), dst=target_ip) # forge a TCP SYN packet with a random source port # and the target port as the destination port tcp = TCP(sport=RandShort(), dport=target_port, flags="S") # add some flooding data (1KB in this case, don't increase it too much, # otherwise, it won't work.) raw = Raw(b"X"*1024) # stack up the layers p = ip / tcp / raw # send the constructed packet in a loop until CTRL+C is detected send(p, loop=1, verbose=0)
[ "argparse.ArgumentParser" ]
[((50, 112), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {'description': '"""Simple SYN Flood Script"""'}), "(description='Simple SYN Flood Script')\n", (73, 112), False, 'import argparse\n')]
from datetime import datetime, timedelta def ts_current_second_start(ts: int) -> int: return ts - (ts % 1000) def ts_current_minute_start(ts: int) -> int: return ts - (ts % 60000) def ts_current_hour_start(ts: int) -> int: return ts - (ts % 3600000) def ts_last_monday_start(ts: int) -> int: dt = datetime.fromtimestamp(ts / 1000.0) dt = dt - timedelta(days=dt.weekday() % 7) dt = dt.replace(hour=0, minute=0, second=0, microsecond=0) return round(dt.timestamp() * 1000) def ts_current_day_start(ts: int) -> int: dt = datetime.fromtimestamp(ts / 1000.0) dt = dt.replace(hour=0, minute=0, second=0, microsecond=0) return round(dt.timestamp() * 1000) def ts_current_month_start(ts: int) -> int: dt = datetime.fromtimestamp(ts / 1000.0) dt = dt.replace(day=1, hour=0, minute=0, second=0, microsecond=0) return round(dt.timestamp() * 1000) def ts_current_year_start(ts: int) -> int: dt = datetime.fromtimestamp(ts / 1000.0) dt = dt.replace(month=1, day=1, hour=0, minute=0, second=0, microsecond=0) return round(dt.timestamp() * 1000)
[ "datetime.datetime.fromtimestamp" ]
[((321, 356), 'datetime.datetime.fromtimestamp', 'datetime.fromtimestamp', (['(ts / 1000.0)'], {}), '(ts / 1000.0)\n', (343, 356), False, 'from datetime import datetime, timedelta\n'), ((560, 595), 'datetime.datetime.fromtimestamp', 'datetime.fromtimestamp', (['(ts / 1000.0)'], {}), '(ts / 1000.0)\n', (582, 595), False, 'from datetime import datetime, timedelta\n'), ((754, 789), 'datetime.datetime.fromtimestamp', 'datetime.fromtimestamp', (['(ts / 1000.0)'], {}), '(ts / 1000.0)\n', (776, 789), False, 'from datetime import datetime, timedelta\n'), ((954, 989), 'datetime.datetime.fromtimestamp', 'datetime.fromtimestamp', (['(ts / 1000.0)'], {}), '(ts / 1000.0)\n', (976, 989), False, 'from datetime import datetime, timedelta\n')]
import sqlite3 from typing import Union, Any, List import re mydb = sqlite3.connect("Routing") cursor = mydb.cursor() cursor_2 = mydb.cursor() route_tables = [] def get_db_tables_with_data() -> list: """Gets database tables. If table is empty pass""" full_dbs = [] get_tables = cursor.execute("SELECT name FROM sqlite_master WHERE type='table';") for table in get_tables: check_table_rows = cursor_2.execute('SELECT count(*) FROM {}'.format(table[0])) for row in check_table_rows: if row[0] == 0: pass else: full_dbs.append(table[0]) return full_dbs def query_db_asa(**attributes: Union[str, List[int]]) -> None: """Find databse entries with arbitrary routing attributes. Checks for single hope metric or multi path using \',\' between metrics""" get_table_rows = [row for row in cursor.execute('SELECT count(*) FROM Routing_ASA')] if get_table_rows[0][0] == 0: print("No Routes In Table") else: context_query = cursor.execute('SELECT * FROM Routing_ASA WHERE context=?', ("None",)) matched_query = 0 for row in context_query: # Find single metric route if attributes["query"] == row[attributes["index"]]: print("Context: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}\n".format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7])) matched_query = matched_query + 1 else: pass # Find routes with multihop. Sperator is "," if attributes["query"] in row[attributes["index"]]: if "," in row[attributes["index"]]: if attributes["query"] in re.findall(r'^' + attributes["query"] + '(?=,)', row[attributes["index"]]) \ or \ attributes["query"] in re.findall(r'(?<=,)' + attributes["query"] + '', row[attributes["index"]]): print("\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}".format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7])) matched_query = matched_query + 1 if attributes["query"] in re.findall(r'^' + attributes["query"] + '(?=,)', row[attributes["index"]]) \ or \ attributes["query"] in re.findall(r'(?<=,)' + attributes["query"] + '',row[attributes["index"]]): print("\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}".format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7])) matched_query = matched_query + 1 else: pass print("Total Routes: %s" % matched_query) def query_db_ios(**attributes: Union[str, List[int]]) -> None: """Find databse entries with arbitrary routing attributes""" get_table_rows = [row for row in cursor.execute('SELECT count(*) FROM Routing_IOS_XE')] if get_table_rows[0][0] == 0: print("No Routes In Table") else: vrf_query = cursor.execute('SELECT * FROM Routing_IOS_XE WHERE vrf=?', (attributes["vrf"],)) matched_query = 0 for row in vrf_query: # Find single metric route if attributes["query"] == row[attributes["index"]]: print("\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}".format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7])) matched_query = matched_query + 1 else: pass # Find routes with multihop. Sperator is "," if attributes["query"] in row[attributes["index"]]: if "," in row[attributes["index"]]: if attributes["query"] in re.findall(r'^' + attributes["query"] + '(?=,)', row[attributes["index"]]) \ or \ attributes["query"] in re.findall(r'(?<=,)' + attributes["query"] + '', row[attributes["index"]]): print("\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}".format(row[0], row[1], row[2], row[3], row[4],row[5], row[6], row[7])) matched_query = matched_query + 1 if attributes["query"] in re.findall(r'^' + attributes["query"] + '(?=,)', row[attributes["index"]]) \ or \ attributes["query"] in re.findall(r'(?<=,)' + attributes["query"] + '', row[attributes["index"]]): print("\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}".format(row[0], row[1], row[2], row[3], row[4],row[5], row[6], row[7])) matched_query = matched_query + 1 else: pass print("Total Routes: %s" % matched_query) def query_db_ios_routes(**attributes: Union[str, List[int]]) -> None: """Find databse entries with arbitrary routing attributes""" get_table_rows = [row for row in cursor.execute('SELECT count(*) FROM Routing_IOS_XE')] if get_table_rows[0][0] == 0: print("No Routes In Table") else: vrf_query = cursor.execute('SELECT * FROM Routing_IOS_XE WHERE vrf=?', (attributes["vrf"],)) matched_query = 0 for row in vrf_query: # Find single metric route if attributes["query"] in row[attributes["index"]]: print("\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}".format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7])) matched_query = matched_query + 1 else: pass print("Total Routes: %s" % matched_query) def query_db_nexus_routes(**attributes: Union[str, List[int]]) -> None: """Find routes based off query, can be full route with prefix, no mask, or just octetes (10.173.)""" get_table_rows = [row for row in cursor.execute('SELECT count(*) FROM Routing_Nexus')] if get_table_rows[0][0] == 0: print("No Routes In Table") else: vdc_query = cursor.execute('SELECT * FROM Routing_Nexus WHERE vdc=?', (attributes["vdc"],)) matched_query = 0 for row in vdc_query: # Find single metric route if attributes["vrf"] == row[1] and attributes["query"] in row[attributes["index"]]: print( "\nVDC: {}\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}".format(row[0], row[1], row[2], row[3], row[4],row[5], row[6], row[7], row[8])) matched_query = matched_query + 1 else: pass print("Total Routes: %s" % matched_query) def query_db_asa_routes(**attributes: Union[str, List[int]]) -> None: """Find routes based off query, can be full route with prefix, no mask, or just octetes (10.173.)""" get_table_rows = [row for row in cursor.execute('SELECT count(*) FROM Routing_ASA')] if get_table_rows[0][0] == 0: print("No Routes In Table") else: context_query = cursor.execute('SELECT * FROM Routing_ASA WHERE context=?', ("None",)) matched_query = 0 for row in context_query: # Find single metric route if attributes["query"] in row[attributes["index"]]: print("Context: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}\n".format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7])) matched_query = matched_query + 1 print("Total Routes: %s" % matched_query) def query_db_nexus(**attributes: Union[str, List[int]]) -> None: """Find routes based off query, can be full route with prefix, no mask, or just octetes (10.173.)""" get_table_rows = [row for row in cursor.execute('SELECT count(*) FROM Routing_Nexus')] if get_table_rows[0][0] == 0: print("No Routes In Table") else: vdc_query = cursor.execute('SELECT * FROM Routing_Nexus WHERE vdc=?', (attributes["vdc"],)) matched_query = 0 for row in vdc_query: # Find single metric route if attributes["vrf"] == row[1] and attributes["query"] == row[attributes["index"]]: print( "\nVDC: {}\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}".format(row[0], row[1], row[2], row[3], row[4],row[5], row[6], row[7], row[8])) matched_query = matched_query + 1 else: pass # Find routes with multihop. Sperator is "," if attributes["query"] in row[attributes["index"]]: if "," in row[attributes["index"]]: if attributes["query"] in re.findall(r'^' + attributes["query"] + '(?=,)', row[attributes["index"]]) \ or \ attributes["query"] in re.findall(r'(?<=,)' + attributes["query"] + '', row[attributes["index"]]): print("\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}\nCDP neighbor(s): {}".format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8])) matched_query = matched_query + 1 if attributes["query"] in re.findall(r'^' + attributes["query"] + '(?=,)', row[attributes["index"]]) \ or \ attributes["query"] in re.findall(r'(?<=,)' + attributes["query"] + '',row[attributes["index"]]): print("\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}\nCDP neighbor(s): {}".format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8])) matched_query = matched_query + 1 else: pass print("Total Routes: %s" % matched_query) def get_routing_interfaces(table: str = None) -> dict: """Gets routing interfaces from table""" interfaces = {} get_interfaces = cursor.execute('SELECT interfaces FROM {}'.format(table)) for row in get_interfaces: if ", " in row[0]: split_interfaces = row[0].split(", ") for i in split_interfaces: interfaces[i[0]] = None else: interfaces[row] = None return interfaces def print_routing_interfaces(table: str = None) -> None: """Gets routing interfaces from table, prints""" interfaces = get_routing_interfaces(table=table) print("\nRouting Interfaces ---------\n") if len(interfaces) == 0: pass else: for k in interfaces.keys(): if len(k[0]) < 2 or "None" in k[0]: pass else: print("+ " + k[0]) print("\n") def get_protocols(table: str = None) -> dict: """Gets route protocol with types from the the routing table""" protocol = {} get_protocol = cursor.execute('SELECT protocol FROM {}'.format(table)) for i in get_protocol: protocol[i[0][0]] = "None" return protocol def get_vrfs(table: str) -> None: """Gets VRFs from the device. Databse default is "global""" vrf = {} get_vrfs = cursor.execute('SELECT vrf FROM {}'.format(table)) for i in get_vrfs: vrf[i] = None print("\nVRFs ---------\n") if len(vrf) == 0: print("\nPress enter to use global") else: for k in vrf.keys(): print("+ " + k[0]) print("\n") def get_vdcs(): """Gets VDCs from the device table""" vdc = {} get_vdcs = cursor.execute('SELECT vdc FROM Routing_Nexus') for i in get_vdcs: vdc[i] = None print("\nVDCs ---------\n") if len(vdc) == 0: pass else: for k in vdc.keys(): print("+ " + k[0]) print("\n") def get_admin_disatnces(table: str = None) -> None: """Gets administrative distance from the routing table""" ad = {} get_ads = cursor.execute('SELECT admin_distance FROM {}'.format(table)) for i in get_ads: ad[i] = None print("\nAdmin Distances ---------\n") if len(ad) == 0: pass else: for k in ad.keys(): print("+ " + k[0]) print("\n") def get_tags(table: str = None) -> None: """Gets tags from the the routing table""" tag = {} get_tags = cursor.execute('SELECT tag FROM {}'.format(table)) for i in get_tags: tag[i] = None print("\nRoute Tags ---------\n") if len(tag) == 0: pass else: for k in tag.keys(): print("+ " + k[0]) print("\n") def print_protocols(table: str = None) -> None: """Gets route protocol with types from the the routing table""" protocol = {} get_protocol = cursor.execute('SELECT protocol FROM {}'.format(table)) for i in get_protocol: protocol[i] = None print("\nProtocols ---------\n") if len(protocol) == 0: pass else: for k in protocol.keys(): if "None" in k[0]: pass else: print("+ " + k[0]) print("\n") def search_db_ios(vrf: str = None, **attributes: Union[str, List[int]]) -> None: """Find databse entries by artbitrary attribute using **attributes (kwargs) vrf, admin-distance, metric, prefix, next-hop, tag""" # Create variables from **attributes (**kwargs). Pass on KeyErrors which is when the keyword argument # wasn't passed prefix = None protocol = None metric = None ad = None tag = None interface = None if vrf is None or vrf == "": vrf = "global" else: pass try: prefix = attributes["prefix"] except KeyError: pass try: protocol = attributes["protocol"] except KeyError: pass try: metric = attributes["metric"] except KeyError: pass try: ad = attributes["ad"] except KeyError: pass try: tag = attributes["tag"] except KeyError: pass try: interface = attributes["interface"] except KeyError: pass # Check to see if the argument has been passed, call db_query with args and db index of the query argument try: if attributes["protocol"]: query_db_ios(vrf=vrf, query=protocol, index=2) except KeyError: pass try: if attributes["prefix"]: query_db_ios_routes(vrf=vrf, query=prefix, index=1) except KeyError: pass try: if attributes["metric"]: query_db_ios(vrf=vrf, query=metric, index=6) except KeyError: pass try: if attributes["ad"]: query_db_ios(vrf=vrf, query=ad, index=3) except KeyError: pass try: if attributes["tag"]: query_db_ios(vrf=vrf, query=tag, index=7) except KeyError: pass try: if attributes["interface"]: query_db_ios(vrf=vrf, query=interface, index=5) except KeyError: pass def search_db_nexus(vdc: str = None, vrf: str = None, **attributes: Union[str, List[int]]) -> None: """Find databse entries by artbitrary attribute using **attributes (kwargs) vrf, admin-distance, metric, prefix, next-hop, tag""" prefix = None protocol = None metric = None ad = None tag = None interface = None if vrf is None or vrf == "": vrf = "default" else: pass # Create variables from **attributes (**kwargs) try: prefix = attributes["prefix"] except KeyError: pass try: protocol = attributes["protocol"] except KeyError: pass try: metric = attributes["metric"] except KeyError: pass try: ad = attributes["ad"] except KeyError: pass try: tag = attributes["tag"] except KeyError: pass try: interface = attributes["interface"] except KeyError: pass # Check to see if the argument has been passed, call db_query with args and db index of the query argument try: if attributes["protocol"]: query_db_nexus(vdc=vdc, vrf=vrf, query=protocol, index=3) except KeyError: pass try: if attributes["prefix"]: query_db_nexus_routes(vdc=vdc, vrf=vrf, query=prefix, index=2) except KeyError: pass try: if attributes["metric"]: query_db_nexus(vdc=vdc, vrf=vrf, query=metric, index=7) except KeyError: pass try: if attributes["ad"]: query_db_nexus(vdc=vdc, vrf=vrf, query=ad, index=4) except KeyError: pass try: if attributes["tag"]: query_db_nexus(vdc=vdc, vrf=vrf, query=tag, index=8) except KeyError: pass try: if attributes["interface"]: query_db_nexus(vdc=vdc, vrf=vrf, query=interface, index=6) except KeyError: pass def search_db_asa(context: str = None, **attributes: Union[str, List[int]]) -> None: """Find databse entries by artbitrary attribute using **attributes (kwargs) vrf, admin-distance, metric, prefix, next-hop, tag""" # Create variables from **attributes (**kwargs). Pass on KeyErrors which is when the keyword argument # wasn't passed prefix = None protocol = None metric = None ad = None tag = None interface = None if context is None or "": context = "None" else: pass try: prefix = attributes["prefix"] except KeyError: pass try: protocol = attributes["protocol"] except KeyError: pass try: metric = attributes["metric"] except KeyError: pass try: ad = attributes["ad"] except KeyError: pass try: tag = attributes["tag"] except KeyError: pass try: interface = attributes["interface"] except KeyError: pass # Check to see if the argument has been passed, call db_query with args and db index of the query argument try: if attributes["protocol"]: query_db_asa(context=context, query=protocol, index=2) except KeyError: pass try: if attributes["prefix"]: query_db_asa_routes(context=context, query=prefix, index=1) except KeyError: pass try: if attributes["metric"]: query_db_asa(context=context, query=metric, index=6) except KeyError: pass try: if attributes["ad"]: query_db_asa(context=context, query=ad, index=3) except KeyError: pass try: if attributes["tag"]: query_db_asa(context=context, query=tag, index=7) except KeyError: pass try: if attributes["interface"]: query_db_asa(context=context, query=interface, index=5) except KeyError: pass def get_tables_names() -> None: """Get database table which are the routing tables""" try: for row in cursor.execute('SELECT name FROM sqlite_master WHERE type=\'table\''): route_tables.append(row[0]) except sqlite3.OperationalError: pass def view_routes_asa() -> None: """View all database entries""" get_tables_names() for table in route_tables: get_table_rows = [row for row in cursor.execute('SELECT count(*) FROM {}'.format(table))] if get_table_rows[0][0] == 0: continue else: print("\nRouting Table: " + table + "\n") print("__________________" + "\n") query = cursor.execute('SELECT * FROM {}'.format(table)) for row in query: print( "Context: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}\n" .format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7])) print("Total Routes: %s" % get_table_rows[0][0]) def view_routes_ios() -> None: """View all database entries""" get_tables_names() for table in route_tables: get_table_rows = [row for row in cursor.execute('SELECT count(*) FROM {}'.format(table))] if get_table_rows[0][0] == 0: continue else: print("\nRouting Table: " + table + "\n") print("__________________" + "\n") query = cursor.execute('SELECT * FROM {}'.format(table)) for row in query: print("VRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}\n".format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7])) print("Total Routes: %s" % get_table_rows[0][0]) def view_routes_nexus() -> None: """View all database entries""" get_tables_names() for table in route_tables: get_table_rows = [row for row in cursor.execute('SELECT count(*) FROM {}'.format(table))] if get_table_rows[0][0] == 0: continue else: print("\nRouting Table: " + table + "\n") print("__________________" + "\n") query = cursor.execute('SELECT * FROM {}'.format(table)) for row in query: print( "VDC: {}\nVRF: {}\nPrefix: {}\nProtocol: {}\nAdmin-Distance: {}\nHop(s): {}\nOut-Interface(s): {}\n" "Metric(s): {}\nTag: {}\n".format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8])) print("Total Routes: %s" % get_table_rows[0][0])
[ "re.findall", "sqlite3.connect" ]
[((73, 99), 'sqlite3.connect', 'sqlite3.connect', (['"""Routing"""'], {}), "('Routing')\n", (88, 99), False, 'import sqlite3\n'), ((1892, 1965), 're.findall', 're.findall', (["('^' + attributes['query'] + '(?=,)')", "row[attributes['index']]"], {}), "('^' + attributes['query'] + '(?=,)', row[attributes['index']])\n", (1902, 1965), False, 'import re\n'), ((2055, 2128), 're.findall', 're.findall', (["('(?<=,)' + attributes['query'] + '')", "row[attributes['index']]"], {}), "('(?<=,)' + attributes['query'] + '', row[attributes['index']])\n", (2065, 2128), False, 'import re\n'), ((2496, 2569), 're.findall', 're.findall', (["('^' + attributes['query'] + '(?=,)')", "row[attributes['index']]"], {}), "('^' + attributes['query'] + '(?=,)', row[attributes['index']])\n", (2506, 2569), False, 'import re\n'), ((2659, 2732), 're.findall', 're.findall', (["('(?<=,)' + attributes['query'] + '')", "row[attributes['index']]"], {}), "('(?<=,)' + attributes['query'] + '', row[attributes['index']])\n", (2669, 2732), False, 'import re\n'), ((4297, 4370), 're.findall', 're.findall', (["('^' + attributes['query'] + '(?=,)')", "row[attributes['index']]"], {}), "('^' + attributes['query'] + '(?=,)', row[attributes['index']])\n", (4307, 4370), False, 'import re\n'), ((4460, 4533), 're.findall', 're.findall', (["('(?<=,)' + attributes['query'] + '')", "row[attributes['index']]"], {}), "('(?<=,)' + attributes['query'] + '', row[attributes['index']])\n", (4470, 4533), False, 'import re\n'), ((4961, 5034), 're.findall', 're.findall', (["('^' + attributes['query'] + '(?=,)')", "row[attributes['index']]"], {}), "('^' + attributes['query'] + '(?=,)', row[attributes['index']])\n", (4971, 5034), False, 'import re\n'), ((5124, 5197), 're.findall', 're.findall', (["('(?<=,)' + attributes['query'] + '')", "row[attributes['index']]"], {}), "('(?<=,)' + attributes['query'] + '', row[attributes['index']])\n", (5134, 5197), False, 'import re\n'), ((9965, 10038), 're.findall', 're.findall', (["('^' + attributes['query'] + '(?=,)')", "row[attributes['index']]"], {}), "('^' + attributes['query'] + '(?=,)', row[attributes['index']])\n", (9975, 10038), False, 'import re\n'), ((10128, 10201), 're.findall', 're.findall', (["('(?<=,)' + attributes['query'] + '')", "row[attributes['index']]"], {}), "('(?<=,)' + attributes['query'] + '', row[attributes['index']])\n", (10138, 10201), False, 'import re\n'), ((10766, 10839), 're.findall', 're.findall', (["('^' + attributes['query'] + '(?=,)')", "row[attributes['index']]"], {}), "('^' + attributes['query'] + '(?=,)', row[attributes['index']])\n", (10776, 10839), False, 'import re\n'), ((10929, 11002), 're.findall', 're.findall', (["('(?<=,)' + attributes['query'] + '')", "row[attributes['index']]"], {}), "('(?<=,)' + attributes['query'] + '', row[attributes['index']])\n", (10939, 11002), False, 'import re\n')]
# -*- coding: utf-8 -*- import pytest from cards.api import Card def assert_identical(c1: Card, c2: Card): __tracebackhide__ = True assert c1 == c2 if c1.id != c2.id: pytest.fail(f"id's don't math. {c1.id} != {c2.id}") def test_identical(): c1 = Card("foo", id=123) c2 = Card("foo", id=123) assert_identical(c1, c2) def test_identical_fail(): c1 = Card("foo", id=123) c2 = Card("foo", id=456) assert_identical(c1, c2)
[ "pytest.fail", "cards.api.Card" ]
[((275, 294), 'cards.api.Card', 'Card', (['"""foo"""'], {'id': '(123)'}), "('foo', id=123)\n", (279, 294), False, 'from cards.api import Card\n'), ((304, 323), 'cards.api.Card', 'Card', (['"""foo"""'], {'id': '(123)'}), "('foo', id=123)\n", (308, 323), False, 'from cards.api import Card\n'), ((391, 410), 'cards.api.Card', 'Card', (['"""foo"""'], {'id': '(123)'}), "('foo', id=123)\n", (395, 410), False, 'from cards.api import Card\n'), ((420, 439), 'cards.api.Card', 'Card', (['"""foo"""'], {'id': '(456)'}), "('foo', id=456)\n", (424, 439), False, 'from cards.api import Card\n'), ((190, 241), 'pytest.fail', 'pytest.fail', (['f"""id\'s don\'t math. {c1.id} != {c2.id}"""'], {}), '(f"id\'s don\'t math. {c1.id} != {c2.id}")\n', (201, 241), False, 'import pytest\n')]
"""flint format command :copyright: Copyright 2021 <NAME>, see AUTHORS for details. :license: Apache License, Version 2.0, see LICENSE for details. """ import flint def format_statements(srcdirs, includes=None, excludes=None): proj = flint.parse(*srcdirs, includes=includes, excludes=excludes) for src in proj.sources: for stmt in src.statements: print(stmt.reformat())
[ "flint.parse" ]
[((241, 300), 'flint.parse', 'flint.parse', (['*srcdirs'], {'includes': 'includes', 'excludes': 'excludes'}), '(*srcdirs, includes=includes, excludes=excludes)\n', (252, 300), False, 'import flint\n')]
import yaml from googletrans import Translator class ScopusScienceTopicSearch(object): """Mapping russian courses names to scopus classes""" def __init__(self, topics_map_path: str = 'sources/scopus_science_map.yml'): """ Class constructor Args: topics_map_path: path to scopus_science_map """ with open(topics_map_path, 'r') as f: self.topics_map = yaml.safe_load(f) self.preprocess_topics_map = { main_topic: [ subtopic.lower() for subtopic in self.topics_map[main_topic] ] for main_topic in self.topics_map } self.translator = Translator() def translate(self, russian_string: str) -> str: """ Translate russian sentence to english Args: russian_string: string with sentence in russian Returns: string with sentence in english """ return self.translator.translate(text=russian_string, src='ru').text def __call__(self, input_topic: str, ru: bool = False) -> list: """ Call method Args: input_topic: input topic description in english ru: topic in russian Returns: List of strings with probability science themes from scopus list with follow format: `main topic,subtopic` """ if ru: tags = self.translate(input_topic).lower().split(' ') else: tags = input_topic.lower().split(' ') result_topics = [] for main_topic in self.topics_map.keys(): for k, subtopic in enumerate(self.preprocess_topics_map[main_topic]): # found_in_subtopics = False added_value = [0, ''] for tag in tags: if tag in subtopic: # found_in_subtopics = True added_value[0] += 1 added_value[1] = main_topic + ',' + self.topics_map[main_topic][k] if added_value[0] > 0: result_topics.append(added_value) # if not found_in_subtopics: # if tag in str(main_topic).lower(): # for subtopic in self.topics_map[main_topic]: # result_topics.append( # main_topic + ',' + subtopic # ) result_topics.sort(key=lambda x: x[0], reverse=True) return [value[1] for value in result_topics]
[ "yaml.safe_load", "googletrans.Translator" ]
[((698, 710), 'googletrans.Translator', 'Translator', ([], {}), '()\n', (708, 710), False, 'from googletrans import Translator\n'), ((424, 441), 'yaml.safe_load', 'yaml.safe_load', (['f'], {}), '(f)\n', (438, 441), False, 'import yaml\n')]
# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.11.2) # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore qt_resource_data = b"\ \x00\x00\x1d\x16\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\xc0\x00\x00\x00\xc0\x08\x03\x00\x00\x00\x65\x02\x9c\x35\ \x00\x00\x02\xf7\x50\x4c\x54\x45\x47\x70\x4c\xf5\xf5\xf5\xbc\xd3\ \xeb\x3b\x93\xe1\x59\xa7\xec\x2a\x8b\xe1\x30\x8d\xe0\x41\x97\xe2\ \x44\x9e\xe8\x47\x9d\xe8\x27\x89\xe0\x24\x89\xe2\x29\x8e\xe6\x27\ \x8d\xe6\x24\x8b\xe6\x22\x8a\xe6\x25\x8c\xe6\x2e\x89\xd9\x2b\x8d\ \xe3\x2e\x84\xd0\x2b\x8f\xe7\x01\x05\x09\x26\x8b\xe2\x22\x8e\xed\ \xe4\x94\x0e\xe0\xad\x42\x93\x94\x74\x4d\x8f\xbe\x18\x8b\xf3\x06\ \x8c\xff\xf5\x9e\x0f\xff\x9b\x0f\xfc\x96\x15\xff\x95\x00\xd1\x97\ \x34\x29\x8d\xe4\xff\x96\x0f\xff\x95\x0d\xff\x96\x10\x81\x92\x86\ \x42\x8d\xc9\x12\x8a\xf8\xf8\xae\x15\xc1\x98\x44\x31\x8c\xda\xff\ \xa0\x0f\xf5\x93\x10\xa3\x92\x60\x5c\x90\xb8\xee\xae\x15\xfc\xa1\ \x14\xff\x94\x0b\x21\x8b\xe8\xfa\xab\x10\x67\x90\xa0\x21\x89\xe5\ \x25\x8b\xe4\xff\xa2\x0a\xe6\x9a\x1d\x04\x79\xe1\x3b\x95\xe5\xd4\ \xe4\xf3\xf1\xf1\xef\xf1\xf6\xf9\xff\xff\xf7\xec\xec\xed\xf0\xef\ \xef\xee\xee\xee\xed\xed\xed\xe1\xa6\x12\xef\xef\xef\x00\x00\x00\ \xff\x93\x09\xff\xa5\x0e\xff\xa1\x0c\xff\x9a\x0d\xfe\x92\x09\xff\ \xa6\x10\xff\xa8\x0d\x13\x80\xe2\xfc\xf4\xed\xff\xa4\x0c\xe4\xe1\ \xde\xff\xf5\xe8\xf0\xf1\xf2\xff\xf9\xef\xa6\xb9\xc9\xff\xa6\x0f\ \xd8\xda\xda\xc4\xcc\xd4\x29\x73\xb5\x21\x6d\xb0\x0b\x60\xaa\xff\ \x91\x0a\x23\x88\xe2\x2c\x63\x92\x23\x85\xdc\xb7\x7c\x08\x22\x86\ \xde\x09\x75\xd6\x28\x75\xb9\x2e\x86\xd5\x01\x01\x03\xff\xa5\x0c\ \x20\x89\xe5\x21\x86\xdf\x24\x85\xda\x28\x77\xbe\x21\x87\xe1\x24\ \x84\xd8\x28\x82\xd0\x28\x79\xc1\x28\x7b\xc4\x40\x78\xaa\x5b\xa5\ \xe6\xa4\xcb\xed\xfa\xf7\xf4\x23\x84\xda\x25\x83\xd6\x25\x7b\xc6\ \x27\x7d\xc7\x15\x79\xd3\x24\x83\xd7\x26\x83\xd5\x01\x6d\xcf\x27\ \x7e\xca\x26\x84\xd7\x42\x80\xb5\x04\x7b\xf0\xf4\xf2\xee\x26\x82\ \xd4\x12\x67\xb1\x27\x7f\xcc\x27\x80\xce\xfc\x8b\x00\x23\x82\xd4\ \x25\x80\xd0\xfc\x82\x00\xf9\xd8\xac\x26\x82\xd2\x00\x00\x00\xf1\ \xc2\x84\xf0\xfd\xff\xfb\xa1\x22\x6f\x9b\xc2\x27\x82\xd1\xff\xa4\ \x0a\x96\xba\xde\x00\x00\x00\x24\x84\xd9\xff\x9f\x07\xf1\xe9\xe1\ \x04\x04\x04\xff\xa3\x09\x00\x00\x00\xf6\xb0\x48\x9e\xb6\xcc\xff\ \xad\x0b\x03\x03\x03\xfd\xb8\x10\xff\xb7\x0e\xff\xbc\x0b\xff\xb6\ \x0b\xff\xb4\x09\xfa\xef\xe5\xfe\xa2\x07\xff\xa2\x04\xfe\x9a\x00\ \x00\x00\x00\xff\x9e\x02\xdf\xef\xff\xff\xb7\x0d\xf1\xa9\x35\xfb\ \xa1\x08\x01\x02\x02\xd7\xcd\xbb\xf6\x9e\x09\xf1\x9c\x0d\xff\xb6\ \x0a\xff\xb7\x0b\xa7\x82\x34\x3a\x63\x89\xfb\xbf\x15\xff\xa3\x07\ \xc0\x88\x27\x01\x01\x01\x03\x02\x00\xff\xb6\x09\xff\xb1\x05\x02\ \x03\x03\x9a\x74\x14\xff\xa1\x04\xff\xa1\x01\xf5\xbe\x21\xff\xa4\ \x00\xff\xb8\x05\xff\xa2\x06\x2b\x80\xca\xff\xa6\x01\x55\x89\xb8\ \xff\xb5\x07\xff\xa1\x03\xff\xab\x04\xb2\x9a\x52\x00\x00\x00\x01\ \x86\xff\x09\x08\x07\x09\x09\x09\xff\xc4\x11\xff\xc3\x11\xff\xc2\ \x0d\x1c\x89\xeb\xff\xc6\x14\xff\xc3\x10\xff\xc3\x0e\x55\x60\x63\ \xff\xb4\x05\x29\x29\x29\xff\xb5\x05\xff\xc3\x0e\xa2\x83\x2a\xfe\ \xbe\x0e\x5a\x90\xc0\x5f\x76\x8a\xff\xc1\x08\xff\xc2\x0b\xff\xc5\ \x0c\xff\xb3\x03\xf7\xc9\x3d\xff\xcb\x2c\xff\xc8\x20\xff\xcd\x32\ \xfc\xcb\x33\xff\xcc\x2e\xcf\xab\x3b\x36\x36\x34\xff\xb4\x04\xff\ \xcb\x2e\x27\x27\x27\x0c\x0c\x0c\x5a\x9a\xd3\xcc\xa3\x3b\x71\x68\ \x52\x13\x13\x13\xff\xb4\x02\x4f\x4c\x47\xe0\xbe\x57\xc6\xab\x70\ \xcd\xa5\x51\xb8\x9a\x54\x94\x86\x61\xf0\xac\x22\x9b\x82\x49\xf2\ \xfc\xed\x13\x00\x00\x00\xfd\x74\x52\x4e\x53\x00\x1a\x0d\x27\x6e\ \x57\xa4\xc0\xd8\xff\xba\xf2\xff\xff\xff\xff\xff\x92\xd6\x7d\xc7\ \x02\xe6\xff\x1c\xb5\xff\xff\xff\xff\x3f\xb7\xfb\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xab\xff\xff\x90\xff\xff\xff\x66\xcf\xff\xff\ \x79\xff\xff\xff\xe7\xff\xff\xff\xfd\x46\xff\xff\xff\x8b\xff\xc9\ \x5b\xff\x01\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x8b\xff\xff\xff\xff\xff\xff\xff\xff\x39\xff\x08\xff\xff\xff\ \xcc\x04\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x70\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xdc\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x07\xff\xff\xfe\xff\xff\xff\xff\x0a\ \xff\xff\xff\x11\xff\x15\xff\xff\xff\x1d\xce\xff\xff\xff\xff\xff\ \xff\xff\xff\x19\xff\xff\xff\xff\xff\x24\xff\xff\xff\xf3\xff\xff\ \x52\xbd\xff\xff\x29\x0d\xff\xff\x2e\x32\xff\xff\x97\xff\xff\xff\ \xff\xff\x95\xff\xff\xff\xff\x20\xff\x3e\x4d\xff\xff\xff\xff\xff\ \xff\xef\x6a\xff\x59\xff\xff\x49\xe2\xa9\x8e\xff\xff\xff\xff\xbf\ \xff\xff\xff\xd3\xff\x6b\x70\xff\xea\x7d\x5d\xba\x95\x8e\x6c\xff\ \x87\xaa\xc3\xae\xa1\xa0\xc2\x8f\x43\xc5\x98\xe6\x00\x00\x18\xd1\ \x49\x44\x41\x54\x78\x01\xec\xcf\x45\x02\xc5\x30\x08\x84\x61\x22\ \x43\x2a\x90\x7a\x7b\xff\x9b\x3e\x77\x77\xfd\x56\xb0\x9b\x9f\x3e\ \x88\x31\x76\x83\x31\xf4\xad\xfe\xfe\xfe\xfe\xdc\x98\x5f\x72\x63\ \xf4\x19\xac\x05\x38\x84\x24\xdd\x91\x84\xc0\x80\xb5\xf4\xbe\x1c\ \x38\xcb\x73\x11\x8d\x1b\x8a\xb9\x18\x4b\xd5\x3c\xcf\x18\xee\x2d\ \xc7\x57\xb5\xec\xa7\xeb\x66\x7f\x5d\xbd\x57\x04\x9a\x56\x0e\xd2\ \x7d\xca\xb2\x6c\x1b\x74\xf4\x0e\xc0\xbd\x8c\x5d\x1a\x30\xa6\x3d\ \x83\x5e\xcc\x35\xb5\x9c\x70\x68\xff\xd8\xf8\xaa\x1b\x47\xaf\x83\ \x76\x10\xb9\x21\x60\x26\x03\xbd\xc6\x88\x38\xb3\x5c\x6c\x23\x06\ \xc2\x60\x99\x1b\x46\xdb\xb2\x73\x18\x66\x66\x66\x66\x66\x86\xf7\ \xff\xdd\x4f\x17\x7b\x0d\xaa\x5a\x55\x07\x1d\xbf\xc0\xcc\xed\xee\ \x05\x5c\x53\x1b\x8b\x27\x18\xab\x56\xf6\x17\x27\x80\x0f\xe7\xd3\ \xff\x98\x42\x32\x55\x67\x18\x86\xe9\x35\xfc\xb0\xf4\x02\x08\x0b\ \x53\x88\x5a\xdf\x76\x6c\xd7\x35\x80\x59\xdf\xc0\x58\xa3\xbf\x00\ \x5c\x43\xa4\x09\x35\x4d\x76\x1a\xd7\x36\x40\x73\x7d\x0b\x56\x49\ \xf3\x04\x28\x21\xb2\x45\xaa\x69\xad\x73\x6d\xc2\xb1\x1d\x24\xb4\ \xb5\x77\x24\x30\x06\x4b\x67\x00\x84\x55\x1a\x49\x42\x27\xf4\xb3\ \x01\x0e\x78\x6d\x30\xbd\x31\x58\xda\x01\xa0\xe8\x7b\xf8\x7b\x94\ \xec\x72\x41\xbe\x3f\xb0\xed\x6e\x3e\x86\xb8\x90\xa0\xee\x0f\x7a\ \x8a\x8a\xca\x42\x1e\x42\xaf\xeb\x0a\x01\x04\xbf\x86\xbe\x04\x4b\ \x58\x7a\x03\x00\x45\x45\xfd\x45\xe5\x61\x6e\x7f\x8a\xfc\x85\x80\ \x4c\x82\xd9\x57\xcd\x1a\x35\x37\x88\x33\x30\xf0\xed\x5d\x68\xeb\ \x33\x28\xf3\x27\xf8\x26\x0d\xd5\xff\x40\x82\xc6\x00\x5e\xfd\x87\ \x47\x46\xc7\x42\x5c\x1f\x79\x00\x81\x84\x58\x0b\x6b\xb4\x34\x02\ \x06\xb8\xff\xf8\xc4\xe4\x54\x18\xfe\x29\x35\x7f\xc0\xef\x39\xf6\ \x03\xb7\xa0\x18\x20\xf8\x4f\x4f\xcf\x84\xf4\xf6\x51\xf3\xef\x76\ \xbc\x45\xaa\x46\x82\xa5\x1e\x30\x90\xe3\x8f\x82\x80\xd7\x68\xd6\ \x75\x54\x03\xba\x41\x3a\x21\xc1\xaa\x2d\xd5\x80\xa2\x81\x22\xf2\ \x07\x73\xd3\x41\x16\xcc\xb7\xba\x40\x79\x00\x94\x60\xf6\x31\xf6\ \xd3\x52\x1c\x00\x3d\xff\x0c\x01\x1e\x82\xe8\x2f\x0f\xe8\x26\x9c\ \x05\xfc\x5c\x88\xe3\x9a\x2d\x05\x7f\x40\xfe\x54\x30\x1f\xf8\xf3\ \x57\x1f\x00\x25\xb4\x5b\xf9\x7b\x24\x91\x17\xfc\xa9\x20\x10\x7f\ \x47\xf1\xf9\x53\x00\x81\x17\x52\x3d\x63\x25\xd9\x04\xc5\xfd\x09\ \xac\x00\xfe\x8b\x4b\x4b\xcb\xcb\x88\x50\x0a\xe8\x2e\xc4\x59\x31\ \x4c\xbe\x47\x7f\x19\xc0\x4f\xf2\x0f\xb6\x00\xfe\xab\x6b\x60\x75\ \x91\x47\xc0\x5a\xdd\x9f\xc0\x1e\xc5\x7a\x32\x7b\x24\xbb\xe0\xf5\ \xaf\x1b\x82\x3f\x98\x43\x81\x5f\xff\x34\xe8\x58\xdc\x5c\x5a\xe6\ \xe6\xea\x0b\x44\x05\x43\x7d\x8c\x59\xf2\x05\x2a\x41\xc0\xd6\xf6\ \x8e\xe8\xbf\xb3\xbb\x37\x1f\x90\x3f\xd8\xc7\x28\x30\x09\x44\xa8\ \xf9\x53\x40\x37\x1d\xb3\x34\x60\x60\xb8\xe5\x40\x2c\xd8\xd9\x3d\ \x3c\x2a\xf7\x53\xd0\x9a\xab\xef\x81\x41\xec\x23\x02\xaa\xff\x10\ \xb0\xb0\xc0\x8f\xb9\x0f\x97\x20\xb9\x80\x01\x20\x16\xcc\xc1\xff\ \xf8\xc4\x4f\x41\x32\xcf\x9f\xc0\x24\x36\xd1\x70\xda\xad\xec\x8f\ \x02\x24\xb4\x57\xb3\x92\xbc\x04\x68\x7b\x2f\x50\xce\xd9\x59\x7e\ \x01\xf9\x1f\x1d\x9d\xeb\xee\x8f\xcc\x7f\x71\x71\x71\xed\x77\x0d\ \xdd\xf2\x00\x80\x82\xa1\x0e\x96\xb0\xb2\xf2\x19\x77\x70\x06\x2e\ \xf2\x0a\xc8\x1f\xbc\xd7\x0b\xb8\x1c\x94\xfa\x73\xb0\x4b\x9b\x38\ \x87\x53\x95\x01\xd0\x10\x62\x8d\xcc\x3b\x84\xac\x3d\x05\x5c\x5d\ \x5d\x5c\xf3\x02\xc1\xff\xe6\xe6\xf6\x4e\x6b\x00\x4d\x72\x7f\x6a\ \xb8\xa7\x31\xfc\x79\x00\x34\x04\xb3\x05\xb7\xec\x9d\x2d\x78\x58\ \x1f\xc6\xe7\xf1\x0c\x70\xff\x8b\x27\x2a\xc8\xf3\x7f\x7e\xfe\x34\ \xaf\xe1\xdf\x2b\xf7\x27\xee\xef\xf9\x2a\xd9\x48\x50\xf1\xe7\x18\ \x2b\xfc\x96\x21\x6f\x3d\x0c\x0f\xbf\x8c\xe0\x9b\x9b\x91\xc7\xe1\ \xe1\xc7\x5f\xa4\x98\x85\x57\x5b\x67\x1f\xc7\xfb\xca\x5c\x32\xcb\ \xdc\xdd\x47\xcf\xd8\xc2\x84\xd3\x50\x21\xab\xe1\x3b\x2f\x9a\xe6\ \x00\x83\xb3\x34\x09\x15\x92\x91\x8b\x27\x50\x68\x43\xbd\x49\x5d\ \x42\xea\xce\xd2\x69\xbd\x0d\x4c\xeb\xf2\xf7\xbc\xdf\xe7\x3e\xc9\ \x6f\xf7\xa6\xcf\xe5\x3e\x1c\xbe\x48\x72\xfc\xf3\xf9\xc9\x73\x05\ \xfc\xf5\x2e\xb7\xdb\xdb\xe0\xe3\x06\x7a\xfe\x96\x45\x8b\x27\xb5\ \xc0\xc0\x36\x14\x40\xd4\x36\x7c\x2c\x29\xc0\x0e\x54\x8c\xd1\x6b\ \x79\x5f\x14\x2f\x59\x9a\x5f\x61\x6f\x6d\x6d\xcd\x5f\xba\xa4\xb8\ \xc1\x85\xb8\xfd\xde\x80\x6a\x00\xfe\x72\xce\xdf\xc8\xf9\xbf\x6b\ \xfb\xcf\xc4\x17\x40\x92\x1f\x41\x1b\xe6\xcc\xfd\xb8\x4e\x42\x80\ \xc6\xa8\xf8\x8b\x25\xf9\x76\xbb\xfd\xeb\xd6\x92\xd6\x56\x7c\xe6\ \x2f\x69\x08\xba\xc1\xaf\x04\xda\x3b\x98\x01\xea\xaf\xe7\xef\xec\ \xb2\x4e\x8c\xdf\xfa\x92\x39\x3e\xf1\x93\x82\x39\x3f\x52\xf7\xd5\ \x2b\x1f\x76\xf7\x2c\xb5\xdb\x7b\x67\x64\xd2\x6b\xb7\x2f\x0d\x36\ \xb8\xbd\x8a\x12\x08\x84\x98\x01\xae\x5f\x61\x86\xcf\xf9\xdb\xda\ \x3a\xfb\xfa\x1f\xb5\x4e\x6c\x01\xe4\xea\x4f\x29\x2d\x6d\x2e\x2a\ \x85\x82\x39\xff\x3c\x64\xd9\xb2\x4a\x7b\x49\xc1\x8c\xc2\x74\x66\ \x14\x14\xf4\xda\xf3\x95\x06\x2f\xf8\x03\x03\x03\x1d\xbe\xb2\xca\ \xea\x30\xe0\x81\xcf\xeb\x0f\xfe\xc1\xc1\x05\x13\xa9\xff\xd3\x84\ \x2f\xc7\x0f\x01\xb1\x82\x98\x7f\xf9\x0a\x7b\x61\x06\x1f\x41\x0f\ \x0a\x66\xd8\xf3\x83\xc1\x80\x2a\x10\x69\x78\xbb\x3b\x9c\xa6\x6f\ \x21\xfe\x48\xd7\xd0\xc4\x07\x48\x66\x7e\x88\x9f\x14\x4c\x1b\xb0\ \x7c\xe5\x2a\xec\xa9\x4e\x80\x19\x2c\xed\x18\xe0\x09\x05\x83\x0b\ \x19\xfe\x42\xe0\x13\x7f\x28\x32\x81\x21\x9a\x25\x2c\xbf\xb9\x00\ \x14\xb0\x0b\x75\xff\x28\x88\xf9\x57\xaf\x9a\x96\xc5\x8f\x60\x8a\ \xd6\x74\x04\xd2\x0a\xca\x60\x0b\xe8\x79\xf9\x39\x3f\xd2\x2e\x7b\ \x12\x39\x70\x02\x99\xf1\x37\x8b\xf9\x99\x42\xf3\x9c\x37\xb8\x82\ \x61\x03\x56\xac\x2a\x28\xcc\x16\x80\x81\xbd\x32\x3c\xa0\x1a\x28\ \xca\x80\x7f\x80\x55\x5f\x5d\x5f\xf0\xaf\x8d\x20\xa1\x76\xd9\x0b\ \xb2\xf5\x03\xc2\x9f\x38\xff\xba\x75\xeb\xa0\x80\x39\x12\xf0\x23\ \xe9\x06\xe8\xf9\xe9\x2c\xca\x09\x07\x54\x7e\xc5\xeb\x75\x29\x0c\ \x9f\x8d\x4f\xff\x20\xe0\x51\xff\x76\x45\xb9\x4b\xae\x01\x4f\x13\ \xbf\xe4\xfc\xe8\x05\x60\x50\xb4\x0e\xab\x60\x24\x80\x0d\x98\x21\ \x12\x40\x0b\xd6\xd7\xb6\x0c\x28\x10\xf0\xfa\xfd\xfe\x7a\x2f\xf0\ \xc1\xcf\xea\x1f\x0a\x45\x42\x81\x80\xa2\x74\x6d\x90\x6d\x80\x3c\ \xbe\x80\x1f\xe1\xab\x60\x70\x86\xae\x20\x01\xe2\xe7\xb1\x57\xd6\ \xd4\xb4\x30\xfe\xa8\x0b\xf1\xf8\x3b\x3b\xfb\x33\xfc\xa8\x3f\xe2\ \xbd\xcb\x2a\xd3\x80\xd9\xff\x9b\x2c\xbf\x3a\x47\x31\x81\x01\xe3\ \x9f\xb7\x71\x55\xa1\x58\xa0\xb5\xa0\x3b\x5c\xdd\xa2\xf8\xa3\x7e\ \x97\x0b\xf7\x46\xce\xfa\xfe\xbe\x41\xc6\x8f\x70\xfe\x68\xd7\x26\ \x73\x81\xa6\x0f\xc4\xfc\xd2\x02\xd4\x84\xcd\x68\x82\x40\xe0\xe5\ \x8d\xd3\x8c\x04\x0a\xd9\xf9\xdf\xe2\x75\xf9\x19\xbf\xc7\x63\xf3\ \x0c\xf6\x47\x38\x7f\x40\xe5\x8f\xba\x1f\x6f\x32\x6f\xc0\xe4\xf1\ \x49\x21\xf6\x55\x9d\x9e\x9f\x04\x04\xf8\xbc\x03\xb8\x80\x2d\xf2\ \xd7\x43\xc0\x89\x58\x9c\x11\xb5\x01\xc0\x07\x3f\x04\xa2\x5d\x5b\ \xe4\x1b\x60\xcc\x2f\x27\x80\x60\x99\xd1\x84\xec\xab\x40\xc5\xf8\ \x02\x0b\x1b\xdb\x5c\x1e\x55\xc0\x66\xcb\x75\x86\xd6\xa2\xfc\xc4\ \xef\x76\xdf\xe5\x30\xbd\x89\x30\xc2\x97\xe7\x17\x6e\x02\x09\x6c\ \x5d\x55\x61\x24\x50\x56\x5d\xa3\xde\x41\x74\xd6\x3b\x3d\x8c\x5f\ \x35\x88\x70\xfe\xa8\xca\xef\x36\xdb\x82\xa6\x77\xf5\xf8\xf2\xf3\ \x23\xe2\x47\x8a\x36\xbf\x41\x06\xc0\xa7\x53\x54\xc0\x5f\x68\xaf\ \xaa\x61\x02\x2d\x8b\x5a\x3a\x9d\x36\x26\x60\xb1\xd8\x72\x6d\x81\ \x76\xaa\x3f\xe2\xba\x6b\x8a\x43\x76\x03\x66\x4f\xa6\xfe\x94\xe6\ \xcc\x18\xcd\xe3\xfc\x1f\xf6\x8a\x27\x08\xb1\x6f\xc3\x33\x00\x04\ \x70\x09\xee\x73\x5a\x18\x3f\xfe\x72\x6d\x4a\xbb\x86\xdf\x75\xff\ \x26\x89\x0d\x90\xc2\x97\x69\x00\xb2\x79\x5d\x33\xdb\x65\xce\xff\ \xe1\xb2\xe5\xba\xab\x40\xd6\x5b\xac\x35\x19\x81\xb6\x45\x3e\x1b\ \xe8\x6d\x16\x24\xd7\xa2\xb4\x47\x89\xdf\xe5\x5e\x30\xee\x5d\xd0\ \x1c\xa0\xcc\x16\x47\x1e\x5f\x2f\xb0\x79\x73\xf3\xe6\x8f\xeb\xd2\ \xf5\x67\x37\xa2\x42\x7c\xbe\x02\xe1\xea\x46\x2e\xd0\xd9\x16\x41\ \xed\x2d\x2c\xf8\x8c\x2a\x19\x7e\xe4\xd1\x4d\xe3\x08\x4c\xdd\xbe\ \x7d\x7b\x11\x7b\xf7\x56\x5a\x3a\x67\x4e\xa9\x31\x3e\x22\xcd\x8f\ \xac\xc3\x18\xb1\xc7\x80\xe5\xf3\x56\xe0\x46\xda\x40\xa0\x90\x4d\ \x10\x09\xf4\x75\x46\x72\x19\x3d\xef\x41\x54\x21\x7e\xf7\x03\x3b\ \x8c\xb7\xa0\x69\xe7\xae\x5d\xbb\xe2\xf8\x1b\x4e\x30\x13\x78\xa0\ \x23\xa6\xe3\x83\x8c\xcf\xcf\x0c\x62\x78\x0c\x5b\xbd\x72\x37\xe7\ \x17\x0a\xb4\xee\xee\x66\x02\xf4\x0c\xd9\xd7\x0e\xf2\x8c\x81\x3b\ \xca\xf9\xd9\x25\xfa\xae\x26\x43\xfe\xa7\x77\x51\x54\x8f\x44\x62\ \x3b\x7b\x9d\x0b\x0b\x49\x7e\xb1\x00\xb2\x67\xef\xbe\x95\x1b\x5b\ \x57\xad\x42\xa1\xc7\x69\x40\x4d\xfa\x25\x8a\x7a\x13\xdd\xdf\xd9\ \x9e\x4b\x06\x36\xb7\xd7\x9d\xe6\xaf\xff\x66\xbf\xa1\xc0\x27\x84\ \xaf\xd1\x18\x86\x45\x33\x6b\x85\xcc\xfc\x8b\xf9\x21\xb0\xe7\xc0\ \xd6\x83\xab\x7a\x81\x6f\x20\x50\xf8\x35\x36\x80\x4f\x50\x46\xc0\ \xd7\xa7\x35\x70\xb9\x55\x7e\xc4\xb5\xc0\x60\x86\x1c\x98\x20\x61\ \xe2\x87\x98\x04\x39\x4c\xa8\xfe\x24\xb0\xe7\x95\xc3\xf9\x07\x7b\ \x0d\xeb\xdf\xba\x3b\x07\x03\xc4\x27\x48\xbd\x8d\x86\xc0\xda\xfe\ \x80\xd6\x80\xf3\x23\x8f\x0f\x19\x5d\x85\x45\xf4\x87\xd4\xc4\xe3\ \x87\x98\x03\xa6\x49\x9a\x1f\xd1\xf2\x1f\x81\x41\xe5\xc1\x8a\x0a\ \xf1\x09\xda\x5a\xbe\x06\x03\xa4\x6f\x80\x6f\x6d\xc4\x97\x31\x40\ \x6c\xe0\xe7\xb9\xff\xa8\x41\x03\x3e\x11\xe1\x53\x58\x23\x30\x4c\ \x70\x90\xc7\x27\x81\xcd\x7b\x8e\x1c\x39\xf2\xca\xea\x63\x07\x2b\ \x7a\xb9\x82\xae\xfc\x15\x25\xbb\x19\xbf\x76\x85\xc1\xef\xc3\x73\ \x64\xbf\xd6\xa0\x5e\x35\x70\xd6\x3f\x20\x9e\x21\xc7\xd0\xbb\x46\ \xf8\x14\x38\xf0\x3e\x10\xbf\xa4\xc0\x1e\x26\x70\xfc\x95\x91\x95\ \xf9\xd3\x7a\x59\x17\x74\xf8\x85\xe5\x65\x39\xe0\xa7\x06\x64\x26\ \x28\xa2\x33\x40\xea\x59\x3c\x4e\xa3\x19\x7a\xfa\x7b\x23\x7c\x4a\ \x32\x99\x8c\x27\x13\xdb\xa9\x0d\x72\x0d\x20\x81\xe3\xc7\x97\xbd\ \xb7\x3e\xbf\xbc\xb7\x90\x26\x89\x7d\x2b\xd9\x5d\xd5\x9d\xe1\x47\ \x03\x32\x02\x8c\x9f\x19\x28\x9a\x1e\x70\x7e\xe7\xdd\xa2\x4b\x81\ \xa3\xe9\x45\x63\x7a\xe2\x67\x81\xc3\xf6\x22\x28\x48\xd6\x9f\x04\ \xb8\xc1\x89\xb7\xd7\x57\xee\x2e\x2f\xe9\xe5\x83\xd4\x5b\x52\xbe\ \xb1\x2a\xa7\x56\xf3\x1e\x3a\xb3\x01\x6b\x99\x80\xa0\x07\x1e\xcc\ \xd0\x93\x47\x45\x02\x43\x9f\x48\xe1\x23\xbc\x0d\x98\x24\x19\x7e\ \xbd\xc0\xc8\xf1\x7d\x27\xc2\x83\x6b\xb6\x55\x95\x6d\x54\x53\x56\ \xb5\x2d\xa7\x86\x97\x3f\xc3\xdf\xc6\xeb\x4f\x02\x91\x41\x6d\x0f\ \x3c\x68\x81\xd3\xf9\x83\x40\xc0\x3a\xf4\x23\xe1\x9b\xf1\x33\x85\ \xf8\xf0\xf6\x75\xc6\x0a\x9b\xf5\xf9\x89\x3a\x30\x32\xb2\xef\xe7\ \x70\x47\xb8\xba\x3b\x67\x0d\x92\xd3\x5d\x53\x0b\x7c\xaa\x3f\x04\ \xf8\x06\x6b\xf8\x61\xe0\xb5\x90\x81\x85\x19\x78\x1e\xdf\x24\x98\ \x20\xbe\x02\x20\x35\xc1\xa7\x40\xa1\x79\xce\x66\x29\x7e\x08\x64\ \x5a\x80\x1e\xfc\xbc\xb0\xa1\x26\xcc\x52\x1b\x0e\x67\xe8\x81\xaf\ \x2e\x30\x16\x80\x2d\x30\x4d\x10\x12\x0a\x69\x0d\xf2\x9c\x1e\x8f\ \xe7\xfe\xfd\x68\x81\x70\x05\xe4\xf9\x87\x87\x87\xf1\x0f\x5d\x10\ \x29\x64\xf3\x93\x00\x33\x18\x61\x06\x40\xae\x6e\xac\xe6\xf4\xf4\ \x1e\x9a\xd5\xff\x8e\x06\xb0\x67\xfa\x88\xc6\xc0\xe6\xfc\xd6\xf3\ \xd8\x2f\x77\x0a\x0c\x4d\x05\xa7\x3c\x3e\x0f\xeb\x02\x14\xcc\xea\ \x9f\x31\x40\x54\x83\x03\x3f\x2f\x0c\x36\x6a\xc3\xaa\xaf\x9b\x7f\ \x3d\x7f\x3b\x33\xc8\xe4\x61\x9b\xc7\xf9\xc0\x9d\x4b\x60\xdd\xf0\ \xae\x24\x3d\xf1\x93\x42\xf6\x2a\x08\xf8\x21\x40\x06\xd8\xe4\x03\ \x3f\x7f\x17\x04\x75\x23\x7e\x10\xc2\xcf\x5c\x00\x10\x3d\x3f\x33\ \xa0\x4d\xb6\xe1\x71\x73\x71\x53\x53\xf6\x04\xfd\xba\x73\x82\xe5\ \x27\x85\x64\xa2\x88\x9a\x20\x6e\x00\x37\x40\xc0\x9f\x31\x08\x06\ \x81\x9d\x86\xcf\xbc\xc8\x6d\xe3\xf5\x67\xc9\xe2\x87\x81\x9b\x04\ \x90\x47\x7f\x75\xdc\x21\xb0\x4b\xbe\xfc\xfa\x9c\x4c\x26\x4f\xd1\ \x1c\x89\xf9\x49\x80\x37\x01\x39\x70\x22\x18\x04\x37\x7e\x18\x3d\ \xf0\x59\xfd\x39\x3f\x2d\xb0\x96\x3f\x10\x88\xb8\x72\x89\xdf\x76\ \xf7\x69\xfd\x0c\x61\x05\xce\x7c\x2f\x8f\xaf\xe7\x3f\x09\x83\x93\ \xdb\x37\xcf\x31\xe4\xd7\x1b\xf0\x26\x1c\x39\x70\xe2\x8b\x20\xc0\ \x39\x3c\xe8\x81\xcf\xe7\x87\x45\xc0\x1f\x50\x06\x60\x90\x11\x78\ \x0c\x97\x32\xd3\x1d\x4e\xca\xf2\x23\x34\x47\x22\x7e\x61\x13\xce\ \x9e\xfb\xa8\x67\xb0\xad\x8d\xd1\x13\xbe\xaf\x9f\xe3\x0b\xf9\x15\ \x6e\x60\x53\xf3\x00\x75\x80\x76\x78\xaa\x80\x5e\x16\x9f\x2b\xa0\ \x09\x9b\x0d\xf9\x49\x81\x96\x79\xef\xb9\xb7\x7a\x3a\x39\x7c\x7a\ \x79\x7d\x3e\x31\x7f\x80\xf3\x73\x03\x1b\x8b\x05\xc7\x90\x35\x4b\ \xe0\xbc\x00\x5f\x92\x9f\x9a\xd0\x1c\x13\xf0\x8b\x9b\x80\x5c\x38\ \xf7\x69\x0f\xd0\x51\x7b\x84\xf8\x23\xe2\xf9\xe1\x09\xb8\x32\x2d\ \x58\x3c\x64\x35\x3c\x84\x92\x72\xf8\xc4\x4f\xb9\x78\x12\x27\xaa\ \x58\x80\x92\xe2\x0a\x7b\xb8\x41\x77\xcf\x28\xd8\x59\x7c\x08\x55\ \xdf\x80\xdf\xeb\xf5\x0e\xb8\xd2\x02\x8f\x6f\x71\x38\xf4\x02\x3f\ \x8a\xe1\xe5\xf1\x91\x64\xfc\xd4\xe6\x98\x08\x5f\x30\x47\x4c\x63\ \x6c\x64\xf4\x8b\x51\x4e\x6f\xc8\x4f\xf8\xe0\xd7\x18\xfc\xb6\x23\ \x4b\x60\xcb\x4e\xd0\xcb\xe2\x8b\xf9\x91\xdf\xe3\x89\xa2\x18\x09\ \x98\x1a\xfc\xf1\xe7\xab\xc5\xc5\xa3\x60\x97\xac\x3f\x4b\x7a\x8a\ \xee\xde\xdf\xa4\x13\x18\x9a\x35\x2c\x8d\x6f\xcc\x8f\x24\x2f\x6e\ \x8f\xcd\x21\x7e\x33\x87\x73\x63\x7f\xf5\x0c\xf8\xf8\xfc\x44\x10\ \xe1\xfe\x12\x7f\x34\xaa\x1a\xd4\x33\x81\xfb\xff\xd6\x1d\x43\xd6\ \xa1\x59\x93\x2d\x3f\x85\x8d\x91\x19\x3f\x92\x62\xd9\xf3\xc7\xd8\ \x5b\x97\xe8\xde\xc1\xb0\xfe\x3a\x81\xa8\x82\x29\xb2\xdc\x7f\x5a\ \x7b\x0c\x39\xac\x1b\x66\xc9\xd0\x4b\xf0\x23\x17\x13\xeb\x62\x20\ \x94\x10\x40\x2e\x8c\x3d\xd7\x33\x6a\xce\xef\x45\x18\x3e\xb3\x60\ \x06\x96\x27\x2e\x4f\xb1\x3a\xc4\x02\xf2\xf8\x86\x53\x74\xb2\x28\ \x96\x92\xe2\x47\xc6\x46\xf2\x7a\x46\x41\x6d\xb6\xbf\x00\xe7\xfc\ \x88\x52\x9f\x2d\xd0\x04\x01\x63\x7a\x79\x7e\x3a\x4f\xff\x34\x31\ \x48\x51\xf6\x8e\xbd\x77\xe9\xdb\x7e\x01\xbf\x50\x20\xca\xe3\x75\ \x3d\x71\x65\x8a\x76\x8b\x05\x02\xc3\x32\xf8\xe2\xfc\xfe\xfb\x49\ \xac\x72\xca\x8c\x9f\x0c\x9e\xbd\x14\xea\x37\x99\x1f\x1d\xbf\xdf\ \xef\x57\x9e\x3c\x3d\xa5\x09\xe0\x24\xf0\xeb\xac\x34\xdf\xe4\xf1\ \xc1\xaf\x1a\xa4\x52\x32\x02\xc8\x85\x0b\xcf\x5d\xf2\x0d\x9a\xf0\ \x23\xc4\x8f\xb8\xdc\x0b\x36\x68\x3a\xe0\x80\x00\xa8\x0f\xa5\xc9\ \x13\x89\xc4\x24\xf9\x99\xc1\x29\x63\x83\x94\x3e\x63\x9f\x3f\xff\ \x0e\x37\x30\x9c\x1f\xe2\x47\x54\xfe\xe8\x82\xa1\x2c\x81\xab\xc8\ \xb5\x6b\xd7\xae\x5f\x8f\xc7\xe3\xf0\x48\x20\x62\x7a\x29\x7e\x84\ \x0c\xcc\xf8\x31\x44\x7f\x5d\xba\x11\x19\x14\xf1\x13\xbe\xbe\xfe\ \x2e\x41\x07\x6e\xfe\x13\x98\xdc\x82\x87\x6a\x31\x71\x7c\x4a\xf2\ \x54\x2a\x26\xc5\x8f\xb3\xf4\xd3\x4b\x79\x30\x90\x9c\x1f\xf0\x7b\ \x1f\x10\x76\x80\xc2\x3d\x6e\x71\x09\x59\x7c\xe2\xa7\x1e\x24\x60\ \x60\xce\xbf\x17\x06\xc7\x2d\x2f\xc0\xc0\x88\x1f\xd1\xce\x0f\xcb\ \x37\x38\x85\x0c\x04\x28\xaa\xc4\xb5\xf8\x21\xd6\x08\x79\x7e\x63\ \x03\x23\x7e\xe4\x02\x1b\xa2\xbc\xd0\x5a\xe1\xfd\x03\x8b\xae\xfe\ \x12\x02\x14\xde\x88\xe4\x49\x52\x90\xe7\x17\xef\x41\x4a\x24\xc0\ \x87\xe8\x61\x5b\x7b\x44\x58\x7f\x12\x20\x7e\x08\x5c\x96\x13\x60\ \x8b\x8d\x7f\x70\x40\x1b\xe4\xf9\x0d\x0d\x44\xf8\xdc\x60\x24\xf7\ \x9d\x87\x2d\x30\x10\xf2\xeb\xea\x2f\x16\x98\x2a\x86\xe7\x61\x0e\ \xd7\xe3\xa4\x20\x85\x4f\x06\xb1\x94\x49\xfd\x79\xd8\x10\xe5\xa2\ \x07\xd9\xc7\x27\xe2\xce\xe6\x47\xee\x3f\x9d\x25\xf0\xe2\x6d\x63\ \x7e\x84\xb7\x81\x26\x49\x96\x1f\xd1\x5d\xd1\x8c\xf9\x71\x39\xcb\ \xb9\x94\x97\x6b\x09\x84\xee\xac\xbf\x5b\xc3\x4f\x02\x47\xf5\xa7\ \xd0\x86\xfd\x3f\x1a\xc3\x93\xc3\x35\x4c\xd2\xef\xb2\xf8\x64\x40\ \xf7\x45\x29\xe3\x06\x20\x63\x9f\xbf\xf3\xbc\x25\xd7\x16\x08\x99\ \xf3\x23\x8f\x8e\x2b\x70\xcd\x20\xbc\x0b\xbf\x4b\xf3\x93\x81\x59\ \xfd\x59\xf6\xe0\xd1\xc0\x02\x03\x65\x40\xc4\x1f\xe5\xfc\x94\xdf\ \x34\x02\x88\x56\xe0\x9a\x71\x6e\xdd\xa2\x41\x92\xe7\x87\x41\x51\ \xcc\x64\x01\xf8\x10\x1d\x79\xff\x52\x1e\x37\xd0\xf2\xff\x9f\x53\ \x33\xe8\x6d\xe2\xfa\xa2\x38\xab\x3f\x8b\x2c\x22\xe5\x5f\x23\xb5\ \xa2\x1b\x36\x25\x6d\x25\x84\x04\x72\xc5\x9e\xaf\x61\x45\x59\x58\ \x4e\x94\x2c\x58\xb4\x0b\x16\xfd\x04\x5e\x86\xc8\x9a\x85\xa5\x08\ \x29\x72\x36\xa3\xa2\x4a\x44\x36\x76\x9d\xc4\x55\x12\x24\xe3\x58\ \x26\x90\xc9\x38\x10\x0f\x83\x03\x81\x04\x42\xa1\xed\xb6\x67\x1e\ \x53\xae\xe6\xc6\x3d\x2f\xe1\x24\x78\xfd\x3b\x73\xee\x79\x77\x9e\ \xc3\xa4\x3c\x7f\xd1\xf8\xff\x8b\xf9\xec\x99\x84\x81\xab\x94\xdd\ \xe0\x1b\xb5\x37\x1f\xcd\xad\xdf\xe6\xf8\xda\xc0\xfa\xe2\x2c\x9d\ \x1f\xe9\xf1\x15\x93\xc1\x4f\x9c\x1f\x1a\xda\xca\xce\x88\x01\x8c\ \x50\xde\xb9\x0c\x44\x2b\x7e\x6c\xa1\x23\x55\x10\x7e\xe6\xc0\x03\ \xaf\x95\xdf\xbc\x96\xfe\x10\x39\x98\x86\x03\xe1\x87\x34\xff\xf8\ \xd0\xf6\x99\x44\x07\x52\x79\xe7\xba\x1d\x5f\x2c\xb4\x31\x47\x16\ \x7c\x7d\x98\xd6\x2d\xfc\x50\x7d\xe5\xc2\xd7\x0f\x87\x8d\x83\x9b\ \x31\x3f\x0c\x0c\x98\x9f\xf1\xf1\x9f\x5b\xd9\x7c\x4a\x0c\xe0\x52\ \x5f\xf8\xed\x64\xf4\x32\x47\x68\x82\x05\x5b\xe4\xa3\xc8\x76\xfe\ \xfa\xd2\x0a\x5e\xea\x62\x07\x84\x1f\x3a\xbb\x91\xd2\x06\x8a\x8f\ \x6d\xf8\x3a\x84\xf5\xea\x89\xf9\x7d\xbf\xb1\x3a\x6b\xe1\x87\x81\ \x3a\x6e\x06\xe7\x8d\x83\x4c\xfc\x7f\x9c\x12\xf3\x23\x06\xc6\xfe\ \x57\xcb\x27\xbe\x5b\x4c\x65\x2b\xc5\xbb\x36\x7a\x6d\xa1\xf3\x6b\ \xf5\xf6\x09\xf9\x61\xc0\xff\x7d\xd6\xca\x8f\x08\xbe\x41\x04\xc6\ \xc1\xf4\xf4\x24\x34\x10\x1f\x5a\x2b\x56\xb2\xc6\x80\x2c\x82\xe2\ \x32\xc7\xd7\xea\x76\x11\x82\xe7\x9d\x8c\x1f\x32\x35\xe0\xfc\xd0\ \xe2\x9d\x87\xa3\xb1\x83\xb8\xc1\x03\x0d\x8c\xdd\x28\x54\xe2\x0e\ \xcb\x26\xbb\xcc\xe1\x15\xbd\x51\xbb\xb3\xee\xd9\xf9\x63\xa1\x06\ \x56\x7e\x89\x00\x0e\x26\xa7\x81\x3f\x38\x80\x73\xdb\xa9\x19\x6d\ \xc0\xd9\xe1\xf4\x1a\x3f\x76\x70\xcf\x36\x46\xbe\x68\x71\xd6\xc2\ \x0f\xad\xde\xc9\x20\x82\x78\x8a\x6e\x0e\xc4\x37\x1d\xce\x1a\x03\ \x89\x16\x37\x9f\xd8\xe8\x85\x5f\x1c\x74\x69\x11\x84\x5f\x86\x68\ \x9e\x19\x90\x08\xa0\xcc\xf4\xad\x81\x06\x26\x26\x9e\xb6\x66\xe2\ \x0e\x8b\x81\x4a\xf3\xae\x85\x5d\xe8\x45\xa6\x08\xb7\xed\xf8\x32\ \x44\x14\x1f\x06\x56\xaf\x99\x16\x40\xe9\x61\xf4\x40\xe3\x1b\xfe\ \xa9\x5d\xa7\xa2\x0c\xe0\x85\xba\x78\xf5\xf4\xf8\x10\xab\xb2\xaf\ \x0c\x34\x16\x67\xc9\xf3\x57\x11\xa4\xd3\x70\x30\x39\x39\xe0\xf9\ \x4f\x9c\xdb\xca\x4a\x87\xa5\xc5\x3b\xa7\xc2\x17\xc5\x0e\x28\xbf\ \x0c\x11\xe7\x8f\x77\x81\xe1\x87\xae\x64\xc6\x26\x8f\xf3\x27\x2b\ \x20\x2d\x76\x9f\x9c\x8e\x5e\x1c\xf4\xe0\x80\xe3\xcb\x10\xd9\xf8\ \xe3\x75\x6c\xf8\x4d\x06\xb7\xd4\xfc\x40\x6b\xb5\x82\x18\x90\x16\ \xbb\xcb\x9c\x9f\x38\x08\xe4\x38\x65\x06\x3c\x9c\x44\x75\x0b\x3f\ \x5a\x70\x61\xf4\x61\xcc\x6f\x32\x50\xcf\x1f\x09\x6c\x15\x0a\xc9\ \x0a\xc4\xbb\xf8\x3a\xa1\xe7\x7a\xd6\xf1\x3c\x1b\x3e\xf8\x3d\xaf\ \x51\xad\x73\x7e\x28\xba\x5c\x66\x3e\x39\x18\x4e\x8f\xfd\x28\xfc\ \x46\x23\xdb\x79\xd9\xc3\x89\x19\x7a\xcc\xe1\xed\x53\x64\xc1\x87\ \xfc\xd5\x59\x8e\x0f\xe1\x0b\x77\x89\x00\x0e\x64\x7e\x8c\xa6\x9e\ \xb6\x2a\x66\x82\xb4\x81\x82\xfb\x2d\xc5\xe7\x19\x48\x93\xa9\x01\ \x44\x50\xb7\x19\x58\x5a\xba\x28\x11\x40\x98\x22\xe1\x87\x81\x1b\ \xa5\xc2\x00\x03\x28\x01\x66\x88\xd0\x73\xb5\x9f\xcd\x55\x3d\x2b\ \x3e\x84\xd7\x52\x0b\x3f\x6a\xfc\xd5\x03\xc1\x87\x32\xe3\x63\xf2\ \xfc\xc7\xbf\xd8\xce\xa3\x02\x62\x40\x4a\x50\x2a\x3f\xa1\xec\x5c\ \x70\x60\xc5\x87\xfc\x70\xbe\x4e\xf0\xa1\xfb\xf7\x57\xee\xe4\x46\ \xd3\x22\x9c\x45\xc2\x3f\x35\xb5\xd6\x2a\x48\x05\xd4\x0c\x2d\x77\ \xba\x5d\x86\xcf\x33\x68\x54\x35\xbf\x18\x10\xe1\x28\xb5\x19\x88\ \x4e\xd2\x4c\x32\x03\x31\x80\x33\xc8\x51\x13\x24\x97\x9a\x9d\x76\ \x37\x08\x7a\x01\x6c\x7c\x96\x85\x7b\x1e\xc5\x57\x11\xfc\x17\x3e\ \xb4\x72\x01\x35\x4e\x28\x37\x31\x1e\x07\x70\x76\xa3\x22\x87\xa8\ \x7a\x9b\x70\xca\xcf\xfb\xfd\xbd\xbd\xcd\x47\x41\x10\x7c\x8e\x81\ \x8e\x1f\x12\x7e\x89\x60\x81\x3e\x7f\x68\x7e\xe5\xe2\x83\x24\x7f\ \x0e\x0e\x22\xfe\x89\xcc\xae\xeb\x54\x24\x00\x3d\x43\xd7\x5f\x44\ \x8a\x4c\x74\x7a\xa7\xf6\xd0\xe9\xf6\x42\xcf\xc2\x0f\xf9\xde\x62\ \x9d\xf1\x43\x4b\xab\xc9\x1a\xe7\x22\x81\x1f\x1a\xd9\x9e\x91\x09\ \x3a\x76\x0e\x95\xca\x2f\xf7\x21\x63\x02\x1e\x4e\x95\x43\x07\x6a\ \xcf\x85\x14\x5f\x5a\xc0\xf0\x21\xbc\x93\x9e\xd7\x06\x72\x53\xa6\ \xc2\x35\x47\xce\xa0\xe3\xbb\xac\xfc\x6a\x3f\x96\xf1\x80\x59\x3a\ \x0d\x3f\xba\xd3\x08\x19\xbf\xb4\xc0\x62\x60\x09\xdb\x58\xf1\x43\ \x51\x00\xaf\xf3\x12\x80\x56\x16\x35\xae\x21\x02\xf1\xb0\xbf\xd7\ \xb6\x5a\x10\x7c\xa8\x1b\xf8\x1e\xe1\x97\x16\x70\x7e\x18\xb8\xf4\ \x40\xf3\x1b\x07\x4f\x5b\x08\x20\xab\xc9\xe5\x56\x23\x11\x9c\xc6\ \x42\x47\xd4\x9d\x0b\x39\x3e\x74\xe0\x87\x1c\x1f\xc2\x1f\x3c\xce\ \x6b\x7e\x68\xe8\x75\xa5\xa4\xee\x32\x6a\x86\x9a\xb5\xc3\x84\x03\ \x68\xaf\xdb\xb3\xe3\x8b\x83\x46\xd5\xc6\x7f\x70\xd0\x58\x5d\xe0\ \x06\xcc\x2a\xd0\xfc\x10\x02\x50\x13\xa4\x6a\x8c\x6d\x7c\x79\x5f\ \x09\x5d\x60\x21\x74\x94\x81\x8e\xef\x59\xf8\x61\xa0\xba\x40\xf9\ \x21\xcc\x50\x6e\x40\x00\x0e\x02\x40\x85\x59\x04\xd2\x02\x89\xa1\ \xdf\xee\x59\xf0\x45\x78\xa5\x50\xf8\x9a\x1f\xf2\x11\x01\xe5\xc7\ \xdd\x38\x3d\xaa\xf9\xd3\x34\x00\x63\x00\x27\xa9\xb4\x40\x84\x2a\ \x04\x81\x1d\x5f\x4e\x22\x8a\x0f\xa1\xc6\x04\x5f\x66\x28\x97\xd0\ \xc8\x9b\x4a\xa9\x90\x17\x03\xb6\x08\xfa\xf2\x13\x35\x21\xe0\xf8\ \xe2\x20\x08\x43\x9b\x01\xff\x60\x7e\xc1\x66\xe0\x92\x36\x90\x5e\ \xab\x95\x24\x00\x12\xc1\x8e\x3c\xfa\xbe\xf9\x87\x5f\x84\xb0\xd9\ \xa3\xf8\x22\xbc\xd5\x11\x7c\x89\x80\xf0\x43\x2b\xd8\x65\xb9\x84\ \xce\xbe\x2d\x14\x69\x00\x50\x0a\x11\x14\x6b\xcb\x9f\x1e\xfd\xbf\ \x1f\x10\x42\xe8\x05\x76\xfa\x68\x7d\x07\x5e\x48\xf9\x21\xbf\x4a\ \xf1\xa1\x79\xfc\xb9\x23\x99\xc0\xae\x5b\x44\x00\x29\x82\x1f\xbf\ \x4f\xb8\xb5\x43\x79\xf8\xe6\x23\x1e\x23\x14\xc1\x8e\x0f\xa1\xc7\ \x9c\x1f\x06\x50\x63\x6e\x00\x5f\x10\x25\x0d\x1c\x6d\x38\x25\x79\ \x8b\x20\x2d\x40\x04\xaf\x00\xac\x13\xf8\xe8\x20\xc6\xa7\xfc\x88\ \xc0\x0f\x19\x7e\x3c\x43\x8c\x1f\x8a\xae\xc6\x82\x3f\x3c\xf2\xda\ \x69\xf2\x06\xc8\x3a\x6e\x9a\x21\xd2\x09\xe0\x07\x0e\x7a\x16\x7a\ \x89\x80\xe0\x43\x7e\xc8\xf1\x91\xc0\x2f\xdf\x8f\xe6\x44\xbb\xe5\ \xa2\xec\x00\x1e\x41\xa1\xe8\xb6\x5e\xaa\x04\xe2\x14\xd0\x83\x1e\ \x35\x20\x11\x10\x03\xb2\x0a\x98\x81\xe8\x20\x4d\x0c\x50\x51\xee\ \xf2\xb4\x05\x26\x82\x1d\xdd\x01\x7c\xf4\xfb\xc6\x41\x40\xe8\x25\ \x82\x90\xf0\xcb\x0c\xdd\x27\xfc\xb8\xdb\x8b\x01\x0c\x90\xeb\x58\ \x03\x90\xa3\xb4\x59\x7b\x17\x11\xbf\xe8\x9b\x0f\xe3\x00\xc2\x87\ \x38\x20\xf8\x72\x10\x69\x7a\x35\x43\x04\x1f\x8a\xbe\xa2\x8b\xf9\ \x87\xfe\x68\x36\xf5\x0e\xe3\x3d\x76\x5b\xcf\xf7\x3f\x59\x88\xe8\ \xe1\x21\x76\xb0\xd9\x63\xfc\x12\x01\x37\x60\x66\x88\x1b\x90\x12\ \xe0\x25\xae\x54\xd4\x0d\xb6\xf4\xb8\xdc\x3a\x8c\x87\x27\xf1\x1b\ \x39\x68\xf7\x38\xbd\x31\xd0\xf3\x42\x8a\x6f\x66\x88\xf0\x43\x52\ \x82\xa3\xf7\x05\x33\x40\x9a\x94\x0f\xd1\xd6\xa1\x99\x7b\xed\x00\ \xa1\x74\x7a\x36\x7e\x38\x68\x84\x9c\x1f\xbb\x8c\xe3\x9b\x12\xa4\ \xcd\x0a\x7e\xe3\xb8\xf6\x01\xd2\xfb\xb8\xd9\x7a\x05\x62\xc5\x6f\ \x64\x6a\x40\xf0\x65\x86\x08\xfe\x87\x0f\xd1\x2e\xe3\x06\x3e\x6e\ \x82\xe1\x73\x7f\xba\x4d\xeb\x0e\xd6\x11\x60\x88\x9a\xad\x77\xfd\ \x41\x09\x98\x22\x73\x7a\xa8\xdb\xf5\x43\xc6\x0f\x61\x86\x18\x3f\ \x12\xb8\x96\x1b\x45\x81\x77\x6b\xc5\xa6\x53\xd1\x01\xd8\x87\xc8\ \x6d\x6e\xfc\xa5\xf9\x8d\x50\x8d\x47\x3d\x8a\x1f\x2f\x33\xca\x2f\ \x06\x34\xbe\x18\xc0\xb7\xbc\xb8\x04\x6c\x90\x01\x22\x27\x11\x1c\ \xe0\x28\xd2\x0e\x64\x88\x2c\x42\x8d\x43\xc6\x0f\xf9\x21\xe7\x37\ \x2d\xce\x80\xbf\x2c\x5f\x47\x9f\xd8\x80\xa9\x81\x5b\xde\x80\x83\ \x63\xfc\xe6\x2c\xb5\x3b\xc0\xc5\x86\xe1\x43\x52\x02\xcd\x2f\x2d\ \x3e\x7a\xeb\xb8\xa6\x00\xdc\xc0\xe0\x85\x0c\x07\xdb\xcf\x8f\xf3\ \x1b\x4f\x81\xd5\x01\x6a\x4c\xf9\x65\x86\x34\xbf\x18\xf8\xee\xe8\ \xbd\x53\x2e\xd2\x15\xcc\x8b\x3c\xd8\x81\x0c\x11\x9f\xa1\x83\x90\ \xf1\x8b\x01\xcd\x2f\x06\xfe\x06\x3f\x2d\x30\x51\xca\x6c\x03\xd7\ \x7d\x2b\x0e\x44\xe8\x71\xd7\x3e\x44\x8d\x90\xe0\x43\x7e\x95\xe1\ \x43\x5f\xbe\x29\xfc\xd3\x6c\x19\x70\x38\x70\x44\x71\xbc\x5f\xe2\ \x90\xaf\x70\x80\x03\xee\x0b\xdd\x27\x8a\x6a\x83\x09\x10\x5b\x74\ \x70\x28\x8f\x1b\xad\x06\x94\xb1\x5b\x55\xa7\x42\x48\x25\x2a\x15\ \xc9\x4a\x26\x1b\xd9\x24\xe8\xcc\x7f\xb3\x73\x97\xbe\xd8\xc9\xd9\ \x4d\xe4\x01\x09\xf8\xfd\xde\x7b\xff\xb7\x43\x15\x4f\x88\xc0\x08\ \x8a\x20\x13\x79\x03\x54\x60\x04\x81\x1d\x5a\x9f\x0a\xac\x7b\x3f\ \x54\x08\x7c\xdf\x32\xdf\x91\x44\x80\xbf\x2c\x80\x2a\x0d\x92\x09\ \xc3\x77\x42\x7e\x04\xe1\x3b\xc4\xf1\x79\x8a\xcf\xf4\xdf\xee\x8f\ \x0c\x1d\xa0\xc0\x29\x82\x81\x4e\x37\x8c\xff\xb2\x53\x3a\x18\x9f\ \xe7\xe7\x21\xf8\x85\xd7\x36\x05\x3f\x0e\x50\x1d\x03\x21\x49\x24\ \xd6\x80\x8f\xe0\x8f\xe0\x08\x10\x02\x8e\xcf\x05\x38\xfe\x73\x9e\ \x44\x24\x45\x2d\x7e\x1c\xd3\x62\x06\x71\x3e\x67\x06\xf8\x16\x84\ \x43\xc0\xf9\x79\x8a\x19\xfe\x6f\xcf\xbb\x44\xa0\xff\xfe\x80\xd6\ \xdc\xa2\x78\x35\x65\x23\xf8\xe7\xc2\x10\x70\x7c\x2f\x30\x46\x8a\ \x79\xff\xf7\x99\x12\x35\xf6\x87\x19\x68\x92\x34\x9b\xfc\x5f\xe0\ \xdf\xdf\x47\xe1\x10\x54\xf1\xe3\x41\x7a\xfe\x7c\x92\x24\x5d\x9f\ \xdf\x1b\x74\x34\x91\x30\xdb\x79\x38\xc6\xfc\x35\x01\xfc\x0a\x81\ \x73\xeb\x6f\x22\x22\xdd\xe1\xfc\x75\x0c\xa4\x8a\xf8\x1a\x5d\x90\ \xe2\x0a\x7e\xa4\x98\x09\xf4\xf6\x59\x1c\x29\xd9\x18\x3f\x0c\xf0\ \x2e\x52\x52\x9a\xd3\x6b\x84\x1d\x0a\xa4\x98\x31\x07\x04\x9e\xb7\ \x0b\x29\x95\x74\xef\x9f\x86\xf8\xf1\x4d\x86\x01\x91\x4e\x76\xd3\ \xcf\x02\x7f\x86\x04\x46\x21\x81\xb7\x53\x81\xde\x7e\x95\x74\x88\ \x8e\xfc\xdf\x34\x56\xd6\x00\x51\x56\x5a\xcd\x36\xf3\x2f\xdc\xa1\ \xd1\xa0\xda\x60\xf0\xc6\xda\xaf\x15\xe2\x8b\xf7\x4f\xc3\x06\x6e\ \x8d\x48\xa4\xab\xc9\x17\x1e\xd5\x21\x81\x71\xcf\xd3\xff\xfc\xa3\ \x6f\x7f\x73\xfc\x2c\x08\xa4\xb4\x34\x1f\x7b\x14\x3c\xa4\xfd\xc0\ \x0e\x8d\x7f\xf5\x3b\xf4\xb4\x33\xae\xfd\x6c\xfd\x9b\x32\xc0\x10\ \xa0\x20\x94\xc9\xa7\x17\x86\x20\x24\xb0\x3e\xde\xd1\xde\x53\x6e\ \x94\xb0\xf8\xc7\xf5\x69\x9c\x1f\x6b\xf4\xd2\xb6\x43\xd0\xa4\x48\ \xc4\x0b\x28\x20\x04\xb5\xce\xd0\xa0\x10\x78\xca\x17\xb1\x20\x45\ \xda\xb6\xbf\xfd\xc2\xd7\xa7\xa9\x35\xf2\x43\xa0\x08\x0a\x21\x81\ \xd1\x45\x02\xc0\x8f\x48\x95\xdb\x8f\xf5\xb9\x8e\x81\x55\xb0\x43\ \x88\xf4\x51\x61\x37\x99\xff\x5d\xfb\x43\xf0\xed\xfe\x60\x0a\x7c\ \x1d\xb9\xf6\x3f\xf0\xf5\x69\x7e\x08\x50\x50\x91\x32\xab\x4d\x37\ \xf4\x21\xa8\x34\x18\x0f\x5b\x2b\xa3\x04\xf0\xaf\xdd\x7e\x9f\x65\ \x7b\x8e\xec\x1e\x41\x41\xcb\x64\x91\x4f\x86\x55\x4b\xb4\xae\x10\ \x18\xee\xf3\x59\x4a\x5a\x1d\xf1\xed\xf1\x61\xe9\xbd\xba\x82\xdd\ \x24\x93\x71\x87\xb0\xc0\xd8\xd2\x67\x26\xd6\xf2\xb6\xf8\x7e\x8f\ \x3e\x14\x94\xd4\xd6\x61\xd7\x9a\xbe\x5f\xfe\x29\xfe\xab\xfb\x08\ \x7a\xd7\xfc\x12\x9f\x6d\xcf\x95\x15\x30\x85\x48\xc8\xc2\x41\xa8\ \x74\xb1\xca\x5b\x3f\x0d\x83\x02\xe3\x61\xb7\xb5\x5c\xcd\x52\xd0\ \x2b\x92\x52\x44\xe8\xfe\xf5\xf1\xd9\x3d\x42\x9c\x31\x06\xe7\x40\ \x42\xc7\xa9\xc9\x0e\xd6\x62\xfa\xfe\x5e\x24\xd8\x55\x7f\xd0\xef\ \xf7\x07\x0e\xfd\xf5\xb5\xbb\x7f\xcc\x0f\x99\x49\x63\xa9\x49\x95\ \xcd\x47\x74\x71\x7b\x6e\x5c\x85\x02\xc6\x70\x74\x50\xa4\xb5\xb2\ \x16\x8b\x59\x76\x58\x2e\xb7\x9b\xbd\xaf\xd6\x76\xb9\x3c\x64\xb3\ \x99\x65\x57\x1a\xf0\xa0\x47\xf3\xdb\xb7\xed\x3e\x8b\xb3\x77\x28\ \x24\x10\x49\xa9\x55\x92\x24\xa9\x2b\x93\xa2\xec\x4f\x9b\xd7\x62\ \xdf\x00\xef\xe9\x03\xd1\xbd\xa5\x03\x24\x8e\x16\x8a\x80\x89\x22\ \x70\x97\xff\x17\xf0\xf7\x40\xef\x37\x09\xab\x64\x1d\xac\x84\x9d\ \x04\xfa\xec\xaa\x44\xf6\xe0\x10\xd2\xb6\xf3\x16\xde\xd2\x63\x75\ \x02\xbb\x73\x23\x05\x24\xba\x94\xe8\xb8\x59\xc0\xe3\x73\x81\xdc\ \xf5\xbd\x53\xc2\x23\xb7\xf7\x80\xef\xaf\x12\x24\x9c\x05\x34\x9c\ \xc8\x47\x39\x70\xa0\x3b\x76\xc0\xb3\xab\x73\x2f\x12\xb0\xb0\x1e\ \x56\xe4\xa4\xda\x8e\x1c\xec\x77\x09\xef\x1d\x60\x01\x8d\x52\xa5\ \xc4\x06\x3a\xd8\x19\xfd\x1d\x7a\x94\xf5\x80\x2a\x7f\x5d\x85\xfc\ \x3f\x1e\x04\x42\x98\x59\x87\xb2\xb6\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x60\x49\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x60\x10\x49\x44\x41\x54\x78\xda\xed\xdd\x79\x9c\x1d\x55\ \x9d\x36\xf0\xe7\x77\xee\xda\x9d\xce\x46\x12\x06\x59\x13\x40\x51\ \x91\x00\xe9\x20\x4b\x18\x6d\x26\x9d\x04\x62\xc4\x11\x5f\x61\x14\ \x14\x41\xd4\x41\x41\x94\x51\xe0\x1d\x77\xdc\x40\x50\x9c\x11\x45\ \x91\xc5\x15\x04\x5e\x64\x11\x63\x96\x0b\x69\x1c\x56\xb3\x41\x40\ \x1c\x10\x08\x10\x64\xcd\x46\xd2\xcb\xdd\xaa\x7e\xef\x1f\xf7\xde\ \x4e\x75\xf5\xed\xee\xdb\x77\xad\xe5\xb9\x9f\x0f\x1f\xe8\xa6\xee\ \xb7\xaa\x4f\x9d\x3a\xcf\xa9\x53\xcb\x11\xf0\xc3\x0f\x3f\x9e\xfe\ \xa8\x42\xb0\x62\x76\x3b\xa2\x91\xe9\x80\x99\x06\x0b\xd3\x01\x99\ \x06\xc1\x34\x00\xd3\x01\x7b\x1a\x20\xd3\x00\x9d\x00\x98\x38\xa0\ \x09\x00\x71\x40\xe3\x80\x14\xff\x1b\xa5\x7f\xbb\xff\x1b\x00\xb2\ \xc5\x7f\x32\xc3\xff\x5b\x33\x80\x14\x7f\x27\x19\xc0\xce\x02\xd2\ \x07\xe8\x16\xc0\x6c\x01\xb0\x19\x8a\x2d\x30\xd8\x0c\xd1\x2d\x80\ \xbd\x05\x79\x6b\x33\x16\x6e\xe8\x17\x81\x72\xef\xf1\xc3\x8f\x77\ \x3f\x52\x2b\xd0\xdd\xdd\x25\x2e\x47\x53\xa9\x1e\xa5\x47\x8f\xde\ \xd8\x9e\xae\xe9\x8c\xe1\x0d\xec\x0b\x35\xb3\xa0\xd6\x2c\x88\x99\ \x09\xd5\x59\x00\xf6\x00\x4a\x01\x8f\x69\xc5\xd0\x86\x96\xd9\x12\ \xa9\xe1\x28\x6e\xa0\x97\x01\xb0\x05\xc0\x66\x11\x6c\x01\xf0\x0a\ \x44\x36\x42\xed\xe7\x20\x91\x8d\x10\x7b\x23\x26\xe3\x05\x99\xbb\ \x36\xc7\xfa\x42\x8f\x5e\x6b\xbc\x9a\x3a\x00\xdd\xdd\x5d\x11\xf7\ \xef\x52\xa9\x1e\x8b\x1e\x3d\x7a\x05\xef\x84\x3d\x5e\x36\x1f\x3b\ \x69\xf2\x5e\x6d\xb1\xfc\xcc\x68\xcc\xcc\x8c\x46\xec\xfd\x44\x65\ \x16\x8c\xcc\x2a\x06\xfd\x5e\x00\x4c\x25\x9e\x5d\xe6\xb0\x36\x35\ \x1c\xc1\x1e\xf0\x6c\x00\x2f\x42\xe4\x39\xd8\xba\x11\xa2\x1b\x01\ \xb3\x11\xb6\xf5\x9c\x65\x47\x37\xfe\xe4\x86\xed\xaf\xdc\xf9\xf2\ \x5e\x36\xeb\x1f\x3d\x7a\x8d\xf1\xa2\x35\xf4\x3a\x22\xee\x9e\x07\ \x00\x8b\x1e\xbd\xb0\x7a\x7a\xd7\x21\x53\x11\x8b\x1e\xa2\x12\x99\ \x9d\xb7\xf5\x30\xc1\xce\x43\x20\x1d\x07\x0b\xac\x09\x80\x20\x62\ \xb4\xb0\x0a\x19\xe1\xd4\x7b\x94\x8f\x65\x0f\xff\x5d\xc4\xa0\xea\ \x8f\x47\x3c\x03\x60\x5f\xa8\xee\x0b\xc1\xbb\x8a\x05\x03\x18\x03\ \xc0\xc6\xd9\xa7\x4d\xea\x3b\x5b\x77\x3e\x6e\x2b\x1e\x57\xc8\x86\ \x98\x58\x8f\x98\xcf\x1d\xf2\x98\x2c\x79\x6c\x1b\xeb\x1f\x3d\x7a\ \xb5\x7b\x52\xe5\xca\xa3\x65\x56\x9e\xaf\x66\x28\x83\x1e\x3d\xbf\ \x79\xba\xa6\x33\x86\x2d\x72\x10\x8c\xce\x86\x60\x36\x14\x87\x40\ \x31\x1b\x82\xbd\x15\x80\x55\xe6\x30\x8c\x44\xaa\x1b\x6e\xa3\x57\ \xc6\x53\xbc\x08\xc1\x06\x08\x1e\x83\x62\x03\x6c\xd9\x80\x69\xfa\ \x64\xb9\xcb\x09\xac\xcf\xf4\xe8\xd5\xa9\x03\x50\x5c\x79\xbc\xcc\ \xca\xb3\x35\xfc\x31\xf4\xe8\x79\xd6\x2b\xdc\x80\xf7\xce\x99\x90\ \xfc\x3c\x88\xcc\x83\xe0\x68\x28\xde\x0e\x20\x36\x2c\xbc\x14\xc8\ \xdb\x43\x4f\xee\x45\x80\xa8\xa9\xee\xba\x3a\xbd\x71\x79\x39\x08\ \x9e\x80\xe2\x41\xa8\xde\x0f\x8d\xde\x7f\xfd\x3f\x5e\x7f\xfe\x86\ \x1b\xf6\x8b\xb1\x3e\xd3\xa3\x57\x63\x07\xa0\xb8\xf2\x44\x99\x95\ \x67\x6a\xf8\x63\xe8\xd1\xf3\x94\x77\xe5\x39\xfd\xf6\x41\x1d\x7a\ \x28\xd4\x9a\x07\x95\x79\x10\xcc\x03\xf0\xa6\x4a\xc2\x2b\x67\x61\ \xc8\x6d\xef\x02\x20\x16\xa9\x3e\x0c\xe9\xd5\xe6\x65\x2d\xbc\x62\ \x59\xf2\x60\xce\xd6\x07\x77\xa6\xa3\x0f\xde\xb0\x26\xfa\xe8\xca\ \x75\xb1\x5e\x1e\x1f\xf4\xc2\xee\x95\x4c\xa9\x70\x41\x03\x20\x59\ \x66\xe5\xe9\x54\xaa\xc7\xae\x62\xc5\xf4\xe8\x79\xc2\xfb\xec\xf1\ \x03\x93\xe7\xce\xd2\x23\x3b\xe2\xd6\x51\x1d\x09\xbc\x53\x04\xef\ \x04\xd0\x5e\x45\xd8\x40\x55\x1c\x67\xae\x8a\x78\x6d\xe1\x45\xaf\ \xfe\x5e\xbf\x08\xfe\x02\xe8\xfd\x30\xe6\x7e\x98\xfc\x83\x72\xdc\ \x23\xdb\x79\x7c\xd0\x0b\x99\x27\x28\xdc\x7f\xa3\x52\xe1\xca\xdb\ \xca\xac\x7c\xa0\x86\x3f\x86\x1e\xbd\x96\x78\x0f\x5c\xdd\x15\xdf\ \x73\xf2\xc0\xb1\x93\x12\xd6\xa2\x78\x54\xba\x8d\xe8\xe1\x22\x90\ \x44\x54\xab\x0e\x9b\x4c\x5e\x86\x0d\x5b\xd3\xf3\x85\xa7\x80\xac\ \x05\x74\x19\x8c\xf9\x13\xcc\x84\xbf\xc8\x71\x3d\x79\x1e\x6f\xf4\ \x02\xec\x95\x6e\x20\xd4\x31\x3b\x00\x8e\x95\x3b\x1f\x37\xb0\x01\ \xf4\xd7\xf0\xc7\xb4\x63\xe8\x63\x4f\xf4\xe8\x35\xd4\xd3\x15\x87\ \xef\x09\x91\x45\x36\x64\x71\x3a\x2b\x0b\x00\x4c\x76\x0e\x33\x27\ \x63\xd5\x87\x4d\x3a\x27\xc3\x86\xad\xe9\xf9\xd4\x13\x6c\x83\x62\ \x25\xa0\xcb\x60\xc9\xb2\x05\x97\x4f\x7c\x95\xc7\x1b\xbd\x00\x79\ \xa5\x1b\x08\x4b\xce\xc8\x1d\x80\xe2\xc2\x6d\xc5\x95\x1b\x0c\x3e\ \xa3\x83\xde\x1a\xfe\x98\x8e\x32\x3d\x19\x7a\xf4\xea\xea\xe9\x9a\ \xce\x18\xb6\x9a\x63\x60\xec\x13\x00\x1c\x0f\xc5\xa1\x76\x29\x1c\ \x5c\x67\x86\xc9\x98\x56\xf5\xec\x3b\xbd\xe0\x7b\xfd\x59\x79\x3c\ \x9d\xc5\xca\xad\xbd\x91\xbb\xaf\xfa\x73\xfc\xe1\xc7\x9f\x8b\x64\ \x79\xbc\xd1\xf3\xa9\x57\xba\x81\x50\x8b\xff\xd8\x00\x6c\x19\x65\ \xe1\x04\x76\x3d\x6b\x58\xea\x81\xb0\xb0\xe9\x79\xd2\xd3\x55\x87\ \x4d\x41\xce\xfc\x2b\x8c\x9c\x08\x45\x37\x80\x89\x0c\x43\x7a\xf5\ \xf2\x00\xf4\xb6\x25\x34\x65\x54\xef\x40\xcc\xbe\xbd\x92\x7b\x07\ \x78\xfc\xd2\xf3\x90\x17\x77\x9e\xf9\x03\xb0\x53\xa9\x1e\x4b\x46\ \xe9\x29\x38\xcf\xfc\x51\xe3\x30\x06\x77\x1e\xbd\xba\x7b\xba\xf4\ \xc8\x49\x88\xe6\x4e\x84\xc8\x29\x00\x16\xa1\xcc\xa3\x79\x0c\x2f\ \x7a\x0d\xf0\x72\x00\x96\x43\xf5\x26\xe4\x63\x77\xca\xe2\x87\x77\ \xf0\xf8\xa5\xe7\x61\x2f\xe9\x3e\xf3\x4f\xa5\x0a\xf7\xba\x48\x99\ \xf0\x8f\x96\x39\xf3\x1f\x60\x61\xd3\xf3\x82\xa7\xcb\x67\x4f\x40\ \x24\xfe\x5e\xa8\x9e\x02\xe0\x84\xe2\x48\x15\xc3\x8b\x5e\xab\xbc\ \x0c\x04\x4b\x01\xbd\x09\x56\xfe\x2e\x59\xb4\xa1\x8f\xc7\x2f\x3d\ \x0f\x79\x6d\xae\x33\x7f\x0b\x8e\x97\x06\xb9\x3b\x00\x51\xd7\x99\ \xbf\xa0\xb6\x47\x17\xb8\xf3\xe8\xd5\xec\xad\xbc\x38\x93\x40\x5f\ \x6e\x31\x44\x4f\x81\x62\x89\xa3\x52\x33\xbc\xe8\x79\xc9\x1b\x80\ \xe0\x2e\xa8\xdc\xf4\xf4\x8e\xf8\xb2\xb3\xaf\x8a\x47\x78\xfc\xd2\ \x6b\xa1\xd7\xee\x70\xec\xe2\x3f\x43\x5e\x1a\x24\x8e\x2f\x44\x1c\ \xc1\x5f\x3a\xf3\xcf\xb2\xb0\xe9\xb5\xc2\x9b\xb9\x5b\xd4\xfc\xe4\ \xcc\xad\x47\xc7\x22\x72\x1a\x80\x13\x01\x4c\x60\xd8\xd0\xf3\x8d\ \x97\x95\xbe\x4c\x1e\x4b\xb7\xf5\xcb\x4d\xdf\xfa\xfd\xa4\x55\x9b\ \xb6\x5b\x79\xb6\x07\xf4\x9a\xec\xb9\xcf\xfc\x87\xbd\x34\x48\x8a\ \x5f\x90\x32\x67\xfe\xd5\xbe\xae\x90\x3b\x8f\x5e\xd5\xde\x45\xef\ \xc9\xec\x7d\xd8\xcc\xec\xa9\x53\x27\xe0\x54\x23\xd8\x97\x61\x43\ \xcf\xef\x1e\x80\x17\x93\x51\xbd\x26\x92\x88\x5e\x2b\xc7\x3d\xfc\ \x22\xdb\x03\x7a\x4d\xf2\x9c\x67\xfe\x03\xe5\xf2\x5c\x1c\x5f\x72\ \x9e\xf9\xe7\x19\xfe\xf4\x9a\xe5\xbd\x63\xa6\x15\x3f\xaf\x3b\xbd\ \x70\x6a\x9b\x9e\x1e\x8b\xa2\x3b\x19\x53\xc3\xb0\xa1\x17\x40\xcf\ \x06\xb0\x0c\x82\x9f\x63\x0a\xfe\x58\x6e\xf2\x22\xb6\x07\xf4\xea\ \xe8\x95\xce\xfc\x47\xbc\x87\xcf\xdd\x01\x10\x00\x16\xc3\x9f\x5e\ \x33\xbc\x6f\x9d\x3c\x70\xc8\x01\xd3\xac\x8f\x26\xe3\x38\x55\x04\ \xff\xc4\xb0\xa1\x17\x22\xef\x15\x28\xae\x47\x04\xd7\xca\xfc\xb5\ \xcf\xb0\x3d\xa0\xd7\x00\xcf\xc2\x18\x4f\xef\xb9\x3b\x00\x36\xc3\ \x9f\x5e\x23\x3d\x5d\x7a\x60\x22\x17\x99\x72\x52\x3a\x8b\x7f\x37\ \x82\x77\x31\x1c\xe8\xd1\x93\xbb\x21\xb8\x06\xd9\xed\xb7\xc9\xe2\ \xa7\x33\x6c\x5f\xe8\x35\xcb\x1b\xbc\x07\xa0\x86\x19\x85\x58\xd8\ \xf4\xc6\x0e\xfe\xe5\xb3\x77\x47\x24\xf6\x19\xdb\xc6\xa7\xd3\x39\ \x99\xce\x70\xa0\x47\x6f\xd8\x67\xb3\xa5\xb8\x6a\xf9\xa3\xe6\x17\ \x57\x2c\x9f\xb0\x85\xed\x0b\xbd\x46\x7b\x55\x54\x79\x16\x36\xbd\ \xca\x3d\xbd\x67\xee\x41\xb0\x70\x3e\xa0\xa7\xdb\x8a\x04\xc3\x81\ \x1e\xbd\xd1\x3d\x5b\x91\xc9\xe6\xe5\xc6\xbf\xbf\x16\xf9\xf1\x97\ \x6f\x4e\x3e\xc5\xf6\x85\x5e\xa3\xbc\xaa\x3b\x00\x2c\x6c\x7a\x23\ \x86\xbe\x42\x70\xf7\x9c\x63\xa1\xf8\x02\x20\x27\x32\x1c\xe8\xd1\ \xab\xd6\xb3\xff\x60\x0c\x2e\xc3\xfc\x75\xf7\xc9\xd0\x79\x8e\xd8\ \x5e\xd1\xab\xd9\xab\xaa\x03\xc0\xc2\xa6\x57\x36\xf8\x57\x75\x45\ \x91\xdb\xf9\x7e\x00\x5f\x80\xe0\x9d\x6c\xcc\xe9\xd1\xab\x9b\xf7\ \x30\x44\x2e\xc7\xd6\x59\xb7\xc9\xc9\xb7\x58\x6c\xaf\xe8\xd5\xc3\ \x13\x16\x0e\xbd\x5a\x3d\x5d\x75\x70\x07\xf2\xc9\x33\x00\x7c\x1e\ \xc0\x2c\x36\xe6\xf4\xe8\x35\xcc\xdb\x08\xc8\x0f\x60\x67\xaf\x77\ \xbe\x76\x98\xed\x15\xbd\x6a\x3c\x61\xe1\xd0\xab\xd6\xd3\xa5\x47\ \x4e\x42\x3c\x7f\x1e\x80\xcf\x43\x31\x95\x8d\x39\x3d\x7a\x4d\xf2\ \x04\xdb\x00\x5c\x81\x6c\xf4\xbf\x4a\x93\x11\xb1\xbd\xa2\xd7\xb0\ \x0e\x00\x0b\x9b\x9e\xeb\x8c\xff\x1c\x00\x5f\x04\xb0\x1b\x1b\x73\ \x7a\xf4\x5a\xe6\x6d\x05\x70\xd9\xa6\x37\x72\x3f\x39\xf3\xa7\xbb\ \x81\xed\x15\xbd\x71\x98\x22\x2c\x1c\x7a\x95\x7a\xfa\x87\xce\x76\ \x24\x70\x36\x04\x17\x02\x98\xc1\xc6\x97\x1e\x3d\x6f\x78\x03\x59\ \xd9\xdc\x9b\x91\x2b\xae\xbf\xbf\xed\xba\xbb\x37\x98\x01\xb6\x57\ \xf4\x46\x0b\x7e\x14\xde\xfa\xab\x52\xe1\xca\xdb\x51\x98\x22\x98\ \x85\x1d\x42\x4f\x57\x75\x25\x91\xdf\xf9\x09\x00\xff\x09\x60\x0f\ \x36\xbe\xf4\xe8\x79\xd3\x53\xc5\xab\xfd\x59\xf9\xfe\xd6\xf4\x84\ \x1f\xbf\xed\xd4\x9e\x7e\xb6\x7f\xf4\xca\x84\x7f\xa4\x68\x8c\xde\ \x01\x70\xcc\x27\xec\x9c\xd6\x92\x85\x1d\x12\x4f\x6f\x3e\x38\x8e\ \x29\xc9\x33\x01\x7c\x09\x82\xbd\xd9\xf8\xd2\xa3\xe7\x13\x0f\x78\ \x11\xc0\xb7\xb1\x3d\x7d\x9d\x9c\xfc\xd7\x2c\xdb\x3f\x7a\xc5\xf0\ \x8f\x96\xaa\xcf\xa8\x1d\x80\xe2\xc2\x6d\x18\x3a\x4b\x20\x0b\x3b\ \x04\xde\xca\x2f\xc1\x20\xdf\xfb\x51\x88\x7e\x05\x8a\x99\x6c\x7c\ \xe9\xd1\xf3\xa9\x27\x78\x0e\x2a\xdf\x44\xb4\xe3\x57\x72\x5c\x4f\ \x9e\xed\x5f\xa8\xc3\x3f\x5e\x3a\xf3\x2f\x76\x00\x6c\x19\x65\xe1\ \x84\xe3\xcc\xbf\x34\x4b\x20\x0b\x3b\xe8\xe1\x7f\x51\xef\x7c\xd8\ \x7a\x05\x04\x07\xb3\xf1\xa5\x47\x2f\x20\x9e\xe2\xaf\x30\xe6\x73\ \xd2\xbd\x3a\xc5\xf6\x2f\x94\x5e\xdc\x79\xe6\x8f\xc2\xbc\x3f\x96\ \x8c\xd2\x53\x70\x9e\xf9\x03\x63\xcc\x2a\xc4\xc2\xf6\xb7\x77\xfb\ \xb9\x3b\xf7\x98\xd0\xae\x97\x95\xde\xdc\xc7\xc6\x97\x1e\xbd\x20\ \x7a\x7a\x27\x2c\xfc\x87\x1c\xbf\xee\x69\xb6\x7f\xa1\xf1\x92\xee\ \x33\xff\x54\xaa\x30\x1a\x64\xca\x84\x7f\xb4\xcc\xca\x19\xfe\x01\ \xf5\x4e\x3b\x2a\xdf\xb1\xec\x8b\xbd\x5f\x99\xd0\x8e\xc7\x19\xfe\ \xf4\xe8\x05\xdd\x93\x13\x11\x91\x27\x74\xe5\xdc\xef\xbd\x74\xe3\ \x51\x53\xd8\x9e\x06\xde\x6b\x2b\xe3\x0d\xbe\x49\xd2\x79\x67\x3f\ \xf6\xdf\x7f\x66\xd4\x71\xd6\x5f\xfa\x52\x9a\x85\x1d\x3c\x6f\x9f\ \x29\x91\xc8\x8f\x4f\xef\x3d\xed\x98\x83\x72\x37\x44\x0c\x16\xb8\ \xeb\x02\x1b\x4b\x7a\xf4\x02\xeb\x45\x6c\xc5\xbc\x48\x54\x3f\x7e\ \xc2\xa1\xf9\xed\x6b\x9f\x49\xfe\x75\x47\x5a\x95\xed\x69\xe0\xbc\ \x76\x0c\xbd\x79\x5f\x01\xe4\x9c\x33\xff\x8a\xe3\x0b\x11\x47\xf8\ \x97\x46\x06\xb2\x2c\xec\xe0\x79\x57\x9e\xde\x77\xcc\x5e\x53\xf4\ \x92\xf6\x84\xce\x66\x63\x49\x8f\x5e\xb8\x3d\xcb\xc6\x86\xd7\x76\ \xca\x05\x67\x5f\x3f\x61\x25\xdb\xd3\x40\x79\xc0\xae\x6b\xfe\x16\ \x80\x8c\x33\xfc\x07\x3b\x00\x8e\x17\x03\x38\xcf\xfe\xb3\xee\x85\ \x59\xd8\xfe\xf6\xbe\xf4\xbe\xfe\x7d\x0e\xdb\xd7\xbe\x38\x1e\xc5\ \xfb\xd9\x58\xd2\xa3\x47\xcf\xe5\xdd\x0c\x63\x5f\x20\xf3\xd7\x3f\ \xcf\xf6\x34\x10\xde\xe0\x35\x7f\x00\x03\xe5\xf2\xdc\xb8\x47\x02\ \x8a\x5f\x62\xf8\x07\xc8\x7b\xf3\x1e\x88\xfd\xe6\xec\xbe\xf3\xe6\ \xce\xb2\x57\x33\xfc\xe9\xd1\xa3\x37\x82\x77\x32\x6c\xf3\x37\x5d\ \x39\xe7\x8b\xba\xaa\x2b\xca\xf6\x34\x30\x5e\x7a\xa4\x3c\x17\xc7\ \x17\x4b\x67\xfe\x16\xc3\x3f\x38\xde\xf7\x4f\xed\x3f\x6c\xe6\x34\ \xfb\x47\x11\x83\xd9\x6c\x2c\xe9\xd1\xa3\x57\xa1\xb7\x1e\x06\x67\ \xc9\xfc\xb5\xeb\xd8\x9e\xfa\xd6\xb3\x30\xc6\x0d\xfc\xc6\xf5\x33\ \xc3\x3f\x20\xde\x92\x43\x72\x33\x6e\xfc\x74\xdf\x37\x0f\x98\x61\ \xdf\xc3\xf0\xa7\x47\x8f\xde\x38\xbd\xc3\x61\xe3\x2f\xba\x62\xce\ \xa5\xfa\x87\xce\x76\xb6\xcf\xbe\xf4\xc6\x7c\x7a\x6f\xf0\x1e\x80\ \x6a\x82\x9f\x85\xed\x4d\xef\xea\x33\x7a\xdf\x33\x7d\x12\xfe\xdb\ \x48\xe1\x2d\x7e\x6c\xdc\xe8\xd1\xa3\x57\x83\xf7\x0c\x6c\xfd\xa4\ \x2c\x5a\x77\x0f\xdb\xe7\x60\x79\x55\x54\x29\x16\xb6\x57\xbd\xd7\ \x6f\x39\x66\x7a\x34\x9e\xbb\x22\x16\xd1\xd3\xd8\xb8\xd1\xa3\x47\ \xaf\x9e\x9e\x65\xeb\xf5\xb7\xaf\x6e\xff\xc6\x4f\x7b\xa2\xdb\xd9\ \x3e\x07\xc3\xab\xba\x03\xc0\xc2\xf6\x8e\xa7\x0a\xc9\x2d\x9f\x73\ \x72\x36\x6f\x7e\x04\xc7\x34\xbd\x6c\xdc\xe8\xd1\xa3\x57\x4f\xcf\ \xb6\xf1\xda\xd6\x5e\xb9\xe0\xb3\xbf\x4b\xdc\xd1\xd7\x17\xb5\xd9\ \x3e\xfb\xdb\xab\xaa\x03\xc0\xc2\xf6\x50\xf8\xdf\x7d\xe8\x5e\xb6\ \x1d\xfb\x69\x3a\x8b\x25\x6c\xdc\xe8\xd1\xa3\xd7\x0c\xcf\xb2\x75\ \x29\x54\x3f\x35\xf9\x7d\xeb\x5e\x64\xfb\xec\x5f\x4f\x58\x38\x3e\ \x0e\xff\x15\x73\xde\x6f\x43\xae\x49\xe7\x64\x37\x36\x6e\xf4\xe8\ \xd1\x6b\xb2\xb7\x15\xaa\x67\xc9\xc2\x75\xb7\xb1\x7d\xf6\xa7\x27\ \x2c\x1c\xff\x79\xba\xea\xe0\x0e\x58\xc9\x2b\x6c\x1b\x67\xb1\x31\ \xa2\x47\x8f\x5e\x8b\xbd\x9f\xc3\xce\x7d\x5e\x16\x6d\xe8\x63\xfb\ \xec\x1f\x6f\x5c\x1d\x00\x16\xb6\x47\xc2\x3f\x75\xc4\x11\x50\xfb\ \xb7\xb6\xe2\xcd\x6c\x8c\xe8\xd1\xa3\xe7\x11\xef\x29\xa8\x7d\xaa\ \x2c\x5c\xbf\x86\xed\xbd\x3f\xc2\xbf\xbb\xbb\x4b\x84\x85\xe3\x0f\ \x4f\x6f\xfe\x60\x04\xbb\x3d\x7b\x01\x14\x17\xdb\x8a\x28\x1b\x23\ \x7a\xf4\xe8\x79\xcc\xcb\x03\xf8\x0a\xb6\xed\x7f\x99\x9c\x7c\x8b\ \xc5\xf6\xde\xb3\x5e\xe9\xd5\xff\x2a\x15\xae\xbc\x1d\x43\x67\x8b\ \x63\x61\x37\x33\xfc\x97\x1f\xb1\x0f\x8c\xf5\x6b\x40\xde\xcd\xc6\ \x88\x1e\x3d\x7a\x1e\xf7\x7a\x60\x9b\x8f\xca\xa2\xd5\x9b\xd8\xde\ \x7b\x32\xfc\x23\x45\x43\x4d\x05\x2b\x6f\xc3\xd0\x37\x06\xb2\xb0\ \x9b\x19\xfe\x2b\xe7\x9c\x0c\x63\x6f\x60\xf8\xd3\xa3\x47\xcf\x27\ \x5e\x17\x8c\xbd\x21\xfb\xa7\xce\x93\xd9\xde\x7b\x2e\xfc\xa3\x4e\ \x4f\xc6\x58\xb8\x14\xfe\xa5\xb9\x02\x58\xd8\x4d\xf2\xf4\xbe\x79\ \x13\x91\x4e\xff\x37\x14\x1f\x63\x63\x44\x8f\x1e\x3d\x3f\x7a\x99\ \x3c\x6e\xb8\x69\x4d\xfb\x85\xb7\x3e\x68\x76\xb2\xbd\x6f\x79\xf8\ \xc7\x4b\x67\xfe\x28\xce\x12\x28\xa3\x2c\x9c\x28\x0e\x15\x88\x63\ \x04\x80\x85\xdd\x8c\xf0\x5f\xde\xf9\x56\x18\xfc\x1e\xc0\xdb\xd8\ \x18\xd1\xa3\x47\xcf\xcf\x9e\xad\x78\xf2\xa9\xd7\x22\xa7\x5e\x74\ \x63\xdb\x7a\xb6\xf7\x2d\xf3\xe2\xa5\xdd\x53\xea\x00\xa4\x52\x3d\ \x96\x8c\xd2\x53\x70\x9e\xf9\x03\x15\x4c\x2c\xc0\xc2\xae\x43\xf8\ \xaf\x9c\x73\x12\x20\xbf\x00\x30\x91\x8d\x07\x3d\x7a\xf4\x02\xe2\ \xed\x34\xd0\xd3\xc7\xf3\xce\x00\xe6\x47\xdd\xbc\xa4\xfb\xcc\x3f\ \x95\xea\xc9\x03\xae\xd9\x00\xcb\x5d\x23\x40\x85\xb3\x0a\xb1\xb0\ \x6b\xf3\x74\x55\x57\x54\x53\x9d\x97\x00\x72\x2b\xc3\x9f\x1e\x3d\ \x7a\x01\xf3\x26\x42\xe4\xf7\xba\xb2\xf3\xbb\xba\xaa\x2b\xca\xfc\ \x68\x9a\xd7\x56\xc6\x1b\x7c\x42\xc3\x7d\x13\x60\xa4\xcc\xc2\x03\ \x2c\xec\x06\x87\xff\xd2\xc3\x67\xc0\xda\xb9\x1c\x8a\x0b\xd9\x78\ \xd0\xa3\x47\x2f\xc0\xde\x45\xc8\xf7\x2e\xd3\xa5\x87\xcf\x60\x7e\ \x34\xdc\x6b\x2f\xe3\xe5\x9d\x33\xff\x8a\xe3\x0b\x11\xec\x1a\xf2\ \x2f\x75\x0c\xb2\x2c\xec\x06\x87\x7f\xe1\xc5\x3e\xb7\x02\xd8\x87\ \x8d\x07\x3d\x7a\xf4\x42\xe2\x6d\x82\x98\x0f\x48\xf7\xea\xd5\xcc\ \x8f\x86\x79\xc0\xae\x6b\xfe\x16\x80\x8c\x33\xfc\x07\x47\x00\x8a\ \x43\xff\x70\xad\x3c\xc3\xc2\x6e\x70\xf8\xaf\x9c\xf3\x09\xa8\x7d\ \x1f\xc3\x9f\x1e\x3d\x7a\x21\xf3\xf6\x81\xda\xf7\xe9\x8a\xce\xb3\ \x98\x1f\x4d\xf1\x86\x85\x3f\x50\xb8\xde\x8f\x32\x0b\xe7\xca\x2d\ \xcc\xc2\xae\x8f\xa7\xab\xba\x92\xc8\xed\xbc\x12\xc0\xc7\xd9\x78\ \xd0\xa3\x47\x2f\xa4\x5e\x1c\x82\x9f\x6b\xaa\xf3\x48\x44\x26\x9e\ \xbb\xe0\xdb\xc8\x32\x3f\x1a\xe2\xa5\x47\xca\x73\x53\xe6\xcc\x3f\ \xcf\xf0\x6f\x60\xf8\xaf\x38\x7c\x4f\xe4\x77\xfc\x19\xc2\xf0\xa7\ \x47\x8f\x1e\x3d\x28\xce\xb2\x73\x3b\xfe\x7c\xd1\x92\xfe\x03\x99\ \x1f\x75\xf5\x6c\x8c\x71\x0f\x9f\xbb\x03\x60\x31\xfc\x1b\x18\xfe\ \x2b\x3b\x0f\x81\x98\x87\x00\x39\x82\x8d\x07\x3d\x7a\xf4\xe8\x95\ \x3c\x73\xc4\x3b\x0f\xb0\xef\xb9\xf4\x83\x03\x6f\x67\x7e\xd4\xcd\ \x1b\xf3\xe9\x3d\x29\x02\x52\x4d\xf0\xb3\xb0\xc7\x11\xfe\xa9\xb9\ \x0b\xa0\xfa\xff\x00\x4c\xe2\xc1\x4e\x8f\x1e\x3d\x7a\xc3\x3d\x55\ \xec\x7c\xbd\x37\x72\xda\x27\xaf\x6d\xbb\x8b\xf9\xd1\x78\xaf\x8a\ \x5d\xc6\xc2\x1e\xff\x99\xff\xdc\x33\x01\xfd\x19\x76\xdd\x73\xc1\ \x83\x9d\x1e\x3d\x7a\xf4\xca\x7b\x79\x23\xf2\x29\x59\xb0\xe6\x3a\ \xe6\x47\x63\x3d\xc3\xf0\x6f\x9c\xa7\x0a\xd1\x95\x73\xbe\x05\xe8\ \xb5\x0c\x7f\x7a\xf4\xe8\xd1\xab\xc8\x8b\x02\x7a\xad\xae\xec\xfc\ \xa6\x2a\x38\x65\x7d\x03\xbd\xaa\x46\x00\x58\xd8\x15\x84\xff\xd2\ \x03\x13\x88\x4d\xbe\x0e\xc0\x87\x79\xb0\xd3\xa3\x47\x8f\x5e\x55\ \xde\x6f\x91\x7b\xe3\xe3\xb2\xf8\xe9\x0c\xf3\xa8\xfe\x9e\xb0\x70\ \x1a\x10\xfe\xcb\x8e\xde\x0d\xd1\xdc\x6d\x50\x7d\x17\x0f\x76\x7a\ \xf4\xe8\xd1\xab\xc1\x13\xf9\x33\xf2\xb1\xf7\xcb\xf1\x0f\x6e\x65\ \x1e\xd5\xd7\x13\x16\x4e\x9d\xc3\x3f\x75\xc4\xfe\x50\x7b\x29\x80\ \x83\x78\xb0\xd3\xa3\x47\x8f\x5e\x5d\xbc\x27\x21\x66\xb1\x74\xaf\ \x7e\x96\x79\x54\x1f\x6f\x5c\x1d\x00\x16\x76\x05\xe1\xbf\xe2\xf0\ \xb9\x10\xb3\x14\xc0\x0c\x1e\xec\xf4\xe8\xd1\xa3\x57\x57\xef\x75\ \xa8\xbd\x58\x16\xae\x5f\xc3\x3c\xaa\x3d\xfc\xbb\xbb\xbb\x84\x37\ \x58\xd4\x2b\xfc\x57\x76\x1e\x0b\x60\x29\x8a\x33\xf9\xf1\x60\xa7\ \x47\x8f\x1e\xbd\xba\x7b\x3b\x33\x79\x2c\x59\xf2\xfd\x89\x8f\x30\ \x8f\xaa\xf6\x4a\xf3\xfd\xa8\xa9\x70\xe5\xed\x2c\xec\xd1\x86\xfd\ \xe7\x2e\x00\xb0\x82\xe1\x4f\x8f\x1e\x3d\x7a\x0d\xf5\x26\x5a\x96\ \x2c\xbb\xea\x8c\x81\xe3\x98\x47\x55\x87\x7f\xa4\xf4\xb3\xa9\x60\ \xe5\x6d\xae\xe5\x58\xd8\xce\xff\xb9\x7c\xce\x7b\xa1\x7a\x57\xb1\ \x9c\x78\xb0\xd3\xa3\x47\x8f\x5e\x23\x3d\xa0\x6d\x8f\xc9\xd6\x4d\ \x57\x9f\xd1\x7b\x02\xf3\x68\xdc\xe1\x1f\x75\x7a\x32\xc6\xc2\xa5\ \xf0\x2f\x4d\x13\xcc\xc2\x1e\x72\xe6\x3f\xe7\x14\xa8\xfc\x06\xae\ \x67\xfc\x79\xb0\xd3\xa3\x47\x8f\x5e\xc3\xbd\x7c\x2c\x6a\x7f\x24\ \xbe\x68\xdd\xef\x98\x47\x15\x85\x7f\xbc\x68\x28\x0a\xf3\x04\xd8\ \x66\x94\x85\x13\xe0\xb0\xff\x28\xd7\xfc\xe7\x9e\x09\x95\x1b\x19\ \xfe\xf4\xe8\xd1\xa3\xd7\x12\x2f\x1a\x33\xf2\x5b\x5d\x39\xe7\x0c\ \x86\xff\x98\x9e\x3b\xcf\x91\x4a\xf5\x0c\xbf\x07\xc0\xd1\x53\x70\ \xcf\x2a\xc4\xf0\xdf\x15\xfe\xe7\x14\xdf\xee\x27\x3c\x38\xe9\xd1\ \xa3\x47\xaf\x65\x9e\x01\xe4\x3a\x5d\x31\xe7\x33\x0c\xff\x11\xbd\ \xa4\xdb\x4b\xa5\x7a\xac\x62\xe1\x0d\x0b\xff\x28\xaa\x98\x55\x28\ \x34\xe1\xbf\xa2\xf3\x42\x40\x7f\xc4\x83\x93\x1e\x3d\x7a\xf4\x3c\ \xe2\x89\x5c\xa9\xa9\xb9\x17\x30\xfc\x87\x79\x6d\x65\x3c\xab\xf4\ \x83\x7b\x04\x20\x52\x66\xe1\x01\x86\x7f\xe9\xbd\xfe\x9d\xdf\x84\ \xe0\x12\x1e\x9c\xf4\xe8\xd1\xa3\xe7\x31\x4f\xf5\x52\x5d\xd1\x79\ \x71\xb9\xf9\x03\x42\x1a\xfe\xe5\x9e\xde\xcb\x3b\x67\xfe\x35\x8e\ \x2f\x94\x0b\xff\x34\xc3\xbf\xf8\x49\x75\x5e\x0c\xe0\xcb\x3c\x38\ \xe9\xd1\xa3\x47\xcf\xa3\x9e\xe0\x2b\x58\xd9\xf9\x0d\x86\x3f\x3a\ \x30\xfc\xe9\xbd\xac\x33\xfc\x07\x3b\x00\xc5\xa1\x7f\xb8\x16\xce\ \x30\xfc\x8b\xff\x73\x65\xe7\x45\x0c\x7f\x7a\xf4\xe8\xd1\xf3\x81\ \x27\xf8\x4a\xe1\x52\x2d\x5f\x62\xe7\xca\x73\x75\x2f\x6f\x06\x8b\ \x6c\x8c\x9e\x42\x78\xc3\x7f\xee\x39\x00\xbe\xcb\x83\x93\x1e\x3d\ \x7a\xf4\x7c\xe2\x09\x2e\xc9\x2d\x9b\x73\x0e\xc3\x7f\x70\x24\xbf\ \x6c\x9e\x9b\x32\x67\xfe\x79\x86\xff\x60\xf8\x9f\xc9\x1b\xfe\xe8\ \xd1\xa3\x47\xcf\x7f\x5e\xd6\x32\x3f\xfa\xc5\x27\x7b\x4f\x0b\x71\ \xf8\xdb\x18\xe3\x1e\x3e\x77\x07\xc0\x62\xf8\x17\xff\x67\x6a\xee\ \xbf\x01\x7a\x0d\x0f\x26\x7a\xf4\xe8\xd1\xf3\xa7\x37\xa5\x1d\x3f\ \xba\xee\x13\xbd\x27\x85\xf4\xcc\x7f\xcc\xa7\xf7\xa4\x08\x48\x35\ \xc1\x1f\xd8\xf0\x5f\x31\xf7\x44\x88\xde\x0a\xbe\xe4\x87\x1e\x3d\ \x7a\xf4\xfc\xee\xe5\x63\x62\xff\x9f\xf8\xe2\x75\x77\x30\xdf\xca\ \x74\x00\xaa\xfd\x04\xf3\xcc\xff\x88\x6e\xa8\xfd\x47\x14\x5e\x86\ \xc4\x83\x89\x1e\x3d\x7a\xf4\xfc\xef\x65\x20\x66\x89\x74\xaf\x4e\ \x31\xfc\xeb\xd0\x01\x08\xf0\x94\xbe\xcb\x51\x78\x7e\x92\x07\x13\ \x3d\x7a\xf4\xe8\x05\xc7\xeb\x07\xb0\x48\x16\xac\xbd\x8f\xe1\x5f\ \x43\x07\x20\x98\xc3\xfe\x87\xcf\x85\x98\x7b\xc0\x29\x7d\xe9\xd1\ \xa3\x47\x2f\xa8\xde\x0e\xa8\x3d\x5f\x16\xae\x5f\x13\xf6\xf0\xaf\ \xaa\x03\x10\xd0\x61\xff\xfd\xa1\xf6\x43\x00\x66\xf0\x60\xa2\x47\ \x8f\x1e\xbd\x40\x7b\xaf\x43\xcc\x51\xd2\xbd\xfa\xd9\x30\x87\x3f\ \x30\xfc\x29\x80\xf0\x85\xff\xb2\xa3\x77\x83\xda\x4b\x19\xfe\xf4\ \xe8\xd1\xa3\x17\x0a\x6f\x06\xd4\x5e\xaa\xcb\x8e\xde\x2d\xcc\xe1\ \x3f\xae\x0e\x40\x20\xc3\x7f\xe9\x81\x09\x44\x73\xb7\x01\x38\x88\ \x07\x13\x3d\x7a\xf4\xe8\x85\xc6\x3b\x08\x91\xcc\xef\x75\xe9\x81\ \x89\xb0\x86\x7f\x77\x77\x97\x44\x42\x1b\xfe\x0a\xc1\xf3\xb3\x7e\ \x09\x60\x09\x0f\x26\x7a\xf4\xe8\xd1\x0b\x9b\x27\x33\x11\x49\xce\ \xc2\xfe\xd3\xee\xd8\xb4\xa9\x3d\x4c\x6f\x0c\x94\xfd\xf7\x9f\x19\ \xa9\x68\x04\x60\x94\x59\x85\xfc\x5d\x38\x85\xc9\x7d\x3e\xcc\x83\ \x89\x1e\x3d\x7a\xf4\x42\xeb\x9d\x7a\xee\xa1\xc9\xef\x84\x29\xfc\ \x51\x98\xf5\x17\x70\xfe\xc7\x28\x2b\x6f\xc3\xd0\x69\x82\x7d\x5f\ \x38\x85\x57\xfc\xe2\xfb\xac\xfc\xf4\xe8\xd1\xa3\x17\x6e\x2f\x1a\ \xc1\xbc\xe3\x67\x67\x37\xdd\xbe\x36\xfe\x58\x08\xc2\x3f\x5a\xf4\ \x14\x18\xe5\x29\x80\xe2\xc2\x6d\xc5\x51\x02\xe3\xf8\x92\xbf\xc3\ \x3f\x35\x77\x01\x54\x97\xc2\xf5\x96\x3f\x1e\x4c\xf4\xe8\xd1\xa3\ \x17\x5a\x2f\xff\xda\xce\xc8\x07\x3e\x79\x6d\xdb\x5d\x01\x0e\xff\ \x78\xd1\x50\x14\xe6\x09\xb0\x65\x94\x85\x13\x8e\x33\xff\xd2\xa5\ \x02\x9f\x9f\xf9\x77\x1e\x02\xe0\x3e\x00\x93\x58\xf9\xe9\xd1\xa3\ \x47\x8f\x9e\xc3\xdb\x61\x54\xe6\xc9\xa2\x35\x8f\x07\x2c\xfc\x0d\ \x76\xbd\xd9\xd6\x2e\x75\x00\x52\xa9\x1e\xcb\x8c\xd2\x53\x70\xcf\ \x2a\xe4\xef\xf0\x5f\x71\xf8\x9e\x00\xfe\xc8\xf0\xa7\x47\x8f\x1e\ \x3d\x7a\x65\xbc\x49\x30\xba\xb4\x98\x15\x41\x0a\xff\xa4\xdb\x4b\ \xa5\x7a\x2c\xc0\x75\x13\xa0\xeb\x1a\x81\x73\xe5\xfd\xbe\x0e\xff\ \x55\x5d\x49\x88\xdc\x0e\x60\x1f\x56\x7e\x7a\xf4\xe8\xd1\xa3\x37\ \x82\xb7\x0f\x44\x6e\xd7\x55\x5d\xc9\x80\x84\x7f\x5b\x19\xcf\x2a\ \xfd\xe0\x1e\x01\x88\x94\x59\x78\xc0\xf7\xd7\x44\xac\x9d\x3f\x02\ \xe4\x08\x56\x7e\x7a\xf4\xe8\xd1\xa3\x37\xba\x27\x47\x20\xbf\xf3\ \xbf\x03\x10\xfe\xe5\x9e\xde\xcb\x3b\x67\xfe\x35\x8e\x2f\x94\x0b\ \xff\xb4\xdf\xc3\x5f\x57\x74\x9e\x05\xc5\x59\xac\xfc\xf4\xe8\xd1\ \xa3\x47\xaf\x42\xef\x13\x9a\x9a\xfb\x71\x1f\x87\x7f\x87\xeb\x04\ \x5f\x01\x64\x9d\xe1\x8f\xd2\x0a\x8b\x43\xff\xce\xbb\xfd\xa5\xdc\ \xc2\xbe\x0b\xff\xd4\x11\x47\x40\xed\xfb\xe0\x98\xda\x97\x95\x9f\ \x1e\x3d\x7a\xf4\xe8\x55\xe0\x65\xa0\xf6\xb1\xce\x89\x83\x7c\xf6\ \x52\xbc\xc1\xbb\xfd\x51\x18\xc9\x1f\x96\xe7\xc6\xd9\x11\x18\xad\ \xa7\xe0\xbb\xf0\x5f\x7a\xf8\x0c\xa8\x7d\x2b\xc3\x9f\x1e\x3d\x7a\ \xf4\xe8\x55\xe1\x25\x20\xe6\x56\x5d\xd5\x39\xdd\x87\xe1\xef\xf4\ \xd2\x23\xe5\xb9\xfb\x1e\x80\x61\xd7\x08\x7c\x19\xfe\xab\xba\xa2\ \x88\x45\x6e\x84\xe3\xa6\x3f\x56\x7e\x7a\xf4\xe8\xd1\xa3\x37\x4e\ \x6f\x5f\xe4\xf5\xc6\xdb\xbf\xb6\x24\xe6\xc3\xf0\x2f\x9d\xf9\x8f\ \xe8\xb9\x3b\x00\x96\xdf\xc3\xbf\xf0\x57\xec\xfc\x16\xa0\xf3\x59\ \xf9\xe9\xd1\xa3\x47\x8f\x5e\x6d\x9e\x74\xff\xf3\x61\xaf\x5c\xe2\ \xc3\x33\xff\x31\x9f\xde\x1b\xbc\x07\xa0\x9a\xe0\xf7\x62\xf8\xeb\ \xca\x39\x27\x01\x72\x2b\x2b\x3f\x3d\x7a\xf4\xe8\xd1\xab\x97\xb7\ \x79\x07\x4e\x3b\xeb\xba\x8e\xbb\x10\xa0\xd7\x05\x57\x51\x24\x1e\ \x0e\xff\xe5\x9d\x6f\x85\xc1\xea\xa2\xc1\xca\x4f\x8f\x1e\x3d\x7a\ \xf4\xea\xe2\x29\xd0\xfb\xd4\x4b\xe6\xb8\x0b\x6f\x6e\x5f\x17\x94\ \xd7\x05\x57\xdd\x01\xf0\x5c\xf8\xdf\x37\x6f\x22\x06\xd2\x0f\x03\ \x78\x1b\x2b\x2b\x3d\x7a\xf4\xe8\xd1\x6b\x80\xf7\x37\xd3\x9e\x3c\ \x52\x8e\xbd\x7f\xa7\xdf\xc3\x1f\xa8\x60\x3a\x60\xdf\xfc\x31\xe9\ \xf4\x7f\x33\xfc\xe9\xd1\xa3\x47\x8f\x5e\x03\xbd\xb7\x61\x20\xf3\ \x5f\x41\x08\xff\xaa\x46\x00\xbc\xf8\xc7\xe8\xca\x39\x27\x03\x72\ \x13\x2b\x2b\x3d\x7a\xf4\xe8\xd1\x6b\xb8\xa7\x38\x59\x16\xae\xbd\ \xc5\xcf\xe1\x3f\xee\x0e\x80\x37\xc3\xbf\x73\x5f\x00\x8f\x02\x98\ \xc2\xca\x4a\x8f\x1e\x3d\x7a\xf4\x9a\xe0\x6d\x87\x6d\x66\xcb\xa2\ \xd5\x9b\xfc\x1a\xfe\xc0\x38\x2e\x01\x78\x32\xfc\x6f\xfe\x60\x04\ \xd0\x5f\x31\xfc\xe9\xd1\xa3\x47\x8f\x5e\x13\xbd\x29\x30\xd6\xaf\ \x0b\x19\xe4\xcf\xf0\xef\xee\xee\x92\xa8\x5f\xc3\x1f\x00\x30\xf5\ \xd9\x2f\x02\xf2\x6e\x56\x56\x7a\x2d\xf7\xec\x0e\xe8\xc4\x99\x40\ \x7c\x32\x10\x9d\x04\x89\xb6\x21\x99\x88\xc0\x88\x54\xe1\x29\xd2\ \x19\x6b\xf8\xf6\x85\xcd\x8b\xa4\x61\xf2\x3b\x80\xdc\x76\xa0\xf7\ \x59\xc0\xea\x67\xfd\xa3\xe7\x21\x4f\xde\x8d\x29\xcf\x7e\x01\xc0\ \xa5\x7e\x0a\x7f\xc7\xab\xff\x55\x2a\x5c\x79\x3b\x0a\x33\x05\x7a\ \xe6\x8f\xd1\x15\x87\xcf\x85\x98\x07\x6d\x45\x94\x95\x95\x5e\x4b\ \xbc\xf6\x7d\x61\xef\xfd\x41\xa4\xdb\x0f\x85\xb6\xed\x3b\x58\xa5\ \x45\x04\xc9\x64\x12\xc6\x8c\xff\x1e\x5b\xdb\xb6\x91\x4e\xa7\xa1\ \x8e\x0d\xa4\x07\x40\x6d\xa0\xf7\x69\x60\xdb\x1a\xe0\x1f\xbf\x07\ \xfa\x9e\x63\xfd\xa3\xe7\x05\x2f\x0f\x5b\x8f\x92\x45\xeb\xd6\xfa\ \x28\xfc\x23\x45\x63\xf4\x0e\x80\x63\x3e\x61\xe7\x4c\x81\xad\x0f\ \xff\xe5\xb3\x27\xc0\xc4\xd6\xdb\x8a\x37\xb3\xb2\xd2\x6b\xba\x37\ \x79\x36\x30\xf3\x63\xb0\xa7\xcd\x43\x3a\x9d\x61\x58\x37\xdb\x53\ \x1b\x78\x75\x39\xb0\xf1\xda\x21\x1d\x01\xd6\x67\x7a\x2d\xf2\x9e\ \x82\x9d\x9b\xb3\xe0\xb2\xdd\x06\x7c\x10\xfe\xa5\x51\x7f\x1b\x80\ \x9a\x31\x16\x4e\x7a\xf2\x8f\x89\xc4\x7e\xc8\xf0\xa7\xd7\x12\x6f\ \xaf\x93\x80\xb9\xd7\xc0\x9e\x76\x2c\xc3\xbf\x55\x9e\x18\x60\x8f\ \x13\x80\xa3\x6e\x2e\xfc\x9b\xf5\x99\x5e\x6b\xbd\xb7\x58\x88\xfd\ \xd0\x07\xe1\x1f\x77\x7b\x91\x51\x16\x4e\x60\xe8\xf4\xc0\xf0\xc2\ \x1f\xa3\x2b\xe7\x9c\x64\xab\x5c\xca\xca\x4a\xaf\xb9\x9e\x00\x07\ \x9e\x03\xbc\xf9\xdc\xc2\x35\x6b\x86\x75\xeb\x3d\x11\x60\xf7\xe3\ \x60\x67\xb6\x21\xbd\xe5\x6f\xac\xcf\xf4\x5a\xe6\x65\xf2\x32\xa7\ \xfb\xed\xd9\xbf\xde\xb9\x3e\xfe\x94\x07\xc3\xdf\x14\xf3\xbc\x34\ \x45\x30\x00\x68\x2a\xd5\x63\x47\x46\xe9\x29\x38\xc3\x5f\x01\xf4\ \xb5\x3c\xfc\xef\x3e\x74\x2f\xdb\x8e\xfc\x29\x9d\x93\x36\x56\x56\ \x7a\x4d\xf5\xf6\x38\x01\x78\xcb\xf9\x0c\x6b\xcf\x79\x8a\x74\x47\ \x27\x74\xf3\x83\x40\x76\x0b\xeb\x33\xbd\x96\x79\x6d\x71\x1c\xb7\ \xf7\x6e\xd6\xcd\x0f\x3e\x1d\xdb\xe9\xb1\xf0\x4f\xba\x2c\x4d\xa5\ \x7a\x2c\xc0\xf5\x18\xa0\xe3\x1a\xc1\xb8\x67\x15\x6a\x78\xf8\x2b\ \xc4\xb6\xa2\x3f\x4b\xe7\x64\x37\x56\x56\x7a\x4d\xf5\x4c\x1c\x78\ \xcb\xe7\x18\xd6\x5e\xf6\xf6\xff\x14\x00\x61\x7d\xa6\xd7\x32\x4f\ \x04\x53\x8f\x79\x8b\xfd\x83\x79\xf3\x36\xf7\x79\x28\xfc\xdb\xca\ \x78\xd6\x60\xd3\xe6\xfa\x4e\xa4\xcc\xc2\x03\x5e\xf8\x63\x72\xcb\ \xe7\x9c\x9c\xce\xc9\x7b\x58\x59\xe9\x35\xdd\x9b\xd1\x05\x3b\x3a\ \x95\x61\xed\x65\x6f\xea\x1c\xc8\x94\x77\xb0\x3e\xd3\x6b\xa9\xd7\ \x91\xb0\x4f\xf8\xfa\xbc\xc4\x49\x1e\x09\xff\xf6\x32\x5e\xde\x39\ \xf3\xaf\x71\x7c\xa1\x5c\xf8\xa7\xbd\x10\xfe\xaf\xdf\x72\xcc\xf4\ \x6c\xde\xfc\x88\x95\x95\x5e\x4b\xbc\xa9\x73\x19\xd6\x7e\xf0\xde\ \x74\x34\xeb\x33\xbd\xd6\x7b\x82\x2b\x75\xd9\xd1\xbb\xb5\x38\xfc\ \x3b\x5c\x27\xf8\x0a\x20\xeb\x0c\xff\xc1\x0e\x40\x71\xe8\x1f\xae\ \x85\x33\x5e\x19\xc6\x88\xc6\x73\x57\x00\x98\xc1\xca\x45\xaf\x25\ \x9e\xec\xce\x70\xf5\x83\x37\x61\x3f\xd6\x67\x7a\x5e\xf0\x76\x47\ \x24\x73\x59\x8b\xc3\x5f\xca\xe4\xb9\xba\x97\x2f\x1d\x81\x32\x56\ \x4f\xa1\x55\x7f\xcc\xd5\x1f\x1f\x58\x12\x8b\xe8\x69\xac\x5c\xf4\ \x5a\xe6\x45\x3b\x18\xae\x7e\xf0\x62\x93\x59\x9f\xe9\x79\xc4\x93\ \x33\x75\xc5\xe1\xf3\x3d\x12\xfe\xe9\x91\xf2\xdc\x94\x39\xf3\xcf\ \x7b\x25\xfc\x97\x1c\x92\x9b\x31\xbd\xc3\xfa\x2f\x56\x2e\x7a\xad\ \xf5\xf8\x86\x3f\x7f\x78\xc2\xfa\x4c\xcf\x3b\x9e\x98\x9f\xe9\x1f\ \x3a\xdb\x5b\x18\xfe\x36\xc6\xb8\x87\xcf\x7d\x24\x5a\x5e\x09\x7f\ \x00\x1d\xa7\xfe\x73\xf6\x3f\x8d\x60\x26\x2b\x17\xbd\xd6\x7b\x0c\ \xeb\xc0\x78\xac\xcf\xf4\x9a\xe3\x1d\x80\x84\x7e\xad\x85\x67\xfe\ \x63\x3e\xbd\x57\x3a\x7a\x34\x95\xea\xf1\x54\xf8\x7f\xff\xd4\xfe\ \xc3\xda\xe2\x7a\x0e\x2b\x17\x3d\x86\x3f\x3d\x86\x3f\x3d\x5f\x7a\ \x22\xff\xa1\x77\x77\xce\x69\x41\xf8\x57\xe4\x19\x00\xa8\x26\xf8\ \x1b\xf9\xc7\xbc\x63\xa6\x15\x9f\x39\xcd\xbe\x12\x28\x4c\x2e\xc6\ \xca\x45\xaf\xa5\x5e\x32\xc1\x70\x65\xf8\xd3\xa3\x57\x8d\x17\x81\ \x8d\x6b\x74\x55\x57\xd4\x8b\x13\x05\x8d\xff\x28\x6a\x42\x4f\xe6\ \xa2\x13\xd2\x9f\x8e\x18\x1c\xc2\xca\x45\xcf\x1b\x5e\x15\x53\xdc\ \x32\xac\x19\xfe\xf4\xe8\x15\x3e\x87\x5b\xd9\x1d\xe7\xc3\x83\x73\ \x05\x54\xd5\x01\x68\x64\xf8\x7f\xe9\x7d\xfd\xfb\x4c\x48\xe8\xff\ \x65\xe5\xa2\xe7\x5b\x8f\x61\xcd\xf0\xa7\x47\xcf\xe1\x65\x72\xe6\ \x1b\x5f\x7a\x5f\xff\xbe\x5e\x0a\x7f\x60\xd7\xd4\x80\x9e\x08\x7f\ \x00\x38\x6c\x5f\xfb\x62\x23\x48\xb2\x72\xd1\x0b\x54\xf8\xa7\xff\ \x0a\xb3\x73\x5b\x15\xdb\xa7\x48\xa7\x73\x65\xc2\x30\x06\xb3\x53\ \x82\xe3\x25\xdf\x04\x4c\x3e\x84\xe1\x4f\x2f\x98\x1e\x90\x3c\x74\ \x1f\xfd\x06\x80\x33\xe1\xa1\x89\x82\xa2\xad\x5c\xb9\xdb\xbb\xf2\ \xf4\xbe\x63\xe2\x51\xbc\x9f\x95\x8b\x5e\xe0\xce\xfc\xff\x76\x0d\ \xb0\x6d\x2d\xcb\x6f\xa4\xcf\x3f\x2d\x84\x7d\xf0\xc1\x0c\x7f\x7a\ \x81\xf5\xe2\x51\x3d\xe9\xaa\x33\xfa\xae\x3e\xfb\xfa\x09\x2b\xbd\ \x10\xfe\xc0\x38\x2e\x01\x34\x3a\xfc\xf7\x99\x12\x89\xec\x35\x45\ \x2f\x61\xe5\xa2\x17\xb8\xf0\x67\x78\x55\xe6\xb1\xfc\xe8\x05\xdc\ \xdb\x7f\x86\xfd\x9d\x95\xc7\xf6\x8c\xdb\x6b\x44\xf8\x77\x77\x77\ \x49\xb4\x15\x2b\x2f\xe7\x7d\xe7\x43\x3b\x3f\xd4\x9e\xd0\xd9\xac\ \x5c\xf4\x18\xfe\x21\xdc\x1f\x19\x8b\xe5\x47\x2f\x0c\xde\x1c\xcc\ \x9b\xfb\x31\x60\xcd\x75\x2d\x3c\xf9\x96\xe2\xc9\xbf\x9a\x0a\x57\ \xde\xde\xc8\xf0\x3f\xed\xa8\x7c\xc7\xee\x13\xad\xaf\xb2\x72\xd1\ \x63\xf8\x73\x7f\xb0\xfc\xe8\x05\xdb\xd3\xef\xea\xd2\x23\x27\xb5\ \x30\xfc\x23\xa5\x9f\x4d\x05\x2b\x6f\xc3\xf0\x59\x85\xea\x7a\x03\ \xc3\x69\xff\x9c\xfe\x9c\x11\xec\xce\xca\x45\x8f\xe1\xcf\xf0\xaf\ \xbe\xfc\x94\xe5\x47\xcf\x0f\xde\xee\x88\xe6\xbe\xd4\xa2\xf0\x8f\ \x3a\x3d\x33\xc6\xc2\x49\x34\xf8\xb9\xc5\x3b\xce\x7b\xe3\x4d\x11\ \xa3\xe7\xb1\x72\xd1\x63\xf8\x33\xfc\x6b\x7b\x74\x30\xcb\xfa\x4c\ \xcf\x1f\x9e\xc8\xe7\x74\xd9\x9c\x03\x9b\x1c\xfe\x71\xb7\x67\x46\ \x59\x38\x81\x26\xbc\xb4\xa0\x3d\x29\xdf\x03\x10\x63\xe5\xa2\xc7\ \xf0\x0f\xf9\xfe\xa8\xeb\x7b\x03\x58\x9f\xe9\x79\xda\x8b\x23\x22\ \x97\x37\x29\xfc\x4d\x99\x3c\x47\x2a\xd5\x33\xbc\x03\x30\x42\x4f\ \xc1\x6e\x44\xf8\xaf\xbc\xa8\x77\x3e\x20\x27\xb2\x32\xd0\x63\xf8\ \x87\x7c\x7f\x24\x22\x0c\x7f\x7a\x61\xf3\xde\xa7\xa9\x23\xba\x9b\ \x10\xfe\xc3\x46\xf2\x53\xa9\x1e\x0b\x70\x5d\x02\x28\x77\x8d\x00\ \x15\xce\x2a\x34\xee\xf0\xff\x12\x0c\x6c\xbd\x82\x95\x81\x1e\xc3\ \x9f\xfb\xa3\x7e\xfb\x83\xe5\x47\xcf\x47\x9e\x6d\xff\x50\x57\x75\ \x45\x1b\x18\xfe\x6d\x65\x3c\xab\xf4\x83\xbb\xd5\x8a\x94\x59\x78\ \xa0\x21\x2f\x2d\xc8\xf7\x7e\x14\x82\x83\x59\x19\xe8\x31\xfc\xb9\ \x3f\xea\xb6\x3f\x58\x7e\xf4\xfc\xe4\x09\x0e\x46\x7e\xc7\x47\x1a\ \x14\xfe\xe5\x9e\xde\xcb\x3b\x27\xff\x33\x8e\x2f\x94\x0b\xff\x74\ \x23\xc2\x5f\x6f\x3e\x38\x0e\xe8\x57\x59\x19\xe8\xf9\xc3\x53\x86\ \xbf\x2f\x3a\x63\x71\x96\x1f\x3d\xff\x79\x90\xaf\x1e\xb9\x6f\x76\ \x2a\xea\x7f\xcf\x9d\xfb\xe9\xbd\xac\x7b\xe6\x5f\x53\xfc\x82\x7b\ \xb3\x15\x40\xa6\x61\xaf\x2b\x9c\x92\x3c\x13\xc0\x7e\xac\x0c\xf4\ \xfc\xf1\x86\xba\x0c\xc3\xdf\x0f\x23\x31\xd5\xcc\xda\xc8\xfd\x41\ \xaf\xd5\x5e\x56\x66\x7e\x7a\x71\xfe\x23\x75\x0e\x7f\x29\x93\xe7\ \xea\x5e\xde\x0c\x0e\x44\x8c\xd1\x53\xa8\x57\xf8\xeb\xaa\xae\x24\ \x80\x2f\xb1\x32\xd0\xf3\x8f\xc7\xf0\xe7\x65\x18\x7a\xf4\x1a\xe7\ \x4d\x8c\xdb\x5f\x3c\x6a\xff\x74\xa2\x41\xe1\x9f\x1e\x29\xcf\x4d\ \x99\x33\xff\x7c\xa3\xc2\x1f\x00\x90\xdf\xf9\x09\x08\xf6\x66\x65\ \xa0\xc7\x37\xd4\x71\x7f\x30\xfc\xe9\xd1\x03\x8c\xc1\x9e\xe7\x2e\ \xb2\x3e\x5a\xe7\xf0\xb7\x31\xc6\x3d\x7c\xee\x23\xc7\x6a\x64\xf8\ \xeb\x1f\x3a\xdb\x01\xfc\x27\x2b\x03\xbd\xd0\xbd\xa4\x26\x6b\x73\ \x7f\x30\xfc\xe9\xd1\x1b\xd1\x9b\x3e\xd1\x3e\x7f\xe5\xc5\x99\x44\ \x1d\xf3\x77\xcc\xa7\xf7\x4a\x93\x01\x69\x0d\x33\x0a\x55\x7e\xf7\ \x62\x02\x67\x03\xd8\x83\x95\x81\x5e\xb8\xde\x50\x97\xe6\xfe\x60\ \xf8\xd3\xa3\x37\x96\xf7\x26\xf4\x67\xcf\x06\xf0\x83\x86\xe4\xef\ \x48\x23\x00\xd5\x9c\xf5\x8f\x77\xe5\xba\xea\xe0\x0e\x08\x2e\x64\ \x65\xa0\xe7\xbf\x37\xd4\x25\xf8\x92\x1a\x86\x3f\x3d\x7a\x8d\xf7\ \x14\x17\xe9\xf2\xd9\x13\x9a\x11\xfe\x83\x1d\x80\x86\x9f\xf9\x03\ \x40\x3e\x79\x0e\x80\x19\xac\x0c\xf4\xfc\xe7\x55\x71\x77\x39\xc3\ \x9f\xe1\x4f\x8f\xde\xf8\xbd\x19\x90\xd8\x39\xcd\x08\xff\xaa\x3b\ \x00\xe3\x5d\x79\x71\xea\xc3\x2f\xb2\x32\xd0\x0b\x6f\x78\xb1\xfc\ \x18\xfe\xf4\xe8\x55\xe0\x09\x2e\x18\x6d\xba\xe0\x7a\xbe\x34\x68\ \xdc\x47\x53\x55\x2b\x8f\xe7\xcf\x03\xb0\x1b\x2b\x03\xbd\xd0\x86\ \x57\xdc\xb0\xfc\x18\xfe\xf4\xe8\x55\xe2\xed\x86\x58\xfe\xb3\x8d\ \x0e\xff\x71\x77\x00\xaa\x59\xb9\xae\x3a\xb8\x03\xc0\xe7\x59\x19\ \xe8\x85\x3a\xbc\x58\x7e\x0c\x7f\x7a\xf4\x2a\xf5\x04\xe7\xbb\xef\ \x05\xa8\x77\xf8\x8f\xab\x03\x50\xf5\xca\xf3\xc9\x33\xa0\x98\xca\ \xca\x40\x8f\xe1\xc5\xf2\x1b\xd5\x63\xf9\xd1\xa3\x57\x4a\xd6\xa9\ \x30\xf1\x33\x1a\x19\xfe\xdd\xdd\x5d\x12\x6d\x64\xf8\xeb\xaa\xae\ \x28\xf2\x3b\x3f\xcf\xca\x40\x8f\xe1\xcf\xf2\x1b\xd5\xcb\x58\x2c\ \x3f\x7a\xf4\x86\x26\xe8\xf9\x7a\xf3\x07\xaf\x5a\x70\xf5\xeb\x8a\ \xfa\x4e\x14\x24\xc5\x93\x7f\x8d\x56\xb0\xf0\x48\xb3\x0a\x8d\xbd\ \xf2\xdc\xce\xf7\x43\x30\x8b\x95\xc1\xa7\x5e\x7c\x12\x90\xd8\x1d\ \x88\xb4\x8d\xcf\xcb\xda\xd0\xa4\xcb\xab\xe5\x1a\x78\xab\xbd\x51\ \xfe\xfe\x8a\xc3\x7f\xc2\xfe\x80\x9d\x0d\x67\xf9\x55\xe2\xb5\xed\ \x5d\x7b\xf8\x47\x3b\x60\x4f\x3a\x24\x9c\xe5\x57\xf2\xf2\xfd\x90\ \xec\x66\x24\xcd\x4e\xb6\x7f\xfe\xf7\x66\xe5\x26\x6f\x3c\x09\xe8\ \x58\x5e\xe7\xf0\x8f\x14\x0d\x48\x05\xe1\xdf\x86\xa1\xd3\x04\x57\ \xb4\x72\x55\x08\x52\x73\x1e\x06\xe4\x08\x56\x06\x1f\x79\x91\x24\ \x92\x07\x9c\x02\xb3\xe7\xe2\x42\x68\xb5\xf2\x4c\x98\x1e\x3d\x7a\ \xd5\x79\xbd\x4f\x02\x2f\xdf\x05\xfc\xe3\xf7\x80\x9d\x63\xfb\xe7\ \x53\xaf\x2f\x2d\x6b\x3f\x72\x6d\xb2\xbb\xaf\x2f\xaa\x75\x0a\xff\ \xd2\x49\xbf\x0d\x40\x65\x8c\x85\xdb\x8a\x43\x05\xa6\xd8\x01\xa8\ \x78\xe5\x9a\x9a\xf3\xcf\x50\xf9\x33\x2b\x83\x8f\xbc\x29\xb3\x91\ \x9c\xf3\x1d\x98\xb6\x7f\x62\xe3\x4b\x8f\x5e\x10\xbc\xfe\x17\x80\ \x0d\x5f\x04\x7a\x9f\x61\xfb\xe7\x53\x6f\xd3\x56\x73\xc2\xb9\xbf\ \x6a\x7f\xb0\x0e\xe1\x1f\x2f\x1a\x5a\xec\x00\xd8\x66\x94\x85\x13\ \x35\x0d\x3b\x28\xbe\xc0\x9d\xe7\x23\x6f\xfa\x51\x48\x1e\x75\x15\ \xc3\x9f\x1e\xbd\x20\x79\xed\xfb\x02\x47\x5c\x0f\x4c\x7a\x3b\xdb\ \x3f\x9f\x7a\x7b\x4c\xb6\xcf\x45\xed\xb3\x04\xba\xf3\x1c\xa9\x54\ \xcf\xf0\x11\x00\x47\x4f\xc1\x79\xe6\x0f\x54\x30\xb1\xc0\x60\xf6\ \xdf\x33\xf7\x20\x58\xfa\xbf\xdc\x79\x3e\xf1\xda\xf6\x40\xf2\xd8\ \xdf\x16\xae\xf9\xb3\xf1\xa5\x47\x2f\x78\x5e\x76\x0b\xf0\xe0\x29\ \x40\x6e\x3b\xdb\x3f\xff\x79\x8a\x88\x1c\x3c\xe1\xf8\xd5\x7f\xab\ \x32\xfc\x93\xee\x33\xff\x54\xaa\x27\x0f\xb8\x1e\x03\x74\x5c\x23\ \x18\xf7\xac\x42\x43\x3e\x16\xce\xe7\xce\xf3\x91\xf7\xf6\x73\x18\ \xfe\xf4\xe8\x05\xd9\x8b\x4f\x03\x66\x9d\xc9\xf6\xcf\x9f\x9e\xb4\ \x1b\xeb\xbc\x2a\xc3\xbf\xad\x4c\x9e\x5b\xa5\x1f\xdc\xb5\x26\x52\ \x66\xe1\x81\xf1\x84\xbf\x2e\x9f\xbd\x3b\xa0\xa7\x73\xe7\xf9\xc4\ \xeb\x98\x06\xb3\xc7\x42\x36\x96\xf4\xe8\x05\xdd\xdb\xeb\xfd\x80\ \x89\xb3\xfd\xf3\xa3\x27\x72\x7a\x21\x5b\xc7\x15\xfe\xe5\x9e\xde\ \xcb\x3b\x27\xff\x33\x8e\x2f\x94\x0b\xff\xf4\xb8\xaf\x39\x44\x62\ \x9f\xb1\x15\x09\xee\x3c\x9f\x78\xd3\x8f\xc1\x18\x0f\x83\xb0\xf1\ \xa5\x47\x2f\x08\x5e\xa4\x0d\x98\x3a\x97\xed\x9f\x3f\xbd\x24\x4c\ \xfc\xd3\xe3\x08\xff\x0e\xd7\x09\xbe\x02\xc8\xba\x67\xfe\x35\xc5\ \x2f\xb8\x37\x5b\x01\x64\xc6\x1b\xfe\xba\xf4\xc0\x84\x6d\xe3\xd3\ \xdc\x79\x3e\xf2\x1c\xcf\x5f\xb3\xb1\xa4\x47\x2f\xe0\x5e\xdb\x5e\ \x6c\xff\x7c\xeb\xe9\x67\x74\xe9\x81\x89\x0a\xc3\x5f\xca\xe4\xb9\ \xba\x97\x2f\xd5\x20\x19\xab\xa7\x50\xc9\x27\x17\x99\x72\x52\x3a\ \x27\xd3\xb9\xf3\x7c\xe4\x45\x27\xb0\xb1\xa4\x47\x2f\x2c\x5e\x3e\ \xc1\xf6\xcf\xbf\xde\x74\xc4\x27\xfd\x6b\x15\xe1\x9f\x1e\x29\xcf\ \x4d\x99\x33\xff\x7c\x35\xe1\xdf\xdd\xdd\x65\xd2\x59\xfc\x3b\x77\ \x9e\xcf\xbc\xec\x16\x36\x96\xf4\xe8\x85\xc5\xcb\x6c\x65\xfb\xe7\ \x67\x4f\xcd\x27\xc6\x11\xfe\x36\xc6\xb8\x87\xcf\x5d\x93\xac\x6a\ \xc3\xff\x5b\x27\x0f\x1c\x62\x04\xef\xe2\xce\xf3\x99\xb7\xf3\x49\ \x36\x96\xf4\xe8\x85\xc5\xeb\xfd\x3b\xdb\x3f\x5f\x7b\x3a\x5f\xef\ \xee\x3c\xa0\xc2\x33\xff\x31\x9f\xde\x2b\xbd\x16\x50\x6b\x98\x51\ \xc8\x00\xe8\x38\x60\x9a\xf5\x51\xee\x3c\x1f\x7a\x5b\x57\x03\xf9\ \x5e\x20\xda\xc1\xc6\x92\x1e\xbd\x20\x7b\xfd\x2f\x02\xbd\xcf\xb0\ \xfd\xf3\xbb\xa7\x72\x26\x80\x2f\x8d\x11\xfe\x15\xbd\x34\xc8\x00\ \x85\x37\x02\xd5\x12\xfe\xef\x98\x69\xc5\x93\x71\x9c\xca\x9d\xe7\ \x43\xcf\xce\x02\xcf\x5d\xcf\xc6\x92\x1e\xbd\xa0\x7b\xcf\xff\x12\ \x22\xca\xf6\xcf\xef\x9e\xea\x19\xba\xaa\x2b\x5a\x8f\x29\x82\xc7\ \x5f\xab\xca\x0c\x3b\x9c\xd7\x9d\x5e\x28\x82\x7f\xe2\xce\xf3\xa9\ \xf7\xc2\x8d\xc0\x1b\x8f\xb3\xb1\xa4\x47\x2f\xa8\xde\xe6\xfb\x21\ \xaf\xdf\xcd\xf6\x2f\x18\xde\x9b\x72\x99\xde\x25\xa8\xc3\x14\xc1\ \x55\x75\x00\xdc\x3d\x8f\xa9\x6d\x7a\x3a\x77\x9e\x8f\x3d\x3b\x0b\ \x3c\xfa\x1f\xc0\xce\xa7\xd8\x58\xd2\xa3\x17\x34\x6f\xfb\x7a\xc8\ \xdf\xbe\x85\x64\xd4\x62\xfb\x17\x10\x6f\x20\x8b\x7f\x47\x1d\xa6\ \x08\x8e\xd4\x1a\xfe\x17\xbd\x27\xb3\xf7\x7e\x33\xec\xcb\x92\x31\ \x15\xee\x3c\x1f\x7b\xd6\x00\xf0\xca\x52\xd8\x91\x09\x48\xc7\x66\ \x42\x1d\x75\x8b\x8d\x2f\x3d\x7a\x3e\xf4\xec\x2c\xf0\xc2\x6f\x21\ \x4f\x5d\x86\x64\x34\xc3\xf6\x2f\x40\x9e\x08\xf6\xdf\x77\x77\xfc\ \xe6\xfe\x27\x23\x3b\x51\xc3\x44\x41\xd1\x5a\xc2\x1f\x00\x0e\xdb\ \x2f\xf7\xe1\x64\x4c\x0d\x77\x5e\x00\xbc\xfc\x00\xd2\x8f\x5f\x0e\ \x8d\xff\x1a\xd8\xfd\x38\x60\xea\xe1\x90\xe4\x0c\x24\xdb\xa7\xc0\ \x64\xa4\x8a\xc6\x48\x47\x6e\xdc\x4a\x5e\xb4\x03\x88\x4d\x61\x63\ \x4e\x2f\x1c\x5e\x76\x2b\x60\xf5\x57\x7e\x7c\x8c\xf7\x78\xeb\xdb\ \x0a\x1d\x78\x15\xd8\xbe\x0e\x78\xed\x5e\x48\x6e\x33\xdb\xbf\x60\ \x7a\xe6\xd0\xbd\xb3\xa7\x02\xf1\x4b\xab\x0d\x7f\x60\x1c\xef\x80\ \x2d\x17\xfe\x33\x77\x8b\x9a\x9f\x9d\xb5\xed\x11\x23\xd8\x97\x3b\ \x8f\x5e\x55\xde\xde\x1f\x00\xde\xfa\x7f\x6b\x6b\x7c\x07\x9e\x07\ \x5e\x5d\x39\xce\xed\x53\xa4\x33\xf9\xe1\xdb\x97\x88\xc2\x48\x15\ \x8d\x2f\xbd\xe0\x7b\x53\x17\x41\x13\x33\x6a\xeb\x4c\x3c\xfa\x05\ \xe0\xf5\x1e\xb6\x07\xf4\x6a\xf6\x00\x6c\xba\xf9\xd6\x2d\xfb\x9f\ \x79\xfd\xc6\x7c\x35\xe1\xdf\xdd\xdd\x25\xd1\x0a\x17\x2c\x7b\xb7\ \xe1\x4f\xce\xdc\x7a\xb4\x11\x61\xf8\xd3\x6b\xac\x37\xd6\x99\x57\ \xdf\x46\xe0\xd9\xab\x59\x7e\xf4\x1a\xeb\x1d\x76\x28\x50\xec\x00\ \xd4\x34\x92\xc0\xfd\x41\xaf\x3e\xde\x3e\x67\x7c\x78\xea\xfc\x33\ \xaf\xdf\xb8\x7c\xbc\xc1\x8f\xc2\xfd\x7f\x6a\x2a\x58\x78\xa4\x59\ \x85\x7a\x63\x11\x39\x8d\x3b\x8f\x5e\x4b\xc3\x9f\xe5\x47\xaf\xe9\ \x1e\xeb\x1f\x3d\xaf\x78\xf2\xd1\x2a\xc2\x7f\xf0\xde\x3f\x53\x41\ \xf8\xb7\x61\xf8\xac\x42\xbd\x2b\x2f\xce\x24\x00\x9c\xc8\x9d\x47\ \x8f\xe1\x4f\x8f\xe1\x5f\x61\x7d\xce\x58\xdc\x1f\xf4\xea\xe9\x9d\ \xa8\x0f\x1c\xdd\x36\x8e\xf0\x8f\x3a\x4f\xe6\xcd\x18\x0b\x27\x31\ \xd2\xa3\x06\x7d\xb9\xc5\x00\x26\x70\xe7\xd1\x63\xf8\xd3\x63\xf8\ \x57\x58\x9f\xc1\xfd\x41\xaf\xae\x5e\x07\xfa\x32\x27\x54\x18\xfe\ \x71\x77\x9e\x9b\x51\x16\x4e\x60\xb4\xe7\x0c\x45\x4f\xe1\xce\xa3\ \xc7\xf0\xa7\x17\x1a\x2f\x99\xa8\xe3\xd3\x03\xdc\x1f\xf4\xea\xe5\ \xc9\x29\x63\x84\xbf\x29\x93\xe7\x48\xa5\x7a\x86\x77\x00\x46\xe8\ \x29\xd8\xce\xf0\xd7\x55\x07\x77\x40\xb1\x84\x3b\x8f\x1e\xc3\x9f\ \x5e\x78\x3c\xa9\x53\x7d\xe6\xfe\xa0\x57\x57\x6f\x89\x2e\x9f\x3d\ \x61\x94\xf0\x1f\x36\x92\x9f\x4a\xf5\x58\x80\xeb\x12\x40\xb9\x6b\ \x04\x28\x37\xab\x90\xd5\xb6\x04\x85\x7b\x03\xb8\xf3\xe8\x31\xfc\ \xe9\xd1\xab\xb4\x3e\x83\xe5\x47\xaf\xee\x5e\x3b\x22\xd1\x25\x23\ \x84\x7f\x5b\x99\x3c\xb7\x4a\x3f\xb8\x5b\xd5\x48\x99\x85\xcb\xcc\ \x27\xac\x27\x73\xe7\xd1\x63\xf8\xd3\xa3\x37\xce\xfa\x9c\x88\xb0\ \xfc\xe8\xd5\xdf\x53\x73\x72\x99\xf0\x2f\xf7\xf4\x5e\xde\x39\xf9\ \x9f\x71\x7c\xa1\x5c\xf8\xa7\xdd\xe1\xaf\x4b\x8f\x9c\x04\xc5\x62\ \xee\x3c\x7a\x0c\x7f\x7a\xf4\xc6\x59\x9f\x59\x7e\xf4\x1a\xe2\xe9\ \x62\xbd\x6f\xde\x44\x47\xf8\x77\x60\xf8\xd3\x7b\x59\xf7\xcc\xbf\ \xa6\xf8\x05\xf7\x6a\x14\x40\xa6\xec\xeb\x05\xa3\xb9\x13\x51\xb8\ \xa1\x80\x3b\x8f\x5e\x1d\x3c\x65\xf8\xd3\x63\x67\x96\xe5\x47\xaf\ \x36\x2f\x89\xf4\xc0\x89\xa3\x4c\x11\x9c\x71\x87\xbf\x73\x04\x40\ \xc6\xea\x29\x38\xb6\xee\x14\x16\x36\xbd\xba\x79\x19\x8b\x8d\x25\ \x3d\x86\x3f\xcb\x8f\x5e\xcd\x9e\xf9\xb7\x11\xc2\x3f\x3d\x52\x9e\ \x9b\x32\x67\xfe\xf9\x91\x16\xd6\xbb\x0e\x99\x0a\x60\x11\x0b\x9b\ \x5e\x63\x3c\x36\x96\xf4\x18\xfe\xdc\x1f\xf4\xaa\x3b\x99\xc2\xa2\ \x8f\xfc\x73\x7a\x8a\xf3\xd7\x28\x7b\x0f\xdf\xc8\x1d\x00\x6b\xc4\ \x33\x7f\x00\x88\xc7\xde\x07\x20\xc6\xc2\xa6\xe7\xad\xf0\x57\x96\ \x1f\x3d\x86\x3f\xbd\x70\x7b\x40\x6c\xfe\x5b\xf3\x4b\x1c\x27\xf3\ \xfd\x63\xcd\x12\x58\x9a\x0c\x48\x2b\x9a\x4e\xd0\xc8\x89\x50\x16\ \x36\x3d\xaf\xbd\x61\x2d\xcb\xfd\x41\x8f\xe1\x4f\x2f\xf4\xde\x84\ \xa4\x1c\x0f\xe0\x37\xa8\x70\x8a\xe0\x28\x50\x78\x23\xd0\x58\x0b\ \xea\xcd\x07\xc7\xa1\xe8\x66\x61\xd3\xab\xff\x1b\xd6\x6a\x9d\x9f\ \xbd\xd5\x7f\xaf\x00\x1d\x07\x02\xd3\xe7\x01\x6d\x7b\x02\x12\x03\ \xb2\x5b\x60\x6f\x7b\x14\xe9\x57\x57\x43\x35\xe3\xad\xfd\x61\x12\ \xc0\xb4\xa3\x60\x4f\x7a\x07\xd2\x3a\x05\x9a\x1f\x00\xd2\x2f\x03\ \x5b\x57\x43\xfa\x9f\x45\x32\x66\x7b\xab\xbe\xc4\x77\x2f\x94\x6d\ \xfb\x3e\x90\xe8\x44\x24\x23\xbd\x30\xbd\x4f\x01\x9b\x1f\x00\x72\ \xdb\x19\xfe\xf4\xe8\x15\x3f\xb1\x88\x76\x5d\x7c\xfa\x40\xe6\x98\ \x8f\x3c\x6c\x57\x62\x44\x2b\x5e\xdb\x94\xf6\xa3\x01\x7b\x22\x0b\ \x9b\x5e\x5d\xbd\x44\xc4\xdf\xaf\x57\x9d\x72\x18\xf0\xe6\xcf\x01\ \x93\xdf\x31\x7c\xfb\x76\x4f\x43\x67\xbd\x01\xbc\xf0\x5b\xe0\xc5\ \xff\x07\x81\xd5\xda\xfd\x61\x62\xc0\x3e\x1f\x02\x66\x9d\x01\xdb\ \x4c\x18\x5e\x7e\x07\x9e\x8d\x64\xf6\xef\x30\x7f\xff\x2f\xe0\x8d\ \x0d\xad\xaf\x2f\xd1\xbd\xa1\x6f\xfe\x14\x30\xe3\x5d\xe5\xc3\xd5\ \xce\x01\xff\xb8\x15\x78\xe6\x67\x40\x7e\x27\xc3\x9f\x1e\xbd\x98\ \x4e\x3c\x7a\xf7\xec\x91\x00\xfe\x5c\x51\x93\x50\xf1\x1a\xc5\x3e\ \x9e\x85\x4d\x8f\xaf\x57\x75\x7c\xf6\xfd\x30\xd0\x79\x75\xf9\xf0\ \x2f\x6d\x5f\x6c\x12\x70\xc0\xd9\x90\xc3\xbe\x8f\x64\xfb\xc4\xd6\ \xed\x8f\xd8\x24\xe0\xf0\x1f\x03\x6f\xfe\x6c\xf9\xf0\x2f\x85\xd7\ \x94\x43\x81\xb9\xd7\x00\xfb\xfc\x5b\x6b\xeb\xcb\xc4\x77\x42\xe7\ \x5c\x3d\x72\xf8\x0f\x76\x68\xfe\x0d\x38\xf2\xd7\xc0\x84\x59\x0c\ \x7f\x7a\xf4\x04\x80\x98\xe3\x2b\x1e\x0c\xac\xbc\x03\x80\x13\x58\ \xd8\xf4\x5a\xee\x79\x25\xfc\xf7\xfa\x57\xe0\x2d\xe7\x03\x62\x2a\ \x0b\x87\x3d\x8e\x86\x39\xf4\x72\xc0\xc4\x5b\x73\xe6\x7f\xe8\xf7\ \x81\xa9\x73\x2a\x0b\x2f\x31\xc0\x41\x5f\x00\xf6\x3c\xb1\x35\xf5\ \x25\xf9\x56\xe8\xc1\xdf\x06\xa2\x13\x2a\x0b\xd7\xb6\xbd\x81\x39\ \x3f\x06\x12\xbb\x33\xfc\xe9\xd1\x2b\x66\x75\xdd\x3a\x00\xba\xe2\ \xf0\x3d\xa1\x38\x94\x85\x4d\xcf\x7b\xe1\x2f\x48\x26\xe3\xcd\xdd\ \xbe\xb6\x3d\x81\x83\x2e\x1c\x7f\x38\x4c\x9d\x03\xec\x77\x5a\xf3\ \xcb\x6f\xe6\xc7\x80\x29\x87\x8f\x3f\xbc\xde\x7a\x11\x90\x7c\x53\ \x73\xeb\x8b\x15\x83\xbe\xed\xab\x83\x1d\xa5\x8a\xc3\x35\xb1\x7b\ \x61\x7b\x1b\xba\x7d\x7c\x69\x15\x3d\x5f\x78\x87\xe9\xb2\xce\x37\ \xd5\x6f\x04\x40\x64\x11\x0b\x9b\x9e\x37\xc3\x3f\x59\xdd\x65\x84\ \x5a\xb6\x6f\xd6\x59\x85\xb3\xea\x6a\xce\x0c\x67\x7e\x0c\x88\x76\ \x34\xaf\xfc\x62\x93\x80\xfd\x3e\x52\xdd\x99\xab\x89\x03\xfb\x7f\ \xa2\xb9\xf5\xe5\x9f\x16\x03\x6d\x7b\x55\x17\xae\x33\xde\x05\x4c\ \x9e\xdd\xb8\xed\x4b\x67\x18\xfe\xf4\xfc\xe1\x19\x5d\x34\x96\xd9\ \xdd\xdd\x25\xa6\xb2\x95\xcb\x09\x2c\x6c\x7a\x9e\x0c\xff\x66\x37\ \xbe\x26\x06\xec\x3e\xbf\xfa\xed\x8b\xb4\x0f\x5e\xd7\x6e\x4a\xf9\ \x4d\x3f\x16\xb6\x24\xab\x2f\xbf\xdd\xff\x65\xd8\x65\x8b\x86\xd6\ \x97\x62\xd9\x56\xbd\x7f\xf7\x58\xd4\xc0\xed\x63\xf8\xd3\xf3\x89\ \x37\xca\x7d\x00\xdd\xdd\x5d\x52\x9a\xfb\x67\xcc\xda\xfb\xc0\xd5\ \x5d\xf1\x74\x4e\x16\xb2\xb0\xe9\x85\x3e\xfc\x01\xa0\xe3\xcd\x83\ \xd7\xa6\xab\xde\xbe\xe2\x59\x6a\x53\xca\x6f\xf2\xa1\xb5\x95\x5f\ \xb4\x03\x98\x30\xb3\x39\xf5\x45\x0c\x30\xf9\x1d\xb5\xed\xdf\x49\ \xef\xe0\x1b\x2b\xe9\xd1\x13\x5d\xa8\xab\xba\xa2\xe5\xc2\x1f\x85\ \x59\x7f\x0b\xe7\x33\x63\x0c\x11\x98\x3d\x27\x0f\x1c\x0b\x60\x32\ \x0b\x9b\x5e\xe8\xc3\x1f\x00\x12\x33\x6a\xdf\xbe\x32\x37\xab\x35\ \x6c\x7f\xe8\xe4\xda\xcb\x2f\xb9\x47\x73\xea\x4b\x6c\x32\xc4\x44\ \x6b\x7b\x2f\x84\x4e\xf1\xf6\x4b\xab\x32\x16\xdb\x03\x7a\x8d\xf7\ \x14\x53\x61\xbd\x71\x44\x99\xf0\x8f\xc2\x31\x57\x80\x19\x6d\x98\ \x00\x40\x72\x52\xc2\x5a\xc4\xc2\xa6\xc7\xf0\x2f\x1d\x31\x89\xda\ \xb7\x2f\x92\x6c\xde\xfe\x90\x78\xed\xe5\x27\xb1\xe6\xd4\x97\x48\ \xa2\xf6\x97\x42\x49\xd4\xbb\xe1\x9f\x4e\x0f\x79\x91\x2a\xdb\x03\ \x7a\x0d\xf5\x6c\x73\x82\x2b\xcf\xe3\x70\x4d\x14\x64\x46\x09\xff\ \x04\x00\x89\x47\xa5\x9b\x85\x4d\x8f\xe1\xef\xa3\xed\xf3\xeb\xb0\ \x75\x5c\xbc\xfd\x52\xa8\x64\xc2\xdf\x2f\xad\xa2\x17\x2e\x4f\xf4\ \xf8\x62\x9e\x9b\x52\x9e\x3b\xff\x77\x2a\xd5\x33\xbc\x03\xe0\xec\ \x29\x7c\xf6\xf8\x81\xc9\x46\xf4\x70\x01\x0b\x9b\x1e\xc3\x75\xd0\ \x0b\x53\xf8\x7b\x7d\xd8\xba\xa9\xe1\xea\xe3\x97\x56\xd1\x0b\xa1\ \x27\x73\xb7\xfc\x61\xce\x6e\x00\x92\xee\x33\xff\x54\xaa\xc7\x02\ \x5c\x97\x00\xdc\xd7\x08\xe6\xce\xd2\x23\x45\x20\x2c\x6c\x7a\x0c\ \xff\xd2\x94\x9b\x56\xb8\xc2\xdf\xcb\xc3\xd6\x23\xd5\x17\x2f\x6f\ \x1f\x4f\xa6\xe8\x35\xc9\x53\x85\xa4\x33\xe6\x5d\xee\xf0\x07\x60\ \x95\x7e\x70\xb7\x0a\x11\xe7\xc2\x1d\x71\xeb\xa8\x44\x54\x21\x2c\ \x6c\x7a\x0c\x7f\x7f\x0e\xab\x27\xe3\xc1\x1c\xb6\x1e\xf5\xbd\x10\ \x1e\xde\xbe\x44\x84\xed\x01\xbd\xa6\x79\x6d\x51\x1c\xed\x0a\xff\ \xbc\x73\xf2\x3f\xe3\x38\xfb\x8f\xb8\x7b\x0a\x1d\x09\xbc\x93\xe1\ \x4f\x8f\xe1\x5f\xef\xf0\x57\xce\xb5\x10\xd6\x7b\x44\xd8\x1e\xd0\ \x6b\x96\x07\x20\x16\xc1\x51\x8e\xf0\xcf\xba\x67\xfe\x35\xc5\xf0\ \x77\xaf\x46\xaf\x3c\xa7\xdf\x16\xc1\x91\x2c\x6c\x7a\x8d\xf5\x34\ \x7c\xd7\xd4\xd3\x59\x7f\x75\xc6\xc0\xf0\x0f\x76\x67\x96\x5e\x50\ \xbd\x88\xc1\xdc\x77\x1f\x92\x8f\x00\xc8\xb8\xc3\xdf\x39\x02\xe0\ \xbe\x46\x90\x3d\xa8\x43\x0f\x05\xd0\xc6\xc2\xa6\xd7\x50\xcf\x77\ \xd7\xd4\x51\xfb\x35\x75\xbf\x9d\x59\x7b\x65\xd8\x9a\xe1\xcf\xf6\ \x85\xde\x78\xbd\xf6\x0b\x17\xf6\x1d\x54\x2e\xfc\x9d\x1d\x00\x67\ \xf8\x17\xae\x11\xa8\x35\x8f\x85\x4d\xcf\x37\x67\xd6\xcd\xfa\x7b\ \x13\x11\x5e\x53\x67\xb8\x32\xfc\xe9\x79\xdf\x03\x90\x88\x2a\x62\ \x11\x73\xcc\x48\xdf\x73\xd7\x4c\x6b\xb0\xa7\xa0\x32\x8f\x85\x4d\ \xcf\x1f\xe1\xaf\x9c\xc2\x98\xe1\xca\xed\xa3\x47\xcf\xe5\x89\x00\ \x30\x18\x31\xcb\x4b\xaf\xcd\xd2\x54\xaa\xc7\x1e\x1c\x06\x50\x08\ \x52\x98\xc7\xc2\xa6\xc7\x6b\xea\x21\x7c\x54\x8d\xe1\xca\xf0\xa7\ \x17\x8c\xf0\x07\x00\xc5\x3c\x55\x88\x08\xca\xdf\x03\x30\xec\xfa\ \xc0\x8a\x77\xce\x04\xf0\x26\x16\x36\x3d\x7f\x5c\x53\xf7\x59\xf8\ \x27\xe3\x0c\x7f\x6e\x1f\xdb\x03\x7a\xcd\xf2\xf6\xc4\xb2\xc3\xf6\ \x2b\x67\x94\xaf\xa5\x92\x9f\xc7\xc2\xa6\xc7\x6b\xea\x8d\xba\xa6\ \x2e\xde\xde\x3e\x86\x2b\xc3\x9f\x5e\xb0\xbc\x98\x99\x37\x8e\x0e\ \xc0\xe8\xd7\xff\x59\xd8\xf4\xea\xe7\xf1\x39\x75\x6e\x1f\xb7\x8f\ \xed\x01\xbd\x86\x7a\x23\xdc\xd3\x37\x42\x07\x60\xc8\xdb\x83\x58\ \xd8\xf4\x78\x43\x1d\xc3\x8b\xdb\xc7\xf0\xa7\xe7\x57\x4f\x70\x4c\ \x45\x1d\x00\x5d\xd3\x19\x83\xe2\xed\x2c\x6c\x7a\xfe\x09\x57\x5e\ \x53\x0f\x4c\x78\x79\x7a\xfb\x94\xe1\x4f\xcf\x9f\x9e\xe2\xed\xba\ \xa6\x33\x36\xf6\x08\xc0\x16\x39\x08\x40\x8c\x85\x4d\x8f\xd7\xd4\ \x19\xfe\x4d\xad\x2f\x59\xf5\x78\xe7\x24\xc3\xf0\xa7\xe7\x57\x2f\ \x86\x1d\xe6\x2d\xce\x5f\x74\x77\x77\x49\x74\xf8\x98\x80\xce\x1e\ \xd6\x79\x60\x61\xd3\x63\x78\x71\xfb\x1a\x5d\x5f\x0c\x3c\x1e\xae\ \x0c\x7f\x7a\x3e\xf6\xf2\x3a\x1b\xc0\x5f\x8b\xaf\xfe\x37\xc0\x90\ \x43\xae\x24\x63\x36\xc3\x9f\x1e\xc3\x3f\x28\xe1\x1a\xc2\xb9\x16\ \xf8\xc6\x4a\x7a\xf4\x86\x7f\x44\x67\x17\xc3\x3f\x32\x78\xbe\x3f\ \x6c\x21\xc5\x21\xce\xf0\xcf\xe4\xc5\xbb\xf3\x81\xd3\x63\xf8\x73\ \xfb\xc6\x18\xb6\xce\x86\x6c\xa2\xa5\xb4\xb7\xb7\x2f\x63\xb1\x3d\ \xa0\xd7\x12\x4f\x0b\xd9\x1e\x85\x63\xee\x9f\x72\x1d\x80\xd9\xa5\ \xf0\xcf\x5a\x60\x61\xd3\x63\xb8\xfa\x35\xfc\xfd\x38\x6c\xed\xe9\ \x89\x96\xea\xd0\x39\xe1\xc9\x14\xbd\xd6\x84\x3f\x72\x16\x0e\x85\ \x6b\xe2\xbf\x21\x35\x59\xef\x3a\x64\x2a\x04\x7b\x17\x17\x86\xaa\ \xb0\xb0\xe9\x31\x5c\x7d\x1b\xfe\x3e\x1b\xb6\x8e\x8b\xb7\x5f\x0a\ \x95\x4c\x04\xf3\xa5\x55\xf4\xc2\x10\xfe\x00\xb0\xf7\xa5\x27\xed\ \x98\x5a\xfa\x7d\x2a\xd5\xe3\xba\x07\x20\x16\x3d\x44\x01\xe4\x6d\ \x0c\xed\xa9\x82\x85\x4d\x8f\xe1\x3a\xe8\x85\xed\x9a\xba\x97\x87\ \xad\x9b\x1a\xae\x01\x7c\x69\x15\xbd\xc0\x87\x7f\xd6\xda\x95\xe7\ \xb3\xf6\x92\x83\x51\x98\xfb\xc7\x02\x5c\x97\x00\x54\x22\xb3\x2d\ \x0e\xfb\xd3\x63\xf8\x8f\xec\x65\xac\xf0\x5d\x53\x87\xcf\xea\x8b\ \x97\xb7\x8f\x27\x53\xf4\x9a\x18\xfe\x99\xbc\x0c\x19\xc9\x4f\x46\ \xf0\x0e\x00\x56\xe9\xe7\x21\x8f\x01\xe6\x6d\x3d\x4c\x86\x1c\xec\ \x8a\x78\x04\x10\x16\x36\x3d\x86\xbf\x3f\x87\xd5\x93\xf1\x10\xce\ \xb5\xe0\xe1\xed\x4b\x44\xd8\x1e\xd0\x6b\x8a\x97\xc9\xc9\xa0\x33\ \xe8\xc5\xe5\x60\xe7\xe4\x7f\x83\x2d\x43\x77\x77\x57\x44\x80\x77\ \x38\x7b\xaa\x0c\x7f\x7a\x0c\xff\x46\x84\xbf\x72\xae\x85\xb0\xde\ \x23\xc2\xf6\x80\x5e\xb3\x3c\xe7\xc9\x3c\x80\xa8\x01\x44\x76\x3d\ \xe5\x37\xd8\x01\xe8\xee\xee\x92\x13\xf6\x78\xd9\x40\x0a\x1d\x00\ \x11\x20\xc6\xf0\xa7\xd7\x14\x2f\x84\xcf\xa9\xa7\xb3\xfe\xea\x8c\ \x81\xe1\x1f\xec\xce\x2c\xbd\x60\x7b\xea\xc8\x73\x3d\x44\xbf\xbe\ \xeb\xc4\xbf\xf4\x1f\xf2\xb1\x93\x26\xef\x25\xc0\x04\xec\xea\x29\ \xb0\xb0\xe9\x35\xde\xf3\xdd\x35\x75\xaf\x3f\xaa\x16\xe0\x61\x6b\ \x86\x3f\xdb\x17\x7a\xe3\xf6\x5c\x23\xf9\x1d\x78\xf7\x91\x7b\xba\ \x3b\x00\x68\x8b\xe5\x67\x02\x40\x84\x67\xfe\xf4\xfc\x78\x66\xdd\ \xac\xbf\x37\x11\xe1\x35\x75\x86\x2b\xc3\x9f\x9e\xf7\x3d\x00\x89\ \xa8\x0e\xcf\x73\x2b\x37\x6b\x58\x07\x20\x1a\x33\x33\x23\x66\xe8\ \x5b\x02\x58\xd8\xf4\xfc\x11\xfe\xca\x29\x8c\x19\xae\xdc\x3e\x7a\ \xf4\x5c\x5e\xd9\x93\x79\xdb\xcc\x74\x77\x00\x34\x1a\xb1\xf7\xab\ \x22\xfb\x59\xd8\xf4\x5a\x1b\xfe\x7e\xbc\xa6\xee\xf5\x47\xd5\x18\ \xae\x0c\x7f\x7a\xc1\x0c\xff\x42\xdc\x0f\x1d\x01\x48\xa5\x7a\x54\ \x54\x66\xb1\xb0\xe9\xb5\xc4\xf3\xf4\xbb\xdf\x1b\x11\x0e\x71\x86\ \x3f\xb7\x8f\xed\x01\xbd\xd6\x78\x06\xc3\x2f\x01\xc0\x8c\xaf\x03\ \xc0\xc2\xa6\x57\x17\x2f\x94\xd7\xd4\xc5\xdb\xdb\xc7\x70\x65\xf8\ \xd3\x0b\xae\xa7\x5a\xa6\x03\xa0\x3a\x93\x85\x43\xaf\xf9\x1e\x9f\ \x53\xe7\xf6\x71\xfb\xd8\x1e\xd0\x6b\x9e\x27\x33\x87\x74\x00\x74\ \x4d\x67\x0c\xc0\xde\x2c\x1c\x7a\xfe\x7c\x69\x10\xc3\x9f\xdb\xc7\ \xed\xa3\x47\xaf\xc2\xcf\x3e\xc5\xcc\x2f\x8e\x00\xbc\x81\x7d\x51\ \x6e\x6a\x60\x16\x36\x3d\x5e\x53\x67\x78\x35\xb3\xbe\x78\x7a\xfb\ \x94\xe1\x4f\x2f\x08\x9e\xc1\x76\xb3\xcf\xae\x0e\x80\x9a\x59\x2c\ \x1c\x7a\xbe\x7d\x5d\x30\xaf\xa9\x07\x23\xfc\xb3\xea\xf1\xce\x49\ \x86\xe1\x4f\x2f\x10\x9e\x5a\xf9\x59\xdd\xdd\x5d\x52\xec\x00\x58\ \xa3\x76\x00\x94\x85\x4d\x8f\xe1\xc5\xed\x6b\x6a\x7d\xf1\xe2\xf6\ \x31\xfc\xe9\xf9\xdf\x03\x80\xbc\x6d\x0e\x00\x50\xec\x00\xc8\xae\ \x17\x03\x30\xfc\xe9\x31\xfc\x83\x14\xae\x21\x9c\x6b\x81\x6f\xac\ \xa4\x47\xaf\x7c\x9e\x03\xb0\x6c\x40\x44\xf7\x03\x06\x2f\x01\xe8\ \xac\x91\xc2\x3f\x93\x17\xef\xce\x07\x4e\x8f\xe1\xcf\xed\x1b\x63\ \xd8\x3a\x1b\xb2\x89\x96\xd2\xde\xde\xbe\x8c\xc5\xf6\x80\x5e\x6b\ \xc2\x5f\x01\xcb\x1a\xac\xc7\xb3\x76\x75\x00\x80\x3d\xca\x2d\x9c\ \xb5\xc0\xc2\xa6\xc7\x70\xf5\x6b\xf8\xfb\x71\xd8\xda\xd3\x13\x2d\ \xd5\xa1\x73\xc2\x93\x29\x7a\x2d\x0a\xff\xbc\xed\xac\x7c\xd8\x03\ \x80\x96\x6a\xf2\x34\xf7\xc2\x39\x0b\x50\x15\x16\x36\x3d\x86\xab\ \x6f\xc3\xdf\x67\xc3\xd6\x71\xf1\xf6\x4b\xa1\x92\x89\x60\xbe\xb4\ \x8a\x5e\xe0\xc3\x3f\xe7\x3e\x99\x07\xa6\xa5\x52\x3d\x1a\x2d\xfe\ \x3c\x7d\x70\x61\x14\x7a\x0a\x43\x7a\xaa\x00\x12\x2c\x6c\x7a\x0c\ \x57\x1f\x3c\xaa\x16\xb2\x61\xeb\xa6\x86\x6b\x00\x5f\x5a\x45\x2f\ \xf0\xe1\x9f\xb5\x76\xe5\x78\xe9\x63\xa4\x70\xd2\x6f\x54\x21\xce\ \x11\x00\x8b\xc3\xfe\xf4\x18\xfe\x23\x7b\x19\x2b\x7c\xd7\xd4\xe1\ \xb3\xfa\xe2\xe5\xed\x03\xdb\x03\x7a\xcd\x0b\xff\x4c\x5e\x86\x8c\ \xe4\x03\x40\xa4\xd0\x14\x4c\x03\x80\x28\x56\xcc\x6e\x87\x41\x02\ \x28\xdc\x1d\x88\x21\x07\xbb\x22\x1e\x01\x84\x85\x4d\x8f\xe1\xef\ \xcf\x61\xf5\x64\x3c\x84\x73\x2d\x78\x78\xfb\x12\x11\xb6\x07\xf4\ \x9a\xe2\x65\x72\x32\xe8\x94\xfe\x1d\x89\x0c\x2e\x92\xd4\x3f\x74\ \xb6\x1b\x44\x23\xd3\x4b\x5f\x18\x12\xfe\x00\xc3\x9f\x1e\xc3\xbf\ \x21\xe1\xaf\x9c\x6b\x21\xac\xf7\x88\xb0\x3d\xa0\xd7\x2c\xcf\x95\ \xe7\x51\x33\xf4\x32\x00\x92\x98\x6e\x00\x33\x4d\xdd\xe1\x2f\x40\ \x8c\xe1\x4f\xaf\x29\x5e\x08\x9f\x53\x4f\x67\xfd\xd5\x19\x03\xc3\ \x3f\xd8\x9d\x59\x7a\xc1\xf6\x74\x84\x3c\x97\x69\x06\xd6\xae\x1b\ \x00\x4b\x9f\xa8\x61\xf8\xd3\x6b\x92\xe7\xbb\x6b\xea\x5e\x7f\x54\ \x2d\xc0\xc3\xd6\x0c\x7f\xb6\x2f\xf4\xc6\xed\x8d\x38\x92\x2f\x98\ \x6e\x00\x19\xf2\x08\x60\x84\x67\xfe\xf4\xfc\x78\x66\xdd\xac\xbf\ \x37\x11\xe1\x35\x75\x86\x2b\xc3\x9f\x9e\xf7\x3d\x00\x89\xa8\x8e\ \x96\xe7\xd3\x0c\x64\xd7\x13\x00\x11\xf7\x35\x02\x16\x36\x3d\xf0\ \x9a\x7a\x63\xc2\x81\xc3\xea\xdc\x3e\xb6\x07\xf4\x1a\xeb\x8d\x7a\ \x32\x6f\xdb\xd3\x0c\x8a\xef\x00\xa8\x76\x52\x01\x16\x36\xbd\x96\ \x86\xbf\x1f\xaf\xa9\x7b\xfd\x51\x35\x86\x2b\xc3\x9f\x5e\xb0\xc3\ \xbf\x30\x44\x30\xdd\x00\xf6\x34\x61\xf8\xd3\x6b\xa5\xe7\xe9\x77\ \xbf\x37\x22\x1c\xe2\x0c\x7f\x6e\x1f\xdb\x03\x7a\x2d\xf6\x64\xda\ \xb0\x7b\x00\x58\x38\xf4\x9a\xea\x85\xf2\x9a\xba\x78\x7b\xfb\x18\ \xae\x0c\x7f\x7a\x61\xf0\xa6\x1b\x40\x27\xb0\x70\xe8\xb5\xce\xe3\ \x73\xea\xdc\x3e\x6e\x1f\xdb\x03\x7a\x2d\xf0\xda\x0d\x60\xe2\x2c\ \x1c\x7a\xbe\xf1\x18\xfe\xdc\x3e\x6e\x1f\x3d\x7a\xb5\x7b\xaa\x71\ \x03\x68\x82\x85\x43\xcf\xbf\xe1\xcf\x6b\xea\x81\x0a\x2f\x4f\x6f\ \x9f\x32\xfc\xe9\x05\xc6\x83\x91\x84\x01\x10\x67\xe1\xd0\xf3\xf5\ \xeb\x82\x79\x4d\x3d\x18\xe1\x9f\x55\x8f\x77\x4e\x32\x0c\x7f\x7a\ \xc1\x08\x7f\x00\x6a\x23\x6e\x00\x1d\xb3\x03\xa0\x2c\x6c\x7a\x0c\ \x2f\x6e\x5f\x53\xeb\x8b\x17\xb7\x8f\xe1\x4f\x2f\x18\xe1\x6f\x2b\ \x00\x45\xdc\x00\x92\x60\xf8\xd3\x63\xf8\x07\x35\x5c\x43\x38\xd7\ \x02\xdf\x58\x49\x8f\x5e\xf9\x3c\x87\x63\xd6\x5f\x83\xd1\x2f\x01\ \x0c\xce\x27\x0c\x16\x36\x3d\x86\xab\x2f\xcf\xac\xd3\xd9\x90\x4d\ \xb4\x94\xf6\xf6\xf6\x65\x2c\xb6\x07\xf4\x5a\x13\xfe\x0a\x58\xd6\ \x90\xde\x40\xdc\x00\x48\x8c\xb4\x70\xd6\x02\x0b\x9b\x1e\xc3\xd5\ \xaf\xe1\xef\xc7\x61\x6b\x4f\x4f\xb4\x54\x87\xce\x09\x4f\xa6\xe8\ \xb5\x28\xfc\xf3\xf6\xb0\x5f\x97\x1f\x01\x50\x05\x72\x16\xa0\x2a\ \x2c\x6c\x7a\x0c\x57\xdf\x86\xbf\xcf\x86\xad\xe3\xe2\xed\x97\x42\ \x25\x13\xc1\x7c\x69\x15\xbd\xc0\x87\x7f\xce\x75\x32\x0f\x00\x02\ \xc4\xa3\xee\x0e\x80\xa2\xd0\x53\xd0\xa1\x0b\x22\xc1\xc2\xa6\xc7\ \x70\xf5\xc1\xa3\x6a\x21\x1b\xb6\x6e\x6a\xb8\x06\xf0\xa5\x55\xf4\ \x02\x1f\xfe\x59\x6b\x57\x8e\x97\x3e\x45\x2b\x1e\x85\xeb\x12\x80\ \x55\x66\xd8\x7f\x8c\x29\x05\x59\xd8\xf4\xc2\x13\xfe\x19\x2b\x7c\ \xd7\xd4\xe1\xb3\xfa\xe2\xe5\xed\x03\xdb\x03\x7a\xcd\x0b\xff\x4c\ \x5e\x8a\xce\x2e\x34\xb2\xab\x29\x48\x0c\x19\x01\xb0\x5c\xd7\x08\ \x44\x14\xf1\x08\x18\xfe\xf4\x18\xfe\x7e\x1d\x56\x4f\xc6\x43\x38\ \xd7\x82\x87\xb7\x2f\x11\x61\x7b\x40\xaf\x29\x5e\x26\x27\x83\x4e\ \xe9\xdf\x91\xc8\x90\xc5\xe2\x83\xf7\x00\xd8\xc3\xaf\x0f\x30\xfc\ \xe9\x31\xfc\x1b\x12\xfe\xca\xb9\x16\xc2\x7a\x8f\x08\xdb\x03\x7a\ \xcd\xf2\x5c\x79\x1e\x35\x43\x2f\x03\xa0\x78\x13\xe0\xf0\x9b\x03\ \x04\x88\x31\xfc\xe9\x35\xc5\x0b\xe1\x73\xea\xe9\xac\xbf\x3a\x63\ \x60\xf8\x07\xbb\x33\x4b\x2f\xd8\x9e\x8e\x98\xe7\x06\x40\xd6\xfd\ \xcb\xa8\x61\xf8\xd3\x6b\x92\xe7\xbb\x6b\xea\x5e\x7f\x54\x2d\xc0\ \xc3\xd6\x0c\x7f\xb6\x2f\xf4\xc6\xed\x8d\x32\x92\x9f\x19\xd6\x01\ \x88\xf0\xcc\x9f\x9e\x1f\xcf\xac\x9b\xf5\xf7\x26\x22\xbc\xa6\xce\ \x70\x65\xf8\xd3\xf3\xbe\x87\x31\x6f\xe0\xcf\x46\x01\x64\x06\xc3\ \x7f\xfc\xf5\x94\x85\x4d\xcf\x03\xe1\xaf\x9c\xc2\x98\xe1\xca\xed\ \xa3\x47\xcf\xe5\x8d\x71\x32\xbf\x6b\x04\xa0\x96\x49\x05\x58\xd8\ \xf4\x5a\x16\xfe\x7e\xbc\xa6\xee\xf5\x47\xd5\x18\xae\x0c\x7f\x7a\ \x41\x0f\x7f\x40\x91\x35\x00\xb2\xc2\xf0\xa7\xd7\x4a\xcf\xd3\xef\ \x7e\x6f\x44\x38\xc4\x19\xfe\xdc\x3e\xb6\x07\xf4\x5a\xeb\x49\xa1\ \x03\x90\x61\xf8\xd3\x6b\x99\x17\xca\x6b\xea\xe2\xed\xed\x63\xb8\ \x32\xfc\xe9\x85\xc1\xcb\x94\x7d\x0a\x80\x85\x43\x8f\xcf\xa9\x33\ \xbc\xb8\x7d\x0c\x7f\x7a\x01\xf6\x0a\x23\x00\x9a\x61\xe1\xd0\xf3\ \x8d\xc7\xf0\xe7\xf6\x71\xfb\xe8\xd1\xab\xdd\xb3\x91\x31\x80\x64\ \x59\x38\xf4\xfc\x1b\xfe\xbc\xa6\x1e\xa8\xf0\xf2\xf4\xf6\x29\xc3\ \x9f\x5e\x60\xbc\xd2\x3d\x00\x59\x16\x0e\x3d\x5f\xbf\x2e\x98\xd7\ \xd4\x83\x11\xfe\x59\xf5\x78\xe7\x24\xc3\xf0\xa7\x17\x8c\xf0\x07\ \xa0\x40\xd6\x00\x32\xe6\x25\x00\x65\x61\xd3\x63\x78\x71\xfb\x9a\ \x5a\x5f\xbc\xb8\x7d\x0c\x7f\x7a\xc1\x08\x7f\x5b\x01\xb5\x35\x63\ \x00\x3b\xcb\xf0\xa7\xc7\xf0\x0f\x6a\xb8\x86\x70\xae\x05\xbe\xb1\ \x92\x1e\xbd\x91\xce\xfa\x77\xcd\xfa\x2b\x92\x35\x80\xf4\x8d\x16\ \xfe\x99\xbc\x78\x77\x3e\x70\x7a\x0c\x7f\x6e\xdf\x18\xc3\xd6\xd9\ \x90\x4d\xb4\x94\xf6\xf6\xf6\x65\x2c\xb6\x07\xf4\x5a\x13\xfe\x0a\ \x58\xd6\x90\x5f\x0d\x18\x40\xb7\x8c\xb4\x70\xd6\x02\x0b\x9b\x1e\ \xc3\xd5\xaf\xe1\xef\xc7\x61\x6b\x4f\x4f\xb4\x54\x87\xce\x09\x4f\ \xa6\xe8\xb5\x28\xfc\xf3\xf6\xb0\x5f\x6f\x36\x80\xd9\x52\x6e\xe1\ \x9c\x05\xa8\x0a\x0b\x9b\x1e\xc3\xd5\xb7\xe1\xef\xb3\x61\xeb\xb8\ \x78\xfb\xa5\x50\xc9\x44\x30\x5f\x5a\x45\x2f\xf0\xe1\x9f\x73\x9d\ \xcc\x03\x80\x11\xdd\x1c\x05\xb0\x79\xc8\xc2\x28\xf4\x14\x86\xf4\ \x54\x01\x24\x58\xd8\xf4\x18\xae\x3e\x78\x54\x2d\x64\xc3\xd6\x4d\ \x0d\xd7\x00\xbe\xb4\x8a\x5e\xe0\xc3\x3f\x6b\xed\xca\xf1\x5d\xe1\ \x0f\x40\xb1\x39\x0a\xc5\x16\xe7\xff\xb1\xca\x0c\xfb\x8f\x31\xa5\ \x20\x0b\x9b\x5e\x78\xc2\x3f\x63\x85\xef\x9a\x3a\x7c\x56\x5f\xbc\ \xbc\x7d\x60\x7b\x40\xaf\x79\xe1\x9f\xc9\x4b\xd1\xd9\x85\x0e\xce\ \xfa\x6b\xcc\x96\xa8\xf3\x1e\x00\xcb\x75\x8d\x40\x44\x11\x8f\x80\ \xe1\x4f\x8f\xe1\xef\xd7\x61\xf5\x64\x3c\x84\x73\x2d\x78\x78\xfb\ \x12\x11\xb6\x07\xf4\x9a\xe2\x65\x72\x32\xe8\x94\xfe\x1d\x89\x0c\ \x59\x6c\x8b\x41\xa4\x70\x09\xc0\x76\x5d\x1f\x10\x80\xe1\x4f\x8f\ \xe1\xdf\x90\xf0\x57\xce\xb5\x10\xd6\x7b\x44\xd8\x1e\xd0\x6b\x96\ \xe7\xca\xf3\xa8\x19\x7a\x19\x00\x8a\xcd\x06\xb0\xb7\xb8\x6f\x0e\ \x10\x01\x62\x0c\x7f\x7a\x4d\xf1\x42\xf8\x9c\x7a\x3a\xeb\xaf\xce\ \x18\x18\xfe\xc1\xee\xcc\xd2\x0b\xb6\xa7\x23\xe4\xb9\x6e\x31\xc8\ \x5b\x9b\xdd\xbf\x8e\x1a\x86\x3f\xbd\x26\x79\xbe\xbb\xa6\xee\xf5\ \x47\xd5\x02\x3c\x6c\xcd\xf0\x67\xfb\x42\x6f\xdc\xde\x88\x23\xf9\ \x69\x6c\x36\x58\xb8\xa1\x1f\xc0\xe0\xeb\x80\x23\x3c\xf3\xa7\xe7\ \xc7\x33\xeb\x66\xfd\xbd\x89\x08\xaf\xa9\x33\x5c\x19\xfe\xf4\xbc\ \xef\x61\xd4\x1b\xf8\xd3\xf2\xde\xb5\xfd\x46\x0a\x97\x0a\xb6\x00\ \x85\xbb\x03\xab\x79\xb5\x30\x0b\x9b\x5e\x6b\xc3\x5f\x39\x85\x31\ \xc3\x95\xdb\x47\x8f\x9e\xcb\x1b\xe5\x64\x7e\x0b\x00\x94\x6a\xe7\ \xe6\x5a\x26\x15\x60\x61\xd3\x6b\x59\xf8\xfb\xf1\x9a\xba\xd7\x1f\ \x55\x63\xb8\x32\xfc\xe9\x05\x39\xfc\x01\x29\xdc\xfc\x6f\x8a\x5f\ \xd8\xc2\xf0\xa7\xd7\x32\xcf\xd3\xef\x7e\x6f\x44\x38\xc4\x19\xfe\ \xdc\x3e\xb6\x07\xf4\x5a\xe9\x0d\x19\x01\x78\x85\x85\x43\xaf\x25\ \x5e\x28\xaf\xa9\x8b\xb7\xb7\x8f\xe1\xca\xf0\xa7\x17\x6c\x4f\x0b\ \x99\x6f\x8a\xdf\xdc\xc8\xc2\xa1\xd7\x1a\x8f\xcf\xa9\x73\xfb\xb8\ \x7d\x6c\x0f\xe8\x35\xd7\xd3\x8d\xbb\x3a\x00\x6a\x3f\xc7\xc2\xa1\ \xe7\x0b\x8f\xe1\xcf\xed\xe3\xf6\xd1\xa3\x57\x9b\xa7\xf2\x9c\x63\ \x04\x20\xb2\x91\x85\x43\xcf\xbf\x6f\x0c\xe4\x35\xf5\xc0\x84\x97\ \xa7\xb7\x4f\x19\xfe\xf4\x02\xe2\xd9\x8e\x11\x00\xb1\x37\xb2\x70\ \xe8\xf9\xf6\x75\xc1\xbc\xa6\x1e\x8c\xf0\xcf\xaa\xc7\x3b\x27\x19\ \x86\x3f\xbd\x60\x78\x88\x6e\xec\xee\xee\x92\x42\xcd\x9d\x8c\x17\ \x00\xd8\x23\x8e\x16\xb0\xb0\xe9\x31\xbc\xb8\x7d\x4d\xad\x2f\x5e\ \xdc\x3e\x86\x3f\x3d\xff\x7b\x00\xec\x55\x2f\x44\x5e\x02\x50\xe8\ \x00\xc8\xdc\xb5\x39\x00\x2f\x32\xfc\xe9\x31\xfc\x83\x16\xae\x21\ \x9c\x6b\x81\x6f\xac\xa4\x47\xaf\xfc\xc9\x3c\x00\xcb\xc6\xa6\x4b\ \x7e\x97\xcc\x01\xbb\x1e\x03\x04\xa4\x70\x53\x80\x3b\xfc\x33\x79\ \xf1\xee\x7c\xe0\xf4\x18\xfe\xdc\xbe\x31\x86\xad\xb3\x21\x9b\x68\ \x29\xed\xed\xed\xcb\x58\x6c\x0f\xe8\xb5\x26\xfc\x15\xb0\x2c\x40\ \x55\x9f\x2f\xfd\xce\x38\xd6\xb6\xd1\xbd\x70\xd6\x02\x0b\x9b\x1e\ \xc3\xd5\xaf\xe1\xef\xc7\x61\x6b\x4f\x4f\xb4\x54\x87\xce\x09\x4f\ \xa6\xe8\xb5\x28\xfc\xf3\xc5\x8b\xfc\xba\xeb\x64\x5f\x1d\x23\x00\ \xbb\x3a\x00\xaa\x40\xce\x02\x54\x85\x85\x4d\x8f\xe1\xea\xdb\xf0\ \xf7\xd9\xb0\x75\x5c\xbc\xfd\x52\xa8\x64\x22\x98\x2f\xad\xa2\x17\ \xf8\xf0\xcf\x39\x4e\xe6\x6d\x0b\x1b\x01\x20\x95\xea\x71\x74\x00\ \x60\x36\x02\x85\x6b\x04\x79\x1b\x43\x7b\xaa\x60\x61\xd3\x63\xb8\ \x0e\x7a\x61\xbb\xa6\xee\xe5\x61\xeb\xa6\x86\x6b\x00\x5f\x5a\x45\ \x2f\xf0\xe1\x9f\xb5\x86\xe6\xb9\xaa\x79\x2e\x95\xea\xb1\x80\x21\ \x97\x00\xac\xe7\x80\xd2\x35\x02\x16\x36\x3d\x86\x7f\x59\x2f\x63\ \x85\xef\x9a\x3a\x7c\x56\x5f\xbc\xbc\x7d\x3c\x99\xa2\xd7\xc4\xf0\ \xcf\xe4\x65\xc8\x48\x3e\x00\xc4\xe3\xd6\x33\xa5\xff\x8e\x96\xfe\ \xc3\xb2\xa3\x1b\xdd\x4f\x02\x8a\x28\xe2\x11\x40\x58\xd8\xf4\x18\ \xfe\xfe\x1c\x56\x4f\xc6\x43\x38\xd7\x82\x87\xb7\x2f\x11\x61\x7b\ \x40\xaf\x29\x5e\x26\x27\x83\x4e\xe9\xdf\x91\x08\x20\xd1\xd8\xe0\ \xe5\xfe\xc1\x96\xe1\x27\x37\x6c\x7f\x45\x81\x3e\x67\x4f\x95\xe1\ \x4f\x8f\xe1\xdf\x88\xf0\x57\xce\xb5\x10\xd6\x7b\x44\xd8\x1e\xd0\ \x6b\x96\xe7\x3c\x99\x07\x10\x35\x80\x00\xbd\xb8\xf7\xe1\x97\x86\ \x74\x00\xba\xbb\xbb\xe4\xce\x97\xf7\xb2\xa1\x78\xbc\xb4\xf2\x18\ \xc3\x9f\x5e\x53\xbc\x10\x3e\xa7\x9e\xce\xfa\xab\x33\x06\x86\x7f\ \xb0\x3b\xb3\xf4\x82\xed\xa9\x23\xcf\xe5\x31\xf9\xfa\xae\xa1\x7e\ \xe3\x38\xc6\x61\x17\x3b\x00\x51\xc3\xf0\xa7\xd7\x24\xcf\x77\xd7\ \xd4\xbd\xfe\xa8\x5a\x80\x87\xad\x19\xfe\x6c\x5f\xe8\x8d\xdb\x73\ \x8d\xe4\x3f\xe6\xfc\xce\x90\x5a\xa9\x90\x0d\x11\x9e\xf9\xd3\xf3\ \xe3\x99\x75\xb3\xfe\xde\x44\x84\xd7\xd4\x19\xae\x0c\x7f\x7a\xde\ \xf7\x00\x24\xa2\x3a\x34\xcf\xd5\xde\x30\x62\x07\x20\x26\xd6\x23\ \xd5\xbc\x5a\x98\x85\x4d\xaf\xb5\xe1\xaf\x9c\xc2\x98\xe1\xca\xed\ \xa3\x47\xcf\xe5\x0d\x3b\x99\x37\x28\xdb\x01\xd0\x54\xaa\xc7\x32\ \xf9\xfc\x63\x2c\x6c\x7a\xbe\x0a\x7f\x3f\x5e\x53\xf7\xfa\xa3\x6a\ \x0c\x57\x86\x3f\xbd\xe0\x85\x3f\x00\xa4\x73\x8f\x0f\xeb\x00\xa4\ \x52\x3d\x0a\x00\xb2\xe4\xb1\x6d\xd0\xf2\x93\x02\xb1\xb0\xe9\x35\ \xcc\xf3\xf4\xbb\xdf\x1b\x11\x0e\x71\x86\x3f\xb7\x8f\xed\x01\xbd\ \x66\x7b\x9b\x64\xc9\x63\xdb\xca\x8d\x00\x38\x84\xa1\x43\x04\x2c\ \x6c\x7a\x0d\xf5\x42\x79\x4d\x5d\xbc\xbd\x7d\x0c\x57\x86\x3f\xbd\ \x20\x7a\xc3\xb2\xbd\x5c\x07\xe0\x31\x16\x36\x3d\x3e\xa7\xce\xf0\ \xe2\xf6\x31\xfc\xe9\x05\xca\x7b\x6c\xec\x0e\x80\x8e\x3e\x02\xc0\ \xc2\xa6\xe7\xbd\xc6\x97\xe1\xcf\xed\xe3\xf6\xd1\xa3\x37\xea\x47\ \xa5\x82\x11\x00\x5b\x36\xb0\xb0\xe9\xf9\x2b\x5c\x79\x4d\x3d\x30\ \xe1\xe5\xe9\xed\x53\x86\x3f\x3d\xff\x7a\xd1\x4a\x3a\x00\xd3\xf4\ \x49\x00\x39\x16\x36\x3d\x5e\x53\x67\xf8\x37\xb5\xbe\x64\xd5\xe3\ \x9d\x93\x0c\xc3\x9f\x9e\x5f\xbd\x1c\x26\xd9\x4f\x39\x7f\xd1\xdd\ \xdd\x25\x51\xf7\x52\x32\x77\x6d\x4e\x53\x9d\x4f\x40\x71\xe8\xe0\ \xc8\x01\x0b\x9b\x1e\xc3\x8b\xdb\xd7\xe8\xfa\x62\xe0\xf1\x70\x65\ \xf8\xd3\xf3\xa9\x27\x78\x42\xe6\xae\xcd\x95\x82\xbf\x78\xf2\xaf\ \xe5\x6b\xaf\xe2\x41\x86\x3f\x3d\x86\x7f\x10\xc2\x35\x84\x73\x2d\ \xf0\x8d\x95\xf4\xe8\xb9\x33\xfd\x01\x47\xf8\x47\x4a\xbf\x1e\xa1\ \x03\xa0\xf7\x97\xc2\x3f\x93\x17\xef\xce\x07\x4e\x8f\xe1\xcf\xed\ \x1b\x63\xd8\x3a\x1b\xb2\x89\x96\xd2\xde\xde\xbe\x8c\xc5\xf6\x80\ \x5e\xf3\x3d\xd1\xfb\x8b\xe1\x1f\x45\x71\xee\x9f\x51\x3a\x00\xd1\ \xfb\x55\x81\xac\x05\x16\x36\x3d\x86\xab\x5f\xc3\xdf\x8f\xc3\xd6\ \x9e\x9e\x68\xa9\x0e\x9d\x13\x9e\x4c\xd1\x6b\x81\x97\x19\xd0\x07\ \x00\xc4\x9d\xe1\x8f\x91\x2e\x01\x5c\xff\x8f\xd7\x9f\xcf\x5a\x78\ \x45\x55\x58\xd8\xf4\x18\xae\xbe\x0d\x7f\x9f\x0d\x5b\xc7\xc5\xdb\ \x2f\x85\x4a\x26\x82\xf9\xd2\x2a\x7a\x81\xf6\x54\xf1\xd2\xc7\x7e\ \x9b\x7c\xc5\x15\xfe\x48\xa5\x7a\x86\x77\x00\xba\xbb\xbb\xe4\x86\ \x1b\xf6\x8b\x59\x96\x0c\xde\x07\xe0\xa9\xf9\xc0\xe9\x31\xfc\x5b\ \xfd\xf7\x86\xed\x9a\xba\x97\x87\xad\x9b\x1a\xae\x01\x7c\x69\x15\ \xbd\xa0\x87\x3f\x06\x72\xf2\xd0\xe6\xcd\x89\x21\xbf\x4e\xa5\x7a\ \x2c\xc0\x75\x09\xc0\x79\x8d\x20\x67\xeb\x83\x2c\x6c\x7a\x0c\x7f\ \x97\x97\xb1\xc2\x77\x4d\x1d\x3e\xab\x2f\x5e\xde\x3e\x9e\x4c\xd1\ \x6b\x62\xf8\x67\xf2\x82\x4c\x16\x0f\x39\x7f\x0d\xc0\x2a\xfd\xe0\ \x6e\x15\x22\xa5\x61\x82\x9d\xe9\xe8\x83\x22\x3a\x7c\x3e\x61\x16\ \x36\x3d\x70\x58\xdd\x1f\xdb\x87\xc2\x4b\x92\x42\x37\xd7\x82\x87\ \xb7\x2f\x11\x61\x7b\x40\xaf\xa9\xde\xf6\xfe\xc1\x0e\x80\x02\xc8\ \x97\x26\xff\x1b\xd2\x01\xe8\xee\xee\x1a\x0c\x7f\x00\xb8\x61\x4d\ \xf4\xd1\x78\x04\xfd\x0c\x7f\x7a\x0c\xff\x7a\x87\xbf\x72\xae\x85\ \xb0\xde\x23\xc2\xf6\x80\x5e\xb3\xbc\xc2\x8f\xfd\xbf\x78\x38\xb9\ \xa1\x18\xfe\x59\x67\xf8\x0f\x76\x00\x8a\x43\xff\x43\x46\x0f\x56\ \xae\x8b\xf5\x8a\xe0\x2f\x2c\x6c\x7a\x8d\xf5\x42\xf8\x9c\x7a\x3a\ \xeb\xaf\xce\x18\x18\xfe\xc1\xee\xcc\xd2\x0b\xaa\x67\xd9\x58\xf3\ \xc0\x13\xd1\x1c\x80\x8c\x3b\xfc\x9d\x23\x00\x43\x1e\x0d\xd8\xd5\ \x53\x28\xbc\x0f\x80\x85\x4d\xaf\x61\x9e\xef\xae\xa9\x7b\xfd\x51\ \xb5\x00\x0f\x5b\x33\xfc\xd9\xbe\xd0\x1b\x97\x67\xd9\x78\x10\x40\ \xba\x5c\xf8\x3b\x3b\x00\xce\xf0\xdf\x75\x8d\xc0\x98\xfb\x59\xd8\ \xf4\x7c\x71\x66\xdd\xac\xbf\x37\x11\xe1\x35\x75\x86\x2b\xc3\x9f\ \x9e\xf7\x3d\x00\x13\x92\xf6\xbd\xa9\x54\x8f\x3d\xd2\xf7\xdc\x35\ \xd3\x1a\xd2\x53\x30\xf9\x07\x8b\x9d\x02\x16\x36\x3d\x5e\x53\xe7\ \x14\xc6\xdc\x3e\x86\x3f\x3d\xff\x78\x1a\x35\xf2\xc0\x68\xdf\x2d\ \x4d\x06\xa4\xe5\x7a\x09\x72\xdc\x23\xdb\x75\xe5\xdc\xb5\x80\xce\ \x65\x61\xd3\xf3\x64\xf8\xfb\xf1\x9a\xba\xd7\x1f\x55\x63\xb8\x32\ \xfc\xe9\xf9\xde\x13\xd1\x35\xb2\x60\xdd\x1b\xa3\x7d\xdf\x00\x85\ \x37\x02\x8d\xbc\x88\x2e\x63\x61\xd3\x6b\xa8\xe7\xe9\x77\xbf\x37\ \x22\x1c\xe2\x0c\x7f\x6e\x1f\xdb\x03\x7a\x8d\xf5\x54\x96\x8d\x65\ \x8c\x5d\x4b\x8d\xf9\x13\x0b\x9b\x5e\xc3\xbc\x50\x5e\x53\x17\x6f\ \x6f\x1f\xc3\x95\xe1\x4f\xcf\xff\x9e\xb1\xff\x54\x87\x0e\xc0\x84\ \xbf\x00\xd8\xce\xc2\xa6\xc7\xe7\xd4\x19\x5e\xdc\x3e\x86\x3f\x3d\ \x1f\x78\x82\x6d\xd8\x7a\xe0\x98\x8f\xf1\x8f\x59\x5b\xe5\xb8\x9e\ \x3c\x80\x15\x2c\x6c\x7a\xbc\xa1\x8e\xe1\xc5\xed\x63\xf8\xd3\xf3\ \x81\xa7\xb2\x42\x4e\xbe\xc5\xaa\x7d\x04\xa0\xa0\x2d\x63\x61\xd3\ \xf3\x6e\xe3\xcb\x6b\xea\x81\x09\x2f\x4f\x6f\x9f\x32\xfc\xe9\xf9\ \xc3\x53\x7b\x59\x25\x66\x65\xb5\xd6\x92\x65\x2c\x6c\x7a\x9e\x0d\ \x2f\x5e\x53\x0f\x46\xf8\x67\xd5\xe3\x9d\x93\x0c\xc3\x9f\x9e\x3f\ \x3c\x5b\x96\x8f\x65\x76\x77\x77\x49\x45\x35\x77\xc1\xe5\x13\x5f\ \xed\xcf\xca\xe3\x2c\x6c\x7a\x0c\x2f\x6e\x5f\x78\x5f\x0a\xc5\xf0\ \xa7\xe7\x0b\xef\x11\x39\x7e\xed\xcb\xa3\x05\x7f\x69\xee\x9f\x31\ \x6b\x6f\x77\x77\x97\x01\xd0\x9e\xce\x62\x25\x0b\x9b\x1e\xc3\xcb\ \x6f\xe1\x1a\xc2\xb9\x16\xf8\xc6\x4a\x7a\x61\xf6\x14\x7f\x1a\x2d\ \xfc\x51\x98\xf5\x17\xc0\x18\x97\x00\x8a\xe1\xdf\x06\xc0\x6c\xed\ \x8d\xdc\xcd\xc2\xa6\xc7\x70\xf5\xd9\x99\x75\x3a\x1b\xb2\x89\x96\ \xd2\xde\xde\xbe\x8c\xc5\xf6\x80\x5e\x63\xbd\x11\xae\xff\x17\xc3\ \x3f\x0a\xc7\xdc\x3f\x66\x8c\x9e\x42\xb2\xb4\xf0\x55\x7f\x8e\x3f\ \x0c\xa0\x97\x85\x4d\x8f\xe1\xea\xa7\x61\x75\x4e\xb4\xe4\xa9\xce\ \x09\xd8\x1e\xd0\x6b\xa8\xb7\x03\xd3\xcc\x83\x23\xe4\x79\x1c\xae\ \x89\xff\xcc\x28\xe1\x9f\x70\x2e\xfc\xf8\x73\x91\x6c\x5b\x42\x53\ \x2c\x6c\x7a\x0c\x7f\x5e\x53\x6f\x48\x7d\x89\x8b\xb7\x5f\x0a\x95\ \x4c\x04\xf3\xa5\x55\xf4\x02\xe4\x49\x4a\xe6\xae\xcd\xb9\xf2\xdc\ \xb8\xf3\x1c\x28\xbc\x01\xd8\x54\xd8\x53\xb0\x01\xf4\x1a\xd5\x3b\ \x58\xd8\xf4\x42\x1f\xae\x61\xbb\xa6\xee\xe5\x61\xeb\xa6\x86\x6b\ \x00\x5f\x5a\x45\x2f\x58\x9e\xda\x7f\x28\x13\xfe\x49\xf7\x99\x7f\ \x2a\xd5\x63\x01\xae\x4b\x00\xe5\xae\x11\xa0\x30\x1b\x60\x7f\x2a\ \xd5\x63\x23\x9b\xbb\x03\x40\x8e\x85\x4d\x2f\xb4\xe1\x9f\xb1\xc2\ \x77\x4d\x1d\x3e\xab\x2f\x5e\xde\x3e\xb0\x3d\xa0\xd7\x30\x2f\x8b\ \x98\x7d\xbb\x2b\xfc\xdb\xca\xe4\xf9\xe0\x0b\x82\xdc\xad\x42\xa4\ \xcc\xc2\x03\xa5\x99\x02\x65\xc9\x63\xdb\x00\x2c\x67\x61\xd3\xe3\ \xb0\xba\x5f\xae\xa9\xc7\x43\x38\xd7\x82\x87\xb7\x2f\x11\x61\x7b\ \x40\xaf\x31\x9e\xc8\x72\x39\xee\x91\xed\x8e\xf0\x6f\x2f\x93\xe7\ \x79\xe7\xe4\x7f\xc6\xd1\x5b\x28\x17\xfe\xe9\x61\xd3\x04\xab\xde\ \xc4\xc2\xa6\xc7\xf0\xaf\x65\xfb\x94\x73\x2d\x84\xf5\x1e\x11\xb6\ \x07\xf4\x1a\xe6\xd9\x37\x39\xc2\xbf\xc3\x75\x82\xaf\x00\xb2\xee\ \x99\x7f\x4d\xf1\x0b\xc3\x5e\x24\x08\x20\x33\x2c\xfc\x01\x20\x1f\ \xbb\x13\x40\x86\x85\x4d\xaf\x3e\x5e\x08\x9f\x53\x4f\x67\xfd\xd5\ \x19\x03\xc3\x3f\xd8\x9d\x59\x7a\x01\xf0\xd2\x48\xb6\xdd\xe9\x08\ \x7f\x29\x93\xe7\xea\xfe\x92\x71\x1c\xe3\xa3\xf6\x14\x06\x37\x6e\ \xf1\xc3\x3b\x20\x58\xca\x9d\x47\xaf\x2e\x9e\xef\xae\xa9\x7b\xfd\ \x51\xb5\x00\x0f\x5b\x33\xfc\xd9\xbe\xd0\x1b\xe1\x23\x4b\x17\x7c\ \x3d\xd6\x37\x42\xf8\xa7\x47\xca\x73\x53\xe6\xcc\x3f\x3f\xd2\xc2\ \x8e\x95\xdd\xcc\x9d\x47\x2f\x94\xd7\xd4\x13\x11\x5e\x53\x67\xb8\ \x32\xfc\xe9\x79\xca\xcb\xd9\xf6\x2d\x65\xc2\xdf\x86\xe3\x1e\xbe\ \x4a\x3a\x00\xd6\xd8\xe1\x0f\x20\x32\x70\x17\x80\x01\xee\x3c\x7a\ \xe1\xbb\xa6\x5e\xaf\x70\xe0\xb0\x3a\xb7\x8f\xed\x01\xbd\xba\x78\ \xfd\x3f\xbf\x27\xde\x83\x91\x9e\xde\x1b\xe5\x53\xaa\x9d\x9a\x4a\ \xf5\x54\x16\xfe\x00\xe4\xb8\xbf\xf6\x42\x70\x17\x77\x1e\xbd\x96\ \x87\xbf\x1f\xaf\xa9\x7b\xfd\x51\x35\x86\x2b\xc3\x9f\x9e\x6f\xbc\ \x9d\x69\x59\x7e\xdb\xda\xe4\x80\x2b\xfc\x7b\xc7\x0a\xff\xc1\x0e\ \x40\xa5\xc1\x3f\xe4\xa3\x72\x13\x77\x1e\xbd\xba\x78\x9e\x7e\xf7\ \x7b\x23\xc2\x21\xce\xf0\xe7\xf6\xb1\x3d\xa0\x57\x17\x6f\x7b\x1f\ \x7e\x5f\x4d\xf8\x3b\x47\x00\xc6\xfd\x79\x7a\x47\x7c\x59\x3a\x2b\ \xfd\xdc\x79\xf4\x6a\xf2\x42\x79\x4d\x5d\xbc\xbd\x7d\x0c\x57\x86\ \x3f\x3d\x5f\x78\xb6\xa2\xef\xc6\xd5\xed\xa9\x6a\xc2\xbf\xea\x0e\ \x40\x77\x77\x97\x39\xfb\xaa\x78\x24\x93\xdf\xf5\x34\x00\x77\x1e\ \xbd\xea\x3c\x3e\xa7\xce\xed\xe3\xf6\xb1\x3d\xa0\x57\x8d\x97\xcb\ \x63\xe9\xdd\x1b\xcc\x40\x35\xe1\x5f\x55\x07\xc0\xf9\x9c\xe1\xb6\ \x7e\xf9\x1d\x77\x1e\xbd\xd6\x37\xbe\x0c\x7f\x6e\x1f\xb7\x8f\x5e\ \xf8\xbc\xad\x7d\xf2\xbb\x6a\xc3\x7f\xdc\x1d\x00\xf7\x4b\x06\xbe\ \xf5\xfb\x49\xab\x00\xbc\xc8\x9d\x47\xaf\xb5\x8d\x2f\xaf\xa9\x07\ \x26\xbc\x3c\xbd\x7d\xca\xf0\xa7\xe7\x19\xcf\x56\x6c\xfa\xda\x0d\ \x91\x7b\xaa\x0d\xff\x71\x75\x00\xca\xbd\x61\x68\xd3\x76\x2b\x9f\ \x8c\xea\x35\xdc\x79\xf4\x5a\x1a\x5e\xbc\xa6\x1e\x8c\xf0\xcf\xaa\ \xc7\x3b\x27\x19\x86\x3f\x3d\xcf\x78\x59\x0b\xbf\x7a\x35\x93\xdc\ \x51\x6d\xf8\x77\x77\x77\x49\xb4\xda\xf0\x2f\x0d\x3b\x44\xc4\x5c\ \x07\xd8\x5f\x1d\x4f\x67\x82\x3b\x8f\x1e\xc3\x95\xdb\x37\xcc\x33\ \xf0\x78\xb8\x32\xfc\xe9\x79\xc6\xb3\xe3\xf1\xe8\xd5\xd5\x84\x7f\ \xf1\xd5\xff\x06\x18\x72\xc8\x8d\x1a\xfe\xe5\x66\x15\xea\x4d\xa5\ \x7a\x6c\x59\xb4\x7a\x13\x80\x65\xdc\x79\xf4\x18\xae\x1c\xb6\xae\ \x8f\x57\xe3\x7b\x21\xf8\xc6\x4a\x7a\xc1\xf7\x96\x4d\x5a\xfc\xd0\ \x0b\x55\x86\x7f\xa4\xf4\xb3\xa9\x20\xfc\xdb\x30\x7c\x56\xa1\xa1\ \xd7\x1c\x04\x3f\xe7\xce\xa3\xc7\xf0\xf7\xe2\xb0\x75\x36\x64\x13\ \x2d\xa5\xbd\xbd\x7d\x19\x8b\xed\x01\xbd\x3a\x78\x72\x75\x95\xe1\ \x1f\x75\x9e\xcc\x9b\x31\x16\x4e\x8e\x74\xe6\x3f\x64\xe1\x29\xf8\ \x23\x80\x57\xb8\xf3\xe8\x31\xfc\x39\x6c\x5d\x93\xe7\xe9\x89\x96\ \xea\xd0\x39\x01\xdb\x03\x7a\x35\x7b\x2f\x23\xda\xf1\xc7\x2a\xc2\ \x3f\xee\xce\x73\x33\xca\xc2\x89\x8a\xc2\x1f\x80\xcc\x5d\x9b\x83\ \xe2\x7a\xee\x3c\x7a\x0c\xff\x00\x9e\x59\x37\xab\xbe\xc4\xc5\xdb\ \x2f\x85\x4a\x26\x82\xf9\xd2\x2a\x7a\xfe\xf2\x44\xae\x97\xe3\x7a\ \xf2\xe3\x08\x7f\x53\x26\xcf\x91\x4a\xf5\x0c\xef\x00\x8c\xd0\x53\ \xb0\x31\xd6\xa3\x06\x11\x5c\xcb\x9d\x47\x2f\xf0\xe1\x6a\x65\x6b\ \xdf\x3e\x3b\xd3\xbc\xfd\x61\x67\xeb\x70\xe6\x3a\xd0\x9c\xfa\xe2\ \x28\x97\xaa\xeb\x8b\x9d\xe3\x4b\xab\xe8\x05\xdb\x13\xbd\x6e\x9c\ \xe1\x3f\x6c\x24\x3f\x95\xea\xb1\x00\xd7\x25\x80\x72\xd7\x08\x50\ \xe1\xac\x42\x32\x7f\xed\x33\x10\xdc\xc3\x9d\x47\x2f\xd0\x67\xd6\ \xbd\xaf\xd5\xbe\x7d\xe9\xd7\x9a\xb7\x3f\xb2\x5b\x6b\x1f\xb6\x4e\ \x6f\x6e\x4e\x7d\xc9\x6d\x03\xd4\xae\xad\xbe\xe4\xb6\x78\xbb\x3e\ \x83\xed\x01\xbd\x5a\x3c\xb9\x5b\xe6\xaf\x7d\x66\x1c\xe1\xdf\x56\ \x26\xcf\xad\xd2\x0f\x66\xd8\x79\xfc\xf0\x85\x07\x2a\x7f\xd4\x40\ \x7e\xce\x9d\x47\x2f\xd0\xc3\xea\x3b\x9f\x01\xac\x74\x6d\xdb\xb7\ \xfd\x91\xe6\xed\x8f\xcc\xdf\x6a\x0b\xff\x5c\x2f\xd0\xbf\xb1\x39\ \xf5\x45\x6d\x60\xc7\xe3\xb5\xd5\x97\xf4\xff\x7a\xbb\x3e\x27\x22\ \x6c\x0f\xe8\x55\xef\x89\x5d\xd1\x0d\xf7\xa3\x3c\xbd\x97\x77\x4e\ \xfe\x67\x1c\x5f\x28\x17\xfe\xe9\x71\x3d\x67\x98\xdd\x7e\x1b\x80\ \xcd\xdc\x79\xf4\x02\x19\xfe\x5a\x18\x52\xc7\xe6\xfb\xaa\xdf\x3e\ \x6b\x00\xf6\xe6\xfb\x9b\xb7\x3f\x36\xff\xcf\x90\x4b\x0e\xe3\xde\ \x1f\x9b\xef\x03\xec\x7c\xf3\xea\xcb\x2b\x2b\x6a\xab\x2f\xaf\xad\ \xf4\x76\x7d\x66\x7b\x40\xaf\x7a\x6f\x33\xb2\x3b\x6e\xaf\x30\xfc\ \x3b\x30\xfc\xe9\xbd\xac\x7b\xe6\x5f\x53\xfc\x82\x7b\xb3\x15\x40\ \x66\xbc\x2f\x19\x90\xc5\x4f\x67\x2c\xc5\x55\xdc\x79\xf4\x2a\xf7\ \x7c\xf8\x9c\xfa\xf3\xbf\x40\x32\x11\xab\x6e\xfb\x9e\xfb\x35\xd2\ \xfd\x3b\x9b\xb7\x3f\x72\xdb\x81\xe7\x7f\x5b\x5d\x78\x69\x1e\x78\ \xee\x97\xcd\xad\x2f\xff\xb8\x0d\xc8\xbc\x56\x5d\xb8\x6e\x7b\x08\ \xd8\xfe\x08\x3b\xb3\xf4\x02\xea\xc9\x8f\x65\xf1\xd3\x99\x0a\xc3\ \x5f\xca\xe4\xb9\xba\x97\x2f\xd5\x48\x19\xab\xa7\x50\xe9\xb0\xc3\ \xf2\x47\xcd\x2f\x6c\x45\x86\x3b\x8f\x5e\x45\x5e\xc6\xf2\x5f\x63\ \x99\xdf\x04\xf3\xf4\x0f\xc7\xef\x6d\x7f\x14\xe9\xbf\xff\xa2\xf9\ \xfb\x63\xe3\xb5\xc0\x8e\x27\xc6\x1f\x5e\x7f\xff\x11\x24\xf3\x52\ \x73\xeb\x8b\x9d\x01\x1e\xff\x32\xa0\xd6\xf8\xc2\x35\xbf\x0d\x78\ \xe2\x5b\x0c\x7f\x7a\x41\xf5\xd2\xb0\xb3\x3f\xa9\x32\xfc\xd3\x23\ \xe5\xb9\x29\x73\xe6\x9f\xaf\x36\xfc\x01\x74\x5c\xb1\x7c\xc2\x96\ \x6c\x5e\x6e\xe4\xce\xa3\x37\x7e\xcf\x47\x8d\xe5\xa6\x9b\x81\x67\ \xae\x1a\x5f\xf8\xaf\xfe\x02\xd4\xca\x35\x7f\x7f\xd8\x19\xe0\x91\ \xcf\x8f\xda\x09\x18\x16\x5e\xcf\x5e\x0d\x79\xf9\x8e\xd6\xd4\x97\ \x6d\xeb\x80\xc7\x2e\x1a\xbc\xd7\x62\xcc\x70\xcd\x6d\x06\xd6\x9f\ \x3b\xea\xc8\x01\xc3\x9f\x9e\xaf\x3d\xd5\x5f\xca\xa2\x0d\xaf\x8d\ \x33\xfc\x6d\x8c\x71\x0f\x9f\xbb\x66\x5a\xb5\x84\x7f\x69\xe5\x7f\ \x7f\x2d\xf2\x63\xee\x3c\x7a\xcd\x0b\x7f\x6d\xc1\xdf\xab\x85\x33\ \xeb\x75\x9f\x01\xfa\x9e\x1d\x19\xb3\x06\x60\x3f\xf3\x33\xa4\x1f\ \x3a\x1b\x9a\xdd\xde\xba\xfd\x91\xdd\x02\xac\x39\x0b\xd8\x78\xcd\ \x90\x60\x1d\x16\x5e\xbd\xcf\x02\x8f\xfe\x07\x64\xd3\x0d\xad\xad\ \x2f\xaf\xad\x02\xfe\xf2\x51\x60\xcb\x83\xa3\x84\x6b\x02\xe6\x95\ \xbb\x80\x87\x4f\x03\x76\x3e\xc5\xf0\xa7\x17\x54\x4f\x11\x35\x57\ \x54\x71\xe6\x3f\xe6\xd3\x7b\xa5\xc9\x80\xb4\x86\x19\x85\x86\xad\ \xfc\xcb\x37\x27\x9f\x5a\x7e\xc1\x8e\x3f\x18\x91\xf7\x72\xe7\xd1\ \x6b\x68\xf8\xdb\x76\xf1\x75\xb7\x2d\xfa\x7b\xb7\x3e\x0c\x3c\xf4\ \x6f\xc0\xe4\x43\x81\xe9\xc7\x00\xc9\x3d\x81\x48\x12\xc8\x6c\x06\ \xde\x78\x14\xf6\xeb\xf7\x35\xf7\x9a\xff\xa8\x5f\xce\x02\xcf\xfc\ \x14\x78\xe1\x06\x60\xfa\xb1\xc0\xe4\x43\x61\xc7\xa7\x21\xdd\xb7\ \x13\x9a\x7e\x09\xd8\xf2\x17\x60\xc7\xe3\x10\xd8\xde\xa8\x2f\x7d\ \xcf\xc2\x5e\x77\x2e\xd2\xf1\x03\xa0\xd3\x8e\x01\xda\xf6\x01\xa2\ \x1d\x90\xfc\x1b\x48\xe6\x9e\x83\xd9\x7c\x2f\x90\x7e\x85\xc3\xfe\ \xf4\x82\xee\xdd\x29\xff\xb2\xe6\xc9\x71\x86\x7f\x45\x53\x04\x47\ \x81\xc2\x1b\x81\xea\x15\xfe\xa5\x95\x1b\x83\xcb\xa0\x78\x2f\x77\ \x1e\xbd\x31\x3d\x4f\xbf\xfb\xbd\x02\x4f\x6d\x60\xfb\xfa\xc2\x3f\ \x7e\xd8\x1f\xb9\x1d\xc0\xcb\x4b\x61\xbf\xb4\xd4\x1f\xf5\x25\xfb\ \x6c\x61\x64\x02\x7c\x7a\x85\x5e\x28\xbd\xcb\x1b\x11\xfe\xc0\x38\ \xa6\xf0\x1d\xf7\xca\xe7\xaf\xbb\x0f\x8a\xbf\x70\xe7\xd1\x1b\xd5\ \x4b\x44\xf8\x7a\x55\x7a\xfe\xf3\x18\xfe\xf4\x9a\xe3\x3d\x8c\xee\ \xb5\xf7\x37\x22\xfc\xab\xee\x00\x54\xb2\x72\x11\xe8\x48\x3d\x17\ \x56\x06\x7a\x7c\xbd\x2a\x3d\x86\x3f\xf7\x07\xbd\x31\xbe\x2c\x72\ \x79\x31\x4b\xeb\x1e\xfe\x55\x75\x00\xc6\xb5\xf2\xd8\xc4\xdb\x00\ \x6c\x64\x65\xa0\xd7\xd8\xc6\x97\xe5\x47\x8f\xe1\x4f\x2f\x70\xde\ \x46\x6c\x9d\x75\x5b\xa3\xc2\x7f\xdc\x1d\x80\xf1\xae\xbc\x38\x63\ \xd1\x15\xac\x0c\xf4\x1a\xdb\xf8\xc6\x59\x7e\xf4\x9a\xe0\x29\xc3\ \x9f\x5e\x13\x3d\xf9\x81\x9c\x7c\x8b\xd5\xa8\xf0\x1f\x57\x07\xa0\ \xea\x95\x47\xd3\xd7\x43\xb0\x8d\x95\x81\x5e\xe3\x5e\xaf\x2a\x2c\ \x3f\x7a\x8d\xf7\xd2\x19\x86\x3f\xbd\xe6\x78\x82\x6d\xb0\xb3\xd7\ \x37\x32\xfc\xbb\xbb\xbb\xc4\x54\xb8\x60\xd5\x2b\x97\xe3\xfe\xda\ \xeb\x1e\x05\x60\x65\xa0\xc7\x61\x57\x7a\xfe\xf3\x58\xff\xe8\x35\ \xc9\x53\xfc\x40\x16\x6d\xe8\x6b\x44\xf8\x77\x77\x77\x49\x69\xee\ \x1f\x53\xc1\xc2\x23\xcd\x2a\x54\xf9\xca\xb3\xd1\xff\x02\xb0\x95\ \x95\x81\x1e\xc3\x9f\x9e\xff\x3d\xd6\x3f\x7a\x0d\xf5\xb6\x22\x17\ \xfd\xef\x46\x85\x3f\x0a\xb3\xfe\x02\x18\xe3\x12\x80\x63\x3e\x61\ \x53\xcb\xca\x65\xf1\xc3\x3b\x00\x5c\xc6\xca\x40\x8f\xe1\x4f\x2f\ \xb4\xe1\x6f\xdb\xc5\xb9\x2f\xb8\x3f\xe8\x8d\x7a\xf6\xff\x3d\x59\ \xfc\xf0\x8e\x06\x85\x7f\xd4\xe9\x99\x31\x16\x4e\xd6\x6b\xe5\x9b\ \xde\xc8\xfd\x64\x20\x2b\x9b\x59\x19\xe8\x31\xfc\xe9\x85\xf3\x8d\ \x95\xe9\x21\xcf\x73\x71\x7f\xd0\x2b\xf3\x79\x1d\x9a\xbb\xb2\x41\ \xe1\x1f\x77\x7b\x66\x94\x85\x13\x75\x5c\xb9\x39\xf3\xa7\xbb\xa1\ \x77\x40\x7e\xc8\xca\x40\x8f\xe1\x4f\xcf\x9f\x6f\xac\x4c\xf0\xa5\ \x55\xf4\x1a\xeb\x09\x2e\x59\x70\xd9\x6e\x03\x75\x0e\x7f\x53\x26\ \xcf\x91\x4a\xf5\x0c\xef\x00\x8c\xd0\x53\xb0\x6b\x5c\x79\x07\x00\ \xf9\xf5\xff\xc4\xaf\x53\xc5\xab\xac\x0c\xf4\x18\xfe\xf4\xfc\xe7\ \xf1\xa5\x55\xf4\x1a\xea\xbd\xfc\xf4\x1b\x89\x9f\x35\x20\xfc\x87\ \x8d\xe4\xa7\x52\x3d\x16\xe0\xba\x04\x50\xee\x1a\x01\x2a\x9c\x55\ \x68\xac\xf0\x07\x80\xe5\x4f\xc4\xfa\xfb\xb3\xf2\x7d\x56\x06\x7a\ \x0c\x7f\x7a\xa1\xac\xcf\x60\xf9\xd1\x2b\xff\xc9\xdb\xf2\xdd\xb3\ \xaf\x8a\x47\xea\x1c\xfe\x6d\x65\xbc\xc1\x77\x0b\xb8\x5b\xd5\x72\ \x2b\x1f\xa8\x47\xf8\x97\xbc\xad\xe9\x09\x3f\x36\xc0\x8b\xac\x0c\ \xf4\x18\xfe\xf4\x42\x57\x9f\x13\x11\x96\x1f\xbd\x32\xf5\x05\x2f\ \x7e\xe7\xf6\xc8\x8d\x75\x0e\xff\x72\x4f\xef\xe5\x9d\x93\xff\x19\ \xc7\x17\xca\x85\x7f\xba\x9e\xe1\x0f\xa0\xf7\x6d\xa7\xf6\xf4\x03\ \xf8\x36\x2b\x03\x3d\x86\x3f\xbd\xf0\xbd\xb4\x8a\xe5\x47\x6f\xb8\ \xf7\x7a\xaf\xb9\xfc\x7f\xfe\xde\x96\xab\x63\xf8\x77\x60\xf8\xd3\ \x7b\x59\xf7\xcc\xbf\xa6\xf8\x05\xf7\x66\x2b\x80\x4c\xbd\xc3\x7f\ \xd0\xdb\x9e\xbe\x0e\x82\xe7\x58\x19\xe8\xf1\xf5\xaa\xf4\xd8\x99\ \x65\xf9\x85\xd9\x1b\xc8\xc9\x0b\x3f\xb8\x33\x76\x43\x9d\xc3\x5f\ \xca\xe4\xb9\xba\x97\x2f\xd5\x48\x19\xab\xa7\x50\xb7\xf0\x07\x20\ \x27\xff\x35\x0b\x95\x6f\xb2\x32\xd0\x2b\x3c\x17\xcd\xc6\x92\x1e\ \xc3\x9f\xfb\x23\x9c\xde\xf6\x3e\x5c\xba\xee\x1f\xf1\x6c\x03\xc3\ \x3f\x3d\x52\x9e\x47\xcb\x9c\xf9\x5b\x8d\x0c\xff\x5d\x6b\xee\xf8\ \x15\x72\x3b\xcf\x87\xe0\x60\x56\x06\x7a\x35\x35\x96\x89\x19\xb0\ \xa7\x77\x15\x3a\x13\x8e\x5f\x0b\x50\xdb\x35\x57\x7a\xf4\x9c\x9f\ \xd8\x64\x86\x3f\xbd\xba\x7a\x96\x85\xff\xfd\xf6\x9d\x1d\x37\x35\ \x28\xfc\x6d\x8c\x71\x0f\x9f\xbb\x03\xd0\x9c\xf0\x47\x61\xa6\x40\ \x4d\x1d\xf1\x39\xa8\xbd\x92\x95\x21\xc4\x5e\x11\xad\xa9\xb1\x9c\ \x78\x30\xd2\x6f\xb9\xb8\x7e\x8d\x6f\xbd\x1b\x73\x7a\xf4\x86\xb4\ \xc9\x6c\x0f\xe8\x15\xbc\x57\xde\xc0\x85\x7f\x7f\x05\xf9\x06\x9d\ \xf9\x8f\xf9\xf4\x5e\xa9\x03\xa0\x35\xcc\x28\x54\xfd\x44\x41\xdd\ \xab\x53\xba\x72\xce\x9d\x80\x9c\xc8\xca\x10\x52\x2f\xb7\x95\xe1\ \x40\x2f\x3c\x5e\x66\x0b\xdb\x03\x7a\x50\x05\x72\x16\x96\x7e\xfa\ \x97\x1d\xf7\x36\x28\xfc\x2b\xf2\x0c\x50\x78\x23\x50\xb3\xc3\x7f\ \xd7\x98\x03\xfe\x03\x40\x8e\x95\x2b\xa4\x5e\xe6\x75\x86\x03\xbd\ \xf0\x78\x99\x57\xd9\x1e\xd0\x03\x80\xec\x13\x9b\xcc\x97\x5b\x19\ \xfe\x83\x1d\x80\x96\x85\x3f\x00\x39\x7e\xdd\xd3\x80\xfc\x90\x95\ \x2b\xa4\x9e\xbe\xce\x70\xa0\x17\x0e\x4f\x2d\x20\xbb\x95\xed\x01\ \x3d\x0c\x64\xf4\xaa\xaf\xdd\xde\xfe\x4c\x2b\xc3\xbf\xea\x0e\x40\ \xbd\x27\x2a\x78\x79\x73\xf4\x3b\x03\x59\x79\x9d\x95\x2b\x84\x5e\ \x6e\x1b\xd0\xff\x3c\xc3\x81\x5e\xf0\xbd\xed\x8f\x00\x6a\xb3\x3d\ \x08\xb9\xa7\x8a\xd7\xfe\xb8\xbe\xed\xb2\x56\x87\x7f\x55\x1d\x80\ \x06\xcc\x52\x64\x3e\x7a\x6d\xd2\x7e\x63\xc0\x5c\xcc\xca\x15\x46\ \x4f\x81\x57\x96\x33\x1c\xe8\x05\xdf\x2b\x53\xcf\xd9\x1e\x84\xcf\ \xeb\xcd\x98\x6f\xfc\xe6\xa1\xe8\xcb\xad\x0e\xff\x71\x77\x00\x1a\ \x11\xfe\x25\xef\xcb\x37\x4d\xbc\xc1\xb2\xb1\x81\x95\x2b\x84\xde\ \xab\x2b\x18\x0e\xf4\x82\xed\xa9\x05\xbc\x76\x0f\xdb\x83\x90\x7b\ \xaa\x78\xf4\x4f\x7f\x7c\xfd\x6a\x2f\x84\xff\xb8\x3a\x00\x8d\x0c\ \x7f\x00\xd8\xb4\xdd\xb2\x5e\xdb\x29\x17\xb0\x72\x85\xd0\xeb\x7b\ \x0e\xd8\xfc\x3f\x0c\x1b\x7a\xc1\xf5\x5e\xfa\x03\x90\xdb\xce\xf6\ \x20\xe4\x5e\x2c\xaa\x9f\x3d\xf3\xfa\x8d\x79\x2f\x84\x7f\x77\x77\ \x57\x65\xf3\x5b\x36\x3a\xfc\x9d\xde\xca\x0b\x77\xde\x08\xe0\x64\ \x56\xae\x90\x79\x6d\x7b\x01\x47\xdf\x02\x98\x38\xc3\x86\x5e\xb0\ \xbc\xdc\x0e\xe0\x81\x93\x06\x3b\x00\x6c\x0f\x42\xea\x45\x71\x73\ \x64\xd1\x9a\x53\x5a\x1d\xfe\xc5\x57\xff\x1b\x00\x6a\x2a\x5c\x79\ \x7b\x33\xc2\x3f\x95\xea\xb1\x61\xec\x0b\x00\xa4\x59\xb9\x42\xe6\ \x0d\xfc\x03\x78\xee\x7a\x86\x0d\xbd\xe0\x79\x4f\x5f\xc9\xf0\xa7\ \x37\x60\xa2\xd6\x05\x1e\x09\xff\x48\xe9\x67\x53\xc1\xca\xdb\x30\ \x7c\x56\xa1\x86\xdd\xbd\x28\xf3\xd7\x3f\x0f\x91\xaf\xb1\x72\x85\ \xd0\xdb\x78\x1d\xf0\x7a\x0f\xc3\x86\x5e\x70\xbc\x7f\xfc\x1e\xf8\ \xc7\x6d\x6c\x0f\x42\xef\xe9\xd7\x64\xfe\xfa\x71\x3d\xee\xd4\xa0\ \xf0\x8f\x3a\x3d\x33\xc6\xc2\xc9\xa6\x9d\xf9\x3b\x3f\x91\x8e\x1f\ \x00\x58\xcf\xca\x15\x32\x4f\x2d\xe0\xb1\xff\x04\xb6\xad\x63\xd8\ \xd0\xf3\xbf\xf7\xda\x3d\xc0\xff\x5e\x02\x40\xd9\x1e\x84\xdb\x5b\ \x8f\xe8\xa4\x2b\x3c\x10\xfe\x71\xb7\x27\xa3\x2c\x9c\x28\x0e\x15\ \x88\xa3\xa3\xd0\xb4\xe7\x16\xf5\xee\xce\x39\xb0\xf1\x17\xe7\x70\ \x05\x2b\x57\x48\xbc\x48\x07\xd2\x07\x7e\x05\xba\xdb\x51\x0c\x1b\ \x7a\xfe\xf4\x5e\x5e\x0a\xfc\xed\x5b\x80\x9d\x65\x7b\x10\x6e\xcf\ \x82\xc1\x3b\x65\xfe\xda\x75\x2d\x0c\x7f\x53\x0c\x7f\xa0\x30\x19\ \x85\x02\xb0\x53\xa9\x1e\x4b\x46\xe9\x29\x98\xe2\x3f\xa5\x65\xfa\ \x9b\xfd\xe8\x82\xae\x9c\xfb\x3d\x40\xbf\xc8\xca\x15\x46\x4f\x80\ \xbd\xff\x0f\x70\xc0\xa7\x20\x26\xc6\xb0\xa1\xe7\x0f\xcf\x4a\x17\ \xce\xfa\x5f\xbe\x8b\xed\x01\x3d\x40\xf5\x7b\xb2\x70\xdd\x85\x2d\ \x0e\xff\x64\xd1\xd0\x62\x07\xc0\x4e\xa5\x7a\xf2\x80\xeb\x12\x40\ \xb9\x6b\x04\xa8\x70\x56\xa1\x86\xfc\x31\x69\xfd\x3a\x80\x67\x59\ \xb9\xc2\xe8\x29\xf0\xe2\x2d\x90\xb5\x9f\x40\x72\xe7\x03\x0c\x1b\ \x7a\xde\xf6\xd4\x2e\x3c\xea\xf7\xd0\x29\x0c\x7f\x7a\x25\xef\x19\ \x64\xe4\x1b\x2d\x0e\xff\xb6\x32\x9e\x35\xb8\xbd\xae\x2f\x44\x5d\ \x67\xfe\x02\x20\xdd\xca\x97\x16\xe8\x8a\xc3\xe7\x43\x4c\x8a\x95\ \x2b\xe4\x5e\xc7\x81\xc0\xbe\x1f\x02\xa6\xcd\x03\x12\xd3\x19\x5e\ \xf4\xbc\xe1\xa5\x5f\x01\x5e\xff\x33\xf0\xc2\x0d\xc0\xc0\x8b\x3c\ \x7e\xe9\xed\xf2\x6c\x9d\x2f\x8b\xd6\xdd\xd3\xc2\xf0\x6f\x77\x38\ \x76\xf1\x9f\xac\x73\xf2\x3f\x71\x7c\x21\xe2\x08\xfe\x52\x8d\xcf\ \x7a\xe1\x8d\x45\xf9\xe5\x73\xaf\xcf\xe4\xf1\x31\x56\x2e\x7a\x80\ \x00\x13\xdf\x0c\x4c\xed\x04\x12\xbb\x03\xf1\x69\x85\x0e\x81\x44\ \x1d\x9e\x22\x9d\xce\x0c\xf7\x92\x09\x18\x91\x2a\xb6\x8f\x1e\x3d\ \x00\x76\x16\xc8\x6e\x29\xfc\x93\x7e\x05\xd8\xba\xba\xf0\x12\x2b\ \x28\x8f\x5f\x7a\x2e\x4f\xaf\x93\x05\xeb\x3e\xde\xc2\xf0\xef\x28\ \x6d\xae\xe3\xac\x3f\xe3\x9e\xf9\x57\x1c\x43\xff\xee\x33\xff\x6c\ \x35\xd3\x04\x37\xe2\x8f\xf9\xf7\xae\xfc\x3e\x8b\x0e\x4d\xaf\x16\ \xc1\x0c\x56\x2e\x7a\xf4\xe8\xd1\xa3\xe7\x61\xef\x55\x58\xf1\xb7\ \xcb\xf1\x0f\x6e\x6d\x61\xf8\x8b\xeb\xcc\x7f\xa0\x5c\x9e\x1b\xf7\ \x48\x40\xf1\x4b\x9e\x09\x7f\x00\x1d\x3f\xed\x89\x6e\xdf\xda\x87\ \x0b\x58\xb9\xe8\xd1\xa3\x47\x8f\x9e\xa7\x3d\xc5\xb9\x1e\x08\x7f\ \xa7\x97\x1e\x29\xcf\xdd\x17\xb7\x14\x40\xde\x4b\xe1\x5f\xf2\x3e\ \x7b\x63\xf2\x76\x4b\xe5\x4f\xac\xac\xf4\xe8\xd1\xa3\x47\xcf\x9b\ \x9e\xde\x89\x05\x6b\xff\x9f\x47\xc2\xbf\x74\xe6\x3f\xa2\xe7\xee\ \x00\x58\x5e\x0c\x7f\x00\xe8\xeb\x8b\xda\x90\xdc\xa7\x8c\x60\x2b\ \x2b\x2b\x3d\x7a\xf4\xe8\xd1\xf3\x98\xb7\x15\xaa\x67\x8b\x40\x3d\ \x72\xe6\x3f\xe6\xd3\x7b\xa5\x3b\xa7\xb4\x86\x19\x85\x9a\x36\x51\ \xd0\xe4\x25\x8f\xec\xd0\x15\x73\xce\x82\xc8\xef\x59\x59\xe9\xd1\ \xa3\x47\x8f\x9e\x67\x3c\xd5\xb3\x64\xe1\xfa\x97\xbc\x92\x97\x95\ \x78\x55\x14\x49\xeb\xff\x18\x4d\x75\xfe\x1c\x8a\xb3\x58\x59\xe9\ \xd1\xa3\x47\x8f\x9e\x07\xbc\x9f\xcb\x82\xb5\x9f\xf4\x53\xf8\x03\ \x63\x4c\x06\xe4\xd9\x3f\xc6\xca\x7d\x0e\xc0\x53\xac\xac\xf4\xe8\ \xd1\xa3\x47\xaf\xc5\xde\x53\xb0\x73\x9f\xf7\x5b\xf8\x57\xdd\x01\ \x68\xf5\x1f\x23\x8b\x36\xf4\x41\xed\x53\x01\xe4\x59\x59\xe9\xd1\ \xa3\x47\x8f\x5e\x8b\xbc\x3c\x6c\xfd\xb0\x2c\xda\xd0\xe7\xb7\xf0\ \xaf\xaa\x03\xe0\x95\x3f\x46\x16\xae\x5f\x03\xe0\x2b\xac\xac\xf4\ \xe8\xd1\xa3\x47\xaf\x25\x9e\xe2\xcb\xb2\x68\xdd\x5a\x3f\x86\xff\ \xb8\x3b\x00\x9e\xfb\x63\xb6\xed\x7f\x19\xa0\xf7\xb2\xb2\xd2\xa3\ \x47\x8f\x1e\xbd\x26\x7b\x3d\xd8\xbe\xff\xe5\x7e\x0d\x7f\x60\x1c\ \x37\x01\x7a\xf5\x8f\xd1\xe5\x47\xec\x03\x63\x6f\xb0\x15\x53\x58\ \x59\xe9\xd1\xa3\x47\x8f\x5e\xc3\x3d\xc1\x36\x58\xe6\x50\x59\xb4\ \x7a\x93\x5f\xc3\xbf\xbb\xbb\xab\xb2\x17\x67\x7b\xfd\x8f\xc9\xfe\ \xa9\xf3\xe4\x9c\x2d\x37\xb1\xb2\xd2\xa3\x47\x8f\x1e\xbd\x86\x7b\ \x8a\x93\x65\xe1\xda\x5b\xfc\x98\x97\x8e\x57\xff\xab\xa9\x70\xe5\ \xed\x1e\xfe\x63\xcc\xe2\xef\x4f\x5c\x96\xc9\xe3\x06\x56\x56\x7a\ \xf4\xe8\xd1\xa3\xd7\x58\x4f\xae\xf7\x79\xf8\x47\x4a\x3f\x9b\x0a\ \x56\xde\xe6\x5a\xce\x53\xe1\x5f\xf2\x6e\x5a\xd3\x7e\xa1\xad\x78\ \x92\x95\x95\x1e\x3d\x7a\xf4\xe8\x35\xc8\xfb\x1b\xda\x12\xe7\xf9\ \x38\xfc\xa3\x4e\xcf\x8c\xb1\x70\xd2\xcb\x67\xfe\x4e\xef\xd6\x07\ \xcd\xce\xbf\xbf\x6c\x4e\x4b\xc6\x74\x27\x2b\x2b\x3d\x7a\xf4\xe8\ \xd1\xab\xb3\xb7\x13\x11\x79\xbf\x1c\x7b\xff\x4e\x9f\x86\x7f\xdc\ \xed\x99\x51\x16\x4e\xf8\x25\xfc\x4b\xde\x85\x37\xb7\xaf\x33\xa2\ \x1f\x63\x65\xa5\x47\x8f\x1e\x3d\x7a\x75\xf5\x54\x4f\x97\x7f\x59\ \xf3\xa4\x0f\xc3\xdf\x94\xc9\x73\xa4\x52\x3d\xc3\x3b\x00\x23\xf4\ \x14\x6c\xaf\x87\x7f\xc9\x93\x05\xeb\x7e\x0f\xc1\xa5\xac\xfc\xf4\ \xe8\xd1\xa3\x47\xaf\x4e\xde\x25\xb2\x70\xdd\x6d\x3e\x0d\xff\x61\ \x23\xf9\xa9\x54\x8f\x05\xb8\x2e\x01\x94\xbb\x46\x80\x0a\x67\x15\ \xf2\x42\xf8\x0f\xfe\x26\x32\xf1\xcb\x80\xdc\xcd\xca\x4f\x8f\x1e\ \x3d\x7a\xf4\x6a\xf3\x34\x85\x6d\xfb\x7f\xd9\xa7\xe1\xdf\x56\xc6\ \xb3\x4a\x3f\xb8\x47\x00\x22\x65\x16\x1e\xf0\x55\xf8\x03\x90\xe3\ \x7a\xf2\xc8\x59\x1f\x02\xb0\x89\x95\x9f\x1e\x3d\x7a\xf4\xe8\x55\ \xe9\xbd\x80\xa8\x7c\x48\x4e\xbe\xc5\xf2\x61\xf8\x97\x7b\x7a\x2f\ \x9f\x4a\xf5\xe8\xb0\x0e\x40\x77\x77\x57\xb9\xf0\x4f\xfb\x2d\xfc\ \x07\x77\xee\xe2\xf5\xaf\x43\xcc\x07\x00\x64\x59\xf9\xe9\xd1\xa3\ \x47\x8f\xde\x38\xbd\x0c\xd4\xfe\x80\x1c\xb7\x76\xb3\x0f\xc3\xbf\ \x03\xc3\x9f\xde\xcb\x3a\xc3\x7f\xb0\x03\x50\x1c\xfa\x87\x6b\xe1\ \x8c\x5f\xc3\x7f\x70\x27\x77\xaf\x5e\x0d\xc5\x67\x58\xf9\xe9\xd1\ \xa3\x47\x8f\xde\xb8\x3c\x91\xcf\x14\xe7\x9c\xf1\x63\xf8\x4b\x99\ \x3c\x57\xf7\xf2\xa5\x1e\x82\x8c\xd5\x53\xf0\x5b\xf8\x0f\xee\xc3\ \x85\x6b\xaf\x81\xe0\x1a\x56\x7e\x7a\xf4\xe8\xd1\xa3\x57\xa1\xf7\ \x73\xe9\x5e\x73\x6d\x40\xc2\x3f\x3d\x52\x9e\x9b\x32\x67\xfe\xf9\ \xa0\x84\xff\xe0\x27\x32\xf1\x5c\x5b\x75\x35\x2b\x3f\x3d\x7a\xf4\ \xe8\xd1\x1b\xfd\xa3\xab\x91\x7b\xe3\xdc\x00\x84\xbf\x8d\x31\xee\ \xe1\x73\x77\x00\xac\xc0\x85\x3f\x80\x05\xdf\x46\x76\xd5\x13\xd1\ \xd3\x2c\x1b\xff\x60\xe5\xa7\x47\x8f\x1e\x3d\x7a\x23\x7c\x36\xc1\ \x92\xf7\xc9\xe2\xa7\x33\x01\x38\xf3\x1f\xf3\xe9\xbd\x08\x00\xec\ \xbf\xff\x4c\xa4\x52\x3d\xf6\xb3\xcf\x3e\x07\x0f\xff\x31\x35\x79\ \xf7\x3d\x15\xeb\x9b\x33\x33\x7f\xef\xb4\x0e\x3d\xd9\x18\x24\x58\ \xf9\xe9\xd1\xa3\x47\x8f\x9e\xe3\xb3\x03\xb6\xcc\x97\xe3\xd7\x3e\ \x1b\x80\xf0\xaf\xc8\xab\xa2\x88\xfd\x3d\x2c\x72\xf5\xc7\x07\xde\ \xbd\xdf\xb4\xfc\xad\x46\x10\x65\xe5\xa7\x47\x8f\x1e\x3d\x7a\x00\ \xf2\x10\x73\x82\x74\xaf\x4e\x85\x25\xfc\x81\x31\x26\x03\x0a\x5a\ \xf8\x03\xd0\x4f\x5e\xdb\x76\x97\x11\xf9\x14\x2b\x3f\x3d\x7a\xf4\ \xe8\xd1\x2b\x45\x43\xd8\xc2\xbf\xea\x0e\x80\xdf\x0b\x47\x16\xac\ \xb9\x0e\xc0\xb7\x58\xf9\xe9\xd1\xa3\x47\x2f\xe4\x9e\xe2\x9b\xb2\ \x60\xdd\xf5\x61\x0b\x7f\xa0\x8a\x4b\x00\x41\x29\x1c\x55\x08\x52\ \x9d\xbf\x01\xf0\x61\x1e\x4c\xf4\xe8\xd1\xa3\x17\x42\x4f\xe4\x37\ \x98\xbf\xe6\xa3\x22\xd0\xb0\x85\xff\xb8\x47\x00\x82\x54\x38\x22\ \x50\xe4\xde\x38\x13\x22\x7f\xe6\xc1\x44\x8f\x1e\x3d\x7a\x61\xf3\ \xf4\x5e\x64\xb7\x9f\x15\xd6\xf0\x1f\x57\x07\x20\x88\x85\x23\x8b\ \x9f\xce\x20\x1f\x7b\x3f\x80\x27\x79\x30\xd1\xa3\x47\x8f\x5e\x68\ \xbc\xff\x45\x26\xf7\xfe\xd2\xe3\x7e\x61\x0c\xff\xee\xee\x2e\x91\ \x20\xfc\x31\xb5\x7a\x9a\x3a\x62\x7f\xa8\xfd\x10\x80\x19\x3c\x98\ \xe8\xd1\xa3\x47\x2f\xd0\xde\x6b\xb0\x23\x47\xc9\xa2\xbf\x6c\x0c\ \x63\xf8\x17\x5f\xfd\x6f\x00\xa8\xa9\x70\xe5\xed\x41\x2e\x1c\xe9\ \x5e\xfd\x2c\xd4\x5e\x0c\x60\x27\x0f\x26\x7a\xf4\xe8\xd1\x0b\xac\ \xb7\x03\xb6\x2e\x0e\x79\xf8\x47\x4a\x3f\x9b\x0a\x56\xde\x86\xe1\ \xb3\x0a\x05\xef\x6e\xc8\x85\xeb\xd7\x64\xf2\x58\x92\xce\xca\x00\ \x0f\x26\x7a\xf4\xe8\xd1\x0b\x9c\xd7\x0f\x95\xc5\xb2\x68\xdd\xda\ \x10\x87\x7f\xd4\xe9\x99\x31\x16\x4e\x86\xa8\x70\xcc\x92\xef\x4f\ \x7c\xe4\xa5\x37\x22\x1f\x42\x71\x0a\x61\x1e\x4c\xf4\xe8\xd1\xa3\ \x17\x08\x2f\x03\xb5\x4f\x94\x85\x6b\xee\x0f\x71\xf8\xc7\xdd\x9e\ \x19\x65\xe1\x44\x98\xc2\xbf\xe4\x9d\x7d\x7d\x5b\xcf\x6b\x6f\xe0\ \x74\x11\xe4\x79\x30\xd1\xa3\x47\x8f\x9e\xef\xbd\x3c\x6c\xfd\xa0\ \x2c\x5c\x7f\x77\x48\xc3\xdf\x94\xc9\x73\xa4\x52\x3d\x2a\xa3\xf4\ \x14\x4c\xf1\x9f\xd2\x32\xfd\x41\x0f\x7f\xa7\xb7\xf4\x8b\x3b\x16\ \xc7\x8c\xdc\x80\x71\xbe\x2b\x81\x07\x27\x3d\x7a\xf4\xe8\x79\xc6\ \xb3\x21\xfa\x61\xe9\x5e\x77\x53\x88\xc3\x3f\x59\x34\x14\x85\x19\ \x02\xed\x54\xaa\x27\x0f\xb8\x2e\x01\x94\xbb\x46\x80\x0a\x67\x15\ \x0a\x52\xf8\x03\xe8\x8d\x2f\x5a\xf7\x3b\x40\x3f\xce\x83\x89\x1e\ \x3d\x7a\xf4\x7c\xea\xa9\x7e\x3c\xe4\xe1\xdf\x56\xc6\xb3\x4a\x3f\ \xb8\x2f\x01\x44\xca\x2c\x3c\x10\xb6\xf0\x2f\x79\x85\xd7\x43\xca\ \xb9\x3c\x98\xe8\xd1\xa3\x47\xcf\x77\xe1\x7f\x8e\x2c\x5c\xf7\x8b\ \x10\x87\x7f\xb9\xa7\xf7\xf2\xa9\x54\x8f\x0e\xeb\x00\x74\x77\x77\ \x95\x0b\xff\x74\x58\xc3\x7f\xb0\xd2\x2d\x58\x73\x25\x14\x17\xf1\ \xe0\xa4\x47\x8f\x1e\x3d\x9f\x78\x22\x17\xca\xc2\x75\x3f\x0e\x71\ \xf8\x77\x60\xf8\xd3\x7b\x59\x67\xf8\x0f\x76\x00\x8a\x43\xff\x70\ \x2d\x9c\x09\x7b\xf8\x0f\xd6\xa5\x85\x6b\x2f\xc5\x08\x93\x07\xf1\ \xe0\xa4\x47\x8f\x1e\x3d\x2f\x9d\xf9\xe3\x9b\xd2\xbd\xe6\x7b\x21\ \x0f\x7f\x29\x93\xe7\xea\x5e\xbe\xd4\x43\x90\xb1\x7a\x0a\x61\x0d\ \xff\x5d\x5f\x5e\xfb\x55\x28\xbe\xc9\x83\x93\x1e\x3d\x7a\xf4\xbc\ \x7a\xe6\x8f\x8b\xb1\x60\xed\xd7\x18\xfe\x43\xbc\xf4\x48\x79\x6e\ \xca\x9c\xf9\xe7\x19\xfe\xe5\x46\x94\xa0\xb2\x70\xed\x57\x4b\x97\ \x03\x78\x70\xd2\xa3\x47\x8f\x9e\x97\xc2\x5f\x2e\x94\xee\xb5\x5f\ \x13\x81\x32\xfc\x0b\xc5\x8a\x31\xee\xe1\x73\x77\x00\x2c\x86\xff\ \x18\x75\x6c\xe1\xda\x4b\xf3\xb6\x7c\x96\x07\x27\x3d\x7a\xf4\xe8\ \x79\xc4\x53\x3d\x87\xc3\xfe\xe3\x7f\x7a\x2f\x5a\x5a\xb8\x86\x19\ \x85\x42\x57\xd8\x27\x5c\x86\x5f\xfe\xe2\x93\xbd\xd6\x94\x76\xfc\ \x08\x80\xe1\xc1\x49\x8f\x1e\x3d\x7a\x2d\xf1\x6c\xa8\x7e\x3c\xe4\ \x77\xfb\x57\x3f\xb2\x8d\x1a\x3e\x61\x2f\xec\xeb\x3e\xd1\x7b\xd2\ \xb4\x0e\x5c\x9d\x8c\x69\x94\x07\x27\x3d\x7a\xf4\xe8\x35\xd5\xcb\ \x03\x7a\xaa\x2c\x58\x77\x33\xf3\xa8\x3a\xaf\xea\x0e\x00\x0b\xbb\ \xe0\x2d\x3d\x7f\xc7\x71\xb1\x98\xdc\x8c\xc2\xdb\x13\x79\x70\xd2\ \xa3\x47\x8f\x5e\xe3\xbd\x0c\x44\xff\x8f\x74\xaf\xbb\x8b\x79\x54\ \xbd\x67\x50\xc5\x87\x85\xbd\xcb\x8b\x2f\x5e\x77\x07\xc4\xbc\x07\ \x40\x3f\x0f\x4e\x7a\xf4\xe8\xd1\x6b\xb8\xd7\x0f\x31\x4b\x18\xfe\ \x75\xb8\xa7\x8d\x85\x53\x1f\x4f\x57\x76\x1e\x0b\x60\x29\x80\x89\ \x3c\xd8\xe9\xd1\xa3\x47\xaf\x21\xde\x0e\x00\xef\x91\x05\x6b\xef\ \x63\x1e\xd5\xee\x09\x0b\xa7\x7e\x9e\xae\x38\x7c\x2e\xc4\x2c\x05\ \x30\x83\x07\x3b\x3d\x7a\xf4\xe8\xd5\xd5\x7b\x1d\x6a\x2f\x96\x85\ \xeb\xd7\x30\x8f\x6a\xf7\x80\x71\x5c\x02\x60\x61\x8f\xed\xc9\xc2\ \xf5\x6b\x20\xe6\x28\x00\x4f\xf2\x60\xa7\x47\x8f\x1e\xbd\xba\x79\ \x4f\x42\xcc\x51\x0c\xff\xfa\x85\x7f\x77\x77\x97\x08\x0b\xa7\xfe\ \x9e\x2e\x3b\x7a\x37\x44\x73\xb7\x41\xf5\x5d\x3c\xd8\xe9\xd1\xa3\ \x47\xaf\x16\x4f\xef\x85\x95\x38\x49\x8e\x7f\x70\x2b\xf3\xa8\x2e\ \x9e\x14\x4f\xfe\xd5\x54\xb8\xf2\x76\x16\xf6\x38\x1e\xad\x38\xfe\ \xc1\xad\xc8\x6e\x5f\x08\xe0\xb7\x3c\xd8\xe9\xd1\xa3\x47\xaf\x4a\ \x4f\xe4\x37\xc8\xed\x58\xc4\xf0\xaf\x6b\xf8\x47\x4a\x3f\x47\x2a\ \x58\x79\x1b\x86\x4e\x13\xcc\xc2\xae\xe0\xf3\x8d\xdf\x6e\xb5\xb0\ \xff\xb4\x3b\x66\x4f\x8b\xb5\x45\x0d\xe6\xf1\x60\xa7\x47\x8f\x1e\ \xbd\x71\x78\x8a\x6f\xa2\x7b\xed\x79\xf2\x96\xad\x79\x86\x7f\xdd\ \xc2\x3f\x5a\xf4\x14\x18\xe5\x26\xc0\xe2\xc2\x6d\xc5\xa1\x02\xe3\ \xf8\x12\x0b\x7b\x9c\xde\x2f\x3e\xd9\x7f\xda\x94\x76\xfb\x87\x22\ \x88\xf2\x60\xa7\x47\x8f\x1e\xbd\x51\x3f\x79\x40\x3f\x29\x0b\xd6\ \x5d\xcf\xfc\xa8\x6b\xf8\xc7\x8b\x86\xa2\x30\x4f\x80\x2d\xa3\x2c\ \x9c\x70\x9c\xf9\x97\x2e\x15\xb0\xb0\xab\xf4\xae\xfe\xf8\xc0\xbb\ \xf7\x9b\x96\xff\xb5\x11\x4c\xe2\xc1\x4e\x8f\x1e\x3d\x7a\x65\x3f\ \x3b\x20\xe6\x03\xd2\xbd\x3a\xc5\xfc\xa8\xab\x57\x7a\x51\x9d\x5d\ \xea\x00\xa4\x52\x3d\x96\x8c\xd2\x53\x70\x9e\xf9\x03\x15\x4c\x2c\ \xc0\xc2\x1e\xdd\x5b\xf9\xc5\xde\xb7\xc3\xe8\x52\x00\xfb\xf0\x60\ \xa7\x47\x8f\x1e\xbd\x21\x9f\x17\x60\xcb\x7b\x64\xd1\x9a\xc7\x99\ \x1f\x75\xf5\x92\xee\x33\xff\x54\xaa\x27\x0f\xb8\x1e\x03\x74\x5d\ \x23\x70\xae\x9c\xe1\x5f\x07\x4f\x16\xad\x79\x1c\x6a\x1f\x05\xe8\ \x6a\x1e\xec\xf4\xe8\xd1\xa3\x37\xd8\x4c\xae\x86\x85\xa3\x18\xfe\ \x75\xf7\xda\xca\x78\x56\xe9\x07\xf7\x53\x00\x91\x32\x0b\x0f\xb0\ \xb0\xeb\xe7\xc9\xc2\xf5\x2f\x21\x3a\xe9\x5d\x10\x5c\xc3\xc6\x83\ \x1e\x3d\x7a\xf4\xf0\x73\x44\x27\xbd\x4b\x8e\x5f\xfb\x32\xf3\xa3\ \xae\x5e\xb9\xa7\xf7\xf2\xa9\x54\xcf\xe0\x5e\x12\xc7\x17\x22\xd8\ \x35\xe4\x5f\xea\x18\x64\x59\xd8\x8d\xf3\x74\x45\xe7\x59\x10\xfc\ \x18\xae\x89\x84\xd8\x78\xd0\xa3\x47\x2f\x04\x5e\x06\x22\x9f\x91\ \xee\x35\xd7\x32\x3f\x1a\xe2\x01\xbb\xae\xf9\x5b\x00\x32\xce\xf0\ \x1f\xec\x00\x38\x5e\x0c\x50\xea\x00\x48\x31\xfc\x95\x85\xdd\x58\ \x4f\x53\x47\x1c\x01\xb5\x6f\x45\xf1\xbe\x00\x36\x1e\xf4\xe8\xd1\ \x0b\x81\xf7\x02\xd4\xfe\x40\xe9\xcd\x7e\xcc\x8f\x86\x78\x83\xd7\ \xfc\x51\x18\xc9\x1f\x96\xe7\xc6\x3d\x12\x50\xfc\x12\xc3\xbf\x49\ \x9e\x74\xaf\x5e\x8d\x9c\xdd\x09\xc8\xdd\x6c\x3c\xe8\xd1\xa3\x17\ \x7c\x4f\x53\x88\xa2\x93\xe1\xdf\x34\x2f\x3d\x52\x9e\xbb\xef\x01\ \x18\x76\x8d\x80\x85\xdd\x78\x4f\x16\xaf\x7f\xfd\x9e\x27\x3b\x16\ \x6f\xef\x93\x1f\xb0\xf1\xa0\x47\x8f\x5e\x60\x3d\xc5\x77\xb1\xed\ \x80\xe3\xe5\xb8\xb5\x9b\x99\x1f\x0d\xf7\x4a\x67\xfe\x23\x7a\xe2\ \xf8\xb2\xa0\xf0\x78\x00\xc3\xbf\x85\xde\x35\x67\xf6\x2e\x99\x36\ \x09\x3f\x35\x82\x0e\x36\x1e\xf4\xe8\xd1\x0b\x88\xb7\x13\xaa\xa7\ \xcb\xc2\x75\xb7\xb1\xbd\xf7\x8e\x37\x78\x0f\x40\x35\xc1\xcf\xc2\ \x6e\x8c\x77\xe9\xc9\xfd\x6f\x3e\x6c\xa6\xf5\x2b\x23\x78\x1b\x1b\ \x0f\x7a\xf4\xe8\xf9\xdc\x7b\x02\x11\x39\x49\xfe\x65\xcd\x93\x6c\ \xef\xbd\xe5\x55\x51\x05\x58\xd8\xcd\xf0\x56\x7e\x3d\x37\x01\x03\ \x99\xff\x02\xf4\x0c\x36\x46\xf4\xe8\xd1\xf3\xa7\x27\xd7\xa3\x2d\ \x71\x9e\x1c\x7b\xff\x4e\xb6\xf7\x1e\xbc\x07\x8d\xe1\xef\x6d\x4f\ \x57\x74\x7e\x10\x82\xab\x01\x4c\x61\x63\x44\x8f\x1e\x3d\x9f\x78\ \xdb\xa1\xf8\xa4\x2c\x5c\x7b\x0b\xdb\x7b\xef\x7a\x55\x75\x00\x58\ \xd8\xcd\xf5\x74\xf9\x11\xfb\xc0\x58\xbf\x06\xe4\xdd\x6c\x8c\xe8\ \xd1\xa3\xe7\x71\xaf\x07\xb6\xf9\xa8\x2c\x5a\xbd\x89\xed\xbd\xb7\ \x3d\xc3\xc2\xf1\xbe\x27\x8b\x56\x6f\xc2\xb6\x03\xe6\x03\xf8\xbf\ \x00\xf2\x6c\x8c\xe8\xd1\xa3\xe7\x41\x2f\x0f\xc5\x45\xd8\xb6\x7f\ \x37\xc3\xdf\x1f\x9e\xb0\x70\xfc\xe5\xe9\x8a\xc3\xe7\x42\xcc\x0d\ \x00\xde\xcc\xc6\x88\x1e\x3d\x7a\x1e\xf1\x9e\x82\xad\x1f\x96\x45\ \xeb\xd6\xb2\xbd\xf7\x87\x37\xae\x11\x00\x16\xb6\x37\x3c\x59\xb8\ \x7e\x0d\xec\xdc\xe1\x96\x8d\x6b\xd8\x18\xd1\xa3\x47\xaf\xf5\x9e\ \x5c\x0d\x3b\x37\x87\xe1\xef\xaf\xf0\xef\xee\xee\x12\x61\xe1\xf8\ \xd7\xbb\xe6\xcc\xde\xf7\x4e\x9b\x88\x1f\x89\x60\x2a\x1b\x23\x7a\ \xf4\xe8\x35\xd9\xdb\x0a\xd5\xb3\xca\x3d\xdb\xcf\xf6\xd9\xd3\x5e\ \xe9\xd5\xff\x1a\xa9\x70\xe5\xed\xae\xd1\x02\x16\xb6\x07\xbc\x3b\ \xd7\xc7\x9f\xda\x77\x7a\xee\x96\xbd\x76\x93\xfd\xdb\xe3\xfa\x66\ \x36\x6e\xf4\xe8\xd1\x6b\x8e\xa7\x77\x42\xf5\x3d\xb2\x70\xfd\x6a\ \xb6\xcf\xbe\x0b\xff\xc1\xdc\x97\x0a\x56\xde\x86\xa1\xd3\x04\xb3\ \xb0\x3d\xe6\xcd\x9b\xb7\xb9\xef\xeb\xf3\x12\x27\x41\x70\x25\x80\ \xdd\xd9\xb8\xd1\xa3\x47\xaf\x41\xde\xab\x10\x39\x07\xf3\xd7\xdc\ \x2a\x02\x65\xfb\xec\xbb\xf0\x8f\x96\x76\x37\x00\x95\x31\x16\x6e\ \xc3\xd0\x59\x02\x59\xd8\x1e\xf6\x74\xd9\xd1\xbb\x21\x92\xb9\x0c\ \x90\x33\xd9\xb8\xd1\xa3\x47\xaf\xae\x9e\xe2\x5a\x64\xb3\x5f\x94\ \x25\x8f\x6d\x63\xfb\xec\xcb\xf0\x8f\x17\x8d\xc1\x59\x02\x65\x94\ \x85\x13\x8e\x33\xff\xd2\xf0\x3f\x0b\xdb\x07\x9e\xae\x38\x7c\x3e\ \xc4\xfc\x0c\xc0\x01\x6c\xdc\xe8\xd1\xa3\x57\xa3\xf7\x0c\x6c\xfd\ \xa4\x2c\x5a\x77\x0f\xdb\x67\xdf\x7a\x71\xe7\x99\x3f\x0a\xf3\xfe\ \x58\x66\x94\x9e\x82\x7b\x56\x21\x16\xb6\x4f\x3c\x59\xb8\xfe\x6e\ \xa4\x31\x1b\xaa\xdf\x03\x60\xb1\x71\xa3\x47\x8f\x5e\x15\x9e\x05\ \xc1\xa5\x98\x10\x3f\x84\xe1\xef\x6b\x2f\xe9\xf6\x52\xa9\x1e\x0b\ \xae\x5f\x3a\xaf\x11\xb8\xcf\xfc\x07\x58\xd8\xfe\xf4\xf4\xee\xce\ \x39\xb0\x71\x0d\x80\xc3\xd9\xb8\xd1\xa3\x47\xaf\x42\x6f\x1d\x20\ \x67\xc9\x82\x35\xeb\xd9\x9e\xfa\xda\x6b\x73\x9d\xf9\x5b\x00\xf2\ \xa5\xc9\xff\xdc\x23\x00\x91\x32\x2b\x67\xf8\xfb\xd8\x93\xf9\x6b\ \xd7\x21\x3a\xf1\x9d\x96\xad\x17\xa6\xb3\x92\x66\xe3\x46\x8f\x1e\ \xbd\x51\xbc\x01\x23\xf8\x22\xa2\x13\x8f\x64\xf8\xfb\xde\x6b\x2f\ \xe3\xe5\x9d\x33\xff\x8a\xe3\x0b\x11\xec\xba\xd9\xaf\xd4\x31\xc8\ \xb2\xb0\x83\xe3\x7d\xe9\x7d\xfd\xfb\x1e\xba\x8f\x7e\x23\x1e\xd5\ \x93\xd8\x58\xd2\xa3\x47\x6f\x88\x17\xc5\xcd\x26\x6a\x5d\x20\xf3\ \xd7\x3f\xcf\xf6\x34\x10\x9e\xfb\xcc\x3f\xe3\x0c\xff\xc1\x0e\x80\ \xe3\xc5\x00\xa5\x0e\x80\x14\xc3\x5f\x59\xd8\xc1\xf3\xae\x3a\xa3\ \xef\xa8\xfd\x67\xd8\xdf\x35\x82\xc3\xd9\x58\xd2\xa3\x17\x6e\x4f\ \x15\x8f\xc6\x63\xf6\x79\x89\xe3\xd7\xdd\xcb\xf6\x34\x50\xde\xe0\ \xdd\xfe\x28\x8c\xe4\x0f\xcb\x73\xe3\x1e\x09\x28\x7e\x89\xe1\x1f\ \x60\xef\xec\xeb\x27\xac\x34\xdb\xf7\x3f\x02\x22\x67\x01\x78\x8d\ \x8d\x25\x3d\x7a\xe1\xf3\x54\xf1\xfa\xce\xb4\xf9\xcc\xdd\x6b\xf6\ \x38\x82\xe1\x1f\x68\x2f\x3d\x52\x9e\x8b\xe3\x8b\xa5\x33\x7f\x8b\ \xe1\x1f\x1e\x4f\x97\x1e\x39\x09\xd1\xdc\x97\x20\xf2\x79\x00\x31\ \x36\x96\xf4\xe8\x05\xde\xcb\x0e\x64\xf4\xaa\x3f\xae\x6f\xbb\xec\ \x37\x0f\x45\x5f\x66\x7b\x1a\x58\xcf\x02\xd0\x3f\x9a\xe7\xee\x00\ \xd8\x0c\xff\x70\x7a\xba\x6c\xce\x81\x88\xc8\xe5\x00\xde\xc7\xc6\ \x92\x1e\xbd\x60\x7a\x39\x0b\x4b\x9f\xd8\x64\xbe\xfc\xb5\xdb\xdb\ \x9f\x61\xfb\x47\x6f\xf0\x1e\x80\x6a\x82\x9f\x85\x1d\x3c\x4f\x53\ \x47\x74\xc3\xb6\x7f\x08\xc1\xc1\x6c\x7c\xe9\xd1\x0b\x86\x67\x59\ \xf8\xdb\x2b\x6f\xe0\xa2\x4f\xff\xb2\xe3\x5e\xb6\x7f\xf4\x86\x74\ \x00\xaa\xfd\xb0\xb0\x83\xe9\xe9\xaa\xae\x28\xf2\x3b\x3e\x62\x43\ \xbe\x9a\xce\xca\x4c\x36\xbe\xf4\xe8\xf9\xd3\x1b\xc8\xc9\x0b\xdb\ \xfb\x70\xe9\xb7\xef\xec\xb8\xe9\xef\xaf\x20\xcf\xf6\x8f\x5e\x5d\ \x3a\x00\x2c\xec\xe0\x7b\x47\xee\x9b\x9d\xfa\xe9\xc5\xf9\x8f\x4c\ \x8c\xdb\x5f\x34\x06\x7b\xb2\xf1\xa5\x47\xcf\x27\x9e\x8d\x17\x5f\ \xef\x35\x97\xff\xe0\xce\xd8\x0d\xeb\xfe\x11\xcf\xb2\xfd\xa3\x57\ \xb7\x0e\x00\x0b\x3b\x5c\xde\xbb\xde\x86\xe4\xa7\xba\xfa\x3e\x32\ \x7d\xa2\x7d\xbe\x11\xbc\x89\x8d\x2f\x3d\x7a\x9e\xf5\x5e\xce\xdb\ \xf2\xdd\xef\xdc\x1e\xb9\xf1\x7f\xfe\xde\x96\x63\xfb\x47\xaf\xae\ \x1d\x00\x16\x76\x78\xbd\x95\x17\x67\x12\xe8\xcf\x9e\x0d\xc5\x45\ \x00\x66\xb0\xf1\xa5\x47\xcf\x33\xde\x6b\x80\x5c\xf2\xf4\x8e\xf8\ \xd5\x67\x5f\x15\x8f\xb0\xbd\xa2\x57\xf7\x0e\x00\x0b\x9b\x1e\x00\ \xe8\xaa\x83\x3b\x90\x4b\x7e\x06\x82\x0b\x00\xec\xc6\xc6\x97\x1e\ \xbd\x96\x79\x5b\xa1\xf8\x1e\x34\x77\xe5\x82\xcb\x76\x1b\x60\x7b\ \x45\xaf\x21\x1d\x00\x16\x36\x3d\xf7\x47\x97\x1e\x39\x09\xb1\xfc\ \x67\x21\x38\x1f\x8a\xa9\x6c\xcc\xe9\xd1\x6b\x92\x27\xd8\x06\xc5\ \x0f\x90\x8b\xfe\xb7\x2c\x7e\x78\x07\xdb\x2b\x7a\x55\x98\x22\x2c\ \x1c\x7a\x35\x3f\x3a\xb8\x7c\xf6\x04\x98\xf8\x19\x80\x9e\x0f\x60\ \x16\x1b\x73\x7a\xf4\x1a\xe6\x3d\x0b\xd5\x1f\x40\xf3\xbf\x90\x45\ \x1b\xfa\xd8\x5e\xd1\xab\x26\xf8\x51\x78\x0b\xb0\x4a\x85\x2b\x6f\ \x47\x61\xa6\x40\x16\x36\xbd\x91\x3b\x02\x37\x7f\x30\x92\x9b\xbc\ \xf1\xa4\x74\x06\x17\x1a\x83\x4e\x36\xe6\xf4\xe8\xd5\xcd\x7b\x18\ \x90\xcb\xb0\x6d\xd6\xed\x72\xf2\x2d\x16\xdb\x2b\x7a\x35\x84\x7f\ \xa4\x68\x8c\xde\x01\x70\xcc\x27\xec\xbc\xa9\x84\x85\x4d\x6f\x54\ \x6f\xc2\x84\xbc\xb9\xe4\x03\xd9\xa3\xf6\x98\x6c\x9f\x1b\x8f\xe2\ \x84\x64\x4c\x85\x8d\x39\x3d\x7a\xe3\xf6\x14\xc0\x9d\x00\x2e\x47\ \xf7\xda\xfb\x45\xa0\x6c\x5f\xe8\xd5\x18\xfe\xd1\x52\x75\x1c\xb5\ \x03\x50\x5c\xb8\x0d\x43\x67\x09\x64\x61\xd3\x1b\x97\x77\xc7\x17\ \xfa\xf6\x6a\x37\xd6\x79\x10\xf9\x18\x80\x04\xc3\x81\x1e\xbd\x31\ \xbd\x34\x54\x7f\x89\xa8\xb9\x42\xfe\x65\xcd\x93\x6c\x5f\xe8\xd5\ \x29\xfc\xe3\xa5\x33\xff\x62\x07\xc0\x96\x51\x16\x4e\x38\xce\xfc\ \x4b\xb3\x06\xb2\xb0\xe9\x55\xe5\xe9\xf2\xd9\xbb\xc3\xc4\x3f\x0d\ \xe8\x67\x00\x4c\x67\x38\xd0\xa3\x37\xcc\xdb\x0c\xc8\x8f\x61\x67\ \x7f\x22\x8b\x36\xbc\xc6\xf6\x85\x5e\x1d\xbd\xb8\xf3\xcc\x1f\x85\ \x79\x7f\x2c\x19\xa5\xa7\xe0\x3c\xf3\x07\xc6\x98\x55\x88\x85\x4d\ \xaf\x12\x4f\x97\x1e\x98\x40\x7c\xd2\xbf\x42\xcd\x27\x00\x9d\xcf\ \x70\xa0\x47\x4f\x53\x10\x5c\x83\xec\x8e\xdb\x65\xf1\xd3\x19\xb6\ \x2f\xf4\xea\xec\x25\xdd\x67\xfe\xa9\x54\x4f\x1e\xae\x95\x38\xaf\ \x11\xb8\xcf\xfc\x07\x58\xd8\xf4\xea\xed\xe9\xdd\x9d\x07\x40\xe5\ \x4c\xa8\x9e\x01\xe0\x4d\x0c\x07\x7a\x21\xf2\x5e\x86\xc8\xf5\x80\ \x5c\x2b\xdd\xab\x9f\x65\x7b\x40\xaf\x41\x5e\x9b\xeb\xcc\xdf\x02\ \x90\x2f\x4d\xfe\xe7\xee\x00\x44\x5d\x67\xfe\x02\x20\xcd\xc2\xa6\ \xd7\x48\x4f\x57\x75\x45\x73\x99\xde\x25\x03\x59\xfc\x7b\xc4\x60\ \x41\xa9\xe3\xc9\xb0\xa1\x17\x30\xcf\x4e\xc6\x74\x99\x11\xb9\x1a\ \xd1\x8e\x3f\xca\x71\x85\xb3\x30\xb6\x07\xf4\x1a\xe4\xb5\x3b\x1c\ \xbb\xf8\x4f\xd6\x39\xf3\xaf\x38\xbe\x10\x71\x04\x7f\xe9\xcc\x3f\ \xcb\xc2\xa6\xd7\x4c\xef\x82\x13\xb3\x7b\x1d\xb6\x57\xf6\xb4\xf6\ \x04\x3e\xd2\x16\xd7\xbd\x19\x36\xf4\xfc\xee\xd9\x8a\x4d\x59\x0b\ \xbf\x8a\xc7\xa3\x57\x4f\x5a\xfc\xd0\x0b\x6c\x0f\xe8\x35\xc9\x73\ \x9f\xf9\x67\x9c\xe1\x3f\xd8\x01\x70\xbc\x18\xc0\x79\xe6\x9f\x75\ \x2f\xcc\xc2\xa6\xd7\x2c\xef\x9c\x79\x1d\x03\xef\x3b\xf6\xa5\x7f\ \x01\xe4\xa3\x00\x4e\x74\x54\x68\x86\x0d\x3d\xcf\x7b\xb6\xa2\x2f\ \x97\xc7\x1f\xb7\xf6\xc9\x4d\x97\xdc\x31\x79\xd5\x73\x5b\xf3\x6f\ \xb0\x3d\xa0\xd7\x64\xcf\x79\xe6\x3f\x50\x2e\xcf\xc5\xf1\x25\xe7\ \x99\x7f\x9e\xe1\x4f\xcf\x2b\x9e\x3e\x70\x74\x1b\xfa\x32\x27\x00\ \x72\x0a\x80\x25\x8e\xa1\x2d\x86\x0d\x3d\x2f\x79\xfd\x3b\xd3\xb2\ \x7c\x7b\x1f\x7e\x7f\xe3\xea\xf6\xd4\xdd\x1b\xcc\x00\x8f\x5f\x7a\ \x2d\xf4\x4a\x67\xfe\x23\xde\xc3\xe7\xee\x00\x08\x00\x8b\xe1\x4f\ \xcf\xab\x9e\x2e\x9f\x3d\x01\x91\xe8\x12\x40\x4e\x81\x62\x31\x8a\ \xef\x16\x60\x78\xd1\x6b\x91\x97\x06\x64\x69\xce\xb2\x6f\xfe\xf9\ \xaa\xf8\xbd\xb7\xad\x4d\x0e\xf0\xf8\xa5\xe7\x11\xcf\xc2\x18\x4f\ \xef\xb9\x3b\x00\x36\xc3\x9f\x9e\x5f\x3c\xbd\x6f\xde\x44\xa4\x07\ \x4e\xb4\xd5\xfc\x5b\x3a\x83\x45\x0a\xc4\x18\x5e\xf4\x9a\xe0\x65\ \x21\xb2\x1c\xb0\x6f\x42\xb2\xed\xce\x05\x5f\x8f\xf5\xf1\xf8\xa5\ \xe7\x47\x6f\xf0\x1e\x80\x6a\x82\x9f\x85\x4d\xcf\x2b\xde\x47\xfe\ \x39\x3d\x65\xfe\x5b\xf3\x4b\x26\x24\xe5\xf8\x58\x44\xbb\xda\xe2\ \x3a\x91\xe1\x45\xaf\x8e\xde\x0e\x40\x52\x10\xbd\x13\x11\xeb\x0e\ \x39\xee\x91\xed\x3c\x7e\xe9\xf9\xdd\xab\xe2\x10\x62\x61\xd3\xf3\ \xb6\x77\xf1\xe9\x03\x99\xa3\x77\xcf\x1e\x09\x63\x4e\x00\x70\x3c\ \x80\xc3\x18\x86\xf4\xaa\xf0\x1e\x81\xe2\x4f\x50\x7b\x19\xa6\x99\ \x07\x65\xee\xda\x1c\x8f\x37\x7a\x41\xf2\xaa\xee\x00\xb0\xb0\xe9\ \xf9\xc5\xd3\x65\x9d\x6f\x82\xd1\x45\x10\x39\x01\xc0\x42\x00\x53\ \x18\x86\xf4\x86\x79\x82\x6d\x50\x59\x01\xb5\x97\xc1\x96\xe5\x72\ \xfc\xda\x97\x79\xbc\xd1\x0b\xb2\x57\x55\x07\xc0\xf1\x92\x01\xe3\ \x3c\xc6\x50\xdb\xeb\x82\xe9\xd1\x6b\xb8\xa7\xab\xba\xa2\xb0\xde\ \x38\x02\xb6\x39\x01\xa2\xc7\x03\x32\x57\x15\x92\xce\x0d\x9d\x6a\ \x4d\x50\x08\x07\xa9\xe2\x08\xd1\x52\xd8\xd0\xf3\xba\xa7\x22\xba\ \x06\x2a\xcb\x60\xec\x3f\x21\x32\x79\x75\x25\x2f\xe7\xe1\xf1\x46\ \x2f\x28\x9e\x54\xb9\xf2\xb6\x32\x3d\x8f\x81\x1a\x5f\x57\x48\x8f\ \x5e\xd3\xbd\x2d\x7f\x98\xb3\x5b\x3a\x63\xde\xd5\x16\xc5\xd1\xb1\ \x08\x8e\x8a\x18\xcc\x15\x41\x7b\x22\x5a\x7d\xd8\x64\xf2\xc3\xcf\ \x34\xe9\x79\xc2\xeb\xb7\x6c\xac\xb1\x6c\x3c\x38\x21\x69\xdf\x1b\ \x35\xf2\x80\x2c\x58\xfb\x06\x8f\x0f\x7a\x61\xf5\xa4\x8a\x95\x27\ \xcb\xac\x3c\x5d\xe3\x44\x05\xf4\xe8\x79\xc2\x7b\xf7\x21\xf9\xc8\ \x85\x0b\xfb\x0e\x8a\x45\xcc\x31\x30\x98\x07\xc5\x3c\x00\x7b\x56\ \x1a\x36\x59\x0b\x50\xc7\x2c\xdb\x22\x8a\x78\x04\x55\x87\x17\xbd\ \x9a\xbc\x97\x06\x72\xf2\x50\x26\x8b\x87\xb6\xf7\xe3\xa1\x5f\x3c\ \x9c\xdc\xf0\xc0\x13\xd1\x1c\x8f\x0f\x7a\xf4\xc6\xd9\x01\x70\x4c\ \x11\xec\x5e\x79\xa6\xca\x47\x07\xe9\xd1\xf3\xbc\xa7\x0a\xc1\xb2\ \xc3\xf6\x43\xcc\xcc\x83\xca\x3c\x08\x8e\x81\xe2\xed\x70\x3c\x72\ \x58\x0a\xaf\x9c\x85\x61\xc3\xcc\xb1\x1a\xc2\x90\xde\xb8\xbc\x1c\ \x04\x4f\x40\xf1\x00\x44\xef\xcf\x0c\xe8\x03\x1f\xfb\x6d\xf2\x95\ \xcd\x9b\x13\x60\x7d\xa6\x47\xaf\xbc\x29\xe3\x58\x79\xbc\xcc\xca\ \xb3\x35\xfc\x31\xf4\xe8\xf9\xd2\xd3\x35\x9d\x31\xec\x30\x6f\x41\ \x5e\x67\x43\x74\xb6\x2a\x0e\xc9\x59\x38\x14\xc0\xde\xbb\xce\x5c\ \x81\xa8\xa9\x3e\x0c\xf3\x36\x86\x0d\x83\xd3\x1b\xfc\x6c\x02\xb0\ \x01\xc0\x63\x50\xd9\x80\xa8\x6c\xc0\x24\xfb\xa9\xd2\x5d\xfa\xac\ \xcf\xf4\xe8\x8d\xe9\x19\x00\x2a\x15\x2e\x1c\x2d\xb3\xf2\x7c\x0d\ \x2b\xa7\x47\x2f\x70\xde\xa5\x27\xed\x98\x3a\x6b\x2f\x39\x38\x19\ \xc1\x3b\x92\x71\x39\x58\x44\x67\x03\x78\x07\x2a\x9c\xc7\xa0\xb4\ \x21\x96\x35\xfc\xf7\x91\x48\x75\x77\xec\xfa\xdc\xeb\x05\xe4\xb1\ \x42\xd0\xdb\x1b\x60\xb0\x01\xe9\xdc\xe3\xb2\xe4\xb1\x6d\xac\x7f\ \xf4\xe8\x55\xed\x45\x8a\xc6\xe8\x1d\x00\xc7\xc2\xee\x95\x5b\x35\ \xae\x9c\x1e\xbd\x50\x78\xfa\x75\x18\xbc\xfb\xc8\x3d\x61\xe5\x66\ \xc1\x36\x33\x01\x9d\x05\x83\x59\x50\x9d\x05\xc8\xac\xe2\xa8\xc1\ \xe0\xdd\xbc\x56\x99\x2b\x79\x11\x83\xaa\x3f\x1e\xf7\x6c\xcb\xc6\ \x26\x55\x7d\x5e\x45\x9e\xb3\x2d\x6c\x54\x35\xcf\xc5\xe3\xd6\x33\ \x26\x1a\xdb\x88\x7b\x1f\x7e\x49\xbe\x0e\x9b\xf5\x8f\x1e\xbd\xba\ \x7b\x36\x00\x8d\x8e\xf1\x1d\x53\xea\x29\x94\x7e\x91\x4a\xf5\x58\ \xd5\x37\x1f\xf4\xe8\x85\xcb\x2b\x04\xd8\xc3\x2f\x02\x78\x11\xc0\ \xff\x0c\x3b\x03\x5e\xd3\x19\xc3\x76\xb3\x8f\x5a\xf9\x59\x79\xdb\ \x1c\x20\xa2\xfb\x89\xc8\x2c\x08\xf6\x10\x60\x9a\x11\x4c\x03\x30\ \x0d\x85\x9b\x7f\xc6\x97\xae\x3a\x7c\x08\xdd\xd4\xf0\xea\xaf\x71\ \x7a\x69\x00\x5b\x20\xd8\x0c\x60\x0b\x14\xaf\x00\xba\x11\x2a\xcf\ \x01\xf6\x46\x1b\xd1\x8d\xab\x5e\x88\xbc\x74\xc9\xef\x92\x43\x5e\ \xae\xc3\xfa\x47\x8f\x5e\xd3\xbc\x91\x47\x00\x8a\xbd\x85\x21\x3d\ \x8f\x6a\x6f\x36\xa0\x47\x8f\x5e\x6d\x9e\xfe\xa1\xb3\x1d\x49\x4c\ \x07\x64\x1a\x04\xd3\x01\x4c\x83\x6d\x17\xff\x5b\xa6\x01\x98\x0e\ \xa0\x1d\xaa\x71\x18\x49\xa8\x8d\x38\x14\x71\x18\x24\xa0\x88\x03\ \x48\x08\x10\x87\x14\xfe\x1b\x18\xfc\x37\x00\x64\x00\x64\x01\x64\ \xa0\xc8\x42\x8a\xff\x2d\xc8\xc2\x2e\xfc\x5b\x81\xac\xda\x9a\x81\ \x48\x16\xc0\x00\x80\xcd\x46\x74\x33\x14\x9b\x61\xcc\x16\x40\x36\ \x43\x75\x0b\xa0\x5b\x90\xc6\x66\x79\xef\xda\x7e\xee\x5f\x7a\xf4\ \xbc\xed\xfd\x7f\x6e\x68\x15\xa3\xf6\x28\x8c\x78\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0c\x48\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x00\x00\x00\x01\x00\x08\x03\x00\x00\x00\x6b\xac\x58\x54\ \x00\x00\x02\x79\x50\x4c\x54\x45\x00\x00\x00\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\ \xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\ \x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\ \x45\xf8\x45\x45\xf8\x45\x45\xf8\x45\x45\xf8\x49\x49\xfd\xc3\xc3\ \xfb\x91\x91\xfc\xb3\xb3\xfc\xb2\xb2\xfe\xe7\xe7\xfd\xd1\xd1\xf9\ \x54\x54\xfd\xd0\xd0\xfe\xe8\xe8\xf8\x45\x45\xff\xff\xff\xfb\xa2\ \xa2\xfd\xc2\xc2\xfa\x73\x73\xf8\x46\x46\xff\xfe\xfe\xf8\x4c\x4c\ \xf9\x66\x66\xf9\x5c\x5c\xff\xfb\xfb\xfe\xf0\xf0\xfb\x90\x90\xfe\ \xdd\xdd\xfe\xde\xde\xfa\x81\x81\xff\xf7\xf7\xff\xf8\xf8\xfa\x80\ \x80\x99\x5b\x2d\x53\x00\x00\x00\xb6\x74\x52\x4e\x53\x00\xfe\x01\ \xa6\x05\xfa\xf3\xd2\xfc\xfb\x18\xd3\x02\x75\xde\x09\xd5\x8c\x10\ \xea\xc6\xd7\x48\x69\x5c\x31\x28\x4a\x61\x81\xf8\x04\xf9\xf0\xa4\ \x4b\x07\x03\x7b\x27\x56\xdc\xf7\x88\xf4\xd6\x5d\x1c\xc3\x42\x0a\ \x0c\xa3\xb6\xb5\xb7\x74\xc7\x62\xdd\xc5\x63\xf5\x85\x1f\xbf\x36\ \x64\xfd\xcb\x82\x6e\xee\xe8\xb0\x86\x8f\xd4\x2a\x78\x37\xeb\x1e\ \x6d\xd1\xb4\x60\xd0\x08\x67\x91\x2e\x30\x0d\x0f\x0b\x13\x43\xf1\ \x4c\x5b\x83\xbb\xe1\xa7\x51\x84\xa9\x34\x29\x4e\x3e\x26\xf6\x47\ \xca\x20\x6b\x77\x9d\x7a\x65\x25\xc1\xdb\x8a\xce\xe7\xa5\x5e\x32\ \x7c\xaf\x90\x93\xdf\x7f\xb3\xc8\x6a\x7e\x1d\xe9\x35\x12\x14\x4d\ \x49\x2d\x6c\x3f\xc4\x41\xe6\x2c\x66\x3d\x8e\x8b\x9c\x33\xbe\x24\ \xcf\xc2\xc0\x5f\x16\x11\x19\x06\x17\x6f\x94\x95\x57\x2b\x87\x15\ \x5a\xb1\xec\x84\xbf\xb9\x3c\x00\x00\x08\xc8\x49\x44\x41\x54\x78\ \x01\xdc\xd5\x53\xa2\x5c\x41\x10\xc7\xe1\x39\xc6\xb5\x6d\xcf\xcc\ \x35\x62\xdb\xb6\x6d\xdb\xb6\x9d\xbc\xc4\xc9\x73\xb0\x81\xff\xd2\ \xb2\x83\xa8\x55\x75\xbe\x1d\xfc\xba\xaa\xbb\x53\xba\xad\x3e\x50\ \x53\x3b\x3a\xf3\xee\xfa\xe7\xc2\x71\x25\xb3\x8f\x00\xc0\x91\xd9\ \x25\xe3\x0a\xfb\xe6\x9e\xba\x90\x37\xb6\x66\xe1\xea\x54\x62\x15\ \x54\xfd\x9c\xe4\x94\xbe\xc1\x1f\xbc\x29\x75\x26\x6d\xaf\x2a\x48\ \x56\xfb\xa6\x97\x79\x4e\x77\x88\x7f\x10\x96\xed\xce\x7b\xb9\x29\ \x11\xf1\x71\xe7\xcd\x55\x11\xfe\x4b\xb4\xea\x66\x67\xcc\x3a\x7e\ \xa0\x66\xfe\x02\x08\x2a\x9c\x5f\x33\xc0\xb3\xbe\xb7\x62\x38\x0d\ \x29\xd2\xc3\x15\xbd\xdc\xea\x27\xe7\x8d\xb1\x20\x91\x35\x26\x6f\ \x32\x9f\xfa\xc7\x27\x5e\x59\x90\xce\x7a\x75\xe2\x31\x87\x7a\xbb\ \xdf\xa9\x87\x22\xf5\x4e\xbf\x4d\x3c\x3f\x3e\xd9\x05\xa5\xba\x4e\ \x52\xfe\x17\xd6\x0f\x79\x50\xce\x1b\x5a\x4f\x74\xf7\x5b\x76\x42\ \x93\x9d\x2d\xf4\x6e\x82\x5b\x5b\x08\x8d\x0a\x6b\x5d\x5a\xf9\xd3\ \x6e\x41\xb3\x5b\xd3\xe8\x1c\x41\x6e\x65\x17\x0c\xe8\xaa\xcc\xa5\ \xd1\x5f\x1e\xc0\x90\x9c\x72\x02\xf9\x1d\xa3\x60\xd0\xa8\x6a\xc3\ \xf9\xc5\x45\x8d\x30\xaa\xb1\xa8\xd8\xe4\xcf\x77\x66\x09\x8c\x5b\ \x72\xc6\xd8\x9f\x78\xf8\x0b\x48\x38\x77\xd8\x48\x7e\xc3\xe9\x23\ \x20\x22\x7d\xba\x41\x7f\xff\xfb\xe5\x20\x64\xf9\x7e\xdd\xe3\xaf\ \x8b\x40\x4a\x54\xa7\x75\x09\x0e\xcf\x00\x39\x33\x3a\xf4\xf5\x7f\ \xf5\x41\x90\x5f\xab\x29\x7f\xb0\x19\x44\x35\x0f\xea\xe8\xaf\x2e\ \x03\x59\x65\x07\xd4\xf7\x77\xfa\x20\xcc\xef\x54\x9c\xdf\xf6\xdd\ \x02\x69\xd6\xbc\x36\x95\xfd\x1b\x46\x40\xde\xc8\x06\x75\xfd\x4b\ \x03\x30\x10\x2c\x55\xd5\xbf\xff\x12\x58\xb8\xb4\x5f\x4d\x7f\xb9\ \x0f\x26\xfc\x67\x2a\xfa\x7b\x22\xb0\x11\x5d\x91\xdf\x3f\xcb\x02\ \x23\xd6\x2c\xd9\xfd\xed\x60\xe6\x9a\xdc\xfe\xbd\x60\x67\xaf\xcc\ \xfe\x0c\x18\xca\xc8\xeb\xdf\x01\x96\x76\xc8\xea\xbf\x0f\xa6\x6e\ \xcb\xe9\x5f\x06\xb6\x96\xc9\xe8\xdf\x6e\x81\x2d\x6b\xbb\x78\x7f\ \x4d\x23\x18\x6b\x3c\x28\xda\xbf\x78\x22\x58\x9b\xb8\x58\xac\xff\ \x41\x09\x98\x2b\x59\x2a\xd2\xbf\x31\x00\x7b\xc1\xc6\xff\xef\x6f\ \xbb\x83\x04\x58\xd1\x96\xfa\x5f\x75\x48\x84\xba\x5f\xcc\xd6\x03\ \x8e\xa4\x51\x14\x86\xe1\xaf\x38\xb6\x6d\xdb\xb6\x6d\x45\xa3\x1d\ \x74\x47\x83\x78\xa2\x89\x93\x09\xc6\xd8\xc3\x58\xe7\xb4\xad\x0d\ \xb5\x59\xf7\xff\xab\x6e\x55\x72\xbe\xdb\xcf\x26\xde\x17\x25\x7a\ \x9c\x10\x73\x4d\x4d\x62\x2e\xf1\x18\x25\x79\xba\x4c\xcc\x55\x35\ \x34\x54\x89\xb9\x65\x5f\x50\x82\xed\x13\xc4\x5c\x7d\xa3\x6a\x63\ \xbd\x98\x9b\xb0\x1d\xc5\x5b\x2e\xe6\x6a\x9b\xb5\x5b\x4b\xad\x98\ \x5b\x8e\xa2\xdd\x16\x73\xd5\x95\xda\xab\xb2\x5a\xcc\xdd\x46\x91\ \xd6\x64\xc5\x5c\x85\xf6\xab\x10\x73\x1b\xd7\xa0\x28\xe9\x72\x31\ \xd7\x51\xa3\xfd\x6a\x5a\xc5\x5c\x79\x7a\xb4\x1d\x40\x5d\x9b\x0e\ \x6a\xaf\x1b\x65\x37\x70\x7c\x9c\x58\xfb\xfb\x5b\x87\xf9\xfd\x57\ \xac\x8d\x3d\x0e\x6f\x2b\x2f\x89\xb5\x6f\xff\x74\x84\x7f\xdf\xc4\ \xda\xa5\x95\xf0\x75\x5a\xcc\xfd\xd2\x1c\x3f\xc5\xdc\x11\x78\x7a\ \x93\xb1\x3f\x60\x75\xd8\x3f\x71\xe6\x15\xbc\x4c\x3c\x48\x38\x60\ \x75\x10\x9e\xf8\xe0\x44\xf8\xb8\xc7\x38\x60\x07\xe5\x89\xef\xc1\ \xc3\xf4\x19\x84\x03\x76\x70\x9e\x78\xc6\x74\x14\x76\x91\x75\xc0\ \xae\xef\xe6\x4f\xfc\x1e\x05\xcd\xcf\x10\x0e\xd8\xc1\x7a\xe2\xcc\ \x7c\x14\xb2\x5b\x8c\xb5\xd6\xa8\x83\xf7\xc4\xb7\x50\xc0\x6c\xc2\ \x01\x3b\x98\x4f\x3c\x1b\x79\x4d\x9c\x40\x3d\x60\xd7\x7f\xeb\x27\ \x9e\x30\x11\xf9\x6c\x26\x1c\xb0\x83\xfb\xc4\x9b\x91\x47\x7a\x32\ \xe1\x80\x1d\xdc\x27\x9e\x9c\x46\xbc\x13\xfc\x03\x76\xfd\x10\x5b\ \x27\x10\x6b\xc9\x64\xfe\x01\xf3\x9f\x78\xf2\x12\xc4\x59\x18\xe2\ \x80\xf9\x4f\xbc\x1f\x31\x92\x53\x83\x1c\x30\xfd\x89\xa7\x26\x11\ \xad\x2c\xd0\x01\xd3\x9f\xb8\x0c\xd1\x3e\x87\x3a\x60\xf6\x13\x1f\ \x43\xa4\x79\xc1\x0e\x98\xfe\xc4\xf3\x10\x65\x67\xb8\x03\x66\x3f\ \xf1\x72\x44\x18\x9f\x09\x78\xc0\xe4\x27\x1e\x37\x1e\xae\x2b\x41\ \x0f\x98\xfc\xc4\x57\xe0\x48\x3e\x0f\x7b\xc0\xdc\x27\x7e\x9e\x44\ \xae\x6d\xa1\x0f\x98\xfb\xc4\x0f\x91\x2b\x15\xfa\x80\xb9\x4f\x9c\ \x42\x8e\x07\x8b\x83\x1f\x30\xf5\x89\x17\x3f\xc0\x48\x73\xec\x0e\ \xb8\x45\x5d\xe1\x9f\x78\x0e\x46\xda\x1a\xfe\x80\x99\x4f\xec\xdc\ \xe0\xd1\x44\xf8\x03\xe6\x3e\xf1\xc9\x91\x2b\xb0\x37\xfc\x01\xb3\ \x9f\xf8\x06\x86\x7b\x69\x75\xc0\xed\xea\x8f\xfb\xc4\x5b\x31\xcc\ \x96\x44\xf8\x03\x66\x3f\xf1\xc9\x2d\x18\x32\x87\x7f\xc0\xfe\xfe\ \x7c\xb3\xef\xc0\x0b\x31\xf1\x53\xfd\xf1\x9f\xf8\x3c\x06\xad\xcc\ \x0a\x95\xc6\x10\xaa\xec\x4a\x0c\xe8\x62\xef\x1e\x74\x1c\x8f\xe2\ \x28\x8e\x7f\xb3\x63\xdb\xb6\x6d\xdb\x0a\x87\xc1\xda\xb6\x6d\x6f\ \x38\xc1\xda\xe6\x03\xdc\x37\x5b\x8f\x8b\xe0\x2e\xcf\x9c\x38\xf5\ \xa7\xed\x9f\xed\xef\x4c\x1b\x45\x00\x53\xc6\x4c\xee\x68\x02\x84\ \x31\x13\x1f\x4d\x00\x1f\x7e\xe6\xa5\xd1\x04\x30\xfe\x00\x40\xae\ \x2a\x40\x2e\x00\xf0\x5a\x15\xe0\x0d\x00\x30\xa6\x0a\x30\x06\x00\ \x15\xbe\xaa\x00\xbe\x15\x00\xec\x30\xaa\x00\x66\x1a\x80\x5a\x5d\ \x80\x5a\x00\x3c\x74\x01\x3c\x00\x88\xb2\xfe\x42\xdc\xbd\x28\x0b\ \xd7\xb5\x03\x17\x05\x10\xe2\xab\x0b\xe0\x1b\x02\xc4\x19\x5d\x00\ \x13\x07\xac\x55\x06\x88\x05\x06\x94\x01\x06\x80\x2d\xca\x00\x5b\ \x80\xe3\xca\x00\xc7\x81\xd5\xca\x00\xab\x21\xdc\x28\x03\x98\x70\ \xa6\xb4\x01\xa6\xc8\xd0\x06\xc8\xa0\x49\x1b\xa0\x89\x6c\x6d\x80\ \x6c\x26\xb5\x01\xce\xe1\xa1\x0d\x70\x92\x2a\x6d\x80\x2a\x22\xb5\ \x01\x22\x09\xd0\x06\xf0\x61\x83\x36\xc0\x06\xae\x6b\x03\xf4\x91\ \x66\x19\xe0\x57\x1f\x14\xb5\x0c\x90\x46\xa1\x36\x40\x21\x46\x1b\ \xc0\xa8\x03\x2c\x03\x2c\x03\x34\x6b\x03\x14\x2e\xaf\x06\xaf\x6b\ \x03\xf4\xb1\x41\x1b\x60\x03\x01\xda\x00\x3e\x44\x6a\x03\x44\x52\ \xa5\x0d\x50\x85\x87\x36\xc0\x49\x26\xb5\x01\xce\x91\xad\x0d\x90\ \x4d\x93\x36\x40\x13\x19\xda\x00\x19\x4c\x69\x03\x4c\xf1\x4c\x1b\ \x20\x1c\x56\x2b\x03\xac\x06\x1e\x2a\x03\x1c\x07\xb6\x28\x03\x6c\ \x01\x06\x94\x01\x06\x80\x58\x65\x80\x58\xe0\xb4\x32\x40\x1c\x50\ \xde\xa9\x0b\xe0\x1b\x02\x10\xa5\x0b\x10\x05\x80\x87\x2e\xc0\x46\ \x00\x6a\x75\x01\x6a\x01\xd8\xa1\x0b\xb0\x03\x80\xf1\x54\x55\x80\ \xd4\x71\x00\x88\x54\x05\xa8\x03\x00\xc2\x54\x01\xc2\x00\x80\x4d\ \xaa\x00\x9b\x00\x80\x0f\xaa\x00\x4f\xf9\x19\x1f\xfb\x00\xf6\x63\ \xff\x31\x03\x98\x49\x98\x26\x40\x18\x33\x29\xd3\x04\x28\x5b\x30\ \x46\x47\x0c\x60\xe1\x18\x1d\xfa\x15\x01\x3e\x31\x97\x18\x45\x80\ \x98\x05\xc3\xd4\xe4\x00\x16\x0e\x53\xe3\xb2\x1e\x40\x29\xf3\x13\ \xa4\x07\xd0\xe3\x60\xa4\xa6\x12\x40\xe7\x73\x16\xa4\x54\x0d\xa0\ \x8d\x85\xd9\xa7\x06\x10\xe3\x60\xb0\xb2\x12\x40\xf2\x2d\x16\xc5\ \x43\x0b\xc0\x83\xc5\x29\xd3\x02\x58\xe5\x60\xbc\xbe\x12\x40\xde\ \x0a\x96\x64\x44\x09\x60\xc4\x61\xc5\x86\x0e\x80\xc3\x8a\x0d\x2a\ \x75\x00\xd2\x71\x94\x38\x1d\x80\x38\x1c\xa6\xcd\xc6\x93\xf9\x13\ \xb1\x54\xb4\xc4\x6e\x15\x80\x68\xa7\x65\x6b\x1a\x00\x4e\xcb\xd6\ \xa8\xd7\x00\xa8\x77\x51\xb8\xa8\x00\xe0\xaa\x73\xb3\x43\x01\xe0\ \x90\x85\xd2\xd5\x7f\x19\x20\xf8\x85\x85\xda\xdd\x7f\x19\xa0\xd8\ \x42\xf1\xf2\xbf\x0c\xf0\xa5\xbb\x7b\x48\x94\x24\x0a\xa2\x30\x7c\ \xd2\x99\x65\xdb\xf5\x0a\x0f\x6d\xdb\xb6\x6d\xdb\xb6\x6d\x63\x07\ \x6d\xcd\x7b\x69\xdd\x2b\x28\x26\xee\x8d\x6f\x07\xff\x19\xc5\x2c\ \x9a\x3c\x5e\xc6\x0b\xea\x03\xc4\xd0\xc4\x68\xda\x03\xac\x42\x33\ \x29\x85\xf2\x00\x4a\x0a\x4d\x2d\xa4\x3c\xc0\x42\x34\x17\x0a\xd3\ \x1d\x20\x1c\x42\x0b\xd6\xd1\x1d\x60\x1d\x5a\xe1\x99\x48\x75\x80\ \x89\x1e\xb4\xe4\xbd\x42\x73\x00\xe5\x25\x5a\x34\x9b\xe6\x00\x53\ \xd0\xaa\x9e\x45\x14\x07\x58\xd4\x83\x96\x4d\x37\xe8\x0d\xa0\x4f\ \x47\x1b\xb2\x7f\xc9\x99\x8d\x76\xc8\x27\xa8\xf5\xcf\x92\xd1\x96\ \xd4\x00\xad\xfe\x81\x14\xda\xb4\x9a\xd6\x00\xab\xd1\x36\x89\x52\ \xff\x55\xb4\x6f\xb8\x9b\x4e\xbf\x7b\x38\x3a\x70\xbe\x48\xa5\xbf\ \x78\x1e\x1d\x79\x2e\xd0\xe8\x17\x9e\xa3\x05\x84\xaf\x81\x2c\x3a\ \x55\xb9\x47\xa1\x7f\x55\x05\x1d\xdb\xac\xf1\xdf\xaf\x6d\x46\x17\ \x96\x87\x79\xef\x0f\x4f\x45\x57\x96\x4e\xe6\xbb\x7f\xf2\x52\x74\ \xe9\xb0\xce\x73\xbf\x7e\x18\x5d\x1b\x2c\xf0\xdb\x2f\x0c\x86\x09\ \x56\xf0\x3b\xc0\x1c\x98\xe2\x21\xaf\xfd\x77\x61\x92\x5d\x7c\xf6\ \xef\x82\x69\xfa\x79\xec\xef\x87\x89\xf6\xf3\xd7\xbf\x1f\xa6\xaa\ \xf2\xd6\x7f\x03\x26\x9b\x23\xf0\x94\x2f\x7c\x86\xe9\xae\x19\xfc\ \xf4\x1b\xd7\x60\x81\xb4\xca\x4b\xbf\x9a\x86\x25\x0e\xce\xe3\xa3\ \x7f\xde\x13\x58\x64\xaa\xc6\x43\xbf\x76\x12\x96\xd9\x34\x9a\xfd\ \xfe\xd1\x9b\x60\xa1\x4a\xbf\xc0\x76\xbe\xd0\x5f\x81\xb5\xea\x2a\ \xcb\xfd\xea\x37\x58\x6e\x71\x94\xdd\xfe\xe8\x77\xd8\x60\x44\x89\ \xd5\xfe\xd2\x08\xd8\x23\xa3\xb2\x98\x3f\x90\x81\x6d\x6a\xb3\xd8\ \xeb\x9f\x95\x82\x8d\xe4\xd9\x06\x5b\xf9\xc6\x6c\x19\xf6\x7a\xb2\ \x92\xa5\xfe\x95\xd3\x61\x3b\xf9\x6c\x1f\x2b\xf9\x7d\x55\x19\x4e\ \xa8\x5d\x60\xa3\xff\x42\x0d\x0e\x11\x3f\x2c\x73\x3e\x7f\xd9\x07\ \x11\xce\x09\x05\x0b\xce\xe6\x17\x82\x21\x38\xeb\xd0\x18\x27\xfb\ \xc7\x2c\x86\xf3\x62\x9a\x53\xf9\xee\x18\x98\xe0\x49\x4c\x70\x22\ \x7f\x42\xc2\x03\x56\xc8\x93\x7c\x76\xe7\xfb\x26\xc9\x60\x89\x9c\ \x09\xd8\x99\x1f\xc8\xe4\xc1\x1a\xb1\xbc\xdb\xae\xfc\xdd\x65\x11\ \x4c\xda\x38\x52\xb1\xbe\x5e\x19\xb9\x11\xec\x72\x9d\xee\xb5\x36\ \xbf\x77\x89\x0b\x6c\x13\xb7\xed\xcd\x59\x55\x9f\xdb\xbb\x4d\x04\ \x07\xb6\xbe\x9a\x28\x98\x5f\x2f\x4c\x7c\xf5\x0c\xdc\x38\xe9\x1d\ \x27\x98\x5a\x3f\xce\x7b\x12\x9c\x19\xf2\x60\x4c\x9f\x39\xf5\x7d\ \x63\x1e\x3c\x02\x97\xb6\xec\x58\x3f\xa8\xdb\xfa\x41\xeb\x77\x6c\ \x01\xcf\x5c\xfb\x82\x11\xa5\xb3\x76\x65\x5c\x70\x9f\x0b\x14\xf8\ \x3f\x7a\xa5\x41\x7a\x3b\xed\xfa\x20\xc9\xfb\xd1\x0f\x52\xfc\xd7\ \x13\x53\xa4\xc8\x95\x66\xe9\xf3\x22\xd2\x94\xc4\x75\x3f\xc8\xf2\ \x2f\x4e\x8f\xf7\x5e\x3a\x33\x7f\xe8\xa0\x09\x7f\xe6\xea\xff\x8b\ \x27\xcf\x9d\xeb\x9b\x30\x68\xe8\xfc\x33\x97\xbc\xe3\xd3\x8b\x6d\ \x2f\xff\x07\xc2\x60\x5d\x0b\x93\x24\xfe\xca\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x68\xf7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x68\xbe\x49\x44\x41\x54\x78\xda\xed\x9d\x09\x9c\x1c\x55\ \xb9\xf6\x27\x4c\x4f\xa6\x33\x99\x3b\x80\x5e\x14\x45\xbf\x8b\x9f\ \x5e\x23\xe9\xaa\x9e\x19\x02\xd7\xc0\x87\xdc\xd1\x24\xd3\xdd\x93\ \xc8\x9a\xe1\xe2\x02\x08\x28\x60\x10\xf1\xe2\x72\x11\x41\x16\x41\ \x10\x10\x97\x8b\x28\xc8\x12\x20\x21\x99\xc9\xcc\x74\xf7\x84\x24\ \xca\x92\x01\x31\xb2\x84\x1d\x12\x20\x90\x04\x81\x2c\x40\xc8\x42\ \x56\x48\x26\xf5\x9d\xb7\x52\xd5\xa9\xde\xaa\x4e\x75\xd7\xa9\xae\ \xe5\x69\x7f\xf5\x8b\x09\x33\xff\x99\x3e\xef\x39\xef\xf3\x74\xd5\ \x39\xef\x5b\x57\x87\x17\x5e\x78\x79\xfa\xd5\x31\x74\x70\xb4\x33\ \x23\x7d\x3a\x95\x1d\xdb\xde\x99\x95\x26\x25\xb3\xb1\x93\x53\x69\ \xe9\xbb\xa9\x8c\xf4\xb3\x64\x46\xba\x8e\xfd\xfd\xe6\x44\x46\x9a\ \xcd\xfe\xff\xbd\xec\xcf\x87\xd9\x9f\x8b\x93\x19\xf9\x45\xf6\xe7\ \x0a\xf6\xe7\x2a\xf6\xe7\x7b\xec\x7a\x9f\x5d\xdb\xd9\xb5\x93\x5d\ \xc3\xec\x52\x0a\xae\x61\xed\xbf\x6d\xd7\xbe\xf6\x3d\xed\x7b\x57\ \x68\xac\xc5\x1a\xfb\x5e\xf5\x67\xb1\x9f\x49\x3f\x9b\x7e\x07\xfa\ \x5d\xe8\x77\xa2\xdf\x4d\xfd\x1d\xd9\xef\x4a\xbf\x33\x22\x87\x17\ \x5e\x01\x7f\x4d\x9c\xd8\x31\x82\x5d\xfb\x18\xae\x11\xe0\x81\x07\ \x1e\x07\x4f\xa9\x1b\x91\xea\x6d\x3f\xa0\x2b\x2b\x1d\xc6\xc4\xf4\ \xf8\x44\x56\x3a\x3f\x95\x95\xae\x67\xff\x7f\x06\xbb\x16\x32\xa1\ \x5d\xca\xae\x0d\x79\x42\x9d\x2e\x71\x65\xaa\xb8\x04\xf2\x12\x69\ \x69\x03\xbb\x96\x26\xd3\xf2\x83\xf4\x9e\xe8\xbd\xd1\x7b\xa4\xf7\ \x4a\xef\x99\xde\x3b\x8d\x01\xe6\x0b\x78\xe0\x79\x83\x67\xf7\x87\ \xd7\x17\x5e\xe0\x81\x07\xde\x5e\xde\x37\xbf\x39\xa6\x21\x79\x4f\ \xfb\x67\x3b\xfb\xe4\x44\xa2\x5f\x3a\x2f\x91\x95\x7f\xc3\x04\x70\ \x90\x5d\x4b\xd8\xb5\xc5\x2b\x62\x5d\x43\xde\x16\x6d\x2c\x06\x69\ \x6c\x12\x99\xd8\xb9\xea\x5d\x8e\x81\xb6\x83\x4f\x39\xe5\xdf\x1b\ \x30\xff\xc0\x03\xcf\x1d\x9e\x5d\xd7\x11\x61\x57\x83\xe1\x8a\x54\ \xea\x3e\xc0\x03\xcf\xef\xbc\xee\xde\xee\xfa\xae\x81\xd6\xcf\x27\ \xb3\xd2\x09\x89\x01\xf9\x92\x64\x3f\xbb\x4d\x9e\x96\x9e\x4b\x0e\ \x48\xdb\xd8\xa5\xa8\x57\x35\xe2\x3a\x50\xe2\x0a\x3e\x6f\x9b\x3a\ \x86\xfd\x72\x4f\xa2\x2f\x7e\x29\xfb\xf7\x13\x68\x8c\x69\xac\x31\ \xff\xc0\x03\xcf\x19\x5e\x25\x3f\x9c\x7e\xe0\x48\xc3\xd5\x50\xe5\ \x9b\x01\x0f\x3c\xdf\xf0\xba\x7b\x8f\x18\x95\x1a\x8c\x8f\x4f\x66\ \x62\xd3\x12\x19\xf9\x16\x26\x52\x4f\x30\x71\xda\x96\x27\x5e\xfd\ \x86\xcb\x09\x31\x04\xcf\x78\x91\x31\x78\x42\x1d\x7b\x16\x03\x8a\ \x05\xc5\x04\xf3\x19\x3c\xf0\xc4\x8b\x7f\x23\xbb\xa2\x86\xab\xb1\ \xca\x37\x03\x1e\x78\x9e\xe5\x75\x0c\x75\x44\x68\x63\x1b\xdb\x08\ \x77\x36\x7b\x9e\x7d\x1b\x13\x9f\xe7\xd9\xb5\xab\xac\x78\xf5\xcb\ \xc5\x57\x35\x62\x08\x1e\xef\xf7\x52\x4c\x9e\xdf\x13\x23\xf9\x6c\ \x8a\xd9\x97\x67\xaa\x89\x11\xf3\x19\x3c\xf0\x1c\x12\x7f\xfa\x81\ \xa3\x0c\x57\xb4\xca\x37\x03\x1e\x78\xde\xe2\xdd\x75\xd8\x7e\x4c\ \x40\xba\xd8\xe6\xbb\x2b\x99\xa0\x0c\x71\x3f\xa7\x4f\x6b\xe2\xd5\ \x67\xb8\xe8\xef\xe9\x2a\x9e\xa7\x83\x57\x1d\xaf\x4f\xde\x92\x9c\ \x23\x3f\x9c\xe8\x91\xaf\x49\xce\x68\x3d\x7e\xe2\x55\xe3\x3f\x8e\ \xf5\x01\x1e\x78\x7b\x99\xbc\x5f\x48\xbb\x0b\x9b\xd8\x35\xda\x70\ \xd1\xdf\xf7\xa9\xf0\x07\x83\x07\x9e\x27\x78\x13\xae\x6e\xff\x74\ \xf2\xee\xf8\xc9\xa9\xd9\xf2\x8d\x6c\xb7\xfa\xd3\x65\x8e\xc8\xf1\ \x88\x8d\xc2\xc4\x66\xef\xd5\x57\xb5\x78\x81\xe7\x3c\x8f\xc5\x56\ \x7e\x9a\x1d\x5b\xfc\x2d\x9d\x44\x98\x30\xf0\x85\x8f\x62\x7d\x80\ \x17\x42\xde\x08\x6d\xd3\xe0\x3e\xbc\x3f\x9c\x7e\x60\xb3\xe1\x1a\ \x5d\xe5\x9b\x01\x0f\xbc\x9a\xf0\x4e\xb8\xf9\xc8\xd1\x89\xbb\xe2\ \xc7\x25\xef\x91\x7f\x9f\xec\x8d\x3f\xcb\xc4\x61\xb7\x2a\x10\xd5\ \x88\xcd\x1c\xb9\xf8\x02\xcf\x0f\xbc\xdd\x64\x08\x92\xe9\xd8\xaf\ \x13\xd9\x58\xb2\xd4\x3e\x02\xac\x37\xf0\x02\xc6\xd3\x37\x10\x5a\ \x1b\x00\xc3\x0f\x6f\x31\x5c\xcd\x55\xbe\x99\x66\xf0\xc0\x73\x8d\ \x47\x67\xed\x33\xb1\xb1\xac\x60\xcd\x8f\x58\xa2\x7f\x90\x89\xc1\ \x8e\x64\x2f\x13\x04\xfd\x72\x42\x6c\xc0\x0b\x0a\x6f\x07\xdb\x54\ \xf8\x00\xcd\x15\x9a\x33\xf2\x2f\xc6\xd6\x63\xbd\x81\x17\x20\xde\ \x08\xc3\xa9\x01\x73\x03\xa0\x7d\x71\x93\xe1\x17\xd8\x57\xfb\xb3\ \x9a\x37\xa3\x73\xf6\x05\x0f\x3c\x51\x3c\xfa\x24\xc7\x0a\xce\x4c\ \x66\xd7\x4d\x2c\xa9\xbf\x9e\x13\x87\x5e\xb9\xf8\xaa\x46\x6c\xc0\ \x0b\x36\xaf\x47\x7e\x23\x71\x4f\xfc\xd6\xce\xdb\xdb\x4e\xea\x3a\ \xe7\xe8\x03\xb1\xde\xc0\xf3\x31\x4f\xdf\x40\x38\xd2\x60\x00\x46\ \x58\x6d\x38\x18\x5d\xe0\x40\x30\xd8\xe0\x79\x92\x47\xcf\x73\xd9\ \xa7\xb6\x53\x59\xf2\x1e\x60\xd7\x56\x88\x21\x78\x0e\xf3\xe8\xe8\ \x61\x9a\xe6\x18\xef\xde\x01\xac\x5f\xf0\x3c\xc4\xd3\x4f\x0d\xe4\ \x0c\x80\x95\x53\x18\x55\xf0\xec\x01\x83\x0d\x9e\xa7\x78\x93\xb2\ \x63\x3e\x49\x95\xe3\xa8\x6c\x6e\xd9\xa3\x79\x10\x2f\xf0\x9c\xe7\ \xed\xda\x53\xaa\x39\x76\x6e\xa2\xff\x90\x4f\x60\xfd\x82\xe7\x71\ \x5e\x93\xe1\xd4\x00\x19\x80\x88\xd5\x33\x82\xa8\xc1\x00\x8c\xc6\ \x60\x83\xe7\x15\x5e\xd7\xbc\xd8\x81\x6a\xe2\xdd\xd3\x98\x66\x37\ \xc4\x0b\xbc\x1a\xf3\x76\xd3\x5c\xa4\x39\x49\x73\x13\xeb\x17\x3c\ \x8f\xf1\x74\x0d\xd7\x0d\x40\x83\xd9\xad\xff\x88\xe6\x10\x74\x03\ \xd0\x84\xc1\x06\xaf\xd6\xbc\xd4\xfc\xcf\xb5\xb0\xaa\x6f\xa7\xb3\ \xe3\x5b\xf7\x71\x1f\xd3\x83\x78\x81\xe7\x3e\x6f\x98\xe6\x28\xcd\ \xd5\xe4\xac\x2f\xec\x87\xf5\x0b\x5e\x8d\x79\xc6\x53\x03\xa3\x4c\ \x8b\x06\x69\x9b\x02\x1a\x0c\x06\x20\x8a\xc1\x06\xaf\x56\xbc\x09\ \xa7\x75\xec\x9f\xea\x8b\x4f\x66\xb5\xf5\x7b\xb4\x16\xb5\x10\x1b\ \xf0\xfc\xc4\xdb\x9e\x9c\x15\x1f\x48\xfe\xb9\x6d\xea\x84\x6f\x76\ \x7c\x14\xf9\x00\xbc\x1a\xf0\x5a\x0c\x06\x20\x6a\xb5\xe9\xcf\x68\ \x00\xaa\x29\x57\x88\xe0\x81\x57\x31\xaf\xf3\xc6\xb6\xf1\xc9\x7b\ \xe2\xbf\x63\x49\x74\x0d\xc4\x06\xbc\x80\xf0\xd6\xb2\x7e\x06\xd7\ \x27\x06\xc7\xc6\x90\x0f\xc0\x73\x91\xa7\x1b\x80\x26\x53\x3d\xd7\ \xbe\xa9\xde\x70\x46\x10\xe2\x0f\x9e\x6b\xbc\xaf\x9c\xff\xc5\x83\ \x12\xd3\x5b\xbf\x97\x98\x1d\x5f\x0c\xb1\x01\x2f\xc8\x3c\xf6\x78\ \xe0\x31\xf6\xf7\x33\x3b\x7a\x63\xcd\xc8\x07\xe0\x09\xe6\xb5\x70\ \xed\xe1\x33\x18\x80\x08\xc4\x1f\x3c\xb7\x78\xc9\x3f\xb5\x1e\x95\ \x9c\x25\xdf\xc1\xce\x5b\x6f\x81\x38\x80\x17\x32\xde\xe6\x64\x36\ \x76\x33\x35\x2d\x42\x3e\x00\x4f\x10\x8f\xef\xf4\x9e\xc1\x00\x40\ \xfc\xc1\x13\xca\xeb\x18\x3a\x38\x9a\xe8\x97\x4e\x65\xa2\xff\x04\ \xc4\x01\x3c\xf0\xd4\xeb\x51\xd6\xc5\xf0\x14\x5a\x1b\xc8\x2f\xe0\ \xb9\xce\xab\xb2\xa3\x10\x06\x1b\x3c\xcb\xd7\x94\xb9\xad\x07\xb1\ \x12\xab\x57\xb1\x64\xf7\x0e\xc4\x01\x3c\xf0\x4a\x5c\x59\xe9\x9d\ \xd4\x80\xf4\xcb\xd4\xf5\x87\x8f\x41\x7e\x01\xaf\x16\x3c\x0c\x0e\ \x78\x8e\xf2\x52\x83\xf1\xf1\xda\x4e\xfe\x9d\x10\x07\xf0\xc0\xe3\ \xe0\xf5\xc8\x3b\xd5\x13\x04\x37\x1f\x3a\x11\xf9\x05\x3c\x88\x3f\ \x78\xbe\xe2\x75\xf7\x76\xd7\x27\xd2\xb1\x13\x59\x52\x5b\x04\x71\ \x00\x0f\xbc\xaa\x78\x8b\x68\x2d\xd1\x9a\x42\x7e\x01\x0f\xe2\x0f\ \x9e\x67\x79\xd4\x84\x27\x95\x96\xcf\x62\xc5\x50\x96\x21\x99\x83\ \x07\x9e\x73\x3c\x5a\x53\xb4\xb6\x4a\xb5\x2c\x46\xbe\x02\x0f\xe2\ \x0f\x5e\xcd\x78\x6a\xa5\xbe\x74\xec\x27\x2c\x51\xad\x41\x32\x07\ \x0f\x3c\xa1\xbc\x35\xb4\xd6\x68\xcd\x21\x5f\x81\x07\xf1\x07\xaf\ \x66\x3c\xea\x8a\x96\x4c\xcb\xbf\x60\xb5\xd0\x37\x20\x99\x83\x07\ \x9e\x7b\x3c\x75\xcd\xb1\xb5\x67\xec\x4c\x88\x7c\x05\x1e\xc4\x1f\ \x3c\xe1\xbc\x54\x6f\xfb\x01\xac\xf9\xc9\x35\xea\x59\x66\x24\x73\ \xf0\xc0\xab\x25\x6f\x33\xad\xc5\xd4\xf4\x43\x3f\x8e\x7c\x05\x9e\ \x4d\xe6\x08\x0c\x0e\x78\xdc\xbc\xaf\xce\xfd\xfc\xbf\xb2\x04\xf5\ \x4b\x53\xe1\x47\x32\x07\x0f\xbc\x5a\xf0\xb6\x24\xef\x8e\xff\x3a\ \x75\xf9\xa1\xff\x17\xf9\x0a\x3c\x2b\xe1\xd7\xea\xfe\x70\x17\x09\ \x6a\xc6\x60\x87\x97\x37\xb1\x77\xdc\xbe\xec\x53\xc6\xe5\x96\xc2\ \x8f\x64\x0e\x1e\x78\xb5\xe5\xb1\xaa\x9a\x89\x99\xf2\x35\x13\x6f\ \x3b\x7c\x7f\xe4\x3f\xf0\xca\x88\x7f\x84\xcb\x00\x18\xfa\x09\xb7\ \x60\xb0\xc3\xc7\xa3\x1d\xc7\xec\x0c\xff\x8f\x59\xa2\x79\x0f\xc9\ \x17\x3c\xf0\x7c\xc5\x7b\x8f\xd6\x2e\xcf\xa9\x01\xe4\xbf\x50\x89\ \xbf\xde\xef\xc7\xdc\x00\x68\x5f\xdc\xa4\x7d\xfa\x6f\xc1\x60\x87\ \x87\x47\x67\x8e\xa9\x61\x09\x4b\x22\x6f\x22\xf9\x82\x07\x9e\xaf\ \x79\x6f\xd2\x5a\xb6\xaa\x23\x80\xfc\x17\x0a\xf1\x6f\xd4\xba\xfd\ \x36\x98\x96\xfe\xd7\xbe\x38\xaa\x7d\xfa\x6f\x36\xf4\x16\xc6\x60\ \x07\x98\xd7\x7a\xa9\x54\x9f\xc8\x4a\x93\x59\xd2\x58\x82\xe4\x0b\ \x1e\x78\x81\xe2\x2d\xa1\xb5\x5d\xa7\xd4\x8d\x40\xfe\x0b\x25\x2f\ \xaa\x5d\x39\x03\x60\xe5\x14\x46\x19\x0c\x40\x33\x06\x3b\xd8\xbc\ \x54\x5f\x6c\x1c\x4b\x12\x0b\x91\x2c\xc1\x03\x2f\xd0\xbc\x85\xc6\ \x0e\x84\xc8\x7f\xa1\xe0\x35\x69\x7a\xae\x1b\x80\x88\xd5\x33\x82\ \xa8\xc1\x00\x8c\xc6\x60\x07\x97\x97\xbc\x6e\xdc\xe7\x58\xf2\xb8\ \x8d\x25\x86\xdd\x48\x96\xe0\x81\x17\x0a\xde\x6e\xb6\x3f\xe0\xd6\ \xae\x3e\xf9\x93\xc8\xa7\x81\xe7\xe9\x1a\xae\x1b\x80\x06\xb3\x5b\ \xff\x11\xcd\x21\xe8\x06\xa0\x09\x83\x1d\x4c\x5e\xe7\x59\xe3\x3f\ \x96\x9c\xd1\x7a\x29\x4b\x1e\x9b\x91\x2c\xc1\x03\x2f\xac\x47\x07\ \x5b\x2f\xa3\x5c\x80\x7c\x1a\x48\x9e\x7e\xf7\x5e\x37\x00\x8d\x66\ \xe2\x5f\xaf\xb9\x83\x91\x86\xe7\x05\x18\xec\x00\xf2\x12\xb7\xb5\ \x75\xb3\xe3\x42\xcb\x91\x2c\xc1\x03\x0f\x3c\xca\x05\x89\xdb\xdb\ \xa6\x22\x9f\x06\x8e\xd7\x62\x30\x00\x51\xab\x4d\x7f\x46\x03\xd0\ \xc8\x5d\x25\x08\x83\xed\x1b\xde\xa4\x1b\x0e\x8b\x27\x67\xb5\xce\ \x47\xb2\x04\x0f\x3c\xf0\x8a\x79\x72\xb6\x73\x30\xfe\x19\xe4\xd3\ \xc0\xf0\x74\x03\xd0\x64\xaa\xe7\xda\x37\xd5\x1b\xce\x08\x42\xfc\ \x03\xc4\x4b\x9d\x76\xe4\x01\x89\xbb\xe3\x57\x30\xa7\xbf\x1d\xc9\ \x12\x3c\xf0\xc0\x33\xe1\x6d\x67\x7d\x06\x2e\xea\xee\x8d\x8d\x44\ \x3e\xf5\x3d\xaf\x85\x6b\x0f\x9f\xc1\x00\x44\x20\xfe\x01\x13\xff\ \x5b\xda\xbb\x12\xb3\xe5\x97\x91\xdc\xc0\x03\x0f\x3c\x5e\x1e\x33\ \x01\x4b\xbb\xb2\xf2\xd1\xc8\xa7\xbe\xe6\x35\xdb\x29\xf7\x5b\x0f\ \xf1\x0f\x0e\x2f\x79\xf9\x7f\xfc\x9f\xe4\xac\xf8\x5d\x48\x6e\xe0\ \x81\x07\x5e\xc5\x3c\x76\x5a\x60\xf2\xbd\xf2\xfe\xc8\xcf\x01\xe6\ \x55\x2a\xfc\x18\x6c\xef\xf1\xd4\x62\x3e\xd3\x5b\x4f\x63\xb7\xfb\ \xdf\x41\x72\x03\x0f\x3c\xf0\x1c\xe0\xbd\x9d\x48\x4b\x27\x51\x11\ \x21\xe4\x67\xb4\x08\xc6\x60\x7b\x94\x97\x98\x19\x3b\x28\x31\x3b\ \x3e\x17\xc9\x0d\x3c\xf0\xc0\x73\x9a\xc7\x4c\x40\xa6\xf3\xea\xf6\ \x7f\x47\x7e\x86\xf8\x63\xb0\xbd\xc4\x63\xce\x3c\xd9\x2f\x9f\x9e\ \xe8\x95\x37\x22\xb9\x81\x07\x1e\x78\xa2\x78\x89\x1e\x79\x63\xe2\ \x8e\xb6\x69\x1d\xc7\x1e\xb5\x1f\xf2\x33\xc4\x1f\x83\x5d\x63\xde\ \xa4\xec\x98\x4f\xa6\x32\xd2\xbd\x48\x6e\xe0\x81\x07\x9e\x5b\xbc\ \x54\x8f\xbc\x60\x52\xcf\x21\x9f\x42\x7e\x86\xf8\x63\xb0\x6b\xc1\ \xa3\x4f\xfd\xe9\xd8\xd7\xd8\xe2\x5c\x8f\xe4\x06\x1e\x78\xe0\xd5\ \x80\xb7\x3e\x99\x8d\x9d\x8c\xfc\x0c\xf1\xc7\x60\xbb\xc8\x4b\xf4\ \xc6\x3e\xc2\x8e\xe9\xcc\x46\x32\x02\x0f\x3c\xf0\x6a\xcd\xa3\x5c\ \x44\x39\x09\xf9\x19\xe2\x0f\x9e\x60\x5e\x67\x56\x9a\xc4\x2a\x76\ \xad\x42\x32\x02\x0f\x3c\xf0\xbc\xc3\x93\x57\x51\x6e\x42\xbe\xf7\ \x8f\xf8\x73\x9f\xfe\xc3\x60\xd7\x9e\xd7\x31\x74\x70\x94\x2d\xb2\ \x1b\x90\x8c\xc0\x03\x0f\x3c\xef\xf2\xe4\x1b\x28\x57\x21\xdf\x7b\ \x9a\xa7\x97\xfe\xe7\x2e\x12\xd4\x8c\xc1\xae\x1d\x2f\x99\x8d\x8f\ \x61\x05\x39\x9e\x45\x32\x02\x0f\x3c\xf0\x3c\xcf\xa3\x5c\xc5\x72\ \x16\xf2\xbd\x67\xc5\x3f\xc2\x65\x00\x0c\xfd\x84\x5b\x30\xd8\x35\ \xe0\xb1\x8d\x7e\xa9\xac\x74\x06\x5b\x54\x5b\x91\x8c\xc0\x03\x0f\ \x3c\x1f\xf1\xb6\xa6\xd2\xd2\x99\x1d\xc7\x1d\xb5\x2f\xf2\xbd\xa7\ \xc4\x5f\xef\xf7\x63\x6e\x00\xb4\x2f\x6e\xd2\x3e\xfd\xb7\x60\xb0\ \xdd\xe5\x1d\x93\x1d\xf3\x2f\xcc\x49\xdf\x8d\x64\x04\x1e\x78\xe0\ \xf9\x96\x37\x2b\xde\x93\xfc\xd1\xe1\x9f\x42\xbe\xf7\x84\xf8\x37\ \x6a\xdd\x7e\x1b\x4c\x4b\xff\x6b\x5f\x1c\xd5\x3e\xfd\x37\x1b\x7a\ \x0b\x63\xb0\x5d\xe0\x75\x65\x64\x99\x2d\xa2\x97\x91\x8c\xc0\x13\ \xc5\x9b\x3a\xef\x48\xe5\xda\xa7\x2e\x54\xe6\xaf\x9c\xa3\x3c\xfb\ \xee\xe3\xca\xf2\x8d\x2f\x29\xaf\x6e\x5c\xaa\x2c\x7e\xfb\x11\xa5\ \xff\xb5\x3b\x95\x9f\x3f\x3a\x4d\x39\x66\x70\x1c\xc6\x0f\xbc\xea\ \x79\xb3\xe5\x65\xa9\x9b\x0e\x1d\x8f\x7c\x5f\x53\x5e\x54\xbb\x72\ \x06\xc0\xca\x29\x8c\x32\x18\x80\x66\x0c\xb6\x3b\xbc\x44\x46\x3e\ \x9d\x5a\x72\x22\x79\x80\x27\x82\xf7\xad\xfb\x12\xca\xfd\x6f\x64\ \x94\x9d\xc3\x1f\x2a\x56\xaf\xf7\x3f\xd8\xa8\xcc\x7c\xf9\x8f\xca\ \xf1\x03\xe3\x31\x7e\xe0\x55\xcb\xdb\x4e\xb9\x0d\xf9\xbe\x26\xbc\ \x26\x4d\xcf\x75\x03\x10\xb1\x7a\x46\x10\x35\x18\x80\xd1\x18\x6c\ \xf1\xbc\xee\xde\x23\x46\x51\xe7\x2d\x24\x0f\xf0\x44\xf0\x52\xd9\ \xb8\x72\xeb\x8b\xbf\x56\x3e\x1c\xfe\x40\xe1\x7d\x0d\x0f\x0f\x2b\ \x5b\xb7\x6e\x55\xde\x7a\xef\x0d\xe5\x67\x43\x67\x23\x1e\xe0\x55\ \xcf\x63\x39\xae\xf0\x94\x00\xf4\x43\x28\x4f\xd7\x70\xdd\x00\x34\ \x98\xdd\xfa\x8f\x68\x0e\x41\x37\x00\x4d\x18\x6c\xf1\xbc\xae\xfe\ \x43\xfe\x8d\x95\xf3\x7d\x12\xc9\x03\x3c\x11\xbc\xaf\x0e\x1e\xaa\ \x3c\xfc\xd6\x5f\x14\x3b\x2f\x5d\xfc\xb7\x6c\xd9\x92\xbb\xfe\xf4\ \xd4\xb5\x88\x07\x78\x55\xf3\x28\xd7\x51\xce\x83\x7e\x08\xe7\xe9\ \x77\xef\x75\x03\xd0\x68\x26\xfe\xf5\x9a\x3b\x18\x69\x78\x5e\x80\ \xc1\x16\xcc\x4b\xa6\xe3\x13\xd8\xa2\x58\x87\xe4\x01\x9e\xa8\x4f\ \xfe\x8f\xac\xba\xaf\x6a\xf1\xa7\xbf\xd3\xbf\xdf\xf2\xc2\xb5\x88\ \x07\x78\x4e\xf0\xd6\x51\xee\x83\x7e\x08\xe5\xb5\x18\x0c\x40\xd4\ \x6a\xd3\x9f\xd1\x00\x34\x72\x57\x09\xc2\x60\x57\xc6\x63\x47\xfc\ \x58\x7b\xcd\x1f\xb2\x85\x30\x8c\xe4\x01\x9e\x28\xde\xf4\xa5\xbf\ \x77\x4c\xfc\xe9\xb5\x9b\xfd\xef\xc2\x45\x67\x22\x1e\xe0\x39\xc1\ \x1b\xa6\x1c\x48\xb9\x10\xfa\x21\x84\xa7\x1b\x80\x26\x53\x3d\xd7\ \xbe\xa9\xde\x70\x46\x10\xe2\x2f\x90\xa7\x3e\xef\xcf\x48\x33\x90\ \x3c\xc0\x13\xc9\x3b\xeb\xc1\x63\x95\x5d\xbb\x77\x39\x26\xfe\xfa\ \xeb\xed\xad\xab\x94\x63\xe7\x1e\x86\x78\x80\xe7\x14\x6f\x06\xe5\ \x44\xe8\x87\xe3\xbc\x16\xae\x3d\x7c\x06\x03\x10\x81\xf8\x8b\xe5\ \x4d\x99\xdb\x7a\x50\xd1\xf3\x7e\x24\x0f\xf0\x04\xf0\xec\xdc\xfa\ \xe7\x15\x7f\xfd\x75\xb3\xd5\xa3\x00\xc4\x03\x3c\x7b\xbc\xc5\xa9\ \xeb\x0f\x1f\x03\xfd\x70\x94\xd7\x6c\xa7\xdc\x6f\x3d\xc4\x5f\x2c\ \xaf\x33\x2d\x8f\x53\x1b\xf9\x60\xb1\x83\x27\x98\xf7\xcd\xbf\x4e\ \x50\x76\xef\x1e\x16\x22\xfe\xf4\x5a\xb3\xe5\x4d\x75\x7f\x01\xe2\ \x01\x9e\x63\xbc\x9e\xf8\x9a\xce\x3f\x1c\xfa\x9f\xd0\x0f\x97\x79\ \x95\x0a\x3f\x06\x9b\x9f\x97\xca\xc4\xa6\xb2\xc9\xbe\x0d\x8b\x1d\ \x3c\x37\x78\x37\x3d\xff\x4b\x61\xe2\xaf\xbf\xce\x7b\xe8\x24\xc4\ \x03\x3c\x67\x79\x3d\xf2\xf6\xe4\xf4\xf8\x29\xd0\x8f\xda\xf0\x30\ \x38\x4e\xf3\xd8\x06\x17\xf6\xa9\xff\x42\x2c\x76\xf0\xdc\xe4\xf1\ \xdc\xfe\xaf\x46\xfc\x4b\x3e\x06\x40\x3c\xc0\x73\x8c\x27\x5f\x68\ \xdc\x1c\x08\x3d\x82\xf8\xfb\x8e\xd7\x31\xd4\x11\x61\x13\xfd\xcf\ \x58\xec\xe0\xb9\xcd\x5b\xb9\xe9\x55\xa1\xe2\x4f\xaf\x7b\x57\xf6\ \x20\x1e\xe0\x09\xe3\xb1\xca\x81\xb7\x50\x0e\x85\x1e\x41\xfc\x7d\ \xc7\xa3\x66\x3e\x89\x6c\x6c\x3e\x16\x3b\x78\xb5\xe0\xad\xdf\xf1\ \xae\x50\xf1\xa7\x17\xdd\x65\x40\x3c\xc0\x13\xc9\xa3\x1c\x4a\xb9\ \x14\x7a\x04\xf1\xf7\x0d\xaf\x6b\x5e\xec\x40\x76\x0b\xeb\x69\x2c\ \x76\xf0\x6a\xc5\xdb\xf4\xc1\x06\xa1\xe2\x4f\xaf\x7f\xac\x59\x88\ \x78\x80\xe7\x02\x4f\x7e\x9a\x72\x2a\xf4\x08\xe2\xef\x79\x5e\x32\ \x1b\x1f\x93\xcc\xc4\x56\x62\xb1\x83\x57\x4b\x5e\x29\x03\xe0\xa4\ \xf8\xd3\x6b\xd1\xea\x07\x11\x0f\xf0\x5c\xe2\xb1\x9c\xca\x72\x2b\ \xf4\x08\xe2\xef\x5d\xf1\x1f\x8c\x1d\x5e\x54\xd6\x17\x8b\x1d\xbc\ \x1a\xf0\x0a\x0d\x80\xd3\xe2\x4f\xdf\x37\xb4\x62\x01\xe2\x01\x9e\ \x9b\xbc\x75\x94\x63\xa1\x47\xce\x88\x3f\xf7\xe9\x3f\x0c\xb6\x35\ \x8f\x6d\x58\x99\xc8\x26\xe8\x16\x2c\x76\xf0\xbc\xc0\x33\x1a\x00\ \x11\xe2\x4f\xdf\xbf\x70\xf9\x7c\xc4\x03\x3c\xb7\x79\x5b\x12\xfd\ \xf1\x4e\xe8\x51\x55\x3c\xbd\xf4\x3f\x77\x91\xa0\x66\x0c\xb6\xd9\ \x6d\x7f\xb9\x9b\x4d\xcc\x0f\xb1\x38\xc1\xf3\x0a\x4f\x37\x00\xa2\ \xc4\x9f\x38\x79\x06\x00\xf1\x00\xcf\x3d\xde\x87\x89\x3b\xda\x4e\ \x83\x1e\x55\x2c\xfe\x11\x2e\x03\x60\xe8\x27\xdc\x82\xc1\x2e\x53\ \xe0\x27\x2b\x9d\x51\xd4\xd0\x07\x8b\x1d\xbc\x1a\xf3\xc8\x00\x88\ \x14\xff\x3c\x03\x80\x78\x80\xe7\x36\xaf\x47\x1e\x4e\xde\xd9\x7a\ \x2e\xf4\xc8\xb6\xf8\xeb\xfd\x7e\xcc\x0d\x80\xf6\xc5\x4d\xda\xa7\ \xff\x16\x88\x7f\x89\xdb\xfe\x59\xe9\x7c\x2c\x4e\xf0\xbc\xc8\xdb\ \xb8\x7d\xbd\x50\xf1\xa7\x4b\xdd\x03\x80\x78\x80\x57\x43\x1e\xeb\ \x26\xf8\x03\xe8\x11\xb7\xf8\x37\x6a\xdd\x7e\x1b\x4c\x4b\xff\x6b\ \x5f\x1c\xd5\x3e\xfd\x37\x1b\x7a\x0b\x43\xfc\x73\xb7\xfd\xa5\x9f\ \x62\x71\x82\xe7\x55\xde\xda\x0d\xab\x85\x8a\x3f\xfd\x5d\x3d\x05\ \x80\x78\x80\x57\x6b\x1e\xcb\xc5\x10\x7f\x4b\x5e\x54\xbb\x72\x06\ \xc0\xca\x29\x8c\x32\x18\x80\x66\x88\xbf\xf6\x62\xe5\x29\x13\x99\ \xd8\xe5\x58\x9c\xe0\x79\x99\xb7\x66\xfd\x5b\x42\xc5\x9f\xfe\x5d\ \xad\x03\x80\x78\x80\xe7\x05\x5e\x5a\xba\x8c\xa7\x74\x70\x48\xc5\ \xbf\x49\xd3\x73\xdd\x00\x44\xac\x9e\x11\x44\x0d\x06\x60\x34\xc4\ \xdf\x28\xfe\xd2\x95\x58\x9c\xe0\x79\x9d\xa7\x1b\x00\x51\xe2\x9f\ \x2b\x04\x84\x78\x80\xe7\x11\x1e\xe5\x66\x33\x13\x10\x52\xf1\xd7\ \x35\x5c\x37\x00\x0d\x66\xb7\xfe\x23\x9a\x43\xd0\x0d\x40\x13\xc4\ \x3f\xef\x93\xff\x35\x58\x9c\xe0\xf9\x81\x47\x06\x40\xa4\xf8\xdb\ \x36\x00\x88\x2f\x78\xae\xf0\x62\x57\x97\x32\x01\x21\x15\x7f\xfd\ \xee\xbd\x6e\x00\x1a\xcd\xc4\xbf\x5e\x73\x07\x23\x0d\xcf\x0b\x20\ \xfe\x10\x7f\xf0\x7c\xc8\xa3\x3d\x00\x22\xc5\xdf\x96\x01\x40\x3c\ \xc0\x73\x91\x47\xb9\xda\x68\x02\x42\x5c\xc7\xa6\xc5\x60\x00\xa2\ \x56\x9b\xfe\x8c\x06\xa0\x91\xbb\x4a\x10\x6e\xfb\x63\x71\x82\xe7\ \x39\x1e\x9d\x02\x10\x29\xfe\xdc\x06\x00\xf1\x00\xaf\x06\x3c\xfd\ \x71\x40\xc8\x8b\xd8\xe9\x06\xa0\xc9\x54\xcf\xb5\x6f\xaa\x37\x9c\ \x11\x84\xf8\xeb\xbb\xfd\xd9\xe6\x12\x2c\x4e\xf0\xfc\xc6\x2b\xd7\ \x0c\xc8\xc9\x16\xc1\x96\x06\x00\xf1\x00\xaf\x96\xbc\x7e\xe9\xf2\ \x90\x57\x0c\x6c\xe1\xda\xc3\x67\x30\x00\x11\x88\x3f\x8e\xfa\x81\ \xe7\x7f\x9e\x5d\x03\x50\x49\xd1\x20\x53\x03\x80\x78\x80\xe7\x05\ \xde\x8c\xf8\xe5\x21\x2e\x62\xd7\x6c\xa7\xdc\x6f\x3d\xc4\x1f\x45\ \x7e\xc0\x0b\x06\xcf\x8e\x01\xa8\xb4\x62\x60\x59\x03\x80\x78\x80\ \xe7\x21\x5e\xe2\xee\xd6\x0b\x51\xc7\xc6\xa2\x4a\x50\x5d\x85\xaf\ \x00\x97\xf7\xc5\x62\x02\xcf\xb7\x3c\x5e\x03\x50\x4d\xb9\xe0\x92\ \x06\x00\xf1\x00\xcf\x83\xbc\x54\x5a\x3a\x13\xfa\xe6\xf0\x2b\xc0\ \x8d\x7d\x50\xdb\x1f\x3c\x5f\xf3\x78\x0c\x40\xb5\xbd\x02\x8a\x0c\ \x00\xe2\x01\x9e\x77\x79\xc3\x94\xdb\x21\xfe\x10\x7f\xab\x96\xbe\ \xe8\xea\x07\x9e\xef\x79\x56\x06\xc0\x89\x46\x41\x79\x06\x00\xf1\ \x00\xcf\xfb\xbc\x0f\x29\xc7\x43\xfc\x21\xfe\xc5\x9f\xfc\x07\x63\ \x87\x53\xaf\x69\x2c\x26\xf0\x82\xc0\x33\x33\x00\x4e\x75\x09\xcc\ \x19\x00\xc4\x03\x3c\xff\xf0\xb6\x50\xae\x87\xf8\x43\xfc\x0d\xb7\ \xfd\xe3\x63\xd8\xc4\x58\x87\xc5\x04\x5e\x50\x78\xe5\x0c\x80\x93\ \x2d\x82\x55\x03\x80\x78\x80\xe7\x3f\xde\x3a\xca\xf9\x10\x7f\x88\ \x7f\x5d\xd7\xbc\xd8\x81\xac\x7c\xe4\x4a\x2c\x26\xf0\x82\xc4\x2b\ \x65\x00\x9c\x14\x7f\x7a\xa9\xdd\x00\x11\x0f\xf0\x7c\xc9\x8b\xad\ \xa4\xdc\x0f\xf1\x0f\xb1\xf8\x1f\x93\x1d\xf3\x2f\xc9\x8c\xfc\x34\ \x16\x13\x78\x41\xe3\x15\x1a\x00\xa7\xc5\x9f\xbe\x6f\x68\xc5\x02\ \xc4\x03\x3c\x1f\xf3\xe4\xa7\x49\x03\xc2\x2a\xfe\xdc\xa7\xff\x82\ \x38\x38\x1d\x43\x1d\x91\x44\x36\x36\x1f\x8b\x09\xbc\x20\xf2\x8c\ \x06\x40\x84\xf8\xd3\xf7\x2f\x5c\x3e\x1f\xf1\x00\xcf\xd7\x3c\xd2\ \x80\x2f\xdf\xa8\x96\xbf\x0f\x53\xc5\x40\xbd\xf4\x3f\x77\x91\xa0\ \xe6\x40\x0d\x0e\xab\x11\xcd\x82\xff\x67\x2c\x26\xf0\x82\xca\xd3\ \x0d\x80\x28\xf1\x27\x4e\x9e\x01\x40\x3c\xc0\xf3\x29\x2f\x31\xab\ \xf5\x8e\x8e\x63\x8f\xda\x2f\x44\xe2\x1f\xe1\x32\x00\x86\x7e\xc2\ \x2d\x41\x1a\x1c\x76\xeb\xe7\x42\x4c\x7e\xf0\x82\xcc\x23\x03\x20\ \x52\xfc\xf3\x0c\x00\xe2\x01\x9e\xdf\x79\x77\xb7\x5e\x16\x12\xf1\ \xd7\xfb\xfd\x98\x1b\x00\xed\x8b\x9b\xb4\x4f\xff\x2d\x41\x19\x9c\ \x54\x26\x36\x15\x93\x1f\xbc\xa0\xf3\xa8\x1b\xa0\x48\xf1\xa7\x4b\ \xdd\x03\x80\x78\x80\x17\x14\xde\xf4\xf8\x29\x01\x17\xff\x46\xad\ \xdb\x6f\x83\x69\xe9\x7f\xed\x8b\xa3\xda\xa7\xff\x66\x43\x6f\x61\ \x5f\x0f\x4e\x67\x5a\x1e\xc7\x82\xbf\x0d\x93\x1f\xbc\xa0\xf3\xd6\ \x6e\x58\x2d\x54\xfc\xe9\xef\xea\x29\x00\xc4\x03\xbc\xe0\xf0\xb6\ \x91\x46\x04\x74\x83\x7c\x54\xbb\x72\x06\xc0\xca\x29\x8c\x32\x18\ \x80\x66\xbf\x8b\xff\x94\xb9\xad\x07\xb1\x5b\xff\xab\x30\xf9\xc1\ \x0b\x03\x6f\xcd\xfa\xb7\x84\x8a\x3f\xfd\xbb\x65\x3b\x60\xc4\x03\ \x3c\xdf\xf1\xe4\x55\xa4\x15\x01\x13\xff\x26\x4d\xcf\x75\x03\x10\ \xb1\x7a\x46\x10\x35\x18\x80\xd1\x7e\x17\xff\xee\xde\x23\x46\xa5\ \x32\xd2\x93\x98\xfc\xe0\x85\x85\xa7\x1b\x00\x51\xe2\x6f\xd9\x0e\ \x18\xf1\x00\xcf\xa7\x3c\xd2\x0a\xd2\x8c\x80\x88\xbf\xae\xe1\xba\ \x01\x68\x30\xbb\xf5\x1f\xd1\x1c\x82\x6e\x00\x9a\x7c\xff\x4c\x64\ \xcf\x8e\xff\x19\x98\xfc\xe0\x85\x89\x47\x06\x40\xa4\xf8\xdb\x36\ \x00\x88\x2f\x78\xfe\xe2\xcd\x20\xed\xf0\xb9\xf8\xeb\x77\xef\x75\ \x03\xd0\x68\x26\xfe\xf5\x9a\x3b\x18\x69\x78\x5e\xe0\xfb\x0d\x11\ \x89\xb4\xf4\x43\x4c\x7e\xf0\xc2\xc6\xa3\x3d\x00\x22\xc5\xdf\x96\ \x01\x40\x3c\xc0\xf3\x23\x2f\x2b\x5f\xe0\xf3\xba\x38\x2d\x06\x03\ \x10\xb5\xda\xf4\x67\x34\x00\x8d\xdc\x55\x82\x3c\x3c\x38\xc9\x74\ \x7c\x42\x51\x6b\x5f\x4c\x7e\xf0\x42\xc0\xa3\x53\x00\x22\xc5\x9f\ \xdb\x00\x20\x1e\xe0\xf9\x97\x37\x4c\x1a\xe2\xe3\xa2\x78\xba\x01\ \x68\x32\xd5\x73\xed\x9b\xea\x0d\x67\x04\x7d\x2f\xfe\x5d\xfd\x87\ \xfc\x5b\x51\x83\x1f\x4c\x7e\xf0\x42\xc2\xb3\x6a\x07\xec\x44\xa3\ \x20\x4b\x03\x80\x78\x80\xe7\x7f\xde\x3a\xd2\x12\x9f\x56\xc4\x6d\ \xe1\xda\xc3\x67\x30\x00\x91\x20\x88\x7f\xc9\x4d\x7f\x98\xfc\xe0\ \x85\x88\x67\xd7\x00\x54\x52\x34\xc8\xd4\x00\x20\x1e\xe0\x05\x84\ \x47\x5a\xf2\xe5\x99\x63\x9a\x7c\x58\x2e\xb8\xd9\x4e\xb9\xdf\xfa\ \x20\x88\xbf\x7a\xeb\x3f\x2b\xdd\x8a\xc9\x0f\x5e\x98\x79\x76\x0c\ \x40\xa5\x15\x03\xcb\x1a\x00\xc4\x03\xbc\xa0\xf1\x66\xc7\xef\x0c\ \x6c\xaf\x80\x4a\x85\xdf\x8b\x6f\x26\x91\x91\x4f\xc7\xe4\x07\x2f\ \xec\x3c\x5e\x03\x50\x4d\xb9\xe0\x92\x06\x00\xf1\x00\x2f\xa0\xbc\ \xc4\xf4\xb6\x69\x68\x11\xec\xe1\x37\xd3\x95\x91\x65\x16\xb4\xed\ \x98\xac\xe0\x85\x9d\xc7\x63\x00\xaa\xed\x15\x50\x64\x00\x10\x0f\ \xf0\x82\xcc\xeb\x91\xb7\xa7\x6e\x3a\x74\x3c\xc4\xdf\x83\x6f\x86\ \xfa\x3a\xb3\xa0\xbd\x8c\xc9\x0a\x1e\x78\xd6\x06\xc0\x89\x46\x41\ \x79\x06\x00\xf1\x00\x2f\x1c\xbc\x97\x49\x6b\x20\xfe\x5e\x7a\x33\ \x54\xec\x27\x2b\xdd\x8d\xc9\x0a\x1e\x78\xd6\x06\xc0\xa9\x2e\x81\ \x39\x03\x80\x78\x80\x17\x2e\xde\x5d\x66\x45\x82\x20\xfe\x2e\xf3\ \x52\x59\xe9\x0c\x4c\x56\xf0\xc0\xb3\x36\x00\x4e\xb6\x08\x56\x0d\ \x00\xe2\x01\x5e\x18\xcb\x05\x33\xcd\x81\xf8\x7b\xe0\xcd\x24\xb3\ \xf1\x31\x2c\x20\x5b\x31\x59\xc1\x03\xcf\xdc\x00\x38\x29\xfe\xf4\ \x52\xbb\x01\x22\x1e\xe0\x85\x93\xb7\x95\xb4\x07\xe2\x5f\xc3\x37\ \xd3\x31\x74\x70\x94\xdd\xfa\x7f\x16\x93\x15\x3c\xf0\xcc\x0d\x80\ \xd3\xe2\x4f\xdf\x37\xb4\x62\x01\xe2\x01\x5e\x78\x79\x4c\x7b\x48\ \x83\xfc\x2a\xfe\xdc\xa7\xff\xbc\xfa\x66\x58\xeb\xc6\x1b\x30\x59\ \xc1\x03\xcf\xdc\x00\x88\x10\x7f\xfa\xfe\x85\xcb\xe7\x23\x1e\xe0\ \x85\x9c\x27\xdf\xe0\xc3\x5e\x01\x7a\xe9\x7f\xee\x22\x41\xcd\x5e\ \x7b\x33\x9d\x59\x69\x12\x26\x2b\x78\xe0\x99\x1b\x00\x51\xe2\x4f\ \x9c\x3c\x03\x80\x78\x80\x17\x52\x1e\x69\x91\xcf\xc4\x3f\xc2\x65\ \x00\x0c\xfd\x84\x5b\xbc\xf4\x66\x12\xbd\xb1\x8f\x30\xe7\xb5\x0a\ \x93\x15\x3c\xf0\xca\x1b\x00\x91\xe2\x9f\x67\x00\x10\x0f\xf0\x42\ \xcd\x93\x57\x91\x26\xf9\x44\xfc\xf5\x7e\x3f\xe6\x06\x40\xfb\xe2\ \x26\xed\xd3\x7f\x8b\x67\xde\x0c\x3b\x7e\x91\xc8\x48\xb3\x31\x59\ \xc1\x03\xaf\xfc\x45\xdd\x00\x45\x8a\x3f\x5d\xea\x1e\x00\xc4\x03\ \x3c\xf0\xe8\xfb\x66\xfb\x40\xfc\x1b\xb5\x6e\xbf\x0d\xa6\xa5\xff\ \xb5\x2f\x8e\x6a\x9f\xfe\x9b\x0d\xbd\x85\x6b\xfe\x66\x92\xe9\xd8\ \xd7\x30\x59\xc1\x03\xcf\x9c\xb7\x76\xc3\x6a\xa1\xe2\x4f\x7f\x57\ \x4f\x01\x20\x1e\xe0\x81\xa7\x95\x0a\x8e\x9f\xe1\xe1\x5e\x01\x51\ \xed\xca\x19\x00\x2b\xa7\x30\xca\x60\x00\x9a\xbd\xf0\x66\x26\x65\ \xc7\x7c\x92\x0d\xf6\x7a\x4c\x56\xf0\xc0\x33\xe7\xad\x59\xff\x96\ \x50\xf1\xa7\x7f\xb7\x6c\x07\x8c\x78\x80\x17\x26\x5e\x8f\xbc\x61\ \xd2\xd5\xed\x5f\xf0\xa0\xf8\x37\x69\x7a\xae\x1b\x80\x88\xd5\x33\ \x82\xa8\xc1\x00\x8c\xf6\xc4\x9b\x61\xb7\xfe\x59\x5b\xc6\x7b\x31\ \x59\xc1\x03\xcf\x9a\xa7\x1b\x00\x51\xe2\x6f\xd9\x0e\x18\xf1\x00\ \x2f\x84\xbc\x54\x8f\xbc\xa0\xf5\x52\xa9\xde\x43\xe2\xaf\x6b\xb8\ \x6e\x00\x1a\xcc\x6e\xfd\x47\x34\x87\xa0\x1b\x80\x26\xaf\x38\x99\ \x64\x3f\xeb\xf2\x87\xc9\x0a\x1e\x78\x5c\x3c\x32\x00\x22\xc5\xdf\ \xb6\x01\x40\x7c\xc1\x0b\x0b\x2f\x1b\x3b\xcd\x23\xe2\xaf\xdf\xbd\ \xd7\x0d\x40\xa3\x99\xf8\xd7\x6b\xee\x60\xa4\xe1\x79\x81\x27\xc4\ \x3f\x31\x33\x76\x50\xa2\x57\xde\x88\xc9\x05\x1e\x78\x7c\x3c\xda\ \x03\x20\x52\xfc\x6d\x19\x00\xc4\x03\xbc\x10\xf1\xd8\x26\xf5\x0d\ \x89\xfe\x43\x3e\xe1\x81\x22\x7b\x2d\x06\x03\x10\xb5\xda\xf4\x67\ \x34\x00\x8d\xdc\x55\x82\x04\xbf\x19\xba\x9d\x92\x9c\x25\xdf\x8b\ \xc9\x05\x1e\x78\xfc\x3c\x3a\x05\x20\x52\xfc\xb9\x0d\x00\xe2\x01\ \x5e\x08\x79\xcc\x04\xa4\x79\x1a\x06\x09\x3e\x3a\xa8\x1b\x80\x26\ \x53\x3d\xd7\xbe\xa9\xde\x70\x46\x70\x84\x57\x9e\x61\x24\xa6\xb7\ \x9e\x86\xc9\x05\x1e\x78\xf6\x78\x56\xed\x80\x9d\x68\x14\x64\x69\ \x00\x10\x0f\xf0\x42\xcc\x4b\xa4\xa5\x93\x6a\x5c\x61\xb7\x85\x6b\ \x0f\x9f\xc1\x00\x44\xbc\x24\xfe\xc9\xcb\xff\xe3\xff\xb0\x9d\x95\ \xef\x60\x72\x81\x07\x9e\x3d\x9e\x5d\x03\x50\x49\xd1\x20\x53\x03\ \x80\x78\x80\x07\xde\xdb\x93\xef\x95\xf7\xaf\x61\x79\xfd\x66\x3b\ \xe5\x7e\xeb\xbd\x24\xfe\xf4\xfd\xc9\x59\xf1\xbb\x30\xb9\xc0\x03\ \xcf\x3e\xcf\x8e\x01\xa8\xb4\x62\x60\x59\x03\x80\x78\x80\x07\x9e\ \xde\x30\xe8\x56\xcf\xf7\x0a\xa8\x54\xf8\x45\xbe\x99\xd4\x2d\xed\ \x5d\x98\x5c\xe0\x81\x57\x19\x8f\xd7\x00\x54\x53\x2e\xb8\xa4\x01\ \x40\x3c\xc0\x03\x2f\xef\xea\xca\xca\x47\xa3\x45\xb0\x1d\xf1\x3f\ \xed\xc8\x03\x12\xb3\xe5\x97\x31\xb9\xc0\x03\xaf\x32\x1e\x8f\x01\ \xa8\xb6\x57\x40\x91\x01\x40\x3c\xc0\x03\xaf\x78\x2f\x40\x46\x5a\ \xda\xdd\x1b\x1b\x09\xf1\xe7\xe4\x25\xee\x8e\x5f\x81\xc9\x05\x1e\ \x78\x95\xf3\xac\x0c\x80\x13\x8d\x82\xf2\x0c\x00\xe2\x01\x1e\x78\ \x66\xbc\x8b\x20\xfe\x1c\xbc\x49\x37\x1c\x16\x67\x1b\xff\xb6\x63\ \x72\x81\x07\x5e\xe5\x3c\x33\x03\xe0\x54\x97\xc0\x9c\x01\x40\x3c\ \xc0\x03\xcf\x8a\xb7\x9d\xb4\x0d\xe2\x6f\xc1\x4b\xce\x6a\x9d\x8f\ \xc9\x05\x1e\x78\xd5\xf1\xca\x19\x00\x27\x5b\x04\xab\x06\x00\xf1\ \x00\x0f\x3c\x3e\xde\x3d\xf2\x3c\x88\xbf\x09\x2f\x71\x5b\x5b\x37\ \x26\x17\x78\xe0\x55\xcf\x2b\x65\x00\x9c\x14\x7f\x7a\xa9\xdd\x00\ \x11\x0f\xf0\xc0\xe3\xe6\x25\x6e\x6f\x9b\x0a\xf1\x2f\xc1\xeb\x3c\ \x6b\xfc\xc7\xd8\xad\xff\xe5\x98\x5c\xe0\x81\x57\x3d\xaf\xd0\x00\ \x38\x2d\xfe\xf4\x7d\x43\x2b\x16\x20\x1e\xe0\x81\x67\x83\x97\x1a\ \x90\x96\xa5\xe6\x7f\xae\xd1\x0b\xe2\xcf\x7d\xfa\xcf\x8d\xdd\x8b\ \xc9\x19\xad\x97\x62\x72\x81\x07\x9e\x33\x3c\xa3\x01\x10\x21\xfe\ \xf4\xfd\x0b\x97\xcf\x47\x3c\xc0\x03\xcf\x36\x4f\xbe\xb0\xc6\x1f\ \xbe\xf5\xd2\xff\xdc\x45\x82\x9a\x85\x8a\xff\x75\xe3\x3e\xc7\x06\ \x67\x33\x26\x17\x78\xe0\x39\xc3\xd3\x0d\x80\x28\xf1\x27\x4e\x9e\ \x01\x40\x3c\xc0\x03\x8f\x97\xb7\x79\x42\x56\xfa\x78\x0d\xc5\x3f\ \xc2\x65\x00\x0c\xfd\x84\x5b\x44\xee\x5e\x64\x83\x73\x1b\x26\x17\ \x78\xe0\x39\xc7\x23\x03\x20\x52\xfc\xf3\x0c\x00\xe2\x01\x1e\x78\ \xf6\x78\x25\x2a\x04\xba\x24\xfe\x7a\xbf\x1f\x73\x03\xa0\x7d\x71\ \x93\xf6\xe9\xbf\x45\x94\xf8\xa7\xfa\x62\xe3\xd8\x80\xec\xc6\xe4\ \x02\x0f\x3c\xe7\x78\xd4\x0d\x50\xa4\xf8\xd3\xa5\xee\x01\x40\x3c\ \xc0\x03\xaf\x12\xde\xee\x54\x76\x6c\xbb\xcb\xe2\xdf\xa8\x75\xfb\ \x6d\x30\x2d\xfd\xaf\x7d\x71\x54\xfb\xf4\xdf\x6c\xe8\x2d\xec\xa8\ \xf8\xab\xad\x7e\x33\xd2\x42\x4c\x06\xf0\xc0\x73\x96\xb7\x76\xc3\ \x6a\xa1\xe2\x4f\x7f\x57\x4f\x01\x20\x1e\xe0\x81\x57\x29\x6f\x61\ \xa9\x96\xc1\x82\xf6\xdc\x45\xb5\x2b\x67\x00\xac\x9c\xc2\x28\x83\ \x01\x68\x16\x71\x74\x21\x91\x95\x26\x63\x32\x80\x07\x9e\xf3\xbc\ \x35\xeb\xdf\x12\x2a\xfe\xf4\xef\x96\xed\x80\x11\x0f\xf0\xc0\x33\ \x2f\x13\xcc\x34\xd0\x05\xf1\x6f\xd2\xf4\x5c\x37\x00\x11\xab\x67\ \x04\x51\x83\x01\x18\x2d\x42\xfc\xbb\x7b\xbb\xe9\xd3\xff\x12\x4c\ \x06\xf0\xc0\x73\x9e\xa7\x1b\x00\x51\xe2\x6f\xd9\x0e\x18\xf1\x00\ \x0f\x3c\x9e\x6b\x09\x69\xa1\x40\xf1\xd7\x35\x5c\x37\x00\x0d\x66\ \xb7\xfe\x23\x9a\x43\xd0\x0d\x40\x93\xa8\xa2\x05\x6c\x90\xce\xc4\ \x64\x00\x0f\x3c\x31\x3c\x32\x00\x22\xc5\xdf\xb6\x01\x40\x7c\xc1\ \x03\xaf\xe4\x95\xca\x4a\x67\x08\x12\x7f\xfd\xee\xbd\x6e\x00\x1a\ \xcd\xc4\xbf\x5e\x73\x07\x23\x0d\xcf\x0b\x84\x88\x7f\x77\xef\x11\ \xa3\xd8\x1b\x7f\x13\x93\x01\x3c\xf0\xc4\xf0\x68\x0f\x80\x48\xf1\ \xb7\x65\x00\x10\x0f\xf0\xc0\x33\xe3\xbd\x39\xf9\xdc\x2f\x7d\x4c\ \xc0\x51\xfb\x16\x83\x01\x88\x5a\x6d\xfa\x33\x1a\x80\x46\xee\x2a\ \x41\x15\x6c\x60\x60\x47\x20\x7e\x8c\xc9\x00\x1e\x78\xe2\x78\x74\ \x0a\x40\xa4\xf8\x73\x1b\x00\xc4\x03\x3c\xf0\xac\x79\x33\xe2\x97\ \x08\x38\x6a\xaf\x1b\x80\x26\x53\x3d\xd7\xbe\xa9\xde\x70\x46\x50\ \x98\xf8\x4f\xec\x1d\xb7\x2f\x7b\xe3\xef\x61\x32\x80\x07\x9e\x38\ \x9e\x55\x3b\x60\x27\x1a\x05\x59\x1a\x00\xc4\x03\x3c\xf0\xf8\x78\ \x3d\xf2\xfa\x89\x3f\x3e\xf2\xd3\x0e\x9f\xb6\x6b\xe1\xda\xc3\x67\ \x30\x00\x11\x91\xe2\x4f\xaf\x44\x26\x76\x39\x26\x03\x78\xe0\x89\ \xe5\xd9\x35\x00\x95\x14\x0d\x32\x35\x00\x88\x07\x78\xe0\xd9\x6b\ \x14\x34\x53\xbe\xc6\xe1\xc7\xee\xcd\x76\xca\xfd\xd6\x8b\x16\xff\ \xaf\xce\xfd\xfc\xbf\x52\x19\x44\x4c\x06\xf0\xc0\x13\xcb\xb3\x63\ \x00\x2a\xad\x18\x58\xd6\x00\x20\x1e\xe0\x81\x57\x09\x6f\x33\x69\ \xa4\xeb\x8d\x82\x2a\x15\x7e\xbb\x3f\x9c\xbd\xc1\x5f\x62\x32\x80\ \x07\x9e\x78\x1e\xaf\x01\xa8\xa6\x5c\x70\x49\x03\x80\x78\x80\x07\ \x5e\xc5\xbc\x54\x46\xba\x2a\x90\x2d\x82\x53\xbd\xed\x07\x58\x7e\ \xfa\xc7\x64\x00\x0f\x3c\x47\x78\x3c\x06\xa0\xda\x5e\x01\x45\x06\ \x00\xf1\x00\x0f\xbc\xaa\x1b\x05\x91\x56\x06\x4a\xfc\xb5\x67\xff\ \xd7\x60\x32\x80\x07\x9e\x3b\x3c\x2b\x03\xe0\x44\xa3\xa0\x3c\x03\ \x80\x78\x80\x07\x9e\x23\x3c\xd2\xca\x40\x89\xff\x84\x81\x2f\x7c\ \xd4\xf4\xd3\x3f\x26\x03\x78\xe0\x39\xca\x33\x33\x00\x4e\x75\x09\ \xcc\x19\x00\xc4\x03\x3c\xf0\x9c\xe4\x6d\x26\xcd\x0c\x84\xf8\xef\ \x79\xf6\x2f\xff\x02\x93\x01\x3c\xf0\xdc\xe3\x95\x33\x00\x4e\xb6\ \x08\x56\x0d\x00\xe2\x01\x1e\x78\x8e\xf3\x52\xd9\xd8\x15\x81\x10\ \xff\xd4\xfc\xcf\xb5\x24\x32\xd2\x06\x4c\x06\xf0\xc0\x73\x8f\x57\ \xca\x00\x38\x29\xfe\xf4\x52\xbb\x01\x22\x1e\xe0\x81\xe7\x38\x8f\ \x34\x93\xb4\xd3\xd7\xe2\xaf\x3e\xfb\x4f\xc7\x7e\x82\xc9\x00\x1e\ \x78\xee\xf2\x0a\x0d\x80\xd3\xe2\x4f\xdf\x37\xb4\x62\x01\xe2\x01\ \x1e\x78\x82\x78\xa4\x9d\x22\xc5\x9f\xfb\xf4\x5f\xa5\x3f\x5c\xab\ \xf9\xbf\x06\x93\x01\x3c\xf0\xdc\xe5\x19\x0d\x80\x08\xf1\xa7\xef\ \x5f\xb8\x7c\x3e\xe2\x01\x1e\x78\xe2\x78\xab\xd9\x5d\x80\x46\x01\ \x8d\x82\xf4\xd2\xff\xdc\x45\x82\x9a\x2b\xf9\xe1\xa9\xb4\x7c\x16\ \x26\x03\x78\xe0\xb9\xcf\xd3\x0d\x80\x28\xf1\x27\x4e\x9e\x01\x40\ \x3c\xc0\x03\xcf\x71\x5e\x2a\x1d\x3b\x4b\x80\xf8\x47\xb8\x0c\x80\ \xa1\x9f\x70\x8b\xdd\x1f\x4e\x3d\x8e\x53\x69\x69\x19\x26\x03\x78\ \xe0\xb9\xcf\x23\x03\x20\x52\xfc\xf3\x0c\x00\xe2\x01\x1e\x78\x42\ \x78\xa9\xd9\xf2\x6b\x89\xa9\x13\x3e\xe2\xa0\xf8\xeb\xfd\x7e\xcc\ \x0d\x80\xf6\xc5\x4d\xda\xa7\xff\x16\xbb\x3f\x9c\x3d\xbf\x38\x11\ \x93\x01\x3c\xf0\x6a\xc3\xa3\x6e\x80\x22\xc5\x9f\x2e\x75\x0f\x00\ \xe2\x01\x1e\x78\x42\x79\x89\xdb\xe2\xa7\x38\x24\xfe\x8d\x5a\xb7\ \xdf\x06\xd3\xd2\xff\xda\x17\x47\xb5\x4f\xff\xcd\x86\xde\xc2\xdc\ \x3f\x9c\xbd\x89\x45\x08\x1e\x78\xe0\xd5\x86\xb7\x76\xc3\x6a\xa1\ \xe2\x4f\x7f\x57\x4f\x01\x20\x1e\xe0\x81\x27\x96\x37\x3b\xfe\x98\ \x03\x5d\x02\xa3\xda\x95\x33\x00\x56\x4e\x61\x94\xc1\x00\x34\xdb\ \xf9\xe1\xa9\xc1\xf8\x78\x04\x0f\x3c\xf0\x6a\xc7\x5b\xb3\xfe\x2d\ \xa1\xe2\x4f\xff\x6e\xd9\x0e\x18\xf1\x00\x0f\x3c\x47\x78\x5d\x7d\ \xb1\x23\xaa\x10\xff\x26\x4d\xcf\x75\x03\x10\xb1\x7a\x46\x10\x35\ \x18\x80\xd1\x76\x9d\x47\x32\x2b\xf5\x20\x78\xe0\x81\x57\x3b\x9e\ \x6e\x00\x44\x89\xbf\x65\x3b\x60\xc4\x03\x3c\xf0\x9c\xe3\x31\x4d\ \xad\x50\xfc\x75\x0d\xd7\x0d\x40\x83\xd9\xad\xff\x88\xe6\x10\x74\ \x03\xd0\x64\x57\xfc\xa7\xcc\x6d\x3d\x88\xbd\x99\x9d\x08\x1e\x78\ \xe0\xd5\x8e\x47\x06\x40\xa4\xf8\xdb\x36\x00\x88\x2f\x78\xe0\x55\ \xc3\xdb\x49\xda\x6a\x53\xfc\xf5\xbb\xf7\xba\x01\x68\x34\x13\xff\ \x7a\xcd\x1d\x8c\x34\x3c\x2f\xb0\xfd\xcc\x81\xda\x19\x22\x78\xe0\ \x81\x57\x5b\x1e\xed\x01\x10\x29\xfe\xb6\x0c\x00\xe2\x01\x1e\x78\ \x55\xf3\x58\x75\xc0\x2b\x6d\xd6\xed\x69\x31\x18\x80\xa8\xd5\xa6\ \x3f\xa3\x01\x68\xe4\xae\x12\x64\x78\x75\x0c\x1d\x1c\x65\xbf\xe8\ \x3b\x08\x1e\x78\xe0\xd5\x96\x47\xa7\x00\x44\x8a\x3f\xb7\x01\x40\ \x3c\xc0\x03\xcf\x19\x5e\x56\x7a\x87\x0a\x03\xd9\x28\xda\xa7\x1b\ \x80\x26\x53\x3d\xd7\xbe\xa9\xde\x70\x46\x70\x44\x25\x1b\x0e\x12\ \xfd\xd2\xa9\x08\x1e\x78\xe0\xd5\x9e\x67\xd5\x0e\xd8\x89\x46\x41\ \x96\x06\x00\xf1\x00\x0f\x3c\x47\x79\x89\xb4\x74\x8a\x8d\x8a\xbd\ \x2d\x5c\x7b\xf8\x0c\x06\x20\x52\xa9\xf8\x13\x23\xd9\x23\x3f\x81\ \xe0\x81\x07\x5e\xed\x79\x76\x0d\x40\x25\x45\x83\x4c\x0d\x00\xe2\ \x01\x1e\x78\x22\x78\x8f\xda\x28\xd7\xdf\x6c\xa7\xdc\x6f\x7d\x55\ \xe2\xff\xa7\xd6\xa3\x10\x3c\xf0\xc0\xf3\x06\xcf\x8e\x01\xa8\xb4\ \x62\x60\x59\x03\x80\x78\x80\x07\x9e\x30\x5e\x2a\x3b\xb6\xdd\xd1\ \x2e\x81\x95\x0a\xbf\xf1\x87\x27\x67\xc9\x77\x20\x78\xe0\x81\xe7\ \x0d\x1e\xaf\x01\xa8\xa6\x5c\x70\x49\x03\x80\x78\x80\x07\x9e\x58\ \x5e\x36\x76\xb3\xa7\x5a\x04\x7f\xe5\xfc\x2f\x1e\xc4\x6e\xff\x6f\ \x41\xf0\xc0\x03\xcf\x1b\x3c\x1e\x03\x50\x6d\xaf\x80\x22\x03\x80\ \x78\x80\x07\x9e\x1b\xbc\xcd\x1d\xbd\xb1\x66\x4f\x88\x3f\xfd\xd0\ \xc4\xf4\xd6\xef\x21\x78\xe2\x79\x5f\x5b\xd0\xa1\xfc\x74\xd1\xb7\ \x95\x3f\x3c\x77\x95\x32\xe7\xd5\xdb\x95\x07\xdf\x98\xab\x2c\x5e\ \xfb\x88\xf2\xc2\xba\xa7\x94\x97\xde\x7b\x4e\x79\x7e\xf5\x53\xca\ \x73\xab\x9e\xcc\x5d\xf4\xf7\x57\xd6\xbf\xa8\x2c\xdb\xb0\xc4\xf6\ \x45\xdf\x17\x64\xde\x8b\x6c\xcc\x86\xde\x9c\xa7\xdc\xfc\xc2\xb5\ \xca\x99\x0f\x4c\x0e\xdc\x7c\xb1\x32\x00\x4e\x34\x0a\xca\x33\x00\ \x01\x18\xbf\x29\x83\x6d\xca\x45\x8b\xbe\xa3\xf4\x2e\xbb\x4d\x79\ \x7c\xed\xc3\xca\xcb\xeb\x9f\x0b\xed\xfa\x30\xe3\x3d\xf3\xd6\xe3\ \xca\x13\x6f\x2c\x52\xfe\xbe\xf2\x01\xe5\x81\x7f\x0e\xaa\xb9\x88\ \x72\x12\xe5\x26\xca\x51\xc8\xf7\x2e\xf0\xfa\xa5\x6f\x7b\x42\xfc\ \x55\x03\x30\x3b\xbe\x18\xc1\x73\x9e\x77\xfa\xfd\x29\x75\x61\x3d\ \xb2\xea\xaf\xca\xba\xed\x6f\x0b\x4d\xe6\x61\xe7\x3d\xf6\xc6\xc3\ \xca\xf7\xef\xfb\x5a\x60\xe6\x9f\x99\x01\x70\x6a\xfc\x72\x06\xc0\ \xe7\xeb\x8d\x84\xff\x4f\xcf\x5f\x63\xba\xc6\xb0\xde\xf8\x79\x34\ \x8e\x94\xb3\x28\x77\x51\x0e\x43\xbe\x17\xc0\x63\x1b\xee\x3d\x21\ \xfe\x9d\x37\xb6\x8d\x47\xf0\x9c\xe3\x7d\xeb\xfe\xa4\x72\xd7\x4b\ \x37\x2a\xaf\xbf\xff\x2a\x92\x51\x0d\x78\xb3\x5f\xf8\xb3\x32\xa5\ \xaf\xdd\xf7\xf3\xaf\x9c\x01\x70\x72\xfc\x54\x03\xe0\xf3\xf5\x76\ \xe6\xfd\x93\x95\xd7\x36\x2e\xc5\xfa\x10\xc8\xa3\x5c\x46\x39\x8d\ \x72\x1b\xf2\xbd\x73\x3c\xd2\xde\x9a\x8a\x3f\x5d\xc9\x7b\xe2\xbf\ \x43\xf0\xaa\xe3\xa5\x32\x71\xe5\xb2\xc7\xce\x53\x9e\x7e\xe7\x51\ \x24\x0f\x0f\xf0\x9e\x58\xfb\x37\xe5\x98\xc1\x71\xbe\x9e\x7f\xa5\ \x0c\x80\xd3\xe3\xa7\x76\x03\xf4\xf1\xfa\x3d\xef\xa1\xff\x52\xde\ \xff\x60\x23\xd6\x87\x8b\xbc\x47\xff\xf9\x90\x72\xf1\x43\xd3\x94\ \x54\x6f\x2b\xc4\xbf\x5a\xde\xcc\xf8\xef\x6b\x2a\xfe\x13\x4e\xeb\ \xd8\x9f\xfd\x52\x6b\x10\xbc\xca\x78\x5d\x73\x5a\x95\x6b\x16\xff\ \x44\x79\x63\xf3\x0a\x24\x0f\x8f\xf1\x1e\x7a\x6b\x3e\x33\x66\xb2\ \x6f\xe7\x5f\xa1\x01\x10\x31\x7e\x43\x2b\x16\xf8\x76\xfd\x9e\x76\ \x5f\x27\x1b\xa3\xf5\x58\x1f\x35\xe2\xbd\xb2\x76\x89\x72\xd5\xa2\ \x1f\x2a\x5d\xec\xc3\x0f\xf4\xa3\x62\xde\xda\x2f\xdf\xd8\x31\xb2\ \x0a\x4d\x1f\x51\xb1\xf8\xd3\xdf\x53\x7d\xf1\xc9\x08\x5e\x65\xbc\ \x1f\x3d\x78\xba\xb2\x7c\xe3\xcb\x48\x1e\x1e\xe6\xdd\xf0\xf4\x25\ \xbe\x9d\x7f\x46\x03\x20\x6a\xfc\x16\x2e\x9f\xef\xcb\xf5\x9b\xca\ \xc6\xd9\xc6\xd9\x27\xb1\x3e\x3c\xc0\x5b\xb1\xe9\x15\xe5\x7f\xfe\ \x7e\x26\xf4\xa3\x42\x5e\x2a\x2d\xa7\x2a\x11\x7e\xad\xee\x0f\x77\ \x91\xa0\xe6\x52\x1b\x0e\x72\x6d\x7f\x11\x3c\x6e\xde\x7f\x65\x8e\ \x56\xfe\xb2\x2c\x8d\xe4\xe1\x03\xde\xc6\x1d\xeb\x95\xe3\xe6\x1e\ \xee\xcb\xf9\xa7\x1b\x00\x91\xe3\x97\x67\x00\x7c\xb4\x7e\xaf\x5e\ \xfc\x63\xac\x0f\x8f\xf1\xe8\x44\xce\xc9\x0b\x8e\x86\x7e\xd8\xe4\ \xb1\x06\x41\xb3\x2b\x10\xff\x08\x97\x01\x30\xf4\x13\x2e\xac\x2f\ \xbc\x0f\x6b\x4a\xd0\xc2\x7e\x81\xed\x10\x7f\x7e\xde\x25\x0f\x9f\ \xcb\xda\xb4\xae\x42\xf2\xf0\x11\xef\xc6\xe7\xae\xf4\xe5\xfc\x23\ \x03\x20\x7a\xfc\x72\x06\xc0\x67\xeb\x97\x8e\xb5\x61\x7d\x78\x8f\ \x47\x8f\x64\x2e\x7f\xfc\xfb\xd0\x0f\x7b\xbc\xed\xa4\xc5\x36\xc4\ \x5f\xef\xf7\x63\x6e\x00\xb4\x2f\x6e\xd2\x3e\xfd\xb7\x14\xee\x36\ \x4c\x64\xe4\xd3\x21\xfe\x7c\xbc\x29\x73\xda\x95\xde\x17\x6f\xc7\ \x62\xf7\x21\x8f\x6a\x2c\xf8\x71\xfe\x51\x37\x40\xd1\xe3\xa7\xee\ \x01\xf0\xd9\xfa\x3d\xe3\xfe\x2e\xac\x0f\x8f\xf3\x32\xcb\x67\xa8\ \x47\x33\xa1\x1f\x7c\x3c\xd2\x62\x4e\xf1\x6f\xd4\xba\xfd\x36\x98\ \x96\xfe\xd7\xbe\x38\xaa\x7d\xfa\x6f\x36\xf4\x16\xce\x39\x86\x54\ \x5a\xba\x0f\xe2\x6f\xcd\xeb\x4e\x1f\xa5\x3c\xfe\xcf\x47\xb0\xd8\ \x7d\xca\xdb\x39\xbc\x53\xf9\xea\xe0\xa1\xbe\x9b\x7f\x6b\x37\xac\ \x16\x3e\x7e\xea\x29\x00\x9f\xad\xdf\xdf\x3c\xf3\x73\xac\x0f\x1f\ \xf0\x9e\x7f\x77\xb1\x72\xd2\xfc\xa3\x20\xfe\x1c\x3c\xd2\x62\x8e\ \x3b\xf9\x51\xed\xca\x19\x00\x2b\xa7\x30\xca\x60\x00\xf2\xba\x0a\ \x75\xcd\x8b\x1d\xc8\x7e\xf0\x30\xc4\xdf\x9c\xf7\xcd\xc1\x49\xca\ \xb2\xb5\x4b\xb1\xd8\x7d\xce\xfb\xf6\x03\x53\x7c\x37\xff\xd6\xac\ \x7f\x4b\xf8\xf8\x59\xb6\x03\xf6\xe0\xfa\xa5\x2a\x7f\x58\x1f\xfe\ \xe0\xbd\xb5\xf9\x75\xe5\xd4\xbf\x4c\x82\xf8\x5b\xf3\x86\x27\x64\ \xa5\x8f\x9b\x88\x7f\x93\xa6\xe7\xba\x01\x88\x58\x3d\x23\x88\x1a\ \x0c\x40\x51\x3f\xe1\x44\x26\x76\x2e\xc4\xdf\x9c\x77\xda\xbd\x49\ \xe5\xf5\x77\x97\x63\xb1\x07\x80\xf7\x83\x87\xbf\xee\xbb\xf9\xa7\ \x1b\x00\x91\xe3\x67\xdb\x00\x78\x60\xfc\x16\xbc\x3e\x07\xeb\xc3\ \x47\xbc\x7f\xae\x5b\xa1\xe6\x52\x88\xbf\xd5\x15\x9b\x66\xb2\x87\ \x6f\xb4\xc1\x00\x34\x98\xdd\xfa\x8f\x68\x0e\x41\x37\x00\x4d\xa5\ \x36\x0a\xb0\x9d\x87\x0f\x43\xfc\xcd\x3f\xf9\x43\xfc\x83\xc3\x53\ \x0d\x80\xcf\xe6\x33\x19\x00\xd1\xe3\x67\xcb\x00\x78\x64\xfc\xfe\ \xf2\x7a\x3f\xd6\x87\xcf\x78\x94\x4b\x29\xa7\x42\xfc\xcd\x3a\x04\ \x4a\x0f\x95\x39\xbd\xd7\x6c\x30\x00\x8d\x66\xe2\x5f\xaf\xb9\x83\ \x91\x86\xe7\x05\x45\xe2\x3f\x29\x3b\xe6\x93\xec\x07\xee\x86\xf8\ \x97\xe6\x9d\x38\x70\x24\x2b\x72\xf1\x22\x16\x7b\x80\x78\x3f\x78\ \xe8\xeb\xbe\x9b\xcf\xb4\x07\x40\xf4\xf8\x71\x1b\x00\x0f\xad\xdf\ \x52\x06\x00\xeb\xc3\xfb\xbc\x65\x6f\x2f\x51\xa6\xde\x7b\x24\xc4\ \xbf\xfc\xb5\x3b\xd1\x7f\xc8\x27\x0a\xea\xf6\xb4\x18\x0c\x40\xd4\ \x6a\xd3\x9f\xd1\x00\x94\x75\x0a\x96\xb7\xff\x43\x2c\xfe\x93\x7b\ \xdb\x94\x7f\xbc\x3e\x84\xc5\x1e\x30\x5e\x51\x93\x20\x1f\xcc\x67\ \x3a\x05\x20\x7a\xfc\xb8\x0c\x80\xc7\xd6\x6f\xe1\x23\x00\xac\x0f\ \xff\xf0\xa8\x54\xfa\xe4\x6c\x2b\xc4\xdf\xe4\x31\x40\x41\xd1\x3e\ \xdd\x00\x34\x99\x56\xfd\xd3\xbe\xa9\xde\x70\x46\xb0\xec\x17\xb3\ \x1f\xb4\x10\x83\x5d\x9a\x77\xe7\xb3\x7f\xc0\x62\x0f\x20\xef\x8c\ \x79\x93\x7d\x37\x9f\xad\xda\x01\x3b\x31\x7e\x96\x06\xc0\x83\xeb\ \x97\x5a\xd7\x62\x7d\xf8\x97\x37\xeb\x95\x5b\x20\xfe\xe5\xae\x01\ \x79\x61\x89\x9a\x3d\xa3\x79\x0b\xfe\xd4\x6b\x7b\x00\xca\x8a\xff\ \x84\x81\x2f\x7c\x94\xfd\xa0\x5d\x18\xec\x62\xde\x8f\x1e\xf8\x96\ \xb2\x65\xeb\x16\x2c\xf6\x80\xf1\x36\xbe\xbf\x91\xd5\x71\x18\xe7\ \xbb\xf9\x6c\xd7\x00\x54\x32\x7e\xa6\x06\xc0\xa3\xeb\xf7\xb7\xcf\ \x5c\x8a\xf5\xe1\x63\xde\x6e\xf6\xbf\xff\xf9\xfb\x19\x10\xff\xd2\ \xbc\x5d\x13\x2e\x19\xf7\x19\x83\x01\x68\xb6\x53\xee\xb7\xde\xaa\ \x39\x40\x2a\x13\x3b\x15\x83\x5d\xcc\x3b\xae\xff\x8b\xca\xeb\xeb\ \x5e\xc3\x62\x0f\x20\x6f\xf1\x1b\x8b\x7c\x39\x9f\xed\x18\x80\x4a\ \xc7\xaf\xac\x01\xf0\xf0\xfa\xa5\xf6\xbf\x58\x1f\xfe\xe6\xbd\xbd\ \x75\x95\x72\xfc\xbd\xff\x01\xf1\x2f\xc5\x9b\x1e\x3f\xc7\x76\x8b\ \x60\xde\xae\x40\xec\x87\x0d\x60\xb0\x8b\x79\x33\x5f\xb8\x19\x8b\ \x33\xa0\xbc\xdf\x3e\x7e\xb9\x2f\xe7\x33\xaf\x01\xa8\x66\xfc\x4a\ \x1a\x00\x1f\xac\xdf\x17\xd6\x3c\x8d\xf5\xe1\x73\x1e\x3d\xca\x81\ \xf8\x97\xe0\xcd\x8a\xcf\x15\xd2\x22\xb8\xbb\xf7\x88\x51\xec\x07\ \x6e\xc5\x60\xe7\xb3\xbe\x35\x2f\xa5\x7c\xb0\xf3\x03\x2c\xce\x00\ \xf2\xe8\x28\xdd\x71\x03\x5f\xf4\xe5\x7c\xe6\x31\x00\xd5\x8e\x5f\ \x91\x01\xf0\xc9\xfa\xbd\xf2\xef\x3f\xc4\xfa\xf0\x39\x8f\x2a\x74\ \x52\x59\x67\xe8\x51\x11\x6f\xdb\x09\x37\x1d\x39\xba\xce\xe9\x57\ \x22\x2b\x4d\xc6\x60\x17\xf3\x16\xbe\x71\x2f\x16\x67\x40\x79\xd7\ \x3f\x76\xb1\x6f\xe7\xb3\x95\x01\x70\x62\xfc\xf2\x0c\x80\x8f\xd6\ \x6f\xaa\xb7\x55\x7d\xb4\x83\xf5\xe1\x6f\x1e\x75\x10\x84\x1e\x15\ \xf3\x48\xab\x45\x18\x80\x9b\x30\xd8\xf9\xd7\x99\xf7\x4d\x56\x37\ \xa5\x60\x71\x06\x8f\x77\xff\x6b\x73\xa9\xd7\xb6\x6f\xe7\xb3\x99\ \x01\x70\x6a\xfc\x72\x06\xc0\x87\xeb\xf7\xd4\x7b\x13\xae\x1c\x95\ \x04\x4f\x1c\x8f\x72\x2f\xed\xe9\x80\x1e\x15\xb4\x08\x66\x5a\xed\ \xac\xfa\x2b\x75\x23\x18\xf8\x75\x88\x7f\x3e\xef\xde\x15\xb3\xb1\ \x38\x03\xc8\x5b\xf4\xfa\x83\xca\x31\xd9\x71\xbe\x9e\xcf\xe5\x0c\ \x80\x93\xe3\xa7\x1a\x00\x1f\xaf\xdf\xef\x3f\x74\xb2\xb2\xf9\xc3\ \x4d\x58\x1f\x3e\xe6\xcd\x5d\x3e\x0b\x7a\x54\xc4\x8b\xad\x24\xcd\ \x76\x4c\xff\xd9\xee\xff\xb1\x10\xff\x7c\x1e\xed\x42\xdd\xb6\x73\ \x2b\x16\x67\xc0\x78\x73\x96\x4c\x57\xa6\x64\xdb\x7d\x3f\x9f\x4b\ \x19\x00\xa7\xc7\x4f\xed\x06\xe8\xf3\x7c\x40\x8d\x9e\x56\x6c\x7a\ \x05\xeb\xc3\xa7\xbc\x75\x9b\xde\x55\x4f\x61\x41\xfc\x0b\x3a\x04\ \x32\xcd\x76\xd0\x00\x48\x3f\x82\xf8\xe7\xf3\xae\x7b\xea\x22\x2c\ \xce\x00\xf1\xa8\x65\xf3\x0f\xee\xff\x46\x60\xe6\x73\xa1\x01\x10\ \x31\x7e\x43\x2b\x16\x04\x22\x1f\x4c\x19\x6c\x57\x6e\x7e\xe1\x5a\ \xe5\xbd\xed\xef\x60\x7d\xf8\x90\x77\xf5\xa2\xff\x81\xf8\x17\x5c\ \x89\xb4\xf4\x43\xa7\x4e\xff\xd5\x25\xd3\xb1\x07\x21\xfe\xf9\xbc\ \xc7\xd6\x3c\xe4\x89\xc9\xbf\x69\xf3\x26\x65\xe5\x3b\xaf\x2a\x4b\ \xd7\x3e\xa7\xbc\xb2\xfe\x45\x65\xd9\x86\x25\xb6\x2f\xfa\xbe\xe7\ \x57\x3f\xa5\x3c\xb7\xea\xc9\xdc\x45\x7f\x0f\x32\xef\xe9\xb7\x1e\ \x53\xee\x5b\x96\x55\x6e\x5a\x7c\xb5\x72\xe6\xfc\xaf\x06\x6e\x3e\ \x1b\x0d\x80\xa8\xf9\xb7\x70\xf9\xfc\x40\xe5\x83\x29\x83\x6d\xca\ \xc5\x8f\x9e\xa3\xf4\xbd\x7a\x87\xb2\xf8\xed\x47\x94\x57\x36\xbc\ \x10\xda\xf5\x61\xc6\xa3\x3b\x26\x74\x16\x7f\xd7\xee\x5d\x9e\x30\ \x13\x0f\x2d\xff\x0b\xc4\xbf\xb8\x2c\xf0\x03\x66\xc2\xaf\xd5\xfd\ \xb1\x3e\x2a\x78\xc2\xcd\x47\x8e\x4e\xce\x91\x77\x40\xfc\xf7\x7e\ \xcd\x31\x73\xc7\x29\x1f\x0e\x7f\x50\xb3\xc9\x4f\xe2\x75\xe3\x13\ \xbf\x54\xce\xf9\xcb\x89\xac\x4a\x5d\x3b\x26\x3f\x78\x65\x0d\x80\ \xc8\xe4\x9b\x67\x00\x10\x8f\xd0\xf1\xc8\x30\x4d\x1b\x9a\xaa\xde\ \x3d\x59\xfa\xde\xb3\x35\xbb\x93\xb0\x71\xf3\x06\xe5\x98\xc1\x71\ \x88\x6f\xfe\xb5\x83\x8e\xee\x97\x11\xff\x08\x97\x01\xa0\x2f\x48\ \xdc\x15\x3f\x0e\x93\x3f\xff\xeb\x7e\xba\xe8\xdb\x35\x11\xff\x47\ \x57\x2f\x54\xbe\xfb\x97\xa9\x48\x46\xe0\x71\x19\x00\xd1\xc9\x37\ \x67\x00\x10\x0f\xf0\xd8\x75\xee\x50\x37\xbb\x33\x3a\x54\x93\xc7\ \x08\x94\x93\x11\x8f\x82\xc7\x00\xd9\x58\xb2\x84\xf8\xeb\xfd\x7e\ \xcc\x0d\x80\xf6\xc5\x4d\xc9\x7b\xe4\xdf\x63\xf2\xe7\x5f\x77\xbd\ \x74\xa3\xab\xe2\xbf\x6d\xe7\x16\xe5\xca\xc7\x2f\x40\x32\x02\x8f\ \xfb\xa2\x23\x6e\xa2\x93\xaf\xba\x07\x00\xf1\x00\xaf\xe0\xba\xea\ \x89\x0b\x94\x2d\x1f\xbc\xef\xea\x1e\x02\xca\xc9\x88\x47\x21\x23\ \xf6\xeb\x02\x3d\x6f\xd4\xba\xfd\x36\x98\x96\xfe\xd7\xbe\x98\xfa\ \x07\x8f\x4e\xf6\xc6\x9f\xc5\xe4\xcf\xbf\x1e\x65\xc7\x9f\xdc\x12\ \xff\xf5\x3b\xd6\x29\xe7\x3c\x78\x1c\x92\x11\x78\xb6\x78\x6b\x37\ \xac\x16\x9e\x7c\xd5\x53\x00\x88\x07\x78\x25\x78\x67\x2d\x38\x56\ \x79\xeb\xbd\x37\x5c\xdb\x40\xf8\x28\x4f\x6b\xea\xb0\xc5\x23\x2d\ \x3d\x65\xe8\xf5\x13\xd5\xae\x9c\x01\x30\x13\x7f\x72\x0a\xa3\x26\ \x5c\xdd\xfe\x69\xf6\xfc\x7f\x37\xbb\x30\xf9\x0d\xd7\x5b\x5b\x5e\ \x77\x45\xfc\x69\x9f\xc1\xf7\x16\x76\x23\x19\x81\x67\x9b\x47\x65\ \x8c\x45\x27\xdf\x7f\xd8\x49\xba\x88\x6f\xe8\x78\xd3\xd8\xe3\xca\ \x0d\xef\xaf\x77\xe5\xf4\x00\xe5\x64\xc4\xa3\xe8\xda\x3d\x61\xe6\ \xd8\x03\xe8\x4e\x3e\xe9\xb9\xc1\x00\x44\xcc\xc4\xbf\x41\xfb\xc2\ \x51\xc9\xbb\xe3\x27\x43\xfc\x0b\xce\x57\x66\xe3\x6a\x1d\x6a\x37\ \x9e\xf9\xdf\xfe\xe2\x6f\x90\x8c\xc0\xab\x88\xa7\x1b\x00\x91\xc9\ \xd7\xb6\x01\x40\x7c\x43\xc7\xbb\xe5\xa9\xeb\x5d\x39\x3a\x48\x39\ \x99\x72\x33\xe2\x51\xc0\xbb\xab\xf5\x64\xba\x93\x6f\x30\x00\x0d\ \x66\xb7\xfe\x23\x9a\x43\x50\x0d\x40\x6a\xb6\x7c\x23\x26\x7f\xfe\ \x75\xf2\x82\xa3\x5d\x11\xff\xf7\x77\x6c\x54\x8e\xe9\x3f\x1c\xc9\ \x08\xbc\x8a\x78\x64\x00\x44\x7f\xf2\xfa\x07\x6e\xbb\x82\x67\xc1\ \x3b\x76\xf0\x30\xdb\xd5\x16\x2b\xcd\xa7\x94\x9b\x11\x0f\x03\x8f\ \x7d\x78\x4f\xcc\x6e\xbd\xd1\x60\x00\x1a\xcd\xc4\xbf\x5e\x73\x07\ \xba\x01\x88\x26\xd3\xf2\xd3\x98\xfc\xf9\x17\x55\x0e\x73\xe3\xa8\ \xcb\xfc\x65\x73\x90\x8c\xc0\xab\x98\x47\x7b\x00\x44\x7f\xf2\xe2\ \x36\x00\x88\x47\xa8\x79\x0f\xbc\x91\x75\xa5\x68\x10\xe5\x66\xc4\ \xa3\x80\xd7\x23\x3f\xa3\x19\x80\xa8\xd5\xa6\x3f\xa3\x01\x68\x9c\ \x78\xd7\x61\xfb\x31\xd8\x30\x26\x7f\xfe\x45\xe7\x5e\xdd\x38\xe7\ \x4a\xe7\xfc\x91\x3c\xc0\xab\x94\xe7\x46\xa3\x1b\x2e\x03\x80\x78\ \x84\x9e\x47\x75\x02\xdc\x28\x9a\x46\xb9\x19\xf1\x28\xe0\xcd\x91\ \x87\x27\x5e\x3e\xfe\x40\xd3\xaa\x7f\xda\x2e\xc1\x7a\xc3\x19\x41\ \xd6\xfc\x47\xee\xc2\xe4\x37\x37\x00\x22\xcf\xb9\x5e\xf7\xe8\xc5\ \x48\x1e\xe0\x55\xcc\xb3\x6a\x07\xec\x44\xf2\xb5\x34\x00\x88\x07\ \x78\xec\xfa\xed\x33\x97\xb9\x52\x37\xa5\xc8\x00\x20\x1e\xea\x63\ \x80\x54\xbf\xdc\x65\x59\xf0\x47\x33\x00\x11\xdd\x29\x24\x32\xd2\ \x95\x98\xfc\xe5\x0d\x80\xe8\x22\x17\xd7\x3d\xfa\x33\x24\x0f\xf0\ \x2a\xe6\xd9\x35\x00\x95\xcc\x67\x53\x03\x80\x78\x80\x97\x33\x00\ \x97\xba\x52\x37\x25\xcf\x00\x20\x1e\x8a\xbe\x81\x9f\xb4\x9c\xd7\ \x00\xe4\x6e\x13\x30\xe8\x10\x26\x7f\x69\x03\xe0\x46\x85\xab\xeb\ \x1f\xbb\x18\xc9\x03\xbc\x8a\x79\x76\x0c\x40\xa5\xf3\xb9\xac\x01\ \x40\x3c\xc0\xb3\x61\x00\x9c\xca\xa7\x39\x03\x80\x78\x14\xf2\x86\ \x6c\x75\x05\xea\x18\xea\x88\xb0\x6f\xda\x82\xc9\x5f\xc2\x00\x2c\ \x9c\xea\x4a\x85\xab\xdf\x3c\xfd\x73\x24\x0f\xf0\x2a\xe6\xf1\x1a\ \x80\x6a\x92\x6f\x49\x03\x80\x78\x80\x67\xc3\x00\x38\xf9\x61\x4a\ \x35\x00\x88\x47\x29\xde\x16\xd2\x74\xfe\xf6\xbf\xd9\xb1\xed\x98\ \xfc\xa5\x79\xd4\x80\xc7\x8d\xf2\x96\xb4\x68\x90\x3c\xc0\xab\x94\ \xc7\x63\x00\xaa\x4d\xbe\x45\x06\x00\xf1\x00\xcf\x86\x01\x70\xfa\ \x4e\x2a\x7d\x38\x43\x3c\x4a\xf3\xba\xd2\xb1\x36\x6e\x03\xc0\x36\ \x00\x9e\x8d\xc9\x5f\x9a\x67\x34\x00\x22\xcf\x59\xdb\x36\x00\x48\ \x46\xe0\xd9\x30\x00\x4e\x24\xdf\x3c\x03\x80\x78\x80\x67\xc3\x00\ \x88\x78\x8c\x4a\xb9\x19\xf1\x28\xf7\x3d\xf2\xd9\xdc\x06\x20\x91\ \x96\x6e\xc3\xe4\x2f\xcd\xd3\x0d\x80\xe8\x22\x2b\xb6\x0c\x00\x92\ \x11\x78\x36\x0c\x80\x53\xc9\x37\x67\x00\x10\x0f\xf0\x6c\x18\x00\ \x51\x7b\xa8\x8a\x0c\x00\xe2\xb1\xb7\x33\x20\xd3\x74\x1b\x77\x00\ \xa4\xe7\x31\xf9\x4b\xf3\x68\x92\xb9\x51\xdb\x9a\xdb\x00\x20\x19\ \x81\x67\xc3\x00\x38\x99\x7c\x55\x03\x80\x78\x80\x67\xc3\x00\x88\ \xdc\x40\x9d\x67\x00\x10\x8f\xc2\xeb\x39\x2e\xf1\xef\xee\x3d\x62\ \x14\xfb\xe2\x5d\x98\xfc\xa5\x79\x34\xc9\xdc\xa8\x6d\xcd\x65\x00\ \x10\x0f\xf0\x6c\x18\x00\xa7\x93\xaf\xda\x0d\x10\xf1\x00\x8f\xd3\ \x00\x88\x3e\x3d\x95\x33\x00\x88\x47\xa9\x6b\x17\x69\xbb\xf5\x06\ \xc0\xc1\xf8\x78\x4c\xfe\xf2\x3c\xda\x68\x22\x5a\xfc\xb9\x0c\x00\ \xe2\x01\x9e\x0d\x03\x20\x22\xf9\x0e\xad\x58\x80\x78\x80\xc7\x65\ \x00\xdc\x38\x3a\xad\x1a\x00\xc4\xa3\xec\xd5\x95\x19\xfb\x45\xb3\ \xd3\x7f\xda\xed\xff\xd8\x34\x4c\xfe\xf2\xbc\xc2\x52\xc0\xa2\x8e\ \x5a\x99\x1a\x00\xc4\x03\x3c\x1b\x06\x40\x54\xf2\x5d\xb8\x7c\x3e\ \xe2\x01\x9e\xe5\x45\x47\x9a\xdd\x38\x3a\xad\x9e\x02\x40\x3c\x4c\ \xae\xd8\xb4\x82\xd2\xff\xfb\x14\x6f\x00\xcc\xc8\xb7\x94\xea\x2a\ \x84\xc9\x5f\xba\x17\x80\xa8\xa3\x56\x65\x0d\x00\x92\x11\x78\x36\ \x0c\x80\xc8\x4f\x5e\x79\x06\x00\xf1\x00\xaf\x0c\x8f\x8a\x9a\xb9\ \x71\x74\xba\x64\x2f\x00\xc4\x63\xef\x95\x8d\xdd\xac\x89\x7f\xa4\ \xac\x01\x60\xe0\x27\x20\xfe\xe5\x79\x76\x0c\x40\x35\xc9\xb7\xa4\ \x01\x40\x32\x02\xcf\x86\x01\x10\x7d\xdb\x35\x67\x00\x10\x0f\xf0\ \x4c\x78\x54\xd6\xdc\x8d\xa3\xd3\xb6\x0d\x40\xd8\xe2\x31\x20\x3d\ \x61\xe8\xf7\x53\x6c\x00\xba\x7b\xbb\xeb\xd9\x17\x6e\xcb\xfd\xf0\ \x3e\xb9\xd8\x00\x84\x7c\xf2\xf3\x1a\x80\x6a\x93\x6f\x91\x01\x40\ \x32\x02\xcf\xc6\x45\xdd\x00\x45\xdf\x76\x55\xf7\x00\x20\x1e\xe0\ \x59\xf0\x74\x03\x20\xfa\xf4\x94\x2d\x03\x10\xc6\x78\xf4\xcb\x5b\ \xbb\xbe\x93\x18\x65\x30\x00\xf9\x7b\x00\xba\x06\x5a\x3f\x9f\xfb\ \x86\x7e\x4d\xfc\xe7\x60\xf2\xdb\x35\x00\x4e\x7c\xf2\xca\x33\x00\ \x48\x46\xe0\xd9\xe4\xad\xdd\xb0\x5a\xf8\x6d\x57\xf5\x14\x00\xe2\ \x01\x9e\x05\x8f\x0c\x80\x1b\x47\xa7\xb9\x0d\x40\x38\xc5\x5f\xbd\ \x52\x77\xb4\xc7\x74\x03\x50\x7c\xfb\x3f\x2b\x9d\x90\x13\xff\x3e\ \x83\x01\x98\x83\xc9\xcf\x6b\x00\x9c\xba\xed\x9a\x33\x00\x48\x46\ \xe0\x55\xc0\x5b\xb3\xfe\x2d\xe1\xb7\x5d\x2d\xdb\x01\x23\x1e\xe0\ \xb1\x8b\xf6\x00\xb8\x71\x74\x9a\xcb\x00\x84\x31\x1e\x7d\x9a\x9e\ \x93\xae\xf7\xc8\x27\xd1\x1e\x80\xd2\x15\x00\x07\xe4\x4b\xd8\x73\ \x82\x62\x03\x80\xc9\xcf\x65\x00\x9c\x7c\xe6\xaa\x1a\x00\x24\x0f\ \xf0\x2a\xe4\xe9\x06\x40\xe4\x27\x2f\xdb\x06\x00\xf1\x0d\x25\x8f\ \x4e\x01\xb8\x71\x74\xda\xd2\x00\x84\x31\x1e\xba\x86\x6b\x06\x20\ \xd1\x1b\xbf\xac\xe4\xf1\x3f\xf5\x0e\x40\xbf\x34\x9b\x5d\x7b\x0d\ \x40\x1f\x26\x3f\xaf\x01\x70\x7a\xc3\x95\xda\x0d\x10\xc9\x03\xbc\ \x0a\x79\x64\x00\x44\xdf\x76\xb5\x65\x00\x10\xdf\xd0\xf2\xac\xda\ \x01\x3b\x95\x4f\x4d\x0d\x40\x98\xc5\xdf\x60\x00\xd8\xbf\xcf\x2a\ \xd7\x12\xb8\x9e\xfd\xc7\xe7\x72\x06\xa0\x1f\x93\x9f\xd7\x00\x88\ \xd8\x6d\x4d\xb7\xcd\x90\x3c\xc0\xab\x94\x47\x7b\x00\x44\xdf\x76\ \xe5\x36\x00\x88\x47\xa8\x79\x76\x0d\x40\xa5\xf9\xb4\xac\x01\x08\ \x73\x3c\x74\x03\x40\x7a\x4e\x3d\x01\x32\xd2\x33\xa5\xc4\x7f\xc4\ \x37\xbf\x39\xa6\x81\xdd\xfe\xdf\x96\x33\x00\x98\xfc\x5c\x06\x40\ \xd4\x51\x2b\xda\x38\x83\xe4\x01\x5e\xa5\x3c\x3a\x05\x20\xfa\xb6\ \x2b\x97\x01\x40\x3c\x42\xcf\xb3\x63\x00\xaa\xc9\xa7\x25\x0d\x40\ \xd8\xe3\x31\xa7\xe8\x4e\xfe\xb6\xcb\x2e\xab\xdb\xa7\xd0\x00\xec\ \x93\xbc\xa7\xfd\xb3\xea\xf3\xff\x81\x0a\x7f\x70\x48\x06\xdb\x68\ \x00\x44\x9e\xb3\xce\x33\x00\x48\x46\xe0\xd9\xe4\x59\xb5\x03\x76\ \x22\xf9\x5a\x1a\x00\xc4\x03\x3c\x1b\x06\xa0\xda\x7c\x5a\x64\x00\ \x10\x8f\xd2\x7b\xf8\xd2\x6d\x07\x17\x19\x80\xce\x3e\x39\x01\xf1\ \xe7\x37\x00\xa2\x8b\xac\xe4\x0c\x00\x92\x11\x78\x15\xf0\xec\x1a\ \x80\x4a\xe6\xb3\xa9\x01\x40\x3c\xc0\xb3\x61\x00\x9c\xc8\xa7\x79\ \x06\x00\xf1\x28\xbb\x81\xbf\x33\x2b\x4d\x2a\x32\x00\x89\x7e\xe9\ \x3c\x88\x3f\x9f\x01\x70\xa3\xb1\x85\xba\x07\x00\xc9\x03\xbc\x0a\ \x79\x76\x0c\x40\xa5\xf3\xb9\xac\x01\x40\x3c\xc0\xb3\x61\x00\x9c\ \xca\xa7\x39\x03\x80\x78\x98\xf2\x12\x99\xd8\xb9\x45\x7b\x00\x12\ \x59\xf9\x37\x18\x1c\x0e\x03\xc0\x1a\x4e\xb8\xd1\xd8\x42\x3d\x05\ \x80\x78\x80\x57\x21\x8f\xd7\x00\x54\x93\x7c\x4b\x1a\x00\xc4\x03\ \x3c\x1b\x06\xc0\xc9\x0f\x53\xaa\x01\x40\x3c\x2c\x79\xa4\xf5\x25\ \xba\x00\x4a\x83\x18\x1c\x6b\x1e\xb5\x9c\x74\xa3\xb1\x85\x65\x3b\ \x60\xc4\x03\x3c\x13\x1e\x8f\x01\xa8\x36\xf9\x16\x19\x00\xc4\x03\ \x3c\x1b\x06\xc0\xe9\x3b\xa9\x6a\x37\x40\xc4\x83\x87\x37\x58\xca\ \x00\x2c\xc1\xe0\x58\xf3\x8c\x06\x40\xe4\x39\x6b\xdb\x06\x00\xc9\ \x08\x3c\x1b\x06\xc0\x89\xe4\x9b\x67\x00\x10\x0f\xf0\x6c\x18\x00\ \x11\x8f\x51\x29\x37\x23\x1e\x5c\xdf\xbf\x24\x5f\xfd\x95\xba\x11\ \xec\x1f\xb7\x60\x70\xac\x79\xba\x01\x10\x5d\x64\xc5\x96\x01\x40\ \x32\x02\xcf\x86\x01\x70\x2a\xf9\xe6\x0c\x00\xe2\x01\x9e\x0d\x03\ \x20\x6a\x0f\x55\x91\x01\x40\x3c\xca\x5d\x5b\x48\xf3\x73\xfa\x9f\ \xea\x6d\x3f\x00\x83\xc3\xc7\xa3\x49\xe6\x46\x63\x0b\x6e\x03\x80\ \x64\x04\x9e\x0d\x03\xe0\x64\xf2\x55\x0d\x00\xe2\x01\x9e\x0d\x03\ \x20\x72\x03\x75\x9e\x01\x40\x3c\x4c\x2f\xd2\xfc\xbd\x5d\x00\xb3\ \xd2\x61\x18\x1c\x3e\x1e\x4d\x32\x37\x1a\x5b\x70\x19\x00\xc4\x03\ \x3c\x1b\x06\xc0\xe9\xe4\xab\x76\x03\x44\x3c\xc0\xe3\x34\x00\xa2\ \x4f\x4f\xe5\x0c\x00\xe2\x61\x79\x91\xe6\x1b\x9f\xff\x1f\x8f\xc1\ \xe1\xe3\xd1\x46\x13\x37\x1a\x5b\x58\x1a\x00\xc4\xc3\x35\x5e\x57\ \x36\xae\x7c\x6d\xc1\x7f\x2a\xdf\xf8\xcb\x57\x94\x63\xe6\x8e\xf3\ \xc5\xfb\x2d\x34\x00\x22\x92\xef\xd0\x8a\x05\x9e\x8f\x6f\xaa\x37\ \xae\x1c\xdf\x3f\x5e\xf9\x7a\xf6\x2b\x4a\x77\xe6\x28\x25\x95\x89\ \x63\x7d\xb8\xcc\xa3\x5c\xe6\xc6\xd1\x69\xd5\x00\x20\x1e\xbc\xbc\ \xe3\x73\x4d\x81\x12\x59\xe9\x7c\x0c\x0e\x1f\xcf\xaa\x1d\xb0\x53\ \xb7\x5d\x4d\x0d\x00\xe2\x21\x9c\xf7\xa3\x47\x4e\x55\x06\x57\xdc\ \xa3\xbc\xfe\xfe\xab\xca\xf0\xee\xfc\x38\xad\xdb\xfe\xb6\xf2\xc8\ \xaa\xbf\x2a\xbf\x7a\xf2\x7f\xf6\x18\x02\x0f\xbe\x5f\xa3\x01\x10\ \x95\x7c\x17\x2e\x9f\xef\xc9\xf8\x9e\x34\xef\x4b\xca\xef\x9f\xb8\ \x42\x59\xb4\xf2\x41\xb5\x27\x82\xf1\xfd\x7e\xb0\x6b\x87\xf2\xf2\ \xfa\xe7\x94\x99\x2f\xff\x49\xf9\xf6\x03\x53\xb0\x3e\x5c\xe0\xd1\ \x91\x66\x37\x8e\x4e\xab\xa7\x00\x10\x0f\xae\x2b\x31\x20\xfd\x37\ \xd5\xff\xd9\xb3\x07\x20\x2b\x5d\x6f\xd9\x55\x08\x93\xdf\xb4\x1b\ \xa0\xd3\x1b\xae\xca\x1a\x00\x24\x23\xa1\xbc\x9f\xfc\xfd\x74\x65\ \xd9\x86\x25\xdc\xf1\xdd\xb0\xed\x3d\xe5\x7f\x9f\xb8\x52\x99\xdc\ \xdb\xe6\xa9\xf7\xab\x1b\x00\x91\x9f\xbc\xf2\x0c\x80\x07\xe2\x7b\ \xe2\xbc\xf1\x4a\xff\xab\xd3\x95\x0d\x9b\xd7\xf3\x97\x33\x66\x8f\ \x31\xce\x7c\x60\x32\xd6\x87\x40\x1e\x15\x35\x73\xe3\xe8\xb4\x65\ \x3b\x60\xc4\x63\xcf\xb5\xa7\xe4\xff\xf5\x39\x03\xc0\xfe\x71\x06\ \xc4\x9f\x8f\x67\xc7\x00\x54\x93\x7c\x4b\x1a\x00\x24\x23\x61\xbc\ \x29\x83\x6d\xea\x27\xfe\x4a\x93\xd1\x33\x6f\x3d\xae\x7c\x73\x6e\ \xa7\x67\xde\x2f\x19\x00\xd1\xb7\x5d\x73\x06\xc0\x03\xef\xf7\x82\ \xbf\x9d\xa2\xbc\xbb\x75\x6d\x45\xef\xf7\xc3\xe1\x0f\x94\xff\x7d\ \xf6\x0a\xac\x0f\x41\x3c\x2a\x6b\xee\xc6\xd1\x69\xdb\x06\x20\xbc\ \xe2\x4f\xd7\x4c\xa3\x01\x58\x58\xf2\x87\xf7\xc9\xc5\x06\x20\xe4\ \x93\x9f\xd7\x00\x54\x9b\x7c\x8b\x0c\x00\x92\x91\x30\x1e\xdd\xc6\ \x7f\xea\xed\x45\x55\x27\xa3\x55\xeb\xdf\x50\xce\x7e\xe0\x38\x4f\ \xbc\x5f\xea\x06\x28\xfa\xb6\xab\xba\x07\xc0\x03\xf1\xbd\xe2\xf1\ \xf3\x95\x0f\x76\xee\xa8\xfa\xfd\xce\x79\xf5\x76\xb6\x47\x40\xc6\ \xfa\x70\x98\xa7\x1b\x00\xd1\xa7\xa7\x6c\x19\x80\x30\xc6\x83\xba\ \xfc\xf6\x6b\x06\xa0\x5f\x5e\xb8\x77\x0f\x40\x46\x5a\x5a\xf4\x0d\ \xfd\x86\x5e\xc2\x98\xfc\xb6\x0c\x80\x13\x9f\xbc\xf2\x0c\x00\x92\ \x91\x30\x1e\x25\xfc\x45\xab\x1f\x70\x2c\x19\x6d\xd8\xf1\x9e\x72\ \xd6\x83\xc7\xd6\xfc\xfd\xea\xcf\xbe\x45\x7e\xf2\x52\x4f\x01\xd4\ \x38\xbe\x57\x3e\xf1\xdf\xca\x87\xbb\x3e\x74\xcc\xec\xdc\xb6\xe4\ \x06\xac\x0f\x87\x79\x64\x00\xdc\x38\x3a\xcd\x6d\x00\x42\x2b\xfe\ \x7b\x0d\x40\x22\x2d\x2d\xcd\x9d\x02\x60\x06\x60\x43\x91\xf8\xf7\ \x19\x0c\xc0\x1c\x4c\x7e\x5e\x03\xe0\xd4\x6d\xd7\x9c\x01\x40\x32\ \x12\xca\xfb\xd3\x0b\xbf\x72\x3c\x19\xd9\x32\x01\x82\xde\xef\x9a\ \xf5\x6f\x09\xbf\xed\x6a\xd9\x0e\xd8\x67\xe2\x4f\xaf\x5d\xbb\x76\ \x2a\x3f\xb8\xff\xeb\x58\x1f\x0e\xf2\x68\x0f\x80\x1b\x47\xa7\xb9\ \x0c\x40\x18\xe3\xd1\xa7\xe9\xb9\xf1\x0e\x40\x46\x5a\xaf\x8a\x7f\ \xc7\xd0\xc1\xd1\xa2\x67\x04\x85\x06\x00\x93\x9f\xcb\x00\x38\xf9\ \xcc\x55\x35\x00\x48\x1e\x42\x79\x74\xb4\x6f\xdb\xce\xad\x42\x92\ \x11\x97\x09\x10\xf8\x7e\x75\x03\x20\xf2\x93\x97\x6d\x03\xe0\x71\ \xf1\xd7\xdf\xef\x92\x35\xcf\x2a\x5d\xbd\xad\x58\x6f\x0e\xf1\xe8\ \x14\x80\x1b\x47\xa7\x2d\x0d\x40\x18\xe3\xa1\x6b\xb8\x6e\x00\x06\ \xf6\xfe\x77\xd2\xfe\xba\xce\x8c\xf4\xe9\x7c\xf1\x37\x18\x80\x3e\ \x4c\x7e\x5e\x03\xe0\xf4\x86\x2b\xb5\x1b\x20\x92\x87\x50\x5e\xef\ \xb2\xdb\x84\x6e\xe8\x34\x35\x01\x82\xdf\x2f\x19\x00\xd1\xb7\x5d\ \x6d\x19\x00\x9f\x88\xbf\xce\xba\xf4\xe1\xf3\xb0\xde\x1c\xe2\x59\ \xb5\x03\x76\x6a\xbd\x99\x1a\x80\x30\x8b\xbf\xd1\x00\x18\xbe\x86\ \xb4\x9f\x1d\x01\x1c\xdb\x9e\xfb\x06\xa3\x01\xe8\xc7\xe4\xe7\x35\ \x00\x22\x76\x5b\xd3\x6d\x33\x24\x0f\x71\x3c\x2a\xee\xb3\x71\xc7\ \x7a\xe1\x1b\x3a\x4b\x9a\x00\x17\xde\x2f\xed\x01\x10\x7d\xdb\x95\ \xdb\x00\xf8\x4c\xfc\xe9\x7a\x64\xe5\xfd\x58\x6f\x0e\xf1\xec\x1a\ \x80\x4a\xd7\x5b\x59\x03\x10\xe6\x78\xe8\x06\xa0\x40\xfc\xd5\x72\ \xc0\x4c\xfb\xeb\x3a\xb3\xd2\x24\xf5\x1b\x0a\x0d\x00\x26\x3f\x97\ \x01\x10\x75\xd4\x8a\x36\xce\x20\x79\x88\xe3\xfd\xf7\xdf\xbe\xe1\ \xca\x69\x8e\x22\x13\xe0\xd2\xfb\xa5\x53\x00\xa2\x6f\xbb\x72\x19\ \x00\x87\xc5\x7f\x27\x7b\x46\xef\x46\x51\x19\x3a\x55\x50\xb6\xea\ \x23\xd6\x9b\x2d\x9e\x1d\x03\x50\xcd\x7a\x2b\x69\x00\xc2\x1e\x8f\ \x39\xe5\xef\xe4\x27\x32\xf2\xc4\xba\x64\x36\x76\x72\x9e\x01\x18\ \xa8\xe2\x8c\x61\x08\x06\xdb\x68\x00\x44\x9e\xb3\xce\x33\x00\x10\ \x7f\xc7\x79\x7f\x7a\xfe\x1a\x57\xc4\x3f\xcf\x04\x3c\x70\xac\x6b\ \xef\xd7\xaa\x1d\xb0\x13\xef\xd7\xd2\x00\xf8\x54\xfc\x75\xde\xf9\ \x0f\x7f\x1d\xeb\xcd\x01\x1e\xaf\x01\xa8\x76\xbd\x15\x19\x00\xc4\ \xc3\x7c\x0f\x1f\xd3\xfe\xba\x54\x5a\xfa\x6e\x9e\x01\x80\xf8\x73\ \x19\x00\xd1\x45\x56\x72\x06\x00\x62\x2d\x84\x97\x5e\x7e\xb7\x6b\ \xe2\xaf\xf3\x56\xb3\xe7\xf2\xdf\x9e\x7f\x8c\x2b\xef\xd7\xae\x01\ \xa8\xe4\xfd\x9a\x1a\x00\x9f\x8b\x3f\xbd\xae\x79\xf2\x27\x58\x6f\ \x0e\xf0\x78\x0c\x80\x13\xeb\x2d\xcf\x00\x20\x1e\x96\x1b\xf8\x59\ \x0b\x80\x73\xea\x52\x19\xe9\x67\x39\x03\x00\xf1\xe7\x32\x00\x6e\ \x34\xb6\x50\xf7\x00\x20\x79\x08\xe3\xfd\xf5\x9f\x69\x57\xc5\x5f\ \xe7\xad\x7a\xef\xcd\xbd\x26\x40\xe0\xfb\xb5\x63\x00\x2a\x7d\xbf\ \x65\x0d\x40\x00\xc4\x9f\x5e\xbf\x7f\xf6\x72\xac\x37\x07\x78\x56\ \x06\xc0\xa9\xf5\x96\x33\x00\x88\x07\x17\x8f\x1d\xff\xbf\x88\xaa\ \x00\x5e\x07\xf1\xb7\x61\x00\x58\xc3\x09\x37\x92\x91\x7a\x0a\x00\ \xf1\x10\xc6\xbb\x77\x65\x8f\xeb\xe2\xaf\x5f\x74\x27\x40\x7d\x1c\ \x20\xf0\xfd\xf2\x1a\x80\x6a\xde\x6f\x49\x03\x10\x10\xf1\xa7\xd7\ \xaf\x9f\xfe\x19\xd6\x9b\x03\x3c\x33\x03\xe0\xe4\x7a\x53\x0d\x00\ \xe2\x61\x87\x77\x2d\xed\x01\xb8\x19\xe2\xcf\xcf\xa3\x96\x93\x6e\ \x24\x23\xcb\x76\xc0\x88\x47\x55\xbc\xbb\x5e\xfa\xdf\x9a\x88\xbf\ \x5b\x15\x03\x79\x0c\x40\xb5\xef\xb7\xc8\x00\x04\x48\xfc\xe9\x75\ \xd1\x3f\xce\xc2\x7a\x73\x80\x57\xce\x00\x38\xbd\xde\xd4\x6e\x80\ \x88\x07\x3f\x8f\x69\x3f\x55\x01\x9c\x8d\xc1\xe1\xe7\x19\x0d\x80\ \xc8\x64\x64\xdb\x00\x20\x19\xd9\xe2\x5d\xf6\xd8\x79\x35\x13\x7f\ \x37\x2a\x06\x5a\x19\x00\x27\xde\x6f\x9e\x01\x08\x98\xf8\xd3\xeb\ \x6b\x0b\x3a\xb0\xde\x1c\xe0\x95\x32\x00\x22\xd6\x1b\xe5\x66\xc4\ \x83\x9f\x41\xda\x4f\x8f\x00\xee\xc5\xe0\xf0\xf3\x74\x03\x20\x3a\ \x19\xd9\x32\x00\x48\x46\xb6\x79\xd4\x3a\x76\xe7\xf0\xce\x9a\x89\ \xbf\xe8\x8a\x81\x66\x06\xc0\xa9\xf7\x9b\x33\x00\x8e\x8a\xff\x05\ \x9e\x10\xff\x95\x9b\x5e\xc5\x7a\x73\x88\x57\x68\x00\x44\xad\xb7\ \x22\x03\x80\x78\x98\x5e\xa9\xac\x34\x97\xee\x00\x3c\x8c\xc1\xe1\ \xe7\xd1\x24\x73\x23\x19\x71\x1b\x00\x24\xa3\x8a\x79\xd4\x04\xa8\ \x96\xe2\x2f\xb2\x62\x60\x39\x03\xe0\xe4\xfb\x55\x0d\x40\x00\xc5\ \x9f\x5e\xb7\x2f\xf9\x0d\xd6\x9b\x43\x3c\xa3\x01\x10\xb9\xde\xf2\ \x0c\x00\xe2\xc1\xf1\x08\x40\x7a\x88\xee\x00\x2c\xc6\xe0\xf0\xf3\ \x68\x92\xb9\x91\x8c\xb8\x0c\x00\xe2\x51\x15\xef\x82\x87\xbf\xe9\ \x09\xb1\x11\x51\x31\xb0\x94\x01\x70\x3a\xf9\xaa\xdd\x00\x03\x28\ \xfe\xdb\x76\x6e\x51\xba\xe7\xff\x3f\xac\x37\x87\x78\xba\x01\x10\ \x6d\xb6\x73\x06\x00\xf1\xe0\xe5\x3d\xc1\x0c\x80\xfc\x22\x06\x87\ \x9f\x47\x1b\x4d\xdc\x48\x46\x96\x06\x00\xf1\x70\x84\x77\xdf\xb2\ \x6c\xcd\xc5\x5f\x44\xc5\xc0\x42\x03\x20\x22\xf9\x0e\xad\x58\x10\ \x38\xf1\xa7\xd7\x9f\x5f\xbc\x0e\xeb\xc3\x41\x1e\xe5\x32\x37\xee\ \xb4\xa9\x06\x00\xf1\xb0\xc1\x94\x5f\xa4\x3b\x00\x2b\x30\x38\xfc\ \x3c\xab\x76\xc0\x4e\x25\x23\x53\x03\x80\x78\x38\xc6\xeb\x4e\x7f\ \x49\x59\xf9\xee\x6b\x35\x17\x7f\xa7\x2b\x06\x1a\x0d\x80\xa8\xe4\ \xbb\x70\xf9\xfc\xc0\x89\xff\xb3\xef\x3e\xa6\xf6\x89\xc0\xfa\x70\ \x8e\x47\x47\x9a\xdd\x88\xaf\x7a\x0a\x00\xf1\xe0\x67\xa6\xa5\x15\ \x74\x07\x60\x15\x57\x57\x21\x4c\x7e\xcb\x76\xc0\x4e\x26\xa3\xb2\ \x06\x00\xc9\xc8\x71\xde\x59\x0b\x8e\x73\xa5\x76\xbe\x9b\x15\x03\ \x75\x03\x20\xf2\x93\x57\x9e\x01\x08\x80\xf8\xd3\xc6\xbf\xa2\x5b\ \xff\x58\x1f\x55\xf3\xa8\xa8\x99\x1b\xf1\xb5\x6c\x07\x8c\x78\xec\ \xed\xfa\xab\x1a\x00\x79\x15\xdd\x01\x78\x0f\xe2\xcf\xcf\xb3\x63\ \x00\xaa\x49\x46\x25\x0d\x00\x92\x91\xc0\x3b\x3b\x27\xba\x52\x3e\ \xd7\xad\x8a\x81\xf4\x5e\x44\xdf\x76\xcd\x19\x80\x0a\x7e\xbf\xab\ \x3c\x28\xfe\xff\xb5\xe0\x4b\x58\x1f\x02\x78\x54\xd6\xdc\x8d\xf8\ \xda\x36\x00\x61\x15\xff\x9c\x01\x90\xd6\x91\x01\x78\xbf\xec\x0f\ \xef\x93\x8b\x0d\x40\xc8\x27\x3f\xaf\x01\xa8\x36\xf9\x16\x19\x00\ \x24\x23\x17\xcc\xdd\x89\xae\x54\xd0\x73\xa3\x62\x20\xdd\xd1\x10\ \xfd\xfb\xa9\x7b\x00\x20\xfe\x58\x6f\x16\x3c\xdd\x00\x88\x8e\xaf\ \x2d\x03\x10\xc6\x78\x50\x97\xdf\xfe\x3c\x03\xb0\x89\x0c\xc0\xf6\ \x92\xdf\xd0\x6f\xe8\x25\x8c\xc9\x6f\xcb\x00\x38\x21\x0e\x79\x06\ \x00\xc9\xc8\xc5\xf8\x9e\xe8\x4a\x11\x1d\xd1\x15\x03\xd7\x6e\x58\ \x2d\xfc\xf7\x53\x4f\x01\x40\xfc\xb1\xde\x2c\x78\x64\x00\xdc\x88\ \x2f\xb7\x01\x08\xad\xf8\x17\x18\x00\xa6\xfd\x64\x00\x76\x96\x14\ \xff\x3e\x83\x01\x98\x83\xc9\xcf\x6b\x00\x9c\x12\x87\x9c\x01\x40\ \x32\x72\x9d\x67\x66\x02\xfc\x52\x31\x70\x0d\xbb\x7b\x20\xfa\xf7\ \xb3\x6c\x07\x0c\xf1\x07\x8f\x5d\xb4\x07\xc0\x8d\xf8\x72\x19\x80\ \x30\xc6\xa3\x4f\xd3\x73\xa3\x01\xd8\xf3\xdf\x77\x92\x01\x18\x2e\ \x7a\x46\x50\x68\x00\x30\xf9\xb9\x0c\x80\x93\xe2\xa0\x1a\x00\x24\ \x8f\x9a\xf1\x4a\x99\x00\x3f\x55\x0c\xd4\x0d\x80\xc8\xdf\xcf\x8e\ \x01\x80\xf8\x87\x97\x47\xa7\x00\xdc\x88\xaf\xa5\x01\x08\x63\x3c\ \x74\x0d\xd7\x0d\xc0\x40\xde\xd7\x0c\xd7\x15\x8b\xbf\xc1\x00\xf4\ \x61\xf2\xf3\x1a\x00\xa7\xc5\x41\xed\x06\x88\xe4\x51\x53\x9e\xd1\ \x04\xf8\xad\x62\x20\x19\x00\xd1\xbf\x1f\xaf\x01\xf0\x9e\xf8\x2f\ \x83\xf8\xbb\xc8\xb3\x6a\x07\xec\x54\x7c\x4d\x0d\x40\x98\xc5\xdf\ \x68\x00\x0a\xbe\xae\x2e\xef\x1b\x8c\x06\xa0\x1f\x93\x9f\xd7\x00\ \x88\x10\x07\xba\x6d\x86\xe4\x51\x7b\x1e\x99\x00\x37\x36\xd4\x39\ \x5d\x31\x90\xf6\x00\x88\xfe\xfd\x78\x0c\x00\xc4\x1f\x3c\xbb\x06\ \xa0\xd2\xf8\x96\x35\x00\x61\x8e\x87\x6e\x00\x4a\x88\xff\x5e\x03\ \x90\x2e\x61\x00\x30\xf9\xb9\x0c\x80\xa8\x4f\x86\xb4\x71\x06\xc9\ \xc3\x2b\x2d\xa0\x4f\x70\xe5\x99\xba\x93\x15\x03\xdd\xa8\x6b\x60\ \x65\x00\x20\xfe\xe0\xd9\x35\x00\xd5\xc4\xb7\xa4\x01\x08\x7b\x3c\ \xe6\x98\xdf\xc9\x2f\x36\x00\x03\x55\x56\x17\x0a\xfc\x6d\xe1\xa9\ \xae\x3c\x13\xce\x33\x00\x48\x46\x1e\xe8\x02\x79\x82\x2b\xb7\xd5\ \x9d\xaa\x18\x68\xb7\xa6\x41\x25\xbf\x9f\x99\x01\x80\xf8\x83\x67\ \xd7\x00\x54\xbb\x3e\x8a\x0c\x00\xe2\x61\xb9\x87\x6f\xcf\x26\x40\ \xa3\x01\x80\xf8\x73\x19\x00\xd1\xcf\x84\x73\x06\x00\xc9\xc8\x43\ \x8d\xa0\x4e\xf0\x4d\xc5\x40\x37\x8a\x1a\x95\x33\x00\x10\x7f\xf0\ \xec\x1a\x00\x27\xd6\x47\x9e\x01\x40\x3c\x78\x36\xf0\x0f\xef\x39\ \x06\x98\x96\xaa\xaf\x2b\x1c\x9a\x67\xc2\x53\x5d\xd9\x10\xa6\xee\ \x01\x40\xf2\x40\xc5\x40\x8e\x8a\x81\xdf\x99\x7f\x6c\xd1\xfb\xb5\ \xf3\x3b\x56\xfa\xfb\x95\x32\x00\x10\x7f\xf0\xec\x1a\x00\xa7\xd6\ \x47\xce\x00\x20\x1e\xbc\xbc\x9d\x7b\x0a\x01\x41\xfc\xf9\x0d\x00\ \x6b\x38\xe1\x46\x72\x53\x4f\x01\x20\x1e\xa8\x18\xc8\x59\x31\xf0\ \xec\x07\x8e\xb3\x6c\x07\xec\xf4\xef\x57\x68\x00\x20\xfe\xe0\xd9\ \x35\x00\x4e\xae\x0f\xd5\x00\x20\x1e\x76\x78\xdb\xcb\x97\x02\xc6\ \xe0\x94\xd9\x10\x76\xa2\x2b\xc9\xcd\xb2\x1d\x30\xe2\x81\x8a\x81\ \x05\x15\x03\xcf\x7e\xf0\x38\x5b\x06\xa0\xda\xdf\xcf\x68\x00\x20\ \xfe\xe0\xd9\x35\x00\x4e\xaf\x0f\xb5\x1b\x20\xe2\x61\x87\xb7\xc9\ \xbc\x19\x10\x26\x7f\x11\xcf\x68\x00\x44\x26\x37\xdb\x06\x00\xc9\ \x08\x15\x03\x0d\x26\xc0\x0d\x73\xa2\x1b\x00\x2f\x8a\xff\x49\xf3\ \x21\xfe\x5e\xe1\x95\x32\x00\x22\xd6\x07\xe5\x66\xc4\xc3\x16\x67\ \x9d\x75\x3b\x60\x4c\xfe\x82\xdd\xe0\x27\xba\x92\xdc\x6c\x19\x00\ \x24\x23\x54\x0c\x2c\x30\x01\x66\x06\xc0\xa9\xdf\x8f\x0c\x00\xc4\ \x1f\x3c\xbb\x06\x40\xd4\xfa\x28\x32\x00\x88\x87\xc5\xb5\xa7\x1d\ \xf0\x0a\x0c\x0e\x3f\x8f\x26\x99\x1b\xc9\x8d\xdb\x00\x20\x19\xa1\ \x62\x60\x09\x13\xb0\xf9\xc3\xf7\x85\xdf\x99\x78\x65\xc3\x8b\x10\ \x7f\xf0\x6c\x19\x00\x91\xeb\x23\xcf\x00\x20\x1e\x3c\xd7\x0a\xba\ \x03\xf0\x22\x06\xc7\xce\x51\xb0\x13\x5d\x49\x6e\x5c\x06\x00\xf1\ \x40\xc5\xc0\x32\xaf\xdd\xec\x7f\xa2\x6f\xbb\xee\x1a\xde\x05\xf1\ \x07\x8f\xdb\x00\x88\x36\xc7\x39\x03\x80\x78\xf0\xde\x01\x78\x91\ \xee\x00\x2c\xc6\xe0\xf0\xf3\x68\xa3\x89\x1b\xc9\xcd\xd2\x00\x20\ \x1e\xa8\x18\x08\x1e\xc4\xdf\x07\x3c\xca\x65\x6e\xcc\x17\xd5\x00\ \x20\x1e\xfc\xd7\x80\xf4\x44\x5d\x22\x23\x3d\x8c\xc1\xb1\x73\x0e\ \x7c\xaa\x2b\xc9\xcd\xd4\x00\x20\x1e\xa8\x18\x08\x9e\xfa\x5a\xb1\ \xe9\x15\x88\xbf\xc7\x79\x74\xa4\xd9\x8d\xf9\xa2\x9e\x02\x40\x3c\ \xf8\x99\x19\xe9\x21\xba\x03\x70\x2f\x57\x57\x21\x4c\x7e\xcb\x76\ \xc0\x4e\x26\xb7\xb2\x06\x00\xc9\x08\x15\x03\xc1\x83\xf8\xfb\x88\ \x47\x45\xcd\xdc\x98\x2f\x96\xed\x80\x11\x8f\xbd\x5d\x7f\xd9\xf7\ \xa7\x32\xd2\x5c\xba\x03\x30\x1b\xe2\x6f\xa7\x08\xcc\x54\x57\x92\ \x5b\x49\x03\x80\x64\x84\x8a\x81\xe0\x41\xfc\x7d\xc6\xa3\xb2\xe6\ \x6e\xcc\x17\xdb\x06\x20\xac\xe2\xaf\x19\x80\x44\x5a\xea\xa9\x4b\ \x66\x63\x37\x97\xfd\xe1\x7d\x72\xb1\x01\x08\xf9\xe4\xe7\x35\x00\ \xd5\x26\xcb\x22\x03\x80\x64\x84\x8a\x81\x10\x7f\x88\xbf\x0f\x79\ \xba\x01\x10\x3d\x5f\x6c\x19\x80\x30\xc6\x83\xba\xfc\xf6\xef\x35\ \x00\xc9\x4c\xec\x16\x7a\x04\x70\x5d\xc9\x6f\xe8\x37\xf4\x12\xc6\ \xe4\xb7\x65\x00\x9c\x48\x96\x79\x06\x00\xc9\x08\x15\x03\x21\xfe\ \x10\x7f\x9f\xf2\xc8\x00\xb8\x31\x5f\xb8\x0d\x40\x68\xc5\xbf\xd0\ \x00\x48\xd7\xd6\xb1\xe7\x00\x3f\x2b\x29\xfe\x7d\x06\x03\x30\x07\ \x93\x9f\xd7\x00\x38\x95\x2c\x73\x06\x00\xc9\x08\x15\x03\x21\xfe\ \x10\x7f\x1f\xf3\x68\x0f\x80\x1b\xf3\x85\xcb\x00\x84\x31\x1e\x7d\ \x9a\x9e\x1b\x0d\x00\xfb\x6f\xec\xf1\xff\x45\x75\xa9\xb4\xf4\xdd\ \xa2\x67\x04\x85\x06\x00\x93\x9f\xcb\x00\x38\x99\x2c\x55\x03\x80\ \xe4\x81\x8a\x81\x10\x7f\x88\xbf\xcf\x79\x74\x0a\xc0\x8d\xf9\x62\ \x69\x00\xc2\x18\x0f\x5d\xc3\x75\x03\x30\xb0\xf7\xbf\x27\xb2\xd2\ \x39\xb4\x07\xe0\xe4\x7c\xf1\x37\x18\x80\x3e\x4c\x7e\x5e\x03\xe0\ \x74\xb2\x54\xbb\x01\x22\x79\x04\xac\x62\xe0\x54\x4f\x55\x0c\x84\ \xf8\x83\xe7\x06\xcf\xaa\x1d\xb0\x53\xf3\xc5\xd4\x00\x84\x59\xfc\ \x8d\x06\xc0\xf8\x35\x4c\xfb\xeb\x3a\xb3\xd2\xa4\xdc\x37\x18\x0d\ \x40\x3f\x26\x3f\xaf\x01\x10\x91\x2c\xe9\xb6\x19\x92\x47\x10\x2b\ \x06\x4e\xf5\x54\xc5\x40\x88\x3f\x78\xa2\x79\x76\x0d\x40\xa5\xf3\ \xa5\xac\x01\x08\x73\x3c\x74\x03\x50\x28\xfe\xea\x23\x00\x79\x62\ \x5d\x2a\x3b\xb6\x5d\xfd\x86\x42\x03\x80\xc9\xcf\x65\x00\x44\x25\ \x4b\xda\x38\x83\xe4\x11\xd4\x8a\x81\x27\xa2\x62\x20\xc4\x3f\x34\ \x3c\x3b\x06\xa0\x9a\xf9\x52\xd2\x00\x84\x3d\x1e\x73\xca\xdf\xc9\ \x27\xed\xaf\xeb\xcc\x48\x9f\xce\x33\x00\x03\x55\x56\x17\x0a\xc1\ \x6d\x5c\x37\x92\x65\x9e\x01\x40\x32\x0a\x64\x57\xc9\xb5\xeb\x57\ \x41\xfc\x21\xfe\x81\xe7\xf1\x1a\x80\x6a\xe7\x5f\x91\x01\x40\x3c\ \x4c\xf7\xf0\x91\xf6\xd7\x75\x0c\x1d\x1c\xcd\x33\x00\x10\x7f\x2e\ \x03\x20\x3a\x59\xe6\x0c\x00\x92\x51\xa0\x1b\x4b\x6d\xda\xbe\x01\ \xe2\x0f\xf1\x0f\x34\x8f\xc7\x00\x38\x31\xff\xf2\x0c\x00\xe2\x61\ \xb9\x81\x9f\xb4\xbf\x8e\x5e\xac\x22\xd0\x86\xaa\xeb\x0a\x87\xe8\ \x19\xae\x1b\xc9\x52\xdd\x03\x80\xe4\x11\x8a\xde\x12\xef\x7f\xb0\ \x11\xe2\x0f\xf1\x0f\x2c\xcf\xca\x00\x38\x35\xff\x72\x06\x00\xf1\ \xe0\xe1\xad\xaf\xd3\x5f\xcc\x00\x2c\x85\xf8\x73\x1a\x00\xd6\x70\ \xc2\x8d\x64\xa9\x9e\x02\x40\x3c\x42\x53\x5e\x9a\xd7\x04\x40\xfc\ \x31\x5f\xfc\xc6\x33\x33\x00\x4e\xce\x3f\xd5\x00\x20\x1e\x5c\x3c\ \x56\x03\x60\x69\xce\x00\x24\xd3\xf2\x83\x18\x1c\xfe\x0d\x5c\x6e\ \x24\x4b\xcb\x76\xc0\x88\x47\xe0\x2a\x4c\x5a\x99\x00\x88\x3f\xe6\ \x8b\x1f\x79\xe5\x0c\x80\xd3\xf3\x4f\xed\x06\x88\x78\xf0\xf1\x98\ \xe6\xef\x35\x00\x19\x69\x06\x06\x87\x8f\x67\x34\x00\x22\x93\xa5\ \x6d\x03\x80\x64\x14\x88\x22\x53\xe5\x4c\x00\xc4\x1f\xf3\xc5\xaf\ \xbc\x52\x06\x40\xc4\xfc\xa3\xdc\x8c\x78\x70\x33\x66\xe4\x0c\x40\ \x2a\x2b\x5d\x8f\xc1\xe1\xdf\xbd\xed\x46\xb2\xb4\x65\x00\x90\x8c\ \x02\xc3\x3b\x77\xa8\xbb\xc8\x04\x40\xfc\x31\x5f\xfc\xcc\x2b\x34\ \x00\xa2\xe6\x5f\x91\x01\x40\x3c\xcc\xae\xeb\xf6\xee\x01\xc8\x4a\ \xe7\x63\x70\xf8\x78\x34\xc9\xdc\x48\x96\xdc\x06\x00\xc9\x28\x70\ \x3c\xa3\x09\x80\xf8\x63\xbe\xf8\x9d\x67\x34\x00\x22\xe7\x5f\x9e\ \x01\x40\x3c\xcc\xf7\x00\x30\xcd\x37\x3e\x02\x38\x1e\x83\xc3\x7f\ \x74\xcb\x8d\x64\xc9\x65\x00\x10\x8f\xc0\xf2\xc8\x04\xd0\x11\x41\ \x88\x3f\xe6\x8b\xdf\x79\xba\x01\x10\x3d\xff\x72\x06\x00\xf1\xe0\ \xb9\x8e\xcf\x19\x80\xae\xac\x74\x18\x06\x87\x8f\x47\x1b\x4d\xdc\ \x48\x96\x96\x06\x00\xf1\x08\x3c\xef\xbb\x7f\x99\xaa\x16\x0b\x82\ \xf8\x63\xbe\xf8\x99\x47\xb9\xcc\x8d\xf9\xa7\x1a\x00\xc4\x83\xeb\ \xea\xca\x48\x87\x4d\x9c\xd8\x31\x62\xcf\x1e\x80\xde\xf6\x03\x30\ \x38\xfc\xe7\xb6\xdd\x48\x96\xa6\x06\x00\xf1\x08\x0d\x6f\x1a\x99\ \x80\x0d\xab\x21\xfe\x98\x2f\xbe\xe5\xd1\x91\x66\x37\xe6\x9f\x7a\ \x0a\x00\xf1\xe0\xbb\x6e\x1f\x77\x20\x33\x00\xfb\xec\xb9\x05\xa0\ \xd4\x8d\x60\xff\xb8\xc5\xb4\xab\x10\x26\xbf\x65\x3b\x60\x27\x93\ \x65\x59\x03\x80\x64\x14\x3a\x1e\x99\x80\xf7\x77\x6c\x84\xf8\x63\ \xbe\xf8\x92\x47\x45\xcd\xdc\x98\x7f\x96\xed\x80\x11\x0f\xbd\xeb\ \xef\x96\x71\x17\xb4\x45\xf6\x1a\x80\x3d\xfb\x00\x96\x40\xfc\xf9\ \x8a\xb6\xb8\x91\x2c\x4b\x1a\x00\x24\xa3\xd0\xf2\xbe\xc7\xf6\x04\ \x6c\xfe\x70\x13\xc4\x1f\xf3\xc5\x77\x3c\x2a\x6b\xee\xc6\xfc\xb3\ \x6d\x00\xc2\x29\xfe\x74\x2d\x65\xe2\x5f\x5f\x68\x00\x06\x8b\x7e\ \x78\x9f\x5c\x6c\x00\x42\x3e\xf9\x79\x0d\x40\xb5\xc9\xb7\xc8\x00\ \x20\x19\x85\x9e\x67\xc7\x04\x40\xfc\xc1\xf3\x0a\x4f\x37\x00\xa2\ \xe7\x9f\x2d\x03\x10\xc6\x78\x50\x97\xdf\x3d\xdd\x7e\xe7\x6a\x06\ \x60\x84\xe1\x28\xa0\xfc\x9b\xbc\x6f\xe8\x37\xf4\x12\xc6\xe4\xb7\ \x65\x00\x9c\x48\xbe\x79\x06\x00\xc9\x08\x3c\x1b\x26\x00\xe2\x0f\ \x9e\x97\x78\x64\x00\xdc\x98\x7f\xdc\x06\x20\xb4\xe2\xbf\xc7\x00\ \x24\x06\xe2\xbf\x23\x03\x50\x67\x7c\x25\x32\xb1\x73\xf3\xc4\xbf\ \xcf\x60\x00\xe6\x60\xf2\xf3\x1a\x00\xa7\x92\x6f\xce\x00\x20\x19\ \x81\x67\xc3\x04\x40\xfc\xc1\xf3\x1a\x8f\xf6\x00\xb8\x31\xff\xb8\ \x0c\x40\x18\xe3\xd1\xa7\xe9\xb9\x6e\x00\xfa\xa4\xf3\xea\x0a\x5f\ \x9d\x59\x69\x52\xee\x19\x41\xa1\x01\xc0\xe4\xe7\x32\x00\x4e\x26\ \x5f\xd5\x00\x20\x79\x80\x67\xc3\x04\x40\xfc\xc1\xf3\x22\x8f\x4e\ \x01\xb8\x31\xff\x2c\x0d\x40\x18\xe3\xa1\x6b\xb8\x6e\x00\x98\xbe\ \x77\x66\xa4\x49\x45\x06\x20\x39\xd0\x76\xf0\x1e\xf1\x37\x18\x80\ \x3e\x4c\x7e\x5e\x03\xe0\x74\xf2\x55\xbb\x01\x22\x79\x80\xe7\xc3\ \x8a\x81\x10\x7f\xf0\x8c\x3c\xab\x76\xc0\x4e\xcd\x3f\x53\x03\x10\ \x66\xf1\x37\x1a\x00\xf5\xbf\xb5\x1d\x5c\x64\x00\x4e\x39\xe5\xdf\ \x1b\x98\x01\xd8\x96\x33\x00\xfd\x98\xfc\xbc\x06\x40\x44\xf2\xa5\ \xdb\x66\x48\x1e\xe0\xf9\xad\x62\x20\xc4\x1f\xbc\x42\x9e\x5d\x03\ \x50\xe9\xfc\x2b\x6b\x00\xc2\x1c\x0f\xdd\x00\xe8\xe2\x9f\x91\xb6\ \x5d\x76\x59\xdd\x3e\x79\xe2\x4f\xbb\x01\x69\x53\x00\xfb\xc6\xe7\ \x72\x06\x00\x93\x9f\xcb\x00\x88\xfa\xe4\x45\x1b\x67\x90\x3c\xc0\ \xf3\x53\xc5\x40\x88\x3f\x78\xa5\x78\x76\x0c\x40\x35\xf3\xaf\xa4\ \x01\x08\x7b\x3c\xe6\xe4\xdf\xc9\x4f\x64\xa4\x67\x8a\x3e\xfd\xd3\ \x79\x40\xd5\x00\xf4\xcb\x3d\xea\x63\x80\x0c\x26\x3f\x8f\x01\x10\ \x79\xdb\x35\xcf\x00\x20\x19\x81\x67\xc1\xd3\x4d\x00\xc4\x1f\x3c\ \xaf\xf1\x78\x0d\x40\xb5\xf9\xb4\xc8\x00\x20\x1e\xa5\xf6\xf0\xcd\ \x2a\x6b\x00\x12\x7d\xf1\x4b\x21\xfe\x7c\x06\x40\xf4\x33\xd7\x9c\ \x01\x40\x32\x02\xcf\x46\xa3\x2a\x7a\x1c\x00\xf1\x07\xcf\x4b\x3c\ \x1e\x03\xe0\x44\x3e\xcd\x33\x00\x88\x47\xc9\x0d\xfc\x89\xb4\x7c\ \x49\xf9\x3b\x00\x19\xe9\x04\x4c\x7e\x6b\x03\xe0\xc6\x86\x2b\x75\ \x0f\x00\x92\x07\x78\x15\xf4\xaa\xd0\x37\x06\x42\xfc\xc1\xf3\x02\ \xcf\xca\x00\x38\x95\x4f\x73\x06\x00\xf1\x28\xcf\xcb\x4a\x27\x94\ \x32\x00\x6a\x45\xa0\xae\x81\xd6\xcf\x63\xf2\x5b\x18\x00\xd6\x70\ \xc2\x8d\x0d\x57\xea\x29\x00\x24\x0f\xf0\x2a\x2c\x57\xcd\x6b\x02\ \x20\xfe\xe0\x89\xe6\x99\x19\x00\x27\x3f\x4c\xa9\x06\x00\xf1\x30\ \xe5\x91\xc6\xd7\x95\x7b\x75\xf7\x76\xd3\x5d\x80\x6d\x98\xfc\xe5\ \x79\x74\x9b\xd5\x8d\xdd\xd6\x96\xed\x80\x11\x0f\xf0\x2c\x2a\x56\ \x7e\x30\xfc\x81\x30\xf1\x5f\xbd\xf5\x4d\x88\x3f\x78\x5c\xbc\x72\ \x06\xc0\xe9\x3b\xa9\x6a\x37\x40\xc4\xc3\x8c\xb7\x95\x34\xbe\xce\ \xec\xc5\xbe\xf9\x09\x4c\xfe\xf2\x3c\xa3\x01\x10\xb9\xe1\xca\xb6\ \x01\x40\x32\x02\xaf\xb0\x58\xd0\x43\x27\x29\xbb\xd9\xff\x9c\x4e\ \xbe\xdb\x77\x6d\x83\xf8\x83\xc7\xcd\x2b\x65\x00\x44\x3c\x46\xa5\ \xdc\x8c\x78\x98\x7e\xcf\x13\x75\x56\xaf\x44\x46\xbe\x05\x93\xbf\ \x3c\x4f\x37\x00\xa2\x77\x5b\xdb\x32\x00\x48\x46\xe0\x95\xb9\xae\ \x59\xfc\x13\x47\x93\xef\xf0\xee\x61\xe5\x94\xbf\x4e\x44\x3c\xc0\ \xe3\xe6\x15\x1a\x00\x51\x7b\xa8\x8a\x0c\x00\xe2\x51\xf0\xfc\x3f\ \x76\xb3\xa5\x01\x48\x66\x62\xd3\x30\xf9\xcb\xf3\x68\x92\xb9\x71\ \xd4\x8a\xdb\x00\x20\x19\x81\x67\x71\xdd\xf2\xc2\xb5\x8e\x89\xff\ \xf7\x86\x4e\x42\x3c\xc0\xb3\xc5\x33\x1a\x00\x91\x1b\xa8\xf3\x0c\ \x00\xe2\x51\xe2\x8a\x4d\xb3\x34\x00\xa9\xc1\xf8\x78\x4c\x7e\xf3\ \xa3\x56\x6e\x9c\xb3\xe6\x32\x00\x88\x07\x78\x9c\xd7\xb5\x4f\x5d\ \xa8\xec\xda\xb5\xab\xe2\xe4\xbb\x63\xd7\x76\xe5\x8c\xfb\xbb\x10\ \x0f\xf0\x6c\xf3\x74\x03\x20\xfa\xf4\x54\xce\x00\x20\x1e\xa5\x37\ \x00\x66\xc6\x7e\xd1\xd2\x00\x74\xf7\x1e\x31\x8a\x7d\xf1\x2e\x4c\ \xfe\xd2\x3c\xda\x68\xe2\xc6\x39\x6b\x4b\x03\x80\x78\x80\x67\x93\ \xd7\x9d\xf9\x7f\xca\xab\x6f\xbf\x64\x3b\xf9\x2e\x5e\xfb\x88\x92\ \xca\xc8\x88\x07\x78\x15\xf1\x28\x97\xb9\x71\x74\x5a\x35\x00\x88\ \x47\xb9\x6b\x17\x69\x7b\xa9\xd3\x7f\x25\x1e\x03\x48\xcf\x63\xf2\ \x97\x3f\x67\xed\x46\x91\x15\x53\x03\x80\x78\x80\x57\x05\xef\xf4\ \x79\x93\x95\x67\x57\x2d\x56\x3e\xd8\xb9\xc3\x74\xa3\xdf\xa2\xd5\ \x0f\x28\xc7\xcd\x3d\x0c\xe3\x07\x5e\x55\x3c\x3a\xd2\xec\xc6\xd1\ \x69\xf5\x14\x00\xe2\x51\xee\x7a\xae\xb0\xf4\x3f\xd5\xff\x29\xbd\ \x11\x30\x2d\xdd\x56\xd4\x55\x08\x93\xdf\xb2\x1d\xb0\x93\xbb\xad\ \xcb\x1a\x00\x24\x23\xf0\x1c\xe4\x75\x65\x5b\x95\xff\x59\x74\xa6\ \x72\xe3\x73\x57\x2a\xbf\x7b\xf6\x32\x36\xbf\x4f\xc4\xf8\x81\xe7\ \x28\x8f\x8a\x9a\xb9\x71\x74\xda\xb2\x1d\x70\x88\xe3\x41\x9a\x6e\ \x10\xff\x88\xa9\x01\x48\x66\xe4\xb3\x21\xfe\xe5\x8b\xac\xb8\x51\ \x61\xad\xa4\x01\x40\x32\x02\x0f\x3c\xf0\x7c\xc6\xa3\xb2\xe6\x6e\ \x1c\x9d\xb6\x6d\x00\x42\x15\x0f\xf9\x6c\x4d\xfc\x1b\xb4\xab\xbc\ \x01\x48\x65\xc7\xb6\xab\x3f\xa4\x4f\x2e\x36\x00\x21\x9f\xfc\xbc\ \x06\xa0\xda\x67\x5e\x45\x06\x00\xc9\x08\x3c\xf0\xc0\xf3\x21\x4f\ \x37\x00\xa2\x4f\x4f\xd9\x32\x00\x21\x8b\x47\x57\x9f\xd4\xce\x04\ \xbf\x91\x5d\x23\x0d\x06\xa0\xf4\x1e\x80\x2f\xcf\xec\x68\x60\xe2\ \xbf\x25\xd7\x4b\x18\x93\xdf\x96\x01\x70\x62\xc3\x4b\x9e\x01\x40\ \x32\x02\x0f\x3c\xf0\x7c\xca\x23\x03\xe0\xc6\xd1\x69\x6e\x03\x10\ \xbe\x78\x6c\x99\x70\x6e\x47\x33\x13\xfc\xa8\xd1\x00\x94\x14\x7f\ \xed\x36\x41\x23\x13\xfe\x87\x73\x06\x60\x0e\x26\x3f\xaf\x01\x70\ \x6a\xb7\x6b\xce\x00\x20\x19\x81\x07\x1e\x78\x3e\xe6\xd1\x1e\x00\ \x37\x8e\x4e\x73\x19\x80\x30\xc6\x83\x69\x39\xd3\xf4\x51\x06\x03\ \x10\x31\x13\x7f\x72\x07\xd1\x44\x8f\x7c\x0d\xc4\xdf\x9e\x01\x70\ \xf2\xa8\x8b\x6a\x00\x90\x3c\xc0\x03\x0f\x3c\x9f\xf3\xe8\x14\x80\ \x1b\x47\xa7\x2d\x0d\x40\x38\xc5\x5f\x49\xcc\x8e\xff\xca\x60\x00\ \x1a\xca\xde\xfa\xd7\x76\x07\x92\x43\x88\x26\x67\xb4\x1e\xaf\xee\ \x01\xc0\xe4\xe7\x32\x00\x4e\x9f\x73\x55\xbb\x01\x22\x79\x80\x07\ \x1e\x78\x3e\xe7\x59\xb5\x03\x76\x2a\x9f\x9a\x1a\x80\x90\x8a\xbf\ \x7a\xdd\xd9\x76\xbc\x66\x00\x1a\xcd\xc4\xbf\x5e\x73\x07\xaa\x01\ \x98\x78\xd5\xf8\x8f\x33\xc8\x30\x26\xbf\xb5\x01\x10\x51\xe4\x82\ \x6e\x9b\x21\x79\x80\x07\x1e\x78\x7e\xe7\xd9\x35\x00\x95\xe6\xd3\ \xb2\x06\x20\xcc\xf1\x98\x23\x0f\x4f\xfc\xf9\x11\x9f\xd0\x3e\xfd\ \x8f\x30\xbb\xf5\x6f\x34\x00\xaa\x53\x60\x47\x07\x9e\xc6\xe4\x37\ \x37\x00\xa2\x2a\x5c\xd1\xc6\x19\x24\x0f\xf0\xc0\x03\xcf\xef\x3c\ \x3b\x06\xa0\x9a\x7c\x5a\xd2\x00\x84\x3d\x1e\x3d\xf2\x33\x4c\xcb\ \x9b\xca\x8a\xbf\x66\x00\xf6\x31\x18\x80\xdc\x33\x82\x54\x5a\xfa\ \x2d\x26\x7f\x79\x03\x20\xb2\xbc\x65\x9e\x01\x40\x32\x02\x0f\x3c\ \xf0\x7c\xca\xe3\x35\x00\xd5\xe6\xd3\x22\x03\x80\x78\x28\x89\x9e\ \xf8\x8d\x65\xcf\xfb\x97\x30\x00\x11\xa3\x53\x60\xd0\xe3\x31\xf9\ \x4b\x1b\x00\xd1\xb5\xad\x73\x06\x00\xc9\x08\x3c\xf0\xc0\xf3\x31\ \x8f\xc7\x00\x38\x91\x4f\xf3\x0c\x00\xe2\xa1\x3e\xff\x4f\xf5\xcb\ \xc7\x5b\x36\x00\x32\x18\x80\xbc\xdb\x04\x13\x06\xbe\xf0\x51\x06\ \xdf\x8d\xc9\x9f\x6f\x00\xdc\x68\x6c\xa1\xee\x01\x40\xf2\x00\x0f\ \x3c\xf0\x7c\xce\xb3\x32\x00\x4e\xe5\xd3\x9c\x01\x40\x3c\x74\xde\ \x6e\xd2\x70\x1e\x03\x50\xf6\xf9\x80\xe5\x3e\x80\x90\x0d\x36\x35\ \x9c\x70\xa3\xb1\x85\x7a\x0a\x00\xc9\x03\x3c\xf0\xc0\xf3\x39\xcf\ \xcc\x00\x38\xf9\x61\x4a\x35\x00\x88\xc7\x5e\x5e\x5a\x7a\xaa\xae\ \xda\x57\x32\x1d\xfb\x35\x26\xff\x5e\x1e\xb5\x9c\x74\xa3\xb1\x85\ \x65\x3b\x60\xc4\x03\x3c\xf0\xc0\xf3\x01\xaf\x9c\x01\x70\xfa\x4e\ \xaa\xda\x0d\x10\xf1\xd8\xcb\x63\xda\x5d\xb5\x01\x48\x64\x63\x49\ \x4c\xfe\xbd\x3c\xa3\x01\x10\x59\xde\xd2\xb6\x01\x40\x32\x02\x0f\ \x3c\xf0\x3c\xc8\x2b\x65\x00\x44\x3c\x46\xa5\xdc\x8c\x78\xec\xfd\ \x1a\xd2\xee\xaa\x0d\x40\x77\xef\x11\xa3\x18\x6c\x07\x26\xbf\x9c\ \x67\x00\x44\xd7\xb6\xb6\x65\x00\x90\x8c\xc0\x03\x0f\x3c\x8f\xf2\ \x0a\x0d\x80\xa8\x3d\x54\x45\x06\x20\xdc\xf1\xd8\x41\xda\x5d\xe7\ \xc4\x2b\x99\x89\x3d\x80\xc9\xbf\xd7\x00\xb8\xd1\xd8\x82\xdb\x00\ \x20\x19\x81\x07\x1e\x78\x1e\xe6\x19\x0d\x80\xc8\x0d\xd4\x79\x06\ \x20\xf4\xf1\x88\x3d\x50\xe7\xd4\x2b\x95\x91\x7e\x84\xc9\xbf\xd7\ \x00\xb8\xd1\xd8\x82\xcb\x00\x20\x1e\xe0\x81\x07\x9e\xc7\x79\xba\ \x01\x10\x7d\x7a\x2a\x67\x00\x10\x0f\x25\x91\x96\x7e\xe8\xa0\x01\ \x88\x8d\xc5\xe4\xdf\x73\xd1\x46\x13\x37\x1a\x5b\x58\x1a\x00\xc4\ \x03\x3c\xf0\xc0\xf3\x01\x8f\x72\x99\x1b\x47\xa7\x55\x03\x80\x78\ \xa8\x17\x69\x76\x35\xa7\xff\xf2\x5e\xf2\x2f\xc6\xd6\xb3\x92\x82\ \x6f\x60\xf2\x5b\xb7\x03\x76\x6a\xb7\xab\xa9\x01\x40\x32\x02\x0f\ \x3c\xf0\x7c\xc2\xa3\x23\xcd\x6e\x1c\x9d\x56\x4f\x01\x20\x1e\x74\ \xfb\x7f\x65\x9d\x52\x37\xc2\x4c\xf8\xb5\xba\x3f\xfb\xf0\x16\x09\ \x6a\x4e\xdc\x13\xbf\x15\x93\xdf\xbe\x01\xa8\xd4\xf9\x96\x35\x00\ \x48\x46\xe0\x81\x07\x9e\x8f\x78\x54\xd4\xcc\x8d\xa3\xd3\x96\xed\ \x80\x43\x12\x8f\x44\x56\xba\xc9\x42\xfc\x23\x5c\x06\x40\x13\xff\ \xd1\xec\x6a\xe9\xbc\xbd\xed\x24\x4c\x7e\x7b\x06\xa0\x9a\xdb\x5e\ \x25\x0d\x00\x92\x11\x78\xe0\x81\xe7\x33\x1e\x95\x35\x77\xe3\xe8\ \xb4\x6d\x03\x10\xd0\x78\x30\x03\x30\xd9\x44\xfc\xf5\x7e\x3f\xe6\ \x06\x40\xfb\x62\xea\x22\xd4\x4c\x06\xa0\xeb\x9c\xa3\x0f\x64\x3f\ \x7c\x5b\xd8\x27\x3f\xaf\x01\xa8\xf6\x99\x57\x91\x01\x40\x32\x02\ \x0f\x3c\xf0\x7c\xc8\xd3\x0d\x80\xe8\xd3\x53\xb6\x0c\x40\x70\xe3\ \xb1\xb5\xd4\xf1\x3f\x4d\xcf\x1b\xb5\x6e\xbf\x0d\xa5\x4a\xff\x17\ \x7e\x71\x54\xfb\xf4\xaf\x1a\x00\xba\xd8\x0f\x4f\x87\x7d\xf2\xf3\ \x18\x00\x27\x36\xbc\xe4\x19\x00\x24\x23\xf0\xc0\x03\xcf\xa7\x3c\ \x32\x00\x6e\x1c\x9d\xe6\x36\x00\xc1\x8e\xc7\x40\x99\x3b\xf9\x51\ \xed\xca\x19\x00\x33\xf1\x27\xa7\x30\xca\x60\x00\xe8\xda\x87\xed\ \x2c\x3c\x35\xec\x93\xdf\xca\x00\x38\xb5\xdb\x35\x67\x00\x90\x8c\ \xc0\x03\x0f\x3c\x1f\xf3\x68\x0f\x80\x1b\x47\xa7\xb9\x0c\x40\xc0\ \xe3\x41\x1a\x5d\x42\xfc\x9b\x34\x3d\xd7\x0d\x40\xa4\xce\xe2\x19\ \x41\xd4\x60\x00\x46\xeb\xcf\x0a\xb4\xee\x80\xbb\xc2\x3c\xf9\xcd\ \x0c\x80\x93\x47\x5d\x54\x03\x80\xe4\x01\x1e\x78\xe0\xf9\x9c\x47\ \xa7\x00\xdc\x38\x3a\x6d\x69\x00\x82\x1f\x8f\x5d\xc6\xee\x7f\x86\ \x3d\x7c\xa3\x0d\x06\xa0\xc1\xec\xd6\x7f\x44\x73\x08\xba\x01\x68\ \x2a\xdc\x28\xc0\x7e\xc8\xc2\x30\x4f\xfe\x72\x06\xc0\xe9\x73\xae\ \x6a\x37\x40\x24\x0f\xf0\xc0\x03\xcf\xe7\x3c\xab\x76\xc0\x4e\xe5\ \x53\x53\x03\x10\x86\x78\xa4\xe5\x07\x0b\x4f\xef\x69\x97\x6e\x00\ \x1a\xcd\xc4\xbf\x5e\x73\x07\x23\x0d\xcf\x0b\x8a\x76\x09\x26\x32\ \xb1\x73\xc3\x3c\xf9\x4b\x19\x00\x11\x45\x2e\xe8\xb6\x19\x92\x07\ \x78\xe0\x81\xe7\x77\x9e\x5d\x03\x50\x69\x3e\x2d\x6b\x00\x42\x13\ \x8f\xd8\x34\x83\xf8\xb7\x68\x97\x6e\x00\xa2\x56\x9b\xfe\x8c\x06\ \xa0\xac\x53\x48\xf4\x1f\xf2\x09\xf6\xc3\x76\x87\x75\xf2\x17\x1a\ \x00\x51\x15\xae\x68\xe3\x0c\x92\x07\x78\xe0\x81\xe7\x77\x9e\x1d\ \x03\x50\x4d\x3e\x2d\x69\x00\xc2\x13\x8f\xdd\xa4\xcd\x06\xf1\xdf\ \xd7\x60\x00\x9a\x4c\xab\xfe\x69\xdf\x54\x6f\x38\x23\x68\x5a\x22\ \x30\x91\x91\x1e\x0e\xeb\xe4\x37\x1a\x00\x91\xe5\x2d\xf3\x0c\x00\ \x92\x11\x78\xe0\x81\xe7\x53\x1e\xaf\x01\xa8\x36\x9f\x16\x19\x80\ \x30\xc5\x23\x2b\x3d\x54\x20\xfe\xba\x01\x18\xcd\x5b\xf0\xa7\x5e\ \xdb\x03\x60\x59\x1f\xb8\xe4\x63\x80\x90\x0c\xb6\x6e\x00\x44\xd7\ \xb6\xce\x19\x00\x24\x23\xf0\xc0\x03\xcf\xc7\x3c\x1e\x03\xe0\x44\ \x3e\xcd\x33\x00\x61\x8b\xc7\x40\xec\xdc\x02\xf1\xdf\x57\x3f\xbd\ \xc7\x5b\xee\xb7\x9e\xb7\x39\x40\xd7\xbc\xd8\x81\xec\x87\x0e\x87\ \x71\xb0\x69\x92\xb9\xd1\xd8\x42\xdd\x03\x80\xe4\x01\x1e\x78\xe0\ \xf9\x9c\x67\x65\x00\x9c\xca\xa7\x39\x03\x10\xbe\x78\x0c\x4f\xb8\ \xfa\xb0\xcf\x16\x88\x7f\x0b\x97\xf8\xdb\xea\x0a\x64\xec\x10\x98\ \x96\xee\x0b\xe3\x60\x53\xc3\x09\x37\x1a\x5b\xa8\xa7\x00\x90\x3c\ \xc0\x03\x0f\x3c\x9f\xf3\xcc\x0c\x80\x93\x1f\xa6\x54\x03\x10\xc2\ \x78\xa4\x66\xc9\x0b\x2b\x16\xff\x4a\x5f\x89\x8c\x7c\x7a\x18\x07\ \x9b\x5a\x4e\xba\xd1\xd8\xc2\xb2\x1d\x30\x92\x11\x78\xe0\x81\xe7\ \x03\x5e\x39\x03\xe0\xf4\x9d\x54\xb5\x1b\x60\x08\xe3\x91\x98\xde\ \x36\xcd\x55\xf1\x57\xeb\x01\xcc\xfa\xc2\x7e\xec\x87\x6f\x0f\xdb\ \x60\x1b\x0d\x80\xc8\xf2\x96\xb6\x0d\x00\x92\x11\x78\xe0\x81\xe7\ \x41\x5e\x29\x03\x20\xe2\x31\x2a\xe5\xe6\xd0\xc5\xa3\x47\xde\xde\ \xf9\xd3\x71\x9f\x72\x55\xfc\xf5\xdd\x86\xc9\x59\xf1\x81\xb0\x4d\ \x7e\xdd\x00\x88\xae\x6d\x6d\xcb\x00\x20\x19\x81\x07\x1e\x78\x1e\ \xe5\x15\x1a\x00\x51\x7b\xa8\x8a\x0c\x40\x08\xe2\x91\xb8\x27\xde\ \x5f\x13\xf1\xa7\x1f\x9a\xfc\x73\xdb\xd4\xb0\x4d\x7e\x9a\x64\x6e\ \x34\xb6\xe0\x36\x00\x48\x46\xe0\x81\x07\x9e\x87\x79\x46\x03\x20\ \x72\x03\x75\x9e\x01\x08\x4b\x3c\x98\x06\xd7\x44\xfc\xe9\x9a\xf0\ \xcd\x8e\x8f\xb2\x5f\x62\x6d\x98\x26\x3f\x4d\x32\x37\x1a\x5b\x70\ \x19\x00\x24\x23\xf0\xc0\x03\xcf\xe3\x3c\xdd\x00\x88\x3e\x3d\x95\ \x33\x00\x61\x89\x47\x8f\xbc\x76\xc2\x69\x1d\xfb\xd7\x44\xfc\xf5\ \xdb\x0e\xc9\x01\xe9\xfa\x30\x4d\x7e\xda\x68\xe2\x46\x63\x0b\x4b\ \x03\x80\x64\x04\x1e\x78\xe0\xf9\x80\x47\xb9\xcc\x8d\xa3\xd3\xaa\ \x01\x08\x53\x3c\xee\x89\xff\xae\x1a\xf1\xe7\x3e\xfd\x57\x4e\xfc\ \xe9\xdf\x13\x83\x63\x63\x61\x9a\xfc\x56\xed\x80\x9d\xda\xed\x6a\ \x6a\x00\x90\x8c\xc0\x03\x0f\x3c\x9f\xf0\xe8\x48\xb3\x1b\x47\xa7\ \xd5\x53\x00\x21\x8a\x47\xa2\x3f\x26\x57\x2a\xfc\x5a\xdd\x1f\xee\ \x22\x41\xcd\x66\xe7\x0c\xd9\x91\xc0\xc7\xc2\x32\xf9\xed\x1a\x80\ \x4a\x9d\x6f\x59\x03\x80\x64\x04\x1e\x78\xe0\xf9\x88\x47\x45\xcd\ \xdc\x38\x3a\x6d\xd9\x0e\x38\x58\xf1\x78\xb4\x0a\xf1\x8f\x70\x19\ \x00\x43\x3f\xe1\x16\xb3\x73\x86\xec\x97\x39\x33\x2c\x93\xdf\x8e\ \x01\xa8\xe6\xb6\x57\x49\x03\x80\x64\x04\x1e\x78\xe0\xf9\x8c\x47\ \x65\xcd\xdd\x38\x3a\x6d\xdb\x00\xf8\x39\x1e\x4c\x73\x2b\x14\x7f\ \xbd\xdf\x8f\xb9\x01\xd0\xbe\xb8\x49\xfb\xf4\xdf\x62\x76\xd4\xa0\ \xa3\x37\xd6\xcc\x7e\xe1\xcd\x61\x98\xfc\xbc\x06\xa0\xda\x67\x5e\ \x45\x06\x00\xc9\x08\x3c\xf0\xc0\xf3\x21\x4f\x37\x00\xa2\x4f\x4f\ \xd9\x32\x00\xfe\x8e\xc7\x66\xd2\xdc\x0a\xc4\xbf\x51\xeb\xf6\xdb\ \x60\x5a\xfa\x5f\xfb\xe2\xa8\xf6\xe9\xbf\xd9\xd0\x5b\xb8\xac\x63\ \x48\x66\x63\x37\x87\x61\xf2\xf3\x18\x00\x27\x36\xbc\xe4\x19\x00\ \x24\x23\xf0\xc0\x03\xcf\xa7\x3c\x32\x00\x6e\x1c\x9d\xe6\x36\x00\ \x7e\x8f\x07\xd3\xda\x0a\x36\xf0\x47\xb5\x2b\x67\x00\xac\x9c\xc2\ \x28\x83\x01\xb0\xec\x2a\x94\xca\x8e\x6d\x0f\xc3\xe4\xb7\x32\x00\ \x4e\xed\x76\xcd\x19\x00\x24\x23\xf0\xc0\x03\xcf\xc7\x3c\xda\x03\ \xe0\xc6\xd1\x69\x2e\x03\x10\x80\x78\x90\xd6\xda\x14\xff\x26\x4d\ \xcf\x75\x03\x10\xb1\x7a\x46\x10\x35\x18\x80\xd1\xbc\x47\x0d\xd8\ \x2f\xf7\x68\xd0\x27\xbf\x99\x01\x70\xf2\xa8\x8b\x6a\x00\x90\x3c\ \xc0\x03\x0f\x3c\x9f\xf3\xe8\x14\x80\x1b\x47\xa7\x2d\x0d\x40\x30\ \xe2\xf1\xa8\x4d\xf1\xd7\x35\x5c\x37\x00\x0d\x66\xb7\xfe\x23\x9a\ \x43\xd0\x0d\x40\x93\x9d\x73\x86\x89\xb4\x74\x4a\xd0\x27\x7f\x39\ \x03\xe0\xf4\x39\x57\xb5\x1b\x20\x92\x07\x78\xe0\x81\xe7\x73\x9e\ \x55\x3b\x60\xa7\xf2\xa9\xa9\x01\x08\x48\x3c\x48\x63\x6d\x88\xbf\ \x7e\xf7\x5e\x37\x00\x8d\x66\xe2\x5f\xaf\xb9\x83\x91\x86\xe7\x05\ \xb6\x8a\x0c\x74\x0c\x1d\x1c\x4d\x66\xa5\x77\x82\x3c\xf9\x4b\x19\ \x00\x11\x45\x2e\xe8\xb6\x19\x92\x07\x78\xe0\x81\xe7\x77\x9e\x5d\ \x03\x50\x69\x3e\x2d\x6b\x00\x82\x12\x0f\xa6\xad\xa9\xf9\x9f\x6b\ \xb4\x51\xb7\xa7\xc5\x60\x00\xa2\x56\x9b\xfe\x8c\x06\xa0\x91\xbb\ \x4a\x50\xe1\x5e\x80\x01\xe9\x97\x41\x9e\xfc\x85\x06\x40\x54\x85\ \x2b\xda\x38\x83\xe4\x01\x1e\x78\xe0\xf9\x9d\x67\xc7\x00\x54\x93\ \x4f\x4b\x1a\x80\x00\xc5\x23\x91\x91\xae\xb4\x59\xb4\x4f\x37\x00\ \x4d\xa6\x7a\xae\x7d\x53\xbd\xe1\x8c\xe0\x88\x4a\xcb\x05\xa7\xae\ \x3f\x7c\x0c\xab\x51\xbc\x33\xa8\x93\xdf\x68\x00\x44\x96\xb7\xcc\ \x33\x00\x48\x46\xe0\x81\x07\x9e\x4f\x79\xbc\x06\xa0\xda\x7c\x5a\ \x64\x00\x82\x15\x8f\x9d\x53\xe6\xb6\x1e\x64\xb3\x62\x6f\x0b\xd7\ \x1e\x3e\x83\x01\x88\x54\x23\xfe\xb9\x2e\x81\xc6\x36\xc1\x01\x9b\ \xfc\xba\x01\x10\x5d\xdb\x3a\x67\x00\x90\x8c\xc0\x03\x0f\x3c\x1f\ \xf3\x78\x0c\x80\x13\xf9\x34\xcf\x00\x04\x2d\x1e\x59\xa9\xa7\x82\ \x72\xfd\xcd\x76\xca\xfd\xd6\x3b\x21\xfe\xaa\x01\xb8\xf9\xd0\x89\ \x41\x9d\xfc\x34\xc9\xdc\x68\x6c\xa1\xee\x01\x40\xf2\x00\x0f\x3c\ \xf0\x7c\xce\xb3\x32\x00\x4e\xe5\xd3\x9c\x01\x08\x60\x3c\xba\x32\ \x63\xbf\x58\x49\xaf\x1e\x67\xbb\x02\xd9\xe9\x12\x98\x96\x16\x05\ \x71\xf2\x53\xc3\x09\x37\x1a\x5b\xa8\xa7\x00\x90\x3c\xc0\x03\x0f\ \x3c\x9f\xf3\xcc\x0c\x80\x93\x1f\xa6\x54\x03\x10\xcc\x78\xfc\x5d\ \x98\xf8\x8b\x68\x11\xac\x76\x09\x4c\xc7\x4e\x0c\xe2\xe4\xa7\x96\ \x93\x6e\x34\xb6\xb0\x6c\x07\x8c\x64\x04\x1e\x78\xe0\xf9\x80\x57\ \xce\x00\x38\x7d\x27\x55\xed\x06\x18\xc0\xf1\x23\x2d\xf5\x95\xf8\ \xd3\x7f\xef\xee\xed\xae\x4f\xa5\xa5\x65\x41\x9b\xfc\x46\x03\x20\ \xb2\xbc\xa5\x6d\x03\x80\x64\x04\x1e\x78\xe0\x79\x90\x57\xca\x00\ \x88\x78\x8c\x4a\xb9\x39\x68\xe3\x47\x1a\x4a\x5a\xea\x2b\xf1\xcf\ \x1d\x09\x4c\xcb\x67\x05\x6d\xf2\xeb\x06\x40\x74\x6d\x6b\x5b\x06\ \x00\xc9\x08\x3c\xf0\xc0\xf3\x28\xaf\xd0\x00\x88\xda\x43\x55\x64\ \x00\x02\x30\x7e\xa9\x6c\xec\x3b\xbe\x14\xff\x3d\x77\x01\x8e\x18\ \xc5\xde\xc4\x9a\x20\x4d\x7e\x9a\x64\x6e\x34\xb6\xe0\x36\x00\x48\ \x46\xe0\x81\x07\x9e\x87\x79\x46\x03\x20\x72\x03\x75\x9e\x01\x08\ \xc6\xf8\xad\x2e\x2c\xfc\xe3\x1b\xf1\xdf\x5b\x1e\x38\xf6\x93\x20\ \x4d\x7e\x9a\x64\x6e\x34\xb6\xe0\x32\x00\x48\x46\xe0\x81\x07\x9e\ \xc7\x79\xba\x01\x10\x7d\x7a\x2a\x67\x00\x02\x32\x7e\xa4\x9d\xbe\ \x16\x7f\xf5\x31\xc0\xfc\xcf\xb5\xb0\x0a\x46\x1b\x82\x32\xf9\x69\ \xa3\x89\x1b\x8d\x2d\x2c\x0d\x00\x92\x11\x78\xe0\x81\xe7\x03\x1e\ \xe5\x32\x37\x8e\x4e\xab\x06\x20\x28\xe2\xcf\x34\x93\xb4\x53\xa4\ \xf8\x73\x9f\xfe\xab\xf6\x87\x27\xd3\xf2\x2f\x82\x32\xf9\xad\xda\ \x01\x3b\xb5\xdb\xd5\xd4\x00\x20\x19\x81\x07\x1e\x78\x3e\xe1\xd1\ \x91\x66\x37\x8e\x4e\xab\xa7\x00\x02\x32\x7e\xec\xd9\xff\x15\xa2\ \xc4\xdf\x50\xfa\x9f\xbb\x48\x50\x73\x35\x3f\x7c\xc2\xc0\x17\x3e\ \xca\xde\xd4\xe6\x20\x4c\x7e\xbb\x06\xa0\x52\xe7\x5b\xd6\x00\x20\ \x19\x81\x07\x1e\x78\x3e\xe2\x51\x51\x33\x37\x8e\x4e\x5b\xb6\x03\ \xf6\xcf\xf8\x6d\x26\xcd\x14\x28\xfe\x11\x2e\x03\x60\xe8\x27\xdc\ \x52\xed\x0f\x4f\x64\x62\xd7\x04\x61\xf2\xdb\x31\x00\xd5\xdc\xf6\ \x2a\x69\x00\x90\x8c\xc0\x03\x0f\x3c\x9f\xf1\xa8\xac\xb9\x1b\x47\ \xa7\x6d\x1b\x00\x8f\x8e\x1f\x69\xa5\x40\xf1\xd7\xfb\xfd\x98\x1b\ \x00\xed\x8b\x9b\xb4\x4f\xff\x2d\xd5\xfe\xf0\xd4\xf4\x43\x3f\xce\ \x06\x63\x8b\xdf\x27\x3f\xaf\x01\xa8\xf6\x99\x57\x91\x01\x40\x32\ \x02\x0f\x3c\xf0\x7c\xc8\xd3\x0d\x80\xe8\xd3\x53\xb6\x0c\x80\x77\ \xc7\x6f\x73\xaa\xb7\xfd\x00\x41\xe2\xdf\xa8\x75\xfb\x6d\x30\x2d\ \xfd\xaf\x7d\x71\x54\xfb\xf4\xdf\x6c\xe8\x2d\xbc\x4f\x35\x1b\x08\ \x93\x77\xc7\x7f\xed\xf7\xc9\xcf\x63\x00\x9c\xd8\xf0\x92\x67\x00\ \x90\x8c\xc0\x03\x0f\x3c\x9f\xf2\xc8\x00\xb8\x71\x74\x9a\xdb\x00\ \x78\x78\xfc\x52\x19\xe9\x2a\x01\xe2\xbf\x8f\xa6\xe7\x51\xa3\x01\ \xb0\x72\x0a\xa3\x0c\x06\xa0\xb9\x5a\xf1\xa7\x37\x91\xba\xfc\xd0\ \xff\xcb\x5a\x05\x6f\xf1\xf3\xe4\xb7\x32\x00\x4e\xed\x76\xcd\x19\ \x00\x24\x23\xf0\xc0\x03\xcf\xc7\x3c\xda\x03\xe0\xc6\xd1\x69\x2e\ \x03\xe0\xed\xf1\xdb\x3c\x65\xf6\x21\x1f\x13\x20\xfe\x4d\x9a\x9e\ \xeb\x06\x20\x62\xf5\x8c\x20\x6a\x30\x00\xa3\x9d\x10\x7f\xfd\x4a\ \xcc\x94\xaf\xf1\xf3\xe4\x37\x33\x00\x4e\x1e\x75\x51\x0d\x00\x92\ \x07\x78\xe0\x81\xe7\x73\x1e\x9d\x02\x70\xe3\xe8\xb4\xa5\x01\xf0\ \xf8\xf8\x25\x06\x62\x57\x08\x10\x7f\x5d\xc3\x75\x03\xd0\x60\x76\ \xeb\x3f\xa2\x39\x04\xdd\x00\x34\x39\x29\xfe\xea\xdf\x6f\x3b\x7c\ \x7f\xf6\x66\xdf\xf3\xeb\xe4\x2f\x67\x00\x9c\x3e\xe7\xfa\x9b\xa7\ \x2f\x45\xf2\x00\x0f\x3c\xf0\x7c\xcf\xfb\xed\x33\x97\xb9\x72\x74\ \xda\xd4\x00\x78\x7f\xfc\xde\xeb\xbc\xf8\xd0\x83\x1c\x16\x7f\xfd\ \xee\xbd\x6e\x00\x1a\xcd\xc4\xbf\x5e\x73\x07\x23\x0d\xcf\x0b\x9c\ \x15\x7f\x8d\x97\xcc\x4a\x3f\xf6\xeb\xe4\x9f\x36\x74\xa2\x2b\x8d\ \x2d\xfe\xf8\xe4\xaf\x90\x3c\xc0\x03\x0f\x3c\xdf\xf3\x6e\x7d\xf1\ \xd7\xae\x1c\x9d\xa6\xdc\xec\xdb\xf1\x9b\x19\xbf\xd8\x61\xf1\xd7\ \xf7\xed\xe9\x06\x20\x6a\xb5\xe9\xcf\x68\x00\x1a\xb9\xab\x04\x55\ \x50\x34\x48\xeb\x11\xf0\xa6\x1f\x27\xff\x99\xf7\x4f\x76\xa5\xb1\ \xc5\x7d\xaf\x0e\x22\x79\x80\x07\x1e\x78\xbe\xe7\xfd\x6d\xd5\x5f\ \x5d\x39\x3a\x4d\xb9\xd9\xa7\xe3\xb7\xaa\xeb\x9c\xa3\x0f\x74\x58\ \xfc\xf7\x35\x18\x80\x26\x53\x3d\xd7\xbe\xa9\xde\x70\x46\x50\x98\ \xf8\xef\xad\x0e\x28\x9d\xe9\xc7\xc9\x7f\xd2\xfc\xa3\x5c\x69\x6c\ \xf1\xde\xa6\x75\xca\x89\x03\x47\x22\x19\x81\x07\x1e\x78\xbe\xe5\ \x4d\x9d\x77\xa4\xb2\x63\xd7\x76\x57\x8e\x4e\x53\x6e\xf6\xe5\xf8\ \xdd\xd9\x7a\xae\x00\xf1\xd7\x59\xa3\x79\x0b\xfe\xd4\x6b\x7b\x00\ \x84\x8b\xff\x9e\xbb\x00\xdd\xf5\x6c\x10\x96\xf8\x6d\xf2\xa7\x32\ \xb2\xf2\xc1\xf0\x0e\x57\x6a\x5b\xcf\x7e\xf1\x56\x24\x23\xf0\xc0\ \x03\xcf\xb7\xbc\x81\xd7\xee\x74\x45\xfc\x29\x27\x53\x6e\xf6\xdd\ \xf8\xcd\x96\x5f\x4e\x4c\x9d\xf0\x11\x01\xe2\xbf\x2f\xf7\xe9\x3d\ \x83\x01\x70\x45\xfc\x73\xd5\x01\xb3\xd2\x64\x3f\x4e\xfe\xd7\x37\ \xbd\xea\x4a\x6d\xeb\x5d\xc3\xbb\x94\x8b\xff\x71\x0e\x92\x11\x78\ \xe0\x81\xe7\x3b\x1e\xe5\xae\xdd\xec\x7f\x6e\xd4\x4d\xf9\xe7\xfb\ \xaf\xf9\x72\xfc\x3a\x6f\x6f\x3b\x49\x90\xf8\xf3\xf3\x2a\x15\xfe\ \xaa\x7f\xb8\x52\x37\x82\x0d\xc8\x42\xbf\x4d\xfe\xfb\x5f\x9b\xeb\ \x4a\x6d\x6b\x7a\xd1\xed\xb3\x0b\x17\x9d\x89\x64\x04\x1e\x78\xe0\ \xf9\x86\x47\x39\x8b\xe7\xd6\xbf\x53\x77\x52\x69\x9f\x81\xef\xc6\ \x6f\x56\xfc\x6f\x1d\xc7\x1e\xb5\x5f\x4d\xc5\xbf\x16\x2d\x82\xf3\ \x4a\x04\x67\xc7\xb6\xb3\x81\xd9\xed\xa7\xe0\xfd\x89\xed\xd0\x77\ \x43\xfc\xf5\xd7\xae\xdd\xbb\x94\xdb\x96\xdc\xa0\x4c\xce\xb6\x22\ \x19\x81\x07\x1e\x78\x9e\xe5\x51\x8e\xa2\x5c\x45\x39\xcb\x2d\xf1\ \xa7\x17\xfd\x4c\x5f\x8d\x5f\x8f\xbc\x3b\x79\x53\xeb\x97\x42\x2d\ \xfe\xb9\x0d\x81\x59\xe9\x56\x3f\x05\xef\xfc\xfb\xbe\xe1\x9a\xf8\ \x1b\x5f\x2b\x37\x2d\x53\xae\x78\xfc\x7c\xa5\x2b\x1b\x47\x32\x02\ \x0f\x3c\xf0\x3c\xc3\xa3\x9c\x44\xb9\x69\x25\x7b\x3c\xea\xc6\x33\ \xff\xc2\xd7\x05\x0f\x9f\xe2\xaf\xf1\x9b\x15\xbf\x0b\xe2\xaf\xbd\ \xba\xfa\xe4\x4f\xfa\xa9\x51\xd0\x94\x39\xed\xca\xba\x4d\xef\xb8\ \x2a\xfe\xc6\xd7\xba\xed\x6f\x2b\xd9\x15\xf7\x28\xbf\x78\xfc\x07\ \xca\xb7\xee\x4f\x2a\x53\xb2\x6d\x48\x46\xe0\x81\x07\x9e\x6b\xbc\ \x29\x7d\xed\xca\xb7\xee\x4b\xaa\x39\x88\x72\x11\xe5\x24\xb7\xf2\ \x5f\xe1\x6b\xcb\x07\xef\xab\xbf\x8f\x6f\xc6\x8f\x95\xc3\x9f\x70\ \xf5\x61\x9f\x85\xf8\xe7\x35\x0a\x6a\xbd\xcc\x4f\x8b\xe9\xa1\x37\ \xe7\xd7\x44\xfc\xcb\xf1\xde\xdd\xf8\x8e\xf2\xf6\x86\xb5\xea\xf5\ \xee\xc6\xb7\x95\xcd\x3b\x36\x29\x5b\x3e\xdc\x6c\xfb\xa2\xef\xa3\ \xef\xd7\x59\xe0\x81\x07\x1e\x78\x46\xde\xba\x4d\xef\xd6\xec\xc3\ \x4f\x29\xde\x7d\xaf\x66\xfd\x65\xc6\x66\xb4\x5e\x0a\xf1\x2f\xe0\ \x75\x9e\x35\xfe\x63\xcc\x19\x2d\xf7\x8b\x93\x26\xe7\xeb\x15\xf1\ \x07\x0f\x3c\xf0\xc0\x0b\x2b\xef\xd2\x87\xcf\xf3\x8d\xf8\xa7\x66\ \xcb\xaf\x25\xff\x1c\x1b\x05\xf1\x2f\xd5\x28\xe8\xf6\xb6\xa9\x7e\ \xb9\x8d\x36\x65\xb0\x5d\xd9\xf4\xc1\x7a\x2c\x4e\xf0\xc0\x03\x0f\ \xbc\x1a\xf1\xd6\xac\x7f\x8b\x3d\x92\x3d\xd4\x3f\x8f\x61\xfa\xe3\ \x53\xbc\x22\xfe\xdc\xa7\xff\xdc\x10\x7f\x9d\x97\xcc\xc8\x59\xbf\ \x3c\x43\xeb\x59\x76\x2b\x16\x27\x78\xe0\x81\x07\x5e\x8d\x78\x77\ \x3f\x77\x93\x7f\xc4\x7f\x20\x96\xf5\xc8\x87\x6f\xbd\xf4\x3f\x77\ \x91\xa0\x66\x37\xc4\x9f\xfe\x7b\xe7\x60\xfc\x33\x6c\x10\xb7\xfb\ \x61\x03\xcd\x37\xfe\xf2\x15\x65\xe7\xf0\x87\x58\x9c\xe0\x81\x07\ \x1e\x78\x2e\xf3\x36\xbe\xbf\x41\xf9\x7a\xf6\x2b\x7e\xd9\x80\xb9\ \x9d\xb4\xcd\x23\xe2\x1f\xe1\x32\x00\x86\x7e\xc2\x2d\x6e\x88\x7f\ \xae\x42\x60\x46\xba\xc8\x2f\xbb\x67\x07\xd9\x0e\x58\x2c\x4e\xf0\ \xc0\x03\x0f\x3c\x77\x79\x73\x96\x4c\xf7\xcf\xe9\x8b\xac\xf4\x53\ \x8f\x88\xbf\xde\xef\xc7\xdc\x00\x68\x5f\xdc\xa4\x7d\xfa\x6f\x71\ \xb3\x5c\x61\x77\x6f\x6c\x24\x33\x01\x4b\xfd\x70\x74\xe6\x6b\x0b\ \x3a\x94\x6d\x3b\xb7\x62\x71\x82\x07\x1e\x78\xe0\xb9\xc4\xa3\x53\ \x4f\x27\x67\x3b\xfc\x72\xf4\x72\x09\x69\x9a\x07\xc4\xbf\x51\xeb\ \xf6\xdb\x60\x5a\xfa\x5f\xfb\xe2\xa8\xf6\xe9\xbf\xd9\xd0\x5b\xd8\ \xb5\xa3\x0b\x5d\x59\xf9\x68\xbf\x9c\x9b\x2d\xec\x77\x8d\xc5\x0e\ \x1e\x78\xe0\x81\x27\x8e\xf7\x47\x56\x8d\xd5\x3f\x45\x92\xe4\xa3\ \x3d\xb0\xe1\x3e\xaa\x5d\x39\x03\x60\xe5\x14\x46\x19\x0c\x40\x73\ \x2d\xce\x2d\xaa\x15\x02\x7d\x50\x34\x63\xca\x60\x9b\xb2\x7c\xe3\ \xcb\x58\x9c\xe0\x81\x07\x1e\x78\x82\x79\x4b\xd6\x3c\xbb\xa7\xf8\ \x99\x1f\x8a\x2e\x31\x0d\xf3\x80\xf8\x37\x69\x7a\xae\x1b\x80\x88\ \xd5\x33\x82\xa8\xc1\x00\x8c\xae\x55\xd1\x82\xc9\xf7\xca\xfb\xb3\ \x41\x7c\xdb\x0f\x15\xb3\xa6\x0d\x9d\xa8\x7c\xb0\x73\x07\x16\x3b\ \x78\xe0\x81\x07\x9e\x20\xde\xa6\xcd\x1b\x95\x69\x0b\x4f\xf4\x4b\ \xc5\xc5\xb7\x49\xc3\x6a\x2c\xfe\xba\x86\xeb\x06\xa0\xc1\xec\xd6\ \x7f\x44\x73\x08\xba\x01\x68\xaa\x75\xc5\xa2\x44\x5a\x3a\xc9\x2f\ \xe5\x32\x7f\xff\xf8\xe5\x58\xec\xe0\x81\x07\x1e\x78\x82\x78\x7f\ \x78\xf6\x4a\xdf\x94\x5b\x26\xed\xaa\xb1\xf8\xeb\x77\xef\x75\x03\ \xd0\x68\x26\xfe\xf5\x9a\x3b\x18\x69\x78\x5e\x50\xfb\x72\x85\xac\ \x65\x30\x1b\xc8\x8c\x1f\x6a\x65\xa7\x7a\xe3\xca\xbc\x57\xe6\x60\ \xb1\x83\x07\x1e\x78\xe0\x39\xcc\xbb\xff\x9f\x59\x25\x95\x91\xfd\ \x21\xfe\x19\x29\x4d\xda\x55\xe3\x3a\x3b\x2d\x06\x03\x10\xb5\xda\ \xf4\x67\x34\x00\x8d\xdc\x55\x82\x5c\x78\x33\x9d\x57\xb7\xff\x7b\ \xa2\x47\xde\xe8\x8f\x46\x41\xe3\x94\xc5\x6f\x2e\xc2\x62\x07\x0f\ \x3c\xf0\xc0\x73\x88\xf7\xfc\xbb\x4f\x2a\x5f\x1d\x3c\xd4\x2f\xe2\ \xbf\x21\xd1\x7f\xc8\x27\x3c\x50\x64\x4f\x37\x00\x4d\xa6\x7a\xae\ \x7d\x53\xbd\xe1\x8c\xa0\x67\xc4\x5f\xe7\x25\xee\x68\x9b\xe6\x97\ \x8a\x4f\x53\xef\x3d\x92\x6d\x0a\x7c\x09\x8b\x1d\x3c\xf0\xc0\x03\ \xaf\x4a\xde\x6b\x1b\x96\x2a\x53\xe7\x1d\xe9\x9f\x2e\x8b\xd9\xd8\ \x69\x1e\xa9\xb0\xdb\xc2\xb5\x87\xcf\x60\x00\x22\x5e\x14\x7f\xba\ \x3a\x8e\x3d\x6a\xbf\x54\x8f\xbc\xc0\x2f\x47\x3f\x4e\x9a\xff\xa5\ \xdc\xc9\x00\x2c\x76\xf0\xc0\x03\x0f\xbc\x4a\xc4\xff\x25\x35\x97\ \xfa\x45\xfc\x53\x59\x69\x2e\xcf\xad\x7f\x97\xca\xeb\x37\xdb\x29\ \xf7\x5b\xef\x55\xf1\xd7\x79\x93\x7a\x0e\xf9\x14\x1b\xe4\xf5\x7e\ \x99\x0c\xe4\x5a\x5f\x58\xf7\x14\x16\x3b\x78\xe0\x81\x07\x5e\x05\ \xb7\xfd\x7d\xf5\xc9\x9f\x69\xd3\xa4\xec\x98\x4f\x7a\xa9\xb7\x8e\ \xb3\x5d\x81\x3c\xf0\x66\x92\xe9\xd8\xd7\x7c\x32\x19\xd4\xeb\x98\ \xc1\x71\xca\x83\x6f\xcc\xc5\x62\x07\x0f\x3c\xf0\xc0\xe3\xe4\x3d\ \xf0\xcf\x41\x35\x77\xfa\x48\xfc\xe9\xd6\xff\xc9\xbe\x13\x7f\xaf\ \xb7\x08\x2e\xe2\xd1\xa9\x80\x8c\x34\xdb\x2f\xbd\x02\xd4\xdb\x42\ \x6c\xe7\xea\x9f\x9e\xbf\x86\x35\x0e\xda\x89\xc5\x0e\x1e\x78\xe0\ \x81\xa7\x94\x3b\xe7\xbf\x49\xf9\xe3\x73\x57\xfb\x66\xb7\xbf\xe1\ \x9a\x05\xf1\x77\xe9\xcd\x24\x7a\x63\x1f\x61\x6d\x83\x57\xf9\x41\ \xfc\x8d\xd7\x79\x0f\x9d\xa4\xbc\xf1\xfe\x72\x2c\x76\xf0\xc0\x03\ \x0f\xbc\x02\xde\xb2\x77\x96\x2a\xe7\x0d\x9d\xe4\x9b\x73\xfe\x7b\ \x2f\x79\x15\x69\x12\xc4\xdf\xc5\x37\xd3\x99\x95\x26\xf9\x49\xfc\ \x8d\x8f\x04\xee\x79\xf9\x4f\xaa\xd3\x45\xf2\x00\x0f\x3c\xf0\xc2\ \xce\xdb\xf8\xfe\x46\xe5\xae\xe7\x6e\x54\x8e\xc9\x8e\xf3\xa1\xf8\ \xd3\xb1\x3f\x79\x22\xc4\xbf\x16\xbd\x02\x32\xf2\x0d\x7e\x12\x7f\ \x23\xef\xf4\x79\x5d\xca\xc2\xe5\xf3\x91\x3c\xc0\x03\x0f\xbc\xd0\ \xf2\x86\x58\x0e\x3c\x7d\x7e\x97\x6f\x1a\xfb\x94\xf8\xf4\x7f\x03\ \xc4\xbf\x46\x6f\xa6\x63\xe8\xe0\x28\x6b\xb6\xf0\xac\xdf\xc4\xdf\ \x78\x9d\x7f\xff\xd7\x95\x27\xd6\xfe\x0d\xc9\x03\x3c\xf0\xc0\x0b\ \x0d\xef\x91\x95\xf7\x2b\xdf\xbf\xef\x6b\xbe\xa8\xeb\x52\xfe\x93\ \xbf\xf4\x0c\x69\x10\xc4\xbf\x86\xbc\x64\x36\x3e\x86\x05\x63\xab\ \x1f\xc5\xdf\xc8\x3b\x67\xe1\xf1\xca\xfc\x95\x73\x94\xed\xbb\xb6\ \x21\x79\x80\x07\x1e\x78\x81\xe3\xbd\xf7\xfe\x3a\x25\xf3\xd2\x4c\ \xe5\xac\x05\xc7\xf9\x2e\x3f\x97\xb8\xb6\x92\xf6\xf8\x59\xfc\xb9\ \x4f\xff\x79\xfd\xcd\xa4\xd2\xd2\x99\x7e\x16\x7f\xe3\x75\xdc\xdc\ \xc3\x95\x6b\x9f\xba\x50\x79\x6c\xcd\x90\xf2\xc1\xf0\x0e\x24\x0f\ \xf0\xc0\x03\xcf\xb7\x3c\xca\x61\x8f\xae\x1e\x52\x7e\xf9\x8f\x1f\ \x2b\xc7\xf6\xfd\x87\xef\xf3\xb3\xa1\xe0\xcf\x19\x7e\xd5\x4b\x43\ \xe9\x7f\xee\x22\x41\xcd\x1e\x7e\x33\xfb\x74\x1c\x77\xd4\xbe\xc9\ \x59\xf1\x9e\xa0\x4c\x2e\xa3\x19\xb8\xf8\x1f\xe7\x28\xbd\xcb\x6e\ \x53\x5e\x64\x05\x85\xe8\xee\x00\x92\x11\x78\xe0\x81\xe7\x55\x1e\ \xe5\x28\xca\x55\x94\xb3\x28\x77\x1d\x37\x78\xb8\x12\x94\x0f\x67\ \x86\xeb\xae\x72\xd5\xfe\x7c\x22\xfe\x11\x2e\x03\x60\xe8\x27\xdc\ \xe2\x55\xf1\xd7\x79\xc9\x1f\x1d\xfe\xa9\xe4\x6c\x79\x59\x50\xc4\ \xbf\x74\x3d\x81\xb8\x72\xea\xbc\xa4\xf2\xd3\x85\x67\x29\x37\x3c\ \xf6\x73\xe5\x8e\x67\x7e\xaf\xf4\x2f\xbd\x53\xb9\xef\x9f\x69\xe5\ \xe1\xb7\x16\xd8\xbe\x1e\x7a\x73\xbe\x72\xdf\xab\x59\xe5\xbe\x65\ \x99\xbd\x17\xfb\x3b\xfd\x3b\x78\xe0\x81\x07\x5e\x39\xde\xfd\x6f\ \x64\x94\xb9\x2b\x66\x29\x33\x5f\xfe\xa3\xf2\xbf\xcf\x5e\xa1\x8a\ \xfd\xb7\xee\x4f\xb2\x4f\xc6\x71\xc5\xcf\x7b\xb2\x38\x78\x2f\x1d\ \x93\x1d\xf3\x2f\x3e\x16\x7f\xbd\xdf\x8f\xb9\x01\xd0\xbe\xb8\x49\ \xfb\xf4\xdf\xe2\x65\xf1\xd7\xaf\xd4\x4d\x87\x8e\x67\xc1\xdb\x1e\ \x44\xf1\x07\x0f\x3c\xf0\xc0\x03\xaf\xa6\xbc\xed\x5d\x19\x59\xf6\ \xb1\xf8\x37\x6a\xdd\x7e\x1b\x4c\x4b\xff\x6b\x5f\x1c\xd5\x3e\xfd\ \x37\x1b\x7a\x0b\x7b\x56\xfc\x75\x1e\x3b\x93\x79\x3a\x26\x2b\x78\ \xe0\x81\x07\x1e\x78\x4e\xf2\x48\x5b\x7c\x2a\xfe\xfb\x68\x7a\x1e\ \x35\x1a\x00\x2b\xa7\x30\xca\x60\x00\x9a\xfd\x20\xfe\x7b\x4f\x06\ \x48\xb7\x62\xf2\x83\x07\x1e\x78\xe0\x81\xe7\x08\x8f\x69\x8a\x8f\ \xc5\xbf\x49\xd3\x73\xdd\x00\x44\xac\x9e\x11\x44\x0d\x06\x60\xb4\ \x9f\xc4\x5f\xaf\x0f\x90\xca\x48\x4f\x62\xf2\x83\x07\x1e\x78\xe0\ \x81\x57\x5d\x2f\x17\xe9\xc9\x52\xe7\xfd\x7d\x22\xfe\xba\x86\xeb\ \x06\xa0\xc1\xec\xd6\x7f\x44\x73\x08\xba\x01\x68\xf2\x9b\xf8\xeb\ \xaf\xae\xfe\x43\xfe\x8d\x05\x6f\x1d\x26\x3f\x78\xe0\x81\x07\x1e\ \x78\x15\xf2\xd6\x91\x96\xf8\x54\xfc\xf5\xbb\xf7\xba\x01\x68\x34\ \x13\xff\x7a\xcd\x1d\x8c\x34\x3c\x2f\xf0\xa5\xf8\xe7\x1e\x05\xa4\ \xe3\x13\x58\x00\x87\x31\xf9\xc1\x03\x0f\x3c\xf0\xc0\xb3\xc9\x1b\ \x26\x0d\xf1\xa9\xf8\xeb\xfb\xf6\x74\x03\x10\xb5\xda\xf4\x67\x34\ \x00\x8d\xdc\x55\x82\x3c\x3e\x38\x89\xb4\xf4\x43\x4c\x7e\xf0\xc0\ \x03\x0f\x3c\xf0\x6c\xf1\xb2\xf2\x05\x3e\x16\xff\x7d\x0d\x06\xa0\ \xc9\x54\xcf\xb5\x6f\xaa\x37\x9c\x11\x0c\x84\xf8\xab\x2f\x56\xb0\ \x81\x05\x73\x06\x26\x3f\x78\xe0\x81\x07\x1e\x78\x9c\xbc\x19\x85\ \xc5\x7e\x7c\x26\xfe\x3a\x6b\x34\x6f\xc1\x9f\x7a\x6d\x0f\x40\x70\ \xc4\x5f\x7b\x75\xf7\x1e\x31\x8a\x05\x7d\x31\x26\x3f\x78\xe0\x81\ \x07\x1e\x78\x16\xd7\x62\xd2\x0c\x9f\x8b\xff\xbe\xdc\xa7\xf7\x0c\ \x06\x20\x70\xe2\xaf\xf3\x52\xd7\x1f\x3e\x26\xd9\x13\x5f\x83\xc9\ \x0f\x1e\x78\xe0\x81\x07\x5e\x99\xf6\xbe\xab\xa6\xcc\x6d\x3d\x28\ \x00\xe2\xcf\xcf\xab\x54\xf8\xfd\x36\x38\x9d\x7f\x38\xf4\x3f\x93\ \x3d\xf2\x76\x4c\x7e\xf0\xc0\x03\x0f\x3c\xf0\x0a\xae\x6d\x9d\x69\ \x79\x5c\xa8\xc4\x3f\x88\x2d\x82\xcd\x78\xc9\xe9\xf1\x53\x30\xf9\ \xc1\x03\x0f\x3c\xf0\xc0\xcb\x3f\xef\x1f\x9b\x0a\xf1\x0f\xb0\xf8\ \xeb\x3c\x76\x9b\xe7\x42\x4c\x7e\xf0\xc0\x03\x0f\x3c\xf0\xb4\x5b\ \xff\x17\x42\xfc\x43\x20\xfe\xfa\xc9\x00\x56\xd7\xf9\x16\x4c\x7e\ \xf0\xc0\x03\x0f\xbc\x70\xf3\x48\x0b\x8c\x3b\xfe\x21\xfe\x41\x16\ \xff\x5c\xb9\xe0\x8e\x48\x22\x1b\x9b\x8f\xc5\x04\x1e\x78\xe0\x81\ \x17\x52\xf1\x67\x1a\x40\x5a\x00\xf1\x0f\x91\xf8\xeb\x2f\xea\xeb\ \xcc\x6e\xfd\x3c\x8d\xc5\x04\x1e\x78\xe0\x81\x17\xba\xdb\xfe\x4f\ \x93\x06\x40\xfc\x43\x28\xfe\xb9\x9e\x01\xf3\x62\x07\x26\x33\xb1\ \x95\x58\x4c\xe0\x81\x07\x1e\x78\x61\xe1\xc5\x56\x52\xee\x0f\xb3\ \xf8\x73\x9f\xfe\x0b\xfa\xe0\x24\xb3\xf1\x31\x79\x8d\x83\xb0\x98\ \xc0\x03\x0f\x3c\xf0\x82\xca\x5b\x47\x39\x3f\xac\xe2\x6f\x28\xfd\ \xcf\x5d\x24\xa8\x39\xe8\x83\x93\x1c\x8c\x1d\xce\x26\xc6\x16\x2c\ \x26\xf0\xc0\x03\x0f\xbc\xc0\xf2\xb6\x50\xae\x0f\xb9\xf8\x47\xb8\ \x0c\x80\xa1\x9f\x70\x4b\x18\x06\x27\xd1\x1f\xef\x64\x93\xe9\x43\ \x2c\x26\xf0\xc0\x03\x0f\xbc\xc0\xf1\x3e\x64\x3b\xfe\x27\x86\x5c\ \xfc\xf5\x7e\x3f\xe6\x06\x40\xfb\xe2\x26\xed\xd3\x7f\x4b\x08\x06\ \x47\xe5\x25\xee\x68\x3b\x8d\x55\x0b\x1c\xc6\x62\x02\x0f\x3c\xf0\ \xc0\x0b\x0c\x6f\x98\x75\xf7\xeb\x0e\xb9\xf8\x37\x6a\xdd\x7e\x1b\ \x4c\x4b\xff\x6b\x5f\x1c\xd5\x3e\xfd\x37\x1b\x7a\x0b\x07\x5a\xfc\ \x73\xd5\x02\xef\x6c\x3d\x17\x8b\x09\x3c\xf0\xc0\x03\x2f\x18\x3c\ \xf6\xc9\xff\xf4\x10\x8b\xff\x3e\x9a\x9e\x47\x8d\x06\xc0\xca\x29\ \x8c\x32\x18\x80\xe6\xb0\x88\xbf\xce\x4b\xa4\xa5\x1f\x60\x31\x81\ \x07\x1e\x78\xe0\xf9\x9e\xf7\xfd\x90\x8b\x7f\x93\xa6\xe7\xba\x01\ \x88\x58\x3d\x23\x88\x1a\x0c\xc0\xe8\xb0\x89\xbf\xce\x4b\x66\xa5\ \x9f\x62\x31\x81\x07\x1e\x78\xe0\xf9\x94\xc7\x72\x78\xc8\xc5\x5f\ \xd7\x70\xdd\x00\x34\x98\xdd\xfa\x8f\x68\x0e\x41\x37\x00\x4d\x61\ \x15\xff\xdc\xe9\x80\xb4\x74\x19\x16\x13\x78\xe0\x81\x07\x9e\xcf\ \x78\x2c\x77\x87\x5c\xfc\xf5\xbb\xf7\xba\x01\x68\x34\x13\xff\x7a\ \xcd\x1d\x8c\x34\x3c\x2f\x08\xb5\xf8\xef\xed\x1b\x20\x5d\x89\xc5\ \x09\x1e\x78\xe0\x81\xe7\x97\x67\xfe\xd2\x95\x7a\x7d\xff\x90\x8a\ \xbf\xbe\x6f\x4f\x37\x00\x51\xab\x4d\x7f\x46\x03\xd0\xc8\x5d\x25\ \x28\x0c\x45\x83\x54\x13\x10\xbb\x06\x8b\x13\x3c\xf0\xc0\x03\xcf\ \xeb\xbc\xd8\xd5\x10\xff\x1c\xa7\x59\xbb\x93\x3f\xc2\xea\x9b\xea\ \x0d\x67\x04\x21\xfe\x3c\x26\x00\x8b\x13\x3c\xf0\xc0\x03\x0f\xe2\ \xef\x4d\x5e\x0b\xd7\x1e\x3e\x83\x01\x88\x40\xfc\xad\x4c\x80\xf6\ \x38\x00\x8b\x13\x3c\xf0\xc0\x03\x0f\xb7\xfd\xbd\xcb\x6b\xb6\x53\ \xee\xb7\x1e\xe2\xcf\x67\x02\x92\xfd\xd2\xe5\x58\x9c\xe0\x81\x07\ \x1e\x78\xd8\xf0\xe7\x7b\x5e\xa5\xc2\x1f\xe6\xc1\x4e\xce\x88\x5f\ \x8e\xc5\x09\x1e\x78\xe0\x81\x87\xa3\x7e\x41\xe1\x61\x70\x6c\xf0\ \x12\x77\xb7\x5e\x88\xc5\x09\x1e\x78\xe0\x81\x87\x22\x3f\x10\xff\ \x10\x0e\x76\x2a\x2d\x9d\xa9\xd6\x99\xc6\xe2\x04\x0f\x3c\xf0\xc0\ \x73\xad\xb6\x3f\xca\xfb\x42\xfc\x3d\x52\x31\x50\xee\xa6\x4e\x53\ \x58\x9c\xe0\x81\x07\x1e\x78\xe2\xbb\xfa\x85\xbc\xb1\x0f\xc4\xdf\ \x6b\x3c\x6a\x33\xa9\xf6\x9a\xc6\xe2\x04\x0f\x3c\xf0\xc0\x13\xc5\ \xdb\x12\xf2\x96\xbe\x10\x7f\xaf\xf2\x92\x83\xb1\xc3\xd9\x04\x5d\ \x87\xc5\x0e\x1e\x78\xe0\x81\xe7\x38\x6f\x1d\xe5\x58\xe8\x11\xc4\ \xdf\xb3\xbc\x64\x36\x3e\x86\x15\xa3\x58\x89\xc5\x0e\x1e\x78\xe0\ \x81\xe7\x14\x8f\xe5\x54\x96\x5b\xa1\x47\xce\x89\x3f\xf7\xe9\x3f\ \x0c\xb6\x3d\x5e\xd7\xbc\xd8\x81\xc9\x8c\xfc\x34\x16\x3b\x78\xe0\ \x81\x07\x5e\xb5\x3c\xf9\x69\xca\xa9\xd0\x23\xc7\x78\x7a\xe9\x7f\ \xee\x22\x41\xcd\x18\x6c\x7b\xbc\x63\xb2\x63\xfe\x25\x91\x8d\xcd\ \xc7\x62\x07\x0f\x3c\xf0\xc0\xab\x8c\x47\x39\x94\x72\x29\xc4\xdf\ \x51\xf1\x8f\x70\x19\x00\x43\x3f\xe1\x16\x0c\xb6\xfd\xd7\x97\x6f\ \xec\x18\x99\x98\xd5\x7a\x07\x16\x3b\x78\xe0\x81\x07\x9e\x4d\xf1\ \xcf\xc8\xb7\x74\x0c\x75\x44\x20\xfe\x8e\x8a\xbf\xde\xef\xc7\xdc\ \x00\x68\x5f\xdc\xa4\x7d\xfa\x6f\xc1\x60\x57\xc6\xeb\x38\xf6\xa8\ \xfd\x92\x77\xb7\x5e\x86\xc5\x0e\x1e\x78\xe0\x81\xc7\x7d\xdb\xff\ \x42\xbd\xae\x3f\xc4\xdf\x31\xf1\x6f\xd4\xba\xfd\x36\x98\x96\xfe\ \xd7\xbe\x38\xaa\x7d\xfa\x6f\x36\xf4\x16\xc6\x60\x57\xc8\x4b\x4e\ \x8f\x9f\xc2\x26\xff\x36\x2c\x76\xf0\xc0\x03\x0f\xbc\xb2\xd7\xb6\ \x54\x26\x36\x15\xfa\xe1\x38\x2f\xaa\x5d\x39\x03\x60\xe5\x14\x46\ \x19\x0c\x40\x33\x06\xbb\x7a\x5e\x67\x5a\x1e\xc7\x9c\xed\x2a\x2c\ \x76\xf0\xc0\x03\x0f\xbc\xa2\x4f\xfd\xab\x28\x47\x42\x3f\x1c\xe7\ \x35\x69\x7a\xae\x1b\x80\x88\xd5\x33\x82\xa8\xc1\x00\x8c\xc6\x60\ \x3b\xc7\x9b\x32\xb7\xf5\xa0\x54\x46\x7a\x12\x8b\x1d\x3c\xf0\xc0\ \x03\x2f\x77\x2d\xa6\xdc\x08\xfd\x70\x9c\xa7\x6b\xb8\x6e\x00\x1a\ \xcc\x6e\xfd\x47\x34\x87\xa0\x1b\x80\x26\x0c\xb6\xf3\xbc\xee\xde\ \x23\x46\xb1\x09\x3f\x03\xc9\x03\x3c\xf0\xc0\x03\x4f\x9a\x41\x39\ \x11\xfa\xe1\x38\x4f\xbf\x7b\xaf\x1b\x80\x46\x33\xf1\xaf\xd7\xdc\ \xc1\x48\xc3\xf3\x02\x0c\xb6\x28\x1e\xdb\xe0\xc2\xea\x59\x5f\x50\ \xb2\x91\x10\x92\x07\x78\xe0\x81\x17\x7c\xde\x30\xe5\x40\xe3\x66\ \x3f\xe8\x87\xa3\xbc\x16\x83\x01\x88\x5a\x6d\xfa\x33\x1a\x80\x46\ \xee\x2a\x41\x18\xec\xaa\x78\xc9\x74\x7c\x42\x5e\xf9\x60\x24\x0f\ \xf0\xc0\x03\x2f\xf8\xbc\x75\x94\xfb\xa0\x1f\x42\x79\xba\x01\x68\ \x32\xd5\x73\xed\x9b\xea\x0d\x67\x04\x21\xfe\x2e\xf2\xba\xfa\x0f\ \xf9\x37\x75\x5f\x00\x92\x07\x78\xe0\x81\x17\x70\x1e\xe5\x3a\xca\ \x79\xd0\x0f\xe1\xbc\x16\xae\x3d\x7c\x06\x03\x10\x81\xf8\xd7\xa8\ \x68\xd0\xcc\x31\x4d\xc9\xd9\xf1\x3b\x91\x3c\xc0\x03\x0f\xbc\xc0\ \xf2\xb2\xd2\xad\x1d\x43\x07\x47\xa1\x1f\xae\xf0\x9a\xed\x94\xfb\ \xad\x87\xf8\xd7\x9e\x97\x98\xde\x36\x2d\xd9\x23\x6f\x47\xf2\x00\ \x0f\x3c\xf0\x02\xc4\xdb\xce\x2a\xfb\x9d\x8e\x7c\xef\x41\x5e\xa5\ \xc2\x8f\xc1\x16\xc3\x4b\xdd\x74\xe8\x78\xb6\x98\x5e\x46\xf2\x00\ \x0f\x3c\xf0\x02\xc0\x7b\xa9\x2b\x23\xcb\xc8\xf7\x68\x11\x0c\x1e\ \x27\x8f\x1a\x60\xb0\xdb\x65\x77\x23\x79\x80\x07\x1e\x78\x3e\xe6\ \xdd\x65\x6c\xe6\x83\x7c\x0f\xf1\x07\x8f\x97\xc7\x8e\xc7\xa4\xb2\ \xd2\x19\x6c\x11\x6d\x45\x32\x02\x0f\x3c\xf0\x7c\xc4\xdb\x4a\xb9\ \xab\xf0\x88\x1f\xf2\x3d\xc4\x1f\x3c\x9b\xbc\x64\x36\x3e\x86\xdd\ \x0d\x78\x16\xc9\x08\x3c\xf0\xc0\xf3\x3a\x2f\x91\x91\x9e\xa1\x9c\ \x85\x7c\x0f\xf1\x07\xcf\x21\x1e\xed\x9c\x65\xb5\xb2\x6f\x40\x32\ \x02\x0f\x3c\xf0\xbc\xcb\x93\x6f\x28\xb5\xcb\x1f\xf9\x1e\xe2\x0f\ \x9e\x03\xbc\xce\xac\x34\x29\xd7\x50\x08\xc9\x08\x3c\xf0\xc0\xf3\ \x04\x8f\x35\xf2\x61\xb9\x09\xf9\x1e\xe2\x0f\x9e\x60\x5e\xa2\x37\ \xf6\x11\xb6\x08\x67\x23\x19\x81\x07\x1e\x78\x1e\xe0\xcd\xa2\x9c\ \x84\xfc\xec\x2f\xf1\xe7\x3e\xfd\x87\xc1\xf6\x26\x2f\x31\x3d\x7e\ \x06\xab\x19\xb0\x01\xc9\x08\x3c\xf0\xc0\xab\x01\x6f\x7d\x32\x1b\ \x3b\x19\xf9\xd9\x77\x3c\xbd\xf4\x3f\x77\x91\xa0\x66\x0c\xb6\x37\ \x79\x93\xae\x6e\xff\x42\xaa\x47\x5e\x80\x64\x04\x1e\x78\xe0\xb9\ \xc5\x63\x3b\xfc\xe7\x4e\xca\x8e\xf9\x24\xf2\xb3\x2f\xc5\x3f\xc2\ \x65\x00\x0c\xfd\x84\x5b\x30\xd8\xde\xe5\xb5\x5e\x2a\xd5\x27\xd3\ \xf2\xb7\xd8\xee\xdb\x0d\x48\x6e\xe0\x81\x07\x9e\x28\x9e\x9a\x63\ \xb2\xb1\xd3\xca\x1d\xef\x43\x7e\xf6\xbc\xf8\xeb\xfd\x7e\xcc\x0d\ \x80\xf6\xc5\x4d\xda\xa7\xff\x16\x0c\xb6\xf7\x79\x89\xfe\x43\x3e\ \xc1\x16\x68\x1a\xc9\x0d\x3c\xf0\xc0\x13\x20\xfe\x69\xca\x31\xc8\ \xcf\xbe\x15\xff\x46\xad\xdb\x6f\x83\x69\xe9\x7f\xed\x8b\xa3\xda\ \xa7\xff\x66\x43\x6f\x61\x0c\xb6\xd7\x79\xcc\x99\x27\xd2\xd2\x49\ \x6c\xc1\xbe\x8d\xe4\x06\x1e\x78\xe0\x39\xc0\x7b\x3b\x99\x95\xbb\ \x79\x3e\xf5\x23\x3f\x7b\x96\x17\xd5\xae\x9c\x01\xb0\x72\x0a\xa3\ \x0c\x06\xa0\x19\x83\xed\x2f\xde\xe4\x7b\xe5\xfd\xa9\xf3\x16\x92\ \x1b\x78\xe0\x81\x57\x31\x8f\xe5\x10\xca\x25\xc8\xcf\xbe\xe6\x35\ \x69\x7a\xae\x1b\x80\x88\xd5\x33\x82\xa8\xc1\x00\x8c\xc6\x60\xfb\ \x97\xd7\x95\x95\x8f\x66\xb7\xee\x96\x22\xb9\x81\x07\x1e\x78\x36\ \x78\x4b\x28\x77\x20\x9f\xfa\x9e\xa7\x6b\xb8\x6e\x00\x1a\xcc\x6e\ \xfd\x47\x34\x87\xa0\x1b\x80\x26\x0c\xb6\xff\x79\xdd\xbd\xb1\x91\ \x6c\x51\x5f\xc4\x16\xf7\x76\x24\x37\xf0\xc0\x03\xcf\x84\xb7\x9d\ \x7d\xea\xff\x29\xe5\x0c\xe4\x53\xdf\xf3\xf4\xbb\xf7\xba\x01\x68\ \x34\x13\xff\x7a\xcd\x1d\x8c\x34\x3c\x2f\xc0\x60\x07\x88\x37\xe9\ \x86\xc3\xe2\xc9\x7b\xe4\x79\x48\x96\xe0\x81\x07\x5e\xd1\x35\x10\ \xcb\x76\x0e\xc6\x3f\x83\x7c\x1a\x18\x5e\x8b\xc1\x00\x44\xad\x36\ \xfd\x19\x0d\x40\x23\x77\x95\x20\x0c\xb6\xef\x78\x89\xdb\xdb\xa6\ \xa6\x06\xa4\x65\x48\x96\xe0\x81\x07\x5e\x6a\xb6\xfc\x5a\xb2\x3f\ \x3e\x05\xf9\x34\x70\x3c\xdd\x00\x34\x99\xea\xb9\xf6\x4d\xf5\x86\ \x33\x82\x10\xff\x80\xf3\x52\xf3\x3f\xd7\xc8\xea\x77\x5f\xc8\x92\ \xc2\x66\x24\x4b\xf0\xc0\x0b\x21\xaf\x47\xde\x92\x9c\xd1\x7a\x69\ \xf2\xcf\xb1\x51\xc8\xa7\x81\xe4\xb5\x70\xed\xe1\x33\x18\x80\x08\ \xc4\x3f\x5c\xbc\x09\x59\xe9\xe3\xda\x69\x81\xdd\x48\x96\xe0\x81\ \x17\x02\x5e\x8f\xbc\x3b\x39\x2b\x7e\xd7\x84\xab\x0f\xfb\x2c\xf2\ \x69\xa0\x79\xcd\x76\xca\xfd\xd6\x43\xfc\xc3\xcb\x4b\x65\xc7\xb6\ \xb3\x44\xb1\x10\xc9\x12\x3c\xf0\x02\xcc\x9b\x15\xff\x5b\xf2\xa6\ \xd6\x2f\x21\xff\x81\x97\xb7\x07\xa0\xae\xc2\x17\x06\x3b\x40\x3c\ \x2a\x22\x94\x95\x26\xd3\x11\x20\x24\x4b\xf0\xc0\x0b\x10\x6f\xb6\ \xfc\x72\xe7\xed\x6d\x27\x75\x1c\x7b\xd4\x7e\xc8\x7f\xe0\x39\xf2\ \xc2\x60\x07\x93\xd7\xdd\xdb\x5d\xcf\x9a\x7d\x9c\xc1\x92\xc7\x9b\ \x48\xbe\xe0\x81\xe7\x6b\xde\xaa\xe4\x9d\xad\xe7\x26\xa6\x4e\xf8\ \x08\xf2\x1f\x78\x10\x7f\xf0\xb8\x79\x93\xcf\xfd\xd2\xc7\x92\x33\ \xe2\x97\xb0\x67\x86\xeb\x91\x7c\xc1\x03\xcf\x57\xbc\xf7\x92\x33\ \xe3\x17\x77\x9d\x73\xf4\x81\xc8\x7f\xe0\x41\xfc\xc1\xab\x9c\xf7\ \xe3\x23\x3f\x9d\x98\x29\x5f\xc3\x92\xca\x66\x24\x5f\xf0\xc0\xf3\ \x34\x6f\x73\x62\x20\x76\x45\xe7\xc5\x87\x1e\x84\xfc\x07\x1e\xc4\ \x1f\x3c\xc7\x78\x5f\x9d\xfb\xf9\x7f\x4d\x65\xa4\xab\x70\x74\x10\ \x3c\xf0\x3c\xc7\xdb\x4c\x6b\x73\xca\xec\x43\x3e\x86\x7c\x05\x1e\ \xc4\x1f\x3c\x61\xbc\x54\x6f\xfb\x01\x89\x4c\xec\x1a\x4b\x23\x80\ \x64\x0e\x1e\x78\xa2\x79\x9b\x69\x2d\xd2\x9a\x44\xbe\x02\x0f\xe2\ \x0f\x9e\x6b\xbc\x09\x03\x5f\xf8\x68\x2a\x1b\xbb\x82\x35\x1b\xda\ \x80\x64\x0e\x1e\x78\xee\xf1\x68\xcd\xd1\xda\xa3\x35\x88\x7c\x05\ \x5e\x85\xcc\x11\x18\x1c\xf0\xaa\xe6\xb1\xaa\x82\x2d\x89\x74\xec\ \x27\x2c\x31\xad\x46\x32\x07\x0f\x3c\xa1\xbc\xd5\xb4\xd6\x68\xcd\ \x21\x5f\x81\x57\xa9\xf0\x6b\x75\x7f\xb8\x8b\x04\x35\x63\xb0\xc1\ \xe3\x30\x02\x8d\xa9\x74\xec\x2c\xb5\xb6\x38\x92\x39\x78\xe0\x39\ \xc6\x4b\xa5\xa5\x65\xec\x13\xff\x77\x68\x8d\x21\x5f\x81\x57\xa5\ \xf8\x47\xb8\x0c\x80\xa1\x9f\x70\x0b\x06\x1b\x3c\x5e\x1e\x9d\x39\ \x4e\xdc\x16\x3f\x25\x39\x3b\xfe\x18\x92\x39\x78\xe0\x55\xc5\xfb\ \x3b\xfb\xc4\x7f\x22\xd5\xe6\x40\x7e\x01\xcf\x01\xf1\xd7\xfb\xfd\ \x98\x1b\x00\xed\x8b\x9b\xb4\x4f\xff\x2d\x18\x6c\xf0\x2a\xe1\xa5\ \x06\x5a\x8f\x64\xbd\x06\x7a\x58\x22\xdb\x89\x64\x0e\x1e\x78\x5c\ \xbc\x9d\xb4\x66\x52\x83\xf1\xf1\xc8\x2f\xe0\x39\x28\xfe\x8d\x5a\ \xb7\xdf\x06\xd3\xd2\xff\xda\x17\x47\xb5\x4f\xff\xcd\x86\xde\xc2\ \x18\x6c\xf0\x2a\xe2\x4d\x99\xdb\x7a\x10\xdb\xb8\x74\x25\x4b\x6c\ \xef\x40\x1c\xc0\x03\xaf\x04\x8f\xad\x0d\x5a\x23\xb4\x56\x90\x5f\ \xc0\x73\x98\x17\xd5\xae\x9c\x01\xb0\x72\x0a\xa3\x0c\x06\xa0\x19\ \x83\x0d\x9e\x13\x3c\x7a\x86\x99\x48\x4b\xa7\xb0\x84\xf7\x28\xc4\ \x01\x3c\xf0\xd4\xeb\x51\x5a\x13\x85\xcf\xf7\x91\x5f\xc0\x73\x88\ \xd7\xa4\xe9\xb9\x6e\x00\x22\x56\xcf\x08\xa2\x06\x03\x30\x1a\x83\ \x0d\x9e\x08\x9e\xda\x81\x30\x1b\xbb\x39\x57\x4f\x00\xe2\x00\x5e\ \x78\x78\x9b\x69\xee\xd3\x1a\x40\x3e\x00\x4f\x20\x4f\xd7\x70\xdd\ \x00\x34\x98\xdd\xfa\x8f\x68\x0e\x41\x37\x00\x4d\x18\x6c\xf0\x44\ \xf3\x3a\x7a\x63\xcd\xc9\x7e\xe9\xdb\xac\xe7\xc0\x13\x10\x07\xf0\ \x02\xce\x7b\x94\x5d\x67\xd2\x9c\x47\x3e\x00\x4f\x30\x4f\xbf\x7b\ \xaf\x1b\x80\x46\x33\xf1\xaf\xd7\xdc\xc1\x48\xc3\xf3\x02\x0c\x36\ \x78\xae\xf2\x3a\x6f\x6c\x1b\xcf\x9a\x98\xfc\x9e\x25\xcb\xb5\x10\ \x1b\xf0\x02\xc1\xeb\x61\x73\xf9\x9e\xf8\xef\x12\xfd\x31\x19\xf9\ \x00\x3c\x17\x79\x2d\x06\x03\x10\xb5\xda\xf4\x67\x34\x00\x8d\xdc\ \x55\x82\x30\xd8\xe0\x09\xe0\x7d\xf9\xc6\x8e\x91\xa9\xb4\x9c\x62\ \x9b\xa2\x66\xb3\xa4\xba\x1d\x62\x03\x9e\xaf\x78\x3d\xf2\xf6\xc4\ \x3d\xf1\xfe\xe4\x9f\xdb\xa6\x4e\x38\xad\x63\x7f\xe4\x03\xf0\x6a\ \xc0\xd3\x0d\x40\x93\xa9\x9e\x6b\xdf\x54\x6f\x38\x23\x08\xf1\x07\ \xcf\x33\x3c\xb5\xd2\x60\x46\x3e\x9d\x15\x43\xb9\x8f\x25\xd9\x61\ \x88\x0d\x78\x1e\xe5\x0d\xa7\x66\xc9\x0b\x13\xd3\xdb\xa6\x75\xfe\ \x74\xdc\xa7\xb0\x7e\xc1\xab\x31\xaf\x85\x6b\x0f\x9f\xc1\x00\x44\ \x20\xfe\xe0\x79\x99\x37\x21\x2b\x7d\x3c\x99\x89\x4d\x63\x47\xa6\ \x1e\x62\x49\x77\x37\xc4\x0b\xbc\x1a\xf3\x76\xab\x73\x71\x20\x76\ \xee\x84\xab\x0f\xfb\x2c\xd6\x2f\x78\x1e\xe2\xf1\x9d\xde\x33\x18\ \x00\x88\x3f\x78\xbe\xe1\x25\xfa\x0f\xf9\x84\x6a\x06\x06\xe4\x85\ \x2c\x79\xef\x82\x78\x81\xe7\x12\x6f\x57\x32\x2d\x3f\x48\x73\x8f\ \xe6\x20\xd6\x2f\x78\xbe\xe6\x55\x2a\xfc\x18\x6c\xf0\xbc\xc2\x9b\ \x70\xc9\xb8\xcf\x24\xa7\xc7\xcf\x49\xce\x8a\xcf\x65\xc9\x7c\x1b\ \xc4\x0b\x3c\x87\x79\x5b\xd9\x35\x90\xca\xc4\x4e\xd5\x3b\xf0\x61\ \xfd\x82\x17\x34\x1e\x06\x07\x3c\xdf\xf3\x4e\xb8\xe9\xc8\xd1\x89\ \xac\x34\x99\x5d\x37\xb1\x4f\x69\x2b\x21\x5e\xe0\x55\xc6\x8b\xad\ \xa4\x39\x44\x73\xa9\xbb\xf7\x88\x51\x58\x6f\xe0\x41\xfc\x31\xd8\ \xe0\xf9\x89\xa7\xd4\x8d\x60\x9f\xda\xc6\xb2\x4a\x6b\x3f\x64\x09\ \xfd\x01\x96\xd8\x77\x40\x0c\xc1\x2b\xc3\xdb\x41\x73\x84\xe6\x0a\ \xcd\x19\x9a\x3b\x58\x6f\xe0\x41\xfc\x4b\xff\x70\x63\x8f\x80\x16\ \x07\xca\x05\x83\x07\x9e\x70\x1e\x7d\x92\x4b\x64\x63\xc9\x64\x3a\ \xf6\x6b\x96\xfc\x9f\x52\x37\x71\x91\x08\xcc\x29\x10\x86\x39\x55\ \x8a\x0d\x78\x7e\xe0\xed\x56\xe7\x00\x9b\x0b\x34\x27\x4a\x7d\xca\ \xc7\x7a\x03\x2f\xe8\xbc\x4a\x7e\xb8\xb1\x47\x40\xb3\x03\xe5\x82\ \xc1\x03\xaf\x26\xbc\x09\x33\xc7\x1e\x90\xbc\xab\xf5\xe4\xc4\xec\ \xd6\x1b\xd9\xd9\xed\x67\x98\x30\x0c\x3b\x22\x36\x85\x17\x78\x5e\ \xe0\x0d\x53\x8c\x13\x3d\xf1\x1b\x53\xfd\xf2\xf1\xc6\x67\xf9\x58\ \x1f\xe0\x85\x91\x57\xc9\x0f\x6f\x32\xd4\x17\x1e\xed\x40\xb9\x60\ \xf0\xc0\xf3\x0e\xef\xf2\xf1\x07\x32\x71\xe8\x52\x3b\x17\x66\xa4\ \x21\x76\x6d\xb1\x25\x36\x7d\x05\xc2\xd5\x57\xa5\x78\x81\x57\x0d\ \x6f\x0b\x63\x3c\x9c\x98\x1d\xff\x55\xf2\xce\xb6\xe3\x27\xfe\xfc\ \x88\x4f\x60\x7d\x80\x07\x5e\x65\x3f\x7c\x84\xa1\x47\xc0\x28\x43\ \x73\x81\x11\xe0\x81\x17\x54\x5e\xc7\x50\x47\xa4\x2b\x1d\x6b\x4b\ \x66\xe4\xb3\xd9\xb3\xe1\xdb\x98\xb0\x3c\xa7\x1e\x03\x2b\x25\x5e\ \xfd\x9a\x60\xe9\x57\x7f\x95\x62\x08\x9e\xbd\xa3\x79\x2c\x36\x7b\ \x62\x24\x9f\xdd\xd5\x27\xb5\x4f\x38\x57\xfd\x74\x84\xf9\x0c\x1e\ \x78\x65\x98\x76\x7e\x78\xa3\xa1\x47\x40\xb4\xca\x72\xc1\xe0\x81\ \xe7\x5b\x1e\x3d\x2b\xee\xca\x8c\xfd\xe2\x9e\x82\x44\xac\x9b\xe1\ \x80\xf4\x04\x13\xab\xad\xaa\x60\x19\xaf\x8c\x54\xf9\x55\xc8\x02\ \x2f\xff\x48\x5e\x9a\x8d\xb9\xda\x49\x32\x36\x8d\x62\x61\x7c\x7e\ \x8f\xf9\x0c\x1e\x78\x96\xbc\x7a\xde\x22\x41\x23\x0c\x3d\x02\xf4\ \xab\xa1\xca\x1f\x0e\x1e\x78\x81\xe2\x75\x7d\x27\x31\x2a\x75\x47\ \x7b\x8c\x3d\x63\x3e\x29\xd1\x1b\xbf\x8c\x09\xd4\x2c\xf6\x18\xe1\ \x19\x26\x56\xdb\x6c\x8b\xe1\x00\x09\xa2\xe1\x1a\x90\xaa\x13\x57\ \xff\xf2\xb6\x69\x63\x38\x2b\x91\x96\x2f\x61\x15\xf7\x4e\xe8\x1a\ \x68\xfd\x7c\x77\x6f\x77\x3d\xe6\x1f\x78\xe0\x55\xcc\x8b\x70\x19\ \x00\xc3\x17\x37\x18\xae\x88\x03\x3f\x1c\x3c\xf0\x42\xc1\xbb\xec\ \xb2\xba\x7d\x92\xe9\xb6\x83\x3b\xb3\xd2\xa4\x44\x26\x76\x6e\x22\ \x2b\xff\x86\x09\xda\x20\xbb\x96\x94\xdc\x5f\x30\x50\xe2\xaa\x56\ \x5c\xbd\xcd\xdb\xc2\xae\xa5\xec\x13\xff\xdc\xc4\x00\xeb\x98\xd7\ \x27\x9d\xd7\x99\x91\x26\xd1\x98\xd1\xd8\x61\xfe\x81\x07\x9e\x10\ \x1e\x97\x01\xa8\x2f\xbc\xea\xaa\x78\x81\x07\x1e\x78\x86\x17\xd5\ \x28\xe8\x6d\x3f\xa0\x2b\x2b\x1d\xc6\xee\x18\x1c\x9f\x18\x90\xfe\ \x9b\x89\xe1\xf5\xec\x9a\xc9\x04\x71\x21\x7b\x9e\xbd\x94\x89\xe4\ \xfa\x8a\xc5\x35\x5d\xe2\xaa\x46\xac\xed\xf3\xd6\xb3\x4f\xf0\x4b\ \xf7\x94\xcd\x95\x66\xb0\xeb\x3a\x56\x54\xe7\x7c\xf6\xe7\xf1\x5d\ \x19\xf6\x9e\x6f\x1f\x77\xe0\xb8\x0b\xda\x22\x98\x2f\xe0\x81\x57\ \x13\xde\x08\x2b\xb7\xb0\x8f\xe1\x1a\x51\xe5\x0f\x07\x0f\x3c\xf0\ \x2a\xe0\x75\x0c\x1d\x1c\x65\x9f\x8a\x3f\x9d\xca\x8e\x6d\x67\x5d\ \x11\x27\xb2\x67\xdf\x27\x33\x21\x3d\x87\x89\xeb\x45\x4c\x4c\xaf\ \xa5\x67\xe1\xd4\x36\x39\x95\x95\xe6\xaa\x8d\x69\xe8\xf9\x78\x5a\ \x7e\x91\xfd\xb9\x82\xfd\xb9\x8a\xfd\xb9\x8e\x5d\x9b\xb4\xb6\xca\ \x3b\xcb\x74\x54\x1c\xd6\xfe\x1b\x7d\x0d\x7d\xed\x3a\xb6\x99\x6e\ \x15\xfb\x73\x05\xfb\xf3\x45\x75\x9f\x43\x46\x7a\x28\x95\x91\xe6\ \x32\x63\xd2\xc3\x9e\xbd\xdf\x42\x3f\x9b\x7e\x07\xfa\x5d\xd4\xdf\ \x89\xfd\x6e\xf4\x3b\xd2\xef\x4a\xbf\x33\xe2\x0b\x1e\x78\xde\xe6\ \xfd\x7f\xd7\x00\x5d\x3b\x65\x17\x94\x73\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x65\x77\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x89\x00\x00\x0b\x89\ \x01\x37\xc9\xcb\xad\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\ \xdd\x77\x78\x5c\xd5\x9d\x3e\xf0\xf7\x7b\x67\x34\x2a\xb6\x5c\xe5\ \x8e\x6d\x8c\xbb\x71\x91\x6c\x3a\x49\x1c\xba\x61\x49\xd8\x90\x85\ \x94\x4d\xd9\x24\xbb\xe9\xbd\xed\x66\x77\x13\xc2\x6f\x93\x6c\x49\ \x42\xb2\x29\x1b\x48\x48\x48\x20\x04\xb0\x81\x98\x66\x6c\xd9\x20\ \x0c\x06\x8c\x71\x2f\xb2\x0d\x36\x06\x77\x49\x2e\xaa\x23\xcd\xcc\ \xbd\xe7\xfb\xfb\xc3\x36\x96\x65\x95\x29\x77\xe6\x4c\x79\x3f\xcf\ \xc3\x13\x2c\xcd\xdc\x79\x09\x48\xe7\xbd\xe7\xde\x7b\x8e\x80\x88\ \xb2\xda\xfc\x1a\x0d\x36\xc7\x74\xb8\x27\x18\x21\xc6\x1b\xe6\xa8\ \x0c\x86\x60\x10\x04\x83\xa0\x32\x48\x81\x41\x02\x0c\x54\x41\x39\ \x14\xa5\x80\x96\x89\xa0\x0c\x8a\x52\x08\xca\x54\x51\x22\x40\x10\ \x82\x80\x02\x01\x01\x02\xaa\x27\xfe\x17\x00\x14\xf0\x44\xe0\x29\ \xe0\x09\xe0\x41\xe1\x29\xe0\x8a\xa0\x03\x8a\x30\x04\xed\xaa\x08\ \x03\x12\x86\xa0\x5d\x14\x2d\x0a\x34\x09\xd0\x08\xd1\x46\x28\x1a\ \xa1\x68\x34\xa2\xc7\xd5\x09\x34\x04\x14\x75\x03\x8a\xa4\x7e\xe5\ \x15\xe2\xda\xfe\xff\x8e\x88\x7a\x26\xb6\x03\x10\x15\xb2\x79\x35\ \x5a\x11\x73\x75\x6c\x40\xbd\xb1\xa2\x32\xd6\x88\x8c\x13\xc5\x58\ \x00\xa3\x14\x3a\x02\xc0\x70\x01\x86\x40\x24\xb7\x7e\x56\x55\x55\ \x81\x63\x02\xd4\x41\xa4\x0e\x8a\x43\x0a\xec\x73\xa0\xfb\x54\x74\ \x9f\xd1\xe0\xde\x90\xa3\xfb\x5e\xbd\xc6\x39\x6a\x3b\x2a\x51\xa1\ \xca\xad\x5f\x2a\x44\xb9\xe6\x36\x75\x66\x5f\xa6\xe3\x1d\xf5\x26\ \xc1\x91\x49\xa2\x32\x11\xc0\x24\x88\x4e\x52\x60\x82\x40\xca\x6c\ \x47\xb4\x49\xa1\x61\x01\xde\x00\x64\x17\x14\xbb\x21\xba\x4b\x45\ \x77\xa9\x1b\xdc\xb5\x69\x35\xf6\xe2\x76\x31\xb6\x33\x12\xe5\x2b\ \x16\x00\x22\x3f\xdc\xa6\x4e\xe5\xe5\x3a\x51\x8d\x77\xbe\xe3\xc8\ \xf9\x50\x99\x01\xd1\xf3\x55\x31\x55\x44\x4a\x6c\xc7\xcb\x45\xaa\ \xda\x2e\x82\x9d\x80\x6c\x53\x68\x2d\x44\xb7\x41\x03\xb5\x1b\x5f\ \x94\xdd\x2c\x06\x44\xa9\x63\x01\x20\x4a\xd0\xfc\x1a\x2d\x69\x72\ \x75\x96\x63\x4c\x95\x11\x99\x2b\xd0\x2a\x55\xcc\x12\x91\x52\xdb\ \xd9\x0a\x81\x42\xc3\x50\x6c\x16\xc8\x06\x23\xba\xc1\x81\xb3\xa1\ \xc5\xc5\x96\x5d\x37\x38\x11\xdb\xd9\x88\x72\x09\x0b\x00\x51\x6f\ \x6e\x53\x67\xee\xe5\x7a\xbe\x07\x73\x89\x03\xb9\x58\x55\x2f\x02\ \x30\x5d\x44\x82\xb6\xa3\xd1\x69\xaa\xea\x02\xd8\x2e\x22\x6b\x14\ \xba\xda\xa8\xb3\x7a\xf3\x4b\x52\xcb\x99\x02\xa2\x9e\xb1\x00\x10\ \x75\x72\xd1\x12\x33\x20\x1a\xf4\xde\x21\x70\xde\x01\xe0\x12\x40\ \x2f\x00\xa4\xdc\x76\x2e\x4a\x86\xb6\x28\xe4\x55\x51\xac\x56\x98\ \x55\xed\xed\x81\x55\x3b\xff\xd6\x69\xb1\x9d\x8a\x28\x5b\xb0\x00\ \x50\x41\xbb\x70\xb9\x19\x1a\xf5\xbc\x77\x8a\x38\xf3\x21\xfa\x2e\ \x00\x73\x04\x12\xb0\x9d\x8b\xfc\xa7\x50\x0f\xc0\x46\x40\x9e\x87\ \x98\x95\x51\x2f\xf0\x42\xed\x02\xe7\x98\xed\x5c\x44\xb6\xb0\x00\ \x50\x41\xb9\xe4\x25\x53\xda\xde\xe2\xbd\xd3\x81\x73\x0d\x44\xaf\ \x81\x62\x76\xce\x3d\x62\x47\xfe\x50\x55\x08\x36\x29\xa4\x1a\x62\ \x96\x0f\x0c\x06\x57\xad\xbc\x42\x3a\x6c\xc7\x22\xca\x14\xfe\xe2\ \xa3\xbc\x57\xb5\xc2\xcc\x86\x67\x16\x00\x72\x8d\x42\xdf\xc1\xbb\ \xf2\xa9\x3b\x27\x9e\x3a\x90\x55\x46\x75\xb9\xc2\x79\x7a\xf3\x75\ \xce\x56\xdb\x99\x88\xd2\x89\x05\x80\xf2\xce\xfc\x1a\x2d\x69\x8a\ \xb9\x57\x8a\x3a\x37\x2a\xf4\x6f\x44\x64\x9c\xed\x4c\x94\x7b\x54\ \xf5\x2d\x88\x3c\x29\x62\x9e\x6c\x89\x05\x6a\xf8\x94\x01\xe5\x1b\ \x16\x00\xca\x0b\x17\x2e\x37\x43\x5d\xcf\xdc\xa4\x22\x37\x89\xe8\ \x55\x80\xf4\xb3\x9d\x89\xf2\x89\xb6\x41\x65\x85\x81\x2e\x8e\xa9\ \xf3\x38\xef\x1d\xa0\x7c\xc0\x02\x40\x39\xeb\xc2\x1a\x1d\x19\x8b\ \x79\xef\x83\xca\xfb\x01\x9d\xcf\x47\xf3\x28\x13\x54\xd5\x15\x91\ \x1a\xa8\x3e\xe2\xc1\xf9\xeb\xe6\xeb\x9c\x7a\xdb\x99\x88\x92\xc1\ \x02\x40\x39\x65\xf6\x32\x33\x3c\x20\xe6\x56\x05\x6e\x15\xe0\x72\ \x40\x1c\xdb\x99\xa8\x90\xa9\x51\x60\x15\x14\x0f\xc1\x73\x16\x6d\ \xbc\xc1\x69\xb0\x9d\x88\x28\x5e\x2c\x00\x94\xf5\xa6\x2e\x36\xe5\ \xa5\xa5\xe6\x66\x11\xf9\xb0\x42\xaf\xe2\x63\x7a\x94\x8d\x4e\x2c\ \x46\x24\x2b\x44\xf4\x2f\x91\xa2\xc0\x5f\x6b\xaf\x90\x56\xdb\x99\ \x88\x7a\xc3\x02\x40\x59\xe9\x96\x85\x1a\xd8\x3d\xc0\xbd\x5e\x1d\ \xe7\x63\xaa\x7a\x23\x97\xd9\xa5\x5c\x72\x62\xb9\x62\x79\x12\x62\ \xfe\x34\xb9\x31\xb8\x6c\xd1\xad\xe2\xd9\xce\x44\xd4\x15\x0b\x00\ \x65\x95\xaa\x6a\x33\x1d\xd0\x4f\xa8\xea\x47\x45\x64\xa4\xed\x3c\ \x44\xa9\x52\xd5\x83\x80\xdc\x67\x1c\xf9\xc3\xe6\x6b\x9c\xd7\x6c\ \xe7\x21\x3a\x85\x05\x80\xac\x9b\xba\xd8\x94\xf7\x2b\x35\x1f\x32\ \x82\x4f\x0a\xe4\x62\xdb\x79\x88\xd2\x47\x5f\x52\xe0\x9e\x68\x51\ \xe0\x41\x5e\x22\x20\xdb\x58\x00\xc8\x9a\xaa\x15\x66\xb6\x7a\xfa\ \x39\x81\x7e\x04\x22\xfd\x6d\xe7\x21\xca\x14\x85\x36\x0b\xe4\xcf\ \x9e\xca\x6f\xb8\xe0\x10\xd9\xc2\x02\x40\x19\x35\x69\x89\x29\x2e\ \x0f\x98\x5b\x20\xf8\x1c\x20\x97\xd9\xce\x43\x64\x9b\xaa\xae\x52\ \xc5\x9d\x6d\xc6\x79\x98\x8b\x0d\x51\x26\xb1\x00\x50\x46\x54\x55\ \x9b\xd1\x50\xfd\x82\x42\x3f\x2d\x22\x15\xb6\xf3\x10\x65\x1f\x6d\ \x50\xc8\x5d\x8e\x27\xff\xb7\xfe\x7a\xe7\x90\xed\x34\x94\xff\x58\ \x00\x28\xad\x2a\x97\x9b\x0b\xc5\xe8\x57\x15\x7a\x8b\x88\x14\xd9\ \xce\x43\x94\xfd\x34\xaa\x90\x85\x8e\x3a\x3f\x5f\x7f\x9d\xac\xb3\ \x9d\x86\xf2\x17\x0b\x00\xf9\xef\x36\x75\x2a\x2f\x73\x6f\x06\xe4\ \xeb\x22\x72\xa9\xed\x38\x44\xb9\x4b\x5f\x04\xf4\x8e\x0d\x2f\x06\ \x17\xe3\x76\x31\xb6\xd3\x50\x7e\x61\x01\x20\xdf\x4c\x5a\x62\x8a\ \x07\x04\xcc\xc7\x15\xf8\x26\x44\x26\xdb\xce\x43\x94\x3f\x74\xa7\ \x2a\x7e\x1c\x6d\x0a\xdc\x57\x7b\xab\x44\x6d\xa7\xa1\xfc\xc0\x02\ \x40\x29\xbb\x68\x89\x19\x10\x0b\x9a\xcf\xa9\xe2\xab\x7c\x76\x9f\ \x28\x7d\x54\xf5\x20\x04\x3f\x6b\x0f\x3b\x77\xed\xfc\x5b\xa7\xc5\ \x76\x1e\xca\x6d\x2c\x00\x94\xb4\x19\x4b\xcd\x90\x90\xe8\xd7\x01\ \xfd\xa2\x88\x0c\xb4\x9d\x87\xa8\x60\xa8\x36\x42\xe4\x97\x6e\xd4\ \xf9\xd9\x96\x1b\xe5\xb8\xed\x38\x94\x9b\x58\x00\x28\x61\x17\x2e\ \x37\x43\x5d\xd5\x6f\x00\xfa\x45\x40\xca\x6d\xe7\x21\x2a\x54\x0a\ \x6d\x06\xe4\x17\x5e\xd4\xb9\x83\x45\x80\x12\xc5\x02\x40\x71\x9b\ \x57\xa3\x15\x26\x6a\x4e\x0c\xfc\x5c\xb8\x87\x28\x6b\x28\xb4\x19\ \x2a\xbf\x8c\xaa\xdc\x51\xbb\xc0\x39\x66\x3b\x0f\xe5\x06\x16\x00\ \xea\xd3\x89\x6b\xfc\xfa\x4d\xa8\x7e\x8d\x03\x3f\x51\xf6\x3a\x31\ \x23\x80\x9f\x46\x8b\x02\x77\x70\xa9\x61\xea\x0b\x0b\x00\xf5\x68\ \x7e\x8d\x96\x34\xc5\xbc\x2f\x42\xf1\x2f\x22\x32\xd4\x76\x1e\x22\ \x8a\x97\x36\x08\xf0\xa3\x66\xd7\xf9\x0d\x57\x17\xa4\x9e\xb0\x00\ \xd0\x59\xe6\xd7\x68\xb0\x31\xe6\x7d\xc2\x01\xbe\x07\xc8\x39\xb6\ \xf3\x10\x51\x72\x54\x75\x2f\x80\xff\x37\xb9\x29\xf0\x47\x6e\x49\ \x4c\x5d\xb1\x00\xd0\x19\xe6\x2e\x8d\xdd\x68\x44\xfe\x47\x44\xa6\ \xdb\xce\x42\x44\x7e\xd1\x6d\xaa\xfa\xad\x8d\xd7\x15\x3d\x6d\x3b\ \x09\x65\x0f\x16\x00\x02\x00\xcc\x59\xa6\x95\x22\xe6\xa7\x02\x5c\ \x69\x3b\x0b\x11\xa5\xcd\x72\x81\x7c\x63\xfd\xb5\xce\x16\xdb\x41\ \xc8\x3e\x16\x80\x02\x57\x55\x6d\x46\x03\xfa\x43\x40\x3f\x06\x88\ \x63\x3b\x0f\x11\xa5\x9b\x1a\x40\xee\x09\x16\x39\xff\xfe\xea\x15\ \x72\xd8\x76\x1a\xb2\x87\x05\xa0\x40\xcd\x58\xa8\xa1\xd0\x40\xef\ \x1b\x22\xf8\x37\x40\xfa\xd9\xce\x43\x44\x99\xa6\x2d\x46\xf1\x1f\ \xc1\xa1\x81\x9f\xaf\xbb\x40\x62\xb6\xd3\x50\xe6\xb1\x00\x14\xa0\ \xca\xea\xd8\x0d\xa2\xf2\x73\xae\xd7\x4f\x44\x0a\xdd\xa1\xaa\x5f\ \xd9\x74\x5d\x51\xb5\xed\x2c\x94\x59\x2c\x00\x05\x64\xee\x33\x66\ \xa2\xf1\xf4\xe7\x02\xdc\x68\x3b\x0b\x11\x65\x9d\xc5\xc6\x73\xbe\ \xb6\xe9\x7a\x79\xd3\x76\x10\xca\x0c\x16\x80\x02\x30\x63\xa1\x86\ \x42\x83\xbc\x7f\x11\xe0\x5f\x01\x29\xb6\x9d\x87\x88\xb2\x93\xaa\ \xb6\x43\xf0\x83\xc0\x90\xc0\x8f\x79\x59\x20\xff\xb1\x00\xe4\xb9\ \xca\x6a\x33\x1f\x30\x77\x0a\x64\x9a\xed\x2c\x44\x94\x2b\x74\x9b\ \x51\xe7\x33\x9b\xae\x73\x5e\xb4\x9d\x84\xd2\x87\x05\x20\x4f\x9d\ \xdc\xb0\xe7\x27\x00\xfe\xc1\x76\x16\x22\xca\x41\xaa\x0a\xc8\xdd\ \x6e\xcc\xf9\x67\x6e\x34\x94\x9f\x58\x00\xf2\x50\x65\xb5\xfb\x61\ \x28\xfe\x57\x44\x2a\x6c\x67\x21\xa2\x1c\xa7\x5a\xa7\x82\x2f\x6d\ \xbc\x36\xb8\xc8\x76\x14\xf2\x17\x0b\x40\x1e\x99\xfb\xb4\x19\x65\ \x1c\xbd\x53\x04\xef\xb5\x9d\x85\x88\xf2\x8b\x2a\x1e\x71\x03\xf2\ \x85\xad\x57\x3b\x75\xb6\xb3\x90\x3f\xb8\xf0\x4b\x9e\x98\xb3\xcc\ \xfd\x07\x75\x4c\x2d\x07\x7f\x22\x4a\x07\x11\xbc\x3f\xe8\x99\x6d\ \x55\xcb\xdc\x8f\xd8\xce\x42\xfe\xe0\x0c\x40\x8e\x9b\xb3\xc2\x8c\ \x71\x8c\xfe\x0e\xc0\xf5\xb6\xb3\x10\x51\x61\x50\xe0\x49\xc7\x93\ \x4f\xaf\xbf\xde\x39\x64\x3b\x0b\x25\x8f\x05\x20\x87\x55\x56\xbb\ \x1f\x12\xe0\xd7\x80\x0c\xb6\x9d\x85\x88\x0a\x8d\x1e\x53\xe0\xb3\ \xbc\x37\x20\x77\xb1\x00\xe4\xa0\x59\x4f\xea\xe0\x40\xc8\xfc\x46\ \x80\x0f\xd8\xce\x42\x44\x05\xef\x7e\x53\xe4\x7c\x71\xd3\x15\xd2\ \x68\x3b\x08\x25\x86\x05\x20\xc7\xcc\xad\x8e\x5d\x67\x54\xfe\x20\ \x22\xa3\x6d\x67\x21\x22\x3a\x41\xf7\x03\xfa\x0f\x1b\xae\x2d\x7a\ \xc6\x76\x12\x8a\x1f\x0b\x40\x8e\x98\xb4\xc4\x14\x97\x07\xf5\x7f\ \x00\x7c\xd9\x76\x16\x22\xa2\xb3\x9c\x58\x37\xe0\x8e\x48\x93\xf3\ \xaf\xb5\xb7\x4a\xd4\x76\x1c\xea\x1b\x0b\x40\x0e\x98\xf5\xb4\x99\ \x1a\x0c\x98\x07\x01\xa9\xb4\x9d\x85\x88\xa8\x37\x0a\x5d\x27\xc6\ \xf9\xe0\x86\x05\xce\x2e\xdb\x59\xa8\x77\x7c\x0c\x30\xcb\x55\x55\ \xbb\x9f\x08\x06\xcc\x3a\x0e\xfe\x44\x94\x0b\x04\x32\x0f\x8e\x59\ \xcf\xc7\x05\xb3\x1f\x67\x00\xb2\xd4\xd4\xc5\xa6\xbc\xac\x54\xef\ \x82\xe0\x43\xb6\xb3\x10\x11\x25\x43\x15\xf7\x45\x43\xce\xe7\x6b\ \xaf\x90\x56\xdb\x59\xe8\x6c\x2c\x00\x59\xa8\x6a\x85\x99\x0d\xcf\ \x3c\x0c\x91\xc9\xb6\xb3\x10\x11\xa5\x42\xa1\x3b\xe0\x38\xef\xdf\ \x78\xb5\x53\x6b\x3b\x0b\x9d\x89\x97\x00\xb2\x4c\xe5\x32\xf7\xe3\ \xea\x99\xd5\x1c\xfc\x89\x28\x1f\x08\x64\x9a\x18\xb3\x66\xce\x52\ \xf7\xef\x6d\x67\xa1\x33\x71\x06\x20\x4b\xcc\xaf\xd1\x92\xe6\x98\ \xf9\x15\x80\x4f\xd9\xce\x42\x44\x94\x0e\xaa\xb8\xb3\xd5\x93\xaf\ \xee\xba\xc1\x89\xd8\xce\x42\x2c\x00\x59\x61\xf6\x32\x33\x21\x20\ \xe6\x51\xde\xe8\x47\x44\xf9\x4e\xa1\xeb\x24\xe0\xbc\x7f\xc3\x55\ \xce\x5b\xb6\xb3\x14\x3a\x5e\x02\xb0\xac\x72\x79\xec\xea\x80\x98\ \xb5\x1c\xfc\x89\xa8\x10\x08\x64\x9e\xba\x66\xed\x9c\xe5\xb1\x77\ \xdb\xce\x52\xe8\x58\x00\x2c\xaa\xac\x76\xbf\x01\x95\xa5\x80\x0c\ \xb1\x9d\x85\x88\x28\x53\x44\xa4\x42\x8c\x2c\xaf\x5c\xe6\x72\x61\ \x33\x8b\x78\x09\xc0\x82\xf9\x35\x5a\xd2\x14\x33\xbf\x13\x80\xcf\ \xc9\x12\x51\xa1\xfb\x63\x8b\x2b\x9f\xe5\x7d\x01\x99\xc7\x02\x90\ \x61\x73\x56\x98\x31\x62\xcc\x63\x02\x99\x67\x3b\x0b\x11\x51\x76\ \xd0\x35\xe2\x39\x7f\xcb\xed\x85\x33\x8b\x05\x20\x83\xe6\x3e\x6d\ \xe6\x1a\xc7\x3c\xc1\x8d\x7c\x88\x88\xce\xa4\xd0\x7d\x30\xce\x7b\ \x36\x2e\x70\x36\xd9\xce\x52\x28\x78\x0f\x40\x86\xcc\x5d\x16\x7b\ \x9f\x09\x98\x17\x38\xf8\x13\x11\x9d\x4d\x20\x63\x45\xcc\xaa\xaa\ \x65\xb1\xf7\xd8\xce\x52\x28\x58\x00\x32\xa0\xaa\xda\xfd\x67\x85\ \x3c\x22\x90\x32\xdb\x59\x88\x88\xb2\x96\x48\x7f\x88\x2c\xae\x5a\ \xe6\x7e\xdd\x76\x94\x42\xc0\x4b\x00\x69\x34\xbf\x46\x83\x4d\x31\ \x73\x97\x00\x9f\xb4\x9d\x85\x88\x28\x97\x28\x70\xd7\xe4\x46\xe7\ \x0b\x8b\x6e\x15\xcf\x76\x96\x7c\xc5\x02\x90\x26\x33\x6a\xb4\x7f\ \x28\x6a\x16\x89\x60\x81\xed\x2c\x44\x44\xb9\x48\x81\x27\x03\x1d\ \xce\x07\xd6\xbd\x57\xc2\xb6\xb3\xe4\x23\x16\x80\x34\x98\xb9\xc2\ \x8c\x08\x1a\xf3\x14\xef\xf4\x27\x22\x4a\x95\xae\x51\xd7\xb9\x71\ \xe3\x0d\x4e\x83\xed\x24\xf9\x86\x05\xc0\x67\xb3\x97\x9b\x29\x01\ \x35\x4b\x01\x99\x60\x3b\x0b\x11\x51\x3e\x50\xe8\x2e\x27\xe0\x2c\ \x58\x7f\x95\xb3\xdb\x76\x96\x7c\xc2\x02\xe0\xa3\x39\x4b\xcd\x45\ \x22\xe6\x29\x11\xa9\xb0\x9d\x85\x88\x28\xbf\x68\x03\xe0\xdc\xb0\ \xe1\x5a\x67\xad\xed\x24\xf9\x82\x4f\x01\xf8\xa4\xaa\x3a\x76\x95\ \x23\xe6\x19\x0e\xfe\x44\x44\xe9\x20\xc3\x00\xf3\x2c\xf7\x10\xf0\ \x0f\x0b\x80\x0f\xe6\x2e\x8b\xbd\x0f\x90\xa7\x20\xd2\xdf\x76\x16\ \x22\xa2\xfc\x25\xe5\x62\xe4\xe9\xaa\xea\xd8\x7b\x6d\x27\xc9\x07\ \x2c\x00\x29\xaa\xaa\x76\x3f\x61\x44\x16\x01\x52\x6c\x3b\x0b\x11\ \x51\xbe\x13\x91\x12\x55\x79\xa4\xaa\xda\xfd\xa8\xed\x2c\xb9\x8e\ \x05\x20\x05\x55\xcb\xdc\xaf\x41\xf1\x7b\x81\x04\x6c\x67\x21\x22\ \x2a\x14\x22\x12\x84\xe2\x4f\x55\xcb\xdd\x2f\xd9\xce\x92\xcb\x58\ \x00\x92\x54\xb9\xcc\xfd\x0e\x44\xee\x80\x08\x6f\xa4\x24\x22\xca\ \x34\x11\x81\xca\x2f\x2a\xab\xdd\x6f\xda\x8e\x92\xab\x58\x00\x92\ \x50\x59\xed\xde\x26\x22\x3f\xb2\x9d\x83\x88\xa8\xd0\x09\xe4\xc7\ \x55\xd5\xee\xbf\xd9\xce\x91\x8b\x78\xf6\x9a\xa0\xca\x6a\xef\x3f\ \x04\xf8\x77\xdb\x39\x88\x88\xa8\x13\xc5\xff\xdb\x70\x5d\xe0\x36\ \xdb\x31\x72\x09\x0b\x40\x02\x2a\xab\xbd\xff\x16\xe0\xdb\xb6\x73\ \x10\x11\x51\xb7\xfe\x73\xc3\xb5\x81\x7f\xb5\x1d\x22\x57\xb0\x00\ \xc4\x89\x83\x3f\x11\x51\x4e\x60\x09\x88\x13\xef\x01\x88\x43\xe5\ \x32\xef\x07\x1c\xfc\x89\x88\x72\xc2\x77\xaa\x96\x79\xdf\xb7\x1d\ \x22\x17\xb0\x00\xf4\xa1\xb2\xda\xfd\x9e\x08\x78\x83\x09\x11\x51\ \xae\x10\xdc\xc6\x1b\x03\xfb\xc6\x4b\x00\xbd\xa8\x5c\xe6\x7e\x87\ \x77\xfb\x13\x11\xe5\x26\xa3\xfa\xed\x4d\xd7\x05\x7f\x6c\x3b\x47\ \xb6\x62\x01\xe8\x41\xd5\x32\xf7\x6b\x10\xb9\xc3\x76\x0e\x22\x22\ \x4a\x81\xe8\x97\x37\x5c\x13\xfc\xa5\xed\x18\xd9\x88\x05\xa0\x1b\ \x55\xd5\xee\x27\xa0\xf8\x3d\x17\xf9\x21\x22\xca\x71\xaa\x0a\xe0\ \x63\x1b\xae\x0b\xfe\xd9\x76\x94\x6c\xc3\x01\xae\x8b\xaa\xea\xd8\ \xcd\x0a\x59\xc8\xe5\x7d\x89\x88\xf2\x83\xaa\xba\x22\xfa\xfe\x0d\ \xd7\x16\x3d\x6e\x3b\x4b\x36\x61\x01\xe8\xa4\x72\x79\xec\x6a\x51\ \x79\x92\x1b\xfb\x10\x11\xe5\x17\x55\xed\x50\x47\xaf\xdf\x74\x4d\ \xd1\x73\xb6\xb3\x64\x0b\x16\x80\x93\xe6\x2e\x33\x17\x2b\xcc\x0a\ \x6e\xe9\x4b\x44\x94\xaf\xb4\x05\x70\xae\xdc\x70\xad\xb3\xd6\x76\ \x92\x6c\xc0\x02\x00\x60\xf6\x72\x33\xc5\x31\xe6\x25\x11\x19\x6a\ \x3b\x0b\x11\x11\xa5\x93\x36\x48\xc0\xb9\x74\xfd\x55\xce\x6e\xdb\ \x49\x6c\x2b\xf8\x75\x00\x66\xae\x30\x23\x02\x6a\x96\x72\xf0\x27\ \x22\x2a\x04\x32\xcc\x78\x66\x69\xe5\x12\x33\xcc\x76\x12\xdb\x0a\ \xba\x00\xcc\xa8\xd1\xfe\x41\x63\x9e\x02\x64\x82\xed\x2c\x44\x44\ \x94\x19\x02\x99\x24\x41\xf3\xe4\xbc\xc7\xb5\xcc\x76\x16\x9b\x0a\ \xb6\x00\xcc\xaf\xd1\x60\x28\x6a\x16\x09\x64\x9e\xed\x2c\x44\x44\ \x94\x69\x72\x91\x57\x62\x1e\xba\x65\xa1\x16\xec\x13\x5f\x05\x5b\ \x00\x9a\x62\xe6\x2e\x11\x2c\xb0\x9d\x83\x88\x88\xec\x10\xe0\xc6\ \xd7\x07\x9a\x5f\xd9\xce\x61\x4b\x41\x16\x80\xaa\x6a\xf7\x9f\x05\ \xf8\xa4\xed\x1c\x44\x44\x64\x97\x08\x3e\x5b\xb5\xcc\xfd\x9a\xed\ \x1c\x36\x14\xdc\x53\x00\x73\x97\xc5\xde\xa7\x90\x47\xb8\xca\x1f\ \x11\x11\x9d\xa0\x46\x8c\xde\xb4\x7e\x41\xd1\x93\xb6\x93\x64\x52\ \x41\x0d\x82\x73\x9f\x36\x73\x4d\xc0\xbc\x20\x90\x82\xbe\xf1\x83\ \x88\x88\xba\x50\x6d\x55\x75\xde\xb1\x71\x81\xb3\xc9\x76\x94\x4c\ \x29\x98\x02\x30\x67\x85\x19\x23\x9e\x59\x23\x22\xa3\x6d\x67\x21\ \x22\xa2\xec\xa3\xd0\x7d\x45\x45\x81\x8b\x5e\xbd\x42\x0e\xdb\xce\ \x92\x09\x05\x71\x0f\xc0\x25\x2f\x99\x52\x31\xe6\x31\x0e\xfe\x44\ \x44\xd4\x13\x81\x8c\x8d\xc5\xbc\xc5\x93\x96\x98\x82\x58\x0e\xbe\ \x20\x0a\x40\x47\xab\xfe\x96\x8f\xfb\x11\x11\x51\x5f\x04\x72\x71\ \xff\x80\xfe\xc6\x76\x8e\x4c\xc8\xfb\x02\x50\xb5\xcc\xfd\xba\x00\ \x1f\xb1\x9d\x83\x88\x88\x72\x83\x08\x3e\x51\xb5\xdc\xfd\x92\xed\ \x1c\xe9\x96\xd7\xf7\x00\x54\x2e\x8f\x5d\x0d\x95\xa5\xdc\xda\x97\ \x88\x88\x12\xa1\xaa\x2e\xc4\xb9\x7a\xe3\xb5\xce\x4a\xdb\x59\xd2\ \x25\x6f\x0b\xc0\xec\x65\x66\x42\x40\xcc\x5a\x40\x86\xd8\xce\x42\ \x44\x44\xb9\x48\x1b\x1c\x09\x5c\xb0\xee\x1a\xd9\x6b\x3b\x49\x3a\ \xe4\xe5\x25\x80\xf9\x35\x5a\x12\x10\xf3\x28\x07\x7f\x22\x22\x4a\ \x9e\x0c\xf3\x8c\xf7\xc8\x8c\x85\x1a\xb2\x9d\x24\x1d\xf2\xb2\x00\ \x34\xc7\xcc\xaf\x00\xa9\xb4\x9d\x83\x88\x88\x72\x9b\x88\x5c\x50\ \x3c\xd0\xfc\xdc\x76\x8e\x74\xc8\xbb\x4b\x00\x73\x96\xb9\xff\xe0\ \x88\xdc\x63\x3b\x07\x11\x11\xe5\x0f\x85\xfe\xfd\xc6\x6b\x83\x7f\ \xb1\x9d\xc3\x4f\x79\x55\x00\xaa\x56\x98\xd9\xea\x99\xd5\x22\x52\ \x6a\x3b\x0b\x11\x11\xe5\x13\x6d\x53\xc7\xb9\x68\xe3\xd5\x4e\xad\ \xed\x24\x7e\xc9\x9b\x4b\x00\x17\x2d\x31\x03\xe0\x99\x87\x39\xf8\ \x13\x11\x91\xff\xa4\x1f\x8c\x79\x64\x46\x8d\xf6\xb7\x9d\xc4\x2f\ \x79\x53\x00\x62\x01\xbd\x13\x22\x93\x6d\xe7\x20\x22\xa2\xfc\x24\ \x90\x69\xc5\xb1\xfc\xd9\x3e\x38\x2f\x0a\x40\x55\xb5\xfb\x09\x08\ \x3e\x64\x3b\x07\x11\x11\xe5\xbd\x8f\xcf\x59\xea\xfe\xbd\xed\x10\ \x7e\xc8\xf9\x7b\x00\xe6\x2d\xd5\x69\xc6\xf1\xd6\x02\xd2\xcf\x76\ \x16\xa2\x6c\xe0\xc0\xc3\x88\xd6\x7d\x18\xd4\xba\x1f\x65\x4d\xfb\ \x51\xd4\x52\x0f\x84\x9b\x60\xda\x9a\xe1\x86\x5b\xe1\xc5\xa2\xf0\ \x5c\x17\xc6\x75\xb1\xbd\xb6\x16\x8e\xe3\x20\xe8\x38\x08\x06\x83\ \x28\x29\x29\x46\x49\x59\x19\xca\x06\x0c\x40\xbf\x8a\x51\x70\x46\ \x4d\x42\xcb\xe8\x39\xd8\x33\xe6\x22\xb8\xc8\xcb\x27\xa1\x88\x92\ \xa0\x2d\x30\xce\xdc\x0d\x0b\x9c\x5d\xb6\x93\xa4\x22\xa7\x0b\xc0\ \xa4\x25\xa6\xb8\x3c\x68\x56\xf3\x91\x3f\x2a\x54\x01\x78\x18\x77\ \x7c\x2b\x2a\x0e\x6e\x84\x73\xe8\x35\xb4\x1c\x78\x13\xf5\x07\x0f\ \x23\x1a\x8d\xc5\xf5\xfe\xc3\xf5\xf5\x71\xbd\x4e\x1c\x07\xfd\x4a\ \x8b\x31\xac\x62\x28\x86\x4d\x98\x04\x99\xf5\x6e\x6c\x9f\xfa\x3e\ \xb8\x52\x10\x7b\xa6\x10\x9d\x45\x55\xd7\x06\x86\x06\x2e\x5b\x77\ \x81\xc4\xf7\xc3\x96\x85\x72\xba\x00\x54\x55\x7b\xff\x0b\xe0\xcb\ \xb6\x73\x10\x65\x8a\x00\x38\xa7\x69\x07\x46\xbd\xf9\x02\x62\xaf\ \xaf\xc3\x81\xdd\xbb\xd0\xd1\x11\x4d\xfa\x78\xf1\x16\x80\xee\x38\ \x22\x18\x32\x64\x20\xce\x9d\x36\x1d\x7a\xe9\x2d\xd8\x31\xe1\x06\ \x68\xd2\x47\x23\xca\x41\x8a\x9f\x6c\xb8\x2e\xf0\x2d\xdb\x31\x92\ \x95\xb3\x05\x60\xce\xb2\xd8\xb5\x0e\x64\x29\x44\x72\xf6\x9f\x81\ \x28\x1e\x02\x60\xe2\x91\x0d\xa8\xd8\xb9\x0c\xf5\x9b\x56\xe3\x48\ \xc3\x31\xdf\x8e\x9d\x4a\x01\xe8\xaa\x38\x54\x84\x89\x93\x27\x62\ \xe0\xbb\x3f\x88\xcd\x33\x3e\xc8\x32\x40\xf9\x4f\x55\x05\x7a\xf5\ \xfa\xeb\x8a\x9e\xb5\x1d\x25\x19\x39\x39\x78\xce\x58\x6a\x86\x84\ \xc4\x6c\x11\x91\xd1\xb6\xb3\x10\xa5\xcb\xd0\x8e\x3a\x4c\xae\x7d\ \x18\x47\xd6\x3c\x8b\xfa\xba\x86\xb4\x7c\x86\x9f\x05\xa0\xb3\x92\ \x50\x11\xa6\x57\x55\xa2\xfd\x86\x6f\x61\x6f\xc5\xec\xb4\x7c\x06\ \x51\x36\x50\xe8\xbe\x80\x04\x66\xad\xbb\x46\x9a\x6c\x67\x49\x54\ \x4e\x16\x80\xca\x6a\xef\x41\x01\x3e\x60\x3b\x07\x91\xdf\x04\xc0\ \x94\xfa\xd5\x28\x5f\xf3\x20\x76\x6f\xdc\x08\xcf\x33\x69\xfd\xbc\ \x74\x15\x80\xce\x46\x8f\x1a\x8e\x73\x6f\xfc\x28\x36\x56\xfe\x53\ \xda\x3f\x8b\xc8\x06\x05\xfe\xbc\xf1\xda\xc0\x47\x6d\xe7\x48\x54\ \xce\x15\x80\xca\x6a\xf7\x43\x02\xc9\xab\xe5\x18\x89\x1c\x28\x66\ \xbd\xb9\x04\xde\x0b\x0f\x61\xef\x1b\x6f\x66\xec\x73\x33\x51\x00\ \x4e\x19\x50\xde\x0f\xb3\x17\xdc\x84\x0d\xef\xfe\x1e\x2f\x0f\x50\ \xde\x51\x35\xb7\x6c\xbc\xae\xe8\x61\xdb\x39\x12\x91\x53\x05\x60\ \xce\x0a\x33\xc6\x31\x66\x0b\x20\x83\x6d\x67\x21\xf2\x83\x00\x98\ \xf5\xd6\x52\xc4\x9e\xfd\x13\x0e\xec\x3d\x90\xf1\xcf\xcf\x64\x01\ \x38\xa5\x5f\xbf\x52\xcc\x7d\xcf\xad\x58\xff\xce\xef\xb0\x08\x50\ \xde\x50\xd5\xa3\x8e\x71\x66\xad\xbf\xde\x39\x64\x3b\x4b\xbc\x72\ \xaa\x00\x54\x55\x7b\x4b\x00\x5c\x6f\x3b\x07\x91\x1f\x26\x1d\x59\ \x8b\xd2\x65\xbf\xc4\x5b\xbb\xf6\x58\xcb\x60\xa3\x00\x9c\x32\x68\ \x40\x7f\x4c\xff\xe8\x37\xb1\x69\xc6\x07\xad\x65\x20\xf2\x93\x2a\ \x1e\xdf\x78\x5d\xe0\x26\xdb\x39\xe2\x95\x33\x05\xa0\x72\x99\xfb\ \x71\x11\xf9\xa3\xed\x1c\x44\xa9\x1a\xd2\x5e\x87\x49\x2b\xef\xc0\ \xce\x35\xab\xa1\x6a\xf7\x1c\xd8\x66\x01\x00\x4e\xfc\x02\x3a\x77\ \xfc\x39\x08\xfe\xd3\x2f\x71\x60\xf0\x74\xab\x59\x88\xfc\x90\x4b\ \xbb\x06\xe6\x44\x01\x98\xfb\xb4\x19\xa5\x01\xb3\x8d\x53\xff\x94\ \xcb\x04\xc0\xbc\x9d\x0f\xe2\xc0\x13\xf7\xa0\xad\xad\xdd\x76\x1c\ \x00\xf6\x0b\xc0\x29\x01\xc7\xc1\xc5\x0b\x6e\xc0\xa6\xbf\xf9\x09\ \x2f\x0b\x50\x4e\x53\xd5\xa3\x06\xce\x8c\xcd\xd7\x39\xd9\xf1\xc3\ \xd5\x8b\x9c\xd8\x0b\xc0\x38\x7a\x27\x07\x7f\xca\x65\xc3\xc2\xfb\ \x51\xb9\xe8\x33\x78\xed\xc1\xff\xcb\x9a\xc1\x3f\x9b\x78\xc6\xe0\ \xa5\x25\x4f\xa2\xec\x7b\x97\x62\x7c\xc3\x06\xdb\x71\x88\x92\x26\ \x22\x43\x03\xa2\xbf\xb6\x9d\x23\x1e\x59\x3f\x03\x50\x59\xed\x7e\ \x58\x20\xf7\xdb\xce\x41\x94\xac\xca\x3d\x4f\xa0\xfe\xd1\x5f\xa3\ \xb5\x35\x6c\x3b\xca\x59\xb2\x65\x06\xa0\xb3\x80\xe3\xe0\xd2\xf7\ \x7f\x10\xeb\xdf\xfd\x3d\xdb\x51\x88\x92\x27\xe6\xef\x36\x5c\x53\ \xf4\x88\xed\x18\xbd\xc9\xea\x02\x70\xe1\x72\x33\x34\x66\xcc\x0e\ \x11\xa9\xb0\x9d\x85\x28\x51\x21\x13\x41\x55\xcd\x0f\xb0\x7d\xd5\ \x4a\xdb\x51\x7a\x94\x8d\x05\xe0\x94\xc9\x93\x26\xe0\xd8\x17\x1f\ \x46\x7b\x11\xf7\xf9\xa2\x1c\xa4\x5a\x67\x42\x81\x69\x9b\xae\x90\ \x46\xdb\x51\x7a\x92\xd5\x97\x00\x62\x46\x7f\xcc\xc1\x9f\x72\xd1\ \xf0\xf0\x7e\x4c\xbe\xff\x1f\xb3\x7a\xf0\xcf\x76\xaf\xef\xda\x03\ \xf7\x7b\xf3\x71\x6e\xc3\x7a\xdb\x51\x88\x12\x27\x32\x42\xa2\xe6\ \x3f\x6d\xc7\xe8\x4d\xd6\xce\x00\x54\x56\x9b\xf9\x02\x7d\xce\x76\ \x0e\xa2\x44\x4d\x69\x78\x15\xed\x7f\xbe\x0d\x4d\xcd\xad\xb6\xa3\ \xf4\x29\x9b\x67\x00\x4e\x09\x06\x83\xb8\xf0\xd3\xdf\xc1\xa6\xf3\ \xf3\x62\x0b\x76\x2a\x24\xaa\x2a\xe2\x5c\xb6\xfe\x5a\x67\xb5\xed\ \x28\xdd\xc9\xca\x02\x30\x63\xa1\x86\x42\x83\xbc\x4d\x02\x99\x66\ \x3b\x0b\x51\x22\xe6\xbc\xf9\x14\x0e\x3c\x70\x47\xdc\xdb\xf1\xda\ \x96\x0b\x05\x00\x38\xb1\x1d\xf1\xe5\x37\x7f\x08\xeb\xaf\xf8\xae\ \xed\x28\x44\x09\x51\xd5\x2d\x03\x43\x81\xb9\x2b\xaf\x10\xd7\x76\ \x96\xae\xb2\xf2\x12\x40\x68\x90\xf7\x2f\x1c\xfc\x29\xd7\x5c\xb8\ \xed\x5e\xbc\x75\xdf\x8f\x73\x66\xf0\xcf\x25\x6a\x0c\x5e\x7c\xf8\ \x7e\xcc\x7e\xf4\x0b\xb6\xa3\x10\x25\x44\x44\x66\x35\xc7\xbc\x6f\ \xd8\xce\xd1\x9d\xac\x9b\x01\x98\xfb\x8c\x99\xa8\x9e\xd9\x06\x48\ \xb1\xed\x2c\x44\xf1\xba\x64\xd3\x5d\xa8\x5d\x9c\x7b\x0f\xab\xe4\ \xca\x0c\x40\x67\x17\x5c\x7e\x19\x6a\x3f\xfc\x07\xdb\x31\x88\xe2\ \xa6\xd0\x70\x40\x02\xd3\xd7\x5d\x23\x7b\x6d\x67\xe9\x2c\xeb\x66\ \x00\x8c\xa7\x3f\xe3\xe0\x4f\xb9\xe4\x92\x75\xbf\xcc\xc9\xc1\x3f\ \x57\xad\x7d\xf1\x25\x4c\xfd\xd3\x47\x6c\xc7\x20\x8a\x9b\x40\xca\ \x8c\x9a\x9f\xda\xce\xd1\x55\x56\x15\x80\xca\xea\xd8\x0d\x02\xbc\ \xc7\x76\x0e\xa2\x78\x5d\xbc\xe9\x77\xa8\x7d\x72\x91\xed\x18\x05\ \x67\xc3\x9a\xb5\x38\xff\x81\x7f\xb4\x1d\x83\x28\x11\x7f\x57\x55\ \x1d\xbb\xca\x76\x88\xce\xb2\xa6\x00\xcc\x58\xa8\x21\x51\xf9\xb9\ \xed\x1c\x44\xf1\xba\x70\xc7\xfd\xd8\xbe\xf8\x3e\xdb\x31\x0a\xd6\ \xab\xab\x56\x61\xce\x5f\xbf\x64\x3b\x06\x51\xfc\x54\x7e\x31\xbf\ \x46\x83\xb6\x63\x9c\x92\x35\x05\x20\x34\xd8\xfb\x3a\x44\x26\xdb\ \xce\x41\x14\x8f\xd9\xfb\x97\xe3\xf5\x45\xbf\xb5\x1d\xa3\xe0\xbd\ \xbc\x62\x39\xe6\xae\xfc\x2f\xdb\x31\x88\xe2\x23\x32\xa3\x39\xea\ \x65\x4d\x6b\xcd\x8a\x9b\x00\xab\xaa\xcd\x68\xc0\xbc\x06\x08\x97\ \xfc\xa2\xac\x77\xde\xb1\x4d\x68\xf9\xed\xd7\x11\x89\xe4\xfe\xdd\ \xfe\xb9\x78\x13\x60\x57\x8e\x08\xe6\x7d\xfe\x7b\xd8\x36\xe3\x43\ \xb6\xa3\x10\xf5\x49\xa1\xcd\xae\xe3\x4c\xd9\x7a\xb5\x53\x67\x3b\ \x4b\x96\xcc\x00\xe8\x0f\x39\xf8\x53\x2e\x18\xdc\xd1\x00\xef\xfe\ \x7f\xcf\x8b\xc1\x3f\x5f\x18\x55\x6c\xfc\xed\x8f\x30\xf2\x30\x57\ \x0c\xa4\xec\x27\x90\x01\x41\xa3\xb7\xdb\xce\x01\x64\x41\x01\x98\ \xb3\x4c\x2b\x01\xfd\x98\xed\x1c\x44\x7d\x09\x1a\x17\xe3\x16\xff\ \x0b\x8e\x1f\x6b\xb2\x1d\x85\xba\x88\xc5\x62\x68\xfc\xe5\x67\x21\ \x2d\xb9\x3f\xa3\x41\x85\x40\xff\x71\xce\xd3\xe6\x7c\xdb\x29\xac\ \x17\x00\x11\xf3\x53\x40\xac\xe7\x20\xea\xcb\x05\x2f\xff\x04\x7b\ \x76\xbe\x6e\x3b\x06\xf5\xe0\x58\x63\x33\xc6\xdf\xf7\x69\x98\x56\ \x16\x34\xca\x6e\x02\x09\x88\xa3\x3f\xb1\x9d\xc3\xea\xc0\x3b\x77\ \x69\xec\x46\x01\xae\xb4\x99\x81\x28\x1e\xe7\x1f\x5c\x89\xed\xcf\ \x3c\x6d\x3b\x06\xf5\x61\xfb\xb6\x1d\xa8\x5a\xf7\x1b\x96\x00\xca\ \x7a\x22\x58\x30\x67\x59\xec\x5a\x9b\x19\xac\x15\x80\xf9\x35\x1a\ \x34\x8e\xfc\xd8\xd6\xe7\x13\xc5\x6b\x60\xe4\x28\x5a\x16\xfd\x18\ \xaa\x6a\x3b\x0a\xf5\x41\x01\xac\x7d\xf4\xcf\xa8\x38\xbc\x89\x25\ \x80\xb2\x9e\x23\xf2\xd3\x5b\x16\x6a\xc0\xda\xe7\xdb\xfa\xe0\xc6\ \x98\xf7\x09\xae\xf7\x4f\xb9\x60\xea\x33\x3f\x42\x63\x63\xb3\xed\ \x18\x14\xa7\x98\xeb\x42\x16\x7e\x0f\x6e\x63\x3d\x4b\x00\x65\x39\ \x99\xf9\xda\x40\xef\xa3\xb6\x3e\xdd\x4a\x01\x98\x5f\xa3\x25\x8e\ \xe2\x36\x1b\x9f\x4d\x94\x88\xd9\x7b\xab\xb1\xe3\xd5\x57\x6d\xc7\ \xa0\x04\xed\x3b\x70\x18\x17\xed\xbc\x9f\x25\x80\xb2\x9e\x00\xdf\ \x9f\xb1\x50\x43\x36\x3e\xdb\x4a\x01\x68\x8a\x79\x5f\x80\xc8\x18\ \x1b\x9f\x4d\x14\xaf\xb2\x58\x0b\x9a\x1e\xfb\xa5\xed\x18\x94\xa4\ \x57\x9f\x78\x04\x43\x62\xc7\x58\x02\x28\xab\x89\xc8\xf8\xd0\x40\ \xef\xb3\x36\x3e\x3b\xe3\x05\xe0\xa2\x25\x66\x00\x14\xdf\xc9\xf4\ \xe7\x12\x25\x6a\xf6\xab\xbf\xe6\x23\x7f\x39\x2c\x16\x8b\x61\xd8\ \xd2\xff\x04\x00\x96\x00\xca\x6a\x22\xf8\xb7\x19\x35\xda\x3f\xd3\ \x9f\x9b\xf1\x02\x10\x0b\xe8\x37\x44\x64\x68\xa6\x3f\x97\x28\x11\ \xa3\x5b\xdf\xc0\xeb\x35\xd5\xb6\x63\x50\x8a\x6a\xb7\xed\xc4\xd4\ \xc6\x2d\x00\x58\x02\x28\x9b\xc9\xf0\xe2\xa8\xf7\xd5\x4c\x7f\x6a\ \x46\x0b\xc0\xbc\x1a\xad\x00\xf4\xeb\x99\xfc\x4c\xa2\x64\x8c\xa9\ \xf9\x5f\xc4\x5c\xd7\x76\x0c\x4a\x91\xaa\xa2\x71\xf1\xe9\x3d\xc6\ \x58\x02\x28\x5b\xa9\xe0\x5b\xb3\x9e\xd4\xc1\x99\xfc\xcc\x8c\x16\ \x00\x13\x35\xdf\x80\x48\xc6\xa7\x39\x88\x12\x31\xe9\xc8\x06\xec\ \x5c\xbf\xc1\x76\x0c\xf2\xc9\x81\x43\xf5\xa8\xac\x5b\xf9\xf6\x9f\ \x59\x02\x28\x1b\x09\x64\x40\x30\x64\xbe\x96\xc9\xcf\xcc\x58\x01\ \xb8\x70\xb9\x19\x0a\xe8\x17\x33\xf5\x79\x44\xc9\x1a\xf0\x3c\x77\ \xf9\xcb\x37\xfb\x9e\xb8\xe7\x8c\x3f\xb3\x04\x50\x36\x52\xd5\x2f\ \xcf\xa9\xd1\x41\x99\xfa\xbc\x8c\x15\x00\x57\x95\x67\xff\x94\xf5\ \x26\x1d\x59\x87\x5d\x5b\xb6\xd9\x8e\x41\x3e\xab\x6b\x38\x8a\xaa\ \x83\xcf\x9c\xf1\x35\x96\x00\xca\x36\x22\x32\xd0\x89\x66\x6e\x16\ \x20\x23\x05\x60\xc6\x52\x33\x84\x67\xff\x94\x0b\x06\xaf\xfe\xb3\ \xed\x08\x94\x26\x87\x96\x3f\x70\xd6\xd7\x58\x02\x28\xdb\x28\xf4\ \x2b\x99\x9a\x05\xc8\x48\x01\x08\x89\x7e\x1d\x90\xf2\x4c\x7c\x16\ \x51\xb2\x46\xb5\xbe\x89\xd7\x37\x70\x4b\xd9\x7c\xb5\xff\x60\x1d\ \x26\xb6\xd4\x9e\xf5\x75\x96\x00\xca\x26\x22\x32\x50\x62\xde\x57\ \x32\xf1\x59\x69\x2f\x00\x17\x2d\x31\x03\x78\xf6\x4f\xb9\x60\xfc\ \xa6\x07\x61\x0c\xd7\xfb\xcf\x67\xce\xb3\x7f\xe8\xf6\xeb\x2c\x01\ \x94\x4d\x04\xf8\x4a\x26\xd6\x05\x48\x7b\x01\x88\x05\xcd\xe7\x44\ \x64\x60\xba\x3f\x87\x28\x15\x21\x13\xc1\xbe\x57\x56\xf6\xfd\x42\ \xca\x69\xaf\xef\xdc\x85\x12\x13\xe9\xf6\x7b\x2c\x01\x94\x3d\x64\ \x70\x71\xd4\xfb\x74\xba\x3f\x25\xad\x05\x60\xd2\x12\x53\xac\x8a\ \x8c\x2f\x6e\x40\x94\xa8\x19\x6f\x2e\x45\x4b\x4b\x9b\xed\x18\x94\ \x66\xae\xe7\x61\xf6\xd6\x7b\x7b\xfe\x3e\x4b\x00\x65\x0b\xc1\xd7\ \xe6\xad\xd5\xa2\x74\x7e\x44\x5a\x0b\xc0\x80\x80\xf9\xb8\x88\x8c\ \x4c\xe7\x67\x10\xf9\x41\x36\x3c\x6d\x3b\x02\x65\xc8\xae\x57\x56\ \xf5\xfa\x7d\x96\x00\xca\x0e\x72\x8e\x39\xe6\x7d\x24\x9d\x9f\x90\ \xbe\x02\x70\x9b\x3a\x0a\x7c\x33\x6d\xc7\x27\xf2\xc9\xa0\xe8\x51\ \xbc\xb9\x7d\x87\xed\x18\x94\x21\x0d\x47\x8e\x61\x78\xf4\x70\xaf\ \xaf\x61\x09\xa0\x6c\xa0\xc0\xb7\xa1\x2a\xe9\x3a\x7e\xda\x0a\x40\ \xe5\x65\xee\xcd\x10\x99\x9c\xae\xe3\x13\xf9\x65\xd2\x1b\x4b\xe1\ \x79\xc6\x76\x0c\xca\x10\x05\x30\x6e\xc3\xd9\x8f\x04\x76\xc5\x12\ \x40\xb6\x09\x64\x5a\xe5\x0a\xf7\xbd\xe9\x3a\x7e\xda\x0a\x80\x88\ \x64\x74\x49\x43\xa2\x64\x79\xdb\x5e\xb0\x1d\x81\x32\xec\x8d\xcd\ \xf1\x2d\xf5\xcc\x12\x40\xd6\xa9\xa4\x6d\xff\x9c\xb4\x14\x80\xca\ \xe5\xe6\x42\x40\x2e\x4b\xc7\xb1\x89\xfc\x54\xea\xb5\x61\xef\x8e\ \x9d\xb6\x63\x50\x86\x35\x1c\x6b\x42\x3f\x13\x8e\xeb\xb5\x2c\x01\ \x64\x93\x40\xde\x35\x7b\xb9\xa9\x4a\xc7\xb1\xd3\x52\x00\xc4\x28\ \xef\xfc\xa7\x9c\x30\xe9\xd0\xcb\x88\xb9\x9e\xed\x18\x94\x61\x6a\ \x0c\xce\xdf\xfd\x44\xdc\xaf\x67\x09\x20\x9b\x02\x69\x1a\x53\x7d\ \x2f\x00\x55\xd5\x66\xb4\x42\x6f\xf1\xfb\xb8\x44\xe9\xd0\xff\x8d\ \xd5\xb6\x23\x90\x25\xc7\xb6\xbe\x92\xd0\xeb\x59\x02\xc8\x1a\xd1\ \x0f\xce\x5c\x61\x46\xf8\x7d\x58\xff\x67\x00\x54\xbf\x20\x22\x69\ \x7d\x76\x91\xc8\x2f\x4d\x7b\xb6\xdb\x8e\x40\x96\x1c\xd8\x7f\x30\ \xe1\xf7\xb0\x04\x90\x1d\x12\x2a\xf2\xf4\xf3\x7e\x1f\xd5\xd7\x02\ \x30\x69\x89\x29\x56\x68\xda\x57\x2f\x22\xf2\x43\xa9\xd7\x86\x43\ \xfb\x0e\xd8\x8e\x41\x96\xb4\xb6\xb6\xa1\x3c\x96\xf8\x60\xce\x12\ \x40\x56\x88\x7e\x76\xc6\x42\x0d\xf9\x79\x48\x5f\x0b\x40\x79\xc0\ \xdc\x22\x22\x15\x7e\x1e\x93\x28\x5d\xce\x3d\xb2\x89\x8f\xff\x15\ \x30\x05\x30\xe5\x40\x72\xcb\x3f\xb3\x04\x50\xe6\xc9\xf0\xd0\x20\ \xef\xfd\x7e\x1e\xd1\xdf\x4b\x00\x82\xcf\xf9\x7a\x3c\xa2\x34\x2a\ \xaf\xe3\xf4\x7f\xa1\xd3\xbd\xdb\x92\x7e\x2f\x4b\x00\x59\xf0\x59\ \x3f\x0f\xe6\x5b\x01\xa8\x5a\x61\x66\xf3\xd1\x3f\xca\x25\x52\xff\ \x86\xed\x08\x64\xd9\x91\x03\xfb\x52\x7a\x3f\x4b\x00\x65\x92\x40\ \xde\x55\xb9\xc2\xcc\xf0\xeb\x78\xbe\x15\x00\xf5\x94\x67\xff\x94\ \x53\x5a\x0f\xbe\x65\x3b\x02\x59\xd6\x70\xe4\x58\xca\xc7\x60\x09\ \xa0\x8c\xf2\xd4\xb7\x59\x00\x5f\x0a\xc0\xd4\xc5\xa6\x5c\xa0\x69\ \xdd\xb4\x80\xc8\x6f\xc7\xea\xea\x6d\x47\x20\xcb\xc2\xed\xed\xbe\ \x1c\x87\x25\x80\x32\x47\x3f\x36\xef\x71\x2d\xf3\xe3\x48\xbe\x14\ \x80\x7e\xa5\xe6\x43\x10\xe9\xef\xc7\xb1\x88\x32\xa1\x7f\xb4\x11\ \x6d\xe1\x0e\xdb\x31\xc8\x32\xcf\x33\x18\x1c\x3b\xee\xcb\xb1\x58\ \x02\x28\x13\x44\x64\xa0\x5b\xec\xdd\xea\xc7\xb1\x7c\x29\x00\x06\ \xf8\x84\x1f\xc7\x21\xca\x94\x61\xad\x7b\x6d\x47\xa0\x2c\x31\xf6\ \xd8\x56\xdf\x8e\xc5\x12\x40\x99\x20\xe2\xcf\x98\x9b\x72\x01\xa8\ \xaa\x36\xd3\x45\xe4\x12\x3f\xc2\x10\x65\x4a\xff\x30\xa7\xff\xe9\ \x84\x92\xe3\xa9\xdd\x08\xd8\x15\x4b\x00\xa5\x9b\x40\xde\x55\xb5\ \xd4\x4c\x4a\xf5\x38\x3e\xcc\x00\x28\xcf\xfe\x29\xe7\x84\x3a\xfc\ \x99\xf6\xa5\xdc\xa7\xad\xa9\xdf\x08\xd8\x15\x4b\x00\xa5\x9b\x8a\ \xfe\x43\xaa\xc7\x48\xa9\x00\xcc\xaf\xd1\xa0\xaa\x7e\x34\xd5\x10\ \x44\x99\x16\x68\x6b\xb4\x1d\x81\xb2\x44\x34\x4d\x03\x35\x4b\x00\ \xa5\x93\x88\x7e\x1c\xb7\x69\x4a\x63\x78\x4a\x6f\x6e\x89\xb8\x0b\ \x44\x64\x64\x2a\xc7\x20\xb2\xc1\xe9\x68\xb1\x1d\x81\xb2\x44\xac\ \xbd\x2d\x6d\xc7\x66\x09\xa0\xf4\x91\x73\xe6\x5e\xee\x5e\x93\xca\ \x11\x52\x2a\x00\xea\x38\x1f\x4b\xe5\xfd\x44\xd6\xb8\x31\xdb\x09\ \x28\x4b\xb8\xd1\x68\x7a\x8f\xcf\x12\x40\x69\xa2\x70\x52\x9a\x81\ \x4f\xba\x00\x4c\x5d\x6c\xca\x55\xf5\xc6\x54\x3e\x9c\xc8\x16\xf1\ \x58\x00\xe8\x04\xe3\x79\x69\xff\x0c\x96\x00\x4a\x0b\xd5\x9b\x52\ \x59\x13\x20\xe9\x02\x50\x5a\x6a\x6e\x16\x91\xd2\x64\xdf\x4f\x64\ \x93\x7a\xae\xed\x08\x05\xa9\x38\xe4\xeb\x66\x66\xbe\x70\xdd\xcc\ \xfc\xb7\xc0\x12\x40\xbe\x13\xe9\xef\x95\x78\x37\x25\xfb\xf6\xa4\ \x0b\x80\x88\x7c\x38\xd9\xf7\x12\x51\xe1\x70\x1c\x07\x73\xa7\x9f\ \x87\x87\x7f\xf6\x35\x3c\xfc\xb3\xaf\x20\x10\xf0\x77\x0f\xb2\x5c\ \xc2\x12\x40\xfe\x4b\x7e\x2c\x0e\x26\xf3\xa6\xd9\xcb\xcc\x70\x85\ \xb9\x4a\x20\xc9\x7e\x2e\x91\x5d\x81\xa4\xfe\xd3\xa7\x04\x84\x42\ \x45\xb8\xe2\xe2\x99\xf8\xd7\x7f\x7c\x2f\x86\x0f\x19\xf0\xf6\xd7\ \xbf\xfe\xb1\xbf\xc1\x4f\xee\x79\x02\x6a\x31\x5b\x67\xe2\x64\xb6\ \x90\xb8\x8d\xf5\x08\x02\x70\xfa\x0f\xcc\xe8\xe7\x52\x9e\x52\xbd\ \x6e\xc6\x52\x33\xa4\x76\x81\x93\xf0\xf3\xac\x49\xfd\x16\x0c\x88\ \xb9\x15\x90\x40\x32\xef\x25\xca\x06\x1a\x28\xb2\x1d\x21\x6f\x0d\ \x19\x54\x8e\x0f\x5c\x7f\x19\x3e\x77\xcb\x55\x28\x2a\x3a\xfb\xd7\ \xc4\x27\x6f\x7e\x37\xb6\xbd\x71\x10\x4b\x56\xae\xb3\x90\xee\x6c\ \x45\x45\x99\xff\x6f\x81\x25\x80\xfc\x22\x22\x45\xc5\x30\xb7\x00\ \xb8\x2b\xd1\xf7\x26\x55\x00\x14\xb8\x95\xe7\xfe\x94\xcb\x9c\x62\ \xde\xbe\xe2\x27\x47\x04\xd3\x27\x8e\xc5\x97\x3e\x7c\x2d\xe6\x5f\ \x38\xbd\xcf\xd7\xff\xf4\x9b\x1f\xc6\x91\xe3\xcd\x58\xb3\xf9\xf5\ \x0c\xa4\xeb\x5d\x51\x71\x89\x95\xcf\x65\x09\x20\xbf\xa8\xc8\xad\ \x48\xa2\x00\x24\x3c\xf7\x35\x73\x85\x19\x21\xc0\xe5\x89\xbe\x8f\ \x28\x9b\xb8\x21\xee\x5d\xe5\x87\xfe\x65\x25\xb8\xf9\x9a\x4b\xf0\ \xfc\x7d\xb7\xe3\xe1\x9f\x7d\x25\xae\xc1\xff\x94\x3f\xfd\xf0\xb3\ \x98\x3b\xe3\xbc\x34\xa6\x8b\x4f\x51\x99\x2f\x1b\xab\x25\x85\xf7\ \x04\x90\x3f\x74\xfe\xbc\x1a\xad\x48\xf4\x5d\x09\xcf\x00\x04\x8d\ \xb9\x19\x90\xc2\xbd\x8b\x87\xf2\x82\x57\xc6\xb3\xae\x64\x39\x22\ \x98\x72\xee\x68\x7c\xea\xef\xae\xc4\x8d\xef\xaa\x4c\xe9\x58\xf7\ \xff\xf7\x17\xf0\x99\xdb\x7f\x8f\xe7\xd7\xd6\xfa\x94\x2e\x71\x81\ \x7e\x03\xfa\x7e\x51\x1a\x71\x26\x80\x52\x25\x90\x80\x17\xf5\x6e\ \x02\xf0\xfb\x44\xde\x97\xf8\x25\x00\x95\xf7\xf3\xde\x3f\xca\x75\ \xb1\xd2\xc1\xb6\x23\xe4\x9c\x41\xe5\xfd\xb0\xe0\x9d\x95\xf8\xf2\ \x47\x16\x60\x70\xb9\x7f\x67\xcd\x77\xdd\xf6\x29\xdc\xfe\x9b\x47\ \xf1\xe0\x92\x17\x7d\x3b\x66\x22\x02\xe5\x09\x9f\x38\xf9\x8e\x25\ \x80\x52\x25\x22\xef\x47\x3a\x0b\xc0\x85\xcb\xcd\xd0\x98\x31\xf3\ \xc1\x06\x40\x39\xae\xb5\xd4\xfe\x2f\xfd\x5c\x50\x54\x54\x84\x79\ \x33\x26\xe0\x73\x1f\xb8\x1a\x17\xcd\x9a\x98\xb6\xcf\xb9\xed\x73\ \x37\x63\xda\x84\xd1\xf8\xc1\x9d\x8f\xc2\xcd\xc0\xc2\x3c\x9d\xb5\ \x0f\x1c\x93\xd1\xcf\xeb\x09\x4b\x00\xa5\x46\xaf\x9a\x53\xa3\x83\ \x36\x5d\x21\x71\x6f\x74\x92\x50\x01\x70\x3d\x73\x93\x38\xc2\xe7\ \xa7\x28\xe7\x1d\x2d\x1b\x65\x3b\x42\xd6\x72\x1c\x07\x93\xc6\x8d\ \xc4\x07\xaf\xbf\x0c\x1f\x58\x70\x31\x9c\x0c\x3d\x26\xf7\x81\x05\ \x97\x60\xf6\x94\x71\xf8\xd4\x77\xef\xc2\xf1\xe6\xd6\x8c\x7c\x26\ \x00\x1c\x1e\x60\xff\x3e\x84\x53\x58\x02\x28\x79\x12\x72\x62\xde\ \x7b\x00\xdc\x17\xef\x3b\x12\x1a\xcc\x55\xe4\x26\x9e\xfb\x53\x3e\ \x68\x29\x19\x86\xa1\xa1\x22\x44\xa3\x5c\x12\x18\x00\x44\x04\x63\ \x86\x0f\xc5\x8d\x57\xcc\xc5\xa7\xde\xf7\x6e\xf4\x2f\x2b\xb6\x92\ \x63\xfa\x79\xa3\xb1\xf2\x8f\xdf\xc3\xe7\x7f\x78\x0f\x56\xad\xdb\ \x9e\xf6\xcf\x13\xc7\x41\x43\x69\x76\xcc\x00\x9c\xc2\x12\x40\xc9\ \x52\x95\x9b\x90\x40\x01\x88\x7b\x3c\x9f\x5f\xa3\x25\x4d\x31\xef\ \xa8\x40\xec\xdd\x32\x4b\xe4\xa3\x29\xbf\xbb\x05\x87\x0f\xd6\xd9\ \x8e\x61\x4d\x51\x30\x88\x58\xb4\x1d\xd7\x5c\x36\x0b\x9f\xfe\xbb\ \x2b\x51\x31\xb8\xdc\x76\xa4\x33\x3c\x5e\xb3\x1e\xb7\xff\xdf\xc3\ \x08\x77\x44\xd2\xf6\x19\xa5\x25\xc5\x88\x7d\xed\xe1\xb4\x1d\x3f\ \x15\xc1\x41\xc3\x59\x02\x28\x41\xda\xe2\x0c\x09\x0c\x5d\x77\x81\ \xc4\x75\x66\x13\xf7\x0c\x40\x53\xcc\xbd\x52\xe0\x70\xf0\xa7\xbc\ \xd1\x7f\xe8\x30\xa0\xc0\x0a\x40\xa8\x28\x88\xb9\x73\xa6\xe0\x1d\ \x17\xcf\xc2\xc5\xf3\xa6\xa3\x42\xdb\x6d\x47\xea\xd1\x7b\xaf\x98\ \x8b\xab\x2e\x39\x1f\x5f\xf9\xaf\x7b\xf1\xd2\xfa\x1d\x69\x59\x39\ \xb0\xbc\x7f\x3f\x24\xbc\x7c\x5a\x86\x70\x26\x80\x12\x27\xe5\xde\ \x71\x77\x3e\x80\x15\xf1\xbc\x3a\xee\x02\x20\xea\xdc\xc8\x7b\xff\ \x28\x9f\x84\x86\x9d\x03\x60\xab\xed\x18\x69\xd7\xbf\x5f\x29\x2e\ \x9c\x3b\x0d\x97\x5d\x78\x3e\xe6\xce\x99\x8a\x92\xe2\x4e\x2b\xdf\ \xb5\x65\x6f\x01\x00\x80\x7e\xa5\xc5\xb8\xfb\xf6\x7f\xc2\xcb\x9b\ \x77\xe1\x9f\xef\x78\x00\x0d\x47\xe3\xbe\xbf\x29\x2e\x43\x86\x0e\ \xc9\xda\x02\x00\xb0\x04\x50\xe2\xc4\x38\x37\xc2\xef\x02\xa0\xd0\ \xbf\xe1\xda\xff\x94\x4f\xbc\x8a\x71\xb6\x23\xa4\xcd\xa8\x91\x15\ \xb8\x78\xde\x34\x5c\x32\x6f\x06\x66\x4c\x3d\x37\xe7\x37\xe0\xb9\ \x74\xf6\x24\x3c\xff\xc7\xef\xe2\xae\x85\xcf\xe2\xb7\x8b\x56\xf8\ \x76\x59\x60\xc0\xa8\xec\xba\xfe\xdf\x1d\x96\x00\x4a\x84\x42\x6f\ \x04\xf0\xd5\x78\x5e\x1b\x57\x01\xa8\x5a\x61\x66\xc3\x68\xfe\xfe\ \xb6\xa4\x82\xd4\x3c\x78\x82\xed\x08\xbe\x29\x0e\x15\xe1\xfc\xe9\ \x13\x70\x41\xe5\x54\x5c\x58\x35\x0d\xa3\x47\x0e\xb5\x1d\x29\x2d\ \x3e\x73\xeb\x95\xf8\xe4\xfb\xe6\xe3\x87\xbf\x7b\x0c\x8f\xae\x58\ \x83\x58\x2c\xb5\x9b\x38\x03\x63\xa6\xf9\x94\x2c\xbd\x58\x02\x28\ \x5e\x22\x32\xb1\xaa\xda\x4c\xdf\x70\xad\xd3\xe7\x5d\xb4\xf1\xcd\ \x00\x78\x66\x01\x84\x67\xff\x94\x5f\x0e\x0e\x3d\x3f\x67\xe7\xb4\ \x44\x04\xe7\x8e\x1b\x89\xaa\x99\x93\x30\xb7\x72\x0a\xce\x9f\x36\ \x01\xa1\xa2\xc2\x78\x42\xb7\xa8\x28\x80\xef\x7f\xfe\x66\x7c\xfb\ \x93\x37\xe2\x87\xbf\x5d\x8c\x27\x9e\x5b\x9f\x74\x11\x78\x63\xe4\ \xc5\x3e\xa7\x4b\x1f\x96\x00\x8a\x97\xc0\x5c\x07\xa0\xcf\x02\x10\ \xd7\xef\xbf\xaa\x65\xde\x72\x08\xae\x4e\x39\x15\x51\x96\x99\xf0\ \xab\x9b\x70\xf4\xe8\x71\xdb\x31\xe2\x32\x66\xf4\x30\xcc\x9e\x3e\ \x01\x73\x66\x4e\xc2\xec\xf3\x27\x62\xe0\x80\x7e\x29\x7e\x89\xa1\ \xee\x00\x00\x20\x00\x49\x44\x41\x54\x1f\xb3\xac\x2d\x37\xfe\xd9\ \x7b\x13\x75\x5d\xfc\xf8\x0f\x4f\xe1\xaf\x2b\x5e\x41\x5b\x7b\xfc\ \x97\x06\x42\x45\x41\x98\x6f\xfe\x35\x8d\xc9\xd2\x83\x4f\x07\x50\ \x1c\x9e\xde\x70\x6d\xe0\x86\xbe\x5e\xd4\x67\x01\x98\x5f\xa3\x25\ \x4d\x51\xef\xb8\x88\xd8\xd9\x32\x8b\x28\x8d\x2e\x58\xfc\x25\xbc\ \xb6\x69\x93\xed\x18\x67\x71\x1c\xc1\x84\xf1\xa3\x30\x7d\xf2\x78\ \x9c\x3f\xfd\x5c\xcc\x9a\x31\x11\x83\x07\xfa\xbf\x81\x51\x3e\x14\ \x80\xce\xbe\xf0\xc3\x3f\xe2\xd9\xd5\x5b\xe2\x7a\xed\xa8\xe1\x43\ \xd1\xf0\xa9\x3f\xa6\x35\x4f\xba\xb0\x04\x50\x6f\x14\x1a\x8e\x36\ \x06\x06\xd7\xde\x2a\xd1\xde\x5e\xd7\xe7\x9c\x61\x53\xc4\x7d\xa7\ \x38\x0e\x07\x7f\xca\x4b\x45\x63\xa7\x00\x59\x50\x00\x86\x0c\x2a\ \xc7\x94\x49\x63\x31\x65\xe2\x58\x4c\x9b\x3c\x0e\x53\x27\x8d\x45\ \x49\x49\xc8\x76\xac\x9c\x73\xdd\x65\xb3\xe3\x2e\x00\x23\xc7\x8d\ \x43\x43\x9a\xf3\xa4\x0b\x2f\x07\x50\x6f\x04\x52\x56\x34\xd8\xbd\ \x0c\xc0\x73\xbd\xbd\xae\xcf\x02\x20\xe2\x5c\xeb\x57\x28\xa2\x6c\ \xd3\x3c\x72\x26\x80\x45\x19\xfd\xcc\xe1\x15\x83\x30\x61\xfc\x28\ \x4c\x9a\x30\x06\xe7\x4d\x18\x8d\xc9\x13\xc6\x60\xe8\x10\xfe\x22\ \xf7\xc3\x25\x73\x26\xc5\xfd\xda\xd0\xb9\x33\xd3\x98\x24\xfd\x58\ \x02\xa8\x37\x8e\x71\xae\x41\xaa\x05\x00\xa2\xd7\x70\xf3\x1f\xca\ \x57\x7b\x87\x55\xc2\x11\x81\xaa\xff\xcb\xcc\x54\x0c\x1d\x88\x73\ \x46\x0f\xc3\x39\xa3\x87\x63\xfc\x39\xc3\x31\x61\xdc\x28\x8c\x1f\ \x3b\x02\x65\x65\x9c\x50\x4b\x97\xe1\x43\x06\x20\x18\x0c\xc2\x75\ \xdd\x5e\x5f\x27\x00\xf6\x8c\xbd\x22\x33\xa1\xd2\x88\x25\x80\x7a\ \xa2\xd0\x6b\x01\xfc\x5b\x6f\xaf\xe9\xb5\x00\x5c\xb8\xdc\x0c\x75\ \x8d\x99\xcd\xf1\x9f\xf2\x55\x4b\x68\x30\xa6\x8e\x1e\x89\x43\x07\ \x0e\x25\xfc\xde\xfe\xfd\x4a\x31\x6c\xe8\x40\x54\x54\x0c\xc2\xb0\ \xa1\x83\x30\x6a\xc4\x10\x8c\x1c\x31\x14\xa3\x4e\xfe\x75\xc6\x82\ \x3b\x94\x31\xfd\xcb\x8a\xd1\xd8\xdc\x7b\x01\x28\x2d\x2d\xc1\xb1\ \x92\x61\x19\x4a\x94\x5e\x2c\x01\xd4\x1d\x11\xcc\x9d\xb7\x5c\x07\ \xae\xbb\x46\x9a\x7a\x7a\x4d\xaf\x05\x20\xea\x79\xef\x74\x1c\x87\ \xc3\x3f\xe5\xb5\x21\x93\xa6\xf5\x59\x00\x66\xcd\x38\x0f\xef\xbd\ \xee\x32\x0c\x1e\x54\x8e\xc1\x83\xfa\x63\xd0\xa0\x01\x1c\xe0\xb3\ \xd4\xd0\x81\xe5\x68\x6c\x6e\xeb\xf5\x35\xa3\x47\x8f\xc4\x9b\x99\ \x89\x93\x11\x2c\x01\x74\x36\x71\x5c\x75\xdf\x01\xe0\xa9\x9e\x5e\ \xd1\xeb\xf2\x60\x22\xce\x7c\xdf\x33\x11\x65\x99\xc8\xb8\xaa\x3e\ \x5f\x33\x67\xe6\x44\x5c\x76\xf1\x4c\x4c\x9f\x3a\x1e\x23\x79\x76\ \x9f\xd5\x46\x54\xf4\x3d\x08\x56\x4c\x3e\x3f\x03\x49\x32\xcb\x6d\ \xac\x87\x69\xed\xf1\x64\x8f\x0a\x90\x83\xde\xc7\xf0\xde\xd7\x07\ \x15\x7d\x97\xaf\x69\x88\xb2\xd0\xde\xd1\x97\xf6\xf9\x9a\x61\x43\ \x07\x65\x20\x09\xf9\x61\xd4\xb0\x21\x7d\xbe\xe6\xd0\xd4\xeb\x33\ \x90\x24\xf3\x58\x02\xa8\x33\x45\xef\x63\x78\x8f\x05\xe0\xa2\x25\ \x66\x80\x00\x95\xfe\x47\x22\xca\x2e\x47\x4a\x46\x60\xd4\x98\x91\ \xbd\xbe\xa6\x82\x77\xe9\xe7\x8c\xb1\x23\x7a\x2f\x00\x65\x25\xc5\ \x38\x50\x36\x3e\x43\x69\x32\x8f\x25\x80\xde\xa6\x98\x37\x7b\x99\ \xe9\x71\xc5\xb0\x1e\x0b\x40\x34\xe8\xbd\x03\x90\xdc\xde\x41\x84\ \x28\x4e\x43\xa6\xce\xea\xf5\xfb\x83\x07\xf9\xbf\x08\x0f\xa5\xc7\ \xf8\x31\x15\xbd\x7f\x7f\xfc\xd8\x0c\x25\xb1\x87\x25\x80\x00\x40\ \x44\x82\x8e\x7a\x97\xf5\xf4\xfd\x1e\x07\x78\x81\xf3\x8e\xf4\x44\ \x22\xca\x3e\xad\x13\x7a\xbf\x0c\xe0\xc7\xb2\xbb\x94\x19\xe7\x0c\ \xef\x7d\x06\x60\xf0\xcc\xdc\x59\xff\x3f\x15\x2c\x01\x04\x00\x22\ \x3d\x8f\xe5\xbd\x9d\xe1\x5f\x92\x86\x2c\x44\x59\xe9\xf5\x51\x97\ \x23\x14\xea\xf9\xc6\xbe\xf2\xfe\x2c\x00\xb9\xe2\x9c\x91\x83\x7b\ \xfc\x9e\x38\x0e\xb6\x4d\x7e\x4f\x06\xd3\xd8\xc5\x12\x40\x10\xf4\ \x78\x76\xd3\x7d\x01\xb8\x4d\x1d\xa8\x5e\x98\xb6\x40\x44\x59\xa6\ \x23\x50\x8a\xf1\xd3\xa6\x76\xfb\xbd\xd2\xd2\x62\x04\x02\xbc\x1a\ \x96\x2b\x06\x95\xf7\xeb\x71\xe9\x92\x61\x43\x07\xa1\x4d\x0a\xab\ \xcc\xb1\x04\x14\x36\x55\xbd\x08\xaa\xdd\xfe\x48\x74\xfb\x5b\x6d\ \xee\xe5\x7a\x3e\x44\x78\xd1\x93\x0a\x4a\x70\x4a\xf7\x53\xc3\xfd\ \xb8\x72\x5f\xce\x09\x04\x02\xdd\x7e\xfd\xbc\xf3\x7b\xbf\xd7\x23\ \x5f\xb1\x04\x14\x2e\x11\x19\x58\xb5\x5c\xa7\x75\xf7\xbd\x6e\x0b\ \x80\x07\xc3\xe9\x7f\x2a\x38\x6f\x4c\xbc\x06\x22\x67\x17\xe5\xe2\ \x62\x6e\xca\x93\x6b\xba\x9b\xb1\x11\x00\x47\xe7\xdc\x9c\xf9\x30\ \x59\x82\x25\xa0\x90\x75\x3f\xa6\x77\x5b\x00\x1c\x48\x61\xdc\x25\ \x43\xd4\x49\x43\xc9\x68\x8c\x9d\x70\xf6\xe3\x61\x5c\xf4\x27\xf7\ \x38\xce\xd9\xbf\xda\x06\x0c\xe8\x8f\x3d\x65\xe7\x59\x48\x93\x3d\ \x58\x02\x0a\x93\x42\xe2\x2f\x00\xaa\x7a\x51\x7a\xe3\x10\x65\xa7\ \xfe\x33\xcf\xbe\x5f\xa6\x28\xd8\xf7\x9e\x59\x94\x5d\x02\xdd\x14\ \x80\xc9\xe7\xe7\xdf\xea\x7f\xc9\x60\x09\x28\x3c\x02\xed\xf6\xa4\ \xfe\xac\x9f\x92\xf9\x35\x5a\x02\x60\x7a\xda\x13\x11\x65\xa1\x7d\ \x53\x16\x9c\xf5\xb5\xee\xce\x26\x29\xbb\x75\x73\x25\x07\x1d\xf3\ \xde\x97\xf9\x20\x59\x8a\x25\xa0\xb0\xa8\x62\xc6\x8c\x85\x7a\xd6\ \xb5\xcc\xb3\x7e\xb3\x35\xb9\x3a\x4b\x44\x78\xca\x43\x05\xe9\x40\ \xbf\x09\x18\x7f\xde\xb9\x67\x7c\xad\xbb\xfb\x02\x28\xbb\x75\xfd\ \x77\x36\xa0\xbc\x1f\x76\x94\x73\x06\xa0\x33\x96\x80\xc2\x21\x22\ \x45\x25\xe5\x3a\xb3\xeb\xd7\xcf\x2a\x00\x8e\x31\x7d\xef\x8c\x42\ \x94\xc7\xca\xe6\x70\x0b\x8c\x9c\xa7\x67\xfe\x71\xca\xac\xd9\x76\ \x72\x64\x39\x96\x80\xc2\x61\x9c\xb3\xc7\xf6\xb3\x0a\x80\x81\xb0\ \x00\x50\x41\xdb\x3d\xe5\x3d\xe8\xbc\x0b\xb6\x31\xc6\x62\x1a\x4a\ \x86\xa7\x67\x36\x80\xa3\x17\xfd\xbd\xa5\x24\xd9\x8f\x25\xa0\x40\ \xc8\xd9\x63\xfb\x59\x05\x40\x44\xe7\x66\x26\x0d\x51\x76\x3a\x52\ \x32\x02\x13\x67\x9c\xbe\x0d\x26\x16\x8b\x59\x4c\x43\xc9\x30\x7a\ \xba\xb4\x0d\x1f\x3a\x18\xfb\x4a\xf3\x77\xf3\x1f\x3f\xb0\x04\xe4\ \x3f\x81\xf6\x51\x00\x6e\x53\x47\x15\x85\xb9\x52\x06\x51\x27\x5a\ \x75\xdd\xdb\x7f\xdf\x11\x75\x2d\x26\xa1\x64\x18\xef\x74\x01\x98\ \x7c\x31\xb7\x35\x89\x07\x4b\x40\xde\x9b\xd3\x75\x45\xc0\x33\x0a\ \x40\xe5\xe5\x3a\x51\x44\x4a\x33\x9b\x89\x28\xfb\xd4\x9e\x7b\xfd\ \xdb\x2b\x00\x76\x74\x44\x2c\xa7\xa1\x44\x79\x27\x0b\x80\xe3\x38\ \xd8\x3a\xf3\x23\x96\xd3\xe4\x0e\x96\x80\x7c\x26\xfd\x66\x57\xeb\ \xb9\x9d\xbf\x72\x46\x01\x50\xe3\xf1\x36\x59\x22\x00\x1d\x4e\x09\ \xc6\x5f\x74\x39\x00\xa0\xb5\x35\x6c\x39\x0d\x25\xca\xf3\x3c\x00\ \xc0\xa4\x89\xe7\xa2\x2d\x50\x66\x39\x4d\x6e\x61\x09\xc8\x5f\x41\ \x3d\x73\x8c\x3f\xa3\x00\x88\x23\x33\x32\x1b\x87\x28\x7b\x1d\x99\ \xf3\x7e\x00\x40\x47\x24\x86\x98\xeb\x59\x4e\x43\xf1\x6a\x38\xda\ \xfc\xf6\x43\x00\x03\xdf\x7d\xab\xd5\x2c\xb9\x8a\x25\x20\x3f\xa9\ \x9c\x39\xc6\x9f\x59\x00\x54\x38\x03\x40\x74\xd2\xee\x41\x33\x31\ \xee\xe4\x9a\x00\xc7\x1b\x5b\xec\x86\xa1\xb8\xed\x39\x74\x04\x00\ \x30\x70\x40\x7f\x6c\xa8\xb8\xdc\x72\x9a\xdc\xc5\x12\x90\x87\x7a\ \x2b\x00\x10\xe5\x0c\x00\xd1\x49\x0a\xa0\xe4\x92\x13\x7b\xc7\xb3\ \x00\xe4\x8e\x37\xf6\xd7\x03\x00\x66\x5c\xca\x9b\xff\x52\xc5\x12\ \x90\x5f\x54\xb5\x87\x4b\x00\x27\x9e\x00\xe8\x76\xcb\x40\xa2\x42\ \xb5\x65\xe2\x7b\x31\xa0\xbc\x1f\x1a\x8e\x34\xda\x8e\x42\x71\x7a\ \x73\x7f\x3d\x02\xc1\x00\xb6\xcd\xf9\x94\xed\x28\x79\x81\x25\x20\ \x7f\x88\x60\x7a\xe7\x27\x01\xde\x2e\x00\xb3\x2f\xd3\xf1\x22\xc2\ \x8d\xcf\x89\x3a\x89\x38\xc5\x18\x7b\xd9\x95\xa8\x6b\x38\x6e\x3b\ \x0a\xc5\x69\xcf\x81\x23\x38\xff\xfc\x69\x08\x07\xf8\xeb\xcc\x2f\ \x2c\x01\xf9\x42\xfa\xcd\x7a\x5a\xc7\x9c\xfa\xd3\xdb\x05\xc0\x51\ \x6f\x92\x9d\x40\x44\xd9\x6d\xd7\x9c\x0f\xb3\x00\xe4\x90\xba\xa3\ \x8d\xe8\x78\xf7\x3f\xd9\x8e\x91\x77\x58\x02\xf2\x83\x53\x74\x7a\ \xac\x3f\x7d\x09\xc0\x11\x16\x00\xa2\x6e\x34\x94\x8e\x41\xc7\xf0\ \xc9\xb6\x63\x50\x9c\xc6\x4d\x18\x8f\x37\xca\x26\xda\x8e\x91\x97\ \x58\x02\x72\x9f\xa8\x9c\x5d\x00\x44\x85\x3f\x31\x44\x3d\xd8\x3c\ \xe6\x2a\xdb\x11\x28\x0e\xaa\x8a\xe6\x99\x37\xd8\x8e\x91\xd7\x58\ \x02\x72\x5c\x77\x05\x00\x00\x67\x00\x88\x7a\xb0\xbb\x64\x02\xd6\ \xb5\x0d\xb4\x1d\x83\xfa\x70\xd4\x94\x60\x5d\xbf\x39\xb6\x63\xe4\ \x3d\x96\x80\x9c\xd6\x4d\x01\x10\x65\x01\x20\xea\xc5\x7d\x47\xcf\ \xb1\x1d\x81\xfa\xf0\x7f\xfb\x86\xd8\x8e\x50\x30\x58\x02\x72\x93\ \x74\x1a\xeb\xdf\x2e\x00\x0a\x4c\xb0\x13\x87\x28\x37\xac\x6f\x1b\ \x88\xad\xe1\x01\xb6\x63\x50\x0f\x1a\x4d\x11\x16\x1d\x2c\xb7\x1d\ \xa3\xa0\xb0\x04\xe4\xa4\xf3\x4e\xfd\x8d\x03\x00\xf3\x6a\xb4\x42\ \x20\x5c\x30\x9b\xa8\x17\x0a\xe0\x8f\x47\x38\x0b\x90\xad\xee\xda\ \x3f\xd4\x76\x84\x82\xc4\x12\x90\x6b\xa4\x7c\x4e\x8d\x0e\x02\x4e\ \x16\x80\x98\xab\x63\xed\x06\x22\xca\x0d\x6b\xda\x06\x61\x7b\x47\ \x7f\xdb\x31\xa8\x8b\x16\x2d\xc2\xfd\xfb\x39\x3b\x63\x0b\x4b\x40\ \x6e\x09\xc4\x4e\x8c\xf9\x0e\x00\x04\xd4\x63\x01\x20\x8a\x83\x02\ \xb8\xbb\x7e\x9c\xed\x18\xd4\xc5\xaf\xf6\x56\xbc\xbd\x01\x10\xd9\ \xc1\x12\x90\x3b\x3c\x78\xe3\x80\x93\x05\x40\x54\x58\x00\x88\xe2\ \xf4\x6a\xdb\x20\x6c\x0c\xf3\x89\x80\x6c\x71\xcc\x84\xf0\x97\x03\ \xbc\xf6\x9f\x0d\x58\x02\x72\x83\x03\x39\x3d\x03\x60\x44\x78\x4a\ \x43\x14\x27\x05\x70\x17\x67\x01\xb2\xc6\x7f\xef\x19\x6e\x3b\x02\ \x75\xc2\x12\x90\x0b\xa4\xf3\x0c\x00\x38\x03\x40\x94\x80\xad\xed\ \xe5\x78\xa1\x95\x8f\x9c\xd9\x76\xd0\x2d\xc1\x92\x3a\xde\xbf\x9c\ \x6d\x58\x02\xb2\x9b\x02\xa7\x67\x00\x00\x8c\xb2\x98\x85\x28\x27\ \xdd\x59\x3f\x1e\xde\xe9\x8d\xb5\x28\xe3\x04\xff\xf6\x1a\xcf\xfe\ \xb3\x15\x4b\x40\x16\xd3\x13\x63\xbe\x73\xe2\xef\x75\x84\xdd\x34\ \x44\xb9\x67\x6f\xa4\x14\x8f\x1e\x1f\x69\x3b\x46\xc1\xda\xd4\xde\ \x0f\x6b\x1b\xb9\xe3\x5f\x36\x63\x09\xc8\x56\x3a\x1c\x38\x3d\x03\ \xc0\x1a\x4d\x94\x84\x3f\x1e\x19\x8b\x66\x2f\x68\x3b\x46\xc1\x31\ \x10\x7c\xa3\x76\x98\xed\x18\x14\x07\x96\x80\xec\x23\x82\x11\x00\ \xe0\xcc\xaf\xd1\xa0\x00\xbc\x98\x49\x94\x84\x66\x2f\x88\xbb\x1b\ \x78\x43\x60\xa6\x2d\x39\x36\x18\x75\x91\x22\xdb\x31\x28\x4e\x2c\ \x01\x59\xa7\x02\xb7\xa9\xe3\x34\xc7\x74\x38\x44\x78\x21\x93\x28\ \x49\x8f\x35\x8e\xc0\x6b\xed\x5c\x1c\x28\x53\x5a\x35\x88\xef\xbe\ \xc6\x55\xff\x72\x0d\x4b\x40\x36\x11\x67\xf6\x65\x5a\xe1\x78\x27\ \xa7\x02\x88\x28\x39\x46\x05\x3f\x39\x7c\x1e\x17\xa2\xc9\x90\xef\ \xef\x1e\x01\xd7\xf0\x9c\x25\x17\xb1\x04\x64\x8f\xa0\x60\x84\x23\ \xc6\xe3\x85\x34\xa2\x14\x6d\xef\xe8\x8f\xc7\x1a\x79\x43\x60\xba\ \x6d\x6b\xef\x8f\x65\xf5\xfd\x6c\xc7\xa0\x14\xb0\x04\x64\x09\xf5\ \x86\x39\x8e\xca\x60\xdb\x39\x88\xf2\xc1\x5d\x75\xe3\x70\xc4\x0d\ \xd9\x8e\x91\xb7\x5c\x38\xf8\x62\x2d\x27\x2c\xf3\x01\x4b\x80\x7d\ \xea\x60\xb0\x03\xc1\x20\xdb\x41\x88\xf2\x41\xab\x09\xe2\xc7\x87\ \x26\xda\x8e\x91\xb7\x7e\xb1\x6f\x38\x8e\x44\x02\xb6\x63\x90\x4f\ \x58\x02\xec\x52\x23\x83\x58\x00\x88\x7c\xf4\x52\xeb\x60\x2c\x6d\ \xe2\x55\x35\xbf\xed\x8e\x96\xe1\x9e\x7d\xdc\xed\x2f\xdf\xb0\x04\ \x58\x24\x18\xe4\x40\x85\x05\x80\xc8\x47\xbf\xa8\x9b\x80\xa3\xbc\ \x14\xe0\x1b\x17\x01\x7c\x7a\x0b\xef\xaf\xc8\x57\x2c\x01\x96\xa8\ \x0c\x76\x14\x9c\x01\x20\xf2\x53\x8b\x17\xc4\x8f\x0e\x4e\xb6\x1d\ \x23\x4f\x08\x7e\xf2\xd6\x70\xd4\x47\xb8\xd8\x52\x3e\x63\x09\xb0\ \x40\x30\xc8\x11\x80\xfb\x9a\x12\xf9\x6c\x4d\xdb\x40\x3c\x78\x6c\ \xb4\xed\x18\x39\x6f\x5d\xb8\x3f\xee\xe7\x56\xbf\x05\x81\x25\x20\ \xb3\x04\x18\xe4\xa8\x80\x3f\x5d\x44\x69\xf0\xbb\xfa\x71\x78\xad\ \x83\x0b\x04\x25\xab\x55\x8b\xf0\x99\xcd\xdc\xa7\xac\x90\xb0\x04\ \x64\x90\xa2\xbf\x03\x45\xa9\xed\x1c\x44\xf9\x28\xaa\x0e\x6e\x3f\ \x38\x19\x61\x8f\x77\xae\x27\x4a\x21\xf8\xd2\xf6\xd1\x88\x18\xdb\ \x49\x28\xd3\x58\x02\x32\x44\x50\xe6\x00\xca\xcd\xb4\x89\xd2\x64\ \x6f\xa4\x14\x3f\x3c\xc4\xfb\x01\x12\xf5\x7f\x07\x87\x61\x6d\x63\ \xb1\xed\x18\x64\x09\x4b\x40\xfa\xa9\x6a\xa9\x23\x02\x16\x00\xa2\ \x34\x7a\xbe\x65\x08\xfe\x72\x74\x8c\xed\x18\x39\x63\x4d\x5b\x39\ \xee\x7c\x93\xf7\x26\x17\x3a\x96\x80\x34\x13\x94\xf1\x12\x00\x51\ \x06\xfc\xb6\x61\x1c\xd6\xb5\xf1\x7e\xdb\xbe\x1c\x35\xc5\xf8\xcc\ \x16\xae\xf6\x47\x27\xb0\x04\xa4\x55\x99\x03\xce\x00\x10\xa5\x9d\ \xa7\x82\xef\x1e\x98\x8a\xbd\x11\xf6\xed\x9e\x74\x20\x80\x5b\xd7\ \x9f\x03\xd7\x38\xb6\xa3\x50\x16\x61\x09\x48\x13\x45\x99\xa3\x8a\ \x12\xdb\x39\x88\x0a\x41\x8b\x17\xc4\xb7\xf6\x4d\x47\xb3\xc7\x67\ \xda\xbb\xf2\xc4\xc1\x3f\x6d\x1b\x8b\xfa\x28\x6f\x98\xa4\xb3\xb1\ \x04\xf8\x4f\x04\x25\x8e\x00\xfc\x6d\x44\x94\x21\x07\x63\x25\xf8\ \x97\x7d\xd3\x10\x55\x9e\xe5\x9e\xa2\x22\xb8\x6d\xf7\x48\x6c\x6c\ \xe2\xea\x89\xd4\x33\x96\x00\xdf\x05\x1d\x08\x58\xb9\x89\x32\x68\ \x4b\xfb\x00\xdc\xb6\x7f\x2a\xa0\xb6\x93\x64\x03\xc1\xff\xee\x1b\ \x81\xc7\x0e\x73\xbd\x04\xea\x1b\x4b\x80\x7f\x54\x11\x70\x14\x2c\ \x00\x44\x99\xb6\xaa\x75\x30\x8e\x84\xd9\x00\x5a\x23\x11\xfc\x7e\ \x2f\x37\xf9\xa1\xf8\xb1\x04\xf8\x43\x04\x41\x47\x58\x00\x88\xac\ \x68\x8b\x2a\x8a\x22\x61\xdb\x31\xac\xe9\x88\x44\xd0\xde\xdc\x68\ \x3b\x06\xe5\x20\x96\x80\xd4\x9d\x98\x01\x50\x16\x00\x22\x5b\x8a\ \xdc\x08\x42\xd1\x42\x2b\x01\x82\x8e\x48\x07\x22\xc7\xeb\x6d\x07\ \xa1\x1c\xc6\x12\x90\xb2\x00\x67\x00\x88\x2c\x0b\xc6\x22\x08\x45\ \xda\x50\x10\x37\x05\x08\xd0\x11\x09\x23\x72\xbc\xc1\x76\x12\xca\ \x03\x2c\x01\xc9\x13\x20\xc8\x5b\x91\x89\xb2\x40\xd0\x8d\x9e\x2c\ \x01\xf9\x4c\xd0\x1e\x0e\x23\x72\xfc\x88\xed\x20\x94\x47\x58\x02\ \x92\xe7\x28\xe0\xd9\x0e\x41\x44\x40\xd0\x8d\xa1\xb8\xa3\x05\xa2\ \xf9\xb7\x03\x8e\x42\xd0\xd6\xda\x88\x68\xd3\x51\xdb\x51\x28\x0f\ \xb1\x04\x24\x4e\x01\xd7\x11\x61\x01\x20\xca\x16\x01\xcf\x45\x71\ \x47\x2b\x1c\x93\x3f\x25\xc0\x88\xa0\xed\x78\x03\xdc\xd6\x66\xdb\ \x51\x28\x8f\xb1\x04\x24\xcc\xe3\x0c\x00\x51\x96\x71\x8c\x87\xe2\ \xf6\x66\x04\xbc\x98\xed\x28\x29\x73\x01\xb4\xd6\x1d\x82\x17\x69\ \xb7\x1d\x85\x0a\x00\x4b\x40\xfc\x44\xe0\x39\xc2\x02\x40\x94\x75\ \x04\x8a\xe2\x8e\x56\x14\x45\x73\x75\xe0\x14\x44\x62\x31\xb4\x1d\ \xde\x07\x35\xb9\x5f\x64\x28\x77\xb0\x04\xc4\x47\x15\x6e\x10\x0a\ \x0f\x62\x3b\x0a\x11\x75\xa7\x28\xd6\x81\x80\x71\x11\x0d\x95\xc1\ \x38\xb9\xf1\xc0\x8e\x11\x07\xed\x4d\xc7\xe1\x86\x39\xe5\x4f\x76\ \xb8\x8d\xf5\x08\x02\x70\xfa\x73\x07\xce\x9e\x88\xc0\x0b\x2a\xe0\ \x72\xfc\x27\xca\x5e\x8e\xe7\xa2\xa4\xbd\x05\xb1\x50\x09\x62\x45\ \xc5\x40\xb6\x36\x76\x01\x22\xae\x41\xc7\x91\xfd\x80\x16\xc0\x23\ \x8d\x94\xd5\x58\x02\xfa\xe4\x06\x45\xd0\x61\x3b\x05\x11\xf5\x45\ \x51\x14\x6d\x47\xc0\x8d\x21\x16\x2a\x85\x17\xc8\xae\x3d\xbc\x3c\ \x11\x74\x34\x1f\x83\xdb\xd6\x6a\x3b\x0a\xd1\xdb\x58\x02\x7a\xa6\ \x8a\x8e\x20\x14\xe1\x6c\x3d\xa1\x20\xa2\x33\x39\xc6\x45\x71\x47\ \x0b\xdc\x60\x11\x62\xa1\x32\xa8\xd8\x5d\xca\xc3\x88\x83\x48\x7b\ \x1b\xa2\x8d\x7c\xb6\x9f\xb2\x13\x4b\x40\x0f\x04\xe1\x20\x04\xb9\ \x7a\x97\x11\x51\xc1\x0a\xba\x31\x04\xdd\x66\xb8\x45\x21\xb8\x45\ \xc5\x30\x92\xd9\xfb\x03\x8c\x38\x88\x76\x84\x11\x39\x7e\x14\x40\ \xfe\x3c\xb2\x48\xf9\x89\x25\xa0\x5b\xe1\xa0\x2a\xc2\xc2\x19\x00\ \xa2\x1c\xa4\x08\xc6\x22\x08\xc6\xa2\xf0\x82\x41\xb8\xc1\x10\x3c\ \x27\x94\xc6\x5b\x04\x04\x2e\x14\xb1\x70\x1b\xa2\xcd\xc7\xd2\xf5\ \x21\x44\x69\xc1\x12\xd0\x85\x22\x1c\x04\xa4\xd0\x76\x22\x21\xca\ \x33\x8a\x80\x1b\x43\xc0\x8d\x41\x25\x0c\x37\x10\x82\x09\x16\xc1\ \x0b\x14\xa5\x7e\xe8\x93\x2b\x85\xb9\x91\x08\x22\xcd\xc7\xa1\x6e\ \x34\xf5\x63\x12\x59\xc2\x12\x70\x9a\x88\xb4\xf3\x12\x00\x51\x1e\ \x11\x55\x14\xb9\x11\xc0\x8d\x00\x00\xbc\x40\x11\x8c\x13\x80\x06\ \x02\x30\x12\x80\x71\x1c\xf4\x38\x45\x20\x02\xa3\x02\x0f\x06\xea\ \x7a\x70\x3b\xc2\x88\xb5\x35\xf1\x8e\x7e\xca\x2b\x2c\x01\x27\x29\ \xc2\x41\x51\xb4\xf0\x26\x40\xa2\xcc\x08\x39\xc0\x2d\x63\x14\xef\ \x19\x05\x8c\xd0\x19\x40\xdd\xcb\x69\xfd\xbc\x80\x17\x3b\xb1\xa2\ \xe0\x19\x6b\xf1\x08\x54\x04\x2a\x40\xcb\xf1\xa3\x50\xcf\x83\x18\ \x17\xc6\x58\x58\x13\x6c\xcc\x45\x78\x78\xfc\x10\xac\x3c\xd4\x8e\ \xbb\x76\xb4\x23\xca\x65\xc9\x28\x03\x58\x02\x00\x08\x5a\x83\x0a\ \x34\x71\xfc\x27\x4a\x9f\xce\x83\xfe\xc4\x72\x07\x01\xe7\xd4\x9d\ \xfb\x15\x88\x06\x2e\x41\xd1\xc1\xd5\x19\x4e\xa4\x10\x55\x88\x02\ \x26\x12\x3e\xf9\x95\xcc\x8b\x8e\x7b\x27\x30\xf8\x3c\x0c\x01\xf0\ \xbe\xf2\x32\xdc\x34\xd1\xa0\x31\xdc\x81\x95\x87\x3a\x70\xd7\x8e\ \x30\xcb\x00\xa5\x55\xa1\x97\x00\x05\x1a\x83\x02\x34\xda\x0e\x42\ \x94\x6f\x7a\x1e\xf4\xbb\xbc\xae\x7c\x18\xa2\xa3\x6d\x94\x00\xbb\ \x4e\x0d\xfe\x9d\x39\x01\x07\x43\xca\xcb\x4e\x96\x81\x41\x2c\x03\ \x94\x76\x05\x5e\x02\x8e\x07\x21\xda\x98\xb5\x2b\x8b\x11\xe5\x90\ \x78\x07\xfd\xb3\xde\x57\x60\x25\xa0\xbb\xc1\xbf\x2b\x96\x01\xca\ \x94\xc2\x2d\x01\xda\x18\x84\xa2\x91\xe3\x3f\x51\x72\x92\x1d\xf4\ \xcf\x3a\x4e\x81\x94\x80\x78\x06\xff\xae\x58\x06\x28\xdd\x0a\xb2\ \x04\x28\x58\x00\x88\x12\x15\x80\xc1\xb9\x47\x6b\x51\xb6\x6b\x0d\ \xbe\xf5\x81\x6b\x30\x73\xf2\x78\x5f\x8e\x9b\xef\x25\x20\x99\xc1\ \xbf\xab\xce\x65\x60\x8a\xdb\x80\x07\x1f\xaf\x06\x26\xce\xc1\x2b\ \x45\xe7\xc2\x55\xbb\xab\x22\x52\x6e\x2b\xb4\x12\x20\x8e\x36\x06\ \x8d\xe8\x71\x87\x0d\x80\xa8\x57\x9d\x07\xfd\xbd\x5b\x37\xe0\x8d\ \x96\x56\xa8\x31\xf8\x9f\x43\x7b\x70\xef\xaf\x7f\xe8\xdb\xe7\xe4\ \x6b\x09\xf0\x63\xf0\xef\x4c\x55\xf1\xdf\x3f\xff\x35\xf6\x1e\xa8\ \x83\xb3\xea\x65\x0c\x28\xef\x87\x59\x73\x66\x03\x13\x2b\xf1\x4a\ \xd1\x78\x96\x01\x4a\x4a\x21\x95\x00\x31\x38\x1e\x54\x27\xd0\xc0\ \xe7\x7c\x89\xce\xd6\xdd\xa0\xdf\x99\xba\x2e\xd6\x6f\xda\x8a\x23\ \xc7\x9b\x51\x31\x78\x80\x6f\x9f\x9b\x6f\x25\xc0\xef\xc1\x1f\x00\ \xea\xeb\xeb\xb1\xb5\x76\x07\xca\xfa\x95\x23\x54\x14\x40\x73\x4b\ \x1b\x5e\x5c\xf5\x32\xc0\x32\x40\x29\x2a\x98\x12\x20\x81\x86\x60\ \x40\x51\x67\x3b\x07\x51\xb6\xe8\x6b\xd0\xef\xcc\x78\x2e\x00\xe0\ \xe7\xbf\xfb\x33\x7e\xf0\xed\xcf\xfb\x9a\x23\x5f\x4a\x40\x3a\x06\ \x7f\x55\xc5\x2f\x7e\xf3\x7b\x00\x80\xe7\xc6\x80\xa2\xe2\x33\xbe\ \xdf\xb5\x0c\xcc\xac\x9c\x03\x39\x6f\x0e\xcb\x00\xc5\xad\x10\x4a\ \x80\xab\xa8\x93\xf9\x35\x1a\x6c\x8e\x7a\x51\x08\x77\x04\xa0\xc2\ \xd4\x75\xd0\x6f\xee\x65\xd0\xef\x2c\xda\xd2\x02\x35\x1e\x42\xa1\ \x22\xbc\xb4\xf4\x41\x94\x84\xfc\xdf\xa2\x37\xda\xd2\x90\xd6\x12\ \xd0\x74\x78\x5f\xda\x8e\x9d\x8e\xc1\x1f\x00\xc2\xad\x2d\xb8\xe2\ \x3d\x1f\x44\x2c\x16\x43\x20\x10\x44\x79\xf9\xa0\xb8\xde\x77\xaa\ \x0c\xe0\xbc\x39\x58\xc3\x32\x40\x71\x08\x0e\x1a\x9e\x97\x25\x40\ \xa1\xde\xc6\x17\x03\xa1\xe0\xca\x2b\xc4\xad\x5c\xe6\x1e\x13\x60\ \xa8\xed\x50\x44\x99\x92\xc8\x99\x7e\xb7\x54\xa1\x27\x57\xce\x8b\ \x46\x63\x78\x62\xf9\x0b\xb8\xe5\x6f\xae\xf0\x3d\x67\xae\xce\x04\ \xa4\x6b\xf0\x57\x55\x3c\xf6\xd4\x52\xc4\x62\x27\x96\x36\xf4\x3c\ \x0f\x0a\x03\x41\xdf\x83\x79\x73\x4b\x1b\x5e\x7a\xe1\x25\xe0\x85\ \x97\x58\x06\x28\x2e\xf9\x3a\x13\x20\xc0\x51\xdc\x2e\x26\x78\xf2\ \x0f\x75\x60\x01\xa0\x3c\x17\x80\xc1\x84\x23\xdb\x51\xba\xfb\x95\ \xe4\x06\xfd\x4e\x4e\x4d\xff\x9f\xf2\xfb\xfb\x16\xe1\x3d\xd7\xbc\ \x33\x2d\xb3\x00\xb9\x56\x02\xd2\x35\xf8\x03\x40\x47\xb8\x0d\xf7\ \x3f\xfc\x44\xa7\xaf\x28\xbc\x98\x8b\x60\x51\x28\xa1\xe3\xb0\x0c\ \x50\xbc\xf2\xb1\x04\xe8\xc9\x4b\xff\x27\x7e\x5b\x89\xd4\x01\x98\ \x61\x33\x10\x51\x3a\x74\x1d\xf4\x77\xa7\x30\xe8\x77\x66\xdc\x33\ \x0b\xc0\x81\xfd\x07\x71\xb0\xfe\x18\xce\x3b\x67\xb8\x2f\xc7\xef\ \x2a\x57\x4a\x40\x3a\x07\x7f\x55\xc5\xde\xb7\xde\xc4\xc1\xc3\x87\ \xcf\xf8\xba\xeb\x26\x5e\x00\x3a\x63\x19\xa0\xbe\xe4\x5b\x09\x10\ \x48\xa7\x02\xa0\x38\xc4\x27\x01\x29\x5f\xa4\x6b\xd0\xef\xac\xeb\ \x0c\x80\x42\xf1\xeb\xbb\xef\xc7\x0f\xff\xf5\x4b\x69\x99\x05\x00\ \xb2\xbf\x04\xa4\x73\xf0\x07\x4e\x9c\xfd\xff\xee\xbe\x45\x67\x6d\ \x5c\xe0\x7a\xb1\xee\xdf\x90\x84\x6e\xcb\xc0\x84\x39\x58\x13\x62\ \x19\x28\x74\xf9\x54\x02\x14\x38\x04\x9c\x2c\x00\x0a\xec\xe3\xf8\ \x4f\xb9\xec\xd4\xa0\x5f\xf6\xc6\x1a\xbc\xb5\x65\x7d\x5a\x06\xfd\ \x53\x14\x0a\xf5\xce\x5e\x82\xee\x85\x97\xd7\x20\x1c\x89\xa5\xad\ \x00\x00\xd9\x5b\x02\xd2\x3d\xf8\xab\x2a\x5a\x9b\x8e\x63\xf5\xda\ \x8d\x67\x7d\xef\x44\x01\x50\xf8\xbd\xa4\x79\x77\x65\x40\xce\xab\ \xc4\x2b\x45\xe3\x58\x06\x0a\x54\xbe\x94\x00\x01\xf6\x01\x27\x0b\ \x80\x03\xdd\xa7\x9c\x02\xa0\x1c\x93\xc9\x41\xbf\x33\x75\x4d\xb7\ \xdb\xe7\x85\xdb\xc2\x58\xf5\xca\x7a\x5c\xfb\xae\x8b\x0b\xaa\x04\ \xa4\x7b\xf0\x07\x4e\x9c\xfd\xaf\x7c\xe9\x55\x84\xdb\xdb\xcf\xfe\ \xa6\x02\x9e\xeb\x21\x10\x4c\xdf\xff\xe7\x2c\x03\x74\x4a\x5e\x94\ \x00\xd1\xd3\x05\x40\x45\xf7\x71\x43\x20\xca\x05\x0e\x14\xe7\x1e\ \x7f\x0d\xfd\x76\xbf\x8c\xbd\x9b\xd6\x65\x6c\xd0\xef\xcc\xf4\x32\ \xe5\x7c\xef\x83\x7f\xc5\x3b\x2e\x9e\x9b\xd6\x02\x00\x9c\x2a\x01\ \x97\xa2\xe8\xe0\xcb\x69\xfd\x9c\xbe\x64\x62\xf0\x3f\x75\xf6\xbf\ \xe8\x89\x65\x3d\xbe\x26\xe6\xc5\xd2\x5a\x00\x3a\xeb\x5a\x06\x66\ \x57\x55\x22\x36\x71\x2e\xd6\x38\x63\xad\x6c\xab\x4c\x99\x97\xeb\ \x25\x40\xa1\x7b\x81\x93\x05\xc0\x68\x70\xaf\x23\xc6\x6e\x22\xa2\ \x5e\x0c\x89\x1e\xc7\xd8\x5d\x2b\x71\x70\xfd\x2a\xec\x39\x72\xd4\ \x6e\x98\x2e\x37\x00\x76\xb6\xf3\xb5\x37\xd0\xd6\xd6\x81\xb2\xe2\ \xa2\x0c\x94\x80\x0a\xab\x25\x20\x13\x83\x3f\x70\xe2\xec\xbf\xb9\ \xa5\x15\xbb\xf7\xbc\xd5\xe3\x6b\x3c\x37\x06\x14\x97\xa6\x3d\x4b\ \x57\xcd\x2d\x6d\x58\xf5\xfc\x8b\xc0\xf3\x2f\x62\x78\xc5\x50\xcc\ \xba\xf8\x62\xbc\x3e\xfa\x02\xec\x35\xfd\x33\x9e\x85\x32\x2b\x97\ \x4b\x80\x83\xc0\xe9\x19\x80\x90\xa3\xfb\x5c\x56\x57\xca\x32\x02\ \xe0\xbc\xe3\xdb\x11\xda\x58\x8d\xd7\xb6\x6c\xc6\x71\x93\x1d\x25\ \xd5\xeb\xe6\xfa\xff\x29\x6a\x3c\xdc\xbb\x70\x31\x3e\xf7\x89\x0f\ \xa6\xbd\x00\x00\xf6\x4a\x40\xa6\x06\xff\x53\x67\xff\x0f\x3c\xba\ \x04\xa6\x97\x7f\xff\x6e\x2f\xa5\x2c\x53\xea\x8f\x1c\xc5\x33\x4f\ \x2d\x81\xe3\x2c\xc5\xdc\xca\x99\x28\x9a\x33\x1f\xaf\x38\x63\x6d\ \xc7\xa2\x34\xca\xd5\x12\x20\x22\x7b\x81\x4e\xf3\xfe\x95\xd5\x6e\ \x9b\x40\xca\xec\x45\x22\x3a\xc1\x81\x62\xea\xe1\xb5\x68\x5f\xfd\ \x14\xde\x7a\xb3\xe7\xb3\x3e\x1b\xd4\xf3\x10\x6d\x6d\xe9\xf5\x35\ \x43\x86\x0c\xc6\xc3\xf7\xfe\x1a\x03\xca\x8a\x33\x52\x02\x00\x20\ \xda\x72\x24\xa9\x12\x90\xcc\x4a\x80\x99\x1a\xfc\x01\xa0\xbd\xad\ \x15\x8d\x47\x1b\xf0\x91\xcf\x7d\x1b\xc7\x9b\x9a\x7a\x7d\x6d\xf9\ \x80\xc1\x08\x38\x81\x8c\xe4\x8a\xd7\xa4\xf3\xc6\x63\xcc\x65\x57\ \x62\x55\xf1\x34\x78\xbc\xcc\x9a\xb7\x72\x6b\xc5\x40\x6d\xd9\x70\ \x6d\x70\x00\x70\xea\x31\x40\x00\x02\xbc\x01\x60\xa6\xb5\x4c\x54\ \xf0\x1c\x28\xa6\x1d\x5a\x83\xa6\x17\x1f\xc7\x8e\xfd\x07\x6d\xc7\ \xe9\x56\xd7\xc7\xff\xba\x73\xec\xd8\x71\xbc\xb6\xfb\x4d\xcc\x98\ \x72\x5e\xc6\x0a\x40\xa6\x66\x02\x32\x39\xf8\x9f\x3a\xfb\xdf\xb9\ \x6b\x4f\x9f\x83\x3f\x70\xe2\x32\x40\x20\x94\x5d\x05\x60\xd7\x1b\ \x6f\x61\xd7\x1b\xf7\x60\xdc\x39\xa3\x71\xde\xfc\x05\x58\x59\x32\ \x8d\xf7\x09\xe4\xa1\x1c\x9b\x09\xd8\x7d\xea\x6f\x3a\xdd\xbe\x2a\ \xbb\x6c\x24\x21\x02\x80\x49\xc7\x6a\x71\xce\x5f\xbf\x8f\xed\x0f\ \xdd\x89\x83\x59\x3a\xf8\x03\x27\x76\x00\x8c\xc7\x1f\xee\x5b\x04\ \xd7\x33\xe8\x88\x66\x6e\x6a\x3a\x54\x5e\x81\xd8\xe8\x4b\xd3\x76\ \xfc\x4c\x0e\xfe\xc0\x89\x6b\xff\xae\xeb\xe2\xbe\x45\x4f\xc6\xf5\ \x7a\xd7\xf5\x6f\x3d\x00\xbf\xed\xdd\x7f\x10\xcf\xdd\xff\x07\x9c\ \xf7\xec\xaf\x70\xa9\xb7\xd7\x76\x1c\x4a\x03\xb7\xb1\x1e\xa6\xb5\ \xef\xa2\x6a\xdf\xe9\xb1\xfe\xf4\xe9\x89\x62\x37\x67\xa8\x28\xd3\ \x86\x75\xd4\x63\xe8\x8b\xf7\x63\xe7\x96\xcd\xb6\xa3\xc4\xc5\xf4\ \x72\xfd\xbf\xb3\xf5\x9b\xb6\xc2\x18\x93\xf6\x75\x01\xba\x4a\xd7\ \x4c\x40\xa6\x07\xff\x53\x67\xff\x9e\xe7\x61\xeb\xf6\x1d\x71\xbd\ \x27\x1b\xee\x03\xe8\xcb\xee\x3d\x7b\xb1\x7b\xcf\xaf\x50\x55\x39\ \x0b\x2d\x17\xbc\x17\xbb\x34\x27\xce\x18\x29\x4e\x39\x31\x13\xa0\ \x78\xbb\x00\x9c\x9e\x01\x10\xe5\x0c\x00\x65\x4c\x11\x5c\xcc\xa9\ \x7d\x14\x4d\xbf\xff\xf7\x9c\x19\xfc\x55\x0d\x34\xce\x1b\x11\xdd\ \x58\x0c\x8f\x2d\x79\x26\xe3\xb3\x00\x80\xff\x33\x01\x99\x1e\xfc\ \x81\xd3\x67\xff\x8f\x2f\x7b\x0e\xb1\x38\x07\x76\x63\xbc\xb8\xff\ \xfd\xd8\xb6\x61\xe3\x16\xec\xbd\xf7\x7f\x70\xd5\xe1\xe7\x50\x2c\ \xbc\x28\x90\x4f\xb2\x7d\x26\x40\xa1\x67\x17\x00\x65\x01\xa0\x0c\ \x39\xb7\x69\x17\x86\x2f\xbc\x0d\x9b\xab\x9f\x78\x7b\x57\xb7\x5c\ \x10\xef\xf4\xff\x29\x8f\x9e\x7c\x6e\x3d\x1c\xc9\xfc\x3f\xa3\x5f\ \x25\xc0\xc6\xe0\x7f\xea\xec\x1f\x00\x96\x2c\x5f\x99\xd0\x7b\xfd\ \x5c\x16\x38\xdd\xa2\xd1\x18\x9e\x79\x6a\x09\x86\x3f\xfd\x73\xcc\ \xd3\x43\xb6\xe3\x90\x8f\xb2\xb9\x04\xa8\xa3\x67\xdf\x03\xa0\x6e\ \x90\x05\x80\xd2\x2a\xa8\x1e\xe6\x6c\x7a\x08\xfb\xfe\xf8\x23\x1c\ \x3c\x98\xbd\xd7\xf9\x7b\x62\xdc\xf8\xa6\xff\x4f\x39\x70\xf0\x10\ \x1a\x8e\x1c\xb7\x32\x0b\x00\xa4\x5e\x02\x6c\x0c\xfe\x00\xd0\x7e\ \xf2\xec\xbf\xae\xe1\x28\x0e\xd6\xd7\x25\xf4\xde\x5c\xb8\x0c\xd0\ \xd5\xbe\x03\x87\xb0\xfe\x9e\x9f\xe3\xdd\xfb\xaa\x11\xe2\x2d\x82\ \x79\x23\x5b\x4b\x80\x89\x05\xce\x9e\x01\xd8\xb4\x1a\x7b\x55\xb5\ \x9b\x75\x36\x89\x52\x37\xb2\xfd\x30\xc6\x2c\xfe\x0f\x6c\xae\x59\ \x0a\xa3\xb9\xf9\x4b\xae\xeb\x0e\x80\x7d\x52\xc5\xdd\xf7\x3d\x04\ \x00\x68\xb3\x30\x0b\x00\x24\x5f\x02\x6c\x0d\xfe\xaa\x8a\xb6\x93\ \x67\xff\xf7\x3e\xf4\x78\xb7\x4b\x2e\xf7\xc6\xcb\xe2\x1b\x01\x7b\ \xa3\xaa\x78\xae\x7a\x05\xce\x79\xf6\x57\x98\xe6\x34\xda\x8e\x43\ \x3e\xc9\xba\x12\xa0\xda\xba\xe5\x7a\x39\x70\xea\x8f\xa7\xef\x01\ \xb8\x5d\x8c\x08\x76\x5a\x09\x45\x79\x6d\xc6\xa1\x57\xd0\xfc\xa7\ \xef\x63\xef\x5b\xd9\xf5\x4c\x7f\x42\x54\xa1\x9a\xd8\x0c\x00\x00\ \xac\x5a\xbd\x16\x00\xe0\x59\x9a\x05\x00\x12\x2f\x01\xb6\x06\x7f\ \xe0\xf4\xd9\x3f\x00\xbc\xb2\xfe\xec\x8d\x7f\xfa\xe2\x7a\x1e\x34\ \x47\x0b\x26\x00\xbc\xb1\x67\x1f\xde\xfa\xf3\x1d\xb8\xa2\x7d\xbb\ \xed\x28\xe4\x93\x2c\x2b\x01\xdb\x21\xa7\x6f\x3a\xe9\xb2\x8b\x85\ \x6c\xcb\x74\x1a\xca\x5f\x41\xf5\x30\x6b\xfd\x7d\xd8\xfe\xd0\x9d\ \x68\xef\x88\xd8\x8e\x93\x12\xe3\xb9\x09\x9f\x8d\x02\x40\x7b\x5b\ \x18\x2f\xae\x5e\x0f\xc0\xde\x2c\x00\x10\x7f\x09\xb0\x39\xf8\x77\ \x3e\xfb\x7f\x7e\xf5\x3a\xb4\x77\x74\x24\x73\x94\x9c\x9d\x05\x38\ \xa5\xbd\xbd\x03\x35\x7f\xb9\x07\xef\xda\xb3\x04\x01\x24\x5e\x3a\ \x29\xfb\x64\x4d\x09\x10\xa9\xed\xfc\xc7\x33\x0a\x80\x42\x6b\x41\ \xe4\x83\xfe\x6e\x2b\x26\x2c\xfb\x09\xb6\x3e\xff\xac\xed\x28\xbe\ \x48\xf4\xfa\x7f\x67\xf7\x2e\xfc\x2b\x00\xbb\xb3\x00\x40\xdf\x25\ \xc0\xe6\xe0\x0f\x9c\x79\xf6\xff\xc8\x13\xd5\x49\x1f\xc7\x8d\x63\ \xb1\xa6\x5c\xf0\xfc\xb3\xcf\x61\xfa\xea\x3f\x61\x88\xe4\x76\x79\ \xa6\x13\xb2\xa1\x04\x18\xd5\x33\x4e\xf2\xcf\x9c\x01\x10\xe5\x0c\ \x00\xa5\x6c\x78\x7b\x3d\xca\x17\xfd\x00\xbb\x76\xc4\xf7\xfc\x76\ \x2e\xd0\x14\x06\x95\xdd\xbb\xf6\xa0\xa3\xfd\xc4\xd9\xac\xcd\x59\ \x00\xa0\xe7\x12\x60\x7b\xf0\xef\x7c\xf6\xdf\x1a\x0e\x63\x77\x0a\ \x4b\x40\xe7\xd2\x93\x00\x7d\xd9\xba\x6d\x07\x4a\x9f\xfa\x15\x26\ \x4a\x16\x9c\x3d\x52\xca\xac\x97\x00\xd1\x9e\x67\x00\xa0\x01\xce\ \x00\x50\x4a\xc6\xb5\xbc\x89\xe8\x03\x3f\xc4\xe1\xba\xc4\xee\xde\ \xce\x6a\x1a\xdf\x12\xc0\x3d\x31\xc6\xe0\x8f\x0f\x65\xc7\x2c\x00\ \x70\x76\x09\xb0\x3d\xf8\x03\x67\x9e\xfd\x3f\xf0\xe8\x53\x29\x5d\ \xc7\x3f\x71\x09\x20\x77\xef\x03\xe8\xea\xc0\xa1\x3a\x1c\x7b\xf8\ \x97\x98\xa3\xf5\xb6\xa3\x90\x0f\x6c\x96\x00\xed\x32\xc6\x9f\x51\ \x00\x36\xbe\x28\xbb\x15\x1a\xce\x6c\x24\xca\x17\x13\x8f\x6f\x47\ \xc3\xfd\xff\x85\xa6\xe6\x66\xdb\x51\x7c\xa5\x49\x5e\xff\xef\xac\ \xfa\x99\x17\xde\xfe\x7b\xdb\xb3\x00\xc0\xe9\x12\x90\x0d\x83\x7f\ \xe7\xb3\x7f\x00\x78\xee\xc5\x57\x53\x3c\x5e\xef\x3b\x36\xe6\xa2\ \xe3\x8d\xcd\x78\xfd\x81\x5f\xe1\x22\xb3\xdf\x76\x14\xf2\x81\x95\ \x12\xa0\xda\xba\xf9\x5a\x79\xb3\xf3\x97\xce\x9c\x01\xb8\x5d\x0c\ \x80\x2d\x19\x8c\x44\x79\x62\xd2\xd1\x6d\x38\xf0\xc0\xcf\xd1\x91\ \xe3\x37\xfb\x75\x27\xde\xe5\x7f\x7b\xd3\xd8\xd8\x88\x9d\xaf\xbf\ \x01\x20\x0b\x66\x01\xc2\xad\x30\xeb\x5e\x40\xe0\xaf\xf7\x61\xe0\ \x83\x7f\x42\xc9\xcb\xd5\x70\x5a\xed\x95\xb6\xce\x67\xff\xb5\xaf\ \xed\x41\x63\x1c\x1b\xff\xf4\x25\x9b\xf7\x05\x48\x56\xb8\xbd\x03\ \x9b\xff\x72\x27\xf7\x12\xc8\x13\x19\x2f\x01\x82\x4d\x9d\x9f\x00\ \x00\xce\x7a\x0a\x00\x80\xca\x86\x8c\x05\xa2\xbc\x30\xe9\x58\x2d\ \xf6\x3d\xf8\x0b\x44\xa2\x51\xdb\x51\xd2\xc2\xf8\x31\x98\x28\x70\ \xf7\x9f\x17\xbd\xfd\xc7\x8c\xcf\x02\xa8\x81\xbe\xb6\x19\xba\xe8\ \x4e\x98\xff\xfd\x0e\xb0\xf4\x01\xc8\xbe\xd7\x11\xac\x3b\x80\x7e\ \xcb\x16\x62\xf0\x1d\xdf\x42\xf9\x83\xbf\x46\x68\xe7\x46\xc0\x64\ \xee\xec\xb9\xeb\xd9\xff\xfd\x0f\x3f\xee\xcb\x71\xf3\xb1\x00\x00\ \x40\x47\x24\x8a\x75\x7f\xb9\x8b\x25\x20\x4f\x64\xb2\x04\x68\x37\ \x63\xfb\x59\xbb\x94\x38\xd0\x0d\xca\x5d\x81\x28\x4e\xe7\x36\xee\ \xc2\xc1\x85\xbf\x40\x34\x96\x9f\x83\x3f\x00\xa8\x4f\x03\xe2\xa6\ \x4d\xb5\x30\xc6\xc0\x71\x9c\xb7\x67\x01\xd2\xbe\x51\xd0\xd1\x3a\ \xe8\xc6\x97\xa0\x5b\x5f\x01\x7a\x3b\xcb\x37\x1e\x42\x3b\x36\x20\ \xb4\x63\x03\x4c\xff\x81\x88\x54\x5e\x8a\x48\xe5\x3b\xe0\x55\x8c\ \x4c\x6b\xbc\xce\x67\xff\xae\x67\xb0\x75\xc7\x6b\xbe\x1c\xd7\xcb\ \xc1\x15\x01\xe3\x15\x8d\xc6\xb0\xf1\xa1\xbb\x31\xef\x43\x9f\xc3\ \x3a\x19\x65\x3b\x0e\xa5\x28\x53\x1b\x08\x89\x6a\xdf\x05\x40\xc5\ \x59\x9f\x4f\x37\xd0\x50\xfa\x8c\x69\xdd\x87\x23\x0b\xef\xc8\xf9\ \x67\xfc\x7b\xa3\xc6\x40\x8d\x3f\x3f\x0f\xae\x1b\xc3\xa3\x4f\x54\ \xe3\xef\x6e\x5a\x00\xe0\xc4\x2c\x40\x5a\x0a\x40\x34\x02\xad\x5d\ \x07\xdd\xf8\x12\x70\x60\x0f\x12\xfd\x79\x76\x5a\x9b\x50\xba\x6a\ \x29\x4a\x57\x2d\x85\x3b\x76\x22\x22\x55\xef\x40\x64\xe6\x45\xd0\ \x50\xb1\xaf\x31\xbb\x9e\xfd\x3f\xfe\xf4\x33\xbe\x2d\xe5\x6b\xd4\ \xc0\x78\x1e\x9c\x40\xc0\x97\xe3\x65\x9b\xf6\xf6\x0e\xbc\xb6\xf0\ \x2e\xcc\xbc\xf5\x8b\xd8\x2a\x15\xb6\xe3\x50\x8a\x32\x51\x02\xbc\ \x80\x73\x56\x01\x38\xeb\x54\x7f\xd2\x12\x53\xdc\x3f\x60\x5a\x45\ \x24\x73\x7b\x98\x52\xce\x19\x1a\x3d\x06\x3c\xf8\x03\x1c\x3b\x76\ \xbc\xef\x17\xe7\x30\x2f\x1a\x81\xdb\xee\xdf\x0a\xd9\xa3\x46\x8f\ \xc4\xfd\xbf\xbd\xe3\xed\x3f\x0f\x28\x2b\xf6\xaf\x04\xec\xdb\x75\ \xe2\x6c\x7f\xc7\x06\x20\x1a\x5f\x29\xd3\x86\xf8\xfe\xfd\x69\x51\ \x31\xa2\x33\x2f\x44\x47\xd5\x3b\xe0\x8e\x9b\x94\x4a\xca\xb7\x85\ \xdb\x5a\xd1\x74\xb4\xe1\xed\x3f\x7f\xea\xab\xdf\xc5\xe1\x7a\xff\ \xee\x74\x2f\x2b\xeb\x8f\x50\xa8\xc4\xb7\xe3\x65\xa3\x61\x15\x83\ \x51\xfc\xbe\x2f\x63\xbf\xe9\x67\x3b\x0a\xf9\x20\x38\x68\x78\x5a\ \x4a\x80\xaa\xc6\xa2\x4d\x81\xfe\xb5\xb7\xca\x19\x53\xb5\x67\xfd\ \xe6\xd9\x75\x83\x13\xa9\x5c\xe6\x6e\x07\x30\xcb\xf7\x14\x94\x17\ \x4a\xbc\x0e\x94\x3d\xfe\x33\xec\xcf\xf3\xc1\x1f\x48\x6d\x01\xa0\ \xee\x1c\x3e\x58\x87\xba\x23\x47\x31\xa2\x62\x28\x80\xd4\x67\x01\ \x34\xdc\x0a\x6c\x7c\x11\xba\xe9\x65\xe0\x58\xfa\x1e\x13\x93\x58\ \x04\xc5\x1b\x56\xa1\x78\xc3\x2a\x78\x43\x87\x9f\x98\x15\xa8\xbc\ \x1c\x26\xc9\x5f\x56\x5d\xcf\xfe\x0f\x1d\x6e\xc0\xe1\xfa\x86\x5e\ \xde\x91\x38\xcf\x75\x81\x90\xaf\x87\xcc\x3a\x0d\x47\x8e\x63\x42\ \xf5\xef\xd1\xff\xea\xcf\xa3\xf5\xec\x5f\xe7\x94\x63\xd2\x35\x13\ \x20\x82\x6d\x5d\x07\x7f\xa0\xbb\x9b\x00\x01\x88\xc8\x1a\x5f\x3f\ \x9d\xf2\x86\x03\xc5\x84\xe7\x7f\x8b\xfd\xfb\x0b\xe3\x71\xa4\x54\ \x9e\xff\xef\x8e\x42\x71\xf7\xbd\x0f\xbd\xfd\xe7\x64\x9f\x08\x88\ \xc4\x5c\x34\xb6\x75\xa0\x65\xc3\x2b\xd0\x9a\xc7\xd2\x3a\xf8\x77\ \x15\x38\x5a\x8f\xb2\x15\x8f\x02\x4b\xff\x82\x63\x0d\x75\xe8\x08\ \xb7\x25\xfc\xdc\x7e\xe7\x6b\xff\x00\x70\xef\xa2\xc7\xe1\xf7\xa5\ \xc7\x58\x1e\x2d\x08\xd4\x9b\x3d\x6f\xed\xc7\xb4\x4d\x8b\x78\xe7\ \x56\x9e\x48\xc7\x8d\x81\x8a\xee\xc7\xf4\x6e\x0b\x80\x42\x57\xfb\ \xfa\xe9\x94\x37\x66\x6e\x7f\x1c\x3b\x36\x15\xc6\x83\x22\x6a\x0c\ \x60\x8c\xef\xc7\x7d\xe9\xe5\x75\x67\xfc\x39\xde\x27\x02\x5c\xcf\ \xa0\xb5\x3d\x8a\x23\x4d\x61\x34\xb5\x45\x10\x8d\x79\x88\x4c\x9d\ \x0b\xb5\x31\xcd\xed\x08\x0e\x57\x5d\x81\x48\x7b\x18\xc7\x8f\xd4\ \xa3\xfe\xe0\x3e\x34\x37\x1e\x83\x1b\xeb\xfb\x9f\xa5\xeb\xd9\xbf\ \xaa\x62\xcd\xfa\xcd\xbe\x47\x34\x9e\x07\xa3\xfe\xff\xfb\xcb\x46\ \x6b\xd7\x6e\xc0\x15\xf5\x2f\xf4\xfd\x42\xca\x09\x7e\x97\x00\xe9\ \x61\x4c\xef\xb6\x00\x18\x75\x58\x00\xe8\x2c\x93\x8e\x6e\xc3\xb6\ \xea\xc7\x6c\xc7\xc8\x98\x54\x96\xff\xed\x4d\x7b\x7b\x3b\x9e\x7b\ \xf1\x74\x21\xef\x6d\x16\x40\x55\xd1\x1e\x71\x71\xbc\xa5\x1d\xc7\ \x5a\xda\x11\x8e\xc4\xce\xd8\x4e\x59\x83\x21\x74\xcc\xb8\x30\x2d\ \x39\x7b\x13\x1e\x39\x0e\x5e\xd1\xe9\x9b\x02\x8d\xe7\xa1\xad\xb9\ \x09\x0d\x87\xf6\xe3\x48\xdd\x41\x84\x5b\x9b\x61\x7a\xb8\x79\xb2\ \xeb\xd9\xff\xf3\x2f\xaf\x45\x47\x24\x99\x8d\x7f\xfa\x96\xeb\x1b\ \x03\x25\xa2\xe6\xc9\x27\xf9\x78\x60\x1e\xf1\xb7\x04\x74\x3f\xa6\ \x77\x5b\x00\x36\xbf\x24\xb5\x80\xb6\xf8\xf4\xc9\x94\x07\x06\x45\ \x1b\x71\xe4\xf1\xdf\x9e\x31\xf8\xe4\x3b\x3f\x16\x00\xea\xc9\x03\ \x0f\x3f\x71\xc6\x9f\xbb\xce\x02\x44\x5d\x0f\xcd\xe1\x08\x8e\x34\ \x87\xd1\xd2\x1e\x41\xcc\xeb\xf9\x4c\xb6\x63\xe6\xe5\xe8\xe6\x7e\ \xde\xf4\x11\xa0\xee\x82\x2b\x7b\xfc\x76\x2c\x12\x41\xd3\xb1\xa3\ \xa8\x3f\xb0\x17\x8d\x47\x1b\x10\xed\xb4\xab\x5f\xd7\xb3\x7f\x00\ \x78\x38\x85\x8d\x7f\xfa\xe2\xd7\x53\x05\xb9\x40\x55\xb1\x63\xf1\ \xbd\x18\x25\x6d\xb6\xa3\x90\x4f\x7c\x29\x01\xaa\x8d\x1b\xae\x91\ \x6e\x37\x66\xe9\xb6\x00\xe0\x76\x31\x0a\x49\x6d\x3d\x4e\xca\x1b\ \x02\x60\xc4\xca\xbb\xd1\xd4\x94\x5f\x4b\xfc\xf6\x25\x5d\x33\x00\ \x00\xb0\x6b\xf7\x1b\x08\x77\x7a\xba\xc0\xf3\x0c\xc2\x91\x18\xda\ \x3a\x62\x38\xda\x1c\x46\x63\x6b\x07\x3a\xa2\x2e\xe2\xe9\x5b\xde\ \xc0\xa1\x88\x8d\x9f\x96\xb6\xac\x5d\xb9\xe5\x03\xd1\x56\x31\xba\ \xcf\xd7\xa9\x1a\xb4\xb7\xb5\xe2\x68\xfd\x21\xd4\x1f\xdc\x87\xd6\ \xe6\x46\xb4\xb5\x34\x9f\x31\x28\xb7\xb6\x85\xf1\xe6\xbe\xf4\xdd\ \x4f\x92\xcf\xeb\x01\x74\xe7\x78\x63\x33\x86\xaf\xe1\xfd\x00\xf9\ \x24\xe5\x12\x20\xb2\xa6\xeb\x0a\x80\xa7\x74\x5f\x00\x00\x88\x82\ \x97\x01\x08\x00\x30\xeb\x8d\x15\x78\x6d\x5b\xe1\x6d\x14\x19\x2c\ \xed\x87\x40\x71\x31\x24\x0d\xbf\x4e\xd5\x28\xee\xf9\xcb\xa3\x67\ \x7c\xad\xb5\x3d\x8a\xb6\x8e\x28\xbc\x24\xd6\x1d\x08\xcf\xbe\xdc\ \xaf\x68\x7d\x6a\x98\x79\x49\xc2\xef\xf1\x5c\x17\x2d\x8d\xc7\xd1\ \xd2\x78\xec\x8c\xaf\xdf\xff\xc8\x93\x30\x69\xb8\xcf\x02\x02\x14\ \x17\x97\xa2\x5f\xbf\x72\xff\x8f\x9d\xe5\x36\x6d\xae\xc5\x95\xcd\ \xeb\xfa\x7e\x21\xe5\x8c\x94\x4a\x40\x2f\x63\x79\x8f\x05\x40\x61\ \x56\x25\xf7\x69\x94\x4f\x86\x75\xd4\xe3\xf5\x65\x0f\xdb\x8e\x61\ \x85\x38\x0e\x82\x25\xa5\x28\x2a\x2f\x4f\x4b\x11\x58\x51\xf3\xa2\ \x6f\xc7\x8a\x8d\x9d\x02\x6f\x50\xfa\x17\x84\x31\xa1\x10\x8e\x4e\ \x9b\xe7\xdb\xf1\x3a\xdf\x0b\xe1\x8b\x93\x03\xff\xc0\xf2\x21\x28\ \x2d\xed\x07\x71\x7a\xfc\x15\x97\xd7\x5e\x7a\x62\x31\x26\x70\x0b\ \xe1\xbc\x92\x6c\x09\x50\xc7\xf4\x78\x77\x68\x8f\x3f\x1d\x21\x2f\ \xf0\xa2\x42\xf3\x6b\x4b\x2d\x4a\x88\x00\x18\xb4\xf2\x4f\xe8\x88\ \xe4\xef\x4a\x7f\xf1\x48\x57\x11\x68\x6a\x6c\xc4\xb6\x1d\xaf\xfb\ \x72\x2c\x88\x9c\xbc\x17\x20\xbd\x5a\x27\x4c\x83\x5f\xf7\x1b\x6c\ \xdd\xb1\x0b\xcd\x2d\x3e\xdd\x6a\xc4\x81\xff\x0c\xed\x1d\x11\x94\ \xbf\xf2\x28\x2f\x05\xe4\x99\x44\x4b\x80\xaa\xc6\x02\xed\xc1\x97\ \x7a\xfa\x7e\x8f\x3f\x25\x6b\x6e\x70\x9a\x01\x6c\x4c\x2c\x1e\xe5\ \x93\x19\xfb\x5f\xc4\xae\xed\xb5\x7d\xbf\xb0\x40\x9c\x51\x04\x42\ \xc5\xf0\x63\x20\xfc\xc3\xfd\xfe\xcd\xae\x74\x4c\xbf\x00\x1a\x4c\ \xe3\xca\x37\xe2\xe0\xe0\xbc\xab\x7c\x3b\xdc\xfd\x8f\x3c\x99\xfa\ \x41\x38\xf0\xf7\x68\xf3\x96\xed\x78\x77\x78\xab\xed\x18\xe4\xb3\ \x04\x4b\xc0\xba\x75\xef\x95\x70\x4f\xdf\xec\xe3\xa7\x45\x9e\x8f\ \x3f\x16\xe5\x93\x7e\x5e\x18\x07\x96\x2f\xb4\x1d\x23\x2b\x89\xe3\ \x20\x58\x5a\x8a\x90\x0f\x45\x60\xcb\x96\x1d\x70\x7b\xb9\xc3\x3f\ \x11\x1a\x2a\x41\xc4\xc7\xe9\xf9\xae\x3a\x46\x8c\x86\x5b\x52\xe6\ \xcb\xb1\x5c\xcf\xa4\x36\xfb\xc1\x81\x3f\x2e\x9b\x96\x2e\xc6\x00\ \x29\xac\x1b\x21\x0b\x41\xdc\x25\x40\x7a\x1f\xc3\x7b\xff\xa9\x11\ \xb3\x32\xa1\x54\x94\x37\x26\x6e\x79\xac\xe0\xee\xfa\x4f\xd4\xa9\ \x22\x50\x9c\x42\x11\x70\xdd\x18\x1e\x79\xfc\x69\xdf\x32\x75\xa4\ \xeb\x66\x40\x01\xea\xe6\x5e\xe1\xdb\xe1\x1e\x7d\x72\x39\xbc\x64\ \x9e\xb2\x10\xa0\x38\xc4\x81\x3f\x5e\xc7\x8e\x37\x63\xee\xde\x67\ \x6d\xc7\xa0\x34\x88\xaf\x04\xf4\x3e\x86\xf7\xfa\xd3\x13\xf5\x02\ \x2f\x24\xbc\xc6\x27\xe5\xbc\x61\x1d\xf5\xd8\xbe\x8a\xbf\x34\xe2\ \x96\x62\x11\x58\xbc\x64\xb9\x6f\x51\xcb\x55\xbb\x90\x00\x00\x20\ \x00\x49\x44\x41\x54\xdc\xc1\x23\x10\x3b\xc7\x9f\xcd\x7a\x3a\xf3\ \xfa\x95\xa3\x65\xe4\x38\xdf\x8e\xb7\xf4\xd9\x04\x57\xad\xeb\x3c\ \xf0\x97\x71\xe0\x4f\xc4\x4b\x35\x2b\x71\x9e\xb0\xcc\xe7\xa3\xde\ \x4b\x80\x9a\x90\x1b\xe8\xf5\x66\xfe\x5e\x7f\x8a\x6a\x17\x38\xc7\ \x20\xd8\x94\x74\x3a\xca\x49\xc3\xd7\x3e\x5a\x50\x0b\xa8\xf8\xe6\ \x8c\x22\x10\x42\xbc\x45\xa0\xfe\x50\x03\x0e\x1d\xf6\x6f\x23\x9c\ \xf6\x59\xfe\xcf\x02\x1c\xf5\x71\xb5\xc1\x03\x75\xf5\xa8\x6b\x38\ \x12\xdf\x8b\x39\xf0\xa7\x2c\x1a\x8b\x61\xf8\x36\xff\x4a\x26\x65\ \x97\x1e\x4b\x80\x62\xdd\xc9\x7b\xf9\x7a\xd4\xe7\x4f\x93\x42\xd2\ \xb7\x4c\x17\x65\x9d\x31\xad\xfb\xb0\x63\x1d\xf7\x82\x4a\x89\xe3\ \x20\x58\x5a\x86\xe2\xf2\x01\x10\xe9\x7b\xc0\x52\x28\x7e\x7b\xdf\ \x43\x7d\xbe\x2e\x5e\xd1\x09\x33\xe0\xf5\x1f\xec\xdb\xf1\x34\x18\ \x44\xfd\x8c\x8b\x7d\x3b\xde\xbd\x0f\xc6\xb7\xf1\x8f\x38\x0e\x06\ \x0c\xe0\xc0\xef\x87\x57\x56\xaf\xc1\xf9\x88\xb3\x74\x51\xce\xe9\ \xae\x04\xc4\x33\x76\xf7\xfd\x53\x25\x86\xd5\xb1\x80\x0c\x5c\xff\ \x58\x41\x2d\xf7\x9b\x4e\x5e\xb4\x03\x1a\xe7\x66\x34\xab\x5f\x59\ \xef\xdf\x07\x8b\x83\x8e\x59\x97\xfa\x76\xb8\xd6\xf1\x53\x00\x9f\ \x06\x60\x55\xc5\xab\x1b\xe3\xdb\xf8\x47\x8d\x41\x34\x4d\x7b\x04\ \x14\x1a\x55\x45\xd9\x96\x67\x6c\xc7\xa0\x34\x3a\xab\x04\x88\xf4\ \x39\x76\xf7\xf9\x53\x3d\x30\x18\x5c\xa5\xaa\xfc\x29\x2c\x00\xa3\ \xc2\x07\xb1\x73\x83\x8f\x03\x51\x01\xf3\xa2\x51\xb8\x09\xac\x9f\ \x10\xe9\xe8\xc0\x33\x2f\xbc\xec\xdb\xe7\x47\x66\x5c\x0c\x0d\x14\ \xa5\x7e\x20\x11\x1c\xba\xf0\xea\xd4\x8f\x73\x52\xcd\xaa\x57\x11\ \x49\xe0\xff\x97\x8e\x8e\x30\x22\x51\xfe\xfa\xf1\xc3\xda\x57\xd7\ \x63\x8a\x34\xda\x8e\x41\x69\xf4\x76\x09\x50\x6d\x8d\x36\x4a\x9f\ \xbf\x50\xfa\x2c\x00\x2b\xaf\x90\x0e\x11\xe1\x3e\x93\x05\xa0\x62\ \xf3\x12\x9e\xfd\xfb\xc0\xb8\x31\xb8\xed\x3d\x3e\x7a\xdb\xa3\x07\ \x16\xf9\xf0\x5c\xfc\xa9\x0c\x25\x65\x88\x4e\xa9\x4a\xf9\x38\x91\ \x8a\x11\x88\x96\xf9\xb7\x9c\xee\xa3\x4b\x12\xbf\xa2\xd8\x11\x6e\ \x45\xac\x80\x76\xf5\x4b\x17\x55\x45\xc5\xce\xe7\x6c\xc7\xa0\x34\ \x73\x1b\xeb\xe1\xb5\x36\xed\xaa\xbd\x55\xa2\x7d\xbd\x36\xae\x79\ \x3d\xa3\xca\xcb\x00\x79\x6e\x60\xac\x19\x3b\xd7\xbd\x62\x3b\x46\ \xce\x53\xcf\x83\x1b\x4e\x7c\xf0\x07\x80\x3d\x7b\xde\x44\x5b\x92\ \xef\xed\x4e\xfb\xac\xcb\x52\x3e\x46\x5d\xe5\x7c\x1f\x92\x9c\xd0\ \xdc\xd2\x86\xb7\xf6\x26\xbe\xf1\x8f\x02\x08\xb7\x35\xc3\x33\xbc\ \x31\x35\x55\x6b\x5f\x79\x15\xc3\xa5\xb0\x57\xf6\x2c\x04\x1a\xeb\ \x88\x6b\x91\x8d\xb8\x0a\x80\xc2\xf1\xef\x41\x65\xca\x4a\xe7\xbe\ \xfe\x2c\x62\x31\xfe\x82\x4d\x89\x51\x44\xc3\x6d\x49\x3f\x39\xab\ \xaa\xf8\xfd\x9f\x1f\xf1\x2d\x8e\x3b\x6c\x0c\x62\x23\xcf\x4d\xfa\ \xfd\xa6\xac\x1f\x9a\xc7\xfa\xf7\x48\xe1\xfd\x8f\x3c\x91\xf4\x0c\ \x93\xaa\xa2\xad\xa5\x05\x9a\x8e\x8d\x83\x0a\x48\x34\x1a\xc3\xcc\ \x3a\xee\xf3\x96\xef\x54\x4a\x7f\x1d\xcf\xeb\xe2\x2a\x00\x9b\xaf\ \x73\xb6\xaa\xea\x5b\xa9\x45\xa2\x6c\xe5\x88\x62\xff\x5a\x2e\xfa\ \x98\x0a\x55\x45\xb4\xad\x15\x48\x71\x80\x7a\x76\xa5\x7f\x1b\x04\ \x01\x40\xc7\x9c\xe4\x1f\x09\x3c\x36\xad\xd2\xc7\x24\xc0\xca\x97\ \xd7\xa6\xf4\x7e\xa3\x1e\x5a\xdb\x9a\xb9\x34\x49\x8a\xb6\xbe\xbc\ \x1a\x81\x38\x9e\xc2\xa0\xdc\x24\xc1\xa2\xc8\xd6\x0f\x0c\x89\x6b\ \x11\xbf\xf8\x6f\xed\x15\xf1\xef\x02\x25\x65\x95\xc9\x75\x9b\x71\ \xec\xd8\x71\xdb\x31\x72\x9a\x1b\x0e\x43\x4d\xea\x7b\x67\x35\x37\ \x35\x63\xf3\xb6\x1d\x3e\x24\x3a\x21\x72\xde\x2c\x98\x92\x7e\x09\ \xbf\x4f\x03\x01\xd4\xcf\x7e\x97\x6f\x39\x36\x6f\xdb\x89\x16\x1f\ \x36\xfe\xf1\x3c\x17\x6d\xe1\x66\x0e\x5f\x29\xa8\x3f\x72\x14\x17\ \xc5\xf6\xd8\x8e\x41\xe9\x52\x54\x1c\xf7\x1e\x3e\x71\x17\x00\x11\ \xc3\x02\x90\xa7\x02\xdb\x79\xf6\x9f\x8a\x58\x7b\x18\xc6\xc7\x9b\ \xd4\xee\xb9\xdf\xbf\xcb\x00\x70\x02\x70\xc7\x24\x3e\x8d\xef\x0d\ \x19\x0a\xe3\xe3\xb3\xf7\x7f\xf9\xeb\x53\xbe\x1d\xcb\x8d\xc5\xd0\ \xde\xde\xe6\xdb\xf1\x0a\x51\xac\x96\xf7\xfb\xe4\x2b\xa7\xa8\xf8\ \x4f\xf1\xbe\x36\x18\xef\x0b\x5b\x62\x81\x9a\xf2\xa0\x69\x03\x24\ \xf1\xd3\x09\xca\x5a\xfd\xbc\x30\x76\x6d\xdd\x62\x3b\x46\xce\xf2\ \x3a\x22\x30\xd1\x3e\x6f\xb6\x4d\xc8\xd6\xda\x9d\x70\x3d\x83\x60\ \xc0\x9f\x01\xd8\xad\x18\x83\xd0\xfe\xdd\xdd\x7f\xb3\xac\xfb\x9b\ \x0e\x63\x15\x23\x7c\xf9\x6c\x00\x70\x3d\x0f\xb5\x3b\x77\xf9\x76\ \x3c\x00\x88\x46\xda\xe1\x38\x0e\x4a\x8a\x4b\x7d\x3d\x6e\xa1\xd8\ \xbc\x79\x2b\x06\x54\xba\x68\xd6\xb8\x87\x00\xca\x05\x8e\xa3\xee\ \xb4\x8a\xdf\xc7\xfd\xf2\x78\x5f\xb8\xeb\x06\x27\x02\x95\x15\xc9\ \xa5\xa2\x6c\x75\xee\x81\xf5\x88\xc5\xf8\x88\x55\x32\xbc\x58\x0c\ \x6e\xa4\xdd\xff\xe3\xba\x2e\x1e\x5a\xec\xdf\x19\xb3\xe3\xc6\xa0\ \xa5\x03\xba\xfd\x4b\xfa\x95\x75\xfb\x57\xc0\xc7\x19\x8d\x87\x9f\ \xa8\x86\xe7\xa5\x7e\x79\xa4\xab\x8e\xf6\x36\x44\x63\xbc\xa3\x3d\ \x19\xd1\x68\x0c\xf3\x5a\xb9\xd5\x77\xbe\x91\x50\xc9\x9b\xb5\x33\ \xfb\x7e\xfc\xef\x94\x84\x4e\x31\x0c\x74\x71\xe2\x91\x28\x9b\x79\ \xaf\xbf\x6a\x3b\x42\x4e\x32\xae\x0b\x37\x8d\xd3\xd0\x4f\x2e\xf1\ \xaf\x6b\x3b\xe1\xd6\x84\xdf\x13\x88\xfa\x57\x6c\x96\x3e\xdb\xeb\ \x7e\x24\x29\x09\x87\x5b\xb8\x6f\x45\x92\x1a\xb7\x73\x9b\x97\x7c\ \x13\x28\x2a\xfe\x6b\x22\xaf\x4f\xa8\x00\xc4\xd4\x79\x5c\x55\xf9\ \xd3\x96\x27\x4a\x4c\x14\x7b\x76\xf8\x77\xc3\x59\xa1\x50\xcf\x43\ \x2c\xdc\x16\xcf\x72\xf6\x49\xab\xab\x6f\xc0\xfe\x83\x87\x7d\x39\ \x96\x84\x13\xbf\xf9\xce\x89\xf9\x73\x59\x63\xdf\x81\xc3\x38\x72\ \x24\x8d\x6b\xd0\x2b\xd0\xd6\xd6\x0c\x93\x86\x19\x86\x7c\x57\xbb\ \x7d\x27\xca\x84\xbf\xce\xf3\x87\xa0\x64\x70\xd9\xff\x24\xf2\x8e\ \x84\x0a\x40\xed\x02\xe7\x98\x88\xd4\x24\x16\x8a\xb2\xd5\xb9\x0d\ \x5b\x10\xf5\xe9\x17\x7d\xc1\xd0\x13\xcf\xfa\x23\xdd\x8f\xa2\x29\ \x70\xf7\x7d\x0b\x7d\x39\x54\x20\x89\x19\x00\xf1\xfc\xb9\x04\xf0\ \xa7\x45\x8f\xa5\xfd\x8e\x7d\x55\x83\xd6\xb6\x66\xae\x62\x99\xa0\ \x48\x34\x8a\x0b\xda\xdf\xb0\x1d\x83\xfc\x12\x2a\xa9\x7f\xe5\xea\ \xf2\xba\x44\xde\x92\xf8\x5d\x46\xaa\x3e\xde\xa2\x4c\x36\x15\xed\ \xe3\xcd\x7f\x09\x51\x45\x2c\x9c\xfa\xb3\xfe\xf1\x7a\xe5\xd5\xb8\ \x9f\xe6\xe9\x91\xb8\x31\x48\x12\x25\x4f\x8c\x07\xc7\x4d\xad\x1c\ \xaa\x2a\xd6\x6f\xdc\x96\xd2\x31\xe2\x65\x8c\x87\xb6\xb6\x26\x28\ \x1f\x10\x4c\x88\x39\xb0\xd3\x76\x04\xf2\x49\xa0\x28\xf4\x78\xa2\ \xef\x49\xb8\x00\xc4\x02\xce\x62\x20\xce\x2d\xce\x28\xab\x35\xbc\ \xbe\xdd\x76\x84\xdc\xa1\x27\x9e\xf5\x37\x6e\xe6\xa6\x9a\x23\x1d\ \x1d\xa8\xae\x49\x6d\x61\xa0\x64\xae\xff\x9f\x52\xda\x7c\x2c\xa5\ \xcf\x5e\xf1\xc2\x6a\x44\xa2\x99\xbb\x49\xcf\x73\x5d\x84\xdb\x5a\ \x90\xd6\x6b\x33\x79\x66\xcf\x4e\x16\x80\xbc\x20\x02\x57\x8a\xff\ \x23\xd1\xb7\x25\x5c\x00\xb6\x5e\xed\xd4\x29\x90\xbe\xbb\x7a\x28\ \x23\x06\x47\x8e\xa2\xae\xae\xde\x76\x8c\x9c\xe1\x76\xb4\xc3\xb3\ \xb0\x21\xcd\x43\x8f\xa6\xb6\xfc\x86\x93\xc4\xf5\xff\x53\x4a\x5a\ \x53\xdb\x39\x6e\xf1\x53\x99\xdf\x42\x24\x16\x8b\xa2\xbd\xc3\xbf\ \xfd\x14\xf2\xdd\x81\x43\xf5\x18\x23\xc9\x97\x44\xca\x0e\x12\x2a\ \xad\xaf\xbd\x75\xc8\xde\x44\xdf\x97\xdc\x83\xc6\x8a\x87\x92\x7a\ \x1f\x65\x8d\x91\x47\xe3\xda\x2b\x82\x00\x78\xd1\x08\xbc\x0c\x9e\ \xc9\x76\xf6\xe6\x5b\xfb\xd0\xda\x96\xfc\xd3\x06\xa9\xcc\x00\x14\ \xb7\x35\xf5\xfd\xa2\x1e\x34\x35\xb7\xe0\xad\xfd\x07\x93\x7e\x7f\ \x2a\x22\x1d\xed\x88\xa4\xe1\xf1\xcc\x7c\x35\x29\xbc\xcf\x76\x04\ \x4a\x91\x84\x8a\x12\xba\xfb\xff\x94\xe4\x0a\x80\xe7\x2c\xe2\xd3\ \x00\xb9\xad\xe8\x70\x0f\x0b\xc3\xd0\x19\x3c\x37\x06\xb7\xc3\xde\ \x60\xa2\xc6\xe0\xee\x3f\x2f\x4a\xfa\xfd\x81\xf6\xe4\x0b\x40\xa8\ \xbd\x39\xe9\xf7\xde\xb7\xe8\x49\xab\x6b\xf6\xb7\xb7\x87\x11\xe3\ \x0d\xae\x71\xd1\xba\x37\x6d\x47\xa0\x54\x88\x03\xaf\xb4\xfc\xfb\ \xc9\xbc\x35\xa9\x02\xb0\xf1\x06\xa7\x01\xe0\xa2\x40\xb9\xac\xf5\ \x00\xd7\x02\xef\x8b\x71\x4f\x6e\xed\x6b\xf9\x92\x72\xcd\x73\x2f\ \x27\xfd\x5e\x69\x4b\xfe\x12\x40\x51\x0a\xeb\x1c\xac\x7a\x25\xb5\ \x8d\x7f\x52\xa7\x08\xb7\xb5\xc0\xf5\x78\x9e\xd2\x97\xba\xbd\xdc\ \xe7\x2d\xa7\x85\x8a\xf7\xd7\xde\xd8\x3f\xa9\x67\x86\x93\x5e\x6b\ \x54\x44\xff\x92\xec\x7b\xff\x7f\x7b\xf7\x1e\x66\x57\x55\xa6\x09\ \xfc\xfd\xd6\xde\xfb\xdc\x2b\x55\x45\xee\xd0\xa0\x4f\x0f\x3c\xa3\ \x41\x21\x45\xd0\xb6\x1d\x45\x51\x20\x90\x07\xb9\x98\xa4\x0a\xb0\ \x05\x75\x46\x61\xb4\x15\xec\x1e\x2f\x8d\x36\x0c\xb6\xe3\xa5\x69\ \x51\x41\x04\x07\x54\x44\x6e\x01\x04\x3a\x20\x21\x09\x4c\xc0\x06\ \x05\x62\x52\xa9\x3a\x95\x40\x20\x5c\x43\xb8\x98\x40\xaa\x52\xd7\ \xd4\x39\x7b\x7f\xf3\x47\x48\x87\x90\x54\x72\x2e\xfb\x9c\x75\xf6\ \x3e\xef\xef\x2f\x9e\x4a\x9d\xbd\xdf\x27\x24\x59\x6f\xad\xbd\xf6\ \x5a\x64\x97\x81\xe2\xd5\x4d\xe5\x9f\xcb\xde\x6c\x82\xc2\xf6\xda\ \xbf\xee\x57\x82\xc1\xc1\x41\x74\xf7\x56\xb6\x60\xb3\x9a\x47\x00\ \x4e\x85\xd3\xe8\xdd\x7d\xeb\x31\x38\x64\xff\xb9\xb2\x42\x31\xbe\ \x7d\xcc\x76\x8c\x86\xb7\xf1\xa5\x97\x21\xb6\x43\x50\xc5\x8c\x97\ \xbc\xb1\xe2\xcf\x56\xfa\xc1\xed\x9e\x73\xa7\xaa\xf2\x41\x5b\x04\ \x4d\x19\xfd\x0b\x46\xc7\xb8\x85\xea\xfe\xb8\xa9\x0c\x8c\xe7\xd9\ \x8e\x01\x00\xb8\xee\xe6\xca\xde\xbe\xad\xe6\x11\x80\x29\x56\x36\ \x78\xde\x52\xe5\xc2\xc5\xb0\x78\x89\x04\x32\x19\x1e\x5d\xb2\x3f\ \x23\xa3\x63\x78\x27\xaa\x5b\xf0\x49\x76\x88\x18\x4d\xe7\xdc\xef\ \x55\xfa\xf9\x8a\x0b\xc0\xba\x63\x65\x08\x90\xbb\x2b\xfd\x3c\xd9\ \xd3\xbe\x6d\x93\xed\x08\xd1\x20\x80\x97\xce\x36\x44\x09\x58\xb7\ \x6e\x7d\x45\x5b\xde\x4a\x15\x33\x00\x95\xec\x03\x50\x28\x14\xf0\ \xc4\xd3\xf6\xd7\x97\x78\x89\x04\xb2\x99\x16\x80\x3f\xdb\x96\xe4\ \xaf\xc6\xf8\x46\x50\x24\xa5\x32\x1b\x1e\x9f\x37\xa5\xe2\xc5\x3a\ \xd5\x1d\x37\x26\x41\xc9\xc7\x0e\x52\xe3\x48\x6c\x2b\x6b\xb3\xa8\ \xe6\xd6\x20\x25\xc0\xf7\x7d\xdc\xf4\xbb\xf2\x7e\xb2\x16\xdf\x87\ \xa9\xe2\x95\x38\xf1\x7d\x98\x32\xb7\xfc\xb8\xed\xee\xe5\x35\x39\ \xf8\xa7\x1c\x1c\xfc\xcb\xe7\x0d\xd5\x70\xbb\x66\xaa\x19\xe3\x98\ \x5f\x54\xf5\xf9\x6a\x3e\x7c\x58\xbf\xbb\x54\x55\xed\xbc\xeb\x43\ \x95\x1b\x60\x01\x28\x4b\x83\x94\x80\xdf\x2f\x2d\x6f\x17\x6e\x33\ \x56\xfd\x73\xf8\xe4\x60\x79\x53\xc3\xcb\x56\xfc\x47\xd5\xf7\xac\ \x06\x07\xff\xca\x8c\xf7\xbf\x6e\x3b\x02\x95\xcb\x38\xc5\x5e\xcc\ \xfc\x49\x55\x97\xa8\xe6\xc3\xb7\x75\x8a\x0f\xc8\x6f\xab\xb9\x06\ \xd5\xdf\x76\xfe\x65\x2f\x5f\x03\x94\x80\xcd\x9b\x37\xe3\x85\x8d\ \xa5\xf7\x6d\x19\xa9\xfe\xb4\xc2\xd4\x60\xe9\xbb\x01\xbe\xf8\xd2\ \xcb\xd8\xf2\x7a\x75\xbb\x07\x56\x83\x83\x7f\xe5\xb6\x6d\xe5\xbf\ \x09\x51\x23\xa9\xcc\x1f\xd0\x29\x55\x4d\xb7\x55\xf7\x08\x00\x80\ \x1f\xc8\xaf\xab\xbd\x06\xd5\xd7\xe8\x00\x17\xfc\x54\xc4\x76\x09\ \x28\xf3\x80\x20\x67\x38\x84\x19\x80\x32\x36\x03\xfa\xcd\xad\x77\ \x5b\x7b\x63\x92\x83\x7f\x75\xb6\xf5\x57\xbe\xe9\x13\x59\x20\x02\ \x93\x4a\x5e\x58\xed\x65\xaa\x2e\x00\xf9\x93\xcc\x7a\x40\xff\x58\ \xed\x75\xa8\x7e\x06\x07\x2a\xdf\xe0\xa5\xe9\x59\x2e\x01\x2b\x57\ \x95\x7e\x86\xbb\x19\xad\x7c\x0f\x80\x9d\x12\x23\xa5\xfd\x59\x51\ \x55\xac\xee\xed\xab\xfa\x7e\x95\xe0\xe0\x5f\xbd\x81\x6d\xd5\xff\ \x59\xa1\xfa\x11\x2f\xb5\xa5\xf7\xb4\x29\x8f\x55\x7b\x9d\xaa\x0b\ \x00\x00\x28\xc0\x59\x80\x88\x10\xa0\x21\xde\xd1\x8e\x34\x8b\x25\ \x60\x7c\xfb\x76\x2c\xb9\xff\x0f\x25\x7d\x6f\x35\x6f\x00\xec\xe4\ \x95\xb8\x8e\x60\xd9\x43\x8f\x60\x7c\xbc\xfe\x3b\xef\x71\xf0\x0f\ \xc7\xb6\x41\xfe\x9b\x10\x25\x4e\x32\x73\x7d\x18\xd7\x09\xa5\x00\ \x8c\x7b\xce\x2d\x80\xb2\x42\x46\x40\xca\x1f\x45\x50\xa7\xe3\x6c\ \x63\xcd\x62\x09\x58\x74\xd7\xef\x4b\xfa\x3e\x27\x84\x19\x00\xb7\ \xc4\xcd\x80\xee\xba\xf7\xff\x55\x7d\xaf\x72\x71\xf0\x0f\x8f\xef\ \x07\x48\x6b\xfd\x0f\xbb\xa2\x0a\x38\x4e\xd0\x36\x65\xca\xc5\x61\ \x5c\x2a\x94\x02\xf0\xe6\x9e\x00\x5c\x0c\x18\x01\x19\x9f\x7b\x37\ \x85\xc6\x52\x09\xd8\xf8\xc2\x4b\xe8\xdf\xb6\xff\xa9\x79\x13\xc2\ \x1a\x80\x52\x76\x03\xdc\x3a\x30\x88\x8d\x9b\xea\xfb\x32\x10\x07\ \xff\xf0\x1d\x60\xb8\x39\x58\x14\x98\x44\xfa\xcf\x0f\x1d\x1b\xce\ \x11\x8e\xa1\x14\x00\x00\xf0\x55\xae\x0a\xeb\x5a\x54\x3b\x9e\xcf\ \x03\x52\x42\x65\xa1\x04\xa8\x2a\x7e\xf9\xdb\xdb\xf7\xfb\x7d\x52\ \xc5\x5e\xfe\x3b\x95\xb2\x19\xd0\x0d\xb7\xdf\x5d\xd7\x83\x7f\x38\ \xf8\xd7\x46\x06\x3c\x37\x21\x0a\xc4\x24\xff\x29\xac\x6b\x85\x56\ \x00\x7a\xe7\x9a\x3e\x55\x7d\x38\xac\xeb\x51\x6d\x08\x0f\x47\x09\ \x9f\x85\x12\xf0\xd0\xc3\x8f\xee\xfb\x1b\x54\xab\xda\x06\x78\xa7\ \x52\xfe\xbc\x3c\xfc\x68\xfd\x0e\xfe\xe1\xe0\x5f\x3b\x5e\xc0\x7f\ \x1b\x1a\x9e\x97\xdc\xda\xdb\x35\x35\xb4\xe7\x6d\xa1\x15\x00\x00\ \x50\xc5\xd5\x61\x5e\x8f\xc2\xe7\x80\xcf\xff\x6b\xa2\xce\x25\x60\ \x68\x70\x08\x2b\xd7\xac\x9d\xf0\xd7\xcd\xf6\x11\x20\x94\xb5\x1e\ \x8a\xe4\xc8\xc4\x6b\x09\x56\xf5\xac\xc5\xd0\x70\xf5\x33\x0d\xa5\ \xe0\xe0\x5f\x5b\x2e\xff\x6d\x68\x78\x6e\x22\x11\xea\x82\xfb\x50\ \x0b\xc0\x70\x60\x6e\x07\x74\x73\x98\xd7\xa4\x90\x35\xc0\xe9\x76\ \xb1\x55\xe7\x12\x70\xfd\x4d\x77\x4c\x1c\x25\x84\x37\x00\x76\x4a\ \xee\x63\x33\xa0\x5b\xee\x5c\x12\xda\x7d\xf6\xc5\xf3\x38\xf8\xd7\ \x9a\xe1\x6f\x6d\x63\x73\x5c\x7f\xb8\x65\x66\xd5\xef\xfe\xbf\x55\ \xa8\x05\x60\xc3\x3c\xb3\x5d\x21\x55\xed\x4d\x4c\x14\x69\x75\x2c\ \x01\x4f\x3c\xf9\xd4\x84\xaf\xde\x39\x21\x16\x80\xd4\xd0\xd6\xbd\ \x7e\xbd\x50\x28\x60\xfd\x86\x67\x43\xbb\xcf\x44\x3c\x2f\x81\x6c\ \x96\x83\x3f\x35\x37\x93\xca\xde\xbf\x61\x5e\xb8\x2b\x35\x43\x2d\ \x00\x00\x60\x7c\xf9\xb9\x2a\xdf\x27\xa1\x26\x56\xa7\x12\x10\x04\ \x13\x1f\x10\x64\x42\x2c\x00\x89\xe1\xbd\x3f\x02\xb8\xe5\xae\xfb\ \xe0\x07\xb5\x3d\xf8\x87\x83\x3f\x11\x00\x11\xf8\xa9\xf4\xdf\x87\ \x7d\xd9\xd0\x0b\xc0\xea\x93\xcc\x2b\x22\x52\xfa\x7e\xa5\x44\x71\ \x54\xa7\x12\x70\xef\xb2\x07\xf7\xfa\xf5\x50\x0b\xc0\xd8\xde\x0b\ \xc0\xfd\x0f\xd5\x76\x03\x50\x0e\xfe\x44\x3b\x48\x32\xf3\xc4\xba\ \x53\xdb\x36\x84\x7d\xdd\xd0\x0b\x00\x00\x88\x9a\x1f\xd7\xe2\xba\ \x44\x91\x52\x87\x12\xb0\x65\xf3\xeb\x78\xfe\xc5\x97\xf6\xf8\xba\ \xd9\xc7\xc2\xbd\x72\xb9\x7b\x39\x52\xf8\xb9\x17\x37\x61\xcb\x1b\ \x7b\x7f\x34\x10\x06\x0e\xfe\x44\xbb\x38\x4e\xe6\x6b\xb5\xb8\x6e\ \x4d\x0a\xc0\xea\xb9\xb2\x0a\xd0\x47\x6a\x71\x6d\xa2\x48\xa9\x79\ \x09\x50\x5c\x7b\xfd\x6d\x7b\x7c\xd5\x84\xf0\x0a\xe0\x4e\xee\xf8\ \xd8\x1e\x5f\xfb\xed\x6d\x8b\x81\x1a\x1d\xfd\xc3\xc1\x9f\x68\x17\ \x49\xa4\xb6\xf4\x74\x4d\x2e\x6d\xfb\xcf\x32\xd5\xa4\x00\xec\xa0\ \x97\xd5\xee\xda\x44\x11\x52\xe3\x12\xb0\x72\xf5\x9e\x07\x04\x85\ \x39\x03\x20\x85\xdd\xd7\x1d\xa9\x2a\xba\xf3\xeb\x42\xbb\xfe\x5b\ \x71\xf0\x27\x7a\x9b\x44\xf6\x47\xb5\xba\x74\xcd\x0a\x40\xf7\x23\ \xee\x5d\x50\x7d\xaa\x56\xd7\x27\x8a\x94\x1a\x96\x80\xc2\xf8\x38\ \xee\x59\xba\x62\xb7\xaf\x99\x91\xf0\xde\xcd\x37\xc1\xee\x6b\x7a\ \x97\x3c\xf0\x70\x4d\x0e\xfe\xe1\xe0\x4f\xb4\x3b\x71\xbd\xb1\xbe\ \x85\x53\x7e\x58\xab\xeb\xd7\x6e\x06\xe0\x12\x09\x54\x70\x69\xcd\ \xae\x4f\x14\x35\x35\x2c\x01\xb7\xff\xfb\xae\xf7\xf1\x65\x7c\x3b\ \xa4\x18\xe2\x8b\x38\x41\x00\x77\x7c\xd7\x2c\xc0\xe2\xa5\xe1\x1f\ \xfc\xc3\xc1\x9f\x68\x4f\x26\x91\xba\x1e\x22\x35\xdb\xbc\xa5\x86\ \x8f\x00\x80\xf1\x7e\xe7\x7a\x55\xad\xef\x29\x21\x44\x8d\xac\x46\ \x25\x60\xe3\xc6\x4d\x78\xa3\x7f\xc7\x01\x41\x61\x3e\xff\xdf\x29\ \xfd\xe6\x66\x40\xaf\x6f\x1d\xc0\x4b\x2f\xbf\x12\xea\xb5\x39\xf8\ \x13\xed\x85\xe3\x16\x33\xe2\x5f\x50\xcb\x5b\xd4\xb4\x00\xac\xeb\ \x94\x71\x05\x7e\x52\xcb\x7b\x10\x45\x4e\x0d\x4a\xc0\x8e\x03\x82\ \x16\x01\x00\xcc\x04\xef\xed\x57\x23\xf1\x66\x01\xb8\xe1\xb6\xc5\ \xa1\x1e\xfc\xc3\xc1\x9f\x68\xef\x4c\x3a\x73\xc7\xa3\x5d\x87\xd4\ \xf4\xf8\xd6\x9a\x16\x00\x00\x18\x1b\x35\x57\x43\xb5\xbf\xd6\xf7\ \x21\x8a\x94\x1a\x94\x80\x3f\x3c\xf2\x38\x80\x70\x77\x01\xdc\x29\ \x39\x32\x00\x00\x78\x64\xe5\xea\xd0\xae\xc9\xc1\x9f\x68\x02\xc6\ \x0d\x90\xc9\x9c\x57\xf3\xdb\xd4\xfa\x06\xeb\x4f\x33\x83\x10\xb9\ \xa2\xd6\xf7\x21\x8a\x9c\x90\x4b\xc0\xf0\xd0\x30\x1e\x5f\xdd\x5b\ \x93\x47\x00\x89\xd1\x21\xac\x5c\xd3\x87\xe1\xe1\x3d\xf7\x04\xa8\ \x04\x07\x7f\xa2\x89\x99\x74\xe6\xde\xfc\xc9\x6d\xb5\xdb\x68\x63\ \xe7\x7d\x6a\x7d\x03\x00\x28\x8e\x9b\x1f\x2b\x74\x5b\x3d\xee\x45\ \x14\x29\x21\x97\x80\xdf\xdc\x7c\x67\xa8\x07\x01\xed\xe4\x8d\x0d\ \xe3\x96\x3b\xef\x0d\xe7\x5a\x1c\xfc\x89\x26\x24\x8e\x13\x38\xc8\ \x7d\xae\x1e\xf7\xaa\x4b\x01\xc8\x9f\x2c\x5b\x01\xb9\xbc\x1e\xf7\ \x22\x8a\x9c\x10\x4b\xc0\xfa\xa7\x36\xc0\xdf\x16\xfe\x13\xb7\xc2\ \xf0\x10\x9e\x7a\xf6\xb9\xaa\xaf\xc3\xc1\x9f\x68\xdf\x4c\x2a\xb7\ \x74\x4d\xd7\xa4\xba\x9c\xaa\x5b\x97\x02\x00\x00\xe3\x81\x70\x16\ \x80\x68\x22\x21\x95\x80\xc0\xf7\x71\xed\x1f\xf3\x21\x85\xda\xe5\ \xca\xee\x17\x11\xf8\xd5\x9d\x17\xcf\xc1\x9f\x68\x3f\x8c\xd1\xf4\ \xe4\xdc\x67\xeb\x76\xbb\x7a\xdd\x68\xdd\x89\xe6\x0d\x28\xd7\x02\ \x10\x4d\x28\xa4\x12\xb0\x78\xdd\x9e\x67\x03\x54\xeb\xf6\x67\xfe\ \x52\xd5\xe7\x39\xf8\x13\xed\x9f\x49\xe7\x96\x3f\x76\x5c\xcb\x6b\ \x75\xbb\x5f\xbd\x6e\x04\x00\xe3\x2a\x97\x71\x16\x80\x68\x1f\x42\ \x28\x01\x5b\x86\x47\xb1\xbe\x7f\xcf\xfd\xfb\x2b\xb5\x76\x60\x0c\ \x7f\x19\xaa\xfc\x18\x72\x0e\xfe\x44\xfb\x27\xc6\xa8\x9b\xf4\xea\ \xf6\xd3\x3f\x50\xe7\x02\xb0\xee\x44\xf3\x06\x80\x9a\xed\x6b\x4c\ \x14\x0b\x21\x94\x80\xcb\xfb\xc2\xdb\x7f\xeb\x5f\x7b\x37\xa3\xd2\ \x83\x7f\x38\xf8\x13\x95\xc6\xa4\x32\xf7\x75\x9f\x36\xb5\xae\x1b\ \xe7\xd5\xb5\x00\x00\xc0\xb8\xe7\x5c\x06\x68\x5d\x16\x38\x10\x45\ \x56\x95\x25\xe0\xf1\x97\xc3\x59\x08\xe8\x07\x8a\x47\x5e\x19\xa8\ \xe8\xb3\x1c\xfc\x89\x4a\x64\x5c\x5f\xfd\xdc\xa7\xea\x7e\xdb\x7a\ \xdf\x70\xdd\xb1\x32\x24\xc0\xf7\xea\x7d\x5f\xa2\xc8\xa9\xa2\x04\ \x8c\xfb\x3e\x16\x3d\xfb\x7a\xd5\x11\x6e\x78\xb6\x1f\xe3\xbe\x5f\ \xf6\xe7\x38\xf8\x13\x95\xce\xa4\xb2\x37\xe5\x3f\x55\xfb\xf7\xfe\ \xf7\xb8\x6f\xbd\x6f\x08\x00\xdb\x8a\xe6\x2a\x85\x6e\xb4\x71\x6f\ \xa2\x48\xa9\xa2\x04\xdc\xb8\xbe\xfa\xb5\x44\xbf\x7a\xaa\xfc\x12\ \xc1\xc1\x9f\xa8\x74\xe2\x24\xc6\x47\x27\x4d\xff\xbc\x8d\x7b\x5b\ \x29\x00\x1b\xe6\x99\xed\x50\x5c\x62\xe3\xde\x44\x91\x53\x61\x09\ \x78\x61\x60\x04\x5b\xc6\x2a\x3f\x15\xf0\xd5\xd1\x02\x9e\x1f\x28\ \x6f\xe7\x3f\x0e\xfe\x44\xe5\x91\x4c\xf6\x8a\x0d\xf3\x4c\xe5\xab\ \x6c\xab\x60\xa5\x00\x00\xc0\x61\x03\xce\x75\x80\xae\xb5\x75\x7f\ \xa2\x48\xa9\xa4\x04\xa8\xe2\xa7\xbd\x95\x9f\xdc\xf7\xc3\xbe\x2d\ \xd0\x32\x16\xff\x71\xf0\x27\x2a\x8f\x24\x52\x43\xf9\xbe\x69\x5f\ \xb7\x75\x7f\x6b\x05\xe0\xb6\x4e\xf1\x55\xf5\x6b\xb6\xee\x4f\x14\ \x39\x15\x94\x80\x07\x36\xbe\x51\xf1\xed\x96\xbe\x58\xfa\x23\x49\ \x0e\xfe\x44\xe5\x93\x74\xfa\x1b\xb8\x44\xaa\xdb\x61\xab\x0a\xd6\ \x0a\x00\x00\xac\x99\xeb\x2d\x01\xb0\xdc\x66\x06\xa2\x48\x29\xb3\ \x04\x0c\x8f\x17\xf0\xe0\xcb\xe5\x6f\xbd\xb1\xec\xe5\x41\x0c\x8d\ \x97\xf6\xf8\x80\x83\x3f\x51\xf9\x4c\x32\xf3\x4a\x7e\xfe\xf4\x9f\ \x5b\xcd\x60\xf3\xe6\x3b\x12\xc8\xff\x02\xd4\x5a\x03\x22\x8a\x9c\ \x32\x4b\xc0\x35\x4f\xbc\x5a\xf6\x2d\xae\x58\xb7\xa5\xa4\xef\xe3\ \xe0\x4f\x54\x01\x11\x48\x32\x59\xd7\x4d\x7f\xf6\xc6\x7a\x01\xe8\ \x3e\xce\xf4\x02\xf2\x6b\xdb\x39\x88\x22\xa5\x8c\x12\xb0\x6e\xcb\ \x20\xc6\x8a\xa5\x77\xec\xe1\x82\x22\xff\xfa\xfe\x4f\x14\xe4\xe0\ \x4f\x54\x19\x93\xca\xf6\xf4\x2e\x98\xbe\xd4\x7a\x0e\xdb\x01\x00\ \xc0\xf5\xcc\xb7\x01\x1d\xb4\x9d\x83\x28\x52\x4a\x2c\x01\x41\x10\ \xe0\xaa\x32\x66\x01\x2e\x7f\x62\x33\x82\x60\xdf\x85\x81\x83\x3f\ \x51\x85\x8c\x51\x0f\xb9\xf9\xb6\x63\x00\x0d\x52\x00\x56\x1e\x2b\ \xaf\x06\x8a\x7f\xb1\x9d\x83\x28\x72\x4a\x2c\x01\x77\x97\xb1\x29\ \xd0\x6d\xcf\xed\x7b\xf1\x1f\x07\x7f\xa2\xca\x49\x2a\x77\xf3\xea\ \x33\xdb\x9e\xb1\x9d\x03\x68\x90\x02\x00\x00\xee\x64\xe7\x27\x80\ \xae\xb7\x9d\x83\x28\x72\x4a\x28\x01\xaf\x8f\x8c\xe1\x89\xad\xa3\ \xfb\xbd\x54\xef\xd6\x31\x6c\x19\x99\xf8\x20\x21\x0e\xfe\x44\x55\ \xf0\x12\x23\x93\xa7\xcf\x3c\xc7\x76\x8c\x9d\x1a\xa6\x00\xac\x3a\ \x5a\x0a\x81\xea\x57\x6c\xe7\x20\x8a\xa4\x12\x4a\xc0\xe5\xf9\xfd\ \x9f\x33\x72\x69\x7e\xe2\x63\x7f\x39\xf8\x13\x55\xc7\xa4\x72\x17\ \x3c\x74\xac\x14\x6d\xe7\xd8\xa9\x61\x0a\x00\x00\xf4\xcc\xf5\x96\ \x01\xb8\xcb\x76\x0e\xa2\x48\xda\x4f\x09\x58\xf9\xda\xc0\x3e\x9f\ \xed\xfb\x81\xe2\x4f\xaf\xed\xfd\x95\x41\x0e\xfe\x44\xd5\x31\xa9\ \xec\x33\xf9\x85\xd3\xae\xb1\x9d\xe3\xad\x1a\xaa\x00\x00\x40\xe0\ \x9b\xaf\xaa\xea\xfe\xe7\x2a\x89\x68\x4f\xfb\x28\x01\x85\xa2\x8f\ \x5b\x9e\x9d\x78\x63\xa0\xeb\x9e\xe9\xc7\x78\x71\xcf\x83\x7f\x38\ \xf8\x13\x55\xc9\x18\x45\x3a\x73\xba\xed\x18\x6f\xd7\x70\x05\xa0\ \xe7\x24\x79\x1e\x82\xef\xda\xce\x41\x14\x59\xfb\x28\x01\x37\x3e\ \x35\xf1\x14\xff\x6f\x9e\xde\x73\xa1\x20\x07\x7f\xa2\xea\x99\x74\ \xcb\x1d\xf9\xd3\x27\xe7\x6d\xe7\x78\xbb\x86\x2b\x00\x00\xe0\x1c\ \xe0\x5c\xca\x73\x02\x88\xaa\x30\x41\x09\x78\x69\xdb\x30\x5e\x1b\ \xd9\x73\x87\xbf\x4d\x23\x05\x3c\xbf\x6d\x78\xb7\xaf\x71\xf0\x27\ \xaa\x9e\xb8\xde\x68\xa2\x7f\xc6\x99\xb6\x73\xec\x4d\x43\x16\x80\ \x1d\x0b\x02\xcd\xb9\x50\x2d\xfd\x24\x12\x22\xda\xdd\xde\x4a\x80\ \x02\x3f\xed\xdb\xf3\x80\xa0\x4b\xfb\x36\xe3\xad\xe7\xfe\x70\xf0\ \x27\x0a\x87\xc9\xe4\xce\x5d\x75\xae\x54\x7e\x2c\x67\x0d\x35\x64\ \x01\x00\x80\x9e\xb9\xe6\x11\x40\xae\xb5\x9d\x83\x28\xd2\xf6\x52\ \x02\x56\xec\xe5\x80\xa0\x65\x1b\xfb\xff\xf3\xbf\x39\xf8\x13\x85\ \x43\xd2\xb9\xd5\xbd\x0b\xa6\xff\xd6\x76\x8e\x89\x34\x6c\x01\x00\ \x80\x62\xc1\x7c\x03\xaa\xaf\xd9\xce\x41\x14\x69\x6f\x2b\x01\x23\ \xe3\x05\x3c\xb0\x69\xe0\x3f\x7f\xf9\xde\x4d\xbb\x0e\xfe\xe1\xe0\ \x4f\x14\x12\xc7\x2b\x66\x33\xad\xf3\x6c\xc7\xd8\x97\x86\x2e\x00\ \xf9\x93\x65\xab\x08\xb8\x37\x00\x51\xb5\xde\x56\x02\xae\x59\xb7\ \x6b\x6b\xe0\x2b\x9f\xd8\x0c\x80\x83\x3f\x51\x98\x24\x9d\xbb\xe8\ \xb1\x53\x5b\x1a\xfa\x07\xd8\x86\x2e\x00\x00\xb0\xfa\x04\xf7\x56\ \x55\xdc\x61\x3b\x07\x51\xe4\xbd\xa5\x04\xac\x7f\x63\x10\x23\x7e\ \x80\xc1\x42\x80\xb5\x5b\x86\x38\xf8\x13\x85\x48\xd2\xb9\x0d\x7d\ \x9d\xd3\xbf\x6f\x3b\xc7\xfe\xb8\xb6\x03\x94\xa2\xe8\xc8\x17\xbd\ \x20\xf8\x28\x20\x07\xd8\xce\x42\x14\x69\x6f\x96\x80\xc2\xe8\x30\ \xae\x5a\xfb\x2a\xc6\xb6\x6e\x81\xe3\x7a\x1c\xfc\x89\xc2\x62\x4c\ \xe0\xa4\xb2\xc7\xdb\x8e\x51\x8a\x86\x9f\x01\x00\x80\xbe\xe3\xcc\ \x6b\x50\x9c\x6f\x3b\x07\x51\x2c\xbc\x59\x02\xfe\xf4\x97\x21\x3c\ \xbc\x79\x94\x83\x3f\x51\x88\x4c\x66\xd2\xa5\x3d\xa7\xb7\x3f\x6f\ \x3b\x47\x29\x22\x51\x00\x00\xa0\x7b\xae\x7b\x83\x02\xf7\xd8\xce\ \x41\x14\x0b\x02\xbc\x54\x30\x78\xa5\xe8\x82\x83\x3f\x51\x38\x4c\ \x32\xb3\x31\xdf\x39\xe3\x9b\xb6\x73\x94\x2a\x12\x8f\x00\x76\x32\ \xbe\x7c\x41\x9d\xa0\x8f\x8f\x02\x2a\xd7\x9f\x3a\x00\xff\x75\x5e\ \x27\xa0\xfb\x3e\xef\x9d\x9a\xc3\x14\xee\xba\x4d\x6f\xca\x4b\xeb\ \x6e\x7b\x41\x50\x99\x8c\x09\x82\x74\x66\xae\xed\x18\xe5\x88\x5c\ \xf5\x3f\x6a\x59\xb1\x53\x21\x8b\x6c\xe7\x88\x32\x2d\x8e\xa3\xb8\ \x79\x13\xd4\x6f\x98\x43\xa9\x88\x88\x22\x4d\x5a\xda\xbf\xdb\xb7\ \x70\xfa\x3f\xdb\xce\x51\x8e\xc8\x15\x00\x00\xe8\x58\xea\xdf\x08\ \xc1\x59\xb6\x73\x44\x19\x4b\x00\x11\x51\x38\x4c\x3a\xf3\x64\xfe\ \xcc\x43\xde\x6d\x3b\x47\xb9\x22\xb3\x06\xe0\xad\x82\x84\xf9\x12\ \xa0\x2f\xd9\xce\x11\x65\xe2\x26\xe0\x4e\x3d\x08\xe2\x44\xea\x29\ \x10\x11\x51\x63\x71\xdd\x42\x26\xd3\xfe\x51\xdb\x31\x2a\x11\xc9\ \x02\xd0\x73\xac\xf4\x03\xfa\x19\x9e\x15\x50\x1d\x96\x00\x22\xa2\ \x6a\x08\x9c\x74\xdb\x79\x8d\xbe\xe1\xcf\x44\x22\x59\x00\x00\xa0\ \xfb\x04\xef\x01\x40\x2e\xb3\x9d\x23\xea\x58\x02\x88\x88\x2a\x63\ \xd2\xb9\x15\xbd\x0b\xa7\xfc\xca\x76\x8e\x4a\x45\xb6\x00\x00\xc0\ \xf6\x01\x73\xa1\x42\x57\xd9\xce\x11\x75\x2c\x01\x44\x44\xe5\x11\ \x2f\x35\x90\x38\xec\xc0\x48\xad\xfa\x7f\xbb\x48\x17\x80\x75\x9d\ \x32\x2e\x81\x39\x03\xaa\x43\xb6\xb3\x44\x1d\x4b\x00\x11\x51\x89\ \xc4\xa8\x64\x72\x27\xae\x3a\xba\x31\x8f\xf9\x2d\x55\xa4\x0b\x00\ \x00\x74\x9f\x68\x36\x40\xf0\x45\xdb\x39\xe2\x80\x25\x80\x88\x68\ \xff\x24\xdd\xf2\x93\xfc\xfc\x29\x8f\xda\xce\x51\xad\x48\xbe\x06\ \xb8\x37\xb3\x97\xfa\xd7\x8b\xe0\xd3\xb6\x73\xc4\x01\x5f\x11\x24\ \x22\xda\x3b\x49\x66\x9e\xe8\xfb\xd4\x21\xb3\x6c\xe7\x08\x43\xe4\ \x67\x00\x76\x1a\x4f\x98\x2f\x2a\xf4\x49\xdb\x39\xe2\x80\x33\x01\ \x44\x44\x7b\x12\xcf\x1b\x75\x32\x2d\x1f\xb4\x9d\x23\x2c\xb1\x29\ \x00\xeb\x8e\x95\x21\xf5\xcd\x02\x85\x8e\xd8\xce\x12\x07\x2c\x01\ \x44\x44\xbb\x88\x18\xd5\xdc\xa4\x79\x3d\xa7\xb7\xf7\xdb\xce\x12\ \x96\xd8\x14\x00\x00\xe8\x39\xc9\xac\x15\xc5\xb9\xb6\x73\xc4\x05\ \x4b\x00\x11\xd1\x0e\x92\x9b\xf4\x83\xb5\xa7\x4f\x7d\xd0\x76\x8e\ \x30\xc5\x66\x0d\xc0\x5b\xcd\x5e\xe6\x5f\x2d\x60\x11\x08\x0b\xd7\ \x04\x10\x51\x33\x93\x74\xcb\xe3\x7d\x67\x1e\xf4\x37\xb6\x73\x84\ \x2d\x56\x33\x00\x3b\x0d\x15\xe5\x7c\xee\x0f\x10\x1e\xce\x04\x10\ \x51\xd3\x4a\xa4\x06\xc6\x5a\x67\x1e\x63\x3b\x46\x2d\xc4\xb2\x00\ \x6c\x98\x67\xb6\x8b\x63\xe6\xab\xea\x16\xdb\x59\xe2\x82\x25\x80\ \x88\x9a\x8e\x71\x7c\x31\x93\x8e\xd9\x30\xcf\x6c\xb7\x1d\xa5\x16\ \x62\x59\x00\x00\xa0\xfb\xe3\xe6\x05\x55\xed\x54\x55\xce\x5b\x87\ \x84\x25\x80\x88\x9a\x86\x08\x24\xd3\xf2\xa5\xbe\xb3\x0e\xe8\xb5\ \x1d\xa5\x56\x62\x5b\x00\x00\xa0\xe7\x44\x6f\x05\x80\x7f\xb4\x9d\ \x23\x4e\x58\x02\x88\xa8\x19\x98\x4c\xcb\x8d\x7d\x9d\x33\x7e\x61\ \x3b\x47\x2d\xc5\x72\x11\xe0\xdb\x75\x2c\xf3\x7f\x0d\xe0\x33\xb6\ \x73\xc4\x09\x17\x06\x12\x51\x5c\x49\x2a\xdb\xd7\x77\xd6\xc1\xef\ \xb5\x9d\xa3\xd6\x62\x3d\x03\xb0\xd3\x60\x51\xce\x03\xf4\x71\xdb\ \x39\xe2\x84\x33\x01\x44\x14\x47\x92\x48\xf5\xe7\x9c\x83\xde\x6f\ \x3b\x47\x3d\x34\x45\x01\xd8\x30\xcf\x6c\x17\xdf\x9c\x06\xe8\x4b\ \xb6\xb3\xc4\x09\x4b\x00\x11\xc5\x8a\xeb\x16\x34\xd3\x76\xf4\xa3\ \x5d\x66\xd4\x76\x94\x7a\x68\x8a\x02\x00\x00\xab\x4f\x32\xaf\x04\ \xea\x7c\x02\xd0\x61\xdb\x59\xe2\x84\x25\x80\x88\xe2\x40\x8c\x51\ \x27\xdb\x7e\xca\xda\x4f\xb6\x3d\x63\x3b\x4b\xbd\x34\x4d\x01\x00\ \x80\x9e\xb9\xb2\x06\xaa\x67\x02\x1a\xd8\xce\x12\x27\x2c\x01\x44\ \x14\x69\x22\x90\x74\xeb\x37\x7a\xe7\x4f\xbe\xcf\x76\x94\x7a\x6a\ \xaa\x02\x00\x00\xdd\x73\xbd\xbb\x15\xf8\xba\xed\x1c\x71\xc3\x12\ \x40\x44\x51\xe5\x64\x5a\x6e\xca\x77\x4d\xbf\xd4\x76\x8e\x7a\x6b\ \x8a\xb7\x00\xf6\x86\xdb\x05\xd7\x06\xdf\x0e\x20\xa2\x28\x31\xa9\ \xcc\x9a\xfc\x59\x87\x74\xd8\xce\x61\x43\xd3\xcd\x00\xec\x74\x58\ \xbf\xf9\x92\x02\xf7\xd8\xce\x11\x37\x9c\x09\x20\xa2\xc8\x48\xa6\ \x37\xe5\xd7\x1f\xfc\x3e\xdb\x31\x6c\x69\xda\x19\x00\x00\x98\xb3\ \x58\x33\x41\xca\x5f\x01\x48\x53\xbc\xf2\x51\x4f\x9c\x09\x20\xa2\ \x46\x26\x5e\x6a\x20\x39\x63\xd2\x3b\x56\x1d\x7f\xc0\x80\xed\x2c\ \xb6\x34\xed\x0c\x00\x00\xac\x3a\x45\x46\xb4\x68\x4e\x56\xe8\x06\ \xdb\x59\xe2\x86\x33\x01\x44\xd4\xa8\xc4\xf5\xb6\x3b\xb9\xd6\xd9\ \xcd\x3c\xf8\x03\x4d\x5e\x00\x00\x60\xcd\x3c\xb3\x59\x02\x73\x12\ \xa0\x9b\x6d\x67\x89\x1b\x96\x00\x22\x6a\x38\xc6\xf5\x35\x3b\xe9\ \xc3\x3d\xa7\xb7\x3f\x6f\x3b\x8a\x6d\x4d\x5f\x00\x00\xa0\xfb\x44\ \xb3\x01\x30\xf3\x00\x1d\xb4\x9d\x25\x6e\xc4\x4d\xc0\x63\x09\x20\ \xa2\x46\x20\xa2\xa6\xa5\xf5\x93\x6b\xe7\x4f\x5d\x69\x3b\x4a\x23\ \x60\x01\x78\x53\xf7\x09\xe6\xcf\x81\xe8\x29\xaa\x3a\x66\x3b\x4b\ \xec\xb0\x04\x10\x91\x6d\x22\xf0\xb2\xed\x5f\xc8\xcf\x9f\xba\xd8\ \x76\x94\x46\xc1\x02\xf0\x16\x3d\xc7\x7b\x0f\x8a\x68\x17\x8f\x10\ \xae\x01\x96\x00\x22\xb2\x45\x04\x26\xd3\xf2\xed\x35\x9d\xd3\xae\ \xb5\x1d\xa5\x91\x34\xf5\x5b\x00\x13\x99\xbd\xbc\x78\xb6\x04\xb8\ \x0e\x22\xfc\xfd\x09\x5b\x71\x1c\x05\xbe\x1d\x40\x44\x75\x64\x5a\ \xda\xae\xc8\x2f\x9c\xf1\x15\xdb\x39\x1a\x0d\x67\x00\xf6\x62\xcd\ \xf1\xee\xf5\x30\x38\xdf\x76\x8e\x58\xe2\x4c\x00\x11\xd5\x91\x93\ \x6b\xfd\x0d\x07\xff\xbd\x63\x01\x98\x40\xf7\xf1\xee\x15\x81\x2a\ \xb7\x0c\xae\x05\x96\x00\x22\xaa\x03\x27\xd7\x7a\x73\x6f\xe7\xcc\ \xcf\xd8\xce\xd1\xa8\x38\xc5\xbd\x1f\x1d\xcb\x8a\xdf\x02\xe4\xbb\ \xb6\x73\xc4\x12\x1f\x07\x10\x51\x8d\x98\x6c\xeb\x1d\xf9\xae\x99\ \xf3\x6d\xe7\x68\x64\x2c\x00\x25\xe8\x58\xea\x5f\x02\xc1\x45\xb6\ \x73\xc4\x12\x4b\x00\x11\x85\xcc\x64\xda\x7e\x9f\x3f\x63\xc6\xc9\ \xb6\x73\x34\x3a\x16\x80\x12\x75\x2c\xf3\xbf\x07\xe0\x9f\x6c\xe7\ \x88\x25\x96\x00\x22\x0a\x89\xc9\xb6\x2e\xcb\x77\xcd\x9c\x6b\x3b\ \x47\x14\x70\x0d\x40\x89\xba\x4f\x70\x2e\x04\xf0\x7d\xdb\x39\x62\ \x89\x6b\x02\x88\x28\x04\x4e\xa6\xe5\x01\x0e\xfe\xa5\x63\x01\x28\ \x43\xf7\x09\xce\x85\x50\x7c\xc7\x76\x8e\x58\x62\x09\x20\xa2\x2a\ \x48\x3a\x7b\x7f\xef\x19\x07\x1d\x67\x3b\x47\x94\xb0\x00\x94\xa9\ \x7b\xae\x73\x31\xa0\xdf\xb6\x9d\x23\x96\x58\x02\x88\xa8\x02\x26\ \xd3\x72\x4f\xdf\x99\x07\x1f\x6f\x3b\x47\xd4\xb0\x00\x54\xa0\xfb\ \x04\xf7\xff\xf0\x15\xc1\x1a\x61\x09\x20\xa2\x32\x98\xcc\xa4\x45\ \xf9\x33\x0e\xfa\x84\xed\x1c\x51\xc4\x45\x80\x55\xe8\x58\x5e\xfc\ \x32\x02\xfc\x94\x3b\x06\xd6\x00\x17\x06\x12\xd1\xbe\x88\xc0\x64\ \x5a\x7f\x99\xef\x9a\xf1\x3f\x6c\x47\x89\x2a\xce\x00\x54\xa1\xfb\ \x78\xf7\x0a\x08\xce\xe1\xd9\x01\x35\xc0\x99\x00\x22\x9a\x90\x40\ \x72\xad\xff\xca\xc1\xbf\x3a\xfc\xc9\x35\x04\x1d\xcb\x0a\xa7\xa8\ \xca\x22\x11\x49\xd9\xce\x12\x3b\x9c\x09\x20\xa2\xb7\x12\x81\x9b\ \x9b\xf4\xcd\x9e\x85\x33\x7f\x68\x3b\x4a\xd4\xb1\x00\x84\xe4\xc8\ \xe5\x85\x8f\x1a\x95\xc5\x80\xb4\xd8\xce\x12\x3b\x2c\x01\x44\x04\ \x00\x62\xd4\xcd\xb5\x9d\xdb\xb3\x70\xda\x35\xb6\xa3\xc4\x01\x0b\ \x40\x88\x3a\x96\x05\x47\x03\xc1\xbd\x80\x4c\xb5\x9d\x25\x76\x58\ \x02\x88\x9a\x9b\x31\x81\x66\xdb\xce\x58\xb7\x70\xda\x6d\xb6\xa3\ \xc4\x05\x0b\x40\xc8\x8e\x7a\x20\xf8\x2f\x81\x1f\xdc\x27\x90\x43\ \x6d\x67\x89\x1d\x96\x00\xa2\xa6\x24\xc6\x1b\xd7\x5c\xee\x63\x6b\ \x17\x4c\x7f\xc4\x76\x96\x38\x61\x01\xa8\x81\xd9\xf7\x06\x53\xc5\ \x0d\xee\x01\xe4\xfd\xb6\xb3\xc4\x0e\x4b\x00\x51\x53\x11\x2f\x39\ \x90\x49\xb4\x75\x3c\xde\xd5\xfe\x9c\xed\x2c\x71\xc3\x02\x50\x23\ \x73\x16\x6b\xc6\x4f\x05\x8b\x04\xe0\x81\x14\x61\x63\x09\x20\x6a\ \x0a\x26\x99\xde\x98\x6e\xcf\xbe\xe7\xf1\x79\x53\xb6\xd9\xce\x12\ \x47\x7c\x0d\xb0\x46\x56\x9d\x22\x23\x87\xf5\x9b\xd3\x14\xf8\x85\ \xed\x2c\xb1\xc3\x57\x04\x89\x62\xcf\xa4\x73\x2b\xf3\x4f\x1d\xf2\ \x4e\x0e\xfe\xb5\xc3\x19\x80\x3a\xe8\x58\x5a\xfc\x2a\x04\xff\x06\ \x08\x0b\x57\x98\x38\x13\x40\x14\x3f\x22\x30\x99\x96\x1b\xf3\x5d\ \x07\xfe\x9d\xed\x28\x71\xc7\x01\xa9\x0e\xba\xe7\xba\x3f\x86\xea\ \x69\x50\x1d\xb2\x9d\x25\x56\x38\x13\x40\x14\x2b\x22\xa2\xc8\xb4\ \x7e\x8b\x83\x7f\x7d\x70\x06\xa0\x8e\x66\xdf\x17\x1c\x09\x13\xdc\ \x2d\x90\x83\x6d\x67\x89\x15\xce\x04\x10\x45\x9f\x71\x8b\x6e\x3a\ \xd7\xd9\xd3\x35\xe3\x4e\xdb\x51\x9a\x05\x0b\x40\x9d\xbd\x6f\x85\ \xce\x28\x16\xfc\x7f\xe7\x1b\x02\x21\x63\x09\x20\x8a\x2c\xf1\x92\ \x03\x68\xcd\x7d\xa0\xef\x94\xa9\x4f\xda\xce\xd2\x4c\xf8\x08\xa0\ \xce\x56\x1e\x2b\xaf\x0e\x16\xcd\x31\x00\xae\xb3\x9d\x25\x56\xf8\ \x38\x80\x28\x92\x24\x95\xed\xcb\x25\xde\x31\x93\x83\x7f\xfd\x71\ \x06\xc0\xa2\x8e\xe5\xc5\x2f\x6b\x80\xcb\x44\x84\xa3\x56\x58\x38\ \x13\x40\x14\x0d\x22\x70\x32\x2d\xd7\xf5\x76\x1d\xf8\x59\xdb\x51\ \x9a\x15\x0b\x80\x65\x47\x2e\x2f\x7c\x54\x02\xb9\x4d\x44\xa6\xd8\ \xce\x12\x1b\x2c\x01\x44\x8d\xcd\x38\xbe\x97\x6b\x3d\x77\xcd\x82\ \x69\xbf\xb4\x1d\xa5\x99\xb1\x00\x34\x80\x8e\x07\x82\x77\x68\x31\ \xb8\x5d\x44\x8e\xb6\x9d\x25\x36\x58\x02\x88\x1a\x92\x78\x89\x41\ \x27\xd9\x7e\x4c\x4f\x67\xfb\x1a\xdb\x59\x9a\x1d\xd7\x00\x34\x80\ \xee\x8f\x9b\x17\x86\x7c\xf3\x21\x28\xae\xb2\x9d\x25\x36\xb8\x26\ \x80\xa8\xf1\x24\x33\xbd\xb9\x84\x3b\x9d\x83\x7f\x63\xe0\x0c\x40\ \x83\x39\xf2\xbe\xe2\xa7\x8c\xc1\x2f\x00\xc9\xda\xce\x12\x0b\x9c\ \x09\x20\xb2\x4e\x44\xd4\x64\x5a\x2e\xef\xed\x3a\xf0\x02\xdb\x59\ \x68\x17\x16\x80\x06\x34\xfb\xfe\x60\x16\x82\xe0\x77\x02\x79\x97\ \xed\x2c\xb1\xc0\x12\x40\x64\x8f\x9b\x18\x95\xe4\xa4\x53\xfb\xba\ \xa6\x2c\xb7\x1d\x85\x76\xc7\x02\xd0\xa0\x66\xad\xd0\x5c\xb2\x10\ \xfc\x0c\xc0\x39\xb6\xb3\xc4\x02\x4b\x00\x51\xdd\x49\x3a\xd7\xe7\ \xa4\xb2\x1f\xee\x39\xbd\xbd\xdf\x76\x16\xda\x13\x0b\x40\x83\x7b\ \xf3\x91\xc0\x55\x80\xb4\xd8\xce\x12\x79\x2c\x01\x44\xf5\x21\x46\ \x9d\x4c\xee\xd2\xde\xae\x03\xbf\x61\x3b\x0a\x4d\x8c\x05\x20\x02\ \x3a\xee\x0b\x0e\x55\x09\x6e\xe6\x5b\x02\x21\x60\x09\x20\xaa\x29\ \xf1\x12\x83\x48\xb4\xce\xed\xeb\x9a\xfc\x27\xdb\x59\x68\xdf\x58\ \x00\x22\x62\xce\x9f\xd5\x0b\x5e\x0f\xbe\x0f\xe8\x3f\x40\x84\xff\ \xdf\xaa\xc1\x12\x40\x54\x13\x26\x95\xfd\xe3\x41\x6d\x07\x7d\xec\ \xbe\x79\x66\xbb\xed\x2c\xb4\x7f\x1c\x48\x22\xe6\xa8\xa5\x85\x8f\ \x05\x22\xd7\xf1\x40\xa1\x2a\xb1\x04\x10\x85\xc7\x38\x45\x93\x9e\ \x74\x41\xbe\x6b\xfa\x95\xb6\xa3\x50\xe9\x58\x00\x22\x68\xce\x72\ \x6d\xf5\x35\xf8\x99\x00\x3c\x32\xb3\x1a\x2c\x01\x44\x55\x33\xe9\ \xec\x93\x9a\xf1\x3e\xda\x77\xea\x8c\xd7\x6c\x67\xa1\xf2\xb0\x00\ \x44\xd8\xec\xa5\x85\x05\x80\x5c\x2d\x22\x93\x6d\x67\x89\x2c\x96\ \x00\xa2\xca\x18\x13\x38\x99\x49\xdf\xe9\xed\x9c\x71\x89\xed\x28\ \x54\x19\x16\x80\x88\x3b\x6a\x49\x30\x33\x30\x7a\xb5\x08\x4e\xb1\ \x9d\x25\xb2\x58\x02\x88\xca\x22\xc9\xcc\x8b\x6e\xb2\xf5\xb8\x35\ \x0b\x5a\x9f\xb6\x9d\x85\x2a\xc7\x02\x10\x13\xb3\x97\x15\xcf\x82\ \xe2\x72\xce\x06\x54\x88\x25\x80\x68\xff\x8c\x13\x38\xe9\xec\x8f\ \x7a\xbb\x0e\xfc\xba\xed\x28\x54\x3d\x16\x80\x18\x39\x62\x69\x30\ \xcd\x11\xbd\x12\xc0\x02\xdb\x59\x22\x89\x25\x80\x68\x42\x92\x4c\ \xbf\x68\xd2\xe9\xe3\x7b\x3f\x39\xed\x29\xdb\x59\x28\x1c\x2c\x00\ \x31\x34\x7b\x69\x61\x81\x40\x7e\x06\x91\xe9\xb6\xb3\x44\x0e\x4b\ \x00\xd1\xee\x8c\xe3\x9b\x4c\xee\x7b\xf9\xce\x99\x17\xd9\x8e\x42\ \xe1\x62\x01\x88\xa9\x23\x57\x68\x9b\x14\x82\x1f\x88\xea\x17\xb8\ \x6f\x40\x99\x58\x02\x88\x00\x11\x48\x32\xb3\x3a\x9b\xf5\xe6\x3d\ \xc6\x15\xfe\xb1\xc4\x81\x21\xe6\x3a\x96\x07\x7f\x0b\x0d\xfe\x2f\ \x20\xef\xb1\x9d\x25\x52\x58\x02\xa8\x99\x25\x92\xc3\x26\x99\xfd\ \x7c\x7e\xe1\xb4\x9b\x6d\x47\xa1\xda\x61\x01\x68\x02\x1f\x59\xa1\ \xee\xb6\x82\xff\x8f\x0a\x5c\x24\x90\x8c\xed\x3c\x91\xc1\x12\x40\ \xcd\x46\x44\x25\x93\xbb\x63\xf2\xb4\x03\xcf\x78\xe8\x58\xe1\x1f\ \xfc\x98\x63\x01\x68\x22\x73\x96\xeb\x21\x7e\x10\x5c\x26\x82\xf9\ \xb6\xb3\x44\x06\x4b\x00\x35\x09\x49\xa6\x5f\x74\xbc\xd4\xa9\x3d\ \x9d\xd3\xd7\xd8\xce\x42\xf5\xc1\x02\xd0\x84\x3a\x96\x15\x3e\xae\ \x2a\x57\x88\xc8\xbb\x6d\x67\x89\x04\x96\x00\x8a\x33\xc7\x1b\x33\ \x99\xec\x85\xf9\x85\x33\x7e\x6c\x3b\x0a\xd5\x17\x0b\x40\x93\xda\ \x71\xb8\x90\xff\x65\x15\x5c\x2c\x90\x49\xb6\xf3\x34\x3c\x96\x00\ \x8a\x1b\x63\xd4\xa4\x27\x2d\x4a\xf4\x4f\x3f\x7b\xd5\xb9\x52\xb0\ \x1d\x87\xea\x8f\x05\xa0\xc9\xbd\xe7\xfe\x60\xba\x1b\xe8\x77\x00\ \xfd\xef\x02\x71\x6c\xe7\x69\x68\x2c\x01\x14\x07\x22\x30\xa9\x4c\ \xb7\x98\xdc\xfc\xde\xae\xf6\xe7\x6c\xc7\x21\x7b\x58\x00\x08\x00\ \x70\xe4\x92\xe0\x70\x31\xfa\x23\x11\xcc\xb5\x9d\xa5\xa1\xb1\x04\ \x50\x84\x99\x64\xe6\x15\xc7\xc9\x9c\xbd\xe6\x8c\x29\xf7\xdb\xce\ \x42\xf6\xb1\x00\xd0\x6e\x8e\x5a\x56\x98\xab\x90\x7f\xe3\x6b\x83\ \xfb\xc0\x12\x40\x51\xe3\x78\xa3\x26\x9d\xbd\x30\xdf\x39\xe3\x27\ \xb6\xa3\x50\xe3\x60\x01\xa0\x3d\x2c\xbc\x55\x9d\x0d\x6d\xfe\xd9\ \xaa\xf8\xdf\x22\x72\x88\xed\x3c\x0d\x89\x25\x80\xa2\xc0\xf5\x0a\ \x26\x91\xf9\x65\xde\xcc\xf8\x7b\x74\x8a\x6f\x3b\x0e\x35\x16\x16\ \x00\x9a\xd0\xa1\xf7\x06\xc9\x9c\x1b\x9c\x27\xc0\xb7\x00\x99\x6a\ \x3b\x4f\xc3\x61\x09\xa0\x46\x65\x5c\xdf\x49\x65\x16\x79\x03\xfa\ \xf9\x55\xe7\x1e\x34\x62\x3b\x0e\x35\x26\x16\x00\xda\xaf\x59\x2b\ \x34\x97\x1c\xf7\x2f\x50\xc1\xd7\xf8\xc6\xc0\xdb\xb0\x04\x50\x03\ \x11\xc7\x09\x90\xca\xfc\xde\x49\x64\xce\xee\x39\xbd\xbd\xdf\x76\ \x1e\x6a\x6c\x2c\x00\x54\xb2\xf7\xde\xa3\xed\x6e\x22\xf8\xaa\x42\ \xcf\x67\x11\xd8\x45\x8b\xe3\x28\xb2\x04\x90\x45\x62\x8c\x4a\x3a\ \xb7\x3c\x35\x6d\xd2\x39\x2b\x8f\xcd\xbd\x6a\x3b\x0f\x45\x03\x0b\ \x00\x95\xed\xbd\xf7\x68\xbb\xeb\x05\x17\x28\xf4\x7c\x11\x69\xb5\ \x9d\xa7\x11\xb0\x04\x90\x15\x22\x2a\xa9\xec\x0a\x4f\x93\x9f\xee\ \x3e\x6b\xea\xcb\xb6\xe3\x50\xb4\xb0\x00\x50\xc5\x76\x9c\x38\xe8\ \x9f\x2f\xc0\xf9\x80\xb4\xdb\xce\x63\x1b\x4b\x00\xd5\x8b\x38\x4e\ \x20\xc9\xec\xfd\x46\x2f\xc7\xb4\x3f\x00\x00\x04\xf5\x49\x44\x41\ \x54\x12\x9f\xeb\xe9\x9a\xb2\xc9\x76\x1e\x8a\x26\x16\x00\xaa\xda\ \x9b\x6b\x04\xbe\x00\xc1\x57\x01\xf9\x2b\xdb\x79\x6c\x62\x09\xa0\ \x9a\x72\xdc\xa2\x49\xe5\x6e\xf7\x91\xfa\xd2\xba\xae\xb6\x37\x6c\ \xc7\xa1\x68\x63\x01\xa0\xd0\xcc\xf9\xb3\x7a\xc1\x1b\xfe\xdf\x29\ \xf0\x75\x81\xbc\xcb\x76\x1e\x5b\x58\x02\x28\x6c\xe2\x26\x46\x25\ \x9d\xb9\x76\x34\x3b\xed\x6b\x1b\xe6\x99\xed\xb6\xf3\x50\x3c\xb0\ \x00\x50\xf8\x54\x65\xf6\xfd\xc5\x53\xa0\xf2\x0f\x02\x39\xc6\x76\ \x1c\x1b\x58\x02\x28\x0c\x92\x48\xbd\x21\xc9\xcc\x8f\xf2\x0b\xa6\ \x7e\x1f\x22\x6a\x3b\x0f\xc5\x0b\x0b\x00\xd5\xd4\x11\xcb\x83\x0e\ \x27\xd0\x0b\x20\x7a\x06\x20\x09\xdb\x79\xea\x89\x25\x80\x2a\x23\ \x30\xa9\xf4\xd3\x81\xa4\xfe\x79\xed\x99\xd3\x16\xd9\x4e\x43\xf1\ \xc5\x02\x40\x75\xf1\xbe\x15\x3a\xa3\x38\x1e\xfc\x4f\x88\x9e\x07\ \xc8\x34\xdb\x79\xea\x85\x25\x80\x4a\x66\x1c\xdf\xa4\xb2\x0f\x20\ \xe5\x7d\x25\x7f\xda\xd4\xf5\xb6\xe3\x50\xfc\xb1\x00\x50\x5d\xcd\ \xba\x55\x13\x89\x36\x7f\x3e\x80\xf3\x9a\xe5\xf1\x00\x4b\x00\xed\ \x8b\x24\x53\xaf\x8b\x9b\xba\xc6\x3f\x7c\xfa\xc5\xeb\xde\x23\xe3\ \xb6\xf3\x50\xf3\x60\x01\x20\x6b\x66\xdf\x1f\xcc\x82\xaf\xe7\x01\ \x7a\x76\xdc\xf7\x13\x60\x09\xa0\xdd\x88\x51\x93\xca\xac\x76\x24\ \xf5\x4d\x9e\xcc\x47\xb6\xb0\x00\x90\x75\x73\x16\x6b\xa6\x98\xf4\ \x3b\x45\xf0\x39\x81\x7c\xd8\x76\x9e\x5a\x61\x09\x20\xf1\x92\x5b\ \x91\x48\xdc\x26\xd9\xec\x37\xf3\x27\xb7\x6d\xb5\x9d\x87\x9a\x1b\ \x0b\x00\x35\x94\x8e\xfb\x82\x43\x55\xf4\x33\x22\x7a\x4e\x1c\xf7\ \x14\x60\x09\x68\x3e\xea\x7a\x05\x93\x48\xfd\x87\xe3\xa6\x2e\xea\ \x59\x30\xf9\x11\xdb\x79\x88\x76\x62\x01\xa0\xc6\x74\xb1\x9a\xa3\ \xfe\x5b\xf1\x78\x85\xf9\x34\xa0\xa7\x01\x92\xb5\x1d\x29\x2c\x2c\ \x01\x4d\x40\x8c\x4a\x32\xfd\x34\xdc\xc4\xcf\xfa\xd6\x4e\xbb\x12\ \x97\x48\x60\x3b\x12\xd1\xdb\xb1\x00\x50\xc3\x9b\xb3\x58\x33\x7e\ \xca\x3f\x15\x90\xb3\xa0\x3a\x57\x44\x3c\xdb\x99\xaa\xc5\x12\x10\ \x43\x22\x80\x9b\x7c\x4d\xbc\xe4\x4d\x4e\x32\xf5\x1d\x9e\xc6\x47\ \x8d\x8e\x05\x80\x22\x65\xd6\x7d\xc1\x01\x49\x09\x16\xaa\x48\x27\ \xa0\x1f\x11\x88\x63\x3b\x53\xa5\x58\x02\x62\x40\x04\xe2\xa5\x36\ \x8b\xe7\xdd\x23\x90\x7f\xe9\xed\x9a\xf9\x9c\xed\x48\x44\xa5\x62\ \x01\xa0\xc8\x9a\xb3\x42\xa7\xf8\xe3\xfe\xa9\x80\x2c\x00\xf4\xe3\ \x51\x9c\x19\x60\x09\x88\x20\x31\x30\x89\xd4\x2b\x70\xbd\xc5\xae\ \x93\xfc\x7e\xf7\x82\x03\x5e\xb0\x1d\x89\xa8\x12\x2c\x00\x14\x0b\ \x47\xae\xd0\x36\x53\xf0\x3f\xa1\x2a\xa7\x8a\xe8\x09\x80\xb4\xd8\ \xce\x54\x2a\x96\x80\x08\x10\x51\x49\xa4\x36\x22\x91\xb8\x23\xdb\ \x9e\xfb\xc1\x63\xc7\xb5\xbc\x66\x3b\x12\x51\xb5\x58\x00\x28\x76\ \x66\xdd\xaa\x89\x44\x7b\xf1\x18\x51\xf3\x09\x55\x3d\x59\x44\xfe\ \xda\x76\xa6\xfd\x61\x09\x68\x40\x8e\x37\x0e\x2f\x99\x37\x8e\xb3\ \x48\xda\xf0\xf3\xde\xb9\x33\x87\x6d\x47\x22\x0a\x13\x0b\x00\xc5\ \x5e\xc7\xb2\xe0\xdd\x82\x60\xae\x42\x4e\xd0\x1d\xeb\x06\x32\xb6\ \x33\xed\x0d\x4b\x80\x65\xc6\xa8\x78\xc9\x57\xe1\x78\x0f\x8a\x9b\ \xba\x3a\xbf\xe0\x80\x3f\xd8\x8e\x44\x54\x4b\x2c\x00\xd4\x54\x66\ \xdd\xaa\x09\xaf\xbd\xf8\x41\x13\x98\xe3\x15\x7a\x82\x08\x8e\x02\ \xc4\xd8\xce\xb5\x13\x4b\x40\x7d\x89\x97\x1c\x82\x9b\x58\xad\x9e\ \x7b\xcb\xf6\xcc\xd4\x5f\xf1\xa8\x5d\x6a\x26\x2c\x00\xd4\xd4\xe6\ \x2c\xd7\xd6\xa2\x16\x3f\x64\x60\x3e\xa2\xd0\x63\xa0\x98\x23\x22\ \xae\xcd\x4c\x2c\x01\x35\x22\x06\xf0\xbc\x6d\xc6\x4d\xf4\x01\xb2\ \xc4\x48\xe2\xd7\x3d\x5d\x53\x36\xd9\x8e\x45\x64\x0b\x0b\x00\xd1\ \x5b\x1c\xb1\x34\xc8\x1a\xf5\x3f\x28\x62\x3e\x04\xc1\xdf\xaa\xea\ \xfb\x6d\x9c\x53\xc0\x12\x10\x02\x11\x15\x2f\xb5\x59\x5c\xa7\x47\ \xdd\xd4\x62\xc7\x71\x6e\xe0\xbb\xf9\x44\xbb\xb0\x00\x10\xed\x8b\ \xaa\x74\x2c\xd7\x77\x01\xc1\x07\x14\xf2\x01\x81\xfe\x8d\x2a\x66\ \xd5\xe3\x95\x43\x96\x80\x32\x18\x03\x38\xee\xb0\x18\xef\x79\x71\ \xcc\x63\x0e\xbc\xdf\xad\xe9\x9a\xba\x04\x22\x6a\x3b\x1a\x51\xa3\ \x62\x01\x20\x2a\xd3\xa1\xf7\x06\xc9\x49\x82\xc3\x03\x13\x74\x40\ \xa4\x43\xa0\x1d\x00\x8e\xac\xc5\x76\xc5\x2c\x01\x7b\x12\x63\x54\ \xdd\xc4\x80\x38\xee\xb3\x62\xbc\x95\x06\xce\xd2\xfe\x91\xc9\x4b\ \x5e\xf8\xac\x8c\xd9\xce\x46\x14\x25\x2c\x00\x44\x61\x50\x95\x23\ \x96\xe9\x3b\x5d\xf5\x0f\x57\x91\x59\x10\x99\xa5\xaa\x87\x8b\xe0\ \xdd\xd5\x16\x83\xa6\x2d\x01\x62\x54\x5c\x77\x58\x1c\xe7\x55\x85\ \xf3\xb4\x38\xce\x4a\xa8\xb7\x24\xdf\x35\xf9\x31\xfe\x64\x4f\x54\ \x3d\x16\x00\xa2\x5a\x52\x95\xf7\x2e\xd1\x83\x8c\xe7\x1f\x2a\x2a\ \x87\x42\xe5\x50\x00\x87\x8a\xe8\xa1\x00\xfe\xba\xd4\x0d\x8b\xe2\ \x5a\x02\x44\x44\xe1\xb8\x63\x30\xee\x16\x31\xe6\x45\x15\xe7\x09\ \xe3\x9a\x55\x8e\x93\x79\xa8\xfb\xf4\x96\x27\x39\xd0\x13\xd5\x0e\ \x0b\x00\x91\x45\x47\xae\xd0\x36\xa7\xa0\x07\xfb\xf0\x0f\x31\x90\ \x83\x01\x39\x44\x81\x83\xa1\x98\x09\xe8\x34\x11\x4c\x07\x30\x05\ \x10\x13\xb5\x12\x20\xc6\x04\x6a\x9c\xed\x62\x9c\x21\x38\xce\x1b\ \xa2\xf2\x8a\x18\xe7\x05\xdf\x91\xa7\x12\xc6\xe9\x0b\x8a\xb2\x8a\ \xab\xf0\x89\xec\x61\x01\x20\x6a\x74\x17\xab\x39\xe2\x83\x3a\xc5\ \x15\x4c\x2f\x8e\x6c\x3d\x5c\x0b\xe3\x47\x6b\x31\x98\x2a\x82\xc9\ \x08\x82\x76\x55\x4c\x02\x34\x2b\x1a\xa4\x55\x35\x01\x55\x4f\x55\ \x5d\x51\x38\x0a\xdf\x01\x20\x50\xdd\xf9\x77\x5d\xa0\x6f\xfb\xa1\ \x5a\xe4\xcd\x5f\x90\x1d\xbf\x22\x46\x01\x28\x8c\x04\x50\x04\x30\ \xf0\x01\xf1\x0d\x50\x50\x31\x63\x62\x9c\x11\x35\x18\x14\x31\xfd\ \x80\xd9\xaa\xc0\x16\x18\xb3\xd9\x09\x82\x57\xc5\xb8\x1b\x03\xbf\ \xf8\x8c\x37\x30\x63\xfd\xaa\x73\xa5\x50\xbf\xdf\x24\x22\x2a\xd7\ \xff\x07\x81\xfb\x36\x50\x00\xd9\x17\x51\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\xbe\x3e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\xbe\x05\x49\x44\x41\x54\x78\xda\xed\xbd\x07\x7c\x1c\xc5\ \xf9\xff\x6f\x23\x19\x0b\xe1\x98\xf4\xf2\x4f\xf2\x25\xc9\x8f\x00\ \xba\x22\x1b\x4c\x80\xc0\xdd\x9e\xe4\x82\x8d\x6d\x69\x77\xef\x4e\ \x86\x90\x00\x01\x12\x4a\x0a\x09\x69\xa4\x02\xa1\x86\x9a\x84\x00\ \xa1\xb7\x80\xe9\x18\xd3\x6c\x2c\xb9\xe9\x6c\x83\x4d\xb3\xb1\xc1\ \xdd\xb8\xf7\x2e\xf7\x36\xff\x9b\xf3\xad\xb4\x77\xb7\x65\x66\x76\ \x76\x77\xf6\xee\xd1\xeb\x35\x21\xb6\xa5\x8f\xee\x76\xf7\xe6\xfd\ \xd9\xd9\x79\x3e\x4f\xb7\x6e\xf0\x05\x5f\xf0\x25\xf4\x57\xbf\x7e\ \x97\xf6\xe8\xd3\x3f\xfd\xf5\x13\xe3\xea\xc9\xe1\x78\x72\x70\x76\ \x9c\x13\x8a\xab\x97\x85\x24\xf5\xea\xb0\xa4\xde\x92\xfd\xef\x7f\ \x43\x92\xfc\x4c\x9d\xa4\xbe\x16\x96\xe4\xf1\xa1\x98\x3a\xad\x4e\ \x92\x67\x86\x63\xf2\x82\xba\x98\xbc\x22\x1c\x53\x37\xd6\xc5\xd4\ \x2d\xd9\x3f\x77\x64\xbf\x6f\x57\xf6\x7b\xf6\x86\x62\xf2\x81\xec\ \xcf\x22\x3c\x0e\xff\xff\xec\xdf\xe1\x7f\xcb\x7e\xcf\xe1\xef\xc5\ \x3f\x83\x7f\x36\xab\x91\xd5\xc2\x9a\x58\x1b\xff\x0e\xfc\xbb\xf0\ \xef\xcc\xff\xee\xab\xf1\x6b\xc1\xaf\x09\xbf\xb6\x3a\x29\x75\x12\ \x7e\xad\xf8\x35\xc3\x99\x83\x2f\xf8\x2a\xf3\xaf\x81\x03\x1b\xba\ \x67\xc7\x11\xba\xd1\x1d\xf4\x40\x0f\xf4\x88\xf4\xba\xf7\x8d\xa5\ \xbf\x84\xc1\x5e\x17\x57\xe4\x50\x5c\xf9\x45\x16\xa6\xb7\xe6\x01\ \x3b\x29\x0b\xe2\x4f\xb2\xd0\xdd\xa4\x81\x3a\x78\x43\xde\x84\xdf\ \x43\x5d\x5c\x9d\x18\x8e\xab\x23\x73\xef\x0d\xbf\x47\x49\x6d\xc6\ \x46\xe1\xf8\xc4\xf0\x2f\xe2\x63\x00\xd7\x0b\xe8\x81\x9e\x18\x7a\ \xb4\xbf\xbc\xaa\x78\x80\x1e\xe8\x81\x5e\x97\xde\xf0\xe1\x43\x8f\ \xec\x2b\x0d\x3f\x2e\x2a\x29\x83\x23\x09\xe5\xe7\x59\x10\xde\x99\ \x85\xe3\x2b\x61\x49\x99\x73\xf8\x6e\x3c\xa8\x70\xe7\x33\xf2\xab\ \x0e\xb3\x73\xc7\x24\xa6\xdc\x11\x89\x2b\x97\x47\x24\x75\x50\x7d\ \xbc\xe9\xdb\x4d\x4d\xc3\x8e\x84\xeb\x0f\xf4\x40\xcf\x1b\x3d\x5a\ \xd7\x51\x9d\x1d\x3d\x74\xa3\x9a\xd5\x7d\x80\x1e\xe8\x05\x5d\xaf\ \xa5\xa5\xa5\xea\xc4\x98\x72\x7c\x16\x5e\x6a\x16\xee\x7f\x89\xc4\ \xd5\xec\x5d\xbc\x3c\x2b\x1c\x53\xf7\x54\x3a\xe4\x99\x47\x4c\xde\ \x9d\x3d\x8e\x33\x23\x31\xe5\x99\x88\xa4\xfc\xb5\x2e\x26\x2b\x75\ \x52\xf2\xbb\xf8\x58\xc3\xf5\x07\x7a\xa0\xc7\x47\x8f\xe5\x97\xe3\ \x5f\x78\xa4\x6e\xf4\x70\xf8\x66\x40\x0f\xf4\x02\xa3\x77\xfa\xe9\ \xe9\xa3\x42\x71\xe5\xd4\xdc\xb3\x6f\x49\xb9\x3f\x0b\xa6\x19\x18\ \x56\x1a\xb8\x22\x06\xc3\x09\x08\x41\xcf\x60\xd5\x40\x52\xdf\x39\ \xbc\xf7\x41\xb9\x34\xfb\xff\xbf\x77\x6c\xe2\xc2\x1a\xb8\x9e\x41\ \x0f\xf4\xdc\x87\x7f\xcf\xec\xa8\xd1\x8d\x9e\x0e\xdf\x0c\xe8\x81\ \x9e\xb0\x7a\xf8\x6e\x33\x12\x4b\xd5\x87\x12\xca\x4f\xb3\xc0\x7f\ \x04\x2f\x57\xeb\x37\xd0\x19\xc3\x4b\xd1\x0d\x1e\x30\x04\x3d\xdb\ \x47\x09\xf8\x9c\xe0\x73\x23\xa9\x0f\x87\xe3\xea\x4f\xa2\x92\x1c\ \x55\x14\xb9\x1a\xae\x67\xd0\x03\x3d\x7e\xf0\xc7\xbf\xf0\x28\xdd\ \xa8\x71\xf8\x66\x40\x0f\xf4\x84\xd2\x3b\x65\x60\xea\xb3\x91\xb8\ \x3a\x0c\xef\x70\xaf\x8b\x29\x13\xf0\xae\x78\x72\x78\x29\x25\xc3\ \x19\x0c\x41\xcf\x91\x5e\xac\xb9\x23\x22\x35\x4f\x8c\x4a\xca\x6d\ \x91\x84\xa2\xf6\x3d\x73\xd0\x97\xe1\xf3\x01\x7a\xa0\xd7\xa5\x49\ \xfa\x8d\x78\x77\x61\x6d\x76\x1c\xad\x1b\xf8\xcf\x47\x30\xfe\x62\ \xd0\x03\x3d\x21\xf4\x4e\x6a\x1c\xf2\x7f\x7d\x12\xf2\xb9\x11\x49\ \xfe\x4f\x38\xa6\x7c\x10\x96\xe4\x83\x00\xd7\x72\xd5\xc3\xe7\x56\ \x7e\x3f\x2c\x29\x77\xe1\xfd\x04\x27\x0e\x50\xbe\x00\x9f\x0f\xd0\ \xab\x40\xbd\xee\xf9\x4d\x83\x47\x90\xfe\x72\xfc\x0b\x7b\xe9\xc6\ \xd1\x0e\xdf\x0c\xe8\x81\x9e\x2f\x7a\xa7\x9e\x3a\xb4\x57\xbd\xa4\ \xc8\xd1\xb8\x7c\x77\x16\x06\xb3\x01\xae\x15\xae\x17\x57\x3f\x0c\ \x49\xea\x6d\xb8\xf2\x00\xef\xed\x80\xcf\x1b\xe8\x95\xb9\x9e\xb6\ \x81\xd0\xde\x00\xe8\x7e\x79\x6f\xdd\xe8\xe5\xf0\xcd\xf4\x02\x3d\ \xd0\xf3\x50\xaf\x7b\xf8\x4c\xb5\x4f\x3e\x34\x67\x7c\x24\xa6\xec\ \x29\x5f\x18\x26\x4b\x86\xf1\x86\xba\x24\xf3\x88\x18\xbc\xc6\xb2\ \x39\x7e\x78\x23\x67\x5c\x69\xcd\x1a\xc3\x3f\xe0\x3d\x04\xd1\x68\ \xa8\x0a\x3e\x6f\xa0\x57\x46\x7a\xdd\x75\x55\x03\xd6\x06\x20\xff\ \xcd\xb5\xba\x17\x70\x4c\xfe\xbf\x4e\xde\x8c\xa6\x73\x0c\xe8\x81\ \x9e\x5b\x7a\xf8\x4e\xae\x4e\x4a\x0e\x0d\xc5\xd5\xfb\xea\x24\x75\ \xb9\x1e\x0e\x51\xdd\xe0\x01\x1b\xf7\xf4\xf8\xc0\x3a\xaa\x1b\xfe\ \xea\x79\x7d\xfc\x9c\xeb\x65\x4d\xc0\x8a\xa8\xd4\xfc\x50\x9f\x86\ \xe6\xd4\xe9\xfd\x87\x7e\x05\x3e\x6f\xa0\x17\x60\x3d\x6d\x03\xe1\ \x91\x3a\x03\xd0\xdd\x6e\xc3\xc1\xd1\x45\x0e\x04\x0e\x36\xe8\x09\ \xa9\x87\x53\xe5\xc2\x71\xf9\x92\x70\x4c\x19\x9d\x85\xfe\x4e\xf1\ \x61\x23\x32\xac\xfd\xd0\x13\xd9\x8c\x61\x2d\x05\x97\x1e\x8e\x0e\ \x25\xd4\x8b\x48\xf7\x0e\xc0\xe7\x17\xf4\x04\xd2\xd3\xaa\x06\x3a\ \x0d\x80\x9d\x53\x38\xaa\xe8\xd9\x03\x1c\x6c\xd0\x13\x4a\xef\xc4\ \xb8\xfa\xb5\xec\xa4\xfc\xb3\xc3\xf9\xf7\x56\xa5\x79\x7e\xc1\x9f\ \x33\x5c\x13\x64\x23\x92\xc8\xea\xe8\x06\xfe\x33\xe9\xcf\x72\xd1\ \xe3\x6e\x26\xfc\x85\x7f\xb1\x5e\xee\x5a\x8b\x2b\xad\xb9\xd4\xc2\ \xfe\x4d\x5f\x81\xcf\x2f\xe8\x09\xae\x57\xab\xab\x1a\xc0\x06\xa0\ \xda\xee\x19\x41\x8d\xce\x00\x1c\x0d\x07\x1b\xf4\x44\xd1\xc3\x13\ \x6e\xf6\x2e\xec\x97\xe1\xb8\x9a\xc9\x4e\xc6\x87\xc4\x81\x83\xc3\ \x3b\x61\xbf\x60\xed\x97\x9e\xe3\x95\x04\x61\x56\x76\x0e\x85\x63\ \x6a\x7b\x28\xae\xfe\xbc\xfe\xfb\xea\x97\xe1\xf3\x0b\x7a\x82\xe9\ \x69\x0c\xd7\x0c\x40\x0f\xab\xa5\xff\xea\xbc\x43\xd0\x0c\x40\x2d\ \x1c\x6c\xd0\xf3\x5b\xef\xb8\x53\x87\xf4\x0e\xc5\x95\x0b\xeb\x24\ \xf5\x2d\x9a\x32\x3d\xf7\xe0\xc0\x08\xaf\xa0\xc2\xda\x6b\xbd\x80\ \x3e\x46\x38\xbc\x32\x20\x8f\xc9\xbe\x87\xf3\xc3\x67\x0e\x3f\x06\ \x3e\xbf\xa0\xe7\xb3\x9e\xbe\x6a\xe0\x28\xcb\xd0\xa0\xfc\xa6\x80\ \x1e\x3a\x03\x50\x03\x07\x1b\xf4\xfc\xd2\x1b\x30\xa0\xe1\x73\x11\ \x49\x96\xc3\x92\xf2\x82\x3e\x66\xd7\x7b\xf8\x33\x2c\x5b\x57\x12\ \xac\xbd\xd4\x63\x7a\x8c\xe0\x8f\x59\x0c\x4b\xcd\xbb\x22\x71\xe5\ \xe5\xbe\x52\xf3\x88\xec\xb5\xfc\x05\x98\x0f\x40\xcf\x07\xbd\xde\ \x3a\x03\x50\x63\xb7\xe9\x4f\x6f\x00\x9c\xc4\x15\xc2\xc9\x03\x3d\ \x66\xbd\x93\xa4\xa1\xa7\x45\x12\xcd\xff\xae\x8b\xa9\x6b\xfd\xb9\ \x93\xa3\x78\x66\xed\x33\x5c\x23\xf9\x11\x2d\xd2\x3b\xac\x99\x64\ \x1e\xb4\x7a\xbe\x9b\x09\xe1\xab\x11\x9a\xd7\x84\xe3\xca\xad\xd1\ \x33\x9a\x4f\x80\xf9\x00\xf4\x3c\xd4\xd3\x0c\x40\xad\x25\xcf\xf3\ \x3f\x54\xa5\xab\x11\x04\xf8\x83\x9e\x67\x7a\xdf\x93\x06\x7e\xa3\ \x5e\x92\x7f\x9d\x9d\x2c\xdf\xf5\x7e\x19\x97\x62\x99\xd9\x83\x3b\ \x61\xb7\x61\xed\xb7\x9e\x27\x2b\x09\x54\x7b\x30\xbc\xde\x40\xa8\ \x4e\xc3\x7d\x25\x4e\x38\xa3\xf9\x33\x30\x1f\x80\x9e\xcb\x7a\xbd\ \x89\xf6\xf0\xe9\x0c\x40\x35\xc0\x1f\xf4\xbc\xd2\x3b\x29\xde\x74\ \x46\x34\xd1\xfc\x68\x34\xde\xbc\x43\xb8\xdd\xf9\x1e\xdc\xb9\x8a\ \x0e\xeb\xb2\x5a\x49\x10\x6f\x0f\xc1\x76\x9c\x53\x81\x03\x87\x60\ \x3e\x00\x3d\x97\xf4\xc8\xaa\xf7\x74\x06\x00\xe0\x0f\x7a\xae\xea\ \xe1\xb6\xad\xd9\xc9\xfe\x82\x48\x5c\x99\xee\xdd\x9d\x17\xfd\x26\ \x3d\x1e\xf0\x2f\x67\x58\x7b\xa9\xc7\xdd\x8c\x11\xef\x21\xf0\xe6\ \xb1\x53\x9d\x24\x4f\xc9\x9a\x81\x1f\x6a\x2d\x8d\x61\x7e\x01\x3d\ \x4f\xf5\x1c\x76\x14\x82\x83\x0d\x7a\xb6\x5f\x7d\xfa\xa7\xbf\x1e\ \x8a\x2b\x37\x85\x63\xea\x46\x6f\x96\x5d\xe9\x77\xe5\xb3\xc2\x1f\ \x60\xed\x8f\x9e\xb7\x7b\x08\x3c\xd8\x40\x18\x53\x37\x84\x24\xf5\ \xc6\x93\xa4\xb3\x8f\x87\xf9\x05\xf4\xfc\xd0\x83\x83\x03\x7a\x5c\ \xf5\xb2\xd0\x3f\x35\x1c\x57\x47\xd6\xc5\xd4\xfd\xbe\xc7\xe7\xc2\ \x33\x7a\x78\x8c\xc0\x65\x0f\x81\xbb\x1b\x08\xc3\x52\xf3\xbe\x68\ \xa2\xf9\xb9\x93\x1b\x9a\x1b\x60\x7e\x01\x3d\x80\x3f\xe8\x05\x4a\ \xaf\xa5\xa5\xa5\x2a\x94\x50\x5b\xf0\x86\x27\xf7\x77\x5b\xdb\x2c\ \xe3\x3a\xdc\x60\x06\x70\x0d\xb6\x9e\xe3\xc7\x3a\xb6\x1b\x44\xdd\ \x5d\xc9\xc2\x8f\x07\xc2\x71\x39\x85\x3f\x53\x30\xbf\x80\x1e\xc0\ \x1f\xf4\x84\xd5\xc3\xcf\x30\x43\x92\x72\x69\x38\xa6\x2e\x74\xb7\ \xd4\xca\xe6\x19\x2e\x6c\xd0\x03\x3d\x37\xaa\x11\x6c\x4b\x43\x5d\ \xdd\x40\x38\x3f\x1c\x57\x7f\x72\xdc\x90\x21\x3d\x61\xbe\x02\x3d\ \x80\x3f\xe8\x09\xa3\xd7\x6f\x60\xcb\x31\xa1\xb8\xf2\x47\xb3\xda\ \x7d\x3e\xf0\xb7\x99\x7c\x99\x9f\x07\x03\x0c\x2b\x59\x8f\xd9\x2c\ \xfa\xb6\x81\x50\x5e\x1d\x8e\x2b\xbf\xc7\xe9\x98\x30\x5f\x81\x1e\ \xc0\x1f\xf4\x7c\xd3\xc3\x5d\xd1\x72\x1b\xfb\x24\x75\x9b\x2f\x5d\ \xf3\x60\x77\x3e\xe8\x71\xd4\x63\xde\x23\xe2\x43\x23\xa3\x50\x4c\ \xde\x1a\x96\x94\xeb\x43\xa7\xa7\x3f\x0f\xf3\x15\xe8\x01\xfc\x41\ \xcf\x33\xbd\x5c\xeb\x5d\x49\xbd\x25\x1c\x93\x3b\xdc\xd9\x1d\x6d\ \xf1\xcc\x95\x61\x19\x17\x60\x08\x7a\x2c\x7a\xfc\x37\x10\xba\xf2\ \x58\x0c\xe7\x09\xdc\x18\xfd\x7e\xf2\x8b\x30\x5f\x81\x1e\xa5\x66\ \x77\x38\x38\xa0\x47\xac\xd7\x37\x96\xfe\x52\x38\xae\xfc\xa3\x2e\ \xa6\xee\x70\xe7\xce\x86\x5f\x28\x4f\x65\xc2\x2b\x65\x3a\xa2\x39\ \xcd\xc2\x61\xf5\xfd\xd6\xa3\xf2\xcc\x04\xdf\x0d\x84\xae\x6c\x88\ \xed\x88\x4a\xcd\x77\x7c\x6f\xc0\xd9\xdf\x86\xf9\x0a\xf4\xec\xc0\ \x9f\xcf\xfd\x21\x0e\x09\xea\x05\x07\xbb\x72\xf5\x72\xcf\xf8\x25\ \xf5\x06\x12\xf0\xd3\x4f\x6e\xf6\x75\xfa\xa4\x93\x6f\xf9\xdd\xb9\ \xf2\x80\x35\x6f\xf8\xb3\xe8\x55\xf8\x06\x42\xcb\x04\x42\xee\xd5\ \x03\x1d\xd1\x44\xf3\xcd\xb8\x1b\x21\xcc\x7f\xa0\x67\x02\xff\x6a\ \x22\x03\xa0\xeb\x27\xdc\x1b\x0e\x76\xe5\xe9\x9d\x7e\x7a\xfa\x28\ \xbc\xe1\x28\x2c\xc9\x9b\x3c\x8b\xe3\xad\xa8\xba\x7c\x11\x61\xed\ \x87\x5e\x70\x57\x12\xa8\xf7\x9f\x98\x56\xaf\x70\xae\x1e\xc0\xa1\ \x42\x31\xf5\x2a\x2d\x5d\x10\xe6\x3f\xd0\xcb\xc3\x5f\xeb\xf7\x63\ \x6d\x00\xf2\xdf\x5c\x9b\xbf\xfb\xef\x0d\x07\xbb\x72\xf4\xfa\xf5\ \xbb\xb4\x07\x2e\xe7\x0b\xc5\x95\x95\xfc\x77\x33\x93\x87\xf4\x58\ \xc1\x3f\x58\xcb\xcc\xe5\x04\x6b\x2f\xf5\xca\x78\x03\xa1\x47\xd5\ \x03\x75\x92\xba\x3c\x1c\x97\x2f\x49\x24\x12\xd5\x30\xff\x55\x3c\ \xfc\x7b\xe6\xbb\xfd\xf6\xb0\x8c\xfe\xcf\x7f\x73\x4d\xfe\xee\xbf\ \x97\xae\xb7\x30\x1c\xec\x32\xd6\xeb\xd3\x27\x52\x95\xbd\xdb\x6f\ \xaa\x8b\xc9\x73\x3d\xc9\xe2\x2f\xcb\x50\x9e\x4a\x85\xb5\x57\x7a\ \xe2\xaf\xec\x50\x27\x10\x7a\x13\x3f\xfc\x71\x9d\xa4\x9c\x9d\xfd\ \xf8\x77\x87\xf9\xaf\x22\xf5\x6a\xf2\xa3\xd3\x00\xd8\x39\x85\xa3\ \x74\x06\xa0\x17\x1c\xec\xf2\xd6\x0b\x49\xc9\x7e\x75\x31\x65\x02\ \xdf\x10\x13\xb6\x48\xde\x08\x3c\xa3\x07\x3d\x2a\xbd\x32\x69\x64\ \xe4\x45\xf5\x40\x5c\x69\x8d\xc4\x52\xf5\x30\xff\x55\x94\x5e\x6d\ \x9e\xe7\x9a\x01\xa8\xb6\x7b\x46\x50\xa3\x33\x00\x47\xc3\xc1\x2e\ \x5f\xbd\x53\x07\x34\x9d\x90\x9d\x18\x9e\xc8\x8e\x43\xae\x37\xe2\ \x09\x74\x22\x1f\xc0\x3a\x58\x7a\x01\xde\x40\xe8\x7e\xf5\xc0\xa1\ \x90\xa4\x3e\x1c\x92\x94\xaf\xc3\x7c\x5a\xf6\x7a\x1a\xc3\x35\x03\ \xd0\xc3\x6a\xe9\xbf\x3a\xef\x10\x34\x03\x50\x0b\x07\xbb\x3c\xf5\ \xce\x18\xd4\xff\xcb\x51\xa9\xf9\xba\x3a\x49\xdd\xc9\x6f\x03\x92\ \xca\x0c\xfe\x30\x6c\xd0\x03\x3d\x57\xf5\x02\xd8\xc5\xd0\xb4\x7a\ \x80\x53\xe9\x60\xac\x79\x47\xbd\xd4\xfc\xb7\x78\xfc\xac\x2f\xc1\ \x7c\x5a\x96\x7a\xda\xea\xbd\x66\x00\x7a\x5a\xc1\xbf\x2a\xef\x0e\ \x8e\xd4\x3d\x2f\x80\x83\x5d\x86\x7a\x7d\xa5\xe6\x11\xd1\x98\xb2\ \xd8\xf5\x2e\x7c\x81\x8b\xe3\x0d\x08\x0c\x1b\x4a\x47\xb4\x21\x59\ \x32\x8c\xbe\x8f\x74\x30\xe9\x05\xc6\x4c\x88\xb1\x87\x80\xc6\x08\ \xb8\xd9\x7b\x20\xfb\xff\x17\xf4\x91\x64\x15\xe6\xd3\xb2\xd3\xeb\ \xad\x33\x00\x35\x76\x9b\xfe\xf4\x06\xa0\x27\x71\x4a\x10\x1c\xec\ \xc0\xe8\x9d\xdc\x78\xf6\x49\xe1\x84\x32\x96\x5f\xdd\xb1\xc9\x6e\ \x66\xca\x48\x5e\xd8\x9d\x9f\xb4\x84\xbb\x2b\xb0\xf6\x4b\x0f\xf6\ \x10\xb0\xb7\x30\x36\xed\x3d\xc0\x6d\xc3\xee\xa8\xfa\x78\xd3\xb7\ \x61\x3e\x2d\x1b\x3d\xcd\x00\xd4\x5a\xf2\x3c\xff\x43\x55\xba\x1a\ \x41\x80\x7f\x19\xe9\xe5\x96\xfb\x13\xcd\x37\x47\xa5\xe6\xbd\xae\ \xb6\xe0\x65\x88\xe5\xf5\x7e\xf2\x15\x60\xd9\x3a\x28\xb0\xf6\x5a\ \x4f\x08\x33\x16\x80\xf8\x61\xc6\xbe\x03\x44\x7b\x08\x62\xf2\xee\ \xec\x7f\xff\x1c\x0a\xb5\x1c\x09\xf3\x69\xe0\xf5\x7a\x13\xed\xe1\ \xd3\x19\x80\x6a\x80\x7f\x79\xe9\xf5\x6d\x18\x3e\x0c\x2f\xf1\xf1\ \x49\x1c\x33\x09\x31\x61\xcc\xe3\x2f\xfb\xd2\xbc\x72\x86\xb5\x97\ \x7a\x15\x98\x43\x40\x54\x3d\x40\x69\x04\x28\x37\x10\x7e\x1c\x4a\ \x28\x31\x98\x4f\x03\xad\xd7\x8b\x26\xee\xb7\x0a\xe0\x5f\x3e\x7a\ \xfd\x1a\x07\x7f\x3b\x9a\x90\x9f\xe6\xb3\x61\x88\xbd\x05\xaf\x7f\ \x1b\xae\x3c\x5e\x66\x06\x58\x7b\xab\x57\x61\x71\xc6\x96\xd5\x03\ \x04\x46\x80\xb9\x7a\x20\xae\x3e\xa8\xef\x38\x08\xf3\x73\x19\xea\ \xb1\x82\x1f\x0e\xb6\x78\x7a\x38\xcc\xa7\x5e\x92\x7f\x12\x8d\x2b\ \x9b\x5c\x83\x3f\x41\x29\x53\x59\xd7\xe5\x03\xac\xc5\xd4\xf3\xec\ \xb1\x8e\xf7\x2b\x59\x2c\x55\x03\xbc\x4a\x07\xeb\x24\x79\x5d\xf6\ \x67\x46\x64\xa7\x97\xee\x30\x3f\x43\x8b\x60\x38\xd8\x82\xea\xd5\ \x9d\xd9\xf4\x8d\xb0\xa4\xbc\xc9\xa7\xcb\x98\xc1\xee\x63\x21\xbb\ \xf0\x79\xb0\x2c\x0c\x70\x0d\xa6\x5e\x19\x6e\x20\xa4\x35\x02\x3c\ \x4b\x07\xeb\x62\xea\xcb\xa7\x34\x36\x1d\x07\xf3\x33\xc0\x1f\x0e\ \xb6\x58\x7a\xdd\xc3\x09\xf5\xe2\x70\xac\x79\x9b\x73\xf8\x1b\x4c\ \x1e\x04\xcb\x90\xde\xd7\x59\xbb\xfc\x4c\x18\xe0\x5a\x5e\x7a\xae\ \xef\x21\x10\xb0\xf7\x80\x2b\xa5\x83\xcd\x9b\xfb\xc6\x9b\x2f\x6d\ \x68\x88\x7d\x16\xe6\x67\x80\x3f\x1c\x6c\x9f\xf5\xb2\x93\xc4\x37\ \xc2\x71\x79\xac\xf3\x84\x30\x83\x3b\x07\xe1\x5a\xf0\xba\x78\x27\ \x07\x70\x85\x3d\x04\xdc\x1e\x13\x79\x57\x3d\xc0\xde\x78\xc8\x69\ \xe9\x60\xf3\x58\xbc\xe2\x08\xf3\x33\xc0\x1f\x0e\xb6\x3f\x7a\xdd\ \x43\x52\xf2\xbc\xba\x98\xba\xc5\x0f\xf8\x7b\xbb\x3b\xda\xa5\x65\ \x5c\x80\x21\xe8\x35\xb8\xb9\x81\xd0\x3b\x73\xcc\x56\x3a\xe8\x2c\ \x37\xa0\x4e\x52\x37\xe7\xf7\x06\xc0\xfc\x0c\xf0\x07\x3d\xaf\xf4\ \xf0\xae\xdc\x50\x4c\x7d\xce\xf9\x06\x1f\x83\xb8\x51\x9b\xdd\xc7\ \xde\x95\x46\x41\x69\x1e\x5f\xbd\x74\x6e\x44\x73\x9a\x85\x43\xfb\ \xb7\xc2\x51\xa1\x66\x22\xe0\x5d\x0c\xd9\x4a\x07\x1d\x76\x1d\x8c\ \x29\x4f\x47\x63\xc3\x3e\x07\xf3\x33\xc0\x1f\xf4\xdc\x86\x7f\x42\ \x1d\x12\x96\xe4\xd5\xce\xe0\x6f\x9c\xd7\x2f\x06\xfc\x5d\x98\x7c\ \xcb\x06\x5e\x66\xb0\x26\x1b\xe4\xf0\x77\xaa\x57\x26\xe6\xc9\x95\ \x95\x27\x91\x4b\x07\xd9\x73\x03\x42\x71\x65\x65\x5d\x22\x39\x10\ \xe6\xfb\xe0\xc0\x9f\xb8\xfa\x0f\x0e\xb6\xff\x7a\xc7\x26\x2e\xac\ \x09\xc7\x95\xbb\x9d\xb7\x04\xa5\x87\xbf\x37\xcf\x34\x2b\xbd\x2e\ \xdf\x2f\x58\xfb\xa5\x17\x30\x33\x16\xc0\xea\x01\xd6\xb2\x41\x87\ \xb9\x01\x77\x1e\x37\x64\x48\x4f\x98\xef\x85\xd6\xd3\xa2\xff\x89\ \x43\x82\x7a\xc1\xc1\xf6\x4f\x2f\xfb\x01\x3f\xb1\x4e\x92\x67\x3a\ \xfb\x70\x9a\x77\xe9\x33\x83\x7f\xe0\xb2\xf8\x03\x71\xa7\xe9\x1c\ \xae\x51\xca\x51\x9f\xfd\xf9\xe2\x11\x65\xd0\xb1\xd3\xe3\x63\x26\ \x2a\x71\x03\xa1\xcf\xa5\x83\x86\x5d\x07\x9d\xec\x29\x92\xdf\xaf\ \x93\x92\xdf\x85\xf9\x5e\x58\xf8\x57\x13\x19\x00\x5d\x3f\xe1\xde\ \x70\xb0\x7d\xd1\xeb\x9e\xfd\xf0\x5d\xac\x6f\xd9\xcb\x05\xfe\x36\ \x1b\x86\xdc\x2f\x65\xaa\x94\x50\x1e\x7a\x18\x7a\x05\x6b\xbf\xf4\ \xd8\x56\x12\x2a\x65\x03\xa1\xcf\xa5\x83\x25\xa1\x5f\x0e\x72\x03\ \x62\x72\x47\xf6\x77\x5e\x00\xf3\xbd\x70\xf0\xd7\xfa\xfd\x58\x1b\ \x80\xfc\x37\xd7\xe6\xef\xfe\x7b\xc3\xc1\xf6\x56\xef\xb8\x53\x87\ \xf4\x0e\x49\xf2\x33\xce\xe2\x3c\x93\x82\xc1\xbf\x9c\xbb\xe6\xd1\ \x2d\x83\x07\x01\xd6\x5e\xea\xd1\x3f\x46\x28\xe7\x46\x46\xee\xed\ \xb1\xb1\xed\x3a\x68\xd8\xe8\x8b\x3d\x37\x20\x92\x90\x9f\x3b\xad\ \xe1\xac\x6f\xc0\x7c\x2f\x04\xfc\x7b\xe6\xbb\xfd\xf6\xb0\x8c\xfe\ \xcf\x7f\x73\x4d\xfe\xee\xbf\x97\xae\xb7\x30\x1c\x6c\x0f\xf4\xc2\ \x67\xaa\x7d\xc2\x31\x75\x21\x57\xf8\xdb\x94\x0a\xb9\xbb\x0c\x59\ \x8e\x89\x7c\x64\xcf\xc0\xcb\x11\xd6\x5e\xea\x91\x1b\xaa\x72\x4c\ \x20\xf4\xb1\xeb\x20\xc7\xdc\x00\xdc\x8c\xac\x6f\xbc\xf9\x54\x98\ \xef\x7d\xd5\xab\xc9\x8f\x4e\x03\x60\xe7\x14\x8e\xd2\x19\x80\x5e\ \x70\xb0\xbd\xd1\x0b\xc5\xe5\x1f\xe7\x5b\x72\x32\xc2\x3f\x29\x10\ \xfc\x39\x3d\x23\x15\xe2\x99\xb0\xfd\xb2\x75\xa5\xc3\x5a\xac\xc7\ \x08\xe5\xd4\xc5\xd0\x9d\xd2\x41\xbb\x3d\x40\x3c\x5b\x0e\xe3\xc7\ \x98\x91\x98\xf2\x23\x98\xef\x7d\xd1\xab\xcd\xf3\x5c\x33\x00\xd5\ \x76\xcf\x08\x6a\x74\x06\xe0\x68\x38\xd8\xee\xeb\x9d\x7e\x7a\xfa\ \xa8\x90\xa4\x3e\xec\xac\x85\xa7\x35\xf8\xbd\x83\x7f\x39\xc4\xf1\ \xda\x6f\x58\x03\x58\x8b\xa1\x27\x7c\xae\x01\xb7\xea\x01\x9f\x4a\ \x07\xb9\xe6\x06\x28\xf7\xe3\x8a\x26\xe0\x87\x67\x7a\x1a\xc3\x35\ \x03\xd0\xc3\x6a\xe9\xbf\x3a\xef\x10\x34\x03\x50\x0b\x07\xdb\x7d\ \xbd\x68\x2c\xf9\x1d\xfd\x2e\x7f\x7a\xf8\x27\xcb\x07\xfe\xbe\x2e\ \xe3\x56\xf6\x06\xbd\x72\xd1\x63\xd9\x3f\xe0\xd9\x1e\x02\xc7\xe6\ \xb8\x1c\x72\x03\xe4\xf7\x4f\x48\xc8\xdf\x02\x7e\xb8\xae\xa7\xad\ \xde\x6b\x06\xa0\xa7\x15\xfc\xab\xf2\xee\xe0\x48\xdd\xf3\x02\x38\ \xd8\x2e\xeb\x45\x24\x75\x10\x8e\xd4\xe4\x06\xff\x84\x5f\xf0\x0f\ \x6a\x16\x3f\xd9\x46\x3d\x80\x6b\x70\xf5\x48\xcc\x40\xf0\xaa\x07\ \xdc\x79\x6c\x47\x9f\x1d\xc0\xb8\x47\x29\xa6\x6e\xcc\xfe\x7c\x23\ \xf0\xc3\x55\xbd\xde\x3a\x03\x50\x63\xb7\xe9\x4f\x6f\x00\x7a\x12\ \xa7\x04\xc1\xc1\x66\xd5\xc3\x59\xfe\xbf\xcd\xba\xe1\x83\xc1\x86\ \xbf\xc3\x65\x4d\x5f\x76\x6f\xc3\xee\xfc\x4a\xd5\xb3\x7e\xac\x13\ \xc4\xea\x01\x77\x4a\x07\xe9\x72\x03\xd8\x42\x83\x42\x31\xf9\x40\ \xf6\x06\xe8\x4a\x3c\x17\x02\x3f\x5c\xd1\xd3\x0c\x40\xad\x25\xcf\ \xf3\x3f\x54\xa5\xab\x11\x04\xf8\xbb\xa8\x87\x9f\xf7\x67\xc1\xff\ \x14\x73\xf6\x36\x21\xf8\xdd\x85\x7f\xd0\x1a\xf1\xd0\x41\x1f\xe0\ \x5a\xfe\x7a\x42\xc5\x19\x0b\x58\x3a\xe8\x61\x6e\xc0\xe3\x78\x5f\ \x00\xf0\x83\xbb\x5e\x6f\xa2\x3d\x7c\x3a\x03\x50\x0d\xf0\x77\x57\ \x2f\xd7\xbe\x57\x92\xdf\xf7\x02\xfe\xee\x6c\x18\x72\xb8\xa1\x49\ \x90\xec\xfc\xb2\x82\x61\x63\xd7\x88\x36\xa6\x99\x87\x5e\x87\x48\ \xaf\x62\x72\x08\x3c\xdc\x40\x28\x60\xe9\x20\x5d\x6e\x00\xdb\xa8\ \x8b\xc9\x33\x4e\x92\xce\x3e\x1e\xf8\xc1\x55\xaf\x17\x4d\xdc\x6f\ \x15\xc0\xdf\x65\xf8\xc7\x94\x7e\xd9\x8b\x7d\x55\x45\xc2\xdf\xb3\ \x0d\x57\xe6\x93\x79\xe0\xee\x5c\x79\xc2\xba\xd1\x47\xbd\x80\xad\ \x24\x08\xb1\x81\xd0\x51\xe9\xa0\xc7\xb9\x01\x52\x71\x6e\x00\x5b\ \x68\x50\x38\xde\xbc\xea\xa4\x86\x61\x31\xe0\x87\xc7\x7a\xac\xe0\ \x87\x83\x4d\xae\x17\x96\x94\x64\x48\x92\x77\xb1\xc1\x9f\x1c\xfc\ \xee\xc0\xdf\xc1\x64\xe4\xd9\x6e\x6b\xe3\x52\x30\xe1\x97\xad\x45\ \x83\xb5\xd7\x7a\x81\xdd\x40\xe8\xd1\x4a\x96\xa3\x3d\x36\x7e\xe7\ \x06\xd0\x87\x06\x85\xe3\xca\xce\xfa\x44\xf3\x39\xc0\x0f\x7f\xf4\ \xe0\xe0\xf0\xd7\xeb\x1e\x8a\x2b\x7f\x64\xaf\x9b\xa5\x79\xde\xcf\ \x1b\xfe\xa2\xb7\xe0\x35\x7e\x86\x2b\xec\x9d\x66\xd0\x61\xed\x95\ \x5e\xe0\x36\x10\x7a\xb0\x87\x25\x28\xa5\x83\x94\x26\xc0\x64\xfe\ \x3b\x84\x37\x48\xeb\x37\x07\x02\x8f\x00\xfe\x81\xd3\xeb\xd7\xef\ \xd2\x1e\x59\x47\xfb\x28\xc0\x9f\x37\xfc\x8d\x37\x70\x09\xb5\xcc\ \x5c\x29\xb0\xae\xc0\xc7\x08\xe6\x09\x84\x22\x97\x0e\x7a\x98\x1b\ \x40\x68\x02\x6c\xe7\xbf\xb8\xfa\x40\x22\x91\xa8\x06\x1e\x01\xfc\ \x03\xa7\x77\xc2\x19\xcd\x9f\xa9\x93\x94\xb1\x6c\x17\x3f\x1d\xf8\ \xf9\xc2\xdf\xc1\x06\x24\x1f\xe2\x78\x85\xd8\x60\x06\xb0\xf6\x47\ \x4f\x80\x95\x1d\xe3\x3d\x27\x22\x97\x0e\x7a\x98\x1b\x60\x61\x04\ \x48\x4b\x07\x43\x92\xfc\x7a\xfd\xa0\x41\x47\x03\x8f\x00\xfe\x81\ \xd1\x0b\x25\x5a\xbe\x6a\xb6\xd3\xbf\x2c\xe1\xef\xea\xee\x68\xe3\ \x65\x57\x5f\x97\x85\x85\x80\x61\x0b\xf3\xa8\xcf\x69\x16\x0e\xe7\ \x7a\x02\x98\x09\x1f\xf7\x10\xd0\x6e\x1a\xf4\xb7\x74\x90\x6f\x6e\ \x00\xad\x09\xa0\xcd\x0d\xc0\x15\x02\xf5\xdf\x57\xbf\x0c\x3c\x02\ \xf8\x0b\xaf\x17\x3d\xa3\xf9\x84\x70\x4c\xfd\x34\x58\xf0\x67\x2c\ \x3d\xf2\x21\x8b\xdf\xb7\x67\xc2\x9e\xdf\x09\xbb\x09\x6b\x3f\xf4\ \x3c\x3e\x7e\x3e\xed\x21\xf0\xa5\x7a\x80\xb9\x74\x90\x5f\x6e\x00\ \xa9\x09\x88\xe4\xf3\x02\x68\x43\x83\xea\xe2\xea\xa2\x50\xa2\xe9\ \x38\xe0\x11\xc0\x5f\x58\xbd\xba\x58\xf3\x69\x87\x23\x2e\x01\xfe\ \xec\x93\x9b\x79\xcd\x7e\xf9\xed\xce\x17\x15\xd6\x5e\xeb\x95\xe7\ \x1e\x02\x4f\xab\x07\x04\xc8\x0d\x70\x3d\x34\x28\xa6\x6e\xc8\xfe\ \xf7\x7b\xc0\x23\x3e\xf0\x27\xae\xfe\x83\x83\x4d\x00\xff\x44\x72\ \x60\x5d\x4c\xdd\xe1\x18\xfe\x04\xe0\xe7\x03\x7f\xc6\x3b\x07\x0f\ \x1b\xf1\x78\xbe\x1b\xdc\xd5\x65\xeb\x72\x81\xb5\x57\x7a\x2e\x9e\ \x0f\x21\xaa\x07\x5c\x2a\x1d\x14\xa0\xe5\xb0\x65\x22\xa9\xd3\xd0\ \xa0\x98\xdc\x91\xfd\xd9\x01\xc0\x23\x47\x7a\x5a\xf4\x3f\x71\x48\ \x50\x2f\x38\xd8\xe6\x7a\xb8\xc6\x3f\x2c\xc9\x7b\xe9\xe1\x9f\x0c\ \x0e\xfc\x5d\x8b\x43\xb5\x4f\xe9\x0b\x5e\x69\x5e\xa5\xc1\x3a\xc0\ \x8f\x11\x7c\xaf\x1e\x10\xa9\xeb\x20\xbf\x95\x45\xab\x38\xf2\x48\ \xc9\xdc\x47\x19\x1a\x14\x53\xf6\xd4\x4b\x4d\xe7\x01\x8f\x98\xe1\ \x5f\x4d\x64\x00\x74\xfd\x84\x7b\xc3\xc1\x36\xfe\xca\xc2\xfc\x62\ \xa3\x86\x3e\x62\xc2\x3f\x25\x10\xfc\x7d\x6c\xc4\xc3\x7d\x99\x19\ \x60\xed\x8f\x1e\xe7\x3d\x04\x1e\x5d\x7f\x9e\xf5\x1e\xf0\x39\x37\ \xc0\xcd\xd0\xa0\x48\xac\xf9\x40\x9f\x44\xf3\xe5\xc0\x23\x6a\xf8\ \x6b\xfd\x7e\xac\x0d\x40\xfe\x9b\x6b\xf3\x77\xff\xbd\x01\xfe\x06\ \xbb\xfd\x25\xe5\x37\x0c\x21\x17\xc1\x81\xbf\x2b\xa5\x4c\xe4\xb9\ \xfc\xdc\x27\x5f\xd8\xa0\x57\xe6\x7a\xc1\xda\x40\x68\xdc\x7b\xc0\ \x05\xb3\x2d\x6a\x6e\x00\x87\xd0\xa0\x88\xa4\xfe\x0a\x78\x44\x0c\ \xff\x9e\xf9\x6e\xbf\x3d\x2c\xa3\xff\xf3\xdf\x5c\x93\xbf\xfb\xef\ \xa5\xeb\x2d\x0c\xf0\xef\x5c\xf6\x57\xff\xec\x26\xfc\x23\x65\x07\ \x7f\x9f\xba\xf0\x71\xdb\x60\x06\xb0\xae\xc8\x3d\x04\xbe\xf5\x1e\ \xe0\xbc\xc7\x86\x29\x37\x20\x20\xa1\x41\x71\xe5\xf7\x00\x7f\x5b\ \xbd\x9a\xfc\xe8\x34\x00\x76\x4e\xe1\x28\x9d\x01\xe8\x05\xf0\xef\ \xfc\xea\x9e\xbd\xf3\xbf\x36\x18\xf0\x67\xa8\x13\x6e\x70\x1f\xfe\ \xae\x3f\x73\xe5\xb2\x2c\x0c\x70\x2d\x2f\x3d\x0e\x1b\x08\x5d\xae\ \x1e\xf0\xa4\x74\xd0\xc7\xdc\x00\x96\xc0\x20\xe2\xdc\x80\xb8\xf2\ \x57\x80\xbf\xa9\x5e\x6d\x9e\xe7\x9a\x01\xa8\xb6\x7b\x46\x50\xa3\ \x33\x00\x47\x03\xfc\x75\xf0\x8f\xab\x37\x3a\x86\x7f\xa2\x52\xe0\ \x9f\xf6\x16\xfe\x8e\x9f\x09\x03\x5c\x2b\x43\x4f\xdc\x04\x42\x4f\ \x4a\x07\x99\x4a\x7f\xbd\x0e\x0d\x52\x19\x42\x83\x94\xeb\xbb\x59\ \xf4\x0f\xa8\x50\xf8\x6b\x0c\xd7\x0c\x40\x0f\xab\xa5\xff\xea\xbc\ \x43\xd0\x0c\x40\x2d\xc0\x5f\x7f\xe7\xaf\xde\x56\x96\xf0\xe7\xbe\ \x01\x29\xcd\xd4\x8a\x97\x19\xfe\x8e\x76\x83\x03\x5c\x2b\x5b\xcf\ \xc1\x4a\x51\xd0\x4b\x07\xa9\x73\x03\xbc\x0e\x0d\x52\x58\x42\x83\ \x6e\x31\x32\x01\x15\x0a\x7f\x6d\xf5\x5e\x33\x00\x3d\xad\xe0\x5f\ \x95\x77\x07\x47\xea\x9e\x17\x00\xfc\x03\x05\xff\x94\x70\xf0\x17\ \x37\x8e\x17\x60\x08\x7a\x1c\x37\x10\x7a\x56\x3a\x28\x42\x6e\x80\ \x97\xa1\x41\x0a\x4b\x68\x50\x81\x09\xa8\xe0\x1c\x9b\xde\x3a\x03\ \x50\x63\xb7\xe9\x4f\x6f\x00\x7a\x12\xa7\x04\x55\xc4\xb2\xbf\x72\ \x53\xd9\xc1\x9f\x7b\xd7\x32\x36\xf0\x53\x4f\x96\x8e\xea\xc0\x01\ \x86\xa0\xe7\xf2\x06\x42\xcf\x4a\x07\xfd\xce\x0d\x70\xbe\x52\x19\ \xb6\x0a\x0d\x92\xf4\xa1\x41\x0a\x7d\x60\x50\x5c\xfd\x3b\x84\xd8\ \x75\x1a\x80\x5a\x4b\x9e\xe7\x7f\xa8\x4a\x57\x23\x08\xf0\xef\x2a\ \xf5\x63\xd8\xf0\xc7\xb6\xd9\x2f\x98\xf0\x4f\x79\x03\x7f\x08\xe5\ \x01\x3d\x5f\xf4\xc4\xa9\x1e\x88\x1a\x96\x0e\xfa\x99\x1b\xe0\x72\ \x68\x90\x54\x1c\x1a\x44\x6b\x02\x94\xbf\x55\x78\x62\x60\x6f\xa2\ \x3d\x7c\x3a\x03\x50\x0d\xf0\x77\x5a\xea\x57\xb9\xf0\x77\x65\x77\ \x34\xf3\xee\x6d\x80\x17\xe8\xf1\xd4\x63\x5c\x79\x72\xa1\x74\x90\ \x35\x3b\x80\x68\x0f\x81\x68\xa1\x41\x8c\x81\x41\xda\xfc\x5c\x9f\ \x68\xba\xa6\x82\x43\xec\x7a\xd1\xc4\xfd\x56\x01\xfc\x9d\x86\xfc\ \x78\x09\x7f\xca\xba\x5e\xae\x71\xa3\x85\x77\x22\xae\x94\x46\x31\ \xc7\xf1\x02\xbc\x40\xcf\x4d\x3d\xc6\x3d\x27\x2e\x98\x63\x1a\x23\ \xe0\x7e\x6e\x80\x8b\xa1\x41\x0c\x26\x40\x3f\x3f\xf7\x49\xc8\x57\ \x43\x8e\x8d\x4d\x4a\x50\x37\xc6\xaf\xf2\x8d\xf7\x05\xf8\xfb\x02\ \x7f\xa6\xd0\x96\xca\x84\x57\x1f\xdd\xa8\xcf\xfd\x3d\xdb\xe8\x53\ \xa4\x45\xab\x27\xfa\xf1\x3b\x69\x60\x5a\x9c\x2e\x86\x9c\xf7\xc4\ \x90\x98\x00\xe6\xea\x01\xea\x52\x62\x17\x43\x83\x28\x4c\x80\x61\ \x62\x60\x22\x79\x01\xf0\x8d\xf3\x57\x59\x2e\xfb\xc7\xe5\x14\x7d\ \xb6\x7f\x25\xc0\xbf\xf0\x19\x24\xf7\x50\x14\xc6\x48\xde\x72\x86\ \x3f\x15\xac\xfb\xb3\x8d\x3e\xfd\xd3\x25\x83\xe8\x67\x29\x5e\x9f\ \xdf\xe7\xe3\xd4\xc1\x6e\xc7\x37\x33\x54\x0f\x70\x2e\x1d\x34\x33\ \x02\x8e\x4b\x07\x7d\x08\x0d\x62\x0d\x0c\xb2\xda\x90\x1d\x8a\xc9\ \x07\xea\xe2\x8a\x0c\xf0\x07\xf8\x5b\xdc\xf9\xab\x83\xe8\xbb\xfa\ \x01\xfc\xbd\x6f\xc1\x5b\x5e\xcb\xcc\xb6\x77\xd9\xa6\xb0\xc6\x7f\ \x3f\x82\x79\xf4\xc9\x69\x16\x0e\x36\x2d\x93\xd7\x67\xb3\x92\xe0\ \xd5\xf9\xe8\x2f\xa7\xc4\xad\x1e\xe0\x58\x3a\xe8\x5a\x6e\x80\x0f\ \xa1\x41\x2c\x26\xc0\x36\x37\x20\xa6\xee\xc9\xfe\x4c\x23\xc0\x1f\ \xe0\x5f\xf2\x75\x62\x42\x3d\xbd\x2e\xa6\xee\x28\x0b\xf8\x73\xab\ \x13\x2e\x2e\x3f\xf2\x1b\xfe\xc1\x7f\xc6\x6c\x07\xf9\xc2\xe1\x06\ \xac\xfd\xd0\x23\x5f\x41\x70\xe3\x7c\xb4\xfc\x50\xf5\xf8\x7a\xf1\ \xb7\x74\xd0\xb5\x96\xc3\x1e\x87\x06\xd1\x98\x00\xe2\xd0\xa0\x98\ \xdc\x91\xfd\xef\xf7\x00\xfe\x00\xff\xce\xaf\xe8\x19\xcd\x27\x64\ \xef\xfc\x37\x89\x09\xff\x54\xf9\xc1\xbf\x42\x1a\xf1\x98\x3e\x53\ \xb7\x00\xbd\xff\xb0\xf6\x52\xcf\xd8\x14\x94\x3e\xe2\x70\x76\x3e\ \x7e\x7e\x79\xb3\x4f\xd7\x8b\x7f\xa5\x83\xae\xe5\x06\x78\x1c\x1a\ \x44\x96\x18\xa8\xd2\x25\x06\xc6\xd4\x0d\xa1\x44\xd3\x71\x00\x7f\ \x80\x7f\xb7\x50\xa2\xe5\xab\xd9\x0b\xe2\x53\x80\xbf\xf6\x61\x2f\ \x1c\x5c\xbb\xa0\x51\x27\xac\x05\x6b\x83\x9e\xe1\x33\xf0\x92\x67\ \xea\x41\x85\xb5\x57\x7a\xf6\x8f\x11\x68\xcf\xef\xad\x7f\x1d\x16\ \xac\xde\x03\xae\xb6\x1c\x0e\x5e\x68\x10\x59\x62\xa0\x4a\x95\x18\ \x58\x17\x57\x17\xd5\x7f\x5f\xfd\x32\xc0\xbf\x82\xe1\x7f\xc2\x19\ \xcd\x9f\xc9\xde\xf9\xbf\xef\x46\xc2\x1f\xc0\xdf\x09\xfc\x83\xb3\ \x3b\xbf\x64\x03\x9c\x90\xcf\xe8\x83\xae\x67\xfe\xe8\x80\xe4\xfc\ \xbe\xf0\x9f\x21\x82\x5c\x2f\x14\xa5\x83\xa2\xe7\x06\x78\x1c\x1a\ \xe4\x46\x62\x60\x5d\x4c\x9e\x51\x3f\x68\xd0\xd1\x95\x0a\x7f\xe2\ \xea\xbf\x72\x3c\x38\xfd\xfa\x5d\xda\xa3\x4e\x52\xc6\x06\x1e\xfe\ \x0d\xfc\xe1\xcf\x35\xc1\xac\xcc\x5a\xf0\x9a\x3d\xbf\xd7\x80\x0f\ \xb0\xf6\x42\xcf\x7c\x1f\x41\xf1\xf9\x8d\x0f\x4f\xa2\xe9\x23\x07\ \x09\xf6\x98\x88\xa2\x74\xd0\xb5\xdc\x80\x14\x9f\xdc\x00\x0f\x43\ \x83\xc8\x12\x03\xe9\xd2\x02\x43\x92\xfc\x7a\x63\x63\xe2\xc8\x0a\ \x4b\x0c\xd4\xa2\xff\x89\x43\x82\x7a\x95\xd9\xc1\xe9\x1e\x8e\x2b\ \x8f\x02\xfc\x53\x25\x1b\x86\xb8\xc1\xbf\xb1\x7c\xe0\x6f\xbd\x61\ \x0f\x60\xed\xaf\x9e\xf9\x1e\x02\x7c\x5e\xcf\xf9\x91\x82\x96\x8f\ \x19\x20\xe0\x1e\x11\xca\xcf\x87\xc8\xb9\x01\x54\xd5\x49\x5e\x24\ \x06\xd2\x99\x80\x68\x42\x7e\xb4\xa1\x21\xf6\xd9\x0a\x82\x7f\x35\ \x91\x01\xd0\xf5\x13\xee\x5d\x4e\x07\x27\x24\xa9\x57\x03\xfc\x45\ \x81\x7f\x40\x4a\xf3\x4c\x9e\xe1\x03\xac\x05\xdd\x43\x90\x37\x01\ \x7f\xf8\x75\x13\xea\x68\xef\x8f\x06\xe4\x4b\x01\x03\xdd\x78\x88\ \x53\x6e\x80\x95\x09\xf0\x26\x34\xc8\x8b\xc4\x40\x95\x2e\x31\x30\ \xd1\xfc\xe7\x0a\x81\xbf\xd6\xef\xc7\xda\x00\xe4\xbf\xb9\x36\x7f\ \xf7\xdf\xbb\x5c\x0e\x4e\x58\x52\x92\x00\xff\x42\xf8\x73\xdb\x7d\ \x4c\xd5\x52\x55\xbc\xba\x7c\x52\xe8\x03\xac\x83\xa2\x97\x46\x0f\ \xdd\x3a\x0c\xed\xc8\xf4\x47\x97\x5d\xaa\x50\x6f\x22\x14\xb6\x74\ \x90\x12\xfe\x7d\x1a\x49\x8c\x80\xd7\xa1\x41\x5e\x24\x06\xaa\x34\ \x89\x81\x87\xfa\x24\x9a\xce\x29\x73\xf8\xf7\xcc\x77\xfb\xed\x61\ \x19\xfd\x9f\xff\xe6\x9a\xfc\xdd\x7f\x2f\x5d\x6f\xe1\x40\x1f\x9c\ \x68\x4c\xe9\x17\x92\xe4\x5d\x00\x7f\x3f\xe1\x2f\xde\xe4\x4b\x03\ \x7d\x80\x6b\xb0\xf4\xa6\x3c\x35\x38\x67\x00\xfe\x79\xfd\xb0\x92\ \x7d\x03\x62\x3e\x76\x22\x2c\x1d\xa4\xb8\xf3\xff\xde\x20\xfb\xd5\ \x80\xa8\x81\x01\x70\x3f\x34\xc8\x8b\xc4\x40\xf2\x9b\x3d\x9c\x03\ \x13\x4a\xc8\x7d\xcb\x74\x83\x7c\x4d\x7e\x74\x1a\x00\x3b\xa7\x70\ \x94\xce\x00\xf4\x0a\x3c\xfc\x13\xea\x37\xc2\x92\xbc\xba\xb2\xe1\ \x9f\xe6\x0f\xff\xc6\x60\xc2\xdf\xea\x99\x3e\xc0\xb5\x3c\xf4\xfa\ \x0d\x1a\x81\x36\x4d\x18\x90\x33\x00\xe3\x1f\x1b\x62\x59\x51\x20\ \xd6\x86\x53\x8a\xae\x83\x04\x9f\xdf\x33\xcf\xb6\xfb\x7c\xa7\x4a\ \x82\x83\x1c\x6d\x28\x4e\xd0\x84\x06\x79\x91\x18\xa8\x12\x27\x06\ \xd6\xc5\xe4\x15\x27\xc6\xd5\xaf\x95\x19\xfc\x6b\xf3\x3c\xd7\x0c\ \x40\xb5\xdd\x33\x82\x1a\x9d\x01\x38\x3a\xe8\xf0\xef\xd7\x6f\x78\ \xad\x59\xb9\x1f\xc0\xdf\x0b\xf8\x8b\xb3\xec\x5a\x50\x57\xce\x50\ \x9b\x0f\x70\x0d\x8e\xde\xf9\x17\xa9\x39\xf8\xe3\xb1\x61\xfc\x00\ \x74\xf2\xa0\x16\x82\x6a\x02\x91\x4a\x4d\xf9\xe4\x06\x34\x36\x25\ \x6d\x37\x10\x16\xc7\x7d\x3b\x0e\x0d\x4a\xd0\x84\x06\x79\x91\x18\ \xa8\xd2\x24\x06\x4e\x3f\x36\x71\x61\x4d\x99\xc0\x5f\x63\xb8\x66\ \x00\x7a\x58\x2d\xfd\x57\xe7\x1d\x82\x66\x00\x6a\xcb\xe0\x99\x48\ \xf7\x2c\xfc\x9f\x62\x86\xbf\x54\x5e\xf0\xe7\x12\x37\xda\x18\x2c\ \xf8\x17\xa4\xca\x31\x06\xf2\x00\x5c\x83\xa7\xf7\xdf\x9b\x87\x75\ \x1a\x00\x3c\x2e\xfe\x89\x62\x59\x4d\xa0\xdf\x3c\xd8\x47\x98\x90\ \x29\xe7\x2d\x87\x9b\x5b\x54\xe2\x0d\x84\x5c\x43\x83\xfc\x4e\x0c\ \x94\x8a\x13\x03\x15\x9a\xc4\xc0\xc7\x30\x3b\x02\x0e\x7f\x6d\xf5\ \x5e\x33\x00\x3d\xad\xe0\x5f\x95\x77\x07\x47\xea\x9e\x17\x04\x7e\ \x43\x44\x48\x52\x7e\x03\xf0\xf7\x03\xfe\xfe\xef\xb6\x36\x4e\xe4\ \x03\xb8\x56\x8a\xde\xc7\x2f\x0f\x2a\x30\x00\x4f\xdc\x39\x94\x40\ \xaf\x34\x81\x50\x8c\xea\x01\xf6\xdc\x80\x1f\x5f\x24\x53\x55\x0f\ \x70\x0d\x0d\xf2\x3b\x31\x50\x2a\x4e\x0c\x54\x88\x13\x03\x43\x09\ \xf5\x97\x01\xcf\xc5\xe9\xad\x33\x00\x35\x76\x9b\xfe\xf4\x06\xa0\ \x27\x71\x4a\x90\xc0\x07\x27\xdf\xdd\xef\x20\xcd\x33\x20\x96\xa5\ \x7f\x80\xbf\x58\xf0\x2f\x06\xff\x61\xf8\x03\x5c\x2b\x49\xaf\xe5\ \x87\xc9\x02\xf8\xe3\xb1\x72\xec\x40\x74\xd2\x40\x52\xbd\x16\xaa\ \x4d\x83\xde\x3c\xc6\x22\x2c\xad\x2d\xfa\xdc\xfe\xf6\xca\x26\x7f\ \x43\x83\x3c\x4a\x0c\x34\x9d\xaf\x19\xe3\x82\x71\x0b\xe1\x70\x42\ \x6e\x08\x70\x28\x9e\x66\x00\x6a\x2d\x79\x9e\xff\xa1\x2a\x5d\x8d\ \x60\xe0\xe1\x1f\x8d\x25\xbf\x53\x27\xa9\x9b\x2b\x13\xfe\x69\xbe\ \xf0\x27\x5e\x86\x14\x28\x8b\x5f\x97\xcc\x07\x70\xad\x3c\xbd\xff\ \xdd\x35\xb4\xc4\x00\xe0\xf1\xcb\x9f\x2b\x0c\x7a\xa2\x55\x0f\xd0\ \x95\x0b\xde\xf2\x97\xe1\xfe\x87\x06\x79\x94\x18\x18\x36\x4b\x0c\ \x94\xf4\x89\x81\x14\x23\xa6\x6e\xa8\x6b\x4c\x1e\x1b\xd0\x44\xdc\ \xde\x44\x7b\xf8\x74\x06\xa0\xba\x1c\xe0\x7f\xfa\xe9\xe9\xa3\xea\ \x24\x79\x66\x20\xe1\xdf\x00\xf0\x67\xcd\xe3\x2f\x06\x3f\xc0\xb0\ \x32\xf5\xce\x18\xda\x92\xdb\xf4\x67\x64\x00\xda\x9f\x1c\xec\xe0\ \xf5\x59\x1b\x01\x11\x73\x03\x4e\x1f\x9c\x42\x0f\xfe\x63\xa8\x38\ \xa1\x41\x1e\x24\x06\x86\xcd\x12\x03\x0b\xe6\x79\x9a\xb8\x60\xf5\ \xbd\xc8\xe0\xb3\x8e\x0a\x60\x5c\x70\x2f\x9a\xb8\xdf\xaa\x72\x80\ \x7f\x3e\xe9\xef\xe1\x4a\x87\x7f\xbd\x67\xf0\x17\xa4\x11\x0f\x64\ \xf1\x83\x5e\x7e\xfc\xf3\xfa\xe1\x86\xf0\xd7\xc6\x79\x17\xaa\xce\ \xe3\x87\x8b\x8c\x80\xa8\xb9\x01\x67\xa7\x55\xf4\xdc\xbf\x87\x38\ \x9e\x0f\xb8\x86\x06\x79\x90\x18\x18\x31\x0b\x0d\x62\x8c\x0c\xce\ \xf2\xe2\xe1\xb2\xed\x15\xc0\x0a\x7e\x21\xe1\x9f\x50\x2f\x02\xf8\ \x3b\x84\x7f\xa3\xd8\xf0\x2f\x6d\xc4\x03\x30\x3c\xfc\x6f\xe7\x30\ \x8d\x3e\x39\xcd\xc2\x61\xfd\x33\xe2\x1e\xbf\xf8\xf0\x16\xb4\xae\ \x6d\x80\x29\xfc\x71\x2c\x70\xeb\x23\x83\x39\xbd\xbe\xd2\xde\x03\ \xa2\xe5\x06\x9c\x77\x81\x82\x5e\xbf\x7f\x70\x41\x66\x00\xeb\x1e\ \x20\xae\xa1\x41\x7e\x26\x06\x52\x9a\x00\x8d\x1f\xf5\x52\xf3\x4f\ \xa1\x45\xb0\xc0\x6f\x26\x7c\xa6\xda\x27\x1c\x93\x77\x33\xc1\x5f\ \x2a\x8f\x67\xfe\xde\xc0\xdf\x9f\xd2\xa8\xd2\xf0\x9e\x4a\xba\x13\ \x66\x85\x35\x6f\xf8\x93\xea\xf9\x73\xfc\xcc\x9e\xfd\x6b\xf0\xdf\ \xd0\xd6\x1f\xad\x6b\xed\x8f\x7e\xfe\xb3\x66\x8e\xaf\xaf\xb0\xe2\ \x44\xa4\xdc\x80\x9f\x5f\xd1\x84\xa6\x3d\x75\x56\x41\x70\x90\x93\ \xc4\xcf\xe2\xc0\x20\xd1\x13\x03\xed\xe3\x82\x93\xc4\x71\xc1\x61\ \x49\xd9\xd5\x37\xde\x7c\x2a\xc0\x5f\xc0\x37\xd3\x6f\x60\xcb\x31\ \xe1\x98\xba\x90\x1c\xfe\x2a\xc0\x3f\x20\xf0\x37\x02\x7f\xf9\xc2\ \xdf\x0f\x58\x7b\xa9\xe7\xde\xf1\xfb\xd1\x8f\x93\x39\xc8\xdb\xc1\ \x1f\x8f\xb9\xa3\x06\xa2\x33\x87\xf2\xae\x0e\x49\x33\x55\x0d\xb8\ \x99\x1b\xf0\xf7\xab\x87\xa1\x45\xaf\x0d\x28\x5c\xb9\x73\xd8\xe2\ \xbb\x30\x34\x48\xfc\xc4\x40\x9e\x71\xc1\x21\x49\x9d\x77\xc2\x19\ \xcd\x9f\x01\xf8\x8b\xf5\x66\xba\x87\x24\xf9\x19\x9e\xf0\x0f\x03\ \xfc\xc5\x82\x7f\xff\x72\x84\xbf\xe8\xb0\xf6\x4a\xcf\xf9\xf9\xf8\ \xfe\xd9\x2d\x68\xe1\x6b\x83\x88\xe0\x8f\x07\xfe\xf3\xe8\xfb\xce\ \x76\xe1\xfc\x16\x96\x0f\xfa\x53\x3a\xd8\xf5\xf9\xbd\xff\xe6\xb3\ \x73\xef\xf7\xb4\xc1\x49\xe2\xf6\xc2\x24\xa1\x41\xd1\x82\xf9\x47\ \xec\xc4\x40\xde\x71\xc1\xa1\xb8\xf2\x04\xc0\x5f\xa0\x37\x93\x3d\ \x39\x17\x03\xfc\x19\xe1\xdf\x28\x26\xfc\xad\xe2\x7a\xe1\x19\x3d\ \xa1\xd6\x00\xe3\xd1\x67\xc0\x88\x92\x61\xf6\xbd\xb9\xe1\xb9\x99\ \xa0\x3b\x1f\x7d\xb3\xaf\xbf\xf5\xd1\x21\x54\xf0\xd7\x56\x0a\x6e\ \xf9\x6b\x93\x4b\xd7\x0b\xb9\x11\x70\x67\x03\xe1\xe1\xcf\xed\x4b\ \xf7\x0e\xc9\xbd\x5f\xf9\x5c\x95\x38\x38\x88\x34\x34\x88\x35\x35\ \xd0\x8f\xc4\x40\xde\x71\xc1\x91\x98\xf2\x23\x80\xbf\x00\x6f\x26\ \x2c\x29\x75\x75\x92\xba\x53\x0c\xf8\x27\xcb\x10\xfe\xde\x3e\xd3\ \x34\x5b\xee\x0f\x26\xfc\x5d\xb8\xb3\xb6\x83\xb5\xcd\xa0\x86\x3f\ \xad\x9e\x2b\x2b\x09\xd6\xe3\xa9\x7f\x0e\x65\x82\x3f\x1e\xdb\xb3\ \xff\xff\xd7\x57\xca\x2e\x5e\x2f\xfe\x96\x0e\xbe\xff\xec\xa0\xdc\ \xfb\xbd\xf2\x17\xcd\xc4\xc1\x41\x34\xa1\x41\xb4\x26\xc0\x79\x62\ \x20\xe7\xb8\xe0\x04\x63\x5c\x70\x4c\xee\xa8\x93\x92\xdf\x05\xf8\ \xfb\xf8\x66\x70\xc3\x06\x7d\xbd\x3f\xd9\xc9\x23\x7f\xee\x0f\xf0\ \xf7\x09\xfe\x26\x93\xaa\xf8\xf0\xe7\x78\x27\xec\x05\xac\xbd\xd4\ \xe3\xba\xd2\x91\x3f\xde\xd9\xdf\xf7\xd8\xed\xc3\x98\xe1\xaf\x8d\ \xad\x93\x06\xa0\x5f\xfd\x42\x71\xf9\x7a\x29\x35\x01\x6e\xc3\xff\ \xe4\x81\xa9\xec\x7b\x3b\xfc\x1e\xef\xba\x6e\x18\x55\x7a\x20\x4d\ \x6e\x00\xa9\x09\xe0\x97\x18\xe8\x66\x5c\x30\x71\xaf\x80\x5c\x3e\ \x40\x28\xd4\x72\x64\x50\xe1\x4f\x5c\xfd\x27\xea\x9b\x09\xc7\x95\ \xbb\x01\xfe\xc1\x87\x3f\x49\x77\xbe\xb2\xde\x9d\x2f\x1a\xac\xbd\ \xd2\x73\xf0\x18\xe1\x7b\x67\x8d\x40\xa3\xee\x3b\xdb\x31\xfc\xf5\ \x2b\x01\xd7\xff\xa9\xc9\xe5\xeb\xa5\xa5\xa0\x74\xd0\xed\xdc\x80\ \xa6\x11\x5d\x71\xc8\xa3\xee\x1b\x42\x9c\x1c\xc8\x12\x1a\xe4\x7d\ \x62\xa0\xca\x9c\x18\xc8\x33\x2e\x38\x1c\x53\xee\x08\x60\xaf\x00\ \x2d\xfa\x9f\x38\x24\xa8\x97\x78\xf0\x4f\x0e\xe6\x09\xff\x30\xc0\ \xdf\x73\xf8\xd7\x13\xdc\xf5\x8b\x09\x7f\x07\xf0\x0a\x2a\xac\xbd\ \xd2\x23\x80\xff\xd0\x74\x1a\xbd\xff\xfc\x59\xdc\xe0\xaf\x1f\xcf\ \xff\xe7\x6c\x74\xda\x60\xb7\xf7\x9c\x78\xd3\x75\xf0\x77\xbf\x96\ \x3b\xdf\x17\x6e\x8c\x44\x1a\x1f\xcc\x3a\xbf\x70\x4b\x0c\x24\x9d\ \x4f\x05\x89\x0b\xae\x8b\xc9\x03\x02\x06\xff\x6a\x22\x03\xa0\xeb\ \x27\xdc\x5b\xa4\x37\x73\xe2\x00\xe5\x0b\x61\x49\x5e\x0d\xf0\xe7\ \x0d\xff\xb4\xf7\xf0\xef\x1f\x14\xf8\x33\x2e\x5b\x97\x33\xac\xbd\ \xd0\xd3\x1d\xcb\xbe\xd9\x3f\xdf\xf8\xe7\x66\xd3\x98\x5f\xa7\xf0\ \xd7\xc6\xfc\xd1\x83\x3a\x5b\x07\xbb\x77\xfd\x15\x76\x1d\x74\xe3\ \xf3\xf6\xc8\x6d\x43\x0b\x56\x38\x4e\x1b\x92\xb6\x0d\x0e\x2a\x0e\ \x0c\xf2\x2d\x31\x30\x41\x9a\x18\xe8\x7f\x5c\x70\xd6\x00\xac\xe8\ \x93\x90\x3f\x1b\x10\xf8\x6b\xfd\x7e\xac\x0d\x40\xfe\x9b\x6b\xf3\ \x77\xff\xbd\x05\x7a\x33\xdd\x43\x31\xf5\x39\x72\xf8\x93\x2f\xfd\ \x03\xfc\xdd\x87\x3f\xe9\x5d\x7f\xa0\xeb\xf2\x2b\x15\xd6\x2e\xea\ \x5d\x7a\x99\x8a\x66\xbe\x78\x16\x51\xc8\x8f\x13\xf8\xeb\xf5\x46\ \xdd\x73\x36\x1a\x96\x4e\xba\x7c\xfd\xb5\x30\x67\x07\xd8\x7d\xde\ \xa6\x3e\x55\x78\xbc\x2e\xb8\x48\xb1\x0c\x0d\x2a\x98\x0f\x44\x48\ \x0c\x4c\x90\x26\x06\x72\x8c\x0b\x66\x8c\x0a\x0e\x49\xea\x53\x01\ \x80\x7f\xcf\x7c\xb7\xdf\x1e\x96\xd1\xff\xf9\x6f\xae\xc9\xdf\xfd\ \xf7\xd2\xf5\x16\xf6\xfd\xcd\x84\xa4\xe4\x79\x62\xc0\x3f\x09\xf0\ \x67\x85\x7f\x7f\xd1\xe1\x5f\x86\xbb\xf3\x8b\xf4\xfa\x14\x0d\x11\ \xe1\x7f\xf2\x59\x23\xd0\x6f\x7e\xa5\xa0\x19\xcf\x9e\x65\x0b\x6b\ \xde\xf0\xd7\xf4\xd6\x8e\xeb\x8f\x9e\xbf\x7b\x48\x2e\x52\xd7\xbd\ \xeb\x8f\x3e\x3b\xc0\xee\xf3\xd6\x6f\x60\x0b\xda\x34\xb1\x70\xa5\ \xe4\xce\xeb\x86\x5b\x86\x06\x95\x94\xfe\x06\x26\x31\x90\x73\x5c\ \x30\x83\x09\xc0\xfc\xa9\x6f\x68\xbe\x50\xe0\x5e\x01\x35\xf9\xd1\ \x69\x00\xec\x9c\xc2\x51\x3a\x03\xd0\x4b\x84\x37\x93\x3d\x51\xdf\ \xa8\x8b\xa9\x5b\x00\xfe\x29\x66\xf0\x8b\x01\x7f\x51\x13\xf9\x28\ \x77\xab\xfb\x7c\x67\xdd\xc7\x64\xe0\xba\xf8\xe2\xd1\xc7\xe2\xfb\ \xed\x86\x9d\x1e\xcf\xf7\xdb\x77\xe0\x39\xe8\x87\x3f\x4e\xa2\xc7\ \xee\x18\x8e\x56\x8c\x1d\x48\x05\x6b\xde\xf0\x2f\xd6\xfb\xe8\xc5\ \xb3\xd0\xed\xd7\x36\xa1\x61\x2d\x29\x97\xae\x3f\x7e\xb9\x01\xf8\ \x6e\xbf\xf8\xbd\x4d\x7c\x7c\xb0\x65\x68\x90\x71\x97\xcf\xa0\x24\ \x06\xba\x19\x17\xac\x12\xc6\x05\x37\x6f\x3e\x59\x3a\xfb\x44\x01\ \xe1\x5f\x9b\xe7\xb9\x66\x00\xaa\xed\x9e\x11\xd4\xe8\x0c\xc0\xd1\ \x82\xbc\x99\xee\xe1\xb8\x3c\x96\x17\xfc\xc3\x6e\xc3\x3f\x01\xf0\ \xa7\xbd\xeb\xf7\x07\xfe\x94\x75\xea\x3e\xdf\xa9\x3b\x85\xb5\xd7\ \x7a\x76\xef\xf7\xd4\x21\x2d\xe8\xbc\x0b\x93\xe8\xfa\x3f\x35\xa3\ \xd7\x1f\x3c\x1b\xad\x7a\x6b\x00\x17\x58\xf3\x86\x7f\xf1\xf7\xce\ \x7b\x65\x10\x7a\xfa\x5f\x43\xd1\x1f\xae\x92\x51\xf3\x39\xa9\xdc\ \x71\xe1\x96\x1b\xd0\xdf\x79\x6e\xc0\xbf\xfe\x5e\xda\x11\x71\xe3\ \x84\xfe\xe8\xa4\x81\x69\xd3\xd0\x20\x43\xf8\x53\x9a\x00\x57\x12\ \x03\x5d\x8e\x0b\x0e\x73\x8c\x0b\x0e\x4b\xca\x9b\x7d\xfa\x44\xaa\ \x04\x82\xbf\xc6\x70\xcd\x00\xf4\xb0\x5a\xfa\xaf\xce\x3b\x04\xcd\ \x00\xd4\x8a\xe2\x64\xb2\xf0\xbf\x88\x1c\xfe\x64\x77\xff\x00\x7f\ \x2f\xe1\x2f\x5a\x1c\xef\x39\xd4\x65\x7a\x6e\xc3\xdf\x6f\x58\xf3\ \xd4\xc3\x77\xf2\xa7\x0e\x1e\x81\x62\xc3\x5b\xd0\xf0\x11\x69\x74\ \xe1\xc5\x49\xf4\xc7\xab\x9a\xd1\xed\x7f\x1b\x8e\x1e\xbd\xfd\x6c\ \xf4\xfa\x03\x43\xd0\xac\x17\x07\xa1\x6d\x93\xdd\x87\xb5\x17\x7a\ \x78\xb9\x1d\xef\x51\x78\xe3\xc1\x21\xe8\x91\xdb\x86\xa1\x5b\xff\ \xd6\x84\x7e\xfd\x8b\x66\x74\xee\x8f\x14\x74\x96\x9a\x42\xdf\x3f\ \x3b\x8d\x4e\x19\xe4\x5d\x6e\xc0\x3b\x23\x07\x1b\xbe\xce\x8b\x2e\ \x51\x4c\xf4\x2c\xe0\x4f\x68\x02\x5c\x4d\x0c\xf4\x23\x2e\xd8\xc6\ \x00\x98\xf1\x08\x3f\xa6\x16\x04\xfe\xda\xea\xbd\x66\x00\x7a\x5a\ \xc1\xbf\x2a\xef\x0e\x8e\xd4\x3d\x2f\x10\x02\xfe\x75\x67\x36\x7d\ \x23\x1c\x53\xb6\x02\xfc\x01\xfe\x9e\xc6\xf1\xba\xf8\x0c\x5c\xb4\ \x3b\x75\x2f\xf4\x4e\x1a\x88\x0d\x41\x1a\xa9\xe7\xa6\xd0\xe5\x97\ \x29\xe8\xe6\xbf\x36\xa3\x91\xff\x1e\x9a\x2b\xe9\xc3\x61\x3c\x41\ \x84\xff\xfa\xb6\x01\x28\xf3\xbf\xc1\x39\xe8\x5f\xf3\x87\xe6\x5c\ \xf5\xc0\xd0\x96\x14\x3a\x7d\x70\x9a\x4f\x6e\x40\xe7\x67\x89\x1c\ \xfe\xf1\xe1\xa9\xdc\xae\x7f\xa3\xd7\xfb\xe8\x6d\x43\x2d\x3e\xbf\ \x69\xaa\xac\x00\xcf\x13\x03\xfd\x88\x0b\x36\x31\x01\xd6\x37\xa3\ \xf2\xa6\x48\xff\xa6\xaf\x08\x10\xb2\xd7\x5b\x67\x00\x6a\xec\x36\ \xfd\xe9\x0d\x40\x4f\xe2\x94\x20\x97\xdf\x0c\x5e\x4e\xc1\xcb\x2a\ \xbc\xe0\x1f\x66\x86\x7f\x12\xe0\x4f\x00\x7f\xda\x25\x7f\xef\xe0\ \xef\x6f\x28\x4f\xd0\x60\xed\xb5\x1e\x5e\x2d\xb8\xe8\x27\x49\x74\ \xef\xcd\xc3\xd1\xac\x97\x06\x09\x0b\x7f\xbc\x62\x31\xf9\xc9\xc1\ \xe8\xe6\xbf\x34\xa1\xd4\x79\xc9\xc3\xd7\x82\xab\xd7\x73\x61\xbb\ \x61\x92\xcf\xef\xd5\xbf\x69\x36\x7d\xbf\xf3\x46\x0f\xb4\x31\x13\ \xf4\x26\xc0\xd3\xc4\x40\x17\xe3\x82\x49\x1f\x05\x90\xad\x44\x2b\ \x2f\x08\x10\xb2\xa7\x19\x80\x5a\x4b\x9e\xe7\x7f\xa8\x4a\x57\x23\ \xd8\x5d\x94\x67\x18\xf5\x92\xfc\x13\x9a\x78\x46\x3b\x03\x00\xf0\ \xf7\x0a\xfe\xa2\x34\xe2\xf1\xb8\x71\x8e\xcd\xf3\x7b\x80\x3f\x99\ \x1e\x7e\xae\x7e\xef\x4d\xc3\xd1\xb2\x31\x03\x85\x80\xff\x87\xcf\ \x9f\x85\xae\xbd\xba\x39\x7b\x77\x9d\xf6\xe9\x7a\xee\x32\x01\x76\ \x9f\xd1\xb6\x47\x07\x5b\xbe\xdf\x11\x3f\x54\x6c\x56\x12\xc8\x4d\ \x80\x2f\x89\x81\x2e\xc6\x05\x73\xeb\x15\x80\x1f\x05\xc4\xd4\xb4\ \xcf\x09\xbb\xbd\x89\xf6\xf0\xe9\x0c\x40\xb5\x48\xf0\xef\xd7\x38\ \xf8\xdb\xd1\xb8\xb2\x29\x10\xf0\x4f\x38\x28\x75\x01\xf8\xfb\xd7\ \x88\x87\xf3\xee\x7c\xf1\xe0\x7a\x2e\xf1\xe8\x3b\xe0\x9c\x92\xe1\ \xb7\x99\xe8\x77\xd6\x08\xf4\xc7\xdf\x2a\xe8\x93\x51\x83\x7c\x81\ \xff\x84\xc7\x86\xa0\x0b\x2e\x4a\x0a\x62\x66\xd3\xb6\x55\x02\x52\ \xd6\xa0\x18\x2d\xff\xeb\xdf\x2f\x6e\x11\x6c\x3f\x1f\xd8\x9b\x00\ \xe7\x89\x81\x62\xc6\x05\x9b\x99\x80\x88\x2e\x2a\x98\x84\x47\x75\ \x92\xbc\x2e\x1a\x1b\xf6\x39\x1f\xe3\xf5\x7b\xd1\xc4\xfd\x56\x89\ \x04\x7f\xfc\xf3\xd1\x84\xfc\x74\xa5\xc0\x3f\x1a\x50\xf8\xb3\x2c\ \xf9\xbb\x3b\x59\x12\x66\xf1\x73\x2c\xcd\xf3\xfe\xce\xda\x0c\xd6\ \xe7\x32\x0f\x3e\x7a\xee\x99\x9d\x7e\x83\x46\xa0\xbf\xfe\xbe\x09\ \x2d\x7e\x6d\xa0\x27\xf0\xc7\x25\x7f\x17\xff\x44\x35\x6d\x44\xe4\ \xdf\x1e\x16\xeb\x2a\x81\x1b\xff\xdc\x64\xfb\x7e\xe7\xbf\x32\x10\ \x9d\x34\x80\x64\x3e\x20\x98\x5f\x18\x72\x49\x8c\x56\x01\x02\x11\ \x17\x2c\xe9\xe3\x82\x09\x7b\x05\x48\xca\xfd\xc2\xf7\x0a\x60\x05\ \xbf\x9b\x6f\xa6\x6f\xc3\xf0\x61\xe4\xf0\xb7\x36\x00\x11\x07\x8d\ \x23\x78\xc3\xbf\x31\xf5\x53\x74\xc5\x1f\x6e\x40\xb7\xdd\xf3\x28\ \x7a\xec\xd9\x51\xe8\x95\x31\xe3\xd1\xab\x63\xc7\xa3\x37\x5b\x27\ \x76\x8e\x31\x6d\x93\x50\x5b\xfb\x34\x34\x3e\xf3\x36\xf5\xc0\x3f\ \x87\x7f\x1e\xf4\x40\xaf\x1c\xf5\xc6\xb5\xbe\x8e\x16\xb4\xfd\xcc\ \x35\xf8\x77\x64\x06\xa2\x79\x99\x9b\xd0\x84\xcc\x94\x00\x1e\xbf\ \x69\x68\x63\x66\x04\xd1\xfb\xfd\xa0\xfd\x41\x5f\xcf\xef\xd8\x89\ \x53\xd0\x4b\xaf\x8f\x43\x0f\xfc\xef\x79\xf4\xb7\x7f\xfc\x1b\x9d\ \xff\xf3\xab\xd1\xf7\x87\x9d\xe7\x42\x5c\xb0\xca\x14\x17\xcc\xb3\ \x57\x40\x96\x5f\xdf\x87\x16\xc1\x14\x7a\x67\x0c\xea\xff\xe5\xec\ \x41\x5b\x50\x2e\xf0\x3f\x69\xd0\x39\x39\xe8\x3f\xf1\xfc\x2b\x30\ \x99\x83\x1e\xe8\x71\xd0\x9b\x93\xf9\x67\x0e\xd6\x3c\xe1\xbf\x25\ \xa3\xa0\xe9\x99\xe7\x02\x7b\xfc\xde\xcb\x3c\x45\xfc\x7e\xd7\x64\ \x2e\x11\xee\xfc\xbe\x31\x6e\x02\xfa\xcf\xc3\xff\x43\x17\xfc\xf2\ \x2f\xa8\xcf\x80\x16\x8e\x71\xc1\x49\xe6\x7e\x01\x3c\x7a\x05\x84\ \x63\xf2\xec\x7e\xfd\x2e\xed\x01\xf0\x27\xd4\x8b\x26\x9a\x6f\x2e\ \x07\xf8\xe3\xa5\xb2\x4b\x7f\x77\x7d\xf6\x2e\xbf\x0d\x26\x73\xd0\ \x03\x3d\xce\x7a\xef\x66\x81\xb7\x3d\x73\x36\x17\xf8\x6f\xc8\xfc\ \x00\x65\x32\x63\x03\x7d\xfc\x56\x66\x2e\xa7\x7a\xcc\xf1\x4e\xe6\ \x25\x61\xdf\xef\x0b\xaf\xbd\x85\x7e\xf2\x9b\x6b\x73\x73\xa8\x70\ \x71\xc1\x0c\x51\xc1\x21\x49\xfd\x23\xc0\x9f\x40\xef\xe4\xc6\xb3\ \x4f\x8a\x4a\xcd\x7b\xc9\x9f\xb1\x18\x1b\x00\xd7\xe1\x9f\xb0\x86\ \xbf\xa4\x5c\x84\x1e\x1e\xf9\x12\x4c\xe6\xa0\x07\x7a\x2e\xea\x4d\ \xcf\x3c\x6f\x6b\x02\xec\x60\xb8\x3e\x73\x1e\x9a\x9c\x19\x1f\xe8\ \xe3\x87\x61\x4e\xbb\xc1\x71\x45\xe6\x4a\xe1\xdf\xef\x63\xcf\x8c\ \x42\x83\x46\x5c\x66\x6b\x00\x3c\x8d\x0b\x66\x6a\x18\xd4\xbc\xeb\ \xe4\xfe\xc3\x23\x00\x7f\x1b\xbd\x70\x42\x19\xeb\x2f\xfc\x93\x8e\ \xe1\xaf\x5e\x7c\x15\x7a\x6d\xdc\x24\x98\xcc\x41\x0f\xf4\x3c\xd0\ \x9b\x91\x19\x99\x35\x01\x83\x98\xe0\xbf\x31\x93\x46\xed\x99\xb6\ \xc0\x1f\xbf\xe5\x99\x5f\x30\x94\x4a\x0e\x40\xd3\x32\xaf\x08\xff\ \x7e\xdf\x9a\x34\x05\xfd\xe4\xb7\xd7\x71\x88\x0b\xf6\xb7\x57\x40\ \x96\x6d\xa3\x01\xfe\x16\x7a\x7d\xa5\xe6\x11\x41\x87\xff\x39\x97\ \xfd\x3e\x77\xc1\xc2\x64\x0e\x7a\xa0\xe7\x9d\xde\xec\xcc\x3d\xd4\ \xf0\xc7\x2b\x07\xd3\x32\xa3\x03\x7f\xfc\x66\x64\x9e\x67\xce\x49\ \x58\x99\xf9\x59\x60\xde\xef\x5f\x6e\xb9\xbb\xe4\x91\x00\x7d\x5c\ \x70\x92\x29\x2e\x98\x57\xaf\x80\xfa\x06\xb9\x19\xe0\x6f\xa0\x87\ \x37\xfe\x45\x63\xca\x62\xf2\x25\x95\x52\x03\xe0\x37\xfc\x9b\x2f\ \xb8\x32\xb7\xbb\x15\x26\x73\xd0\x03\x3d\xef\xf5\x96\x66\x7e\x43\ \xb5\x0c\x3e\x2b\x73\x5f\x59\x1c\xbf\xb5\x99\x1f\x3b\x0a\x49\xc2\ \x7b\x29\x82\xf2\x7e\xaf\xbb\xfd\xbe\x4e\x13\xc0\x1e\x17\xec\x5f\ \xaf\x80\xba\x98\xfa\x09\xde\x10\x28\x02\xfc\x89\xab\xff\xbc\xd8\ \xbd\x18\x95\x9a\xaf\xf3\x17\xfe\x49\x82\xdd\xa4\xe6\xf0\x3f\xb3\ \xe9\x42\x34\xfa\xad\x09\x30\x99\x83\x1e\xe8\xf9\xa4\x37\x29\x33\ \x31\xb7\x93\x9f\x04\x86\x2b\x32\xbf\x28\x8b\xe3\x87\x4d\x8c\xd3\ \x84\x44\xbc\x01\x52\x5f\xf6\x28\xfa\xf5\x72\xd5\xb5\xb7\x9a\xe7\ \x06\x04\xa0\x57\x40\x48\x52\x7e\xe3\xf3\xcd\xb7\x16\xfd\x4f\x1c\ \x12\xd4\xcb\x4d\xf8\x9f\x3a\xa0\xe9\x84\x3a\x49\xdd\xc9\x6a\x00\ \xfc\x86\x3f\x76\xa4\xf7\x3c\xf6\x0c\x4c\xe6\xa0\x07\x7a\x3e\xeb\ \x7d\xd8\x7e\xbf\x2d\x0c\xb7\x67\x06\xa3\x29\x84\x3b\xfe\x45\x7e\ \xbf\x93\x33\x6d\x68\x4b\x7b\x13\x97\x84\xc4\x79\x99\x9b\x03\x73\ \xbd\x60\x8d\xe4\xc5\xbf\x36\x0f\x0d\xa2\x34\x01\x8e\x7a\x05\x18\ \x18\x00\x82\xb8\xe0\xed\xa1\x44\xcb\x57\x7d\x84\x7f\x35\x91\x01\ \xd0\xf5\x13\xee\xed\xe6\xee\xc5\xec\x01\x79\x22\xa8\xf0\xc7\xe3\ \x47\x3f\xfb\x13\x4c\xbe\xa0\x07\x7a\x82\xe8\x2d\x69\xfd\x91\x25\ \x0c\xe7\x67\xfe\x5e\x16\xef\x77\x69\xfb\xaf\xb8\xc5\x23\xe3\x4d\ \x94\x53\xdb\x47\x05\xe6\x7a\x79\x76\xd4\xeb\xe8\x7b\x83\xcf\x75\ \x18\x17\xec\x63\xaf\x80\xb8\xfa\x80\x4f\xf0\xd7\xfa\xfd\x58\x1b\ \x80\xfc\x37\xd7\xe6\xef\xfe\x7b\xbb\x05\xff\x90\x94\xec\x97\x3d\ \x20\x87\xfc\x83\x7f\x92\xac\x8e\xd4\xe2\xee\xff\xb9\xd1\x63\x60\ \xf2\x05\x3d\xd0\x13\x44\x6f\x6a\xeb\x03\xa6\x30\xdc\x9e\x19\x92\ \xbd\x73\x9e\x10\xf8\xf7\x3b\xab\xfd\x3f\xdc\x7b\x23\x2c\x6f\x3b\ \x17\x8d\x6d\x1d\x17\x98\xeb\xe5\xcf\x37\xfd\x93\x39\x2a\xd8\xff\ \x5e\x01\xf2\xc1\x13\x13\x6a\xc4\x63\xf8\xf7\xcc\x77\xfb\xed\x61\ \x19\xfd\x9f\xff\xe6\x9a\xfc\xdd\x7f\x2f\x5d\x6f\x61\xae\xf0\xc7\ \xad\x7e\xeb\x62\xca\x04\x96\xbb\xff\x88\x41\xa9\x86\xd7\xf0\x37\ \xbb\xfb\x87\xc9\x1c\xf4\x40\xcf\x5f\xbd\xe5\x6d\xe7\x18\xc2\x70\ \x71\xe6\xaf\x81\x7f\xbf\x53\xdb\x47\xa3\xb5\x6d\x43\x5c\x69\x8c\ \xf4\x71\xeb\x6f\x03\x73\xbd\xbc\x35\x71\x0a\x8a\xc9\x17\x31\x99\ \x00\x27\xbd\x02\x8c\x0c\x40\x44\xd2\xf7\x0a\x20\x0b\xb1\xab\x93\ \x94\xb1\x1e\xee\xb9\xab\xc9\x8f\x4e\x03\x60\xe7\x14\x8e\xd2\x19\ \x80\x5e\x6e\x94\x2e\x64\x5d\x50\x53\x90\xe1\x8f\xc7\xbd\x45\xcf\ \xfe\x61\xf2\x05\x3d\xd0\xf3\x5f\x6f\x76\xfb\x5d\x86\xb0\x9b\x9a\ \x79\x35\xd0\xef\x77\x52\xfb\x78\xb4\xb2\x2d\xe5\x6a\x57\xc4\xf7\ \xda\x6e\x0f\xcc\xf5\xf2\xe7\x5b\xee\xa6\xee\x17\x50\x3a\xdf\xfb\ \xd8\x2b\x20\x9e\x1c\xec\x01\xfc\x6b\xf3\x3c\xd7\x0c\x40\xb5\xdd\ \x33\x82\x1a\x9d\x01\x38\xda\x0d\xf8\xe3\x52\x88\x90\xa4\xce\xa3\ \x35\x00\x39\xa7\xc5\x05\xfe\x49\xb2\x04\x29\x8b\x8b\xeb\xf4\x61\ \x3f\x2a\xb8\xb0\x61\xf2\x05\x3d\xd0\x13\x43\x0f\x27\xfb\x75\x14\ \x85\x03\xad\xcd\x9c\x1f\xe8\xf7\x3b\xa1\x3d\x83\x16\xb7\x5d\xec\ \x7a\x4b\xe4\xed\xed\x03\xd1\x7b\x99\x27\x03\x71\xbd\x8c\x1e\x3b\ \x3e\xd7\x1d\x51\x88\x5e\x01\x92\xbe\x57\x00\x29\xd7\x94\x39\x89\ \x44\xa2\xda\x45\xf8\x6b\x0c\xd7\x0c\x40\x0f\xab\xa5\xff\xea\xbc\ \x43\xd0\x0c\x40\xad\x5b\xa1\x05\x21\x49\xb9\x94\x07\xfc\xc3\x3e\ \xc1\x1f\x8f\xf3\x7f\xf9\x17\x77\x2f\xfe\xac\xc6\xa4\x37\xde\x44\ \xef\x3d\xff\x2c\xfa\xe0\x99\x91\x68\xc6\x4b\x2f\xa1\xc9\x13\xdb\ \x3d\x98\x8c\xa6\xe5\x72\xd1\x71\xc2\x1a\x9e\x08\xa6\x67\x5e\x40\ \x13\x33\x93\xdc\xdf\xdd\xdb\x36\x11\x3d\xd9\xf6\x26\xba\x6d\xfc\ \x8b\xe8\xc6\xf1\xcf\xa3\x7f\x4f\x78\x05\xbd\xda\xde\x0e\x30\x04\ \x3d\x26\xbd\x95\x99\x2b\x0a\x80\xf7\x49\xe6\x8e\xc0\xbe\xdf\xf1\ \xed\x53\xd1\x82\xb6\x9f\xbb\x0e\x7f\x4d\x6f\x5b\x66\x70\x60\x1a\ \x23\x29\x3f\xfe\x95\x2f\xbd\x02\x8c\x56\xa2\x99\xfa\x04\x24\xd4\ \x8b\x5c\x82\xbf\xb6\x7a\xaf\x19\x80\x9e\x56\xf0\xaf\xca\xbb\x83\ \x23\x75\xcf\x0b\x5c\x81\xff\xe9\xa7\xa7\x8f\xca\xbe\xf1\x55\x34\ \x06\x40\x34\xf8\xe3\x71\xdd\x1d\xf7\xb9\x72\xf1\x4f\x19\x3f\x09\ \x2d\xfe\xf7\x1d\x68\xd5\xf9\x29\xb4\x72\x48\x2c\x37\x56\x65\xc7\ \xa6\xec\xd8\x7c\xb6\x84\x36\x5f\x75\x05\x5a\x34\xf2\x29\x34\x31\ \x3b\x29\xf0\xfc\x30\xe1\xcd\x51\xf3\x33\x37\xa1\x8d\x99\x54\xe9\ \x84\x91\x19\x90\xeb\x20\xf6\x61\xe6\xc1\xdc\x64\xc4\xf3\xfd\x8e\ \x6a\x9f\x84\x2e\x98\xf4\x20\xfa\xfa\xe4\x6b\x50\x75\xfb\xef\x0e\ \x8f\xcc\xef\x50\xf7\xe9\x57\xa3\xee\x33\xfe\x88\xfa\xbc\x73\x3b\ \xfa\xdb\xd4\x17\x51\x5b\x66\x1a\xc0\x10\xf4\x88\xf5\xe6\x64\xfe\ \x5d\x70\x0d\x4f\xc9\xbc\x1e\x58\xf8\xcf\x6b\xfb\xb5\x67\xf0\xd7\ \xc6\xb6\xcc\xd0\xac\x09\x78\x51\xf8\xeb\xe5\x0f\xd7\xdf\x65\x3b\ \x57\xfb\xd3\x2b\x80\x78\x15\x60\xd9\x19\x83\x06\x7c\xd1\x85\x52\ \xfb\xde\x3a\x03\x50\x63\xb7\xe9\x4f\x6f\x00\x7a\x12\xa7\x04\x31\ \x6c\x60\x08\xc7\xd5\xdf\x51\xc3\x5f\x32\x3e\xd8\x6c\x5d\x9e\x08\ \x2e\x06\x02\x03\x70\xff\x13\xcf\x71\xbf\xf8\x17\x66\xc1\xbe\x3a\ \x75\x76\x27\xf8\x0b\xe0\x5f\x34\xb6\x5c\xf9\x53\xf4\xde\xb8\x56\ \x2e\x1f\xa6\x0f\x33\x0f\x65\x3f\xf0\xc3\x88\x26\x8f\x25\x6d\xe7\ \xa3\xf1\xad\x2f\x73\x79\xbf\xd7\x4c\x79\x11\x7d\x36\xf3\xa7\x2e\ \xf0\xeb\xe0\xdf\x6d\x46\xe1\x08\x4d\xff\x07\x7a\x6a\x4a\x1b\xc0\ \x10\xf4\x88\xf4\xa6\x64\xde\xe8\xbc\x6e\xb1\xa9\x0d\xea\xb2\xff\ \x82\xb6\x9f\x79\x0e\xff\xae\xaa\x89\xb3\xd1\xbb\x99\x91\x42\x5f\ \x2f\xf7\x3c\x32\xd2\x1a\xfe\x5e\xf7\x0a\xa0\x5c\x05\xc0\x1b\x06\ \xeb\x13\xcd\x7f\x74\xa1\xd4\x5e\x33\x00\xb5\x96\x3c\xcf\xff\x50\ \x95\xae\x46\xd0\x35\xf8\xf7\x1b\xd8\x72\x4c\x58\x92\x37\x05\x1d\ \xfe\x78\xe0\x96\x95\x3c\x2f\xfe\x15\x0f\xdc\x9b\x83\x3d\x09\xfc\ \x3b\x4d\xc0\x88\x61\x68\xe6\x1b\x6f\x38\xfa\x30\x7d\x92\xb9\x8d\ \x7a\xf2\x58\xdd\x3a\x1c\x4d\x6c\x7d\xc6\xd1\xfb\xbd\x74\xda\x93\ \x39\xd8\x93\xc0\x5f\x1b\xc7\x4c\xbf\x06\x3d\x30\x65\x2c\xc0\x10\ \xf4\x88\xf4\x36\x67\xd4\xdc\xb5\xfb\x69\xf6\xba\x0a\xe2\x86\x3f\ \x2f\x9e\xf9\xdb\xe9\x6d\xcf\x9c\x85\x66\xe2\x95\x3f\x41\x8f\x1f\ \x2e\xc3\xb6\x84\xbf\xcb\xbd\x02\x58\xfb\x04\xe8\x43\x83\x22\x52\ \xf3\x86\xd3\x1a\xce\xfa\x06\xe7\x6a\xbb\xde\x44\x7b\xf8\x74\x06\ \xa0\xda\x4d\xf8\xe7\xee\xfe\x25\xe5\x7a\xd2\xbb\xff\x82\xd2\x0a\ \x03\xa7\xc5\xd6\xdf\x99\x0f\xfc\xf1\x18\xf5\xe6\x38\x6e\x17\xff\ \xa2\xa7\xff\x47\x0d\xff\x4e\x13\x70\x6e\x33\x7a\x7b\xfc\x44\xa6\ \x0f\xd3\xcc\xcc\x03\xcc\x93\xc7\xea\xb6\x66\x34\xb9\xfd\x2d\xa6\ \xf7\xfb\x97\xa9\x2f\x50\xc3\x5f\x1b\x9f\x9f\x7e\x2d\x7a\x61\xca\ \x44\x80\x21\xe8\xd9\xea\xad\xc8\xfc\x32\x77\xfd\xe2\xc7\x01\xc1\ \x2a\xf5\x7b\xc5\xf5\xdd\xfe\xb4\x7a\xf3\x33\xd7\xe7\xf6\x07\x89\ \x76\xfc\xc6\x4c\x68\xb7\x87\x3f\x71\xaf\x00\xff\x1a\x05\x45\x25\ \xf9\x46\xce\x8f\xdd\x7b\xd1\xc4\xfd\x56\xb9\x0d\xff\xbe\xb1\xf4\ \x97\xea\x62\xea\x0e\x61\xe1\x4f\x61\x00\xf0\xc5\xf4\xc6\xb8\x09\ \x5c\x2e\xfe\x69\x6d\x13\xd0\xea\xe4\x60\x26\xf8\x6b\x63\xd3\x35\ \x57\x53\x7f\x98\x70\x1b\x54\xfc\x9c\xcf\xc9\xe4\xb1\x9c\xb0\xa7\ \xb8\x7e\xbc\xd8\x3e\x11\xf5\x6e\xff\x13\x13\xfc\xb5\x91\x78\xe7\ \xdf\x00\x43\xd0\xb3\xfd\xd9\x79\x99\x7f\xe4\xae\x61\xfd\xb3\xec\ \x20\x84\xfc\xb8\x55\xe7\xef\x54\x6f\x55\xe6\xd2\x9c\xe9\x17\xe9\ \xf8\xe1\xef\x23\x82\xbf\x8b\xbd\x02\x68\x4d\x80\x49\x62\xe0\xf6\ \xd0\xe9\xe9\xcf\x7b\xde\x28\x88\x15\xfc\xb4\xbf\x3c\x1c\x57\xfe\ \x41\xfa\x4c\x24\xaa\x33\x00\x22\xc2\x1f\x0f\x5e\x17\xff\xa7\x77\ \xdc\xe2\x08\xfe\xda\x98\xf9\xe6\x9b\x54\x1f\xa6\x05\x99\xeb\xb8\ \x4c\x1e\x6f\x67\x46\x51\xbd\xdf\x73\x26\xfd\xd7\x11\xfc\xb5\xf1\ \xd0\x94\xb1\x00\x43\xd0\xb3\x1c\x1f\x64\x1e\xc9\x5d\xa3\x13\x33\ \x93\x03\x91\xed\xbf\x8c\x63\xbc\x2f\x6f\xf8\x6b\x7a\x6b\xda\x86\ \xa3\xb7\x5b\xff\x2b\xd4\xf1\x23\x82\xbf\xd7\xbd\x02\x98\x1a\x05\ \xa9\x37\x94\x65\x8b\xe0\xe3\x13\xc3\xbf\x48\x72\xf7\x6f\x07\xff\ \x30\x13\xfc\x55\x82\x0d\x20\x74\xf0\xd7\x0c\x80\xd3\x8b\x7f\x6c\ \xeb\x04\xb4\xea\xdc\x26\xc7\xf0\xc7\x63\xed\x9d\xb7\x10\x7f\x98\ \x26\x64\xa6\xa1\x2d\x99\x66\x2e\x93\xc7\xc2\xcc\xdf\xa8\x4a\xfd\ \xbe\xd8\xfe\x67\xc7\xf0\xc7\x23\x3d\xed\x41\x80\x21\xe8\x59\x2f\ \xa5\x67\x5e\x45\x9b\x33\x72\x20\xba\xfa\x6d\x69\x1f\x2e\x3c\xfc\ \xf5\x7a\xf3\x5b\xaf\x40\x6d\x6d\xaf\x09\x71\xfc\x88\xe1\x4f\x69\ \x00\x68\xe2\x82\x49\x56\x01\x08\x7a\x05\x6c\x8b\xc6\x86\x7d\xae\ \xac\xe0\x7f\xf8\xd9\xbf\x7a\x33\x19\xfc\x95\xc2\x44\x25\x41\xe1\ \x8f\x07\x8f\xc9\x63\xda\x2b\xa3\xb9\xc0\x1f\xff\xdc\xea\xcb\xce\ \x27\xfe\x30\x4d\xcb\x8c\xe6\x36\x79\xac\xcb\xfc\x90\xf8\xfd\x3e\ \x90\x9d\x30\x78\xc0\x1f\xff\xdc\xf1\x93\xaf\x07\x18\x82\x9e\xe5\ \x98\x98\x69\x47\x6b\x33\x17\x09\xfb\xfa\x70\xad\xfd\x9a\xcc\x85\ \xae\xc3\xda\x2d\xbd\x6d\xed\x43\x72\xa5\xc3\x93\x32\xed\xbe\x5e\ \x2f\xc4\xf0\x77\xb9\x57\x00\xa7\x46\x41\x7f\x2f\x2b\xf8\x9f\x38\ \x40\xf9\x42\x38\x26\x77\x38\x85\x7f\x98\xb9\x4e\x93\x3f\xfc\xa3\ \xd9\xbf\xe3\x31\x79\xcc\x7a\xfa\x7f\x5c\xe0\x8f\x7f\x7e\x95\x32\ \x88\xf8\xc3\xf4\x41\xe6\x31\x8e\xa5\x42\x43\x88\xdf\xef\x75\xe3\ \x9f\xe5\x02\x7f\xfc\xf3\x9f\x99\x7c\x35\xc0\x10\xf4\x6c\xc7\xe2\ \xf6\x3f\x0b\xf7\xfa\xde\xc9\xbc\x80\x56\x64\x7e\xe1\x29\xac\xdd\ \xd4\xdb\x92\x51\xd0\xc7\x99\x3b\x73\x86\xcb\x8f\xeb\x85\x0a\xfe\ \xc4\xbd\x02\xfc\x6a\x14\x64\xbd\x0a\x10\x28\xf8\xe7\x52\xff\xe2\ \xca\x4d\x64\xf0\x57\x0a\xe3\x14\xbd\x80\x7f\x82\x0d\xfe\x91\x86\ \x34\x97\xc9\x63\xce\x13\x8f\x72\x81\x7f\x6e\x15\xe1\xec\x38\xf1\ \x87\x09\x97\xf5\xf0\x9b\x3c\x06\x10\xbf\xdf\x3f\x8f\x1f\xc9\x05\ \xfe\xd8\x44\xf4\x68\xff\x3d\xc0\x10\xf4\x6c\xf5\xde\x6d\xbb\x5d\ \x90\xd7\x37\x2d\x97\xac\xb9\x2a\x73\x99\xaf\xb0\x76\x53\x6f\x4b\ \xa6\x09\xcd\xcb\xdc\x92\xdb\x60\xec\xe5\xf5\x12\x2d\x9a\xa7\x89\ \xf6\x73\x25\x48\x7a\x05\xd0\x77\x99\xe5\xd1\x28\x28\x1c\x57\xaf\ \x2b\x0b\xf8\x1f\xae\xfb\x57\xb7\x39\x85\x7f\x98\x31\xa4\x81\x3f\ \xfc\x93\x39\xf8\xb3\x18\x00\xa3\x8b\x7f\xe6\xc8\xa7\xf9\xc0\x1f\ \xff\xff\xf4\xd9\xc4\x1f\xa6\xf7\xb3\x13\x11\xaf\xc9\x63\x6b\x66\ \x18\xf1\xfb\xbd\x71\xc2\x0b\x5c\xe0\x8f\xc7\x67\xdb\xff\x04\x30\ \x04\x3d\x5b\xbd\x4c\xeb\xa3\xbe\xbe\xbe\xf6\xcc\x5b\xe8\x93\xcc\ \xed\x68\x63\xa6\x45\x28\x58\xbb\xa9\xb7\x3d\x33\x08\x2d\xcb\xfc\ \x1a\xbd\x9b\x79\x2a\xb7\xdf\xc8\xed\xeb\x45\x6f\x00\x68\x4a\xb9\ \x45\x6d\x14\x54\x17\x53\xb7\x9c\x70\x46\xf3\x67\x02\x0d\xff\xc3\ \x99\xff\xea\xd5\xa4\x75\x90\x11\x7d\xd7\x3f\x2f\xe0\x9f\x60\x87\ \x3f\xad\x01\x30\xbb\xf8\xa7\x8f\x6b\xe3\x02\xff\x9c\x01\xf8\xd5\ \xa5\xc4\x1f\xa6\x29\x99\xb1\xdc\x3e\xec\x6b\x32\x17\x13\xbf\xdf\ \x67\x32\xe3\xb9\xc0\x1f\x8f\xfa\xf6\x5b\x00\x86\xa0\x67\xab\x37\ \xa1\xf5\x79\xcf\x5f\x5f\x7b\x66\x1c\x9a\x9d\xb9\x27\x7b\xb7\xff\ \xd3\x5c\x8c\xb6\xc8\xb0\x76\x5b\x6f\x73\x46\x41\x0b\xda\xff\x86\ \xda\xdb\x9e\x44\x63\x5a\x27\xb8\x72\xbd\x1c\x36\x00\x74\x39\x2e\ \xc5\x06\xc0\x3c\x24\xce\x9f\x46\x41\x21\x49\xf9\x8d\x9b\xf0\x27\ \xae\xfe\x63\xfd\xe5\xc7\x26\x2e\xac\xc9\x3a\x99\xb5\x4e\xe1\x1f\ \x66\x82\xbf\xea\x02\xfc\x53\x9d\xf0\x8f\x52\x18\x00\xbb\xc9\x63\ \xcb\x25\xe7\x39\x87\x3f\xfe\xef\x7d\x77\x53\x7d\x88\x36\x64\xce\ \xe1\xf2\x61\xc7\xb5\xd6\x34\xef\xf7\xff\xa6\xdf\xe8\x18\xfe\xf8\ \xcf\x97\x4c\x7b\x1c\x60\x08\x7a\xb6\x7a\xe3\x5a\xdf\x74\xfd\xf5\ \x4d\xcc\x64\x72\x77\xbb\xf3\x32\x37\xe4\xba\x0e\xee\x30\x80\x7e\ \x25\xc2\xbf\x34\x41\x74\x18\x9a\xdb\xfa\x2b\x34\xa3\xed\x9f\x68\ \x4a\xfb\x1b\xdc\xce\x47\xb4\x73\x6e\x66\x33\x01\x22\x36\x0a\x0a\ \xc5\x95\x95\xa1\x50\xcb\x91\x2e\x34\x0a\xd2\xa2\xff\x89\x43\x82\ \x7a\xb1\xfc\x72\xb3\x8e\x7f\xc6\xbb\x21\x93\xcc\x77\xff\x4c\xf0\ \x4f\xb0\xc3\x9f\xc6\x00\x90\x4c\x1e\xcb\x1f\x7d\xd0\x31\xfc\x37\ \x35\x35\xa2\x77\xda\x26\x50\x7d\x90\xe6\x64\xee\x72\xfc\x61\xc7\ \x4b\x7d\x99\xec\xdd\x0e\xcd\xfb\xfd\xc5\xb4\xa7\x1d\xc3\xff\xc8\ \x77\xfe\x84\x9e\x2f\x4a\x03\x04\x18\x82\x9e\x91\xde\xd8\xb6\x56\ \xce\x7a\xe3\xd1\xd4\xf6\x51\xb9\xd2\xbd\xc5\x99\xbf\x64\x81\xff\ \xe3\xdc\xe7\xa0\xdc\x60\xed\x85\xde\xa6\x8c\x9a\x0b\x13\x9b\x9b\ \xbd\x89\xc0\x06\xaa\x3d\xc3\xd6\xdb\x44\x3f\x37\xd3\x1a\x00\xcf\ \x1a\x05\x31\x74\x0a\x0c\x27\xd4\x8b\x5d\x80\x7f\x35\x91\x01\xd0\ \xf5\x13\xee\x4d\xfb\xcb\x5b\x5a\x5a\xaa\xc2\x31\x75\xa1\x53\xf8\ \x87\x05\x85\x3f\x89\x01\x20\x9d\xdc\x26\x4d\x9e\x8a\xb6\x5c\x7c\ \x0e\x3b\xfc\xb3\x63\xcd\xdd\x77\x30\x34\x1a\x69\x47\x2b\xda\xd2\ \x0e\xe3\x41\xff\x4e\xfd\x7e\xc7\x64\xa6\xa2\xaf\x4f\xbf\x81\x19\ \xfe\xf8\xef\xcf\x9b\xf6\x08\xc0\x10\xf4\x08\xf5\xa6\x52\xe8\x4c\ \x43\x93\x33\xe3\x73\xf9\x01\xd3\xdb\x47\x66\x4d\xf5\xbd\xe8\xfd\ \xd6\x9b\xd1\x9c\xd6\xab\xd1\xfc\xd6\xcb\x72\x9f\x97\xed\xed\x03\ \x2a\x12\xd6\x5e\xe9\xe1\xa6\x64\xd8\x54\x2d\xcd\xfc\x36\x3b\xbf\ \xdc\x80\x66\x67\xee\xce\xed\x59\x7a\xbb\xfd\x45\x34\xbe\xed\x55\ \x34\xb6\xb5\xb5\xe4\x7a\x89\x16\x18\x80\x34\x75\xa8\x1b\x51\xa9\ \xb8\x3f\x8d\x82\x16\xc4\xe3\x83\x3f\xc7\x11\xfe\x5a\xbf\x1f\x6b\ \x03\x90\xff\xe6\xda\xfc\xdd\x7f\x6f\xda\x5f\x1e\x4a\xa8\x2d\x84\ \xf1\x87\xcc\x77\xff\xe6\x75\x9a\xbc\xe1\x9f\x2a\x81\xbf\x9d\x01\ \xa0\x9d\xdc\x3e\x7a\xfd\x75\xb4\xa5\x79\x00\x13\xfc\xb7\xfc\xf2\ \x27\x68\x32\xd5\x24\xd7\xf5\xfa\x26\xb5\x8e\x44\x6b\x5b\x07\x33\ \x7d\xd8\xf1\x87\x74\x62\x66\x0a\xd3\xfb\xfd\xef\x94\x31\xa8\xe7\ \x8c\x3f\x33\xc1\x3f\x34\xfd\x56\x34\x76\xca\x54\x80\x21\xe8\x31\ \xe9\xe1\x4d\x69\xb8\x6e\x1d\xb7\xbf\xc6\x1b\xf4\x70\x26\x06\xbe\ \xfb\x9c\x99\xb9\x1f\x7d\x9c\xb9\x03\x2d\xc8\x9a\xda\xc5\xed\xbf\ \x47\x0b\xda\xae\x40\x4b\x5a\x7f\x88\x56\xb5\x0e\x07\x58\xfb\xa4\ \x87\x1b\x11\x6d\xcc\x8c\x40\xab\xda\x7f\x8a\xe6\xb7\xfd\x32\x6b\ \xc4\xfe\x88\x3e\x6c\xbd\x1e\xcd\x68\xbd\x13\xbd\xdd\xf6\x20\x7a\ \xa7\xfd\x79\x34\x25\x33\x06\x49\xc3\x52\xe8\xf4\xc1\x29\x74\xd2\ \x00\x72\x03\x50\x32\xdf\x7b\xd1\x28\x88\xc2\x00\x68\xbc\xac\x8f\ \x0f\x3f\x8f\x13\xfc\x7b\xe6\xbb\xfd\xf6\xb0\x8c\xfe\xcf\x7f\x73\ \x4d\xfe\xee\xbf\x97\xae\xb7\x30\xf1\x2f\x0f\xc5\xd4\x69\x4e\xe1\ \x1f\x76\x03\xfe\x09\x76\xf8\x93\x1a\x00\xd6\xc9\x6d\xee\xa8\x97\ \xd1\x16\xf5\x2c\x3a\xf8\xff\xe2\x12\x34\x6d\xfc\x24\x47\x93\x25\ \xde\x25\xbd\xae\xed\x6c\x4a\xf8\x5f\x98\xbb\x53\x72\xf2\x7e\x6f\ \x9f\xfa\x2a\xaa\x9d\xf1\x17\x2a\xf8\xd7\xbd\xf3\x0f\x34\x2a\x1f\ \xeb\x0a\x30\x04\x3d\xef\x1e\x23\xb4\xa1\x29\xed\xaf\xe6\xa2\x85\ \xf1\x72\x35\xbe\x3b\x5d\x9f\xf9\x81\xe1\x06\x3f\x80\x3f\xbd\xde\ \xd6\x4c\x53\xae\x3c\x72\x61\xe6\x9a\xdc\xe6\x49\x1c\x90\xa4\x95\ \x12\x92\x9c\x5f\x6d\x4e\x26\x5d\x05\x60\x6b\x14\x94\xf2\xa9\x51\ \x90\x3c\x95\x43\x97\xc0\x9a\xfc\xe8\x34\x00\x76\x4e\xe1\x28\x9d\ \x01\xe8\x45\x05\xff\xb8\x72\x2a\x69\xf6\x31\xcb\xdd\xbf\x75\x42\ \x13\x6f\xf8\x1b\xdf\xfd\x9b\x19\x00\xa7\x93\xd1\xfb\x63\xc7\xa1\ \xcd\x57\x5d\x61\x0f\xff\xe1\x0d\x68\xed\xbf\x6e\xcb\x3d\x3e\xe0\ \x31\x59\x4e\x69\x7f\x0d\xad\xc9\x5c\x62\xff\xe1\xce\x0c\xca\xde\ \x21\x5d\x9b\xdb\xf4\xc4\xe3\xfd\x3e\x39\xa5\x15\xf5\x79\xe7\x76\ \x5b\xf8\xf7\x98\xfe\x27\x74\xce\xdb\x0f\xe7\x1e\x1f\x00\xbc\x40\ \x4f\x14\x3d\xbc\x92\x80\x61\x35\x37\x73\x1b\x5a\x99\xb9\x3c\x7b\ \xc7\x7a\x36\xc0\x9f\x40\x6f\x43\xe6\x5c\xb4\x24\xf3\x67\xf4\x61\ \xe6\xc1\xdc\x1d\xbc\xd3\xf3\xa1\x9f\x97\xed\x0c\x80\xe5\x7c\xef\ \x45\xa3\x20\x1b\x03\x60\xc4\xcb\xba\xb8\x72\x8a\x03\xf8\xd7\xe6\ \x79\xae\x19\x80\x6a\xbb\x67\x04\x35\x3a\x03\x70\x34\xad\xf3\x08\ \xc7\x94\xa7\x9d\xc2\x3f\xec\x06\xfc\x13\xec\xf0\x27\x31\x00\xdc\ \x26\xa3\xec\xf7\x7f\xf2\xf2\xcb\x68\xfd\x0d\x7f\x45\xab\x2f\x48\ \xe5\x02\x7e\x72\xe0\x6f\xea\x8f\x56\x5d\xf1\x63\xb4\xea\xee\x3b\ \xd1\x8c\x71\xe3\x5d\x98\xdc\xa6\xa1\x77\x33\x4f\xe7\x7a\xa7\x6f\ \xcc\xa4\x3a\x77\x32\xe3\x65\xb8\x75\x99\x0b\x72\x3b\x9c\x71\xf9\ \x20\xef\xf7\xdb\x96\xfd\xbd\x77\x4e\x79\x15\x0d\x9e\x76\x0f\xfa\ \xff\xda\xaf\xc9\x05\xfc\x60\xf0\xd7\xb6\xff\x01\xd5\xb5\xdf\x88\ \xce\x9f\xfa\x08\x7a\x66\xca\x04\x80\x17\xe8\x09\xaf\x37\x21\x6b\ \x50\x67\x64\x9e\xc9\xde\xc9\x5e\x8b\x36\xb4\x8f\x00\xf8\xe7\xf5\ \xb6\x67\x06\xa3\x15\x99\x9f\x67\xef\xee\xff\x93\x7b\xec\xc2\xfb\ \x7c\x18\x1b\x80\x34\xfd\x7c\xef\x42\xa3\xa0\x30\x87\x46\x41\xd9\ \x9b\xea\x27\x18\xe1\xaf\x31\x5c\x33\x00\x3d\xac\x96\xfe\xab\xf3\ \x0e\x41\x33\x00\xb5\xb4\xf0\xef\xd3\x3f\xfd\xf5\xba\x98\xba\x9f\ \xac\xf1\x01\xdd\xdd\xbf\xfd\xc1\xf6\x0e\xfe\xc5\x06\xc0\xcd\xc9\ \x68\xec\xb8\x09\x68\xdc\x5b\xad\x68\x4c\xf6\xff\x7b\x39\xb9\xe1\ \xc9\xec\x70\xc6\xf7\x34\x4f\x27\xdf\xd7\x5a\x27\xa0\x51\xad\x6d\ \xb9\xc6\x41\x00\x1b\xd0\x0b\xb2\xde\xc4\xd6\x67\xd0\x47\xad\x7f\ \x41\x2b\x5b\xe5\x8a\x83\xff\xfa\xb6\x01\x68\x45\xfb\x65\x68\x56\ \xe6\xbf\x9d\xdd\x18\xdd\x3a\x1f\xc5\x73\xb3\x91\x09\x20\x8e\x0b\ \xf6\xa2\x51\x90\x81\x01\xb0\xe2\x65\x9d\x24\xef\x0b\x25\x5a\xbe\ \x4a\x09\x7f\x6d\xf5\x5e\x33\x00\x3d\xad\xe0\x5f\x95\x77\x07\x47\ \xea\x9e\x17\x50\x3f\x73\xd0\x62\x7f\xc9\x1a\x1f\x90\xdf\xfd\x3b\ \x86\x7f\x82\x16\xfe\xe4\x06\x00\x26\x4b\xd0\x03\x3d\xd0\xb3\xd6\ \x9b\x88\x3e\x68\x7f\x38\x17\x0c\xb4\x23\x33\xa0\xac\xe1\xbf\xaa\ \xb5\x09\xcd\x6a\xbb\x06\x65\xda\xc7\x78\x76\x3e\xec\x0c\x80\xdf\ \x8d\x82\xac\x57\x01\x48\x79\xa9\x5c\x4f\x99\xdb\xd3\x5b\x67\x00\ \x6a\xec\x36\xfd\xe9\x0d\x40\x4f\xe2\x94\xa0\xa2\xe0\x9f\x70\x4c\ \xdd\x48\x05\x7f\x89\x07\xfc\x93\x9e\xc3\x5f\x33\x00\x30\xb9\x81\ \x1e\xe8\x81\x1e\x8d\xde\xdb\x99\x57\x72\x31\xb9\xe5\xb6\x81\x70\ \x79\x6b\x12\xbd\xdb\x7a\x67\x2e\x27\xc1\xeb\xf3\x61\x34\x3f\x77\ \xcd\xdf\x29\x31\x1b\x05\x49\xfa\x46\x41\xf6\x5d\x02\x43\x92\xbc\ \xfe\xb8\x21\x43\x7a\x52\x84\xf6\x69\x06\xa0\xd6\x92\xe7\xf9\x1f\ \xaa\xd2\xd5\x08\x76\x67\xd9\x70\x90\x7d\x93\x17\x10\xb7\x3c\x24\ \xbc\xfb\xe7\x02\xff\x44\x8a\x7e\x19\xc8\x06\xfe\x78\xc0\xe4\x06\ \x7a\xa0\x07\x7a\xac\x7a\x53\x33\xaf\xa1\xe5\x99\x9f\x07\x1e\xfe\ \xab\x5a\x9b\xd1\x8c\xd6\x3b\xd0\x98\xd6\xf1\xbe\x9d\x0f\xf3\x79\ \x3a\x25\x4c\xa3\xa0\xb0\x65\xa3\x20\xa2\x2e\x81\x28\x94\x50\x7e\ \x40\x91\xd8\xdb\x9b\x68\x0f\x9f\xce\x00\x54\xb3\xc2\x1f\x6b\x44\ \xe2\xca\x74\x2a\xf8\xdb\x18\x00\xf2\x65\x16\x77\xe0\x6f\x67\x00\ \x60\x72\x03\x3d\xd0\x03\x3d\xa7\x7a\x78\xd3\xe0\xfa\xcc\x0f\x03\ \x07\xff\x75\x6d\x83\xd0\xcc\xd6\xbf\xa1\xb1\xad\x6f\xf9\x7e\x3e\ \x8c\xe6\xe7\xfa\x4e\xf8\x77\x99\x00\x3f\x1b\x05\x85\x8d\x1a\x05\ \x49\xfa\x46\x41\x04\x5d\x02\x63\x6a\x3b\x45\x5c\x7f\x2f\x9a\xb8\ \xdf\x2a\x27\xf0\x3f\x29\xde\x74\x06\x19\xfc\x55\x6f\xe1\x9f\x48\ \xd1\x3f\x03\x22\x80\x3f\xbe\xb8\x60\x72\x03\x3d\xd0\x03\x3d\x5e\ \xd5\x03\x73\x33\xb7\xe6\x76\xcb\x07\x01\xfe\x9f\xb6\x5d\xd8\xd9\ \x64\x49\x84\xe3\x67\x34\x3f\x6b\x43\xa4\x46\x41\x61\xcb\x46\x41\ \x84\x9d\x02\xcf\x4c\x85\xb9\x76\x09\x64\x05\xbf\xfe\x97\x47\x13\ \xcd\x8f\x52\xc1\xdf\xc2\x00\xd0\x6d\xb0\x70\x07\xfe\x11\x1b\xf8\ \xeb\x0d\x00\x4c\x6e\xa0\x07\x7a\xa0\xc7\x43\x6f\x6a\xfb\x68\xb4\ \xac\xed\x07\xc2\xc2\x7f\x7b\xfb\x40\xf4\x61\xdb\x8d\xae\x75\xf5\ \x63\xd5\x33\x83\x7f\x7d\x27\xfc\xd9\xfa\x04\xf0\x6e\x14\x14\x36\ \x6a\x14\x54\xc0\x45\x02\x13\x10\x57\xee\x16\xaa\x45\xf0\xf7\xa4\ \x81\xdf\xc8\xbe\xa8\x9d\x24\xcf\x30\xec\x36\xff\xd1\xee\xae\xb4\ \xdd\xad\x49\x05\xff\x14\x31\xfc\x35\x03\x00\x93\x1b\xe8\x81\x1e\ \xe8\xf1\xd4\x1b\xdb\xda\x86\x3e\x6e\xbd\x5a\x38\xf8\x6f\x6c\x57\ \x51\x7b\xdb\x53\x42\x1e\x3f\x33\xf8\x1f\x36\x00\x6e\x36\x0a\x4a\ \x3a\x6f\x14\x44\xdf\x24\x68\x5b\xfd\xa0\x41\x47\x0b\x01\x7f\xfc\ \x4b\xeb\x25\xf9\xd7\x64\xf0\xb7\x5e\xfe\x17\x05\xfe\x11\x02\xf8\ \xe3\x01\x93\x1b\xe8\x81\x1e\xe8\xb9\xa5\xf7\x6e\xdb\x9d\xd9\x3b\ \xee\x41\x42\xc0\x7f\x75\xfb\x85\xa8\xb5\xed\x75\x61\x8f\x9f\x15\ \xfc\xdd\x6f\x14\x94\x74\xde\x28\xc8\xe7\x2e\x81\xcc\xf0\xc7\x23\ \x0b\xff\x77\xa9\xe0\x2f\xf1\x80\x7f\xd2\xbe\x54\x83\xb6\xf4\x83\ \x02\xfe\x78\xc0\xe4\x06\x7a\xa0\x07\x7a\x6e\xea\xe1\x26\x45\xdb\ \x33\x43\x7c\x85\xff\xf2\xf6\x2b\x73\xa5\x7d\x22\x1f\x3f\x2b\xf8\ \x93\x46\x04\x9b\x96\x8a\x0b\xd8\x25\x30\x1a\x57\xa6\x0a\x01\xff\ \x93\xa4\xa1\xa7\x91\xc1\x5f\xb5\x58\xfa\x17\x07\xfe\x11\x42\xf8\ \x93\xb4\x03\x86\xc9\x0d\xf4\x40\x0f\xf4\x9c\xea\x4d\xcf\xbc\x80\ \xb6\x66\x86\xf9\x02\xff\x25\xed\xbf\xcf\x85\x18\x89\x7e\xfc\xec\ \xe0\xef\x7e\xa3\x20\x87\x5d\x02\x13\xf4\x5d\x02\x4f\x6a\x68\x3a\ \xd9\x57\xf8\xe3\x11\x49\x34\xff\x9b\x0a\xfe\x12\x0f\xf8\x27\xed\ \xeb\x34\x69\xeb\x3e\x29\xe1\xcf\x62\x00\x60\x72\x03\x3d\xd0\x03\ \x3d\x16\xbd\xb7\x33\x2f\xa3\x6d\x99\xa1\x00\x7f\x13\x3d\x3b\xf8\ \x3b\x6e\x14\x24\x64\x97\xc0\xe6\x3b\x7c\x85\x7f\x43\xc3\xd0\xcf\ \xd7\xc5\xd4\xb5\xac\x06\xc0\x35\xf8\x27\xd8\xe0\x1f\xa1\x80\x3f\ \xad\x01\x80\xc9\x0d\xf4\x40\x0f\xf4\x9c\xe8\x4d\xcf\x3c\x9b\x35\ \x01\x83\x3d\x5b\xf6\x0f\x0a\xfc\xf5\x06\x20\x6a\x53\xbe\xcd\xdc\ \x28\x88\xa1\x55\xb0\xeb\x5d\x02\xe3\xf2\xaa\xe6\xe6\xe1\x3d\x1c\ \x30\xbd\x3b\x33\xfc\xf1\x9f\x23\x92\x2c\x13\x6f\x5a\xe0\x06\xff\ \x24\x67\xf8\xa7\x98\xe0\x4f\x63\x00\x60\x72\x03\x3d\xd0\x03\x3d\ \x1e\x7a\x1f\x64\x1e\x2e\xe9\x25\xc0\x1b\xfe\x6b\xda\x7f\x2c\xfc\ \x33\xff\x62\x3d\x12\xf8\x5b\xad\x02\x10\x6d\x18\xf7\xb4\x4b\xa0\ \x4a\xd6\x25\x30\xa1\x0e\x61\x01\x7f\x3e\xf7\x87\x38\x24\xa8\x97\ \xd1\x86\x83\x70\x5c\x7d\x9e\xe5\xee\xdf\x19\xfc\x93\xf6\x09\x4d\ \x0c\xf0\x8f\x50\xc2\x3f\xda\x98\x76\xe5\xe2\x9f\x38\x75\x3a\xfa\ \x64\xfe\x22\xb4\x7e\xe3\x26\xb4\x7b\xcf\x5e\x74\xe8\xd0\x21\xa4\ \xff\x3a\x78\xf0\x20\xda\xb9\x73\x27\xda\xb1\x63\x47\xe7\xc0\x7f\ \xc6\x7f\xcf\xf2\x05\x7a\xa0\x07\x7a\xc1\xd2\xdb\xb7\xec\x49\xd7\ \xe0\xbf\x63\xfa\x39\x68\xc7\xd6\x55\x5c\xde\x2f\x9e\xbb\x76\xed\ \xda\x8d\x96\xad\x58\x89\xde\x9f\x39\x1b\x8d\x1d\x3f\xd9\x35\x33\ \x41\x0a\x7f\x47\x8d\x82\x04\xec\x12\x18\x96\xe4\xa7\x18\xe0\x5f\ \x4d\x64\x00\x74\xfd\x84\x8b\xf3\x85\x8f\x38\xee\xd4\x21\xbd\xc3\ \x31\x79\x37\xed\xdd\xbf\x58\xf0\x4f\xb1\xc1\x9f\xd0\x00\xd0\xc2\ \x7f\xce\xbc\x85\x68\xef\xde\x7d\x30\x59\x82\x1e\xe8\x81\x9e\x15\ \x5a\xd1\xee\x39\x7f\xe4\x9f\xf0\x97\x19\x84\x3a\xd6\xbd\xef\xda\ \xfb\xdd\xbc\x79\x0b\x7a\x6f\xe6\x47\xae\xac\x24\xd0\x18\x80\xc2\ \x46\x41\x94\x1b\xc6\x05\xeb\x12\x58\x17\x53\x77\xe0\x4c\x00\x0a\ \xf8\x6b\xfd\x7e\xac\x0d\x40\xfe\x9b\x6b\xf3\x77\xff\xbd\x8b\x77\ \x1b\x86\xe2\xca\x85\xb4\x77\xff\x11\x83\x52\x08\xda\x20\x05\xdb\ \x78\x46\xea\xc8\xc7\x2e\x03\x40\x03\x7f\x3b\x03\x40\x03\xff\x09\ \x53\xde\x41\x2b\xd7\xac\x85\xc9\x0d\xf4\x40\x0f\xf4\x88\xbe\x0e\ \xec\xd9\x8c\x36\xb6\xa7\xb8\x26\x06\x6e\x5d\xf0\xb8\x27\xef\x17\ \xcf\x75\x78\xce\xe3\xf9\x18\x21\x37\x27\x53\x1a\x00\x11\xba\x04\ \x86\x79\x74\x09\xb4\x68\x10\x54\xc4\xf3\x9e\xf9\x6e\xbf\x3d\x2c\ \xa3\xff\xf3\xdf\x5c\x93\xbf\xfb\xef\xa5\xeb\x2d\xdc\xe9\x18\xea\ \x24\xf5\x2d\x1a\x03\x90\x7b\x33\x82\xc2\x3f\x42\x03\x7f\x02\x03\ \x40\x7b\xe7\x0f\xf0\x07\x3d\xd0\x03\x3d\x5a\xbd\x6d\x2b\x26\x72\ \x83\xff\xc6\x77\x7e\x96\x7d\x5d\x1d\x9e\xbd\x5f\x3c\xe7\xf1\xdc\ \x43\x40\x6b\x00\x8a\x9b\x04\x51\xad\x1c\xbb\xdd\x25\x50\xa2\xeb\ \x12\x98\x65\xf1\x6b\x04\x2b\xf9\x35\xf9\xd1\x69\x00\xec\x9c\xc2\ \x51\x3a\x03\x50\xd0\x55\x28\xd2\xbf\xe9\x2b\x61\x49\x3e\x48\x6a\ \x00\x8c\xe0\x1f\xa6\x86\x7f\xd2\xbe\x31\x03\xa3\x01\x60\x81\xbf\ \x99\x01\x60\x59\xf6\x87\xc9\x0d\xf4\x40\x0f\xf4\x58\xf4\x36\x7d\ \x70\x8d\xf3\xb8\xe0\xf1\x67\xa1\xed\xeb\x3f\xf6\xfc\xfd\xce\x99\ \xb7\x80\xdb\x63\xd4\xce\x79\x99\x00\xfe\xc5\x4d\x82\xc4\xee\x12\ \x68\x9f\xb0\x5b\x17\x53\xf7\x9f\x38\x40\xf9\x82\x05\xfc\x6b\xf3\ \x3c\xd7\x0c\x40\xb5\xdd\x33\x82\x1a\x9d\x01\x28\xe9\x27\x1c\x4a\ \xa8\xbf\xa4\x82\xbf\x64\x9c\x80\xc4\x62\x00\x2c\xb3\x99\x99\x96\ \xfe\x29\xe0\x6f\x63\x00\x58\x36\xfc\xc1\x33\x7f\xd0\x03\x3d\xd0\ \x63\xd5\xcb\x6d\xd8\x9b\x3a\xdc\x51\x5c\xf0\xe6\x4f\xee\xf3\xe5\ \xfd\xee\xd9\xbb\x37\x37\x07\x1a\xce\x8d\x99\x29\x54\xf3\x29\xa9\ \x01\x30\xee\x12\x98\xe6\xdc\x25\x30\xc9\x6c\x00\x22\xba\x0e\x81\ \x34\x5d\x02\x23\x71\xe5\x72\x8b\x3d\x7c\x47\xeb\x0c\x40\x0f\xab\ \xa5\xff\xea\xbc\x43\xd0\x0c\x40\xad\xd1\x46\x81\x70\x5c\xcd\x10\ \xbd\x28\x5d\xaf\x63\xb1\xe0\x9f\x72\x0c\xff\x62\x03\xc0\x52\xea\ \x82\x77\xfb\xc3\xe4\x06\x7a\xa0\x07\x7a\x4e\xf4\xf6\x2d\x7f\x9a\ \x19\xfe\xeb\x27\x25\x51\xc7\xb6\xf5\xbe\xbd\xdf\x8f\xe7\x2f\x34\ \x6e\x8f\xdc\x3e\x91\x6a\x3e\x2d\x98\x9b\x29\xe2\xdc\x85\xed\x12\ \x28\xe9\xbb\x04\x92\x98\x00\x79\xbc\x49\xf5\x5e\x2f\x9d\x01\xe8\ \x69\x05\xff\xaa\xbc\x3b\x38\x52\xf7\xbc\xa0\x04\xfe\xa1\x44\xcb\ \x57\xb3\xbf\xf0\x10\x59\x5c\xa1\x31\xfc\x59\x0c\x80\x6d\x57\x26\ \x06\xf8\x47\x69\xe0\x6f\x61\x00\x58\xeb\x5c\x71\xa9\x1f\x4c\x6e\ \xa0\x07\x7a\xa0\xe7\x48\xef\xe0\x1e\xb4\x73\xc6\x39\x4c\xbd\x02\ \xb6\x2e\x7e\xc1\xd7\xf7\x8b\xe7\xc0\x52\xf8\x4f\xa6\x6e\x3c\x64\ \x67\x00\xec\xbb\x04\xa6\x7d\xed\x12\x18\xb1\xec\x12\x48\x64\x00\ \x0e\xf6\x8d\xa5\xbf\x54\x94\xdb\xd3\x5b\x67\x00\x6a\xec\x36\xfd\ \xe9\x0d\x80\xa9\x53\x08\x27\x94\x2b\xa8\xe0\x2f\x89\x06\xff\x14\ \x1b\xfc\x4d\x0c\x80\x93\x90\x0b\x5c\xe7\x0f\x93\x1b\xe8\x81\x1e\ \xe8\x39\xd5\xdb\xb7\xfa\x15\x6a\xf8\xaf\x6f\x3f\x17\xed\xe8\xd8\ \xea\xeb\xfb\xdd\xbd\x67\x4f\xc9\x4a\xea\xb8\xb6\x37\x50\x5b\xeb\ \xcb\x54\xf3\xa9\x95\x01\xb0\xdb\xe3\x25\x6c\x97\x40\xda\x36\xc1\ \x71\xf5\x27\x45\xa1\x7d\x9a\x01\xa8\xb5\x4c\xfd\xcb\xff\x50\x95\ \xae\x46\xd0\xf4\x9b\xf1\x52\x03\x49\xa3\x82\x82\x67\x18\x25\xcf\ \x39\x68\xfb\x27\xdb\x1c\x6c\x2a\xf8\x27\x4b\x0c\x00\x0b\xfc\xf1\ \x70\x9a\x70\x05\x21\x3f\xa0\x07\x7a\xa0\xc7\x45\xef\xe0\x5e\xb4\ \x73\x7a\x9a\xaa\x57\xc0\x96\x45\xcf\xf9\xfe\x7e\xf1\x1c\x58\xbc\ \x92\x3a\xbe\xf5\x45\x34\xa9\x75\x24\xd5\x7c\x5a\x32\x3f\x53\x94\ \x76\x0b\xdb\x25\x90\xda\x00\xc8\x63\x0d\x32\x7b\x8e\x26\x0d\xfc\ \xa9\xca\xef\x01\x30\x85\xff\xf1\x89\xe1\x5f\x0c\xc5\xe4\x03\x64\ \x8d\x0a\x8c\xe1\x1f\xa6\x86\xbf\x6a\xef\xb4\x18\xe0\x1f\xa5\x81\ \xbf\x89\x01\x70\x1a\x6f\x09\x93\x1b\xe8\x81\x1e\xe8\xf1\xd2\xdb\ \xb7\xe2\x19\x62\xf8\xaf\x9f\xa4\xa2\x9d\x1d\x5b\x84\x78\xbf\xc5\ \x2b\xa9\x93\x5b\x9f\x44\x53\x5b\x1f\xa6\x9a\x4f\x8d\x0c\x00\x69\ \x75\x17\x73\x97\xc0\x44\x92\xb9\x43\x20\x51\x8b\xe0\x04\x9d\x01\ \x08\x49\xcd\xfb\x4e\x6f\x38\xeb\x58\x9d\x01\xe8\x45\x13\xf7\x5b\ \x65\xd7\x1c\x20\xeb\x30\x2e\xa1\x82\xbf\x24\x1a\xfc\x93\xdc\xe0\ \x5f\xdf\x98\x72\x9c\x6d\x0d\x93\x1b\xe8\x81\x1e\xe8\xf1\xd2\x3b\ \xb4\x7f\x1b\xda\x31\x75\x08\x51\xa3\xa0\x2d\x73\xef\x13\xe6\xfd\ \x16\xaf\xa4\xbe\xdd\x7a\x1f\x9a\xd1\xf6\x4f\xaa\xf9\xd4\x68\x7e\ \xa6\xd9\xe0\x2d\x6c\x97\x40\xc2\x55\x00\x8d\xbf\x7d\x12\xcd\x97\ \x53\xb7\x08\x26\xed\x0a\x14\x8e\x29\xa3\x89\xba\x14\x19\x34\xff\ \xa1\x31\x00\x85\x07\xc6\xc6\x69\x31\xc0\x3f\x4a\x03\xff\x06\x63\ \xf8\xeb\x0d\x00\x6b\xb6\x35\x4c\x6e\xa0\x07\x7a\xa0\xc7\x53\x6f\ \xcf\xfc\x7f\x10\x34\x0a\x1a\x80\x0e\xec\x5a\x23\xcc\xfb\x2d\x5e\ \x49\xfd\xa0\xed\x16\x34\xb7\xfd\x06\xaa\xb9\xd4\x68\x7e\xa6\xd9\ \xe3\xe5\x5e\x97\xc0\x24\x55\x97\x40\xa7\x2d\x82\xc3\x09\x65\xb4\ \x2b\x2d\x82\x4f\x3f\x3d\x7d\x54\x48\x92\x77\x91\x75\x29\x32\x86\ \x7f\x98\xe1\x99\x88\xed\x32\x0b\xcd\x33\x1b\x8e\xf0\xd7\x0c\x80\ \x93\xc6\x16\x30\xb9\x81\x1e\xe8\x81\x1e\x4f\xbd\x03\xdb\x3e\xb2\ \x6d\x14\xb4\xf3\xa3\xdf\x0b\xf5\x7e\x8b\x57\x52\x17\xb5\xff\x11\ \x2d\xcd\x5c\xc5\x64\x00\xf4\xf3\xb3\x66\x02\x5c\xed\x12\xe8\x76\ \x8b\xe0\x04\x65\x8b\xe0\x58\xf3\x8e\x93\x4e\x92\x6b\xba\xf1\xfe\ \xaa\x93\x92\x43\xa9\xe0\x2f\x89\x06\xff\x64\x67\xe8\x03\xab\x01\ \x28\xbc\xb8\xd2\x8e\xbb\x5a\xc1\xe4\x06\x7a\xa0\x07\x7a\x7c\xf5\ \x0e\xa1\x9d\x33\xce\xb5\x6c\x14\xb4\x7f\xed\x58\xa1\xde\x6f\xf1\ \x4a\xea\x9a\xcc\x25\x68\x5d\xe6\x7c\x6a\x03\x50\x02\xff\xc6\x14\ \x63\x97\xc0\x94\xaf\x5d\x02\x49\x57\x01\xcc\x1a\x05\xd5\x25\x92\ \x03\xb9\x1b\x80\x50\x5c\xbd\x8f\xe4\x97\xb3\x1a\x00\xe3\x83\x93\ \x62\x36\x00\x66\xf0\x67\x35\x00\xa5\x17\x57\xda\x71\x57\x2b\x98\ \xdc\x40\x0f\xf4\x40\x8f\xb7\xde\xee\x25\x0f\x9a\x77\x09\x9c\x3a\ \x04\x1d\x3a\xb0\x53\xa8\xf7\x5b\xbc\x92\xba\x2d\x33\x14\x6d\xcf\ \x9c\x85\x26\x64\xa6\x12\xcf\xa7\x86\xf0\x6f\x4c\x33\xb7\x09\xa6\ \xea\x12\x48\x60\x00\xbc\x6c\x11\x1c\x8a\xa9\xff\xe2\xcd\xff\xee\ \x75\x92\xba\x9c\xac\x3f\x31\xfd\xf2\xbf\xf9\xc1\x61\x33\x00\xc6\ \x27\x8f\x2f\xfc\xa3\x8d\x2d\x8e\x5b\x5a\xc2\xe4\x06\x7a\xa0\x07\ \x7a\xbc\xf5\x3a\xd6\x7d\x60\xda\x25\x70\xf7\xc7\x7f\x16\xee\xfd\ \xea\xe1\x3f\x25\xf3\x46\xe7\x23\x8c\xb7\x33\x2f\x13\xcf\xa7\xf5\ \x45\xf3\x34\x49\x32\x20\xb7\x2e\x81\xa2\xb5\x08\x96\xe4\xc5\x98\ \xd9\xdc\xe8\x1f\x3e\x53\xed\x43\x05\x7f\x49\x34\xf8\xb3\xdf\xfd\ \x1b\x3b\xcb\x16\x26\x03\x50\xbc\xdb\x15\x26\x37\xd0\x03\x3d\xd0\ \xe3\xaf\xd7\x91\x2b\xf3\x33\xea\x12\xb8\x7f\xcd\x6b\xc2\xbd\x5f\ \xfd\x4a\xea\x47\x99\x7b\x3a\x5f\xeb\x9c\xcc\x3f\x89\xe7\x53\xbd\ \x01\x30\xcb\x04\xa0\xeb\x12\x98\xa4\xeb\x12\x98\xb0\xeb\x12\xa8\ \x52\x75\x09\x74\xdc\x22\x38\xd6\x1c\xe2\xb7\xfc\x2f\xa9\x57\x93\ \x38\x0f\x5a\x03\x60\xed\x8c\xe8\x0d\x80\x1d\xfc\x69\x0d\x80\xe9\ \xb2\x12\x83\x01\x30\x0a\x0d\x82\xc9\x0d\xf4\x40\x0f\xf4\x5c\xe9\ \x12\x38\xeb\x26\xc3\x2e\x81\x87\xf6\xac\x17\xee\xfd\xea\xe7\xc9\ \xa5\x99\xdf\x76\xbe\xd6\xe5\x99\x5f\x10\xcf\xa7\x9a\x01\x30\x2a\ \xd9\x26\x9e\xef\x0b\xaa\xc4\x52\x81\x6e\x11\x1c\x8a\xa9\x57\xf1\ \xaa\xfe\xeb\x96\x15\x1c\x6f\x0f\x7f\xba\xe5\x7f\xfb\x65\x11\x3a\ \x03\x60\xfd\xcc\x86\x3f\xfc\x69\x0c\x80\x59\x62\x20\x4c\x6e\xa0\ \x07\x7a\xa0\xe7\x86\xde\xb6\xa5\xaf\x95\xc0\x7f\xd7\x7b\x17\x08\ \xf9\x7e\x3b\x7b\x00\x64\xa6\xa1\xad\x99\xa6\xce\xd7\xbb\x3d\x73\ \x76\xae\x2b\x20\xc9\x7c\x5a\xdf\x39\x37\xa7\x99\x4c\x80\x71\x97\ \xc0\xe0\xb6\x08\x0e\xc7\xd5\x37\xad\xc0\x9f\xcf\xfd\xb1\x2f\x15\ \x3c\xe3\x0c\xf5\xe8\x48\x4c\xd9\x43\xb2\xec\x40\x6a\x00\xbc\x85\ \x3f\xbd\x01\xc8\x5d\x08\x86\xf0\xa7\x37\x00\x56\x71\xc1\x30\xb9\ \x81\x1e\xe8\x81\x9e\x1b\x7a\x07\x76\xad\x2b\x09\x04\xda\xb3\xf0\ \x2e\x21\xdf\xaf\x36\x57\xce\xc8\x94\x26\x19\xbe\x9f\x79\x8c\x68\ \x3e\xed\x9a\x97\xe9\x0d\x40\x69\x60\x50\x8a\xb9\x43\xa0\x75\x97\ \x40\x5e\x2d\x82\x15\x82\x54\x40\x79\xd7\x71\x43\x86\xf4\x34\x81\ \x7f\x35\x91\x01\xc0\xdf\xd0\x47\x6a\x6e\x8e\xd0\xc0\x5f\x72\x0a\ \x7f\x3a\x03\x40\x0a\xff\x08\x17\xf8\xd3\x19\x00\xbb\x5e\x01\x30\ \xb9\x81\x1e\xe8\x81\x9e\x5b\x7a\x3b\xdf\xfd\x61\x01\x4c\xf7\xaf\ \x1f\x2f\xe4\xfb\xd5\xe6\xcb\x25\x99\x3f\x96\x18\x80\x65\xba\x3c\ \x00\xab\xf9\xd4\xd6\x00\x34\xb2\xb4\x08\x4e\x07\xbc\x45\x70\xb2\ \xd1\x00\xfe\x5a\xbf\x1f\x6b\x03\x90\xff\xe6\xda\x48\x42\xfe\x77\ \x84\xe0\x99\x03\x89\x01\x20\xdf\x0d\x49\x66\x00\xc8\x4a\x35\x28\ \xe1\xdf\x40\x06\x7f\x3b\x03\x40\xd2\x28\x08\x26\x37\xd0\x03\x3d\ \xd0\x73\x4b\x6f\xcf\xbc\x1b\x0a\x60\x7a\x70\xf7\x2a\x21\xdf\x2f\ \x9e\x0b\x27\x66\x26\xe5\x96\xfc\x8b\x0d\x00\x2e\x07\x9c\x9c\x19\ \x6f\x3b\x9f\x16\xce\xcd\x64\x06\xc0\xaa\x57\x80\x90\x2d\x82\x25\ \xda\x16\xc1\xea\xcd\x45\x3c\xef\x99\xef\xf6\xdb\xc3\x32\xfa\x3f\ \xff\xcd\xb8\x7f\xf0\xd1\x61\x49\x9e\x1d\x21\x79\xe6\x60\xb3\xfc\ \xef\x0f\xfc\xc9\x0d\x40\xc1\x85\x60\xb6\x9b\x94\xd0\x00\x90\x76\ \x09\x84\xc9\x0d\xf4\x40\x0f\xf4\xdc\xd2\xdb\xb7\xf2\xf9\x4e\x90\ \xee\x7c\x5b\x16\xf6\xfd\xe2\xb9\x70\x4e\xe6\x2e\xd3\x46\x46\x9f\ \xb4\xdf\x62\x3b\x9f\xd2\x1a\x80\xe0\xb7\x08\xb6\x37\x00\x75\x71\ \xe5\x5d\x5d\xaf\x9f\x9a\xfc\xe8\x34\x00\x56\xf0\xc7\x4e\xe1\xa8\ \x93\x1a\x87\xfc\x1f\x15\xfc\x25\xa7\xf0\x27\x33\x00\xb4\xf0\x8f\ \xb8\x00\x7f\x33\x03\x40\xd3\x22\x18\x26\x37\xd0\x03\x3d\xd0\x73\ \x4b\xef\xc0\xd6\x99\x9d\x10\xdd\x3d\xfb\x77\xc2\xbe\xdf\x09\x99\ \x29\x68\x53\x46\x35\xed\x62\xb8\xba\x6d\x38\x1a\xdb\x3a\xce\x72\ \x3e\x2d\x9d\x9f\xcd\x4d\x00\x5d\x8b\xe0\x74\x90\x5b\x04\x1f\x3a\ \x29\xd1\xfc\x79\xbc\x92\x8f\x79\xae\x33\x00\xd5\x56\xf0\xef\x91\ \xff\xc6\xa3\xfa\x24\xe4\x73\x49\x36\x1c\x58\x19\x00\xda\x10\x04\ \xdb\x50\x05\x9a\x84\x26\x5a\xf8\x37\xa4\xcc\x4b\x49\x08\x0c\x00\ \x0d\xfc\x49\x0c\x00\x4c\x6e\xa0\x27\x8a\xde\x47\xab\x36\xa3\xbb\ \xdf\x59\x81\x7e\x31\x66\x31\x3a\xe7\xd5\x65\x48\x1d\xbd\x0c\x8d\ \x78\x6d\x39\xba\xa2\x6d\x15\xba\xf3\xbd\x0d\x68\xda\xaa\x9d\xe8\ \xc0\x21\x38\x7e\x22\xe9\xe5\xba\x03\xe6\x41\xba\x77\xf1\xbd\xc2\ \xbe\xdf\x39\x99\x3b\x6d\x5b\x18\x7f\xd8\x7a\xa3\xe5\x7c\x4a\x6a\ \x00\x48\x5b\x04\x47\x45\x6d\x11\x4c\x67\x00\x50\x7d\xbc\x39\x8d\ \x57\xf2\x75\x06\xa0\x87\xd5\xd2\x7f\x75\xde\x21\xe4\x0c\x40\x44\ \x92\xff\x43\xb8\xd9\xc0\xd0\x00\x44\xa8\xe1\x9f\xe4\x08\x7f\x7b\ \x03\x60\x78\x31\x98\x6e\x22\xb1\x36\x00\xb4\xf0\xb7\x33\x00\x30\ \xb9\x81\x9e\x08\x7a\xf3\xd7\x6e\x41\x3f\x1a\x35\x1f\xfd\xdf\x3d\ \x1f\x66\xc7\x4c\xf4\x8d\xfb\xe7\xa2\x6f\x3c\x30\xcf\x70\x9c\xf6\ \xf4\x62\xf4\xec\xbc\xad\xe8\x10\x1c\x3f\x61\xf4\x76\xbe\x93\x34\ \x0c\x00\x12\xa6\x85\xf1\xbe\x2d\x68\x6b\x66\xb8\x6d\x0b\xe3\xb5\ \xad\x43\x50\x5b\xdb\xab\xa6\xf3\x29\x89\x01\x10\xa3\x45\x30\x5d\ \x28\x1e\x6b\x7b\x60\x2d\xb7\x27\x92\x50\xfe\xa5\x33\x00\x3d\xad\ \xe0\x5f\x95\x77\x07\x9a\x01\xa8\x09\xc7\x94\x0f\xa8\x0c\x80\x9b\ \xf0\x4f\xb0\xc1\x3f\xe2\x12\xfc\xf5\x06\x80\x05\xfe\x56\x06\x00\ \x26\x37\xd0\x13\x41\xef\xe3\xd5\x9b\xd1\x49\x0f\x7f\x44\x04\x7f\ \xfd\xb8\xbc\x75\x15\xda\x77\xf0\x10\x9c\x0f\x01\xf4\x76\x7f\xf4\ \xeb\x1c\x50\x0f\x6c\x9d\x25\xe4\xeb\xdb\x33\xef\x46\x5b\xf8\x6b\ \x89\x86\xcb\xdb\x7f\x66\xd1\x0c\xa8\xc5\xd2\x04\x14\x77\x08\x0c\ \x4a\x8b\x60\xda\xee\x80\x05\xf0\x3f\xbc\x79\xff\xbd\xbc\x01\xa8\ \xb1\xdb\xf4\xa7\x37\x00\x3d\x4f\x19\x98\xfa\x2c\x7e\x86\xc0\x72\ \xf7\xcf\x06\xff\xa4\x7d\x9c\x22\x55\x3c\x23\x25\xfc\x1b\xd2\x4c\ \x06\x80\x15\xfe\x66\x06\x00\x26\x37\xd0\x13\x41\x6f\x7b\xc7\x0e\ \xd4\xf4\xdc\x5c\x6a\xf8\x6b\xe3\xf7\x93\xd7\xc0\xf9\x10\x40\x6f\ \xcf\x82\xdb\x0f\x27\x00\xee\xdd\x28\xdc\xeb\xdb\xbf\xae\x95\x18\ \xfe\x5a\xa8\xd1\xec\xcc\xbf\xa8\x0d\x40\xd9\xb5\x08\x96\xc8\x5a\ \x04\xe7\x1e\xdf\xc7\x9a\x0f\x9c\xda\x38\xec\x4b\x96\xa9\x7f\xf9\ \x5d\x82\x55\xba\x1a\xc1\xee\x91\xb8\x3a\x8c\x65\xf9\x9f\x1d\xfe\ \x49\xfb\x38\x45\x9a\x6c\x66\x13\x03\x60\xf9\x0c\x88\xd2\x00\x38\ \x81\xbf\x91\x01\x80\xc9\x0d\xf4\x44\xd1\x1b\xfd\xc9\x5a\x66\xf8\ \x6b\x63\xfa\xea\x1d\x70\x3e\x7c\xd6\xdb\xb7\xec\x09\xb4\x63\xca\ \x59\x78\xb1\x5d\xa8\xd7\x77\xb0\x63\x21\xda\x31\xf5\x6c\x2a\xf8\ \x1f\x2e\x0b\x1c\x84\xa6\x67\x9e\x23\x36\x00\xbe\xb4\x08\xa6\x30\ \x00\x24\x7b\xe4\x68\x0c\x40\x71\x66\x4f\x6e\xc4\x95\xc1\xb6\x81\ \x3f\x79\x03\x50\xad\x39\x85\xac\xd8\x2d\xb4\xcb\xff\xa2\xc1\x3f\ \xe2\x22\xfc\xf1\x70\x02\xff\x62\x03\x00\x93\x1b\xe8\x89\xa4\x97\ \x7c\x61\xae\x23\xf8\xe3\x9f\xbb\xec\x8d\x45\x70\x3e\x7c\xd6\xdb\ \xbf\x76\x4c\x2e\x10\x48\xa4\xd7\x77\x68\xf7\x1a\xb4\x73\x7a\x0b\ \x35\xfc\xb5\x81\xe3\x82\xa7\x65\x5e\xb5\x35\x00\xf5\x06\x06\x80\ \xb6\x3f\x80\x08\x2d\x82\x49\x1f\x03\x98\xc7\xf5\x2b\xd7\x93\x1a\ \x80\xce\x65\x82\xba\x98\x32\x81\xc6\x00\x44\x0c\x76\x2f\xd2\x85\ \x1e\xd8\x64\x29\xd3\x34\x66\xa0\x85\x3f\x83\x01\xc0\x17\x97\x13\ \xf8\xeb\x0d\x00\x4c\x6e\xa0\x27\x92\xde\xec\x55\x9b\x1d\xc3\x1f\ \xff\x7c\xe4\xc1\x59\xa8\x03\xce\x87\xaf\x7a\x07\xb6\xbc\x8f\x76\ \xce\xba\x4a\x20\xf8\xaf\xce\x1a\x92\xf3\x98\xe1\xaf\x8d\xcd\x19\ \x39\x6b\x02\x46\x9b\x1a\x80\xc3\xf0\x2f\x8f\x16\xc1\x24\x06\xc0\ \xaa\x57\x4f\x28\x26\x8f\xa3\xea\x0a\xd4\xd2\xd2\x52\x55\x17\x53\ \x77\x10\xc3\x5f\x72\x0a\xff\xa4\x4d\x23\x85\x24\x65\x2e\x73\xa1\ \x01\x20\x2a\xfd\xa0\x30\x00\xda\xc5\xe5\x04\xfe\x9a\x01\x80\xc9\ \x0d\xf4\x44\xd3\xbb\x65\xca\x72\xc7\xf0\x3f\xfc\xf8\xe0\x43\xb4\ \x6c\xc3\x56\x38\x1f\x3e\xea\xed\xef\x58\x84\x36\x7f\x78\x8d\x18\ \xcb\xfe\xdb\xe7\x66\xef\xfc\xd3\x8e\xe1\xdf\xb5\x12\x30\x1c\xcd\ \xc8\x8c\x2c\x31\x00\x5d\xf0\xf7\xb1\x45\xb0\xdd\x86\x76\xca\x95\ \x72\xab\xc7\x00\x04\x8d\xfa\xb6\x75\xeb\x76\xed\x11\xc4\xed\x7f\ \x23\xb1\x54\x3d\xe9\xdd\x7f\x67\x8b\xc2\xa2\xba\x45\x56\x03\xe0\ \x1c\xfe\x85\x06\x80\xb8\xee\x93\xd0\x00\xe8\x2f\x2e\x27\xf0\xc7\ \x03\x26\x37\xd0\x13\x4d\x6f\x47\xf6\xcf\x0d\xcf\x2e\xe6\x02\x7f\ \x3c\xe6\xac\xde\x02\xe7\xc3\x47\xbd\x1d\x5b\x56\xa0\xcd\xb3\xef\ \xf0\xfd\xf5\xed\x5b\x3d\x1a\xed\x98\x3a\x84\x1b\xfc\x3b\x35\x32\ \x83\xd0\xc7\x99\x3b\x50\x7d\x7f\x23\xf8\xf3\x6e\x11\x9c\xe4\xd8\ \x22\x98\xee\x31\xb9\x99\x01\x88\xe8\xda\x03\x5b\xc7\xf5\x2b\x75\ \xc4\x06\x20\x94\x50\x7e\x4a\x62\x00\xba\xfa\x13\x97\x86\x16\x70\ \x83\x7f\x82\x0d\xfe\x11\x97\xe1\x8f\x87\x13\xf8\xe3\x9f\x83\xc9\ \x0d\xf4\x44\xd3\x5b\xb8\x79\x37\x37\xf8\xe3\x3f\xaf\xdc\xbe\x17\ \xce\x87\x9f\x7a\x1d\x5b\xd1\x96\x79\x0f\xf9\x57\xe7\xbf\x67\x3d\ \xda\xfd\xf1\x9f\xa9\x77\xfb\xd3\x8e\x89\x8f\x0f\x46\x43\x92\x6a\ \xc9\x1c\xcd\xa3\x45\x70\x54\x80\x16\xc1\x46\x06\x20\xa2\x6b\x0f\ \x6c\xd7\xab\x27\x94\x50\x2f\x22\x37\x00\x71\xf5\x11\x92\x90\x01\ \x33\xf8\xb3\x18\x00\xcb\x46\x0a\x0c\x06\x80\x26\xf1\x89\xc4\x00\ \x94\x3a\xcb\xb4\x23\xf8\x63\xf3\x00\x93\x1b\xe8\x89\xa6\xf7\xc0\ \xac\x4d\xdc\xe0\xff\xcd\xec\xdf\xeb\xf3\x00\xe0\x7c\xf8\xa3\xb7\ \x75\xf1\x4b\x9e\xbf\xbe\x43\x07\x76\xa2\xbd\x4b\x1f\x2b\xd9\xe9\ \xef\x06\xfc\x35\xbd\x15\x63\x07\xa0\xff\xdc\x70\x36\x3a\x73\x68\ \x52\x07\x7f\x1f\x5b\x04\xdb\x3d\xd6\x66\x6c\x0f\xdc\xb9\xe1\x5e\ \x67\x00\x6c\x13\x7b\xe3\xea\x03\xc4\x06\x20\x1c\x93\x67\xdb\xc3\ \xbf\xcb\x00\x38\x83\x7f\xd2\xbe\x8b\x12\xa5\x01\x88\x36\xd0\x25\ \x3e\xd9\x19\x00\x23\xf8\x93\xb4\x03\xb6\xeb\x15\x00\x93\x1b\xe8\ \x89\xa6\xf7\x83\x37\x56\x70\x81\x3f\xfe\xfb\xd3\x47\x2e\x86\xf3\ \x21\x80\xde\xf6\x95\x13\xbd\x8b\x1f\xce\xde\xf1\xef\x5d\xfa\x30\ \xda\xf9\x76\xb3\x6d\xbc\x2f\x4f\xf8\xeb\xf5\x96\xbd\x39\x00\xdd\ \x7f\xcb\x30\x74\x96\x9a\x64\x32\x00\xd6\x2d\x82\xe9\x0d\x80\x39\ \xdf\xd8\x4c\x40\x44\xd7\x1e\x38\x9a\xe7\xb1\x6d\x63\x20\x49\x99\ \x45\x04\xff\xd3\x4f\x4f\x1f\x15\x8a\xc9\x07\x88\xe1\x2f\xa9\xa6\ \xed\x7f\xc9\x1b\x1f\xf0\x82\x7f\xd7\x52\x8d\xdb\xf0\x67\x31\x00\ \xc5\xb9\x01\x30\xb9\x81\x9e\x48\x7a\x7b\x0e\x1c\x42\xdf\x79\x78\ \x3e\x17\xf8\xe3\x7f\xbf\x70\xcc\x0a\x38\x1f\x02\xe8\xed\xdf\xf6\ \x89\xab\xaf\xef\xd0\xfe\x0e\xb4\x7f\x7d\x1b\xda\x3d\xe7\x4f\x68\ \xc7\x94\x81\x54\xb0\xe6\x0d\x7f\xbd\xde\xf6\xec\x7f\x27\x3c\x3e\ \x18\x5d\xfd\x9b\x66\x74\xe6\xd0\x94\xa3\x16\xc1\x4c\x06\xc0\xb6\ \x45\x30\xbd\x01\x28\xa8\xb6\x93\xf4\x2d\x82\x6d\x0c\x40\x4c\xdd\ \x7f\xdc\x90\x21\x3d\x09\x96\xff\x95\x53\xed\xe1\xaf\x14\xfe\x72\ \x46\x03\xd0\xb5\x11\xc2\xa2\x8b\x12\x03\xfc\xa3\x0d\xe4\x71\x8f\ \x56\x06\xc0\x0a\xfe\xb4\x06\xc0\x28\x34\x08\x26\x37\xd0\x13\x49\ \x6f\xea\xaa\x9d\xdc\xe0\x8f\xc7\x6d\xef\x6e\x80\xf3\x21\x80\xde\ \xa1\x3d\x6b\xf9\xea\xed\xdf\x86\x0e\x6c\x79\x37\xb7\xc4\xbf\x7b\ \xd6\xaf\xb2\xd0\x1f\xe4\x18\xd6\xbc\xe1\x5f\x3c\xb0\x19\x78\x7b\ \xe4\x59\xe8\xde\x9b\x86\xa2\x4b\x2f\x95\x51\x7c\x78\x92\xaa\x45\ \x70\x84\xb5\x45\xb0\xd5\xcd\x2d\xf5\x6a\x79\x51\xe5\x40\x41\x10\ \x9f\xfd\x9e\xbd\x68\x4c\xe9\x67\x55\xfd\xa7\x3d\xff\xbf\xcc\x1e\ \xfe\x8a\x29\xfc\xc3\x3c\xe1\x9f\x48\x51\xf6\x63\xa6\x84\xbf\x85\ \x01\xb0\x83\x3f\x8d\x01\x30\x4b\x0c\x84\xc9\x0d\xf4\x44\xd2\xc3\ \x5d\xfd\x78\xc1\x1f\x8f\x71\x4b\x3b\xe0\x7c\x08\xa0\x87\x1b\xee\ \x10\x7d\x1d\xda\x8f\x0e\x1d\xd8\x85\x0e\xec\x5a\x87\x3a\xd6\xcf\ \x44\xdb\x56\x8c\x47\x5b\x17\xbf\x8c\xb6\xcc\x7f\x14\x6d\x9e\x7d\ \x2b\xda\xf9\xd1\xef\x4a\x02\x7c\xdc\x80\xb5\x57\x7a\xcb\xc6\x0c\ \x44\x93\x9f\x38\x0b\x3d\xfd\xcf\xb3\xd1\xed\xd7\x0c\x45\x7f\xba\ \x6a\x38\xba\xe2\xd2\x26\x34\xe2\x3c\x19\x0d\x6a\x56\xd1\x69\x83\ \x53\xe8\xa4\x01\x29\xaa\xee\x80\x25\x89\x81\x76\x7c\xa3\xe6\x65\ \xd1\x9e\x3b\x0a\x03\x10\x8e\xab\x3f\x29\x8a\xfe\x2f\x2d\x0d\x0c\ \x4b\xca\xfd\xf6\xf0\x57\x4c\xdb\xff\x86\xa9\xdf\x8c\x4d\x0b\x45\ \x9a\x83\xad\x33\x00\xc4\x35\x9e\x66\x5d\xa3\x6c\xe0\x4f\x6a\x00\ \xac\xe2\x82\x61\x72\x03\x3d\x91\xf4\xce\x79\x6d\x39\x37\xf8\xe3\ \xb1\x61\xd7\x01\x38\x1f\x02\xe8\xe1\x0d\x79\x4c\x7a\x1d\x5b\x51\ \xc7\xe6\x15\xa8\x63\xc3\x6c\xb4\x6f\x43\x06\xed\x5b\xf9\x02\xda\ \xb3\xf0\x2e\xb4\x6b\xe6\x2f\x0c\x37\xf7\x05\x05\xfe\x9b\x27\xf5\ \x47\x33\x9e\x3d\x0b\x8d\xfc\xd7\xd9\xe8\xe6\xbf\x0c\x47\x3f\xbb\ \xac\x19\xa5\xce\x55\x50\xe3\x70\x15\x9d\x3c\x20\x69\xca\x0f\x52\ \x03\x50\xdc\x1e\xd8\xba\x45\x70\xd2\x59\x8b\x60\x0a\x03\x10\x8a\ \x2b\xf7\xe6\xe1\x5f\x6d\x61\x00\xd4\xe9\x26\x5d\x85\x8a\x76\x1b\ \x26\x99\x96\xff\x4b\x13\x90\x6c\xfa\x27\xd3\x1c\xec\xce\x47\x00\ \xee\xc3\x9f\xc4\x00\xd8\xf5\x0a\x80\xc9\x0d\xf4\x44\xd1\xc3\xbb\ \xf5\x8f\x7b\x64\x3e\x37\xf8\xc7\x9e\x59\x02\xe7\x43\x14\xbd\xec\ \x9d\x3d\xf7\xd7\x77\xe8\x00\x3a\xd8\x31\x0f\xed\x5b\xf1\x2c\xda\ \xfd\xd1\x55\x86\x8f\x01\x44\x81\x3f\x5e\xfe\x9f\xf6\xf4\x60\x74\ \xc7\xb5\xc3\xd0\x79\x17\x28\xe8\xa4\x81\x29\xa6\x16\xc1\x24\x06\ \xa0\x24\x2e\xd8\x8e\x6f\x4e\xe0\x4f\x6b\x00\x62\xea\x34\x5d\xbf\ \x9f\x52\x03\x80\x13\x00\xc3\x31\x79\x77\x31\xfc\x23\x66\xf0\xa7\ \x34\x00\xc6\xf1\x87\x7c\xe1\x1f\xa1\x49\x78\x32\x84\x7f\x8a\x08\ \xfe\x76\x06\x80\xa4\x51\x10\x4c\x6e\xa0\x27\x8a\xde\x7b\x6b\x77\ \x71\x83\x3f\x1e\xbf\x99\xb4\x06\xce\x47\x05\xe9\x1d\xda\xb7\x35\ \x17\xf6\xb3\xeb\xc3\xcb\x85\x81\xff\xcc\x17\x07\xa1\x1b\xfe\x34\ \x1c\x25\x9a\x52\x86\xd5\x00\xc5\xed\x81\xed\x56\x8e\xed\xf6\x01\ \x98\xf6\x0a\x60\x34\x00\x46\xbc\xa4\xed\x0c\x58\x60\x00\x24\x75\ \xe7\x29\xa7\xc8\x35\x3a\x03\x50\xb8\x07\xe0\xc4\x98\x72\xbc\x11\ \xfc\x23\x25\x75\x86\xf4\x06\xc0\x3c\xfb\x98\xcd\x00\x94\x1e\x6c\ \x4a\xf8\x37\xa4\xcd\xfb\x45\x13\xc0\xdf\xca\x00\x90\x76\x09\x84\ \xc9\x03\xf4\x44\xd1\xbb\xf7\xc3\x4d\xdc\xe0\x8f\xc7\xf3\xf3\xb7\ \xc2\xf9\xa8\x50\xbd\xfd\xdb\xe6\xa0\x4d\xef\xff\xc9\x37\xf8\xb7\ \x3d\x3a\x18\x9d\xff\x63\xc5\xb4\x3d\x70\xc9\x7c\x4f\xf1\xd8\xd8\ \xcc\x00\x58\x36\x0a\x62\x30\x00\x66\xbc\x64\x35\x00\x1a\xc3\x4f\ \x8a\xcb\x27\x68\x06\xa0\x64\xf9\xbf\x2e\x26\x2b\x5a\xc2\x9f\x39\ \xfc\xe9\x0d\x00\x13\xfc\x13\x34\xf0\x4f\x9a\xb6\xff\x25\x31\x00\ \xa5\x2d\x23\xed\xe1\x6f\x66\x00\x68\x5a\x04\xc3\xe4\x01\x7a\xa2\ \xe8\x5d\x30\x66\x05\x37\xf8\xe3\xb1\x7c\xfb\x3e\x38\x1f\x15\xae\ \xb7\x7d\xed\xfb\x68\xc3\x3b\x57\x78\x06\xff\xf7\x9f\x3f\xcb\x04\ \xfc\x85\x06\xa0\x64\xbe\xa7\x78\x6c\x6c\x64\x00\x6c\xbb\x04\x26\ \xe8\x4c\x80\x55\xa3\x20\x16\x03\x50\xb0\x92\x1f\x97\x15\xbc\x07\ \xc0\x38\x00\x48\x52\xfe\x62\x0f\x7f\x95\x6a\x03\xa0\x75\xd7\x23\ \x7a\x03\x60\x7e\xb0\xd9\x0c\x00\x2b\xfc\x8d\x0c\x00\x0d\xfc\x49\ \x0c\x00\x4c\x46\xe5\xa1\xd7\xb1\xf7\x20\xda\xbc\xfb\x80\xb0\xaf\ \xef\xc0\x21\x84\x4e\x7c\x6c\x01\x37\xf8\x9f\xfa\xf4\x22\x74\x08\ \xae\x17\xd0\xcb\xe9\xed\x40\x7b\x56\x8d\x22\xde\x34\xc8\x02\xff\ \xed\x99\xb3\xd0\xcd\x7f\x69\x42\x7d\xfa\xdb\xcf\xd9\xa5\xf3\x7d\ \x8a\xba\x33\xa0\xde\x00\x10\xb5\x08\xa6\x30\x00\x76\x5d\x02\x49\ \x5b\x03\x9b\xaf\xe4\x37\xff\xc9\xb0\xfc\xef\x70\x13\x20\x65\x64\ \xb1\x01\xb0\xea\x02\x68\x67\x00\xec\x5b\x1e\xd2\x19\x00\xeb\x83\ \x9d\xa6\x7e\xfe\x6f\x78\x31\x10\xc2\xbf\xd8\x00\xd0\xc2\xdf\xce\ \x00\xc0\xe4\x11\x6c\x3d\x0c\xc0\x19\x6b\x76\xa1\xcb\x5b\x57\xa1\ \x63\x1f\x3c\x0c\xc6\xbb\xde\xdb\x28\xe4\xfb\x9d\xbd\x61\x0f\x37\ \xf8\xe3\xf1\xcb\xf1\xab\x99\x5e\x1f\xde\x88\x78\x43\xdb\x7c\xa4\ \x3c\x31\x1d\xdd\x34\x7e\x3e\x5a\xb9\x6d\x37\x5c\x7f\x65\xa2\x77\ \x70\xd7\x32\xb4\xeb\xfd\x1f\x73\x87\xff\xa6\x4c\x1a\xbd\x9d\x19\ \x45\x34\x5f\xd7\x1b\xcc\xf9\xb4\xcd\x81\xf4\x06\x80\x08\xfe\x14\ \x06\x80\xa4\x45\x30\x8d\x01\x28\x85\x7f\xae\x12\xe0\x09\xb3\x96\ \xc0\x55\x21\x49\x9e\xa5\x37\x00\x96\xf0\x97\x9c\xc2\x3f\xc9\x1d\ \xfe\x34\x06\xc0\x18\xfe\x69\x26\x03\xc0\x02\x7f\x2b\x03\x00\x93\ \x47\x70\xf5\xf6\x66\x6f\xa7\x5f\x98\xbf\x0d\x9d\xfd\xd2\xd2\x12\ \x30\x62\x23\x80\x57\x03\x44\x7b\xbf\x0f\xcf\xde\xcc\x0d\xfe\x78\ \x3c\xf5\xc9\x16\xa6\xd7\xf7\xe0\xf4\xa5\xe8\x0b\xd7\xbd\xd9\x39\ \xbe\xfc\xf7\x31\xe8\xe2\xe7\x3f\x40\xef\x2c\xdf\x5c\xb0\xa2\x00\ \xd7\x5f\x30\xf5\x70\x39\xe2\xee\xd9\x7f\xe0\x06\xff\x35\x99\x8b\ \xd0\xe4\xcc\x84\x92\x76\xc0\x56\x2d\xdc\x0d\xe1\xcf\x60\x00\xa2\ \x06\x4c\x62\x6d\x0f\x4c\xce\x4b\xf2\xc7\x00\x66\x7b\xf8\xea\xe2\ \xca\xbb\x46\xf0\xef\x3e\x7c\xf8\xd0\x23\xc3\x31\x75\x4f\xa4\x33\ \xe1\x4f\x65\x36\x00\xe4\x6f\x86\xcc\x00\xd8\x3b\x2d\x4a\xf8\x37\ \xa4\xcc\x9d\x20\xa5\x01\x60\x85\xbf\x99\x01\x80\xc9\x23\x98\x7a\ \xeb\x77\xee\xcf\x05\xe9\xf4\x7d\x72\x91\x25\x1c\x97\x6c\xdd\x2d\ \xdc\xfb\xbd\x74\xdc\x2a\x6e\xf0\xc7\x63\xd1\x96\xbd\x4c\xaf\xef\ \x8a\x97\x67\x15\x18\x00\xfd\x68\x7c\x60\x0a\x7a\x66\xe6\x4a\xb4\ \x7b\xdf\x7e\xb8\xfe\x82\xac\x77\x68\x3f\xda\xfd\xc9\xdf\x1c\xc3\ \x7f\x55\xe6\xa7\x68\x62\xa6\xbd\x73\x2e\x25\x83\x7f\xda\x18\xfe\ \x8d\x94\x8f\x8e\x8b\xda\x03\x13\xb5\x08\xb6\x60\x1d\x0d\xfc\x49\ \x0c\x80\xbe\x6a\xaf\xf8\x66\xbe\x4e\x52\x77\x76\xeb\x76\xed\x11\ \xc5\x06\xe0\x88\xbe\xd2\xf0\xe3\xc2\xb6\xf0\xb7\x37\x00\x5c\xe0\ \x9f\x48\xd1\x3d\x63\xa1\x30\x00\x9d\x25\x1f\x66\x4e\x90\xc2\x00\ \x38\x81\xbf\x91\x01\x80\xc9\x23\x78\x7a\x1f\x6d\xd8\x8d\x7e\x35\ \x61\x35\xfa\xd6\x43\xf3\x89\x42\x74\xe6\xae\xdd\x22\xd4\xfb\xc5\ \x77\xd6\x7d\x9e\x58\xc8\x0d\xfe\x7d\x9f\x5c\xd8\x79\xb7\x4e\xfb\ \xfa\x2e\x7b\x69\xa6\xa9\x01\xc8\x8d\x6b\xdf\x40\x75\xb7\xbc\x81\ \x6e\x18\x33\x0b\x2d\x59\xbb\x09\xae\xbf\xa0\xea\x61\x13\x30\xfb\ \x77\x0e\xee\xfc\x2f\x44\x93\x74\xf0\xb7\x32\x00\xa5\x89\xae\x29\ \xa6\xd6\xc0\x7a\x7e\x14\x1b\x00\x96\xd6\xc0\xa5\x8d\x82\xc8\xe0\ \x6f\x67\x00\x8a\x33\x7b\x0c\x57\xf2\xe3\xf2\x37\x4b\x0c\x40\xf6\ \x07\x06\x13\xc5\x09\x5a\x18\x00\x3a\x27\x63\x6f\x00\x88\x9f\xb1\ \x10\x1a\x80\x82\xc0\x07\x87\xf0\xc7\xc3\x09\xfc\x8b\x0d\x00\x4c\ \x1e\xc1\xd1\xdb\x7f\xf0\x10\x7a\x6d\xf1\x76\xa4\x8e\x5e\x46\x9d\ \x9d\xff\xc9\x9a\xcd\x42\xbd\xdf\x85\xd9\xbb\x75\x5e\xf0\xc7\xe3\ \xb2\xd6\x55\xcc\xaf\xcf\xd2\x00\x64\xe1\xff\xe5\xbf\xbd\x82\xbe\ \xfc\xd7\x51\xb9\xf1\xff\x5d\xf3\x0a\xfa\xc9\x33\xef\xa0\x77\x57\ \x6c\x86\xeb\x39\x80\x7a\xb8\x81\xd0\xae\xf7\x2e\x64\x78\xe6\x9f\ \x44\x93\x33\x6d\x25\x73\x29\x19\xfc\xd3\xe6\xdd\x01\x29\xf8\xa1\ \x37\x00\x2c\xad\x81\x8d\xbb\x04\x92\xc1\xdf\xca\x00\x44\xf2\xad\ \x81\x4b\x43\xfb\x8a\x46\x42\x6e\x28\x31\x00\x91\x84\xf2\x73\x2a\ \x03\x60\xd4\x9f\x98\x62\x19\xc3\xce\x00\x90\xc3\x9f\xcc\x00\xd8\ \xc3\x9f\xce\x00\xe0\x8b\xc9\x09\xfc\xf5\x06\x00\x26\x8f\x60\xe8\ \x6d\xde\xb5\x2f\x57\x2f\x8f\x77\xb9\xb3\xb6\xcc\xd5\x0c\x80\x28\ \xef\x17\x3f\xaf\xe7\x05\x7f\x3c\x1e\x9d\xbd\x99\xf9\xf5\x99\x1a\ \x80\x22\xf8\xe7\x46\xf6\xcf\xf8\xef\xf1\xbf\x9f\xf5\xd0\x34\xf4\ \xe2\x47\xab\xd0\xde\x03\x07\xe1\x7a\x0e\x90\xde\xc1\x1d\x8b\xd1\ \x8e\xa9\x43\x88\xe1\xdf\x91\x19\x88\xa6\x67\x9e\x37\x9c\x4b\xc9\ \xe1\x4f\xdf\x1e\xb8\x98\x1f\x5d\xa1\x73\x29\x66\x03\x50\xda\x25\ \x50\xa5\x6e\x0b\x5c\xc0\x5f\x49\x6b\x0f\x6c\x03\x7f\x5d\x4f\x80\ \x82\x3d\x00\xd9\xbf\xbc\x93\xd5\x00\xd0\xc3\x3f\x69\xf3\x4c\x84\ \x1e\xfe\x91\x06\x8a\xfe\xce\x66\xcb\x40\x14\xf0\xd7\x1b\x00\x16\ \xf8\x6b\x06\x00\x26\x0f\xf1\xf5\x66\xad\xda\x8c\xae\x9e\xbc\xc6\ \x3e\x2a\x97\xa0\x8e\x1e\x1b\x00\x91\xde\xef\x2f\xdb\x56\x71\x83\ \x3f\x1e\x73\x36\xec\x62\x7e\x7d\x86\x06\xc0\x06\xfe\xfa\x11\xba\ \x63\x3c\xba\x7d\xf2\x42\xb4\x61\xc7\x5e\xb8\x9e\x03\xa2\xb7\x67\ \xf9\x33\xc4\x75\xfe\xf3\x32\x37\x98\xce\xa5\xe4\xf0\xa7\x37\x00\ \xa5\x51\xc1\x29\xfa\xf6\xc0\x96\xf0\xa7\x6f\x0b\x5c\xc2\x5f\x9d\ \x01\xb0\x84\x7f\xce\x00\x28\xff\x30\xea\x01\xf0\x0a\x8b\x01\x60\ \x83\x7f\x92\x13\xfc\xed\x0d\x80\x61\x8b\x47\x8b\x16\xc0\xe4\xbb\ \x49\xd3\x8e\xe0\x8f\x07\x4c\x1e\x02\x87\x98\x74\xec\x40\xaf\xcd\ \x5d\x8b\xce\x79\x79\x3e\x33\x0c\x8d\xee\xac\xf1\x1e\x00\x51\xde\ \xef\x81\xec\xcf\x9d\xfa\xd8\x1c\x6e\xf0\x0f\x3d\x3a\x1f\x6d\xdf\ \xc1\xfe\xfa\x4a\x0c\x00\x05\xfc\xf5\xe3\x6b\x37\x8c\x45\x3f\x1f\ \x35\x0b\xcd\x5a\xbd\x0d\xae\x67\xd1\xf5\x76\x74\xa0\xa5\xad\xe7\ \xda\xc2\x7f\x53\xa6\x05\x4d\xcc\x4c\xb1\x35\x00\x24\x5d\x5c\x69\ \x0c\x80\x11\x3f\x58\x5a\x03\x6b\x26\xc0\x18\xfe\xf4\xad\x81\x4b\ \xf8\x9b\x37\x00\xb6\xf0\x3f\xbc\x11\xf0\x45\xa3\x10\xa0\x39\xb4\ \xcf\xff\xd9\xe1\x9f\xb4\x7e\x26\x42\xb3\xbb\x92\x16\xfe\x16\x2d\ \x80\x69\xe0\x8f\x87\x13\xf8\xe3\x9f\x83\xc9\x43\x3c\xbd\xb5\x9b\ \xb7\xa3\xff\xce\x58\x89\x62\x4f\xcc\x71\x04\x43\xb3\x65\x75\x5c\ \x05\x20\xca\xfb\x5d\xb0\x6e\x2b\x37\xf8\xe3\x9f\xbb\xf0\xd5\x85\ \x8e\x5e\x5f\x81\x01\x60\x84\x7f\xf1\x18\xf6\xe8\xdb\xe8\x95\x8f\ \xd7\xa0\xbd\xfb\x0f\xc0\xe7\x43\x50\xbd\x29\xad\x8f\xd8\xc6\xfb\ \x7e\x98\x79\xc4\x72\x3e\x25\x87\x3f\xb9\x01\x30\xe5\x07\xa3\x01\ \x30\x87\x3f\x9b\x01\x28\xe0\x6f\xe7\x06\xfe\x24\x81\x01\x90\x67\ \x16\xf3\xbf\x7b\x48\x92\x77\xd1\x18\x00\xd7\xe0\x9f\x48\xd2\xed\ \xae\x34\x31\x00\x56\x27\x8f\x07\xfc\xf1\x70\x02\x7f\x6c\x1e\x60\ \xf2\x10\x47\x0f\xdf\x99\xff\x65\xfc\xa7\x28\xf4\xc0\x2c\x2e\x30\ \x34\x5b\x56\xff\x74\xdb\x5e\x61\x8e\xdf\xd3\x33\x57\x73\x83\x3f\ \xfe\xf9\xff\x4c\x5f\xe1\xe8\xf5\x75\x1a\x00\x4e\xf0\xd7\x9b\x89\ \xfa\xdb\xc6\xa0\xdb\x5b\xe7\xa0\x15\x1b\xb6\xc0\xe7\x43\x30\x3d\ \xbc\x92\xba\xa4\xed\x42\x53\xf8\xaf\xcb\xfc\xc8\x76\x3e\x25\x87\ \x7f\x0b\xd1\x46\x40\x4b\x7e\x30\x18\x00\x7d\x6b\x60\xf3\x16\xc1\ \x34\x26\xa0\x88\xbd\x05\x7c\xb6\xe1\x78\x4c\xee\xc0\xcc\xef\xa4\ \x7f\xdf\x58\xfa\x4b\x34\xcb\xff\xb9\x0d\x07\x45\x2d\x0a\xe9\x5e\ \xbc\xcd\x33\x11\x9a\xdd\x95\x06\x06\x80\x1e\xfe\x69\x6a\xf8\x93\ \xb4\x03\xb6\xeb\x15\x00\x93\x87\xbf\x7a\xb8\x5c\x6d\xf2\xf2\xed\ \xe8\x82\xd1\x0b\xd1\xb1\x1c\xef\x84\xad\x9e\xa9\xd3\x1a\x00\x37\ \x8f\xdf\x55\xe3\x16\x73\x7d\xbf\x6f\x7f\xba\xd1\xd1\xeb\xcb\x19\ \x00\x17\xe0\xaf\xd7\xfb\xe6\x75\xa3\xd1\x95\x2f\xbe\x8b\xe6\xac\ \xdd\x0a\x9f\x0f\x41\xf4\xf0\x7c\xf8\x5e\xfb\xa3\xe6\x5d\xfd\x32\ \x0f\xda\xce\xa7\x74\xf0\xb7\x5e\x05\xb0\x83\x3f\xad\x01\xd0\xb7\ \x06\x36\x87\x3f\xb9\x01\x30\x6c\x11\x2c\xd1\xb5\x06\x8e\xc6\x86\ \x7d\xae\xab\x0b\x60\x5c\x3d\x99\xd4\x00\x74\xee\x36\x2c\xea\x4f\ \xcc\x6a\x00\x0c\x97\x45\xa8\x76\x58\x16\x1a\x00\xdb\x93\x47\x69\ \x00\xac\x9c\xa5\x13\xf8\x6b\x06\x00\x26\x0f\xef\xf5\x76\xed\x3f\ \x98\xdb\xfd\xde\xf8\xdc\x62\xae\x1b\xe0\x48\x76\xd3\xd3\x18\x00\ \xb7\x8f\x5f\xfc\xc9\x8f\xb9\xbd\xdf\x13\xef\x9f\x85\xb6\x6e\xef\ \x70\xf4\xfa\x2e\x7b\xf1\x43\x57\xe1\x5f\xac\x27\x3f\x3e\x1d\xbd\ \x31\x77\x2d\x3a\x70\xe8\x10\x7c\x3e\x7c\xd4\xc3\xf3\xe2\x84\xcc\ \x34\xb4\x31\x93\x2a\x81\xff\x96\x8c\x92\xfd\xb7\x29\xb6\xf3\x29\ \x1d\xfc\xcd\x0d\x00\x09\xfc\x69\x0c\x40\xc1\x7e\x36\x4b\xf8\xa7\ \xd8\xe1\x4f\xd9\x16\x38\x97\xf7\x13\x4b\xd5\x77\x75\x01\x8c\x2b\ \x32\xd1\x0f\x99\xc0\x9f\xd5\x00\x98\x3e\x13\xa1\x84\x7f\xa4\x81\ \xdc\xb9\xd1\x18\x00\xbb\x65\x25\x27\xf0\xc7\x03\x26\x0f\x6f\xf5\ \x56\x76\xec\x43\x37\xbd\xb3\x1e\x85\x1f\x5f\xc8\xb5\xf4\x8d\xa6\ \x8e\x9e\xd4\x00\xb8\x7d\xfc\x3e\x5d\xbf\x95\xeb\xfb\x3d\xf7\xe5\ \xf9\x8e\x5f\xdf\x4f\x9f\x79\xc7\x33\xf8\xeb\xc7\x49\xff\x9a\x88\ \xee\x9d\xb6\x04\x6d\xdd\xbd\x0f\x3e\x6f\x3e\xe8\x69\x73\xe4\xfc\ \xcc\x4d\x25\x06\x60\x61\xe6\x5a\xa2\xf9\x94\x0e\xfe\xc6\x06\x40\ \xdf\x1a\xd8\xae\x45\x30\xc9\x46\xc0\x92\x52\x76\xdb\xf2\x77\x46\ \xf8\x13\x34\x05\x2a\x61\x79\x5c\x1d\xd6\xd9\x14\x28\x14\x57\x7e\ \x61\x0f\x7f\xa5\xab\xd4\xc0\xe0\x97\xd3\x1a\x00\xcb\x0d\x11\x0c\ \x06\x80\xd4\xb9\x91\x1a\x00\x92\x67\x4a\x4e\xe0\x8f\xff\x0c\x93\ \x87\xfb\x7a\x5a\x53\x9e\xcb\x74\x4d\x79\xfc\x82\x3f\xa9\x01\xf0\ \xe2\xf8\xbd\xf8\xf1\x5a\xae\xef\xf7\xae\xb7\x57\x38\x7e\x7d\x3f\ \x7d\xe6\x6d\xcf\xe1\xaf\x1f\xdf\xb8\xe9\x2d\xf4\xbb\xd7\xe7\xa0\ \xf9\x1b\x3a\xe0\xf3\xe6\xa1\x9e\x36\x4f\x4e\xcd\xbc\x5e\x62\x00\ \xde\xc9\xbc\x44\x34\x9f\xd6\x53\x07\xb9\x19\xc0\xbf\x91\x0c\xfe\ \x24\x06\xc0\x30\xc7\x86\xb2\x2d\x30\x15\xfc\x69\x0d\x40\x42\xf9\ \x39\xce\xff\xc9\x1b\x00\xf5\x56\x7b\xf8\x77\x19\x00\x67\xf0\x4f\ \x72\x82\x7f\x8a\x1e\xfe\x84\x06\x80\x74\x43\x89\x13\xf8\xe3\xbf\ \x87\xc9\xc3\x3d\x3d\xd3\xa6\x3c\x3e\xc2\x9f\xc4\x00\x78\x75\xfc\ \xfe\x92\x59\xc3\xf5\xfd\xbe\xb3\x7a\x87\xe3\xd7\xd7\x69\x00\x7c\ \x80\x7f\xf1\x48\xff\x6f\x06\x1a\xb7\x60\x3d\xda\x7f\x00\xaa\x07\ \xdc\xd6\xd3\xcf\x97\x1b\x33\xe7\xe8\x4a\xff\x54\xe2\xf9\x94\x36\ \xc5\xd5\x10\xfe\x8d\x64\xf0\xb7\x7b\x0c\x60\x19\x62\xc7\x60\x00\ \xcc\x12\x76\x1d\x19\x00\x49\xbd\xa5\xcb\x00\x48\xf2\x33\x56\xf0\ \xd7\x1b\x80\xdc\x6e\x43\x8b\x2e\x80\x64\xcb\x18\x16\x1b\x22\x28\ \x0d\x40\x94\x06\xfe\x04\x06\x80\x66\x37\xa9\x13\xf8\xdb\xb5\x03\ \x86\xc9\x83\x4d\xcf\xb2\x29\x8f\xcf\xf0\xb7\x33\x00\x5e\x1e\xbf\ \x81\x2f\x7c\xca\xed\xfd\x7e\xe7\xa1\x79\x68\xcf\x81\x43\x8e\x5f\ \x5f\xce\x00\x08\x00\x7f\xbd\xde\xf7\xee\x7a\x0b\xdd\x33\xe9\x13\ \xb4\x76\xd3\x56\xf8\xbc\xb9\xa4\xa7\x9f\x33\x17\x65\xba\x1a\x05\ \x2d\xc9\x5c\x4d\x3c\x9f\xb2\x1a\x80\x92\xae\xb0\x84\xf0\x37\x33\ \x00\xb6\x09\xb6\x94\x06\xc0\x2a\x5e\x9f\xc5\x00\x74\xf5\xfa\x91\ \x9f\xd6\x19\x00\x75\x92\x15\xfc\x23\x7a\xf8\xdb\xb4\x01\x26\x5b\ \xc6\xb0\xd8\x10\x41\x53\x57\x99\x1f\xc4\xf0\x6f\xe0\x07\x7f\x3b\ \x03\x40\xd2\x28\x08\x26\x0f\x7e\x7a\xb3\xd6\xef\x46\x57\x5a\x35\ \xe5\x11\x00\xfe\x56\x06\xc0\xcb\xe3\xb7\x65\xcf\x01\xae\xef\x37\ \xf5\xea\x32\x2e\xaf\x0f\xef\x01\x10\x09\xfe\x7a\xbd\x6f\x5f\xff\ \x1a\xfa\xc3\xe8\xf7\xd1\xe2\x8d\x1d\xf0\x79\xe3\xac\xa7\x9f\x37\ \x3f\xc8\x3c\xa6\xdb\xfd\x7f\x3f\xf1\x7c\x4a\x6f\x00\x5a\x8c\x5b\ \xc2\x37\xa4\x99\x0d\x00\x51\x7c\x3d\x85\x01\xb0\xeb\xad\x43\xd2\ \x16\xb8\x18\xfe\xba\x66\x7f\xe3\x3b\xf7\x00\xd4\xc5\xd4\x4f\xac\ \xe0\x7f\x78\xa8\xb6\x6d\x80\x1d\xc3\x3f\x91\xa2\xab\xab\x2c\x32\ \x00\x6c\xf0\x4f\x33\xc1\xdf\xca\x00\x90\x76\x09\x84\xc9\xc3\x99\ \x1e\x6e\xca\xf3\xea\xe2\xed\x48\x79\x65\x99\x2b\xb0\x76\x43\xcf\ \xc8\x00\x78\x7d\xfc\xc6\x2d\xed\xe0\xfa\x7e\x6f\x7b\x77\x03\x97\ \xd7\x87\xab\x00\x44\x84\xbf\x5e\xef\x8b\xd9\x7f\x3f\xf7\xe9\x77\ \xd1\x84\x45\x1b\xd0\x21\xf8\xfc\x72\xd1\xd3\xcf\x89\xb8\xd1\x8f\ \x66\x00\xa6\x64\xde\x24\x9e\x4f\xe9\xe1\x9f\x36\x6f\x09\xcf\x60\ \x00\x88\x7b\xd7\x10\xee\x03\x20\x69\xac\x47\x63\x00\x0a\x39\x9e\ \xcb\x02\x98\xad\x4b\x01\x94\x37\x95\x3a\x85\xe2\x7e\xc2\x49\x66\ \x03\x50\xf8\x46\x6c\x76\x43\xd2\xd4\x55\xea\x0c\x00\xd1\x49\x33\ \x2b\xfd\x60\x80\xbf\x99\x01\xa0\x69\x11\x0c\x93\x07\x9b\xde\xe6\ \xdd\x07\xd0\x3d\x1f\x6e\x42\xdf\x7b\x6a\x91\xab\xb0\x76\x43\xaf\ \xd8\x00\xf8\x71\xfc\xae\x7f\x7b\x3d\xd7\xf7\xdb\xbe\x62\x07\x97\ \xd7\x67\xdb\x0e\xd8\x67\xf8\x17\x7f\xef\xf7\xef\x69\x47\x8f\xbe\ \xbb\x0c\xed\xdc\x77\x00\x3e\xbf\x0e\xf4\x8a\xe7\x45\xdc\xf1\x6f\ \x6b\x66\x38\xd5\x7c\x4a\x0f\xff\xb4\x79\x4b\x78\x4a\x03\x40\xd5\ \xb8\x8e\xc0\x00\x90\x76\xd5\x25\x35\x00\xa5\x37\xf2\x2a\x0a\x49\ \xf2\xfa\x1c\xfc\xfb\xf5\xbb\xb4\x87\x3d\xfc\x55\x66\x03\x50\xfa\ \x66\x92\xb6\x6d\x80\x89\xeb\x2a\x3b\x1f\x03\xa4\x99\x0d\xc0\xe1\ \x0b\x20\xcd\x50\x47\xda\xe2\x08\xfe\x24\x06\x00\x26\x8f\x42\xbd\ \x79\x9b\xf6\xa0\x3f\xd0\x34\xe5\x11\x0c\xfe\xc5\x06\xc0\xaf\xf3\ \x31\xec\xe5\xa5\xdc\xde\x2f\x7e\xe4\xb2\x73\x3f\x9f\x2e\x7c\xd4\ \x06\xc0\x47\xf8\xeb\xc7\x77\xfe\xd1\x8a\xfe\xf6\xd6\x5c\xb4\x6c\ \xcb\x2e\xf8\xfc\x32\xe8\x15\xcf\x8b\x2b\x33\x3f\x43\x6b\x32\x97\ \x50\xcd\xa7\xf4\xf0\x4f\x9b\x77\x85\xa5\x30\x00\x51\x83\xbb\x7f\ \xda\xb6\xc0\x85\xb9\x38\xe4\x09\xbb\x24\x06\xc0\x78\x25\x3f\x37\ \x0e\xb5\xb4\xb4\x54\x75\xeb\xd3\x3f\xfd\x75\x2b\x03\x60\xd6\x07\ \x80\xc4\x00\x18\xbf\x99\x14\xb3\x01\x28\x75\x5a\x29\xdb\x36\xc0\ \x56\x06\xa0\xcb\x01\xa6\x19\xea\x48\x5b\x1c\xc1\xdf\xce\x00\xc0\ \xe4\x71\x58\x6f\xff\x81\x83\xb9\x25\xeb\x73\x5f\x5f\xee\x39\xac\ \xdd\xd0\xd3\x0c\x80\x5f\xe7\xa3\x63\xdf\xc1\xae\x72\x48\x0e\xef\ \xb7\x69\xd4\x52\x6e\xaf\x8f\xca\x00\x08\x02\x7f\xfd\xf8\xd2\xdf\ \xc7\xa0\xf3\x9f\x7d\x1f\x4d\xf9\x74\x53\xae\xd1\x12\x7c\x7e\xc9\ \xf4\x8a\xe7\x45\x5c\xfb\xbf\xa8\xfd\x6a\xaa\xf9\x94\x1e\xfe\x69\ \xf3\xae\xb0\xc4\x4c\x49\x95\x18\x00\xda\xb6\xc0\xa5\xa1\x78\xe4\ \xf1\xfa\x76\x06\xc0\x02\xfe\x87\xff\xbd\x7f\xd3\x57\x4a\x52\x00\ \xf5\x06\xc0\xae\x0d\xb0\x95\x01\x30\x77\x32\x6c\x06\xc0\x0c\xfe\ \xac\x06\xa0\xf0\xf9\x4f\x9a\xa1\x8e\xb4\xc5\x11\xfc\xad\x0c\x00\ \xc0\x7f\x07\x5a\xbf\xa5\x03\x3d\xf4\xd1\x26\x74\xe6\x33\x8b\x7d\ \x83\xb5\x1b\x7a\xd8\x00\xf8\x79\x3e\x26\xaf\xd8\xc1\xf5\xfd\xde\ \xf8\xce\x7a\x6e\xaf\x8f\xd8\x00\x08\x08\xff\x62\xbd\xf8\xdd\x6d\ \xe8\xe1\xa9\xf3\xd0\xc6\xad\xdb\x00\xfe\x94\x06\x60\x76\xfb\x5d\ \xe8\xc3\xb6\x9b\xa8\xe6\x53\x96\x5e\x2e\xb4\x6d\x81\x8b\xe3\xe6\ \xa3\x05\x23\x49\xdd\x16\xd8\x38\x11\x97\xbc\xb7\x4e\xd8\xc2\x04\ \x94\xc2\x5f\x31\x4e\x03\x0c\xc7\x93\x83\x2d\x76\x0a\x32\x19\x00\ \xeb\x65\x0c\x7a\x03\x60\xfc\x8c\x25\xcd\x6c\x00\x4a\x77\x7f\xa6\ \x99\x76\x91\x3a\x81\xbf\x99\x01\xa8\x74\xf8\x7f\xbc\x7a\x33\xfa\ \xf3\x84\xa5\xe8\x04\xd2\x65\xfe\x00\xc1\x1f\x8f\x4d\x3b\xf7\xf9\ \x7a\x3e\x6e\x9d\xb1\x81\xeb\xfb\x6d\x5d\xd6\xc1\xed\xf5\xfd\xfe\ \x8d\x39\x65\x01\x7f\xbd\xde\xf1\x37\xbd\x8e\xae\x7d\x73\x26\x5a\ \xb1\x75\x27\xc0\x9f\xc0\x00\xe0\x79\xf3\xed\xb6\x87\xd0\x3b\xad\ \xf7\x50\xcd\xa7\x2c\xbd\x5c\x58\x0d\x40\xd7\xa6\xf3\xae\x41\xd3\ \x12\xd8\xba\x17\x0e\x79\x63\x3d\x33\x03\x70\x38\xb1\xd7\x1a\xfe\ \xb9\xae\x80\x31\x79\x00\x36\x00\xe7\x18\xd7\x09\xb2\x19\x00\xfb\ \x67\x18\x3c\xe0\xcf\x70\xf7\xdf\x60\x06\xff\x14\x13\xfc\xf1\x70\ \x02\x7f\x23\x03\x50\xa9\xf0\xef\xc8\xea\x8c\x9b\xbf\x0e\x9d\xff\ \xca\x7c\x74\xac\x40\xb0\xe6\xad\x37\xf4\xa5\x4f\x7d\x3f\x1f\xc9\ \xd1\xcb\xb8\xbd\xdf\x6f\x66\xc7\xd6\x3d\xfc\x36\xc0\x8d\x99\xb7\ \xae\xac\xe0\xaf\xd7\xfb\xf2\xdf\xc7\xa0\x8b\x9f\xff\x00\xbd\xb3\ \x7c\x33\x54\x0f\x98\x18\x00\x6d\x3e\x9d\xdc\x3a\x12\x65\x5a\x1f\ \xa5\x9a\x4f\x59\x7a\xb9\xb0\x18\x80\xd2\xcc\x99\x14\x75\x5b\x60\ \xeb\x5e\x38\x2a\x55\x4b\xe0\x12\x16\x6b\x69\xbd\x36\xf0\xcf\x8d\ \xb8\x9c\xc2\x29\x80\x97\xd1\x74\x02\xb4\x32\x00\x64\x1b\x18\xc8\ \x0d\x80\xf5\xee\x4a\x7a\x03\xc0\x13\xfe\x78\x38\x81\x7f\xb1\x01\ \xa8\x44\xf8\x6f\xdc\xd6\x81\x1e\x79\x7f\x25\x6a\x7c\xea\x63\xe1\ \x60\xed\x86\xde\x98\xf9\xeb\x7d\x3d\x1f\x38\xac\xe7\xdb\x1c\x73\ \x12\xce\x7a\xf1\x53\xae\xaf\xef\xe0\xa1\x43\x68\xe0\x83\x53\xcb\ \x0e\xfe\xc5\xdf\xdb\xf8\xc0\x14\xf4\xcc\xcc\x95\x68\xef\x81\x83\ \xf0\x18\x30\x6f\x00\xf4\x37\x53\x6d\xad\xa3\xd0\xc4\xd6\x67\xa9\ \xe6\x53\x96\x5e\x2e\x24\x6d\x81\xed\xba\xcc\xd2\xb6\x05\xd6\x1b\ \x00\xe3\x44\xdc\x24\xb3\x01\xc8\xb5\x08\x2e\x32\x00\x96\x4c\x8f\ \xcb\x97\xe0\x10\xa0\xab\x9d\x18\x00\x3a\xf8\x93\x1b\x00\xfb\xd2\ \x0a\x3a\x03\x90\x3b\x61\x86\x75\x9f\x2d\x8c\x21\x12\x69\x47\xf0\ \xd7\x1b\x80\x4a\x83\xff\x8a\xed\x7b\xd0\xf5\x93\x97\xa1\xe8\x83\ \x1f\x09\x0b\x6b\xde\x7a\x38\x2b\xdf\xef\xf3\x31\x7d\xcd\x2e\xae\ \xef\xf7\x9a\xa9\xeb\xb8\x5f\x2f\xcb\xb7\xee\x42\x7d\xff\x39\xb1\ \x6c\xe1\xaf\x1f\x27\xdc\xde\x86\x6e\x99\xb0\x00\xad\xed\xd8\x53\ \xd1\x37\x03\xc5\x2b\xa9\xe3\x5a\xdf\x44\xe3\xdb\x5e\xa1\x9a\x4f\ \xd9\xe0\x4f\x6e\x00\xcc\xe2\xe6\x59\x0d\x80\x79\x1c\x3e\x9b\x09\ \x88\x68\xdc\xd5\xe2\xfa\xed\xe0\x9f\x33\x00\xea\xef\xba\x65\xff\ \xcf\x2d\x4e\x0d\x00\x4d\xe9\x02\x89\x01\x20\xab\xab\x24\x37\x00\ \x9d\x27\xcd\xb0\xee\xb3\x85\x31\x44\x22\xed\x08\xfe\x9a\x01\xa8\ \x94\x0f\x7b\x67\x53\x9e\x71\x2b\xd1\xb7\xee\x15\x1b\xd6\x3c\xf5\ \x5a\x5e\x5d\x86\xc6\x2e\x58\x2f\xc4\xf9\xb8\xfb\x83\x8d\x5c\xdf\ \xef\x1b\x4b\xb6\xbb\x72\xbd\x6c\xde\xb5\x0f\xfd\x75\xec\x27\xe8\ \xff\xfd\xa3\xb5\x6c\xe1\xaf\x1f\x5f\xb9\x7e\x0c\xba\xf4\xa5\x99\ \xe8\xbd\x95\x5b\x2a\x72\x25\xb0\x74\x25\x75\x3c\x9a\xd4\xde\x4a\ \x35\x97\xb2\xc1\x9f\xcc\x00\x58\xf5\x9a\x61\x31\x00\x96\xbd\x70\ \x18\x0c\x40\x44\xcf\x5e\xcb\xc7\xf8\x85\x23\x14\x57\x6f\xc4\x2b\ \x00\xff\x75\x62\x00\xe8\xe0\x6f\x6f\x00\xc8\x43\x15\xc8\x0c\x80\ \x35\xfc\xd3\xcc\xf0\xd7\x0c\x00\x2b\xfc\xf1\xa8\x84\x0f\x3b\x6e\ \xca\xf3\xfc\xfc\xad\x87\x9b\xf2\x04\xe0\x4e\x9d\x87\xde\x29\x4f\ \x2d\xca\x6d\xb6\x5b\xb2\x75\xb7\x50\xe7\xe3\xbc\x37\x56\x70\x7d\ \xbf\x1b\x76\x1d\x70\xf5\xfa\xdb\xb5\x77\x3f\x7a\xf6\xdd\xc5\x48\ \x7d\x78\x72\xd9\xc2\xbf\x58\xef\xac\xfb\x26\xa2\x91\xd3\x17\xa2\ \xcd\xdb\xb6\x57\xcc\x1e\x20\xa3\x95\xd4\x49\x99\xc9\x4c\x06\x80\ \x3e\xd4\xcd\x7a\x1f\x80\x5d\xa3\x39\x5a\x03\xa0\xb5\x05\x36\x4f\ \xc4\xa5\x6d\xae\x57\xc4\xde\x4e\x56\x93\x30\x5d\xbe\xc7\xb2\x11\ \x90\x9d\x01\x88\x50\xc3\xdf\xda\x00\x50\x25\x2a\x11\x18\x80\x82\ \x13\x67\x16\xfa\xc0\x08\x7f\x3c\x9c\xc0\x1f\xff\x5c\x39\xc3\x1f\ \x37\xe5\xb9\xe3\x5d\xdc\x94\x67\x61\x60\x96\xe9\x9d\xe8\xe1\x40\ \x9c\x9f\x8e\x5b\x85\xc6\x2f\xdb\x81\x70\x5f\x1c\xd1\xce\x07\x8e\ \x4d\x3e\xfe\x91\x05\xdc\xde\x6f\xc3\x73\x4b\x3c\xbd\xfe\xe6\xad\ \xda\x80\x6e\x1c\xfb\x11\xaa\xbf\x73\x7c\xd9\xc2\x5f\xaf\x17\xf9\ \xc7\x9b\xe8\x96\x71\xb3\xd1\xfa\x8e\xdd\x65\x5f\x3d\x60\xb4\x92\ \x3a\x21\x33\x95\xda\x00\xb0\x25\xba\x9a\x1b\x00\x92\x2e\xb3\x34\ \x06\xa0\x93\x6b\x96\x71\xf8\x2c\xbd\x75\x74\x2d\x82\x29\x3a\x02\ \x86\x63\xca\xd3\xdd\xea\x24\xf5\x35\x62\xf8\x4b\x2e\xc2\x3f\x91\ \xa4\x4b\x54\xb2\x31\x00\x25\x27\xcf\x2c\xf4\x81\x11\xfe\x78\x38\ \x81\x3f\xbe\xd8\xcb\x11\xfe\x86\x4d\x79\xca\x18\xfe\x8d\xcf\x2f\ \x41\x0f\xce\xda\x8c\x36\xee\x3e\x20\xf4\xe4\x3b\x33\x7b\x5e\x78\ \x1e\xbf\xab\xdb\xd7\xfa\xf2\x7e\x0f\x1c\x3a\x84\xda\x16\xae\x47\ \x17\x3d\xff\x01\xfa\xea\xf5\x63\xca\x12\xfe\x7a\xbd\xaf\xdd\x30\ \x16\xfd\x7c\xd4\x2c\xf4\xd1\x9a\x6d\x65\x5b\x3a\xe8\x74\x25\x15\ \xff\x1c\x6b\x9c\xbb\x69\x3c\x3c\x61\x97\x59\x52\x03\x50\xc0\x36\ \xbb\x38\x7c\x56\xf8\x13\x34\x04\x2a\x1a\xaf\xe0\x3e\x00\xe3\x69\ \x0d\x00\x1b\xfc\x93\xf6\x21\x08\x34\x89\x4a\x16\x06\xc0\xf0\xe4\ \xd9\xb4\x01\x66\xa9\x23\x75\x02\x7f\x7c\xd1\x97\x0b\xfc\x2d\x9b\ \xf2\x94\x21\xfc\x4f\x7c\x74\x41\x2e\x92\xf8\x83\x75\xbb\x4b\x4a\ \xba\x44\x9d\x7c\x1f\x98\xb5\x89\xeb\xf1\x1b\xb5\x70\x9b\xef\xef\ \x77\xe3\xce\xbd\xe8\xbe\xb7\x3f\x45\x67\xde\xdb\x5e\x96\xf0\x2f\ \xfe\xde\x61\x8f\xbe\x8d\x5e\xf9\x78\x4d\xee\xf3\x56\x4e\xd5\x03\ \x4e\xe1\x8f\x7f\x9e\x35\xce\xdd\x34\x1e\x9e\xb0\xcb\x2c\x89\x01\ \x28\x59\xd9\xb6\xcd\xc3\x61\x84\x3f\xa5\x01\x08\xc5\xe4\x71\xdd\ \x42\x31\x75\x1a\x8d\x01\x60\x87\x7f\xd2\x3e\x04\x81\x18\xfe\xe6\ \x06\xc0\xd4\xb9\x31\x1a\x00\x2b\x67\xe9\x04\xfe\x9a\x01\x08\x32\ \xfc\x6d\x9b\xf2\x94\x19\xfc\x71\x0d\x3d\xde\xcf\x60\x96\x7d\x2f\ \xf2\xe4\x7b\xd1\xd8\x95\x5c\x8f\xdf\xaa\x8e\xfd\xc2\xbc\x5f\x8c\ \x43\xbc\x81\xee\xd7\xaf\xce\x46\xc7\xde\x3c\xae\xec\xab\x07\xea\ \xef\x9a\x80\xfe\x95\x59\x8c\x36\xed\xda\x57\x16\xd5\x03\x4e\xe1\ \x8f\xe7\x52\xd6\x38\x77\xd3\x78\x78\xc2\x2e\xb3\x76\x06\xc0\xf0\ \xb1\x76\x22\xc5\x6c\x00\x2c\xe1\x4f\x69\x00\xea\x24\x79\x4a\xb7\ \xec\xff\xcc\x24\x35\x00\xb9\x90\x81\xa2\x5f\x4e\xb7\x61\xc1\x26\ \x04\x81\x18\xfe\xc6\x06\xc0\x72\xd9\x86\xc1\x00\xd8\x2d\x2b\x39\ \x81\x3f\x1e\x41\x85\x3f\x6e\xca\xf3\xfb\xec\x1d\xf0\xff\x7b\x78\ \x7e\xa0\x4b\xf3\x48\xf4\x4e\xfe\xdf\x22\x74\xcb\xf4\xf5\x68\xf1\ \xd6\xbd\x81\x5d\x76\xc5\x37\x8c\xe1\xc7\x16\x70\x3b\x7e\xdf\x1f\ \xb9\x58\xd8\xf7\x8b\x3b\xf3\x8d\xfc\x70\x25\x1a\xf6\xc8\xb4\xb2\ \xaf\x1e\xf8\xff\x6e\x1c\x9b\x33\x3d\x1f\xaf\xdb\x1e\xe8\x0d\xc5\ \x4e\xe1\xaf\x37\x00\xf4\x55\x5d\x26\x09\xb1\x84\x5d\x66\xad\x0c\ \x80\xe9\x9e\x36\x46\x03\x60\xb4\xe1\x9e\xa6\x25\xb0\xc1\x26\xc0\ \xf7\xbb\x85\x63\xf2\x02\x12\x03\xd0\x99\x30\x54\xe4\x3c\x58\x0d\ \x80\x61\x29\x04\x4d\x2d\x65\x91\x01\xb0\x7d\x66\x43\x69\x00\x48\ \x9e\x29\x39\x81\x3f\xfe\x73\x90\xe0\x8f\x37\xb6\xe1\xa6\x3c\xe7\ \xbc\xb6\xbc\x2c\xea\xf2\xad\xf4\xf0\xfe\x85\x4b\xde\x5a\x99\x7b\ \xbf\x56\xcb\xad\x41\xb9\xf3\xfa\x64\xe3\x2e\xae\xc7\xef\xaa\x09\ \xab\x03\x01\x9b\x8f\x96\xaf\x43\x7f\x7d\xfd\x43\x14\xba\xe5\xcd\ \xb2\xaf\x1e\x68\x7e\xa8\x1d\xbd\xfc\xc1\x12\xb4\xad\xa3\x23\x70\ \x2b\x8b\x4e\xe1\xaf\x19\x00\xb6\x4c\x17\x93\x84\x58\xc2\x2e\xb3\ \x66\x06\xc0\x72\x43\x3b\x83\x01\x30\xab\xb6\x73\x62\x00\xea\x62\ \xf2\xdc\x6e\xd9\xff\x59\x61\xf7\x8d\x5d\xf1\x82\xa5\xcb\x0e\x2c\ \x06\xc0\xb4\x0e\x92\xd1\x00\x10\x6d\xd8\xa0\x30\x00\xa4\x1b\x4a\ \x9c\xc0\x1f\xff\x7d\x10\x3e\x9c\x1d\x7b\x0f\xa2\x87\x3e\xda\x8c\ \xce\x20\x6d\xca\x13\x60\xf8\x27\x9e\x5b\x82\xfe\x3b\x73\x13\xda\ \xb0\x6b\x7f\x59\x6d\xb8\x7a\xe8\xbd\xd5\x5c\x8f\xdf\xff\x66\xae\ \x09\xd4\x9d\xe6\xd6\x8e\x1d\xe8\x8d\xb9\x6b\xd0\x0f\x9f\x79\x2f\ \x17\xc9\x5b\xce\xd5\x03\x27\xdf\x3e\x06\xfd\x7b\xe2\x27\x68\xcb\ \xce\x3d\x81\xb9\xb9\x70\x0a\x7f\xfc\x67\xf6\x44\x57\x93\x84\x58\ \x8a\x96\xc0\xc5\x06\xc0\xb6\x9a\x8d\xd2\x00\x58\x95\xda\x3b\x5b\ \x01\x50\x96\x75\x0b\xc7\xd4\x8d\xd6\xf0\x57\x0a\x0c\x40\xf1\x33\ \x07\x5a\x03\x60\x19\x82\xc0\x60\x00\x48\x77\x6b\x92\x1a\x00\x9a\ \xdd\xa4\x4e\xe0\x6f\xd7\x0e\xd8\xef\x0f\xe7\x92\xad\x7b\xd1\xdf\ \xa6\xae\x43\x27\x3c\xba\xa0\xac\x12\xf9\x8a\xf5\x4e\xbc\xff\x23\ \xf4\xdb\x89\xab\xd1\xbb\x6b\x77\x11\x67\xb4\x07\xed\x99\xeb\x65\ \xaf\x2f\xe4\x7a\xfc\x3e\x59\xb3\x39\xb0\x1b\x58\x71\xea\xde\xbf\ \xa7\x2c\x46\xdf\xbb\x7b\x72\x59\x57\x0f\x7c\xe3\xa6\xb7\xd0\xef\ \x5e\x9f\x83\xe6\x6f\xe8\x10\xfe\x7a\x76\x0a\x7f\xfc\xf7\xec\x89\ \xae\x26\x09\xb1\x8c\x06\x80\xa8\x94\x9d\xc2\x00\xd8\xe5\xec\xd0\ \x1a\x00\x7d\x48\x50\x48\x92\xd7\x77\xab\x8b\xa9\x5b\xac\xe1\xdf\ \x65\x00\x72\x3f\x4c\xd0\x0a\xd8\xfc\x19\x86\x4d\x08\x02\xf5\xdd\ \x3f\xf9\x6e\x4d\x12\x03\x40\x5b\x4a\xe2\x04\xfe\xb4\x06\xc0\x8b\ \x0f\xe7\x8e\xec\x9f\x27\x2f\xdf\x8e\x2e\x1c\xb3\x22\xd7\xe8\xa5\ \xdc\xe2\x78\xf5\x7a\xf2\xf3\x87\xef\x64\x3b\xf6\xec\x0f\x0c\xbc\ \x58\xf4\x70\xa3\xa5\x93\x1f\x99\xcd\xed\xf8\x9d\x92\xd5\xea\x28\ \x83\xea\x15\x6c\xf6\xde\x5e\xb6\x39\x57\x62\xf7\xf5\x1b\xdf\x2a\ \xeb\xea\x81\xf4\xff\x66\xa0\x71\x0b\xd6\xe7\x7a\x2d\x88\x78\x3e\ \x9c\xc2\x9f\xa4\x1d\xb0\xf9\x4a\xaf\x49\x48\x1c\xb5\x01\x48\x93\ \xe7\xd8\x10\x1a\x00\x92\x90\x3d\x1a\x03\x50\xdc\xe9\xb7\x4e\x52\ \x37\xe3\x3d\x00\x1d\xd6\xf0\x57\x74\x3f\x98\x64\x36\x00\x87\xdf\ \x80\x4d\x08\x02\x85\x01\xd0\xda\x30\x92\xee\xd6\xb4\x33\x00\x2c\ \x75\xa4\x4e\xe0\x4f\x63\x00\xdc\xfe\x70\xae\xdf\xba\x1d\x3d\xf2\ \xfe\x6a\xd4\xf0\xec\xe2\xb2\xcd\xe2\xc7\x3f\x7f\xd2\xc3\x1f\xa1\ \xeb\x26\x2d\x45\x1f\xad\xda\x5c\x31\x2d\x96\x71\x7b\x65\x9e\xe7\ \xe3\xf2\x37\x16\x96\x5d\x68\xd5\xb6\xac\x09\x7c\xfc\xbd\xe5\x5d\ \x8d\x88\xca\xb4\x7a\xe0\x94\xbb\x27\xa1\x07\xde\x59\x8a\xb6\x17\ \x99\x5e\xbf\xcf\x87\x53\xf8\xb3\x18\x80\xae\x79\xde\x24\x24\x8e\ \xd2\x00\x44\x0d\xee\xfe\x69\x5a\x02\x17\x1b\x00\xd2\x84\x5d\x52\ \x03\xa0\x67\xb9\xee\xef\xb7\xe1\x24\xc0\x5d\xc6\x4e\x41\x29\xfa\ \xa1\x24\xb3\x01\xe8\x7a\x13\x36\x21\x08\xc4\x71\x8a\xa9\x12\x03\ \x40\xd2\x0a\xd8\xcc\x00\xb0\x86\x48\x38\x81\x3f\xa9\x01\x70\xfb\ \xc3\xf9\xf4\xcc\xd5\x28\xfa\xd0\xec\xb2\xcd\xe2\x3f\xf6\x81\xb9\ \xe8\xc2\x57\x17\xa2\x57\x3f\x59\x8b\xb6\x6e\xef\xa8\x98\x78\x55\ \x4d\xeb\x89\x0f\x56\x71\x3d\x1f\x0f\xbf\xb7\xb2\xac\x8f\xdf\x9c\ \xb5\x5b\xd1\xd5\xa3\x3f\x40\xc7\xdf\xf4\x7a\xd9\x56\x0f\xe0\x52\ \xc9\x9b\x27\xcc\xcf\x75\x23\x14\xe1\x7c\x38\x85\x3f\xad\x01\x28\ \x9c\xeb\x4d\x42\xe2\x28\x0c\x40\x17\x8f\x08\x4b\xd9\x6d\x0c\x00\ \x4d\xbc\x3e\x89\x01\x28\x65\xb9\xb6\x09\x50\xdd\x81\x83\x80\xf6\ \x5a\xc3\x5f\x31\x4c\x02\x24\x35\x00\x85\x6f\xc4\x26\x04\x81\x38\ \x4e\xb1\xd0\x00\x10\x9d\x2c\xb3\xc4\x27\xe6\x04\xa9\x16\x47\xf0\ \x27\x31\x00\x6e\x7f\x38\x1f\xe7\x0c\x07\x91\xe0\x1f\x7f\x76\x09\ \xba\xe7\x83\x8d\x68\xe9\xc6\x6d\x15\xd5\x58\xa5\x58\xef\xca\xb1\ \x8b\xb9\x9e\x8f\x59\xab\x36\x57\xc4\xf1\xc3\x59\xfc\xcf\xbd\xbb\ \x08\xa5\x1e\xcd\xa0\x2f\x96\x69\xf5\xc0\x0f\x9e\x7e\x17\x6d\xd7\ \x3f\x02\xf4\xe9\x7c\x38\x85\x3f\x8d\x01\x28\x9d\xef\x53\x54\x2d\ \x81\x4b\x47\xaa\xc4\x00\x90\xb6\x03\x36\xcf\xc5\x21\xcf\xd9\xb1\ \x33\x00\xc5\x2c\x2f\x58\x01\x88\xa9\x7b\xba\x85\x62\xf2\x01\x2b\ \x03\x60\x16\x05\x4c\x62\x00\x4a\x9d\x0c\x79\x3b\x60\xeb\xba\x4a\ \xfd\x41\x4f\x33\x1b\x80\xc3\xee\x2f\xcd\x1c\x22\xe1\x04\xfe\x76\ \x06\xc0\xed\xc9\x72\xd1\xba\xad\xe8\xf8\xfb\x67\x95\x15\xfc\xbf\ \xfb\xc8\x02\x74\xd5\xc4\x35\xb9\xb6\xb7\x07\x2a\xb0\xab\x9a\x91\ \xde\xe9\x4f\x2f\xe2\x76\x3e\xea\x1f\x9e\x8d\xf6\x1f\xa8\xac\xe3\ \x87\xff\x1e\xb7\x28\xbe\x75\xd2\xc2\xd2\x36\xc5\x65\xb0\x81\xf0\ \x9f\xe3\x3f\xf6\xfd\x7c\x38\x85\x3f\xa9\x01\x30\xbe\xd9\x4b\x33\ \x1b\x80\xfa\xa2\xd5\x68\xe2\x1c\x1b\xbb\x44\x5c\x8a\x90\x3d\x2b\ \x03\x60\x09\xff\xc3\x2b\x00\xfb\xbb\x59\x2d\xff\x5b\xf5\x02\xb0\ \x33\x00\xc6\xcb\x18\x29\x66\x03\x50\xf8\x7c\xe5\xf0\x01\x8f\x34\ \xa4\x99\x0d\x40\xd7\xb3\x9f\x34\x73\x88\x84\x13\xf8\x5b\x19\x00\ \x2f\x26\xb7\x5b\xa7\x2e\x2f\x1b\xf8\x37\x8d\x5a\x8a\x9e\x9e\xbb\ \x35\x57\xb2\x18\x74\xd8\xf0\xd4\x5b\xb1\x7d\x0f\xd7\xf3\xf1\x93\ \xb1\x2b\x2a\x0e\xfe\x05\xdf\x77\xe8\x10\x9a\xb8\x78\x03\xfa\xc9\ \x0b\x1f\xe6\x32\xfa\xcb\xa1\x7a\xe0\xc4\x9b\xdf\x40\x5b\xb6\x77\ \xf8\x7a\x3e\x9c\xc2\x9f\xc4\x00\x98\xaf\xf4\xb2\x19\x80\xae\x47\ \xcf\x29\x1d\x8f\x52\xcc\x06\xa0\x70\x7f\x1c\x79\xc2\xae\x99\x01\ \x30\x5e\xc9\x2f\xd9\xeb\x77\xa8\x9b\xdd\x4e\x41\x16\x03\x60\xfe\ \x0c\x83\xcd\x00\x94\xee\xae\x24\x6f\x07\x6c\x64\x00\x0a\x77\x7e\ \xa6\x99\x43\x24\x9c\xc0\xdf\xcc\x00\x78\x35\xb9\xfd\xf0\xf5\xe5\ \x81\x86\x7f\xfd\x13\x0b\xd1\xdf\xdf\x5e\x87\xe6\x6f\xde\x53\x96\ \xb0\xe1\xa1\xf7\xf2\xc2\x6d\x5c\xcf\x07\xce\x83\xa8\x54\xf8\x17\ \x7f\xe1\x18\x5e\xbc\xa1\x4e\xfa\x6f\x26\xf0\xd5\x03\xef\x2c\x5a\ \xe3\xeb\xf9\x70\x0a\x7f\x3b\x03\x60\xfd\x98\x97\xde\x00\x14\x6e\ \x3c\x4f\xe9\x78\xc4\x66\x00\x4a\xab\xe3\xc8\x13\x76\x8d\x0c\x40\ \x57\xd5\x9e\x25\xfc\x0f\x1b\x00\xa3\x47\x00\x61\x07\x06\xc0\x7a\ \x03\x03\xbd\x01\x30\x2e\xad\x48\x33\x1b\x80\xd2\xba\xcf\x34\x73\ \x0d\xa9\x13\xf8\x1b\x19\x00\x2f\x27\xb7\xf4\xab\xcb\x03\x07\xff\ \xff\x7b\x70\x1e\xba\x60\xcc\x0a\xf4\xe6\x92\xed\x68\x9f\x41\x42\ \x1f\xc0\xbf\x50\x0f\x77\xec\xe3\x79\x3e\x3e\xda\xb0\x1b\xe0\x6f\ \x50\x4e\xf8\xe1\xaa\xad\xe8\xb7\xaf\xcf\x41\xdf\xba\xf9\xad\x40\ \x56\x0f\x4c\x5c\xb4\xc1\xd7\xf3\xe1\x14\xfe\x56\x06\xc0\x7e\x8f\ \x17\x9d\x01\x28\x2d\x3b\x4f\x51\xb5\x04\x2e\x36\x00\xc6\xa5\xf1\ \x49\x66\x03\x50\x90\xd9\x63\x0d\x7f\xed\x11\x40\xe1\x26\xc0\xb0\ \x03\x03\x60\xbf\x7b\x91\xce\x00\x98\xd7\x55\xb2\x19\x00\xe3\xd0\ \x87\x16\xe6\xe1\x04\xfe\xc5\x06\xc0\xeb\xc9\x8d\xda\x00\xf8\x08\ \xff\x33\x9f\x59\x8c\xee\xfe\x60\x23\x5a\xb3\x63\x7f\x45\xc3\x86\ \x56\xaf\xe1\xb9\x25\xdc\xce\x07\xee\x80\x78\xe0\x10\xc0\xdf\x4a\ \x6f\xe3\xd6\xed\xe8\x7f\xd3\x17\xa0\xe1\x0f\x4e\x0a\x54\xf5\xc0\ \xa4\xc5\x1b\x7d\x3d\x7e\x4e\xe1\x6f\x66\x00\xc8\x36\x78\x93\x1b\ \x00\xa3\xd0\xb9\x08\x45\x4b\xe0\x62\x03\x60\x9e\x8b\xc3\x66\x00\ \x72\x8d\xfa\x8a\x0c\x80\x25\xd7\x73\x9b\x00\x0d\xca\x00\x59\x0c\ \x00\x59\xe9\x02\xb9\x01\xb0\x0e\x55\xa0\x37\x00\xa6\x89\x4f\xcc\ \x09\x52\x69\x47\xf0\xd7\x1b\x00\x3f\x26\x37\x2a\x03\xe0\x03\xfc\ \x8f\x7b\x64\x3e\xfa\xd5\x84\xd5\xe8\xed\xd5\x3b\x91\x5d\x1c\x3f\ \xc0\xbf\x54\x6f\xc3\xae\x03\x5c\xcf\xc7\xf9\x6f\xae\x00\xf8\x53\ \xe8\x7d\xb2\x72\x03\xba\xbe\x75\x1e\x0a\xdd\x31\x5e\xf8\xea\x01\ \x5a\x03\xc0\xfb\xf8\x39\x85\xbf\x91\x01\x20\xaf\xee\x22\x33\x00\ \x66\x89\xb3\xac\x06\xc0\x3a\x14\x8f\xde\x00\x74\x76\xe9\xd5\x87\ \xf6\xd9\xf6\x02\xc0\x65\x80\x26\x41\x40\x34\x06\x80\xbc\x6e\x91\ \xcc\x00\xd8\x27\x2a\xd1\x19\x80\xdc\x09\x33\x4b\x7c\x62\x4e\x90\ \x4a\x3b\x82\xbf\x66\x00\xfc\x9a\xdc\x88\x0d\x80\xc7\xf0\x1f\xf6\ \xf2\x52\xf4\xe4\xc7\x5b\xd0\xf6\xbd\x07\x01\x36\x0e\xf4\xde\x58\ \xb2\x9d\xeb\xf9\xc5\x6d\x9f\xe1\x7c\xd0\xeb\xe1\x66\x52\x6f\xcd\ \x5f\x87\xce\x7f\xf6\x7d\xf4\x95\xeb\xc7\x08\x59\x3d\x40\x63\x00\ \xdc\x38\x7e\x4e\xe1\x5f\x6c\x00\xe8\x4a\xbb\xed\x0d\x80\x55\xdc\ \x3c\x8b\x01\xb0\x4d\xc4\xa5\x34\x00\x11\x3d\x7b\xf5\xa1\x7d\xf6\ \x26\x60\x9b\x65\x14\x30\x89\x01\xa0\x09\x2d\x20\x31\x00\x64\x71\ \x8a\xe4\x06\xa0\xf3\xa4\x99\x25\x3e\x31\x27\x48\xa5\x1d\xc1\x1f\ \x0f\x3f\x27\x37\x22\x03\xe0\x11\xfc\xa3\x8f\x2f\x40\xd7\x4e\x5d\ \x87\xe6\x6e\xda\x53\x91\xb0\x76\x43\xef\x9a\xec\xf1\xe4\x79\x7e\ \xdf\x5b\xbb\x0b\xce\x87\x43\xbd\xf5\x3b\xf6\xa0\xff\x4c\x5d\x82\ \x4e\xfb\xcf\x64\xa1\xaa\x07\x48\x0d\x80\x5b\xc7\xcf\x29\xfc\xf5\ \x06\x80\x3e\xd7\xc5\xda\x00\xd8\xf5\x9a\xa1\x35\x00\x39\xa6\xd9\ \x25\xe2\x52\xed\x03\x28\x62\x6f\x01\xaf\x6d\x56\x00\x0e\x47\x01\ \x5b\x37\x03\xb2\x32\x00\x11\x2a\xf8\xdb\x1b\x00\xe2\x2c\x65\xc2\ \x2a\x80\x82\x13\x67\x96\xf8\xc4\x9c\x20\x95\x76\x04\x7f\xfc\x73\ \x7e\x4e\x46\xb6\x06\xc0\x65\xf8\x1f\x9b\x1d\xe7\x8d\x5a\x80\x5e\ \x5d\xb4\x15\xed\x3d\x70\xa8\xe2\xe1\xc0\x5b\x6f\xc8\x4b\x9f\x72\ \x3b\xbf\xf8\x71\xcc\x3e\x9b\xe7\x30\x70\x3e\xc8\xf5\xf0\x91\x7c\ \x67\xf9\x66\xf4\xcb\x57\x3e\xca\x35\xed\xf1\xbb\x7a\x80\xc4\x00\ \xb8\x79\xfc\x9c\xc2\x5f\x33\x00\x6c\xa1\x6e\xe6\x06\x80\xa4\xd1\ \x1c\x35\xfc\x1b\x92\xf6\x89\xb8\xd4\x09\xbb\xba\x2e\xbd\x14\xdd\ \x00\xf3\xcd\x80\xec\xdb\x01\x1b\x19\x00\x7a\xf8\x27\xed\x13\x90\ \x88\xe1\x6f\x6f\x00\x4a\x4e\x9e\x59\xe2\x13\x73\x82\x54\xda\x11\ \xfc\xf1\xc5\xee\xe7\x64\x64\x69\x00\x5c\x84\x3f\x06\xff\xdf\x27\ \x2d\x45\x0b\xd7\x6f\x05\x38\xb8\xa4\x87\x1f\x9f\x7c\x93\xa3\xb9\ \x3b\xe7\xb5\xe5\x70\x3e\x5c\xd2\xeb\xd8\xbb\x1f\x3d\xf1\xde\x32\ \x74\xca\x9d\x6f\xf9\x56\x3d\x60\x67\x00\xdc\x3e\x7e\x4e\xe1\x8f\ \x7f\x8e\x3d\xd1\xd5\x24\x24\x8e\xb0\xd1\x1c\xa9\x01\x28\x60\x9b\ \x5d\x22\x2e\x2b\xfc\xd9\xda\x01\xcb\x0b\x68\x0d\x00\x1b\xfc\x93\ \xf6\x09\x48\xc4\xf0\xb7\x36\x00\x86\x27\x8f\xb0\x1d\x30\xcd\x6e\ \x52\x27\xf0\xc7\x17\xbd\x9f\x93\x91\xa9\x01\x70\xf9\xce\xff\x82\ \x57\x16\x00\x1c\x5c\xd6\x1b\xbf\x6c\x07\x57\x73\x77\xd7\x7b\x1b\ \xe1\x7c\xb8\xac\xb7\x62\xc3\x16\xf4\x35\x0d\xda\x1e\x57\x0f\x58\ \x19\x00\x2f\x8e\x9f\x53\xf8\xe3\x9f\x67\x4f\x74\x35\x09\x89\x23\ \x6c\x34\x47\x62\x00\x4a\x56\xb6\x6d\x57\xc3\x19\xe1\x4f\x69\x00\ \xb2\x37\xff\x73\xbb\xd5\x49\xf2\x4c\x1a\x03\xc0\x0e\xff\xa4\x7d\ \x02\x12\x31\xfc\xcd\x0d\x80\xa9\x73\x63\x34\x00\x56\xce\xd2\x09\ \xfc\x35\x03\xe0\xd7\x64\x64\x68\x00\x3c\x78\xe6\x7f\xdc\x7f\x67\ \xa1\x27\xe6\x6c\x46\x7b\x60\xd9\xdf\x35\xbd\x9b\xa7\xaf\xe7\x6a\ \xee\xa6\xae\xda\x09\xe7\xc3\x45\x3d\xdc\xa4\xea\xae\xf1\x1f\xfb\ \x56\x3a\x68\x66\x00\xbc\x3a\x7e\x4e\xe1\x8f\xe7\x52\xf6\x44\x57\ \x93\x90\x38\xc2\x46\x73\x76\x06\xc0\xf0\xb1\x36\x61\x3b\x60\x6a\ \xf8\x53\xaf\x00\xc8\xef\x77\x0b\xc5\xd4\x69\xa4\x06\x20\x17\x32\ \x50\xf4\xcb\xe9\x36\x2c\xd8\x84\x20\x10\xc3\xdf\xd8\x00\x58\x2e\ \xdb\x30\x18\x00\xbb\x65\x25\x27\xf0\xc7\xc3\xcf\xc9\xa8\xc4\x00\ \x78\xbc\xdb\x3f\xf2\xf8\xc2\xdc\xc6\xbf\xe2\x24\x3f\x80\x83\x73\ \x3d\xf9\x95\x65\xdc\xe0\xff\xad\x87\xe6\xa3\x5d\xfb\x0f\xc2\xf9\ \x70\x41\x6f\xde\xea\x8d\xe8\xef\x6f\xce\x44\xd1\x5b\xdf\xf4\x35\ \x37\xc0\xc8\x00\x78\x79\xfc\x9c\xc2\x5f\x6f\x00\xe8\xab\xba\x4c\ \x42\xe2\x08\x1b\xcd\x59\x19\x00\xd3\x3d\x6d\x8c\x06\xc0\x68\xc3\ \x3d\x69\x3b\x60\xe3\x4d\x80\xf2\x14\x1c\x04\x34\x9e\xc4\x00\x74\ \x26\x0c\x15\x39\x0f\x56\x03\x60\x58\x0a\x41\x93\xa7\x5c\x64\x00\ \x6c\x9f\xd9\x50\x1a\x00\x92\x67\x4a\x4e\xe0\x8f\xff\xec\xe7\x64\ \x54\x60\x00\x7c\x4e\xf8\xc3\xc0\x7a\x6e\xde\x56\xb4\x73\xff\x41\ \x80\x83\x43\x3d\x0c\x6b\x0c\x6d\x5e\xe6\x4e\x1d\xbd\x0c\xce\x07\ \x47\x3d\xdc\x82\xf7\xe5\xd9\xab\x90\xfa\x48\xbb\x30\x89\x81\xc5\ \x06\xc0\xeb\xe3\xe7\x14\xfe\x9a\x01\x60\xcb\x74\x31\x09\x89\x23\ \x6c\x34\x67\x66\x00\x2c\x37\xb4\x33\x18\x00\xb3\x6a\x3b\x27\x06\ \x20\x14\x93\xc7\x75\xab\x93\xd4\xd7\xec\xbe\x51\x1f\x2f\x58\xbc\ \xec\xc0\x62\x00\x4c\xeb\x20\x19\x0d\x00\xd1\x86\x0d\x0a\x03\x40\ \xba\xa1\xc4\x09\xfc\xf1\xdf\xfb\x39\x19\x75\x1a\x00\x81\x1a\xfb\ \xe0\xb4\xb9\x3f\xb6\xaf\x2d\x88\x9c\x05\xd8\xd0\xe9\x4d\x59\xb5\ \x93\xeb\xca\xce\x3f\xa6\x6f\x00\xf8\x73\xd0\x9b\xbf\xa1\x03\xfd\ \xed\xad\xb9\xe8\xf8\x5b\x5b\x85\x8b\x0b\xd6\x1b\x00\x3f\x8e\x9f\ \x53\xf8\xe3\x3f\xb3\x27\xba\x9a\x84\xc4\x11\x66\xcc\x18\x19\x00\ \xdb\x6a\x36\x4a\x03\x60\x55\x6a\xef\xc4\x00\x64\xc7\x2b\x38\x09\ \xf0\x19\x6b\xf8\x1f\xce\x13\xee\x4c\x18\x2a\x5a\x76\x88\x50\x0e\ \xcb\x10\x04\x06\x03\x40\xba\x5b\x93\xd4\x00\xd0\xec\x26\x75\x02\ \x7f\xbb\x76\xc0\x6e\x4f\x6e\x39\x03\x20\x60\x4b\x5f\x6d\xe0\x32\ \xb6\xc7\xe7\x6c\x46\xeb\xb6\x74\x00\x6c\x28\xf4\xee\x7c\x6f\x03\ \xd7\xf3\x31\x71\xf9\x0e\x80\x3f\xa3\xde\xce\x7d\x07\xd0\xc8\x0f\ \x57\xa2\xa1\x8f\xbc\x2d\x74\xa3\x20\xcd\x00\xf8\x75\xfc\x9c\xc2\ \x1f\xff\x3d\x7b\xa2\xab\x49\x48\x1c\xa3\x01\x20\x2a\x65\xe7\x04\ \x7f\x6b\x03\x60\x7e\x33\xdf\x15\x05\xac\x8c\xcc\x1a\x00\xf5\xbf\ \x76\xf0\xd7\x0c\x40\xee\x87\x09\xdb\x01\x9b\x2f\x63\x58\xd4\x41\ \x52\x1a\x80\x68\x03\xf9\x6e\x4d\x12\x03\x40\x5b\x4a\xe2\x04\xfe\ \xb4\x06\x80\xf7\x87\x33\x3d\x7a\x99\xb0\xf0\xd7\xeb\x1d\x7f\xff\ \x4c\x74\xe5\xd8\xc5\xa8\x7d\xf1\x06\xb4\x03\x60\x63\xfb\x35\xe2\ \x35\x7e\x2b\x3b\xb8\xf9\x12\xb4\x58\xa6\xd7\x9b\xb5\x7a\xdb\xe1\ \xe6\x40\xb7\x8c\x0b\x44\x97\x40\x6c\x00\xfc\x3c\x7e\x4e\xe1\x4f\ \xd2\x0e\xd8\x7c\xa5\xd7\x24\x24\x8e\xc1\x00\x10\xe7\xd8\x10\x1a\ \x00\x92\x90\x3d\x1a\x03\x50\xda\xe9\x57\xbe\x17\xb7\x03\xbe\xc5\ \x0e\xfe\x87\x87\x4a\xdc\x0e\xd8\xfa\x19\x86\x45\x1d\x24\x85\x01\ \xd0\xda\x30\x92\xee\xd6\x34\x37\x01\x2d\xcc\x21\x12\x4e\xe0\x4f\ \x63\x00\xdc\xf8\x70\xa6\x5e\x9c\x2f\x3c\xfc\x8b\xf5\x1a\x9e\x5d\ \x8c\x1e\x9c\xb5\x19\x6d\xda\x7d\x00\x60\x63\xf0\x85\xc3\x7a\xfe\ \xdf\xc3\xf3\xb9\x9d\x8f\xb3\x5f\x5a\x0a\xf0\x27\xd4\xdb\xb6\x67\ \x3f\x7a\xf4\xdd\x65\xa8\xf1\x81\x29\xc2\x24\xfc\x91\x0e\xdc\x0d\ \xd0\xcf\xe3\xe7\x14\xfe\x2c\x06\xa0\x6b\x9e\x67\x87\x7f\xb4\x20\ \x91\x96\x22\xc7\x86\xc0\x00\x90\x26\xec\x92\x1a\x80\x42\x8e\xe7\ \xf7\x00\xc4\xd5\x1b\xf1\x0a\xc0\xd5\xc6\x4e\x41\x29\xea\x27\x9c\ \x64\x36\x00\x85\x6f\xc4\xa2\x0e\x92\x18\xfe\xc9\x12\x03\x40\xd3\ \x12\xb8\xd8\x00\xb0\x86\x48\x38\x81\x3f\xa9\x01\x70\x6b\x72\x4b\ \xbd\x30\x2f\x50\xf0\xd7\xeb\x7d\xfb\xa1\xf9\xe8\x8a\xb6\x55\x28\ \xb3\x12\x1a\x05\xe9\xbf\xde\x5d\xbb\x8b\xeb\xf9\xf8\xfb\xdb\xeb\ \x00\xfe\x16\x7a\x5a\xa2\xdf\xcf\x47\xcd\x42\x5f\xbf\xf1\x2d\xa1\ \xe2\x7d\x69\xf4\xc6\x7d\xb2\xc2\xdf\xdc\x0a\x87\xf0\xa7\x35\x00\ \x85\x73\xbd\x41\x48\x1c\xa5\x01\x88\x1a\xdc\xfd\x93\xb6\x03\x36\ \x32\x00\x34\xf1\xfa\x24\x06\xa0\xf4\x46\x5e\x4b\x02\x4c\xfe\xb6\ \x5b\xd6\x05\x5c\x66\x0f\x7f\xd5\xd4\x00\x84\x29\x43\x0b\x2c\x43\ \x10\x68\xe2\x14\x75\x06\x80\xa6\x25\x70\x69\xdd\x67\x9a\x39\x44\ \xc2\x09\xfc\x49\x0c\x80\x9b\x93\xdb\x2f\xc6\x2c\x0a\x24\xfc\x8b\ \xc7\x19\xf9\x56\xc1\xeb\x76\xee\xaf\xf8\xdd\xea\xff\xc9\x1e\x07\ \x9e\xe7\x63\xec\x92\x6d\x00\x7f\x03\xbd\x8d\x3b\xf7\xa2\x7b\xa7\ \x2d\x41\xdf\xbf\xa7\x5d\xb8\xc6\x3e\x2c\x7a\x73\x57\xae\xf7\xf5\ \x7c\x38\x85\x3f\x8d\x01\x28\x9d\xef\x53\x44\xad\x80\xcd\x47\xaa\ \xc4\x00\x90\xb6\x03\x36\xce\xc5\x71\x00\x7f\x03\x03\x60\xbc\x92\ \x9f\x1f\x71\xf9\x92\x6e\xe1\x78\xf2\x1c\x2b\x03\x50\x12\x06\x44\ \x61\x00\x8c\xdf\x4c\x8a\xd9\x00\x14\xba\x2c\xed\xc0\xa7\x99\x0d\ \x40\xd7\xf2\x0f\x5b\x88\x84\x13\xf8\xdb\x19\x00\xb7\x27\xb7\xd7\ \xe7\xad\x0d\x3c\xfc\xf5\xe3\xd8\x07\xe7\xa1\x8b\xdf\x5a\x89\xda\ \x96\xed\xc8\xf5\xad\xaf\xc4\x3b\xd7\x1f\xbd\xb2\x80\xeb\xf9\x58\ \xb5\x69\x3b\xc0\x3f\xaf\x77\xf0\xd0\x21\x34\x71\xf1\x06\x74\xc9\ \x0b\x1f\xa2\xaf\x0a\xda\xd5\x8f\x45\xaf\xff\x3d\xe3\x7d\x3f\x1f\ \x4e\xe1\x4f\x6a\x00\x88\xe0\x4f\x61\x00\xea\x75\x8f\xa2\xa9\x42\ \xec\x2c\x13\x71\xc9\x43\xf6\xec\x0c\x80\x25\xfc\x0f\x1b\x80\x14\ \x36\x00\x83\xcd\x0c\x80\x61\x1a\x20\xa1\x01\x30\x77\x32\x29\x26\ \x13\x50\xfa\x8c\x25\x45\xd5\x12\xb8\xd8\x00\x14\x6e\xfe\x60\x0b\ \x91\x70\x02\x7f\x2b\x03\xe0\xc5\xe4\x86\x37\xd4\x9d\xfb\xda\xb2\ \xb2\x80\x7f\xf1\x38\xe5\x7f\x0b\xd1\x2d\x53\x96\xa3\xf9\x6b\xb7\ \x54\x0c\xbc\xb6\xef\xd8\x89\x42\x0f\xcc\xe2\x76\x3e\x06\x3c\xfd\ \x09\xc0\x3f\xfb\xf7\xab\xb7\xef\x46\x77\x4c\x5e\x84\x4e\xfa\xd7\ \x44\xdf\x61\xcd\x5b\xef\x2b\x59\x9d\xb6\xfc\xf2\xbf\x9f\xe7\xc3\ \x29\xfc\x49\x0c\x80\xf1\x4a\x6f\x9a\xd9\x00\x14\xc2\x3f\xc5\x09\ \xfe\x49\xaa\x84\x5d\x2b\x03\x50\x0a\x7f\xc5\x28\x0a\x78\x40\xb7\ \x3a\x29\x75\x92\xf5\x4e\x41\x7a\x03\x60\xbd\x8c\x41\x6f\x00\x8c\ \x37\x58\xa4\x99\x0d\x40\x69\xe9\x07\x5b\x88\x84\x13\xf8\x9b\x19\ \x00\x2f\x27\x37\xbc\x99\x0e\x6f\xf4\x2a\x27\xf8\x17\x37\x1e\x3a\ \xef\xe5\xf9\x68\xd4\x27\x6b\xd1\x9e\xfd\x07\xca\x1a\x5e\xd3\x97\ \x6d\xe4\x7a\xfc\xae\x6e\x5d\x52\xb1\xf0\xdf\xd6\xb1\x03\xbd\x39\ \x77\x2d\x3a\x6f\xe4\x7b\xe8\x4b\x7f\x1f\x23\x04\xac\x79\xeb\xe1\ \xbe\x03\x0f\x4f\x9d\x27\xc4\xf9\x70\x0a\x7f\x3b\x03\x60\xfe\x98\ \x97\xcd\x00\x74\xed\x3b\xeb\x1a\xc4\x1b\xd8\xed\xe2\xf0\x29\xe2\ \xf5\xcd\x0c\xc0\xe1\xdc\x1e\x6b\xf8\xe7\x58\x1f\x4b\xd5\x77\xeb\ \xd3\x3f\xfd\x75\xd3\x3a\x41\x82\x96\xc0\x61\xca\xba\x45\x5a\x03\ \x60\xbd\xbb\x92\xde\x00\x18\xd7\x7d\xb2\xd5\x90\x3a\x81\xbf\x91\ \x01\xf0\x63\xb2\xc4\x99\xfc\x78\x67\xfd\xe9\x4f\x2f\x2e\x2b\xf8\ \x17\xeb\xf5\x7d\x72\x21\xba\xf1\x9d\xf5\x68\xf1\xd6\xbd\x65\x09\ \xaf\xfb\xa6\xaf\xe4\x7a\xfc\x5e\x98\xbd\xa6\xe2\xe0\x8f\x9f\x85\ \xff\x7d\xcc\x2c\x14\xba\xbd\x4d\x28\x58\xf3\xd4\xfb\xea\x35\xa3\ \xd1\x85\x4f\x4d\x45\xd3\x17\xaf\x16\xe6\x7c\x38\x85\xbf\x95\x01\ \xb0\xde\xe3\x45\x6f\x00\x0a\xab\xce\x28\xe1\xdf\x90\xb2\x8f\xc3\ \xa7\x88\xd7\x37\x87\x7f\xa1\x01\x30\x2d\xf3\xef\xdf\xf4\x95\x6e\ \xfd\xfa\x5d\xda\x83\x20\x31\x88\xc8\x00\x90\x6d\x60\x20\x37\x00\ \xf6\xa5\x15\x74\x06\xc0\x34\xf4\x81\xd1\x00\x38\x81\x7f\xb1\x01\ \xf0\x7b\xb2\xc4\xcf\xcd\xc7\x7c\xda\xe1\x5b\x97\x40\x2f\xf5\xf0\ \x7b\x7c\x79\xe1\x36\xcb\x86\x44\x41\x83\xd7\xc5\xaf\x2e\xe0\x7a\ \xfc\x3e\x5d\xbf\xb5\x22\xe0\xbf\x79\xdb\x76\xf4\xec\xbb\x8b\x90\ \xf2\xd0\x64\x21\xef\xd4\x79\xe9\x7d\xe7\x96\x71\xe8\xaf\xaf\x7f\ \x88\xe6\xaf\xde\x20\xdc\xf9\x70\x0a\x7f\x33\x03\x60\xbf\xc1\x9b\ \xce\x00\x94\x66\xce\xa4\x88\x5a\x01\x9b\x19\x00\xe3\x50\xbc\x24\ \xb3\x01\x28\x48\xec\xb5\x81\x7f\x58\x92\x0f\xb6\xb4\xb4\x54\x75\ \xc3\x5f\xd9\x3f\x6c\x72\x6a\x00\xc8\x77\x2f\x92\x19\x00\xb2\xba\ \x4a\x72\x03\x90\x3b\x69\x66\xa1\x0f\x8c\x21\x12\x4e\xe0\xaf\x37\ \x00\xa2\x4d\x96\x73\x36\xee\x41\xbf\x99\xb4\x06\x7d\xe7\xe1\xf9\ \x65\x07\x7f\xfd\x08\x3f\xbe\x10\xfd\x6d\xea\x3a\x34\x77\xd3\x9e\ \x40\xc3\xbf\x23\x3b\xea\x1f\x9e\xcd\xed\xf8\xc5\x9f\xfc\xb8\xec\ \xe1\x3f\x73\xd9\x3a\xf4\xa7\xd1\xef\xa3\x13\x6e\x7a\x5d\xd8\x65\ \x7a\x1e\x7a\xa7\xdf\x33\x19\x3d\x32\x63\x29\xda\xb8\x55\xdc\x0d\ \x9d\x4e\xe1\x6f\x64\x00\xc8\xaa\xbb\xc8\x0d\x80\x51\xe2\x2c\x49\ \x2b\x60\x33\x03\x60\x9e\x88\xcb\x66\x00\x72\x5d\x7a\x75\x06\xc0\ \x1a\xfe\xb9\x46\x40\xeb\xba\x69\x5f\x75\x31\xf5\x13\x27\x06\x20\ \x4a\xd5\x22\xd8\xde\x00\x90\x87\x2a\x90\x19\x80\xce\x93\x66\x08\ \xff\x34\x73\x88\x84\x13\xf8\x6b\x06\x40\xe4\xc9\x72\xe3\xee\x03\ \xe8\x5f\xef\x6d\x40\xfd\x1e\x9d\x53\x76\xf0\x2f\x1e\x4d\xa3\x96\ \xa2\x67\xe6\x6e\x45\x1d\x7b\xf6\x07\xee\x99\xf5\x47\xab\xb6\x70\ \x3d\x7e\x57\x8d\x5b\x52\x96\xf0\xc7\xd1\xbc\x4f\x7f\xb0\x02\x9d\ \x7d\xff\x24\xe1\x9f\xd1\x3b\xd5\x1b\xf1\xd4\xbb\xa8\x6d\xe1\x7a\ \xb4\xff\xc0\x01\xe1\xaf\x67\xa7\xf0\x2f\x36\x00\xe4\xa5\xdd\x64\ \x06\xc0\x2c\x6e\x9e\xd5\x00\x58\xc6\xe1\x33\x18\x80\x88\xc6\xdd\ \x4e\xf8\x13\xac\xe8\xc7\xe4\xd9\x5d\x06\x20\xae\x4e\x64\x35\x00\ \x11\x2a\xf8\xdb\x9b\x00\xaa\x44\x25\x02\x03\x50\x72\xf2\x0c\x4b\ \x3f\xd8\x42\x24\x9c\xc0\x1f\x8f\xa0\xdc\x69\x6e\xd9\xde\x81\x9e\ \xfb\x68\x35\x1a\xfe\xdc\x27\x65\x09\x7f\xbd\x5e\xdd\x03\x1f\xa1\ \xdf\x8e\x5b\x8c\xde\x59\xba\x31\x77\x67\x1d\x84\x3b\xe1\x27\xe6\ \x6c\xe6\x7a\xfc\x9e\x9f\xb7\xb5\xac\xe0\x3f\x73\xf5\xd6\xc3\xd1\ \xbc\x37\xbf\x15\x88\x0d\x7a\xac\x7a\xdf\xb8\xe9\x2d\xf4\xbb\xec\ \xfb\x5c\xb0\x61\x47\xa0\x56\xb2\x9c\xc2\x5f\x6f\x00\xe8\x72\x5d\ \xd8\xe1\xcf\x6a\x00\x78\xc1\x3f\x62\xc4\xdf\x4e\xf8\x13\x35\x02\ \x6a\xeb\x34\x00\xe1\xb8\x3a\x92\x6a\x1f\x80\x23\xf8\x27\xad\x4b\ \x21\x68\x12\x95\x6c\x0c\x80\xe1\xc9\xa3\x6c\x0b\x6c\xe5\x2c\x9d\ \xc0\x1f\xff\x5c\x10\x4b\xa3\xde\x5b\xbb\x03\xfd\xac\x6d\x55\x69\ \xcb\xd9\x32\xdc\x40\x78\xd6\xc8\x4f\xd0\x63\xb3\x37\xa3\x6d\x7b\ \x0f\x0a\x0d\xc3\x9f\x8f\x5f\xcd\xf5\xf8\xad\xd8\xbe\x2f\xf0\xf0\ \xc7\xd1\xbc\x8f\xcc\x58\x86\x1a\xee\x9f\x12\xa8\xdd\xf9\x2c\x7a\ \x7d\xfe\x39\x11\xfd\x67\xea\x12\xb4\x65\xf7\xbe\x40\x3e\xc6\x72\ \x0a\x7f\xcd\x00\x38\x86\x7f\x23\x39\xfc\x59\x0c\x40\x8e\x69\x56\ \xbd\x70\xa8\x9b\xeb\x15\xb1\x97\x1c\xfe\x28\x24\xa9\xff\xeb\x34\ \x00\xa1\xb8\x7a\x2b\xad\x01\x60\x87\x7f\xd2\xba\x14\x82\x26\x51\ \xc9\xc2\x00\x98\x9e\x3c\x46\x03\x60\x74\x71\x39\x81\x3f\xbe\xd8\ \x83\x5c\x67\xbd\x66\xc7\x7e\x74\xeb\x8c\x0d\xa8\xfe\x89\x85\x65\ \x5d\x3d\x80\xff\x1d\xe7\xeb\xff\x6a\xc2\x6a\x34\x7d\xcd\x2e\x74\ \x48\xb0\xf3\x81\x5f\xcf\x29\x4f\x2d\xe2\xf6\x7e\x4f\x7b\x7a\x71\ \x60\xe1\x8f\x8f\xc5\xdb\xcb\x36\xa3\x9f\x15\x47\xf3\x96\x29\xfc\ \x87\x3d\xfa\x36\x1a\xfd\xf1\x1a\xb4\xbf\x28\x0f\x3b\x68\x7b\x58\ \x9c\xc2\x1f\xff\x1c\x7d\xa2\xab\xb5\x01\x20\xe9\x32\x4b\x63\x00\ \x3a\xb9\x66\xd5\x0b\x87\xa9\xb7\x8e\xc6\x5e\x95\xa6\x0d\x30\x1e\ \x37\xeb\x0c\x80\xf2\x0b\x1a\x03\x10\x31\xf8\xe5\x74\xce\xc5\x66\ \x37\x24\x69\xa8\x82\x49\x16\x80\xe5\xc9\x63\x30\x00\x66\x17\x97\ \x13\xf8\xe3\x8b\xbe\x1c\xea\xac\x77\xef\x3f\x84\x9e\x9d\xb7\x15\ \x0d\x7a\xe1\xd3\xb2\xaf\x1e\xc0\xa3\xe1\xb9\x25\xe8\x81\x59\x9b\ \x72\xfb\x23\x44\x38\x1f\xcb\xb3\x77\xeb\x3c\xdf\xef\x95\x59\xa3\ \x13\x34\xf8\x6b\xd1\xbc\x78\xc3\x5b\x50\xeb\xf2\x49\xf5\x70\x0a\ \xe1\x15\x2f\xcf\xca\x3d\xd6\x28\x97\xdc\x05\xa7\xf0\xc7\x3f\x4f\ \x1f\xe7\x6e\x6e\x00\xe8\xe0\x9f\xe6\x04\xff\x94\x33\xf8\x13\xb4\ \x02\x2e\x28\x01\x8c\x2b\x97\x77\x19\x00\x49\x6d\x26\x35\x00\xb9\ \x52\x03\x83\x5f\xce\x6a\x00\x0c\x9f\x89\x50\xb4\x04\x2e\x36\x00\ \xb6\x27\x8f\xd2\x00\x58\x39\x4b\x27\xf0\xd7\x0c\x40\xb9\xec\xb6\ \xc6\xf7\x20\xd3\x56\xed\x44\x97\xbc\xb5\x12\x7d\xb3\x4c\xe1\xaf\ \x1f\xf8\x11\xc8\xe5\xad\xab\x50\xfb\x8a\x1d\x9d\x0d\x89\xfc\x38\ \x1f\xcf\xcf\xdf\xca\xf5\xfd\x3e\x3d\x77\x6b\x20\xae\x3f\x2d\x9a\ \xf7\xe2\xe7\x3f\x30\x8f\xe6\x2d\x23\xf8\x1f\x7f\x5b\x1b\xfa\xc7\ \xc4\x05\x68\x6d\xc7\x9e\xb2\x29\x5d\xd5\xf4\x9c\xc2\x1f\xcf\xa5\ \xf4\x71\xee\x26\xbd\x61\x08\x5b\xcc\x93\x1a\x80\x82\x47\xda\x96\ \xf0\x4f\x39\x83\x3f\xb5\x01\x50\x87\x75\x6d\x02\x2c\x4a\x03\x34\ \xfd\x21\x7d\x9d\x61\xd1\x2f\x67\x31\x00\xa6\x1b\x22\xa8\xc2\x15\ \xba\x0c\x00\xd1\xc9\xa3\x30\x00\x76\xcb\x4a\x4e\xe0\x8f\x47\xb9\ \x96\x5a\xe1\xbb\xd2\xeb\xa6\xad\x45\xa1\x07\x3f\x2a\xfb\xea\x01\ \x3c\xbe\x3f\x72\x31\xfa\xf7\xfb\x1b\xd0\x92\x0d\xdb\x3c\x3f\x1f\ \xbf\x9d\xb4\x86\xeb\xfb\x5d\xb4\x65\xaf\xd0\xd7\x1f\x71\x34\x6f\ \x99\xc0\x3f\x71\xff\x14\x34\xf2\xc3\x95\x68\xcf\xfe\x83\x65\x15\ \xba\xa4\xd7\x73\x0a\x7f\xbd\x01\x20\xdf\xd0\x6d\xd2\x1b\x86\xb0\ \xc5\x3c\x35\xfc\x1b\xec\xe0\x9f\xe2\x04\x7f\x32\x03\x10\x95\xe4\ \xe8\xc0\x81\x0d\xdd\x73\x06\xe0\xf8\xc4\xf0\x2f\xda\xc3\x5f\x29\ \xac\x33\xd4\xff\x72\x06\x03\x60\xb9\x1b\x92\xc1\x00\x90\x3a\x37\ \x52\x03\x40\xf2\x4c\xc9\x09\xfc\xf1\x9f\xcb\x3d\x64\x65\xdd\x96\ \xed\xe8\xc1\x77\x57\x22\xe9\xc9\x8f\xcb\xbe\x7a\x00\xff\xfc\xb7\ \xee\xfd\x10\x5d\x38\x7a\x01\x7a\x6d\xee\xda\x5c\x9c\xac\x17\xe7\ \x23\xf6\xcc\x12\x6e\xef\x17\xa7\x25\x1e\x12\xf0\xfa\xc3\xcf\xb8\ \xc7\xcc\x5b\x87\x7e\x40\x1a\xcd\x1b\x70\xf8\x7f\x31\x3b\x2e\x78\ \xf6\x7d\x34\x75\xe9\x26\x21\xcf\x07\x6f\x3d\xa7\xf0\xd7\x0c\x00\ \x5d\x39\xb7\x49\x6f\x18\xc2\x16\xf3\x76\x06\xc0\xb0\x9a\x2d\x91\ \x62\x36\x00\x96\xf0\x67\x30\x00\x27\x37\x34\x7d\x21\x6b\x00\x8e\ \xd0\x16\x01\xba\x87\x24\x79\x97\x35\xfc\x95\xc2\x3a\x43\x8a\x96\ \xc0\xa5\x6f\xc6\x66\x37\x24\xa5\x01\x88\x36\x90\x3b\x37\x73\x13\ \x40\x5f\x47\xea\x04\xfe\xf8\xef\xcb\x19\xfe\x7a\xbd\x8e\x1d\x3b\ \xd1\xf8\x65\xdb\xd1\x0f\xdf\x58\x51\xb6\xf0\x2f\xd6\xeb\x97\x85\ \xe9\x6d\xef\x6e\xa0\xde\x51\x4f\x73\x3e\xd6\xee\xdc\xcf\xf5\xfd\ \x5e\xd6\xba\x4a\xa8\xeb\xef\xd3\xcd\x3b\xd1\x8d\xe3\xe7\xa3\xd0\ \x1d\xe3\xcb\x2e\x8b\xdf\x48\xef\x5b\xb7\x8c\x43\x7f\x7b\x6b\x2e\ \x5a\xba\x65\x57\x59\xcf\x07\xc5\x7a\x4e\xe1\x8f\xff\x4c\x1f\xe6\ \xc6\x0e\x7f\x3b\x03\x60\x5a\xca\xce\x68\x00\x8c\x72\x76\xcc\xbb\ \x00\x26\x49\x32\x00\x3a\xfa\xf5\xeb\x5b\xad\x37\x00\xdd\x70\x30\ \x80\x19\xfc\xf5\x06\xa0\xb3\xd4\x80\xd1\x00\x74\xbd\x09\x8b\x67\ \x22\x34\x75\x95\xf9\x41\x73\xf2\xac\x56\x01\x68\x76\x93\x3a\x81\ \xbf\x5d\x3b\xe0\x72\xfd\xb0\x2f\xdc\xb2\x17\xfd\x39\xb3\x16\x7d\ \xf7\x91\x05\x65\x5f\x3d\x80\x07\xde\x0f\xf1\x8b\xf1\xab\xd1\x76\ \x82\x52\x42\xda\xf3\xf1\xea\xa2\xed\x5c\xdf\xef\x63\x73\x36\x0b\ \x71\xbd\x7c\xb2\x6e\x1b\x4a\x3d\x39\xa3\x2c\xb3\xf8\x8d\xf4\x4e\ \xf9\xf7\x44\xf4\xd0\xf4\xa5\xa8\x63\xef\xfe\x8a\x9b\x0f\x68\x0c\ \x80\xd5\x7c\xea\x18\xfe\x8d\x14\xfc\xb0\x30\x00\x96\x39\x36\x9c\ \xe0\x1f\xb1\x6c\x03\x9c\xb4\x7d\x8c\x1f\x89\xab\x33\xb3\xf0\xaf\ \x2a\x34\x00\x92\xfa\x8a\x19\xfc\x35\x03\x70\x38\x5e\x30\xc9\x6c\ \x00\x0a\xdf\x88\xc5\x33\x11\x9a\xba\xca\x22\x13\x40\xdb\x16\xb8\ \xf0\x62\xa0\x2b\x25\x71\x02\x7f\x5a\x03\x50\x6e\xfd\xed\x71\x6d\ \x3d\xde\x4d\x7f\xfa\xc8\xc5\x15\x51\x3d\x30\x7c\xd4\x52\xee\xbd\ \x07\xb0\x91\xe2\xf9\x7e\x3f\xd9\xe4\xff\x06\xb3\x77\x57\x6c\x46\ \xff\x77\xf3\x5b\x15\x01\x7f\xf5\x91\x76\xf4\xd6\xfc\x75\xb9\x0d\ \x8d\x95\x78\x33\x40\x63\x00\xec\xe6\x53\x16\x03\x50\xd2\x1b\x86\ \x1a\xfe\x69\xba\xde\x35\x94\x06\xc0\x2a\x61\xd7\xdc\x00\xd8\xc0\ \xff\x30\xd7\x5f\xca\x1b\x80\xee\xba\x15\x00\xe5\x0e\x33\xf8\x17\ \x76\x15\x22\x6f\x0b\x6c\xfd\x66\x92\xd4\x6d\x81\x8d\x0f\xb6\xbe\ \x2d\x63\x9a\xd9\x00\x68\x6d\x81\x69\x76\x93\x3a\x81\x3f\x8d\x01\ \x28\x37\xf8\xeb\xbf\x0c\x9b\x10\x95\x69\xf5\xc0\x5d\xef\x6d\xe4\ \x7a\xfc\x06\x70\x2c\xbd\x0c\x3d\xb6\x00\x1d\x3c\xe4\xef\xf5\xb2\ \x2b\x7b\x07\x6c\xbb\xb9\x2f\xe0\xf0\xff\xe6\x75\xa3\xd1\x95\x2f\ \xce\x40\x1f\x2e\x5b\x57\x51\x2d\x96\xad\xf4\x9c\xc2\x9f\xc5\x00\ \x18\x36\x86\x23\xe4\x87\x91\x01\x70\x06\xff\x94\x33\xf8\x13\x18\ \x80\x2e\x8e\xe7\xfe\xff\xad\xd8\x00\x74\xd3\x7f\xe1\xba\xc0\x42\ \xa7\x60\xd6\x4f\x98\xde\x00\x18\xbf\x99\x14\xb3\x01\x28\x3d\xd8\ \x29\xea\xb6\xc0\xc6\xcb\x40\x74\xa5\x24\x4e\xe0\x4f\x6a\x00\xca\ \x19\xfe\xc5\x5f\xb9\x26\x44\x13\x57\xa3\xe3\xfe\x3b\xab\x2c\xab\ \x07\xf0\x26\xbb\x62\xc8\xb2\x1e\xbf\xcd\xbb\x0f\x70\x7d\x7d\x17\ \x8d\x5d\xe9\xfb\xf5\xf2\xec\xcc\x95\x65\x0b\xff\xe8\xad\x6f\xa2\ \xdb\x5b\xe7\xa0\x15\x1b\xb6\x54\x54\x8b\x65\x12\x3d\xa7\xf0\xa7\ \x35\x00\xa6\x5d\x61\xa9\x0d\x00\x45\xef\x1a\x0a\x03\x60\xd7\x5b\ \x87\xd6\x00\x14\xb2\x3c\x97\x01\x70\x69\xb7\xe2\xaf\xec\x3f\x0c\ \xb2\x87\x3f\x59\x5b\x60\xb2\x37\xc3\x66\x00\x8c\x0f\x36\x5d\x5b\ \x60\xbd\x09\x28\xbc\x10\xe8\x4a\x49\x9c\xc0\x9f\xc4\x00\x54\x12\ \xfc\xf5\x7a\xcb\x37\x6e\x43\x77\x4e\x5b\x8e\x4e\x79\x64\x76\xd9\ \x55\x0f\xac\xec\xe0\x13\xd7\xfa\xd6\xa7\x1d\x5c\x5f\xdf\xfd\xb3\ \x36\xf9\x7e\xbd\xfc\xfa\xd5\xd9\x65\x07\xff\xc1\xff\x9d\x88\x9e\ \x9d\xb1\x28\xd7\x4f\xa3\x52\x3e\xbf\xb4\x7a\x4e\xe1\x4f\x63\x00\ \xea\x0d\xee\xfe\x69\xe0\x5f\x6c\x00\x88\x7b\xd7\x10\x1a\x00\x92\ \xc6\x7a\x34\xcf\xff\x4b\x57\xf2\xf1\x06\x42\xb9\xa1\xc4\x00\xd4\ \xc7\x9b\xbe\x6d\x64\x00\x68\xdb\x02\x93\x3b\x19\x7a\x03\x60\x7e\ \xb0\xd9\x0c\x80\xb1\x13\x6c\x61\x32\x00\x2c\x2d\x2d\x01\xfe\xd6\ \x7a\x5b\x3b\x76\xa0\x51\x0b\xb6\xe6\x3a\xf5\x95\x4b\xf5\xc0\xa7\ \xdb\xf6\x72\x39\x7e\x7f\x7f\x7b\x1d\xd7\xd7\x37\x73\xfd\x6e\xdf\ \xaf\x97\xcb\x5e\x9a\x59\x16\xf0\xff\xca\xf5\x63\xd0\x4f\x5f\xf8\ \x00\x4d\x5d\xb8\xba\xa2\x3f\xbf\xa4\x7a\x4e\xe1\x4f\x6a\x00\x4c\ \xe1\xcf\x68\x00\xa8\x1a\xd7\x11\x18\x00\xd2\xae\xba\xa4\x06\xc0\ \x10\xfe\x78\xc4\xe5\x6f\x96\x18\x80\xa6\xa6\x61\x47\x86\x63\xf2\ \x6e\xbd\x01\xa0\x6d\x0b\x4c\xb3\x8c\x11\xa1\xdc\x03\x60\x7d\xb0\ \xe9\x0d\x80\xe9\x32\x10\x83\x01\x60\xed\x67\x0d\xf0\x27\xd7\xfb\ \x60\xdd\xee\x5c\xd3\x1b\xa2\x26\x44\x02\xef\x21\xc0\x06\x80\xc7\ \xf1\x1b\xfa\xf2\x52\x6e\xaf\xef\xf8\x47\x16\x14\xe4\xc9\xfb\x75\ \xbd\x10\x1b\x00\x41\xe1\xff\xdd\x5b\x5b\x73\x65\x8b\xab\xb6\xed\ \x84\xcf\x2f\x85\x9e\x53\xf8\x93\x18\x80\xae\xc7\xbb\x26\x2d\xe1\ \x29\x0d\x40\xd4\x80\x49\x76\x6d\x80\x79\xc0\x9f\xd4\x00\x98\xed\ \xe1\xab\x8b\xa9\x3b\xba\x75\xbb\xf6\x88\x02\xf8\xe3\xdd\x80\x78\ \x53\x00\x2e\x0f\x88\xd8\xf6\x13\xb6\x37\x00\xe4\x6f\x86\xcc\x00\ \xd8\x3b\xad\x34\x95\x09\xd0\xda\x02\x1b\x5f\x0c\x74\x06\x80\x15\ \xfe\x66\x06\x00\xe0\x6f\xad\x67\xdb\x84\x48\xf0\x0d\x84\x4b\xb6\ \xee\x76\x7c\xfc\x3a\xf6\x1d\x44\xff\xf7\x20\xbf\xd7\x77\xde\x1b\ \x2b\x84\x38\xbf\x44\x06\x40\x40\xf8\xc7\xee\xcb\xa0\x27\xdf\x5f\ \x8e\x76\xef\x3f\x00\x9f\x5f\x06\x3d\xa7\xf0\xb7\x33\x00\x85\x9b\ \xbb\x4d\x5a\xc2\x53\xc3\x3f\x45\xd7\xb8\xce\x82\x75\x51\xca\xc6\ \x7a\x76\x06\x40\x5f\xb5\x57\x7c\x33\x5f\x17\x93\x67\x94\xdc\xfd\ \xe3\x7a\xc0\x9c\x01\x88\x29\xcf\x44\x18\xda\x02\xeb\x07\xdd\x9b\ \xb1\x7f\x0c\x40\xbe\xcc\x42\x66\x00\x3a\xf3\x02\xcc\x9c\x20\x85\ \x01\x70\x02\x7f\x23\x03\x00\x93\x07\xb9\x9e\x61\x13\xa2\x00\x54\ \x0f\xcc\x5d\xbb\xc5\xf1\xf1\x9b\xb4\x62\x07\xd7\xd7\x77\xf7\x07\ \x1b\x85\x38\xbf\xb6\x06\x40\x20\xf8\xe3\xb4\xbe\xf3\x46\xbe\x87\ \x26\x2f\xd9\xd8\x99\xd6\x07\x9f\x5f\x36\x3d\xa7\xf0\xb7\x32\x00\ \xa5\xa5\xdd\x29\xdb\x36\xc0\xd6\x83\x37\xfc\x93\xce\xe0\x9f\x30\ \x86\x7f\xd4\xfc\x31\xfe\xe3\xe6\x06\x40\x52\xfe\x1a\x76\x60\x00\ \xe8\x5b\x04\xdb\x1c\x1c\x9a\x67\x2c\x04\x06\xa0\x24\x2e\xd8\xf0\ \x62\x20\x37\x00\x4e\xe0\x5f\x6c\x00\x60\xf2\x60\xd3\xeb\x6c\x42\ \x34\x76\x05\xfa\xd6\xbd\xe2\x97\x0e\x7e\xb2\x66\xb3\xe3\xe3\x87\ \x57\x40\x78\xbe\x3e\xdc\xe6\x58\x84\xf3\x6b\x69\x00\x04\x81\x3f\ \xce\x28\xf8\xd3\x98\x8f\xd1\x92\x4d\x3b\xe1\xf3\xcb\x49\xcf\x29\ \xfc\xcd\x0c\x80\x71\xae\x0b\x3b\xfc\xeb\x0b\x4a\xce\x29\xba\xd6\ \x5a\xc2\x3f\x49\xc1\x4b\x6b\x03\xa0\x87\x7f\xd4\xf4\x31\xbe\xfc\ \x07\x53\x03\x50\x17\x93\x15\x2a\x03\x20\x39\x81\x7f\xd2\xde\x19\ \xd1\x3c\x63\xb1\x31\x00\x86\xbd\x02\x18\x5a\x03\xeb\x2f\x2e\x27\ \xf0\xd7\x1b\x00\x98\x3c\xf8\xe8\xcd\xcf\xde\x5d\x5f\x33\x71\x29\ \x0a\x3f\x38\x4b\xd8\xea\x01\xcd\x00\x38\x79\xbf\xea\x2b\x4b\xb9\ \xbd\xbe\xef\x3c\x3c\x1f\xed\xda\x77\x40\x88\xf3\x6b\x6a\x00\x04\ \x80\xff\xc9\xff\x9a\x88\xfe\xfb\xf6\xa7\x68\xdb\x9e\xfd\xf0\x79\ \xe3\xac\xe7\x14\xfe\x46\x06\x80\x18\xfe\x8d\x14\x8f\x8d\x8b\x0c\ \x00\x71\x62\xad\x25\xfc\x93\x14\xbc\xb4\x82\xbf\x4a\x00\xff\xa2\ \x2e\x80\xfa\x3d\x00\x87\xbb\x02\x26\xbf\xcb\x62\x00\xd8\xe0\x6f\ \x6e\x02\x3a\x0f\x0c\xcd\x32\x8b\x85\x01\x30\x6d\x14\xc4\x68\x00\ \xb4\x0b\xca\x09\xfc\x35\x03\x00\x93\x07\x7f\xbd\x0d\x5b\x3b\xd0\ \xe3\x73\x36\xa3\xc4\x73\x4b\x84\xab\x1e\xc0\x06\xc0\xc9\xfb\xdd\ \xb9\xf7\x00\xfa\x7f\xf7\xf1\xcb\x49\x48\x8f\x5e\x26\xcc\xf9\x35\ \x34\x00\x3e\xc3\x5f\x7e\x7c\x3a\x7a\x73\xde\x5a\x74\xc0\x24\xad\ \x0f\x3e\x6f\xce\xf5\x9c\xc2\xbf\xd8\x00\x98\x27\xba\xb2\x19\x80\ \x42\x6e\xa4\xf2\xb9\x33\x29\x66\x03\xc0\x0a\x7f\x33\x03\xd0\xd5\ \xa5\xd7\x1a\xfe\x78\xe0\x6a\xbf\x6e\x66\x5f\x2d\x2d\x2d\x55\x56\ \x4d\x81\x8c\x0c\x80\x33\xf8\x27\xad\x0f\x0e\xcd\x32\x8b\xc9\x46\ \x40\xcb\x2e\x81\x0c\x06\x40\x7f\x51\x39\x81\x3f\x1e\x30\x79\xb8\ \xab\x87\x37\xb6\x4f\x5c\xbe\x03\xfd\xe8\xcd\x15\xc2\x94\x0e\xe2\ \x3d\x00\x4e\xde\xef\xa4\xc5\x1b\xb8\xbe\xbe\x5b\xa6\x2c\x17\xe6\ \xfc\x96\x18\x00\x9f\xe0\xff\xb5\x1b\xc6\xa2\x2b\x47\x7f\x84\xe6\ \xac\xdd\x0e\x9f\x37\x0f\xf4\x9c\xc2\x5f\x6f\x00\xac\xe3\xdc\xe9\ \x0d\x80\x31\xfc\xd3\xcc\x06\xa0\xb4\x11\x1e\x1d\x2f\x4b\x1e\xbb\ \xeb\x3a\xf4\xda\xc1\xdf\xb0\x02\xa0\xf8\x2b\xfb\x8d\xd3\x49\x57\ \x01\x72\xbf\xbc\xa8\x45\x61\x84\xa1\x35\xb0\xf9\xc1\x49\x32\xb5\ \x06\x26\x82\x3f\x83\x01\x28\xbe\xb0\x9c\xc0\x1f\xff\x1c\x4c\x1e\ \xde\xe9\x69\x4d\x88\x8e\x37\x6b\x42\xe4\xd1\x06\x42\x5c\x05\xe0\ \xe4\xfd\xde\x3e\x75\x39\xd7\xd7\x37\x6e\xc1\x7a\x61\xce\x6f\x81\ \x01\xf0\x01\xfe\x75\x77\x8c\x47\x77\x4c\x5e\x84\x36\xee\xdc\x0b\ \x9f\x37\x0f\xf5\x9c\xc2\x5f\x33\x00\xf6\xbd\x5c\xe8\x0c\x40\x29\ \x3b\x78\xc3\x3f\x49\xcd\xcb\x92\x3d\x77\x84\xf0\xcf\x19\x00\x49\ \x9d\xda\xcd\xee\x2b\x2c\x29\xf7\x93\x18\x80\x4e\xe7\x61\xd0\x9f\ \x98\xc5\x00\x98\xb6\x08\x66\x34\x00\xf5\xa4\x2d\x82\x09\x4d\x80\ \xd1\xc5\xe5\x04\xfe\xf8\x62\x87\xc9\xc3\x7b\x3d\xc3\x26\x44\x1e\ \x56\x0f\x68\x41\x40\xac\xef\xf7\xdc\x97\xe6\x71\x7b\x7d\xdf\xb9\ \x6f\x26\x5a\xbf\x75\xbb\x30\xe7\xb7\xd3\x00\x78\x0c\xff\x01\x0f\ \x4e\x45\x2f\x7c\xb4\x0a\xed\x3d\x70\x10\x3e\x6f\x3e\xe8\x39\x85\ \x3f\xfe\x39\xb7\xe1\x5f\x5f\xb0\xca\x4c\x6f\x00\x4c\xf9\xe6\x04\ \xfe\x3a\x03\x60\x07\xff\xfc\x06\xc0\x7b\x6c\x0d\x40\x48\x52\x2e\ \xb5\x87\xbf\xd2\xe5\x3c\x8a\xe0\xcf\x62\x00\xcc\x0f\x0e\x9b\x01\ \x20\x86\x3f\xa1\x01\x30\xbb\xb8\x9c\xc0\x1f\x5f\xf4\x30\x79\xf8\ \xa7\xa7\x35\x21\x6a\x79\x75\x99\xa7\xa5\x83\xb4\x06\x40\xff\x7e\ \xb7\x6e\xef\x40\x27\xdc\xcf\x6f\x83\xe3\xf0\xe7\x3e\x11\xea\xfc\ \xe6\x0c\x80\x47\xf0\xff\x72\xf6\xdf\x2e\x7e\xfe\x03\x34\x7d\xf9\ \x66\x74\x08\x3e\x1f\xbe\xea\x39\x85\x3f\xfe\x79\xfb\x46\x6e\xe4\ \x06\xc0\x8c\x1f\xac\x06\xc0\x92\x6f\x0c\x06\xa0\xe0\xb1\xbb\x6d\ \x6e\x8f\x6e\xc4\xe5\x4b\x08\x56\x00\xd4\xef\xd9\xc3\x5f\xd1\x39\ \x0f\x95\xa9\x35\x70\x61\x68\x90\xd9\xc1\xa1\x37\x00\xfa\xd6\xc0\ \x44\xfd\x9d\x6d\x0c\x80\x95\xb3\x74\x02\x7f\xcd\x00\xc0\xe4\xe1\ \xbf\xde\x7b\xcb\x37\xa1\x5f\xbf\xb5\x18\x1d\xf7\xdf\x99\xae\x57\ \x0f\xd0\x18\x80\xe2\xf7\x3b\xed\xd3\x8d\x5c\x5f\xdf\x75\x93\x96\ \x0a\x75\x3e\x2e\x7b\xf1\x43\xd7\xe1\xff\xdd\x1b\x5f\x47\xd7\x8d\ \x9b\x8b\x56\x6c\xdd\x05\x9f\x0f\x41\xf4\x9c\xc2\x1f\xcf\xa5\xf6\ \x8d\xdc\xc8\x0c\x80\x3d\xfc\xe9\x0c\x00\x2f\xf8\x47\x2c\xe1\x9f\ \x24\x32\x00\x27\xc6\xd5\x93\x6d\x0d\xc0\xb1\x89\x0b\x6b\x42\x31\ \xf9\x80\x35\xfc\x95\xc2\x5f\xce\x68\x00\xf4\xad\x81\x0d\xe1\x4f\ \x69\x00\xf4\xed\x81\x89\xe0\x6f\x63\x00\xec\x96\x95\x9c\xc0\x1f\ \x0f\x98\x3c\xc4\xd2\x5b\xb1\x69\x3b\xfa\xf7\xfb\x1b\x50\xbf\xff\ \x2d\x72\xad\x7a\x80\xd4\x00\x18\xbd\xbe\xff\xbc\xb3\x92\xab\x39\ \x79\x73\xfe\x7a\xa1\xce\xc7\x4f\x9f\x79\xc7\x35\xf8\x9f\xf1\xcf\ \x71\xe8\xa1\xa9\xf3\xd1\x8e\x3d\xfb\xe0\xf3\x21\x98\x9e\x53\xf8\ \xeb\x0d\x80\x55\x0b\x60\x3b\x03\x60\xb5\x72\xcc\x04\xff\x86\xa4\ \xf5\xcd\x2d\xf5\x6a\x79\xd1\x9e\xbb\x82\x0d\xf9\xd6\xf0\xaf\x8b\ \xa9\xfb\x8f\x1b\x32\xa4\xa7\x51\xf5\x5f\xe9\x2a\x40\x4c\x9e\x6d\ \x0d\x7f\x6d\xc3\x41\x92\xd9\x00\x14\x56\x0e\x98\xc0\x9f\xc2\x04\ \xe8\x5b\x03\x47\x49\xe1\x6f\x61\x02\x8a\xdb\x03\x1b\x5d\x5c\x4e\ \xe0\x8f\xff\x0c\x93\x87\x98\x7a\x38\x17\xff\x95\x85\xdb\xc8\x9b\ \x10\x51\xec\x21\x20\x31\x00\x66\xaf\xef\xa2\x31\x2b\xb8\xc1\xff\ \xd8\xec\x9f\xb7\xee\xde\x2f\xd4\xf9\xf8\xe9\x33\x6f\x73\x87\xff\ \x88\x47\x33\x68\xcc\xec\x65\x68\x07\x7c\x3e\x84\xd5\x73\x0a\x7f\ \xcd\x00\xb8\x05\x7f\x16\x03\x60\x0f\xff\x14\xc3\x4a\x79\xd1\x9e\ \x3b\x42\xf8\x1f\xde\x00\x28\xcf\x2c\x8e\xfe\xc7\xf9\x3f\x26\xfb\ \x00\xd4\x87\xed\xe1\x6f\x1d\x09\x4c\xf3\x66\xa2\x94\x8d\x81\xac\ \x1b\x05\x69\xe5\x1a\x69\x66\x03\x50\xdc\x1e\xd8\xec\xe2\x72\x02\ \x7f\xfc\xf7\x30\x79\x88\xaf\x67\xdb\x84\x88\x72\x03\xa1\x9d\x01\ \x30\x7b\x7d\xfb\x0f\x1c\x44\xa1\xc7\x16\x70\x5b\x99\x18\xfc\xc2\ \x12\xe1\xce\x47\xa7\x01\x70\x08\xff\xff\xbb\xfe\x35\xf4\x9b\x97\ \xdf\x45\x1f\x2d\x5f\x07\xd7\x73\x00\xf4\x9c\xc2\x1f\xff\xd9\x3a\ \xbb\xc5\xda\x00\x90\xec\x19\xa3\x31\x00\x9d\x2c\xb2\x84\x7f\xca\ \x19\xfc\x13\x49\x2a\x03\x10\x8e\xab\x0f\xe8\xe0\x5f\x6d\x69\x00\ \xb2\xdf\xfc\x93\xe2\xae\x42\xc6\x21\x03\x49\xea\x55\x00\xe3\x5e\ \x01\x29\x66\x03\x50\x1a\x17\xcc\xd0\x1d\xd0\x10\xfe\x29\xdb\x65\ \x25\x27\xf0\xb7\x6b\x07\x0c\x93\x87\x58\x7a\x86\x4d\x88\x18\xaa\ \x07\xac\x0c\x80\xd5\xeb\xfb\x64\xd3\x1e\xae\x8f\x25\xae\x99\xba\ \x4e\xb8\xf3\x91\x33\x00\x0e\xe0\xdf\xf7\xae\x09\xe8\x5f\x13\x3e\ \x41\xab\x36\x6e\x81\xeb\x39\x40\x7a\x4e\xe1\x8f\xff\x9e\xd5\x00\ \xd0\xc1\x3f\x4d\x77\x33\x6a\xb7\xb2\xcd\x05\xfe\x64\x06\x20\x94\ \x50\x2f\xca\xc3\xbf\x47\x7e\x98\x1b\x80\xa8\x24\x47\x8b\x5b\x0a\ \x1a\xd7\x19\xd2\x19\x00\xeb\x46\x41\xf4\x06\xc0\xbc\x57\x00\x7d\ \x7b\xe0\x68\xa3\x59\x8b\xe0\x16\x26\x03\x40\x12\x6f\x09\x93\x47\ \xf0\xf4\xf6\x1c\x38\x84\x9e\x9b\xb7\x15\x9d\x95\xbd\x83\x66\xa9\ \x1e\x30\x33\x00\x76\xaf\xef\xb1\x39\x9b\xb9\xee\x49\x78\x63\xc9\ \x76\xe1\xce\x07\xde\x03\xc0\x02\xff\x61\x8f\xbe\x8d\x5e\xfd\x78\ \x0d\xda\xd6\xb1\x03\xae\xe7\x00\xea\x39\x85\xbf\x75\x37\x40\x67\ \xf0\x8f\xb2\xc2\xbf\xc1\x45\xf8\x33\x18\x80\x2c\xbb\x43\x59\xe0\ \xf7\xcc\x8e\x23\x75\x06\xc0\x78\x0f\x80\xa2\xc8\xd5\x91\x58\x73\ \x47\xc4\xa4\xa5\x20\x8b\x01\xb0\xef\x12\x48\xb7\x0a\x60\xdd\x28\ \x88\xde\x00\x18\xc3\x3f\xcd\x64\x00\x48\xb3\xad\x61\xf2\x08\xae\ \x1e\x7e\xa6\x3c\x71\xd1\x7a\x74\xf1\xab\x0b\xd0\xb7\xee\x25\x2f\ \x1d\x34\x32\x00\x24\xaf\xef\xf2\xd6\x55\x5c\x37\x24\x6e\xdc\x7d\ \x40\xb8\xf3\x81\xab\x00\x48\xa1\xff\xd5\xeb\xc7\xa0\x9f\x8d\x9a\ \x85\x66\xad\xde\x06\xd7\x73\xc0\xf5\x9c\xc2\x9f\xc5\x00\xd0\x94\ \x8a\x93\x18\x00\x3a\xf8\xa7\x9c\xc1\x9f\xd2\x00\x84\x62\xf2\xd6\ \xd3\x4e\x1b\x5e\x9b\x05\x7e\x8d\xde\x00\x18\xc2\x3f\xbf\x4c\xd0\ \x33\x22\x35\x4f\xb4\x86\xbf\x4a\xbc\x0f\x80\xac\x45\x30\xb9\x01\ \xb0\xef\x12\x48\x67\x00\x8a\xdb\x03\x17\x76\x09\xa4\x33\x00\x34\ \x8d\x2d\x60\xf2\x28\x0f\xbd\x05\xeb\xb6\xa2\xbf\x4f\x5b\x87\xea\ \x08\x9e\xd1\x17\x1b\x00\x92\xd7\x87\xeb\xd4\xfb\x3e\xb9\x88\x1b\ \xfc\x1b\x9e\x5b\x22\xe4\xf9\xb0\x6d\x07\x9c\x1d\x27\xdc\xde\x86\ \x6e\x9d\xb8\x00\xad\xeb\xd8\x03\xd7\x5f\x99\xe8\x39\x85\x3f\xad\ \x01\xc8\xcd\xf1\x14\xa5\xe2\x76\x06\xc0\x90\x47\x76\x3c\x73\x02\ \x7f\xca\xe7\xff\x21\x49\x69\xcb\x32\xfd\x28\x9d\x01\xa8\xb6\x82\ \x3f\x76\x07\x35\x51\x49\xb9\x2d\x42\x10\x2f\x68\x67\x00\xa2\xc4\ \xbd\x02\xc8\x0c\x00\x59\x8b\xe0\x34\xb1\x09\xd0\xb7\x06\x2e\x85\ \x3f\x9d\x01\xa0\xed\x6a\x05\x93\x47\x79\xe9\xed\xd8\x77\x10\x3d\ \xf1\xf1\x16\xcb\x26\x44\x2b\x3b\xf6\x51\xbf\xbe\xc5\x5b\xf7\x72\ \xad\x46\xf8\x63\xfb\x5a\x21\x8f\xdf\x15\x2f\xcf\x32\x05\x7f\xe2\ \xfe\x29\xe8\x99\x99\x2b\x0b\xd2\xfa\xe0\xfa\x2b\x0f\x3d\xa7\xf0\ \xa7\x31\x00\x9d\xf3\x3c\x35\xfc\xd3\x74\x8f\xa1\x19\x0d\x80\x11\ \x2f\xad\x5a\x00\x93\x85\xf6\xc9\xb7\xe8\x0c\x40\x0f\xd3\xa5\xff\ \xfc\xee\x40\xec\x10\x6a\x22\x09\x45\x25\x8b\x17\x34\x7f\x0c\x10\ \xa5\x6e\x14\x64\x7d\xd0\xc8\xe0\x4f\xbe\x0a\x50\xb2\x0c\xd4\x98\ \xa2\xea\x0d\xe0\x04\xfe\x76\x06\x00\x26\x8f\xe0\xea\xe1\x26\x44\ \x93\x56\xec\x40\xe7\x17\x35\x21\x6a\x7c\x7e\x49\x67\xea\x1c\x8d\ \xde\xc8\xb9\x5b\xb9\x96\x22\x8e\x5a\xb8\x4d\xc8\xe3\x87\xdb\xed\ \xea\xa1\xff\xa5\xbf\x8f\x41\x17\x3e\xf7\x3e\x9a\xb6\x74\x53\x49\ \x5a\x1f\x5c\x7f\xe5\xa3\xe7\x14\xfe\xe6\x06\xc0\x19\xfc\xa3\x02\ \xc0\x3f\x62\x09\xff\xa4\x2d\xfc\xf1\xe8\x93\x90\x9b\xf2\x06\xa0\ \xa7\x15\xfc\xab\xf2\xee\x20\x67\x00\xbe\x3f\xb0\xe9\x2b\x61\x49\ \x3e\xc8\x6a\x00\xd8\xba\x04\x5a\xc0\x3f\x41\x03\x7f\x7b\x03\x60\ \xf8\x0c\x88\xb2\x39\x90\x13\xf8\x5b\x19\x00\x98\x3c\xca\x47\x6f\ \xd1\x96\xbd\xe8\x8e\x77\x37\xa0\x9b\xa7\xaf\x47\xab\x3a\xf6\x33\ \xe9\xfd\x6a\xc2\x6a\xae\x5d\x0c\xb5\xd7\x21\xda\xf1\xc3\x77\xf7\ \xd7\x8c\x9b\x9b\xdb\xd4\x77\x5d\xeb\x3c\xb4\x6c\xcb\x2e\xb8\xfe\ \x2a\x40\xcf\x29\xfc\x49\x0c\x40\xc1\x23\x5e\x8a\x9c\x18\x33\x03\ \x60\x79\x33\xca\x60\x00\xac\x6e\x96\x59\x0c\x80\x06\xff\x50\x4c\ \xd9\xff\xfd\x81\xfd\xbf\x94\xbf\xfb\xef\x6e\xb5\xf4\xaf\x37\x00\ \x39\xa7\x90\x35\x00\xef\x93\x76\x06\xd4\x1b\x00\xf6\x16\xc1\x16\ \xf0\x4f\xd0\xc0\xdf\xfa\x31\x80\xe9\x06\x10\x06\x03\xc0\x0a\x7f\ \x33\x03\x00\x93\x07\xe8\x15\x7f\x9d\xf9\xcc\x62\x6e\xf0\xff\xfe\ \xc8\xc5\x70\x3e\x40\x4f\x28\x3d\xa7\xf0\xb7\x33\x00\x25\x1b\xbc\ \xa9\xe1\x9f\xa6\xdb\x83\x46\x69\x00\xa8\xe0\x9f\x20\x83\x7f\xb4\ \xab\x7a\xef\xdd\x2c\xcb\x6b\x4d\xe1\x9f\x37\x00\x47\xe8\x0c\x40\ \xe7\x33\x82\xb0\xa4\xdc\x45\x65\x00\x24\x27\xf0\x37\x36\x01\x05\ \x69\x4a\xc4\xf0\x37\x5f\x05\xe0\xd9\x22\xd8\x09\xfc\x8d\x0c\x00\ \x4c\x1e\xa0\x57\xfc\xb5\x69\xf7\x01\x6e\xf0\xc7\xe3\xaa\x89\x6b\ \xe0\x7c\x80\x9e\x50\x7a\x4e\xe1\x6f\x6c\x00\x9c\xc1\x3f\xca\x0a\ \xff\x06\x7e\xf0\x67\xb9\xfb\x2f\xce\xec\xc9\x8e\xbb\x4c\xeb\xfd\ \x0d\x0c\x40\xb5\xde\x29\xd4\xc5\x64\x85\xc6\x00\x44\xa4\xd2\xdd\ \x8b\x11\xc6\xf6\xc0\xa6\x5d\x94\x18\xdb\x03\x13\xd7\x7d\x52\x18\ \x00\x27\xf0\x2f\x36\x00\x30\x79\x80\x9e\xd1\xd7\x84\xe5\x3b\xb8\ \xc1\x1f\x0f\x9c\x61\x00\xe7\x03\xf4\x44\xd2\x73\x0a\x7f\x33\x03\ \x60\x58\xda\x4d\x51\x1d\x56\x6c\x00\x9c\xc3\x3f\x45\x59\x1a\x4f\ \x67\x00\x8c\x12\x7b\xa3\x71\x75\xb8\x6d\x03\x20\x9d\x01\x28\x58\ \x26\x38\x71\x80\xf2\x05\x52\x03\x10\xd1\xb5\x07\xd6\x97\x2e\xb0\ \x1a\x00\xd3\x2e\x4a\x0c\x06\x80\xaa\x45\x30\xa1\x01\xc0\x09\x81\ \x4e\xe0\xaf\x37\x00\x30\x79\x80\x9e\xd9\xd7\xbf\xde\xdf\xc8\x0d\ \xfe\x4e\x72\x08\xe0\x7c\x80\x9e\x5b\x7a\x4e\xe1\x6f\x64\x00\x4c\ \x73\x5d\xa8\xe1\x9f\xa6\xa8\x3e\x23\x37\x00\xa4\x1b\xe4\x49\x0d\ \x80\x49\x5c\xff\xa1\x7e\x03\x5b\x8e\x21\x31\x00\xa6\xcf\x07\xc2\ \x71\xf5\x43\xb2\x52\x83\x2e\x03\x50\x5c\xb7\x48\x6b\x00\x2c\x5b\ \x28\x36\xb0\xb5\x08\xae\x77\xa1\x45\xb0\x13\xf8\x6b\x06\x00\x26\ \x0f\xd0\xb3\xfa\xba\xf8\xad\x95\xdc\xe0\x7f\xca\x53\x8b\x60\x37\ \x3d\xe8\x09\xa7\xe7\x14\xfe\xc5\x06\xc0\x29\xfc\xa3\xac\xf0\x27\ \x34\x00\xcc\xf0\x4f\x50\xc1\x1f\xd5\xc5\xe4\x19\xdd\x9c\x7e\x85\ \x24\xf5\x36\x7b\xf8\x77\x19\x80\x5c\x8b\x42\xc6\xf6\xc0\x5d\x07\ \x27\xc9\xb1\x45\x70\xaa\xc4\x00\xf0\x6a\x11\xec\x04\xfe\x78\xc0\ \xe4\x01\x7a\x76\x5f\xa7\x3f\xbd\x98\x0b\xfc\xf1\xb8\x72\xc2\x6a\ \x38\x1f\xa0\x27\x9c\x9e\x53\xf8\xeb\x0d\x40\xbd\xc1\xd2\xbf\x51\ \xf7\x3f\x52\x03\xe0\x17\xfc\x49\xef\xfe\xcd\x1b\xf5\xa9\x28\x14\ \x57\x6e\x72\x6c\x00\xb2\x40\x1f\x64\x0f\x7f\xa5\x0b\xfe\x8c\xed\ \x81\x0b\x0f\x8e\x4d\x23\x05\x9a\x96\x8c\x45\x26\x80\xb5\x3d\xb0\ \x51\x8b\x60\x27\xf0\xc7\x3f\x07\x93\x07\xe8\x59\x7d\x6d\xdf\x7b\ \x90\x1b\xfc\xf1\x78\x56\xf7\xfc\x1f\xce\x07\xe8\x89\xa2\xe7\x14\ \xfe\x9a\x01\xb0\x84\x7f\x23\x0b\xfc\x53\x74\xa5\xe7\x76\x39\x36\ \x94\x1b\xe4\xed\x0c\x80\x15\xfc\x73\x23\x21\x37\x38\x36\x00\xa7\ \x9f\x9e\x3e\x2a\x1c\x53\xf7\x90\x6c\x38\x60\x6d\x0f\x5c\xea\x8c\ \x6c\xb2\x94\x1b\xc4\x68\x11\xec\x04\xfe\xf8\x62\x87\xc9\x03\xf4\ \xac\xbe\xde\x5d\xbb\x8b\x1b\xfc\xf1\x58\x91\x4f\x21\x84\xf3\x01\ \x7a\x22\xe9\x39\x85\x3f\xfe\xb9\xae\x79\xd9\x19\xfc\xa3\xac\xf0\ \x6f\x48\xd9\xe7\xd8\x38\x81\x7f\x82\x0e\xfe\x75\x31\x75\xc7\x71\ \x43\x86\xf4\xec\xc6\xe3\x2b\x1c\x57\x5a\x49\x9e\x39\xb0\x1a\x00\ \xaf\x5a\x04\x47\x39\xb7\x08\x76\x02\x7f\x7c\xd1\xc3\xe4\x01\x7a\ \x56\x5f\xf8\x8e\x9d\x17\xfc\x63\xcf\x2c\x81\xf3\x01\x7a\x42\xea\ \x39\x85\x3f\xfe\xf9\x62\x03\x60\xd4\xfd\x8f\x7c\xa4\x4a\x0c\x80\ \x97\xf0\xb7\x33\x00\xb6\x77\xfe\x78\xc4\x94\x37\xba\xf1\xfa\x0a\ \x4b\xf2\x1f\x48\x9e\x39\xd0\xb6\x07\xb6\x7e\x26\x92\xe2\xd8\x22\ \x38\xed\x4a\x8b\x60\x27\xf0\xd7\x0c\x00\x4c\x1e\xa0\x67\xf6\x75\ \xfb\x8c\xf5\x5c\xe0\x8f\xc7\x5f\xa6\xac\x85\xf3\x01\x7a\x42\xea\ \x39\x85\x3f\x9e\x4b\xf9\xc3\x3f\x45\x97\x3b\x63\x17\x62\x47\x99\ \x8b\x63\x0e\x7f\xd5\x1e\xfe\x78\xc4\xd5\x5f\x73\x33\x00\x51\x49\ \x8e\x12\x3d\x73\xa0\x34\x00\xd6\xcf\x44\xe8\x0d\x80\xd7\x2d\x82\ \x9d\xc0\x1f\x0f\x98\x3c\x40\xcf\x4a\xef\xaf\x13\x96\x72\x81\x3f\ \x1e\xad\x4b\xb7\xc3\xf9\x00\x3d\x21\xf5\x9c\xc2\x5f\x6f\x00\x0c\ \xf7\x6f\x51\x74\x85\x65\x82\x7f\x83\x1d\xfc\x93\xd4\xa1\x78\x46\ \x06\xa0\xb3\xd4\xde\x0e\xfe\x52\xee\xf7\x9c\xe8\xa4\xfa\xaf\xd0\ \x00\x44\x43\x55\x59\x13\xb0\x82\xc8\x79\x10\x3e\x06\x28\x87\x16\ \xc1\x4e\xe0\x8f\xff\x0c\x93\x07\xe8\x59\xe9\xdd\x30\x79\x29\x17\ \xf8\x1f\xf7\xf0\x3c\xb4\x69\xdb\x0e\x38\x1f\xa0\x27\xa4\x9e\x53\ \xf8\x6b\x06\xc0\xb4\x7a\x8b\xa2\x2b\xac\xde\x00\x08\x03\xff\x04\ \x1d\xfc\xc3\x31\x75\x61\x16\xdb\xdd\xad\xc0\x9f\xcf\xfd\x39\x82\ \x34\x24\xa8\x57\x54\x6a\x7e\x88\xe8\x97\x13\xac\x02\x04\xa6\x45\ \x70\x43\xca\x7c\x59\x89\xd0\x00\x58\x85\x5c\xc0\xe4\x01\x7a\x56\ \x7a\x0f\xbf\xb7\xd2\x31\xfc\xf1\xcf\x5d\xf2\xfa\x22\x38\x1f\xa0\ \x27\xac\x9e\x53\xf8\xe3\x3f\xf3\x85\x3f\x65\xd6\x8c\x25\xfc\x93\ \xd4\x71\xf8\xe6\xf0\x57\x09\xf8\xab\xa2\x90\xa4\xfc\xd3\x06\xfe\ \xd5\x44\x06\x20\x0f\xff\xa3\xb3\xa3\x77\x9f\x86\xe6\x14\xc9\x2f\ \xb7\x33\x00\x74\xa5\x10\xf6\x06\xc0\xcf\x16\xc1\x4e\xe0\x6f\xd7\ \x0e\x18\x26\x0f\xd0\x7b\x7f\xc5\x26\xc7\xf0\xc7\x3f\x3f\x66\xfe\ \x3a\x38\x1f\xa0\x27\xac\x9e\x53\xf8\xe3\xbf\x67\x35\x00\x85\xf9\ \x30\x0c\xf0\x6f\x48\xd9\xc7\xd7\x53\x8e\x92\xae\xba\x3a\x03\x60\ \xcf\xdf\x5c\x00\xd0\x00\x0b\xf8\x6b\xfd\x7e\xac\x0d\x40\xfe\x9b\ \x71\x17\xa1\x5e\xd8\x00\x9c\xde\x7f\xe8\x57\xc2\x92\xb2\x8b\xa5\ \x3b\x60\x79\xb6\x08\x4e\x3b\x82\x3f\xad\x01\x80\xc9\xa3\xf2\xf4\ \x76\x64\xff\x3c\xf8\x85\x25\x8e\xe0\x3f\xec\xd9\x4f\x50\x07\x9c\ \x0f\xd0\x13\x58\xcf\x29\xfc\x0f\xe7\x00\xd0\x1b\x80\xd2\x74\xd8\ \x94\x61\xeb\x5f\x5f\xe1\x9f\xa0\x83\x7f\x76\x6c\x0f\x85\x5a\x8e\ \x34\xe1\x79\xcf\x7c\xb7\xdf\x1e\x46\xd1\xff\xc5\xdf\x5c\x93\xbf\ \xfb\xcf\x19\x00\x3c\xb2\xe2\xa3\x69\xbb\x03\x06\xbe\x45\x70\x03\ \xbd\x01\x20\xcd\xb6\x86\xc9\x03\xf4\xec\xf4\xa6\xad\xda\x89\xbe\ \xc9\x08\xff\xe3\xfe\x3b\x13\xbd\xbb\x7c\x13\x9c\x0f\xd0\x13\x5a\ \xcf\x29\xfc\x4d\x0d\x00\x13\xfc\xd9\x0c\x80\x79\x7c\x3d\x9b\x01\ \x28\x85\x3f\x09\x77\xf1\x50\x5e\x30\x59\xc9\xaf\xc9\x8f\x4e\x03\ \x60\x05\x7f\xec\x14\x8e\xd2\x19\x00\x3c\x8e\x08\x25\xd4\x8b\x58\ \x0c\x80\xb3\x16\xc1\x29\x61\x5b\x04\x3b\x81\x3f\xa9\x01\x80\xc9\ \x03\xf4\x46\xce\xdd\x8a\x8e\x7d\x90\x0e\xfe\xdf\xbe\xf7\x43\xf4\ \xe2\x9c\x35\x70\xfc\x40\x4f\x78\x3d\xa7\xf0\xa7\x35\x00\x46\xf3\ \x3d\x13\xfc\x1b\x52\xf6\xbd\x6b\x18\x0c\x40\x01\x2f\xf5\x09\xbb\ \x24\xec\x4d\x24\xcf\x37\x80\x7f\x6d\x9e\xe7\x9a\x01\xa8\xee\x66\ \xf3\x8c\xa0\x46\x67\x00\x8e\xd6\x9e\x15\xe0\xee\x80\xa1\x98\x7c\ \x80\xaa\x45\x70\x42\xcc\x16\xc1\x11\x9a\x16\xc1\x0d\x64\x06\x80\ \xb6\xab\x15\x4c\x1e\xa0\x47\xaa\xf7\xe1\xba\xdd\x28\xf5\xea\x32\ \x22\xf8\x37\xfc\xef\x63\x34\x61\xe1\x7a\x38\x7e\xa0\x17\x08\x3d\ \xa7\xf0\x37\x34\x00\x4c\xf0\x4f\x8b\x05\xff\x04\x1d\xfc\xeb\x24\ \x79\x5f\x9f\x84\xfc\x59\x83\x3d\x7c\x47\xeb\x0c\x40\x0f\xab\xa5\ \xff\xea\xbc\x43\xd0\x0c\x40\x6d\xf1\x46\x81\xe2\x54\xc0\xe0\xb5\ \x08\x4e\xd1\xb7\x08\x26\x30\x00\x2c\x2d\x2d\x61\xf2\x00\x3d\x5a\ \x3d\xdc\xce\xf7\xc9\x8f\xb7\xa0\x3f\x65\xd6\xa2\x8b\xc6\xae\x44\ \x23\x5e\x5b\x8e\xce\x7d\x7d\x39\xba\x62\xdc\x4a\x74\xf3\x94\xe5\ \x68\x7c\x16\xfc\xdb\x3b\xe0\xf8\x81\x5e\x70\xf4\x9c\xc2\x9f\xd4\ \x00\x98\xcd\xf7\xac\x77\xff\xd6\xf0\x4f\x31\x70\xce\x0c\xfe\x84\ \x77\xff\x71\xf5\xcd\xe2\xea\xbd\xfc\xd0\x0c\x40\x4f\x2b\xf8\x57\ \xe5\xdd\xc1\x91\xba\xe7\x05\x25\xbb\x04\x23\x71\xe5\x72\x92\x17\ \x53\x50\xba\x50\xd4\x22\x38\x12\xc4\x16\xc1\x0d\xe6\x06\x80\xb5\ \x9f\x35\x4c\x1e\xa0\x07\x7a\xa0\x57\xe9\x7a\x4e\xe1\x5f\x62\x00\ \x28\xf7\x78\xb1\x18\x80\xdc\xa3\x67\xbb\xae\xb5\x4c\x8d\xf0\x74\ \xbc\x94\x92\x54\x06\x20\x22\x29\x17\xeb\xe0\xdf\x3b\x3f\x34\x03\ \x50\x63\xb7\xe9\x4f\x6f\x00\x4c\x9d\x42\x28\xd1\xf2\xd5\xec\x2f\ \x3b\x44\xd5\x22\x38\x21\x66\x8b\xe0\x28\x0d\xfc\x4d\x0c\x00\x2b\ \xfc\xcd\x0c\x00\x4c\x1e\xa0\x07\x7a\xa0\x57\x49\x7a\x4e\xe1\x6f\ \x67\x00\xc8\xe0\x9f\x16\x0b\xfe\x09\x3a\xf8\xe3\x47\xf3\xf8\x11\ \xbd\x0e\xfe\xc7\xe8\x0c\x40\xad\x65\xea\x5f\xfe\x87\xaa\x74\x35\ \x82\x96\x11\x81\xe1\x98\xda\x1e\xec\x16\xc1\x49\xfa\x16\xc1\x06\ \x06\xc0\x09\xfc\x8d\x0c\x00\x4c\x1e\xa0\x07\x7a\xa0\x57\x69\x7a\ \x4e\xe1\x6f\x65\x00\xec\x1e\xf3\x32\xc1\xbf\x21\x69\xcf\x23\x6e\ \xf0\x27\x5c\xfe\x97\xd4\xb6\x22\xf8\x6b\x06\xe0\x68\xd2\xc0\x9f\ \xaa\xfc\x1e\x00\xdb\x7c\xe0\x50\x5c\xfd\xb9\x3d\xfc\x95\xc2\x67\ \x18\x8e\x5b\x04\xab\xd6\x2d\x82\x13\x6c\x2d\x82\x9d\x74\x09\x74\ \x02\xff\x62\x03\x00\x93\x07\xe8\x81\x1e\xe8\x55\xa2\x9e\x53\xf8\ \x17\x18\x00\x26\xf8\xa7\xc5\x82\x3f\x93\x01\x50\x2e\x2b\x82\xff\ \x31\x5a\xf5\x1e\x69\xdc\x6f\x15\x69\x73\x80\xfa\xef\xab\x5f\x2e\ \xae\x06\x08\x5e\x8b\xe0\x24\x73\x87\x40\xad\x4b\xa0\x13\xf8\xeb\ \x0d\x00\x4c\x1e\xa0\x07\x7a\xa0\x57\xa9\x7a\x4e\xe1\x6f\x64\x00\ \x48\x36\x78\x33\xc1\xbf\xc1\x0e\xfe\x29\xe7\xf0\xa7\x5c\xfe\xc7\ \xbb\xff\x4f\x8d\x0f\x3b\xb6\x08\xfe\xbd\x89\xe0\x4f\xd5\x15\xa8\ \xa0\x1a\x40\x1e\x13\xec\x16\xc1\x29\xe6\x36\xc1\x5a\x7f\x00\x27\ \xf0\xd7\x0c\x00\x4c\x1e\xa0\x07\x7a\xa0\x57\xc9\x7a\x4e\xe1\xdf\ \x69\x00\x98\xe0\x9f\xa6\x5c\x39\x4e\xda\xaf\x44\x73\x83\x3f\x99\ \x01\x88\xc6\xe5\x37\x98\xe1\xcf\xfa\x85\x03\x07\x9c\xb6\x08\x0e\ \x53\xb7\x08\xa6\x37\x01\x6e\x76\x09\x74\x02\x7f\x3c\x60\xf2\x00\ \x3d\xd0\x03\xbd\x4a\xd7\x73\x0a\x7f\xbd\x01\x20\x2d\xed\x16\x16\ \xfe\x94\x06\x00\xf3\xb6\x8f\x24\x5f\xe4\x29\xfc\x73\x06\xe0\xcc\ \xe1\xc7\x44\x62\xcd\xbb\x83\xdd\x22\x98\xce\x00\x14\x37\x09\x72\ \x02\x7f\xfc\x73\x30\x79\x80\x1e\xe8\x81\x5e\xa5\xeb\x39\x85\x7f\ \xce\x00\x50\xe6\xba\x90\x18\x00\x43\x7e\xd8\xf1\x87\x72\x65\xdb\ \x88\x89\x34\xf0\x0f\xc7\x95\x9d\x92\x34\xe8\x6b\x9e\xc2\x5f\xdb\ \x6d\x18\x89\x2b\x2f\x7b\xdf\x22\x98\x77\x97\xc0\x34\x73\x97\x40\ \x27\xf0\xc7\x17\x3b\x4c\x1e\xa0\x07\x7a\xa0\x57\xe9\x7a\x4e\xe1\ \x8f\x7f\x8e\x0d\xfe\x69\x5f\xe1\x1f\xb1\x84\x7f\x12\x91\x94\xda\ \x47\x12\xf2\x73\xbe\xc0\x1f\xff\xd2\xbe\x52\xf3\x08\xb2\x16\xc1\ \xd6\xab\x00\x51\xea\x5e\x01\xd6\x27\x82\xae\x45\x30\x63\x97\xc0\ \x86\xb4\x23\xf8\xe3\x8b\x1e\x26\x0f\xd0\x03\x3d\xd0\xab\x74\x3d\ \xa7\xf0\xc7\x3f\x4f\x13\xea\xc6\x04\xff\x86\x14\xb3\x01\x20\x86\ \x7f\x82\x0e\xfe\x78\xf4\x95\x9a\x54\x5f\xe0\x8f\xc7\x80\x01\x0d\ \x5f\x88\x48\xcd\x6b\x58\x3b\x04\xba\xd6\x22\xd8\xa3\x2e\x81\x4e\ \xe0\xaf\x19\x00\x98\x3c\x40\x0f\xf4\x40\xaf\x92\xf5\x9c\xc2\x1f\ \xcf\xa5\xf4\xf0\x4f\x73\x86\x7f\x8a\x72\x43\x3b\xdb\xdd\xbf\x1e\ \xfe\x61\x49\x59\x39\x78\xf0\xc0\xcf\xf9\x02\x7f\x6d\xd9\x21\x14\ \x57\x6f\xf3\xbe\x45\xb0\x18\x5d\x02\x9d\xc0\x1f\x0f\x98\x3c\x40\ \x0f\xf4\x40\xaf\xd2\xf5\x9c\xc2\x5f\x6f\x00\xec\xf6\x71\x31\xc1\ \xbf\xc1\x03\xf8\x13\x18\x80\xe2\x0d\xf7\xd1\x84\x7c\x9b\x13\xf8\ \x13\x57\xff\x99\xc1\x1f\xff\x7d\xf6\xcd\x9c\x18\x26\xee\x55\xcc\ \xab\x45\x70\xd2\x1a\xfe\x09\x5a\xf8\xb3\x75\x09\x74\x02\x7f\xfc\ \x67\x98\x3c\x40\x0f\xf4\x40\xaf\xd2\xf5\x9c\xc2\x5f\x33\x00\xe4\ \xf0\x4f\xd3\x57\x8b\x51\x1a\x00\xbb\xc7\xda\xb4\xcb\xff\x46\xd5\ \x76\x91\x46\xf9\xbb\xac\xe0\xcf\xe7\xfe\x10\x87\x04\xf5\xb2\xaa\ \x33\x0c\xc5\xd4\x69\x54\x2d\x82\x25\x1e\x2d\x82\xfd\xef\x12\xe8\ \x04\xfe\xf8\xef\x61\xf2\x00\x3d\xd0\x03\xbd\x4a\xd7\x73\x0a\x7f\ \xfc\x67\x92\x2a\x2e\x51\xe0\x4f\xbb\xfc\x6f\x04\xff\x90\xa4\x4e\ \x76\x00\xff\x6a\x22\x03\xa0\xeb\x27\xdc\xdb\xaa\xce\x30\x94\x50\ \x7e\x4a\xba\x0a\x60\xd6\x22\x58\xa4\x2e\x81\x51\xc2\x0d\x25\x4e\ \xe0\x6f\xd7\x0e\x18\x26\x0f\xd0\x03\x3d\xd0\xab\x04\x3d\xa7\xf0\ \xc7\x7f\xcf\x7a\xf7\x4f\xb4\x61\x9c\xc2\x00\x30\xc1\x3f\x41\x07\ \xff\x5c\xf3\x9f\xb8\x72\x21\x23\xfc\xb5\x7e\x3f\xd6\x06\x20\xff\ \xcd\xb5\xf9\xbb\xff\xde\x56\xa5\x06\x27\x9c\xd1\xfc\x99\x70\x4c\ \xee\x20\xa9\x5b\x8c\xea\xda\x04\x17\x87\x20\x44\x7c\xef\x12\x98\ \xa4\xea\x12\xe8\x04\xfe\x78\x1c\x3a\x74\x08\x26\x0f\xd0\x03\x3d\ \xd0\xab\x58\x3d\x3c\x07\x3a\x85\xbf\x96\x03\x40\x7b\xf7\xef\x07\ \xfc\x69\xee\xfe\x4d\xe1\x1f\x93\xb7\xf6\xeb\x37\xbc\x96\x01\xfe\ \x3d\xf3\xdd\x7e\x7b\x58\x46\xff\xe7\xbf\xb9\x26\x7f\xf7\xdf\x4b\ \xd7\x5b\xf8\x08\x8b\x06\x41\xf7\x51\xb5\x08\x96\x54\xa6\x06\x41\ \x5e\x75\x09\x8c\x12\x3c\x53\x72\x02\x7f\x3c\xf6\xec\xd9\x0b\x93\ \x07\xe8\x81\x1e\xe8\x55\xac\xde\xee\x3d\x7b\x1c\xc3\xdf\xce\x00\ \x18\xdd\xfd\x13\x97\x8a\x13\x1a\x00\x66\xf8\x9b\x18\x00\xab\x84\ \xdd\x50\x5c\xfe\x37\xc3\x06\xfe\x9a\xfc\xe8\x34\x00\x76\x4e\xe1\ \x28\x9d\x01\xb0\xed\x2a\x14\x95\xe4\x28\x59\x8b\x60\xc5\xb4\x45\ \x70\x98\xa9\x8b\x52\x92\x73\x97\xc0\x24\x71\x97\x40\x27\xf0\xc7\ \x63\xfd\xc6\x4d\x30\x79\x80\x1e\xe8\x81\x5e\xc5\xea\xad\xdf\xb0\ \xc9\x31\xfc\xc9\x0d\x00\x6f\xf8\xa7\xa8\x43\xec\x48\x96\xff\xed\ \xe3\xf5\x95\x3a\x4a\xf8\xd7\xe6\x79\xae\x19\x80\x6a\xbb\x67\x04\ \x35\x3a\x03\x70\x34\x69\xa9\x41\x9d\x24\x4f\x21\x7b\x86\x91\x0c\ \x44\x97\xc0\x08\xa5\x01\xa0\xed\x6a\xf5\xc9\xfc\x45\x30\x79\x80\ \x1e\xe8\x81\x5e\xc5\xea\x7d\x3c\x6f\xa1\x63\xf8\x5b\x19\x80\xe2\ \xbb\x7f\xaa\x90\x38\x4f\xe1\x9f\x24\x82\x7f\x48\x52\x27\x51\xc2\ \x5f\x63\xb8\x66\x00\x7a\x58\x2d\xfd\x57\xe7\x1d\x82\x66\x00\x6a\ \x69\xea\x0c\x43\x71\xf5\x87\x64\x2d\x82\xd9\xda\x04\x33\x77\x09\ \x4c\xa4\xe8\xeb\x3e\x29\x0d\x00\x4b\x4b\xcb\x89\x53\xa7\xa3\xbd\ \x7b\xf7\xc1\xe4\x01\x7a\xa0\x07\x7a\x15\xa7\x87\x1f\x81\xe2\x39\ \xd0\x29\xfc\xc9\x0c\x00\x6f\xf8\xa7\xa8\x13\x6c\xed\xee\xfe\xed\ \xef\xfc\xb3\x23\xa6\x9e\x4b\x01\x7f\x6d\xf5\x5e\x33\x00\x3d\xad\ \xe0\x5f\x95\x77\x07\x47\xea\x9e\x17\x50\x85\x0c\x1c\x9b\xb8\xb0\ \x26\xfb\x02\x37\x38\xed\x12\x18\x11\xa8\x4b\x60\x84\xc0\x00\x38\ \xe9\x67\x3d\x67\xde\x02\x98\x3c\x40\x0f\xf4\x40\xaf\xe2\xf4\x66\ \xcf\x9d\xcf\x05\xfe\x66\x06\xa0\x70\x0e\xa7\x8c\x87\xe7\x0c\x7f\ \xbb\xcd\x7f\x24\xf0\xaf\x93\xe4\x75\xa1\x50\xcb\x91\x14\xb9\x3d\ \xbd\x75\x06\xa0\xc6\x6e\xd3\x9f\xde\x00\xf4\x24\x4e\x09\x2a\x5e\ \x05\x90\xd4\x1b\x89\x9c\x8c\xd7\x5d\x02\x13\x29\xfa\x67\x40\x36\ \x26\xc0\x29\xfc\xb5\xb1\x72\xcd\x5a\x98\x3c\x40\x0f\xf4\x40\xaf\ \x62\xf4\x56\xac\x5e\xc3\x0d\xfe\x46\x06\xc0\x5d\xf8\x27\x9d\xc3\ \x3f\x41\x07\xff\xdc\x88\xab\xd7\x51\x86\xf6\x69\x06\xa0\xd6\x92\ \xe7\xf9\x1f\xaa\xd2\xd5\x08\x76\x67\x8d\x0b\x3e\x49\x3a\xfb\xf8\ \x70\x4c\xd9\x1f\xfc\x2e\x81\xf6\x06\x80\x07\xfc\xf1\x98\x30\xe5\ \x9d\x9c\x09\x80\xc9\x03\xf4\x40\x0f\xf4\x2a\x01\xfe\x78\xce\xe3\ \x05\x7f\x2b\x03\x10\x35\x98\xf3\x6d\xab\xc2\x38\xc3\x3f\x62\x09\ \x7f\x95\xf0\x66\x59\xde\x1b\x4a\xb4\x7c\x95\x32\xb1\xb7\x37\xd1\ \x1e\x3e\x9d\x01\xa8\x76\x02\x7f\xed\x97\x47\x13\xcd\xcf\x91\x75\ \x09\x4c\x7a\xdb\x25\x30\x91\xa4\xbf\x18\x2c\x4c\x00\x0f\xf8\xeb\ \x2f\xfe\xf7\x66\x7e\x84\x36\x6d\xde\x0c\x93\x07\xe8\x81\x1e\xe8\ \x95\xe5\x33\x7f\x9e\xcb\xfe\x66\x06\xc0\x5d\xf8\x27\x9d\xc3\x3f\ \xa1\x87\xbf\x8a\xc8\x6e\x96\xd5\xc7\x19\xe2\xfa\x7b\xd1\xc4\xfd\ \x56\xf1\x80\x3f\x1e\x27\x37\x34\x37\x90\xb5\x08\xe6\xdd\x25\x30\ \xc9\xb9\x4b\xa0\x75\xa3\x20\x9e\xf0\xd7\x2e\xfe\xb1\xe3\x27\xe7\ \x8c\xc0\xb2\x15\x2b\xd1\xce\x5d\xbb\xa8\xc2\x82\x60\x32\x02\x3d\ \xd0\x03\x3d\x51\xf4\xf0\xdc\x85\xeb\xfc\x71\xa9\x1f\xde\xed\xcf\ \x6b\xc3\x1f\x89\x01\x60\x82\x7f\x03\x7f\xf8\x47\xf8\xc0\x1f\x85\ \x12\x72\x5f\x96\x5e\x3d\x7c\xbb\x02\x51\xfc\x72\xa3\x92\x40\x21\ \xba\x04\x72\x6c\x14\xc4\x1b\xfe\xa0\x07\x7a\xa0\x07\x7a\xa0\x47\ \xaf\x57\x0a\xff\x94\x0b\xf0\x4f\x3a\x87\x7f\x42\x0f\x7f\x95\x08\ \xfe\x75\x71\x75\xa2\x6b\xf0\x77\xa3\x45\x30\xfe\xfb\x70\x5c\x4e\ \x51\x77\x09\x94\x78\x74\x09\x4c\x5a\xc3\x3f\x91\x64\xe8\x11\x60\ \xdc\x28\x08\x3e\x9c\xa0\x07\x7a\xa0\x07\x7a\xfe\xeb\x75\xad\x00\ \x30\xc2\xbf\x81\x3f\xfc\x23\x1c\xe0\x9f\xaf\xfd\x6f\x0e\x14\xfc\ \xf1\xbf\xb7\xb4\xb4\x54\x85\x63\xf2\x02\xa7\x5d\x02\xc3\x6e\x74\ \x09\xe4\xd4\x28\x08\x5f\xb0\xf0\xe1\x04\x3d\xd0\x03\x3d\xd0\xf3\ \x4f\x6f\xdc\xa4\xa9\x45\xf0\x4f\xb9\x00\xff\xa4\x73\xf8\x27\xd4\ \xc2\x5e\x38\x64\x8f\xc9\x3f\xee\xd6\xed\xda\x23\x02\x05\x7f\xed\ \x2b\x1c\x57\x7f\x42\xdd\x25\x50\xe2\xd1\x25\x30\x69\x0d\x7f\x87\ \x8d\x82\x34\x13\xf0\xea\x5b\x13\xe0\xc3\x09\x7a\xa0\x07\x7a\xa0\ \xe7\xa3\xde\xa8\x37\xdb\x84\x83\x7f\x84\x0f\xfc\x0d\xbb\xfe\x05\ \x02\xfe\xf8\xeb\xb8\x21\x43\x7a\x86\x25\x79\xb5\xd3\x2e\x81\x61\ \xa6\x2e\x81\x6e\x34\x0a\x4a\x16\x34\x0a\x7a\xea\xc5\xd7\xe0\xc3\ \x09\x7a\xa0\x07\x7a\xa0\xe7\xa3\xde\x03\x4f\x3e\xcb\x0e\xff\x06\ \x8f\xe0\x9f\x50\x0b\x1b\xe1\x11\x8c\xba\x98\xbc\xa2\x38\xf8\x27\ \x30\xf0\xef\x5a\x05\x50\x7e\x4f\xd6\x25\x50\xd1\x1d\x1c\x1e\x5d\ \x02\xdd\x6d\x14\x84\xc7\x5d\x0f\x3c\x01\x1f\x4e\xd0\x03\x3d\xd0\ \x03\x3d\x1f\xf5\xae\xbb\xfd\xde\x02\x03\xc0\x17\xfe\x6c\x2b\xd0\ \x4e\xe1\x9f\x0f\xfe\xf9\x75\xa0\xe1\x9f\x5b\x05\x38\x75\x48\x6f\ \xdc\xbf\x98\xaa\x4b\x20\x63\xa7\x40\x6f\x1a\x05\x75\x19\x80\xdf\ \x5c\x7b\x1b\x7c\x38\x41\x0f\xf4\x40\x0f\xf4\x7c\xd4\xfb\xf1\x95\ \x7f\x61\x83\x7f\x83\x47\xf0\x4f\xa8\x85\x37\xb7\x24\x77\xff\x92\ \xba\x39\x94\x68\xe9\xe5\x26\xfc\x89\xab\xff\x9c\xfe\xf2\xb0\xa4\ \x5c\x4f\xd6\x25\x90\xbe\x47\x80\x9f\x8d\x82\x86\x9f\x7f\x25\x7c\ \x38\x41\x0f\xf4\x40\x0f\xf4\x7c\xd2\x7b\x63\xdc\x04\x74\xe6\xf0\ \xf3\xf3\x2b\xb3\xbc\xe1\x9f\x62\x36\x00\x4e\xe0\x7f\xf8\xd9\xbf\ \xfa\x37\xb7\xe0\xaf\x8b\xfe\x27\x0e\x09\xea\xe5\xe4\x97\x87\x4e\ \x4f\x7f\x3e\xfb\xa6\xb6\x53\x75\x09\xa4\x58\x05\xf0\xbe\x51\x50\ \xbe\x2a\xa0\xb1\x05\xbd\x32\x66\x3c\x7c\x38\x41\x0f\xf4\x40\x0f\ \xf4\x7c\xd0\xbb\xfb\xe1\xff\xb1\xc1\xbf\xc1\x23\xf8\x27\xd4\xc2\ \x95\x6d\xa2\x67\xff\xea\x96\x7e\x03\x5b\x8e\x71\x11\xfe\xd5\x44\ \x06\x40\xd7\x4f\xb8\xb7\xd3\x5f\x9e\x75\x34\x37\x12\xb7\x3c\xa4\ \x58\x05\xf0\xaf\x51\xd0\x61\x13\xf0\xd7\x5b\xef\x81\x0f\x27\xe8\ \x81\x1e\xe8\x81\x9e\x0f\x7a\x3f\xbc\xe2\x6a\x97\xe0\xcf\x66\x00\ \x9c\xc2\xff\x70\xdd\xbf\x72\xad\x8b\xf0\xd7\xfa\xfd\x58\x1b\x80\ \xfc\x37\xd7\xe6\xef\xfe\x7b\x3b\xfd\xe5\xe1\x01\xcd\x5f\xca\xc2\ \xbe\x83\xaa\x4b\xa0\xcd\x2a\x00\xd7\x46\x41\x89\x14\x7d\xd7\xa8\ \xac\x01\x68\x4c\xfd\xd4\xf0\x82\x86\x0f\x27\xe8\x81\x1e\xe8\x81\ \x9e\x7b\x7a\x4f\x3c\x3b\x2a\xb7\x0a\x2b\x2c\xfc\x13\x45\x2c\x23\ \x81\x7f\x4c\xde\xda\x27\x21\x7f\xd6\x25\xf8\xf7\xcc\x77\xfb\xed\ \x61\x19\xfd\x9f\xff\xe6\x9a\xfc\xdd\x7f\x2f\x5d\x6f\xe1\x23\x9c\ \x6c\x20\x8c\x4a\xcd\x77\x90\x66\x1f\xdb\xad\x02\x88\xd1\x28\xe8\ \xb0\x09\xb8\xfd\xbe\xc7\xe0\xc3\x09\x7a\xa0\x07\x7a\xa0\xe7\xa1\ \xde\xb9\x97\xb3\xdf\xfd\xdb\xe7\xc4\xb0\x96\x9e\xb3\xc3\x5f\x6b\ \xf9\xeb\x02\xfc\x8f\xc8\xf3\xbc\x46\x6f\x00\xec\x9c\xc2\x51\x3a\ \x03\xd0\xcb\x29\xfc\xf1\x9b\xf8\xde\x80\xb3\xbf\x9d\x85\x7f\x07\ \x59\x08\x82\x95\x01\x70\xa9\x51\x50\x22\xc9\x54\x47\xda\x90\xbc\ \x04\xbd\x35\x69\x0a\x7c\x38\x41\x0f\xf4\x40\x0f\xf4\x3c\xd0\xbb\ \xeb\xfe\x27\xc5\x86\x7f\x22\xc9\x74\xf7\xdf\x37\x3e\xf4\x0b\x2e\ \xc0\xbf\x36\xcf\x73\xcd\x00\x54\xdb\x3d\x23\xa8\xd1\x19\x80\xa3\ \x79\xc0\x5f\x1b\xd1\x44\xf3\xcd\x2c\x3d\x02\xf8\x34\x0a\x4a\xba\ \xd0\x28\xe8\xf0\x2a\xc0\x55\xd7\xde\x06\x1f\x4e\xd0\x03\x3d\xd0\ \x03\x3d\x97\xf5\x5e\x7a\x7d\x1c\x3a\x7d\xd8\xf9\x4c\x06\x40\x54\ \xf8\xe7\xc7\x5f\x5c\x80\xbf\xc6\x70\xcd\x00\xf4\xb0\x5a\xfa\xaf\ \xce\x3b\x04\xcd\x00\xd4\xf2\x84\x3f\xfe\x73\xf8\xcc\xe1\xc7\x84\ \x63\xea\x06\x16\x03\xe0\x49\xa3\xa0\x04\xdb\x8e\x52\xfc\x2c\xea\ \x9e\x47\x9e\x82\x0f\x3b\xe8\x81\x1e\xe8\x81\x9e\x4b\x7a\x63\x26\ \x64\xd0\xb0\x1f\xfe\xc2\x25\xf8\xa7\xf8\xc0\x9f\xc1\x00\xd4\xc5\ \xd4\xb5\x67\x0c\xec\xff\x55\xce\xf0\xd7\x56\xef\x35\x03\xd0\xd3\ \x0a\xfe\x55\x79\x77\x70\xa4\xee\x79\x01\x57\xf8\x6b\x7a\xa1\x98\ \x7a\x15\xed\x2a\x00\xbf\x46\x41\x49\xb2\x65\xa0\x06\xfa\x5e\x01\ \xdf\x1f\xf6\x43\xf4\xbf\xe7\x47\xc3\x87\x1d\xf4\x40\x0f\xf4\x40\ \x8f\xb3\xde\xb8\x49\x53\xd0\x39\x97\xfd\xa1\xec\xe0\x1f\xce\xa5\ \x04\x36\xff\x8e\x33\xfc\xb5\x7d\x7b\x9a\x01\xa8\xb1\xdb\xf4\xa7\ \x37\x00\x3d\x89\x53\x82\x18\x42\x83\x8e\x4d\x5c\x58\x83\x73\x8e\ \xa9\x1b\x05\x25\x44\x6e\x14\x74\x38\x26\x58\x52\x2e\x42\x23\x5f\ \x7e\x0d\x3e\xec\xa0\x07\x7a\xa0\x07\x7a\xbc\xee\xfc\xc7\x4f\x46\ \x23\x2e\xfd\x43\x3e\x84\x8d\x61\x7e\xb6\x85\x7f\x8a\x0f\xfc\x13\ \x0c\xf0\x8f\x29\xcb\xe2\xf1\xb3\xbe\xc4\x19\xfe\xc7\xe8\x0c\x40\ \xad\x25\xcf\xf3\x3f\x54\xa5\xab\x11\x74\x0d\xfe\xb4\x9d\x02\x7d\ \x6b\x14\x94\x60\x69\x14\x74\xd8\x04\xc4\x9a\x2f\x42\x4f\x3c\xff\ \x2a\x7c\xd8\x41\x0f\xf4\x40\x0f\xf4\x1c\xea\x3d\x3f\x7a\x0c\x1a\ \xf2\x83\x2b\x02\x06\xff\x24\x22\xe5\x5b\xbd\xd4\x7c\x85\x0b\xf0\ \xd7\xb4\x8e\x26\x0d\xfc\xa9\xca\xef\x01\x70\x1d\xfe\xf8\x2b\x91\ \x48\x54\xe3\x5e\xc7\xfe\x35\x0a\x52\xed\x1b\x05\x39\xe8\x15\x70\ \xd2\xa0\x1f\xa0\x1b\xff\xf9\x00\x7c\xd8\x41\x0f\xf4\x40\x0f\xf4\ \x18\xf5\x6e\xfc\xd7\x83\xe8\x94\xc1\x3f\x2c\x5b\xf8\x87\x25\x79\ \xce\xe0\xc1\x03\x3e\xef\x02\xfc\x8f\x21\xae\xde\xd3\x19\x00\x4f\ \xe0\xaf\x7d\xd5\x49\xc9\xa1\x64\xf0\xf7\xa9\x51\x50\x82\x05\xfe\ \x5d\xbd\x02\xf0\x48\x5d\xfc\x1b\xdb\xb6\xc1\xf0\x61\x07\x3d\xd0\ \x03\x3d\xd0\xeb\xd2\xbb\xef\xf1\x91\xa8\xf9\xfc\x2b\x0b\xe6\x52\ \xa6\xc7\xb2\x24\x2b\xbd\x3c\xe0\x4f\x69\x00\x34\xbe\xd5\x37\xc8\ \xb2\x4b\xf0\x27\xd7\x63\x05\x3f\x87\x5f\xde\x3d\x1c\x57\x5a\x79\ \x34\x0a\x0a\x33\x35\x0a\x62\x6b\x16\x44\xda\x2b\x40\x1b\xf5\x8d\ \x2d\xe8\x47\x3f\xfb\x33\xba\xff\xc9\xe7\x4a\x3e\x24\xf0\x61\x07\ \x3d\xd0\x03\x3d\xd0\x9b\x88\x46\x8f\x69\x45\xb7\xfc\xeb\x01\x24\ \x5f\xf0\xcb\xdc\x9c\x59\xee\xf0\x8f\xc6\xe5\xb7\x7c\x87\xbf\x1f\ \x2d\x82\x0b\xf6\x02\x9c\xa9\xf6\xc9\x1e\x94\x43\xfe\x35\x0a\x72\ \xb7\x57\x80\x36\xa2\xf9\x71\x66\xd3\x85\xe8\xa7\xbf\xbd\x0e\xdd\ \xfc\xef\x87\xd0\xa3\x23\x5f\x46\x2f\xbc\xfa\x26\x7a\xed\xad\xf1\ \x30\x79\x80\x1e\xe8\x81\x5e\x45\xe8\xe5\x74\x26\xb4\xe7\x9e\xed\ \xff\xe7\xa1\x27\xd1\x1f\x6f\xb8\x13\x9d\x73\xe9\xef\xd0\x29\x83\ \xce\xcd\xde\x11\xa7\x72\xf3\xa4\xa8\xf0\x8f\x1a\xc1\x9f\xc2\x00\ \x68\x7c\x8b\xc4\x9a\x0f\x9c\x24\x0d\x3d\xad\xa2\xe1\xaf\x6b\x14\ \xf4\x08\x8f\x46\x41\x61\x26\xf8\x93\x1b\x00\xfa\x5e\x01\xa9\x12\ \x03\xa0\x1f\xf8\x62\x2f\x1e\x25\xdf\xd7\x68\x35\x5a\x0a\x46\x7d\ \x63\xba\x64\x14\x7f\x0f\xc9\xa8\xcf\x8f\x3e\xfd\xd3\xd9\xd1\x52\ \x30\xea\xfb\x8f\x60\x1e\xc5\x5a\xe6\x7a\xe7\x98\x8f\x01\x5d\xa3\ \xcf\x80\x11\x25\x43\xff\xef\x85\xdf\x6b\x3f\xfa\x66\x7f\xbe\x78\ \x1c\xfe\xb7\x73\x99\x46\xdf\x9c\x66\xe1\xa0\xd6\x19\xd8\x35\xfa\ \x0e\x3c\xa7\x64\xe8\xff\x9d\x76\x78\xa2\xc7\x78\xec\xf8\x1c\x3f\ \xd2\xf3\x5b\x3a\xea\x09\x86\xe1\xf5\x67\x75\xed\x72\xfb\x7c\xd0\ \x7c\xde\xb2\x9f\xe1\xc6\xc3\x83\x75\x3e\xb0\x9f\x5f\x2c\xe6\xa8\ \x06\xf3\x61\x35\xff\x39\x82\x7f\x03\x09\xfc\x53\xbe\xc1\xff\xf0\ \x90\x1f\x06\xf8\x6b\x06\x40\x52\xbe\x9e\x75\x44\x3b\xc8\x1a\x05\ \x91\x99\x00\x91\x7a\x05\x18\x99\x00\x22\xf8\xdb\x1a\x80\x34\x77\ \xf8\x6b\x43\x9b\x34\xf4\x26\xc0\x1b\xf8\x13\x98\x80\xfe\x74\xf0\ \x27\x31\x02\xe4\x70\xf0\x10\xfe\x56\x7a\xa2\xc1\xdf\xed\xf7\x4b\ \xac\xe7\xec\xfc\xd6\xb3\xc2\xbf\x3f\xc0\x9f\xc6\x00\x90\xc1\x3f\ \x5d\x96\xf0\x8f\xc4\x9b\xb7\x9d\x16\x1f\xfa\x1d\x80\xbf\x4e\xaf\ \x3e\xd1\x74\x0d\x8f\x46\x41\x61\x26\xf8\xbb\xdb\x2b\xa0\xd8\x04\ \x10\xc3\x9f\xd0\x04\xf0\x86\xbf\xa6\xa1\x37\x01\xde\xc2\xdf\xda\ \x04\xf4\xe9\x7f\x78\xc2\xa5\x85\xbf\x99\x11\xa0\xb9\x33\x24\x31\ \x02\xe2\xc0\x90\x03\xfc\x45\x30\x3b\x44\x7a\xce\xcc\x5d\x3d\xc0\ \x1f\xe0\x6f\x73\xf3\xc8\x6a\x00\x8a\x57\xb6\xeb\x13\xcd\x57\x03\ \xfc\x8b\xf4\x70\x10\x42\xf6\xe0\x2c\x24\x6b\x14\x64\x6e\x02\x9c\ \xc5\x05\xa7\x5c\xea\x15\xa0\x7f\x14\x40\x09\x7f\x1b\x13\x50\xdf\ \x98\xca\x0f\xbe\xf0\xd7\x9b\x80\xdc\x23\x01\xc6\x49\x89\xcf\xe4\ \x66\x00\x7f\xdd\xa0\x85\xbf\x7e\xb0\xc1\xdf\xdc\x0c\x08\x05\xff\ \xb2\xd7\x73\xf2\x58\x87\x1e\xfc\x25\xf0\xef\x6f\x07\xff\x11\x00\ \x7f\x2f\xe1\xdf\x90\x24\x2b\xed\xf6\x11\xfe\xd1\x78\xf3\xc7\x8d\ \x8d\x89\x23\x01\xfe\x06\x7a\x7d\x24\x59\xf5\xb7\x51\x90\x7b\xbd\ \x02\x0e\x5f\xac\x5d\x83\x0a\xfe\x26\x26\xa0\x0b\xfe\x5d\x26\xc0\ \x8d\x0f\xbb\xb6\x27\x80\xd6\x04\xf0\x9d\xdc\x4c\xe0\x6f\xb2\x3f\ \x80\x76\x32\x67\x87\x7f\x31\x6c\x00\xd6\xee\xea\xd1\x9e\x0f\x63\ \xf8\xd7\x3b\x81\x7f\x7f\x80\x7f\x25\xc1\x9f\xd5\x00\x18\xed\x69\ \x8b\x24\xe4\xfe\xa2\xc0\x9f\xb8\xfa\xcf\x0b\xf8\x6b\x7a\xd9\x03\ \xf7\x0a\x8b\x09\x88\x18\x94\x6a\x44\x04\xeb\x15\xa0\x25\x05\x46\ \x59\xe0\x5f\x64\x02\x4a\xe1\x9f\x32\xdc\x18\xe8\xfc\xc3\x5e\xb4\ \x39\xb0\x3f\x99\x11\x70\x67\x72\x6b\xb1\x9f\x7c\x9d\x6c\xe0\x72\ \x0c\xff\x62\xd8\x00\xfc\xf9\xe8\xf1\x3a\x1f\xec\x2b\x45\xe4\xf0\ \x1f\xe1\x13\xfc\xd3\x9d\xf0\xaf\x0f\x18\xfc\xa3\x15\x02\xff\x50\ \x4c\x7d\x5e\x90\x9b\x6f\x2d\xfa\x9f\x38\x24\xa8\x97\x17\xf0\xc7\ \xff\x5e\x1f\x6f\xfa\x76\x38\x26\xef\xa6\x31\x01\xbe\xf4\x0a\x48\ \x30\xee\x4e\xcd\x1b\x80\x08\x0b\xfc\xb5\x0f\x93\x29\xfc\xd3\x4c\ \x26\x80\x66\x0f\x01\xc9\x6a\x80\x7b\xf0\xd7\xeb\x9d\x43\x5c\x2d\ \x40\x0a\x7f\xda\xaa\x01\xba\x3d\x04\x00\x7f\x3a\x3d\xbe\x66\xac\ \xde\x29\xfc\xfb\xdb\xc1\x7f\x84\xbf\xf0\x6f\x2c\x07\xf8\xa7\x5d\ \x84\x7f\xca\x57\xf8\xd7\x49\xea\xce\x70\x5c\xfe\xa6\x20\xf0\xaf\ \x26\x32\x00\xba\x7e\xc2\xbd\xbd\x80\x7f\x67\x36\x80\xa4\xfe\x99\ \xba\x51\x90\x64\x1c\xd2\x10\x11\xae\x57\x40\xd2\xb4\x32\x80\x08\ \xfe\xda\x87\xc8\x14\xfe\x74\x26\x80\x65\x03\xa1\x95\x09\xf0\x06\ \xfe\x64\x95\x02\x46\x46\x80\xa5\x7a\xa0\x0f\x97\xea\x01\x32\x43\ \x50\xb9\xf0\xe7\xf9\x18\x46\xd3\x61\xdb\x20\x5a\x70\xee\xfb\x03\ \xfc\x85\x86\x7f\x83\x7b\xf0\x67\x31\x00\x66\xa5\xec\x21\x29\xf9\ \x5b\x41\xe0\xaf\xf5\xfb\xb1\x36\x00\xf9\x6f\xae\xcd\xdf\xfd\xf7\ \xf6\x32\xb1\x28\x14\x6a\x39\xd2\xae\x4f\x40\xe1\xc1\x56\xbb\x7a\ \x05\x24\x82\xd0\x2b\x20\xc5\x64\x02\x4a\x3e\x4c\xa6\xf0\x27\x33\ \x01\x4e\xaa\x07\x8c\x4c\x80\xb7\xf0\x1f\x41\x6d\x04\x58\x4b\x07\ \xcd\x8c\x00\x9f\x0d\x84\x5d\x86\xa0\xb2\xe0\xcf\xfb\xf8\x9d\x53\ \x02\x7e\x47\xf0\x27\xd9\x73\xe2\xcb\x86\x58\x80\x7f\xd0\xe0\x5f\ \x27\xc9\x33\x71\xef\x1b\x01\xe0\xdf\x33\xdf\xed\xb7\x87\x65\xf4\ \x7f\xfe\x9b\x6b\xf2\x77\xff\xbd\x74\xbd\x85\x3d\x2b\x5d\x08\x25\ \x94\x18\x79\xa8\x82\x5b\xbd\x02\x92\xcc\xfd\x02\x68\xe3\x82\xa9\ \xe1\xaf\x7d\x98\x1a\xd3\x4c\x26\x80\x47\xe9\xa0\xde\x04\xf8\x07\ \x7f\x32\x23\xc0\xa3\x74\x90\x7f\xf5\x40\xa5\xec\x21\x70\xdb\x3c\ \x39\x37\x77\x7a\xf0\xdb\xc3\x7f\x04\xc0\x1f\xe0\x4f\x18\x5f\xaf\ \x1e\x0a\xc5\x95\x53\x05\xd8\x70\x5f\x93\x1f\x9d\x06\xc0\xce\x29\ \x1c\xa5\x33\x00\xbd\xfc\xa8\x5b\x0c\xc7\xd5\x07\x49\x9f\xb1\xb0\ \xf6\x09\xe0\xd2\x2b\x20\xc1\x02\x7f\x72\x13\x60\xf9\x61\x6a\xa4\ \x37\x01\x3c\x73\x03\xea\xb5\xd0\xa0\xfe\x7e\x86\x06\x59\x9b\x00\ \xde\xa5\x83\xc5\xa0\x71\x07\xfe\x6c\x19\x04\xfe\xc2\xdf\xad\xf7\ \x6b\x9d\xd6\xc7\x05\xfe\xfd\x83\x02\xff\x16\x71\xe0\xdf\x28\x3a\ \xfc\x53\xcc\xf1\xf0\x34\x06\xc0\x26\xc1\xf6\x3f\x02\xc0\xbf\x36\ \xcf\x73\xcd\x00\x54\xdb\x3d\x23\xa8\xd1\x19\x80\xa3\xfd\x0a\x2d\ \x08\x9d\x9e\xfe\x7c\x9d\x24\xaf\x23\x3f\xd8\x3e\xf6\x0a\x10\x36\ \x2e\xd8\xdd\xc4\x40\x71\x42\x83\x8c\x8d\x80\x9b\xa5\x83\x46\xb0\ \x71\x1f\xfe\xb4\x7a\x4e\xe1\xef\xc5\x4a\x07\x3d\xf4\xb9\xc1\xbf\ \x3f\x29\xfc\x47\x88\x01\xff\x22\xf0\x07\x0d\xfe\xd1\x8a\x82\xbf\ \xbc\xba\xdf\xc0\x96\x63\x7c\x86\xbf\xc6\x70\xcd\x00\xf4\xb0\x5a\ \xfa\xaf\xce\x3b\x04\xcd\x00\xd4\xfa\x9d\x58\x94\x3d\xa0\x23\x08\ \x9d\x96\x8b\xbd\x02\xc8\x2e\x3a\x36\xf8\x73\x88\x0b\x26\x34\x01\ \x6e\xc1\x5f\xac\xd0\xa0\x62\x3d\xc2\xba\x6d\x0e\xf0\xa7\xad\x24\ \x10\x0d\xae\xa2\xea\xf1\x3a\x1f\x56\xe0\x37\x87\xff\x08\x80\xbf\ \x2b\xf0\x4f\x33\x6e\xa0\x0e\xcc\x9d\x3f\xaa\x8b\x2b\xb2\xcf\xf0\ \xd7\x56\xef\x35\x03\xd0\xd3\x0a\xfe\x55\x79\x77\x70\xa4\xee\x79\ \x81\x08\x71\x85\xdd\x43\x71\x65\x14\x19\xfc\xed\x0d\x00\x7b\xaf\ \x80\xa4\x7d\xaf\x80\x04\x0b\xfc\x39\xc5\x05\x37\xd8\xc1\xdf\xdd\ \xc4\x40\xe3\xd0\xa0\x16\x9f\xe1\xdf\x52\x90\x1f\xc0\x52\x35\xc0\ \xeb\x4e\x13\xe0\x4f\xa7\xc7\xdb\x8c\x59\x81\xdf\x18\xfe\x2d\x82\ \xc0\xbf\x05\xe0\xef\x27\xfc\x4d\x0c\x80\x1d\x8f\x42\x92\xfc\x8c\ \x00\x21\x7b\xbd\x75\x06\xa0\xc6\x6e\xd3\x9f\xde\x00\xf4\x24\x4e\ \x09\xf2\xe0\xcd\x9c\xd2\xd8\x74\x5c\x58\x52\xb6\x04\xa2\x57\x80\ \x9f\x71\xc1\x0d\x76\xf0\x77\x37\x31\x90\x36\x2f\x40\xd8\xd2\xc1\ \x22\x33\xc0\x6d\x83\x99\x4e\x0f\xe0\xcf\x31\x8b\xdf\xee\x7c\xd8\ \x35\x96\x2a\x02\xbf\x50\xf0\xcf\xef\xb1\xa9\x07\xf8\x33\x2f\xfd\ \x93\xce\xf7\xbc\xe0\x1f\x8e\xa9\x1b\xfa\xc6\xd2\x5f\x12\x20\x64\ \x4f\x33\x00\xb5\x96\x3c\xcf\xff\x50\x95\xae\x46\x50\x18\xf8\x6b\ \x7a\x7d\x1a\xe4\xcb\xc8\xe0\xef\x66\xaf\x80\xa4\x3d\xfc\xfd\x8e\ \x0b\x6e\xb0\x83\xbf\xfb\x89\x81\xe2\x85\x06\x31\x96\x0e\x6a\x70\ \xe0\x0c\x7f\x33\xbd\x4a\x81\xbf\x5b\xc7\x8f\x16\xfc\x85\xf0\x6f\ \x01\xf8\x03\xfc\x9d\xc3\x1f\x8f\x78\xf2\x1c\x41\x12\x76\x7b\x13\ \xed\xe1\xd3\x19\x80\x6a\x11\xe1\x8f\x47\x43\x43\xec\xb3\x11\xa9\ \x79\xac\xff\xbd\x02\x92\xf6\xf0\xe7\x14\x17\x1c\x65\x8d\x0b\x6e\ \xb0\x83\xbf\xfb\x89\x81\xc6\x26\xa0\x45\x10\xf8\x53\x96\x0e\xba\ \x54\x3d\xe0\x5f\x08\x91\x77\x7a\x5e\x99\x27\x1a\xe8\x17\x9e\xdf\ \x16\xc1\xe0\xdf\x02\xf0\x17\x01\xfe\x06\x06\x80\xf0\x31\xf4\x28\ \xfc\xd8\x5a\x90\x78\xfd\x5e\x34\x71\xbf\x55\xa2\xc2\x5f\xd3\xab\ \x3b\xb3\xe9\x1b\x75\x92\xba\xd9\xff\x5e\x01\x84\x71\xc1\x0d\x29\ \xf6\x6c\x6b\x9b\xea\x00\xa2\xdc\x80\x46\x7f\x13\x03\xad\x56\x03\ \xc4\x80\x3f\x65\xd7\x41\xc6\xbe\x03\xe5\xfe\x18\xc1\xab\xf7\x6b\ \xaa\xd7\x9f\x76\x88\x7a\xfd\xe9\x3e\x27\x00\xff\xae\x7f\x77\x11\ \xfe\x11\x9e\xf0\x8f\xa9\x1b\x43\x89\x96\xaf\x8a\xd4\x5b\x87\x6f\ \x57\x20\x01\xde\x0c\x5e\x5e\x21\x37\x00\x6e\xf5\x0a\xf0\x22\x2e\ \x38\xc5\x1c\x19\x2c\x52\x62\xa0\x91\x09\x28\xce\x0c\x10\x67\xd9\ \x55\xd3\x1b\x41\x5e\x3d\xc0\xa9\xf7\x80\xd7\x66\xc2\xf7\x3b\x75\ \xa7\x7a\xfd\xd9\xc0\x2f\x26\xfc\x5b\xc4\x84\x7f\x03\xc0\x9f\xe2\ \xce\x3f\x3b\x94\x64\xe0\xe0\x2f\x7a\x8b\x60\xc3\x5e\x01\x31\xe5\ \x69\xf2\x5e\x01\x5d\x51\xc1\xb9\xb8\xe0\x84\xca\x1c\x15\x5c\x7a\ \x71\x25\x5d\x8e\x0b\xa6\x37\x01\x22\x26\x06\xea\x47\x9f\xa2\xcc\ \x00\xf1\xe0\xcf\x58\x3d\x60\x62\x06\xfa\x04\x11\xae\xa2\xea\x91\ \x9a\x31\x8b\xb8\x5e\x21\xe1\xdf\x08\xf0\x67\x87\x7f\x4a\x10\xf8\ \xab\x8f\x03\xfc\x3d\x7a\x33\xd1\xd8\xb0\xcf\x85\xe2\xca\x4a\x5e\ \xbd\x02\xc2\xcc\xbd\x02\x54\xa6\xa4\x40\xfa\xc4\x40\x32\x13\x60\ \xfb\xe1\xf4\x31\x31\xb0\x58\xaf\xb3\xac\xa9\xbf\x68\xb9\x01\x1c\ \xaa\x07\x7c\xd8\x40\x58\xb6\x7a\xb4\x2b\x31\x16\x89\x7d\x62\xc1\ \xbf\xf0\xae\x3f\x0a\xf0\xf7\x1f\xfe\x45\x06\x80\x18\xfe\x71\x79\ \xa9\x5d\xe0\x0f\xc0\x9f\xb3\x5e\x5d\x22\x39\x90\x67\xaf\x00\xb1\ \xe3\x82\xed\x4d\x00\x71\x6e\x00\x61\x6a\xa0\x17\x93\x51\x3d\x65\ \xb9\xa0\x38\x93\x39\x6d\x69\x99\x0e\x5e\x00\x7f\x0e\x59\xfc\xe4\ \xd0\x17\x16\xfe\x8d\x7e\xc0\x3f\x0d\xf0\xe7\x0d\x7f\x49\x3d\x14\ \x89\x29\x09\x80\xbf\x3f\xbd\x02\xee\x24\xef\x15\xa0\x32\xf7\x0b\ \x10\x23\x2e\x98\x53\x62\x60\x03\x49\x62\x60\xca\xa3\x3b\x91\x16\ \xa6\xf0\x20\xb1\x26\x73\x9a\x38\x59\xb6\x14\xc2\xb2\x85\x3f\xad\ \x79\xa2\x84\xbe\x78\xd7\x4b\xe9\x5d\x3f\xc0\xdf\x5b\xf8\x47\xf8\ \xc2\x3f\x7b\xf7\xaf\xfc\x03\xe0\xef\xd3\x9b\x39\x6e\xc8\x90\x9e\ \x61\x49\x7e\x9f\x26\x9e\x91\xd6\x04\x70\x8f\x0b\x4e\xb0\xc2\x9f\ \x63\x62\x60\x03\x49\x62\x60\xca\x13\xf8\x07\x27\x37\x80\xcc\x0c\ \xb0\xdd\xb9\x7a\x1b\x42\xe4\x8b\x5e\xff\x73\x9c\xad\x9c\x30\xb6\ \xe1\x15\x0a\xfe\x45\xe0\x07\xf8\x07\x1c\xfe\x92\xfa\x4e\xbf\x7e\ \x97\xf6\x00\xf8\xfb\xa8\x57\x27\x25\xbf\x5b\x17\x53\x77\xf0\xea\ \x15\x10\x76\x70\x71\x11\xc7\x05\x27\x58\xe1\xcf\x31\x31\xb0\x81\ \x24\x31\x30\xe5\x19\xfc\x4b\x4c\x40\xa3\xa8\xb9\x01\x2e\x6f\x20\ \x14\x2c\x87\xc0\x9b\xdd\xf9\x41\x68\xc4\xc3\xaa\x57\xba\xdc\x0f\ \xf0\x17\x08\xfe\x09\x3d\xfc\x55\x1a\xf8\x6f\xab\x8f\x37\x7d\x3b\ \xc8\xf0\x27\xae\xfe\x13\xfd\xcd\x64\x4f\xdc\x85\x74\xce\xcd\xde\ \x04\xb8\x1e\x17\x9c\x48\x32\xa7\x05\x72\x4b\x0c\x6c\x20\x49\x0c\ \xf4\x2e\x34\xc8\xea\xb1\x40\xf0\xe0\xdf\xc2\x9c\x3e\xc8\x6d\x25\ \xc1\xf3\xc6\x39\xbc\xe0\x1f\xd4\xf3\x6b\xbf\xdc\xef\x1d\xfc\x53\ \x65\x08\xff\x94\x28\xf0\xc7\x35\xff\xe7\x06\x95\x97\xba\xe8\x7f\ \xe2\x90\xa0\x5e\x02\xbf\x99\x9c\x5e\x24\x21\x3f\x47\xde\x2b\xc0\ \xda\x04\x78\x16\x17\x9c\x60\x85\x3f\xc7\xc4\x40\x01\x43\x83\x8a\ \x8d\x40\x57\xc9\x60\xba\x4c\xe0\x60\x6d\x08\xdc\x85\xab\x88\x7a\ \xe5\x60\xee\xc8\xc0\x2f\x0c\xfc\x1b\x00\xfe\xac\xf0\x0f\xc5\xd5\ \x47\x02\x0e\xff\x6a\x22\x03\xa0\xeb\x27\xdc\x5b\x64\xf8\x63\x9d\ \xd3\x1a\xce\xfa\x46\xf6\xc4\x2d\x20\xef\x15\x20\x48\x5c\xb0\x08\ \x89\x81\xba\xc0\x20\x51\x42\x83\xf4\x7a\xc5\xd9\x01\xe5\x01\x7f\ \x8e\x21\x44\x81\x82\xff\x88\x80\x3f\xd6\x69\x61\x5a\xee\x07\xf8\ \xfb\x03\xff\x08\xef\x3b\x7f\x49\xfd\xb8\x7e\xd0\xa0\xa3\x03\x0c\ \x7f\xad\xdf\x8f\xb5\x01\xc8\x7f\x73\x6d\xfe\xee\xbf\xb7\xc8\xf0\ \xd7\x46\x9f\x86\xa6\xd3\x42\x92\xbc\x8b\xc9\x00\xf8\x15\x17\x2c\ \x52\x62\x60\x43\x8a\xb8\x4c\xd0\x8f\xc9\xad\x8f\xbe\x74\x90\x61\ \x62\x0f\x36\x6c\x82\x06\xff\x72\x3f\x1f\x74\xe0\x07\xf8\x8b\x0a\ \x7f\x95\x18\xfe\x78\xaf\x59\x56\xf3\xc4\x00\xc3\xbf\x67\xbe\xdb\ \x6f\x0f\xcb\xe8\xff\xfc\x37\xd7\xe4\xef\xfe\x7b\xe9\x7a\x0b\x0b\ \x0b\x7f\x4d\x2f\x7b\x82\xcf\xa7\x8d\x0a\xee\xbc\x18\x12\x3e\xc5\ \x05\x27\x52\xce\x3e\x4c\x3c\x13\x03\x89\xb3\x02\xd2\x3e\x6c\x68\ \xb2\xdf\x28\x58\xfe\xb0\xe1\xd8\xcb\xa0\xa2\x9f\xd1\xf3\xd0\x23\ \x03\xbf\xfb\x9f\x8f\x54\xb0\xe0\xdf\xe0\x23\xfc\x13\x6c\xf0\xb7\ \xea\xf2\x17\x00\xf8\x1f\x91\xe7\x79\x8d\xde\x00\xd8\x39\x85\xa3\ \x74\x06\xa0\x57\x10\xe0\xdf\x99\x0f\x20\x29\xf7\xd3\x98\x80\x88\ \x2e\x2a\xb8\x18\xfe\xce\xe3\x82\x55\xb2\xb8\xe0\x84\x13\xf8\x73\ \x4e\x0c\x14\x30\x34\x88\xb6\x62\xa0\xf2\xe0\x0f\x7a\xde\xe9\x91\ \x83\x5f\x08\xf8\x37\x00\xfc\x9d\xc3\x5f\xb9\x3b\xc0\xf0\xaf\xcd\ \xf3\x5c\x33\x00\xd5\x76\xcf\x08\x6a\x74\x06\xe0\xe8\x20\xc1\x1f\ \x7f\x1d\x9b\xb8\xb0\xa6\x38\x1f\xc0\xdf\xb8\xe0\x24\x73\x64\xb0\ \x93\xc4\xc0\x88\x13\xf8\x53\x85\x06\xa5\x3c\x87\x7f\xf9\x96\x0e\ \x82\x9e\xb8\x7a\x74\xe0\x77\x17\xfe\x29\x4f\xe0\x1f\x01\xf8\xe7\ \xea\xfd\x43\xa1\x96\x23\x03\x0a\x7f\x8d\xe1\x9a\x01\xe8\x61\xb5\ \xf4\x5f\x9d\x77\x08\x9a\x01\xa8\x0d\x1a\xfc\xb5\xaf\x13\x12\xf2\ \xb7\x70\x7b\x46\x71\xe2\x82\x93\x74\xcf\xbd\x38\x25\x06\x46\x9c\ \xc0\x9f\x2a\x34\x28\xe5\x0b\xfc\xad\x8c\x00\xc0\x0b\xf4\xf8\xe8\ \xd1\x83\x1f\xe0\x2f\xd0\x33\x7f\x07\xf0\xaf\x93\xe4\x75\xe1\xb8\ \xfc\xcd\x80\xc2\x5f\x5b\xbd\xd7\x0c\x40\x4f\x2b\xf8\x57\xe5\xdd\ \xc1\x91\xba\xe7\x05\x81\x84\xbf\xf6\x15\x8a\xab\xfd\x43\x31\xf9\ \x00\xcf\xb8\xe0\xb0\xa3\xb8\x60\x72\x13\xe0\x3c\x31\xb0\xd0\x08\ \xd4\x3b\x0d\x0d\x6a\x20\x09\x0d\x62\xcb\x0c\x70\xad\x74\xb0\xa8\ \x7c\x10\x60\x08\x7a\xe4\x7a\x69\x66\xf0\xbb\x07\xff\x14\x19\xfc\ \x1b\x78\xc3\x3f\x55\x99\xf0\x8f\xa9\xfb\xb3\x06\x20\x1e\x50\xf8\ \x6b\xfb\xf6\x34\x03\x50\x63\xb7\xe9\x4f\x6f\x00\x7a\x12\xa7\x04\ \x09\x7e\x70\xc2\x92\xf2\x2b\x72\xf8\x97\x56\x06\xf0\x8f\x0b\x4e\ \x92\xc1\x9f\x4b\x62\x60\xaa\x33\x31\x30\xea\x14\xfe\x3a\x13\x60\ \x1f\x1a\x94\x16\x60\xb2\x2c\x2c\x1f\x0c\x4e\xd7\x41\xd0\xf3\x57\ \x2f\x5f\x6a\xca\x08\x7e\x80\xbf\x3f\xf0\x8f\x10\xc1\x5f\xa5\x59\ \xf6\xcf\xfe\xbc\x72\x45\x80\xe1\x7f\x8c\xce\x00\xd4\x5a\xf2\x3c\ \xff\x43\x55\xba\x1a\xc1\xb2\x80\x7f\xfe\xab\x3b\xee\xd5\x4c\xde\ \x2b\x80\xce\x04\x88\x9f\x18\x98\x2c\x49\x0d\xf4\x26\x34\xc8\xbf\ \xdc\x00\xfb\xae\x83\x2d\x00\x43\xd0\x2b\xd2\xcb\xaf\x14\xe9\xae\ \x97\xa8\x10\xf0\x4f\x01\xfc\x7d\x80\x7f\x48\x52\x1e\xc2\xec\x08\ \x30\xfc\x35\xad\xa3\x49\x03\x7f\xaa\xf2\x7b\x00\xca\x09\xfe\x9d\ \x9b\x02\xeb\x62\xf2\x0c\x71\xe2\x82\xbd\x4e\x0c\xec\x32\x01\xdc\ \x42\x83\x1a\x52\xe4\x71\xa3\x3e\xc2\xdf\x7e\xc3\x20\x54\x0f\x54\ \xae\x5e\x17\xf4\xb5\xe1\xe7\x1e\x16\x66\xf8\x73\x28\xfd\x8d\x94\ \x1b\xfc\x13\x0e\xee\xfc\xe3\xf2\xdb\xb8\xd1\x5c\xc0\xe1\x7f\x0c\ \x71\xf5\x9e\xce\x00\x94\x1d\xfc\x35\xbd\x93\xa4\xb3\x8f\x8f\xc4\ \xe5\xd5\xe2\xc4\x05\x7b\x9d\x18\x98\xb4\xad\x10\x60\x9a\x3c\x1a\ \xc5\xcf\x0d\x20\xab\x1c\x28\x34\x03\x00\xd7\x72\xd5\xd3\x36\x88\ \x16\x3d\x22\x12\x0a\xfe\x69\x80\xbf\x5f\xf0\x97\x94\x65\x91\xfe\ \x4d\x5f\x29\x03\xf8\x93\xeb\xb1\x82\x3f\x68\x07\xa7\x6f\xa2\x39\ \x9e\x3d\xc1\xbb\xc4\x89\x0b\xf6\x3a\x31\xd0\x85\xd0\x20\x86\xf0\ \x20\xbf\xe1\x6f\x5f\x3d\x90\x06\xb8\x96\x9d\x5e\x57\x46\xbf\x1e\ \xfa\xf5\x41\x85\x7f\x83\x1b\xf0\x4f\x55\x36\xfc\x63\x72\x47\x54\ \x92\xa3\x15\x05\xff\x72\x6c\x11\x6c\xa5\x57\x9f\x68\x3e\x27\x7b\ \xb2\x0f\xb1\xa4\x05\x9a\xc5\x05\x87\x1d\xc1\x9f\x32\x31\x30\xe1\ \x14\xfe\x2e\x85\x06\x11\x9a\x00\x11\x72\x03\x88\xaa\x07\x74\x15\ \x04\x00\xd7\xa0\xea\xb5\x94\xec\xe4\xef\x23\x98\xf9\xd4\x83\x1f\ \xe0\xef\xe7\x9d\xbf\x7c\xb0\x4e\x4a\x0e\x05\xf8\x97\x31\xfc\x35\ \xbd\x90\x94\xfc\x2d\x9d\x01\x50\x0b\x37\x94\x24\x8c\x13\x03\x23\ \x5e\x25\x06\x26\x9c\xc2\xdf\xa5\xd0\x20\xea\xdc\x80\x94\x60\xcf\ \x5c\xd3\x25\x15\x04\xac\x9b\x07\x01\xd6\x7e\xe9\x95\x42\xbf\x5e\ \x90\xc7\x4e\x56\xe0\x27\x82\x3f\xa7\xc7\x76\x11\x80\xbf\x51\x1a\ \xec\x95\x00\xff\x0a\x80\x7f\x67\x65\x40\x5c\x7d\x80\x2e\x2e\x58\ \xd1\x5d\x5c\xc6\x71\xc1\x61\x47\xf0\x57\x99\xc2\x82\xd8\xe1\xef\ \x52\x68\x90\x89\x09\xb0\xbf\xb3\x11\x07\xfe\x96\xbd\x07\x4c\xf6\ \x0c\x00\xac\x7d\x6c\xc4\x63\x01\xfd\xa8\xb0\xf0\x4f\x03\xfc\x05\ \x81\x7f\xf6\xee\xff\x1e\xfd\x8e\x7f\x80\x7f\x79\xc3\x3f\xf7\x95\ \x48\x24\xaa\x43\x92\xfc\x3a\x5d\x5c\xb0\xd2\x15\x17\xcc\x98\x16\ \x28\x56\x62\xa0\x8b\xa1\x41\xd4\xb9\x01\x69\x21\xe1\x6f\xb9\x5f\ \xc0\x64\x75\x00\x60\xed\x41\x16\x7f\x7f\xe3\x73\x21\xda\xf5\xe2\ \x18\xfe\x0d\x6e\xc1\x3f\x05\xf0\x3f\x3c\x5e\x69\x69\x69\xa9\x02\ \xf8\x57\x10\xfc\xb5\x2f\xdc\xd7\x19\x97\x07\xd2\xc5\x05\x2b\xcc\ \x69\x81\xae\x25\x06\x26\x9c\xc2\xbf\x34\x34\x28\xca\x03\xfe\xfa\ \xc9\x88\x38\x37\x20\x2d\x2c\xfc\x49\x0c\x41\x57\xf2\x60\x1a\x60\ \xcd\x4d\x8f\xec\x2e\x5f\xfc\xeb\x85\x62\x65\xac\x81\x1f\xfc\x23\ \x6e\xc0\x3f\x51\x06\xf0\x8f\xcb\x6f\xf7\xeb\x37\xbc\x16\xe0\x5f\ \x81\xf0\xef\x34\x01\xdf\x57\xbf\x5c\x17\x57\x17\x31\xc7\x05\x53\ \x98\x00\x57\x13\x03\x13\x4e\xe1\x5f\x1a\x1a\x14\xe5\x05\x7f\xea\ \xdc\x00\x63\x23\x50\x2f\xec\x06\xae\xc3\xa3\x4f\x51\xfa\x60\x61\ \x02\x21\xec\x21\x20\xd3\x4b\x17\x0c\xd2\xbb\x7c\xb1\xe1\x9f\x06\ \xf8\xbb\x0e\x7f\x95\x0e\xfe\x31\x79\xc1\xf1\x89\xe1\x5f\xac\x64\ \xf8\x13\x57\xff\x95\xfb\xc1\x09\x25\x9a\x8e\x0b\xc7\xd4\x0d\xe4\ \x71\xc1\xf4\x26\xc0\x93\xc4\xc0\x84\x53\xf8\x17\x06\x07\xb1\x66\ \x06\xd8\xee\x21\x68\xa4\xcf\x0f\x10\x1d\xfe\xb6\x09\x84\xa6\x7b\ \x08\x5a\xa0\x34\xcf\xa0\x2e\x5f\xbc\x44\x3e\x16\x3d\xca\x0d\xb1\ \x1c\xcd\x76\xb4\x04\xfe\x29\x80\xbf\xae\xc1\x4f\x34\x96\xfc\x4e\ \xa5\xc2\x5f\x17\xfd\x4f\x1c\x12\xd4\xab\xdc\x0f\x4e\xf6\xc2\xf8\ \x1e\xae\x03\x25\x8f\x0b\x26\x37\x01\x51\x2e\xb9\x01\x29\xf2\xd0\ \x20\x5e\x1f\x76\xc6\xe0\x20\xe2\x3d\x04\x8d\xc1\x2f\x1d\xe4\xb2\ \x87\xa0\xc8\x14\x14\x3f\x42\x08\x3e\xfc\x0d\x4c\x4f\x51\x69\x5e\ \x71\x6d\x7e\x50\xcf\xaf\x1d\xf8\x0d\xe1\xdf\x50\x8e\xf0\x4f\x8a\ \x79\xe7\x2f\xa9\xdb\x4e\x8c\xab\x27\x57\x38\xfc\xab\x89\x0c\x80\ \xae\x9f\x70\xef\x4a\x38\x38\xd9\x0b\x6b\x40\x24\xa6\xec\x21\x8f\ \x0b\xb6\x37\x01\x7c\x43\x83\x52\x3e\x84\x06\xd1\x19\x01\xea\x0d\ \x84\xb4\x93\xa5\xc0\xa5\x83\xac\x7a\x66\x30\x34\x7f\x8c\x40\xfe\ \x38\xc1\xf3\x67\xf4\x16\xcf\xeb\x83\x53\x9a\xc7\xaa\x97\xf6\x15\ \xfe\xd1\x12\xf8\x73\xba\x19\x48\x94\x09\xfc\x63\xf2\xee\xba\x78\ \x52\xaa\x70\xf8\x6b\xfd\x7e\xac\x0d\x40\xfe\x9b\x6b\xf3\x77\xff\ \xbd\x2b\xe0\xe0\xe4\xf4\xea\xa5\xa6\xf3\x22\xb1\xe6\x03\x74\x1b\ \x4a\x92\x1e\x25\x06\xaa\xe4\xf0\xe7\x1a\x1a\x44\x66\x02\x1c\x55\ \x0f\x34\x96\x57\xe9\x20\x0f\xbd\x3e\x56\x8f\x11\x6c\x1f\x2b\x94\ \x3e\x4f\xef\x6c\x71\xcb\x38\x0a\xb4\x28\x5e\x5f\xb9\x9c\x0f\x73\ \xbd\x34\x3d\xfc\x1b\x00\xfe\x9e\x2e\xfb\xc7\xd4\xfd\x91\xb8\x3a\ \xac\xc2\xe1\xdf\x33\xdf\xed\xb7\x87\x65\xf4\x7f\xfe\x9b\x6b\xf2\ \x77\xff\xbd\x74\xbd\x85\xcb\x1a\xfe\x9d\x69\x81\x52\xf3\x15\x94\ \xcb\x4a\x25\x26\xc0\xbd\xc4\x40\x95\x1c\xfe\x5c\x43\x83\x5c\xce\ \x0d\x28\x32\x02\x54\x5d\xd0\xca\x10\xfe\xf5\x44\x9d\x14\xcd\x87\ \xe1\x4a\x02\xa9\x99\xa0\xd4\x2b\x97\x95\x18\x7a\x3d\x86\xc7\x58\ \x9c\xab\x6b\xa2\x25\xf0\x4f\x01\xfc\x4b\xc7\xa1\x90\x94\x3c\xaf\ \x82\xe1\x7f\x44\x9e\xe7\x35\x7a\x03\x60\xe7\x14\x8e\xd2\x19\x80\ \x5e\x95\x02\x7f\x4d\x2f\x7b\xc1\xfd\x8a\x25\x2d\xd0\x9b\xc4\x40\ \x95\xfe\xc3\xc9\x05\xfe\xc6\x26\x80\x6b\x6e\x00\x53\xcb\x61\x6b\ \x33\x50\x8e\xf0\x07\x3d\xbf\xf4\xe8\x37\xb1\x16\x83\x1f\xe0\xef\ \x29\xfc\xf1\xf8\x59\x85\xc3\xbf\x36\xcf\x73\xcd\x00\x54\xdb\x3d\ \x23\xa8\xd1\x19\x80\xa3\x2b\x0d\xfe\x9a\x5e\x58\x92\xff\x40\x6b\ \x02\x4a\x2e\x56\xd7\x12\x03\x19\x42\x83\x12\xbc\x42\x83\x3c\xc8\ \x0d\x60\x2e\x1d\x2c\x34\x02\x00\x2f\xd0\xe3\xa3\x97\x66\x83\xbf\ \x0b\xe6\x38\x5a\x02\x7f\x8e\xd5\x3f\xd4\x73\x4a\x52\x68\xf8\x87\ \x62\xea\x55\x15\x0e\x7f\x8d\xe1\x9a\x01\xe8\x61\xb5\xf4\x5f\x9d\ \x77\x08\x9a\x01\xa8\xad\x54\xf8\x77\x56\x07\xc4\x95\xbf\xd2\xc5\ \x05\x2b\xba\x8b\xd5\xed\xc4\x40\x3f\x43\x83\x8c\x73\x03\x22\x0d\ \x7c\xeb\x98\xd9\x4b\x07\xd3\x25\x95\x03\x00\x43\xd0\xa3\xd7\x63\ \x1c\x2e\xac\x8c\x45\x01\xfe\x74\xf0\x8f\x2b\x7f\xac\x70\xf8\x6b\ \xab\xf7\x9a\x01\xe8\x69\x05\xff\xaa\xbc\x3b\x38\x52\xf7\xbc\xa0\ \xa2\xe1\xdf\x55\x22\xa8\x5c\x4f\x17\x17\x4c\x9e\x18\x18\x76\x0c\ \x7f\x3f\x43\x83\x3c\xca\x0d\x70\x54\x3a\x58\xbe\xd5\x03\xa0\xe7\ \x96\x9e\x83\x95\xa7\x06\xaf\xe0\x9f\x0c\x3c\xfc\xc3\xee\xc5\xfb\ \xa2\x90\xa4\x5c\x53\xe1\xf0\xd7\xf6\xed\x69\x06\xa0\xc6\x6e\xd3\ \x9f\xde\x00\xf4\x24\x4e\x09\xaa\x8c\xd0\xa0\xee\xd9\x8b\xea\x16\ \x3a\xf8\x1b\x6c\x0e\x24\x34\x01\x9e\x85\x06\x25\x38\x3e\x33\x64\ \x28\x19\x74\x34\x59\x52\xc3\x3f\xcd\x5c\x41\x00\x70\xad\x04\x3d\ \xd6\x3d\x27\xa5\x99\xfd\x3c\xe1\x1f\x29\x81\x3f\x67\xf3\x9e\x28\ \x43\xf8\xc7\xd5\x1b\xbb\xe5\x9b\xfb\x54\x30\xfc\x8f\xd1\x19\x80\ \x5a\x4b\x9e\xe7\x7f\xa8\x4a\x57\x23\x08\xf0\x27\x34\x01\x64\xa1\ \x41\xe4\x26\xc0\xf3\xd0\xa0\x04\x4f\xf8\x1b\x9b\x80\x08\x6f\xf8\ \x5b\x98\x01\xba\xea\x81\x34\xc0\xb0\xe2\xf5\x1c\x6c\x38\x75\xeb\ \x7a\x2e\xf8\xdc\x88\x04\xff\x24\xc0\x3f\x58\x7a\xbd\x89\xf6\xf0\ \xe9\x0c\x40\x35\xc0\xdf\xc6\x04\xc4\xd5\xbf\xd3\xc1\x9f\xdc\x04\ \xf8\x1a\x1a\x94\xe0\x05\x7f\x72\x23\xc0\x7d\x83\x94\x93\xc9\x3c\ \x80\xbd\x07\x40\x8f\x55\x8f\xd5\x2c\x5a\x77\xe8\xe3\x71\x3d\x47\ \x0c\xe1\x9f\xe4\x0b\xff\x44\x99\xc2\x1f\x96\xfd\x8b\xf5\x7a\xd1\ \xc4\xfd\x56\x01\xfc\x09\x63\x83\xe3\xca\xdf\xe8\xe0\x6f\x9f\x1a\ \x28\x44\x68\x50\x82\x27\xfc\xad\xb3\x03\x5c\x29\x1d\x2c\xea\x3c\ \x18\x75\xb0\x89\x0b\xe0\x5a\x6e\x7a\x4e\x57\x8a\x5c\x78\x8c\x65\ \x0b\xff\x64\x65\xc0\x5f\xe2\x71\xe7\x5f\xf1\x1b\xfe\xd8\xf5\x58\ \xc1\x5f\xc9\x07\xbb\x3e\xd1\x74\x0d\x1d\xfc\xcd\x4d\x80\x51\x68\ \x50\x84\x5b\x68\x90\xca\xf0\x8c\x8f\x77\x6e\x40\xca\xf0\xce\xa6\ \xde\xad\xd2\x41\x2e\xd5\x03\xb0\x81\x30\xd8\x7a\x4e\xf7\x88\xd8\ \x43\x9f\x17\xfc\x23\x5e\xc0\x9f\xe5\x66\x80\xdb\x06\x65\x97\xe1\ \x0f\xa5\x7e\xd0\x22\xd8\x0f\xbd\x3e\x09\xf9\x6a\x86\x50\x8a\xc2\ \xc4\x40\xc9\x38\x31\x90\x6f\x68\x10\x4b\xb0\x07\x4f\xf8\xeb\x27\ \xa3\x94\xbb\x2d\x87\xad\xf4\x98\xe1\x0f\x1b\x08\xcb\x36\x8b\xdf\ \xe8\xfc\xba\x75\xfd\xd9\x80\xff\x30\xfc\x93\x65\x05\xff\xb0\xbb\ \xf0\x3f\x04\x21\x3f\x00\x7f\xbf\x13\x03\x2f\x0c\xc5\xe4\x03\x2c\ \x26\xa0\xe0\xe2\x4f\x08\x18\x1a\xe4\x4a\x6e\x40\xb2\x20\x3f\xc0\ \x93\xd2\x41\x42\x23\xc0\xbe\x87\x00\x60\xed\x8f\x1e\x8f\x95\x1d\ \x36\xf0\x3b\xb9\xfe\x22\x86\xc3\x05\xb3\x9d\x28\x5f\xf8\xe3\x6c\ \x7f\x88\xf7\x05\xf8\x0b\xa1\x57\x17\x57\xe4\x70\x4c\xdd\x43\x97\ \x18\xa8\x14\x85\x5c\xa8\xd4\x59\x01\xec\x1f\xce\x94\x00\xb9\x01\ \x49\xea\x8a\x81\xa8\x30\xbd\x07\xec\x0d\x01\xc0\x5a\xa0\x50\x1e\ \xab\xf3\xeb\xc5\xca\x93\x0d\xf8\xc5\x81\x7f\x32\x18\x77\xfe\x31\ \x79\x77\x85\x37\xf6\x01\xf8\x0b\x97\x18\x28\x25\x1b\xb3\x17\x66\ \x07\x5d\x62\xa0\xb6\x87\x40\x65\x0e\x0c\x62\x2f\x1d\x4c\x09\x92\ \x1b\xe0\x53\xe9\xa0\x91\x5e\x23\xaf\x0d\x84\xb0\x87\xc0\xf7\xba\ \x7c\x8f\x5a\xf0\x92\x5c\x7f\x56\xe0\xe7\x0e\xff\x44\x90\xe0\xcf\ \xb2\x87\x4a\xdd\x56\xe1\x2d\x7d\x01\xfe\xe2\x26\x06\xaa\xdf\x0b\ \xc7\xd4\x0d\xf4\x89\x81\xd6\x15\x02\xee\x84\x06\x19\x1b\x01\xe2\ \xc9\x83\x2b\xfc\x7d\x2c\x1d\x34\xd3\xe3\x7d\xa7\x09\x5d\x0c\x89\ \x9e\xdd\xf3\x5d\x89\x71\xaf\x0b\x1f\x89\x9e\x1d\xf8\xb9\xc2\x3f\ \xc1\x0a\x7f\x7e\x2b\x8b\x76\xe0\x77\x0a\xff\x3a\x49\x5e\x77\x62\ \x5c\x3d\x19\x78\x04\xf0\x17\x56\x2f\x94\x68\x3a\xae\x2e\xae\x2e\ \xa2\x4f\x0c\xa4\x37\x01\x51\x6e\xa5\x83\x29\x41\x72\x03\xec\x8c\ \x80\x47\xf0\x77\x75\x03\x61\xa5\x3e\x46\xf0\xf8\xf8\x79\x69\x16\ \x6d\xa1\x9f\x76\xe1\xf3\x51\x59\xf0\x0f\xc7\xe4\x05\xd1\x58\xf2\ \x3b\xc0\x23\x7e\xf0\x27\xae\xfe\x83\x83\x4d\xa7\x57\xff\x7d\xf5\ \xcb\x75\x31\x79\x06\x7d\x62\x20\xb9\x09\x10\x26\x37\x20\x91\x72\ \x77\x72\x33\x4c\x44\xf3\x7e\x19\xd7\xce\x0c\xb8\x76\xe7\x6a\xaa\ \x27\x1a\xfc\xdd\x7e\xbf\xfe\xc5\xf1\x92\xe8\xd1\x80\x9f\xdb\xe7\ \x23\xc1\x0a\xff\x64\xa0\xe0\x1f\x8a\xa9\xd3\x8e\x4f\x0c\xff\x22\ \xf0\x88\x9b\x9e\x16\xfd\x4f\x1c\x12\xd4\x0b\x0e\x36\x9d\x5e\xfd\ \xa0\x41\x47\x87\x24\xf9\x75\xfa\xc4\x40\x7b\x13\xe0\x0e\xfc\xd5\ \x02\x13\xc0\x5a\x36\xe8\x4e\xe9\x60\xb2\xa4\xf3\x20\x6b\xe5\x80\ \x98\x09\x84\x7e\x9b\x89\x80\xea\x79\xbd\x47\xc4\x40\x8f\x06\xfa\ \xdc\x3e\x1f\x89\xca\x81\x7f\x76\x8c\xea\xd7\x6f\x78\x2d\xc0\x9f\ \x2b\xfc\xab\x89\x0c\x80\xae\x9f\x70\x6f\x38\xd8\xf4\x5f\x8d\x8d\ \x89\x23\xb3\x17\xfc\xa3\xf4\x89\x81\x74\xa1\x41\x61\xae\xa1\x41\ \x0e\x72\x03\xb4\xc9\xa8\xc1\xad\xd2\x41\x4d\x2f\xed\x7f\xf5\x80\ \x10\x7b\x08\x2a\x48\x4f\xa0\xf3\x1b\x61\x04\xbf\x63\xf8\x27\x9c\ \xc0\x3f\xc9\x15\xfe\x24\xe0\xef\x82\x3f\xeb\xfc\x27\xdf\xd3\xd2\ \xd2\x52\x05\xf0\xe7\x0a\x7f\xad\xdf\x8f\xb5\x01\xc8\x7f\x73\x6d\ \xfe\xee\xbf\x37\x1c\x6c\x36\xbd\x86\x86\xd8\x67\xa3\x89\xe6\x3f\ \x67\x2f\xfe\x43\xc1\x09\x0d\x72\x98\x1b\x90\x70\x13\xfe\xd6\xfb\ \x04\x22\x0d\x62\xdc\x19\xb2\xec\x23\x00\xf8\x7b\x5f\x9a\x47\xa3\ \x17\x35\xbd\xe6\x52\x00\x7f\xae\xf0\x97\x0f\x86\x12\xea\x2f\x81\ \x1f\xdc\xe1\xdf\x33\xdf\xed\xb7\x87\x65\xf4\x7f\xfe\x9b\x6b\xf2\ \x77\xff\xbd\x74\xbd\x85\xe1\x60\x33\xea\xd5\x27\x9a\xcf\xa9\x8b\ \xa9\x3b\xe8\x0d\x00\x5d\x68\x50\x98\xf3\x87\x9d\x39\x37\x40\xfb\ \xb9\x06\x37\x4b\x07\xc9\xcd\x80\xef\xf0\xf7\x34\x87\x20\x40\x7a\ \xa2\x9d\x8f\x22\x3d\xa3\xc7\x4e\x34\xd0\x77\x0c\xff\x84\x13\xf8\ \x27\xb9\xc2\x3f\xec\x05\xfc\x63\x72\x47\x9d\x94\x1c\x0a\xfc\xe0\ \xae\x57\x93\x1f\x9d\x06\xc0\xce\x29\x1c\xa5\x33\x00\xbd\xe0\x60\ \x3b\xd7\x0b\x25\xe4\xbe\x75\x31\x79\x05\xad\x01\xe8\xda\x43\xa0\ \x0b\x0d\x62\xcc\x0c\x70\x56\x3d\xe0\x60\x32\xf2\x62\xb2\xb4\xa8\ \x1e\x88\x36\x88\x0f\x9b\xb2\x7d\x8c\x20\xda\x4a\x8c\xed\x28\x8d\ \xab\x66\x05\x3f\xf3\xf5\x9c\x70\x02\xff\xa4\xb7\xf0\x97\x8a\xe1\ \xaf\x30\xde\xf9\x2b\xcb\xa2\x92\x1c\x05\x7e\x70\xd7\xab\xcd\xf3\ \x5c\x33\x00\xd5\x76\xcf\x08\x6a\x74\x06\xe0\x68\x38\xd8\xfc\xf4\ \x4e\x8c\xab\x5f\x2b\xae\x10\x60\x0e\x0d\x62\x30\x01\xbe\xe5\x06\ \x78\x52\x3a\x58\x6a\x06\xcc\x26\x73\xe1\xe1\xcf\xb0\x8a\xe0\x39\ \xfc\xcb\xe5\xf8\x19\xb6\xe0\xd5\x5f\x2f\x1e\xae\x64\x25\x2a\x14\ \xfe\x71\xf9\xed\x50\xa2\xe5\xab\xc0\x0f\xee\x7a\x1a\xc3\x35\x03\ \xd0\xc3\x6a\xe9\xbf\x3a\xef\x10\x34\x03\x50\x0b\x07\x9b\xbf\xde\ \xb1\x89\x0b\x6b\xb2\x17\xfd\xe3\xf4\xf0\xa7\x0f\x0d\x0a\x73\x85\ \x7f\xa1\x11\x60\xcf\x1a\xf7\x02\xfe\xf6\xbd\x07\x68\x2b\x09\x44\ \xbf\x73\x05\x3d\x1e\x5d\xf8\x52\x05\xdd\xf8\x3c\x83\x7f\xc2\x29\ \xfc\xf9\xef\x01\x0a\x7b\x04\xff\x90\xa4\x3e\x7c\xdc\x90\x21\x3d\ \x81\x1f\xdc\xf5\xb4\xd5\x7b\xcd\x00\xf4\xb4\x82\x7f\x55\xde\x1d\ \x1c\xa9\x7b\x5e\x00\x07\xdb\x3d\xbd\xee\x78\xa3\x8b\x59\x23\x21\ \xb2\x0f\x13\xb9\x11\x88\xba\x56\x3a\x98\x14\xbc\x74\xd0\x48\x2f\ \x1d\xbc\x0d\x84\xa0\xe7\x62\x23\x1e\x97\x5a\xf0\x92\xe8\x25\x9c\ \xc2\x3f\xe9\x3d\xfc\x8b\xe7\x1d\xa6\x52\xe7\xc3\x0d\x7d\xc2\x09\ \xe5\x0a\x3c\x17\x02\x3f\x5c\xd1\xeb\xad\x33\x00\x35\x76\x9b\xfe\ \xf4\x06\xa0\x27\x71\x4a\x10\x1c\x6c\x47\x7a\x87\x7b\x08\xa8\x1b\ \xd9\x42\x83\xc8\x4c\x80\xbb\xb9\x01\x9a\x5e\x4a\xf0\xd2\x41\xba\ \xcd\x83\x11\x80\x6b\xd9\xe8\x45\x6c\x82\x7a\xbc\x35\x9f\x74\xe0\ \x37\x87\x7f\xd2\x15\xf8\x87\xbd\x82\xbf\x24\xaf\xcb\x8e\x38\xf0\ \xc3\x55\x3d\xcd\x00\xd4\x5a\xf2\x3c\xff\x43\x55\xba\x1a\x41\x80\ \xbf\x87\x7a\x27\x24\xe4\x6f\x85\x24\xf5\x3d\xd6\x0f\x53\xe9\x87\ \xd2\x1c\xfe\x11\x57\xe0\xcf\xa9\x74\x30\xe1\x35\xfc\xc9\x37\x10\ \x46\x01\xae\x81\xd1\x8b\x10\x40\xdf\x9f\x95\xa7\x94\xf3\xcf\x87\ \x8b\x9f\x5f\x3a\xf0\xb3\xc3\x3f\x3b\xa6\x87\xe3\xf2\x37\x81\x1f\ \xae\xeb\xf5\x26\xda\xc3\xa7\x33\x00\xd5\x00\x7f\x7f\xf4\x4e\x68\ \x38\xb7\x36\x92\x50\x1e\x61\x0f\xcd\x28\x35\x02\x66\xa1\x41\xee\ \xe5\x06\xd0\x99\x00\xdb\x3d\x04\x9e\xc2\x9f\x7c\x03\x21\x6b\x0a\ \x21\xc0\xda\x1d\xbd\x08\x25\xf4\x3d\x87\xbf\x93\x95\x31\x0f\xe0\ \xcf\x72\xd7\xcf\x0c\xff\xb8\x72\x77\x28\xd4\x72\x24\xf0\xc3\x13\ \xbd\x5e\x34\x71\xbf\x55\x00\x7f\xff\xf5\xfa\xc6\x9b\x2f\x0d\x4b\ \xca\x2e\xb6\xd0\x20\xd5\x20\x7e\xd3\x8f\xdc\x00\x87\x2d\x87\x19\ \x4a\x08\xdd\x9f\xcc\x53\xb6\x90\x01\x58\x7b\xa3\x17\xb5\x0c\xe5\ \xf1\x28\x8e\x97\x44\x2f\xc1\x0b\xfe\xee\x3c\xb6\x0b\x33\xde\xf5\ \x33\xc1\x1f\xb7\x4a\x8f\x27\xcf\x81\xf9\x5e\x40\x3d\x56\xf0\xc3\ \xc1\x76\x47\x2f\x6b\x02\x4e\x0d\x49\xea\x3c\x36\x03\xa0\x7d\x38\ \xd5\xc2\xdc\x80\x84\x1f\xb9\x01\x9c\x4a\x07\x6d\x8c\x80\x2f\xcf\ \x70\x09\xef\x3c\x01\xfe\xce\xf4\x48\x56\x62\x68\xeb\xf3\x5d\xbf\ \x5e\x12\xbc\xe0\xaf\x0a\x04\x7f\xd5\xc1\x9d\xbf\x32\x27\xfb\x3a\ \x4e\x84\xf9\x1e\x5a\x04\x83\x1e\xa1\xde\x09\x67\x34\x7f\x26\x14\ \x57\x9e\x60\x0f\x0d\x52\x0a\x43\x83\x28\x4b\x06\x85\x2c\x1d\xf4\ \xbd\x7a\x80\x25\x89\xb0\x02\x72\x08\x5c\xdf\x9d\x6f\x04\x7f\x3f\ \xf6\x88\x58\xe8\x39\xbd\x9e\x0b\xe0\xef\xde\x86\xdd\x88\x1d\xfc\ \x25\xbe\xf0\x0f\xc5\xd5\x47\x70\x63\x34\x98\xef\x01\xfe\xa0\xc7\ \xa0\x17\x89\x29\x3f\xca\x2d\x9f\x31\x85\x06\x89\x94\x1b\xc0\xb1\ \x74\x50\x88\xea\x01\x12\x3d\x92\x3b\xd7\xca\x7a\x8c\x10\xa1\x18\ \xc5\x35\xf9\xe2\x9d\x5f\x4e\x66\xb6\xf3\x7a\x56\x05\x83\xbf\xea\ \x04\xfe\xdb\xc2\x31\xf5\x5c\x98\xef\x01\xfe\xa0\xe7\x50\xaf\x4e\ \x4a\x7e\x57\xab\x12\xa0\x87\xbf\x7d\xa5\x40\x60\x4b\x07\x8b\x27\ \x5f\xd1\xe0\x60\xa8\x97\x66\x1a\x41\xa8\x46\xa0\x35\x3b\x56\xcf\ \xee\xc5\x59\xd9\x31\xae\xdd\xe7\xb6\x92\x95\xaf\xe5\xf7\x15\xfe\ \x12\x77\xf8\xbf\x13\x8d\x25\xbf\x03\xf3\x3d\xc0\x1f\xf4\x38\xe9\ \xe1\x9d\xb3\xe1\xb8\x7a\x27\x7b\x68\x10\xb9\x11\xf0\x06\xfe\x49\ \xe6\xf2\x41\xb1\x7a\x0f\xf0\xd2\x63\x59\x06\x77\x6e\x26\xfc\xd3\ \x13\xfd\x7c\x98\xd7\xed\xf3\x81\xbf\x17\x2b\x6d\x36\xf0\x27\x00\ \x3f\xe5\xfc\x72\x28\x1c\x57\xfe\xd1\xaf\xdf\xa5\x3d\x60\xbe\x07\ \xf8\x83\x9e\x0b\x7a\x75\x31\x79\x80\xbe\xa1\x90\x17\xb9\x01\xac\ \x65\x83\x6c\x93\x5b\x8a\x5f\xf5\x00\x81\x19\x10\xfa\x4e\x93\x22\ \xce\x58\x2c\xf8\x07\x61\x25\xc6\xed\x16\xbc\x29\xa2\xd6\xbc\x65\ \x03\xff\xb8\xbc\x34\x12\x53\x12\x30\xdf\x03\xfc\x41\xcf\x65\xbd\ \x3e\x09\xf9\xb3\x21\x49\x7d\x8a\xbd\xeb\x96\x49\x6e\x80\x64\x3f\ \x79\xb8\x0b\x7f\x6b\x23\xc0\xe5\xce\x2b\xb0\xf0\x77\x3f\xd7\x80\ \x76\x57\x7d\x59\x1e\x3f\xde\xe6\xd3\x22\xab\xdf\x17\xf8\x13\x82\ \x9f\xf2\xe6\xe2\xb1\xe3\x4e\x1d\xd2\x1b\xe6\xe7\x60\xc1\x9f\xb8\ \xfa\x0f\x0e\xb6\x98\x7a\xf5\x0d\xcd\x17\x46\xa5\xe6\xcd\x6c\xf0\ \x2f\x34\x02\x05\xb9\x01\x92\xfd\x86\xa1\x88\xeb\xa5\x83\x2e\x55\ \x0f\x04\x66\x03\x21\xe8\x05\xa7\x11\x0f\x39\xf4\xdd\x82\xbf\x5d\ \xe8\x17\x0d\xf8\x89\xe1\x1f\x53\x37\x64\xe7\x0d\x15\xe6\xe7\xc0\ \xe9\x69\xd1\xff\xc4\x21\x41\xbd\xe0\x60\x8b\xa9\x77\xb2\x74\xf6\ \x89\x61\x49\x79\x93\x1d\xfe\x26\xb9\x01\x04\xd5\x02\x61\x8f\x26\ \x37\x57\xaa\x07\x02\xb9\x81\x10\xf4\xc4\xc9\xe2\x67\x03\x3f\xef\ \xcf\x47\xd8\x2f\xf8\x4b\xea\xa8\xe2\xf6\xbd\x30\x3f\x07\x06\xfe\ \xd5\x44\x06\x40\xd7\x4f\xb8\x37\x1c\x6c\x71\xf5\xfa\xf4\x89\x54\ \x85\xe2\xea\x0f\xc3\x92\xbc\xc9\x59\x6e\x80\x52\x9a\x1b\x40\x69\ \x04\xa2\x9e\x6d\x20\xe4\x08\x7f\xc6\xf4\x41\x80\x6b\x80\xf4\xdc\ \xbe\x5e\x3c\x79\x2c\x56\xda\xad\xcf\x12\xfe\x94\xe0\x27\x82\x7f\ \xf6\xae\x3f\x9f\xe8\xd7\x1d\xe6\xe7\x40\xc2\x5f\xeb\xf7\x63\x6d\ \x00\xf2\xdf\x5c\x9b\xbf\xfb\xef\x0d\x07\x5b\x7c\xbd\x48\xff\xa6\ \xaf\xd4\x49\xea\x8b\xec\xf0\x57\x98\xcb\x06\xcb\xa6\x7a\x40\xf8\ \x04\x42\xd0\xf3\x3e\x91\xcf\xea\x7a\x49\x7a\x0a\xff\x30\x09\xfc\ \x19\xc0\x4f\x02\xff\x90\x24\x3f\xd3\x37\x96\xfe\x12\xcc\xcf\x81\ \x85\x7f\xcf\x7c\xb7\xdf\x1e\x96\xd1\xff\xf9\x6f\xae\xc9\xdf\xfd\ \xf7\xd2\xf5\x16\x86\x83\x1d\x00\xbd\x50\x4c\x4d\xe3\x76\x9b\x1c\ \x96\xf9\x88\x8d\x80\x3f\xf0\x77\xa9\xf7\x00\x81\x21\x00\x58\x97\ \x7b\x28\x8f\x95\x9e\x57\xd7\x73\xd2\xb4\x53\x9f\x21\xfc\x19\xc1\ \x6f\x3f\x1f\xc8\xab\xeb\x62\xb2\x02\xf3\x73\xa0\xf5\x6a\xf2\xa3\ \xd3\x00\xd8\x39\x85\xa3\x74\x06\xa0\x17\x1c\xec\x60\xe9\x45\x63\ \xc3\x3e\x17\x96\x94\xfb\x9d\xe7\x06\x98\x4d\x2c\x22\x95\x0e\x5a\ \x9b\x01\x57\x36\x10\xc2\x1e\x82\x32\xab\xcb\xb7\xd3\xf3\xda\xcc\ \x9a\xb7\xe8\x2d\xf9\xbc\x49\xae\xc1\xff\x50\x76\xfc\xa7\xdf\xc0\ \x96\x63\x60\x7e\x0e\xb4\x5e\x6d\x9e\xe7\x9a\x01\xa8\xb6\x7b\x46\ \x50\xa3\x33\x00\x47\xc3\xc1\x0e\xae\x5e\x38\x2e\x9f\x11\x8e\xc9\ \xb3\x9d\xe5\x06\x98\x1b\x01\x92\xd2\xc1\xb0\xe7\xf0\x2f\xd6\xf3\ \xea\xce\x50\xc4\x2e\x86\x50\x9a\x27\x5a\x17\x3e\x56\xf0\x97\xc0\ \x5f\x32\x83\xbf\xea\x18\xfe\x75\x92\x3c\x33\x14\x57\x4e\x85\xf9\ \x34\xf0\x7a\x1a\xc3\x35\x03\xd0\xc3\x6a\xe9\xbf\x3a\xef\x10\x34\ \x03\x50\x0b\x07\x3b\xf8\x7a\x38\x99\x2b\x24\xa9\x7f\x0c\x4b\xcd\ \xbb\x9c\xe5\x06\x58\xb4\x1c\x26\x28\x1d\x0c\xfb\x02\x7f\x97\xe3\ \x87\xcb\xa2\x91\x91\x20\x7a\x7e\x9d\x0f\x8f\x1a\xf1\x90\xe8\x11\ \xed\xb1\x91\xcc\xe0\xaf\x3a\x86\x7f\x9d\xa4\xee\x0c\x49\xc9\xdf\ \x26\x12\x89\x6a\x98\x4f\x03\xaf\xa7\xad\xde\x6b\x06\xa0\xa7\x15\ \xfc\xab\xf2\xee\xe0\x48\xdd\xf3\x02\x38\xd8\x65\xa4\x77\x72\xff\ \xe1\x91\x70\x42\x19\xed\x3c\x37\xc0\xa2\x74\x90\xb0\x6a\x20\xec\ \x0b\xfc\x7d\xd8\x40\x48\xab\x57\xee\xf0\xf7\x63\x25\x46\x80\x2c\ \x7e\x2b\x3d\xb2\xcf\x8a\x6a\xfe\x79\x63\xfe\xfc\x16\xc2\x3f\x24\ \x29\xcf\x85\xe3\xf2\x37\x61\x3e\x2d\x1b\xbd\xde\x3a\x03\x50\x63\ \xb7\xe9\x4f\x6f\x00\x7a\x12\xa7\x04\xc1\xc1\x0e\x9c\x5e\x7d\x83\ \xdc\x5c\x17\x93\xe7\x3a\x83\xbf\x4d\xe9\x20\x85\x11\x88\x0a\xb1\ \x81\x30\xe9\x3f\xfc\x19\xd2\x0c\x85\x82\x7f\x50\x8e\x9f\x10\xe6\ \x93\xc2\x28\x4b\x66\xf0\xe7\xf3\xf9\x8d\xc6\x9b\x3f\xce\x6a\x0e\ \x80\xf9\xb4\xec\xf4\x34\x03\x50\x6b\xc9\xf3\xfc\x0f\x55\xe9\x6a\ \x04\x01\xfe\x65\xae\x87\x9b\x0b\xe1\xa5\xbe\xec\x84\xb0\x9d\xc7\ \x33\x43\x92\xcd\x82\xe2\x56\x0f\x98\x9b\x01\xf1\xe0\x05\x7a\x6c\ \x7a\x7e\x3e\x76\x62\x03\xbf\xe1\x63\x36\x07\xab\x76\xc5\x9f\xdf\ \x48\xbc\x79\x5b\x9f\x84\xfc\x87\xc6\xc6\xc4\x91\x30\x9f\x96\xa5\ \x5e\x6f\xa2\x3d\x7c\x3a\x03\x50\x0d\xf0\xaf\x2c\x3d\x9c\xe6\x15\ \x8e\xab\x0f\x84\x25\xf9\xa0\xe3\x90\x10\x4a\x23\x20\x66\xf5\x80\ \x99\x1e\xc0\x35\x58\x7a\x7e\x5f\x2f\x85\x7a\x61\x4a\xf0\x1b\xc3\ \x5f\xe1\x02\xff\x48\xac\xf9\x40\x54\x92\x1f\x3e\x2d\x3e\xf4\x3b\ \x30\x9f\x96\xb5\x5e\x2f\x9a\xb8\xdf\x2a\x80\x7f\xe5\xea\x9d\x98\ \x50\x23\x75\x92\x32\x96\x43\x63\x10\x22\x23\x10\x49\x04\xa1\x7a\ \x20\x80\x7b\x08\x2a\x52\x4f\x34\xb3\xd8\xa5\xc7\x02\xfe\x52\xf8\ \x2b\xfc\xe0\x2f\x35\x8f\x3d\xb9\x61\xd8\xa9\x30\xff\x81\x5e\xc1\ \x1e\x80\x6e\x8c\x5f\x70\xb0\xcb\x4b\x2f\x94\x50\x87\x84\x25\x65\ \x8e\x73\xf8\xdb\x74\x1d\x94\x08\x5a\x96\x12\x9a\x81\xa8\x50\x8f\ \x11\x00\xd6\xe5\x5a\x9a\xe7\xb8\x05\x2f\x01\xf8\x0b\xe1\xaf\x70\ \x83\x7f\x58\x92\xe7\xd4\x37\xc8\x32\xcc\x7f\xa0\xc7\xed\x0b\x0e\ \x76\x79\xea\xe1\x12\xa0\xac\x11\xb8\xa8\x4e\x52\x97\x3b\x87\x7f\ \xf1\x64\xa4\x32\x37\x1e\xf2\xb7\xf7\x40\x00\x73\x08\x02\xaf\x17\ \x94\xf3\xcb\x00\x7f\x93\xd5\x31\xde\x9f\xb7\x68\x4c\x59\xd6\x27\ \xd1\x7c\xf9\xe0\xc1\x03\x3e\x0f\xf3\x1f\xe8\x01\xfc\x41\x8f\x58\ \xef\xb4\xfe\xc3\xbe\x54\x2f\xc9\x7f\x8a\xc6\x95\x8d\x3c\x97\x21\ \xa3\xf9\x12\x42\xd6\xc6\x43\xe2\x6f\x20\x24\xd5\x03\xf8\x8b\xb6\ \x41\xcf\x75\xf8\x4b\xe6\x59\xfd\x3c\xe1\x5f\x17\x53\xd7\x46\xa5\ \xe6\xdf\x9d\x31\xa8\xff\x97\x61\xfe\x03\x3d\x80\x3f\xe8\x31\xeb\ \x9d\xd6\x70\xd6\x37\xa2\x92\x7c\x23\x6d\xc5\x00\xd9\x63\x84\x24\ \x97\xea\x81\x48\xe0\xe0\x2f\x60\x9c\x71\x05\x3e\xa3\x77\xad\x05\ \x2f\x11\xf4\x93\x1c\x1f\xb3\xe5\x1b\xf6\xc4\xe4\xad\xd9\xff\xfe\ \xe5\x8c\x81\xfd\xbf\x0a\xf3\x1f\xe8\x01\xfc\x41\x8f\x9b\x5e\xe8\ \xf4\xf4\xe7\x43\x92\x7a\x03\xdf\xd2\x41\xbe\xd5\x03\x2c\x55\x04\ \xd1\xc0\xaf\x24\xd0\xad\x28\x94\x4b\x1d\xbd\x70\x5d\xf8\x28\xee\ \xf6\xf9\xee\xb1\xc9\x83\x3f\xae\x5e\xd7\x37\x3e\xf4\x0b\x30\x5f\ \x81\x1e\xc0\x1f\xf4\x5c\xd3\xc3\x46\x20\x2c\x29\xd7\x67\x27\x9e\ \x6d\xfc\xe0\x4f\x60\x04\x24\xca\x3b\x2f\x61\xe2\x87\x41\x2f\x88\ \x7a\xa4\x2b\x4f\xb4\x77\xfb\x3c\xe1\x5f\x17\x53\xb7\x84\x24\xe5\ \xda\x3e\x09\xf9\xb3\x30\x5f\x81\x1e\xc0\x1f\xf4\x3c\xd3\xcb\x75\ \x1c\xcc\xde\x75\xe0\x49\xc8\x8d\xc9\xad\xd8\x0c\xb0\xf4\x1e\x08\ \xfe\x06\x42\xd0\xf3\x4a\x8f\x76\xcf\x49\xe7\xf5\x47\x09\x7d\x1e\ \x9f\x8f\x3a\x49\xdd\x1c\x8a\xab\x7f\xd3\x3a\xf5\xc1\x7c\x05\x7a\ \x0c\x9a\xdd\xe1\xe0\x80\x9e\x63\xbd\x13\xce\x68\xfe\x0c\x4e\x15\ \x0c\xc5\x95\x95\xbc\x9f\x69\xda\x56\x0f\x30\x6c\x1e\x2c\x8f\x0d\ \x84\xa0\xe7\x69\x1c\x2f\x71\x0b\x5e\xb2\x7c\x7e\xd6\xcf\x47\x5d\ \x4c\x5e\x91\x35\xdd\xbf\x0e\x25\x5a\x7a\xc1\x7c\x05\x7a\xac\xe0\ \xcf\xe7\xfe\x10\x87\x04\xf5\x82\x83\x0d\x7a\x76\x5f\x38\x5e\x38\ \x9c\x50\x2f\xce\x4e\x66\x0b\xf8\xc2\x9f\xb0\xf7\x00\xa1\x19\x08\ \x56\x02\x21\xe8\xf9\x96\xc8\x47\xdc\x85\x8f\xae\x29\x0f\x23\xfc\ \x3f\xce\x1a\xec\x0b\xf1\x67\x0c\xe6\x2b\xd0\x73\x08\xff\x6a\x22\ \x03\xa0\xeb\x27\xdc\x1b\x0e\x36\xe8\x91\xea\xc5\xe3\x83\x3f\x57\ \x1f\x1f\x7e\x5e\x54\x92\xa7\xf2\x87\xbf\x42\xbc\x5f\x80\x75\x03\ \x21\xcd\x66\x42\x80\x6b\x99\x85\xf2\x10\x37\xe2\xe1\xd7\x82\xd7\ \xf2\x8e\x3f\xae\x4e\x0c\x49\x6a\x73\xb7\x6e\xd7\x1e\x01\xf3\x0b\ \xe8\x71\x80\xbf\xd6\xef\xc7\xda\x00\xe4\xbf\xb9\x36\x7f\xf7\xdf\ \x1b\x0e\x36\xe8\xb1\xe8\xd5\xc5\x95\x53\xb2\x77\x2e\x4f\xd4\x49\ \xf2\x3e\xb7\x27\x4b\x3b\x33\x10\xe1\x00\x07\x80\x6b\x05\xc0\x5f\ \xb2\x6a\xc4\x93\x74\xd1\xcc\x6a\x43\xde\x9b\xfd\xef\xe3\xa1\x84\ \xdc\x17\xe6\x17\xd0\xe3\x08\xff\x9e\xf9\x6e\xbf\x3d\x2c\xa3\xff\ \xf3\xdf\x5c\x93\xbf\xfb\xef\xa5\xeb\x2d\x0c\x07\x1b\xf4\x98\xf4\ \x4e\x8c\xab\x5f\xc3\x95\x03\x21\x49\x5e\xef\xe2\x32\xa9\x7d\xfc\ \xb0\x7e\x32\x77\x72\x67\x08\xb0\x0e\x66\x69\x1e\x61\xb9\x9e\x5b\ \x8d\x78\xac\xae\xe7\xac\x49\x5e\x87\x37\xd5\xe2\x06\x5d\x30\xbf\ \x80\x1e\x67\xbd\x9a\xfc\xe8\x34\x00\x76\x4e\xe1\x28\x9d\x01\xe8\ \x05\x07\x1b\xf4\x78\xe8\x1d\x37\x64\x48\xcf\x50\x42\xf9\x41\x38\ \xa6\xb6\xbb\x07\x7f\xca\x0d\x84\x94\x1b\x09\xcb\xa3\x91\x51\x05\ \xec\xce\x67\x0a\xe6\x71\x27\x8b\xdf\xea\x7a\x0e\x49\xea\xa4\x70\ \x3c\x79\x4e\xf1\xf3\x7d\x98\x5f\x40\x8f\x93\x5e\x6d\x9e\xe7\x9a\ \x01\xa8\xb6\x7b\x46\x50\xa3\x33\x00\x47\xc3\xc1\x06\x3d\x37\xf4\ \xea\xce\x4c\x85\xb3\x13\xe0\x7f\xf4\x79\x02\xfc\xe1\x6f\xa4\x97\ \xa4\xde\x3b\xc0\xe5\x4e\x13\x1e\x23\xb8\xb7\x41\x8f\x39\x94\xc7\ \xbd\x38\x5e\x2b\x3d\x1c\xdc\x13\x8a\xa9\xff\x0a\x4b\x4a\x1d\xcc\ \x07\xa0\xe7\xa2\x9e\xc6\x70\xcd\x00\xf4\xb0\x5a\xfa\xaf\xce\x3b\ \x04\xcd\x00\xd4\xc2\xc1\x06\x3d\xb7\xf5\xea\x07\x0d\x3a\x1a\x57\ \x0f\x44\xe3\xca\x54\x2f\x26\x5f\xaa\x4d\x84\x9c\xf7\x10\x54\x5e\ \x9c\xb1\x8b\x1b\xf4\x98\xea\xf2\xcd\x77\xee\x7b\x01\xff\xec\xdd\ \xfe\x64\xbc\x9b\xbf\x5f\xbf\xe1\xb5\x30\x1f\x80\x9e\xcb\x7a\xda\ \xea\xbd\x66\x00\x7a\x5a\xc1\xbf\x2a\xef\x0e\x8e\xd4\x3d\x2f\x80\ \x83\x0d\x7a\x9e\xea\x9d\xd4\xd0\x74\x72\x54\x6a\xbe\x23\x12\x97\ \x57\xb9\x0f\x7f\xf2\x8d\x84\x6e\xef\x21\x08\xf2\x4a\x82\x57\xef\ \xd7\x54\x4f\x22\xa9\xcb\xb7\xde\xb5\xef\x26\xfc\xb3\x77\xf9\x2b\ \xa3\x09\xf9\xb6\x48\xa3\xfc\x5d\x98\x0f\x40\xcf\x43\xbd\xde\x3a\ \x03\x50\x63\xb7\xe9\x4f\x6f\x00\x7a\x12\xa7\x04\xc1\xc1\x06\x3d\ \x17\xf4\x9a\x9b\x87\xf7\x08\x25\xd4\x21\xe1\x98\xf2\x74\x9d\xa4\ \xee\xf4\x06\xfe\xc6\x86\x80\x78\x0f\x01\x87\x1c\x02\xbf\xcc\x44\ \x20\xf4\x6c\x77\xe7\xb3\xd5\xe6\xbb\x01\xff\x70\x5c\xd9\x19\x49\ \xc8\xcf\xf5\x95\x9a\xd4\xc1\x83\x07\x7e\x0e\xe6\x03\xd0\xf3\x41\ \x4f\x33\x00\xb5\x96\x3c\xcf\xff\x50\x95\xae\x46\x10\xe0\x0f\x7a\ \xc2\xe8\xe1\x47\x04\x78\xe3\x60\xd6\x08\xbc\x56\x17\x53\xf7\x7b\ \x3d\x99\x33\xed\x21\x30\x31\x06\x00\x7f\x27\x2d\x73\xed\xe0\xef\ \xe5\x4a\x91\x51\x3c\xaf\xbc\x2f\x1a\x97\xdf\xe8\x23\xc9\x17\x49\ \xd2\xa0\xaf\xc1\xe7\x17\xf4\x7c\xd6\xeb\x4d\xb4\x87\x4f\x67\x00\ \xaa\x01\xfe\xa0\x27\xb2\xde\x89\x03\x94\x2f\x44\xe2\xca\xe5\x61\ \x49\x1e\x9f\x1d\x07\xbd\x87\x3f\x5b\x06\x81\x2d\xbc\x2a\x0d\xfe\ \x0c\x06\xaa\xf0\xf8\x79\x7d\x7e\x4d\xbb\xf0\x1d\xc8\xfe\xb7\x2d\ \x2c\x29\x97\x9d\x1a\x1f\x76\x2c\x7c\x7e\x41\x4f\x20\x3d\xb2\xea\ \x3d\x9d\x01\x00\xf8\x83\x5e\x60\xf4\xfa\xc6\xd2\x5f\x0a\xc7\xd5\ \x9f\x84\xe3\xf2\xd8\x50\x4c\xd9\xef\x1f\xfc\x19\x1a\x19\x51\x6e\ \x40\x2c\x36\x09\x42\xc3\x9f\xd7\xfb\xf5\x61\x77\x3e\xe9\x9d\x7e\ \x38\xa6\xbc\x91\xfd\x99\x8b\x8f\x4f\x0c\xff\x22\x7c\x7e\x41\x2f\ \xd0\x7a\xac\xe0\x87\x83\x0d\x7a\xa2\xe8\x9d\xde\x70\xd6\xb1\x7d\ \x12\xcd\x97\x87\x13\xca\xe8\x48\xac\x79\x87\xff\xf0\x77\xe9\x31\ \x02\x77\xb8\x8a\xa2\xe7\xf7\xf9\xb0\xfd\xb9\xed\xd9\xbb\xfc\x17\ \xb2\x06\xe7\x7c\xdc\x7a\x17\x3e\xbf\xa0\x57\x8e\x7a\x70\x70\x40\ \x2f\xf0\x7a\x91\xc1\x67\x1d\x95\x85\xce\xa0\x50\x5c\xfe\x77\x48\ \x52\x97\x88\x07\x7f\xce\xd5\x08\x81\x80\xbf\xc8\x66\xcc\x34\x87\ \x7f\x51\x48\x52\xfe\x59\x17\x93\x07\x18\x85\xf4\xc0\xe7\x0d\xf4\ \x00\xfe\x70\xb0\x41\x4f\x6c\xbd\xee\xa1\x58\x73\x28\x14\x53\xaf\ \x0a\xc7\xd5\x37\x43\x92\xbc\x4b\x7c\xf8\xbb\xd4\x18\x89\x1b\xfc\ \xcb\xf3\xf8\xe5\xaa\x4d\x62\xca\x1b\xb8\xdd\x6e\x24\x91\x3c\x11\ \x5f\x3b\xf0\x79\x03\x3d\x80\xbf\xf1\x2f\xd7\xf7\x08\xe8\xcd\x21\ \x2e\x18\xf4\x40\xcf\x75\x3d\x1c\x45\x9c\x85\x58\x63\x76\xc2\xbf\ \xb9\x2e\xae\xbc\x9b\xfd\xef\x21\x0d\x0e\xc5\xc3\x29\x6c\x40\x4f\ \x78\xbd\x43\xd9\xbb\xfb\x19\xa1\xb8\x72\x53\x24\xa6\x24\x48\xa2\ \x78\xe1\xf3\x06\x7a\xe5\xa6\xc7\xf2\xcb\xf5\x3d\x02\x7a\x71\x88\ \x0b\x06\x3d\xd0\xf3\x45\xef\xa4\x44\xf3\xe7\xeb\xe3\xcd\xe9\x48\ \x42\xf9\x57\xf6\xae\xf0\xbd\x70\xac\xf9\x00\xc0\xb5\x3c\xf5\xf0\ \xb9\xcd\x9e\xe3\x77\xb3\xff\xff\xae\x68\x5c\x1d\xae\x7f\x96\x0f\ \x9f\x0f\xd0\xab\x44\x3d\x96\x5f\x5e\xab\xcb\x17\x3e\x9a\x43\x5c\ \x30\xe8\x81\x9e\x30\x7a\xa7\x36\x0e\xfb\x52\x24\xae\x0c\xce\x75\ \x2e\x8c\xc9\xe3\xf4\x7d\x0a\x00\xae\xc1\xd2\xcb\xe5\xed\x4b\x4a\ \x5b\x54\x92\x6f\xc9\xc2\xbe\xe9\xb4\xc6\x61\x5f\x86\xcf\x07\xe8\ \x81\x1e\xdb\x2f\xef\xae\xeb\x11\x70\x94\xae\xb9\x40\x77\xd0\x03\ \xbd\xf2\xd5\xbb\xf6\x08\xdc\xb0\x25\x94\x50\x2f\x0a\xc7\xd5\x07\ \xea\x24\x65\x96\x59\x18\x11\xc0\xda\x3f\x3d\x7c\x4e\xea\x24\x79\ \x26\x3e\x47\xf8\x5c\x65\x7f\x36\x74\xda\x69\xc3\x6b\xe1\x7a\x06\ \x3d\xd0\x33\xd7\xa4\xf9\xe5\x3d\x75\x3d\x02\x6a\x1c\xc6\x05\x83\ \x1e\xe8\x05\x56\xef\xd8\xc4\x85\x35\xd1\x98\xd2\x0f\x67\x10\x84\ \xe2\xca\xbd\xa1\x98\x3a\x2d\x24\xa9\x3b\x0b\xe1\xa5\x22\xa7\x2d\ \x8c\x41\xcf\x14\xf6\x3b\xea\x24\x75\x6a\x58\x92\xef\x09\xc7\xe5\ \x4b\x4e\x8c\xab\x27\xe3\xbd\x1d\x70\x3d\x83\x1e\xe8\x11\xeb\x55\ \x91\x86\x04\x75\xd7\xf5\x08\xd0\x46\x0f\x87\xbf\x1c\xf4\x40\xaf\ \xac\xf4\x4e\x39\x45\xae\x39\x29\x2e\x9f\x10\x8d\xcb\x4a\x44\x6a\ \xfe\x53\xd6\x18\x3c\x81\x37\x19\xd2\xf6\x31\xe8\x82\x61\xe1\x70\ \x0e\xd7\xe0\xe9\xe5\x40\x1f\x93\x67\x64\xff\xff\xe3\x59\xd8\xff\ \x21\x12\x57\x87\xd5\xc7\x9b\xbe\x8d\x57\x65\xe0\xfa\x03\x3d\xd0\ \x63\xd6\xab\x26\x32\x00\xba\x6f\xee\xa1\x1b\xd5\x1c\x7e\x39\xe8\ \x81\x5e\x85\xe8\x5d\x7b\x44\xf6\x2e\xf5\x9b\xe1\x84\xdc\x70\x38\ \xb5\x50\xf9\x47\xd6\x14\xbc\x98\x5b\xae\x8e\xc9\x1d\x61\x87\xf0\ \x0c\xfc\xc8\x1e\x83\x2c\xd8\x67\x66\xef\xfa\x5f\xca\x8e\x5b\x23\ \x71\xe5\xd2\xc3\xc7\x4a\xfe\xa6\x15\xe8\xe1\xfa\x03\x3d\xd0\x73\ \xa4\x47\x64\x00\xaa\x8a\x47\x37\x07\x5f\xa0\x07\x7a\xa0\x57\xf0\ \xd5\x3d\x1a\x1b\xf6\xb9\x48\x2c\x55\x8f\xef\x6e\x23\x09\xe5\xe7\ \xd9\xbb\xdf\x5b\xb2\x77\xbb\x4f\x67\xe1\x38\x3e\x0b\xc7\xd9\x21\ \x49\x5e\xaf\x95\x2a\x06\x6c\x1c\xca\x9a\x9c\x75\xf8\x3d\xe0\xac\ \xfc\x90\xa4\xfe\x0f\x97\x5e\xe2\x3e\x0e\xf8\xbd\x46\x25\x39\x7a\ \x72\x43\xd3\x17\xfa\xf5\xeb\x5b\x0d\xd7\x0b\xe8\x81\x9e\x2f\x7a\ \xdd\xed\xdc\xc2\x11\xba\xd1\xdd\xe1\x2f\x07\x3d\xd0\x03\x3d\x06\ \xbd\x96\x96\x96\xaa\x48\xff\xa6\xaf\x60\xa3\x80\x53\xe9\xb2\x77\ \xc7\x29\xfc\xec\x3b\x1c\x57\x7f\x17\x8a\xab\x37\xe6\x9e\x85\xc7\ \x14\x6c\x1a\x5e\xc1\x95\x0b\x59\xf0\x4e\xc9\xfe\xdd\xfb\xd9\xef\ \x9d\x1b\x96\x94\x65\xd8\x44\xd4\x49\xea\x66\x5c\xd1\x80\x97\xd5\ \xc3\x31\x75\x4f\x7e\x23\xe3\xa1\xc3\xb5\xf0\xd9\xff\x7f\xf8\xef\ \x76\xe4\xbe\x27\xfb\xbd\x87\x8d\x87\xb2\xec\xb0\x46\x56\x2b\xab\ \x99\xaf\x8a\x78\x25\xfb\xbb\x46\x66\xff\xee\x5e\xfc\xbb\x43\x52\ \xf2\xb7\x87\x5f\x8b\x9c\xc2\xaf\x0d\x83\x1d\xbf\x56\xfc\x9a\xe1\ \xfc\x82\x1e\xe8\x89\xad\xf7\xff\x03\x65\x0b\xbf\x03\x84\xca\xfd\ \x85\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\xad\x33\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x58\x00\x00\x02\x58\x08\x06\x00\x00\x01\xc9\x61\xa8\x4a\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x16\x25\x00\x00\x16\x25\ \x01\x49\x52\x24\xf0\x00\x00\x20\x00\x49\x44\x41\x54\x78\xda\xec\ \x9d\x79\x7c\x14\xf5\xfd\xff\x5f\xd9\xdd\x6c\xee\x8b\x10\x48\x20\ \x90\x05\x09\x57\x8a\x84\xc3\x22\xd5\x4a\x6c\xc1\xa3\x6a\xa5\xa5\ \xf8\xab\xb6\x5d\x82\x28\x6a\x3c\xc0\x68\x3d\xab\x49\x5a\x5b\x8f\ \x16\x44\xa0\x5b\x5b\xab\x84\x58\x8f\x4a\x51\xa8\x55\x68\xc1\x92\ \x28\x7c\x11\x04\x0c\xd0\x85\x40\x90\x6c\x80\x84\x04\x72\xdf\xbb\ \xd9\x4d\x7e\x7f\xec\x7d\xcf\xee\xce\xec\xce\xf1\x7e\x3e\x1e\x79\ \x64\x77\x76\x76\x66\xf6\x3d\xef\x79\xcd\xfb\xf3\x9e\xcf\xe7\xfd\ \x89\x1a\x1e\x1e\x06\x5f\x28\xaa\xc8\x2b\x05\x50\xe2\xb0\xa8\x1e\ \x40\xb9\x46\xad\x2d\xe5\xc3\xf1\x45\x45\xc2\x58\x45\x15\x79\xac\ \xec\x54\xa3\xd6\x46\x89\xce\x58\x45\x15\x79\x8b\x01\x7c\xc4\xe5\ \x3e\xc2\x61\x38\x4e\x8d\xc5\x96\x07\xf1\xc5\x70\x9c\x18\x2b\x52\ \x46\xe2\xda\x68\xac\x1a\x8b\x2f\x46\xe2\xca\x68\xac\x18\xab\xa8\ \x22\xaf\x12\xc0\x02\xf0\x9b\x09\x1a\xb5\x56\x17\x51\x63\xf1\xd5\ \x9b\xb8\xf0\x32\x99\x94\x0c\x15\xea\x31\x07\xe5\x59\x45\x15\x79\ \xd5\x00\x66\x42\xd8\xa4\x69\xd4\xda\x0e\x4e\x3d\xcb\x72\x66\x84\ \x6e\x28\x00\x68\xb7\x68\x2d\x37\x9e\x25\xc4\xcb\x8e\x01\x9d\x1a\ \xb5\x36\x95\x55\xcf\x12\xa9\xa1\x00\x20\xa5\xa8\x22\xaf\x9c\x35\ \x63\x59\x34\x4a\xcc\x2c\x63\xd3\xb3\x66\x8a\xdc\x58\x8c\xae\x1c\ \x99\x84\x2f\xbf\x80\x7f\xab\x8c\x0c\xc5\xfc\x37\xcb\xfc\x34\x61\ \x08\x86\x9e\xb5\x40\xaa\x46\xf1\xe6\x5d\x32\xba\xfc\x98\x1b\x4c\ \xc1\xd5\xce\x5e\x5c\xb1\x34\xe8\xef\xc6\x3c\x57\xe0\x71\xf9\xa7\ \x47\x35\xd8\x7d\xbb\x36\x62\x06\x54\xf0\xcd\xab\x94\xea\x7c\xc4\ \x3e\xef\xd9\x58\xbb\x2b\x1e\x0c\xbb\x77\x39\x66\x29\x64\x7c\x73\ \x7f\x43\x85\x4b\xfc\x7b\x3c\x8a\x37\xc7\x26\xe3\xbd\x56\xcd\x88\ \xec\x21\x39\xda\x84\x77\x9e\xe5\x8b\x85\xdb\xf3\x22\xba\x7f\x5b\ \xd6\x81\xed\xc7\x55\x69\x2d\x09\x78\xe2\xc9\x1f\xd8\xde\x9f\x18\ \x1e\xc6\xc9\x61\xe0\x04\xcc\xff\x03\x21\xa7\x7c\x6b\x44\x8d\x64\ \xd5\x2d\x47\x63\xb1\xe2\xef\xc5\xf3\x3f\x75\x5b\x36\x29\x37\x27\ \xa4\x6d\xde\x22\x7b\x1e\x39\xe5\x5b\xf1\xdc\xa2\xdd\x68\x6e\x6e\ \x86\xc9\x64\x42\x4c\x4c\x0c\x94\x4a\x25\x92\x92\x92\x58\x31\xc8\ \x97\xba\x7f\x60\x57\xed\xeb\x3e\x0d\xa6\x10\xc2\xe5\xf7\xc9\xd0\ \xaf\x71\xd7\x8f\x4f\xa2\x31\xaf\xd1\xb6\x4c\xaf\xd7\x43\xaf\xd7\ \xa3\xbb\xbb\x9b\x95\x7d\x8c\x57\x7e\x07\xc0\xeb\x81\x85\x0e\xa1\ \x72\xa1\xeb\x38\xb2\x93\x67\x38\x2d\x3b\x53\x5b\x1f\xb2\x77\x75\ \x6e\x9b\x06\x3c\x6b\x7e\xfd\xaf\x7f\xfd\x2b\xe4\xe3\x8c\x8b\x8b\ \x43\x7c\x7c\x3c\xd2\xd3\xd3\x31\x79\xf2\x64\xe6\x77\x43\x36\xef\ \x82\x1f\x68\x9f\x0c\x68\xfd\xc6\xc6\xc6\x88\x78\x6b\x7f\x7f\x3f\ \x5a\x5b\x5b\x71\xfa\xf4\x69\xa6\x77\xc5\xd2\xc8\x5d\x86\x95\xa5\ \x40\x55\x19\xc6\x94\x30\x3f\x4f\x63\xc6\x8c\x01\x00\xac\x5c\xb9\ \x32\xe4\xdd\xef\xdc\xb9\x13\xe7\xce\x9d\x0b\xe4\x2b\x25\xac\x1b\ \xeb\x8e\xbc\x97\x03\xd8\x7d\x60\x0e\x9d\x98\x98\x68\x13\xf6\x50\ \x59\xbe\x7c\x39\xca\xca\xca\x58\xcb\x3a\x04\x85\xab\x5e\x01\xc0\ \xc8\x8c\x34\xf7\x15\x0b\x4a\x03\xde\x76\x52\x52\x52\xc8\x86\xd2\ \xe9\x74\xec\xb5\x0d\xb9\x20\x35\x35\x39\xa4\xef\xff\xe5\xd1\x1d\ \xf8\x76\x89\x3c\x60\x4f\xf0\xea\xd0\x25\xe6\xfe\x72\xb7\xde\x7a\ \x6b\xf8\x8d\xd5\xd3\x9d\x8c\xb3\x35\xd3\x00\x00\x47\x46\xd5\x60\ \xf6\x15\x53\xb1\x6a\xca\x9b\x00\x80\xd7\x4e\xad\xf0\xfa\xbd\xe3\ \x95\x75\x38\x56\xa5\xc3\xf1\xca\x3a\x1c\xaf\xf2\x7d\xc6\x77\x7c\ \x71\x8f\xc7\xe5\x53\x2e\x9f\xc3\x4f\x8f\x7e\x16\x9e\x08\xfe\x81\ \xcd\xd3\x4b\xe1\xdc\x35\x31\x60\x8e\x7d\x35\x0f\x7b\x37\xbc\x65\ \x0b\x13\x5c\x69\xe9\xea\xc0\xd5\xca\x7c\x34\x28\xdf\x47\xbf\xec\ \x6a\x00\xc0\xe4\x4b\xec\x36\x90\x73\xda\x9b\x50\x78\x78\x07\x63\ \xcf\xd2\xe9\x74\xd8\xba\x75\x2b\x0a\x0a\xec\x19\x8e\xbf\x1c\xfd\ \x05\xe4\x8a\x28\x9f\x9e\xc5\x9a\xa1\x1c\xa3\x75\xab\xd1\x0a\xd7\ \x97\x59\x3e\x1f\x46\xbf\x65\xd9\xa4\xdc\x1c\x0c\xe5\xb2\x7d\xde\ \xc7\xa3\x8c\xa1\xb1\x00\xa0\xab\xab\x0b\x55\x55\x55\x4e\xc6\xe2\ \xf4\x32\xac\x39\x9a\xef\x64\x28\xd7\x26\xce\xb5\x0f\xdf\x8d\xbd\ \x2b\x37\x01\x78\xcb\x6e\xc8\xe3\x51\x00\xd8\xcf\x24\xbc\xd6\xe8\ \x3f\x92\xcf\xc9\xc9\x41\x61\x61\x21\x00\x20\x26\x26\x06\x39\x39\ \xce\x81\xf2\x90\x71\xd8\xaf\x67\x05\x9f\x7b\x32\xc4\x78\xfd\xcc\ \x66\xa8\x19\xc3\xc0\xc6\xef\x03\xff\xdb\x6b\xf9\x44\xe9\xaf\x55\ \x11\x14\x8f\xd6\xb5\x63\xa8\x84\xf9\x45\x92\x91\x91\x61\x33\x9c\ \x15\xd3\xe0\x30\xa2\x63\x7d\x7b\x56\x3d\x80\x9c\x50\x2f\x3f\x57\ \x43\xfd\x60\x72\xad\x3d\x17\xf5\x90\x45\x80\xef\x37\x1b\x57\xb6\ \xef\x5c\xc0\xc6\x58\xd0\x7c\xd0\x1c\x71\x34\x1f\xc0\x82\xa6\x03\ \xb6\xd7\x36\xaf\x00\x80\xb7\xed\xeb\x97\x65\x3d\xe3\x53\xb3\xda\ \xda\xda\xdc\x96\x9b\x4c\xc3\x7e\x2f\xc3\xf2\x40\x75\xcb\x97\xa1\ \xac\x3c\x73\xf7\x6f\xdc\x17\xbe\xae\x07\xca\xa2\x30\xb4\xdb\xcb\ \xb9\x31\xc8\x00\xe5\x10\xf3\xe8\x30\xcb\x87\x88\xe7\xec\x01\x0a\ \x2b\xbd\x7e\xbe\x7f\xff\x7e\x6c\xd9\xb2\xc5\x16\x46\x30\x0a\x4a\ \xd9\xee\x90\x6f\xbb\xfc\x12\x1c\x84\xf3\xe2\xa3\xcc\xbe\xcc\xc4\ \x50\x2c\x31\x7f\xfe\xfc\x80\x0c\x15\x94\x66\xf9\xbb\xfc\x6c\x3a\ \x65\x21\xf7\xb6\xb5\xa8\xfd\xf8\xd5\xb0\x37\x3d\x07\x06\x06\xd0\ \xe4\x25\x5a\x57\xa9\x54\x68\x6b\x6b\x83\x5c\x2e\xe7\xce\x58\xbe\ \x0c\x55\xf8\x52\x89\x47\x43\x45\x8a\xe6\xe6\x66\x6c\xde\xbc\xd9\ \x6b\xf4\x1e\xd1\xe6\xce\x99\x86\xf3\x40\xf2\xed\x00\x80\x07\x5e\ \xd8\x8e\xdd\x07\xbe\x71\xf6\xae\x87\xce\x03\x37\x86\xcf\xc3\x16\ \x1e\x7a\x18\xb5\x1f\x17\x7b\xfd\xfc\xb3\x0b\x1b\x70\xbe\xe7\x88\ \xd3\xb2\x84\x54\x05\x3b\xc6\x72\xf4\x2a\xeb\xdd\x6c\xe8\x9a\xf1\ \xce\x97\x5f\x8e\xd9\xab\x1c\x0d\x65\x33\xd8\xc6\x71\xa8\xfd\x92\ \xbd\xa8\xbd\xa6\x6f\x0c\xba\x4c\x71\x38\xd0\x7d\x05\x00\xe0\x40\ \xf7\x24\xcb\xff\x2b\xb0\x63\xed\x12\xe0\x10\xfb\x79\x7b\x46\xc6\ \xd2\x1e\x99\x6b\x33\x94\x4e\xa7\xc3\xaa\x31\x29\x78\x75\x42\x9a\ \x57\x9d\x3a\xf2\xee\xbd\x1e\xb7\xd3\x8d\x7b\x19\x1d\xd4\xa1\x13\ \x17\xf1\xe7\xad\x87\x71\xf8\xe4\xc5\x80\x7e\xcc\x8e\xb5\x4b\x98\ \x1b\xfb\xc2\x41\xbf\x9e\xe4\xc2\x8f\x14\x80\x39\x19\xef\x2b\x5b\ \x6a\x32\xc9\x9d\xc4\xd1\xf1\x62\x72\x35\x14\x8e\x47\x01\xaa\xae\ \x90\xce\xe0\xdc\xe9\x59\x98\x3b\x3d\xb0\x8c\x40\x73\x53\x1b\xa7\ \x97\xb5\x46\xad\xdd\xa6\x08\xe4\xf2\xf3\x78\xf7\x7b\x20\x05\x7c\ \xe5\x81\xcd\x79\x88\x72\xb9\xf2\x4d\xc6\x61\x73\xb3\x46\x1e\xc5\ \xcd\x65\xe8\x33\x4c\x98\xee\xe2\x55\x00\x66\xdf\xf5\x86\xff\x1c\ \xd5\xaf\x6e\xc5\xdc\xe9\x59\xac\x1b\xe8\x91\x57\xf7\xe0\x03\xe5\ \x08\x7c\x67\xd1\x9f\x61\xe8\x8f\x42\x4c\xbc\x73\x78\x20\x57\x44\ \x41\xae\x88\xf2\xd9\xac\xf1\x9a\xa2\x71\xec\xda\xed\xed\x52\x3c\ \xf6\xd5\x3c\x24\xc6\xc5\x61\xe7\x2b\x7f\xb4\x19\xca\xed\x12\xb4\ \x18\x4a\xfd\x59\x2e\xfe\xb8\x68\x0f\x30\xde\x9c\xf0\x4b\x48\x48\ \x80\x4c\xe6\x3f\x21\xbb\xfe\xdd\xfd\xd8\xf0\xde\x7e\xaf\x9f\xdf\ \xb7\x64\x36\xee\x5b\x32\xc7\xe7\x65\x78\x73\xf1\x56\xdb\x1d\x70\ \xb8\x63\x00\x85\x15\x33\x03\xd5\x25\x6f\x97\x60\x14\x63\x63\x39\ \x1d\x54\x43\x36\x46\x8f\xbd\x00\x00\xf8\x79\x76\x03\xbe\x33\x26\ \x15\x18\xac\x87\xfa\x33\x73\xce\xe5\x07\xff\x99\x81\x5b\xfe\x5e\ \x0e\x00\x21\x3d\x00\x3d\xe3\x90\xce\x61\x62\x64\x6f\x61\x42\xe1\ \x86\x29\x88\x4f\x51\x44\xc6\x58\xfe\x78\xe1\xe4\x4b\x48\xfc\xcd\ \x42\x28\x15\x71\xbc\xd1\xae\x15\xaf\x4f\x75\xbb\x1c\x03\x60\xbb\ \x46\xad\x5d\xec\x66\x2c\x36\x0c\xa6\x51\x7b\xef\x6c\xd6\xf8\xe4\ \x3b\x30\x56\xea\x90\x72\x64\xd0\xeb\x3a\x29\x83\xee\x4d\xd5\xce\ \xe8\x52\x24\xec\x2e\x84\x62\x81\x2a\xe8\xe3\xfa\xc3\xb3\x05\x38\ \x3b\xe5\x72\xd0\x5e\xc5\x89\xb1\xc4\x86\xcf\xce\x6c\xe1\x1e\xd1\ \x2e\x14\x43\x79\x34\x16\x61\xa3\xde\x67\xe8\x40\x97\xa3\xef\x2b\ \xcc\x97\x67\x4d\x20\x43\x31\x34\x56\xa8\x83\xaf\xc5\x88\x2c\x18\ \x0b\x4b\xd1\xab\x18\x09\xbc\x94\x0c\xe6\xef\xb7\x32\xbd\x1b\xa6\ \x49\xdd\x50\x8c\x8d\x65\x19\xa5\x5e\x25\x65\x43\x05\x14\x67\x69\ \xd4\xda\x02\x00\x9d\x22\xb4\xd5\xac\xa0\x52\x34\x4c\xb0\x0c\xbe\ \x5e\x26\x25\x8f\x0a\xda\x58\x62\x09\x5a\x83\xb9\x71\xc9\xc2\xb9\ \x33\x21\x1b\x2a\xe4\xb6\xa1\x10\x0d\x16\xca\x31\xb3\x56\x3f\x8b\ \xef\x97\x25\x1b\x27\x56\xc6\xa7\x83\xe1\x2a\x7b\xc0\xab\x62\x63\ \x7c\xf5\x32\x5e\x97\xb1\xe3\x89\xd1\x6c\x39\x73\xb6\x09\x5b\x9d\ \x52\xae\x0d\x27\xf8\xd2\x9b\x3e\x0c\x57\x8a\x10\x7b\x49\x03\xf8\ \x91\x46\xad\xdd\x16\xce\xe3\x8e\xe2\x4b\xb9\xe0\xa2\x8a\xbc\x02\ \x00\xa5\x70\x2e\xbe\x51\x05\x60\xb5\x46\xad\xe5\x45\x95\xa5\xb0\ \x1b\xab\xa8\x22\x6f\x1d\x80\x55\x2c\x6c\x4a\x9c\x9e\x15\x0e\xa1\ \x17\xb4\x66\x15\x55\xe4\xad\x06\xf0\x6a\x04\xae\x96\x80\x0b\x1f\ \x46\xcc\x58\x45\x15\x79\x3a\x04\xd1\xaf\x9e\x03\x96\x6b\xd4\xda\ \x72\x5e\x1a\xab\xa8\x22\x2f\x1f\xc0\xd7\x62\x6c\xe6\xb0\x6a\x2c\ \x21\xa4\x6b\xd8\x30\x5a\x48\xc6\x62\xf1\xce\x26\x08\x83\x49\x32\ \xf9\x17\xd6\x7c\x96\xd0\xb3\xa4\xc1\x1e\xbf\x4c\x6a\x86\x0a\xe5\ \x77\xc8\xa4\x68\xa8\x60\x7f\x8f\xe4\xcb\x05\x07\xf2\xbb\x64\x52\ \x36\x54\xa0\xbf\x8f\x2a\xe0\x06\xf0\x3b\xa9\x02\xae\xf3\xef\x2d\ \x67\x3d\x74\x10\x31\xcb\x82\x32\x96\x54\xbb\x49\x06\x5c\x5b\x59\ \xea\xfd\x49\xbd\xd5\xbf\xa7\xcb\xd0\x33\x33\x19\xb5\x0d\xd9\xf2\ \xaa\x60\xcb\x05\x7b\x2b\x15\x0c\x00\xc5\xaa\xf0\x56\xc0\x75\x6d\ \x43\x72\x52\x12\x2a\x94\xba\xca\xde\x4a\x05\xaf\xfb\x4f\x21\xd0\ \x14\x59\x77\xe3\x77\x05\xdc\xe3\x51\xb6\xa1\x79\xa7\x9b\xbe\x8a\ \xb8\xd8\x73\xa2\x59\x4f\xbf\xb9\x85\xbd\x8d\xa5\x99\xef\xe6\x71\ \xca\xa4\x88\x9f\x3b\x19\xdf\xbc\x4a\xbf\xfe\x4b\xfb\x9b\x19\xc3\ \x40\xb6\x39\x4e\x7c\x39\xeb\xfd\x48\xdd\x19\x0b\x39\xd5\x2c\x57\ \x02\x2a\x15\xbc\xfa\x53\xf3\x9f\x03\x11\x2e\x17\xbc\x09\xe6\x7a\ \x3d\xec\x1a\xeb\xa6\x49\xc5\x98\x9e\xb1\x10\x00\x70\xf9\x84\x7d\ \xf9\xfc\xdc\x1c\xcc\x0f\x61\xbb\xb7\xc8\x60\x2b\x17\x6c\xad\x6b\ \x9a\x94\x94\xc4\x5a\x65\x49\x00\xf8\xcd\xae\x85\x7e\xd7\x51\xb0\ \x79\x09\xee\x3c\xb3\xd6\x66\x2c\x2e\x70\x2c\x00\xdb\xdd\xdd\xcd\ \x5a\xa9\x60\x00\xe8\xed\x30\x7a\x1d\x4f\x5d\x54\x91\x57\xa8\x51\ \x6b\xcb\x05\x51\x5b\xd9\x15\x36\xca\x05\xa7\xa7\xa7\x07\x52\x2a\ \x78\x13\x80\xf2\x88\x46\xf0\x4c\x3d\xe3\xa5\xff\x2e\x67\x7d\xdf\ \x81\x94\x0a\x0e\xab\xc0\x7b\xa4\x2c\x0a\x49\x00\xa3\x2a\xb8\x33\ \x0a\x26\xe0\x99\x8b\x9f\x40\x0e\x73\x65\x37\x36\xca\x05\xff\xe5\ \x2f\x7f\x09\xf8\x3b\x8a\x88\x4d\x46\x14\x40\xa9\xe0\x77\xca\xf6\ \xe0\xa6\x87\xae\x84\x52\xa9\x64\x55\xd4\x83\x89\xb3\x78\x3f\x19\ \xd1\xbb\x65\x7b\x90\x9e\x9e\xce\x4a\xb9\xe0\x50\xa2\x79\x56\x2f\ \xc3\xa4\xdd\x3f\x45\x48\x31\x82\xaf\xab\x96\xe5\x52\xc1\x37\xdc\ \x70\x43\xc0\x86\x67\xc5\x58\xc7\xbe\x9a\x07\x00\x98\x3a\xdd\x5c\ \xb3\xef\xaf\x45\xbb\x71\xfc\xb3\x7a\x14\x2c\xcb\xc3\xd2\xe7\xaf\ \xf5\xde\xf4\x63\x58\x2e\x78\xc7\x17\xf7\xc0\x5b\xb9\xd6\x92\xdd\ \x9b\x82\x3a\x66\xa3\xd1\x18\x7e\x63\x79\x2a\x15\x7c\x8f\x66\xa1\ \xd3\x41\x59\x1b\xc3\x67\x62\xcd\x06\xb1\x95\x0a\x8e\x96\x03\x0b\ \xaf\x30\xff\x05\xeb\x71\x0b\x97\x07\x65\xb4\x3d\x7b\xf6\x20\x21\ \x21\x21\x7c\x15\x70\x01\xe0\xee\x9b\x6f\xb7\xbd\x76\x2d\x15\xfc\ \xdc\xbb\xaf\xe3\xbd\x1f\xbf\x64\x2f\xee\x63\x59\x6e\xad\xe8\xc6\ \xae\xf8\x2e\x0f\xc8\x60\x7b\xf7\xee\x45\x6c\x6c\x6c\xf8\x8c\x75\ \xec\xab\x79\xd0\x6c\xb8\xdd\x6d\xb9\xb5\x54\x70\xa2\xd2\xe0\x54\ \x88\x6c\xd2\x80\xca\xf2\x8a\xfd\x36\xfb\x8d\xa7\x0f\xfa\xfc\xdc\ \xb5\x34\x70\x76\x76\x36\x12\x12\x12\xc2\x73\x19\xfa\x2a\x42\x56\ \x7b\xc1\x5c\x13\x70\xe7\x8b\x2f\x98\x17\xdc\x6f\x2d\x2b\x6c\xd1\ \x08\x0e\xca\x05\xef\x38\xf0\x33\x73\xd1\x58\x86\xdc\x71\xc7\x1d\ \xc8\xc8\xc8\xe0\xde\x58\x06\x7d\x8c\xcf\xcf\x97\xbf\x5c\x6a\xae\ \xad\xa5\xb4\x18\xf3\x75\x3d\x70\xfa\x73\x60\xed\x22\xc8\x7e\x51\ \x0b\x04\x59\x2e\xd8\x5a\x1e\x78\x41\xd3\x01\xa8\x7a\x2f\x40\xd5\ \xd3\xe0\xbc\x92\xf5\xa4\xa4\x1a\x51\x16\xf7\xbc\x57\x0f\x73\xad\ \xa9\xcc\x94\xa8\x07\x36\x4f\x1f\x66\xd3\xab\x3c\x15\x4c\x74\x8d\ \xdc\x3d\x9f\x01\x19\xbb\x15\x70\xfd\x04\xbd\x37\xdc\x70\x03\x62\ \x63\x63\x6d\xa1\xc4\xfa\x7d\x77\xb1\x57\x7a\x93\xa9\xa1\xca\x97\ \x6c\x0f\x6e\x32\xb4\x30\x96\x0a\x06\x80\xe2\xe2\x62\x6e\x2f\xc3\ \xf6\x96\x0c\x2c\x2d\x58\xe4\x73\x9d\x49\xd3\x1e\x76\x7a\x6f\x2e\ \x17\x5c\x1c\xf6\x88\xdb\xdb\xc4\x1e\xb1\xb1\xb1\xc8\xcc\xcc\x0c\ \x6a\x9b\x01\x19\xeb\x7c\xdd\x44\xbc\x57\x7c\xa7\xef\xcb\x6f\xb4\ \xd9\xab\x66\xff\xf4\x8f\xe8\xee\xd5\x63\x51\xea\xff\x22\xd2\x3c\ \xf1\x54\x2a\xd8\x31\x82\x0f\x82\x7a\x05\x80\xd7\xc0\xa0\x13\x6d\ \x20\x3a\xe5\x58\x53\x79\x57\xc7\xb7\xcc\x3a\x55\x12\xde\x14\xbf\ \x3f\xa3\xbc\x77\x7a\x15\x12\x2e\xd9\x7d\xc5\x9f\x5e\x69\xd4\x5a\ \x55\xd4\xf0\xf0\xb0\xdf\x4c\xa9\xc9\x24\xc7\xe3\x8b\xfe\x85\xdc\ \xec\xf1\x30\x99\x4c\x88\xfe\xb2\x01\x29\x72\x19\xda\xaf\xce\xc6\ \xd7\xb5\x35\x98\x35\x30\xcd\xa3\xa1\x1c\x49\x96\xf7\xe3\xf0\xac\ \x5f\xb1\x66\x8c\x83\xb6\x32\xc1\x57\xa0\xcb\x14\x87\x93\x7d\x63\ \x71\xa0\xfb\x0a\xbc\x5c\x74\x1d\xae\x18\x9b\x8a\x99\x57\x4e\xf2\ \xf9\xfd\x65\xeb\xa7\x04\x54\x69\x92\xf1\x2c\x74\xda\x23\x73\x91\ \xbb\xdc\x1c\x75\x5b\xcb\x82\xb7\x5f\x9d\x0d\x00\x78\x78\xfd\x2b\ \xd8\xfb\xa0\x3d\xe0\xf3\x56\x2a\x18\x00\xba\xf1\x08\xa3\x03\xfb\ \xf3\xd6\xc3\xf8\xf3\xd6\x23\x81\x09\xf6\x9d\x73\x51\x7a\x15\xb7\ \x03\x3b\x82\xaa\x80\xeb\x56\x80\x7a\x2a\xbb\x97\xd8\x7d\x4b\xe6\ \xf8\xac\x49\xea\x0a\xd7\xa5\x82\x19\x1b\x2b\x73\x44\xba\xc7\xe5\ \x37\x3d\xf1\x20\x27\x75\x95\xd9\xe0\xe6\xe2\xad\xf8\xce\xa2\x3f\ \x7b\xbc\xcc\x82\x2c\x17\x3c\x01\xf0\x33\x73\xa6\xcf\xb9\x2a\x8e\ \x47\xb9\x1b\xca\x1a\x2e\x3c\xb3\xc6\x77\x53\xe3\x86\x29\x78\xaa\ \xf0\x3a\xd6\x8c\xe3\xe8\x59\x37\x17\x6f\xc5\xf6\x63\xe7\xf0\xf2\ \x63\x3b\x58\xa9\x7e\x6b\xd5\x2b\xbf\x9e\x75\xe5\x55\x07\xa0\xfe\ \xe3\x7c\x9c\xad\x99\x66\x33\xda\x4d\x4f\x3c\x88\x9e\xfe\x7e\xec\ \x75\x4c\x83\xb7\xac\x03\x60\x2e\x15\xbc\xea\x4f\x0b\x71\xe4\x90\ \x5d\xb7\x98\x54\xc1\x3d\x70\xfc\x3c\x5e\x78\xa3\x12\x35\x75\x9e\ \xeb\x88\xce\x99\x96\x85\x37\x9e\xbb\xd5\xaf\x37\xd5\x7e\x5c\x6c\ \x8b\xe9\xd6\x47\xa7\xb2\xdb\x8d\xc0\xc5\xb3\x3a\x00\xf8\x2c\xc1\ \xdd\xd3\x9d\x8c\xe6\x86\xb1\xb8\x62\xea\x49\xb3\xc5\x67\xd9\x9f\ \xa4\x5a\xcb\x05\x6f\x8c\xab\x40\xd4\x5d\x79\x50\xc6\x2a\x10\x13\ \x1d\x5c\x15\xdc\xa1\xa1\x21\x9c\xfd\xe6\xbc\x53\xda\xc7\x9b\x91\ \xd7\xbf\xbb\x1f\x07\xff\x77\xc1\x63\xe0\xdb\x19\x5d\x1a\xb2\xc1\ \xbc\x16\x75\x0d\xf5\x61\xeb\xc4\x53\x19\xb8\xef\xa9\x8f\x59\x99\ \x54\x96\x8d\xa9\x49\xd9\x30\x98\xa3\xb1\x58\xcd\xc1\xdf\xfb\x4a\ \x01\x92\x7e\xeb\xd9\x50\xc6\x2a\x1d\x5a\xff\xbc\x1b\xb1\x5b\x2e\ \x78\x77\xf3\x94\x58\x24\xb7\x3c\xe5\xe4\x51\xc3\x1d\x03\xd0\xaf\ \xff\xd2\x6b\xbf\x2d\x7f\xa4\x0c\x96\xe2\xc5\x68\x76\x7a\xf6\x50\ \xb9\x60\x86\x5e\x05\x50\x9f\xd2\x80\xa0\xda\xca\x0c\xbd\x8a\x3c\ \xcb\x3b\xb3\x18\x69\x16\x69\x57\x70\xe5\x82\xa3\xc8\x50\x81\x5d\ \x86\x47\x25\x66\xab\xb4\x80\x42\x07\x29\x5f\x8e\x21\x97\x0b\x96\ \xca\xe5\xc8\x66\xb9\xe0\x28\xa9\x1b\x2a\xa0\xd0\x41\xac\x06\x0b\ \xe4\x77\xc9\xb8\xda\xb0\xd8\x0c\x15\x54\x50\x2a\x16\x83\x85\xad\ \x5c\xb0\xc0\x0d\x76\x34\xd8\xe3\x0f\xb9\xca\x91\x90\x42\x8b\x50\ \x4f\xb2\x2c\xd2\x07\x20\x14\x43\xb1\xe2\x59\x7c\xf7\x32\xde\x15\ \x1b\xe3\xa3\xd1\xb8\xf0\x78\xd1\x95\x0b\xe6\x52\x16\xc2\x55\x7a\ \xb3\x1c\xdc\x4e\xe5\x10\x96\x9a\xa5\x91\x2a\x17\x3c\xcc\x67\x0f\ \xe2\x95\xb1\xf8\x80\x65\xcc\x52\x38\x86\xe2\xbc\xa6\x51\x6b\x57\ \x4b\xcd\xbe\xa2\x74\x2c\xbe\x96\x4c\x95\x52\x8e\x42\xf0\x8e\x25\ \xe2\x3c\x6e\xa7\x46\xad\x4d\x25\xc7\x0a\x8f\x13\xe9\xc0\x8f\x0a\ \xd7\x91\x82\xf5\xca\xda\x92\x74\xac\x30\xc6\x41\x42\x65\x02\x5f\ \xa7\x82\xe5\x9d\x63\x51\x6f\x27\x71\xc4\x6a\xbc\x70\x2c\x72\x26\ \xf1\x39\x59\xc4\x1c\x8b\x9c\x29\x6c\x1c\xd5\xa8\xb5\xf9\xa2\x76\ \x2c\xa1\xa5\x01\x48\xc5\x78\xee\x58\xa4\x4e\xd2\x6b\x5d\x8a\x71\ \xbe\x4c\x82\x07\xb7\x49\x51\xcf\x5a\x4b\x44\xce\xc1\x44\xdf\x19\ \x84\x88\xcc\x2d\x92\xad\x59\xfa\x28\x28\xa7\x20\x9f\x5d\xc7\x22\ \x95\x22\x07\x63\xd5\xb1\x84\x36\x4d\x26\x11\x5e\xe7\x0a\xca\xb1\ \x48\xa5\xc8\xc1\xfc\x21\x23\xa7\x22\xb8\x38\xef\x8c\x15\x8b\x02\ \x74\x22\x10\xe5\x62\xe4\x58\x52\xed\xbe\x32\xf1\x94\x73\xd1\xd2\ \x89\x35\xa3\xdc\xd6\xc9\x3a\x9f\x8a\xb8\xbe\x68\xb7\xe5\x5b\xee\ \xfe\x0a\xed\x23\x7b\x25\xeb\x5c\x4c\x46\xda\xeb\xc0\x93\xce\x75\ \xb7\xbe\x97\x8f\x6b\x76\xe7\x86\x75\x9f\x8a\xeb\x54\x48\xf8\xac\ \x30\xa0\xef\xd4\x36\x7f\x85\x57\xff\x5d\x28\xea\x8b\x2e\xa4\xaa\ \x04\x7c\xeb\xb1\x19\x6e\xa7\x02\x00\xe3\xe7\x3a\x8f\xcb\x0f\x1f\ \x3e\x6c\x9f\x3d\xf0\xb8\xb3\x8d\xc5\xee\x54\x4c\x62\x2e\x5f\xf3\ \xfa\xae\x06\xcf\xba\x01\x7f\xf6\xc3\x13\xbc\x39\x96\x39\x73\xe6\ \x40\xea\x04\x3c\x07\xb2\xf5\xc2\xe3\xdb\x0f\xd9\x7d\xbb\x96\x5f\ \x07\x34\x63\xd8\xfe\xe7\xc0\xd2\xab\x9e\x92\xbc\x73\x79\x8c\xb1\ \xf8\x9c\x52\x08\x65\xc6\xe0\x70\x30\x10\x37\x88\x8b\xe3\x3b\x70\ \x76\xca\x65\xfe\x5d\x08\x61\x8c\xb9\x78\x5d\x61\xb3\xfb\xd9\x65\ \x68\x6b\xe8\x89\x9c\x20\x2d\x50\x99\x5b\x83\xf9\x59\x48\x48\x8d\ \xc5\xe8\x9c\x54\x8c\x56\xa5\x22\x21\x35\x0e\x13\xf3\xcd\x33\x38\ \x1c\xaf\xac\xc3\x53\xdf\x33\xcf\x81\xe4\x38\x45\xec\x0d\x93\x1e\ \xc6\xbc\x09\xb7\xe3\x9b\x6f\xbe\xc1\x15\x57\x98\x4b\xd4\xeb\x74\ \x3a\xa8\x54\xaa\x88\xda\xb4\xa7\xbf\xc3\xf6\xfa\x62\x57\xad\xed\ \xf5\xe9\x96\xfd\x00\x80\x23\x8d\xff\x0c\x76\xd3\x9b\x35\x6a\x6d\ \xa1\x47\xc7\xe2\x63\xae\xaa\x78\xfe\xa7\x8c\xd6\x63\xa3\x80\x70\ \x28\x2c\x9f\xb0\x16\x97\xea\x3b\x6c\xce\xb5\x22\xaf\x82\x37\x36\ \x8c\x89\x31\xcf\x3a\x64\x9d\x2e\xce\xf5\xbd\x2b\x4c\xa6\xec\xf5\ \xa7\x5a\xae\x31\x96\x60\x13\xa0\x1d\x1d\x91\xad\xcc\xbf\xa9\xce\ \x5c\x1a\xbc\xbe\x70\x09\xef\x6c\xa3\xd7\xeb\xa1\xd7\xeb\x6d\xd3\ \x20\xb7\xb4\xb4\xa0\xa5\xa5\x05\x8d\x8d\x8d\x1e\xff\x7a\x3b\x8c\ \x21\xc7\x5b\x0a\x87\x85\xeb\xf8\xe8\x30\x6b\xf7\xff\x80\x91\x6a\ \xb5\x5c\x6e\x47\x6a\x6a\x72\x64\x63\xf9\x05\x2a\xaf\x13\x57\xb2\ \x31\x65\x33\x57\xdc\x7a\xeb\xad\xac\x6f\xd3\x51\xb1\xa4\xd1\x53\ \xe1\xf5\x7c\xf3\xbc\x48\xd6\x3f\x16\x79\x69\xcf\xdd\xbc\xfc\xc9\ \x46\xa3\x11\x7a\xbd\x1e\x7d\x7d\x7d\xe6\xc9\x4a\xc3\xd0\x4a\xe4\ \xfd\x84\xed\xc9\x31\xa3\xd9\xdd\x60\xac\xa5\x1c\x42\xce\x02\xa0\ \xbe\x8a\xd5\x4d\x1f\xaf\xac\x03\x00\x3c\xb7\x68\xb7\xdb\x67\x6c\ \x4c\x05\xee\x0b\x6b\xbc\x64\x9d\x4d\x5b\x2e\x97\xdb\xa6\x8c\x02\ \x80\xc1\xc1\x41\xb4\xb4\xb4\x00\x08\x6e\x4a\xf1\x40\x51\xf0\x3d\ \xbd\x70\xcf\xec\x4d\xec\x6e\xb0\xb0\x92\xb3\x63\xb5\xb6\x0e\xb3\ \xb2\xb2\x78\x67\xc7\xe8\xe8\xe8\xb0\x1d\x57\x51\x45\xde\x6a\xde\ \x2b\x16\x53\x22\xdd\x2a\xb4\x92\x31\x25\x16\xe5\xe5\xe5\xa8\xaf\ \xaf\xe7\x8d\x6d\x5c\xa7\x27\x34\x1a\x8d\x50\x28\x38\x3d\xf5\xaf\ \xf2\xd6\xb1\x7a\xba\x93\xd1\xdb\x95\x8c\x87\x7e\xb0\x1e\xf2\x6f\ \xcc\xd3\x39\x17\x2c\xcb\xc3\x8f\x9e\xb9\x9a\x77\xc7\xba\x7d\xdd\ \x7e\xfc\xa5\xd8\x3c\x9f\x7c\xf3\x13\x93\x51\x36\x72\x3c\x30\x72\ \xba\xed\x73\x55\x7b\x93\xe5\xff\x45\xdb\xeb\x48\x72\xc3\x0d\x37\ \x20\x3e\x3e\x9e\xdb\x5b\x61\x51\x45\x5e\x01\x1f\x4e\xce\xb1\xaf\ \xe6\x21\x31\x2e\x0e\x3b\x5f\xf9\xa3\x6d\xb2\x77\x00\xc0\x4f\x3c\ \xaf\xff\xd7\xa2\xdd\x38\xfe\x19\xfb\xaa\xd0\x95\x9b\x0e\x63\xa2\ \x39\x5e\x69\x9d\x65\xbe\x75\xb4\x59\xff\xe7\x7b\xb9\x95\x5c\x35\ \x16\xf8\xe2\x1e\xaf\xdb\xac\x4f\x33\x27\x53\xab\xe0\x7d\x84\x55\ \xca\x40\x0f\x56\xef\xdd\x12\x16\x5b\x7f\xf1\xc5\x17\xb6\x5c\x56\ \x20\x93\xd5\x07\x1a\x63\x95\x46\xd2\xa1\x1a\xcf\xe5\xa0\xa5\x39\ \xd3\x69\x92\x44\xd7\xdb\x9a\x93\xa3\x59\x63\x2f\x8d\x3d\x89\x57\ \xb8\xbe\xcc\x36\xeb\xa4\xa7\x75\x01\x60\xf2\x25\x76\x5a\x80\x05\ \x29\xb1\x00\x80\x09\xb2\x4e\x5c\x37\x72\x0c\x00\x20\x53\x29\x47\ \xa6\xde\xde\xf7\x6a\xe6\xe8\xf4\xa0\xb6\xfd\xf5\x8c\x87\xb1\xa2\ \xd1\x80\xf6\x0b\xe7\x50\x78\x78\x07\x27\xf6\x6e\x6b\x6b\xc3\xbc\ \x79\xf3\x90\x9a\xea\xbb\xa6\x9b\xc9\x38\x0c\xb9\x22\x2a\x24\xc7\ \x5a\x10\x49\x95\x02\xe0\x7d\xe6\x4d\x1f\x8e\x56\xb8\xbe\x0c\x00\ \x50\xbe\x64\x3b\xf6\x3e\x32\x0e\xc8\x1d\xf6\x1c\x6b\x59\xba\xb4\ \x0c\x5d\xc3\x76\xfb\xc4\xb5\xd3\x5f\x6c\xc8\x5b\x9c\x35\x6a\x04\ \x8e\x8c\x02\x64\xbd\x06\x4e\xed\x3e\x38\x38\xe8\x77\x9d\x21\x16\ \x1c\x2b\x62\x4e\x35\x69\xec\x38\x94\x3f\x55\x16\xd0\xf7\xae\x7d\ \xd8\x9e\x2b\x72\x9b\x1b\xd7\x91\x1a\x15\x30\xc8\x9f\x00\x9a\x29\ \x13\x0f\x35\x9a\x27\x4a\xbe\xa6\x84\x93\xed\xeb\xf5\x7a\x9c\x3f\ \x7f\x1e\xbd\xbd\x66\x85\xf5\xf6\xec\xd2\x34\x38\x8c\xe8\x10\xae\ \x15\x45\x24\x1c\x0a\x00\x76\xbe\xb2\x11\x89\x71\xf1\x41\x39\xd5\ \xde\x95\x9b\x00\x79\x0a\x30\xdd\x83\x53\xdd\x1f\xe3\x98\xdd\x31\ \x2b\xc1\xad\x1f\xe3\xeb\x19\xfe\xb7\x5f\xdf\x78\xd6\x6d\x59\x87\ \xd2\xf7\x64\xa8\x1d\xd1\xc9\x58\x90\x12\xe3\xf5\xf3\xaa\x4e\xbd\ \x7d\x5d\xd3\x10\xaa\x1d\xd4\xc8\xf1\xb3\xca\xce\x01\x2f\xbf\x01\ \xc0\x6d\x8f\x03\xb7\xfc\x96\x15\xfb\xef\xde\xbd\x1b\x5b\xb6\x6c\ \x41\x6c\x6c\xac\xc7\x16\xa3\xcd\xb1\x4c\xa1\x29\x7c\xd4\x03\x9b\ \xa7\x57\x86\xeb\x76\xc8\xf4\xd6\xe7\x96\x7a\x7a\xa9\x04\x67\x1a\ \xce\xfb\x57\x29\x9f\x4e\xc6\x43\x94\x96\xdf\xa1\x1c\x02\xa2\x87\ \xcd\xcf\x41\x94\x43\x3e\xbf\x52\xb9\x60\x4f\xc0\xbb\x49\x4d\x4d\ \x45\x7e\xbe\xb9\xe1\x70\xe6\xcc\x19\x9c\x39\x73\x06\x19\x19\x19\ \x5e\xd7\x5f\xbf\xef\x2e\x00\x08\x69\x82\x6d\x05\x80\xd5\xe0\xf8\ \xe1\x73\x73\x43\x36\x9a\x1b\xc7\x22\x73\x44\x3a\xfe\x51\xf6\xfb\ \xe0\x55\x0a\xf0\xee\x54\xcd\xbf\x02\x46\xbf\xe0\xbc\xec\x75\x3d\ \xeb\x8f\x6d\x22\xcd\x84\xaa\xe5\x28\x47\xa1\xcf\x75\x72\x72\x72\ \x50\x58\x58\x18\xd1\xe3\x54\x68\xd4\xda\xea\xa2\x8a\x3c\xde\xa9\ \xd4\x17\xc7\x8e\xe0\xe9\x37\x36\x22\x51\x69\xc0\xce\xc2\x77\x7c\ \xaa\x54\xd7\x57\xf1\xf8\xe8\xe2\x5e\x2c\xfb\x21\x08\x00\xf5\xf5\ \xf5\x28\x2b\x2b\x8b\xa8\xa3\x71\x1a\x63\x05\xeb\x54\x4c\x55\x2a\ \xf7\xb6\xb5\x96\x57\x2f\xa0\xf6\xe3\xd9\x92\x70\x9a\x9c\x9c\x1c\ \x94\x14\x06\x1f\xd8\xb7\xb5\xb5\x09\xd7\xb1\xfa\xfb\xe2\x51\xab\ \x9d\x81\x4d\x4f\x96\x22\x37\x7b\x7c\xc0\x4e\x35\x6b\x4c\x13\x36\ \xdc\xba\xc3\xa3\x43\xd9\x9d\xc9\xce\xbc\xa4\x6f\xcc\xb7\xbc\x12\ \xf1\x0f\xd2\x6e\xb8\xd4\x85\xb1\x21\x7c\xff\xd3\x9a\x75\xd0\xd6\ \x1f\x40\x7c\x0a\xa7\x9a\x72\xbd\xad\x07\x29\x5b\x0f\xa2\xbd\xa9\ \xd4\xcf\x0f\x9e\xc6\xbb\x83\xb1\xe6\xa6\x74\x80\x2a\xe5\xc9\x99\ \xbc\x71\x64\xd6\xb3\x48\x92\x0f\xd8\x9d\x4c\x64\x31\x56\xee\xa1\ \x35\xa8\xfd\xb8\x38\xe8\xef\xbf\xf8\xe1\x2f\x50\x73\xe1\x60\x48\ \x81\xb9\x3f\x34\x6a\x6d\x14\xab\x5b\xf7\xe6\x54\xb2\x7d\xe7\x60\ \x4d\x20\x96\x9d\xeb\x44\xc9\xf8\x14\x37\xa7\x5a\xf5\x9d\x03\x58\ \xfa\xad\x13\xc0\xf4\x76\x40\xee\x9c\x15\x3e\xf2\xee\xbd\x01\x1c\ \xc5\xbd\xe8\x06\x80\xee\x6e\xf3\xdb\xe2\x2e\x1c\x3a\x71\x11\x87\ \x4f\x36\x5a\xfe\x5f\x14\x8c\x13\x15\xdf\x39\x17\x8b\xae\xb2\x27\ \x7c\xff\xf6\xef\x13\x00\x4e\x86\xb4\xcd\x9a\x0b\x07\xc3\x7e\x2b\ \xfc\x11\x80\x8f\x42\x71\xaa\xa5\x05\x8b\xb0\x6a\xc9\x9d\xb6\x65\ \xdd\xdd\xdd\x48\x4a\x4a\xf2\xaa\x52\x0f\xbd\xf6\x32\xaa\xcf\x9c\ \xf2\xdf\xe2\x0b\x91\xb9\xd3\xb3\x30\x77\x7a\x16\xee\x8b\x70\xaf\ \x61\x7f\x0e\xfe\xd8\x5d\x57\x61\xe1\x5c\xef\xa1\xc3\xcf\x6f\x9c\ \x8e\x77\xfe\x7d\x92\xd7\x17\x83\xb5\xdf\xbb\xeb\x60\x8a\x80\xcf\ \xec\x69\xed\x0c\x0c\xf4\xc5\x07\x15\xa0\x6f\xbc\x6d\x07\xf2\xb3\ \x9a\x80\x29\x75\x80\x52\xe5\xbe\xd2\xc5\xd5\x40\xcb\x6b\xe8\x56\ \x75\x41\x0a\x34\x37\xf9\x0f\xac\x6f\x2e\xde\x8a\xdf\xff\x4a\x89\ \x93\x0d\x07\x42\x52\x22\xae\x6e\x85\x1e\x1d\x2b\x50\xe7\x0a\xa5\ \xd5\xe7\x57\xa5\x1c\x86\xad\xe7\x3e\xb3\xc6\xed\xe3\xa4\xc4\x41\ \xdc\x78\xcd\x78\xdc\x70\xd5\x1c\xcc\x9d\x9e\x25\x7a\xc7\xba\xb9\ \x78\x2b\x62\x62\xbb\x31\xe7\xbb\xef\x86\xc5\x41\x42\x71\xaa\x90\ \x5b\x85\x13\xa7\x9e\xc4\xd9\x9a\x69\xb8\xf6\xe1\xbb\x6d\x5d\x5e\ \x18\xa7\x11\x46\x95\x00\xa3\x4b\x7d\x3a\x14\x00\xb4\x0c\x28\x30\ \xff\xfb\xaf\x63\xc3\x2f\xef\x82\xac\xed\x31\xcf\xaa\x79\xfa\xb4\ \xd3\xfb\xaf\x6a\x5a\x50\x55\xdd\x8c\x43\x35\x2d\x21\x19\x6a\xce\ \xb4\x2c\xdc\x75\xf3\xb7\x70\xfd\x5c\x55\xf8\x9d\xac\xad\x0f\x85\ \x2f\xec\xc0\xc2\x79\x57\xe0\x4f\xbf\xba\x1d\xb5\x1f\x17\xc3\x74\ \xb4\x09\x3d\x73\x87\xf1\xc8\x9a\xf7\x78\xe5\x50\x0e\xa1\x94\x0d\ \x56\x47\x42\xf7\x74\x27\xe3\x6c\xcd\x34\x7b\x0b\xe4\xde\x87\xf0\ \xf4\x1b\x1b\xed\x41\xbc\xcc\x08\xd5\x84\x2f\x51\xf1\x7d\xcb\x40\ \xc9\x9c\x8f\x80\xe4\xc5\x6e\x4e\xf5\xab\x83\xe3\x71\xae\xdb\xfe\ \x38\xc6\x9b\x53\x25\x25\x25\x85\xcd\x6a\x17\x2f\x5e\x46\x6f\x4f\ \x9f\xc7\xcf\x2e\xf5\x0e\xe3\xd0\x89\x8b\x38\x70\xfc\x3c\x0e\xfe\ \xef\x42\x00\xb1\xdf\x18\xcc\x99\x96\x89\x82\xb9\x2a\x4c\xc9\x49\ \xc7\x75\xf7\x6c\x46\x4f\x9f\x01\xcf\xde\x53\x80\xc2\xdb\x7d\xe7\ \xe5\x3a\xa3\x4b\xb1\x6a\xed\x7b\x5c\xa7\x0d\x82\x52\x2b\xaf\x8e\ \xc5\x66\xfa\xc1\x1f\x4b\xb3\x9b\xb0\xe5\x42\xa6\xf7\xe6\xf1\x8a\ \xa5\x4e\x4e\x15\x4e\x67\xf2\xe7\x60\x7c\xe8\x0e\xdd\x19\x5d\x8a\ \xd5\xeb\xde\x47\x5c\x92\x9c\x37\x4e\xe5\xcf\xb1\x52\x01\xb4\x47\ \xd2\x68\x56\xa7\x8a\xb4\x33\xb9\x29\x54\x73\x2b\x46\x05\xd9\x99\ \x8f\x4b\x07\x7b\x7e\xed\x87\x18\x4c\x31\x45\xdc\xa9\x7c\x3a\x96\ \xc5\xb9\x0a\x01\x6c\x8a\x94\xb1\x02\x29\xb4\x36\x10\x37\x88\x7d\ \x8b\x6a\x71\x76\xea\x25\x9c\x9d\x72\x99\x35\xc7\x66\xca\xbe\x85\ \xb5\x18\x73\x3e\x15\x13\x4e\x65\x44\xdc\xc9\x9e\x7e\x73\x4b\x44\ \x9d\xca\xaf\x63\xf1\xc1\xb9\x08\x7e\xe2\xaf\xa2\x1f\xd3\x1a\xa4\ \x2a\x00\x75\x64\x4e\x82\x89\x53\x31\x76\xac\x70\x07\xf4\x84\xb0\ \x9d\x0a\x08\xb0\xce\x3b\x9f\xe6\x1c\x26\xf8\xeb\x54\x01\x3b\x16\ \x39\x97\x64\x79\x34\xd0\xf3\x1e\xd2\x24\x4d\x74\x6b\x24\x95\x62\ \x4d\xb1\x48\xbd\x24\xc3\xd1\x88\xcc\xfe\x45\xea\x45\x2a\x15\x16\ \xc7\xb2\x38\x57\x21\x28\xe7\x25\x69\x87\xe2\xc4\xb1\x1c\x1c\xac\ \x1a\xc0\x4c\x3a\x55\x82\x21\x4d\xa3\xd6\x76\xb0\xb9\x41\xae\x67\ \xb1\x27\x07\x93\x98\x43\x85\xc5\xb1\xe8\x16\x29\xfe\x5b\x5e\x44\ \x1d\x8b\x82\x7c\xe9\x38\x54\xc4\x1c\xcb\xc1\xc1\xca\x01\x2c\xa3\ \xd3\x2d\xdc\xdb\x1d\x2f\x1d\x8b\x54\x8c\x53\x1e\xd5\xa8\xb5\x11\ \xad\xdb\xcf\x0b\xc7\xa2\x80\x9f\x15\x66\x69\xd4\xda\x6a\xbe\x1c\ \x0c\xef\x1c\x8b\xd4\x8c\x9f\x31\x93\xe8\x1c\x8b\x1c\x4d\x18\x8e\ \x24\x78\xc7\xf2\xe0\x68\x85\x10\x61\x2a\x43\xe8\xcf\x61\x05\xef\ \x58\x22\x70\xb8\x09\x1a\xb5\x56\x27\x36\xfb\x8b\xd6\xb1\x18\x3a\ \xdf\x6a\x70\x37\x45\x71\x3d\x80\x42\x8d\x5a\x5b\x29\x45\xdb\x4a\ \xda\xb1\xfc\xa8\x5d\x01\x00\x15\xbc\xd7\x67\xad\x02\x50\x09\xa0\ \x52\xaa\xce\x43\x8e\x15\xb9\xdb\x64\x27\x80\xc5\x52\x74\x3c\xd1\ \x3b\x16\x1f\x06\xde\xba\x70\x54\xa3\xd6\xe6\x93\x63\x09\xd3\x99\ \x84\x94\x64\x2d\xd3\xa8\xb5\xa5\xe4\x58\xfc\x75\xa6\x0e\x00\x29\ \x02\xff\x19\x4e\x33\xc1\x93\x63\x45\xce\x99\xd6\x41\xbc\x53\x0e\ \x0b\x3a\x0d\x21\x48\xc7\x92\x58\xf6\xbd\x5e\xa3\xd6\xaa\xc8\xb1\ \xc8\xa1\x38\x83\x1e\xe9\x90\x43\x49\xde\xc1\x78\xed\x58\xe4\x50\ \xc2\x75\x30\x5e\x3a\x16\x39\x54\x40\x54\x69\xd4\xda\x02\x72\x2c\ \xe9\xb6\xf2\xb8\x26\x22\x5d\x90\x79\xef\x58\xa4\x52\xe2\xba\x3d\ \x46\xdc\xb1\x8a\x2a\xf2\x2a\x11\xc1\x79\xa9\x45\x4a\xc4\x73\x60\ \x11\x75\x2c\x52\x29\xf1\xaa\x57\x44\x1c\xab\xa8\x22\x2f\x1f\x1c\ \xcf\xea\x4a\x44\xd6\xb9\x22\x31\x60\x55\x0c\xcf\xf4\x84\x46\xd8\ \x47\xf0\x84\xd5\xb1\xe8\xd6\x17\x51\x3a\x35\x6a\x6d\xaa\xe8\x1c\ \x8b\x9c\x4a\x5a\xb7\x46\x19\x39\x95\xb4\x08\xd7\xb9\xe0\xba\x8c\ \x11\xdf\x7a\x6f\x12\x61\x52\x2e\x19\x39\x15\x29\x97\x60\x1c\xcb\ \x92\x4e\x20\xa7\x92\xb0\x73\xb1\x7e\x2b\x24\xa5\xa2\xdb\x22\x57\ \x8a\x45\x4e\x45\xca\xc5\xae\x63\x51\xeb\x8f\x9c\x8b\x75\xc7\x22\ \xa7\x22\xe7\x62\xdd\xb1\xc8\xa9\x44\xe5\x5c\x1d\xbc\x70\x2c\x72\ \x2a\xd1\x91\x62\x29\x96\x12\x39\xc7\xb2\xf4\xf8\x24\xc4\xc7\xab\ \x11\x75\x2c\x50\x37\x62\x8a\xb7\xd8\x76\x2c\xba\x05\x92\x73\xb1\ \xee\x58\xe4\x54\x92\x72\xae\xd5\x61\x71\x2c\xcb\xe3\x1a\x82\xe2\ \x2d\xd6\x15\x8b\xba\x14\xd3\x2d\x91\x5d\xc7\xa2\x5b\xa0\xa4\x9d\ \x6b\x71\x38\x5b\x85\x84\x74\xf8\x88\x13\xc7\x22\xb5\x22\x02\xf1\ \x01\x19\xc3\x0d\x96\x92\x59\x89\x40\x60\xd4\x1f\x4b\xaa\x6a\x35\ \xf1\x54\x86\xf3\xfb\x9a\x51\x7e\xd7\x01\x80\xb3\x53\x2e\x63\xf7\ \xed\x5a\xd1\xda\x85\x49\xff\x2d\x05\x03\xa7\xd2\xf1\xe5\x07\xcd\ \xd9\xa7\xc2\x4f\xde\xba\x2a\xec\xfb\x8d\x79\xae\xc0\xfc\xc2\x53\ \xb9\x5c\x0f\xcb\xce\x1e\xd5\x20\xad\x25\x01\xed\x23\x7b\x25\xab\ \x58\x0a\x06\xeb\xe4\xf0\xe5\x60\x23\xe1\x54\x29\x83\x81\x47\x01\ \xbb\x2b\x1e\x14\x7d\xac\xe5\x4f\xb5\x64\x42\x51\x2b\x42\x58\xf8\ \x0b\xde\x73\xc8\x44\xee\x5c\xba\x74\x09\xad\x27\x1e\x06\x8e\x47\ \x99\xff\xa8\x85\xc8\xdc\xb1\x2c\x73\x36\x13\x1e\x18\x35\x6a\x14\ \xd2\xa7\x6f\x20\x43\x04\xa9\x58\x34\x11\x38\x11\xb4\x6a\xc9\xbc\ \x7c\x41\x45\x66\x33\xd3\xb7\xe4\x7d\xef\x1f\xce\x18\x36\xff\x11\ \x8c\x15\xab\x8e\x8f\x07\x5b\x37\xe5\x72\xd8\xf7\x39\xf8\xcf\x1a\ \xf2\x12\xdf\xaa\x55\x19\x4c\xf0\xce\x2b\xfe\xf2\x44\x25\xef\x8f\ \xd1\x58\xa5\xc3\xc4\x53\x19\x58\xb8\x3d\x4f\x2a\xbe\xe5\xb1\xcc\ \xa7\x82\x52\x0c\xfe\xe9\x8c\x2e\x0d\x48\x55\xe7\xa4\xab\xd0\x3e\ \xb2\x4f\xd2\x36\x53\x88\x29\xc5\x70\xc2\xf2\x78\xea\xa4\x25\xec\ \x39\x01\xe7\xf7\x5c\x91\xf1\xc8\x7e\xc4\xcf\x6e\x94\x74\x10\xef\ \x9a\x30\x55\xf0\xf5\x60\x2f\xaf\x9f\x8f\xbe\x23\x63\xdc\x96\xdf\ \x85\xa1\xb0\x1d\xc3\x8c\x05\xe6\x36\xcc\x8c\x82\x09\x00\x80\x2b\ \x5d\xde\x03\xc0\x2d\xb2\xe7\x71\x79\xfd\x7c\xc8\xe2\x06\x31\xee\ \x4f\xff\xb4\x2d\x7f\x6e\xd1\x6e\x00\xc0\xf9\xf3\xe7\x71\xe9\xd2\ \x25\xa4\xa7\xa7\x43\xa5\x8a\x7c\x9b\xa8\xa7\xdf\x3c\x6c\x70\x68\ \xd8\x84\xe6\xee\xb3\xb6\xe5\xa7\x5b\xf6\xa3\x6f\xb0\x03\x35\x97\ \x3f\x67\x5f\xb1\xd8\x1a\xac\xc8\x96\x0a\x14\xcf\xff\x94\xd1\xba\ \x93\x72\x23\x27\xb2\x9f\x0c\xfd\x1a\x77\xa4\xfd\x0e\xbd\x9d\xee\ \x9f\x0d\x0c\x0c\x40\x2e\x97\x23\x2b\x2b\x0b\x00\xd0\xd8\xd8\x88\ \x98\x98\x18\x28\x95\x4a\xc4\xc4\xc4\x00\x00\x94\x4a\x65\x58\x8f\ \x37\x31\xce\x5e\x2d\x32\x39\x3e\xdd\xf6\x3a\x77\xb4\xf9\x71\xd9\ \x6f\x76\x2d\x64\x65\x3f\x4e\xbd\x1b\xf8\xd6\x8b\x81\xa9\x63\x29\ \x14\x0a\xa8\x26\x8c\x8d\xe8\xb1\xde\x22\x7b\xde\x1c\x47\x94\x6f\ \x05\x00\xac\xc8\xab\xe0\x85\x0d\xe5\x72\x39\x14\x0a\x05\x14\x0a\ \x05\x64\x32\x99\x5f\x87\x7e\xfb\xe0\x93\xd0\x75\x1e\x0e\x6a\x5f\ \x8e\xb7\x43\xde\xde\x0a\x01\xa0\x52\xf7\x17\x14\xa8\x56\xfa\x6f\ \x89\x19\x8d\xd4\xc2\xf0\x82\xc9\x64\x82\xc9\x64\x82\x5e\xaf\x07\ \x00\x74\x77\x77\xfb\x5c\x7f\x6a\xd2\x0d\x41\x3b\x96\xc7\x74\x03\ \x1f\x3b\xf3\x1d\xb9\xb8\x4d\x30\x27\xf0\xa5\xff\x2e\x17\x8d\x33\ \x0e\x0e\x84\x1e\xc7\x3a\x2a\x56\x09\x5d\xdf\x21\x04\xfa\x0e\x01\ \xbd\x27\xfe\xf5\xaf\x7f\xf1\xe2\x38\xd3\xd3\xd3\xdd\x5e\x4f\x9e\ \x3c\x99\xad\xd6\xe1\x3a\x8d\x5a\xbb\xda\x49\xb1\x08\x76\x18\xa8\ \xc9\xe0\xf5\xf1\xb5\xb6\xb6\xda\xfe\x4e\x9f\x3e\x8d\xd3\xa7\x4f\ \xbb\xdf\x3e\x07\x83\x0e\xb5\x57\xb9\xdd\x0a\x85\x8e\x5e\x6f\x08\ \x68\xfd\xee\xee\x6e\x74\x77\x77\xc3\x60\x30\x48\xca\xb1\xc2\x85\ \xc2\x22\x61\xab\x85\xfe\x43\x7a\x7b\xfa\x10\x13\xc3\xa0\xe9\x5e\ \x66\x6e\xb8\x24\x01\x40\x09\xfb\x8d\x60\x7d\xcd\x48\x5e\xd9\xc5\ \x68\x34\xda\x02\xf8\xa1\xa1\x21\x24\x26\x26\x32\x08\xf8\x87\xd9\ \x71\x2c\xb0\x50\xb6\x46\x90\xe8\x2a\x01\x55\x01\xab\x9b\x1c\x9f\ \x36\x03\x8f\x2d\x7a\x12\x72\xc4\x38\x2d\x5f\xb9\x72\x25\x2f\x7e\ \xf2\x9a\x35\x6b\x90\x94\x94\xc4\xd9\xf6\x8b\x2a\xf2\x0a\x34\x6a\ \x6d\xa5\x42\x2c\x3e\x22\x93\x07\x71\x57\xef\xd0\xb1\x7e\x1c\x53\ \xe7\x67\xbb\x39\x55\x38\x50\x2a\x95\x90\xcb\xe5\x90\xcb\xe5\xb6\ \x24\xac\x23\xed\xed\xed\x18\x18\x18\xf0\xbb\x9d\xb1\x29\xd3\x42\ \x3d\x94\x3d\x00\xa2\x44\xe3\x58\xa9\xa9\xc9\xcc\x56\x74\xbc\xfd\ \x55\x96\xb2\x7e\x1c\x79\xd7\xe5\x20\x36\x36\x16\x0a\x85\x02\xd1\ \xd1\xd1\x90\xc9\x64\x61\xcf\xae\x7b\x22\x2d\x2d\x2d\xfc\x31\x96\ \x64\x29\x60\xdf\xb1\xae\xfd\xe1\x4c\x8a\xdc\xf9\xde\x2a\xcc\xcb\ \x58\x44\x67\x28\x04\x9a\x9a\x9a\x22\xd7\x2a\xe4\xf3\xf0\xf9\x1b\ \x27\x3d\x2a\x98\x93\xf8\xd0\x2c\x0d\x00\xa0\xbc\xbc\x1c\xf5\xf5\ \xf5\xbc\x39\xae\x92\x92\xc8\xe4\xbd\x15\xe0\x71\xc6\x7d\xa0\x4f\ \x8f\xd8\x78\xff\x81\x70\x5c\x5c\x6c\xc4\x8f\xb5\xee\xa8\x59\x1d\ \xf8\xe4\x54\x9e\x58\xb8\x70\x21\x32\x32\x32\xc2\xe2\x58\xbc\xc3\ \x64\x92\xa3\xa5\x29\x0b\x8f\x55\x3f\x07\xc5\xba\x29\xb6\xe5\x2f\ \x1d\xfa\x05\xe2\x92\xdc\x03\xe1\xb1\xd9\xa3\x23\x7a\xbc\xd6\x9e\ \x0d\x89\x4f\x8d\x45\xe5\xc4\x2c\xe8\xd2\x32\x6d\x9f\x65\x76\xb7\ \x21\xd6\x68\x80\xaa\xfd\xa2\xed\xb5\xd8\x29\xaa\xc8\x2b\xe5\x8d\ \x63\x1d\xfb\x6a\x9e\xb3\x0a\x29\x63\x70\xe3\xec\xab\x31\xf5\x33\ \x15\xa6\x66\xab\xd0\xdf\x65\xc0\x53\x73\xdf\x76\x5a\xe7\x0f\x47\ \x97\x21\x3a\x36\xf0\x9f\x70\xbc\xd2\x3c\x56\xe4\x58\x95\xce\xe9\ \xfd\xf1\xaa\xe0\xd3\x0f\xbb\x76\xaa\x61\x4c\x70\x77\xfa\x7a\x8b\ \x93\x55\xc1\x73\x85\xcd\x92\xdd\x9b\xc4\xe8\x5b\xab\x79\xe1\x58\ \xda\x23\x73\x01\x00\x7b\x37\xbc\x05\xa3\xd1\x08\x5d\x5d\x83\xfb\ \xed\x2e\x59\x89\xd7\x4e\xad\x00\x00\xb3\x93\x5d\xf5\x36\x1e\x9f\ \xb9\x99\xf5\x63\x69\x9b\x65\xee\x94\xd7\x6a\xf9\xdf\x9d\x9b\x8e\ \xc1\x44\xb3\xc3\xb4\xe5\x67\xb1\xbe\xbf\xb2\x85\xcb\xc3\xea\x60\ \xfb\xf7\xef\x47\x72\xb2\x3d\x35\x53\x50\x50\xc0\xc5\x6e\x52\x78\ \xe1\x58\x26\x93\x1c\x3b\x5f\xd9\x68\xbe\x37\x2b\x14\x98\x94\x9b\ \xe3\xd5\xc1\x5c\x9d\xcc\xca\xa4\x01\x95\xed\x75\xbf\x6c\x1e\x1a\ \x94\x7f\x77\xfa\xfc\x17\x0d\x27\x71\x20\x7a\x3a\x6f\x2f\xf1\x70\ \x3b\x98\xe8\x63\x2c\xeb\x2d\x30\x31\x2e\xde\xf9\xc0\x18\x38\x18\ \x00\x9c\xbb\xdc\x04\xfd\xc5\x9f\x63\xd2\x95\x33\xd1\x9f\xfd\x25\ \x1a\x2e\x34\xbb\xad\x73\xd2\x08\xd6\x9c\xaa\x20\x25\x16\xc9\x83\ \x8d\x98\x3f\x6a\x22\x32\xa3\xe5\x00\x80\xfc\x61\x7b\x46\x7b\xe6\ \xe8\xf4\xa0\xb7\xfd\xda\xe9\x06\x3c\xba\x70\x39\xa7\xce\x35\x7f\ \xfe\x7c\xf1\x07\xef\x56\xa7\xda\xbb\xe1\x2d\xef\x07\xe8\xc5\xc1\ \xfa\xf4\x03\x28\xfa\xf3\xcb\xe6\xef\xaf\x3c\x03\xe4\x0e\x23\x0e\ \xe6\xfe\xef\xf5\xba\x06\x0c\x0e\xda\x7b\x95\x7e\x6f\xe8\x5e\x0c\ \x5d\xf3\x1f\x16\x8f\xdc\xb5\x00\x5b\x02\x2b\x5b\x5d\x35\x79\x2c\ \x1e\xbd\x7c\x8e\x55\x1b\xeb\x74\x3a\xa7\x41\x1c\x6b\xd7\xae\x45\ \x6c\x6c\x2c\xe7\xe9\x88\x88\x39\x56\x7f\x9f\x59\xa1\xac\xb7\x40\ \xbf\x07\xea\xe0\x60\x05\x8f\xda\x1f\xe8\xee\x5d\xb9\xc9\x6d\x98\ \x7b\x8e\xca\xd2\xff\x5d\xa2\x95\x60\x7c\x51\x5c\x5c\x2c\x6e\xc5\ \xaa\xd5\xce\xf0\x78\x0b\xf4\xc7\x87\x5f\xec\x71\x76\xaa\xe9\x5e\ \x26\x74\xed\xda\x26\x49\xc7\xc9\xc9\xb1\x8f\x58\x8a\x8d\x8d\x75\ \x1b\x72\xf6\xc1\x07\x1f\x20\x21\xc1\xae\xb0\x85\x85\x85\xe2\x71\ \x2c\x26\xb7\x40\x6f\xac\xff\xf0\x3d\xb3\xd2\x15\xbe\x03\xc8\x53\ \x00\x79\xaa\xe7\x15\xeb\x7f\x24\x58\xe7\xe0\x32\x5b\x3e\x7f\xfe\ \x7c\x8c\x18\x31\x42\x7c\x8a\xd5\xdc\x90\x0d\x00\x78\xe6\xe7\x2b\ \x02\xfe\xee\xb5\x0f\xdf\x0d\x00\xc8\x4d\x6f\x43\xa2\xd2\x00\x4c\ \xd7\xdb\x3f\xbc\xdf\x35\x43\x6f\xcf\x29\xc9\x7e\x51\x1b\xc6\x61\ \xae\x2c\xf0\xd6\x4f\x80\xbb\xff\xc1\xc9\xa6\xc7\x8d\x1b\x27\xce\ \x5b\x61\x73\xa3\x39\xfe\xf9\xc1\xbc\x6b\x02\xfa\xde\x4d\x4f\xd8\ \xeb\x7a\x6e\x5a\xb2\xdd\xbd\x7c\xd0\xeb\x7a\xa0\xed\x1c\xf0\x4c\ \xae\xc7\x96\x1c\x13\xea\x1b\xcf\x3a\xbd\x37\xca\xe4\xe8\x51\xf8\ \xbe\x55\xcf\x1c\xe9\xfb\x24\x55\x75\xda\x9d\xbf\xb2\x6b\xc0\xe3\ \xf2\x0e\xe3\x10\xaa\x7b\x0d\x50\xc5\x28\xb0\xf6\xd0\x6f\x81\x93\ \x1f\x03\x07\x2d\x17\x4a\xb4\x1c\xd8\xc0\x5e\x1d\x08\x51\x06\xef\ \xc1\xde\x02\x7b\xfa\xfb\xd0\xd3\xdf\x6f\x8f\xab\x72\xbd\x4c\xe7\ \x33\x62\xbc\xd9\xc1\x5c\xd4\xab\xb2\x73\x00\xb2\x7d\xe7\x82\x34\ \x47\xbf\xef\xaf\x9c\xb2\x6f\x77\x41\xf3\x41\x67\x87\x6e\x3e\x60\ \xff\xac\xe9\x80\xad\x2c\x8b\xe3\x72\xbf\x0c\x9a\x6c\xbf\xa7\x2c\ \xeb\x99\x90\x6f\xad\xa2\x0b\xde\x6b\x8e\x9a\x1f\x69\x3c\xf2\xe3\ \x3b\x03\xfe\xee\x4d\x4f\x3c\x64\x77\x2a\x00\x88\xf5\x33\x01\xd9\ \xeb\x7a\xe0\xb7\xdf\x06\xce\x1f\x05\x00\x0c\xbd\x9d\xcb\xbf\xdb\ \x9d\xd2\xa2\xb8\x4a\xcb\x4d\x3a\xc6\xe5\xbd\x27\x07\x41\x29\x2a\ \x17\xec\x11\xc4\xdd\x3c\x2c\x8e\x65\x32\xc9\x61\x30\x0b\xcb\x9b\ \x73\x00\x00\x20\x00\x49\x44\x41\x54\x98\xaf\xba\x3b\xae\x0f\xac\ \x8f\x95\x35\xae\x7a\xb6\xe0\x0b\xf3\x02\xa6\x15\xf4\x9e\x3d\x68\ \x1b\x38\x11\x30\x06\x99\xcf\x13\x1c\x49\x42\x7d\x04\x23\xaa\x5b\ \xa1\xe3\xb3\xc0\x40\x78\x6d\xeb\x7b\xb6\xd7\x37\x4f\x3e\x13\xbe\ \xb2\x8c\x4a\xfe\x86\xfa\x65\x65\x65\x21\xb5\x2a\x45\x73\x2b\xb4\ \xc6\x55\x9b\x9e\x2c\x0d\xf8\xbb\x5b\x2a\x77\xd9\x6f\x81\xd9\x3e\ \x1e\x73\x1c\x8f\x92\x4c\x2d\xd0\x48\x75\xdc\x0b\x90\xaa\xb0\xc5\ \x58\xb9\xd9\xe3\x83\xba\x05\xda\xe2\xaa\xb4\x42\x2f\xc1\x9b\x0a\ \xb9\xcf\xac\x41\xed\xc7\x92\xf0\x2b\x46\x8a\xc5\x03\x67\xdc\xc6\ \xa9\x63\x05\xdb\x0a\xb4\x3a\xd5\xce\xc2\x77\x7c\xc7\x55\x06\x1d\ \x72\x7f\xf9\x08\xa4\xc4\xb2\x65\xa1\x57\x49\x37\x18\x0c\x9c\x8e\ \x1c\xd2\xa8\xb5\xeb\x14\x00\xca\xc0\x41\xf7\xe4\x60\xe3\xaa\x9e\ \x7e\x73\xce\xc6\x96\x04\xf5\xe2\x54\xb3\x7f\xfa\x47\x74\xf7\xea\ \x21\x35\xf8\x50\x15\x90\x51\x8c\xa5\x51\x6b\x4b\x8b\x2a\xf2\x58\ \x77\x2c\x93\x49\x8e\xcc\x11\x81\x77\x21\xb1\xa6\x16\x36\x2d\xd9\ \x0e\x8c\x5c\xe5\xf9\xb6\x7a\xdb\x5a\xa7\xf7\xb5\x0f\x9d\x97\x8c\ \x63\x05\x72\x2b\x8c\x64\x3c\xc6\xc9\xad\xd0\x7a\x0b\xfc\x47\xd9\ \xef\x43\x8b\xab\xb2\xd6\x39\x7d\x7e\xdb\x23\x6f\xa3\xa6\xce\x43\ \xad\xf7\x2f\xd7\x01\x03\x1d\xc0\xed\x2e\x01\xbe\xaa\xc0\x3c\x8c\ \x9e\x82\x77\x1b\x6f\x7e\xf5\x20\xa2\x63\x65\x88\x8e\xe1\x76\xe4\ \x1f\xeb\x5b\xff\xa6\x66\x9a\xc7\x5b\xa0\xbf\x4a\x72\xd6\xd4\x82\ \xcd\xa9\x5c\x6e\x81\xb9\xb7\xad\xf5\xec\x54\x00\x72\x0f\xad\xc1\ \xee\xca\x43\xee\x79\xab\xcc\x7c\xd1\x29\x96\xab\x5a\x07\x4a\x7c\ \x8a\x02\x09\x29\x0a\x24\xa4\xfa\xfe\xe3\x9d\x62\xf5\x76\x27\xe3\ \xbb\x57\xce\x72\x5b\x9e\x72\xac\x1d\x29\xf2\x4e\xb4\x5f\x9d\xed\ \x35\xb5\x70\xc7\x0c\xad\x9b\x53\xbd\xf0\x46\x25\x36\xff\xf3\x88\ \xdf\xfd\x3e\x70\xc6\xdc\xb5\xb7\xb6\x2c\x0a\x48\x55\x01\xab\xea\ \xcc\x4a\x46\xb8\x87\x29\x83\xc3\x88\xe6\x6e\xc4\xdc\x51\xd6\x1d\ \xcb\x7a\x0b\x7c\xf1\xde\x87\x9d\x65\xd1\xf2\x9c\xae\xd3\x34\x04\ \xd9\xbe\x73\x18\xba\x66\xbc\xc7\x5b\xe0\x23\xf3\x0f\x02\xb1\xce\ \x43\xd4\x99\x38\x95\xab\x7a\xd5\xce\x7d\x2c\xf8\xac\x3b\xc7\x1c\ \xec\xbe\xc2\xf6\xfa\x82\x61\x04\x1a\xf4\xf6\x9a\x0a\x07\xba\x27\ \x39\xad\x7b\xc0\xb2\xee\x8e\xb5\x4b\x00\x00\x37\x17\x6f\xe5\xbd\ \xd3\x6a\xd4\xda\x7c\x47\xc7\x9a\x05\xe0\xeb\x50\x36\x68\xed\x0e\ \xe3\x7a\x0b\x5c\x75\x54\xe7\x74\xc7\x75\x75\x2a\x6b\xaf\x05\xdb\ \x2d\x30\xb7\xda\xe9\xf3\x93\x1f\x3d\x82\xfe\xfe\xfe\x80\x8e\xa5\ \x1b\xf7\x3a\xbd\x3f\x74\xe2\x22\x0e\x9f\x6c\xb4\xfc\xbf\x28\x18\ \x65\xb1\x3a\x14\xdb\x0c\x0d\x71\x9f\x4c\x56\x58\xbc\xac\xba\xa8\ \x22\xb4\xb9\x5f\x9a\x1b\xc7\x22\x31\x2e\xce\x3d\x76\x9a\xa9\xc2\ \x6b\x0e\xaa\xe5\x9a\x5a\xe8\xe9\xef\xf7\x1a\x57\x99\x5b\x97\xa6\ \x90\x7f\xe4\xdc\xe9\x59\x98\x3b\x3d\x0b\xf7\x05\x79\x9e\x4e\xd5\ \xb7\xe2\x54\x7d\x2b\x4e\xeb\xcc\xff\xb9\x76\x4e\xae\x1c\xca\xca\ \x70\x18\x1e\x52\xb0\x72\x2b\xb4\xde\x02\x77\xbe\xf2\x47\xef\x57\ \xc9\x35\xe3\xdd\x9c\xeb\xa6\x27\x1e\xc2\x8b\x37\x7c\x66\x7e\xe3\ \xa5\x8b\xb1\xc9\xd0\x0a\x4b\xfd\xbd\x88\x31\x25\x27\x1d\x53\x72\ \xd2\x81\xeb\x82\xdf\x86\xa3\x6a\x9e\xaa\x6f\x45\x4f\x9f\x21\xec\ \x0e\x25\xa8\x74\x43\x4f\x77\xb2\xc5\xa9\xfc\x0f\x8a\x70\xbc\x0d\ \x5a\xe3\xaa\xef\xaa\xce\xf9\xec\x62\x6c\x8a\xb0\x53\xb1\x85\x3f\ \xd5\xec\x68\xef\x09\xb8\x8e\x2a\x0f\xf9\x91\x27\xc7\xba\x1e\xe6\ \x6a\x6c\x01\x71\xd6\x92\x5e\x08\x64\x50\xc4\x17\xc7\x8e\x38\xc7\ \x55\xd3\xbd\xcc\xb4\x72\x3c\x0a\x50\x75\x51\x33\xce\x81\xb4\x94\ \x28\xbc\xf8\xe1\x2f\xdc\x96\xd7\x5c\x38\xc8\x87\xc0\x7d\x9b\x9b\ \x63\x69\xd4\xda\xca\x40\xe3\xac\x60\x9f\x05\x3e\xfd\xc6\x46\x9f\ \x71\x95\xcd\xa9\x24\x44\x4b\x77\x03\x92\x94\xde\xbb\xb3\xf4\xf6\ \x0f\x02\x00\xba\x7a\xf5\xf8\xe6\xf2\x21\x28\xe3\x9c\x53\x90\x9e\ \x72\x4f\x26\xa3\xd9\xb6\xc3\x43\xc3\x18\x1e\xb2\xa7\x1a\x78\x7d\ \x2b\x34\x99\xcc\xa3\x80\x03\xed\x11\x7a\xed\xc3\x77\x63\xe3\x6d\ \x3b\x2c\x2d\x40\x2f\x0d\xd1\x5a\x7b\x62\x73\xf6\x5d\x6f\x78\x5c\ \x65\xc2\x38\xe0\xf6\x05\x53\xa0\xfe\xc1\x75\xa2\x77\xba\xdf\xbf\ \xf3\x25\xfe\x7b\xb8\x01\xdf\x59\xf4\x67\x00\xc0\xa0\x1e\x18\xd4\ \x0f\x21\x3e\x45\x81\x28\x1f\xd7\x9f\x5c\x61\xfd\xd0\xbe\x12\x87\ \xf9\xab\x7a\x5f\x8e\xb5\x19\x0c\x27\x19\xb7\x3e\x64\xfe\xfc\xd8\ \x11\xc6\xbd\x42\xad\xb7\xc0\xfc\x2c\x4b\xa5\x39\x4f\x5d\x8c\x0d\ \x3a\x60\xe0\xa8\xdd\xc7\x7e\xf7\x18\x1e\xf8\xdb\x72\xec\x3e\xf1\ \x2d\xa7\xd5\xea\xce\x03\xeb\xfe\x76\x0a\xeb\xfe\x76\x8a\xd1\xbe\ \xa7\x5f\x91\x88\xef\xe6\x4f\xc6\x6d\xd7\x4d\xc6\x98\x0c\xe1\xc4\ \x6d\x37\x17\x6f\xc5\xd4\x09\x19\x38\xb4\xb3\x0b\x8f\x2c\xf2\xad\ \x50\x11\xbe\x0d\xaa\x1c\xdf\x3b\xcd\xfe\x05\x04\x36\x03\x98\x63\ \xe9\x21\x7f\xb7\xc3\xb7\x3e\xdd\x8e\xb7\x76\x6c\x0f\xf8\x16\xa8\ \xfe\x2c\x17\x65\xbf\xbb\x1d\x23\xf7\xac\x06\xc6\x7b\x2e\x60\xeb\ \x38\xbb\xc2\x09\x5d\x87\xe5\xaf\x13\x27\x74\xc1\xcf\x92\x37\x67\ \x9a\x39\xd8\x9e\x33\x6d\x0c\xe6\x4e\xcf\xe2\xfc\xc4\xb8\x06\xef\ \xd6\x64\x68\xed\xc7\xc5\xb6\x65\x9d\xd1\xa5\x78\x64\xcd\x7b\xbc\ \x73\x2a\x8b\x63\xb1\x37\x11\xe6\x95\x57\x1d\xb0\x39\x98\xb5\x95\ \xb7\xa5\xec\x15\x64\x8d\x18\xe9\x76\xfb\x63\x84\x83\x53\x7d\x54\ \x37\x02\x1f\x9d\x35\xf7\x8e\x18\xd1\x9e\xe0\xd5\xa9\x92\x92\x92\ \x30\x67\xce\x1c\xbb\x43\xcc\x09\xee\xb7\x9c\x3c\x7b\x19\xbb\xbe\ \x3c\x83\x03\xc7\xcf\xe3\xe0\xff\x2e\xe0\xf0\x49\x6b\x32\x95\x79\ \xe6\xff\xbe\x25\xb3\x43\x76\xc4\xbf\x7e\xfc\x3f\x6c\xdd\x73\x0a\ \xcb\x7e\x38\x1b\xbf\xba\xb7\xc0\xe9\xb3\x94\xc1\x52\xac\x8f\x06\ \x9e\x7c\x61\x2b\x64\x59\xbc\xea\x3e\xed\x36\x5b\xa3\x27\xc5\x5a\ \x8d\x20\x27\x14\x70\x54\xb0\xcc\x11\xe9\x98\x95\x3b\x15\x3b\x0e\ \xec\xb3\x2d\x9b\x78\xc5\x5e\xfc\x6c\xf2\x65\xdc\x38\xae\xc3\x5d\ \xb5\x1c\x9c\x4a\xfd\x99\x7d\x54\xcd\xcf\xff\x7e\x35\xae\x7e\xfe\ \x29\x44\x5d\x3b\xce\x69\x5f\xca\x58\x05\x62\xa2\xe3\xc2\x66\xb9\ \x33\xb5\xde\x4b\x40\x1e\x3b\xd7\x83\x5d\xfb\xcf\x60\xf7\x81\x6f\ \x02\xda\xe6\xf5\x73\x55\xb8\xf3\xa6\x6f\x61\xee\xf4\x2c\x74\xb4\ \xf7\xe0\x7b\x0f\xbe\xe7\xa6\x52\x1e\xcf\x62\x74\x29\x5e\x2e\xde\ \x89\x8e\xbc\x6e\x5e\xaa\x95\x47\xc7\x0a\xf4\x76\xe8\x8b\xf6\x96\ \x0c\xb4\xb5\x98\xd5\xeb\x8a\xa9\x27\x9d\x0f\x66\xd6\x09\xb7\xf5\ \xef\xaf\xba\x02\x7d\x46\xe7\xd6\xce\x86\x5f\xde\x05\x59\xdb\x63\ \x6e\x2a\x15\x09\x5c\x9d\x6b\xdc\xf8\x2c\x66\xd3\xac\x78\xe1\xc0\ \xf1\xf3\x38\x70\xfc\x02\x76\x7d\x79\x06\x35\x75\x97\xf1\xb7\xdf\ \x2d\xc5\xbc\x19\xe3\x98\x49\x44\x74\x29\x0e\x5e\x55\x87\x8f\xee\ \x3f\x24\x3d\xc7\xf2\xc7\xd2\xec\x26\x6c\xb9\x90\xe9\x3d\xce\xd9\ \xa7\xc2\xd2\xd9\xcf\x21\xea\x2e\x73\x1a\x24\x26\x4e\x01\xa5\x22\ \x2e\xa2\x46\xb4\x3a\xd7\xe8\xd1\xe9\x48\x4a\x4e\x8c\xe8\xb1\xb4\ \xa5\xfd\x06\x4d\xc9\xad\xd8\xf8\x9b\x5d\x91\x3c\x8c\xe5\x1a\xb5\ \xb6\x9c\x91\x63\x85\xd3\xb9\x7c\xf1\xe2\x8a\xa5\x36\xb5\x8a\x94\ \x4a\xb9\xd2\xdd\xd5\x83\xe6\xe6\xd6\x88\xce\x43\xed\xc8\xe5\x9f\ \x6d\x86\xf2\x83\x3a\x3c\xfd\xe6\x16\xde\xa8\x15\xc0\xe3\x09\x04\ \xd2\x5a\x12\x60\x58\x3a\x11\x31\x71\x0a\xde\x38\x15\x00\x24\x25\ \x27\xf2\xc6\xa9\x00\x20\xe3\x9d\x65\x50\xfc\xf9\x26\xbc\xb8\x62\ \x29\x2f\x82\x76\x26\xad\xc2\xa0\x1e\xf1\xb0\xc5\x13\x4f\xfe\x00\ \xb1\x6b\x26\x07\x7c\xeb\x33\x5a\x2a\x1f\x5f\xfa\x74\x1f\x94\xff\ \xd7\x86\xe8\x2f\x5b\x83\x3e\x86\x94\xc1\x52\xc6\xf1\x4e\xcf\xdc\ \x38\x8c\x7e\xe9\xff\x41\xb1\x40\x15\x76\x5b\x25\xdc\x7d\x35\x4c\ \x73\x54\x78\x71\x2e\xc2\xaa\x5c\x1a\xb5\x36\xd5\xdb\x67\x5e\x6f\ \x85\x91\xbe\x1d\x4e\x3c\x95\x81\xa5\x6f\x7e\x1b\xa9\xad\xcc\x9e\ \x41\xd6\x4d\xb9\x0c\xed\xac\x06\xec\x5b\x54\xcb\xca\xfe\x9f\x7c\ \xe2\x16\xc6\xfb\x06\x80\xcf\x7e\x78\x02\xdf\xff\x67\xe4\x8b\xe7\ \x1e\xf9\x8e\x0e\x5b\x56\x7c\x15\xd1\xdb\x20\x13\xc7\x2a\x04\x20\ \xca\x42\xe4\x04\x77\x4e\xe5\x37\xc6\xf2\x14\xed\x13\x04\x13\x98\ \x04\xef\xcb\xc9\x4c\x44\x20\x6a\xc5\xc8\xb1\x48\xb5\x08\xae\x14\ \x0b\x00\xd2\xc8\x54\x04\x53\xb5\x62\xec\x58\x1a\xb5\xb6\x83\x4c\ \x4a\xc0\xdc\xad\x8a\x11\x3e\x5b\x85\x7c\x4a\x3f\x10\xc2\x51\xab\ \x40\x6e\x85\x56\xaa\xc8\xbc\xe4\x54\xac\x3b\x96\x46\xad\x2d\x20\ \x13\x13\x5c\x28\x56\xc0\x9e\x4b\x48\x4f\xad\x82\x72\x2c\x0b\xdb\ \xc9\xdc\xe4\x54\xac\x3b\x96\x46\xad\x5d\x4c\x26\x97\x04\x47\x83\ \xfd\x62\x40\xad\x42\x6a\x25\x92\x5a\x71\x7d\x2b\xa4\x78\x8b\x9c\ \x8a\x3b\xc7\xb2\xb0\x99\x4e\x03\x39\x15\xeb\x8e\xa5\x51\x6b\x0b\ \xe9\x54\x88\x0a\x56\x3a\x1d\x84\x14\x63\x51\xbc\x25\xbe\x60\xdd\ \x5a\x91\x8f\x37\x8e\x45\xce\x45\xb7\x40\xb6\x63\x2c\x0a\xe6\xc9\ \xa9\xb8\x75\x2c\x72\x2e\x72\x2a\xce\x1c\x8b\x9c\x8b\x9c\x8a\x33\ \xc7\x22\xe7\x92\xb6\x53\x71\xea\x58\xe4\x5c\xd2\x75\x2a\xce\x1d\ \x8b\x9c\x8b\x97\x74\x86\xe3\x9c\xc8\xc4\x70\x75\x10\x8c\xd9\xec\ \x6b\xf4\x32\x9b\xb0\x9a\xc7\xf2\x47\x51\x45\x5e\x35\x80\x99\x74\ \x7e\x23\x42\x5a\x38\xc7\x2e\x84\xd5\xb1\x2c\xce\x95\x0a\xa0\x9d\ \xce\xb3\x78\xe2\x29\x5e\x38\x96\x83\x83\x51\x96\x5e\xc4\x61\x88\ \x2c\xc2\x3f\xb8\x93\x4e\x3d\x67\x5c\x1f\xc9\xd8\x36\x62\x8a\x45\ \xea\x25\xee\xc6\x92\x8c\x47\x86\x20\xf5\x0a\x9d\x47\xf9\xd2\x02\ \xe7\x85\x62\x91\x7a\x89\x43\xa5\x78\xed\x58\x16\xe7\x2a\x04\xd5\ \xe5\x12\xa4\x43\xf1\xda\xb1\x1c\x1c\xac\x12\xc0\x02\x72\x1f\xaf\ \xc1\x79\x25\x5f\x0f\x8e\xd7\x8e\xe5\xe0\x60\x3a\x00\x39\xe4\x4b\ \x00\xbc\x94\xbf\x26\xc7\x22\x05\x13\xa5\x42\x09\xda\xb1\x1c\x1c\ \x6c\x31\x80\x8f\x28\x86\x22\xc7\xa2\x56\x64\x60\x6c\x17\xfa\x68\ \x73\xc1\x3b\x96\x88\x9c\xac\x33\x5c\x3d\x0f\xc8\xb1\x42\x73\xb2\ \x0e\x00\x29\xa4\x4c\xe4\x58\x5c\x3a\x19\x5f\x7a\x54\x54\x49\xa5\ \xc6\x98\x24\x1c\xcb\x87\xb3\x6d\xe3\xb0\x95\x59\xa6\x51\x6b\x4b\ \x25\xda\x82\x95\xae\x63\x11\x4e\x17\x59\x01\x00\xeb\x1f\x1f\xd3\ \x39\x55\x00\x2a\x01\x6c\xd3\xa8\xb5\xd5\x74\xc6\xa4\x0b\x09\x96\ \x78\x45\x68\x35\x80\x42\x48\xb3\x27\xf8\x66\x00\xeb\x48\xdc\x48\ \xb0\x08\xfe\x08\x52\x29\x80\x12\xb2\x44\x50\x1c\x05\xb0\x5a\x48\ \x0f\xc8\x08\x12\x2c\x21\x88\xd2\x62\x00\xe5\xe0\x7f\x96\x57\x54\ \xd1\x19\x55\x12\x24\xc1\x22\x7c\x0b\x93\x0a\xe6\x1c\x0d\xf5\x37\ \xe3\x2f\x8f\x6a\xd4\xda\x75\x64\x06\x12\x2c\x29\x8a\x53\x35\x45\ \x4d\xa2\xe0\x35\x8d\x5a\xbb\x9a\xcc\x40\x82\x25\x26\x81\x2a\x07\ \xb0\x8c\x2c\x21\x19\xae\xa7\xdc\x18\x09\x96\x90\x04\x4a\x47\x4d\ \x3b\xc2\x01\x41\x0c\xa7\x22\xc1\x22\x81\x22\x08\x12\x30\x12\xac\ \x88\x0b\x54\x29\xa8\x3b\x01\xc1\x0e\x9d\x00\x54\xe1\xac\xdc\x49\ \x82\x25\x0d\x91\x12\xc2\x00\x32\x42\xf8\xd0\x93\x48\x12\xac\xa0\ \x04\x4a\x05\xa0\x8e\x2c\x41\x44\x10\xc9\x0c\x3c\x25\xc1\x0a\x4e\ \xa4\xf2\x01\x7c\x4d\x96\x20\x78\x08\x6b\xb3\xdd\x92\x60\x09\x5b\ \xa4\x68\x62\x0c\x42\x68\x88\xb6\x76\x0c\x09\x96\x77\xa1\xa2\x9c\ \x14\x21\x06\x24\xf7\xc4\x51\x32\x82\x55\x54\x91\xb7\x0e\xc0\x2a\ \xf2\x71\x42\x8c\x48\x65\x12\x50\xd1\x0b\x16\x4d\x99\x42\x48\x0c\ \x51\x0f\xde\x16\xa5\x60\x51\x5f\x29\x82\x10\x67\xd4\x25\xb6\xaa\ \xee\x94\x9b\x22\x08\x77\x66\x89\xa5\x98\xa1\x28\x04\x8b\x9a\x7d\ \x04\x21\x8d\xe6\xa2\x60\x05\x8b\xba\x24\x10\x44\xd0\x08\xb6\x5f\ \x97\xe0\x04\x8b\x3a\x78\x12\x04\x6b\x08\x6e\x72\x39\xc1\x08\x16\ \x45\x54\x04\x41\x11\x17\xef\x05\x8b\x84\x8a\x20\x48\xb8\x04\x21\ \x58\x94\x4c\x27\x88\x88\xc0\xdb\xc9\x5a\x79\x29\x58\xd4\x3d\x81\ \x20\x78\x01\xef\xba\x43\xf0\x4a\xb0\xa8\xc3\x27\x41\xf0\x0f\x3e\ \x75\x40\xe5\x8d\x60\x51\xf3\x8f\x20\x78\x0d\x2f\xf2\x5b\x11\x17\ \x2c\x6a\xfe\x11\x84\xa0\x48\x8b\x64\x49\xe7\x88\x09\x16\xf5\xa7\ \x22\x08\xc1\x12\xb1\xfe\x5b\x11\x11\x2c\x8a\xaa\x08\x42\x14\x4c\ \xd0\xa8\xb5\x3a\xd1\x0a\x16\xf5\xa9\x22\x08\x8a\xb6\x42\x41\x16\ \x46\xb1\xaa\x24\xb1\x22\x08\xd1\x91\x12\xce\x07\x66\x61\x89\xb0\ \xe8\x09\x20\x41\x48\x02\xce\x3b\x9c\x72\x2a\x58\x34\x5d\x16\x41\ \x50\x13\x51\x10\x4d\x42\x4b\x0d\x75\x12\x2b\x82\xa0\x26\x22\xbf\ \x23\x2c\x7a\x0a\x48\x10\x04\x38\xe8\xb3\xc5\x7a\x84\x65\x51\x57\ \x12\x2b\x82\x20\xda\x8b\x2a\xf2\x0a\x79\x2b\x58\x94\x5c\x27\x08\ \xc2\x85\x4d\x45\x15\x79\xe5\xbc\x6b\x12\x92\x58\x31\x63\xe2\xa9\ \x0c\xb7\x65\xb1\x7d\x4a\x8c\x39\xe7\x9e\xa7\x4c\x6b\x89\x47\x5a\ \x6b\x82\xdb\xf2\xac\x73\xa9\x88\xed\x8f\x96\xac\x0d\xd7\x97\xec\ \xc2\xc5\xf1\x1d\xe4\x4c\xc2\xa2\x4a\xa3\xd6\x16\xf0\x42\xb0\x48\ \xac\x3c\xf3\xe2\x8a\xa5\x92\xf8\x9d\xc9\x97\x9f\x42\x54\x6a\x2c\ \xa7\xfb\x68\xeb\x6d\xc4\xaf\xb6\x2e\x22\xa7\x12\x36\xf5\x1a\xb5\ \x56\x15\xd1\x26\x21\x89\x95\xb4\xc5\x2a\xe6\xb9\x02\xce\xc5\x0a\ \x00\xf6\x9f\xd9\x46\x4e\x25\x7c\x72\x8a\x2a\xf2\x74\x11\x13\x2c\ \x12\x2b\xc2\x54\xa5\x0b\xcb\x7e\x6a\x9b\x0f\x92\xb1\x49\xb4\x82\ \x17\x2c\x12\x2b\x02\x00\x8c\x9f\x07\xe9\x7b\xc7\xa3\xdc\xff\x7c\ \x70\xba\xe9\x2b\x32\xb6\xb8\x44\xab\x32\x6c\x82\x45\x62\xe5\x9f\ \x8e\xf4\x3e\x32\x02\x41\x78\x67\x81\xa5\x73\x39\xb7\x82\x45\x62\ \xc5\x8c\x97\x5f\xf9\x44\x32\xbf\x75\x70\x7b\x4d\xf0\x5f\x9e\x31\ \x0c\xa4\x2d\x23\x87\x91\x26\xab\x8a\x2a\xf2\x16\x73\x26\x58\x96\ \x1e\xec\x04\xe1\x44\xdf\x4f\xde\x0f\x4e\xa8\x66\x58\xee\x7d\xd9\ \xe5\xf6\xd7\x5e\x98\x9c\x79\x15\x19\x5a\x9c\x7c\xc4\x89\x60\x59\ \xc2\x37\xea\xc1\x1e\x00\x6f\x3c\x51\x49\x46\x60\x89\xd5\x37\x94\ \x93\x11\x44\x4a\x20\xad\x36\x46\xfd\xb0\xa8\xea\x42\xf0\x48\xa5\ \x7b\x43\xb8\x79\xfa\xcd\x2d\x64\x04\x91\xc1\x64\x76\x1e\x05\xc3\ \x6d\x91\x58\x05\xc9\xbe\x85\xb5\xb8\x66\x77\xae\x20\x8f\xfd\x84\ \xcb\xcd\xec\xa4\xcb\xbd\x4d\x07\xa0\x0f\xe6\x85\x03\x71\x83\x68\ \x1f\x94\xa3\x63\x30\xf0\xe7\x38\x69\x77\x1d\x45\xf2\x0d\x67\xc8\ \x59\x28\xd2\x5a\xa7\x51\x6b\x57\x87\x14\x61\x51\xe5\x05\xcf\xd4\ \x17\x2e\x21\x23\x70\x80\x72\x5c\x27\xb2\x7e\xb3\xdb\xe7\x3a\xbf\ \x5c\xf0\x4f\xc4\x2a\xe3\x39\x3f\x96\x41\xa3\x01\xfa\x41\xf7\xa7\ \xbd\x03\xc6\x5e\xb4\xf7\x35\xba\x2d\xef\xd1\xb7\xa1\xb1\xfb\x94\ \xdb\xf2\xf6\xfe\x46\xd4\xb5\x1f\xa2\x93\xcb\x42\x94\xe5\x53\xb0\ \x2c\x19\xfc\x8f\xc8\x8c\xee\x14\xcf\xff\x94\xf1\xba\xba\xb3\xdf\ \x00\x00\xce\x1c\xbc\x68\x7e\xff\xc5\x00\xfa\xbb\x0c\x68\x6b\xe8\ \x46\x5b\x43\x4f\x50\xfb\x9f\xb1\x40\xe5\xfc\xbe\x60\x82\xd3\xfb\ \x2b\xfd\x7c\xce\x37\x6e\x91\x3d\xef\xf4\x3e\xe9\x86\x33\x18\x71\ \xd7\x51\xb7\xf5\x9e\x5b\xe4\x5d\xcc\x0c\x06\x03\x94\x4a\x25\x00\ \xc0\x64\x32\x41\x2e\x97\x93\xa3\x86\xc8\x6f\x76\x2d\xe4\x95\x68\ \xf9\x13\x2c\xea\xc2\xc0\x92\x68\x31\x61\x64\x46\x1a\x52\x53\x93\ \x25\x6d\x53\x47\xe1\x4a\xbc\xb6\x1e\xe9\xf7\x38\x47\x26\x45\xb3\ \xff\x0e\xbd\x5e\xcf\xcb\x63\x8f\x89\x89\x71\x8e\x16\x2d\xe2\x09\ \x00\x32\x99\x0c\xd1\xd1\xf6\x01\xeb\x72\xb9\x5c\x30\x82\x1a\x01\ \xd1\xda\xac\x51\x6b\x0b\x3d\x7d\xa0\xf0\x21\x56\xd5\x24\x49\xbe\ \xd1\x9b\x7a\x11\x23\x4f\x60\x6d\x7b\x2d\x97\xdb\x25\x2f\x58\x1f\ \xb4\x3d\x83\x3b\x46\xfc\xce\xdc\xc4\xda\x9b\xe3\x26\x58\x7c\x15\ \x2b\x4f\xc7\xc6\xe7\x63\x0d\x84\x6f\x25\xdf\x8e\xe3\x1d\xdb\x11\ \x15\xb6\x29\x6b\xb0\x0c\x80\x47\xc1\xf2\x75\x08\x33\x49\x92\x7c\ \xf3\xc7\x83\xec\x3f\x01\x1c\x1a\x1a\x92\xb4\x4d\x13\x52\x63\x31\ \x61\x66\xa6\xed\xfd\xf9\x07\x7e\x48\x8e\x16\x61\xb2\x93\xa7\xa3\ \xaf\xcb\x88\xc1\x81\xf0\xf9\xa6\xb7\x3e\x9f\x0a\x6a\x0a\xf2\x8b\ \x8b\x8d\x97\x31\x36\x7b\xb4\xa4\x6d\xb0\xf1\xeb\x22\x5b\xd3\x70\ \x28\xc0\xba\x5f\xff\xfa\xd7\xbf\xc2\x72\x8c\x71\x71\x71\x88\x8f\ \x77\x4f\xfc\xa7\xa7\xa7\x07\xbd\x8c\x70\x22\xa5\xa8\x22\x2f\xd5\ \xb5\xc4\xb2\xc2\x83\x58\xa5\x92\xad\x98\xf3\xef\x33\xaf\xe2\xc6\ \x49\x8f\xb2\xb6\xbd\xfe\xfe\x01\x32\xaa\x0b\x86\x73\xa9\x50\xf2\ \xac\x60\x5f\x7f\x7f\x3f\xfa\xfb\xfb\xdd\x96\xb7\xb6\xb6\x0a\xd2\ \xc6\xb7\xde\x7a\x2b\x83\xe8\x3f\xec\x71\x4c\x3b\x80\x28\x7f\x4d\ \x42\x9a\xec\x34\x00\xb4\x97\x77\x91\x11\x38\xe0\xae\x92\xeb\x6d\ \xaf\xfb\x8e\x8c\x21\x83\xf0\x80\x61\x53\xf8\xf7\xe9\x1a\x40\x29\ \xe8\x34\xf0\x8f\xfe\xfe\x01\xc4\xc5\xb1\x50\x14\xaf\xba\x1c\xd8\ \xbe\xdc\xfb\xe7\x25\xfc\x6d\xf9\x5f\xb9\x40\x85\x77\x2d\xaf\xf5\ \x35\x23\xc9\x29\xa4\x8b\x53\x94\xa5\x70\x51\x33\x7a\x32\xc8\x07\ \xc1\xea\x63\x49\xb0\xf2\x0b\x81\x0e\x1d\x50\x55\x26\x38\x1b\xf0\ \xad\xdf\xd8\xec\xd9\xb3\x3d\x2e\x9f\x30\xc1\xf3\x71\x8e\x18\x31\ \xc2\xe3\xf2\xa8\xa8\xa8\xb0\x1d\x73\x5f\x5f\x1f\xfe\xf4\xa7\x3f\ \x21\x29\x29\x89\x95\xed\x99\x4c\x91\xbf\xc1\xb9\x46\x58\xf4\x64\ \x50\x6c\xe8\x2a\x7d\x7f\xa6\x2a\xe0\xfd\x4f\xc8\x49\x9b\x89\x5f\ \x2e\x7a\x9e\xd1\xba\x2b\x57\xae\xa4\x73\x6e\x21\x3e\x3e\x1e\x8f\ \x3d\xf6\x18\xd6\xac\x59\x13\x92\x68\x8d\x4d\x99\x16\xd1\xdf\x51\ \x54\x91\x57\x6e\xed\x97\xa5\x70\x58\x58\x48\xa7\x38\x88\x3b\x6f\ \xd6\x62\xd6\xb7\x99\x90\xc8\xc1\xb0\x93\xfb\xbe\x06\x32\xf3\xed\ \xef\x5f\x4a\xe5\xb5\x60\x1d\xaf\xb4\x0f\x5f\x9d\x32\x3f\xfc\x39\ \x2c\xc7\x4e\x9f\xae\xef\x15\x0a\x85\x53\xa7\x4f\xd7\x75\xf9\xc4\ \xc0\x80\x28\x1e\xe2\xd8\xfa\x65\x39\x46\x58\x9b\x48\x7e\x02\xa7\ \x40\xc5\xfe\x1d\x3d\x26\x86\xc5\x0b\xa0\xd0\x4b\x84\xf5\x14\xbf\ \x4b\x9b\xbd\x53\xb6\xc7\xf6\x7a\xd1\xcf\xbf\x8d\xac\xac\x4c\x72\ \xb6\x20\x88\x8d\x8d\x15\xc5\xef\xb0\x76\x71\x90\xd1\x29\xe5\x17\ \xac\x8a\x95\x80\x39\xee\x30\xb9\xc5\xc4\x7c\x12\x2b\x02\xdb\x6c\ \x11\x56\x51\x45\x5e\x01\xd9\x23\x70\xee\x99\x5d\xce\xfa\x36\xc7\ \x8d\xcf\x22\xb1\xaa\x8c\x6c\x35\xa3\xa6\xa6\x26\xb7\xa6\xd4\xc0\ \xc0\x00\x9a\x9a\x9a\xdc\xd6\xd5\xe9\x74\x6e\xcb\xea\xeb\xeb\xc3\ \x7a\xbc\x25\x25\x25\x7e\xd7\x31\x1a\x8d\x50\x28\x04\xdd\x29\x60\ \x81\x63\x93\xb0\x94\xe4\x27\x70\x92\x63\x46\x91\x11\x38\xe0\xa9\ \xef\xd9\xb3\x13\xe3\x6f\x94\xa1\xac\xac\x8c\x8c\x42\xc0\x51\xb0\ \x16\x90\x29\x02\xa3\xbe\x70\x09\x56\xe1\x4d\xdb\xfb\x82\x65\x79\ \xb8\xe9\xe1\xd9\x88\x4b\x0a\xbe\x49\x97\x95\x95\x21\x69\x9b\x9e\ \xad\x6e\xc2\xc3\xb3\x35\x4e\xcb\x32\xaf\x8e\x22\x67\x0b\x91\x85\ \x0b\x17\x22\x25\x25\x85\xd7\x0f\x07\x98\x50\x54\x91\x57\x40\x1d\ \x47\x3d\x70\x5a\x3b\x03\x03\x7d\x7e\x9e\xd4\x3d\x78\xc1\xe9\xed\ \x3f\xf5\x8d\xd8\xb5\xf4\x10\xa2\xeb\xe2\x3c\xae\x5e\xb0\x2c\x0f\ \x37\xaf\x9a\x83\xd8\x04\xef\x63\xe3\x38\x79\x3a\xc8\xc3\x66\x5e\ \x4f\xc7\x00\xce\x1e\xb5\x37\xaf\xde\x75\x48\xb0\x5b\xd9\xf1\xc5\ \x3d\xe6\xff\x5c\xb5\x2f\xce\x56\xa3\xe0\xec\xd7\x92\xf1\x69\xa3\ \xd1\x28\x78\xc1\x02\x50\x4a\x82\xe5\xc2\xb1\xaf\xe6\xd9\x5e\xdf\ \x74\xd5\x7c\xfc\x74\xfe\x0d\xcc\xbf\xfc\x4b\xf7\x45\xfd\x5d\x06\ \xbc\xf3\xd4\xe7\xa8\xdc\xac\x45\xe5\x66\xad\xd7\xaf\xce\xbd\x6d\ \x12\xfa\x3a\x0c\x90\xcb\x64\x4e\x17\x76\xdd\xd1\x26\x49\xd9\xff\ \xc0\x86\x5b\xd0\x96\xcf\x7d\x1e\xaf\x6a\x62\x3e\xaa\x26\xda\xbb\ \x79\xe4\xb4\x37\xa1\xf0\xf0\x0e\xba\x00\xf8\xcd\x82\xa8\x07\x36\ \x4f\x2f\x04\x75\x69\x40\x4b\x73\x26\x1a\xcf\xe5\xd8\xde\xef\xdd\ \xf0\x96\xc7\xbb\x94\xae\xae\x81\x95\xfd\x59\x85\xec\xf8\x67\xdc\ \x24\x68\x8f\x3d\xb3\x00\x0d\x37\xe7\x92\x8b\x07\x49\xca\x40\x0f\ \x56\xef\x15\xc6\x44\x17\xbe\x92\xee\xc7\x8e\x1d\xc3\xe3\x8f\x3f\ \x0e\x99\x4c\xe6\x31\xc2\x62\x92\xb0\x07\x80\xf5\xfb\xee\x32\xb7\ \x02\x52\x23\x1b\xe3\x28\x00\x14\x50\x54\x65\x8f\xaa\x96\x16\x2c\ \xc2\xaa\x25\x77\x7a\x36\x96\x42\x81\x49\xb9\x39\xac\x08\x58\x5c\ \xb2\x12\xf7\x68\x9c\x2b\x39\xbe\xb4\xb5\x1c\xeb\x16\xfd\x0e\x89\ \x4a\x03\x86\xa2\x92\xd0\x21\x5f\x81\x36\xc5\xea\x80\xb6\xfb\xe1\ \x00\xf0\x54\x17\xe5\x7d\x42\xa5\x33\x36\x11\x65\x0b\xed\xe3\x30\ \x4b\x76\x0b\xf3\x9e\x9e\x9d\x9d\x8d\xe2\xe2\x62\x44\x47\x47\x23\ \x35\x35\xf4\x42\x2c\x26\xe3\x30\xe4\x8a\xc8\xf9\x97\x02\x80\x4a\ \xaa\x4e\x69\x32\xc9\xa1\x3d\x32\xd7\x67\x54\xe5\xd3\x78\x2c\x08\ \xd8\x63\x9b\xd6\xa1\xb5\xbb\x13\xb9\xe9\x6d\xd8\xb4\x64\xbb\x79\ \xe1\x8c\x61\xc8\x00\x8c\xb0\xfc\x5d\x6a\x6e\x45\x57\x97\xff\xda\ \xef\x3f\x6f\x8f\xc2\x3d\x63\x53\xf0\x97\x11\x40\xb6\xa5\x23\x76\ \x6e\xe2\x30\x64\xc3\xbd\x88\x46\x0f\x14\x43\x03\x68\x33\x44\x63\ \x7a\xc6\x74\x52\xa4\x00\x90\xed\x3b\x87\xb2\x85\xcb\x05\x29\x5a\ \x17\x2e\x5c\xc0\xda\xb5\x6b\x43\x8e\xb0\xf8\x82\x02\x12\x7d\x42\ \xf8\x4d\xcd\x34\xf4\x76\x27\x07\x2d\x56\xc1\x0a\xd8\x5f\x77\x6d\ \xc3\xde\x93\xce\x93\x2b\xec\x5d\x69\xb9\x10\xb2\x37\x01\x69\x85\ \x6e\xdb\x1d\x35\x3a\x1d\xa3\x46\xdb\x0b\xbe\x35\x5c\x68\xb6\xd5\ \xcd\x8a\x1e\xbe\x80\x71\xfa\x9b\x21\x43\x37\xbe\x8c\x03\x30\xd6\ \xd3\x00\x55\xfb\x9d\x95\xba\x60\x8a\x0f\x9d\x4e\x07\x95\xca\x73\ \xdc\x91\x9c\x9c\x8c\xf9\xf3\xe7\xdb\x5e\x87\xca\x10\x0f\x22\x2c\ \x6a\x02\x7a\x69\x02\xb2\x29\x60\x37\x3d\xf1\x20\x7a\x5c\x0a\xbe\ \xfd\x60\x72\x2d\x9e\x29\xd8\x6b\x8b\xaa\x98\x32\x36\x7b\x34\x70\ \x22\x15\x30\x75\xd2\xd5\xca\x31\xff\xeb\x31\xdf\x18\x72\xda\xf9\ \xfb\xf0\x23\x33\xd3\xfb\x6d\xc8\x51\xb0\x32\x32\x84\xdf\x6d\x46\ \x52\x82\xd5\xd5\x9e\x06\xdd\x99\xc9\xb6\xf7\x5b\xca\x5e\x41\xd6\ \x08\x6e\x6b\x2d\xf5\xf4\xf7\xe1\xa6\x27\x1e\x72\x5b\x6e\x8b\xaa\ \x46\x95\x00\xa3\x4b\x03\xdb\xe8\x71\xca\x51\x85\x8b\xb5\x17\x7b\ \x01\x00\x7b\x16\xcd\x86\xea\xd6\x6f\x0b\xb6\x49\x08\x78\x1e\x57\ \x18\x68\x93\xd0\x34\x38\x8c\xe8\x08\x0e\x4f\x94\x8c\x60\x69\x8f\ \xcc\x85\xc9\x24\x67\xb5\x09\xe8\x8f\x87\x5e\x7b\x19\xd5\x67\x9c\ \x27\xd6\x7c\xb6\xe0\x0b\xdc\x3c\xf9\x8c\xe7\xa8\xaa\x6e\x1f\xf0\ \x89\x8f\x32\x2a\xa6\x0e\x60\xe0\x28\x70\xc9\x73\x5f\x2e\x5d\x7c\ \x36\x54\x33\x48\x64\xd8\xa4\xfc\x92\x59\xb0\x54\x31\xc2\xbc\x54\ \xac\x49\x77\x8a\xb0\x04\x82\x6b\x62\x3d\x5c\x62\x75\xed\xc3\x77\ \x7b\x8f\xaa\x46\xae\x02\xb2\xd6\xb9\x7f\x69\xc2\x35\xc0\x43\x9f\ \x99\x5f\x6f\xbe\x17\xd8\x5f\xe1\x61\xcb\x9e\xe7\xb2\xeb\x50\x26\ \x63\xe2\x4d\x95\x90\xf6\x9c\x3b\xdc\xb0\xa0\xf9\x20\x70\xbf\x4b\ \x17\x91\xb1\x13\x80\x87\xfe\x0d\xa4\xe5\xf0\xfa\xd8\x3f\xf9\xe4\ \x13\xbc\xfd\xf6\xdb\xac\x45\x58\x91\x2e\xe1\x17\xf5\xc0\xe6\xe9\ \xa2\x9d\x21\x47\x57\x3b\x19\x5d\x1d\x69\xb6\xf7\x5c\xe6\xab\xac\ \xbc\xf5\xe9\x76\xbc\xb5\x63\xbb\xf3\x5d\x7a\xc9\x76\x4c\x4a\x6f\ \xf3\x1c\x55\x31\xe1\xb7\xdf\x06\xce\x1f\xf5\xb9\x8a\xec\x17\xb5\ \xa4\x2c\x1c\xd1\xf6\xf7\x39\x48\x35\x74\x31\xff\xc2\xb7\xae\xb5\ \xdf\x78\x22\xcc\x91\x23\x47\x70\xf8\xf0\x61\x00\x9e\xab\xa0\x7a\ \x4b\xd6\xbb\x62\xed\x87\x05\x44\xb6\x2f\x96\x02\x40\x15\x44\xf8\ \xa4\xd0\x31\xb1\x1e\xa9\xa8\x2a\x51\x69\xc0\xce\xc2\x77\xcc\x6f\ \x92\x6f\x07\x72\xb6\x05\xb7\xe1\x67\x0f\xda\x5f\xdf\x1f\xe3\xd9\ \x31\x3f\xf9\x21\x3a\xa2\x03\x7f\x0a\x54\xd0\x7c\x80\x14\x89\x6d\ \x2e\xff\x17\x28\x8b\x42\x3d\x54\x28\xf7\x3c\x1f\x28\xeb\xe4\xe4\ \xe4\xa0\xb0\xd0\x7d\x5f\xc9\xc9\xc9\x18\x37\x6e\x9c\xa8\x9a\x84\ \x95\x62\x12\xac\xf6\x96\x0c\x9c\xaf\x9b\x68\x17\x8d\xb8\x38\xec\ \x7c\xe5\x8f\x9c\xee\xf3\xeb\xda\x1a\x3c\xbc\xfe\x15\xa7\x65\x3b\ \x0b\xdf\x41\xa2\xd2\x10\x7c\x54\xe5\x8d\xd7\xf5\x1e\x9b\x8c\xf9\ \x6d\x27\x85\x79\xc2\x94\x2e\xb6\x51\x3a\x34\x6a\x15\xc3\xce\x2d\ \x60\xa5\xb0\x1a\xbc\x39\xd0\xa1\x64\xca\xd7\xc0\x4f\xb7\x45\xec\ \x18\xf6\xef\xdf\xcf\x6a\x93\x90\x2f\x82\x55\x02\x11\xe0\x1a\x55\ \xbd\x78\xef\x43\xf8\xee\x95\xb3\x39\xdd\xa7\x6b\x77\x05\xa7\x0e\ \xa0\xb1\x33\x81\x5c\x8e\xe6\xf5\x58\xf6\x06\xa0\xfb\x2b\x45\x33\ \x3c\xa7\xfe\xd4\x51\x94\x97\x95\x21\x25\x25\x25\xa8\x9e\xe6\xb1\ \xb1\xb1\xc8\xcc\xcc\x44\x6a\x6a\x2a\xf2\xf3\xf3\x03\xfe\xfe\xfc\ \xf9\xf3\x6d\x91\x95\x28\x22\x2c\x8d\x5a\x5b\x59\x54\x91\x47\x4d\ \xc0\x00\xf1\xd4\x5d\xc1\x96\x54\x07\x80\xe9\xed\x80\x3c\x40\x07\ \xed\xad\x04\x9a\xcb\x80\x89\x7b\xe8\x4a\x17\x09\xa3\x47\x8f\xc6\ \xb2\x9b\x96\x85\xbc\x1d\xb1\x94\x3a\x66\x23\xc2\x12\x34\xcd\x0d\ \xd9\x68\x6e\x1c\x6b\x6f\x1a\x4d\x9a\x82\x8d\xab\x9e\xe4\x74\x9f\ \x85\x2f\x95\xe0\x4c\xc3\x79\xdb\x7b\xa7\x0e\xa0\xd1\x39\xc0\x54\ \x5d\xe0\x1b\xb5\xf4\xad\xfa\xf0\xc2\x27\xf8\xf1\x44\x72\x4c\xb1\ \x10\x1b\x1b\xcb\x38\xb1\x4d\xf8\xe5\x35\x41\x0b\x96\x6b\xdf\xaa\ \x9d\xaf\x6c\x44\x62\x1c\xb7\x35\xa5\x5c\x13\xeb\x21\x47\x55\xcd\ \xa5\x78\xe1\xad\xa3\xd8\xfc\x7f\x6b\x00\x00\xef\xbc\x78\x25\xb9\ \xa5\x98\x9a\x84\xf5\xf5\x28\x0f\x43\xc5\x54\x6f\x49\xf7\xb6\xb6\ \x36\x31\x99\x73\x9b\x55\xb0\x04\xf7\xa4\x30\xdc\x4d\xc0\xd7\xb6\ \xbe\x87\x2d\x95\xf6\x69\xe9\x57\x7d\xe7\x00\x96\x7e\xeb\x84\xf9\ \x8d\x3c\x05\x98\x1e\xd8\x2c\x34\xeb\xdf\xdd\x8f\x0d\xef\xed\x07\ \x90\x0c\xe0\xbb\xb6\xe5\xdf\xfe\x56\x36\x5d\xe5\x22\x22\x27\x27\ \x07\x25\x85\xfc\x48\x11\x1b\x0c\x06\x41\x17\xf1\xd3\xa8\xb5\x95\ \x56\xc1\x5a\x0d\x40\x10\xe5\x17\x7b\xba\x93\x71\xb6\xc6\x3e\xb1\ \x63\x38\x12\xeb\x3e\xa3\xaa\x29\x75\x80\x92\x59\xc8\xbf\xeb\xcb\ \x33\x28\xfa\xed\x3f\xe9\x2a\xa6\x08\x2b\x20\x62\x62\x62\x3c\x8e\ \x17\xf4\x14\x51\x89\x1d\x85\x45\xb9\xaa\x85\x90\x78\x77\x2d\x5d\ \xcc\x75\x54\xf5\xc5\xb1\x23\x78\xfa\x8d\x8d\xb6\xf7\x1b\x6f\xdb\ \x81\xfc\xac\xa6\x80\xa2\xaa\x93\x67\x2f\xe3\x87\xab\xde\xf6\xb9\ \xce\x3b\x53\x34\xf8\x76\xd2\x37\x16\x0f\x9f\x03\xe4\x30\x0c\x76\ \x55\x05\xbe\x67\x76\x26\x22\x0e\x5b\x49\xf7\x60\xf9\xb4\x66\x1d\ \xb4\xf5\xe6\xbe\x76\xd1\xb1\x32\x44\xc7\x08\x76\x66\xbf\x32\x9b\ \x60\x59\xe8\x04\x90\x22\x84\x26\x20\x93\xc4\xfa\xa5\x4b\x97\x30\ \x6a\x54\xf0\xb3\xda\xf8\x8c\xaa\x72\xbf\x06\x62\xbd\x3f\x62\x6e\ \xb8\xd4\x85\x82\x15\xcc\xbb\x1c\xfc\xec\x54\x91\xed\x75\xad\x63\ \x3d\xc5\x92\x61\xba\xe2\x05\xce\x9a\x43\x99\x58\x78\x8d\x1c\xf3\ \x66\x8c\x8b\xc8\xfe\x63\x12\xe5\x88\x4f\x31\x5f\xe6\xca\x58\x19\ \xa2\x63\x83\x13\x2c\x93\x31\xb2\xbe\xa8\x51\x6b\x4b\x5d\x05\x6b\ \x31\x00\xde\x3d\x4f\x77\x1d\x0b\xc8\x24\xb1\xfe\xeb\x43\x27\xa1\ \x9e\x11\x5c\x79\x60\xd7\xee\x0a\x4e\xc3\x6a\x00\xaf\x9d\x40\xbb\ \x7a\xf5\x98\xf3\xd3\xd0\x3b\xa8\xe6\x1e\x32\x27\xdf\xa7\xc5\x37\ \xe0\x9f\x65\x0e\x55\x19\x56\xeb\x80\x14\x97\x71\x6b\x4d\xd5\xa4\ \x08\x3c\xa7\xbc\xf9\x3a\x94\x3f\xb3\x05\xb5\x1f\x17\x47\xfc\x58\ \x86\x43\xd0\x9c\x48\xd6\xc0\x72\x6b\x12\x5a\x14\x8c\x77\xfd\xb1\ \x1a\xcf\xe5\xa0\xa5\x39\x93\x71\x13\x70\x97\xae\x01\x37\x36\x98\ \x00\x24\xa0\xf4\x50\xa3\x6d\xf9\xda\x09\x69\x58\x3d\x26\xc9\xef\ \xfe\x1c\xbb\x2b\x38\x0d\xab\x01\x80\x9c\x8f\x80\xe4\xc5\x6e\xdf\ \x79\x72\xdd\x4e\x7c\xf8\xd9\x09\xd6\x7f\xfb\xc9\xbe\xb1\x36\xf1\ \xfa\xd5\xb8\x6d\x58\xb6\x4e\x65\xff\xf0\xea\xd5\xc0\x8d\xaf\x02\ \x03\x1d\xa4\x08\x3c\xe6\xc3\xd6\xab\x78\x75\x3c\x43\x46\xc1\x46\ \xec\x8f\x5a\x5f\x44\x0d\x3b\xc8\x6e\x51\x45\x5e\x39\x80\x65\x7c\ \x38\x42\xc7\x26\x60\xe6\x88\x74\xfc\xa3\xec\xf7\x3e\xd7\x4f\xfe\ \xbf\x7a\xf4\x0c\xfb\xbe\x0b\xa4\xc8\x65\x68\xbf\x3a\xdb\x6f\x13\ \xd0\x69\x58\x8d\x8f\xa8\xca\x4a\x7b\x57\x1f\x2e\xb5\x74\x60\x4c\ \x46\x52\x50\xbf\xf5\xd0\x89\x8b\x00\x80\xc3\x27\x1b\x31\x34\x64\ \xc0\xbe\xe3\xe6\x89\x29\xea\x2e\xf4\xa2\x7f\xc0\x79\x38\xca\x91\ \x59\xcf\x22\x49\x3e\xc0\x8a\x8d\x0f\x76\x5f\xe1\xf5\xb3\x03\x3e\ \x3e\x3b\xd9\x37\x16\x5d\x26\xcf\xd3\x99\x5d\x30\xa4\xa1\x41\x3f\ \x42\x32\xa2\xf4\x72\xd1\x75\xb8\x72\x92\x7b\x0f\xf2\x5d\x5f\xd5\ \x63\xed\x7b\x87\xec\x4d\xfd\x08\x45\x58\xcb\xd6\x4f\xb1\x47\x49\ \xf2\x28\xc4\x26\xc9\x05\x67\x63\x8d\x5a\x1b\xe5\x51\xb0\x2c\xa2\ \x35\xcc\x27\xb1\xf2\xf7\x14\xd0\x60\x30\xa0\x5e\x6f\x42\x6e\x52\ \x1c\x26\x1c\x6a\x44\xbd\xde\xe8\x7c\x57\xb9\x66\xbc\xcf\x7d\x39\ \x56\x57\x70\x1a\x56\x03\x78\x2d\x59\xec\x8a\x5e\xaf\x87\xc1\x60\ \x10\xf4\x85\xd7\xdd\x67\xc0\x29\x5d\xab\x4d\x38\x9d\x85\xf4\x22\ \x85\x4b\x16\x8a\xef\x9c\x8b\x45\x57\x31\x2b\x29\x73\x73\xf1\x56\ \x5e\x09\x16\x10\xf9\x59\x6f\x82\xa0\x4a\xa3\xd6\x16\xb8\x35\x09\ \x1d\x38\x0a\x60\x66\x24\x8e\xcc\xb5\x22\xa8\xbf\x26\xe0\xe9\xd3\ \xa7\x31\x79\xf2\x64\xe4\x5a\xba\x96\xd4\xcd\x1d\x03\x00\xa8\xee\ \x35\x60\x76\xb5\xff\x92\xb6\x8e\x51\x95\x53\x52\x9d\x41\x54\xe5\ \x88\xc9\x64\x12\xfc\x85\x98\x14\xaf\xc4\xdc\xe9\xe6\xf9\x00\xad\ \xff\xef\x5b\x12\xfe\xe3\xb0\x8a\xe4\xe9\xfa\x56\x74\xf7\xe9\x71\ \x4a\xd7\x8a\xee\x3e\x03\x1a\x2f\x77\xe3\x62\x4b\x4f\xd8\x8f\x27\ \x10\x81\x22\x38\x89\xae\x0a\x1c\xdf\x2b\x3c\xac\x90\x1f\x89\x28\ \xab\xe6\x68\x3e\x0c\x86\x18\xc6\x62\x05\x00\x93\x27\x4f\xf6\xb8\ \x3c\x3f\x41\xe9\x33\xb2\xaa\xbd\x70\x0e\xcb\x5f\x2e\x05\x00\xcc\ \x1a\xd3\x84\x0d\xb7\x3a\x4c\xa0\x19\x68\xc9\x62\x53\x07\x86\xfb\ \x4f\x00\x4a\x2a\xf5\xc9\x06\xae\xa2\x19\x09\x3a\xda\x7b\xa0\xd7\ \x1b\xe8\x64\x44\x1e\xb7\x22\x70\x0a\x1f\x2b\x86\x2d\xca\x0a\xb4\ \xcb\x42\x28\xfc\xa4\xe4\x97\x68\x6a\x6b\x0d\x39\xaa\x02\x60\x9b\ \x08\x62\x48\xd5\x45\xae\x45\x10\xec\x47\x57\xf9\x8c\x04\x2b\x5c\ \x51\x96\x41\x1f\x83\x9a\x63\xf6\x63\xda\xf0\xc8\x13\x98\x95\x3b\ \x95\xb3\xfd\x59\x9b\x80\xdf\x55\x9d\xc3\x8b\x37\x38\x54\x84\x4c\ \x5b\x06\x64\x97\x33\xdf\xd0\x40\x35\x50\x3b\x8b\x3c\x4a\xa4\xb4\ \x74\x37\x20\x49\xc9\x5e\x29\x96\x98\xd8\x6e\xb7\x5c\x12\xe1\x97\ \xed\x9e\x16\xfa\xca\xc0\x95\x81\xc3\x3a\x59\xae\xe5\x8b\xb9\xec\ \xb5\xfe\xc1\x9e\x5d\x58\xff\xe1\x7b\xec\x44\x55\x1e\x66\xac\xb1\ \xe6\x5d\x5c\x9b\x35\x84\xf4\xd8\x7f\xbc\x11\xbf\xde\xb4\xdf\xf6\ \x7e\xea\xcc\x7f\x63\xc4\x28\x9d\xc7\x75\xa3\x63\x64\x50\xc6\xc9\ \xc8\x68\x9e\x83\xa6\xc5\x9e\x96\xbb\x3d\x25\x74\x84\xab\x28\x2b\ \x9c\x03\x97\xad\x05\xf6\xdc\x9e\x00\x06\x5a\xb2\xb8\x65\x1d\x70\ \xf1\x51\x8f\x1f\xe5\x3e\xb3\x86\xd3\x93\x37\x29\x27\x1a\xf9\x53\ \x47\x22\x5e\x99\x84\x6b\x67\x4e\x26\x41\xe4\x98\x33\xe7\x4e\x05\ \x14\x61\xf5\xf6\x0f\xe2\x27\xcf\xda\xc7\x88\xfe\x2c\xba\x1a\x75\ \x05\xde\x4b\x4f\x47\x45\xc1\xd6\xfb\x9c\xf0\xc8\x8f\x34\x6a\xed\ \xb6\x80\x05\x8b\x2b\xd1\x72\x15\x2c\xae\x9a\x84\xd6\x26\x60\xa0\ \xfd\xaa\x98\x44\x55\xae\x7c\x54\x37\x02\x3b\xb5\x59\x78\xe5\xf9\ \x9f\x00\x00\x64\x6d\x8f\x39\x7d\x6e\xed\x36\x60\x7d\xfa\xc5\xa7\ \x2e\x03\x73\xa6\x65\x21\x29\x5e\x89\x29\xaa\x74\xcc\x99\x36\x06\ \x49\x09\x4a\x4c\xc9\x49\x97\xec\xd5\xc2\x24\xe9\xfe\xee\xae\x1a\ \xbc\xbd\x43\x6b\x7b\x5f\xf9\xe6\x3d\x18\x3b\xca\x5c\x53\xdf\x50\ \x51\x8d\xfe\x15\xdb\xd0\x1f\x3b\x88\x27\x7f\xfb\x0f\xdb\x3a\x71\ \x49\x72\xc8\xe4\x34\xa7\xa4\x1f\x3a\x35\x6a\xad\xd7\x1a\x4d\x4c\ \x04\xab\x1c\x1c\x76\x26\x75\xad\xbe\x60\xe5\xe6\x79\xd7\xe0\xd9\ \x9f\xaf\x08\x68\x5b\x4f\xbf\xb1\x01\x5f\x1c\x73\x2f\x3a\xe1\xd4\ \x0c\x0c\xa4\x6c\x71\x6d\xbe\x79\x1e\x40\x2f\x14\xef\x53\xa1\x65\ \xc0\x3e\x47\xe0\x86\x5f\xde\xe5\x51\xac\xfc\xd1\xda\xda\x8a\xd6\ \xd6\x56\xd6\x6d\x7b\x42\xd7\x61\xfb\xdf\x3b\x60\x44\x7d\x53\x2f\ \x74\x4d\x3d\xe8\x1b\x30\x86\xd5\x03\xb3\x46\x26\x62\x4c\x46\x12\ \xe6\x4e\xcf\x42\x56\x46\x12\xc6\x8c\x4c\xe2\x75\x94\xe8\x4d\xb0\ \x96\xff\xf6\xdf\x68\x6a\xb5\x77\xad\x38\xfc\xfe\x83\x48\x4e\x88\ \xf1\xba\x1d\xd3\xd1\x26\xf4\xcc\x7d\x1d\x00\xf0\xc8\x1a\x73\x4a\ \x42\x80\xfd\xa0\xc2\xdd\x14\xf4\xa9\xe8\x7e\x05\x8b\xcb\xa6\x61\ \x20\x02\x06\x00\x8f\xfc\xf8\x4e\xdc\x71\xfd\x22\xaf\xcd\x3e\x4f\ \x8c\xce\x3c\x89\xad\x3f\xfc\xd2\x79\xa1\xbf\x42\x7b\xa6\x0e\xe0\ \x44\x9a\x7b\xab\x70\x40\x81\xe2\x7d\x13\x3c\x47\x87\x01\x8a\x55\ \x94\x6c\x18\x89\x09\xc9\xa2\x71\xb4\x4b\xcd\xad\xa8\xd5\x5d\x42\ \x73\x5b\x2f\xce\x36\x76\xa2\xa7\xdf\x80\x63\x67\x5a\xcc\x01\xea\ \x37\x97\xc3\x12\x25\x4e\xc9\x49\x47\x52\x82\x12\x73\xa6\x8d\xc1\ \x98\x8c\xc4\xa0\x47\x1e\x58\x05\xeb\x6c\x43\x07\x1e\x5c\xe3\x3c\ \x5d\x57\x30\x1d\x40\x87\x3b\x06\xd0\x95\xf1\x12\x00\xe0\xc9\x17\ \xb6\xa2\x3f\xce\x40\xc2\xe5\x99\x59\x1a\xb5\xb6\x3a\x64\xc1\x0a\ \xb7\x68\xb9\x0a\x58\x73\xc3\x58\xf4\x76\x33\xbf\xb8\x55\x93\x4e\ \x23\x39\xad\xdd\x1c\x9e\xf7\x0f\x61\x50\x3f\x84\x74\xa5\x01\x6b\ \xaf\xd1\x39\xaf\xe8\xf8\x74\xd0\xcb\x93\xbf\xbd\x17\x93\xf1\x97\ \x13\xa3\x7d\xee\x8f\xa9\x58\x89\x4d\xa4\xbc\x61\x34\x1a\xa1\xab\ \x6b\x60\xb4\x6e\x72\x72\x22\x46\x8d\x0e\xbe\xf9\x79\xe0\xf8\x79\ \xcb\xff\x0b\xe8\xea\xd5\xe3\xe4\xd9\x4b\x38\x59\x77\x19\xdd\xbd\ \x7a\x56\x7e\x4b\x52\x42\x0c\x8e\xbc\xff\x20\x7b\xed\x9d\xe8\x52\ \x00\xc0\x3b\x3f\x3d\x80\x83\xdf\x3e\x4b\xb9\x2c\x3b\xdb\xbd\x25\ \xda\x83\x15\x2c\x15\x80\x3a\xd1\x84\x9e\xb3\xbc\x0f\x58\xde\x5e\ \x9f\x8e\x6d\xf5\x23\x3d\x07\x5f\x83\x43\x01\x89\x95\x54\x44\xca\ \x13\x7a\xbd\x01\xe7\xcf\x79\xce\xd1\x8d\x1b\x9f\x85\x98\x18\xa5\ \x64\xaf\xce\x96\xd4\x52\x44\xf7\x02\x67\xae\xb8\x84\x8d\x0f\xff\ \x17\x71\x02\x1c\xe3\x17\xce\xa6\x60\xc0\x82\x65\x11\xad\x75\x00\ \x56\xd1\xcd\xc0\xcc\x8b\x2b\x96\x7a\x14\xab\x28\xf9\x30\x12\xe3\ \x93\xc9\x40\x16\xce\xd4\xd6\xdb\x5e\xc7\xc4\x28\x31\x6e\x3c\x3d\ \xe5\xb4\xd2\xfc\xad\x97\x11\x7b\xaa\x1f\xfd\xb1\x83\x78\xe6\xa5\ \xad\x82\x1c\x9c\x1c\x2e\xb1\x0a\x58\xb0\x2c\xa2\xa5\x03\x20\xf9\ \xc1\x55\xae\x62\x45\x22\xe5\x5f\xb4\x46\xa4\xa7\x62\xc4\x88\x14\ \x32\x86\x07\x2e\xff\x6c\x33\x94\x1f\x98\x1b\x30\xc5\x1b\xde\x47\ \x4c\xbc\x34\x84\x2b\x10\xb1\x0a\x4a\xb0\x2c\xa2\x25\xe9\x52\x98\ \x25\x0f\x2d\x46\x6c\x7f\x34\xe4\x9d\xc5\x82\x15\x29\xd3\xd1\x26\ \x0c\x77\xd8\xcb\xd4\x18\xab\x74\x18\xae\xef\xc0\x90\xae\x03\xc6\ \xcf\x75\x7e\xbf\x9f\x32\x58\x4a\x2a\xc3\x01\xbd\x6f\x7d\x09\xe3\ \x7d\x3b\x01\x00\xeb\x9e\xfd\x0f\x9a\x27\x76\x8a\xf9\xe7\x4e\xd0\ \xa8\xb5\xba\x40\xbe\x10\x94\x60\x49\x59\xb4\x9e\x7c\xe2\x16\xa4\ \xb6\xba\x57\x3c\x35\x4e\x4f\x86\x69\x5c\x1c\x64\x9d\x46\xc4\x29\ \xed\x4f\xa7\x98\x5c\xfc\x5c\x51\x37\xc5\xfe\x74\xee\xac\xe3\xeb\ \xa9\x97\x3c\x2e\x67\xc2\x35\xbb\x72\x71\xeb\xfb\xf6\xe1\x54\x31\ \xcf\x15\x40\xb1\x40\x05\x00\xb6\xff\x4e\x76\xa9\x72\xff\xfd\x43\ \x16\x61\xb4\xd2\x7a\xe2\x24\x12\xb7\x36\xb3\xfe\xfb\x07\xaf\x76\ \x4e\xe6\x9b\xc6\xc5\x41\x7e\xde\xfc\x34\xb9\xcf\xe0\x7d\xfc\x67\ \xca\x91\x41\x5e\xf9\xdc\xdb\x0f\xfd\x1f\x4e\xcc\x6a\x10\xdb\xa5\ \x74\xbd\x46\xad\xad\x0c\xf4\x4b\x41\x0b\x16\x45\x5a\xee\xa4\xb5\ \x24\x60\xce\x3e\x95\xc7\xcf\xac\x22\xd1\x38\xae\x03\x03\xf1\x83\ \x64\x2c\x42\xca\x2c\xd7\xa8\xb5\xe5\xc1\x7c\x31\x24\xc1\x22\xd1\ \x22\x08\x22\x5c\x62\x05\x00\x21\x8f\xbc\x0c\x34\x69\x46\x10\x04\ \x89\x55\xb0\x84\x1c\x61\x51\xa4\x45\x10\x04\x03\x82\xca\x59\x71\ \x26\x58\x16\xd1\xea\x00\x8f\xe7\x36\x24\x08\x22\x22\xa4\x69\xd4\ \x5a\x56\xa6\x78\x62\x55\xb0\x2c\xa2\x55\x09\x60\x01\x9d\x23\x82\ \x20\xd8\x4e\x19\xc9\x38\x38\xc0\x02\x38\xcc\x23\x46\x10\x04\x89\ \x15\x5b\xb0\x1e\x61\x39\x44\x5a\xa9\x00\xda\xe9\xb4\x11\x84\xe4\ \xf0\x59\xd3\x8a\x97\x82\xe5\x20\x5c\x94\x8c\x27\x08\xe9\xf0\xa8\ \x46\xad\x5d\xc7\xd5\xc6\x39\x17\x2c\x8b\x68\x55\x23\x42\x73\x1d\ \x12\x04\x21\xdc\x26\xa0\x2b\xb2\x30\xfd\x90\x7c\x00\x13\xe8\x94\ \x12\x84\x68\x9b\x80\x61\xe9\x8f\x19\x96\x08\x8b\x9a\x88\x04\x21\ \x5a\x58\xe9\x5f\xc5\x5b\xc1\xb2\x88\x56\x21\x80\x4d\x74\xae\x09\ \x82\x9a\x80\xbc\x17\x2c\x8a\xb6\x08\x42\xd0\x84\x3c\xc4\x46\x90\ \x82\x65\x11\xad\x7c\x00\x5f\x93\x0f\x10\x04\x45\x55\xbc\x17\x2c\ \x07\xe1\xa2\x61\x3d\x04\xc1\x5f\x58\x1b\x5e\x23\x0a\xc1\xa2\x66\ \x22\x41\xf0\x92\xcd\x1a\xb5\xb6\x90\x2f\x07\xc3\x3b\xc1\xa2\x66\ \x22\x41\xf0\x02\xce\x7a\xab\x8b\x4e\xb0\x1c\x84\xab\x1c\x1c\xce\ \x3a\x4d\x10\x84\x3b\x7c\xae\x71\xc7\x6b\xc1\x72\x10\x2e\xea\x29\ \x4f\x10\xdc\xc3\x8b\x3c\x95\xe0\x05\xcb\x41\xb8\x28\x31\x4f\x10\ \x12\x14\x2a\x41\x0a\x16\x45\x5c\x04\x21\x4d\xa1\x12\xb4\x60\x91\ \x70\x11\x84\xb4\x84\x4a\x14\x82\xe5\x20\x5c\xa5\x00\x4a\xc8\x0f\ \x09\xc2\x3b\x62\x98\x30\x46\x14\x82\xe5\x20\x5c\xd4\x1d\x82\x20\ \x9c\x39\x6a\xa9\x96\x22\x0a\x44\x25\x58\x2e\xe2\x45\x09\x7a\x42\ \xca\x44\x6c\xbc\x1f\x09\x56\x68\xc2\xb5\x1a\xc0\xab\xe4\xbf\x04\ \x35\xfb\x48\xb0\x28\xea\x22\x08\x8a\xa6\x48\xb0\x38\x16\x2e\x15\ \x80\x3a\xf2\x73\x42\xc0\x88\x2a\x37\x45\x82\x45\x4d\x46\x42\x7c\ \xf0\x72\x7c\x1f\x09\x56\xe4\xc4\xab\x14\xd4\x3d\x82\xe0\x19\x62\ \xcf\x4b\x91\x60\xb1\x23\x5e\x8b\x01\x7c\x44\x96\x20\x28\x92\x22\ \xc1\x12\x9a\x78\xd1\xa4\xb0\x04\xd7\xf0\xaa\xee\x14\x09\x96\xb8\ \x04\xac\x1c\x54\xf6\x86\x08\x1d\xc1\x0e\x91\x21\xc1\x12\xb6\x80\ \xe9\x00\xe4\x90\x25\x08\x3f\x48\xa6\xfb\x01\x09\x16\x09\x18\x41\ \x02\x45\x82\x45\x82\x15\x16\x01\x5b\x07\x60\x15\x59\x42\xd4\x74\ \x02\xc8\xd7\xa8\xb5\x3a\x32\x05\x09\x35\xda\x8a\x1c\x00\x00\x20\ \x00\x49\x44\x41\x54\x96\x18\x45\xac\x12\xc0\x02\xb2\x04\x45\x4f\ \x04\x09\x16\x45\x62\x04\x9b\x91\x53\x81\x46\xad\xad\x26\x53\x90\ \x60\x11\xcc\x84\xac\x1c\xf4\x54\x92\x6b\xea\x01\xac\xd6\xa8\xb5\ \xdb\xc8\x14\x24\x58\x04\x37\x42\x96\x0a\xa0\x94\xa2\x32\xc6\x1c\ \x05\x50\x4a\xa2\x44\x82\x45\xf0\x57\xd4\x0a\x00\x14\x4a\x20\x42\ \x3b\x0a\xa0\x5c\xa3\xd6\xae\xa3\xb3\x4e\x82\x45\x48\x4f\xe4\xac\ \x7f\xf9\x08\x6f\x49\x9e\x2a\x00\xd5\x00\x74\x00\xaa\x35\x6a\x6d\ \x25\x9d\x11\x82\x04\x8b\x08\x44\xc0\xf2\x01\xa4\x5a\x04\x0c\x0e\ \xff\x55\x08\xbc\xbf\x59\x95\xe5\xbf\xce\xf1\x8f\x84\x89\x20\xc1\ \x22\x98\x8a\xd1\x62\x8b\x08\xf1\xb1\x9b\x45\x15\x80\x4a\x00\x95\ \x24\x6a\x04\x09\x96\xb4\x9a\x79\x8b\x61\xce\x67\x89\xa5\xea\x6a\ \x15\xcc\x79\xab\x72\x3a\xc3\x24\x58\x84\xb0\xa3\xa6\xd5\x90\x66\ \x57\x08\x4a\xbe\x93\x60\x11\x3c\x17\xa8\xc5\x30\x77\x6f\xa0\x49\ \x65\x3d\xf3\x1a\xcc\xdd\x19\xa8\x32\x02\x09\x16\x11\xa1\xe6\xdd\ \x3a\x12\xa8\xa0\x29\xd3\xa8\xb5\xa5\x64\x06\x12\x2c\x82\x3b\x91\ \x2a\x05\x95\x6f\xe6\xaa\x09\x59\x48\x43\x6f\x48\xb0\x88\xd0\x45\ \xaa\x1c\x34\x24\x27\x9c\x74\x5a\xc4\x8b\x7a\xc2\x93\x60\x11\x24\ \x52\x24\x5e\x04\x09\x96\x18\x44\x8a\xa6\x1a\xe3\x37\xf5\x30\x57\ \x6c\xd0\x91\x29\x48\xb0\xa4\x2a\x52\x2a\x98\x87\xa0\xd0\x4c\xd4\ \xc2\xe2\x35\x8d\x5a\xbb\x9a\xcc\x40\x82\x25\x15\xa1\xa2\x9a\x57\ \xe2\x69\x32\x52\x85\x51\x12\x2c\x51\x8a\x54\xaa\x25\x9a\xa2\x3a\ \xef\xe2\xe4\x51\xea\xa8\x4a\x82\x25\x06\xa1\x2a\x00\xb0\x87\x2c\ \x21\x19\x68\x6e\x41\x12\x2c\x41\x0a\x55\x21\x80\x4d\x64\x09\xc9\ \x52\xaf\x51\x6b\x55\x64\x06\x12\x2c\x12\x2a\x82\x84\x8b\x04\x8b\ \x20\xa1\x22\x48\xb8\x48\xb0\x48\xa8\x08\x82\x84\x8b\x04\x2b\xc2\ \x42\xa5\x02\x50\x47\x96\x20\x82\xa4\x4a\xa3\xd6\x16\x90\x19\x48\ \xb0\xb8\x16\xaa\x54\x98\x4b\xfa\x52\x67\x4f\x82\x0d\xa8\x6a\x04\ \x09\x16\x67\x62\x55\x09\x9a\xa9\x99\xe0\x86\x59\x54\x2d\x82\x04\ \x8b\x2d\xa1\xa2\x71\x7e\x44\x38\xe8\xd4\xa8\xb5\xa9\x64\x06\x12\ \xac\x50\x9a\x7f\xed\x64\x09\x22\xcc\xd0\x58\x45\x12\x2c\x6a\xfe\ \x11\x82\x63\x02\x8d\x53\x24\xc1\xf2\x27\x54\x2a\xd0\xd3\x3f\x82\ \x3f\xd0\xd3\x44\x12\x2c\xaf\x62\x55\x0d\xaa\x91\x4e\xf0\x13\x4a\ \xca\x93\x60\x51\x54\x45\x50\xb4\x45\x82\x25\x2c\xb1\xda\x06\xe0\ \x76\xba\x16\x08\x01\x91\x26\xe5\xe9\xca\x64\x12\x16\xab\x61\x12\ \x2b\x42\x80\xb4\x5b\x8a\x40\x52\x84\x25\x11\xa1\x2a\x04\x8d\xff\ \x23\x84\x8f\x24\xfb\x6d\x49\x4a\xb0\x28\xb1\x4e\x88\x10\x49\x25\ \xe4\x25\xd3\x24\xb4\x34\x01\x49\xac\x08\xb1\xf1\xb5\x94\x9a\x88\ \xa2\x8f\xb0\x8a\x2a\xf2\xf2\x01\x7c\x4d\x7e\x4d\x50\x13\x91\x22\ \x2c\xbe\x8b\x55\x39\x89\x15\x21\x11\x52\x2c\xad\x08\x8a\xb0\x04\ \x2a\x56\x1d\xa0\x32\x30\x84\x34\x11\x6d\x5e\x4b\x94\x11\x96\xe5\ \x4e\x43\x62\x45\x48\x95\xaf\x8b\x2a\xf2\x4a\x29\xc2\xe2\xbf\x50\ \x51\x85\x05\x82\xb0\x73\x54\xa3\xd6\xe6\x53\x84\xc5\x4f\xb1\xca\ \x27\xb1\x22\x08\x27\x66\x5a\x52\x23\x24\x58\x3c\x13\xab\x42\x50\ \x72\x9d\x20\x3c\x21\xaa\x64\xbc\xe0\x05\xcb\xf2\x24\x90\x7a\xae\ \x13\x84\xef\xeb\x44\x14\xa2\x25\xe8\x1c\x16\x15\xda\x23\x88\x80\ \x11\xf4\xe0\x69\xc1\x0a\x16\x0d\xb3\x21\x08\xe9\x89\x96\x20\x9b\ \x84\x24\x56\x04\x11\x12\xed\x96\x27\xea\x24\x58\x61\x10\xab\x0e\ \x12\x2b\x82\x60\x45\xb4\x04\xd7\xe5\x41\x50\x82\x45\xbd\xd7\x09\ \x82\x55\xbe\x16\x9a\x68\x09\x46\xb0\x2c\xcd\x40\x12\x2b\x82\x60\ \x5f\xb4\x04\xd3\x3c\x14\x84\x60\x51\xce\x8a\x20\x38\x6f\x1e\x0a\ \x42\xb4\x78\x2f\x58\x24\x56\x04\x41\xa2\x25\x08\xc1\xb2\x74\x0a\ \x25\xb1\x22\x88\x30\x89\x16\x09\x56\xf0\x62\x55\x0a\x60\x19\xf9\ \x10\x41\x84\xf5\xba\xe3\x75\xc7\x4c\x5e\x76\x1c\xa5\x89\x22\x08\ \x22\xb2\x68\xd4\xda\x28\x12\x2c\x66\x62\x45\x25\x8d\x09\x22\xf2\ \xf0\xb2\xe4\x32\x1f\x9b\x84\x24\x56\x04\x11\x79\x52\x2c\x0f\xbc\ \x48\xb0\x84\xda\x7e\x26\x08\x89\x31\x93\x6f\x95\x4b\x79\xd3\x24\ \xa4\x5e\xec\x04\xc1\x5b\x78\x53\x23\x9e\x17\x11\x16\xf5\x62\x27\ \x08\x5e\xc3\x9b\x34\x4d\xc4\x05\xab\xa8\x22\x6f\x35\xa8\xaf\x15\ \x41\xf0\x1a\xbe\xa4\x6b\x22\xda\x24\xa4\x49\x23\x08\x42\x50\x44\ \xfc\xc9\x61\xa4\x23\x2c\x12\x2b\x82\x10\x0e\x29\x45\x15\x79\xeb\ \x24\x19\x61\x51\x92\x9d\x20\x04\x4b\xc4\x92\xf0\x11\x89\xb0\x2c\ \x63\x04\x49\xac\x08\x42\x98\x44\x2c\x09\x1f\xf6\x08\xab\xa8\x22\ \x4f\x05\xa0\x8e\xce\x39\x41\x08\x9a\x88\xe4\xb3\x22\x11\x61\x91\ \x58\x11\x84\xf0\x89\x48\x3e\x2b\xac\x11\x16\xe5\xad\x08\x42\x74\ \x84\x75\x06\x9e\xb0\x45\x58\x96\xfe\x56\x24\x56\x04\x21\x2e\xc2\ \xfa\xa4\x3f\x9c\x4d\xc2\x57\xe9\xdc\x12\x84\xf8\xb0\x4c\x68\x2c\ \x9e\x26\x21\x0d\x6a\x26\x08\xd1\x13\x96\xae\x0e\x9c\x47\x58\x7c\ \x1b\xed\x4d\x10\x04\x27\x84\xa5\xab\x43\x38\x9a\x84\x25\x74\x2e\ \x09\x82\x9a\x86\xbc\x6f\x12\xd2\x53\x41\x82\x90\x1c\x13\x34\x6a\ \xad\x4e\x70\x11\x56\x51\x45\xde\x62\x12\x2b\x82\x90\x1c\x9c\xf6\ \xb3\xe4\xb2\x49\xf8\x11\x9d\x3b\x82\x90\x64\xd3\x90\xb3\x0e\xa5\ \x32\x8e\x0e\xb8\x9a\x4e\x1b\x41\x48\x96\x55\x5c\x6d\x98\xf5\x1c\ \x16\xd5\xb8\x22\x08\x02\x1c\x8d\x35\xe4\x22\xc2\x22\xb1\x22\x08\ \x22\xc5\x32\x65\x1f\x7f\x05\xcb\x32\x01\x2a\x41\x10\x04\xc0\x41\ \xdf\x2c\xb6\x23\x2c\x9a\xad\x99\x20\x08\xc7\x20\xa6\x94\x97\x82\ \x65\x29\xca\x47\x10\x04\xe1\x08\xab\x1d\xc7\x59\x4b\xba\xd3\x78\ \x41\x69\x31\xf1\x54\x86\xef\xcf\x6b\x46\xb1\xb2\x1d\x2b\x67\xa7\ \x5c\x06\x00\xec\xbe\x5d\x4b\xc6\x17\x1e\x55\x1a\xb5\xb6\x80\x37\ \x82\x65\xe9\x92\xbf\x80\xce\x8b\x6f\xb2\xce\xa5\x22\xae\x3f\x9a\ \xf1\xc5\xed\xed\x62\x9e\xc0\xf0\x22\x17\x2b\x4f\xbf\xb9\x85\x9c\ \x49\x60\x68\xd4\xda\x28\x36\xb6\xa3\x60\xe9\x78\x48\xac\x3c\xf0\ \xe2\x8a\xa5\x92\xf8\x9d\xf2\x2b\x33\xa1\xb8\x7d\x2a\xa7\xfb\xf8\ \xcf\xff\xfe\x0a\xa3\xc9\x40\x4e\x25\x50\x8a\x2a\xf2\x74\x1a\xb5\ \x56\x15\x71\xc1\x2a\xaa\xc8\xd3\xd1\xe9\x70\x67\xe5\x2b\x05\x92\ \xf8\x9d\xf2\x2b\x33\x91\x78\xf8\x7e\xce\xf7\xb3\xb3\xe2\x41\x72\ \x2a\x61\x93\xc3\xc6\x46\x64\x7c\x39\x10\xb1\x21\x95\x66\x5b\x38\ \xc4\x8a\x10\x4f\x94\x15\x51\xc1\xa2\xe8\xca\x33\xb1\x7d\xd1\x64\ \x04\x82\xe0\x20\xb8\x91\x45\xfa\x00\xc4\xc8\x9c\x7d\x2a\x32\x02\ \x41\x70\x10\xe4\xc8\x22\xb5\x63\x31\x93\xd6\x92\x40\x46\x20\x08\ \x0e\x82\x1c\x59\xa4\x76\x2c\x66\xc6\x9c\x4f\x25\x23\x78\xa0\xba\ \xba\x1a\x75\xa7\xf6\x00\xc7\xa3\xdc\xff\x0c\x74\xff\xa3\x28\x8b\ \x23\xc1\x0a\xe7\x2c\x19\x42\xa4\x3f\x7e\x50\x32\xbf\xd5\x74\xb4\ \x89\xf1\xba\xf9\xf9\xf9\x98\x30\xe5\x7a\x20\xd7\xc3\x10\xb3\xd6\ \x75\xe4\x38\x14\x65\x71\x16\x61\x51\xbf\x2b\x1f\x1c\xbe\x46\x3a\ \xd1\x82\xb1\x2a\x88\xdf\x1a\xeb\x61\x10\x7f\x3f\x95\x50\x93\x58\ \x94\x55\x1e\x16\xc1\x8a\xc4\xf4\xd4\x42\xe3\xc4\xac\x06\xe9\x08\ \xd6\xf6\x1a\x76\x36\xd4\x5b\x45\x8e\x23\x2d\x96\x85\x2b\xc2\x5a\ \x45\xb6\x26\x6c\x82\xf5\xb9\x8e\x8c\x40\x04\x1b\x65\xad\xe6\x54\ \xb0\x2c\x13\x4b\x10\x04\x3b\xa4\x2d\x03\x66\xd0\x98\x79\x09\x13\ \xf0\x6c\xf0\x81\x46\x58\x34\xb1\x04\x43\xf6\x2d\xac\x25\x23\xf8\ \x13\xab\xec\x72\xf3\x6b\x12\x2d\x29\x47\x59\x2a\xae\x9b\x84\x04\ \x03\xa4\x94\x78\x1f\xee\x18\x08\xfc\x4b\x56\xb1\xb2\x42\xa2\x25\ \x55\x02\x7a\xda\xc2\x58\xb0\xa8\x2b\x43\x60\x5c\x1c\xdf\x21\x99\ \xdf\xaa\x5f\xff\x25\x9d\x70\x22\x58\x02\x9a\xbb\x34\x90\x08\x8b\ \xba\x32\x10\x1e\x31\x84\x41\xb0\xe2\x94\x49\x64\x68\xf1\x36\x0b\ \x19\xf7\x3c\x90\x31\xdc\x60\x21\x99\x35\x70\x3a\xd2\xfb\xa4\xd1\ \x24\xec\x1c\xe0\x6c\xdb\x43\xf5\x1d\x30\x56\xe9\xf0\x48\x6c\x29\ \xae\xd9\x95\x8b\x85\xdb\xf3\x18\x57\x29\x25\x04\x03\xe3\x9e\x07\ \x8c\x2a\x8e\x52\xf9\xe3\xe0\xb8\x66\x57\x2e\x6e\x7d\x3f\x9f\x0c\ \xc1\x32\x9f\xfd\xf0\x04\x95\x4a\x16\x1f\x13\x34\x6a\xad\xce\xdf\ \x4a\x0a\xb2\x13\x77\xec\x5b\x54\x4b\x82\x15\x22\x75\x96\x5a\xee\ \x80\xbd\xae\xfb\xd9\xa9\x97\xc8\x30\xe2\xa3\x12\x80\x2a\x64\xc1\ \xa2\x9e\xed\xd2\xe4\x32\x80\xcb\x2e\xd1\xf7\x49\x97\x38\xfb\x04\ \xcc\x0b\x0c\x31\x26\x0c\xc9\x86\x50\x17\x44\x1d\x30\x45\x7a\x1f\ \xb2\x7e\xb3\x1b\x32\x09\x8d\xbf\x24\x3c\xc2\x68\x7c\xa1\xdf\x26\ \x21\x35\x07\x43\x23\x98\xba\xee\x27\x5c\xce\x49\x3d\x80\xbe\x61\ \x17\x31\x81\x6f\x31\x11\x1a\xca\xc4\x28\x64\x6d\xfc\x07\x39\x8c\ \xb4\xf9\x91\x46\xad\xdd\x46\x4d\x42\x96\xe9\x3b\x32\x06\x97\xd7\ \xcf\x67\xb4\xee\x5d\x18\x22\x83\x31\xc0\xd0\x33\x8c\xfa\xc2\x25\ \xc8\xfa\xf5\x67\x50\xfa\xe8\x12\x92\x14\x93\x81\xd5\xd7\xbd\x17\ \x96\x63\xea\xe9\xf7\x7c\x1c\x17\xbb\x3c\x77\x0a\x3e\xdd\xb2\xdf\ \xe3\xf2\x23\x8d\xff\xa4\x13\xcc\x8c\x72\x00\xa9\x41\x47\x58\x96\ \x11\xd5\xcb\xc8\x8e\xce\x18\x5f\x5e\x89\x86\x93\xad\x92\xb6\xc1\ \x8c\x05\xce\xe9\x86\x19\x05\x13\x9c\xde\x5f\xe9\xe7\x73\x2b\x0f\ \xcd\xd2\xa0\xce\xa5\x44\x8d\x2f\xd1\x7a\x6e\xd1\x6e\xa7\xf7\x87\ \x0f\x1f\xc6\x9c\x39\x73\x70\xe2\xc4\x09\xa4\xa6\xa6\x62\xcc\x98\ \x31\xb6\x65\x52\xa7\x5f\xdf\x03\xd3\x90\xd1\xbd\xb9\xdf\x5b\xef\ \x71\x06\xa2\x8b\xdd\xa7\xd0\xad\x6f\x8b\xa8\xd0\xfa\x9b\x0e\xcc\ \x9f\x60\x51\x73\xd0\x03\x19\x09\x13\xf1\x8b\x2b\x37\x32\x5a\x77\ \x60\x60\x00\x4d\x8d\x0d\x18\xd6\x2b\xf0\xcd\xd1\xf3\x18\xea\x55\ \xe2\x54\x65\x0b\x00\xe0\xcc\xc1\x8b\x41\xed\x7f\x54\x4e\x2a\x46\ \xab\xec\x37\xa2\x51\xaa\x54\x8c\x56\xa5\xd9\xde\x8f\x76\xfb\x3c\ \xcd\xe9\x3d\xdf\xd8\x5d\xfe\x35\x5e\xbd\xdb\x79\xd4\x57\x4e\xf9\ \x56\xb7\xf5\x7e\x7a\xe5\x8b\xc8\x1d\x7d\x95\x73\xb4\xdb\xd7\x87\ \xf8\xf8\x78\xa7\x65\x26\x93\x09\x72\xb9\x9c\x1c\x35\x44\x6a\x2f\ \x1d\xc0\xfb\x47\x9f\xe5\x55\xb3\x90\x9a\x84\x41\x70\xb9\xf7\x2c\ \xe3\x75\x63\x63\x63\xa1\x9a\x78\x05\x00\x60\xc2\x34\x73\x5e\xf1\ \x86\x15\xee\xeb\xc9\x64\x32\x4c\xbc\x62\x9c\x24\xed\xb9\xb0\x70\ \x16\x26\xe6\x67\xe1\xe1\xd9\x1a\xdb\xb2\xe6\x97\xae\xc3\xe8\xa7\ \x3e\xf7\xfa\x9d\xa1\xa1\x21\x74\x75\x75\xa1\xaf\xaf\x0f\x1d\x1d\ \x9e\xa3\xb1\x98\x98\x18\xdb\x6b\xa5\x52\xe9\xb6\x4c\x2e\x97\x93\ \xb0\xf9\x20\x77\xd4\x3c\xde\x35\x0b\x15\x7e\x9a\x83\x44\x98\x18\ \x1a\x92\x76\xae\x6b\x62\x7e\x26\x46\xe5\xa4\xe2\x52\xbd\x59\x7c\ \x06\x6a\xdc\x3b\x87\xb6\xf6\x34\x20\xc1\x34\x96\xf1\x36\xf5\x7a\ \xbd\xdb\xeb\xee\xee\x6e\x4e\x8e\x5f\x2e\x97\x43\xa1\xb0\x5f\x4e\ \x0a\x85\x02\x32\x99\xcc\xa3\x78\x3a\x0a\x28\xdf\x99\x37\x6e\x09\ \x0e\x9c\xdf\x1a\xce\x5d\xa6\x04\xd5\x24\xa4\xe6\xa0\x6f\x66\x67\ \x2d\x46\x81\x6a\x25\xab\xdb\x9c\x94\x4b\x65\xf2\x6f\x91\x3d\x6f\ \x6f\x7a\x3f\xb2\x1f\xf1\xb3\x1b\xed\x36\x1f\xf5\x23\xcc\xca\xf8\ \x11\x39\x9f\x8f\x48\xd2\x55\x0c\x65\x32\x19\xa2\xa3\xa3\x43\x8a\ \x2a\x7f\xb3\x6b\x61\xb8\x7f\xd2\x2c\x8d\x5a\x5b\x4d\x4d\x42\x16\ \x39\x72\x71\x1b\xeb\x82\xd5\xdf\x3f\x80\xb8\xb8\x58\x32\xae\x35\ \xa2\x7a\x63\x2e\xe2\xff\x44\x4f\xd8\x02\x89\x24\x3d\xbd\x0f\x95\ \xbe\x4e\x23\xe2\x53\xc2\x2a\x15\xe5\x00\x3c\xf6\xb8\x96\x79\x89\ \xae\x0a\xc9\x0d\xc2\x4f\x47\x7b\xb7\xe4\x6d\xf0\xe8\x5b\xf6\x08\ \x6a\xa8\x9f\x26\xa4\xe5\x03\xc3\xc3\x80\xa1\x3f\xac\x29\x8b\x99\ \xde\x3e\xf0\x36\xf8\x99\x7a\xb7\x33\xb9\xb3\x99\x7a\x59\xdd\x5e\ \x6f\x6f\x9f\xe4\x6d\xba\xb0\x70\x16\x39\x16\x0f\x19\xd4\xf3\x23\ \xc7\xea\x4d\xb0\x52\xe8\x14\x31\x6b\x16\x12\xdc\xd2\x77\x64\x0c\ \xf3\x75\xfb\x48\xf0\xc5\x42\x51\x45\x5e\xa9\xa7\xe5\x0a\x0f\x2b\ \xd2\x2c\xa0\x01\x08\xd6\xfc\xec\x9f\x91\x21\x58\x66\xc6\x02\x15\ \x8e\x5b\xa6\x0f\xeb\x3f\x32\xc6\x29\xf1\xee\x8b\x0b\x17\x2e\xe0\ \xf4\xe9\xd3\x61\x39\xc6\xf4\xf4\x74\x46\xcb\xe2\xe2\xe2\xdc\xfa\ \x89\x79\x5b\x97\x70\xa2\x04\x40\xa9\x5f\xc1\xf2\xb4\x12\xe1\xa5\ \x49\x68\xec\x65\x7d\x9b\x83\x83\x46\x44\x47\x4b\xfb\x59\xc8\xc2\ \x65\xb3\x6c\x82\xd5\x77\x78\x0c\xd2\xef\x31\x2f\xbf\xd8\x5b\x83\ \x59\x3c\x29\x85\xd5\xda\xda\xca\x68\x59\xa4\x61\x22\xac\x71\x71\ \x71\x18\x37\x4e\x18\x7d\x00\x3d\x35\x09\x69\x1a\xaf\x08\x42\x79\ \x2c\xe7\x3c\x56\x20\x89\x77\x6a\x12\x7a\x16\x56\xd7\xbf\xd3\xa7\ \x4f\x3b\xfd\x5d\xb8\x70\x81\xaf\xcd\xc2\x54\x26\x82\x45\x44\x52\ \xb0\x7a\xfa\xc9\x08\x41\xd2\xdf\x4f\xb6\x13\x19\xa5\x3e\x05\x8b\ \xf2\x57\x81\x73\xa1\xeb\x38\xcb\x17\xdd\x00\x19\x95\x20\xbc\xb4\ \xf6\x5c\x93\x25\xab\xc9\x46\x81\xd1\xa5\x6f\x06\x30\x43\x30\xc7\ \x6b\x32\x99\x6c\x4d\x27\x93\xc9\x04\x83\xc1\x80\x51\xa3\x46\xd1\ \x89\x24\x04\x81\xab\x60\x95\x90\x49\x02\xa3\x53\xdf\xcc\xdf\x83\ \x7b\x29\x15\xd0\x77\x3a\x2d\x92\x03\x48\x02\x80\x65\x7b\x00\x55\ \x81\xa8\xce\x05\x1f\x93\xde\x04\xbb\x50\x0e\x4b\xcc\x3c\xe5\x63\ \x6e\xc4\xca\x52\xb2\x8f\x08\x30\x99\x4c\x30\x1a\x8d\x30\x1a\x8d\ \xd0\xeb\xf5\xd0\xeb\xf5\xe8\xeb\xeb\x43\x5f\x5f\x1f\x67\x03\xbd\ \xc3\x49\x51\x45\xde\x6a\x5f\x11\x16\x21\x15\xea\xab\xc8\x06\x0c\ \x99\x32\x65\x0a\x12\x12\x12\xdc\x96\x8f\x19\x33\xc6\x6d\xe0\x31\ \x00\xa4\xa4\xa4\x78\x1c\x60\x2c\x93\xc9\xc0\x64\x96\x2a\xb6\x58\ \xb3\x66\x0d\x7a\x7b\x7b\x3d\x1e\xbb\x80\x28\x84\xc3\xc8\x1b\x85\ \x83\x92\x15\x90\x6b\x06\xce\xb8\xe4\x2b\xc9\x08\x1c\xf3\xcc\xa2\ \x4f\x2c\xcd\xd9\x18\x9f\xeb\xad\x5c\xb9\x92\xd7\xbf\x23\x9c\x62\ \x05\x00\x8f\x3f\xfe\x38\xfe\xf0\x87\x3f\xc0\x68\x34\x3a\x95\xbe\ \x11\x18\x33\xbd\x35\x09\x0b\xe9\xd2\x08\x9c\xe4\x98\xd1\x64\x04\ \x8e\x91\x23\xc6\xaf\x58\x11\x9e\x05\x72\xde\xbc\x79\x30\x18\x0c\ \xa2\xf9\x4d\x8e\xb2\x4b\xb5\xdb\x83\x12\x2c\x01\x3d\x61\x1b\x3d\ \x13\xe8\xd0\xb9\x25\xe2\x09\x9e\x08\xb3\x4b\xad\x2a\x6b\x5d\x2b\ \x85\x42\x61\x5b\xee\xaf\xf0\x5f\x6f\x6f\x2f\xba\xbb\xbb\x39\x89\ \xe6\x86\x4c\xc3\x90\xc9\xa3\x78\x23\x58\x84\x58\xc9\x59\x00\x14\ \x56\xda\xdf\xd7\x6c\x03\xfe\x4e\x85\xf0\xbc\x11\x1d\x1d\x8d\xa8\ \xa8\x28\x37\xe1\xb0\xc2\xe7\xea\xa1\x09\x09\x09\xb6\x9c\xd5\xd0\ \xd0\x10\xab\xbd\xff\x87\x23\x54\xd2\xb3\xa8\x22\xaf\x50\xa3\xd6\ \x96\x93\x60\xf1\x31\xe4\x65\x3b\xd7\x70\xdf\xd7\x40\xa6\x4b\x2d\ \xb4\xa9\x8b\xcd\xcb\x05\x82\x55\x10\x7c\x09\x47\x54\x54\x94\x53\ \x65\x4d\xc2\x9c\xe4\xef\xeb\xeb\x13\x43\xf9\xed\x42\x98\x8b\xfa\ \x99\x05\x8b\x7a\xb8\x07\x47\x8c\x82\xfd\xa7\x2f\xc9\xc9\x2c\x6f\ \x33\x33\x3f\xb0\xe5\x3c\x84\x2a\x1b\x04\xcf\x37\xdf\x7c\x23\x86\ \x9f\xb1\xc0\x26\xc2\x0e\x0a\x46\x04\xc8\xec\xac\xc5\xac\x6f\x33\ \x2e\x9e\x4a\x24\x13\x84\xd7\xa8\xd1\xf2\x7f\x31\x99\x82\x27\x82\ \x45\x35\xdd\xb1\xbb\xdc\xde\x5c\x75\x9d\xb0\x95\x88\x1c\x43\xc6\ \xc8\xcf\x4b\x23\x73\x0d\xb9\x88\x00\x9a\x84\xf2\x04\x32\x02\x17\ \x82\xb5\xd9\x41\xb0\xbc\xcc\x18\x4d\x00\x3a\x9d\x4e\x72\xbf\x99\ \x92\xee\x04\xef\xb0\x16\xef\x03\xcc\xc5\xfc\xf8\x20\x04\x9e\x96\ \x35\x35\x35\x61\x60\xc0\xb9\xba\xc6\xc0\xc0\x00\x9a\x9b\xc3\x37\ \xbe\x74\xd9\xb2\x65\x50\xa9\xc4\x1f\x85\x16\x55\xe4\x15\x68\xd4\ \xda\x4a\x12\xac\x20\xc9\xcb\x58\xc4\xfa\x36\x93\x92\x13\xc9\xb0\ \x2e\xec\xa8\xdc\x16\x11\x21\x20\x78\x47\x01\x00\x12\xac\xa0\xad\ \x37\x81\xfd\x61\x20\xa9\xa9\x49\xd4\x1c\x2c\x77\xee\x6e\x51\x5f\ \x5f\x4f\xce\xc6\x13\x86\x4c\x11\xcd\x61\x15\x50\x93\x30\x48\x8c\ \x2d\xf1\xf8\xe6\x50\x23\xa6\xcf\xcb\x65\x75\xbb\x31\x31\x4a\xc9\ \xdb\xf6\xd5\xbb\x3f\xb2\xbd\x96\xd3\x68\x9c\x90\x59\xb8\xd0\x3c\ \x6b\x73\x46\x46\xe8\xc5\xf0\x87\x23\xdb\x9d\x6b\x01\x00\x28\x68\ \xd0\x73\xe0\x5c\x7c\x6e\x21\xfe\xdc\xff\x39\x80\xcf\x01\x00\x63\ \xa7\xa5\xe3\xe6\x87\x67\x61\xc6\xf7\x69\xaa\xf9\x50\x70\x9c\xa6\ \x1e\x00\x72\x7f\x4a\xd5\x8f\xfc\xa1\xd3\xe9\x24\x91\xc3\xb2\xa2\ \xb0\x86\x5a\x84\x7f\x7a\xba\x93\x01\x00\xca\x5f\x1d\x41\x7f\x5f\ \x3c\x86\xab\xd3\x21\xfb\x64\x0c\x1a\x4e\xb6\xe2\xaf\x45\xbb\x6d\ \xeb\x05\x23\x60\x52\x8f\xae\x5c\xc5\x0a\x00\xda\x66\x65\xe1\x48\ \x5a\x96\xf9\xc2\x4c\xcb\xf4\xfa\x5d\x55\x7b\x93\xc3\xeb\x8b\x1e\ \x97\x13\xc1\x93\x91\x90\x83\xcb\xbd\xfc\x68\x9a\x93\x60\x79\xe0\ \xd8\x57\xf3\x98\xad\xa8\x1a\x02\x1e\x34\xcf\x38\xa2\xac\x49\x40\ \xdc\x67\x69\x00\x10\x94\x80\xa5\x88\x38\x7f\x75\xbc\xb2\xce\xd9\ \xbe\x0e\x4f\x01\x9b\x75\xed\xf8\x6c\x73\xb5\xf3\xe7\xcf\x2c\x40\ \xc3\xcd\xcc\x9b\xdb\xf5\x0e\x62\x56\x05\xff\x3d\xf8\x53\x06\x7a\ \x70\xff\x97\xdb\x11\x6b\x34\x90\xb3\x33\xb9\x99\x2a\xf8\xd3\x7d\ \x47\x01\x20\x9f\x4e\x49\x60\x62\x35\x75\x6c\x0e\x46\x26\xa7\x62\ \x64\x72\x2a\xa6\x8e\x55\x61\x6a\xb6\x73\x48\x7e\xe0\xc3\x5a\xbc\ \xfb\xf4\xe7\xb6\xf7\x9e\x04\xec\xf6\x5f\x5e\x85\x29\xd7\x8c\xb5\ \x2d\x4b\x0e\xc3\x13\x42\x47\xe1\xe8\xe9\x18\xc0\xd9\xa3\xf6\x08\ \xe4\x6c\xf5\x45\xf4\x76\xd8\x1f\xd1\x3b\x76\x2d\x08\x27\x5d\xb9\ \xe9\x01\x89\x55\x30\x74\xc6\x26\xe2\xe5\x02\xf3\x04\xb8\xcb\x0e\ \xef\x10\x74\x24\xd6\xd1\xd1\x11\xb6\x7d\x99\x4c\x91\xef\x38\xaa\ \x00\x4d\x4b\x6f\xe3\x7c\xdd\x15\x4e\xef\xdf\x7e\xfc\xd7\x30\x19\ \x4c\x01\x6f\x67\xde\x8f\x73\x31\xef\xc7\xb9\x1e\xc5\xcb\x2a\x60\ \x9a\xbb\x77\x3a\x09\x58\xca\xc8\x04\xc8\xa2\xa2\x9c\xaa\x04\x44\ \x4a\x34\x22\x45\xdb\xac\x2c\x1c\x58\x7f\x4b\x58\xf7\xb9\x79\xce\ \xcd\x00\x80\xdb\x4f\xec\x45\x7e\x63\x2d\x09\x16\xcf\xa1\xa7\x84\ \xb6\xbb\x87\x1c\xed\x2d\x23\x6d\xef\x77\xbe\xb2\x11\x89\x71\xe6\ \x29\xc6\x2f\x35\xb7\xa2\xab\xab\x27\xa8\xed\xfa\x13\x2f\xab\x80\ \x35\xa0\x95\xb7\x22\xe2\x1a\x01\x0d\x26\x2a\xfd\xae\x63\x4c\x10\ \x56\x4e\x6e\xfb\xf4\x6b\xb1\x7d\xfa\xb5\x82\x15\x2e\x6f\xec\xdf\ \xbf\xdf\x12\xc1\x27\x7b\xfc\xbc\xa0\xa0\x40\x30\xbf\xa5\xa8\x22\ \xaf\x80\x04\xcb\x82\xf6\xc8\x5c\xdb\xeb\x47\x7e\x7c\xa7\x4d\xac\ \x00\x60\xd4\xe8\x74\x8c\x1a\x9d\x1e\x92\x70\x31\x15\x2f\xb6\xd8\ \xf1\xc5\x3d\x74\x52\x49\xb8\x6c\x82\x15\x1b\x1b\x2b\x78\xc1\x02\ \xa0\x22\xc1\x02\x70\x5a\x6b\x9f\x57\x30\x31\x2e\x0e\x77\x5c\xef\ \xb9\x17\x3b\x5b\xc2\xe5\x2a\x5e\x8e\x1c\x3e\x72\x3f\xfe\xdf\xf4\ \x9d\x6e\xcb\x87\x90\x84\x0e\xc5\x0a\x74\xc8\xef\xc6\x50\x54\xb2\ \xd7\xed\x76\xe9\x2f\x61\x6e\x27\x95\x6d\x66\x4b\xb8\xf8\x9e\xe3\ \xf2\xd7\xb1\x76\xfe\xfc\xf9\x3e\x23\x2c\x81\x41\x82\xd5\xdf\x17\ \x8f\x81\xbe\x78\x87\xa6\xe0\x1f\xfd\x7e\x87\x4d\xe1\xb2\xd2\xd2\ \xd5\x81\xd2\x77\x7f\x8f\x9d\x85\x66\xb1\xea\x95\x2d\x42\x87\x62\ \x05\xfa\x65\x57\x07\xb4\x1d\x12\x2b\x76\xd9\x3c\xe7\x66\xe4\xb4\ \x37\xa1\xf0\xf0\x0e\x41\x1e\xbf\x55\xb0\xd8\xe8\x38\x4a\x82\xc5\ \x03\x6a\x1d\xa2\xab\x4d\x4f\x96\x06\xf4\x5d\xb6\x84\xeb\xa5\xad\ \xe5\xa8\x69\xa8\xc7\xde\x95\xef\x98\x17\xcc\x18\x46\x02\x80\x16\ \x5d\x03\x30\x68\x64\xbc\x9d\xc9\x97\xa2\x78\x65\xdb\xfc\x04\x25\ \x52\x15\xf6\xce\x9f\xe9\xfa\xb3\xc8\x1e\x31\x05\xf9\x1e\xf2\x5b\ \x89\x6d\xcd\x98\x94\xe6\xfe\xfc\x27\x33\x31\x1e\xa3\x13\xe2\xc2\ \x7e\xec\x07\x5a\xbb\x51\xd1\xdc\x8d\x3f\xb5\x1b\x9d\xba\x4d\x10\ \x24\x58\x11\xa3\xe6\xa8\xbd\x47\xc7\xa4\xb1\xe3\x90\x9b\x3d\x3e\ \xa8\xed\x04\x2b\x5c\x47\xbe\xa9\xc1\xfa\x4f\xfe\x6e\x8e\xec\x0a\ \x2d\x62\x95\x63\x1f\x9a\x92\xa3\x1a\x8b\x7e\x7d\x0f\x1a\xce\xf9\ \x4f\xc8\x7f\x38\x00\x7c\x3b\x1a\xb8\x67\x6c\x0a\x32\xe4\x40\x0c\ \x80\xdc\x44\x19\xa2\x30\x80\xa8\xe1\x3e\xa4\x45\xb5\xa1\xdd\x10\ \x8d\xc4\xd8\x4c\x64\xc4\x8f\x8c\x90\xc5\x7d\x4c\xd8\x31\x6a\x22\ \xaf\x7c\x63\x5e\x7a\x12\xe6\xa5\x27\xa1\xb0\xa5\x13\xf3\x4e\x75\ \xe2\xcb\xf1\x79\xb8\xfa\x9c\x56\x70\x3e\xbe\x76\xed\x5a\x00\xde\ \x73\x58\x25\x25\xc2\x9a\xec\x5d\xb2\x82\xd5\xd5\x9e\x06\x83\xc1\ \x3e\x58\xad\xfc\xa9\xb2\xd0\x2f\x47\x86\xc2\xf5\x9f\xea\x2f\xf1\ \xee\xe7\xff\xb6\xbd\x7f\xf1\x86\xcf\x90\xa8\x34\x00\xb1\x33\x81\ \x64\xe7\xa2\x80\x71\x31\x89\x98\x94\x9b\x88\xee\x9e\x6e\x34\x5f\ \x6c\xf3\xba\xcd\x5f\x44\xff\x07\xab\xa2\x5e\x45\xcc\xd8\x13\x2e\ \x9f\x58\x3b\xa4\xe6\x80\xea\x60\x07\xce\xa7\xfd\xe6\xff\x03\x0a\ \x1a\xe7\xc9\x03\x16\x48\x56\xb0\x74\x67\x26\x07\xdd\x14\x0c\x56\ \xb8\xfa\xf4\x03\x28\xfa\xf3\xcb\x4e\xeb\xce\x1a\xd3\x84\xef\xaa\ \xce\x99\xdf\xe4\x56\x7b\xdd\x66\x52\x62\x12\x92\x72\x93\xd0\xdd\ \xd5\x83\xe6\x66\x7b\xc4\x35\x7a\xf0\x31\x24\x99\xb6\x9a\xdf\x24\ \x14\x90\x4b\xb3\x4c\x55\xa7\xde\xdc\x34\xed\x6e\x15\xe4\xf1\x8b\ \x2c\xe9\x2e\xcd\x08\xcb\xb1\x0b\x43\xe6\x88\xf4\xa0\x9b\x82\x81\ \x08\xd7\xa7\x07\xf6\xe2\xaf\xbb\xb6\xbb\xad\xb3\xe1\x56\x4b\x32\ \x77\x7a\x3b\xa3\x6d\x26\x25\x27\x22\x29\x39\x11\x43\x67\xae\x83\ \xac\xff\x0b\x52\x14\x8e\xa9\xec\x34\xf7\xfe\x9f\x7a\xf9\x9c\xa0\ \x05\x4b\x24\x49\x77\x48\x6e\x38\x7c\x73\x43\x36\x4c\x26\xfb\x64\ \x95\xff\x28\xfb\x3d\xe7\xfb\x8c\x4f\x8e\xf3\x28\x56\x7b\x57\x6e\ \x32\xbf\xc8\x7a\x15\x90\x07\xd0\x60\x33\x75\x78\x16\xab\x38\x1a\ \x65\x25\x35\x72\x72\xa4\x55\x21\x44\x52\x11\x96\xc9\x24\x47\x73\ \xa3\x7d\xfc\xde\x8b\xf7\x3e\x14\x96\xfd\xde\xf4\x84\xfb\x7e\xfe\ \x71\xd7\x16\xf3\x8b\xe8\x1c\x60\xe4\xea\xc0\x36\x78\x22\xcd\xf3\ \x72\x39\x65\xa9\xc4\x46\x4c\x4c\x0c\x32\x33\x3d\x3f\xa5\x5c\xbc\ \x78\x31\x52\x53\x7d\x9f\xf3\x0f\x3e\xf8\xc0\x7c\xd3\x8c\x8f\x77\ \x1a\xf6\x65\xa5\xb0\xb0\xd0\xef\x31\x8c\x4d\x99\x86\x0b\x9d\x27\ \x48\xb0\x22\xd9\x14\x4c\x8c\x8b\xc3\x77\xaf\x9c\xcd\xf9\x3e\x0b\ \x5f\x72\x7f\x0a\x73\xf7\x9c\xaf\x91\x99\x68\xc9\x6d\x4d\xd5\x05\ \xb6\xc1\x7a\x1f\x33\xf5\x44\xab\xe8\x0a\xe7\x08\xa1\x3d\x4d\xb3\ \x72\xe1\x82\xa5\x9a\x88\x52\x09\x99\x4c\xf8\x0d\x2a\xc9\x08\x96\ \xae\x76\xb2\xd3\x7b\x26\x1d\x44\x43\xe5\x8b\x63\x47\x70\xa6\xe1\ \xbc\xd3\xb2\xac\xa4\x1e\xdc\x3d\xc7\x92\x5c\x67\x98\xb7\x72\x6c\ \x0a\xa2\x6b\xbb\xf7\xcf\x95\x24\x58\x5c\xb0\x20\x45\xb8\xa5\x4f\ \x97\x2e\x5d\x0a\x00\x48\x4a\x4a\x12\xc5\xcc\xd8\x92\x10\x2c\x83\ \x3e\x06\x5d\x1d\xf6\x66\xd4\xd2\x82\x45\x61\xd9\xef\xd3\x6f\x6c\ \x74\x5b\xb6\xe5\x4e\x4b\x53\x70\x54\x89\x7b\x13\x6e\xe3\xf7\x7d\ \x6f\xb0\xb7\x0a\x68\x53\x00\x46\xcf\x1d\x44\x4d\x8f\x8f\x04\xcd\ \x3c\xc6\x1e\xfd\xc6\x41\x00\x40\x41\xb2\x70\xe7\x8a\x1c\x37\x6e\ \x1c\x00\x20\x25\x25\x05\x4a\xa5\xf0\xbb\x66\x48\x42\xb0\x6a\x8e\ \x39\x27\xa3\x57\x2d\xb9\x93\xf3\x7d\x5e\xfb\xf0\xdd\x6e\xcb\x6c\ \x49\x76\x79\x0a\x30\xba\xd4\xfd\x4b\x0f\x7d\x06\xdc\xef\xeb\x6e\ \x2e\xf7\x1e\x41\x26\x8e\x85\x2a\x2b\x8f\x54\x86\x45\x8e\x5c\xbe\ \x0c\x00\x58\xb6\x7e\x16\x10\x6b\x04\x56\xbc\x07\x4c\xb8\x86\x0c\ \x43\x82\xc5\xa1\x58\x1d\x75\x16\xab\x0d\x8f\x3c\xc1\xf9\x3e\x7f\ \xfb\xb7\x37\xdd\x96\x6d\xbc\xcd\x61\x2c\xda\x74\x1f\x35\x8c\x5e\ \xd7\x03\xfd\x9d\xc0\xa3\xa3\x02\xda\xe7\xac\x5b\x3f\x46\x3b\xf9\ \x33\xab\xfc\xaf\xbb\x1f\x40\x34\x54\x3d\x0d\x40\x0f\x80\x97\xbf\ \x67\xfe\x40\x16\x05\x2c\x50\x03\xff\xef\x2f\xbc\xff\x0d\xd6\x9e\ \xee\xd1\xd1\xd1\x90\xcb\xdd\x6f\x78\xd4\xd3\x9d\x47\xb8\xf6\x66\ \xcf\x1c\x91\x8e\x59\xb9\x53\x39\xdd\xe7\xc5\xb6\x16\xec\x38\xb0\ \xcf\x59\x4c\xc6\x34\x21\x3f\xcb\x32\xe2\x3f\xf7\x6b\xff\x1b\x89\ \x4b\x31\x0b\xd7\xda\x45\xc0\x69\x66\x25\x68\x3a\xa3\xd9\x2b\xb1\ \xac\x37\x0c\xa0\xa9\xa5\xd1\xef\x7a\x1d\xca\xd0\xf7\xd9\x11\x9d\ \x1c\x74\x8e\xa8\xd3\x34\x84\xea\x9e\x41\x8f\x9f\x55\x76\x0d\x78\ \x5c\x6e\xed\x08\xea\xf1\x3b\x9d\xf6\xef\xa4\x2a\x64\xe8\x30\x7a\ \xc9\xf9\x0c\x0d\x03\x7b\x36\x9b\xff\x00\xe0\x8a\x2b\x81\x5f\x7e\ \xc5\xeb\x6b\x61\x78\x78\x58\x14\xd7\xb4\xa8\x05\xcb\xb1\x37\x3b\ \x10\x9e\x3e\x57\x4b\x4b\x9c\x23\xb8\x44\xa5\xc1\xde\x39\x34\x6d\ \x19\x10\x1b\x40\x5f\xa9\xe2\x5d\xc0\x85\x63\xc0\x0b\x57\xf9\x5c\ \xed\xd1\xab\x7e\x65\xbe\xf1\xef\x3b\x17\x66\xd7\xe8\x67\x61\x3f\ \xfd\xbc\xf4\x9d\x0e\x63\x00\x73\x5a\x7d\x73\xcc\xde\x94\x8f\x8b\ \x05\x96\xbd\x01\xe4\xdf\xc1\x8b\xdf\x61\x4d\xba\xc7\xc5\xc5\x21\ \x2e\x2e\x4e\xf0\xd7\xb4\x68\x05\xcb\xb1\x0b\x03\xc0\xfe\xf0\x1b\ \x4f\xfc\xa4\xe4\x97\x6e\xcb\x6c\x83\x9a\x01\x20\xbb\x3c\xf0\x8d\ \x66\x5f\x69\x8e\xb6\x8a\x47\x03\x7d\x9e\x9b\x92\xaf\x4d\x5d\x26\ \xca\x73\xb8\xa0\xf9\xa0\xc7\xe5\xf9\xed\x27\x91\x6a\xe8\xf2\xfc\ \x9d\xa6\x03\x1e\x97\x17\x34\x1f\x08\xcf\x41\xf7\x0f\x00\x6f\xfc\ \x1c\xf5\xa3\x9e\x44\x39\x0a\xc3\x66\x2b\x6f\x4d\x3b\x6b\xd2\x3d\ \x21\x21\x01\xf1\xf1\xf1\x42\x77\x89\x7a\x51\x0a\x96\x6b\x6f\xf6\ \x50\x2a\x31\x30\xe5\xd3\x03\xfb\xd0\xd4\xe6\x3c\xde\xcc\xd6\x39\ \x14\x00\x66\x84\x18\x92\xaf\x6d\x06\xfe\xbb\x11\xf8\xe0\x31\xf7\ \x16\xca\xdb\xb9\xa8\x1c\x3d\x2f\xe0\x4d\xa6\x0e\x76\x21\xbf\xed\ \x24\x08\x16\x89\x02\x30\x6a\x10\x39\xd0\x91\x2d\x38\x68\x34\x89\ \x4e\xb0\x5c\x7b\xb3\x03\xec\x54\x62\xf0\xc7\xef\x5c\x12\xed\x4e\ \x9d\x43\x27\xee\x61\x67\x27\xdf\x7b\x08\xb8\xe6\x17\xc0\xaa\x51\ \x91\x8b\x20\xc4\x20\x28\xd1\x0e\x37\x0f\xa5\x4b\xd3\x2f\xc6\xe1\ \x33\xc5\x50\x48\x83\xd7\x56\xa5\x7e\x84\xea\x99\xeb\x78\xf1\xb3\ \x0d\x06\x03\x2b\x11\x96\xc9\x38\x0c\xb9\x22\x72\x75\xd7\x44\x27\ \x58\xae\x4d\xc1\x2d\x65\xaf\x70\xbe\x4f\xd7\x2e\x0c\x4e\x9d\x43\ \x13\x16\xb0\x5b\x45\x21\xc6\x92\x90\xbf\x3f\x46\x7c\xe2\x11\x3d\ \x64\x5e\xe6\x49\x3c\xa2\x86\x9d\xd7\x15\x00\xa9\x1d\x47\x23\x5e\ \x33\xdd\xfa\x94\x50\x26\x93\x79\xec\x87\x25\xb0\xa7\x84\x95\xa2\ \x12\x2c\xc7\xda\xec\x00\xf0\xdd\x2b\x67\x21\x6b\x04\xb7\xc5\xea\ \x9e\x7e\x63\x83\xdb\x32\x5b\xe7\x50\x00\x98\x58\xc9\xcd\x8e\xe7\ \x7f\x07\xd0\x55\x86\xcf\xb8\x06\x99\xf7\xa8\x84\x20\x28\xc2\x0a\ \x8c\x9e\xee\x64\xa7\xda\xec\x00\xf0\xe2\xbd\x0f\x73\xba\xcf\xda\ \x0b\xe7\xf0\xc5\x31\xe7\x6e\x0a\x4e\x49\xf6\x19\xc3\xe2\xf1\x14\ \x12\xa9\xa0\x28\x2b\x33\xa7\x23\x82\xad\xaa\xa0\x52\xa9\xcc\x4d\ \xfe\x20\x23\xb5\xe2\xe2\x62\x73\xf0\x1a\x1d\xed\x77\xa0\xb4\x37\ \xb2\x93\xa7\xe3\x00\xb6\x52\x84\xc5\x26\x67\x6b\xa6\x39\x0b\xc7\ \x2b\x1b\x39\xdf\xe7\xf2\x97\x4b\x9d\x05\xd2\x5a\x39\x14\x70\x2a\ \x75\x4c\x10\xfe\x66\xb7\xf1\xf7\x3d\xde\x4c\xc7\x15\xd9\x7b\x70\ \x87\x28\x04\xcb\xb5\x29\x78\xf7\xcd\xb7\x3b\xcd\x2b\xc8\x05\x37\ \x3d\xf1\xa0\xd3\x7b\xa7\xca\xa1\x1e\x4a\x1d\x33\xe2\x78\x14\xf3\ \xa8\x4c\x55\x10\xde\x26\x21\x11\x14\xcb\x96\xf1\xa3\xcb\xc9\xe0\ \xe0\x20\x2b\xdb\x19\x32\x0d\x43\x1e\x1d\x99\xa4\xbb\x46\xad\xad\ \x56\x00\xa8\x02\xb0\x40\xa8\x0e\xe1\x3a\x4d\x57\x62\x5c\x1c\xee\ \xfe\xc1\xed\x9c\xee\xf3\x83\x3d\xbb\xd0\xd3\xef\xdc\xe1\xd1\xd6\ \x39\x14\xf0\x59\xea\xd8\x7b\xfb\x92\x8a\xef\x89\x11\x6b\x93\x8e\ \x60\x07\x19\x80\x6a\x21\xff\x80\x5a\x97\xe8\x8a\xeb\xb2\x31\x3d\ \xfd\x7d\x58\xff\xe1\x7b\x4e\xcb\x6c\x83\x9a\x81\xc0\x4b\xc6\x00\ \x40\x7b\x39\x30\x70\x14\x0d\xed\x23\xc8\x23\x09\xc2\x07\x0a\x40\ \xb8\x3d\xdc\xbe\x71\xc9\x5b\x85\xa3\x82\xa8\x6b\xf5\xd0\xf2\x25\ \x0e\xf5\xa9\x02\x2d\x75\x0c\x98\x6b\x5c\x5d\x58\x8e\x07\xfe\xb6\ \x1c\xbb\x4f\x7c\x0b\xb5\xd7\x31\xfc\x5e\x2a\xdd\xb9\x85\x80\x35\ \xe9\xce\x35\x42\x2d\x30\x18\x8c\x60\x09\x32\xc2\x32\xe8\x63\xd0\ \xdb\x6d\x9f\x09\x24\x73\x44\x3a\xe7\x15\x44\x1f\x7a\xcd\x79\xc6\ \x9b\x3b\x66\x68\x31\x29\xdd\x32\xf5\x56\x30\xa5\x8e\x01\x74\x1d\ \x19\x83\x39\xbf\x5e\x13\xf8\xc1\x90\x60\x11\x11\xc0\x34\x38\x8c\ \xe8\x08\x96\x07\x53\x68\xd4\xda\xca\xa2\x0a\xe1\xd5\x51\x72\xad\ \x71\xc5\xf5\xc0\xe6\xda\x0b\xe7\x50\x7d\xe6\x94\xed\x7d\xa2\xd2\ \x80\x47\xe6\x3b\x8c\x75\x0b\xb4\xd4\x31\x80\xf5\xaf\xdd\x8e\x0d\ \xbb\x5f\xa0\xab\x40\xc4\xf0\x25\xe9\x2e\xa6\x08\x4b\x70\xb8\x96\ \x3b\x0e\xc7\xc0\x66\xd7\x2e\x0c\x4e\xfd\xad\x82\xc8\x5b\xe5\xde\ \xb6\x16\xae\xcf\x3a\xc6\x8e\x0a\x60\xee\xb8\x58\x9a\x70\x42\x08\ \x50\xd2\x9d\x35\xaa\xf0\xff\xd9\xbb\xf3\xf0\xb6\xaa\x3b\x7d\xe0\ \xaf\x24\x2f\x92\x57\x39\x8e\x1d\xdb\x59\xac\x2c\x8e\x93\x98\x10\ \x27\x01\x42\x4a\x69\xcc\xb4\xa1\x40\x87\x26\x40\x61\xa0\x50\xc7\ \xa1\x65\xa6\x75\x0b\x09\x74\x4a\xa0\x74\x26\xf6\x33\x6d\x59\xda\ \x42\x02\xd4\xd3\x69\x87\xc6\xf6\x40\xa1\xac\x09\xed\x6f\xa0\x03\ \x34\x4e\x81\x42\x80\x24\x76\x82\x12\x67\x73\xec\xc4\x6b\xbc\xc9\ \xb2\x65\xcb\xb2\x24\xff\xfe\x90\x6c\x4b\xb6\xf6\xf5\xde\xab\xf7\ \xf3\x3c\x7e\x12\x6b\xb3\x74\x74\x75\xf4\xde\x73\xcf\xfd\x1e\x88\ \x70\x99\x2f\x8b\x45\xe1\x54\xee\xb8\x78\x49\x61\xd8\x4f\x6c\x9e\ \x3e\x85\xc1\xa9\xb3\x9a\xbd\xcd\xaf\x71\xab\xea\x7d\x87\xed\x9d\ \xd5\x4c\x1b\xd7\x2f\xf1\xfd\x49\xcd\x59\xc5\x4d\x98\x62\x49\x9d\ \x28\x13\xd6\xf4\x73\x05\x9f\xdd\xb6\x23\xac\x7f\x6f\xfa\x14\x86\ \x47\x4a\xde\x9f\x9a\x1c\xaa\x48\x07\x72\x7d\x3f\xb9\x75\xcd\xed\ \xbf\xc6\xa0\xc1\x7d\x01\xb9\xb2\xaf\xaf\xe1\x66\x29\x31\xa1\x18\ \x74\x77\x35\x4b\xbe\xb8\xb8\x18\xc5\xc5\x91\x9f\x0a\x33\x6e\x8d\ \xda\xcc\xd1\xbd\x8e\x1d\x56\x0b\x00\xc1\xaf\xc8\xd8\x7e\xde\xf9\ \x29\x86\x7b\x36\xfb\xf4\x29\x0c\x05\x99\x7d\xb8\x7e\xe9\x19\x87\ \x5d\x41\x9d\x4f\x8f\x73\xf0\xd8\x05\xdc\xf5\xe3\x57\x3c\xde\xe6\ \x85\xc2\x2a\xcc\xcd\x7e\x80\x9f\x70\x9a\xc1\xd5\x2c\xf9\x68\xed\ \x6a\x46\xab\xbf\xaa\x2a\xd5\xd6\x3b\x76\x58\xd5\x00\x04\x7f\x5c\ \xb4\xa7\x6b\x6a\x41\xc9\x5b\x4b\x36\x46\x60\x36\xbb\xf3\x14\x86\ \x3d\x8e\x53\x18\x7c\x29\x75\x0c\xa0\xe4\xdb\xff\x8d\xb6\x8b\x7a\ \xb7\xd7\xa7\x29\x46\x70\x68\xb5\xad\x62\x28\x1e\xcf\x00\x76\xb0\ \x32\xbb\x94\x84\x6b\xd0\xdd\xd7\xf3\x02\x9f\xfb\x74\x6a\x38\x23\ \x29\x3d\xb0\x1d\xaa\xb4\x44\xe1\x2c\x73\x1f\xe7\xb0\x7f\x28\xe8\ \x0e\xeb\xe8\xa7\xce\x05\xea\xc2\xbd\xf2\xcd\xf4\x29\x0c\x4e\x93\ \x43\xd3\x36\x79\x2d\x75\x7c\xa2\xa9\x1b\x5f\xdf\xf6\x3f\x5e\xff\ \x8e\xde\xa2\x42\xc1\x67\xbf\xc2\xe1\xd5\x8f\x20\xd5\xa8\x03\x2a\ \x65\xc0\x43\x3a\x5b\x19\x19\x12\xbd\x59\x59\xb9\x48\x4b\x16\x77\ \x29\x20\xfd\x68\xb7\x60\x9e\x8b\xdc\x1e\xb7\xea\xc4\x92\xac\x00\ \xe0\x83\x67\x7e\xef\xf1\xf6\x16\x8b\x25\xa8\xbf\x37\x7d\x0a\x83\ \xd3\xe4\x50\x00\xc8\xdf\xeb\xf1\xfe\x77\x3e\xfc\xb2\x4f\x9d\x95\ \xa3\x35\x47\x7e\x86\x9f\x5d\xb0\x9f\x52\xf4\x98\x1a\x38\x50\xc9\ \x4f\xbb\x04\xac\xbd\xfd\xd7\x51\xfd\xfb\x49\xe9\x71\x93\x3f\xc9\ \xea\xc0\x7e\x92\xd2\xe3\xa0\x4c\x51\x4c\xfe\x44\xc1\x80\x53\x87\ \x25\x74\x8e\x63\x57\xbe\xcc\x66\x3f\x76\xec\x58\x50\x7f\xcf\x71\ \x0a\xc3\x0d\x4b\x4f\x4f\x4d\x0e\x05\x3c\x9e\x9c\xac\x37\x8c\xa2\ \xe0\xc6\x27\xf1\xc9\xe7\xad\x01\xfd\xdd\xea\xae\x2f\x61\xed\x11\ \xfb\xbc\xac\xba\x0a\x5b\xda\x1a\x1d\xe0\xa7\x5e\xe4\x4e\x34\x75\ \x8b\xfa\xf9\xcb\x64\x80\x22\x4e\x36\xf9\x13\x05\xd5\xa2\xe9\xb0\ \x1c\x8f\x0a\xfa\x32\x9b\xfd\xec\xd9\xb3\x78\x2f\x33\xf0\xe3\x07\ \x8e\x53\x18\x52\x12\x4c\xf8\x71\xc9\x07\x53\x57\x7a\x28\x75\xfc\ \xbd\x9f\xee\x0b\xc9\xb7\xe9\xc4\x2e\x62\xe3\x70\xde\x54\xda\xfa\ \xe3\x4d\xfc\xd4\x8b\xd0\x33\xed\xd7\x02\xb0\x1d\x74\xa1\xa0\xec\ \x75\xd5\x61\x35\x08\x6e\xdf\xb9\x3f\xc3\x69\x31\x09\x6f\xb3\xd9\ \x4d\x26\x13\x0a\x3a\xe3\xf1\xa3\xf3\x83\x90\x7f\x78\x1e\xbb\xda\ \x07\xfd\xfa\x7b\xd3\xa7\x30\x38\xcd\xb7\x72\x53\xea\x78\x22\x55\ \xbd\x7b\xf0\x6c\x48\x5f\xfb\x8d\xc7\x7f\x88\xf2\x33\x5b\x6d\xbf\ \x34\xee\xb5\xa5\xad\x93\x0e\xbb\xa6\x2d\x07\xb8\x19\x0b\x5c\x75\ \x97\xed\xc4\xd0\xb2\x4d\x9c\xae\x12\x0c\xc7\x21\x2b\xb9\xab\x5e\ \x4c\x28\x1c\xd7\x15\xbc\xef\x66\xef\x83\xec\xca\x4f\x3b\x9d\x7e\ \x7f\xe0\x5c\x3f\x32\x3e\xf6\x7d\xf7\xcc\x71\x0a\x83\x53\x67\x05\ \xb8\x2d\x75\x1c\xce\x31\x8a\x77\x74\x97\xa0\xe0\x33\x87\xf3\x0c\ \x5f\xda\x0c\x54\xca\x60\x36\x0e\xd9\x3a\x31\x12\x34\xbd\x45\xc5\ \x46\x08\xb1\x38\x87\x5e\xac\xa2\xbc\xb6\x48\x30\x47\x0a\xa7\x2f\ \x31\x7f\xdb\x35\x1b\x3d\xde\xfe\x2b\x9f\x34\xc1\xd5\x3c\xd8\x01\ \x8b\x15\xf2\x0f\xcf\xe3\xaf\x97\x64\xa3\x24\xdd\xfd\x59\x9b\x8e\ \x0b\x49\xdc\xbd\xf6\xc8\xd4\xe4\x50\xc0\xe3\xb8\xd5\x23\xdf\x29\ \xc1\xcf\xfe\xbb\x2e\xac\x6d\x51\xf0\xd9\xaf\xf0\x42\x61\x15\xae\ \x48\xb5\xa5\xb8\xb8\xc7\x53\xb9\xe5\xfa\xe8\x93\xc1\xc5\x6e\xaf\ \x3b\xe8\xf1\x3a\xf7\x67\x1d\x9c\x18\xce\x73\xea\x8c\x56\x2e\xce\ \xc2\x13\xdf\x77\x2e\xb3\x71\xfd\x03\xaf\xb1\xf1\xc3\xd9\x61\x09\ \xc9\xc8\x70\x92\xd3\x12\xf3\xde\x8e\x0a\x6a\x7b\x07\xf0\xd7\x31\ \xcf\x2f\xe5\x1f\x3e\xbf\x88\xdf\x17\x64\xa2\x2c\x3b\x79\xc6\x75\ \x8e\x0b\x49\x38\xad\x78\x03\x78\x2d\x75\x5c\xb6\x69\x0d\xf2\x73\ \x52\x70\xd9\x8a\xdc\x80\x5e\x6b\x7b\xf7\x20\xda\xbb\x87\x30\x38\ \x3c\x8a\x53\x2d\xbd\xe8\x33\x74\x40\x7b\xc6\xb6\x3c\xd8\xf1\x33\ \x53\xbb\xb4\x77\x9e\x2c\xc7\xba\xd4\xb3\x78\xbe\xb0\x2a\x24\x6d\ \xdc\x66\xca\x40\xdb\xe8\x2c\xb7\xc9\xe0\xc4\xc4\x18\x9a\x9f\x1f\ \x66\x4f\x9d\x80\xd4\x2c\xca\x4b\xc7\xaf\xff\xf5\x2b\xec\x45\xc2\ \xab\x46\xf0\x1d\x96\x63\x51\xbe\xeb\xd7\x5d\xe5\xf5\xf6\x2b\x1b\ \xdd\x1f\x49\x6b\xba\x2c\x0f\x9a\x44\xf7\x2f\xb3\xa3\xaf\xc7\x69\ \x21\x09\xa7\x15\x6f\x7c\x2c\x75\x1c\x68\x67\x05\x00\x79\x59\xa9\ \xc8\xcb\xb2\x25\xa6\x6b\x2e\xd3\x78\xbd\xfd\x20\x1e\x9b\x71\xd9\ \xc9\x96\x5e\x0c\x1a\x4c\x38\xd5\xd2\x8b\xc1\xe1\x51\xb4\x77\x0f\ \xa1\xbd\x7b\x10\x83\xc3\xb6\xcb\x28\xb4\xb2\x67\x25\xa1\xe6\x27\ \xd7\xfb\x7c\xfb\x83\xc7\x2e\x60\xdd\xca\xf9\x6c\xb8\xc0\xec\xf2\ \xd4\x61\x45\xbd\x5c\xf2\xf4\xa2\x7c\x8f\xdc\xf5\x6d\x8f\xb7\xdf\ \xfc\xc9\x19\x58\xaf\x5a\x82\xba\x01\x23\xfe\xe1\xf3\x8b\x7e\x75\ \x56\x00\x70\xeb\xce\x07\x27\xff\x3f\x63\xdc\xaa\x40\x1c\xa5\xc2\ \x0a\xf3\x33\x83\xee\x38\x3f\x3b\xde\x01\x00\x38\x74\xa2\xdd\xd6\ \x09\x36\xf7\x62\x70\xd8\x84\x93\x2d\xbd\x18\x1a\x36\xf1\x63\x03\ \x60\xce\xac\x64\x54\xff\xe4\x3a\x9f\xd3\x57\x53\x3b\xa7\xa4\x04\ \x6b\xe2\x94\x1c\x77\x1d\xd6\xae\x68\x76\x58\xd3\x8b\xf2\x79\x5b\ \x04\xb5\xbd\xbd\x1d\x7b\xaf\xb0\xed\x9e\x94\xa4\x2b\x61\xbd\x6a\ \x01\xe4\x1f\x9e\x9f\xbc\xde\x5b\x67\xf5\x8d\x9d\x3f\x9a\xea\x18\ \x1d\x4f\x6a\x06\x02\x2b\x75\x2c\x62\x13\x9d\x5d\x28\x3b\xbd\xa9\ \xdf\x3b\x62\xa6\xa3\x9a\x70\xe9\x92\xac\xc9\x0e\xeb\x44\x53\x37\ \x13\x56\x88\xc4\x4d\xeb\xcd\xf6\x46\xb3\x98\x9f\x63\x51\xbe\x25\ \x73\xe7\x7b\x5c\x04\xd5\x62\xb1\x60\xf6\xec\x99\xd7\x5b\xaf\x5a\ \x80\xd5\xf5\x9d\x68\x30\x78\x4e\x05\xef\x1f\x3d\x8c\xce\x3e\xdb\ \xee\xd2\x8c\x93\x9a\x03\x29\x75\x4c\x33\x3a\xbd\x7f\xb9\x45\xdc\ \x9d\x5e\x4e\x66\x0a\xf6\x3c\xf2\xd5\x80\xee\x9b\xac\x8a\x9f\xfc\ \xbf\xde\x43\x85\x0e\xf2\xa8\xc1\x63\x87\x15\x4d\xd3\x8b\xf2\x55\ \x3f\xe4\xf9\xd4\x14\x9d\x4e\x87\xcc\xcc\x4c\x97\xd7\x1d\x29\xce\ \x41\xe5\x79\xcf\x71\xfc\xe1\xdf\x4d\x55\x7a\x70\x3a\xa9\x59\x91\ \x1e\x50\xa9\x63\x12\x46\xa7\x37\xfd\x20\x46\x20\x9d\x5e\x30\x1d\ \x15\x85\x54\x85\x2f\x1d\x56\x03\x80\x88\x56\x87\x9b\x5e\x94\xef\ \x99\xfb\x1e\xf4\x7a\x1f\x77\x9d\xd5\x84\x9d\x0b\xdc\x9f\x3c\xec\ \x38\x9b\xdd\xe9\xa4\x66\xc0\xe7\x92\x31\x93\x4e\x17\x03\x39\xef\ \x73\xd3\x12\x08\x57\x07\x31\xfc\xed\xf4\xba\x3a\xfb\x82\x7e\x1e\ \x47\xcf\xf4\x4c\xfe\xdf\x36\xd3\x7d\x7d\xd4\xdb\xc6\x62\x1e\x8f\ \xd6\xa9\x35\x01\xa9\x2a\xd5\xce\x98\x6c\x28\xf7\xa5\x57\x0b\x37\ \xc7\xd3\x6f\x52\x54\x2a\xac\x2e\x58\x16\xb6\xbf\xf5\xfb\xff\xdd\ \x37\x39\x9b\xfd\xd9\x1b\xdf\x9a\xd6\x59\xf9\x39\x6e\x65\x5f\x9e\ \x8b\x88\x22\x43\xee\x4b\xaf\x16\x4e\x5d\x6d\xf3\x9c\x7e\x0f\xe7\ \xba\x82\x43\x23\xc3\xf8\xfd\x5b\xb6\xdd\xbf\xd5\x79\x9d\x28\xce\ \x75\x98\x19\xef\x67\xa9\xe3\x89\xe5\xb9\x88\xbc\xe1\x80\x7b\x40\ \x5c\x26\x81\xa8\x8f\x61\x75\xb5\xcf\x9d\xfc\xff\xdd\xd7\x87\x77\ \xc5\x66\xc7\x82\x7c\x4e\x2b\x35\xfb\x59\xea\x18\x00\x70\xdc\xb6\ \x0b\x6b\x51\x5e\xcd\x4d\x8b\x66\x38\x76\x76\xaa\x42\xc3\x82\xc5\ \x87\xf0\xe8\xeb\xde\x27\xfc\x0e\x8f\x0e\xe2\x7c\xf7\x09\x36\x9e\ \xcd\x76\x7f\x3a\xac\x7d\x00\x36\x85\xfb\x19\x4d\xaf\xcf\x1e\xce\ \x25\xe6\x1d\x67\xb3\x07\x3d\x6e\x75\x9c\x47\x10\xc9\x77\x6f\x1c\ \x7c\x86\x8d\xe0\x27\x77\x35\xfa\xe2\x3c\xf4\x6e\x61\xed\xb0\xfa\ \x7b\xb2\x9c\x2a\x31\x84\xb3\x3e\xbb\xe3\x6c\xf6\x19\xe3\x56\x3e\ \x96\x3a\x9e\xd4\xb2\x19\xb0\x4c\x1d\x81\x1c\x97\xb3\x32\x28\x39\ \xfb\xfe\x2f\xdf\x75\xfa\xdd\x30\x98\x89\x54\x75\x1f\x12\x94\x72\ \x28\xe2\x43\x33\xe8\x6d\xb5\x8c\x63\x7c\xda\x29\xae\x56\xb3\xf3\ \x05\xe3\xe3\xce\x97\xd9\x16\x90\x90\x89\xba\x6d\xe3\xdc\xf4\x6e\ \xcd\xe1\x9e\x8f\x75\xe1\xdc\xa2\xc9\xff\x5f\x7d\xe9\xea\xb0\xd6\ \x67\x9f\x98\xcd\x3e\x63\xdc\xca\x87\x52\xc7\x4e\xf4\x7b\x01\xbd\ \x73\xf5\xd1\xf3\x83\xc5\x68\xe9\x99\x3a\x5c\x5e\xa8\xc9\x44\x6a\ \x52\x02\x3f\xb5\x31\xea\x1b\x3f\x7e\x13\x06\xe3\x98\x6d\xa4\x21\ \xce\x84\x75\xd7\xec\xb1\x77\x30\x80\xd1\x30\x55\x09\x57\xae\x90\ \x21\x31\x49\x0e\xb9\x22\xb0\x0e\xc4\xd5\xfd\xc4\x74\x04\xd0\x8b\ \x4a\xbf\x3a\xac\x89\x2c\x81\x30\xad\xa4\x33\xbd\x12\xc3\xa3\xf7\ \xdc\x1b\xb6\x57\xee\x58\x9b\xdd\x69\xdc\x0a\xf0\x5a\xea\xd8\x89\ \x45\x07\xb4\xcc\x2c\x7e\xe7\x1b\x0f\x00\x00\x20\x00\x49\x44\x41\ \x54\xa4\xf7\xe7\xba\x4f\xf1\xcc\x7b\x19\x3e\x3f\xcc\xc2\xf9\xc0\ \xec\x8c\x38\xe4\xe7\x66\xe1\xda\xcb\xd7\x22\x35\x39\x61\xf2\xd4\ \x1a\x12\x37\xc7\x0a\x0d\x45\x97\xfd\x09\xe9\x19\xed\xee\x3b\x1c\ \x39\x02\xee\xac\x62\x60\x77\xb0\x22\x90\x0e\x6b\x3b\x80\x37\x42\ \xfd\x64\x86\x06\xd3\x9c\x2a\x31\x84\x73\xd5\xe6\x8e\xbe\x9e\xc9\ \xda\xec\x33\xc6\xad\x56\xfa\xb9\x5e\xd1\x71\xd7\x9d\xd2\xbc\x0c\ \xff\xe6\xec\x9c\xbb\x00\x9c\xbb\x60\xc6\xa7\x47\x3b\xf0\xea\x5f\ \xfe\xec\xf5\xf6\x4b\xf2\xe3\x21\x97\xc9\x71\x69\xe1\x2c\x5c\x7b\ \xf9\x5a\x00\xc1\x9d\x3e\x43\xa1\xb7\xfb\xe5\x23\x78\xfb\xe3\x26\ \x00\x80\x2a\xc1\x80\xd5\x1b\x9e\xf7\x78\x7b\x65\x8a\x42\x4a\x69\ \x28\xa2\x64\xe3\xe3\xee\x3f\xb8\xe5\xb5\x45\x21\x5f\x85\xac\xb1\ \xa1\xd8\xa9\xc3\x02\x6c\xe7\x0c\x7a\x3a\x0d\x27\x50\x13\x35\xae\ \x1e\xbd\xf6\x3d\x5c\xad\x99\x3a\xc7\x10\x05\x47\xfc\xdb\x15\x3c\ \xae\x76\x1a\xb7\x72\xe5\x9d\xe3\x97\xa0\xfc\xf9\xe8\x4f\x73\xc8\ \x9b\x23\x87\x3a\x25\x09\x57\x17\x2f\x45\x6e\x56\x2a\xf2\x66\xa7\ \xb2\x83\xf3\x93\xaf\x13\x47\x8f\x9e\xe9\xc6\x8e\xaa\xbf\x4d\xfe\ \xfe\xe6\xee\x6f\x21\xaf\xd0\x36\x2d\x67\xc7\x4f\x5f\xc3\x88\x6a\ \xe6\xe9\x61\xc9\xea\x38\x36\xb0\x67\x35\x55\xa5\xda\xb2\x40\x12\ \x16\x60\x5b\xad\x22\xa4\xa3\xca\x69\x19\xfd\x33\x56\xc1\xb9\x75\ \xe7\x83\x58\x32\x77\xbe\xd7\xd3\x71\xfc\xf1\xbf\x07\x3f\x04\x60\ \xab\xcb\xee\xd4\x59\xf9\x3b\x6e\xd5\x54\xe2\xb5\xb3\x1a\x36\xcb\ \xf1\x3f\x1d\xa3\x78\xbf\xae\x17\x2a\x63\x3c\xe4\xe7\x7e\x00\xa4\ \x3b\x77\xca\x8e\xe7\xc8\x0d\x1a\x6c\x55\x10\xda\xbb\x07\xd1\xd1\ \x33\x14\xd2\x77\xbb\xbd\xcb\x8a\xf6\xae\x21\x1c\x3f\x7b\xd8\xa7\ \xdb\xa7\x24\xd9\x76\x49\x2f\x5b\x91\x8b\xd4\xa4\x44\x2c\xb5\xff\ \x9f\x3c\xbb\xf5\x27\x7f\x9a\xac\x62\x71\xc5\x25\xf3\xf0\xc2\xa3\ \xb7\xd9\xae\x18\xab\xc0\x40\x7c\x05\x1e\xff\xc9\x2d\x78\xfc\x81\ \xb7\xd1\x36\xd7\x36\x19\x59\x2e\x03\x54\xe9\xec\xac\x7c\xd8\x1d\ \x2c\x0b\x26\x61\x6d\x0e\xc7\x6e\x21\x60\x2b\x23\xe3\x58\x99\x61\ \xc2\x7d\x37\xdf\xe1\xb5\xba\xa8\xc7\x5d\xce\x91\x61\x7c\x63\xe7\ \x8f\x26\x67\xb3\xdf\xbd\xf6\x88\x73\x41\x3e\x7f\x76\x05\xfb\xab\ \xbd\x4e\x0e\x7d\xf4\xf0\x3c\x9c\xe8\xb7\x55\x9f\x7c\xe6\x47\xdf\ \xb4\x6d\x9c\x7d\x3f\xf4\xeb\x39\xeb\xf5\x7a\x74\x76\x76\xba\xbc\ \xae\xb9\x73\x08\xc3\x46\x33\x8e\x37\xdb\xa6\x5e\x1c\x6f\x1e\xb0\ \xff\xab\x8b\xda\x46\xb5\x76\x79\x2e\x0a\xf3\x33\x91\x9a\x9c\x80\ \xb5\xcb\xf3\x24\x77\xa0\xc1\x53\xc2\xfa\x69\xcd\x41\x7c\xd8\x30\ \x55\x76\xfb\xd0\x4b\xdf\x77\xb9\xee\x60\x8f\xba\x02\xf1\x06\xe0\ \x85\xdb\x0f\xe2\xe0\xe5\x4d\x88\x4b\x90\x21\x31\x49\xc1\x1e\xc9\ \x7b\x87\x25\x0b\xb8\xc3\x0a\xd7\x6e\xa1\x2f\x1d\x97\xbf\xbb\x89\ \x47\x4e\x37\xe2\xde\xa7\x67\x96\xa3\x79\xf6\xc6\xb7\x9c\x8f\x0c\ \xfa\xda\x61\x59\x74\x6e\xc7\xad\x00\xe0\x70\x77\x32\x76\x1d\x9d\ \xaa\xca\x59\xf9\xf3\x4d\x98\xd5\x9f\x0c\x79\xfd\x3d\xc0\x82\x34\ \xbf\xda\xe0\xd4\xa9\x53\x21\x6f\x57\x83\xd1\x8c\x96\xce\x21\x87\ \x0e\x2f\x7a\x1d\xdd\xda\xe5\xb9\xf6\x73\xfc\x52\xb0\x76\x79\x9e\ \xe0\x0f\x34\xb8\xea\xb0\x3e\xd6\x76\xa0\xf2\xb9\xbf\x4f\xfe\xbe\ \xe5\xeb\x6b\xf0\x93\x7b\x4a\x3c\x3e\x4e\x5f\xc6\x7f\x40\x31\x64\ \x41\xdd\xd5\x27\xf1\xfa\xe6\xc3\x48\x4c\x92\x23\x2e\x41\xce\x5e\ \x29\xc0\xdd\x41\x5f\x3b\x2c\x5d\xa8\x77\x0b\xfd\xe9\xb8\x6e\x2d\ \xd9\xe8\x75\x95\xe7\xd3\xad\xe7\x9d\xd6\x12\x74\x34\x23\x61\x2d\ \xda\xef\x72\xf5\x9b\x19\x8e\xb9\xef\xe8\xbf\x7b\x60\x31\x86\xcd\ \xce\x1b\x5e\x20\xe9\x2a\x3e\x3e\x1e\x4a\xa5\x52\x70\x5b\xcd\xc1\ \x63\x17\xa0\x37\x8c\xe2\x44\x53\x37\x4e\x34\x5d\x84\xde\x30\x1a\ \xf0\x5a\x8b\x81\x76\x70\x80\xed\xe0\xc2\xda\xe5\x79\x93\xff\x8f\ \x46\x87\x65\x18\x19\xc3\x37\x1e\x79\xd3\xe9\x7a\x77\xa9\xca\xe5\ \x63\x5d\xf2\x38\x94\x27\x47\xf0\xc9\xe5\xe7\xf0\xfc\xed\x1f\xb3\ \xd3\x0a\x22\x5d\xf9\xda\x61\x15\x03\x38\x12\xa9\x27\xed\xae\xe3\ \xca\x99\x95\x89\xea\x87\x2a\x67\xcc\xd7\x7a\xff\xe8\x61\xa7\x52\ \x31\x8e\xe4\x72\x33\xae\x5f\xb3\x1f\x0f\xaf\x71\xf8\xb0\x29\x57\ \x79\xaf\x24\xda\xa8\x01\xc6\x5a\x66\x5c\xbc\xfb\x68\x2e\x0e\x75\ \xa7\xcc\xb8\x7c\xdb\x7f\x7e\x05\x4b\x9a\xb2\x21\x7b\xf3\x36\xc8\ \xbe\xe8\xdb\x79\x63\x09\xca\x38\x24\xc6\x4b\x63\x55\x15\x83\x61\ \x18\x1d\xed\xdd\x38\x7a\xc6\x76\x3a\xca\xd1\xb3\xdd\x30\x8c\x8c\ \xe1\x6c\xdb\x00\x9a\xda\x74\x93\xf3\x92\xc2\x65\x69\xbe\x6d\x97\ \xf4\xb2\x15\xb9\x21\x39\xd0\x30\xd1\x61\x3d\xfc\x5f\x1f\xa0\xfe\ \x64\xd7\xe4\xe5\xf7\xde\xb1\x1e\xf7\x7d\xd3\xff\xaa\x0b\xbd\x5f\ \xaa\x42\xdc\x47\x17\xd1\x96\xa7\xc3\xe3\x3f\x7c\x8b\x9d\x56\x38\ \x3b\xac\x48\xec\x16\xfa\xd3\x71\x01\xb6\x3a\xef\xab\x0b\x96\xe1\ \xe7\xcf\x3f\xe7\xf6\xfe\x73\x72\x4e\x20\x39\xd9\x56\x0f\xa9\xf6\ \xcb\xa7\x9d\xaf\x54\xa4\xbb\x3f\x1d\xa7\xab\x02\xb8\xe8\x3c\xf8\ \xdf\xd8\xaf\xc2\xcf\x0f\xcf\x73\xfb\xb7\xfc\x49\x57\x32\xf9\x38\ \x52\x92\xd3\x24\xb9\xc1\x59\xad\x56\x34\x9d\xf5\x7f\xd1\xd0\x53\ \x6d\x83\xc8\xcc\x4c\xc7\xc1\x63\xad\x4e\x09\xaf\xf1\x5c\x78\x56\ \x4c\x4e\x49\x4a\xc0\x32\xcd\x6c\x5c\xb6\x22\x0f\x29\xaa\xf8\x19\ \x07\x1a\x7e\xfb\xca\xa7\xf8\xcd\x1b\x53\x5f\x6a\xa9\xc9\x89\x38\ \xfc\xd2\xf7\x83\xfa\x9b\xdd\x77\xd6\x20\xe1\xe5\x73\x18\x51\x8e\ \x61\xc7\xcf\x5e\x85\x2a\x55\xc1\x79\x58\xce\xee\xaf\x2a\xd5\xee\ \x0a\x55\x87\xb5\x17\x11\x38\xb7\xd0\x95\xf6\xf3\xf9\x33\x8e\x2a\ \x7a\xa2\x50\x58\x50\xb4\xe6\x33\xdb\x30\x94\x79\x1c\xa6\x11\x2b\ \x2c\x63\x56\xfc\x78\x4d\x2b\x96\x65\x8c\x38\xdf\xd8\x71\x3c\xab\ \xb5\x0c\xe8\xaf\xf1\x69\xf7\xcf\xd1\x5d\x7f\xbc\x12\xeb\x3e\x5b\ \xe4\x53\xba\x92\x52\xaa\xf2\xe4\xc2\xf9\x0e\x8c\x8e\xfa\x56\x07\ \x7e\xd1\xe2\xf9\x90\xcb\x03\x4b\x1b\x6d\x17\xf5\x68\xed\x1a\x70\ \xea\xe8\x00\x84\x74\xf7\xb5\xea\x91\xaf\x63\xe3\x95\x4b\x42\xf2\ \x58\x43\x4f\xd6\xc1\xb2\xa3\x0e\x00\x70\xdf\xaf\x5e\x64\xa7\xe5\ \x67\xba\xf2\xb9\xc3\x8a\x56\xca\xf2\xf8\xe6\x0f\xa6\xc1\xa0\x4f\ \xc3\xc8\x70\xd2\xe4\x39\x89\x59\x73\x3a\x91\x96\xe1\xbe\xa6\x95\ \x12\x66\x3c\xb9\x7a\xda\x00\x77\x7c\xbe\xcb\xdd\xbf\x0f\x3a\xd2\ \xf0\xdb\xe3\x73\xbc\x3e\x0f\x5f\xd2\x95\x94\x53\x55\xa0\x9d\x96\ \x5c\x2e\xc7\xa2\xc5\xd1\x2b\xbb\x72\xf0\xd8\x05\x7b\x87\xa7\x77\ \xd9\xd1\xcd\xcd\x4e\x43\xdd\x73\xdf\x09\xfd\xee\xf3\xef\x3f\x86\ \xf9\x5f\xde\x66\xa7\xe5\x6c\xa0\xaa\x54\xeb\x53\x45\x01\xd1\x76\ \x58\xc1\xf8\x5a\x6e\x37\xbe\x96\xe3\x7a\x77\xe3\x82\x21\x11\x8f\ \x35\x2c\x70\x99\xaa\x2c\x63\x56\xa7\xdf\xd7\x7d\xb6\x08\x77\xfd\ \xf1\x4a\xc8\x9e\xbd\x0e\xb2\x6f\x16\xc5\x74\xaa\x72\xa5\xe9\xec\ \x05\x58\xad\x56\xc1\x75\x56\xd1\x66\x69\xe8\xc4\xd0\x65\xbf\x01\ \x60\x9b\x60\x2a\xcb\xb1\x42\x16\xdb\x7d\xd6\xc2\xaa\x52\x6d\x73\ \xa8\x3b\xac\x32\x00\x7b\x24\xb5\xd3\x5c\xd0\x8c\x57\x5a\x73\xd0\ \x3a\x12\xd8\x91\xba\x47\xbf\x7d\xab\xdb\x74\x25\x53\x8c\x23\x25\ \x29\x0d\xb1\xee\xcc\xe9\x99\xe9\x75\x49\x41\x7e\xcc\xb7\x8b\x63\ \xa7\xf5\xf8\x03\x6f\xa3\x7f\xc5\x60\xcc\x76\x5a\xbe\xee\x0e\x02\ \xae\x4b\x24\xbb\x7b\xd0\x6a\xa9\x35\xd4\x53\xa7\x35\x01\x77\x56\ \x8b\x4e\x66\xd9\x3a\xa6\x1d\x33\x8f\x1a\x25\xaa\xe2\xd8\x59\xd9\ \xcd\xca\x74\x4e\xfa\xb1\x9c\xac\x1c\x29\x56\xe5\x20\xad\xfb\x21\ \x5b\xca\x7a\xf2\x3a\x64\x1c\x4f\x8d\xd5\xa6\xd8\xed\xcf\x8d\xfd\ \x1d\xed\x3c\xc0\x4d\xcd\xe6\x9e\x27\x4a\xec\x1d\xd6\x17\x9c\x52\ \x55\x6a\x6a\x2a\x12\xe2\x54\x6c\xa0\x89\x0e\x6b\xd6\xd4\x14\x3e\ \xb5\x3a\x2d\xe0\x01\x76\x29\x92\xa9\x95\x4e\x9d\xd6\x25\xef\x2c\ \x88\xc5\x74\xe5\xd7\x12\x55\x72\x3f\x1f\xbc\x84\x9b\x19\x90\xd1\ \x93\x0c\x00\x18\x7d\x60\x25\x53\x95\x0f\x66\x67\xcd\xb2\xff\x9b\ \xc1\xc6\x70\xd1\x69\xa5\x8f\x55\x00\x00\xee\x7c\x69\x1d\x6e\xfa\ \xcd\x65\xb1\xf4\xf2\x5b\xfc\xbd\x43\x20\x5f\x77\x31\xbf\xfe\xf6\ \x83\x3b\x6e\x00\x00\xa8\x7e\x72\x2d\x53\x95\x0f\xd4\xea\x54\x24\ \xa7\x24\xb1\x21\x3c\x98\xe8\xb4\xae\xf8\x74\x21\x7e\xf0\x6f\x1b\ \x63\xe5\x65\x17\xfb\x7b\x87\xb8\x00\xff\xc8\xb9\x58\xdd\xb0\x94\ \xc3\xb6\x15\x7d\x87\x6e\xca\x45\x96\x2a\x4e\xb4\x1d\x95\xf9\x40\ \xf3\xe4\xff\x2d\x0d\x9d\x18\xd7\x19\x61\x39\xd0\x6c\xfb\xff\x80\ \xd1\xe3\x7d\x15\x97\xe6\x20\xe5\xd0\x77\xfd\xfa\x7b\x59\x4c\x57\ \x3e\x75\x5a\x03\xf1\x15\x98\xdb\xae\xc6\x83\x3f\xba\x01\x4f\xfc\ \xe2\x7f\xa5\xbe\x3b\xe8\xf7\x89\xad\x3e\x1f\x25\x74\x24\xa5\x29\ \x0e\xfe\xda\xf1\xe0\xd7\xa0\xee\x4d\x82\x3c\x5f\x8d\xe4\xf7\xca\ \x20\xcf\x57\x47\xac\x73\xb1\x34\x74\xa2\xb7\xed\x2c\x00\x20\xe1\ \xef\x7d\x18\x35\x0f\x43\xa6\x1f\x43\xf2\x29\x73\xc4\xdb\x21\xe5\ \xb3\xef\x42\xb1\x2a\x27\x64\x8f\x67\x7c\xe0\x6d\x8c\x3e\xf3\x31\ \xc6\x92\xc7\x61\xb9\x61\x3e\xd2\x97\x2d\x41\xdc\x06\x0d\xe4\x1a\ \x75\x44\xda\x58\x48\x26\x2a\x3d\x18\x55\x63\xa8\x7c\x76\xaf\x54\ \x5f\xe6\x35\xee\x16\x9a\x08\x47\x87\x55\x02\x60\x7f\x2c\x76\x58\ \x13\x53\x19\xa6\x1b\xbb\xd2\x56\x7d\x40\x95\x90\xea\x9c\x5c\xbc\ \xa4\x95\x70\x3a\x57\x68\x9b\x6b\x36\x92\x34\x86\x8e\xf9\xb6\x2f\ \xb3\xfe\xd9\x06\xf4\xcf\x36\x00\x00\xda\xe7\xeb\x60\x4c\x1a\x0b\ \xf8\xf5\x2b\x2e\xcd\x41\xe2\xbf\x97\x40\xa6\x56\x42\xa6\x56\xba\ \xec\xc0\x1c\x93\x9c\xab\xcb\xfa\x0c\x6d\x48\x7e\xf2\x74\xc8\x5f\ \xfb\xc4\xfb\xe1\xca\xb0\x49\xef\x3e\x41\x77\x58\x91\xd8\x61\x11\ \xd4\x36\xf7\xf0\x73\xaf\x48\x31\x5d\x05\x34\x89\x23\xa0\x0e\x2b\ \x96\x53\x56\x46\x4f\x32\xd6\x7e\xa8\xc1\xa2\x93\x59\x58\x68\x9f\ \xda\x10\xea\x4e\x66\xa2\x83\x69\x5a\x76\x11\x23\xaa\x31\x74\x2c\ \xd0\x09\xe6\xf5\xe7\x9e\x57\xe3\xbe\xca\xf0\x8c\xb1\x9c\x2b\xec\ \x46\x53\x61\x37\x72\x2f\xa8\x91\xd1\x93\x84\xdc\x0b\x5c\x4e\x4d\ \xa2\x1d\xd6\xd6\x40\xa7\x49\x05\xd3\x61\x95\x41\x62\x13\x49\x83\ \xb5\xe8\x64\x16\x16\x35\x66\xbb\xbc\xae\x69\xd9\x45\xdb\xbf\x85\ \xdd\x6c\x28\x8a\x69\x81\xa6\xab\xa0\x3a\xac\x58\x4e\x59\x44\x14\ \xf9\x74\x05\x04\x36\xad\xc1\xe9\x8f\xb3\xfd\x89\xc8\x8f\x74\x55\ \x1d\xcc\xfd\xe5\xd1\xfc\xe3\x44\x14\x5b\xe9\x2a\xd8\x07\x90\x0b\ \xe1\x49\x10\x11\xd3\x55\x44\x3a\x2c\xa6\x2c\x22\xf2\xc1\x4d\xa1\ \x78\x90\x50\x9d\x89\x7a\x0d\xdf\x0f\x22\xf2\x10\x6c\x42\x32\x03\ \x56\x1e\xa2\x27\x53\xc7\xb7\x84\x88\xdc\x58\x18\xaa\x07\x0a\x65\ \xad\x0f\x9e\x2c\x46\x44\xd3\x0d\xf8\x5a\x4d\x34\xa2\x1d\x96\xfd\ \x44\xc6\x16\xbe\x3f\x44\xe4\x40\x13\xca\x07\x0b\x69\x35\xb5\xaa\ \x52\xad\x86\xef\x0f\x11\xd9\x1d\x08\xa4\x22\x43\xc4\x3a\x2c\xbb\ \x1a\xbe\x4f\x44\x14\x8e\x82\x9f\xf2\x30\x3c\xc9\x32\xbe\x55\x44\ \x31\xef\xfe\x70\x3c\x68\xb8\x0a\x6c\xaf\xe6\xfb\x45\x14\xd3\xe9\ \x6a\x57\x38\x1e\x57\x1e\xa6\x27\x5b\x0f\x96\x52\x26\x8a\x55\x61\ \x9b\x31\x10\xb6\x25\x4c\x7c\x5d\xc9\x95\x88\x24\x25\xe4\x03\xed\ \x11\xe9\xb0\xc2\xb9\x1f\x4b\x44\x82\xdd\x15\x2c\x09\xe7\xe3\xcb\ \xc3\xfc\xe4\x77\xf1\x2d\x24\x8a\x19\x0b\xc3\xfd\x07\xc2\xbe\xaa\ \x65\x30\xd5\x05\x89\x48\x34\x1a\x42\x39\xa3\x3d\x6a\x1d\x16\x77\ \x0d\x89\x62\x62\x57\xb0\x38\x12\x7f\x47\x1e\xa1\x17\xb3\x0b\x3c\ \x6a\x48\xc4\x5d\x41\x91\x24\x2c\x1e\x35\x24\x92\xa6\x7d\x91\xd8\ \x15\x8c\x78\x87\x65\xc7\xba\x59\x44\xd2\xda\x15\xdc\x1c\xc9\xbf\ \x17\xd4\xaa\x39\x81\x28\xaf\x2d\xaa\x07\xb0\x8a\x6f\x35\x91\xe8\ \x3b\xab\x88\x1f\x50\x93\x47\xe1\x45\x16\xf3\xad\x26\x12\xbd\xa8\ \xac\xe5\x20\x8f\xd2\x8b\x65\xb1\x3f\x22\xf1\x6a\x88\xd6\x5a\x0e\ \x51\xe9\xb0\xec\x53\xf7\xb9\xda\x0e\x91\x38\x77\x05\xa3\xb6\x97\ \x14\xf1\x31\x2c\x47\x1c\xcf\x22\x12\x5d\x67\x15\xd5\x89\xe0\xf2\ \x28\xbf\x78\x8e\x67\x11\x89\x47\xd4\xcb\x46\xc9\xa3\xfd\x04\x78\ \xea\x0e\x91\x28\xd4\xd8\xcb\x46\xc5\x76\x87\x65\xc7\x41\x78\x22\ \xe1\x1a\x10\x4a\x25\x61\x41\x74\x58\x1c\x84\x27\x12\x2e\x21\x9d\ \xa5\x22\x17\x50\xa3\x54\x83\x0b\x58\x10\x09\xad\xb3\x12\xd4\x90\ \x8d\x5c\x60\x8d\x53\x06\xa0\x81\x9b\x09\x91\x20\x08\x6e\xa8\x46\ \x2e\xb4\x27\x64\x3f\x72\xc8\xca\x0e\x44\xd1\xb5\x3a\x9c\xa5\x8e\ \x25\xd3\x61\x09\x6d\x9f\x99\x28\x06\x6d\x15\xc2\x11\x41\xd1\x74\ \x58\x42\xdc\x77\x26\x8a\x11\x35\xd1\x3a\xed\xc6\x17\x51\x9d\xe9\ \xee\x8b\xf2\xda\xa2\x71\x6e\x43\x44\x11\x71\x20\xdc\x8b\x48\x48\ \x36\x61\x39\xe0\x1c\x2d\xa2\xf0\x6b\x10\x7a\x67\x25\x8a\x0e\xcb\ \x3e\xf0\xc7\x4e\x8b\x28\xbc\x9d\x95\x28\x4e\x93\x13\xfc\x2e\xa1\ \xc3\xae\xa1\x1a\x40\x3f\xb7\x2d\xa2\x90\x1a\x10\xd3\x41\x2e\xb9\ \x58\x9e\xa8\x3d\x69\xad\xe6\xf6\x45\x14\x9b\x9d\x95\xa8\x3a\x2c\ \x7b\xa7\x55\xcf\xdd\x43\xa2\x90\xed\x06\x8a\x6e\xfa\x90\x5c\x6c\ \x4f\x98\x63\x5a\x44\x21\xe9\xac\x44\x59\xda\x49\x2e\xc6\x27\xcd\ \x4e\x8b\x28\xf6\x3a\x2b\x40\x44\x83\xee\xee\x70\x9e\x16\x91\xcf\ \x6a\x84\x52\x26\x26\xa6\x12\xd6\xb4\xb4\xc5\x19\xf1\x44\xde\x55\ \x8a\xbd\xb3\x92\x44\xc2\x72\x48\x5a\x3a\x00\xe9\xdc\x2e\x89\x66\ \xd8\x2a\xe4\xd3\x6d\x62\xb2\xc3\xb2\x77\x5a\x5c\xd4\x82\xc8\xd9\ \x6a\xa1\x9e\xc8\x1c\xf3\x1d\x96\xbd\xd3\xaa\x06\xb0\x85\xdb\x29\ \xc5\x3a\x29\x0e\x97\xc8\x25\xf8\x26\x95\x81\xe5\x96\x29\xb6\x0d\ \x48\x75\x6c\x57\x72\x09\xcb\x21\x69\xf1\x54\x1e\x8a\x45\x0d\x52\ \x5e\x3e\x4f\xb2\x1d\x96\x43\xc7\xc5\x69\x0f\x14\x2b\xee\xaf\x2a\ \xd5\xee\x92\xf2\x0b\x94\x7c\x87\x65\xef\xb4\x38\x18\x4f\x52\x97\ \x21\xc4\x92\xc6\xec\xb0\x02\xef\xb4\xca\x00\xec\xe1\x76\x4d\x12\ \x33\x10\x4b\x25\xc5\xe5\xb1\xf2\x42\xed\xf3\x50\x78\x3a\x0f\x49\ \x49\x4d\xac\xad\x7f\x10\x33\x09\x8b\xbb\x88\x24\x31\x0b\xab\x4a\ \xb5\xcd\xb1\xf6\xa2\x63\xb2\xc3\xb2\x77\x5a\x25\x00\xf6\x73\xbb\ \x27\xee\x02\xb2\xc3\x12\x53\xc7\xc5\x53\x7a\x48\x2c\x24\x7f\x14\ \x90\x1d\x96\x6f\x9d\xd6\x76\x00\x4f\xf1\xf3\x40\x42\xc5\x93\xfc\ \xd9\x61\xb9\xea\xb8\xd8\x18\x24\x34\x95\x55\xa5\xda\x0a\x36\x03\ \x3b\x2c\xa6\x2d\x12\xb2\x01\xae\x80\xce\x0e\xcb\x9f\x8e\x8b\x63\ \x5b\x14\x2d\x37\x55\x95\x6a\xf7\xb2\x19\xd8\x61\xf9\xdb\x69\x15\ \x03\x38\xc2\x96\xa0\x08\x91\xf4\x79\x80\xec\xb0\x22\xd7\x71\x55\ \x83\x25\x6b\x28\xbc\x62\xe2\xd4\x1a\x76\x58\x91\xed\xb8\x9a\x01\ \xe4\xb3\x25\x28\x84\x24\x53\x0d\x94\x1d\x96\x30\x3b\x2d\x96\xad\ \xa1\x50\xa8\x91\x42\x8d\x75\x76\x58\xe2\xe9\xb8\x4a\xc0\x99\xf2\ \xe4\xbf\x03\x55\xa5\xda\x12\x36\x03\x3b\xac\x68\x75\x5c\x65\x60\ \x15\x08\xf2\xae\xa5\xaa\x54\xab\x61\x33\xb0\xc3\x62\xc7\x45\xec\ \xa8\xd8\x61\x11\x3b\x2e\x62\x47\xc5\x0e\x2b\x56\x3a\xae\x12\x70\ \x8c\x2b\x16\x71\x8c\x8a\x1d\x96\xa8\x3b\x2e\x0d\x80\x7a\x70\xd6\ \xbc\xd4\xed\xae\x2a\xd5\x6e\x67\x33\xb0\xc3\x92\x52\xe7\x55\x07\ \x60\x03\x5b\x42\x52\x78\x1a\x0d\x3b\x2c\xc9\x77\x5c\x65\xe0\x38\ \x17\x77\xfb\x88\x1d\x96\x08\x3b\xaf\xbd\x00\x36\xb1\x25\x44\x81\ \xb3\xd2\xd9\x61\x91\xbd\xe3\x2a\x06\x50\x07\x8e\x75\x09\x0d\xc7\ \xa6\xd8\x61\x91\x97\xce\x6b\x33\x80\x6a\x76\x5e\x51\xc3\xd3\x66\ \xd8\x61\x51\x10\x9d\xd7\x2e\xf0\xa4\x6b\x26\x29\x62\x87\x25\xb2\ \xce\x4b\x63\xef\xbc\x38\xe6\x15\xbc\x01\x00\xdb\x39\x26\xc5\x0e\ \x8b\x22\x9b\xbe\x2a\xc0\x35\x16\x7d\x4e\x51\x00\x2a\x58\x77\x8a\ \x1d\x16\x09\xa7\x03\xdb\x0e\xce\xf5\x9a\x50\x09\x60\x17\x3b\x28\ \x76\x58\x24\x9e\x4e\x6c\x3b\x80\xb2\x18\x48\x61\x35\x00\xaa\xab\ \x4a\xb5\x75\x7c\xd7\xd9\x61\x91\xb4\x3a\xb1\x12\x00\x25\xf6\x8e\ \x4c\x6c\x83\xf9\x07\x00\xec\xb5\x77\x4e\x4c\x4e\xec\xb0\x88\x9d\ \x19\x8a\x01\x68\xec\xff\x46\x72\xf7\x72\x00\xb6\xf3\x2e\xeb\x00\ \xd4\x31\x2d\x11\x3b\x2c\x22\x0a\xe4\x4b\x0c\xf6\x2f\x30\xb5\xfd\ \xa7\xd8\xe1\x32\xa9\xce\x17\x9c\xf8\x02\x85\xfd\x5f\x9d\xfd\xa7\ \x1e\x00\xf8\x85\x4a\x44\x0c\x58\x44\x0c\x49\x13\xa1\x68\x22\x24\ \x95\xd8\xf7\xfa\x39\x1f\x39\xbc\x5a\x00\x34\xc3\x36\xca\x31\x11\ \xce\xea\x39\xfc\x4a\xc4\x80\x45\x44\xc2\x0e\x4e\x25\x0e\x61\xa9\ \x18\x9c\x42\x2c\x76\x0d\x13\x21\xcc\x1e\xc4\xea\xd8\x24\x44\x0c\ \x58\x44\x14\xba\xe0\x34\x31\xca\x54\x6c\xff\x97\xa7\x2e\x90\xa3\ \x03\xb0\x8d\x8a\xd5\xc3\x36\xff\x87\x23\x62\x44\x0c\x58\x44\xe4\ \x10\xa0\x26\x7e\x38\xf2\x44\xa1\xd4\x60\x0f\x60\x75\x0c\x60\x44\ \x0c\x58\x44\x52\x0b\x51\x1a\x7b\x78\xda\x6c\xff\x97\xc5\x63\x49\ \x08\x06\xec\xc1\x6b\xaf\x3d\x7c\x35\xb3\x49\x88\x18\xb0\x88\x84\ \x18\xa4\x36\x3b\x84\x28\x4e\x1a\x27\x31\x6b\x99\x08\x5f\x5c\x69\ \x93\x88\x01\x8b\x28\xd2\x41\x6a\x33\x38\x1a\x45\xb1\x65\x00\xb6\ \x11\x2f\x06\x2f\x22\x06\x2c\xa2\x80\x83\x54\x31\x6c\x55\x58\xcb\ \x18\xa4\x88\xbc\x06\xaf\x6a\xd8\x2a\xff\xd6\xb3\x39\x88\x18\xb0\ \x88\x26\xc2\x54\x19\x6c\x23\x52\x5c\xe2\x91\x28\x74\xf6\xc1\x36\ \xda\x55\xcd\xa6\x20\x06\x2c\xa2\xd8\x08\x53\x65\x60\xc9\x03\xa2\ \x68\x38\x00\xdb\x48\x17\x43\x17\x31\x60\x11\x89\x38\x4c\x71\xe9\ \x6b\x22\x71\x84\xae\x5d\x9c\xd7\x45\x0c\x58\x44\xc2\x0c\x53\x1a\ \x7b\x98\x2a\x03\xe7\x4c\x11\x89\xd9\xc4\x9c\xae\x5d\x2c\x1f\x41\ \x0c\x58\x44\x91\x0f\x54\x25\x00\x2a\xc0\xd1\x29\xa2\x58\x70\x00\ \x40\x05\x97\x0d\x22\x06\x2c\xa2\xd0\x07\xaa\x32\x7b\xa0\x62\x8d\ \x29\x22\x6a\xb1\x07\xae\x6a\x36\x05\x31\x60\x11\x31\x50\x11\x11\ \x03\x17\x31\x60\x11\x31\x50\x11\x11\x03\x17\x11\x03\x16\x89\x29\ \x50\x95\x80\x73\xa8\x88\x28\x32\x38\x87\x8b\x18\xb0\x48\xb2\x81\ \x4a\x0d\x60\x17\x80\x2d\x6c\x0d\x22\x8a\xb2\x1a\x00\xdb\xab\x4a\ \xb5\x3a\x36\x05\x31\x60\x91\x18\x43\x55\x19\x78\xd8\x8f\x88\x84\ \x8d\x87\x13\x89\x01\x8b\x04\x1f\xa8\x38\x4a\x45\x44\x62\xc7\xd1\ \x2d\x62\xc0\x22\x41\x84\xaa\x62\xd8\x8a\x02\xae\x62\x6b\x10\x91\ \xc4\x34\x00\x28\xe3\x22\xd6\xc4\x80\x45\x91\x0a\x55\x9b\xed\xa1\ \x8a\x15\xd3\x89\x28\x56\x0c\xd8\xc3\x16\x97\xf4\x21\x06\x2c\x0a\ \x69\xa8\xda\x0e\xdb\x7c\x2a\x86\x2a\x22\x62\xd8\xb2\xcd\xdb\xda\ \xc5\xa6\x20\x06\x2c\x0a\x24\x54\x55\x00\xd8\xc9\x96\x20\x22\xf2\ \xa8\xb2\xaa\x54\x5b\xc1\x66\x20\x06\x2c\xf2\x14\xaa\xb6\x03\x78\ \x8a\x2d\x41\x44\x14\x90\xfb\x39\xb2\x45\x0c\x58\xe4\x18\xaa\x2a\ \xc0\xc3\x7f\x44\x44\xa1\xc2\xc3\x88\xc4\x80\x15\xa3\xa1\xaa\x04\ \xc0\x5e\x86\x2a\x22\xa2\x88\x84\xad\xcd\xac\x24\xcf\x80\x45\xd2\ \x0d\x55\x1a\x7b\xa8\x62\x49\x05\x22\xa2\xe8\x68\xb0\x87\xad\x66\ \x36\x05\x03\x16\x89\x3b\x54\xb1\xf8\x27\x11\x91\x30\xb1\xa8\x29\ \x03\x16\x89\x30\x58\x95\xd9\x83\x15\x0f\x01\x12\x11\x09\xdb\x80\ \x3d\x68\x55\xb3\x29\x18\xb0\x48\x98\xa1\x4a\x0d\xa0\x0e\x3c\x04\ \x48\x44\x24\x56\x0d\x00\x4a\x38\xaa\xc5\x80\x45\xc2\x08\x56\x2c\ \xad\x40\x44\x24\x3d\x2c\xf9\xc0\x80\x45\x51\x08\x55\x1c\xad\x22\ \x22\x8a\x0d\x1c\xd5\x62\xc0\xa2\x08\x04\xab\x32\x70\x6e\x15\x11\ \x51\x2c\xe2\x5c\x2d\x06\x2c\x0a\x43\xb0\xaa\x06\xcf\x04\x24\x22\ \x22\x9b\x9a\xaa\x52\x6d\x19\x9b\x81\x01\x8b\x02\x0b\x55\xc5\x00\ \xaa\xc1\xc3\x80\x44\x44\xe4\x5a\x03\x80\xb2\xaa\x52\x6d\x3d\x9b\ \x82\x01\x8b\xbc\x07\xab\x32\xf0\x30\x20\x11\x11\xf9\x8e\x87\x0f\ \x19\xb0\xc8\x43\xb0\xaa\x00\xb0\x93\x2d\x41\x44\x44\x41\xa8\xac\ \x2a\xd5\x56\xb0\x19\x18\xb0\x18\xac\x38\xbf\x8a\x88\x88\x42\x8f\ \xf3\xb4\x18\xb0\x62\x32\x54\xb1\xcc\x02\x11\x11\x45\x02\xcb\x3c\ \x30\x60\x31\x58\x11\x11\x11\x31\x68\x31\x60\x11\x83\x15\x11\x11\ \x31\x68\x11\x03\x56\xc4\x83\x55\xb1\x3d\x58\xf1\x8c\x40\x22\x22\ \x12\x92\x01\x7b\xd0\x62\x89\x07\x06\x2c\x51\x05\x2b\x35\x80\x66\ \x06\x2b\x22\x22\x12\x41\xd0\xd2\x70\x44\x8b\x01\x4b\x0c\xc1\xaa\ \x0e\x3c\x14\x48\x44\x44\xe2\xc2\x43\x87\x0c\x58\x0c\x56\x44\x44\ \x44\x0c\x5a\xc2\x26\x67\x13\x04\x1d\xae\xea\x00\xf4\x33\x5c\x11\ \x11\x91\x04\xac\x02\xd0\x6f\xff\x6e\xa3\x20\x70\x04\x2b\xf0\x60\ \x55\x0d\x16\x08\x25\x22\x22\x69\x63\xc1\x52\x06\xac\x88\x05\xab\ \x32\x00\x7b\xd8\x12\x44\x44\x14\x43\xb6\x72\xad\x43\x06\xac\x70\ \x05\x2b\x96\x5c\x20\x22\xa2\x58\xc6\xd2\x0e\x0c\x58\x21\x0d\x56\ \x9c\xc0\x4e\x44\x44\x34\x85\x13\xe1\x7d\xc0\x49\xee\x9e\xc3\x55\ \x35\x38\x81\x9d\x88\x88\xc8\xd1\xc4\x44\xf8\x6a\x36\x85\x7b\x1c\ \xc1\x72\x1d\xac\xca\xc0\x79\x56\x44\x44\x44\xbe\xe0\xfc\x2c\x06\ \x2c\xaf\xc1\x8a\x15\xd8\x89\x88\x88\xfc\xc7\x8a\xf0\xd3\xf0\x10\ \xe1\x54\xb8\xaa\x86\xed\x70\x20\xc3\x15\x11\x11\x91\x7f\xd2\xc1\ \xc3\x86\x4e\x62\x7e\x04\xcb\x7e\x76\xe0\x11\x6e\x0a\x44\x44\x44\ \x21\xb3\x3a\xd6\xcf\x36\x8c\xe9\x80\x55\x5e\x5b\x54\x0f\x4e\x60\ \x27\x22\x22\x0a\x87\x86\xaa\x52\x6d\x31\x03\x56\x6c\x05\xab\x32\ \x70\x12\x3b\x11\x11\x51\x24\xc4\xe4\x24\xf8\x98\x0a\x58\xac\x69\ \x45\x44\x44\x14\x15\x31\x57\x3b\x2b\x66\x26\xb9\xdb\x47\xad\x58\ \xd3\x8a\x88\x88\x28\xf2\x26\x6a\x67\x95\xc5\xca\x0b\x8e\x89\x11\ \x2c\xce\xb5\x22\x22\x22\x12\x8c\x98\x98\x9b\x25\xe9\x80\x55\x5e\ \x5b\x54\x02\x60\x3f\xb7\x65\x22\x22\x22\xc1\xb9\xa6\xaa\x54\x5b\ \x27\xd5\x17\x27\xd9\x43\x84\xe5\xb5\x45\x7b\x19\xae\x88\x88\x88\ \x04\x6b\xbf\xfd\xbb\x5a\x92\x24\x37\x82\x55\x5e\x5b\xa4\x01\x50\ \x0f\x16\x0c\x25\x22\x22\x12\x83\x01\x00\xc5\x55\xa5\xda\x66\x29\ \xbd\x28\x49\x8d\x60\x95\xd7\x16\x6d\x07\x70\x8e\xe1\x8a\x88\x88\ \x48\x34\xd2\x01\x9c\xb3\x7f\x87\x4b\x86\x64\x46\xb0\x38\x91\x9d\ \x88\x88\x48\xf4\x24\x33\x01\x5e\xf4\x01\xcb\x7e\x48\xf0\x1c\xb7\ \x49\x22\x22\x22\xc9\x58\x28\xf6\x43\x86\xa2\x3e\x44\xe8\x70\x48\ \x90\x88\x88\x88\xa4\x43\xf4\x87\x0c\x45\x3b\x82\x55\x5e\x5b\x54\ \x07\x60\x03\xb7\x41\x22\x22\x22\xc9\x3a\x50\x55\xaa\x2d\x61\xc0\ \x8a\x4c\xb0\x52\x03\x68\x06\x27\xb2\x13\x11\x11\xc5\x82\x01\x00\ \x1a\xb1\x2d\xb3\x23\xaa\x43\x84\xe5\xb5\x45\xc5\xb0\x2d\x77\xc3\ \x70\x45\x44\x44\x14\x1b\xd2\x61\x5b\x66\x47\x54\x93\xdf\x45\x13\ \xb0\xec\xc7\x62\x8f\x70\x3b\x23\x22\x22\x8a\x49\x47\xc4\x34\x2f\ \x4b\x14\x87\x08\xcb\x6b\x8b\xaa\x01\x6c\xe1\xb6\x45\x44\x44\x14\ \xf3\x6a\xaa\x4a\xb5\x65\x0c\x58\xc1\x87\xab\x3a\x70\x32\x3b\x11\ \x11\x11\x4d\x11\xfc\xe4\x77\xc1\x06\x2c\xfb\x64\xf6\x7a\x00\xf9\ \xdc\x8e\x88\x88\x88\x68\x9a\x16\xd8\x96\xd8\x11\xe4\xe4\x77\x41\ \x06\x2c\x9e\x29\x48\x44\x44\x44\x3e\x10\xec\x19\x86\x82\x9b\xe4\ \x6e\xaf\xcc\xce\x33\x05\x89\x88\x88\xc8\x9b\x89\x33\x0c\x35\x42\ \x7b\x62\x82\x1a\xc1\x2a\xaf\x2d\x2a\x01\xb0\x9f\xdb\x0b\xc5\xba\ \x8c\x9e\x64\x64\xf4\x26\xf9\x75\x9f\xdc\xf3\x6a\xa8\x86\x13\xfc\ \xba\xcf\xa2\x93\x59\x7e\x3f\x37\xe5\x70\x3c\x72\x2f\xa8\xf9\x26\ \xf9\xe8\xcf\xb7\xd7\xe3\xc3\x8d\xa7\xd9\x10\x44\xe1\x77\x4d\x55\ \xa9\xb6\x8e\x01\x6b\x66\xb8\x2a\x03\xb0\x87\xdb\x07\xf9\x6a\xed\ \x87\x1a\xfc\xe3\x8b\xc5\x50\x8e\xc4\xb3\x31\x88\x21\x8b\x88\x00\ \x60\x6b\x55\xa9\xb6\x9a\x01\x8b\xe1\x8a\x02\x90\xd1\x93\x8c\xfb\ \x2a\x36\x32\x58\x49\x88\xe2\xd2\x1c\x24\xbf\x57\x06\x99\x5a\x29\ \xfa\xd7\x52\x5e\x5b\xc4\x37\x94\x88\x21\x2b\xfa\x73\xb0\x18\xae\ \xc8\xdf\x70\xf5\xe0\x8e\x1b\x18\xae\x24\x42\x96\xae\x44\x5a\xf7\ \x43\x48\x39\xf4\x5d\x49\x84\xab\xd3\x5d\x9f\xf2\x4d\x25\x8a\xbe\ \x3d\xf6\x6c\x11\xbb\x01\x8b\xe1\x8a\xfc\xf5\xcf\x4f\x94\xb0\x11\ \x24\x24\xa1\xb4\x58\x12\xc1\x6a\xc2\xa9\x4e\x06\x2c\x22\x86\xac\ \x28\x07\x2c\x86\x2b\xf2\xd7\xa2\x93\x59\x50\xfb\x39\xf1\x9b\x04\ \x4e\x42\xe1\x8a\x88\x18\xb2\xa2\x1e\xb0\x18\xae\x28\xa0\x80\xd5\ \x98\xcd\x46\x90\x18\xcb\x81\x66\x49\xbd\x9e\xd3\x5d\x9f\xf0\x4d\ \x25\x62\xc8\x02\x00\xc4\x31\x5c\x91\x68\x02\x56\x00\x25\x05\x28\ \x86\xc3\x9b\xc5\x82\xae\xae\x2e\x00\x80\xc2\x7a\x01\xe3\xa3\xe7\ \x60\x1e\x33\x23\x6e\xbc\x15\xf1\xe3\x6d\x33\x6e\x3f\x26\x9b\x8b\ \x11\xf9\x3a\x8c\xc9\xe6\x22\x25\x25\x65\xf2\xf2\xd4\xd4\x54\x00\ \x40\x52\x52\x12\x14\x0a\x85\xc7\xbf\x39\x6c\x1a\x64\xc3\x13\x09\ \x33\x64\x21\xd2\x13\xdf\x23\x1a\xb0\xec\x75\xae\x18\xae\x88\x08\ \x00\x60\xfe\x5b\x73\xd8\x1e\x5b\xa1\x50\x20\x2f\x2f\xcf\xfe\x5b\ \x1e\xd0\xf5\x16\x70\xb1\xd2\xfb\x1d\x73\x9f\x02\x66\x6f\x0f\xe8\ \x6f\xb6\xf6\x35\xf2\x4d\x25\x12\x6e\xc8\x6a\x8e\x64\x9d\xac\x88\ \x1d\x22\x64\x11\x51\x0a\x56\x53\x61\x37\x1b\x41\x8a\x21\x2b\x52\ \x87\x09\xe7\x54\xf8\x76\x3b\xfd\x5e\xbe\x29\x44\xd2\xb4\xdf\x9e\ \x45\xa4\x13\xb0\xec\x25\xec\x19\xae\x28\x28\x87\xae\x6a\x66\x23\ \x30\x60\x11\x11\x05\x1b\xb2\x34\x92\x08\x58\xf6\x85\x9b\xeb\xf9\ \x9e\x52\xb0\xfa\x67\x1b\x70\x7c\x75\x3b\x1b\x42\x6a\x01\x6b\x9f\ \xc0\x0e\xab\x19\x0e\xf0\x4d\x21\x92\xb6\x7a\x7b\x36\x11\x77\xc0\ \xb2\x87\x2b\x2e\xdc\x4c\x21\xf1\xe1\xc6\x53\x6c\x04\x89\xb1\x1c\ \xed\x84\xa5\xa1\x33\x3a\x7f\x3c\x63\x8b\xed\x87\x88\x62\x49\x3a\ \x22\x30\xf0\x13\xd6\x80\x55\x5e\x5b\x54\x07\x20\x9f\xef\x25\x85\ \x4a\x53\x61\x37\x3a\xe6\xeb\xd8\x10\x12\x33\x16\xe9\x51\xac\x8c\ \x2d\xc0\xca\x71\x60\x5e\xb5\xed\x67\xe5\x38\x83\x16\x51\x6c\xc9\ \xb7\x67\x14\xf1\x05\xac\xf2\xda\xa2\x5d\x00\x36\xf0\x3d\xa4\x50\ \xe3\xa2\xb9\x12\x0c\x58\xb5\x11\x9a\x45\x30\x6f\xcf\x54\xb0\x9a\ \x71\x5d\xf0\x41\x6b\x69\xce\xe5\x7c\x33\x89\xc4\x63\x83\x3d\xab\ \x88\x27\x60\xd9\x6b\x5d\x6d\xe3\x7b\x47\xe1\x70\xe8\xaa\x66\x18\ \x55\x63\x6c\x08\x09\xb1\xb6\xe8\x22\x33\xd9\x3d\xa3\xcc\x87\x10\ \x56\x1d\x78\x7e\xcb\x58\xce\x37\x93\x48\x5c\xb6\x85\xab\x10\x69\ \xc8\x03\x96\x7d\x76\x3e\x6b\x5d\x51\x58\x71\x14\x4b\x7a\x4c\x4f\ \x7f\x2c\xfa\xd7\xb0\x6a\xc1\x3f\xf0\x8d\x24\x12\x9f\x3d\xe1\x38\ \xb3\x30\x1c\x23\x58\x3c\x63\x90\xc2\xee\x03\x4e\x76\x97\x9c\xb1\ \x37\x1b\xa3\x37\xd9\x3d\x44\x0a\xe6\x5c\x8e\x2b\x17\x6f\xe6\x9b\ \x49\x24\x3e\x21\xcf\x2e\xb2\xf1\xf1\xf1\x90\x3d\x58\x79\x6d\xd1\ \x5e\x00\x9b\xf8\x3e\x51\x24\xdc\xfa\xdc\xe5\x58\xf3\x77\x0d\x1b\ \x42\x42\xe4\xf9\x6a\x24\xbd\x76\x3b\x14\xab\x72\x02\x7e\x0c\x4b\ \x43\x27\xc6\x75\x46\xb7\xd7\x8f\xeb\x8c\xee\x83\x9c\x87\xeb\x2c\ \x0d\x9d\x18\x1f\x30\x06\xfc\xbc\xde\xfb\xfa\x71\xbc\xbb\x49\xcb\ \x37\x99\x48\xb8\xf6\x55\x95\x6a\x43\xb6\x87\x14\xb2\x80\x55\x5e\ \x5b\xb4\x1d\xc0\x53\x7c\x7f\x28\x52\x72\xcf\xab\x71\x5f\xe5\x46\ \x36\x04\x89\x02\x03\x16\x91\x28\xdc\x5f\x55\xaa\x0d\xc9\xc4\xf7\ \x90\x04\xac\xf2\xda\xa2\x62\x00\x47\xf8\xbe\x50\xa4\xfd\xf3\x13\ \x25\x58\xc8\x45\xa0\x63\xd2\x71\x2f\x7d\x57\x0b\x80\x61\xfb\x4d\ \xfa\x67\x0f\xcf\xb8\x3e\x4e\x69\x46\x52\x41\x2f\x32\xd3\x9d\x47\ \xa5\xfa\x67\x1b\xd0\x3f\xdb\x30\xe3\xf6\xed\xf3\x75\x30\x26\xf1\ \xe4\x0a\xa2\x18\xb0\xba\xaa\x54\x1b\xf4\x21\xc3\x50\x2d\xf6\x5c\ \xc7\xf7\x83\xa2\xe1\x83\x8d\xa7\x63\x2a\x60\xb5\x8c\x03\x06\xb8\ \x0f\x16\x3d\x00\xba\xbd\xec\x33\x1d\xc7\xb8\xd7\xbf\x31\x2c\xb5\ \x86\xeb\x56\xb9\xbe\xfc\x42\xea\xe4\x7f\xe5\xaa\x31\xa4\x7e\xf5\ \x0c\xd2\x56\xb7\x41\xce\x20\x45\x14\xcb\xea\x00\x04\x5d\xe9\x3d\ \xe8\x11\xac\xf2\xda\xa2\x6a\x00\xac\xd0\x47\xbe\x7d\xcf\x3d\xbd\ \x1e\xc3\x87\xf3\xd8\x10\x24\x78\x49\x6b\xda\x91\xf9\x9d\xcf\x42\ \x12\xb6\x0a\x33\xbf\x88\x6f\x14\xff\x3b\xe4\x72\xdb\x79\x45\x46\ \xd3\x30\xcc\x16\x93\xcf\xf7\xef\x33\xb4\x63\xd4\x62\xf0\xf9\xf6\ \x17\x87\x9a\xa1\x33\x76\xf8\x7c\xfb\xce\xc1\xd3\x68\x1f\x3c\xc1\ \x37\x9d\x68\x4a\x4d\x55\xa9\xb6\x2c\x6a\x01\xab\xbc\xb6\x68\x33\ \x80\x37\xf8\x3e\x90\x37\xd6\xe1\x78\xb4\xfd\xf0\x7a\x58\x47\xe2\ \xd9\x18\x14\x55\xd9\xf9\x6a\xcc\xd1\xa8\xd1\x54\xdf\x09\x83\x0f\ \x93\xd6\xe5\xaa\x31\xcc\x79\xf8\x6f\x48\x58\x10\xd8\x0a\x02\xff\ \x7c\xf9\x7f\x63\x8e\x5a\xe3\xf6\xfa\xde\xde\x5e\xa8\xd5\x6a\x28\ \x14\x0a\xa7\xcb\x32\x33\x33\x27\x7f\x37\x99\x4c\x30\x9b\xcd\x48\ \x4a\x4a\xe2\x1b\x18\x22\x43\x23\xbe\xbf\x9f\xd6\x71\x0b\xba\x06\ \x9b\x7c\xbe\xbd\xd9\x3a\x86\xa6\xbe\xcf\x7c\xbf\xbd\xc5\x88\x53\ \xbd\x7f\x87\xd1\x3c\xc4\x37\x46\x58\x6e\xaa\x2a\xd5\xee\x8d\x56\ \xc0\xd2\x81\xeb\x0c\x92\x8f\xae\x4e\xdf\x8e\xcb\x57\x5c\xeb\x74\ \x99\xd1\x68\x44\x67\x7b\x1b\x00\x60\xdc\x2a\xc7\xb8\x51\x81\xa6\ \xcf\xcf\x4f\x75\x3c\x3d\xc9\x68\x3d\xd1\x8b\x11\xfd\xd4\xde\x7e\ \x5f\xdb\x20\xfa\xda\xd8\x11\x05\x1a\x2c\xdc\x49\x56\x2b\xb1\xa8\ \x38\xd7\xed\xf5\x29\xe9\x4a\x2c\x2a\xf6\x7c\x76\xdf\xca\x92\x85\ \xa2\x6c\x9b\x17\x2a\xf7\xe3\x0f\x95\xfb\x3d\xde\x26\x61\xfe\x00\ \xe6\x3c\x7c\xc0\xe7\x11\xad\xe9\xa3\x56\xae\x5c\xbc\x78\x11\x17\ \x2e\x5c\x40\x76\x76\x36\xe6\xcf\x9f\x0f\x00\x68\x6f\x6f\x47\x47\ \x47\x07\x72\x73\x73\x91\x97\x67\x1b\xed\x6d\x6e\x6e\x46\x6f\x6f\ \x2f\x34\x1a\x8d\x53\xf0\x22\x8a\x96\xdf\x7d\xfc\x2f\xe8\x1c\x3c\ \x2b\xf5\x97\x39\x50\x55\xaa\x0d\xf8\x50\x61\xc0\x01\x8b\x87\x06\ \x29\x10\xdf\x59\x53\x8d\xb4\xc4\x6c\xc1\x3d\x2f\xd3\xe8\x28\x8c\ \x03\xb6\xcf\xc2\x70\xff\x28\x5a\x0e\xf5\xce\xb8\xcd\xa2\x55\x39\ \x48\x51\x2b\xdd\x07\x18\x4d\x86\xc7\x00\x43\xc2\xd7\x54\xdf\x89\ \x87\xae\xf9\xbd\xc7\x91\xad\xb9\xbf\x7c\x0b\x71\xb3\xbd\xcf\x52\ \xbb\xfd\xd2\x47\x51\x30\xc7\xfb\xd2\x39\x16\x8b\x05\xa3\xa3\xa3\ \xb0\x58\x2c\x00\x80\xc4\xc4\xc4\x99\xe1\x2e\x21\x81\x6f\x0e\x09\ \xce\x2f\xf6\x6f\x8e\x85\x51\xb7\x80\x0f\x15\x06\x14\xb0\x78\x68\ \x90\x02\xb5\x64\xd6\x7a\x7c\xbd\xf0\xdf\x04\xff\x3c\xe7\x2f\xc8\ \x45\x62\x22\xbf\xd4\x62\xd5\xbe\x5d\x1f\xe1\xb7\x0f\xbc\x15\x54\ \xc8\x72\x0c\x58\x26\x93\x09\x23\x23\x23\x30\x99\x4c\x18\x1b\x13\ \xc7\x04\x7a\x57\x41\x6f\xf2\x8b\x43\x26\x43\x7c\xbc\xfb\xc3\xfd\ \xf1\xf1\xf1\x1e\x47\xee\x18\x18\xa5\xc1\x38\x36\x8c\x5f\xd4\x7d\ \x3d\x16\x5e\x6a\x40\x87\x0a\x03\x0d\x58\xcd\x00\xf2\xb9\x79\x51\ \x20\x6e\x2b\x7a\x1c\xf3\xd2\x56\x0a\xfa\x39\xa6\xa6\xa5\x60\xce\ \x1c\x1e\x8a\x89\x65\xef\x56\x1f\xc1\x53\x77\xbb\xde\x8f\x94\xab\ \xc6\x30\xff\x3f\xdf\xf4\x78\xff\x35\xd9\x37\x61\x75\xd6\x4d\x6c\ \x48\x11\x61\xa8\xf4\x9f\x6e\xb8\x1b\xcf\x7c\x78\x87\xd4\x37\x8d\ \x96\xaa\x52\xad\x26\xec\x01\xab\xbc\xb6\xa8\x02\xc0\x4e\x7e\x14\ \x29\x50\x59\xc9\x8b\xf0\xad\x4b\x9f\x15\xfc\xf3\x5c\xb4\x78\xbe\ \xc7\x0e\x93\xa4\xcf\xd3\x48\x56\xca\x17\x5b\x90\xf9\x9d\xcf\x18\ \xb0\x28\xe6\x43\xe5\xb1\xd6\xbf\xe1\x4f\x8d\x8f\x42\x11\x2f\x93\ \x72\x53\x55\x56\x95\x6a\x2b\xfc\xb9\x83\x5f\xdf\x1e\xf6\xc5\x10\ \x19\xae\x28\x28\xdd\x86\x26\x9c\xed\x13\xfe\xc2\xbe\xba\x7e\x3d\ \xdf\xac\x18\xb7\x69\xfb\x7a\x5c\xb9\x69\x99\xcb\xeb\x86\x3e\xc8\ \x87\xe9\x3c\xe7\xdc\x91\xb8\x8d\x8e\x8e\xba\xfd\x31\x1a\x8d\x18\ \x1c\x1c\x74\xfb\xd3\xd7\xd7\x87\x9e\x9e\x1e\x58\x47\x65\x30\x1a\ \x2c\x18\x19\xb4\x48\xb9\xa9\x76\xfa\xbb\x20\xb4\xbf\xbb\xe7\xbb\ \xb8\x39\x52\x28\xfc\xbd\xf5\x79\xc1\x3f\x47\xbd\xde\xc0\x37\x8a\ \xf0\xc0\x9e\x9b\xdd\x5e\x37\xb0\x77\x39\x1b\x88\xc8\xce\x6a\x19\ \x87\x41\x67\x86\x65\x6c\x5c\xaa\x2f\xd1\xaf\x0c\xe4\x73\xc0\x2a\ \xaf\x2d\x2a\x01\x17\x72\xa6\x10\xe9\x36\x34\xa1\x55\x7f\x4c\xd0\ \xcf\xd1\x6c\x36\x63\x64\xc4\xc8\x37\x2b\xc6\x25\xab\x95\xf8\xe6\ \xce\x6b\x5c\x5e\x37\x7c\x38\x0f\xe6\x1e\xd6\xa6\x22\x9a\x1e\xb4\ \x24\x6a\x93\x3d\x0b\xf9\xc4\x9f\xa5\x72\x38\x7a\x45\x21\xf5\xd1\ \x85\x17\x70\x6b\xd1\x63\x82\x7e\x8e\x7a\xbd\x01\x2a\x95\x92\x6f\ \x56\x8c\xbb\x73\xe7\x35\x6e\xeb\x64\x0d\x7d\xa0\x81\x7a\xf3\xf1\ \x90\xff\xcd\x53\xa7\x4e\xe1\xd4\xa9\x53\x3e\xdd\x56\xa5\x52\xf9\ \x5c\x84\xd4\xd7\x3a\x5a\xe1\x78\x4c\x22\x09\xd8\x05\xa0\x38\x64\ \x01\xcb\x5e\x96\x61\x15\xdb\x95\x42\xe9\x82\xfe\x28\xf4\xa3\x17\ \x05\x59\x17\x6b\xc2\xa0\x7e\x88\x67\x13\x92\x6d\xd7\x75\xdb\x7a\ \xec\xdb\xfd\xd1\x8c\xcb\x47\x1b\x67\xbb\xbc\xfd\xa8\x25\x72\x2b\ \x3a\x8e\x8c\x8c\x60\x64\x64\xc4\xa7\xdb\xf6\xf6\xf6\xf2\xcd\x64\ \x60\xa5\xc0\xad\x2a\xaf\x2d\xda\xec\x4b\xd9\x06\x5f\x47\xb0\x2a\ \xd8\xa6\x14\x0e\xda\xee\x77\xb0\x7e\xde\x9d\x82\x7e\x8e\x23\x23\ \x46\x8e\x62\x11\xd6\x6f\x5a\xe6\x32\x60\x19\x1b\x5d\x2f\x36\xde\ \x67\x3c\xcf\x46\x13\xa9\x58\x0c\xac\x99\x99\x99\x58\xbf\x7e\x3d\ \xdf\x7c\xdf\x33\x91\xd7\x80\xe5\x75\x0e\x16\x47\xaf\x28\x9c\x5a\ \x07\x8e\x09\xfe\x39\x8e\x0c\x73\x1e\x16\xd9\x96\x01\xca\xce\x77\ \x7d\xd6\xa0\xbb\x90\x15\x0c\x8e\x34\x91\x58\x49\x78\x92\xfb\x84\ \x55\xf6\x6c\x14\x5c\xc0\x02\x47\xaf\x28\x8c\x2e\xe8\x8f\x8a\x60\ \x6f\x76\x94\x6f\x14\xd9\x43\x96\x26\x62\x01\x8b\x88\x04\xcd\x6b\ \x36\xf2\x18\xb0\x38\x7a\x45\x91\x20\xf4\xb3\x09\x79\x26\x21\x4d\ \x58\xbc\x2a\x97\x8d\x40\x44\x80\x0f\xa3\x58\xde\xe6\x60\x6d\x67\ \x1b\x52\xb8\x5d\xd0\x1f\x15\xfc\xd2\x39\x91\x9c\x87\x35\x38\x38\ \xe8\xf4\xef\x0c\xcd\x75\x48\xec\x70\x9e\x0b\x94\x74\xf1\x13\x58\ \xad\x56\x58\xc7\xad\x6e\x1f\x77\x28\xf3\x32\x0c\x66\xae\xc5\x60\ \xe6\x5a\x97\xd7\xab\x54\x2a\xcc\x9e\x3d\x1b\x99\x99\x99\x50\x28\ \x14\xdc\x30\x5d\x58\x54\x9c\xe3\xf2\xf2\xb1\xf3\xe9\x21\xff\x5b\ \x62\x59\xb3\x90\x28\x86\x6d\x87\x87\xb9\x58\x6e\x03\x56\x79\x6d\ \x51\x31\x80\x0d\x6c\x3f\x22\xdb\x3c\xac\x48\x05\xac\xd4\xd4\x54\ \xa7\x7f\x67\xc8\xfb\x26\x80\x6f\x02\xcd\x75\x40\xcd\x35\xbe\x3f\ \x6e\xef\x61\xe4\x02\xc0\xba\x6d\xc0\x75\xac\xba\x12\x58\xc0\x72\ \x3d\x82\x65\x1d\x8e\x0f\xf9\xdf\xd2\xeb\xb9\x92\x00\x89\xd3\xb8\ \x75\x3c\x56\x5e\xea\x86\xf2\xda\xa2\xe2\xaa\x52\x6d\xbd\x5f\x01\ \x0b\x1c\xbd\x22\x12\x36\x4d\x89\x2d\x2c\x1d\xdc\xed\xdf\xfd\xea\ \xab\x19\xb0\x02\x94\xac\xe6\xd9\xa4\x52\x35\x77\xee\x5c\xcc\x99\ \x33\xc7\xe7\xdb\xcf\x9a\x35\x0b\x69\x69\x69\xce\xc1\xc2\xc3\xda\ \xbe\xc9\xc9\xc9\x50\x2a\x7d\xdf\x7e\x14\x0a\x85\xdb\xc7\x7b\xee\ \xb9\xe7\xa0\xd3\xe9\x20\x93\xc9\x90\x94\x94\x24\xb8\x35\x53\x63\ \x27\x5f\x4d\x66\xa5\x32\x7f\x03\xd6\x16\x7e\xe4\x28\x12\x12\x15\ \x29\x6c\x84\x40\x29\x03\x58\x0b\x6f\x74\x00\xd0\x35\x03\x6a\x0d\ \xdb\x4f\x40\xd4\x6a\xe7\xf7\x72\xcd\x9a\x35\x1e\x6f\xbf\x70\xe1\ \x42\xbf\x1e\x3f\x3d\x3d\xdd\xaf\x43\xbf\x72\xb9\xdc\x63\x60\xa0\ \xf0\xf2\xd4\xf6\xdf\xfe\xf6\xb7\x71\xf2\xe4\x49\xfc\xf9\xcf\x7f\ \x86\xc1\x60\x40\x7c\x7c\xbc\x5f\xe1\x8d\x42\x6a\x8b\x5f\x01\xab\ \xbc\xb6\xa8\x82\x6d\x46\x91\x92\x9d\xbc\x88\x8d\x10\x28\xa3\x2e\ \xb0\xfb\x31\x60\x85\x54\x7e\xc6\x2a\xfc\x68\xe3\xbf\x87\xf4\x31\ \x2f\xbb\xec\x32\xc1\x7e\xc1\x53\xf4\x15\x16\x16\xa2\xb0\xb0\x70\ \x72\x34\xcb\x6a\xb5\xfa\x5c\xc8\x34\xe4\x3b\xc9\x71\xb1\xbd\x5c\ \x54\x79\x6d\xd1\xf6\xaa\x52\xed\x8c\xc3\x02\xee\xc6\x15\x37\x73\ \xf3\xa5\x48\x11\xfa\x04\x77\x41\xeb\xac\x67\x1b\x08\xc0\xfc\xa2\ \xd9\x6c\x04\xf2\x89\x42\xa1\x40\x42\x42\x82\xd3\x8f\x4a\xa5\x42\ \x4a\x4a\xca\xe4\x8f\x4a\xa5\xf2\x79\xb4\xb1\xb0\xb0\x30\xea\xaf\ \x69\x76\x72\x7e\xac\xbf\xad\x65\xae\x2e\x8c\x73\x91\xc4\x4a\xc0\ \xd2\x0c\x14\xa9\x2f\xa6\xb4\x4b\x45\xf1\x3c\x55\x49\x22\x1a\x7e\ \x5f\xb5\x05\x28\xa9\x98\x1a\xa1\x32\xea\x80\xba\x0a\xe7\xb9\x5a\ \xcd\x75\xb6\x39\x5c\xe4\x97\x63\x75\xe7\x5c\x5e\x9e\x94\x96\xc0\ \xc6\x09\x63\x20\xf1\x14\x36\x12\x12\xdc\xb7\x7d\x5c\x5c\x5c\xc0\ \xf7\x15\x22\x93\xc9\x84\xd1\xd1\x51\x98\x4c\x26\x98\x4c\x26\x41\ \x3f\x57\x8b\x79\x1c\x8a\x38\x59\xac\x6c\xa6\xab\xca\x6b\x8b\x4a\ \xaa\x4a\xb5\x75\x1e\x03\x16\x38\x7a\x45\x11\xb4\x78\x96\x38\x96\ \x66\x10\xf4\x52\x39\x89\xe9\xb6\x40\x75\xa5\x9b\xf3\x52\x94\x6a\ \xdb\xa4\xf6\xeb\x76\xd9\x46\xbc\xaa\x19\xac\x02\xd5\xd5\xec\xfa\ \x90\xac\x2a\x2d\x31\x62\xcf\x21\x3e\x3e\x1e\x32\x99\xeb\x2f\x2e\ \xb9\x5c\x8e\xb8\xb8\x38\x8f\xf7\x75\x37\x21\x5a\x26\x93\x21\x3e\ \x3e\x9e\x6f\xb2\x80\x4d\x8c\x78\x39\xea\xe9\xe9\x61\xc3\x08\xc3\ \x66\x00\x5e\x03\x56\x19\xdb\x89\x22\xa5\x28\xfb\x2b\x0c\x57\xc1\ \x28\xab\xf3\xef\xf6\x39\xc5\xc0\x43\x3a\x6e\x78\x01\x6a\x6a\xe8\ \x74\x79\xf9\xea\x2f\x2d\x45\x6e\x2e\x8b\x90\x52\xe4\x4d\xac\x99\ \x68\xb1\x58\xd8\x18\x51\xee\x8d\x31\xad\xfa\x82\xd3\xae\x8c\xfd\ \xf0\x60\x3a\xdb\x89\x22\x61\x7e\xda\xa5\x48\x54\x24\x0b\xfe\x79\ \xa6\xa6\x25\xf3\xcd\x22\x00\xc0\x47\x7b\x4f\xb8\xbc\x7c\x65\xc9\ \x42\x36\x0e\x45\x45\x7b\x7b\x3b\x1b\x41\x18\xd2\xed\x19\xca\x75\ \xc0\x02\x50\xc2\x36\xa2\x48\x59\x93\x2b\x8e\xa3\xd1\x69\x69\x2c\ \x23\x41\xb6\xf9\x57\x17\x5b\x66\x8e\xfe\xad\xdc\xa0\x61\xe3\x10\ \x4d\x63\xb5\xc4\xe4\x59\xa8\x1e\x03\x56\x19\x37\x0b\x8a\x48\x68\ \x49\x9c\x83\xc5\xb3\xae\x14\xfc\xf3\x4c\x65\xb8\x22\xbb\x8f\xf6\ \x35\xba\xbc\xdc\x5d\x75\x77\xa2\x98\x16\x9b\x55\x3e\x9c\x32\xd4\ \xe4\x1c\x2c\xfb\xd2\x38\xf9\xdc\x2a\x28\x12\xbe\x30\xff\x4e\x71\ \x04\x41\x1e\x1e\x24\xbb\x7d\xbb\x3f\x72\x79\xf9\xfa\x4d\xcb\xd8\ \x38\x02\xd1\xd9\xd9\x09\xa3\xd1\xfb\xe2\xec\x46\xa3\x11\x9d\x9d\ \x9d\x21\x7f\xcc\xae\xae\x2e\xbf\x9f\xf3\xb6\x6d\xdb\x66\x14\x99\ \x25\xd1\xca\x77\x5c\x3a\xc7\x71\x92\x3b\xcf\x1e\xa4\xc8\x84\x96\ \xc4\x39\x58\x91\x25\xfc\xc9\xed\x89\x89\x09\xc2\x9e\xe0\x4e\x11\ \xf3\x27\x73\x15\x0a\x00\x00\x20\x00\x49\x44\x41\x54\x42\xe5\x7e\ \xb7\xd7\x05\x33\xff\x4a\x8c\x81\x80\x42\x4b\xa7\xd3\x85\x2c\x60\ \x99\xcd\x66\x8f\x67\x91\x52\x44\x6c\x06\x30\x23\x60\x95\xb0\x5d\ \x28\x12\xc4\x32\x7a\xc5\xc9\xed\x04\x00\x06\x9d\x11\x7f\x70\x13\ \xb0\x66\xaf\x92\xa1\xb2\xb2\x92\x8d\x44\x44\x33\xb2\x94\x63\xc0\ \xda\xc0\x76\xa1\x70\xcb\x4a\x5e\x24\x8a\xd1\x2b\x00\x50\xab\xd3\ \xf8\x86\x31\x5c\xe1\x07\xab\xab\xdc\x5e\x3f\xbb\x58\xc6\x46\xa2\ \xa8\xfa\xca\x57\xa6\xfa\xd3\xf4\xf4\x74\x9f\x8a\xa7\x8e\x8d\x8d\ \x41\xaf\xd7\x3b\x5d\x16\xea\x1a\x68\x96\xb1\x71\xc4\xc7\xe6\x01\ \x80\x0d\x4e\x01\x6b\xfa\xa9\x85\x44\xe1\xd0\xf6\xc3\xeb\xd1\xd2\ \x9b\x84\xcf\xf0\x1c\x00\x60\xee\xf2\x4c\x14\x5c\x91\x83\x25\xeb\ \x72\xb1\xe4\x8a\x5c\xa8\x52\x85\x53\x55\x79\xd6\x2c\x56\x2b\x89\ \x75\xef\x56\x1f\xc1\x53\x77\xbf\xe1\x3e\x5c\xad\x92\x21\x4d\xc3\ \x80\x45\xc1\x69\x6e\x6e\x86\x46\xa3\x89\xe8\xdf\x8c\x8f\x8f\x47\ \x66\x66\x26\x1b\x3f\x4c\x26\xaa\xba\x4f\x8c\x60\x15\xb3\x49\x28\ \xdc\x72\xff\xe3\x5d\x0c\x1f\xce\xc3\xc8\xe1\x3c\x0c\x1f\xce\x43\ \xdb\x89\x5e\xb4\x9d\xe8\x45\x5d\x8d\xd6\xe5\xed\xa3\x19\xc0\xd4\ \x19\x1c\xbd\x8a\xe5\x60\xf5\xdb\xfb\xdf\x82\x61\xc0\xfd\x3c\xa6\ \xd4\x7c\x19\x16\x6d\x96\xb3\xb1\x88\xc8\x95\x62\x00\x93\x01\x4b\ \xc3\xf6\x20\x4f\x4c\xa3\x89\x30\x99\x6c\xcb\x81\x18\xf4\x53\xe1\ \x63\x64\x38\x09\x16\x8b\x6d\xad\xaf\x31\x87\xdb\xb8\x95\x08\x60\ \xbd\x15\x58\xdf\x3a\x79\x91\x6c\x54\x8e\xf8\x73\x2a\xc4\x35\x29\ \x11\x7f\x4e\x35\x79\x79\xb4\x02\x58\x6a\x5a\x8a\xdb\xe5\x44\x48\ \x9a\xba\x9a\x75\x78\x6a\xeb\xeb\x38\x76\xa0\xd9\xed\x6d\xc6\x52\ \x12\x70\xf8\xd1\x8d\xe8\x13\x68\x59\x86\x39\x83\x7d\x50\x9a\xa7\ \xd6\xa7\x33\xc6\x25\xc0\x18\x9f\x00\x4d\x7f\x27\x96\x5d\x6c\xc1\ \xb2\xee\xf3\x7c\xa3\x25\xce\x6c\x36\x47\x6d\x7d\xc5\x79\xe9\x2b\ \xd0\x3a\x70\x9c\x6f\x82\x43\xa6\xe2\x08\x16\x79\xd5\x7e\x3e\x1f\ \x3d\x5d\x39\x61\x7b\xfc\xf1\x44\x2b\x4c\xcb\x0c\x30\x2d\x33\x00\ \x00\x54\x09\x89\xc8\xcf\xca\x81\xd5\x08\xc4\x37\xa9\x60\x3c\x3e\ \x8e\x9e\xc3\x86\x19\xf7\xf3\x27\x80\x15\xae\x9f\x8b\x84\x24\xdf\ \xce\xae\xe1\xe1\xc1\xe0\x82\xca\xc5\xe6\x7e\xb7\xd7\x1f\xf5\x10\ \x60\x0c\x3a\x23\x9a\xea\x3b\x3c\x3f\x76\x4b\x74\x96\xf9\x69\xbb\ \x7e\x29\x8e\xfe\xf8\x4b\xc2\x6e\xfb\xd4\x59\x2e\x2f\x6f\xc8\x5d\ \x82\x86\xdc\x25\x4e\x97\xad\xea\x38\x83\x92\xa6\x23\x50\x8f\x0c\ \x71\xa3\xa5\xb0\xb0\xc4\x66\xa1\x51\x38\x66\xaa\x89\x6f\x1c\x4e\ \x70\x27\x17\x1f\x10\x05\x4e\x7f\xbe\xd2\xed\xa8\x54\x66\x6a\x3a\ \xb2\xd2\x6c\xa7\x17\x2f\x9b\xa7\x99\xbc\x7c\xc1\xec\x1c\x24\x25\ \x2a\x67\x5c\x1e\x2a\x23\x7a\x13\x8e\xbe\xdb\x82\x63\xef\xb6\xe0\ \xd8\x7b\x2d\xee\xbf\x14\x7d\x0c\x60\x97\x6f\x5a\x8a\xdc\x42\x35\ \x14\x71\x72\xa4\xa6\xa5\x20\x3e\x3e\x34\xa7\x39\x1f\xab\x3b\xe7\ \xf6\xba\x21\x9d\xd1\xed\xba\x76\xb6\x30\xd1\x8f\x8b\xcd\xee\xc3\ \x44\x53\x7d\xa7\xc7\x43\x58\x14\x1a\x63\x29\x09\x38\xf8\xcc\x3f\ \x62\x70\xc9\x2c\x49\xbd\xae\xe9\xa1\x2b\xbf\xbf\x13\x25\x4d\x47\ \xa0\xe9\xef\xe4\x9b\x1e\x61\xcd\xcd\xcd\x6c\x04\xe9\xd9\x00\x00\ \xb2\xef\xd5\xac\x28\x06\x70\x84\xed\x41\x8e\xf4\xfd\x19\x68\x3e\ \xb3\xd4\xe5\x75\x4b\xe6\xce\xc7\xb3\xdb\x76\x20\x45\x95\x04\xb3\ \xd9\x8c\xbe\xde\x01\xe8\xf5\xd1\xdf\x13\xf6\x35\x78\x91\x84\xb7\ \xdb\x82\x4c\x98\x53\x12\xbc\xde\x66\xcc\xcb\x6d\xfa\x56\xe7\x0a\ \xf6\x50\x60\x24\xa4\x1b\x87\x50\xd2\x54\x8f\xe2\xf6\xd3\xdc\xa8\ \xc2\x2c\x3f\x3f\x1f\x65\x65\x65\x01\xdf\xff\xed\xb7\xdf\x9e\xfc\ \x7f\x72\x72\x32\x92\x92\x92\xa2\xf2\x3a\x5e\xff\xfc\xa7\x33\x0e\ \x11\x26\xab\x63\xba\x26\xd7\xea\x38\x00\x2c\x21\x4b\xce\x7b\x54\ \xa7\x97\x42\xaf\xcb\x70\x79\xdd\x9e\x1d\x15\x28\x98\xb7\x60\xf2\ \xf7\xb8\xb8\x38\x64\xcf\xc9\x44\xf6\x1c\xdb\x19\x29\xd1\x0c\x5c\ \xaa\xb4\x04\xac\xbb\xb9\x00\xeb\x6e\x2e\x90\x74\xf0\xea\x5b\x9d\ \x1b\x74\x80\x18\xf4\xe1\x36\xfa\x82\x4c\x98\x93\x13\xf8\x81\x88\ \x41\x03\xca\x14\xec\x5b\xf1\x45\xec\x5b\xf1\x45\x06\x2e\x01\xeb\ \xea\xea\xc2\x93\x4f\x3e\x39\xf9\xbb\x42\xa1\xf0\xab\xdc\xc2\xce\ \x9d\x3b\xd9\x88\xe1\xa3\x8e\x03\x0b\x8c\x92\x9d\x69\x34\x11\xa7\ \xb5\x2b\x27\x27\xad\x3b\xba\xfa\xd2\xd5\x78\xf4\x9e\x7b\xbd\x3e\ \x86\x90\x02\x97\xaf\xc1\xab\xaf\x6d\x10\x23\x7a\x13\xda\x1a\x7b\ \xdd\x3e\x86\x6c\xec\x38\x94\x8a\xc1\xc0\xf7\x52\x0b\x4d\x50\xa6\ \xab\x31\x26\x9b\x07\x0b\xb2\x60\x96\x65\x79\xbd\x8f\x7e\xf4\x22\ \xfa\x65\x67\xd1\x37\xeb\x13\x00\xc0\x07\xab\xfe\x19\x67\xe6\x7d\ \x91\x1b\x2a\x09\x22\x70\x5d\x77\xf2\x20\x27\xce\x0b\x20\x60\x39\ \x1a\x1f\x1f\x67\xa3\x08\x47\x09\x6b\xea\x93\xed\x83\xda\x36\x0f\ \x5d\xed\x73\x5d\x5e\xf7\xcc\x7d\x0f\x62\x75\x41\x60\xeb\xad\x09\ \x31\x70\x4d\x0f\x5e\xee\xfc\x5f\xfd\xc7\x68\x6a\xfe\x03\x7e\x79\ \xdd\x9b\x1e\x1f\x67\x54\xb6\x1c\x23\xf2\xf5\x30\xc9\x57\x60\x54\ \xb6\x02\xa3\xf2\x15\x21\x7d\x9e\x3f\x1b\xfa\x01\x6a\x86\xb9\x8d\ \x92\xb0\x02\xd7\x1f\x57\x7d\x79\x6a\x07\xa2\xbf\x13\x9b\x8f\xbf\ \xcf\x49\xf3\x01\x68\x69\x09\x7c\x54\x7d\xde\xbc\x79\x78\xe0\x81\ \x07\x26\x7f\x8f\x8f\x8f\x17\xd4\xba\x86\x16\xf3\x38\x14\x71\xb1\ \x5b\x2b\x8e\x23\x58\x31\xce\x62\x51\xe0\x6c\xe3\x0a\x18\x87\x67\ \x1e\xb7\x77\x9c\x6b\x15\xb2\x0d\x4e\xc0\x81\x6b\x22\x54\xbd\xf1\ \x71\x1d\x46\x4c\xa3\xa8\xbe\x65\x1f\x96\x2c\xeb\x9b\xba\x32\x7b\ \x27\xac\x59\xff\x8e\x9e\xee\xfe\x88\x3c\xdf\xd7\x8d\xc0\x43\x7a\ \x16\xb2\x94\x1a\x4d\x62\x1c\x34\x4a\xff\xf6\x6d\x8b\x93\xe3\x91\ \x1e\x27\x0f\xfc\xef\x25\xba\xff\x7b\x75\x7a\xe7\x93\x25\x06\xcc\ \x56\xd4\x1b\xc6\x26\x7f\xaf\x37\x98\xa0\x33\x5b\x3d\x87\x84\x8c\ \x1c\xec\xbe\xea\x56\x6c\x39\xf4\x16\x27\xca\x13\xd9\x70\x04\x2b\ \x96\x0d\x0d\xa6\xa1\xa9\x71\xb9\xcb\xeb\xee\xbe\x7e\x13\xee\xbe\ \x61\x53\xf8\x13\x7e\x94\x03\xd7\xf0\xa8\x11\xff\x57\xff\x31\xf6\ \x1e\x3c\x30\x79\xd9\x0d\x4b\x4f\xe3\xc7\x25\x1f\x4c\xdd\x48\x91\ \x0e\x2c\xa9\x07\x12\x34\x90\x03\x4e\xcf\xb7\xaf\x6f\x00\xba\x7e\ \x3d\xac\x56\x6b\xc8\x9e\x93\x7e\x1c\xb8\xa6\x47\x86\xc1\x28\x8c\ \xf6\x17\x27\x27\x40\xed\xf0\x45\xae\xb2\xf4\x23\xc9\x3c\xb3\xec\ \x42\x7a\x5c\x3c\x56\xa4\x3a\x17\x63\x4d\x35\xbb\x5e\x38\x38\x2f\ \x29\x1d\xb9\x2a\xe7\xd2\x17\x89\x56\x83\xcb\xdb\x66\x27\x67\x21\ \x2b\x69\x36\x3f\x9c\x11\xb4\x21\x3d\x31\xa8\xfb\x9f\x1a\x18\xc2\ \xb2\xcf\x6d\x3b\x22\x35\x6b\xaf\xc7\xb6\x0f\x5f\xe1\x48\x56\x84\ \x74\x77\x77\xe3\xe5\x97\x5f\x9e\xea\xaa\x14\x0a\x28\x95\xbe\xaf\ \x4f\x13\xcc\xe4\x7a\xf2\xe1\xfb\x0d\x2c\x32\x1a\x93\xfc\x99\xc8\ \x1e\xd1\x0d\x32\x02\x81\xab\xb1\xb5\x19\x7b\x0f\xd6\xa1\xb1\xcd\ \x79\x68\x3e\x25\xc1\x84\xea\x6f\xec\x43\x4e\x8a\xc3\xdf\x9a\xbd\ \x0d\xc8\xdd\xe5\xf6\xb1\x66\xcd\x4a\x9f\xac\x9b\xa5\x1f\xd2\x61\ \x50\x37\x8a\x91\x91\xe0\xca\x27\xa4\xc9\x80\x43\x59\xb6\x74\xb5\ \xa4\x20\x3f\xca\x5b\x4a\xb6\x1f\xb7\x2d\xe0\x07\x2b\x06\x9d\x31\ \x39\xef\x09\xd4\xe7\x16\xa0\xa4\x89\x27\xa6\xfb\x43\xa7\xd3\x05\ \x74\x68\x6f\x74\x74\x14\xad\xad\xad\x4e\x97\xf9\x13\xb0\x28\xac\ \x34\x71\x00\xf2\xd9\x0e\xb1\xc3\xd3\x44\xf6\x25\x73\xe7\xa3\xfa\ \xa1\x4a\x61\xed\x01\x84\x20\x70\x1d\x3e\xdb\x88\x17\xfe\xf6\x36\ \x7a\x07\x07\xdc\xde\xe6\xee\xb5\x47\x70\xf7\xda\xfa\xa9\x0b\x14\ \xe9\xc0\xa2\x3a\x40\xe9\x7b\x0d\xde\xb4\x14\x35\xd2\x52\xa6\x7e\ \x1f\xd4\x0f\xa1\xaf\x6f\x00\x63\x63\x66\xaf\xf7\x95\x8f\xeb\x91\ \x66\x79\x15\x6a\xcb\x73\x88\x1b\x6f\x73\xb8\x86\x93\x56\x49\xd8\ \x3e\x35\x5a\xd9\x08\x51\x0a\x58\x42\x67\x8d\xed\x39\x58\xf9\x3c\ \x44\x18\x43\x7a\xba\x72\xd0\x7e\xde\x75\x9e\x8e\xd4\x21\xc1\x48\ \x05\xae\xf3\xdd\x9d\xd8\xfd\xe7\x97\x3c\x86\x2a\x00\xc8\x4d\x1d\ \xc2\x9e\x5b\xf6\x21\x25\x61\x6a\x89\x11\x64\x6c\x01\xe6\x55\x07\ \xfd\x5c\x53\xd3\x52\x90\xea\x90\xb8\x46\x47\x4d\x18\xd0\x0d\x62\ \x68\x68\x18\xaa\xb1\xb7\xa1\xb6\x3c\x07\x95\xf5\xa0\xfb\x07\x48\ \x2e\xe1\x46\x4b\x82\x77\x60\x60\xd4\x79\xb7\xbd\xbf\x83\x8d\x12\ \x21\xd3\x27\xb9\x03\x40\x56\x56\x16\x1b\x46\x28\xdf\x57\x6c\x82\ \xd8\x70\x4a\xbb\xd2\xe5\x44\x76\x20\xb8\xb3\x04\x85\x16\xb8\x3e\ \x6b\xd4\x62\xfb\xaf\x7f\xe5\xd3\x7d\x1f\x29\x79\x1f\xd7\x2f\x3d\ \xe3\x7c\x61\xc1\x11\xbf\x46\xad\xfc\x91\x98\x98\x80\xec\x84\x3f\ \x21\x7b\x78\x2b\x37\x48\x92\x8c\x3a\x87\x15\x05\x12\xcd\x26\x4e\ \x72\x27\x62\xc0\x8a\x0d\x9e\x26\xb2\xa7\xa8\x54\x78\xb5\xf2\x17\ \x21\x3d\x4b\x30\x9a\x1e\xfe\xdd\x33\x78\xff\xa8\xf7\xb9\x1f\x05\ \x99\x7d\x78\xe6\xc6\xb7\x9c\x47\xad\xd2\x36\x01\xf9\x7b\xc3\xfb\ \x04\x5b\x36\x03\xfa\x7d\xbe\xdf\x3e\xa5\x84\x1b\x30\x09\xda\xf4\ \xd1\xab\xe2\xf6\x33\x6c\x14\x9f\x77\xb8\x12\x51\x52\x52\x82\x2b\ \xaf\xbc\x52\x12\xaf\x67\x6e\xfa\x72\x2e\xf6\xcc\x80\x15\x3b\x3c\ \x2d\xd2\xec\x6b\xe1\x50\x31\x38\xdd\x7a\x1e\xf7\x3e\xfd\x38\x86\ \x46\x46\xbc\xde\xf6\xd1\x6b\xdf\xc3\xd5\x9a\x69\xc5\x11\xc3\x38\ \x6a\x05\x00\xb0\xe8\x80\x93\x1a\xc0\x32\xc0\x8d\x92\x24\x65\x7a\ \x89\x87\x0d\xf2\x51\xe4\xe7\x07\x36\xad\x37\x27\x27\x27\xe0\x09\ \xda\x4a\xa5\x12\x39\x39\x81\x2f\x48\x1f\xcc\xdf\x8e\xa6\xd6\xd6\ \x56\xa7\x4a\xee\x00\x90\x90\x90\x00\xb9\xdc\xb7\x92\x1e\xac\xe4\ \xce\x80\x45\xfe\x7e\x9f\x5b\x14\x68\x6c\x58\xed\x72\x22\x3b\x00\ \xdc\x77\xf3\x1d\xb8\xed\x9a\x8d\x92\x78\xad\xbb\x5f\x7b\x11\xaf\ \xd4\xbd\xe3\xf5\x76\xab\xf3\x3a\xf1\xcc\x3f\xbe\xe5\x7c\x61\xf2\ \x06\xdb\x44\xf6\x70\xd2\xef\x05\x5a\x6e\x0a\xec\xbe\x9c\x83\x45\ \x02\x37\x7d\x04\xeb\xb1\x7f\xda\xc4\x46\xa1\xa9\xef\xa2\xb1\x71\ \xc4\xc7\xf0\x49\x8d\x0c\x58\x12\xe3\x69\x22\x3b\x10\xdd\x12\x0c\ \xa1\x34\x34\x32\x8c\x6f\xec\xfc\x91\x4f\xa3\x56\xd5\xb7\xec\xc3\ \x92\xcc\x3e\xe7\x0b\x17\xed\x0f\x7f\x80\xe9\xd8\x0e\xf4\xec\xe6\ \x46\x49\x92\xe5\x38\xff\x6a\x4b\x76\x32\x1b\x24\xc2\x5c\x4d\x72\ \x4f\x4f\x4f\x47\x42\x02\xd7\x10\x65\xc0\xa2\x90\xf2\x34\x91\x5d\ \x4a\xf3\xad\x5e\xde\xff\x0e\x9e\x7e\xfd\x45\xaf\xb7\x9b\x51\x30\ \x14\x00\x94\xab\x80\x82\x7a\xdf\xfe\xd0\x7f\x2c\x03\xda\xce\x05\ \xf9\x6c\x03\xeb\xe8\xb6\x7e\xe1\x71\xec\x59\xb9\x81\x1b\x35\x09\ \x56\x43\x4f\xb7\xd3\xef\x5b\x9a\x5e\x02\x0a\xbe\xcf\x86\x21\x62\ \xc0\x92\x8e\x91\xe1\x24\x9c\xd6\xae\x74\x7b\x7d\xf1\x92\x42\x3c\ \xbb\x6d\x87\xe8\x5f\xe7\xd0\xc8\x30\xca\x1e\xdb\x89\xce\xbe\x5e\ \x8f\xb7\x73\x59\x30\x14\x00\xf2\xdf\x00\xd2\x36\xfb\xfe\x07\xff\ \xad\xd1\xf6\x6f\xf7\x29\x20\x65\x0e\xf0\xe4\x46\xe0\x42\x43\xd8\ \x5f\x67\xe5\xaa\xfb\x50\xb3\xf8\x66\xec\xe1\xa6\x4d\x02\x56\xdf\ \xdd\x0d\xc0\x56\x86\x24\x7d\x6c\x10\x25\x6f\x3c\x00\xbc\xe1\x3c\ \x9a\x02\x95\x12\xc8\x5b\x0a\x6c\xfc\x11\x50\x7c\x1b\x1b\x2d\xc4\ \x0e\x1d\x3a\xe4\x54\xc9\x1d\x00\x2e\x5e\xbc\xc8\x39\x58\x0c\x58\ \x14\x0a\x9e\x26\xb2\x03\xc0\xad\x25\x1b\xb1\xed\x96\x3b\x44\xff\ \x3a\xdf\x3f\x7a\x18\x0f\xff\xee\x59\xaf\xb7\x9b\x51\x30\x14\xb0\ \x8d\x5a\x2d\xaa\x03\x14\x01\x16\xf2\xcb\x5a\x6a\xfb\xf7\x91\x4f\ \xec\xbb\xee\x7f\x02\x6a\xbe\x03\x0c\xeb\x42\xfe\x3a\xab\x17\xdf\ \x8c\xca\x4b\xef\x45\x49\x3a\xab\x31\x93\xb0\x35\x28\x73\x01\x0c\ \x02\x00\xca\xce\xbe\xee\x66\xef\xcf\x08\x9c\x3d\x0a\x9c\xfd\x16\ \x80\x6f\x39\x5f\x97\x96\x06\x2c\xdb\x00\xac\xb9\x8d\xe1\x2b\x40\ \x9d\x9d\x9d\x33\x2a\xb9\xc7\xc5\xc5\xf9\x1c\xb0\xc2\xcd\x62\x89\ \xed\x42\xc9\x0c\x58\x22\xe5\x6d\x22\x3b\x20\xee\xfa\x56\x8e\xca\ \x1e\xdb\x89\x33\x6d\x17\x3c\xde\xc6\x65\xc1\x50\x00\x98\xb7\x07\ \xc8\x28\x0b\xed\x13\x5a\x75\x23\xf0\xa4\x7d\xdd\xbd\xbf\x3e\x0b\ \xbc\xfc\xc3\xd0\x8c\x08\xcc\x5a\x8e\xbb\xbf\xf0\x38\x00\xdb\xdc\ \x16\xf9\x87\xe7\xb9\xa1\x47\x99\xa7\x85\x99\x75\x66\x2b\xea\x0d\ \x26\x36\x12\x80\x4d\xe7\xdf\xf1\xff\x4e\x7a\x3d\xf0\xc9\x9f\x6c\ \x3f\x8e\xe1\x4b\x2e\x03\x66\x65\x03\x2b\xaf\x03\xae\xd8\x02\x2c\ \xbc\x8a\x0d\x4c\xa2\x24\xfb\x5e\xcd\x0a\xae\xc5\x21\x32\xde\x26\ \xb2\xe7\xcc\xca\x44\xf5\x43\x95\xa2\x9f\x6f\x75\xe4\x74\x23\xee\ \x7d\xfa\x09\xaf\xb7\x73\x59\x30\x34\x3e\xdf\x36\xd7\x4a\x11\xc1\ \xe5\x27\x5e\xf9\x57\xe0\xbd\x67\x02\xbe\xfb\xea\x7f\xfc\x13\x1a\ \x32\x96\x71\x03\xa7\x88\x49\x1f\x1b\x44\x71\xdf\x09\xbf\xee\x53\ \xd2\x35\x73\xf5\x81\x9d\x0d\x4f\x47\xe6\x09\xcb\x81\xde\x7f\xfc\ \x0f\x0c\xae\xf0\x3e\xe2\x65\x34\x1a\xd1\xd9\x19\xbd\xa2\xa7\x9d\ \x9d\x9d\x30\x1a\xfd\x5b\x97\x34\x27\x27\x07\xd7\x5d\x77\x9d\xcf\ \xb7\x3f\x73\xe6\x0c\xce\x9c\x71\xee\xfb\x92\x93\x93\x91\x94\x14\ \xf9\xbe\xff\xe0\x85\xd7\x70\xf0\xfc\x6b\x33\x2e\x4f\x56\xc7\xee\ \x38\x4e\x1c\x80\x03\x00\x38\x9b\x56\x24\x3c\x4d\x64\x07\xc4\xb3\ \xe4\x8d\x37\xbe\x14\x0d\x75\x59\x30\x14\x00\x72\x9f\x02\x66\x6f\ \x8f\xfc\x93\xbe\xf5\x97\xb6\x9f\x91\x01\xdb\x21\xc4\xfa\x37\xfd\ \xba\xbb\xd8\xc3\xd5\xaa\xfe\x46\xa8\x4d\xfa\x80\xef\xaf\x19\x6a\ \x85\xc6\xd0\x16\xd8\xdf\xee\x3b\x11\xd0\xdf\xd6\x18\x5a\xa1\x19\ \x6a\x63\xc7\x22\x74\x09\xe3\x40\xc6\x18\x20\x07\x32\x3f\xdd\x81\ \x3f\x7f\x7a\x02\xcd\xd0\xb0\x5d\x48\xc8\x0e\xf0\x10\xa1\x48\x78\ \xaa\xc8\x3e\x41\x0a\x25\x18\x3a\xfa\x7a\xb0\xf5\xb1\x9d\x5e\xcb\ \x2f\xb8\x2c\x18\x1a\x8d\x51\x2b\x57\x54\xe9\xc0\x77\x5f\xb1\xfd\ \xbf\xed\x28\xf0\xab\x8d\x3e\xcd\xd7\xb2\xfe\x4f\x01\x37\x74\x92\ \x06\xc5\x38\xe0\x6e\xf6\x82\x7c\x1c\x88\xf3\x70\xe0\x24\x71\xdc\ \xc5\x63\x39\x5f\xb6\x05\xd5\xa8\x41\x19\x43\x96\x08\x8c\x8f\x03\ \xb2\x18\x5d\xef\x39\x0e\x40\x33\x38\x82\x25\x68\xcd\xa7\x97\x42\ \xaf\xcb\x70\x7b\xbd\x54\xce\x12\xf4\xa5\x68\xa8\xcb\x82\xa1\x00\ \x90\xbd\x13\x98\x53\x21\xbc\x17\x35\xf7\x52\xdb\x7c\x2d\xd3\x00\ \xf0\xe2\xbf\x02\x1f\xd5\x72\x83\x8e\x75\x09\x1e\xc2\x45\xbc\x15\ \x70\xf7\x65\x14\x3f\x0e\xc8\x3d\x05\x9a\xd8\x9a\xed\xb1\x05\xd5\ \xc0\x96\xfd\x80\xa6\x24\x66\x37\x25\xad\x56\x8b\x7d\xfb\x9c\x97\ \xdf\x52\x28\x14\x1e\xab\xd2\x6b\x34\x53\xa1\xb4\xa4\x24\xfc\x6d\ \x67\xb5\x8c\x43\x11\x17\x93\x09\xab\x79\x22\x60\x91\x00\x8d\x0c\ \x27\xa1\xa9\x71\x85\xc7\x89\xec\x3f\xbe\xeb\xdb\xb8\x61\x9d\xb8\ \x27\x81\xfa\x5a\x34\xd4\x65\xc1\x50\x45\x3a\x50\xd8\x1c\xfd\x51\ \x2b\xaf\x5f\xaa\xe9\xc0\x96\xdf\x01\xb7\xfd\x12\xa8\x28\x00\x46\ \x74\xbe\x7f\xb1\x86\x82\x29\xc0\xb3\x8a\xc6\x01\x8c\x45\xa0\x73\ \xf4\x14\x3a\xbc\x8d\x78\x30\x78\xc4\xae\xba\x0a\xa0\xac\x2e\x66\ \x5f\xbe\x5e\xaf\x9f\x71\x16\xa1\x5c\x2e\xf7\x58\x68\xb4\xa5\xa5\ \x25\xa2\x01\x2b\x96\xc7\x46\x18\xb0\x04\xca\x5b\xf9\x05\xa9\x14\ \x0e\xf5\xa5\x68\xa8\xcb\x82\xa1\x00\x30\x7b\x1b\x90\xbb\x4b\x5c\ \x2f\x58\x95\x0e\xac\x28\x02\x9a\x23\xfd\xa5\x60\xe1\x87\x8a\x48\ \x62\x8a\x8a\x8a\x70\xeb\xad\xb7\x3a\xef\x6f\xc4\xc7\x23\x35\x35\ \x35\xe2\xcf\x25\x51\xc1\x4a\xfe\x0c\x58\x02\x67\xb1\x28\x70\xfa\ \xf3\x95\x30\x99\x12\xdd\xde\x46\x2a\xb5\xad\xbc\x95\x5f\x70\x5b\ \x30\x54\x91\x0e\x2c\xa9\x07\x12\x34\xe1\x7f\x92\xd6\x21\x40\x9e\ \xc2\x0d\x93\x48\x80\x5a\x5a\x5a\x50\x5d\x59\x29\x98\xe7\x93\x9f\ \x9f\x8f\xb2\xb2\xb2\x88\xfd\xbd\xb4\xb4\x34\xcc\x9f\x3f\x7f\x46\ \xc0\x52\xab\x23\x3f\xa2\x9f\x95\x9c\xcf\x0d\x72\x5a\xc0\x92\x57\ \x95\x6a\xeb\xd8\x0e\xc2\x30\x32\x9c\x04\xed\xe1\xcb\x3c\x86\xab\ \x67\xee\x7b\x50\xf4\xe1\xea\xfd\xa3\x87\xf1\xc5\x7b\xef\xf6\x18\ \xae\xee\x5e\x7b\x04\x6f\x97\xbd\x30\x33\x5c\xcd\xde\x06\xac\xd0\ \x45\x26\x5c\xf5\xec\x02\x9a\x6f\xe4\x86\x49\x44\xa2\x31\x3e\x2e\ \xac\x43\xe2\x56\x73\x6c\x1e\xa2\xaf\x2a\xd5\xd6\x4d\x9c\x45\x38\ \x00\x20\x9d\x9b\x66\xf4\x74\xb5\xcd\x43\x57\xfb\x5c\xb7\xd7\x2f\ \x99\x3b\x1f\xd5\x0f\x55\x8a\xfe\x75\xfe\x60\xf7\xe3\xa8\x3f\x73\ \xd2\xed\xf5\x6e\x0b\x86\x2a\xd2\x6d\xd5\xd8\x95\xc5\xe1\x7f\x92\ \x16\x1d\x70\x52\x03\x58\x06\xc2\xb3\x20\xb4\xa6\x24\x0a\x87\x08\ \x89\xa4\x27\x3f\x3f\x1f\x3b\xcb\xb8\xdc\x8b\x23\xb3\xd9\xcc\x46\ \x88\xbe\x01\x60\xaa\x92\x7b\x3d\x78\x26\x61\xd4\x78\xab\x6d\x75\ \xdf\xcd\x77\xe0\xb6\x6b\x36\x8a\xfa\x35\x9e\x6e\x3d\x8f\xad\x8f\ \x57\x78\xbc\xcd\xb6\x2f\x1c\xc4\xad\x97\x1c\x9f\x79\x45\xc6\x16\ \x60\x5e\x75\x64\x9e\x68\x6b\x19\xd0\x5f\x33\xf5\x7b\x4a\x09\x37\ \x50\x22\x22\xf2\x47\xbd\x63\xc0\xaa\x63\xc0\x8a\x3c\xd3\x68\x22\ \x1a\x8f\xba\x1f\x91\x91\xca\x44\x76\x6f\xe5\x17\xdc\x16\x0c\x05\ \x80\x82\x23\x91\x19\xb5\x32\xd6\x03\x4d\x25\xb6\x51\x2b\x00\xef\ \x1c\xbf\x04\x3b\x5e\xbd\x03\x5b\x6f\xbe\x06\xf7\xde\xc1\x6d\x95\ \x48\x88\x74\x03\x3a\xd4\xd7\xd5\xf9\xff\x71\x17\x40\x95\xf7\xd1\ \xd1\xd1\x19\x97\x47\x7a\x0e\x17\x85\x4d\xdd\xf4\x80\xc5\x71\xd6\ \x08\xf2\xb6\xdc\xcd\xd5\x97\xae\xc6\xa3\xf7\xdc\x2b\xea\xd7\xe8\ \x4b\xf9\x05\x97\x05\x43\x01\x20\x6d\x13\x90\xbf\x37\x32\x4f\xb4\ \x65\x33\xa0\xdf\x87\x83\x4d\x8b\xf1\xbd\xe7\x1f\xc4\xa0\x71\xaa\ \x86\xcc\xba\x95\xf3\x43\xff\xf7\x62\xb8\x6e\x0f\x51\x28\x0d\xe8\ \x06\x70\xe0\xc0\x81\x98\x7d\xfd\x7d\x7d\x7d\x82\x7f\x8e\x56\x6b\ \x4c\xce\xc1\x9a\x0a\x58\x55\xa5\xda\xba\xf2\xda\x22\x7e\x5a\x23\ \xe4\x6c\xe3\x72\x18\x06\xd3\xdc\x5e\x2f\x85\x45\x9a\xbd\x95\x5f\ \x70\x5b\x30\x14\x00\x16\xed\x0f\xcf\xdc\xa7\xe9\x0c\x75\x38\xf8\ \xee\x77\xb0\xe3\xd5\x3b\xd0\xa6\xfb\x12\x37\x4c\x22\x92\x04\xb3\ \xd9\x8c\xb8\x38\x61\x2c\xd4\x32\x1e\x83\x15\x62\x26\x4e\x1e\x74\ \x7c\x07\xb8\x26\x61\x98\x59\x2c\x0a\x34\x36\xac\x76\x5b\x38\x54\ \x0a\x13\xd9\x87\x46\x86\xf1\x83\xdd\x8f\x7b\x3c\x43\xf0\xd9\x1b\ \xdf\x42\x71\xae\x8b\xe1\xf9\xe4\x0d\xb6\x89\xec\x61\x76\xe2\x4c\ \x13\x1e\xfc\xc5\x1e\x34\xb6\x67\x00\x28\xf7\x78\xdb\x2b\x2e\x99\ \xc7\x0d\x97\x48\xa0\x38\xc9\xdd\x35\xab\xd5\xca\x46\x88\x9e\xc9\ \x21\x55\xc7\x80\x55\xc7\x80\x15\x3e\xfa\xfe\x0c\x34\x9f\x59\xea\ \xf6\x7a\x29\x4c\x64\x7f\xff\xe8\x61\x3c\xfc\xbb\x67\xdd\x5e\x7f\ \xb5\xe6\x3c\x1e\xbd\xf6\x3d\xd7\x57\x86\x79\xd4\xaa\xed\xa2\x1e\ \x0f\x3e\xf5\x36\x3e\xf9\x7c\xa2\xea\x71\x86\xd7\xfb\x84\xe5\xf0\ \x20\x00\xe4\xf3\x63\x46\x44\x24\x51\x75\xee\x02\x16\x77\x05\xc2\ \xe0\xc2\xb9\xc5\xe8\xef\x99\xed\xf2\xba\x14\x95\x0a\x7b\x1e\xaa\ \x44\xee\xac\xd9\xa2\x7e\x8d\x9e\xca\x2f\xa4\x24\x98\xf0\xec\x8d\ \x6f\xcd\x5c\xe6\x06\x00\x94\xab\x6c\x0b\x34\x87\x23\xd4\x1a\x46\ \xf1\xbd\x9f\xee\x73\x08\x55\xfe\xb9\xf9\xcb\x3c\x6c\x4e\x24\x64\ \x46\xa3\x11\x9d\xcd\xcd\x53\xdd\x89\x52\x89\x9c\x9c\x1c\x36\x0c\ \x09\x2b\x60\x71\x1e\x56\xe8\x79\xab\xca\x2e\x85\x89\xec\xde\xca\ \x2f\xdc\xb6\x52\x8b\xfb\xd6\x7f\xe2\xfa\xca\xfc\x37\x80\xb4\xcd\ \x21\x0f\x55\x3b\x9e\x7a\x1b\xef\x1e\x3c\x1b\xd4\xe3\xfc\xd3\xd5\ \x73\x70\xf3\x97\x57\x70\x23\x26\x12\xb0\xae\xae\x2e\xd4\xd4\xd4\ \x88\xea\x39\x6f\xd8\xb0\x21\xa6\xd6\x00\xb4\x58\x62\x6b\x92\xbb\ \x63\xf1\xf6\xe9\xb3\xe0\x38\x0f\x2b\x44\x86\x06\xd3\xd0\xd4\xb8\ \xdc\xed\xf5\x52\x98\xc8\xee\xa9\xfc\x82\xdb\x65\x6e\x00\xdb\xa8\ \xd5\xa2\xba\x90\x2d\xd0\xac\x37\x8c\xe2\xe9\x3f\x7c\x84\x9a\x37\ \x0f\x07\x74\xff\x34\xc5\x08\xbe\x92\xf1\x39\xee\xcb\xfb\x0b\xe6\ \x26\xf4\xdb\x2e\x1c\x01\xd0\x75\x09\x30\x67\x55\x78\x1a\x8f\xc5\ \x46\x89\x28\x48\x7d\xc3\xad\xe8\x1c\x6c\x9b\x71\xf9\x80\x59\x05\ \x55\x92\xd2\x7b\xdf\xa7\xcc\x42\x6a\xe2\x6c\x36\x64\xe8\x38\x9d\ \xd2\x3a\x3d\x60\xed\x65\xc0\x0a\xc1\x5e\x95\x87\xaa\xec\x52\x99\ \xc8\xee\xa9\xfc\xc2\xdd\x6b\x8f\xe0\xee\xb5\x6e\x0e\xfb\xcd\xdb\ \x03\x64\x94\x85\xe4\x79\x3c\xfd\x87\x8f\xf0\xcc\x8b\x1f\x05\x1f\ \xd0\x2c\x2a\xbc\xde\x73\x39\xe6\x25\xf4\xe1\xde\xbc\xff\x9b\xba\ \xe2\x37\xf6\xfa\x5b\x9b\xab\x81\x55\x5b\xb8\x61\x13\x09\x4c\xac\ \x4f\x72\xff\xf8\xfc\xab\xd0\xb6\x1c\x9c\x71\x79\xbc\x52\x8e\xf8\ \x44\x39\x37\x90\xc8\xdb\xeb\x29\x60\x55\x03\x78\x8a\x6d\x14\x38\ \x4f\x55\xd9\xa5\x30\x91\xdd\x53\xf9\x05\xb7\xcb\xdc\x00\x40\x7c\ \xbe\x6d\xae\x55\x90\xa3\x56\xd5\xfb\x0e\xe3\x67\xff\x5d\x17\x96\ \xd7\xf6\x74\xfb\x57\xf1\x74\xfb\x57\x91\xa6\x18\xc1\xe3\x0b\x5f\ \xc2\x57\xd4\x9f\xdb\x3f\x32\x65\xb6\x1f\xb5\x06\xb8\x7d\x6f\xf8\ \x46\xb5\x88\xc8\x2f\xaf\x1f\x1e\xc6\xf1\xb1\x3a\xfc\xe4\x9e\x92\ \x98\x7c\xfd\x09\x2a\x05\x94\xc9\x0a\xd7\x01\x4b\x29\x87\xd5\x32\ \x0e\x78\x39\x42\x67\xb5\x8c\x63\xdc\xcb\x49\x87\xe3\xd6\x71\xc4\ \x66\x39\x2b\xff\xbf\xa2\x1c\x7f\x91\x4d\x5f\x18\xb2\xbc\xb6\xa8\ \x0e\x1c\xc5\xf2\x9b\x69\x34\x11\xa7\xb5\x2b\x5d\x96\x60\x08\xd5\ \x44\xf6\x0b\x17\x2e\x20\x35\x35\x35\x2a\x2b\xa5\x7b\x2b\xbf\xf0\ \x48\xc9\xfb\xb8\x7e\xe9\x19\xd7\x77\xce\x7d\x0a\x98\xbd\x3d\xa8\ \x50\xf5\xf4\x8b\x1f\x61\xd0\x30\x1a\xf1\xd7\xbd\x3c\xa9\x0d\xff\ \xb9\x64\xcf\xd4\xa1\xc3\x09\x39\xc5\xb6\x91\xad\x40\xc3\xd6\x81\ \x4a\xa0\xae\x82\x1f\x1c\xa2\x20\x7c\xfd\xf8\x03\x38\x31\x3c\x17\ \x57\x5c\x32\x0f\x2f\x3c\x7a\x5b\xcc\xbd\xfe\x47\x5f\xff\x16\x1a\ \x5b\x67\xce\x71\x4d\xb0\x07\x2c\x8a\xa8\x03\x55\xa5\x5a\xa7\xa4\ \x1f\xe7\x26\x81\x31\x60\xf9\xc1\x53\x55\xf6\xeb\xd7\x5d\x85\x47\ \xee\xfa\x76\x50\x8f\x6f\xb1\x58\x70\xec\xd8\x31\xa8\xd5\xea\xa8\ \x84\x2b\x4f\xe5\x17\x3c\x2e\x73\xa3\x48\x07\x0a\x9b\x03\x1a\xb5\ \x7a\xe7\xe3\x33\xd8\xb1\xeb\x2f\x51\x09\x55\x8e\x4e\x0c\xcf\x45\ \xc9\xd1\x9f\x00\x00\x6e\x9e\xfd\x29\x7e\x32\x7f\x2f\x52\x15\x46\ \xa0\xb3\x7e\xea\x10\xa2\x5a\x03\x5c\xb7\x0b\x28\xdc\xe4\xfb\x03\ \x73\xfe\x15\x51\x50\x3e\x19\x5c\x8c\x13\xc3\xb6\xa9\x18\x9f\x7c\ \xde\x8a\xa7\xff\xf0\x11\xee\xfb\xe6\x7a\x36\x0c\x45\x4b\xf5\xf4\ \x0b\x66\x8c\x60\x01\x40\x79\x6d\x11\x07\x03\x7d\xfd\x9e\x3c\xbd\ \x14\x7a\x9d\xeb\x9a\x4a\x8f\xde\xf3\x03\x5c\x7d\xe9\x9a\xa0\x1e\ \xbf\xb7\xb7\x17\x5b\x4f\xf7\xe2\xcf\x96\xa9\x09\x8b\x5b\xb2\x93\ \xb1\x73\x41\x3a\x34\x89\xe1\xaf\xd4\xeb\xa9\xfc\x82\xdb\x65\x6e\ \x00\x20\x7b\x27\x30\xa7\xc2\xaf\xbf\x75\xf0\xd8\x05\xec\xd8\xf5\ \x17\xb4\x5d\xd4\x0b\xfa\x3d\x4f\x53\x8c\xe0\x91\x05\xfb\x70\x73\ \xe6\xa7\x33\xaf\x54\xaa\x81\x2b\xb7\x03\x1b\x3c\xcc\x0b\x19\x1d\ \x00\x1e\x53\xf3\xc3\x43\x14\x84\xf2\x33\x5b\xf1\x8e\xee\x92\xc9\ \xdf\x0f\xbd\xf4\x7d\xa4\x25\x27\xc6\x54\x1b\xb8\x1b\xc1\x52\x28\ \x64\x50\xa6\x2a\xb8\x91\x44\x50\x55\xa9\x56\x36\xfd\x32\x77\xdf\ \xd0\x35\x00\x38\xab\xd7\x03\x4f\x55\xd9\x43\x75\x48\xf0\xf1\xa3\ \x67\xf1\xf0\x60\x3c\x00\xe7\xb3\x41\x6a\x2e\x1a\x50\x73\xd1\x00\ \x00\x58\x95\x9c\x80\x3d\x05\xb3\x50\x9c\x9c\x10\xd2\xd7\xe7\xa9\ \xfc\x42\x41\x66\x1f\xf6\xdc\xb2\xcf\xf5\x1d\xfd\x1c\xb5\x3a\xd1\ \xd4\x8d\xef\xfd\x6c\x9f\xe0\x43\x95\x23\xbd\x45\x85\x1d\xe7\x6e\ \xc7\x8e\x73\xb7\x63\x6e\x62\x1f\x7e\xb3\x78\x0f\x96\x25\xb5\xdb\ \xae\x34\xea\x6c\x87\xfe\x26\x0e\xff\x69\x4a\x60\xdd\x54\x03\xb9\ \x7a\xc1\xd4\x03\xd4\x57\xf3\x03\x44\x14\x84\x36\x53\x86\x53\xb8\ \x02\x10\x73\xe1\x8a\x04\xc5\x65\xad\x10\x77\x01\xab\x9a\x01\xcb\ \x3d\x4f\x25\x18\x8a\x97\x14\xe2\xd9\x6d\x3b\x82\x7a\xfc\x8e\x41\ \x03\x2e\x3b\x76\x11\x1d\xe3\xf1\x5e\x6f\xdb\x60\x30\x61\x4d\xbd\ \x6d\xd9\x99\x0d\xe9\x89\x78\x63\x59\x16\xd4\x71\xc1\x1d\x7b\xf7\ \x54\x7e\xc1\xed\x32\x37\x00\x30\x7b\x1b\x90\xbb\xcb\xaf\xbf\x95\ \x96\x92\x08\x7d\x94\x0f\x03\x06\xd5\xd1\x8f\xce\xc2\x8d\xc7\x7f\ \x08\x00\xd8\xa8\xfe\x1c\x8f\x2f\x7c\xd1\x76\x08\x71\x42\x73\x1d\ \xe4\xbb\xed\x87\x8f\x95\x6a\x0c\x5e\xfe\x10\x52\x4f\xbf\xc4\x0f\ \x11\x91\x8f\xcc\xc9\x73\x31\x96\x3c\xb5\x64\xd5\xb1\xb3\x3d\x78\ \xad\xf7\x72\x36\x0c\x09\x89\xcb\xbd\x66\x97\x87\x08\x01\xa0\xbc\ \xb6\xa8\x1e\x00\x4f\x97\x9a\xa6\xfd\x7c\x3e\x7a\xba\x5c\x57\x0a\ \xbe\xfb\xfa\x4d\xb8\xfb\x86\x4d\x41\x3d\xfe\x93\x8d\x17\xf0\xaf\ \xbd\xc1\x1f\xa1\xdd\x39\x3f\x1d\x3b\x17\xa4\xfb\x17\x1c\x3d\x94\ \x5f\xf0\xb8\xcc\x8d\x22\x1d\x58\x52\x0f\x24\x68\x02\x7e\xbe\x77\ \x3e\xfc\xf2\x8c\x8a\xeb\x97\xad\xc8\x03\x00\xe4\x65\xa5\x22\x2f\ \x2b\x15\xb0\x0c\x60\x4d\x51\xa1\xfd\xb2\x14\xe4\x65\xa5\x62\x70\ \xd8\x84\x93\xcd\xbd\x4e\xf7\x3b\xfc\x79\x3d\x30\x3e\x15\x72\x4e\ \xb6\x0c\x61\xd0\x30\x38\xf9\x7b\x63\x6b\x1c\x86\x46\x64\x61\xdd\ \x4e\xee\xcb\xfb\x8b\x73\xc9\x07\x8a\xa8\x41\x8b\x72\x72\x7e\x8e\ \xbf\x4e\x0c\xe7\x41\x6f\x51\xf9\x7d\xbf\x56\xd3\x2c\xb4\x8d\xce\ \xf2\xfb\x7e\xfa\x20\x9e\xab\x14\xac\x5c\x9c\x85\xbb\xbe\xba\x1c\ \x97\x2e\xc9\xf2\x7a\xdb\xa3\x67\xba\xb1\xa3\xea\x6f\x2e\xaf\x3b\ \xfd\xa7\x07\x62\xae\xed\xb6\x3c\x5d\xe8\xba\x4b\xe6\x21\xc2\x48\ \x6a\xa8\x2a\xd5\x16\xbb\xba\x22\xce\x4b\x22\x63\xc9\x06\x07\x9e\ \x4a\x30\x04\x5b\x38\xd4\x62\xb1\xe0\xca\x4f\x5b\x70\xc8\x12\xd8\ \xbc\xaa\x74\x85\x1c\x25\xe9\x89\xd8\x90\xae\x44\x49\x7a\xa2\xdf\ \x87\x0c\x3d\x95\x5f\xa8\xbe\x65\x9f\xeb\x65\x6e\x00\x20\x63\x0b\ \x30\xaf\x3a\xe8\xb6\xad\xfd\xe9\x2d\x18\x1e\x1e\xf6\xfb\x7e\xa9\ \x49\x09\xb8\x6c\x45\xee\xb4\x60\x96\x1b\xf1\x6d\xe3\x64\x4b\x2f\ \x06\x0d\x53\x13\xfd\xdb\x7b\x36\xe0\x97\xdd\x0f\x23\xd1\x3a\x84\ \xb5\xfa\x57\x61\x1a\xb3\xa0\x67\x60\x2a\xb8\x5a\xac\x63\xb8\xd8\ \x6b\x84\xde\xa2\x8a\x78\x10\x20\x8a\xa6\xec\x8c\x24\xdc\x75\xdd\ \x0a\x6c\xbc\x3c\xdf\xef\xfb\x1e\x3d\xdb\xed\xfe\xf3\xd0\xd4\x8d\ \xe5\x8b\xb2\xd8\xc0\x14\x69\x6e\xbf\x00\xdd\x7e\x9b\x57\x95\x6a\ \x77\x95\xd7\x16\x31\x60\x01\x18\x19\x4e\xc2\x69\xed\x4a\x97\xd7\ \xa5\xa8\x54\x78\xb5\xf2\x17\x48\x51\x25\x05\xfc\xf8\x07\xda\xba\ \x71\x4d\xf3\x08\x36\xa4\x27\x23\xdf\x68\x41\xcb\xa8\xd9\xa7\xfb\ \x05\x32\x4a\xe5\x4a\xd9\x63\x3b\x5d\x96\x5f\xb8\x61\xe9\x69\xfc\ \xb8\xe4\x03\xd7\x77\x52\xa4\xdb\xaa\xb1\x2b\x8b\x43\xd2\xc6\x66\ \xb3\x59\xd4\xdb\x48\x61\x7e\xe6\xb4\x4b\x1c\x43\x5e\xe4\x4e\xca\ \xfd\xec\x78\x87\xf3\x4e\x41\x4b\x2f\x06\x87\xa7\x0e\xc1\x9e\x6c\ \xee\xc5\xe0\xb0\x43\x10\xec\x1e\x44\x47\xcf\x10\x3f\xe4\x14\xbe\ \x40\x35\x2b\x09\x77\x7d\x35\xb0\x40\x35\xb3\xbf\x75\xbf\xe3\xa8\ \x37\x18\xd9\xd8\x93\x3b\xec\x3c\x4f\x2d\x52\xaa\x4a\xb5\xbb\xfc\ \x0e\x58\x76\x95\x88\xf1\x05\xa0\x3d\x95\x60\x08\xc5\x7c\xab\x53\ \xa7\x4e\x61\x55\x76\x36\xac\x57\x39\xef\x79\xe9\xcc\x56\xdc\xd4\ \xd8\x8d\x03\x03\xee\xe7\x27\x05\x1b\xae\x8e\x9c\x6e\xc4\xbd\x4f\ \x3f\x31\xb3\x13\xf3\xb4\x38\x33\x00\xa4\x6d\x02\xf2\xf7\xf2\x93\ \x25\x40\x42\x18\xcd\x6b\xef\x1e\x44\x7b\xf7\x54\x68\x1b\x1c\x1e\ \xc5\xa9\x96\x5e\x8f\x41\xf0\x64\x4b\x2f\x86\x86\x4d\x7c\x03\x25\ \x60\xce\xac\x64\xdc\xf9\xd5\xe5\x21\x09\x54\xd3\x6d\xfe\xd2\x12\ \xfc\xfd\x58\x3b\x8e\x79\x18\xc9\x22\x8a\x20\x8f\xcb\xb2\x78\x0b\ \x58\xbb\x62\x39\x60\x9d\x6d\x5c\x0e\xc3\x60\x9a\xcb\xeb\x82\xad\ \xca\x3e\x3c\x3c\x8c\xe6\xe6\x66\x14\x16\x16\x42\xa1\x98\x79\xac\ \x5c\x1d\x27\xc7\xfe\x4b\xe6\x00\x00\xaa\x2f\x1a\x70\x7f\x53\x3f\ \x06\x2c\xd6\x90\xbd\xb6\x9f\x3d\xff\x1c\xde\x3a\xf8\xe1\x8c\xcb\ \x3d\x2e\xce\x0c\x00\x05\x47\x42\x36\x6a\x45\xd2\x34\x39\x67\xce\ \xc1\x35\x97\x69\x9c\x7e\xff\x97\x5b\xc2\xff\x3c\xa6\x1f\xb6\x9d\ \x3e\x9a\xd7\xde\x3d\x84\xf6\xee\x41\x87\x20\x68\x9a\x11\x04\x29\ \xba\x81\xca\x95\x4b\x97\xcc\x76\x19\xb0\x0e\x1e\x6b\xc5\xba\x95\ \xf3\xf9\x86\x50\x24\xed\x0a\x38\x60\x55\x95\x6a\x75\xe5\xb5\x45\ \xbb\x01\x6c\x8b\xa5\x16\xf3\x54\x82\x01\x00\xf6\xec\xa8\x40\xc1\ \xbc\x05\x81\xef\xe1\xb7\xb7\x43\xad\x56\x63\xc5\x8a\x15\x3e\xdd\ \xbe\x2c\x3b\x19\x65\xd9\xc9\xd0\x99\xad\xd8\x7a\xba\x17\xfb\xfa\ \x46\x02\xfe\xdb\xee\x26\xb2\x7b\x5c\x9c\x19\x08\xfb\xa8\x95\xc5\ \x62\xe1\x47\x95\x42\x6a\xfa\x61\xdb\x68\x8c\xe6\xb9\x3a\x09\xe3\ \xd0\x89\x76\xe7\x20\x38\xed\xb0\xad\xd0\x47\xf3\x72\x32\x53\xf0\ \xcd\x6b\x97\x45\x2c\x50\x11\x09\xd4\xee\xaa\x52\xad\x2e\xe0\x80\ \x65\x57\x11\x4b\x01\xcb\x53\x09\x86\x9c\x59\x99\xa8\x7e\xa8\x32\ \xe0\xf9\x56\x16\x8b\x05\xbd\xbd\xbd\xc8\xcb\xcb\x0b\xe8\xfe\xea\ \x38\x39\xde\x58\x6e\x3b\x94\xb8\xb7\xd7\xff\x90\xe5\x6e\x22\xbb\ \xd7\x51\xab\x45\xfb\x81\xe4\x92\xf0\x35\xba\xa9\x19\x18\x3e\x0d\ \x24\x5e\xc9\x8f\x2c\x49\x8a\x70\x4f\xc2\x18\x44\x87\xc3\xe8\x9d\ \xd7\xbe\x27\x39\x1e\x25\xc5\xf3\x04\xd1\xa6\x47\xcf\xf4\xb8\xbc\ \x5c\xcc\xe5\x5e\x48\x94\x2a\xbc\xdd\xc0\x6b\xc0\x8a\xa5\x51\x2c\ \x4f\x25\x18\xae\xbe\x74\x35\x1e\xbd\xe7\xde\xa0\x1e\x5f\xa1\x50\ \x20\x3b\x3b\x3b\x24\xcf\x75\x73\xa6\x7f\x67\x8f\xb9\x9a\xc8\x9e\ \x92\x60\xc2\xab\xdf\x7c\xc5\xf5\x32\x37\x00\x90\xbc\xc1\x36\x91\ \x3d\x9c\x5a\xcb\x80\xfe\x1a\x58\x34\x7a\x7e\x5c\x89\xc2\xc4\xf3\ \x49\x18\xde\xe9\xfa\x87\x30\x3a\x2a\xec\x39\x72\x27\x9a\x2e\xf2\ \x8d\x76\xdc\xa1\x37\x8f\x43\x11\x27\x63\x43\x84\x87\xd7\xd1\x2b\ \x9f\x02\x96\x43\x52\x93\x74\xc0\xf2\x54\x82\xe1\xc7\x77\x7d\x1b\ \x37\xac\xbb\x4a\x94\xaf\xcb\xdd\x44\xf6\xbb\xd7\x1e\xc1\xdd\x6b\ \xeb\xdd\xdf\x31\xff\x0d\x20\x6d\x73\xf8\x9e\x98\xb1\x1e\x38\xbd\ \x9a\x1f\x53\x22\x22\x12\x9b\x0a\x5f\x6e\xe4\x53\xc0\xb2\x8f\x62\ \x49\xf2\x8c\x42\x4f\x25\x18\x00\xe0\x95\xca\x27\x82\x5e\xf2\x26\ \x5a\x5c\x4d\x64\xf7\x3a\x6a\xa5\x5c\x05\x14\xd4\x87\xf7\x89\x35\ \x95\x00\x86\x03\x93\xbf\x8e\xcb\xd3\xf9\x71\x25\x22\x9f\xb8\x3b\ \x83\xb0\x6c\xd3\x1a\xc1\x3e\xe7\x11\xd3\x20\x5a\xba\x4f\x84\xe4\ \xb1\x7a\xf4\x6d\xe8\xd1\xb7\x71\x43\x88\x9e\x4a\x5f\x46\xaf\x00\ \x0f\x95\xdc\x5d\x29\xaf\x2d\xd2\x01\x90\xcc\xb7\xa1\xa7\x12\x0c\ \x4b\xe6\xce\x47\xf5\x43\x95\xa2\x7c\x5d\xee\x26\xb2\x47\x7d\xd4\ \xaa\xbf\x1a\x68\xdd\x3a\xe3\x62\x8b\xf2\x6a\x0c\xe7\xfc\x3f\x7e\ \x6c\x89\x04\xea\x74\xcb\x49\xa4\x25\x0a\xa3\x88\xe7\xf5\x0f\xbc\ \x36\xe3\xb2\xb4\x8c\x0e\x5c\x72\xd9\x9b\x7c\xa3\x1c\xf7\x95\x53\ \x14\x3c\x44\x18\x7a\x03\x55\xa5\x5a\xb5\xaf\x37\xf6\xb7\x6c\xf8\ \x76\x00\x7b\xa4\xd0\x4a\x9e\x4a\x30\xdc\x5a\xb2\x11\xdb\x6e\xb9\ \x43\x94\xaf\xeb\x7f\x0f\x7e\x88\x9f\x3f\xff\x9c\xd3\x65\xb9\xa9\ \x43\xd8\x73\xcb\x3e\xcf\xa3\x56\x8b\xea\x7c\x5e\xa0\xd9\x6f\x16\ \x9d\x6d\xd4\xca\xd8\xc0\x8f\x27\x91\x08\xc9\x04\xf2\x3d\xfd\xab\ \x17\x3f\x73\x79\xb9\xbe\x3f\x17\x8a\x78\x25\x12\x93\xcc\x4e\xcf\ \x75\xdc\x0a\x58\xad\x5e\x06\x11\xc6\x01\xab\x0f\x85\x39\x2d\x63\ \x3e\xdc\x46\x48\x05\x3e\x59\x6b\x34\x1c\xb6\xfb\xf5\xb9\xf1\x67\ \x04\x0b\x10\xff\x1a\x85\xde\x4a\x30\x3c\x7a\xcf\x0f\x70\xf5\xa5\ \x6b\x44\xf9\xda\x7e\xb0\xfb\x71\xd4\x9f\x39\xe9\x74\x99\xd7\x51\ \xab\x79\x7b\x80\x8c\xb2\xf0\x3d\xa9\xae\x0a\xe0\xa2\xe7\x91\xc0\ \x51\xf5\xc3\x30\xa9\x1f\xe6\x47\x97\x48\xa0\xce\x9c\x3f\x89\xd4\ \x84\xe8\x8c\x60\x35\xb5\xe9\x50\xf9\xfb\x8f\x70\xb1\xdf\xf5\x52\ \x5a\x69\x19\x1d\x28\x28\xda\x8f\x44\x95\xeb\xb3\x22\xe5\x0a\x19\ \x14\x71\xb6\x1f\x79\x9c\x4c\x30\x61\x91\x44\xc7\xed\x9a\x83\xee\ \x04\xb2\xf0\x5d\x19\x80\x23\x62\x6c\x1d\x7d\x7f\x06\x9a\xcf\x2c\ \x75\x79\x5d\x8a\x4a\x85\x3d\x0f\x55\x8a\x72\xbe\x55\x47\x5f\x0f\ \xb6\x3e\xb6\xd3\xe9\x90\xa0\xd7\xb9\x56\xf1\xf9\xb6\xb9\x56\xe1\ \x1a\xb5\x32\x35\x03\x67\x8a\x01\xcb\x80\xd7\x9b\xfe\xd7\x6b\x87\ \xf1\xcc\x7b\xbf\xf3\xe9\x61\x0b\xe7\x9a\x90\x9a\x64\xeb\x21\x0b\ \x16\x64\x00\x09\x29\x18\xb3\xca\xb0\x30\x37\x1b\x05\xf3\x6c\x45\ \x06\x27\x16\x82\x26\x22\xf1\xda\xfb\xb7\x33\xf8\xaf\xbd\xae\x47\ \xbd\x67\x65\x35\x63\xc9\x25\xfb\x11\x17\xe7\xfd\xcc\x46\xab\x65\ \x1c\x56\xcb\x38\xc6\x1c\xaa\x38\xc8\x65\x40\x62\x8a\x02\x72\x05\ \xd3\x16\xf9\x95\x7d\xfc\xe2\x77\xc0\xaa\x2a\xd5\xd6\x97\xd7\x16\ \xd5\x00\xd8\x22\xa6\x96\xf1\x54\x82\x21\x14\x4b\xde\x44\x8b\xab\ \xda\x56\x5e\x47\xad\x72\x9f\x02\x66\x6f\x0f\xdf\x93\xb2\x97\x5e\ \x08\x87\x93\x6d\x53\x6b\x91\x7d\x76\x7a\x08\xc0\x44\x61\xd4\x0e\ \x00\xc1\x1f\x82\x54\x25\xca\x91\x9f\xa7\x04\x00\x24\x26\x8e\x63\ \xb9\x26\x0b\x96\x71\x33\xd2\x53\x54\xb8\x62\xb9\xad\x3e\x5a\x6a\ \x72\x82\x8b\xd3\xde\x89\x28\x58\x4d\x6d\x3a\xfc\xf2\xc5\x4f\x70\ \xae\x7d\xe6\x68\x54\xee\x82\x63\x98\xbf\xf8\x33\x9f\x42\x95\x3b\ \x09\x4a\x39\xe2\x95\x72\x36\x34\xf9\xab\xa6\xaa\x54\xeb\xf7\xd9\ \x5f\x7e\x1f\x22\x9c\x20\xa6\x09\xef\x17\xce\x2d\x46\x7f\x8f\xeb\ \x91\xa9\x14\x95\x0a\x8f\xdc\xf5\x6d\x51\x1e\x16\x9c\x7e\x48\xd0\ \x6b\x35\xf6\x70\x8f\x5a\x19\xea\x80\xa6\x6b\x02\xba\x6b\x5b\xff\ \x2c\xbc\x76\xf8\x72\xbc\x7e\xe8\x72\xb4\xe9\x32\x24\xfd\x49\x5d\ \x68\x5f\xcd\x43\x95\x90\x02\xcd\xdc\x24\xa4\xa7\xa8\x90\xa6\xca\ \xc4\xd2\xfc\x4c\xa4\x26\x25\x02\x00\x0a\x35\x99\x48\x4d\x4a\x60\ \xb7\x46\x82\x10\xce\x43\x84\xfb\xde\x3f\x8b\xe7\xff\x72\xdc\x65\ \xf5\xfa\xcd\x26\x1d\x7e\xf2\x57\x5b\x20\x3a\xb3\xf8\x22\x7e\xb7\ \xf5\x7d\x8c\xa8\xfc\x0b\x58\x72\x85\x0c\xca\x64\x05\x64\xcc\x55\ \x14\x18\xbf\x26\xb6\x87\x2a\x60\x6d\x06\xf0\x86\x18\x5a\x47\x7b\ \xf8\x32\xb7\x73\xae\xa6\x87\xad\xdb\x4a\xae\xc5\xdd\x37\x6c\x12\ \xfc\x6b\x9a\x5e\x38\xf4\x6a\xcd\x79\x3c\x7a\xed\x7b\xee\xef\x10\ \xce\x51\xab\x10\x4f\x62\xef\x31\xc6\xe1\x77\xc7\x73\x90\xf1\xc7\ \xab\xb1\xf4\x90\x6d\x39\xa1\x43\xb3\x14\xc0\x55\xf3\x20\xfb\xe2\ \x7c\x0c\x1a\x4c\x38\xe9\xb0\x66\x1c\x17\x0a\x76\x96\x93\x99\x8c\ \xb9\xd9\xb6\x13\x38\x6c\xeb\x02\xa6\xd8\x36\x81\xac\x54\xe4\xcd\ \xb6\x1d\x3a\xe5\x28\x1c\xf9\xa3\xbb\xa7\x0f\x56\x73\x68\x1e\xab\ \xab\x6f\x18\x2f\xbd\x7b\x12\x6f\x7f\xdc\x34\xe3\xba\xd4\xe4\x44\ \xdc\x77\xc7\x7a\xa7\x92\x0b\x86\xdf\x7f\x0c\xf3\xbf\xbc\x3d\xb5\ \x33\x96\xa7\xc3\xef\xb6\xfe\x0d\x7d\xb3\x0c\xee\xbf\xd8\x64\x40\ \x82\x4a\x8e\xb8\x04\xa6\x2a\x0a\xda\x4d\x55\xa5\xda\x80\xd6\x89\ \x0b\x38\x60\xd9\x43\x56\x35\x44\x72\xa8\x70\x68\x30\x0d\x5d\x6d\ \x73\xdd\x9e\x39\xe8\xca\xf5\xeb\xae\xc2\xb6\x5b\xee\x08\x78\x69\ \x9c\x90\xbf\x86\x91\x61\xbc\xbc\xff\x1d\xfc\xfe\xad\x7d\x4e\x97\ \x7b\x0c\x57\xe1\x1e\xb5\xea\xd8\x0e\xf4\xec\x0e\xfa\x61\x0e\x77\ \x27\xe3\xf9\x53\x59\xe8\x31\xc6\x03\x00\x6e\xf8\xbf\x95\xb8\xfe\ \x9d\xa9\xfa\x64\xb2\x3b\x8a\x20\xfb\xf5\x75\x61\x6d\xdf\xcf\x8e\ \x77\xa0\xab\xab\x13\x63\x63\x63\xe8\xd6\x19\xd1\xad\x33\x4e\x5e\ \x77\xbc\x79\x6a\x2e\x99\xc1\x68\x46\x4b\xe7\x50\x4c\xf7\x38\x6b\ \x97\x4f\x55\x02\x77\x5c\xfa\x65\xed\xf2\x3c\x97\x97\x93\xb8\x05\ \x5b\xc9\xfd\xe8\x99\x6e\x3c\xf5\xc7\xc3\xe8\xec\x1d\xf2\x29\x54\ \xb9\x62\xaa\xad\xc7\xc8\xb7\xa7\xbe\xe7\x46\x94\x63\x78\xba\xfc\ \x3d\xb4\xcd\xed\x77\x0a\x56\xaa\xb4\x38\x4e\x64\xa7\x50\xa9\xa9\ \x2a\xd5\x96\x05\x7a\xe7\xa0\x02\x96\x3d\x64\x89\xb2\x36\x96\xbf\ \x81\x6b\xc9\xdc\xf9\xd8\x76\xcb\x1d\x58\x5d\xb0\x2c\x62\xcf\xb1\ \xa3\xaf\x07\x2f\xef\x7f\x07\x6f\x1d\xfc\x60\x46\x4d\x2b\x47\x8f\ \x5e\xfb\x1e\xae\xd6\x9c\x77\x7d\x65\xc6\x16\x60\x5e\x75\xe8\x9f\ \x9c\xb1\xde\x36\x6a\xe5\xc3\x24\x76\x57\x86\xcd\x72\xfc\xe5\x82\ \x1a\x6f\x34\xcd\x1c\x45\x59\xf7\xd9\x22\xdc\xf5\xc7\x2b\x23\x1a\ \xae\xac\x56\x2b\x9a\x9a\x9a\x60\xb5\x5a\x23\x37\x2a\x30\x23\xc4\ \xe9\xa6\x5d\x37\xea\xf2\xba\x58\x60\x3b\x5c\x6a\x3b\x44\x5a\x98\ \x9f\x89\xd4\x64\xdb\xff\x1d\x47\xe1\x78\x32\x83\x70\x03\x96\x61\ \x64\x0c\xfb\x3e\x38\x8b\xff\x79\x4b\xeb\xf2\xfa\xd4\xe4\x44\x3c\ \xbe\xfd\xab\xd8\x78\xe5\x12\xbf\x9f\x8b\xa5\xa1\x13\x03\x25\xbf\ \x85\x62\x68\xea\xb3\xfa\xc2\xed\x07\x71\xf0\xf2\xa9\x11\xb1\xb8\ \x04\x19\x12\x93\x14\x7c\xe3\x28\x18\x01\x1f\x1a\x0c\x65\xc0\x12\ \xcd\xa1\xc2\x50\x06\xae\xeb\xd7\x5d\x85\x1b\xd6\x5d\x15\xf2\xc0\ \xb5\xfb\xb5\x17\xf1\x4a\xdd\x3b\x7e\xdd\xe7\xd9\x1b\xdf\x42\x71\ \x6e\xa7\xfb\x1b\xac\x0c\x71\x41\x94\x00\x27\xb1\x4f\x1c\xfa\x3b\ \xd1\xef\x7e\x1d\xc5\x48\x87\x2b\xb9\x5c\x0e\x85\x42\x81\xb1\xb1\ \x31\xd1\xf7\x06\x26\x93\x09\x26\x93\xe7\x2f\xc1\x23\x27\xa7\xd6\ \x6b\xeb\xec\x1d\x42\x67\xaf\xc1\xe5\x75\x1d\x3d\x43\xe8\xea\x1b\ \x96\x6c\xcf\x99\x92\x34\x75\x88\x34\x35\x29\x01\x85\x9a\x89\xff\ \x27\x62\xe9\xc4\xe5\x3c\x8c\xea\x57\xc0\xea\xea\x1b\xc6\xae\x97\ \x0f\xa3\xfe\x54\x97\xcb\xeb\xe7\x66\xa7\xe1\xf1\xed\x5f\xc5\xba\ \x95\xf3\x43\xf2\x9c\x2c\x0d\x9d\xe8\xb9\xb3\x06\xca\x93\x53\x3b\ \x9f\x9f\x5c\x7e\x0e\xcf\xdf\xfe\xf1\xe4\xef\x89\x49\x3c\x4c\x48\ \x01\x0b\xf8\xd0\x60\xc8\x02\x96\x3d\x64\xed\x82\xc4\xd6\x2a\x0c\ \xe4\x90\x62\xf1\x92\x42\xfc\xd3\x35\x1b\x03\x9a\x30\x7f\xba\xf5\ \x3c\x7e\xf6\xfc\x73\x33\x16\x64\xf6\xc5\x77\xd7\xff\x1d\x77\xad\ \x3c\xe9\xfe\x06\xa1\x9a\x7f\x15\xc0\xfa\x81\x8d\xfd\x2a\xfc\xf6\ \xf8\x9c\xc9\x43\x7f\x9e\x14\x9c\x9d\x83\xfb\x7e\xf3\xe5\xc9\xdf\ \xad\xeb\x73\x11\xf7\xff\xbe\x19\x96\x50\x65\x91\x99\x90\x96\x94\ \xc1\x2e\x24\xcc\x4e\x34\x75\x43\x6f\x98\x1a\xa5\x3b\x78\xac\x75\ \xf2\xff\x2d\xed\x7d\x68\xed\xd2\xc3\x6a\xb5\xc2\x6a\xa2\x86\xc2\ \x9f\x00\x00\x0c\xa9\x49\x44\x41\x54\xb5\xe2\xe8\x99\x6e\x49\xbd\ \x76\xc7\xc3\xa8\x8e\xa3\x70\x62\x3c\x99\xc1\x5d\xc0\x7a\xf7\xb3\ \xf3\xf8\xaf\xbd\x0d\x6e\xe7\x40\x2e\x5b\x98\x85\x27\xb6\x5f\x87\ \xe5\x8b\xc2\x57\x43\x6b\x5c\x67\x44\x7f\xc9\x6f\xa0\x70\x58\xbd\ \xa4\x2d\x4f\x87\xa7\xcb\xdf\x9b\x9c\x10\xcf\xa0\x45\xfe\x8e\x75\ \x54\x95\x6a\x83\xfe\xd2\x0c\x49\xc0\xb2\x87\xac\x66\x00\xf9\x52\ \x6d\xed\x40\x02\x17\x60\x1b\xe9\xfa\xd2\xa5\xab\x5d\x86\xae\x8e\ \xbe\x1e\x3c\xfd\xda\x8b\x78\xff\xa8\xff\x65\xc5\x92\x93\x7b\x91\ \x95\x7d\x1a\x72\xb9\x19\x0b\x52\x47\xf1\xd3\x2b\xce\x7b\xbe\x43\ \x7c\x3e\xa0\xd9\x0b\x28\x8b\x03\x6b\x80\x96\xcd\x80\x7e\x9f\x4f\ \x37\x7d\xe3\xdc\x2c\xfc\xe5\x7c\x06\x86\xcd\xbe\x77\x68\xb3\xfa\ \x93\x51\xf9\xf3\x4d\x61\x0b\x57\x72\xb9\x1c\x66\x18\x91\x9e\xcc\ \x11\x09\xa1\xb3\x5a\xad\xd0\xe9\x06\xa1\xeb\xd7\xfb\x7d\xc8\xd6\ \x30\x32\x86\xb3\x6d\x53\x5f\xb4\x5d\xfd\xc3\xe8\xea\x9b\x1a\xa5\ \x3b\x7a\xa6\xc7\x61\xc4\xc5\xe0\xb6\x78\xa5\x18\xe4\x66\xa5\x62\ \x6e\x56\x2a\xc6\x31\x8e\xbc\xd9\xe1\x3d\x99\x61\x22\x60\x19\x46\ \xc6\xf0\xdf\x7f\xfa\xdc\xe5\x04\xf5\x09\x57\x5c\x32\x0f\x4f\xdc\ \x7f\xdd\xe4\x89\x16\x91\xd4\x7d\x67\x0d\x12\x5e\x3e\x37\xf9\xfb\ \xf4\x79\x5a\x5c\x3e\x86\x7c\xf9\xb6\xab\x2a\xd5\x6a\x42\xf1\x40\ \xa1\x0c\x58\x1a\x00\xe7\x62\xe5\x1d\x08\x34\x70\x05\x23\x35\xbd\ \x1f\x39\x79\x67\x80\xf1\x31\x58\xc6\x66\x7e\xf1\xac\xcd\x1a\xc2\ \x3d\x2b\xba\x90\x14\xe7\xe5\x4b\xc9\x97\x11\x2d\x8b\x0e\xe8\xd9\ \x65\x5b\x3f\x70\xac\xc5\xe3\x4d\x87\xcd\x72\xbc\x70\x2a\x0b\xef\ \x77\x04\xd6\x16\xd3\xc3\x95\xf9\xca\x6c\x24\xfc\xef\xb7\x18\xaa\ \xc8\x16\x9a\x0c\xc3\xe8\xea\xec\x0d\xdb\xfc\xb8\xf8\xf8\x38\x64\ \xcf\xc9\x84\x4a\xa5\x0c\xe8\xfe\x8e\xa3\x74\x7a\xc3\x28\x4e\x34\ \x4d\x8d\xc4\xb5\x5d\x1c\x40\x6b\x97\x7e\xf2\xf7\x4f\x3e\x6f\x15\ \x55\xdb\x5f\xb6\x22\xcf\xfe\x3a\xf4\xe8\xe8\x19\x12\x64\xa8\x72\ \x65\xb0\xec\x15\x58\x5f\xd0\x3a\x05\xad\x17\xee\xf8\x18\x47\x2f\ \x69\x85\x4c\x66\x0b\x5a\x2c\x32\x4a\x6e\x2c\xac\x2a\xd5\x36\x0b\ \x2a\x60\xd9\x43\x56\x19\x24\xb2\x56\x61\xa0\x46\x86\x93\x60\xb1\ \xc4\xc1\xa0\x4f\x83\xc5\xa2\x98\xfc\xdd\x38\x1c\xd8\x99\x88\x69\ \xea\x7e\xcc\x5f\x74\x16\x0a\x85\xc5\xfb\x9e\xbf\x65\x1c\x96\xb1\ \x71\x58\xcc\xe3\x28\x56\x0f\xe2\x3b\xcb\x3b\x3d\x87\x2d\xc7\x35\ \x08\xfb\xab\x6d\x3f\x86\x03\x3e\x3d\x2f\x5f\xe6\x53\xf9\x42\x35\ \x92\x80\xca\x9f\x6f\x82\xca\x7e\x08\xd1\x32\x57\x85\xf8\x63\xe5\ \x0c\x55\x34\x73\xfb\xb6\x5a\xd1\xd6\xda\x15\xd4\xd9\x6c\x8e\xe6\ \xcc\xc9\x44\x6a\x5a\x8a\xe8\xda\xc1\x16\xe2\x2e\x4e\x0b\x78\xa3\ \x2e\xaf\x6b\xbb\xa8\x47\xdb\x45\x7d\x58\x9e\xc7\x57\xd6\x2d\xc6\ \xe3\xf7\x5f\x87\xb4\xe4\x44\xe1\x86\xf3\x69\x25\x1e\x00\xe0\xf5\ \x4d\x87\x51\xf7\xa5\x93\x0c\x5a\xe4\xca\xd6\xaa\x52\x6d\x75\xa8\ \x1e\x2c\xa4\x01\xcb\x1e\xb2\x24\x37\x1f\x4b\xec\x96\xa6\x18\x50\ \x9a\xdf\x8e\x59\x09\xc1\x4d\xe4\x0e\x76\xa4\xca\x5b\xb8\x32\xe7\ \x29\x91\xf0\xf9\xf7\x19\xaa\x28\x6c\x41\x4b\x2e\x97\x63\xee\xbc\ \x39\x48\x4c\x64\x11\x57\x7f\x38\x8e\xd2\x2d\x5f\x94\x2d\xe8\x50\ \xe5\xca\xd8\xbe\x46\x0c\x6c\x79\x09\xf1\x0e\xa5\xb3\x26\x26\xc4\ \xcb\x15\x32\x28\x53\x14\x2c\xed\x40\x21\x99\x77\x15\xd6\x80\x65\ \x0f\x59\x75\x00\x36\xf0\xfd\x12\x9e\x79\x2a\x23\x4a\xf3\xdb\x31\ \x4f\x65\x74\xba\xbc\x75\x44\x89\xbf\x5e\x9c\x85\x3e\x93\xf3\x64\ \xf4\x0b\x23\x4a\x8c\x58\xc2\x73\xba\xf3\x83\x0f\x7e\x0d\x19\xbd\ \xb6\x91\x3d\x53\x6e\x3c\x94\xda\xfb\xfc\xfa\xa2\xb4\xc8\x8c\x48\ \x4b\x62\xa8\x8a\x55\x83\xfa\x21\x74\x75\xf5\xfa\x7c\xfb\xb9\xf3\ \xe6\x04\x7c\x18\x90\xa4\xc1\xd2\xd0\x09\xdd\x86\xdf\x20\xce\x21\ \x68\x4d\x4c\x88\x1f\x4d\x19\x63\xd0\x8a\x5d\x07\xaa\x4a\xb5\x25\ \xa1\x7e\xd0\xb0\x04\x2c\x7b\xc8\x12\x65\x7d\x2c\x8a\x8c\x1d\x0f\ \x7e\x0d\x6a\x7b\xb8\xb2\xa4\xc8\x11\x7f\xfe\x7e\xdf\x42\x95\xdc\ \x88\x34\x15\x43\x15\xd9\x98\xcd\x66\x9c\x6f\xe9\xf0\x38\x3f\x2b\ \x2d\x2d\x05\xd9\x73\xb8\xcd\xd0\x94\x71\x9d\x11\x17\xbf\xb8\xdb\ \xa9\xc4\xc3\xc4\x84\xf8\x8e\x05\x3a\x06\xad\xd8\x12\x74\xbd\xab\ \x68\x04\x2c\x0d\x62\x68\xd2\x3b\xf9\xee\x9f\x9f\x28\xc1\xc2\x93\ \xb6\xd3\xb6\xcd\x29\x32\x24\x1c\xfb\x3e\x90\x9e\xc8\x50\x45\x01\ \x6b\x69\x6e\xc3\xd8\xd8\xcc\xb5\x5c\xe6\x2f\xc8\xe5\xe1\x40\xf2\ \x18\xb4\x7a\xae\x7e\x06\x09\x8d\xce\xcb\xee\xbc\x70\xfb\x41\x1c\ \xba\xea\x1c\x8b\x95\xc6\x86\x90\x4d\x6a\x8f\x58\xc0\xb2\x87\x2c\ \x49\x14\x21\xa5\xd0\xb9\xf5\xb9\xcb\xb1\xe6\xef\x1a\x8f\xe1\x8a\ \xa1\x8a\x82\x0d\x59\x72\xb9\x1c\x9a\x85\x73\x21\x97\xb3\xf6\x11\ \xf9\x66\x7a\x89\x07\x00\x78\xeb\xda\xcf\xf1\xce\x8d\x9f\x33\x68\ \x49\x57\xd0\xc5\x44\xa3\x16\xb0\xec\x21\x6b\x3b\x80\xa7\xf8\x3e\ \x92\x63\xb8\x02\x00\xf9\xb9\x1f\x4c\x86\x2b\x86\x2a\x0a\x96\xd5\ \x6a\x45\xf3\xb9\x36\x58\xad\x56\x2c\x5a\x3c\x9f\xe1\x8a\x02\x32\ \xb4\xfd\x4d\x58\x7e\x7d\xd8\xe9\xb2\x4f\x2e\x3f\x87\x7d\xb7\x1e\ \x81\x35\xd3\xc2\x06\x92\x8e\xfb\xab\x4a\xb5\xbb\xc2\xf9\x07\xc2\ \x1e\xb0\xec\x21\x8b\x67\x16\xc6\xb8\xaf\xec\x2b\xc2\x97\xdf\x5c\ \x31\x15\xae\xea\xef\x81\x5c\xa3\x66\xa8\x12\x19\xf3\x81\x66\x00\ \xb6\x43\x2b\x96\x86\xa9\xe5\x99\x2c\xf6\xcb\x27\x7f\x6f\xe8\xc4\ \xf8\x80\xed\x44\x0a\x59\xba\x12\x8a\x55\x39\x50\x3e\x79\x1d\x14\ \xab\x72\xc2\xfa\xfc\x46\x47\x4d\x30\x8d\x9a\x44\x59\x7e\x81\x84\ \xc5\x55\x89\x87\xb6\x3c\x1d\xfe\xeb\x5f\xff\x8a\xb1\x74\x06\x2d\ \x91\x0b\xf9\x19\x83\x51\x0b\x58\xf6\x90\x55\x0d\x60\x0b\xdf\x57\ \x86\x2b\xd9\xe7\x5b\x90\x56\xb8\x90\x0d\xe3\x63\x98\x99\x11\x5c\ \x74\xce\x67\x80\x8e\xb7\xe8\x60\x9d\xb6\x18\xf4\xb8\xce\x08\xcb\ \xd1\x4e\xc1\xbd\x26\xd5\x73\x9b\x91\x50\x5a\x2c\xf8\xb6\xb7\xda\ \xdb\x54\xa6\x56\x86\x3d\x14\x92\xb0\x59\x1a\x3a\xd1\xbf\xe1\x37\ \x4e\x25\x1e\x8c\xaa\x31\xfc\xf6\xc1\x3a\x74\x2c\xd0\xb1\x81\xc4\ \xa7\xa6\xaa\x54\x5b\x16\x89\x3f\x14\xb1\x80\x65\x0f\x59\x75\x60\ \xf9\x86\x98\xb2\xf6\x43\x0d\xbe\xf1\xfb\xcb\xdd\x5e\xaf\xb8\x34\ \x07\x71\x1b\x34\x88\xdb\xb4\x0c\x71\x1b\x34\x21\xed\x14\xa7\x07\ \x11\x5f\xae\xb3\x7a\xba\xdf\xb8\x19\xd6\xfa\x4e\xc8\x06\xcd\x92\ \x7e\xcf\xce\x15\xba\x5e\x13\xb0\xa9\xd0\xff\xb5\x02\x57\x1c\xc9\ \x43\xee\x05\xe7\x13\x74\x64\xe9\x4a\xa8\x9e\xdb\x8c\xf8\x4d\xcb\ \x04\xf5\xba\x2d\x0d\x9d\x18\x2c\x7b\x05\xb2\xcf\x7b\x83\x7a\x1c\ \x79\xbe\x1a\xf2\x7c\xe7\xd7\xac\x58\x95\x03\xa8\x9d\x4b\x44\x78\ \x0a\x6f\xa1\xfc\x2c\x08\x29\xb0\x06\xfb\x18\x03\x8d\x67\x30\x66\ \x19\x0d\xfc\x0b\xef\x58\x1f\xc6\x7a\x03\x2b\xbc\xaa\xec\xb0\x22\ \xb1\x63\xe6\xc8\xd5\xab\x77\x7f\x8a\x43\x57\x35\xb3\xb3\x17\x87\ \xb0\x94\x63\x10\x44\xc0\xb2\x87\xac\x66\x48\x78\xcd\x42\x72\xfc\ \x72\x9d\x8b\x6f\x3d\xfb\x85\x98\x7b\xdd\x1d\xf3\x75\x30\x26\xb9\ \x2e\xea\xda\x9f\x69\x40\xff\xec\x99\xeb\xdf\xf5\xcf\x36\xa0\x7f\ \xb6\x61\xc6\xe5\xed\x1e\x1e\x4b\x0c\x94\xc3\xf1\xd8\xf1\xe0\xd7\ \xa0\x1c\x89\xe7\x07\x82\x24\xbd\x53\xf2\xdb\x07\xeb\xd8\x10\xc2\ \x16\xb2\x35\x06\x05\x1b\xb0\x18\xb2\xc8\xd1\xa2\x93\x59\x50\x0e\ \x27\x20\xef\xbc\x1a\xb9\x17\xd4\xc8\xe8\x49\x9a\x31\xe2\x11\xea\ \x8e\xd0\x55\xd8\x19\x49\x32\x4d\x0e\xf7\x8f\xa8\xc6\x38\xf4\x1f\ \x86\xa0\x95\x77\x41\x8d\x45\x8d\xd9\x4e\xbf\x4f\x97\xd1\x93\x3c\ \x59\x1f\x2d\x1c\x8c\x6e\xde\x5b\xc7\x6d\xa1\x7d\x81\x0e\x4d\x85\ \x17\x45\x1d\x6c\x89\x28\xba\xe1\x2a\x6a\x01\x8b\x21\x8b\x88\x88\ \x88\xa4\x1a\xae\x00\x20\x6a\xe7\x31\xdb\x5f\x70\x0b\xdf\x7b\x22\ \x22\x22\x92\x52\xb8\x8a\x6a\xc0\x62\xc8\x22\x22\x22\x22\x29\x86\ \xab\xa8\x07\x2c\x86\x2c\x22\x22\x22\x92\x5a\xb8\x12\x44\xc0\x62\ \xc8\x22\x22\x22\x22\x29\x85\x2b\xc1\x04\x2c\x87\x90\x75\x80\xdb\ \x06\x11\x11\x11\x05\xe0\x80\x50\xc2\x95\xa0\x02\x96\x3d\x64\x95\ \x30\x64\x11\x11\x11\x51\x00\xe1\xaa\x44\x48\x4f\x48\x70\xab\xa1\ \xda\x1b\xa8\x86\xdb\x0a\x11\x11\x11\xf9\xa0\x46\x68\xe1\x4a\x90\ \x01\xcb\x1e\xb2\xca\x00\x54\x72\x9b\x21\x22\x22\x22\x0f\x2a\x23\ \xb5\xb6\xa0\xbf\xa2\x56\x68\xd4\x17\xe5\xb5\x45\x65\x00\xf6\x70\ \xfb\x21\x22\x22\xa2\x69\xb6\x56\x95\x6a\xab\x85\xfa\xe4\x04\x1d\ \xb0\xec\x21\xab\x18\xc0\x11\x6e\x47\x44\x44\x44\x64\xb7\xba\xaa\ \x54\x5b\x2f\xe4\x27\x28\xf8\x80\x65\x0f\x59\x6a\x00\xcd\x00\xd2\ \xb9\x4d\x11\x11\x11\xc5\xac\x01\x00\x9a\xaa\x52\xad\xe0\x17\x8c\ \x15\x45\xc0\x72\x08\x5a\xf5\x00\x56\x71\xfb\x22\x22\x22\x8a\x39\ \x0d\x55\xa5\xda\x62\xb1\x3c\x59\xb9\x98\x5a\xd6\xde\xb0\xbb\xb9\ \x8d\x11\x11\x11\xc5\x94\xdd\x62\x0a\x57\x80\xc8\x46\xb0\x26\x94\ \xd7\x16\x6d\x06\xf0\x06\xb7\x37\x22\x22\x22\xc9\xbb\xa9\xaa\x54\ \xbb\x57\x6c\x4f\x5a\x94\x01\xcb\x1e\xb2\x34\x00\xea\xc1\x79\x59\ \x44\x44\x44\x52\x34\x00\xa0\xb8\xaa\x54\xdb\x2c\xc6\x27\x2f\xda\ \x80\xe5\x10\xb4\xea\x00\x6c\xe0\x76\x48\x44\x44\x24\x19\x07\x84\ \x58\x3c\xd4\x1f\x72\xb1\xbf\x03\xf6\x37\x80\x45\x49\x89\x88\x88\ \xa4\xa1\x52\xec\xe1\x0a\x90\xc0\x08\xd6\x04\xd6\xcb\x22\x22\x22\ \x12\x3d\xc1\xd7\xb7\x8a\xb9\x80\xe5\x10\xb4\xea\xc0\x43\x86\x44\ \x44\x44\x62\x72\x40\x0a\xa3\x56\x8e\xe4\x52\x7b\x87\xec\x6f\xd0\ \xfd\xdc\x56\x89\x88\x88\x44\xe1\x7e\xa9\x85\x2b\x40\x82\x23\x58\ \x13\x58\xfd\x9d\x88\x88\x48\xd0\x44\x53\x95\x9d\x01\xcb\x75\xd0\ \xda\x05\x60\x1b\xb7\x63\x22\x22\x22\xc1\xd8\x5d\x55\xaa\xdd\x2e\ \xe5\x17\x28\xf9\x80\x65\x0f\x59\x1a\xb0\x66\x16\x11\x11\x51\xb4\ \x89\xba\xb6\x15\x03\x96\xfb\xa0\x55\x0d\x60\x0b\xb7\x6f\x22\x22\ \xa2\x88\xab\xa9\x2a\xd5\x96\xc5\xca\x8b\x8d\xa9\x80\x65\x0f\x59\ \xc5\x00\xea\xc0\xd1\x2c\x22\x22\xa2\x48\x18\x00\x50\x22\x95\xf2\ \x0b\x0c\x58\xde\x83\x16\xe7\x66\x11\x11\x11\x85\x97\xe4\xe7\x5a\ \x31\x60\xb9\x0e\x59\x3c\xd3\x90\x88\x88\x28\xf4\x24\x7d\x86\x20\ \x03\x96\xef\x41\x6b\x3b\x80\xa7\xf8\x79\x20\x22\x22\x0a\xda\xfd\ \x55\xa5\xda\x5d\xb1\xde\x08\x0c\x58\xce\x41\xab\x1e\xc0\x2a\xb6\ \x04\x11\x11\x91\xdf\x1a\xaa\x4a\xb5\xc5\x6c\x06\x1b\x39\x9b\x60\ \x8a\x7d\xc3\x58\x0d\xdb\xd0\x26\x11\x11\x11\x79\x37\x00\xdb\x1a\ \x82\x0c\x57\x0e\x38\x82\xe5\x46\x79\x6d\x51\x05\x80\x9d\x6c\x09\ \x22\x22\x22\xb7\x2a\xab\x4a\xb5\x15\x6c\x06\x06\xac\x40\x82\x16\ \x0f\x1b\x12\x11\x11\x39\xe3\xe1\x40\x2f\x78\x88\xd0\x0b\x1e\x36\ \x24\x22\x22\x9a\xc4\xc3\x81\x3e\xe2\x08\x96\x1f\xca\x6b\x8b\xca\ \x00\xec\x61\x4b\x10\x11\x51\x0c\xda\x5a\x55\xaa\xad\x66\x33\x30\ \x60\x85\x33\x68\x55\x80\xf3\xb3\x88\x88\x28\x36\x70\x9e\x15\x03\ \x56\xc4\x83\x56\x35\xb8\xb6\x21\x11\x11\x49\x53\x4c\xad\x1d\xc8\ \x80\x25\xbc\x90\xa5\x86\x6d\x6d\x43\x4e\x84\x27\x22\x22\x29\x68\ \x80\x6d\xed\x40\x1d\x9b\x82\x01\x8b\x41\x8b\x88\x88\x88\xc1\x8a\ \x01\x8b\x41\x8b\x88\x88\x88\xc1\x8a\x01\x8b\xfc\x0d\x5a\xc5\xf6\ \xa0\xc5\x85\xa4\x89\x88\x48\x88\x06\xec\xc1\xaa\x9e\x4d\xc1\x80\ \xc5\xa0\x45\x44\x44\xc4\x60\xc5\x80\x45\x93\x41\x8b\x87\x0e\x89\ \x88\x28\x9a\x78\x28\x90\x01\x8b\x41\x8b\x88\x88\x88\xc1\x8a\x01\ \x8b\x02\x0b\x5a\x7b\x01\x6c\x60\x6b\x10\x11\x51\x18\xec\x03\x50\ \xc6\x60\xc5\x80\x15\xcb\x61\xab\x1a\x2c\x58\x4a\x44\x44\xa1\xc1\ \x02\xa1\x0c\x58\x34\x2d\x68\x95\x81\x6b\x1d\x12\x11\x51\x60\xb8\ \x56\x20\x03\x16\x79\x09\x5a\x3c\xf3\x90\x88\x88\x7c\xc1\x33\x02\ \x19\xb0\x28\x80\xa0\xc5\x09\xf1\x44\x44\xe4\x0a\x27\xae\x33\x60\ \x51\x88\xc2\x56\x05\x80\x9d\x6c\x09\x22\xa2\x98\x56\x59\x55\xaa\ \xad\x60\x33\x30\x60\x51\xe8\x83\x16\x0f\x1f\x12\x11\xc5\x16\x1e\ \x06\x64\xc0\xa2\x08\x87\xad\x6a\xf0\xec\x43\x22\x22\xa9\xe2\xd9\ \x80\x0c\x58\x14\xe5\xa0\xc5\x51\x2d\x22\x22\x69\xe0\x68\x15\x03\ \x16\x09\x34\x6c\xed\x02\xb0\x8d\x2d\x41\x44\x24\x2a\xbb\xff\x7f\ \x7b\x77\x70\x9c\x36\x10\x86\x61\xf8\x2b\x81\x0e\xa2\x0e\xa2\x0e\ \x4c\x07\xa1\x02\x87\x12\x28\xc1\x25\xe0\x8b\xcf\xa4\x03\x4a\x10\ \x1d\xe0\x83\xef\xd0\x41\xe8\x20\x07\x2d\x33\x1a\x26\x99\x18\x07\ \x47\x12\x7a\x9e\x19\x0d\x03\xbe\xfd\xa7\x97\xdd\x65\xfd\xf2\xf8\ \xb6\x32\x06\x81\xc5\xf0\x43\xab\x4e\xb2\x89\x5f\x20\x02\x0c\xd5\ \x6b\xda\x9b\xd6\xad\x56\x09\x2c\x46\x1a\x5b\xcb\x24\xeb\xd8\x42\ \x04\xe8\xdb\x29\xc9\xca\x85\xa0\x02\x8b\xfb\x8b\x2d\x5b\x88\x00\ \xff\x9f\x2d\x40\x81\xc5\x44\x42\x6b\x96\x76\x0b\xf1\x9b\x69\x00\ \x7c\x0a\xff\x6c\x59\x60\x31\xf1\xd8\xaa\x4a\x6c\x3d\x98\x06\xc0\ \x3f\xd9\x95\xa8\x3a\x18\x85\xc0\x32\x05\xba\xb1\xe5\x70\x3c\xc0\ \x75\x1c\x56\x47\x60\x71\x55\x6c\x55\xb1\xb2\x05\xf0\x3b\x56\xaa\ \x10\x58\x88\x2d\x00\x51\x85\xc0\x62\xe8\xb1\x35\x4b\xf2\x14\xbf\ \x46\x04\xee\xdf\x73\x92\x27\x07\xd5\x11\x58\xf4\x11\x5c\xab\x12\ \x5c\xee\xd9\x02\xc6\xee\x54\x82\x6a\x6d\x14\x08\x2c\x86\x14\x5b\ \x75\xda\x4b\x4d\x6d\x25\x02\x63\xb1\x4b\x7b\xf9\xa7\x43\xea\x08\ \x2c\x46\x11\x5b\xb3\x24\xab\xf2\x58\xdd\x02\x86\xe2\x54\xbe\x08\ \xae\x6d\xfd\x21\xb0\xb8\x87\xe0\xaa\xe2\xa0\x3c\xd0\x0f\x07\xd4\ \x11\x58\x4c\x26\xb8\x96\x69\xcf\x6e\x7d\x31\x0d\xe0\xc6\x8e\x69\ \xcf\x52\x6d\x8c\x02\x81\x85\xe0\x12\x5c\x80\xa0\x42\x60\x81\xe0\ \x02\x04\x15\x08\x2c\x04\x17\x20\xa8\x40\x60\xc1\x1f\x83\x6b\x9e\ \x64\x99\xe4\xbb\x69\xc0\xdd\xf9\x91\x64\xf3\xf2\xf8\xd6\x18\x05\ \x02\x0b\xfa\x0d\xae\x59\x09\xae\x55\xac\x72\xc1\x98\x1c\xd3\x5e\ \x9b\xb0\x71\x6d\x02\x02\x0b\xc6\x11\x5d\x55\x09\xae\x65\xdc\xc5\ \x05\x43\x70\x4a\x7b\x5d\xcb\xda\x95\x09\x08\x2c\x10\x5d\x80\x98\ \x02\x81\x05\x1f\x88\xae\x45\x6c\x2f\xc2\x47\x9d\xb7\xf9\xb6\x62\ \x0a\x04\x16\xfc\x2d\xbc\x16\x25\xbc\x16\xb1\xda\x05\x49\xbb\x2a\ \xb5\x2d\x21\xb5\x35\x0e\x10\x58\x20\xbc\x40\x48\x81\xc0\x82\x11\ \x86\x57\xdd\x09\xaf\xaf\x26\xc2\x08\xbc\x76\x42\x6a\x6f\x1c\x20\ \xb0\x60\x6c\xf1\x35\x4f\x32\x17\x5f\xf4\x18\x51\x8d\x7b\xa5\x40\ \x60\xc1\x94\xe2\x6b\x56\xe2\xeb\xfc\x08\x30\xae\x0d\xa8\xe6\xfc\ \xb8\x4b\x0a\x04\x16\xf0\xfe\x08\xab\x4b\x7c\xd5\xe5\x11\x61\xd3\ \x89\xa7\x7d\x79\x1a\xdb\x78\x20\xb0\x80\x7e\x42\x6c\x9e\xa4\xea\ \x84\x58\x1d\x07\xf1\x87\xe6\xd4\x89\xa6\x7d\x92\x83\xad\x3b\x10\ \x58\xc0\x7d\x05\x59\x9d\xe4\xbc\x45\x99\xce\xeb\x83\xe9\xbc\xcb\ \xae\xbc\x36\x9d\xd7\x9f\x56\x9a\x40\x60\x99\x02\x70\xcb\x50\x4b\ \xda\x15\xb4\xaa\xf3\xe7\xcb\xf7\xe7\xcf\x3e\xfb\x52\xd7\x63\x92\ \xc3\xc5\x67\x87\x8b\xcf\xba\xef\x85\x11\x70\x13\xbf\x00\x8b\xd6\ \x53\x98\xa3\xc7\xcc\x8e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x71\x95\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x71\x5c\x49\x44\x41\x54\x78\xda\xed\x9d\x09\x78\x54\xe5\ \xbd\xff\x81\x24\x24\x84\x34\xee\x5a\x5b\xbd\xad\xbd\xd6\x6a\x6d\ \xed\x5e\xdb\xda\x7b\x6f\xdb\xdb\xfb\xef\xa2\x2d\xb6\x6a\x6d\x5d\ \x5a\x5b\xac\x22\x10\x92\x00\x82\x16\x21\x90\x90\xcc\x84\xcd\x22\ \x01\xc9\xbe\xb2\x85\x7d\x4b\x02\x49\xe6\x4c\x96\x39\x93\x40\x54\ \x36\x15\x54\x94\x7d\x5f\x05\x51\x14\x38\xff\xf7\x9d\x9c\x33\x39\ \x99\xcc\x9c\x65\xe6\xcc\x9c\xed\x9b\xe7\x79\x1f\x4d\x98\xf9\x24\ \x39\x99\x79\x3f\xdf\x73\xce\xfb\xfe\x7e\xfd\xfa\xe1\x03\x1f\xf8\ \x30\xf4\x47\x61\x57\x57\xc2\xcc\x26\xf6\x8b\xf9\x2d\xec\x77\x9d\ \x2e\xcf\xaf\xf2\x5b\xbc\x8f\x3a\x5b\xd8\x67\xf3\xdd\xde\xf1\xf9\ \x6e\xd6\xe1\x74\x7b\x5f\x25\xff\x5d\xe4\x70\x7b\xd7\xe6\x33\x6c\ \xb3\xd3\xe5\x65\xc9\xe7\x5b\x1c\x2e\xcf\x3b\xf9\x6e\xcf\x7e\x32\ \x4e\x90\x7f\x3b\x4d\x1e\x7f\xce\xe1\xf2\x5e\xc8\x67\x3c\x17\xc9\ \xe7\x97\xc8\xe7\x1c\x1d\xbe\xff\xa7\x5f\xa3\xff\x46\x1f\xe3\x7b\ \xac\xe7\x04\x7d\x6e\x37\x83\xdd\xe2\x63\x12\xb6\xef\x7b\x90\xef\ \xc5\x7f\x4f\x07\xfd\x19\x7c\x3f\x0b\xfd\x99\xc8\xcf\xe6\x70\x7b\ \xbe\x43\x7f\x56\xfa\x33\xe3\x2f\x87\x0f\x7c\x58\xfc\xe3\x97\xbf\ \xfc\x59\x7f\x32\x06\x88\x46\x7f\xf0\xc0\x03\x4f\x9e\xc7\x71\x5c\ \xff\xdc\xd6\xd6\x1b\xa8\xd8\x1d\xae\x8e\x21\x4e\x86\x1d\x99\xcf\ \x78\xf3\x79\x99\xbb\xf3\x5d\x9e\xb7\x1c\x8c\xf7\xa4\x20\x6a\xdf\ \x60\xd8\xbe\x43\xfc\xef\x6a\x47\x14\x79\x0e\x17\x7b\x32\xbf\xb9\ \xfd\x2d\x12\x24\x18\x12\x18\x16\xd2\xdf\xcd\xf7\x3b\xba\xbd\xbf\ \xa7\x41\x61\x06\xd3\x75\x3d\x3d\x06\x78\xbd\x80\x07\x9e\x31\x78\ \x6a\xbf\x79\x5c\xe0\x00\x0f\x3c\xf0\x7a\x78\xe3\xc6\x8d\x1d\x98\ \x5b\xd7\x74\x7b\x6e\x63\xcb\xaf\x72\x9b\xda\x47\x90\x33\xed\x99\ \x44\xf0\xab\xc8\xd8\xc1\x9f\x71\x2b\x96\x2b\x91\x27\x19\x1e\xd1\ \x88\x4c\xd6\x46\xe0\xd1\x63\x40\xc2\xc1\x76\x7a\x4c\xc8\xe3\x67\ \x90\xe0\x30\x8c\x7c\xfe\x7f\xd3\x18\xf6\xb6\x17\x5f\x1c\x3f\x10\ \xaf\x3f\xf0\xc0\x8b\x0d\x4f\x6d\xea\x88\x27\x23\x41\x34\xe2\xc3\ \x4d\x1f\xe0\x81\x67\x76\x5e\x6d\x6d\x6d\x5c\x5e\x6b\xe7\x1d\xd3\ \xdc\xec\x1f\x88\xc8\x26\xe4\x35\xb7\x2f\x72\x34\xb7\x6d\xcd\x73\ \x79\x3e\x21\x97\xc6\x39\x3a\x22\x92\x2b\xcf\x10\x0f\xeb\xf3\xda\ \x3f\x26\xc7\x71\x8b\xa3\xa9\x6d\x91\xa3\xa9\xf5\x25\xf2\xf9\x83\ \xe4\xdf\xbe\x4a\x8f\x35\x5e\x7f\xe0\x81\xa7\x0d\x2f\x9c\x6f\x4e\ \xbf\xe1\x40\xd1\x48\x88\xf0\x97\x01\x0f\x3c\xd3\xf0\x66\xb2\xec\ \x20\x72\xdf\xfb\x87\xbe\x7b\xdf\x8c\x77\x7e\xbe\xcb\xbb\x89\x88\ \xe9\x63\xbf\xbc\x9a\xdb\x39\x87\x68\xd0\xcf\x23\x92\x21\x78\x41\ \xae\x1a\x78\x3a\xba\xd7\x21\x74\x3c\x93\xe7\xf6\xfc\x20\x8b\x61\ \x92\xf0\x7a\x06\x0f\xbc\xe8\xcb\x3f\x91\x8c\x24\xd1\x48\x8c\xf0\ \x97\x01\x0f\x3c\xc3\xf2\xe8\xd9\xe6\xb4\x56\xef\x3d\x4e\xc6\xfb\ \x4f\x32\x4a\xe9\xe5\x6a\xf1\x02\xba\xc0\xfb\xdf\xe4\xac\x9f\x23\ \x67\xac\x3d\x83\x7c\x1e\xf6\x7d\x75\xf0\x14\xf3\xe8\xdf\xc4\x77\ \x2b\x81\xf1\x96\x90\xc7\x3f\xed\x70\xb3\xdf\x7c\xf9\xe5\x59\xf1\ \x78\x3d\x83\x07\x9e\x76\xf2\xa7\xdf\x70\x90\x68\x24\x45\xf8\xcb\ \x80\x07\x9e\xa1\x78\x39\xab\x5b\xae\x26\x0b\xf2\xee\xef\x5e\xe1\ \xee\x61\xe8\xaa\x78\xc5\xf2\xf2\x49\xab\x55\x34\x22\x94\x21\x78\ \x11\xf2\x5a\xcf\xe5\x6d\x70\x33\x53\x1b\x5c\xd3\xa6\xac\x69\xf8\ \xc3\xd8\x79\x73\x6f\xc4\xfb\x03\x3c\xf0\x7a\x98\x4a\x1f\x48\x57\ \x17\x26\x93\x31\x58\x34\xe8\xe7\x03\xc2\xfc\xc6\xe0\x81\x67\x08\ \xde\xe8\x39\x45\xff\x91\xbd\xba\xee\xcf\x53\xeb\x9b\x0b\x9c\xcd\ \xec\xeb\x64\xdb\xdb\x95\x70\x64\x93\xd7\xd8\x4a\x46\x8b\x68\xb4\ \x46\x24\x2f\xf0\xa2\xc0\x6b\x6e\xbf\x4c\x76\x55\xbc\x46\xae\x14\ \xcc\x22\x8b\x31\x1f\xcc\x6b\xec\xbc\x0e\xef\x0f\xf0\x6c\xc8\xeb\ \xcf\x2f\x1a\x1c\xa0\xf4\x9b\xd3\x6f\x98\x22\x1a\x83\x23\xfc\x65\ \xc0\x03\x4f\x17\xde\xb8\x86\xfa\x94\xac\xe5\x6b\x87\x64\xaf\x6f\ \x7c\x25\xa7\xa1\x79\x7b\xde\xc6\x6e\x41\x44\x26\x1b\xc2\xd8\x28\ \x1a\xe0\x99\x86\x47\x6e\x1d\xbc\x41\x02\xc1\x34\xba\xf3\x80\xae\ \xed\xc0\xfb\x0d\x3c\x8b\xf3\x84\x05\x84\xf2\x01\x40\xf4\xcd\x53\ \x45\x23\x25\xc2\x5f\x26\x05\x3c\xf0\x62\xc5\xa3\xfb\xcc\x1d\xcd\ \x1d\xdf\xa2\x05\x6b\xf2\x48\x21\x9b\xa9\x1b\xdd\x9f\xe4\x6e\x70\ \x73\xc2\xc8\xdb\xe8\x0e\x7b\xfb\x1b\x7d\x1e\x7d\x3e\x78\x96\xe1\ \x7d\x4c\x82\x40\xa3\xd3\xcd\x8e\xa3\x6b\x08\x72\x72\xa6\xc4\xe1\ \xfd\x06\x9e\x85\x78\xfd\x45\xbb\x06\xa4\x03\x00\xff\xe0\x64\xd1\ \x0f\x70\x15\xff\xdf\x48\x7e\x19\x81\x73\x15\x78\xe0\x45\x8b\x47\ \xcf\xe4\xc8\x64\xfe\xdb\xee\x55\xe2\xb4\x12\x5e\xb7\x1c\xba\xa5\ \xc0\x88\x46\x64\xb2\x01\xcf\xe2\xbc\x06\x66\xff\xe4\xb5\x1b\x8a\ \x27\x2e\x5e\xfe\xd0\xa3\x69\xc3\x6f\xc2\xfb\x0d\x3c\x13\xf3\x84\ \x05\x84\x03\x45\x01\xa0\xbf\xdc\x82\x83\xc1\x01\x09\x04\x07\x1b\ \x3c\x43\xf2\x68\x55\x39\xb2\x2d\x6f\x28\xd9\x92\xb7\x26\xb0\xc0\ \x0e\x64\x08\x5e\xc4\xbc\x06\xd7\x05\x52\x87\x60\x35\xd9\x09\xf2\ \x77\xa5\x6b\x07\xf0\xfe\x05\xcf\x40\x3c\x61\xd7\x80\x3f\x00\xc8\ \x25\x85\x41\x01\xf7\x1e\x70\xb0\xc1\x33\x14\x6f\x6a\xcb\xe6\x9b\ \xc9\x84\x3d\x9c\xaf\x51\x7f\x09\xf2\x02\x2f\x16\x3c\x7e\xcb\x61\ \x23\xad\x5a\x98\xdb\xe4\xbd\x09\xef\x5f\xf0\x0c\xce\x4b\x16\xed\ \x1a\xa0\x01\x20\x5e\xee\x1e\x41\x92\x28\x00\x0c\xc6\xc1\x06\xcf\ \x28\x3c\x3a\xe1\x92\x32\xb1\x69\x64\x02\x6e\x97\x5b\xb1\x0f\x79\ \x81\x17\x6d\x1e\x7d\x0d\x92\x9e\x07\xad\x8e\x96\x8e\x11\xd3\x3d\ \x9e\x1b\xf1\xfe\x05\xcf\x60\x3c\xc1\xe1\x42\x00\x48\x90\xba\xf4\ \x1f\xcf\x27\x04\x21\x00\x24\xe3\x60\x83\xa7\x37\x6f\x76\x47\x47\ \x2a\xb9\xbc\xff\x37\x32\x11\x6f\x20\x0d\x72\x2e\x43\x5e\xe0\x19\ \x91\xc7\x5f\x19\xa8\xcf\x67\x3a\x9e\xcc\x5a\xb3\xfa\x2a\xbc\x7f\ \xc1\xd3\x99\x27\xde\x35\x30\x48\xb2\x68\x10\xbf\x28\x20\x41\x14\ \x00\x92\x70\xb0\xc1\xd3\x8b\xf7\xd8\xb3\x4f\x5f\x4b\xaa\xc0\x0d\ \x21\x05\x79\x96\x92\x89\xf5\x13\xc8\x06\x3c\x33\xf1\x72\xea\xdd\ \x17\x72\xd6\x35\xae\x98\xb0\x78\xd5\x9f\x1e\x7c\xe2\x2f\xd7\x61\ \x3e\x00\x4f\x07\x5e\xaa\x28\x00\x24\xc9\x2d\xfa\x13\x07\x80\x48\ \xca\x15\xe2\x8f\x07\x5e\xd8\xbc\xf1\xe5\x55\xf7\xe6\xac\xdb\x30\ \xdb\xc9\xb4\x1f\x81\x6c\xc0\xb3\x04\xaf\xde\x75\x98\xf4\x34\xc8\ \x27\x85\x88\xbe\x86\xf9\x00\xbc\x18\xf2\x84\x00\x90\x2c\xe9\x73\ \xfe\x49\x71\xa2\x3d\x82\x90\x3f\x78\x31\xe3\x0d\x9b\x92\x75\x4b\ \xd6\xaa\x75\x19\x39\xf5\x8d\x9b\x21\x1b\xf0\xac\xcc\x73\xba\xbc\ \x2c\xed\x2b\x91\xdf\xde\xfe\x39\xcc\x07\xe0\x45\x99\x97\xaa\x68\ \x0d\x9f\x28\x00\xc4\x43\xfe\xe0\xc5\x8a\x37\xbe\x72\xf1\x4f\xb2\ \xd7\x6e\x2c\x23\x15\xf9\x3e\x82\x1c\xc0\xb3\x13\x8f\x6c\x55\xfd\ \x90\xd4\xa8\x98\x47\x0b\x0e\x61\x3e\x00\x2f\x4a\x3c\x65\xbb\xf7\ \x44\x01\x00\xf2\x07\x2f\xaa\x3c\xda\xb6\xd5\xd1\xe4\xf9\x6b\x4e\ \x9d\xab\x13\x72\x00\x0f\x3c\xf2\x7c\xb2\xa3\x25\xbf\x85\x7d\x5c\ \x68\x69\x8c\xf9\x05\xbc\x98\xf2\x22\xec\x28\x84\x83\x0d\x9e\xec\ \xc7\xcc\x26\xf6\x8b\x64\xb2\xcb\x23\xf7\xf6\x4f\x40\x0e\xe0\x81\ \x17\x6c\x17\x81\xe7\xb8\xc3\xd5\x3e\x35\x63\xde\xdc\x3b\x30\xbf\ \x80\xa7\x07\x0f\x07\x07\x3c\x4d\x79\x64\xfb\xde\x0f\xc9\x19\xce\ \x42\x32\xc1\x7d\x06\x39\x80\x07\x9e\x3c\x2f\xa7\xbe\xf9\xd3\x29\ \xeb\x1a\x97\xbc\x58\xb5\xf8\x67\x98\x5f\xc0\x83\xfc\xc1\x33\x15\ \xaf\xb6\xb6\x36\x6e\x9a\x9b\x7d\x84\x6c\xe1\xf3\x42\x0e\xe0\x81\ \x17\x3e\xcf\xc1\xb0\xed\xd3\x5c\xde\x87\xe8\x7b\x0a\xf3\x0b\x78\ \x90\x3f\x78\x86\xe5\xd1\x7b\x98\xe4\x8c\xff\x59\xb2\x6f\xff\x3d\ \x4c\xe6\xe0\x81\xa7\x21\x8f\xf1\xec\x22\xa5\x87\x9f\x9e\x5d\x57\ \x97\x88\xf9\x0a\x3c\xc8\x1f\x3c\xc3\xf0\x5e\x66\x98\xab\xc9\x64\ \xf5\x22\x59\xd5\x7c\x04\x93\x39\x78\xe0\x45\x91\xe7\x62\x0f\x91\ \x20\xf0\x3c\xad\x8e\x89\xf9\x0a\x3c\xc8\x1f\x3c\xdd\x78\xb4\x03\ \x1f\x5d\xd8\xd7\xbd\xa5\x09\x93\x39\x78\xe0\xc5\x8e\xe7\x39\x43\ \x6e\xb1\x65\x93\xd6\xd7\xd7\x62\xbe\x02\x0f\xf2\x07\x2f\x66\xbc\ \xdc\xd6\xd6\x1b\xc8\x24\xe5\x24\xab\x96\xcf\x63\x32\x07\x0f\x3c\ \xfd\x78\xbe\xf0\xcd\x78\xa6\xe6\x36\x34\x5c\x8f\xf9\x0a\x3c\x95\ \xcc\xfe\x38\x38\xe0\x29\xe6\x51\xf1\xe7\x33\xde\x7c\x29\xf1\x63\ \x32\x07\x0f\x3c\x3d\x7a\x0f\x30\xe7\xa6\xac\x69\x98\x31\x6c\xea\ \xb4\xdb\x30\x5f\x81\x27\x27\x7e\xbe\xee\x8f\xe2\x22\x41\x29\x38\ \xd8\xf6\xe5\x39\x1b\xbb\xae\xa2\x67\x19\x72\xe2\xc7\x64\x0e\x1e\ \x78\xfa\xf2\x48\x81\xad\x73\x53\xd6\x36\xe4\xd1\x6e\x84\x98\xff\ \xc0\x0b\x21\xff\x78\x45\x01\x40\xd4\x4f\x38\x15\x07\xdb\x7e\xbc\ \xac\xae\xae\x64\xa7\x9b\x1d\x97\xef\xf2\x9e\xc2\xe4\x0b\x1e\x78\ \xe6\xe1\xd1\xa2\x42\x64\xb1\x60\xa6\x50\x5d\x10\xf3\x1f\x78\xbc\ \xfc\x85\x7e\x3f\xd2\x01\x80\x7f\x70\x32\x7f\xf6\x9f\x8a\x83\x6d\ \x1f\x5e\x61\x57\x57\x82\x6f\x3b\x1f\xe3\x3d\x88\xc9\x17\x3c\xf0\ \xcc\xcb\x73\xba\x3c\xfb\xc8\x7b\x79\x28\x09\x02\xf1\x98\xff\x6c\ \x2f\xff\x44\xbe\xdb\x6f\x82\x64\xe9\x7f\xfe\xc1\x49\xfc\xd9\x7f\ \x8a\xa8\xb7\x30\x0e\xb6\x85\x79\x59\x59\x2f\xc5\x91\x49\xe3\xf7\ \x64\x1f\xff\x4e\x4c\xbe\xe0\x81\x67\x1d\x9e\x93\xf1\xbc\x49\x2a\ \x72\xfe\x86\xe3\xb8\xfe\x98\xff\x6c\xc9\x4b\xe2\x87\x3f\x00\xc8\ \x25\x85\x41\xa2\x00\x90\x82\x83\x6d\x6d\x5e\x5e\x93\xfb\xfb\x64\ \x6b\x11\x83\xc9\x12\x3c\xf0\x2c\xdd\x78\xa8\x71\x5a\xab\xf7\x1e\ \xcc\x7f\xb6\xe2\x25\xf3\x3e\x17\x02\x40\xbc\xdc\x3d\x82\x24\x51\ \x00\x18\x8c\x83\x6d\x5d\x5e\xe6\xdc\xa2\x3b\x1d\xcd\x9e\x2a\x87\ \xcb\x73\x05\x93\x25\x78\xe0\xd9\x61\xeb\x20\x79\xaf\x33\xde\x92\ \xac\x7a\xf7\x17\x31\x9f\x5a\x9e\x27\x38\x5c\x08\x00\x09\x52\x97\ \xfe\xe3\xf9\x84\x20\x04\x80\x64\x1c\x6c\x6b\xf2\x1e\x4d\x1b\x7e\ \xd3\x94\xb5\x1b\xb2\x9d\xae\xf6\x8f\x30\x59\x82\x07\x9e\x1d\x79\ \xcc\xf9\x29\xab\xea\x26\x3e\x3c\x62\xd8\x0d\x98\x4f\x2d\xc9\x13\ \xae\xde\x0b\x01\x20\x51\x4a\xfe\x71\x7c\x3a\x18\x28\xba\x5f\x80\ \x83\x6d\x41\xde\xc4\x25\x2b\x1e\xcd\x69\x60\xde\xc7\x64\x09\x1e\ \x78\xe0\x65\xd7\xbb\xde\x79\x69\xc9\xca\x3f\x60\x3e\xb5\x1c\x2f\ \x55\x14\x00\x92\xe4\x16\xfd\x89\x03\x40\xa2\xe2\x2a\x41\x38\xd8\ \xa6\xe1\x8d\x2d\x2a\xfb\x6e\xf6\xfa\xc6\x0d\x98\x2c\xc1\x03\x0f\ \xbc\xbe\x5b\x07\xbd\x2b\xa7\xb7\x74\xdc\x86\xf9\xd4\x32\x3c\x21\ \x00\x24\x4b\xfa\x9c\x7f\x52\x9c\x68\x8f\x20\xe4\x6f\x21\xde\xe3\ \xcf\x0c\xbd\x71\xf2\x9a\x7a\x47\x6e\x7d\xf3\x45\x4c\x96\xe0\x81\ \x07\x9e\x04\xef\x63\xd2\x63\xe0\x5f\x59\x3b\x76\x0c\xc4\x7c\x6a\ \x7a\x5e\xaa\xa2\x35\x7c\xa2\x00\x10\x0f\xf9\x5b\x8b\x37\x61\xd1\ \xf2\x07\xa6\xd6\x35\xbd\x8b\xc9\x0d\x3c\xf0\xc0\x53\xca\xf3\x6d\ \x1b\x64\xbc\x3f\xc5\x7c\x6a\x6a\x5e\x8a\x9a\x72\xbf\x71\x90\xbf\ \x75\x78\xa3\xa6\xcf\xbe\x2d\x67\x5d\xe3\x42\x4c\x6e\xe0\x81\x07\ \x5e\xf8\x3c\xb6\x48\xdc\x71\x10\xf3\xb3\x05\x79\xe1\x8a\x1f\x07\ \xdb\x78\x3c\x5a\xcc\x67\xd2\x8a\xf5\xff\xcc\x6d\x68\x3a\x89\xc9\ \x0d\x3c\xf0\xc0\x8b\x94\x47\x2a\x82\x1e\x25\x25\xc1\xff\x44\x8b\ \x08\x61\x7e\x46\x8b\x60\x1c\x6c\x83\xf2\x9c\x6b\x9b\x6e\xcd\xae\ \x6f\xae\xc7\xe4\x06\x1e\x78\xe0\x69\xce\x6b\x6e\x5b\x91\x31\x7b\ \xde\xed\x98\x9f\x21\x7f\x1c\x6c\x03\xf1\x68\x32\x77\x34\xb7\x0e\ \xcd\xdd\xd0\x7c\x16\x93\x1b\x78\xe0\x81\x17\x2d\x5e\x4e\xbd\xeb\ \xd4\xc4\xe5\x6b\x9f\x19\x32\xe4\xfe\xab\x31\x3f\x43\xfe\x38\xd8\ \x3a\xf3\x66\xb4\x6c\xba\x95\x2c\xd8\xd9\x80\xc9\x0d\x3c\xf0\xc0\ \x8b\x15\x6f\x6a\x7d\x53\xc3\xd4\x8d\x1b\x6f\xc1\xfc\x0c\xf9\xe3\ \x60\xeb\xc0\xf3\x9d\xf5\x33\xde\x27\x9c\x4c\xfb\x19\x4c\x6e\xe0\ \x81\x07\x5e\xcc\x79\xa4\x4d\x38\x5d\x1b\x80\xf9\x19\xf2\xc7\xc1\ \x8e\x21\x2f\xaf\xb1\xf3\x3a\xd2\xd4\xa3\x16\x93\x11\x78\xe0\x81\ \xa7\x3b\x8f\xf1\x2e\x70\xb4\xb5\x5d\x83\xf9\x19\xf2\x07\x2f\xca\ \x3c\xda\xd2\x33\xdf\xc5\x1e\xc2\x64\x04\x1e\x78\xe0\x19\xa6\x6e\ \x80\xdb\x7b\x60\x1a\xc3\xfe\x12\xf3\xbd\x79\xe4\xaf\x78\xf7\x1f\ \x0e\xb6\xfe\xbc\x2c\x86\x49\x22\x6f\xb4\x39\x98\x8c\xc0\x03\x0f\ \x3c\xc3\xf2\x18\xcf\xcc\xd9\x75\x75\x89\x98\xef\x0d\xcd\x13\x4a\ \xff\x2b\x2e\x12\x94\x82\x83\xad\x1f\x8f\xa4\xeb\xbb\xc8\xfd\xb6\ \x6d\x98\x8c\xc0\x03\x0f\x3c\x13\xd4\x0d\x78\x2d\xaf\xb5\xf3\x0e\ \xcc\xf7\x86\x95\x7f\xbc\xa2\x00\x20\xea\x27\x9c\x8a\x83\x1d\x7b\ \x1e\x5d\xe8\x97\xcf\xb0\x4f\x3b\x5c\xde\x0b\x98\x8c\xc0\x03\x0f\ \x3c\xb3\xf0\x1c\x6e\xcf\x79\x52\x37\xe0\x6f\x98\xef\x0d\x27\x7f\ \xa1\xdf\x8f\x74\x00\xe0\x1f\x9c\xcc\x9f\xfd\xa7\xe2\x60\xc7\x96\ \xf7\x32\xc3\x5c\x4d\x16\xd7\x2c\xc1\x64\x04\x1e\x78\xe0\x99\xb6\ \x6e\xc0\xfa\x8d\x4b\x86\x4e\x9c\x70\x0b\xe6\x7b\x43\xc8\x3f\x91\ \xef\xf6\x9b\x20\x59\xfa\x9f\x7f\x70\x12\x7f\xf6\x9f\x22\xea\x2d\ \x8c\x83\x1d\x03\x1e\x49\xcf\xdf\x21\x67\xfe\xbb\x31\x19\x81\x07\ \x1e\x78\x66\xe7\xd1\x66\x64\xe3\xab\x16\xfc\x08\xf3\xbd\xae\xbc\ \x24\x7e\xf8\x03\x80\x5c\x52\x18\x24\x0a\x00\x29\x38\xd8\xd1\xe7\ \xd1\x4b\xfe\xce\x16\x76\x28\xe9\xcb\xfd\x09\x26\x0f\xf0\xc0\x03\ \xcf\x2a\xbc\xbc\x66\xf6\x42\x3e\xd3\xf1\x24\xe6\x7b\x5d\x78\xc9\ \xbc\xcf\x85\x00\x10\x2f\x77\x8f\x20\x49\x14\x00\x06\xe3\x60\x47\ \x9f\x97\xd5\xd5\x95\xec\x74\x7b\xca\x31\x79\x80\x07\x1e\x78\x56\ \xe5\x91\xff\x2f\xa4\x3b\x9a\xe0\x8f\x98\xf1\x04\x87\x0b\x01\x20\ \x41\xea\xd2\x7f\x3c\x9f\x10\x84\x00\x90\x8c\x83\x1d\x7d\x5e\x1e\ \xc3\xde\xee\x60\x3c\x5b\x31\x79\x80\x07\x1e\x78\x96\xe7\xb9\xbc\ \xaf\x93\x9d\x02\x5f\x86\x3f\xa2\xce\x13\xae\xde\x0b\x01\x20\x51\ \x4a\xfe\x71\x7c\x3a\x18\x28\xba\x5f\x80\x83\x1d\x65\x9e\xd3\xe5\ \xf9\x15\xb9\xe4\x7f\x1a\x93\x07\x78\xe0\x81\x67\x1f\x9e\xe7\x84\ \xa3\xa5\xe3\x17\xf0\x47\x54\x79\xa9\xa2\x00\x90\x24\xb7\xe8\x4f\ \x1c\x00\x12\x15\x57\x09\xc2\xc1\x0e\x8b\xc7\x6f\xf1\x7b\x3e\xdf\ \xe5\xb9\x8c\xc9\x03\x3c\xf0\xc0\xb3\x1b\x8f\x9c\xf8\x5c\x22\x8f\ \xcb\xa0\x73\x21\xfc\x11\x15\x9e\x10\x00\x92\x25\x7d\xce\x3f\x29\ \x4e\xb4\x47\x10\xf2\x8f\x22\xaf\xfb\x7e\xbf\x77\x21\x26\x0f\xf0\ \xc0\x03\xcf\xee\x3c\x27\xe3\xad\x9c\xc9\xb2\x83\xe0\x0f\xcd\x79\ \xa9\x8a\xd6\xf0\x89\x02\x40\x3c\xe4\x1f\x5d\x1e\x6d\xdf\x4b\xef\ \x81\x61\xf2\x00\x0f\x3c\xf0\xc0\xeb\x1e\x79\x8c\x67\x73\xc6\xbc\ \xb9\x77\xc0\x1f\x9a\xf2\x52\xd4\x94\xfb\x8d\x83\xfc\xa3\xcb\xcb\ \x73\x7b\x7e\x40\xf6\xf8\x1f\xc6\xe4\x01\x1e\x78\xe0\x81\x17\x50\ \x34\xa8\xc1\x75\x68\x5c\x65\xcd\x7f\xc1\x1f\x31\xe6\x85\x2b\x7e\ \x1c\x6c\xe5\x3c\x27\xd3\xf1\x30\x79\xb1\x7f\x8c\x37\x3b\x78\xe0\ \x81\x07\x5e\x08\x5e\x7d\xf3\x85\x89\x4b\xd7\xfe\x19\xfe\xd0\x87\ \x87\x83\xa3\x31\xcf\xb7\xd8\xcf\xcd\xfe\x0b\x6f\x76\xf0\xc0\x03\ \x0f\x3c\x25\x45\x83\xda\xaf\x90\x13\xa6\xb1\xe2\xc5\x81\xf0\x11\ \xe4\x6f\x3a\x5e\xd6\x8e\x1d\x03\x49\x3d\xff\x0a\xbc\xd9\xc1\x03\ \x0f\x3c\xf0\xd4\xf2\xd8\x22\x52\x34\x28\x1e\x3e\x82\xfc\x4d\xc7\ \x9b\xdd\xd1\x91\x4a\xb6\xf8\x6d\xc4\x9b\x1d\x3c\xf0\xc0\x03\x2f\ \x3c\x1e\xf9\xda\xfa\xe9\x1b\xb6\x0c\x86\x8f\x20\x7f\xd3\xf0\xa6\ \xb6\x6c\xbe\x99\xec\x71\x7d\x03\x6f\x76\xf0\xc0\x03\x0f\xbc\xc8\ \x78\x0e\x37\xbb\x79\xba\xc7\x73\x23\x7c\x04\xf9\x1b\x9e\x47\xf6\ \xf7\xdf\x45\xe4\xbf\x07\x6f\x76\xf0\xc0\x03\x0f\x3c\xcd\x8a\x06\ \xbd\x47\x4b\xa6\xc3\x47\x90\xbf\x61\x79\xd3\xdc\xed\x3f\x26\x7b\ \xfc\x4f\xe1\xcd\x0e\x1e\x78\xe0\x81\xa7\x2d\x8f\x6c\xa1\x3e\x4e\ \xb7\x52\xc3\x47\xda\xc8\x5f\xf1\xee\x3f\x1c\x6c\x05\x67\xfe\xa4\ \xa6\x7f\x3e\xe3\xf9\x08\x6f\x76\xf0\xc0\x03\x0f\xbc\xa8\xf1\xce\ \x39\x9a\xda\xff\x17\x3e\x8a\x88\x27\x94\xfe\x57\x5c\x24\x28\x05\ \x07\x5b\xea\xcc\x9f\x7d\xc4\xe1\xf2\x7c\x8a\x37\x27\x78\xe0\x81\ \x07\x5e\x74\x79\x39\x1b\xdc\x9f\xbc\xb4\x64\xf5\x63\xf0\x51\xd8\ \xf2\x8f\x57\x14\x00\x44\xfd\x84\x53\x71\xb0\x83\x7f\x90\x86\x3e\ \x4f\x07\x36\xf4\xc1\x9b\x1d\x3c\xf0\xc0\x03\x2f\x7a\xbc\x9c\x06\ \xe6\xd2\xa4\x95\x6b\x9e\x83\x8f\x54\xcb\x5f\xe8\xf7\x23\x1d\x00\ \xf8\x07\x27\xf3\x67\xff\xa9\x90\x7f\x90\xcb\xfe\xa4\x58\x05\xde\ \x9c\xe0\x81\x07\x1e\x78\x3a\xf1\x5c\xed\x19\xf0\x91\x62\xf9\x27\ \xf2\xdd\x7e\x13\x24\x4b\xff\xf3\x0f\x4e\xe2\xcf\xfe\x53\x44\xbd\ \x85\x21\x7f\xff\x99\xbf\xf7\x25\xbc\x39\xc1\x03\x0f\x3c\xf0\x74\ \xe7\x8d\x87\xfc\x65\x79\x49\xfc\xf0\x07\x00\xb9\xa4\x30\x48\x14\ \x00\x52\x20\xff\xee\x0f\x5a\x9e\x92\xb4\xaf\x9c\x82\x37\x27\x78\ \xe0\x81\x07\x9e\x31\x78\x64\x4e\x9e\x08\xf9\x87\xe4\x25\xf3\x3e\ \x17\x02\x40\xbc\xdc\x3d\x82\x24\x51\x00\x18\x0c\xf9\xf7\xc8\x9f\ \xbc\xd8\xf2\xf0\xe6\x04\x0f\x3c\xf0\xc0\x33\x16\xcf\xe9\x66\x73\ \xa4\xfa\x07\xd8\x54\xfe\x82\xc3\x85\x00\x90\x20\x75\xe9\x3f\x9e\ \x4f\x08\x42\x00\x48\x86\xfc\xc5\x67\xfe\xec\x0c\xbc\x39\xc1\x03\ \x0f\x3c\xf0\x8c\xc9\x23\xff\xee\x0c\x16\x02\x6c\x2a\x7f\xe1\xea\ \xbd\x10\x00\x12\xa5\xe4\x1f\xc7\xa7\x83\x81\xa2\xfb\x05\x90\x3f\ \xe4\x0f\x1e\x78\xe0\x81\x67\x1a\x5e\x60\x08\xb0\x71\x1d\x9b\x54\ \x51\x00\x48\x92\x5b\xf4\x27\x0e\x00\x89\x8a\xab\x04\xd9\xe2\xb2\ \x3f\xeb\xc0\x9b\x13\x3c\xf0\xc0\x03\xcf\x1c\x3c\xba\x4e\x0b\x45\ \xec\xfc\x01\x20\x59\xd2\xe7\xfc\x93\xe2\x44\x7b\x04\x21\x7f\xff\ \x56\x3f\x2c\xf8\x03\x0f\x3c\xf0\xc0\x33\x1d\xaf\xd9\x33\xd1\xe6\ \x15\x03\x53\x15\xad\xe1\x13\x05\x80\x78\xc8\x1f\x5b\xfd\xc0\x03\ \x0f\x3c\xf0\xac\xc0\x9b\xb2\xba\x3e\xcb\xc6\x45\xec\x52\xd4\x94\ \xfb\x8d\x83\xfc\x51\xe4\x07\x3c\xf0\xc0\x03\xcf\x4a\xbc\xac\x55\ \x75\xe3\x51\xc7\x46\xa6\x4a\x50\xbf\x30\x3f\x2c\x5b\xde\x17\x6f\ \x26\xf0\xc0\x03\x0f\x3c\x4b\xf0\xf2\x5c\x6d\x4f\xc1\x6f\x1a\x7f\ \x58\xb8\xb1\xcf\x15\xbc\x99\xc0\x03\x0f\x3c\xf0\xac\xc1\x73\xb8\ \xbd\x97\x48\xb7\xd6\x07\x21\x7f\xc8\x5f\xb2\xa5\x2f\xba\xfa\x81\ \x07\x1e\x78\xe0\x59\x90\xc7\x78\x2e\x3a\x5a\x3a\x7e\x01\xf9\x43\ \xfe\x41\xce\xfc\xdb\x7f\x4c\x5e\x20\x1f\x99\xf5\xc5\x3f\xbd\xb1\ \x85\x2b\x6f\xf1\x70\x2b\x3b\x37\x73\x6b\x37\x75\x71\xeb\x36\xbf\ \xc6\x6d\xd8\xb6\x83\xdb\xb8\xfd\x4d\xd5\x83\x3e\x8f\x3e\x9f\x72\ \x84\x01\x1e\x78\x56\xe2\x2d\xf4\x6e\x82\x5c\x6d\xc8\xcb\x73\xb7\ \x9f\x77\xb6\xb0\x3f\x84\xfc\x21\xff\x9e\x33\x7f\xb7\xf7\xae\x7c\ \x97\xf7\x94\x19\x5f\xfc\xb3\xc8\x68\x7c\x7d\x2b\xb7\xf7\xd0\x41\ \xee\xc0\x91\xc3\xbe\x71\xf0\xe8\x11\xee\xe4\xd9\x33\xdc\xa9\x0f\ \x3f\x54\x3d\xe8\xf3\xe8\xf3\x05\x16\x78\xe0\x59\x91\x77\xf1\xd3\ \x4f\xb9\xfa\x1d\xbb\x20\x57\x1b\xf2\xf2\xdc\x9e\xe3\xe4\xbf\x5f\ \x85\xfc\x21\xff\x7e\x53\x5b\x36\xdf\x4c\xee\x0f\xed\x31\xe3\x8b\ \xbf\xd8\xd3\xc9\xbd\xbb\x6f\x3f\xe4\x00\x1e\x78\x2a\x79\x97\x2e\ \x5f\xe6\xae\x5c\xb9\xa2\x2a\x04\x40\xae\xd6\xe1\xe5\xb9\xbd\xef\ \x4d\xf7\x78\x6e\x84\xfc\x6d\x2c\xff\xd9\x1d\x1d\xa9\x44\xfe\x6f\ \x98\xf1\xc5\x5f\xd8\xd6\xc9\xed\x39\x74\x08\x93\x39\x78\xe0\x85\ \xc1\xa3\x01\x80\x7e\x28\x0d\x01\x90\xab\x05\x79\x2e\xef\xa6\xe9\ \x1b\xb6\x0c\xb6\xab\xfc\x15\xef\xfe\xb3\xe2\xc1\xc9\xda\xb1\x63\ \x60\xbe\xcb\xb3\xd1\x8c\x2f\xfe\x69\x64\xec\xd8\xfd\x3e\x26\x73\ \xf0\xc0\x0b\x93\x27\x04\x00\x21\x04\x34\xbc\xb9\x0b\x72\xb5\x21\ \x8f\x3c\x67\xfd\xf0\x82\x57\x06\xda\xac\x62\xa0\x50\xfa\x5f\x71\ \x91\xa0\x14\x2b\x1d\x1c\x5f\x7d\x7f\xc6\x5b\x61\xd6\x17\xff\x22\ \x4f\x07\x26\x73\xf0\xc0\x8b\x80\x27\x0e\x00\x52\x21\x00\x72\xb5\ \x3e\x2f\x67\x7d\x63\xf9\x90\x21\xf7\x5f\x6d\x23\xf9\xc7\x2b\x0a\ \x00\xa2\x7e\xc2\xa9\x56\x3a\x38\xa4\xb9\xcf\xbf\xcc\xfc\xe2\xef\ \xda\xb5\x0b\x93\x39\x78\xe0\x45\xc0\x0b\x0c\x00\xc1\x42\x00\xe4\ \x6a\x1f\xde\xe4\xd5\x75\x13\x6c\x22\x7f\xa1\xdf\x8f\x74\x00\xe0\ \x1f\x9c\xcc\x9f\xfd\xa7\x5a\xe5\xe0\x90\x12\xbf\x0f\x9b\xf9\xc5\ \xea\xdc\xd8\xc2\xed\xc7\x64\x0e\x1e\x78\x11\xf1\x82\x05\x00\x71\ \x08\x80\x5c\xed\xc5\xcb\xae\x6b\xba\x32\x71\xe9\xda\x3f\x5b\x5c\ \xfe\x89\x7c\xb7\xdf\x04\xc9\xd2\xff\xfc\x83\x93\xf8\xb3\xff\x14\ \x51\x6f\x61\x53\x1f\x1c\xb2\xfd\xe3\x07\xe4\x8f\xff\xb1\x99\x5f\ \xac\xaf\x30\x1e\x4c\xe6\xe0\x81\x17\x21\x2f\x54\x00\xa0\x1f\x97\ \x2e\x5d\xe2\xd6\xbc\xb6\x15\x72\xb5\x1b\xcf\xd5\xf6\x91\xc3\xed\ \xf9\x8e\x45\x17\xc8\x27\xf1\xc3\x1f\x00\xe4\x92\xc2\x20\x51\x00\ \x48\x31\xbb\xfc\x67\xb4\x6c\xba\x95\xfc\x71\x0f\x9b\xfd\xc5\x5a\ \xe0\xf6\x60\x32\x07\x0f\xbc\x08\x79\xa1\x02\xc0\x65\xf2\xf5\x8f\ \x3e\xfa\x88\x3b\x77\xee\x1c\xb7\xba\x6b\x0b\xe4\x6a\x33\x1e\xa9\ \x09\x73\x20\xbf\xbd\xfd\x0b\x16\x93\x7f\x32\xef\x73\x21\x00\xc4\ \xcb\xdd\x23\x48\x12\x05\x80\xc1\x66\x97\x7f\x56\x57\x57\x32\xd9\ \xf2\xf1\xba\x15\x5e\xac\x05\x2d\x2c\x26\x73\xf0\xc0\x8b\x90\x17\ \x2c\x00\x08\xf2\x3f\x7f\xfe\xbc\x6f\xd0\x10\x40\xaf\x04\x40\xae\ \xf6\xe2\xe5\xb9\xd9\xcd\x59\x0c\x93\x64\x11\xf9\x0b\x0e\x17\x02\ \x40\x82\xd4\xa5\xff\x78\x3e\x21\x08\x01\x20\xd9\xec\xf2\xf7\xad\ \xf8\x77\xb3\x8b\xac\xf2\x62\x9d\xef\x7d\x0d\x93\x39\x78\xe0\x45\ \xc8\x0b\x0c\x00\x81\xf2\xa7\x83\x7e\x4e\x6f\x07\x48\x6d\x11\x84\ \x5c\x2d\xca\x23\xbb\xc4\xa8\x3b\x4c\x2e\x7f\xe1\xea\xbd\x10\x00\ \x12\xa5\xe4\x1f\xc7\xa7\x83\x81\xa2\xfb\x05\xa6\x5f\x10\x41\x5a\ \xfb\x3e\x6f\xa5\x17\x6b\x61\xc7\xeb\x98\xcc\xc1\x03\x2f\x42\x9e\ \x38\x00\x84\x92\xff\x65\x51\xb1\x20\x35\x21\x00\x72\xb5\x06\x8f\ \xdc\x0e\x18\x65\xf2\xba\x38\xa9\xa2\x00\x90\x24\xb7\xe8\x4f\x1c\ \x00\x12\x15\x57\x09\x32\xf0\xc1\xa1\xdd\xfd\x48\xb1\x9f\xcb\x56\ \x7a\xb1\xaa\x0d\x00\x90\x03\x78\xe0\x85\x0e\x00\x72\xf2\x57\x5a\ \x2c\x08\x72\xb5\x64\xb9\xe0\x4b\x81\xdd\x03\x4d\x56\x14\x4f\x08\ \x00\xc9\x92\x3e\xe7\x9f\x14\x27\xda\x23\x68\x7a\xf9\xe7\x31\xec\ \xed\xa4\xcc\xef\x69\xab\xbd\x58\xd5\x04\x00\xc8\x01\x3c\xf0\x42\ \x07\x00\xa5\xf2\x47\xc5\x40\x3b\xf3\xda\x4f\x38\x18\xef\x97\x4d\ \x5a\x11\x37\x55\xd1\x1a\x3e\x51\x00\x88\xb7\x82\xfc\xe9\xa2\x3f\ \x07\xe3\xd9\x6a\xc5\x17\xab\xd2\x00\x00\x39\x80\x07\x5e\xe8\xf1\ \xe9\x67\x9f\xa9\x92\x3f\x2a\x06\xda\x97\x47\x02\xc0\x6b\xa3\x17\ \xd4\x24\x9b\xb0\x5c\x70\x8a\x9a\x72\xbf\x71\x56\x90\x3f\x5d\xb8\ \xe1\x74\x7b\xca\xad\xfa\x62\x55\x12\x00\x20\x07\xf0\xc0\x93\xe6\ \x7d\x48\x56\xf8\xab\x95\x3f\x2a\x06\xda\xb8\x5c\xf0\xba\xc6\x32\ \xcb\xf6\x0a\x08\x57\xfc\x46\xfc\x65\x9c\x2d\xec\x50\x2b\xbf\x58\ \xe5\x02\x00\xe4\x00\x1e\x78\xf2\xbc\xb3\xe4\xff\xc3\x91\x3f\x2a\ \x06\xda\x97\x97\xb5\x7c\xdd\xb3\x68\x11\x6c\xe0\x5f\x66\x1a\xd3\ \xfe\x6d\x72\xdf\xff\x13\x2b\xbf\x58\xa5\x02\x00\xe4\x00\x1e\x78\ \xca\x78\x42\x00\x08\x47\xfe\xa8\x18\x68\x53\x5e\x7d\xd3\x85\x17\ \x2b\x6b\xee\x85\xfc\x8d\x78\xe6\xdf\xd8\x75\x15\x91\xff\x7b\x56\ \x7f\xb1\x86\x0a\x00\x90\x03\x78\xe0\x29\xe7\xd1\x00\x10\x89\xfc\ \x51\x31\xd0\x9e\xbc\x5c\x86\xdd\x49\x2a\x05\x7e\x0e\xf2\x37\xd0\ \x2f\xc3\xb7\xf7\x5d\x62\x87\x17\x6b\xb0\x00\x00\x39\x80\x07\x9e\ \x3a\x1e\x5d\x03\x10\xa9\xfc\x51\x31\xd0\x9e\x3c\x87\x9b\xad\x82\ \xfc\x0d\xf4\xcb\x90\x62\x3f\x4f\xdb\xe5\xc5\x1a\x18\x00\x30\x99\ \x83\x07\x9e\x7a\x1e\xdd\x05\xa0\x85\xfc\x51\x31\xd0\xa6\x3c\xa6\ \xe3\x49\xc8\xdf\x00\xbf\x0c\xa9\xd6\x74\x97\xc3\xe5\xbd\x60\x97\ \x17\xab\x38\x00\x60\x32\x07\x0f\xbc\xf0\x78\x97\xc2\x38\xfb\x47\ \xc5\x40\xf0\x7a\x8a\x04\xb5\x9f\x27\xff\xfd\x2a\xe4\xaf\xe3\x2f\ \x43\x1b\x36\x08\xfb\xfd\xed\xf2\x62\x15\x02\x00\x26\x73\xf0\xc0\ \x0b\x9f\xa7\x36\x00\xa0\x62\x20\x78\xc1\xea\x03\xcc\xae\xab\x4b\ \x34\xab\xfc\x15\xef\xfe\x33\xea\x2f\x43\xfe\x08\x73\xec\xf6\x62\ \xa5\x01\x00\x93\x39\x78\xe0\x45\xc6\x53\x13\x00\x50\x31\x10\x3c\ \x89\x7e\x01\xb3\x4c\xd8\x2b\x40\x28\xfd\xaf\xb8\x48\x50\x8a\xd1\ \x7e\x19\x72\xe0\x7f\x63\xc7\x17\x2b\xed\x06\x88\xc9\x1c\x3c\xf0\ \x22\xe3\x29\x0d\x00\x6a\xe5\x8f\x8a\x81\xf6\xe3\x4d\x63\xd8\x5f\ \x9a\x4c\xfe\xf1\x8a\x02\x80\xa8\x9f\x70\xaa\x91\x7e\x99\xbc\xc6\ \xce\xeb\x1c\x6e\xcf\x61\x3b\xbe\x58\x0b\x5a\x58\x4c\xe6\xe0\x81\ \x17\x21\x4f\x49\x00\x08\x57\xfe\xa8\x18\x68\x37\x5e\xfb\x7e\x47\ \x5b\xdb\x35\x26\x91\xbf\xd0\xef\x47\x3a\x00\xf0\x0f\x4e\xe6\xcf\ \xfe\x53\x8d\xf2\xcb\x74\x97\xfa\xf5\xd6\xda\xf5\xc5\x5a\xe0\xf6\ \x60\x32\x07\x0f\xbc\x08\x79\x72\x01\x20\x52\xf9\xa3\x62\xa0\xcd\ \x78\xcd\x9e\x85\x26\x90\x7f\x22\xdf\xed\x37\x41\xb2\xf4\x3f\xff\ \xe0\x24\xfe\xec\x3f\x45\xd4\x5b\x58\xf7\x5f\x26\xbf\x85\x7d\xdc\ \xce\x2f\x56\x21\x00\x60\x32\x07\x0f\xbc\xf0\x79\x52\x01\x40\x2b\ \xf9\xa3\x62\xa0\xbd\x78\x13\x97\xad\x7e\xca\xc0\xbd\x02\x92\xf8\ \xe1\x0f\x00\x72\x49\x61\x90\x28\x00\xa4\x18\xe1\x97\x99\xd1\xb2\ \xe9\x56\x27\xd3\x7e\xc6\xce\x2f\x56\x1a\x00\x30\x99\x83\x07\x5e\ \x64\xbc\x50\x01\x40\x6b\xf9\xa3\x62\xa0\x8d\x78\xeb\x5d\xa7\x47\ \xbf\x5c\x70\x97\x01\xe5\x9f\xcc\xfb\x5c\x08\x00\xf1\x72\xf7\x08\ \x92\x44\x01\x60\xb0\x11\x7e\x19\xdf\xa5\x7f\xc6\xb3\xc1\xee\x2f\ \x56\xba\x06\x00\x93\x39\x78\xe0\x45\xc6\x0b\x16\x00\xa2\x25\x7f\ \x54\x0c\xb4\x0f\x2f\xbb\xbe\xb9\x3e\x2b\xeb\xa5\x38\x03\xc9\x5f\ \x70\xb8\x10\x00\x12\xa4\x2e\xfd\xc7\xf3\x09\x41\x08\x00\xc9\x46\ \x49\x32\x8e\xa6\xf6\x7f\xe0\xc5\xea\xf6\xed\x02\xc0\x64\x0e\x1e\ \x78\x91\xf1\x02\x03\x40\xb4\xe5\x8f\x8a\x81\xf6\xe1\x91\xfa\x00\ \x4f\x18\x44\xfe\xc2\xd5\x7b\x21\x00\x24\x4a\xc9\x3f\x8e\x4f\x07\ \x03\x45\xf7\x0b\x0c\x21\x7f\xe7\xda\xa6\x5b\x73\x37\x34\x9f\xc5\ \x8b\x8b\x95\x6d\x07\x0c\x39\x80\x07\x9e\xba\x00\x10\x2b\xf9\xa3\ \x62\xa0\x4d\x78\xcd\xde\x53\xd3\x98\xce\xcf\x1b\xa0\xc8\x5e\xaa\ \x28\x00\x24\xc9\x2d\xfa\x13\x07\x80\x44\xc5\x55\x82\xa2\xfc\xcb\ \xd0\xcb\x29\xf4\xb2\x0a\x5e\x5c\xac\x6c\x3b\x60\xc8\x01\x3c\xf0\ \xd4\x05\x80\x58\xcb\x1f\x15\x03\xed\xd2\x2b\xc0\xb3\x9c\xde\xb6\ \xd6\xb9\xc8\x9e\x10\x00\x92\x25\x7d\xce\x3f\x29\x4e\xb4\x47\xb0\ \xbf\x51\xee\x61\x4c\x5a\xb1\xfe\x9f\x78\x71\xb1\xb2\xed\x80\x8d\ \x3c\xf9\x6e\xd9\xb1\x83\x63\xda\xda\xfa\x0c\x57\x6b\x2b\xd7\xd0\ \xd4\xc4\x35\x34\x36\xf6\x0c\xf2\x39\xfd\x7a\xb0\xc7\xcb\x0d\xf0\ \xc0\x53\x3a\xce\xf3\x52\xd6\x43\xfe\xe2\xc7\xa3\x62\xa0\x75\x79\ \x4e\x37\xfb\x27\x9d\x2b\xec\xa6\x2a\x5a\xc3\x27\x0a\x00\xf1\x46\ \x92\xff\xa8\xe9\xb3\x6f\xcb\x6d\x68\x3a\x89\x17\x97\x57\x75\x00\ \x30\xd2\x99\x57\xb0\x00\x00\x79\x81\xa7\x27\xef\xdc\xf9\x73\xba\ \xca\x1f\x15\x03\xad\xcf\xcb\x63\xbc\x47\x69\x81\x20\x1d\xcb\xeb\ \xa7\xa8\x29\xf7\x1b\x67\x24\xf9\xd3\xe7\xe7\xac\x6b\x5c\x88\x17\ \x97\x57\x75\x00\x30\xda\x65\xd7\xc0\x00\x00\x79\x81\xa7\x37\xef\ \xf8\x89\xe3\xba\xcb\x1f\x15\x03\x6d\xd0\x2b\x80\x61\x0b\x0d\xdf\ \x2b\x20\x5c\xf1\x47\xf3\x97\x99\xb0\x68\xf9\x03\x78\x71\x79\x55\ \x07\x00\x23\xde\x73\x15\x07\x00\xc8\x0b\x3c\x23\xf0\x8e\x1e\x3b\ \x66\x08\xf9\xa3\x62\xa0\x0d\x7a\x05\xb8\xd8\xfb\xd0\x22\x58\x05\ \xef\xf1\x67\x86\xde\x38\xb5\xae\xe9\x5d\xbc\xb8\xd4\x05\x00\xa3\ \x2e\xb8\x12\x02\x00\xe4\x05\x9e\x51\x78\x42\x00\x30\x82\xfc\x51\ \x31\xd0\xda\x3c\x52\xba\x7e\x7b\x61\x57\x57\x02\xe4\xaf\x90\x37\ \x79\x4d\xbd\x03\x2f\x2e\x75\x01\xc0\xc8\xab\xb7\x69\x00\x80\xbc\ \xc0\x33\x12\x8f\x06\x00\x23\xc9\x1f\x15\x03\xad\xcd\x73\x34\x7b\ \x5e\x84\xfc\x15\xf0\x32\x0b\x4b\xbe\x93\x5b\xdf\x7c\x11\x2f\x2e\ \xe5\x01\xc0\xe8\x5b\xb7\xde\xd8\xbe\x1d\xf2\x02\xcf\x50\x3c\xba\ \x06\xc0\x68\xf2\x47\xc5\x40\x4b\xf3\x3e\xce\x98\x57\xf8\x4d\xc8\ \x5f\x86\x97\x53\xd7\xd8\x80\x17\x97\xf2\x00\x60\x86\x7d\xdb\x1d\ \x5d\x5d\x90\x17\x78\x86\xe2\xd1\x5d\x00\x46\x94\x3f\x2a\x06\x5a\ \x97\x97\xb3\x6e\xe3\x1a\xc8\x5f\x82\x37\x71\xc9\x8a\x47\xf1\xe2\ \x52\x1e\x00\xcc\x52\xb4\xa5\x63\xf3\x66\xc8\x0b\x3c\x43\xf1\x68\ \x1d\x00\xa3\xca\x1f\x15\x03\xad\xcb\x7b\x69\xe9\xaa\x21\x90\x7f\ \x10\xde\xa3\x69\xc3\x6f\xca\x69\x60\xde\xc7\x8b\x4b\x59\x00\x30\ \x53\xc5\x36\x7f\x00\x80\xbc\xc0\x33\x08\x4f\x6d\x00\x40\xc5\x40\ \xf0\x34\xe2\xbd\x9d\xb5\x63\xc7\x40\x23\xc8\x5f\xf1\xee\xbf\x58\ \xac\x5e\xcc\x5e\xdb\x30\x05\x2f\x2e\x65\x01\xc0\x6c\xe5\x5a\x7d\ \x01\x00\xf2\x02\xcf\x40\x3c\x35\x01\x40\xef\x8a\x81\x72\x21\x00\ \x72\x35\x1d\x6f\x8c\xce\x27\xdf\x42\xe9\x7f\xc5\x45\x82\x52\xa2\ \x29\xff\xcc\xb9\x45\x77\x3a\x5d\xed\x1f\xe1\xc5\x25\x3f\x68\x37\ \x40\xb3\xd5\x6a\xa7\x6b\x00\x20\x2f\xf0\x8c\xc4\x53\x1a\x00\xf4\ \x96\x3f\x2a\x06\x5a\x92\x77\x4e\x69\xb3\xa0\x28\xc9\x3f\x5e\x51\ \x00\x10\xf5\x13\x4e\x8d\xe6\xea\x45\xb2\x45\xa2\x0a\x2f\x2e\x65\ \xbc\x82\x16\xd6\x74\x8d\x5a\xe8\x2e\x00\xc8\x0b\x3c\x23\xf1\x94\ \x04\x00\xa3\xc8\x1f\x15\x03\xad\xc8\x63\x8b\x74\x92\xbf\xd0\xef\ \x47\x3a\x00\xf0\x0f\x4e\xe6\xcf\xfe\x53\xa3\x25\xff\xbc\x26\xf7\ \xf7\xf1\x62\x50\xce\x2b\x70\x7b\x4c\xd7\xa5\x2d\x54\x33\x20\xc8\ \x0b\x3c\xbd\x78\x72\x01\xc0\x68\xf2\x47\xc5\x40\x8b\xf1\x5c\xed\ \x97\x1d\x6e\xf6\x9b\x31\x96\x7f\x22\xdf\xed\x37\x41\xb2\xf4\x3f\ \xff\xe0\x24\xfe\xec\x3f\x45\xd4\x5b\x58\x53\xf9\xd3\x56\xbf\xf9\ \x6e\x0f\x83\x17\x97\x72\x9e\x10\x00\xcc\xd4\xa2\x55\x6d\x00\x80\ \xbc\xc0\x8b\x36\x4f\x2a\x00\x18\x55\xfe\xa8\x18\x68\x2d\x1e\xf9\ \xf7\x0d\x31\x5c\x73\x97\xc4\x0f\x7f\x00\x90\x4b\x0a\x83\x44\x01\ \x20\x25\x1a\x5b\x17\xc8\x41\xf8\x3d\x5e\x0c\xea\x78\x34\x00\x98\ \xad\x3f\xbb\x9a\x00\x00\x79\x81\x17\x0b\x5e\xa8\x00\x60\x74\xf9\ \xa3\x62\xa0\xb5\x78\xd3\x18\xf6\xd7\x31\x90\x7f\x32\xef\x73\x21\ \x00\xc4\xcb\xdd\x23\x48\x12\x05\x80\xc1\xd1\x90\x3f\xad\x8d\xec\ \x70\x7b\x77\xe2\xc5\xa0\x8e\x47\xd7\x00\x98\x49\xfe\x74\xbc\xb9\ \x73\x27\xe7\xdd\xb4\x49\x76\xb0\x9d\x9d\x9c\x9b\x4e\xd0\x74\xf2\ \xe6\x07\xfd\x9c\x7e\x5d\xc9\xf3\xc1\x03\x4f\x29\xef\xc2\x85\x0b\ \xa6\x95\x3f\x2a\x06\x5a\x89\xc7\xee\xc8\x62\x98\xf8\x28\xca\x5f\ \x70\xb8\x10\x00\x12\xa4\x2e\xfd\xc7\xf3\x09\x41\x08\x00\xc9\xd1\ \x2a\x5a\xe0\x6c\x61\x9f\xc5\x8b\x41\x3d\x8f\xee\x02\x30\x93\xfc\ \xc1\x03\xcf\x88\xbc\x4b\x01\x12\x36\x9b\xfc\x51\x31\xd0\x4a\x3c\ \xcf\x3f\xa2\x24\x7f\xe1\xea\xbd\x10\x00\x12\xa5\xe4\x1f\xc7\xa7\ \x83\x81\xa2\xfb\x05\x51\x91\xff\x4c\x96\x1d\xe4\x60\xbc\x07\xf1\ \x62\x50\xcf\x93\x6b\x07\x0c\x39\x80\x07\x9e\xba\x00\x60\x56\xf9\ \xa3\x62\xa0\x45\x1a\x05\x35\xb5\xef\xfb\x4b\x46\xda\x0d\x51\xd8\ \x6a\x9f\x2a\x0a\x00\x49\x72\x8b\xfe\xc4\x01\x20\x51\x71\x95\xa0\ \x30\x16\x30\xe4\x33\xec\xf3\x78\x31\x84\xc7\x53\x1b\x00\x20\x07\ \xf0\xc0\x0b\x1d\x00\xcc\x2e\x7f\x54\x0c\xb4\x06\x2f\x6b\xe5\xfa\ \x17\xa3\xb0\xd5\x5e\x08\x00\xc9\x92\x3e\xe7\x9f\x14\x27\xda\x23\ \x18\x35\xf9\x3b\x1b\xbb\xae\x22\x67\xff\x27\xf1\x62\x08\x8f\xa7\ \x26\x00\x40\x0e\xe0\x81\x17\x3a\x00\x58\x45\xfe\xa8\x18\x68\x7e\ \x5e\x76\x43\xd3\x89\xa1\x13\x27\xdc\xa2\xf1\x6e\xbb\x54\x45\x6b\ \xf8\x44\x01\x20\x3e\x9a\xf2\xf7\x05\x00\x37\x9b\x83\x17\x43\xf8\ \x3c\xa5\x01\x00\x72\x00\x0f\xbc\xd0\xe3\xd3\xcf\x3e\xb3\x94\xfc\ \x51\x31\xd0\xfc\x3c\x52\x0e\x3f\x57\xe3\xdb\xee\x29\x6a\xca\xfd\ \xc6\x45\x5b\xfe\xb9\xad\xad\x37\x38\xdc\x9e\xf3\x78\x31\x84\xcf\ \x53\x12\x00\x20\x07\xf0\xc0\x93\xe6\x7d\x48\x56\xd0\x5b\x4d\xfe\ \xa8\x18\x68\x6e\x5e\x6e\x13\xfb\x61\x5e\x63\xe7\x75\x31\x6f\x14\ \x14\xae\xf8\xd5\x7e\xf3\x7c\xc6\x9b\x8f\x17\x43\x64\x3c\xb9\x00\ \x00\x39\x80\x07\x9e\x3c\xef\x2c\xf9\x7f\x2b\xca\x1f\x15\x03\x4d\ \xce\x63\x3c\x53\x2d\xd9\x22\x78\x06\xd3\x75\xbd\xdc\xd9\x3f\x5e\ \x0c\xf2\x3c\xa9\x00\x00\x39\x80\x07\x9e\x32\x9e\x10\x00\xac\x28\ \x7f\x54\x0c\x34\x2f\x2f\xaf\xd9\xfb\x21\xd9\x25\x77\xad\xa5\xe4\ \xef\x3b\xfb\x77\xb3\x0e\xbc\x18\x22\xe7\x85\x0a\x00\x90\x03\x78\ \xe0\x29\xe7\xd1\x00\x60\x65\xf9\xa3\x62\xa0\xa9\x1b\x05\x65\x5b\ \x4a\xfe\x72\x67\xff\x78\x31\x28\xe7\x05\x0b\x00\x90\x03\x78\xe0\ \xa9\xe3\xd1\x35\x00\x56\x97\x3f\x2a\x06\x9a\x93\xe7\x64\xda\xcf\ \x3a\xda\xda\xae\xb1\x84\xfc\xbb\xcf\xfe\xbd\x79\x78\x31\x68\xc3\ \x0b\x0c\x00\x98\xcc\xc1\x03\x4f\x3d\x8f\xee\x02\xb0\x83\xfc\x51\ \x31\xd0\xac\x8d\x82\xbc\x53\x2c\x21\xff\x97\x19\xe6\x6a\x87\xcb\ \xfb\x21\x5e\x0c\xda\xf0\xc4\x01\x00\x93\x39\x78\xe0\x85\xc7\x0b\ \x27\x00\xa0\x62\x20\xe6\xe7\x58\xf1\x48\x9f\x9c\xd3\xf9\xed\xed\ \x9f\x33\xb5\xfc\x7d\xfb\xfe\x19\xef\x0b\x78\x31\x68\xc7\x13\x02\ \x00\x26\x73\xf0\xc0\x0b\x9f\x77\xe1\x93\x4f\x6c\x25\x7f\x54\x0c\ \x34\x25\x6f\x4c\x34\xe5\xaf\x78\xf7\x5f\xb8\xdf\x9c\x74\x39\x4a\ \x22\x8d\x0e\x8e\xe0\xc5\xa0\x1d\x8f\x06\x00\x4c\xe6\xe0\x81\x17\ \x19\xef\x0c\x11\xa4\xdd\xe4\x8f\x8a\x81\xe6\xe2\xe5\x91\x7e\x39\ \xb3\xeb\xea\x12\xa3\xd0\x28\x48\x28\xfd\xaf\xb8\x48\x50\x4a\x38\ \xdf\x3c\x58\xc7\x3f\xbc\x18\x22\xe3\xd1\x6e\x80\x98\xcc\xc1\x03\ \x2f\x72\xde\xc5\x4f\x3f\xb5\x9d\xfc\x51\x31\xd0\x64\x8d\x82\x9a\ \x5b\x87\x46\x41\xfe\xf1\x8a\x02\x80\xa8\x9f\x70\xaa\xda\x6f\x5e\ \x5b\x5b\x1b\x47\xee\x63\xbc\x87\x17\x83\xb6\xbc\x82\x16\x16\x93\ \x39\x78\xe0\x69\xc0\x3b\x2d\xb3\x13\xc0\xaa\xf2\x47\xc5\x40\xf3\ \xf0\xb2\x1b\x98\x77\x7e\xfb\xe7\x47\xae\xd1\x50\xfe\x42\xbf\x1f\ \xe9\x00\xc0\x3f\x38\x99\x3f\xfb\x4f\x55\xfb\xcd\xa7\xb9\xd9\x47\ \xf0\x62\xd0\x9e\x57\xe0\xf6\x60\x32\x07\x0f\x3c\x8d\x78\xf4\x56\ \xc0\xa5\x20\xc2\xb4\xba\xfc\x51\x31\xd0\x3c\xbc\x49\x4b\x57\x3d\ \xae\x91\xfc\x13\xf9\x6e\xbf\x09\x92\xa5\xff\xf9\x07\x27\xf1\x67\ \xff\x29\xa2\xde\xc2\x8a\xbf\x39\x29\x66\xe0\xc5\x1f\x4f\x7b\x9e\ \x10\x00\x30\x99\x83\x07\x9e\x36\x3c\x7a\x25\xe0\xe3\x8b\x17\xb9\ \x2b\x36\x93\x3f\x2a\x06\x9a\x83\x97\xbd\xbe\x89\xd5\xa0\x4b\x60\ \x12\x3f\xfc\x01\x40\x2e\x29\x0c\x12\x05\x80\x14\x35\xdf\x7c\xba\ \xcb\x7b\x2f\xfe\x78\xd1\xe1\xd1\x00\x80\xc9\x1c\x3c\xf0\xb4\xe7\ \xd1\x20\x70\x8e\x88\xf4\xd4\xe9\xd3\xdc\xa9\x33\x67\xfc\xe3\xf4\ \xd9\xb3\xbe\x80\x70\x91\x6c\x1d\x54\x3b\xe8\xf3\xe8\xf3\x8d\xce\ \x3b\x71\xea\x14\x57\xe4\x6a\xc3\xfc\x6c\x50\xde\xd4\x0d\xad\x3f\ \x88\x40\xfe\xc9\xbc\xcf\x85\x00\x10\x2f\x77\x8f\x20\x49\x14\x00\ \x06\xab\x4d\x1e\x4e\xb7\x77\x21\xfe\x78\xd1\xe1\xd1\x35\x00\x98\ \xcc\xc1\x03\x2f\x7a\xbc\xed\x6f\xbf\xc5\x35\x34\x36\x76\x8f\xa6\ \x26\xce\xd5\xda\xca\x31\x6d\x6d\xaa\x07\x7d\x1e\x7d\xbe\x9f\x65\ \x70\xde\xac\xc5\x4b\xb9\xac\x55\x75\x98\x9f\x0d\xc8\x73\xb8\xd9\ \xaa\x30\xe5\x2f\x38\x5c\x08\x00\x09\x52\x97\xfe\xe3\xf9\x84\x20\ \x04\x80\x64\xb5\xf2\x9f\xd9\xc4\x7e\x91\xfc\x32\x9f\xe1\x8f\x17\ \x1d\x1e\xdd\x05\x80\xc9\x1c\x3c\xf0\xa2\xcb\xdb\xfa\xe6\x9b\xb6\ \x92\x3f\x1d\x2f\x2f\x5a\xca\xa5\x17\x57\x72\xd9\x75\xcd\x98\x9f\ \x0d\xc6\xcb\x6b\x6e\xff\x74\x6a\xcb\xe6\x9b\x55\xca\x5f\xb8\x7a\ \x2f\x04\x80\x44\x29\xf9\xc7\xf1\xe9\x60\xa0\xe8\x7e\x81\xea\x7b\ \x0e\xa4\xf0\x4f\x2e\xfe\x78\xd1\xe3\xc9\xb5\x03\xc6\x64\x0e\x1e\ \x78\xda\xf0\xde\x7e\xe7\x1d\xdb\xc8\x9f\x7e\xfe\xca\xb2\x55\xdc\ \xa8\xa2\x0a\x2e\xbd\xa4\x4a\x55\x08\xc0\xfc\x1c\x2b\x9e\x7c\x93\ \xa0\x80\xba\x3d\xa9\xa2\x00\x90\x24\xb7\xe8\x4f\x1c\x00\x12\x15\ \x57\x09\x0a\x28\xfc\x43\x1a\x19\x9c\xc0\x1f\x2f\x7a\x3c\xb5\x01\ \x00\x93\x39\x78\xe0\x85\xcf\x7b\x6b\xd7\x2e\x5b\xc8\x9f\x7e\x7d\ \xce\xf2\xd5\xbe\x00\xa0\x26\x04\x60\x7e\x8e\x1d\x2f\xcf\xed\x39\ \x4e\x0b\x03\xa9\x28\xda\x27\x04\x80\x64\x49\x9f\xf3\x4f\x8a\x13\ \xed\x11\xec\x1f\xce\x82\x03\x47\x93\xe7\xaf\xf8\xe3\x45\x97\xa7\ \x26\x00\x60\x32\x07\x0f\xbc\xc8\x79\xdb\xdf\x7a\xcb\xf2\xf2\xa7\ \xff\x2e\x0e\x00\x4a\x42\x00\xe6\x67\x1d\x78\x8c\xe7\x2f\x2a\x2a\ \xf6\xa6\x2a\x5a\xc3\x27\x0a\x00\xf1\xe1\xca\x9f\x32\x72\xea\x5c\ \x9d\xf8\xe3\x45\x97\xa7\x34\x00\x60\x32\x07\x0f\x3c\xed\x78\x74\ \x4d\x80\x95\xe5\x1f\x2c\x00\x48\x85\x00\xcc\xcf\xfa\xf0\x1c\x2e\ \xb6\x55\x45\xb9\xfe\x14\x35\xe5\x7e\xe3\x22\x91\xff\xf8\xca\xc5\ \x3f\xc1\x1f\x2f\xfa\x3c\x25\x01\x00\x93\x39\x78\xe0\x69\xcb\x3b\ \x49\xb6\xca\xbd\xb1\x7d\xbb\x65\xe5\x1f\x2a\x00\x04\x0b\x01\x98\ \x9f\xf5\xe5\x39\x9b\x3b\xef\xd6\xb4\x4b\x60\xb8\xe2\x17\x7f\xf3\ \xec\xb5\x1b\xcb\xf0\xc7\x8b\x3e\x4f\x2e\x00\x60\x32\x07\x0f\xbc\ \xe8\xf0\x68\x08\x78\x6d\xeb\x56\x4b\xca\x5f\x2a\x00\x88\x43\x00\ \xe6\x67\x43\xf0\xe6\x18\xaa\x45\xf0\xb0\x29\x59\xb7\xe4\x34\x34\ \x7f\x84\x3f\x5e\xf4\x79\x52\x01\x00\x93\x39\x78\xe0\x45\x97\x77\ \x82\x14\xde\xd9\xfc\xc6\x1b\x96\x93\xbf\x5c\x00\xf0\x85\x00\xb2\ \x45\x90\xd6\x09\xc0\xfc\xac\x2f\x8f\x2c\xb4\x3f\x3b\x7d\xc3\x96\ \xc1\x86\x90\x3f\xfd\xa6\x59\xab\xd6\x65\xe0\x8f\x17\x1b\x5e\xa8\ \x00\x80\xc9\x1c\x3c\xf0\x62\xc3\x3b\x4e\x2a\x05\x76\x76\x75\x59\ \x4a\xfe\xb2\x01\xa0\xb0\x9c\x1b\x39\xb7\x98\x1b\xf9\x6a\x09\x37\ \x69\x65\x1d\xe6\x67\xbd\xbb\x04\x36\xb5\xff\xc3\x10\xf2\xa7\x23\ \xa7\xbe\x71\x33\xfe\x78\xb1\xe1\x05\x0b\x00\x98\xcc\xc1\x03\x2f\ \xb6\xbc\x7d\x87\x0e\x71\x6e\x22\x4d\x2b\x55\x0c\x0c\x19\x00\x78\ \xf9\x8f\x98\x5b\xe4\x1b\x34\x04\xa0\x62\xa0\xce\x5d\x02\xeb\x9a\ \x3d\x86\x90\xff\xf8\xf2\xaa\x7b\xf1\xc7\x8b\x1d\x2f\x30\x00\x60\ \x32\x07\x0f\x3c\x7d\x78\x7b\x0e\x1c\xe0\x18\x5e\xb6\x56\xa8\x18\ \x18\x34\x00\x04\xc8\xdf\x17\x00\xc8\xe7\xa8\x18\xa8\x3f\x6f\x6c\ \x51\xd9\x77\x75\x95\xbf\xef\xec\x7f\xdd\x86\xd9\xf8\xe3\xc5\x8e\ \x27\x0e\x00\x98\xcc\xc1\x03\x4f\x5f\x1e\x0d\x01\xed\x5e\xaf\x25\ \x2a\x06\xf6\x09\x00\x21\xe4\x4f\xbf\x8e\x8a\x81\xfa\xf3\xa6\xac\ \x69\x98\xa1\xab\xfc\x1f\x7b\xf6\xe9\x6b\xc9\x82\x84\x23\xf8\xe3\ \xc5\x8e\x27\x04\x00\x4c\xbe\xe0\x81\x67\x0c\xde\xe1\xe3\xc7\x55\ \x87\x00\x23\x2e\x20\xec\x15\x00\x64\xe4\x8f\x8a\x81\xfa\xf3\xa6\ \x6e\x60\x0e\x66\x65\x4d\x4c\x88\xc0\xe9\xfd\xc3\x96\x3f\xfd\xdc\ \xd1\xdc\x36\x04\x7f\xbc\xd8\xf2\x68\x00\xc0\xe4\x0b\x1e\x78\xc6\ \xe2\x1d\x3e\x76\x8c\x6b\x63\x59\x53\x57\x0c\xf4\x07\x00\x85\xf2\ \x47\xc5\x40\xfd\x79\xd3\x18\xf6\xd7\xe1\x88\x9f\xaf\xfb\xa3\xb8\ \x48\x50\x4a\xb0\x05\x07\xa4\x39\xc1\x52\xfc\xf1\x62\xcb\xa3\xdd\ \x00\x31\xf9\x82\x07\x9e\xf1\x78\x07\x8f\x1e\xe5\x5a\x3d\x1e\xd3\ \x56\x0c\xf4\x05\x00\x95\xf2\x47\xc5\x40\x9d\x79\x8c\x77\x41\x18\ \xf2\x8f\x57\x14\x00\x44\xfd\x84\x03\xeb\x0b\x0f\x98\xdd\xd1\x91\ \xea\x70\x7b\x3f\xc1\x1f\x2f\xb6\xbc\x82\x16\x16\x93\x2f\x78\xe0\ \x19\x94\x77\xe0\xc8\x11\xae\xa5\xbd\xdd\x94\x15\x03\x69\x37\xc0\ \x70\xe4\x8f\x8a\x81\x3a\xf2\x98\xf6\x8f\x68\x4d\x00\x15\xf2\x17\ \xfa\xfd\x48\x07\x00\xfe\xc1\xc9\xfc\xd9\x7f\x6a\xe0\x6a\x43\x67\ \x0b\xfb\x37\xfc\xf1\x62\xcf\x2b\x70\x7b\x30\xf9\x82\x07\x9e\x81\ \x79\xc2\x16\x41\xb3\x55\x0c\x7c\x79\xd1\xd2\xb0\xe5\x8f\x8a\x81\ \x3a\xf2\x24\x1a\x04\x05\xf8\x3c\x91\xef\xf6\x9b\x20\x59\xfa\x9f\ \x7f\x70\x12\x7f\xf6\x9f\x22\xea\x2d\xec\x4f\x0c\xe4\x07\xd9\x80\ \x3f\x5e\xec\x79\x42\x00\xc0\xe4\x0b\x1e\x78\xc6\xe5\xd1\xdd\x01\ \x6e\x93\x95\x0b\x9e\xb5\xa8\x36\x22\xf9\xa3\x62\xa0\x3e\x3c\x72\ \x25\x7e\xad\x82\x2b\xf9\x49\xfc\xf0\x07\x00\xb9\xa4\x30\x48\x14\ \x00\x7a\x75\x15\xca\x6d\xf2\xde\x94\xef\xf2\x5c\xc6\x1f\x2f\xf6\ \x3c\x1a\x00\x30\xf9\x82\x07\x9e\xf1\x79\xef\xef\xdb\x67\xaa\x72\ \xc1\x42\x00\x88\x44\xfe\xa8\x18\xa8\x0b\xef\xb3\xbc\xc6\xce\xeb\ \x24\xe4\x9f\xcc\xfb\x5c\x08\x00\xf1\x72\xf7\x08\x92\x44\x01\xa0\ \x4f\x3f\x61\xb2\xf2\x30\x0d\x7f\x3c\x7d\x78\x74\x0d\x00\x26\x5f\ \xf0\xc0\x33\x07\x6f\xc7\xce\xb7\x4d\x53\x2e\x98\x06\x00\x2d\xe4\ \x8f\x8a\x81\x3a\xf0\x18\x76\x98\xc4\x1a\xbe\xc1\xa2\x00\x90\x20\ \x75\xe9\x3f\x9e\x4f\x08\x42\x00\x48\x0e\xb6\x50\xc0\xe9\xf6\xb6\ \xe3\x8f\xa7\x0f\x8f\xee\x02\xc0\xe4\x0b\x1e\x78\xe6\xe1\x6d\xd9\ \xb1\xc3\x14\xe5\x82\xe9\x1a\x00\xad\xe4\x8f\x8a\x81\xb1\xe5\x39\ \x5c\xac\x2b\xc4\xee\xbd\x14\x51\x00\x48\x94\x92\x7f\x1c\x9f\x0e\ \x06\x8a\xee\x17\xf4\x91\xff\xd4\x96\xcd\x37\x3b\x5c\x9e\x2b\xf8\ \xe3\xe9\xc3\x93\x6b\x07\x8c\xc9\x17\x3c\xf0\x8c\xc7\xdb\xb2\x7d\ \xbb\xe1\xcb\x05\xd3\x5d\x00\x5a\xca\x5f\x5c\x31\x70\xca\xfa\x26\ \xcc\xf7\xd1\xe4\xb9\xda\x2f\xe7\xb6\xb6\xde\x10\x50\xb7\x27\x55\ \x14\x00\x92\xe4\x16\xfd\x89\x03\x40\xc8\xa4\x40\xbe\xd9\x70\xfc\ \xf1\xf4\xe3\xa9\x0d\x00\x98\x7c\xc1\x03\xcf\x18\xbc\x37\x77\xee\ \x34\x74\xb9\x60\xb9\x76\xc0\xe1\xc8\x5f\xbc\x3b\x40\x49\x08\xc0\ \x7c\x1f\x01\x8f\x61\x9f\x0e\x28\xda\x27\x04\x80\x64\xc9\xaa\x7f\ \xfc\x93\xe2\x44\x7b\x04\x43\x3e\x98\x7c\x93\x66\x1c\x6c\xfd\x78\ \x6a\x02\x80\x51\x26\x4b\x7a\x09\xd4\x8c\xfb\xa2\xc1\x03\x4f\x6b\ \x5e\xed\xb2\x65\x5c\x51\x69\xa9\x7f\x18\xe9\xe7\x53\x1d\x00\xc2\ \xa8\x18\x28\x15\x02\x30\xdf\x47\xd8\x22\x98\xf1\x34\x04\xa9\xd9\ \x33\x58\x69\xc1\x9f\x38\x7e\x0d\x40\x48\xf9\xcf\x60\xba\xae\x27\ \x5b\x0e\x2e\xe1\x60\xeb\xc7\x53\x1a\x00\x8c\x74\xa6\x14\x2c\x00\ \x40\x0e\xe0\xd9\x95\xb7\x78\xe9\x52\xd9\x00\xa0\xc7\xcf\xa7\x2a\ \x00\x44\x50\x31\x30\x58\x08\xc0\x7c\xaf\x09\xef\xb3\x67\x72\x73\ \xbe\x24\x0a\x00\x29\x6a\xca\xfd\xc6\xc9\x35\x07\x20\xc5\x7f\x86\ \xe2\x60\xeb\xcb\x53\x12\x00\x8c\x76\x99\x34\x30\x00\x40\x0e\xe0\ \xd9\x9a\x47\xbe\xbe\x70\xc9\x92\x90\x01\x40\xaf\x9f\x4f\x71\x00\ \x08\x53\xfe\xa1\x42\x00\xe6\x7b\xed\x78\x93\x57\xac\x19\xa6\xba\ \x45\xb0\xd2\xae\x40\xf9\x2e\xef\x1a\x1c\x6c\x7d\x79\x72\x01\xc0\ \x88\xf7\x48\xc5\x01\x00\x72\x00\x0f\xbc\xee\x10\x50\xb3\x68\x91\ \xa1\x7e\x3e\x45\x01\x20\x42\xf9\x07\x86\x00\xcc\xf7\xda\xf2\xb2\ \xd7\x6f\x5c\x1d\x95\x16\xc1\x33\x59\x76\x90\xc3\xe5\xbd\x80\x83\ \xad\x2f\x4f\x2a\x00\x18\x75\x81\x94\x10\x00\x20\x07\xf0\xc0\x13\ \x3d\xbf\xa5\x85\xdb\xfc\xc6\x1b\x86\xf9\xf9\x64\x03\x80\x46\xf2\ \x17\x57\x0c\x9c\xb4\x72\x3d\xe6\x7b\x4d\x79\xcc\xf9\xf4\x15\xcb\ \x93\xfa\x69\xfd\x41\xbe\xe1\x6f\x71\xb0\xf5\xe7\x85\x0a\x00\x46\ \x5e\x1d\x4d\x03\x00\xe4\x00\x1e\x78\x7d\xc7\xf1\xd3\xa7\xb9\x4d\ \xaf\xbd\x66\x88\x9f\x4f\x32\x00\x68\x2c\x7f\x71\xc5\xc0\x89\x2b\ \xd6\x63\xbe\xd7\x90\x47\xea\xf4\xfc\x5f\x14\x02\x80\x67\x1e\x0e\ \xb6\xfe\xbc\x60\x01\xc0\xe8\x5b\xa3\xde\x20\x7b\xa0\x21\x07\xf0\ \xc0\xeb\x3b\xe8\xfb\xe3\xd8\xa9\x53\xbe\x0e\x82\x7a\xff\x7c\x21\ \x03\x40\x94\xe4\x2f\xae\x18\x48\xaf\x04\x60\xbe\xd7\xaa\x45\x30\ \x3b\x5b\x53\xf9\x73\x1c\xd7\xdf\xe9\xf2\xec\xc3\xc1\xd6\x9f\x17\ \x18\x00\xcc\xb0\x2f\xba\xa3\xab\x0b\x72\x00\x0f\xbc\x20\x43\x78\ \xbf\x7d\xb0\x7f\xbf\xef\x96\x80\x9e\x3f\x5f\xd0\x00\x10\x65\xf9\ \x8b\x2b\x06\xaa\x29\x16\x04\x7f\x84\xe6\x39\x9a\x3d\xef\x53\x67\ \x6b\x16\x00\x1c\xcd\x1d\xdf\xc2\xc1\x36\x06\x4f\x1c\x00\xcc\x52\ \x14\xa5\x63\xf3\x66\xc8\x01\x3c\xf0\x82\xf0\xc4\xef\x37\x5f\xf3\ \x20\x12\x02\xf4\xfa\xf9\xfa\x04\x80\x18\xc9\x1f\x15\x03\xb5\xe7\ \x4d\x6f\xed\xf8\xba\x96\xf7\xff\xc7\xe3\x60\x1b\x83\x27\x04\x00\ \x33\x55\x44\xf3\x07\x00\xc8\x01\x3c\xf0\x7a\xf1\x02\xdf\x6f\x87\ \x8e\x1d\xe3\xda\xbd\x5e\x5d\x7e\xbe\x5e\x01\x20\xc6\xf2\x47\xc5\ \x40\x8d\x79\x0c\x9b\xa9\xd5\xee\xbf\x7e\x79\xa4\xfa\x1f\x0e\xb6\ \x31\x78\x34\x00\x98\xad\x1c\xaa\x2f\x00\x40\x0e\xe0\x81\xd7\x87\ \x17\xec\xfd\x76\x98\x84\x80\x36\x96\x8d\xf9\xcf\xe7\x0f\x00\x3a\ \xc9\x1f\x15\x03\xb5\xe3\x91\x85\x80\xf5\x52\xe2\xe7\xeb\xfe\xc8\ \x6f\x15\x1c\xd7\x50\x9f\x32\x75\xa3\xfb\x13\x1c\x6c\x63\xf0\x68\ \x37\x40\xb3\xd5\x42\xa7\x6b\x00\x20\x07\xf0\xc0\xeb\xcb\x0b\xf5\ \x7e\x3b\x78\xf4\x28\xd7\xea\xf1\xc4\xf4\xe7\xf3\x05\x00\x9d\xe5\ \x8f\x8a\x81\xda\xf0\xf2\x9a\xbd\x17\x66\xd7\xd5\x25\x86\x90\x7f\ \xbc\xa2\x00\x40\x1f\x90\xb5\x7c\xed\x90\xde\x3f\x00\x0e\xb6\x9e\ \xbc\x82\x16\xd6\x74\x8d\x50\xe8\x2e\x00\xc8\x01\x3c\xf0\xfa\xf2\ \xa4\xde\x6f\x07\x8e\x1c\xf1\xed\x0e\x88\xd5\xcf\x47\xbb\x01\x1a\ \x41\xfe\xa8\x18\xa8\x15\xaf\xe3\xe7\x41\xe4\x2f\xf4\xfb\x91\x0e\ \x00\xfc\x83\x93\xb3\xd7\x37\xbe\xd2\xf3\x43\xe0\x60\xeb\xcd\x2b\ \x70\x7b\x4c\xd7\x05\x2d\x54\x33\x20\xc8\x01\x3c\xbb\xf3\xe4\xde\ \x6f\xfb\x0e\x1d\xe2\xdc\x31\xfa\xf9\x5e\x5e\xb4\xd4\x30\xf2\x47\ \xc5\x40\x4d\x78\x79\x01\x3e\x4f\xe4\xbb\xfd\x26\x48\x96\xfe\xe7\ \x1f\x4c\xfb\x07\x0f\xce\x69\x68\xde\xde\xfd\x83\xe0\x60\x1b\x81\ \x27\x04\x00\x33\xb5\x54\x55\x1b\x00\x20\x07\xf0\xec\xc2\x53\xf2\ \xfe\xda\x73\xe0\x40\xaf\x10\x10\xad\x9f\x6f\xd6\xa2\x5a\x43\xc9\ \x1f\x15\x03\x23\xe5\x79\xba\x44\xbd\x7e\x92\xf8\xe1\x0f\x00\x52\ \xf2\xa7\x49\x61\xd0\xe8\x39\x45\xff\x91\xb7\xb1\x85\xcb\xdb\x88\ \x83\x6d\x14\x1e\x0d\x00\x66\xeb\xa7\xae\x26\x00\x40\x0e\xe0\xd9\ \x89\xa7\xf4\x7d\x46\xb7\x08\x46\xfb\xe7\x13\x02\x80\xa2\x7b\xf4\ \xe4\xdf\x5f\x7c\x65\x0e\x37\x69\xe6\x4c\x6e\xdc\x9c\x57\x51\x31\ \xd0\x80\xbc\xbc\xe6\xf6\x2b\xce\xb5\x6b\xaf\xa5\x57\xf2\xa9\xcf\ \x45\x01\x20\x5e\x4a\xfe\x09\xfc\x03\x07\x65\xaf\xae\xfb\x73\x5e\ \x63\x0b\x0e\xb6\x81\x78\x74\x0d\x80\x99\xe4\x4f\xc7\xae\xdd\xbb\ \xb9\xd7\xb7\x6d\x93\x1d\xaf\x6d\xdd\xca\x79\x37\x6d\xe2\xd8\xce\ \x4e\xff\xa0\x9f\xd3\xaf\x2b\x79\x3e\x78\xe0\x99\x8d\xa7\xe6\xfd\ \xf6\xce\xfb\xef\x47\x35\x9c\xd0\x00\x20\xb9\x3a\x9f\x7c\xfd\xe5\ \xc9\x13\xb8\xd6\x47\x7f\xc6\xed\xfb\xe9\x17\xb9\xe3\x3f\xbc\xc6\ \x3f\x76\xff\xe2\x36\xae\xee\x6f\x0f\x70\x59\x79\xb9\xa8\x18\x68\ \x20\xde\xe4\x95\xeb\x1e\xa6\x57\xf2\x45\x01\x20\x41\xea\xd2\x7f\ \x3c\x9f\x10\x7c\x01\x20\xb7\xc1\x35\x27\x1f\x07\xdb\x50\x3c\xba\ \x0b\xc0\x4c\xf2\x07\x0f\x3c\xf0\xb4\xe3\xd1\xab\x69\xd1\xba\x32\ \x41\xd7\x00\x84\x92\x35\x3d\xdb\xf7\x3c\xf2\xd3\x5e\xd2\x17\x8f\ \x63\x64\xec\xbb\xf7\x7a\x6e\xcf\x8f\x6e\xe0\x96\x3f\x35\x84\x1b\ \xf5\xca\x3c\x54\x0c\xd4\x99\x47\xaf\xdc\x93\x35\x7c\xff\x16\x05\ \x80\x44\x29\xf9\xc7\xf1\xe9\x40\x08\x00\x49\xce\x66\xf6\x75\xc8\ \xda\x58\x3c\xb9\x76\xc0\x98\x2c\xc1\x03\xcf\xda\xbc\xd7\xc9\x15\ \x84\x68\xdc\x96\xa0\xbb\x00\x82\xc9\x78\xd2\xac\x97\xb9\x77\x7f\ \x79\xbb\xac\xfc\xf7\x8a\x46\xdb\x90\x7b\xb9\x31\x44\xda\xa8\x18\ \xa8\x27\x8f\x8c\x06\xa6\x8b\x0f\x00\x49\x72\x8b\xfe\xc4\x01\x20\ \x31\x67\x75\xcb\xd5\x0e\x97\xe7\x0a\x64\x6d\x2c\x9e\xda\x00\x80\ \xc9\x17\x3c\xf0\xac\xc7\xdb\xf1\xf6\xdb\x9a\xaf\x49\x08\xd6\x0b\ \xc0\x27\xff\xff\x55\x27\x7f\xfa\x39\xfd\xfa\xe6\x21\x3f\xe4\xc6\ \xcc\x2b\x46\xc5\x40\xdd\x78\x6e\x2e\x67\xa3\xfb\xd2\xd3\x8e\xdc\ \x1b\x24\xab\xfe\xf1\xab\x04\xe3\x44\x7b\x04\xfb\x3b\x5c\x1d\xf7\ \x43\xd6\xc6\xe3\xa9\x09\x00\x98\x2c\xc1\x03\xcf\xba\xbc\xed\x6f\ \xbd\xa5\xe9\x82\xc4\xc0\x00\x10\x89\xfc\x85\xc7\xa8\x0a\x01\xa8\ \x18\xa8\x31\xcf\xcd\xd1\x35\x7c\xf9\x2e\xcf\xaf\x64\x0b\xfe\xf0\ \x01\x20\x5e\x48\x0a\xf9\x6e\xd6\x01\x59\x1b\x8f\xa7\x34\x00\x60\ \xb2\x04\x0f\x3c\xeb\xf3\x94\xee\xb0\x51\xb2\x7b\x40\x1c\x00\xb4\ \x90\xbf\xaa\x10\x80\x8a\x81\x9a\xf3\xe8\x1a\x00\xba\x86\xcf\xe9\ \x66\x73\x94\x06\x80\xfe\x3d\x0d\x80\x3c\x0c\x64\x6d\x3c\x9e\x92\ \x00\x80\xc9\x12\x3c\xf0\xec\xc1\x3b\x79\xf6\xac\x6f\x37\x81\x16\ \x5b\x1b\x85\x00\xa0\xa5\xfc\x15\x85\x00\x54\x0c\x8c\x2e\xcf\xe5\ \xd9\xa8\xaa\x2b\x50\x6d\x6d\x6d\x9c\xc3\xed\x39\x0f\x59\x1b\x8f\ \x27\x17\x00\x30\x59\x82\x07\x9e\xbd\x78\x34\x04\x74\x6d\xd9\x12\ \x71\x5d\x03\x1a\x00\xa2\x21\x7f\xc9\x10\x80\x8a\x81\x51\xe7\x39\ \x99\xf6\xb3\x59\x1c\x37\x40\x71\xfb\xdf\x69\xad\xde\x7b\x20\x6b\ \x63\xf2\xa4\x02\x00\x26\x4b\xf0\xc0\xb3\x27\xef\xc4\x99\x33\xdc\ \xe6\xd7\x5f\x8f\xa8\xa8\x51\x59\x79\x69\xd4\xe4\x1f\x34\x04\xa0\ \x62\x60\xcc\x78\xd3\x5b\x3b\xbe\xae\x38\x00\x38\x19\xef\x3f\x21\ \x6b\x63\xf2\x42\x05\x00\x4c\x96\xe0\x81\x67\x6f\xde\xf1\xd3\xa7\ \xb9\x4e\xd2\x79\x33\x1c\xf9\x7b\xd6\x2c\xe7\xf6\xfc\xdf\x1d\x51\ \x95\x7f\xaf\x10\xc0\xcb\x1e\x15\x03\x63\xc3\x23\x4e\xff\xbb\x9a\ \x00\x50\x0a\x59\x1b\x93\x17\x2c\x00\x60\xb2\x04\x0f\x3c\xf0\xe8\ \x38\x76\xea\x94\xaf\xda\xa0\x5a\xf9\x1f\xfa\xf5\x9d\x31\x91\xbf\ \xc0\x6b\xff\xfd\xbd\x5c\xc6\xec\x79\xa8\x18\x18\x23\x1e\xf9\xb7\ \x42\xe5\x01\xc0\xed\xdd\x0e\x59\x1b\x93\x17\x18\x00\x30\x59\x82\ \x07\x1e\x78\x62\x1e\x6d\x1e\xe4\x6a\x69\x51\x24\xff\x76\x0f\x69\ \x2f\xfe\xe0\x77\x63\x2a\x7f\x81\xd7\xc6\x87\x00\x54\x0c\x8c\x3e\ \xcf\xc1\xb4\x6f\x55\x24\xff\x99\x2c\x3b\xc8\xe1\xf6\x5e\x82\xac\ \x8d\xc9\x13\x07\x00\x4c\x96\xe0\x81\x07\x5e\x30\x1e\x6d\x1e\xd4\ \xec\x76\x4b\xcb\xbf\xa3\x83\x3b\x70\xf0\x10\xb7\xb7\x61\x0d\x77\ \xf4\xa7\x37\xc7\x54\xfe\xa8\x18\x18\x73\xde\x67\xb3\xeb\xea\x12\ \xe5\xcf\xfe\x5b\xd8\x1f\x42\xd6\xc6\xe5\x09\x01\x00\x93\x25\x78\ \xe0\x81\x27\xc5\xa3\x21\xa0\x8d\x65\x25\xe5\x7f\xf4\xe8\x71\xdf\ \xa0\x21\xe0\xf0\x7d\x9f\x8f\xa9\xfc\x05\xde\xa6\x07\x51\x31\x30\ \x16\x3c\x52\xdc\xef\x7b\x52\xbb\xff\x84\x00\xf0\x2c\x64\x6d\x5c\ \x1e\x0d\x00\x98\xdc\xc0\x03\x0f\x3c\x25\xbc\xc3\xc7\x8e\xf5\x09\ \x01\x81\xf2\x17\xc6\x3b\xeb\x56\x72\x07\x7f\xf2\xf9\x98\xca\x5f\ \x78\x8c\xaa\x10\x80\x8a\x81\xe1\xf1\x18\xf6\xe9\x80\xd2\xff\x7d\ \xb7\x06\xe6\x33\xde\xf9\x01\x4f\xf2\x55\x14\x82\xac\x8d\xc1\xa3\ \xdd\x00\x31\xb9\x81\x07\x1e\x78\x4a\x79\x07\x8f\x1e\xe5\x5a\x3d\ \x1e\x49\xf9\x0b\x63\xdb\xca\xa5\xdc\x7b\xf7\x7d\x21\xa6\xf2\x57\ \x15\x02\x50\x31\x30\x6c\x9e\x83\x61\xe7\xf2\xf2\x8f\x97\x0a\x00\ \x9d\xbd\xe4\x4f\x6a\x09\x07\xd6\x17\x86\xac\xf5\xe3\x15\xb4\xb0\ \x98\xdc\xc0\x03\x0f\x3c\x55\xbc\xfd\x87\x0f\x73\x8c\xa7\x83\x7b\ \x73\xf7\xfe\x90\xf2\x3f\x72\xe4\x18\xb7\x67\xcf\x3e\x6e\x53\xed\ \x42\xee\x5d\x3e\x04\xc4\x4a\xfe\x8a\x42\x00\x2a\x06\x46\xc6\x6b\ \x66\x59\x51\xbf\x9f\xbe\x01\x80\x56\x00\x24\x0f\xfc\xb8\x47\xfe\ \xad\xe4\xec\xbf\xa5\x57\x77\x21\xc8\x5a\x5f\x5e\x81\xdb\x83\xc9\ \x0d\x3c\xf0\xc0\x53\xc5\x3b\x70\xfc\x14\xb7\x63\xf7\x01\x59\xf9\ \x7f\xf0\xc1\x5e\xdf\xa0\x21\x80\x5e\x09\x88\xa5\xfc\x25\x43\x00\ \x2a\x06\x46\xc4\xa3\x3e\x77\x34\xb9\x3f\xfa\x63\xe6\xa8\x24\x51\ \x00\xe8\xbd\x06\x20\xaf\xb5\xf3\x8e\x9e\x07\xb7\xf9\xce\xfe\x7b\ \x02\x00\x64\x6d\x04\x9e\x10\x00\x30\xb9\x81\x07\x1e\x78\x8a\xe5\ \xff\xbe\x72\xf9\xd3\x41\x3f\xa7\xb7\x03\xe8\x9a\x80\x58\xca\x3f\ \x68\x08\x40\xc5\x40\x0d\xe4\xdf\xe6\x1b\x13\x57\xae\xff\x9a\x10\ \x00\x82\x5c\xfe\xf7\x3c\xe8\xbb\x57\xd0\x4c\x1f\xdc\xea\x0f\x00\ \x74\x0d\x00\x64\x6d\x0c\x1e\x0d\x00\x98\xdc\xc0\x03\x0f\xbc\x68\ \xca\x9f\x7e\x9d\xfe\xfb\xf6\x55\xcb\x54\x85\x00\x2d\x17\x10\xfa\ \x42\x00\x2a\x06\x46\x2c\x7f\x7a\x25\x9f\xfa\x9c\x06\x80\xa9\x75\ \x8d\x0f\xd2\x35\x00\x21\x2a\x00\xb2\x13\x9c\xcd\xed\x7c\x5a\xe0\ \x03\x00\x19\x90\xb5\x71\x78\x74\x0d\x00\x26\x37\xf0\xc0\x03\x2f\ \xda\xf2\x17\x86\xd2\x10\x10\x8d\xdd\x03\xb4\x4e\x00\x2a\x06\x86\ \xcf\x13\x1c\x2e\x04\x80\xdc\x8d\xee\x17\x83\x6e\xff\xa3\x1f\x8e\ \xa6\xf6\x85\x8e\x5e\x01\xa0\xd5\x97\x20\x20\x6b\xe3\xf0\xe8\x2e\ \x00\x4c\x6e\xe0\x81\x07\x9e\x14\x6f\xff\x89\xd3\xdc\xfa\xae\xf7\ \x22\x96\xbf\xd2\x10\x10\xcd\xad\x83\xad\x43\x7e\x84\x8a\x81\xe1\ \xc8\x9f\x5c\xb9\xf7\x5d\xc1\x17\x02\x00\xb9\xb2\xef\x74\xb1\x95\ \xa1\x5a\x02\xc7\x91\x07\x6c\xed\x09\x00\x6d\x90\xbf\x01\x79\x72\ \xed\x80\x31\x59\x82\x07\x1e\xe4\xff\x63\x67\x1d\x77\xfd\xe8\x25\ \x5c\xeb\xf6\xf7\x23\x96\xbf\x5c\x08\x40\xc5\x40\xa3\xfa\x43\x1c\ \x00\xba\x7d\x9e\xe7\x66\x37\x07\x93\x7f\xff\x71\xe3\xc6\x0e\xcc\ \x73\x79\x3e\xf1\x05\x80\x66\xc8\xdf\xa8\x3c\xb5\x01\x00\x93\x25\ \x78\xe0\xd9\x4f\xfe\xfd\x9e\xad\xf6\x8d\xc0\x10\x10\xae\xfc\x43\ \x85\x80\xd8\x56\x0c\xbc\x17\x15\x03\x55\xf1\x84\x00\x20\xba\x92\ \xcf\xb4\x7f\x94\xc5\x71\x03\x02\x03\xc0\x80\xdc\xba\xa6\xdb\x9d\ \x2e\x0f\x47\xd7\x00\x40\xfe\xc6\xe5\xa9\x09\x00\x98\x2c\xc1\x03\ \xcf\xbe\xf2\x0f\x0c\x01\x91\xca\xdf\x1f\x02\x56\x2f\xd5\xb1\x62\ \xe0\xbd\xa8\x18\xa8\x98\xe7\xf6\x9d\xfd\x07\xfa\x7c\x46\xcb\xa6\ \x5b\xfb\x06\x80\xc6\x96\x5f\xd1\x00\x10\xd6\x4a\x43\xc8\x3a\x66\ \x3c\xa5\x01\x00\x93\x25\x78\xe0\x41\xfe\x3d\x21\x60\x31\xd7\xb8\ \xf9\xad\x88\xe5\xef\xaf\x18\xb8\xaa\x56\xc7\x8a\x81\xf7\xa2\x62\ \xa0\x02\x1e\x5d\x03\x10\xec\x64\xde\xc1\x78\x7f\xd6\x37\x00\x34\ \xb5\x8f\x80\xfc\x8d\xcf\x53\x12\x00\x30\x59\x82\x07\x1e\xe4\x2f\ \x8c\xfe\xcf\x56\x71\xf1\xff\x2c\xe3\x6e\x4a\xaf\xe6\x36\x6e\x7a\ \x33\x62\xf9\xf7\x54\x0c\x5c\xa0\x63\xc5\xc0\x7b\x51\x31\x30\x5c\ \x1e\xdf\x13\xa0\xd7\x1a\x00\x52\x03\x60\x26\x64\x6d\x7c\x9e\x5c\ \x00\xc0\x64\x09\x1e\x78\x90\x7f\xa0\xfc\xe3\xff\x59\xea\x1b\x34\ \x04\xd0\x2b\x01\x91\xca\x5f\xb8\x8a\xd0\xb5\x6c\x21\xb7\x5b\xb7\ \x8a\x81\xf7\xa2\x62\x60\x18\x3c\xf2\x6f\xce\xbe\x45\x80\xdc\xec\ \x2a\xc8\xda\xf8\x3c\xa9\x00\x80\xc9\x12\x3c\xf0\x20\xff\x50\xf2\ \xef\x1e\x65\xbe\xdb\x01\xc1\x76\x07\xa8\x95\xff\x9e\x3d\xfb\xb9\ \x13\x27\x4e\x71\x27\xda\x9b\xb8\x43\xf7\xe9\x55\x31\xf0\x5e\x54\ \x0c\x54\xc9\x73\xba\xd9\x65\xc1\x02\xc0\x0e\xc8\xda\xf8\xbc\x50\ \x01\x00\x93\x25\x78\xe0\x41\xfe\x72\xf2\xa7\x5f\x0f\xb6\x3b\x20\ \x5c\xf9\x5f\xf8\xf8\x13\xee\x93\x8b\x9f\x72\x27\x3d\xcd\xaa\x42\ \x80\xb6\x15\x03\xef\x45\xc5\x40\x55\x3c\x76\x4b\x2f\xf9\x73\x1c\ \xd7\xdf\xe1\xf2\x5e\x80\xac\x8d\xcf\x0b\x16\x00\x30\x59\x82\x07\ \x1e\xe4\xaf\x54\xfe\xa1\xb6\x08\x86\x2b\x7f\x61\x28\x0d\x01\xd1\ \xd8\x3d\xd0\xfa\x20\x2a\x06\xaa\xe0\x9d\xa3\xce\xf7\x07\x80\xdc\ \xd6\xd6\x1b\x20\x57\x73\xf0\x02\x03\x00\x26\x4b\xf0\xc0\x83\xfc\ \xd5\xca\x5f\x69\x08\x50\x2a\x7f\xa5\x21\x20\x9a\x5b\x07\x5b\x1e\ \x44\xc5\x40\xa5\xc3\xd1\xd6\x76\x4d\xcf\xe5\xff\x16\xf6\xbb\x90\ \xab\x39\x78\xe2\x00\x80\xc9\x12\x3c\xf0\x20\xff\x70\xe5\x2f\x17\ \x02\xd4\xca\x5f\x2e\x04\xc4\xa2\x6e\x40\xeb\x83\xa8\x18\xa8\x64\ \x4c\x6b\xf5\xde\xd3\xd3\x03\xc0\xd5\x31\x04\x72\x35\x07\x4f\x08\ \x00\x98\x2c\xc1\x03\xcf\x5e\xf2\xff\x51\x14\xe4\xaf\xb4\x62\xa0\ \x52\xf9\x87\x0a\x01\xb1\x2c\x1a\xd4\xf9\x07\x54\x0c\x94\xbd\x02\ \xd0\xec\xbd\xdf\xdf\x14\x88\x40\x46\x42\xae\xe6\xe0\xd1\x00\x80\ \xc9\x12\x3c\xf0\x20\x7f\xad\xe4\x2f\x0e\x01\x6d\x3b\x3e\x88\x58\ \xfe\x81\x21\x40\x8f\x8a\x81\xaa\x42\x80\xcd\x2a\x06\xd2\x41\xeb\ \xfe\xd0\xfa\x3f\xdd\xb7\x00\x18\x6f\xbe\x64\x3f\xe1\x8d\x90\xb5\ \x51\x78\xb4\x1b\x20\x26\x4b\xf0\xc0\x83\xfc\xb5\x94\xbf\xb8\x62\ \x60\x53\xd7\x5b\x11\xcb\x5f\x18\x74\x8b\xe0\xee\xfb\x6e\xd6\xa5\ \x62\xa0\xa2\x10\x60\xb3\x8a\x81\x3e\x26\xa9\xf8\x4b\x7a\xfe\x38\ \x7a\x02\x80\x9b\x5d\x14\x52\xfe\xa4\x96\x70\x60\x7d\x61\xc8\x5a\ \x3f\x5e\x41\x0b\x8b\xc9\x12\x3c\xf0\x6c\x22\xff\x7b\x1d\xeb\x63\ \x26\x7f\x71\xc5\xc0\xc6\xcd\x6f\x46\x2c\x7f\xfa\xbc\x53\xa7\xcf\ \x70\xfb\x9b\xeb\xb8\xf7\x7e\x7a\xb3\x2e\x15\x03\x25\x43\x80\xcd\ \x2a\x06\x52\x9f\xd3\x5e\x3f\x34\x00\xe4\x35\xb7\x2f\xf0\x07\x00\ \x87\xdb\xeb\x0e\x2e\xff\x56\x5f\x37\x21\x71\x77\x21\xc8\x5a\x5f\ \x5e\x81\xdb\x83\xc9\x12\x3c\xf0\x20\xff\xa8\xc8\x5f\x60\x7d\x21\ \xb3\x86\xdb\x7d\xe0\x48\xc4\xf2\x3f\x79\xea\xb4\x6f\xd0\x10\x40\ \xaf\x04\xe8\x51\x31\x90\x86\x80\xd1\xaf\xda\xbb\x62\x20\xf5\x39\ \xed\xf2\xeb\x10\x02\x80\xcb\xd3\xec\x5f\x03\x90\xef\xf2\xbc\xd5\ \xe7\xc1\xa4\x7f\x30\x3d\xfb\xef\x09\x00\x90\xb5\x11\x78\x42\x00\ \xc0\x64\x09\x1e\x78\x90\x7f\x34\xe4\x9f\xf8\x6c\x19\x37\x70\xd4\ \x72\xee\xab\x0e\x37\x77\xea\xdc\x85\x88\xe5\x4f\x07\xfd\xbc\xbb\ \x62\xe0\x4d\xba\x54\x0c\x64\x1f\xba\x8f\xcb\x28\x2c\xb3\x65\xc5\ \x40\xc1\xe7\xbe\xc1\x07\x00\x87\xcb\xb3\xbd\x67\x17\x00\xe3\x3d\ \xd9\x7b\x85\x20\x7d\x70\xab\x3f\x00\xd0\x35\x00\x90\xb5\x31\x78\ \x34\x00\x60\xb2\x04\x0f\x3c\xc8\x3f\x3a\xf2\x2f\xf5\xc9\xbf\xff\ \xd8\x7a\xae\xdf\xd8\x06\xee\xab\xce\x16\x55\x21\x20\x94\xfc\x7b\ \x57\x0c\xbc\x49\x97\x8a\x81\x0b\x46\xfd\x5d\x73\xf9\x1b\xbd\x62\ \xa0\x70\x25\x9f\xfa\x5c\x1c\x00\xf2\x9b\xbd\xc7\x7c\xf2\x2f\xec\ \xea\x4a\xe8\xf5\x03\x90\x07\x74\xa7\x05\x3e\x00\x90\x01\x59\x1b\ \x87\x47\xd7\x00\x60\xb2\x04\x0f\x3c\xc8\x5f\x6b\xf9\x0f\x1a\x56\ \xd6\x4b\xfe\xc2\x50\x1a\x02\xe4\xe4\xdf\x7b\x77\xc0\x4d\x31\xaf\ \x18\xb8\x8f\xac\x43\x18\xf3\xef\x39\x9a\xcb\xdf\xc8\x15\x03\x05\ \x87\x0b\x01\x80\xfa\x9d\xfe\x1b\x59\x03\x70\xa5\xb6\xb6\x36\xae\ \xdf\xcc\x26\xf6\x8b\x01\xab\x03\x45\x01\xa0\x35\x68\x3f\x61\xc8\ \x5a\x3f\x1e\xdd\x05\x80\xc9\x12\x3c\xf0\x20\x7f\x2d\xe5\x3f\x78\ \x78\x05\x37\x30\xbd\xaf\xfc\x95\x86\x00\xa5\xf2\x57\x1a\x02\xa2\ \xb5\x75\xb0\x28\xe3\x99\xa8\xc8\xdf\x88\x15\x03\xe9\x95\x7b\xdf\ \x15\x7c\x21\x00\x90\x2b\xfb\xbd\xb7\x02\x7a\x6f\xf2\x57\x01\xa4\ \x4f\xe8\x1d\x00\xda\x20\x7f\x03\xf2\xe4\xda\x01\x63\xf2\x05\x0f\ \x3c\xc8\x5f\xb5\xfc\x33\x42\xcb\x5f\x18\x77\xe4\xb7\x06\x0d\x01\ \x6a\xe5\x2f\x17\x02\xa2\x59\x37\x60\xc3\xa3\xbf\x88\x9a\xfc\x8d\ \x57\x31\x50\x1c\x00\xfa\xfa\xdc\x57\x0d\x90\x48\xff\x57\xbe\xed\ \x01\x8c\xa7\x27\x00\x34\x43\xfe\x46\xe5\xa9\x0d\x00\x46\x98\x2c\ \xdf\xdf\xb7\x8f\x7b\x6b\xd7\xae\xa0\xe3\xcd\x9d\x3b\xb9\xd7\xb7\ \x6e\xe5\x5e\xdb\xb2\xc5\x3f\xe8\xe7\xf4\xeb\xa1\x9e\x23\x35\xc0\ \x03\xcf\x4c\xbc\x58\xef\xf3\x0f\x57\xfe\xa1\x42\x40\xb8\xf2\x17\ \xc6\x71\x4f\xef\x85\x81\xd1\x2e\x1a\xb4\xe9\xb7\xf7\x44\x55\xfe\ \xc6\xaa\x18\x28\x04\x80\x10\x57\xf2\x5d\x9e\xff\x25\x57\x00\xbc\ \x8f\x8a\x03\x80\xef\x1e\x01\x64\x6d\x58\x9e\x9a\x00\x60\x94\x33\ \xa5\x2d\x3b\x76\x70\x4c\x5b\x5b\x9f\xe1\x6a\x6d\xe5\x1a\x9a\x9a\ \xb8\x86\xc6\xc6\x9e\x41\x3e\xa7\x5f\x0f\xf6\x78\xb9\x01\x1e\x78\ \x66\xe2\xd5\x31\xad\xa6\x92\x7f\x60\x08\x88\x54\xfe\x1f\x7f\x72\ \x91\x3b\x79\xf2\x0c\xb7\x6d\x75\xad\x2f\x04\xc4\xa2\x62\xe0\x96\ \xff\xf7\xb5\xa8\xcb\xdf\x38\x15\x03\xdd\xbe\xb3\xff\x50\x3e\x9f\ \xe6\xf2\x3e\xd4\xcf\xd9\xc2\x3e\x2b\x0e\x00\x61\x57\x17\x82\xac\ \x63\xc2\x53\x1a\x00\x8c\x74\x99\x34\x58\x00\x80\x1c\xc0\xb3\xbb\ \xfc\xef\x99\xb8\xd4\x74\xf2\xf7\x87\x00\xb2\x26\xe0\xe0\xb1\x13\ \x11\xcb\x5f\xe8\x3d\xb0\x75\xd5\x92\x98\x54\x0c\x7c\xed\xf7\xdf\ \x8d\x89\xfc\x8d\x50\x31\x90\xae\x01\x90\x3a\x99\x27\xee\x1f\x4a\ \xaa\x00\x7a\xc7\x77\x07\x00\x16\xf2\x37\x01\x4f\x49\x00\x30\xda\ \x3d\xd2\xc0\x00\x00\x39\x80\x07\xf9\x9b\x57\xfe\xf4\x79\xf1\x99\ \x6b\xb8\xbb\xf2\x36\x72\x07\x8f\x1c\x8f\x58\xfe\x42\xef\x81\xce\ \xda\x9a\xa8\x57\x0c\xac\x7b\xea\x77\x31\x93\xbf\xd1\x2b\x06\x3a\ \x99\x8e\xb1\xb4\x0c\xb0\x23\x1f\xf2\x37\x0d\x4f\x2e\x00\x18\x71\ \x81\x94\x38\x00\x40\x0e\xe0\x41\xfe\xfa\xca\x3f\x51\x03\xf9\xc7\ \x67\xae\xf6\x0d\x1a\x02\x0e\x91\x2b\x01\x91\xca\x5f\xe8\x3d\x40\ \x43\x40\x34\x2b\x06\xfe\x3b\xeb\x5f\x31\x95\xbf\xa1\x2b\x06\x32\ \x9e\xa9\xfd\x9c\x6e\xef\xab\x90\xbf\x79\x78\x52\x01\xc0\xa8\xab\ \xa3\x85\x00\x00\x39\x80\x67\x77\xf9\x7f\xd3\x42\xf2\xef\x1e\x6b\ \xb8\xaf\xe5\xb7\x70\xa7\x15\xd4\x09\x90\x93\x7f\x77\xf3\xa1\x7d\ \xdc\xd6\x15\x8b\xa3\x52\x31\xf0\xcd\x5f\xdf\xcd\xa5\xab\x11\xb7\ \xd5\x2b\x06\x32\x6c\x41\xe8\x46\x40\x90\xb5\x21\x79\xa1\x02\x80\ \x91\xb7\x46\xd1\x00\x00\x39\x80\x07\xf9\x5b\x4f\xfe\x02\xef\x6b\ \xd3\x5a\x25\x43\x80\x52\xf9\xd3\xaf\xd3\x7f\xdf\xb6\x72\x89\xa6\ \x15\x03\x8f\xdd\x7b\x2d\x37\x3d\x67\x92\x6e\xf2\x37\x64\xc5\x40\ \xc6\xbb\x80\x36\x02\x5a\x0b\xb9\x9a\x87\x17\x2c\x00\x18\x7d\x5f\ \xf4\x1b\xdb\xb7\x43\x0e\xe0\x41\xfe\x16\x95\xbf\x30\xee\xcc\x0f\ \x1e\x02\xd4\xca\x5f\x18\x4a\x43\x80\x92\xdd\x03\xd5\x19\x4f\xeb\ \x2e\x7f\xe3\x55\x0c\x64\x57\xf5\x23\x97\x01\x9a\x21\x57\xf3\xf0\ \x02\x03\x80\x19\x8a\xa2\x74\x74\x75\x41\x0e\xe0\xd9\x56\xfe\xdf\ \x78\xa9\xd6\xf2\xf2\x0f\x15\x02\xc2\x95\xbf\xd2\x10\xa0\x44\xfe\ \xbe\x1e\x00\x06\x91\xbf\xa1\x2a\x06\xba\x3c\x1b\x49\x21\x20\x2f\ \x0b\xb9\x9a\x87\x27\x0e\x00\x66\xa9\x88\xd6\xb1\x79\x33\xe4\x00\ \x1e\xe4\x6f\x71\xf9\x07\x86\x80\x48\xe5\x2f\x17\x02\xcc\x2a\x7f\ \xc3\x54\x0c\x74\x7b\xdb\xe9\x1a\x80\x2d\x90\xab\x79\x78\x42\x00\ \x30\x53\x39\x54\x7f\x00\x80\x1c\xc0\x83\xfc\x63\x26\xff\xa4\x8c\ \x15\x31\x97\xbf\x38\x04\x6c\x7b\xef\x40\xc4\xf2\x0f\x15\x02\xcc\ \x2e\x7f\xbd\x2b\x06\xfa\xba\xfe\xba\xd8\xd7\xfa\x91\xbe\xc0\xef\ \x40\xae\xe6\xe1\xd1\x00\x60\xb6\x5a\xe8\xbe\x00\x00\x39\x80\x07\ \xf9\xdb\x42\xfe\x74\x0c\xfe\x47\x01\x77\xc3\x53\xd3\xb9\xb6\xad\ \xbb\x22\x96\x7f\x60\x08\xb0\x8a\xfc\xc5\x21\x20\xbb\xae\x39\xa6\ \xf2\xf7\x3d\x97\x61\xdf\x26\x57\x00\x3c\xfb\x65\xfb\x09\x6f\x84\ \xac\x8d\xc2\xa3\xdd\x00\xcd\xd6\x08\x85\xae\x01\x80\x1c\xc0\x83\ \xfc\x63\x20\xff\xe7\x8c\x21\xff\x7e\x7f\xcc\xf6\x8d\x1b\x9e\x9a\ \xc6\x35\x75\x6e\x8d\x58\xfe\xfe\x8a\x81\x64\x8b\xa0\x5c\xc5\x40\ \x33\xc9\x5f\x2e\x04\x44\x45\xfe\xb4\xe4\x3f\xa9\xfc\x9b\xef\x62\ \xf7\xd2\x00\x70\x42\x52\xfe\xa4\x96\x70\x60\x7d\x61\xc8\x5a\x3f\ \x5e\x41\x0b\x6b\xba\x2e\x68\x74\x17\x00\xe4\x00\x1e\xe4\x6f\x03\ \xf9\x0f\xed\x91\x7f\xff\x3f\x4e\xe1\xe2\xff\x30\x89\xfb\xfc\x5f\ \xf3\xb8\xc6\xce\x2d\x11\xcb\xdf\x5f\x31\x70\x49\x75\xc8\x8a\x81\ \x66\x94\x7f\xa8\x10\xa0\xb9\xfc\x69\xc5\x5f\xd2\xeb\xc7\x1f\x00\ \x9a\xd9\x63\x74\x1b\xe0\xe9\xd0\xf2\x6f\xf5\x75\x13\x12\x77\x17\ \x82\xac\xf5\xe5\x15\xb8\x3d\xa6\x6b\x81\x1a\xaa\x19\x10\x64\x03\ \x1e\xe4\x6f\x6d\xf9\x0b\x83\x86\x00\x7a\x25\x20\x52\xf9\xfb\x2b\ \x06\x92\x10\x10\x58\x31\xd0\xcc\xf2\x0f\x0c\x01\xd1\x90\x3f\xed\ \xf2\xeb\xe8\x1d\x00\x4e\xd1\x5e\x00\xe7\x82\x3e\x98\xf4\x0f\xa6\ \x67\xff\x3d\x01\x00\xb2\x36\x02\x4f\x08\x00\x66\xea\x7f\xae\x36\ \x00\x40\x36\xe0\x41\xfe\xd6\x91\xbf\x30\xe8\xed\x80\xf6\xad\xef\ \x44\x2c\xff\x60\x15\x03\xad\x20\x7f\x71\xc5\xc0\xac\x55\x75\xda\ \xca\x9f\xf8\xdc\x37\xfc\x01\xc0\xd7\x00\xf0\x2c\x59\x04\xe8\xbd\ \xd0\x67\x75\x20\x4d\x0a\x4d\xad\xfe\x00\x40\xd7\x00\x40\xd6\xc6\ \xe0\xd1\x00\x60\x26\xf9\xab\x0d\x00\x90\x0d\x78\x90\xbf\x4a\xf9\ \x67\x1a\x5f\xfe\xf4\xeb\xdd\x6b\x02\xa6\xab\x0a\x01\x4a\x2a\x06\ \xd6\x64\x0c\xb5\x8c\xfc\xc5\x15\x03\x27\xad\xac\xd3\x44\xfe\xf4\ \x4a\x3e\xf5\xb9\x38\x00\xf8\x3c\xef\xf6\x9c\x27\x85\x80\x3c\x17\ \x7b\x09\x87\x3c\xa0\x3b\x2d\xf0\x01\x80\x0c\xc8\xda\x38\x3c\xba\ \x06\xc0\x4c\xf2\x07\x0f\x3c\xab\xf2\xf6\x9f\x38\xcd\xdd\xeb\x58\ \x0f\xf9\x2b\x94\x7f\xcf\xc2\x40\x65\x21\x40\xc9\xee\x81\xea\x26\ \xb7\xe5\xe4\x2f\xae\x18\x48\xaf\x04\x44\xe2\x0f\xc1\xe1\x42\x00\ \xa0\x7e\xf7\x9f\xe8\xbb\xbd\x9f\xd0\x35\x00\x97\xc4\xab\x03\x1d\ \xbd\x02\x40\x2b\x97\x0f\x59\x1b\x8a\x47\x77\x01\x60\xf2\x05\x0f\ \x3c\xfd\xe5\xff\x23\x67\x9d\xce\x97\xfd\x57\xea\x2a\xff\x94\x30\ \xe4\xaf\x34\x04\xd8\x5d\xfe\xe2\x8a\x81\x52\x5b\x04\x25\xe5\x4f\ \xae\xdc\xfb\xae\xe0\x0b\x01\x80\x5c\xd9\x0f\x78\xdc\x67\xfd\xc4\ \x4f\xe8\x1d\x00\xda\x20\x7f\x03\xf2\xe4\xda\x01\x63\x32\x07\x0f\ \x3c\xc8\xdf\xc8\xf2\x97\x0b\x01\x90\x7f\xdf\x8a\x81\x6a\x42\x40\ \x8f\x3f\xc4\x01\xa0\xaf\xcf\x49\x0d\xa0\x2b\xb4\x10\xd0\x95\xfc\ \xee\x05\x01\x3d\x01\xa0\x19\xf2\x37\x2a\x4f\x6d\x00\xc0\x64\x0e\ \x1e\x78\xd6\x92\xff\xa0\xcc\x95\x3a\x5f\xf6\x9f\x1b\xb1\xfc\x43\ \x85\x00\xc8\x3f\x74\xc5\x40\x25\x21\xa0\xb7\x3f\x84\x00\x10\xfa\ \x4a\x7e\xf7\x1a\x00\x51\x00\xf0\xdd\x23\x80\xac\x0d\xcb\x53\x13\ \x00\x30\x99\x83\x07\x9e\xb5\xee\xf9\xeb\x2d\xff\x94\xa7\x0b\x34\ \x93\x7f\x60\x08\x50\x22\xff\x29\x0b\xeb\x6c\x27\xff\xf0\x2b\x06\ \xba\x7d\x67\xff\xa1\x7c\xee\xbb\x02\xe0\xdb\x06\x28\x0a\x00\x91\ \x94\x16\x84\xac\xa3\xcf\x53\x1a\x00\x30\x99\x83\x07\x9e\xc5\xe4\ \x3f\xda\x7a\xf2\x17\x57\x0c\x6c\xee\xdc\x26\x29\xff\x97\xaa\xd6\ \x13\x39\xda\x53\xfe\xe1\x54\x0c\xa4\x6b\x00\x64\x4e\xe6\xc9\x1a\ \x00\x97\xf7\x54\x77\x00\x60\x21\x7f\x13\xf0\x94\x04\x00\x4c\xe6\ \xe0\x81\x07\xf9\x9b\x45\xfe\xe2\x8a\x81\x42\xd9\xe0\x40\xf9\x4f\ \xac\x86\xfc\xb5\xae\x18\xe8\xdb\x05\x40\x4a\x01\x1f\xc9\x87\xfc\ \x4d\xc3\x93\x0b\x00\x98\xcc\xc1\x03\x0f\x97\xfd\xb5\x95\xff\xdc\ \xa8\xcb\x5f\x5c\x31\x90\x5e\x09\x80\xfc\xa3\x5f\x31\xb0\xbb\x0e\ \x80\x5c\x33\x20\xc8\xda\x50\x3c\xa9\x00\x80\xc9\x1c\x3c\xf0\xac\ \x25\xff\x64\x9d\x2b\xfc\xc5\x52\xfe\xc1\x2a\x06\x42\xfe\xd1\xac\ \x18\xe8\x39\x43\x16\x01\xb2\xbb\x21\x57\xf3\xf0\x42\x05\x00\x4c\ \xe6\xe0\x81\x67\xad\xd5\xfe\x76\x94\xbf\xb8\x62\x60\x46\xf1\x2a\ \xc8\x3f\x8a\x15\x03\x1d\x8c\xf7\x28\x2d\x04\xb4\x13\x72\x35\x0f\ \x2f\x58\x00\xc0\x64\x0e\x1e\x78\xd6\x91\x7f\xca\xf0\x0a\x6e\x70\ \xe6\x0a\xcb\xdf\xf3\x97\xe2\xdd\x3d\x6a\x16\xe4\x1f\xe5\x8a\x81\ \x64\xd1\xff\x3e\xba\x08\x70\x1b\xe4\x6a\x1e\x5e\x60\x00\xc0\x64\ \x0e\x1e\x78\x90\xbf\xa6\xf2\xff\xe7\x5c\xc8\xdf\x0e\x15\x03\x19\ \xcf\xae\x7e\xe4\x32\xc0\x6b\x90\xab\x79\x78\xe2\x00\x80\xc9\x1c\ \x3c\xf0\x20\x7f\x2b\xc9\xff\x1b\xe9\x90\x7f\xac\x2a\x06\x3a\x18\ \xcf\x56\xb2\x08\x90\xf5\x42\xae\xe6\xe1\x09\x01\x00\x93\x39\x78\ \xe0\x59\x4c\xfe\xa3\xf5\x95\xff\xb5\xc3\x0a\x21\x7f\x9b\x54\x0c\ \xec\x76\x52\x7b\x07\x29\x05\xcc\xba\x20\x57\xf3\xf0\x68\x00\xc0\ \x64\x0e\x1e\x78\xda\xca\xff\xc7\x36\x97\xff\x17\x47\x95\x43\xfe\ \x36\xa9\x18\xe8\x6f\x16\xc4\xb0\x4d\xfd\x9c\x2e\xef\x0a\xd9\x7e\ \xc2\x1b\x21\x6b\xa3\xf0\x68\x37\x40\x4c\xe6\xe0\x81\x67\x1d\xf9\ \xa7\xe8\x5c\xe4\x07\xf2\xb7\x4f\xc5\x40\xa1\xeb\xaf\xaf\xf2\x2f\ \xe3\x59\xd5\xcf\xc9\x78\x4b\x25\xe5\x4f\x6a\x09\x07\xd6\x17\x86\ \xac\xf5\xe3\x15\xb4\xb0\x98\xcc\xc1\x03\x4f\x03\xde\x01\x03\xc8\ \xff\x73\x63\x74\x96\x7f\x3a\xe4\x6f\x97\x8a\x81\xbe\x8a\xbf\xa4\ \xd7\x8f\x10\x00\xf2\x18\x4f\x35\x6d\x06\x34\x33\xb4\xfc\x5b\x7d\ \xdd\x84\xc4\xdd\x85\x20\x6b\x7d\x79\x05\x6e\x0f\x26\x73\xf0\xc0\ \xd3\x40\xfe\x3f\xc9\xb7\xbb\xfc\x2b\x20\x7f\x9b\x54\x0c\xa4\x3e\ \xa7\x5d\x7e\x1d\xa2\x00\x40\xfe\x3b\x97\x04\x00\xef\x4b\xc1\xe4\ \x4f\xfb\x07\xd3\xb3\xff\x9e\x00\x00\x59\x1b\x81\x27\x04\x00\x4c\ \xe6\xe0\x81\x67\xde\x33\xff\x54\xbd\xe5\x9f\x01\xf9\xdb\xa9\x62\ \xe0\xe4\x35\x1b\x7c\x4e\xef\x09\x00\xb4\xff\x8f\x37\x97\xdc\x02\ \x60\x47\xf6\xd9\x1e\x40\x93\x42\x53\xab\x3f\x00\xd0\x35\x00\x90\ \xb5\x31\x78\x34\x00\x60\x32\x07\x0f\x3c\xf3\xde\xf3\x87\xfc\x21\ \xff\x98\xf2\x48\xa1\xa0\xb4\xc2\x32\x6e\xf2\xda\x0d\xfe\x00\xc0\ \x9f\xe8\x3f\x4f\xeb\x00\x3c\xd1\x4b\x38\xe4\x01\xbe\xa4\x20\x04\ \x00\x32\x20\x6b\xe3\xf0\xe8\x1a\x00\x4c\xe6\xe0\x81\x07\xf9\x87\ \x23\xff\x5b\x20\x7f\x7b\xf1\xe6\x95\x74\x8f\x57\x4b\x7d\x9f\x4f\ \x59\xb7\x51\x7c\xa5\xff\x69\xb2\x0d\xb0\xe3\x7e\xf1\xea\x40\x47\ \xaf\x00\xd0\xca\xe5\x43\xd6\x86\xe2\xd1\x5d\x00\x98\xcc\xc1\x03\ \xcf\x7c\xfb\xfc\x75\x97\x3f\xee\xf9\xdb\x4c\xfe\xc5\xfc\xe8\x0e\ \x00\x69\xf3\x4b\x7b\x2d\x0c\x9c\xe6\x66\xff\xd0\x6f\x9a\x8b\xbd\ \x4f\x10\x4e\xef\x00\xd0\x06\xf9\x1b\x90\x27\xd7\x0e\x18\x72\x00\ \x0f\x3c\xe3\xc9\xff\xaa\x31\xab\x70\xe6\x0f\xf9\xc7\xb6\x51\xd0\ \xdc\x9e\x00\x90\x46\xaf\x00\x04\x2e\x0c\x74\xb1\xff\xd3\x6f\x7a\ \x6b\xc7\xd7\x7d\xdb\x03\xba\x57\x05\x76\x07\x80\x66\xc8\xdf\xa8\ \x3c\xb5\x01\x00\x72\x00\x0f\xf2\x87\xfc\x21\x7f\xfb\xf1\xfc\x01\ \x80\xac\x01\x08\xb6\x3b\x80\xba\xbf\x5f\x7e\x7b\xfb\x17\xc4\x01\ \x80\xae\x01\x80\xfc\x8d\xcb\x53\x13\x00\x20\x07\xf0\x20\x7f\x7d\ \xe5\x7f\xf5\x58\x7d\xe5\x7f\x6b\x46\x25\xe4\x6f\xd7\x2e\x81\x73\ \xbb\xcf\xfe\x43\xf1\x5e\x66\x98\xab\xfb\xcd\xae\xab\x4b\x14\x07\ \x80\x70\xc4\x05\x59\xc7\x8e\xa7\x34\x00\x40\x0e\xe0\xd9\x5d\xfe\ \xf7\x3a\xd6\xeb\x2a\xff\x6b\xf4\x96\x7f\x26\xe4\x6f\x6b\xde\xbc\ \xd0\xbc\x11\x85\x15\x9f\x70\x1c\xd7\xbf\x1f\xfd\x70\x30\xed\xc7\ \xc3\x15\x17\x64\x1d\x5b\x9e\x92\x00\x00\x39\x80\x07\xf9\xdb\x5d\ \xfe\x55\x90\x3f\x78\x12\xb5\x01\xca\xf7\xf6\x13\x3e\x1c\x0c\xfb\ \x06\xe4\x6f\x0e\x9e\x5c\x00\x80\x1c\xc0\x83\xfc\x75\x96\xff\xf3\ \xfa\xca\xff\x3f\x70\xe6\x0f\x9e\x0c\x2f\xa3\xb8\x72\x93\x3f\x00\ \x90\x96\xc0\xeb\x20\x57\x73\xf0\xa4\x02\x00\xe4\x00\x1e\xe4\xaf\ \xaf\xfc\xaf\xd5\x5d\xfe\x38\xf3\x07\x4f\x01\xaf\xa4\x62\x8d\x3f\ \x00\x10\xe1\x14\x42\xae\xe6\xe0\x85\x0a\x00\x90\x03\x78\x90\xbf\ \xbe\xf2\xbf\x6e\xdc\x6a\x7d\xe5\x3f\x1a\xf2\x07\x4f\x19\x2f\xa3\ \xb4\x6a\xbe\x28\x00\x78\x27\x42\xae\xe6\xe0\x05\x0b\x00\x90\x03\ \x78\x90\xbf\xce\xf2\x1f\xaf\xaf\xfc\xbf\x34\xba\x1a\xf2\x07\x4f\ \x31\x63\x74\x79\xf5\x44\xd1\x2d\x00\xcf\x3f\x20\x57\x73\xf0\x02\ \x03\x00\xe4\x00\x1e\xe4\x6f\x77\xf9\xeb\x7b\xe6\x7f\xf7\x28\xc8\ \xdf\x6c\xbc\xd1\x95\xd5\xff\xf0\x07\x80\x69\x2d\x1d\xff\x0f\x72\ \x35\x07\x4f\x1c\x00\x20\x07\xf0\xb0\xcf\xbf\x4e\xe7\xcb\xfe\x6b\ \x6c\x7d\xe6\x0f\xf9\x9b\x93\x97\x51\xb1\xe8\xff\xf5\xdc\x02\x68\ \xee\xbc\x1b\x72\x35\x07\x4f\x08\x00\x90\x03\x78\x38\xf3\xd7\xf7\ \xcc\xff\x86\xf1\xfa\xca\xff\xcb\x63\x6a\x20\x7f\xf0\xc2\xe2\x8d\ \x2e\xab\xb9\xf3\x97\xbf\xfc\x59\x77\x1d\x00\x67\x63\xd7\x55\x90\ \xab\x39\x78\x34\x00\x40\x0e\xe0\x41\xfe\x36\x97\xff\x58\xc8\x1f\ \xbc\x30\x79\x64\x0c\x7f\x79\x56\x2a\x09\x00\x03\x7c\x01\x80\x56\ \x04\x72\xb8\x3d\xe7\x83\x4a\x87\x48\x2a\x6f\x23\x64\x6d\x14\x1e\ \xed\x06\x08\x39\x80\x07\xf9\xe3\xcc\x1f\xf2\x07\x2f\x9c\x31\xb2\ \xa8\xfc\x0c\x91\x7f\x9c\x3f\x00\xf0\xb5\x00\x76\x04\x95\x7f\x63\ \x4b\x80\xc0\x20\x6b\x3d\x79\x05\x2d\x2c\xe4\x00\x1e\xe4\xaf\x93\ \xfc\x6f\x7c\x01\x67\xfe\x90\xbf\x79\xe5\x9f\x36\xbf\x8c\xfe\x77\ \x5b\xdf\x00\xc0\x78\x96\xf7\x95\x7f\x2b\x39\xfb\x17\x07\x00\xc8\ \x5a\x6f\x5e\x81\xdb\x03\x39\x80\x07\xf9\xdb\x50\xfe\xb7\x3d\xbf\ \x00\xf2\x07\x2f\x02\xf9\x97\xfa\x02\xc0\x88\xc2\xb2\x95\x7c\x00\ \xe8\x2f\xbe\x02\xe0\x10\xcb\xdf\xd1\xd4\xe6\x3b\xfb\xef\x09\x00\ \x90\xb5\x11\x78\x42\x00\x80\x1c\xc0\x83\xfc\x63\x27\xff\x9b\xf4\ \x96\xff\x58\xc8\x1f\xbc\xf0\x79\x69\xaf\x96\x76\x0f\x12\x00\xd2\ \x8b\x2b\xf3\x69\x00\xe8\x27\xfe\x98\xc6\x78\x9f\x12\x84\xe3\x68\ \x6e\x23\x01\xa0\xd5\x1f\x00\xe8\x1a\x00\xc8\xda\x18\x3c\x1a\x00\ \x20\x07\xf0\x20\xff\x18\xca\xff\x45\x7b\x9f\xf9\xa3\xc8\x8f\xc9\ \x79\xaf\x96\x90\xd1\x13\x00\x32\x8a\x2b\x86\xf6\x0b\xfc\x70\xb6\ \x78\x7e\xe2\x13\x4e\x73\xbb\xef\xec\xdf\x1f\x00\xc8\x80\xac\x8d\ \xc3\xa3\x6b\x00\x20\x07\xf0\xb0\xcf\xdf\x1e\xf2\xff\xca\xb8\x85\ \x90\x3f\x78\xe1\xf3\xe6\x95\x74\x0f\x51\x00\x18\x5d\xb5\xe8\x87\ \x7d\x02\x40\x6e\x03\x7b\x9d\xd3\xe5\x21\x67\xff\xe2\x00\xd0\xea\ \xbb\x1d\x00\x59\x1b\x87\x47\x77\x01\x40\x0e\xe0\x41\xfe\xd1\x95\ \xff\xe7\x46\x54\x70\x9f\x7f\x61\xb5\xce\xf2\x5f\x04\xf9\x83\x17\ \x81\xfc\x8b\xf9\xc1\x07\x00\xdf\x1a\x80\xd2\x2b\x63\xaa\xaa\x06\ \xf7\x09\x00\xf4\x9e\x80\xd3\xd5\x7a\xa2\x27\x00\xb4\x41\xfe\x06\ \xe4\xc9\xb5\x03\x86\x6c\xc0\x83\xfc\x35\x90\x3f\xce\xfc\x21\x7f\ \x93\xf3\x7c\x83\x0f\x00\xf4\xec\xdf\xb7\x10\xb0\xa8\xf2\x60\x30\ \xf9\xf7\xa7\x01\x20\xaf\xb1\xdd\xeb\x0b\x00\xcd\x90\xbf\x51\x79\ \x6a\x03\x80\x11\xe4\xb0\x6b\xf7\x6e\xee\xb5\xad\x5b\x83\x8e\xae\ \x2d\x5b\x38\xb6\xb3\x93\xf3\x74\x76\xf8\x07\xfd\x9c\x7e\x3d\xd4\ \x73\xa4\x06\x78\xe6\xe6\xb5\x75\xbd\xc1\x7d\x7b\xf2\x0a\x1d\x2f\ \xfb\x97\x73\x37\x8e\x5b\x89\x33\x7f\xc8\xdf\xf4\x3c\x7f\x00\x20\ \x6b\x00\x84\x7f\x4f\x2f\xae\x6a\x0b\x16\x00\x06\xf8\x02\x40\x53\ \x4b\x25\x5d\x03\x00\xf9\x1b\x97\xa7\x26\x00\x18\xe5\xcc\x70\xcb\ \x8e\x1d\x1c\xd3\xd6\xd6\x67\xb8\x5a\x5b\xb9\x86\xa6\x26\xae\xa1\ \xb1\xb1\x67\x90\xcf\xe9\xd7\x83\x3d\x5e\x6e\x80\x67\x6e\x5e\x1d\ \xd3\xca\xdd\x33\x71\xa9\x6e\xf2\x1f\xfc\x5c\x19\x77\xc3\xd8\xe5\ \xfa\xca\x7f\x3c\xe4\x0f\x9e\x36\xbc\xee\x00\x50\xd2\x8b\x97\x5e\ \x52\x5d\x16\x3a\x00\x34\xb6\xfe\x2b\x1c\x71\x41\xd6\xb1\xe3\x29\ \x0d\x00\x46\xba\x2c\x1c\x2c\x00\x40\x86\xe0\x19\x4d\xfe\x37\x3e\ \xaf\xaf\xfc\xff\x73\xfc\x62\x5d\xe5\xff\x3f\x2f\x15\x43\xfe\x56\ \xe2\xcd\xeb\xcb\x4b\x2f\xab\x19\x1f\x32\x00\x38\x18\xf6\x8f\x90\ \xb5\xb1\x79\x4a\x02\x80\xd1\xee\x09\x07\x06\x00\xc8\x10\x3c\xc3\ \xc9\x7f\x9c\xde\xf2\xd7\xf7\xcc\xff\xaf\xaf\xac\xe4\xca\x36\x32\ \x90\xab\xc5\x79\xa3\x4b\xaa\x7f\x1f\x74\x0d\x00\xfd\x6f\x1e\xc3\ \xde\x0e\x59\x1b\x9b\x27\x17\x00\x8c\xb8\x20\x4c\x1c\x00\x20\x43\ \xf0\xc4\xa3\x5e\x6f\xf9\x0f\x2b\xe7\x6e\x1a\xb7\x42\x5f\xf9\xbf\ \xb0\x44\x77\xf9\x9f\x3c\xfb\x21\x57\xde\xc8\x40\xae\x16\xe7\xbd\ \x50\xba\xe0\x2b\xfd\x42\x7d\x64\x71\xdc\x00\x27\xe3\x39\x0b\x59\ \x1b\x97\x27\x15\x00\x8c\xba\x1a\x5c\x08\x00\x90\x21\x78\x86\x93\ \xff\x78\xc8\x9f\xca\x9f\xbe\x4f\x65\x03\x00\xe4\x6a\x6e\x5e\x61\ \xf9\x59\xda\xf8\xaf\x9f\xd4\x87\xc3\xed\x75\x43\xd6\xc6\xe5\x85\ \x0a\x00\x46\xde\x0a\x46\x03\x00\x64\x08\x9e\xa1\x2e\xfb\x13\xf9\ \x7f\x5e\xe7\xcb\xfe\xb7\x64\x56\xe9\x2a\xff\x27\x67\xaf\xf0\xcb\ \x5f\x36\x00\x40\xae\xe6\xe7\x15\x56\xb6\xf7\x93\xfb\x70\xba\xbd\ \xb3\x20\x6b\xe3\xf2\x82\x05\x00\xa3\xef\x03\x7f\x63\xfb\x76\xc8\ \x10\x3c\x83\xc9\x5f\xdf\x33\xff\x5b\x0d\x26\x7f\xc9\x00\x00\xb9\ \x5a\x82\x97\x59\x5a\xf3\x8a\x6c\x00\xc8\x67\x3a\x9e\x84\xac\x8d\ \xcb\x0b\x0c\x00\x66\x28\x02\xd3\xd1\xd5\x05\x19\x82\x07\xf9\xf3\ \xe3\x3f\x46\x57\x1b\x4e\xfe\x21\x03\x00\xe4\x6a\x19\x5e\x66\xe9\ \x82\xbf\xca\x5f\x01\x68\xee\xbc\x1b\xb2\x36\x2e\x4f\x1c\x00\xcc\ \x52\x01\xae\x63\xf3\x66\xc8\x10\x3c\x9f\xfc\xbf\x09\xf9\x1b\x52\ \xfe\x41\x03\x00\xe4\x6a\x29\xde\x0b\xc5\x55\xb7\xcb\x06\x80\x2c\ \x86\x89\x77\xb8\xbc\x17\x20\x6b\x63\xf2\x84\x00\x60\xa6\xf2\xaf\ \xfe\x00\x00\x19\x42\xfe\x3a\xca\xff\xe6\xf1\x7a\xcb\xbf\xc6\xb0\ \xf2\xef\x13\x00\x20\x57\x4b\xf1\xd2\x8a\x2a\x4e\x07\x2e\x00\x14\ \x76\xff\xf5\xbd\x0d\xe0\x66\xbd\x90\xb5\x31\x79\x34\x00\x98\xad\ \xf6\xbb\x2f\x00\x40\x86\x90\xbf\x9e\xf2\xd7\x79\xc1\x9f\xd1\xe5\ \xdf\x2b\x00\x40\xae\xd6\xe3\x95\x54\xb6\x06\x96\xfe\xa7\xf5\x7f\ \x42\x04\x00\xcf\x3c\xbf\x74\x88\xa4\xf2\x36\x42\xd6\x46\xe1\xd1\ \x6e\x80\x66\x6b\xfc\x42\xd7\x00\x40\x86\x90\xbf\x6d\xcf\xfc\xc7\ \x54\x1b\x5e\xfe\xfe\x00\x00\xb9\x5a\x92\x97\x51\x56\x3d\x5b\x24\ \xff\x78\xe9\x00\xc0\xb0\x4f\xfb\xe5\xdf\xd8\x12\x20\x30\xc8\x5a\ \x4f\x5e\x41\x0b\x6b\xba\xae\x6f\x74\x17\x00\x64\x08\xf9\xeb\x21\ \xff\x2f\xbc\xa0\xbf\xfc\xfb\x3f\x64\x7c\xf9\xd3\x51\xb6\xd1\x05\ \xb9\x5a\x94\x97\x59\x5a\xfd\x04\x2f\xff\x04\x7e\x84\x0e\x00\x0e\ \xb7\xe7\x3b\xdd\xf2\x6f\x25\x67\xff\xe2\x00\x00\x59\xeb\xcd\x2b\ \x70\x7b\x4c\xd7\xf2\x35\x54\x33\x20\xc8\x15\xf2\xb7\xb2\xfc\xbf\ \x34\xa6\xc6\x34\xf2\xa7\xef\xd3\xa2\xf5\x0d\x90\xab\x45\x79\xa3\ \x4b\x4b\x6f\x27\xc2\x4f\x24\x63\xa0\x28\x00\x04\x5f\x03\xf0\xf2\ \xcb\xb3\xe2\x73\x37\xb6\x7e\x48\xcf\xfe\x7b\x02\x00\x64\x6d\x04\ \x9e\x10\x00\xcc\xd4\xef\x5d\x6d\x00\x80\x5c\x21\xff\x48\xe5\xff\ \x45\x9b\xcb\xff\x89\x7f\xab\x93\x3f\x7d\xbf\x16\xad\xab\x87\x5c\ \xad\xc8\x9b\x5f\x76\xea\xcf\x7f\x7e\x78\x10\x11\x7e\x92\x38\x00\ \x04\x95\x3f\x7f\x99\x20\x91\xdc\xf7\x6f\x14\x02\x00\x5d\x03\x00\ \x59\x1b\x83\x47\x03\x80\x99\xe4\xaf\x36\x00\x40\xae\x90\x3f\xe4\ \x1f\x7b\xf9\xd3\xf7\xad\x10\x00\x20\x57\x6b\xf1\x46\x14\x96\xb6\ \x11\xa7\x8b\x03\x40\xbc\x94\xfc\x69\x3a\x48\xca\xa9\x6f\x9e\xec\ \x0b\x00\x64\x40\xd6\xc6\xe1\xd1\x35\x00\x66\x92\x3f\x78\xf6\xe1\ \xed\x3f\x71\x9a\xfb\x91\xb3\x4e\x37\xf9\x7f\x6e\x78\x05\xf7\x95\ \xac\x75\xba\xca\xff\x6b\x13\x96\x9a\x52\xfe\x42\x00\x80\x5c\x2d\ \xc6\x9b\x57\xc2\xa5\xcd\x2d\x9a\x2e\x0a\x00\x09\x21\x2f\xfd\xf3\ \xab\x03\x69\x42\x48\x9a\xbc\xb2\xee\x97\x74\x0d\x40\x3e\x64\x6d\ \x28\x1e\xdd\x05\x00\xd9\x80\x07\xf9\xf7\x95\xff\x7f\x42\xfe\x61\ \xcb\xdf\x17\x00\xc8\x1a\x00\xc8\xd5\x4a\xf2\x2f\xee\x1e\xb3\x0b\ \x7e\xcb\x07\x80\x44\x29\xf9\xc7\xf1\xe9\xc0\x17\x00\xfe\x3e\x79\ \xd2\xd5\xf9\xae\xf6\x8b\x90\xb5\xb1\x78\x72\xed\x80\x21\x2f\xf0\ \xec\x28\xff\xdb\x27\xaf\xd7\x55\xfe\x77\x4e\x58\xa6\xab\xfc\x1f\ \x7f\x79\x79\x44\xf2\xa7\x9f\xd3\x5d\x00\x90\xab\x75\x78\xbe\x51\ \x30\xff\xe3\xbf\x0c\xfb\xe7\xd5\xfc\xd9\x7f\x7f\xa9\x4b\xff\xe2\ \x00\xe0\x4b\x0a\xa4\x1e\x40\x1b\x64\x6d\x2c\x9e\xda\x00\x00\x79\ \x81\x67\x65\xf9\xa7\x3c\x57\xce\x7d\x75\xb2\xbe\x67\xfe\x77\xbe\ \x64\x7e\xf9\xd3\xaf\xcb\xb6\x03\x86\x5c\x4d\xc5\xf3\x05\x80\x79\ \x25\x2c\x71\x79\x72\x48\xf9\xf3\x01\x60\x80\x28\x00\xf8\xef\x11\ \x10\xe1\xe4\x41\xd6\xc6\xe2\xa9\x09\x00\x90\x17\x78\x56\x3f\xf3\ \xbf\x63\x0a\xe4\x7f\xe2\xec\x59\x4d\xfe\xbe\xaa\x03\x00\x64\x6d\ \x68\x1e\xfd\xff\xb4\xb9\x85\xd3\x43\xee\xf7\x0f\x12\x00\xe2\xc5\ \x49\x81\xb4\x06\xfe\x0d\x64\x6d\x2c\x9e\xd2\x00\x00\x79\x81\x67\ \x79\xf9\xeb\x7c\xe6\x7f\xd7\xc4\xe5\xdc\x80\x87\x72\x2c\x21\x7f\ \xd5\x01\x00\xb2\x36\x3e\x8f\xdc\xff\xcf\x28\xaa\xfc\x85\x6c\x03\ \x20\x51\x00\xe8\x75\x99\xc0\xd9\xd8\x75\x95\xc3\xe5\xb9\x02\x59\ \x1b\x87\xa7\x24\x00\x40\x5e\xe0\x59\x5d\xfe\x5f\xd3\x5b\xfe\x93\ \xac\x25\x7f\x55\x01\x00\x72\x35\x05\x6f\x64\x61\xc9\x85\xac\xda\ \xda\x81\x4a\x02\x40\xc8\xfb\x03\xf9\x2e\xef\xeb\x90\xb5\x71\x78\ \x72\x01\x00\xf2\x02\xcf\xf2\xf2\x9f\xa2\xef\x82\xbf\xaf\x4f\x5c\ \xa1\xbb\xfc\xb5\xb8\xe7\x2f\xdb\x0e\x18\x72\x35\x37\x4f\xd4\x00\ \x28\xec\x0f\xd2\x19\x70\x3a\x64\x6d\x1c\x9e\x54\x00\x80\xbc\xc0\ \x83\xfc\xa3\x2c\xff\x49\xd6\x94\xbf\xa2\x00\x00\xb9\x9a\x8a\x97\ \x5e\x5a\x99\x1b\x71\x00\x70\xb4\x74\xfc\x02\xb2\x36\x0e\x2f\x54\ \x00\x80\xbc\xc0\x83\xfc\xad\x2d\xff\x48\xf7\xf9\xcb\xbd\x5e\x24\ \x03\x00\xe4\x6a\x3a\x5e\x66\x49\xcd\xcf\x23\x0e\x00\x59\x3b\x76\ \x0c\x24\xe2\x39\x07\x59\x1b\x83\x17\x2c\x00\x40\x5e\xe0\x59\x5d\ \xfe\x77\x66\xeb\x2c\xff\xac\x95\x96\x96\xbf\x64\x00\x80\x5c\x4d\ \xc7\x1b\x59\x54\xaa\xec\xfe\xbf\xc2\xdb\x00\xab\x20\x6b\x63\xf0\ \x02\x03\x00\xe4\x05\x5e\xb4\xe5\xff\x63\x9d\xe5\x7f\x57\x76\x9d\ \xce\x67\xfe\xd6\x97\x7f\xc8\x00\x00\xb9\x9a\x92\x97\x5e\x5c\xee\ \xee\xa7\xd5\x07\x29\x07\x3c\x0c\xb2\x36\x06\x4f\x1c\x00\x20\x2f\ \xf0\x20\xff\xe8\xca\xff\x6e\x72\xe6\x1f\xf7\xb0\xf5\xe5\x1f\x34\ \x00\x40\xae\xa6\xe5\xa5\x97\x54\x3f\xaf\x59\x00\x98\xde\xec\xf9\ \x12\x64\x6d\x0c\x9e\x10\x00\x20\x2f\xf0\xa2\x2f\xff\xf5\xba\xca\ \xff\xeb\x36\x97\xff\x93\xb3\x63\x27\xff\x3e\x01\x00\x72\x35\x35\ \xef\x85\xd2\x05\x5f\x89\x64\xf7\x5f\x9f\x3a\x01\xb9\x75\xcd\x3b\ \x21\x6b\xfd\x79\x34\x00\x40\x5e\xe0\x45\x93\x77\x80\xca\xdf\xb1\ \x16\xf2\xb7\x91\xfc\x7b\x05\x00\xc8\xd5\xd4\xbc\xb4\xe2\xca\xb7\ \xe5\xc4\xcf\xd7\xfd\x19\xa0\xb4\x48\x50\x4a\xf6\x9a\xfa\x02\xc8\ \x5a\x7f\x1e\xed\x06\x08\x79\x81\x17\x55\xf9\xe7\x2d\xb7\xb9\xfc\ \x57\xd9\x4e\xfe\xfe\x00\x00\xb9\x9a\x9e\x97\x51\x5a\x33\x53\x46\ \xfe\xf1\x8a\x02\x00\x2f\xff\xc1\x64\xa4\x4e\x58\xbc\xfc\x41\xc8\ \x5a\x7f\x5e\x41\x0b\x0b\x79\x81\x17\x3d\xf9\x4f\xad\x86\xfc\x6d\ \x28\x7f\x3a\x68\x37\x40\xc8\xd5\xfc\xbc\xd1\xa5\x0b\x7e\x2a\x21\ \x7f\xa1\xdf\x8f\x74\x00\xe0\x1f\x4c\xbb\x08\xa5\xd0\x00\xf0\xf8\ \x33\x43\x6f\xcc\x6d\x70\x5d\x80\xac\xf5\xe5\x15\xb8\x3d\x90\x17\ \x78\xda\xcb\xff\xf8\x09\xee\xbe\x9c\x02\xae\xff\xb0\x2a\x2e\x35\ \xad\x88\xbb\x3a\xad\x90\x8b\x1b\x56\x19\x53\xf9\xdf\x9d\x53\xaf\ \xbb\xfc\xe3\x1f\x99\x6a\x4b\xf9\xd3\xe7\x15\xad\x6f\x80\x5c\x4d\ \xce\x1b\x51\x58\x71\x2c\x8b\xe3\x06\x84\xf0\x79\x22\xdf\xed\x37\ \x21\x58\xe9\xff\xc0\x07\x27\xf1\x67\xff\xbe\x00\x40\x47\x9e\xcb\ \xb3\x0a\xb2\xd6\x97\x27\x04\x00\xc8\x0b\x3c\x2d\x79\xcc\x86\x47\ \xb9\x96\x35\xdf\xe4\x8e\xb6\x5c\xcf\x9d\x6d\xbf\xca\x37\x4e\xb5\ \x5d\xc3\x75\xd5\xdd\xc1\xcd\x2e\xfb\x0d\xf7\x8b\x49\xe3\xb9\x84\ \x67\x4a\xa2\x28\x7f\x7d\xcf\xfc\xbf\x31\xd9\xde\xf2\xa7\xcf\x2f\ \x5a\x57\x0f\xb9\x9a\x9c\x97\x5e\x52\xb5\x20\xc4\x95\xfc\x24\x7e\ \xf8\x03\x80\x94\xfc\x69\x52\x18\x24\x0a\x00\x74\x0c\xc8\x6f\x61\ \x1f\x87\xac\xf5\xe5\xd1\x00\x00\x79\x81\xa7\x25\xef\xec\xf1\x2d\ \x7e\xe9\x07\x8e\x33\x6d\x57\x71\x47\x9a\xaf\xe5\x0e\x37\x5d\xcb\ \xb5\xae\xb8\x8b\xbb\x7f\xf2\x18\xcd\xe5\xff\x8d\xa9\x3a\x5f\xf6\ \x87\xfc\x7d\x1c\x21\x00\x40\xae\xe6\xe5\x8d\x2e\xab\x79\x34\x88\ \xfc\x93\x79\x9f\x0b\x01\x20\xbe\x9f\xcc\x3d\x82\x24\x51\x00\x18\ \x2c\xdc\x2b\x98\xdd\xd1\x91\x9a\xcf\x78\x2e\x42\xd6\xfa\xf1\xe8\ \x1a\x00\xc8\x0b\x3c\x2d\x79\xe7\x0f\x94\x71\x17\xb6\xff\x86\xfb\ \xf8\xed\x47\xb8\x4f\x76\x3d\xc6\x7d\xfc\xd6\xc3\xdc\x47\xdb\x7e\ \xc1\x7d\xd8\xf1\x9f\x7e\xf9\x0b\x83\x7e\x5e\x52\xfd\xbf\x5c\xf2\ \x88\x52\x8b\xc8\x7f\x35\xe4\xcf\xb3\x68\x00\x80\x5c\xcd\xcb\x23\ \x97\xff\x3f\x19\x53\x55\x35\x38\xc8\x1a\xbe\xc1\xa2\x00\x90\x20\ \x75\xe9\x3f\x9e\x4f\x08\x42\x00\x48\x0e\x5c\x28\x40\xba\x03\xae\ \x81\xac\xf5\xe3\xd1\x5d\x00\x90\x17\x78\x5a\xf2\x2e\x9e\xd8\xc0\ \x71\xa7\x57\xf5\x1a\x97\x4f\xad\xe4\x3e\x3a\x54\xcb\x7d\xf8\xc1\ \x6c\xee\xc4\xeb\x0f\x73\x87\x5d\x37\xf9\xe4\x4f\xaf\x08\xd0\x2b\ \x03\xf4\x76\xc1\x35\xa3\xe6\x9b\x5e\xfe\x09\x90\x7f\x4f\x00\x20\ \x6b\x00\x20\x57\xf3\xf2\x46\x16\x55\x34\x05\xee\xde\xe3\x87\x10\ \x00\x12\xa5\xe4\x1f\xc7\xa7\x83\x81\xa2\xfb\x05\x03\xfa\x56\x05\ \xec\x78\x12\xb2\xd6\x8f\x27\xd7\x0e\x18\x32\x04\x4f\x2d\xef\xf2\ \xc9\xe0\xf2\x3f\x7f\x70\x89\x7f\x9c\xdb\x53\xc0\x9d\xeb\xfa\x4e\ \xaf\xdb\x03\x8d\x2b\xbf\xcd\x25\x3e\x57\x1e\x96\xfc\xbf\x39\x55\ \xef\x7b\xfe\xfa\xca\xff\xaf\xaf\xac\x34\x94\xfc\xe9\xe7\x74\x17\ \x00\xe4\x6a\x5e\x5e\x66\x69\x75\x86\x48\xfe\xa9\xfc\x10\x02\x40\ \x92\xdc\xa2\x3f\x71\x00\x08\x99\x14\x5e\x66\x98\xab\x1d\x2e\xcf\ \xa7\x90\xb5\x3e\x3c\xb5\x01\x00\x32\x04\x4f\x6a\x9c\x3d\x73\x40\ \x56\xfe\xf4\x73\xfa\xf5\x2b\xa7\x6a\xb9\x8f\xb6\xdc\xd7\x2b\x04\ \x38\x4b\x86\x40\xfe\x16\x90\x3f\xfd\xba\x6c\x3b\x60\xc8\xda\xb8\ \xbc\xc2\xb2\x4b\x63\xcb\x6b\x3f\x2f\x92\xff\x55\xa2\x00\x90\x2c\ \x59\xf5\x8f\x7f\x52\x9c\x68\x8f\x60\x7f\x99\xe6\x40\xeb\x20\x6b\ \x7d\x78\x6a\x02\x00\x64\x08\x9e\xdc\xf8\xe8\xe4\x26\x45\xf2\x17\ \x1e\x73\xe5\xe4\x62\xee\xc3\x4d\x5f\xf3\x07\x80\xd3\x6d\x57\x73\ \xf7\xbc\xe8\x30\x8d\xfc\xbf\x99\xbd\x06\xf2\x0f\xc1\x53\x1d\x00\ \x20\x6b\xc3\xf0\xd2\x4b\xab\x5c\x01\xf2\x17\x02\xc0\x60\xa5\x05\ \x7f\xe2\xf8\x35\x00\xb2\xf5\x81\xa7\x31\xde\xa7\x20\x6b\x7d\x78\ \x4a\x03\x00\x64\x08\x9e\x92\x21\xdc\xff\x57\x22\x7f\x61\x5c\x3a\ \x34\xa3\xd7\x55\x80\x85\x8b\x7e\xaa\x4c\xfe\xb9\x90\xbf\x51\xe5\ \xaf\x3a\x00\x40\xd6\x86\xe2\x65\x96\x55\xfe\x33\x40\xfe\x57\x09\ \xbb\xf7\x94\x96\xfb\x8d\x53\xda\x1c\xc0\xd1\xd6\x76\x8d\xf8\x36\ \x00\x64\x1d\x3b\x9e\x92\x00\x00\x19\x82\xa7\x74\xd0\xfb\xff\x6a\ \xe4\x2f\x8c\xf3\x5b\x7e\xd1\xab\x5e\xc0\xe7\x33\x0a\x42\xca\x3f\ \x85\xac\x13\xd0\x5b\xfe\xf7\x4c\x81\xfc\xe5\x78\x8a\x03\x00\x64\ \x6d\x28\xde\xc8\xc2\x92\x0b\x8f\x8f\x7a\xfe\x0b\x01\xf2\x4f\x55\ \x24\x7f\x55\x5d\x81\x7a\xed\x06\xf0\xd4\x41\xd6\xb1\xe7\xc9\x05\ \x00\xc8\x10\x3c\xa5\x83\xde\xff\x0f\x47\xfe\x74\x7c\x76\x70\x7a\ \xaf\xab\x00\x7f\x9b\xf1\x5c\x48\xf9\xdf\x03\xf9\x1b\x5e\xfe\x8a\ \x03\x00\x64\x6d\x38\x5e\xda\xbc\xc2\xb5\x61\xcb\x3f\xdc\x0f\x67\ \x0b\xfb\x37\xc8\x3a\xf6\x3c\xa9\x00\x00\x19\x82\xa7\x66\x9c\x3f\ \xd1\x19\x96\xfc\xbb\xc7\x4a\xee\xc3\xce\xdb\xfd\x01\xe0\x95\xf2\ \xdf\xf4\x95\xff\xb0\x42\xee\x9e\xa9\x6b\xf5\x95\x7f\xf6\x5a\xc8\ \x5f\x21\x4f\x36\x00\x40\xd6\x86\xe4\x0d\xff\x77\xc1\x93\x31\x95\ \x3f\xfd\x18\xb7\x6c\x69\x6a\xce\x06\xd7\x47\x90\x75\x6c\x79\xa1\ \x02\x00\x64\x08\x9e\x5a\xde\xe9\xfd\x6b\xc3\x94\x7f\xf7\xb8\xf0\ \xe6\x43\xfe\x00\xb0\xaa\xf6\x87\x01\xf2\x9f\xcf\x7d\x6b\xd2\x2c\ \xc8\xff\xac\x79\x5e\x2f\x92\x01\x00\xb2\x36\x26\xaf\xa0\xf0\xf4\ \x03\x7f\x7e\xe4\xfa\x98\xca\x5f\x58\x6d\x98\xbd\x6e\xc3\x02\xc8\ \x3a\xb6\xbc\x60\x01\x00\x32\x04\x2f\x1c\xde\x87\xfb\xc3\x97\x3f\ \x1d\x9f\xee\x7d\xc1\x5f\x2e\xb8\xbe\xf6\xdb\xc6\x93\xff\x9f\x72\ \x21\x7f\x15\xbc\x90\x01\x00\xb2\x36\x2c\x6f\xe4\xdc\xa2\x05\xba\ \xc8\x9f\x7e\xd3\x17\x17\x2d\xf9\x2d\x64\x1d\x5b\x5e\x60\x00\x80\ \x0c\xc1\x0b\x87\x77\xf8\xd0\x3b\x11\xc9\xdf\xb7\x73\xe0\xe8\x3c\ \x7f\xaf\x80\x15\x8b\x7e\xd0\x23\xff\x89\x90\xbf\xd9\xe4\x1f\x32\ \x00\x40\xd6\x86\xe6\x0d\x9f\xf1\xf2\xef\x74\x91\x3f\x1d\x43\x86\ \xdc\x7f\x75\x6e\xbd\xeb\x03\xc8\x3a\x76\x3c\x71\x00\x80\x0c\xc1\ \x0b\x97\x77\x6c\x7f\x6b\x44\xf2\xf7\x05\x80\x13\xb5\xfe\x5e\x01\ \x05\xa5\xff\x07\xf9\x1b\xb0\xbc\xaf\x1a\x5e\x9f\x00\x00\x59\x1b\ \x9a\x37\x72\x6e\xe1\xc1\x07\x1f\x7c\xe0\x2a\x5d\xe4\x2f\x5c\x76\ \x70\x34\x7b\x26\x41\xd6\xb1\xe3\x09\x01\x00\x32\x04\x2f\x12\xde\ \xa9\x7d\x6b\x22\x93\x3f\xbf\x7b\xe0\x08\x73\x8b\x2f\x00\x8c\x9c\ \xf9\x24\xf7\xad\x97\xba\xe5\x3f\x70\xdc\x3a\x6e\xd0\xf8\xb5\x31\ \x97\xff\xb7\x72\x20\xff\x48\x78\xbd\x02\x00\x64\x6d\x78\xde\x88\ \xb9\xf3\xe7\x45\x22\x7f\xc5\xbb\xff\x42\xc9\x9f\x7e\x7d\x7a\xb3\ \xe7\x4b\x90\x75\xec\x78\x34\x00\x40\x86\xe0\x45\xca\x3b\x77\x20\ \x72\xf9\xd3\x2b\x08\x47\x5a\xbe\xea\x0b\x00\x95\x35\x3f\xe7\x1a\ \x56\xdf\xcb\xed\x63\xbe\xe0\x5f\x18\x78\xa4\xe5\x7a\xce\xb3\xfe\ \x1e\x6e\x66\xf5\x23\xdc\xff\xe4\xcf\xe0\xfa\x3f\x5f\x1f\x45\xf9\ \xaf\xe3\x06\x3e\x0a\xf9\x47\xc2\xf3\x07\x00\xc8\xd5\x1c\xbc\x92\ \xca\x6f\x86\x2b\x7e\xbe\xee\x8f\xe2\x22\x41\x29\x52\xfb\x0c\xf3\ \x19\xb6\x19\xb2\x8e\x0d\x8f\x76\x03\x84\x0c\xc1\x8b\x84\x77\xe4\ \xf0\xbb\x9a\xc8\xdf\x17\x00\x5a\xef\xec\xd5\x25\x50\x6a\x6c\xae\ \xff\x3a\xf7\xfb\x59\x53\x2c\x27\xff\x27\xfe\x6d\x7e\xf9\xfb\x03\ \x00\xe4\x6a\x0e\x5e\x71\xb9\x27\x02\xf9\xc7\x2b\x0a\x00\xa2\x7e\ \xc2\xa9\x52\xfb\x0c\x1d\x8c\xf7\x09\xc8\x3a\x36\xbc\x82\x16\x16\ \x32\x04\x2f\x22\x1e\xdd\xff\xaf\x85\xfc\xe9\x38\xda\x72\xbb\x22\ \xf9\x8b\xc7\x82\xa5\xbf\xe4\xae\x7a\x71\x39\xe4\x6f\xb0\xd7\x0b\ \xed\x06\x08\xb9\x9a\x83\x97\x51\x5e\xf3\x64\x98\xf2\x17\xfa\xfd\ \x48\x07\x00\xfe\xc1\xc9\xfc\xd9\x7f\xaa\xd4\x56\x83\xac\xae\xae\ \x64\x87\xcb\xfb\x21\x64\x1d\x7d\x5e\x81\xdb\x03\x19\x82\x17\x11\ \xef\xe2\x89\x06\x4d\xe4\xff\xe1\x81\xc5\xdc\x99\x0f\xe6\x71\x67\ \xf7\xcc\xe7\xce\xbe\x5f\xc0\x9d\x7d\x8f\x54\x07\x7c\x67\x22\x77\ \xf6\xad\x61\xdc\xd9\xad\xbf\xe7\xce\x6e\xfa\x26\x11\xfe\xd5\x41\ \x43\x40\x67\xdd\xdd\xdc\x2d\xff\xaa\x84\xfc\x0d\xf4\x7a\x29\x5a\ \xdf\x00\xb9\x9a\x80\x97\x5e\x58\x71\x2c\xab\xb6\x76\x60\x18\xf2\ \x4f\xe4\xbb\xfd\x26\x48\x96\xfe\xe7\x1f\x9c\xc4\x9f\xfd\xa7\x88\ \x7a\x0b\x87\x4c\x0c\x4e\xb7\xf7\x55\xc8\x3a\xfa\x3c\x21\x00\x40\ \x86\xe0\x85\xcb\xa3\xf5\xff\x23\x95\x3f\xfd\xfc\xdc\x81\x45\xdc\ \xd9\x7d\x0b\xa5\xc7\x07\x85\xdd\x81\x60\xd3\xdd\x7e\xf9\x0b\x5b\ \x07\x5b\x57\x7d\x83\xbb\x66\xdc\x22\xdc\xf3\x37\xc8\xeb\xa5\x68\ \x5d\x3d\x64\x6d\x02\x5e\x46\x69\xcd\xcc\x30\x16\xf0\x27\xf1\xc3\ \x1f\x00\xe4\x92\xc2\x20\x51\x00\x90\xed\x2a\x34\x9d\xf1\x7c\x03\ \xb2\x8e\x3e\x8f\x06\x00\xc8\x10\xbc\x70\x79\xb4\xfe\xbf\x16\xf2\ \xff\xf8\xc8\x52\x79\xf9\xf7\x1a\x0b\xb8\xb3\xbb\x5e\xe0\xce\x78\ \xbf\xe2\xdf\x3a\x48\x47\xd9\x82\x5f\x42\xfe\x06\x79\xbd\x08\x01\ \x00\xb2\x36\x2e\x6f\x64\x61\xf9\xe5\x17\x4a\x17\x7c\x45\xa5\xfc\ \x93\x79\x9f\x0b\x01\x20\x5e\xee\x1e\x41\x92\x28\x00\x0c\x56\xba\ \xd5\xc0\xe1\x62\x5d\x90\x75\x74\x79\x74\x0d\x00\x64\x08\x5e\xb8\ \xbc\x8f\x4e\x6e\x8a\x58\xfe\x9f\x9d\x5c\xc1\x7d\xb8\x6f\x91\xca\ \x00\xb0\x90\x3b\xb3\x77\x01\x77\x64\x67\x11\x77\x98\xfd\x6f\x7f\ \x00\xa0\x61\xe0\x81\x19\xd9\xa6\x91\xbf\x59\x8b\xfc\x28\xe1\xd1\ \x00\x00\x59\x1b\x9c\x57\x5c\xde\xa8\x52\xfe\x82\xc3\x85\x00\x90\ \x20\x75\xe9\x3f\x9e\x4f\x08\x42\x00\x48\x56\xb3\xcf\x90\xdc\x06\ \xf8\x23\x64\x1d\x5d\x1e\xdd\x05\x00\x19\x82\x17\x2e\x4f\xe9\xfd\ \x7f\xa9\x2e\x81\x1f\x1d\x5a\x12\x9e\xfc\xdf\xa9\xe4\x0e\xef\xaa\ \xe0\x0e\xef\x2c\xf3\x85\x00\x61\xf7\x40\x67\xfd\xdd\x21\xb7\x08\ \x42\xfe\xb1\xe3\xd1\x35\x00\x90\xb5\xb1\x79\x63\xca\x6a\xfe\xa8\ \x42\xfe\xc2\xd5\x7b\x21\x00\x24\x4a\xc9\x3f\x8e\x4f\x07\x03\x45\ \xf7\x0b\x54\x15\x19\xc8\x62\x98\x78\xa7\xcb\xb3\x0f\xb2\x8e\x1e\ \x4f\xae\x1d\x30\x64\x08\x9e\x14\x4f\xc9\xfd\x7f\x29\xf9\x7f\x7a\ \x6c\x79\x64\xf2\xe7\xc7\x91\x5d\x85\xe4\x76\xc0\x97\xfd\xeb\x02\ \xfe\xcb\x39\x53\x46\xfe\xeb\x21\xff\x28\xf3\xe8\x2e\x00\xc8\xda\ \xb8\xbc\x91\x85\xa5\x07\xb2\x38\x6e\x80\x8a\xba\x3d\xa9\xa2\x00\ \x90\x24\xb7\xe8\x4f\x1c\x00\x12\x15\x57\x09\x0a\xbc\x0d\xd0\xec\ \x79\x11\xb2\x8e\x1e\x4f\x6d\x00\x30\xc2\x64\xf4\xe6\xce\x9d\x9c\ \x77\xd3\xa6\xa0\x83\xed\xec\xe4\xdc\x6d\x6d\x1c\xd3\xda\xea\x1f\ \xf4\x73\xfa\xf5\x50\xcf\x91\x1a\xe0\x85\xe6\x6d\x7d\xa3\x3d\x22\ \xf9\x5f\x21\xe3\xc3\x03\x8b\x22\x97\x3f\xf9\x9c\x7e\xfd\xec\xdb\ \xa3\xfc\x01\x60\x7a\xd5\xa3\x21\xe5\xff\xb5\x09\xcb\x75\xed\xea\ \x37\x24\xbb\x9c\x1c\xcf\xe8\xfc\x7d\x8d\xf4\xfe\x95\x6d\x07\x0c\ \x59\xeb\xca\xcb\x28\x5f\x90\xa3\xb2\x68\x9f\x10\x00\x92\x25\x7d\ \xce\x3f\x29\x4e\xb4\x47\xb0\x7f\xb8\xe5\x82\x47\x4d\x9f\x7d\x5b\ \x4e\x03\xf3\x09\x64\x1d\x1d\x9e\x9a\x00\x60\x94\x33\x91\x2d\x3b\ \x76\x70\x0c\x9d\x14\x03\x86\x8b\x4c\x8e\x0d\x4d\x4d\x5c\x43\x63\ \x63\xcf\x20\x9f\xd3\xaf\x07\x7b\xbc\xdc\x00\x4f\x9a\xb7\x77\x57\ \x5d\xd8\xf2\xf7\xb5\xff\x3d\x5c\xab\x9d\xfc\xe9\x63\xf6\x56\x72\ \x67\xd9\x1b\x7d\x01\xa0\x6d\xdd\xb7\x82\xca\xff\xae\x09\x0b\x89\ \xfc\x73\x74\x93\xff\x03\x59\x25\xe4\x78\x46\xef\xef\x6b\xa4\xf7\ \xaf\xea\x00\x00\x59\xc7\x8c\x37\xa2\xb0\xfc\xb3\x8c\xea\xea\x9b\ \x55\x56\xec\x4d\x55\xb4\x86\x4f\x14\x00\xe2\x23\x91\xbf\xf0\xcd\ \x7b\xda\x04\x43\xfe\x5a\xf3\x94\x06\x00\x23\x5d\x86\x0c\x16\x00\ \x20\xeb\xd8\xf3\x3e\x3c\x10\xbe\xfc\x3f\x3b\xb1\x42\x5b\xf9\x0b\ \xe3\xb5\xfb\x7c\x01\xe0\x70\xcb\x8d\x7d\xe4\xff\xed\x09\x0e\x6e\ \xe0\x23\x59\x96\x95\xbf\x54\x00\xd0\xe3\xfd\xab\x2a\x00\x40\xd6\ \xb1\xe5\x95\x54\x2d\x0f\xa3\x5c\x7f\x8a\x9a\x72\xbf\x71\x5a\xc8\ \x9f\x8e\x17\xaa\x16\xfc\x37\x64\x1d\x1d\x9e\x92\x00\x60\xb4\x7b\ \x90\x81\x01\x00\xb2\xd6\x87\x77\xe9\xc4\xca\xb0\xe4\xcf\x9d\x5a\ \x45\xf6\xfc\x2f\xd6\x5e\xfe\x74\x6c\xfd\xa3\xff\x36\x40\x02\x69\ \x22\x24\x96\x7f\xa2\xc5\xe5\x1f\x2a\x00\xe8\xf5\xfe\x55\x1c\x00\ \x20\xeb\x98\xf3\xc6\x54\x2c\xf8\x5e\x38\xbd\x7a\xb4\xed\x0a\xa4\ \xe2\x9b\x3b\x5d\xac\x07\xf2\xd7\x9e\x27\x17\x00\x8c\xb8\x00\x49\ \x1c\x00\x20\x6b\x7d\x78\x9b\x37\x31\xe1\xc9\x9f\x8c\x4f\x54\xec\ \xf9\x57\x25\x7f\x3a\xb6\x3f\xe1\x0f\x00\x71\xcf\xd7\xd9\x4a\xfe\ \xc1\x02\x80\x9e\xef\x5f\x45\x01\x00\xb2\x8e\x39\x2f\xbd\xb4\xca\ \x15\x35\xf9\x47\xa3\x45\x30\xfd\x7a\x3e\xe3\x79\x10\xf2\xd7\x9e\ \x27\x15\x00\x8c\xba\xfa\x58\x08\x00\x90\xb5\x7e\xbc\x60\xf7\xff\ \x95\xc8\xff\x32\xd9\xf3\x7f\x76\x7f\x94\xe4\xef\x0b\x00\x7f\xf1\ \xc9\x7f\x8f\xeb\x8b\xb6\x93\x7f\x60\x00\xd0\xfb\xfd\x2b\x1b\x00\ \x20\x6b\x5d\x78\x19\x15\x8b\xfe\x9f\xa9\xe4\xef\xdb\x12\x48\xb6\ \x2b\x38\x19\xcf\x9b\x90\xbf\xb6\xbc\x50\x01\xc0\xc8\x5b\x8f\x68\ \x00\x80\xac\xf5\xe5\x05\xde\xff\x57\x22\x7f\x3a\xce\x1f\x5c\x1c\ \x3d\xf9\xd3\xb1\xe5\x7e\x5f\x00\xa8\x27\xad\x84\xbf\x35\xc1\x69\ \x2b\xf9\x8b\x03\x80\x11\xde\xbf\x92\x01\x00\xb2\xd6\x85\x97\x36\ \xbf\xf2\x0d\x8e\xe3\xfa\x9b\x4a\xfe\x3d\x6d\x82\x3b\x9e\x84\xfc\ \xb5\xe5\x05\x0b\x00\x46\xdf\x77\xfc\xc6\xf6\xed\x90\xb5\xce\x3c\ \xf1\xfd\x7f\xa5\xf2\xbf\x78\x74\x59\x74\xe5\x4f\x47\xd7\x0f\x7c\ \x01\x60\xe1\xa2\xff\xe2\x46\xe7\x3f\xc0\x95\x95\xdc\xcb\x6d\x5c\ \x72\x17\xd7\xbc\xf8\x0e\x6e\x6d\xcd\xdd\xdc\xfc\xf9\x3f\xe2\x86\ \x4d\x1e\xc2\xdd\xf1\xf7\x51\x51\x95\xff\xfd\x93\x8a\x63\x2e\x7f\ \x21\x00\x18\xe5\xfd\x1b\x32\x00\x40\xd6\xba\xf1\x32\x4a\xaa\x1e\ \x37\xa5\xfc\xe9\x47\x61\x57\x57\x82\xc3\xed\xdd\x03\xf9\x6b\xc7\ \x0b\x0c\x00\x66\x28\x3a\xd2\xd1\xd5\x05\x59\xeb\xc8\xdb\xbc\xc9\ \xa5\x5a\xfe\xf4\x73\x25\xe5\x7e\x23\x92\xff\xde\x1a\xff\x36\xc0\ \xc0\x46\x41\x42\xa9\x60\xa1\x5c\x30\xfd\x7a\xfd\x92\xaf\x73\xff\ \x9d\xf1\xb4\x65\xe4\x4f\x87\x91\xde\xbf\x41\x03\x00\x64\xad\x1f\ \xaf\xa4\xe2\xfd\xc0\xc2\x3f\xa6\x91\xbf\xff\x2a\x80\xdb\x3b\x1c\ \xf2\xd7\x8e\x27\x0e\x00\x66\xa9\x38\xd6\xb1\x79\x33\x64\xad\x23\ \x6f\xef\xae\xf5\xaa\xe4\x4f\x87\x92\x72\xbf\x11\xc9\x9f\x8e\x77\ \xa7\xfa\xda\x05\x9f\xf6\xde\xc1\x9d\xec\xbc\x97\x3b\xe6\xfd\x29\ \xb7\xcf\xfd\x23\x6e\xbf\xeb\x2e\xee\x50\xd3\xf5\xbd\xe4\x2f\x0e\ \x09\xc5\xc5\x3f\xe2\x52\xfe\xfc\x92\xe9\xe5\x4f\x9f\x67\xa4\xf7\ \x6f\x9f\x00\x00\x59\xeb\xca\xcb\x28\xab\x4e\x37\xb5\xfc\xe9\xc7\ \x4c\x96\x1d\x94\xef\xf6\x1c\x81\xfc\xb5\xe1\x09\x01\xc0\x4c\xe5\ \x46\xfd\x01\x00\xb2\xd6\x85\xf7\xe1\x41\x75\xf2\x57\x52\xee\x37\ \x52\xf9\x9f\xde\xb3\x80\x3b\xb0\x6d\x16\xf7\xee\x6b\xb3\xb8\x77\ \x5e\x9b\xc7\xed\xea\x9a\xcb\x6d\x63\x67\x73\x5b\x3d\xdd\x63\x5b\ \xfb\x0c\x6e\x57\xdb\x08\xee\x28\xfb\x23\x5f\x48\x10\x07\x00\x3a\ \x3a\x56\x7f\x85\xbb\xf9\xaf\xe3\x4d\x2d\x7f\xfa\x7c\x23\xbd\x7f\ \x7b\x05\x00\xc8\x5a\x57\x5e\x7a\x61\xc5\xb1\xac\xf2\xf2\xa4\x68\ \xca\x5f\xf1\xee\xbf\x48\xbf\x39\x11\xd7\x78\xc8\x5f\x1b\x1e\x0d\ \x00\x66\xab\x35\xee\x0b\x00\x90\xb5\x6e\xbc\x4f\x8f\xaf\x50\x2c\ \x7f\x5f\xb9\xdf\xfd\x8b\xa2\x2a\xff\x23\xbb\xca\xb9\x77\x5f\x7f\ \xd5\x27\xfe\x60\xf2\xf7\x05\x00\xf2\x39\xfd\x3a\xfd\xf7\xf7\x37\ \x4f\xe2\x8e\xb3\xf7\xf4\x09\x01\x9b\x48\x08\xb8\xea\x2f\x13\x4c\ \x2b\x7f\xca\x31\xd2\xfb\xd7\x1f\x00\x20\x6b\xdd\x79\xe9\x65\x35\ \xd9\xd1\x92\xbf\xa8\xf4\xbf\xe2\x22\x41\x29\x91\x7c\xf3\xd9\x1d\ \x1d\xa9\xe4\x2a\xc0\x19\xc8\x3f\x72\x1e\xed\x06\x68\xb6\x46\x23\ \x74\x0d\x00\x64\xad\x0f\x6f\x53\x67\xb3\x62\xf9\x2b\x29\xf7\x1b\ \x89\xfc\x4f\xbe\x5f\xcd\x7d\xb0\xb5\xc8\x2f\x7e\x25\xf2\xef\x19\ \x05\xdc\xc1\xce\x3f\xf6\x09\x01\x8b\x2a\xbf\x6b\x5a\xf9\x0b\x01\ \xc0\x28\xef\x5f\x5f\x00\x80\xac\x75\xe7\x8d\x2c\x2c\x3b\x9f\x59\ \xbc\xe4\xda\x28\xca\x3f\x5e\x51\x00\x10\xf5\x13\x4e\x8d\xf4\x9b\ \x3b\xdd\x6c\x0e\xe4\x1f\x39\xaf\xa0\x85\x35\x5d\x97\x31\xba\x0b\ \x00\xb2\xd6\x87\xb7\x6b\xeb\x4a\xc5\xf2\x97\x2b\xf7\x1b\xae\xfc\ \xe9\xbf\x1f\x7c\xab\x2c\x40\xe8\x6a\xe4\xdf\x33\xf6\x77\x3e\xd5\ \x27\x04\x0c\x79\xe1\x09\x53\xca\x9f\x0e\x23\xbd\x7f\x69\x37\x40\ \xc8\x5a\x7f\x5e\x7a\x59\xd5\x8c\x28\xca\x5f\xe8\xf7\x23\x1d\x00\ \xf8\x07\x27\xf3\x67\xff\xa9\x91\x7e\xf3\xdc\xb5\xae\x1b\x89\x00\ \xcf\x43\xfe\x91\xf1\x0a\xdc\x1e\xd3\xb5\xa4\x0d\xd5\x0c\x08\xb2\ \x8e\x3e\xef\xc8\xbb\xca\xe4\xdf\x5d\xee\x77\x91\xe6\xf2\x3f\xbe\ \xbb\x8a\xdb\xfd\xc6\x7c\x4d\xe4\x2f\x8c\x43\x1d\x0f\xf5\x0a\x00\ \x9b\xd7\xdc\xc6\x0d\x78\x68\xb2\xe9\xe4\x4f\x3f\x37\xd2\xfb\xb7\ \x68\x7d\x03\x64\xad\x33\x2f\xad\xa8\xe2\xf4\x0b\x0b\x16\x5c\x13\ \x25\xf9\x27\xf2\xdd\x7e\x13\x24\x4b\xff\xf3\x0f\x4e\xe2\xcf\xfe\ \x53\x44\xbd\x85\x07\x44\xb2\x80\x70\xca\x9a\xfa\x7c\xc8\x3f\x32\ \x9e\x10\x00\xcc\xd4\x8f\x5e\x6d\x00\x80\xfc\xb5\xe3\x9d\xdd\xb7\ \x58\x5e\xfe\x32\xe5\x7e\xc3\x91\x3f\x5d\xe4\xb7\xff\xcd\x92\xa0\ \x02\x8f\x44\xfe\xdd\x63\x2e\x59\x13\xf0\xad\x5e\x5b\x07\xff\x7b\ \xd4\x3f\x4c\x27\x7f\xfa\x75\x23\xbd\x7f\x8b\xd6\xd5\x43\xd6\x7a\ \xf3\x4a\x6a\xa6\x44\x41\xfe\x03\x78\x9f\x27\x89\x03\x80\x5c\x52\ \x18\x24\x0a\x00\x29\x91\xca\x9f\xfe\x12\xff\x9c\x98\x73\x6b\x4e\ \xbd\xeb\x14\xe4\x1f\x3e\x8f\x06\x00\x33\xc9\x5f\x6d\x00\x80\xfc\ \xb5\xe3\xb5\xb5\xd6\x29\x92\xff\xe5\x93\x2b\x43\x96\xfb\x0d\x47\ \xfe\x47\xde\xa9\xe0\xde\x7b\x7d\x7e\x94\xe4\x3f\xcf\xbf\x30\x90\ \xee\x0e\x10\xea\x06\xe4\xcd\xfa\xb9\xe9\xe4\x2f\xd7\x0e\x38\xd6\ \xef\x5f\x21\x00\x40\xd6\xfa\xf0\xe8\xca\xff\x11\xaf\xbc\xf2\xb9\ \x28\xc8\x3f\x99\xf7\xb9\x10\x00\xe2\xe5\xee\x11\x24\x89\x02\xc0\ \x60\x2d\xe4\x2f\x8c\x29\xab\xeb\x5f\x82\xfc\xc3\xe7\xd1\x35\x00\ \x66\x92\x3f\x78\xfa\xf1\x8e\xed\x6f\x91\x95\xbf\x54\xb9\x5f\xb5\ \xf2\xa7\x8b\xfc\xf6\x6c\x2b\x0a\x29\x6d\xad\xe4\x2f\x0c\xba\x45\ \x50\x28\x1a\xd4\xb0\xf0\xae\xa0\xf2\x7f\x72\xf6\x0a\x72\x5c\xf0\ \x7a\x51\xc2\xa3\x01\x00\xb2\xd6\x91\x57\x54\x39\x2e\x0a\xf2\x17\ \x1c\x2e\x04\x80\x04\xa9\x4b\xff\xf1\x7c\x42\x10\x02\x40\xb2\x96\ \xf2\xa7\x9f\x67\x2d\x5f\x36\xd8\xc1\x78\x0f\x42\xfe\xe1\xf1\xe8\ \x2e\x00\xc8\x10\x3c\x25\xbc\xd3\xfb\xd7\xc8\xca\xff\xe2\xb1\x65\ \x11\xcb\x9f\x7e\xed\xd0\xdb\x65\xbd\xb6\xf6\x45\x5b\xfe\xf4\x79\ \xb4\x4e\x80\x50\x2d\xf0\xed\xf5\x37\x43\xfe\x11\xf2\xe8\x1a\x00\ \xc8\x5a\x27\xde\xfc\xb2\x83\x7f\x78\xee\x99\xeb\x35\x96\xbf\x70\ \xf5\x5e\x08\x00\x89\x52\xf2\x8f\xe3\xd3\xc1\x40\xd1\xfd\x02\x4d\ \xe5\x2f\xf0\x9c\x2d\xec\xb3\x90\x7f\x78\x3c\xb9\x76\xc0\x98\xdc\ \xc0\x13\x78\x9f\x9d\x90\x96\x7f\xa8\x72\xbf\x6a\xe4\x4f\x17\xf9\ \xbd\xbf\xa5\x50\x56\xd6\x5a\xcb\x9f\x3e\x9f\x16\x0b\x3a\xcc\x57\ \x0c\x3c\x48\xfe\xdb\x4b\xfe\x2f\xd7\x42\xfe\x2a\x79\x74\x17\x00\ \x64\xad\x17\xaf\x30\x53\x63\xf9\x0b\xeb\xf6\x84\x00\x90\x24\xb7\ \xe8\x4f\x1c\x00\x12\x15\x57\x09\x0a\xa3\x68\x10\xdf\x23\xe0\x3d\ \xc8\x5f\x3d\x4f\x6d\x00\xc0\xe4\x66\x4f\xde\x99\xd3\xfb\x24\xe5\ \x1f\xaa\xdc\xaf\x52\xf9\x4b\x2d\xf2\x8b\x85\xfc\x05\xd6\xfe\xe6\ \x3b\xbb\x6f\x03\x30\xd7\xf9\xe5\xff\xc4\x8c\x4a\xc8\x3f\x0c\x9e\ \x6c\x3b\x60\xc8\x3a\x2a\xbc\xe1\x05\x45\x1f\x3c\xf8\xe0\x03\xd7\ \x69\x2c\xff\xab\x44\x01\x20\x59\xd2\xe7\xfc\x93\xe2\x44\x7b\x04\ \xa3\x26\x7f\xe1\xc3\xe1\x66\x1f\x83\xfc\xd5\xf3\xd4\x04\x00\x4c\ \x6e\xf6\xe5\x7d\x74\xb2\x53\x52\xfe\x9f\x06\xb9\xf4\xaf\x54\xfe\ \x47\xdf\xad\x0c\xb9\xc8\x2f\x96\xf2\xa7\x63\xaf\xfb\x5e\xdf\x42\ \xc0\x2d\xeb\xbe\xd4\x2d\xff\x69\x05\x90\x7f\x98\x3c\xd5\x01\x00\ \xf2\xd7\x84\x37\xfc\xdf\xf3\x86\x45\x41\xfe\x02\x6b\xb0\xd2\x82\ \x3f\x71\xfc\x1a\x80\xa8\xcb\x9f\x7e\xd0\x2e\x47\x0e\xc6\xb3\x15\ \xf2\x57\xc7\x53\x1a\x00\x30\xb9\xd9\x9b\xe7\x7c\x25\x87\x9b\x53\ \x38\x95\x3b\xbd\x6f\x89\xa2\x72\xbf\x4a\xe4\x7f\xea\x83\x1a\x6e\ \xef\xf6\xe2\xb0\x65\xad\xb5\xfc\xe9\xe7\x47\xd8\x1f\xfb\xb6\x02\ \xd6\x94\x7f\x9f\x7b\x2c\x37\x07\xf2\x8f\x80\xa7\x2a\x00\x40\xfe\ \xda\xf0\xe6\xbd\xfa\xf6\x90\x21\xf7\x5f\x1d\x05\xf9\x5f\xa5\x78\ \xf7\x9e\x28\x00\xc4\x44\xfe\xfe\xab\x00\xae\x8e\xfb\x21\x7f\x75\ \x3c\x25\x01\x00\x93\x1b\x78\x0f\xfc\xfd\x19\xee\x7b\xbf\x7b\x82\ \xfb\xef\x3f\xfd\x9d\x2b\xaf\x76\x92\xc5\x7e\x2b\x42\x96\xfb\x55\ \x22\xff\xc3\x3b\xcb\x25\x17\xf9\xe9\x21\x7f\xfa\xf5\xe3\xde\xef\ \x71\x67\xda\xaf\xe7\x36\xd4\x3d\x07\xf9\x47\xc8\x53\x1c\x00\x20\ \x7f\xcd\x78\xc3\x5e\x9e\xf3\x58\x94\xe4\xaf\x9c\x17\xae\xf8\x23\ \xfd\xe6\x1c\xc7\xf5\xcf\x77\x79\x36\x42\xfe\xca\x79\x72\x01\x00\ \x93\x1b\x78\x3b\xdf\xdb\xee\x93\xbf\x78\xfc\xf1\x99\xe7\xb8\xad\ \x9b\xcb\xb8\x4b\x01\xe5\x7e\xe5\xe4\x7f\x82\x6c\xed\x93\x5b\xe4\ \x17\x6b\xf9\x6f\xf7\xce\xe5\xde\x7f\x73\x19\x77\xe0\x83\x36\xee\ \xf8\xbe\x0d\xdc\xc9\x53\x47\xf0\x7a\xd1\x80\xa7\x28\x00\x40\xfe\ \x9a\xf1\x9e\x9b\x33\xdf\xad\xbb\xfc\xf5\x68\x11\x2c\xfe\x98\xde\ \xda\xf1\x75\xb2\x20\xf0\x12\xe4\xaf\x8c\x27\x15\x00\x30\xb9\x81\ \x47\xc7\xf2\x35\xe5\x7d\x02\x00\x1d\x3f\x18\xf2\x24\x57\x54\x36\ \xd5\x2f\x77\x29\xf9\xd3\x71\xe0\xad\x52\xcd\xce\xd4\x23\x5a\xed\ \xef\x9d\xc7\xbd\xfd\xfa\x62\xee\xbd\x9d\x2e\x6e\xef\xde\xb7\xf0\ \x7a\x89\x12\x4f\x36\x00\x40\xfe\x1a\xf2\x0a\x3f\x1d\x9a\x9d\xfb\ \x43\x5b\xcb\xdf\xdf\x2e\x98\x61\x67\x43\xfe\xca\x78\xa1\x02\x00\ \x26\x37\xf0\x84\x31\x29\x7f\x52\xd0\x00\x20\x8c\x97\xf2\x5e\xf0\ \x15\xed\x09\x25\x7f\xa5\x8b\xfc\xa2\x25\xff\xf7\xde\x28\xe1\x3e\ \x78\x7b\x25\xb7\x7b\x97\x9b\xfb\x60\xcf\x9b\xe4\x77\x3d\x84\xbf\ \x6f\x0c\x78\x92\x01\x00\xf2\xd7\x94\x97\x36\xaf\xb0\x10\xf2\x17\ \x16\x04\xae\x5f\x77\x5d\xee\x86\xe6\x93\x90\xbf\x3c\x2f\x58\x00\ \xc0\xe4\x06\x9e\x78\xfc\x8e\xbf\xff\x2f\x35\x9e\x9f\x3c\x96\x3b\ \xb8\xb3\xb7\xfc\x69\x28\x50\xba\xc8\x4f\x4b\xf9\xbf\xf7\x46\x29\ \xb7\x77\xd7\x1a\xee\xe0\xde\x0e\xee\xe8\xb1\x0f\xf0\xf7\xd5\x89\ \x17\x32\x00\x40\xfe\x9a\xf2\x46\xce\x29\x3a\xfe\xf8\xd8\xd1\xb7\ \x42\xfe\x22\xde\xe4\x15\xeb\x32\x21\x7f\xaf\xea\x00\x80\xc9\x0d\ \x3c\xf1\xd8\xf5\xde\x36\x59\xf9\x7f\xff\x77\x8f\x71\xdf\x7f\xe0\ \x31\xce\x39\x6b\x82\x5f\xfe\x72\x95\xfc\xb4\x94\xff\x7b\x5b\xca\ \x88\xf0\xd7\x71\x87\xf6\x6d\xe2\x8e\x1f\xdf\x8b\xbf\xaf\x41\x78\ \x41\x03\x00\xe4\xaf\x39\x6f\x44\x41\x51\x06\xe4\x1f\xc0\x7b\xf8\ \xe1\x07\xaf\xcd\xae\x6b\xdc\x01\xf9\x2b\x0f\x00\x98\xdc\xc0\x0b\ \x1c\x2b\xd6\x54\x28\x92\xbf\x30\x96\xd5\xe6\xab\x5a\xe4\x17\x8e\ \xfc\xdf\xdd\x52\xce\x0b\x7f\x33\x11\xfe\x3e\xfc\x7d\x0d\xca\xeb\ \x13\x00\x20\xeb\x28\xf0\x8a\xb6\x3f\x55\x56\x1c\x0f\xf9\x07\xe1\ \x4d\x58\xbc\xe2\xb7\x90\xbf\xb2\x00\x80\xc9\x0d\xbc\x60\x23\x6b\ \x5a\x96\x62\xf9\xd3\xcf\xe9\x36\xc1\x4d\x2d\xb3\x35\x95\xff\xee\ \x2d\x15\xdc\xbe\x77\xea\xb8\x23\x07\x5e\xe3\x8e\x9f\x3c\x80\xbf\ \xaf\x49\x78\xbd\x02\x00\x64\x1d\x15\x5e\x7a\x51\xd9\xcf\x8d\x22\ \x7f\xc5\xbb\xff\x62\x21\x7f\x81\x97\xef\x66\x97\x42\xfe\xd2\x01\ \x00\x93\x1b\x78\xa1\xc6\xef\x87\x3e\xab\x58\xfe\xc2\xbf\x8d\x18\ \x9f\x1e\x91\xfc\x77\x74\x92\x92\xc0\xdb\xd6\x70\x87\xf6\x53\xe1\ \x1f\xc2\xdf\xc3\xa4\x3c\x7f\x00\x80\xac\xa3\xc2\x4b\x2b\xae\x58\ \x66\x90\x93\x6f\xa1\xf4\xbf\xe2\x22\x41\x29\xb1\x90\xbf\xaf\x38\ \x10\xe3\xfd\x32\x11\xdd\xc7\x90\x7f\xf0\x41\xbb\x01\x62\x72\x03\ \x2f\xd8\x78\x67\xf7\x76\xd5\xf2\x17\xc6\xf2\xa5\x79\x8a\xe5\xbf\ \xa3\xb3\x94\xdb\xb5\x75\x35\xb7\xfb\x5d\x96\xdb\xbb\xff\x3d\xfc\ \x3d\x2c\xc2\xf3\x05\x00\xc8\x3a\x2a\xbc\x91\xf3\xcb\xce\x8f\x2e\ \x5b\x74\xab\x41\xe4\x1f\xaf\x28\x00\x88\xfa\x09\xa7\xc6\x42\xfe\ \xc2\x87\x93\xf1\xbe\x00\xf9\x07\xe7\x15\xb4\xb0\x98\xdc\xc0\x0b\ \x3a\x56\xae\xad\x0a\x4b\xfe\x74\x3c\x38\xf4\x19\x6e\x67\x88\x85\ \x7b\xbb\xb7\x93\xc6\x3f\xef\x35\x72\x87\x0e\x6c\xe1\x0e\x1c\xfc\ \x00\x7f\x0f\x8b\xf2\x68\x37\x40\xc8\x3a\x4a\xbc\x92\x9a\x29\x06\ \x91\xbf\xd0\xef\x47\x3a\x00\xf0\x0f\x4e\xe6\xcf\xfe\x53\x63\x59\ \xb1\x88\x76\x0b\x24\xb7\x02\xb6\x40\xfe\x7d\x79\x05\x6e\x0f\x26\ \x37\xf0\x82\x8e\x99\x73\x9d\x61\xc9\x5f\x18\x25\x65\x93\x7d\xc2\ \x7f\x7f\xfb\x42\x6e\xff\xbb\x8d\xdc\xe1\x43\xdb\xb8\x13\xa7\x8f\ \xe1\xef\x61\x13\x5e\xd1\xfa\x06\xc8\x3a\x3a\xbc\x37\x9f\x29\x2c\ \x4c\x30\x80\xfc\x13\xf9\x6e\xbf\x09\x92\xa5\xff\xf9\x07\x27\xf1\ \x67\xff\x29\xa2\xde\xc2\x31\xdb\xba\x90\xe7\xf6\xfc\x80\x94\x09\ \xbe\x0c\xf9\xf7\xe6\x09\x01\x00\x93\x1b\x78\x81\xa3\xa4\xba\x40\ \xb5\xfc\xbf\xff\xfb\x27\xb9\x87\x9e\x19\xce\x4d\x9e\x9e\xc7\x6d\ \x64\xd6\xfb\x85\x8f\xbf\x87\xfd\x78\x45\xeb\xea\x21\x6b\x8d\x79\ \x23\x8a\x2a\x2e\x8f\xa9\x5a\x78\xaf\x01\x16\xdc\x27\xf1\xc3\x1f\ \x00\xe4\x92\xc2\x20\x51\x00\x48\xd1\x63\xdf\x22\x91\xdf\xcb\x90\ \x7f\x6f\x1e\x0d\x00\x98\xdc\xc0\x0b\x36\xde\xfd\x60\x27\x77\xdf\ \x43\x7f\x93\x94\x3f\x15\xfe\xc3\xcf\x0e\xe7\xa6\xcc\x74\x70\xab\ \xea\x57\x71\x1f\xec\xdf\x83\xe3\x07\x9e\x8f\x23\x04\x00\xc8\x5f\ \x3b\xde\xe8\xf2\xea\x39\x06\x90\x7f\x32\xef\x73\x21\x00\xc4\xcb\ \xdd\x23\x48\x12\x05\x80\xc1\x7a\x15\x2d\xc8\x62\x98\x14\xd2\x27\ \x60\x0f\xe4\xdf\xc3\xa3\x6b\x00\x30\xb9\x81\x17\x8a\xb7\x6e\xe3\ \x7a\xee\x7f\xfe\xf4\x37\xbf\xfc\x7f\x48\xe4\xff\xc8\xb0\x91\x5c\ \xf6\xac\x7c\x6e\x75\xc3\x1a\x6e\xcf\xc1\xfd\x38\x7e\xe0\x05\xe5\ \xd1\x00\x00\xf9\x6b\xc7\x4b\x2b\x2c\xdf\x33\xa6\xaa\x6a\xb0\xce\ \xf2\x17\x1c\x2e\x04\x80\x04\xa9\x4b\xff\xf1\x7c\x42\x10\x02\x40\ \xb2\xde\x15\x8b\x9c\x6e\xef\x6f\x20\xff\x1e\x1e\xdd\x05\x80\xc9\ \x0d\x3c\x29\xde\x7b\x7b\xf7\x72\x6b\x49\x10\xa8\x6b\x5a\xc7\xed\ \x3d\x7c\x10\xc7\x0f\x3c\x45\x3c\xba\x06\x00\xf2\xd7\x8e\x97\x5e\ \xb9\xe0\x57\x3a\xcb\x5f\xb8\x7a\x2f\x04\x80\x44\x29\xf9\xc7\xf1\ \xe9\x60\xa0\xe8\x7e\x81\x21\xca\x15\x3a\x5c\x9e\x45\x90\x7f\x37\ \x4f\xae\x1d\x30\x26\x37\xf0\xc0\x03\x2f\x1c\x1e\xdd\x05\x00\xf9\ \x6b\xc4\x2b\xad\xae\x31\x40\x91\xbd\x54\x51\x00\x48\x92\x5b\xf4\ \x27\x0e\x00\x89\x8a\xab\x04\xc5\xe0\x97\x19\x39\x6b\xce\x7f\xe6\ \xd6\xb9\x4e\xa3\x57\x80\x57\x75\x00\xc0\xe4\x06\x1e\x78\xe0\x29\ \xe1\xc9\xb6\x03\x86\xfc\x15\xf1\x46\x14\x56\x1c\xcb\x2c\x5e\x72\ \xad\x01\x8a\xec\x09\x01\x20\x59\xd2\xe7\xfc\x93\xe2\x44\x7b\x04\ \x0d\x23\x7f\x81\x37\x69\xe5\x9a\xe7\xd0\x28\x48\x5d\x00\xc0\xe4\ \x06\x1e\x78\xe0\x29\xe5\xa9\x0e\x00\x90\x7f\x50\xde\x98\xaa\x05\ \x7f\x36\x48\x85\xdd\x54\x45\x6b\xf8\x44\x01\x20\xde\x88\xf2\xa7\ \x63\xc8\x90\xfb\xaf\x9e\x5a\xdf\xb4\xce\xee\xbd\x02\x94\x06\x00\ \x4c\x6e\xe0\x81\x07\x9e\x1a\x9e\xaa\x00\x00\xf9\x07\xe7\x95\x56\ \xae\x33\x50\x79\xfd\x14\x35\xe5\x7e\xe3\x8c\x2a\x7f\x81\x97\xbb\ \x61\xc3\xe7\x49\xa9\xe0\xa3\x76\xee\x15\xa0\x24\x00\x60\x72\x03\ \x0f\x3c\xf0\xd4\xf2\x14\x07\x00\xc8\x3f\x38\xaf\xb0\xfc\x54\x5a\ \x51\xf5\x2d\x46\xea\xad\xa3\x6d\x57\x20\x03\xfc\x32\x0e\x37\xfb\ \x3b\x3b\x37\x0a\x92\x0b\x00\x98\xdc\xc0\x03\x0f\xbc\x70\x78\x8a\ \x02\x00\xe4\x1f\x92\x37\xba\xac\xe6\x51\xd3\xc9\xdf\xe8\x2d\x82\ \x83\xf1\x48\x99\xe0\x22\xbb\xf6\x0a\x90\x0a\x00\x98\xdc\xc0\x03\ \x0f\xbc\x70\x79\xb2\x01\x00\xf2\x0f\xc9\x4b\x2b\xae\xae\x84\xfc\ \x63\xf4\xcb\xd0\x02\x41\xf9\x0c\xbb\xdb\x8e\xbd\x02\x42\x05\x00\ \x4c\x6e\xe0\x81\x07\x5e\x24\x3c\xc9\x00\x00\xf9\x87\x96\x7f\x61\ \xc5\xee\xe1\xb5\xb5\x29\x90\x7f\x0c\x7f\x99\x69\x2e\xf6\x3e\x3b\ \xf6\x0a\x08\x16\x00\x30\xb9\x81\x07\x1e\x78\x91\xf2\x42\x06\x00\ \xc8\x3f\x24\x6f\x44\x61\xf9\x67\x72\xb5\xfe\x21\xff\x28\xf1\x48\ \xdb\xe0\x5c\xbb\xf5\x0a\x08\x0c\x00\x98\xdc\xc0\x03\x0f\x3c\x2d\ \x78\x41\x03\x00\xe4\x2f\xc9\x4b\x2f\xad\x9e\x0c\xf9\xeb\xd5\x2b\ \x60\xc7\x8e\x81\xf9\x2e\xef\xeb\x76\xea\x15\x20\x0e\x00\x98\xdc\ \xc0\x03\x0f\x3c\xad\x78\x7d\x02\x00\xe4\x2f\xc9\x4b\x2b\xaa\x62\ \xb3\x38\x6e\x00\xe4\xaf\x23\x2f\x97\xf1\xdc\xe9\x70\x7b\xce\xdb\ \xa5\x57\x80\x10\x00\x30\xb9\x81\x07\x1e\x78\x5a\xf2\x7a\x05\x00\ \xc8\x5f\x5a\xfe\xc5\x95\x67\x26\xd4\x2c\xfb\x92\x99\xe5\xaf\x78\ \xf7\x9f\xd1\x7f\x99\xdc\xe6\xb6\xc7\xed\xd2\x2b\x80\x06\x00\x4c\ \x6e\xe0\x81\x07\x9e\xd6\x3c\x7f\x00\x80\xfc\x65\x79\x99\xa5\x0b\ \xfe\x6a\x56\x5f\x8a\x4a\xff\x2b\x2e\x12\x94\x62\xe0\x5f\xc6\xc7\ \xcb\x5e\xbb\xb1\xcc\x0e\xbd\x02\x68\x37\x40\x4c\x6e\xe0\x81\x07\ \x9e\xd6\x3c\x5f\x00\x80\xfc\x65\x79\x19\x25\x55\x8b\x4d\x2e\xff\ \x78\x45\x01\x40\xd4\x4f\x38\xd5\xc8\xf2\xa7\x9c\x47\xd3\x86\xdf\ \x94\x5d\xdf\xbc\xcd\xea\xbd\x02\x0a\x5a\x58\x4c\x6e\xe0\x81\x07\ \x9e\xe6\x3c\xda\x0d\x10\xf2\x97\xe6\x8d\x2c\xaa\xd8\x19\x6a\xcb\ \x9f\x49\xe4\x2f\xf4\xfb\x91\x0e\x00\xfc\x83\x93\xf9\xb3\xff\x54\ \x23\xcb\x5f\x18\x63\x4a\x2a\xbe\xed\x70\xb5\x9f\xb5\x72\xaf\x80\ \x02\xb7\x07\x93\x1b\x78\xe0\x81\xa7\x39\xaf\x68\x7d\x03\xe4\x2f\ \xc5\x2b\x2e\x3f\x97\x56\x5a\xfd\x75\x13\xcb\x3f\x91\xef\xf6\x9b\ \x20\x59\xfa\x9f\x7f\x70\x12\x7f\xf6\x9f\x22\xea\x2d\x6c\x58\xf9\ \x0b\xbc\x69\x2e\xef\x43\x56\xee\x15\x20\x04\x00\x4c\x6e\xe0\x81\ \x07\x9e\x96\xbc\xa2\x75\xf5\x90\xbf\xc4\xf3\x42\x95\xfa\x35\x81\ \xfc\x07\xf0\x3e\x4f\x12\x07\x00\xb9\xa4\x30\x48\x14\x00\x52\xcc\ \x20\x7f\x7f\xa9\x60\x86\x9d\x6d\xd5\x5e\x01\x34\x00\x60\x72\x03\ \x0f\x3c\xf0\xb4\xe6\x09\x01\x00\xf2\x0f\xb2\xe8\xaf\xac\x7a\x96\ \x89\xe5\x9f\xcc\xfb\x5c\x08\x00\xf1\x72\xf7\x08\x92\x44\x01\x60\ \xb0\x99\xe4\xef\xaf\x0f\xc0\x78\x3b\xad\xd8\x2b\x80\xae\x01\xc0\ \xe4\x06\x1e\x78\xe0\x69\xcd\xa3\x01\x00\xf2\x0f\x32\x4a\x2a\x5b\ \xb3\xb2\xb2\xe2\x4d\x2a\x7f\xc1\xe1\x42\x00\x48\x90\xba\xf4\x1f\ \xcf\x27\x04\x21\x00\x24\x9b\x4d\xfe\xc2\xc7\xf4\x66\xcf\x97\xf2\ \xdd\x9e\x13\x56\xeb\x15\x40\x77\x01\x60\x72\x03\x0f\x3c\xf0\xb4\ \xe6\xd1\x35\x00\x90\x7f\x9f\xe7\x1d\x1c\x53\x55\x75\xa3\x49\xe5\ \x2f\x5c\xbd\x17\x02\x40\xa2\x94\xfc\xe3\xf8\x74\x30\x50\x74\xbf\ \xc0\x94\xf2\xf7\xdf\x0a\x70\xb1\xff\x43\x64\xfa\x99\x95\xca\x05\ \xcb\xb5\x03\xc6\xe4\x06\x1e\x78\xe0\x85\xc3\xa3\xbb\x00\x20\x7f\ \xd1\x8a\xff\xc2\xf2\x8b\xa3\xab\xaa\x7e\x62\x52\xf9\x0b\xeb\xf6\ \x84\x00\x90\x24\xb7\xe8\x4f\x1c\x00\x12\x15\x57\x09\x32\xf8\xc1\ \x71\xb6\xb0\xcf\x5a\xa9\x57\x80\xda\x00\x80\xc9\x0d\x3c\xf0\xc0\ \x53\xc2\x93\x6d\x07\x6c\xb3\x46\x41\x19\xe5\xd5\x69\x26\x96\xff\ \x55\xa2\x00\x90\x2c\xe9\x73\xfe\x49\x71\xa2\x3d\x82\x96\x90\xbf\ \xf0\xe1\x60\xd8\xb9\x56\xe9\x15\xa0\x26\x00\x60\x72\x03\x0f\x3c\ \xf0\x94\xf2\x54\x07\x00\x2b\x17\x0d\x2a\xad\xae\x31\xb9\xfc\x05\ \xd6\x60\xa5\x05\x7f\xe2\xf8\x35\x00\x96\x92\x3f\xfd\x28\xec\xea\ \x4a\xc8\x6b\x6e\x67\xac\x50\x2e\x58\x69\x00\xc0\xe4\x06\x1e\x78\ \xe0\xa9\xe1\xa9\x0a\x00\x16\x96\x7f\x7a\x49\x45\x57\x56\x79\x79\ \x92\xc9\xe5\x7f\x95\xe2\xdd\x7b\xa2\x00\x60\x39\xf9\x0b\xbc\xe7\ \x9c\xb3\xbe\x9c\x5d\xd7\xb4\xc7\xec\xe5\x82\x95\x04\x00\x4c\x6e\ \xe0\x81\x07\x9e\x5a\x9e\xe2\x00\x60\x65\xf9\x17\x97\xef\x1d\x55\ \xbc\xf0\x26\x0b\xc8\x5f\x39\x2f\x5c\xf1\x9b\xed\xe0\x3c\x5f\x52\ \xfd\xa3\xdc\x06\xe6\xbc\x99\xcb\x05\xcb\xed\x02\xc0\xe4\x06\x1e\ \x78\xe0\x85\xc3\x2b\xd9\xd0\x6c\x6b\xf9\xd3\x0e\x7f\x19\x15\x0b\ \xef\xb6\x95\xfc\xad\xd8\x22\x58\x8a\xf7\xd2\xb2\xd5\x8f\x92\xdb\ \x01\x57\xcc\x5a\x2e\x78\x66\x4b\x07\x79\xf3\x62\x72\x03\x0f\x3c\ \xf0\xb4\xe5\xcd\x58\xb9\xd6\xb6\xf2\x1f\x51\x58\xfe\x59\x7a\xe5\ \x82\x5f\x41\xfe\x16\x96\xbf\xc0\x73\xba\xd9\x71\x66\x2e\x17\xbc\ \xeb\xc8\x51\x4c\x6e\xe0\x81\x07\x9e\x66\xbc\xa3\xa7\x4f\x93\x52\ \xb7\xd5\xf6\x5c\xf0\xe7\xeb\xf0\x57\x33\x0c\xf2\xb7\x81\xfc\xe9\ \xbf\x73\x1c\xd7\x9f\x88\x74\x8e\x59\xcb\x05\xaf\x79\x73\x17\x26\ \x37\xf0\xc0\x03\x4f\x33\x5e\xf3\x96\x6d\xb6\x95\x7f\x7a\x59\xd5\ \x0c\xc8\xdf\x26\xf2\x17\x3e\x6a\x6b\x6b\xe3\xc8\x95\x80\x65\x66\ \x2c\x17\x3c\xa3\xb5\x93\xfb\xe0\xf8\x09\x4c\x6e\xe0\x81\x07\x5e\ \xc4\x3c\x7a\xf6\x3f\xa9\xa6\xd6\x9e\x67\xfe\xa5\x15\x2b\xe9\x09\ \x21\xe4\x6f\x23\xf9\xfb\x7b\x06\x30\x4c\x92\xc3\xc5\xb6\x9a\xb1\ \x5c\x70\xc9\xa6\x2d\xdc\x11\xf2\xc6\xc5\xe4\x06\x1e\x78\xe0\x45\ \xc2\x2b\x6e\x68\xb2\xa5\xfc\x47\x15\x95\x6f\x16\x6f\xf7\x83\xfc\ \x6d\x24\x7f\x7f\x91\xa0\xb6\xb6\x6b\x9c\x8c\xe7\x4d\x33\x96\x0b\ \x2e\x6a\xef\xe4\xde\xdd\x7f\x00\x93\x1b\x78\xe0\x81\xa7\x9a\x77\ \x8c\x9c\x40\x94\x35\xba\x6c\x29\xff\xb4\xc2\xf2\x3d\xe2\xed\x7e\ \x76\x94\xbf\xe2\xdd\x7f\x56\x3f\x38\x33\x5a\x36\xdd\xea\x74\x7b\ \x0f\x98\xb1\x5c\xf0\xcc\xa6\x36\xae\x79\xc7\x5b\xdc\xbe\xc3\x87\ \x31\xb9\x81\x07\x1e\x78\xb2\xbc\x93\x64\x78\x77\xee\xe2\xb2\x17\ \x2f\xb7\xe7\x3d\xff\xc2\x8a\x63\xa3\xcb\x17\xdc\x69\x57\xf9\x8b\ \x4a\xff\x2b\x2e\x12\x94\x62\xf5\x83\xe3\x70\xb3\xdf\x24\xdd\x03\ \xcf\x98\xb5\x5c\xf0\xac\xd6\x0e\x6e\xc9\x96\x37\xb9\x0d\x3b\xdf\ \xe5\xea\x5f\xdf\xca\xad\xe9\xec\x52\x34\x56\x77\x6c\xe6\x96\xb5\ \xb6\x73\x4b\x5b\x7a\x06\xfd\x9c\x7e\x5d\x29\x03\x3c\xf0\xc0\x33\ \x3e\x6f\x05\xdb\xe9\xdb\xeb\x3f\xa1\x7a\x89\x6d\x17\xfc\xa5\x15\ \x55\x9c\xce\x28\x5b\xfc\x5d\x9b\xcb\x3f\x5e\x51\x00\x10\xf5\x13\ \x4e\xb5\xc3\xc1\xc9\x6d\x6c\xfb\x45\x6e\x83\xeb\xa2\xd9\xcb\x05\ \xd3\xcf\xc7\x2f\x5c\x66\xef\x5a\xde\xe0\x81\x07\x1e\x78\xbd\xbb\ \xfb\x9d\x1f\x5d\xba\xe0\xa7\x36\x97\xbf\xd0\xef\x47\x3a\x00\xf0\ \x0f\x4e\xe6\xcf\xfe\x53\x6d\x70\x70\x7c\xbc\x89\x4b\x57\x3f\x91\ \xd3\xc0\x5c\x32\x73\xb9\x60\x45\x21\x00\x93\x07\x78\xe0\x81\x67\ \x9f\x7b\xfe\x17\x33\xcb\x17\xfe\xda\xe6\xf2\x4f\xe4\xbb\xfd\x26\ \x48\x96\xfe\xe7\x1f\x9c\xc4\x9f\xfd\xa7\x88\x7a\x0b\x5b\x5a\xfe\ \x02\x6b\xd2\xb2\x55\x43\x73\xea\x5d\x57\xcc\x2a\x7f\xd9\x10\x80\ \xc9\x03\x3c\xf0\xc0\xb3\x0b\xaf\xb0\xec\x12\xb9\xe7\xff\x88\x8d\ \xe5\x3f\x80\xf7\x79\x92\x38\x00\xc8\x25\x85\x41\xa2\x00\x90\x62\ \x17\xf9\x0b\x3c\x67\x53\xfb\xdf\xcd\x2c\xff\x90\x21\x00\x93\x07\ \x78\xe0\x81\x67\x97\x33\xff\xf9\xa5\x57\x46\x57\x56\xff\xc3\xe6\ \xf2\x4f\xe6\x7d\x2e\x04\x80\x78\xb9\x7b\x04\x49\xa2\x00\x30\xd8\ \x6e\xf2\x17\x78\xf9\x0c\x3b\xcc\xcc\xf2\xef\x13\x02\x30\x79\x80\ \x07\x1e\x78\x36\xe2\x65\x94\xd6\x64\xda\x5c\xfe\x82\xc3\x85\x00\ \x90\x20\x75\xe9\x3f\x9e\x4f\x08\x42\x00\x48\xb6\xab\xfc\x85\x0f\ \x22\xcf\x0c\x33\xcb\x5f\x18\x0e\x97\x87\x1b\x5b\xb9\x10\x93\x07\ \x78\xe0\x81\x67\x0b\x5e\x7a\x69\xf5\x64\x9b\xcb\x5f\xb8\x7a\x2f\ \x04\x80\x44\x29\xf9\xc7\xf1\xe9\x60\xa0\xe8\x7e\x81\xad\xe5\xdf\ \x13\x02\xbc\x2f\x98\x59\xfe\x02\x6f\x6a\x83\x8b\x1b\x5b\xb1\x10\ \x93\x07\x78\xe0\x81\x67\x6d\xf9\x8b\xea\xfb\xdb\x54\xfe\xc2\xba\ \x3d\x21\x00\x24\xc9\x2d\xfa\x13\x07\x80\x44\xc5\x55\x82\x6c\x52\ \x34\x28\x9f\xf1\x4e\x36\xb3\xfc\x05\x96\x2f\x04\x90\x2b\x01\x98\ \x3c\xc0\x03\x0f\x3c\x2b\xf2\xc8\x56\x3f\x27\xe4\xef\xe7\xa4\xf0\ \x57\xf2\xfb\xcb\x3d\x29\x4e\xb4\x47\x10\xf2\x0f\xf8\xe8\xee\x20\ \xc8\x3a\xcc\x2c\x7f\x81\x47\x6f\x07\x28\xaa\x13\x80\xc9\x08\x3c\ \xf0\xc0\x33\xd3\x3d\xff\xb2\x9a\x29\x90\x7f\x2f\xd6\x60\xa5\x05\ \x7f\xe2\xf8\x35\x00\x90\xbf\x44\x08\x20\x1d\x04\xb3\xcc\x2c\x7f\ \x81\xa7\xb8\x58\x10\x26\x23\xf0\xc0\x03\xcf\x1c\xf7\xfc\x27\x40\ \xfe\xbd\x78\x29\x6a\xca\xfd\xc6\x41\xfe\xca\x3e\x9c\xae\xf6\xb1\ \x66\x96\x3f\x2a\x06\x82\x07\x1e\x78\x56\xe2\x65\x96\xd7\x8c\x81\ \xfc\xc3\xe4\x85\x2b\x7e\x3b\x1f\xec\xc9\x2b\xd6\x65\x9a\x59\xfe\ \xa8\x18\x08\x1e\x78\xe0\x59\x61\x9f\x7f\x46\x79\x75\x1a\xe4\x8f\ \x16\xc1\x31\xe7\x4d\x5e\xb1\x66\x58\x6e\xbd\xeb\x32\x2a\x06\x62\ \x32\x02\x0f\x3c\xf0\x62\x5e\xdb\xff\x72\x46\x49\xcd\x30\xf8\x08\ \xf2\xd7\xaf\x62\x60\x63\xfb\xc3\x64\x51\xdd\xa7\xa8\x18\x88\xc9\ \x0d\x3c\xf0\xc0\x8b\x65\x79\xdf\x9a\xa7\xe0\x23\xc8\x5f\xff\x8a\ \x81\x6e\xef\x6f\xc9\xf8\x18\x15\x03\x31\xb9\x81\x07\x1e\x78\xd1\ \xe6\x95\x7f\x9a\x51\x52\xf5\x38\x7c\x04\xf9\x1b\x86\x97\xef\xee\ \xf8\x39\x91\xe8\x39\x54\x0c\xc4\xe4\x06\x1e\x78\xe0\x45\xeb\xb2\ \x7f\xe5\x87\xe9\x95\x0b\x7e\x05\x1f\x41\xfe\x86\xe3\xe5\xb7\xb0\ \xdf\x75\xb8\x3d\x87\x51\x31\x10\x93\x1b\x78\xe0\x81\xa7\x39\xef\ \x70\x46\xd9\xe2\xef\xc2\x47\x90\xbf\x61\x79\x0e\xc6\xfb\xe5\x7c\ \x97\xe7\x2d\x54\x0c\xc4\xe4\x06\x1e\x78\xe0\x69\x74\xe6\x5f\x54\ \xb1\x73\x7c\x6d\xed\x7f\xc0\x47\xda\xc9\x5f\xf1\xee\x3f\x1c\x6c\ \x75\x3c\x47\x5b\xdb\x35\xa4\x74\x70\x0b\x2a\x06\x62\x72\x03\x0f\ \x3c\xf0\x22\xdc\xea\x57\x54\xc5\x66\x16\x2f\xb9\x16\x3e\xd2\x8c\ \x27\x94\xfe\x57\x5c\x24\x28\x05\x07\x5b\x1d\x2f\x8b\x61\x92\x48\ \x08\x58\x82\x8a\x81\x98\xdc\xc0\x03\x0f\xbc\x30\xe5\x5f\x5a\xbd\ \x32\xad\xae\x2e\x11\xf2\xd7\x54\xfe\xf1\x8a\x02\x80\xa8\x9f\x70\ \x2a\x0e\xb6\xfa\x8f\xa7\xca\x8a\xe3\x73\xd6\x6d\x98\x8d\x8a\x81\ \x98\xdc\xc0\x03\x0f\x3c\x75\xbc\xd1\xe5\xd5\x73\xb2\x38\x6e\x00\ \xe4\xaf\xa9\xfc\x85\x7e\x3f\xd2\x01\x80\x7f\x70\x32\x7f\xf6\x9f\ \x8a\x83\x1d\x3e\x2f\x6b\xe5\xba\xe7\x73\xea\x9b\xaf\xa0\x62\x20\ \x26\x37\xf0\xc0\x03\x4f\xbe\xba\x5f\x7a\x59\xcd\x78\xf8\x43\x73\ \xf9\x27\xf2\xdd\x7e\x13\x24\x4b\xff\xf3\x0f\x4e\xe2\xcf\xfe\x53\ \x44\xbd\x85\x71\xb0\xc3\xe4\x4d\x5a\xb6\xfa\x2f\x79\xcd\xec\x05\ \x54\x0c\xc4\x64\x09\x1e\x78\xe0\x85\x5a\xec\x57\x7a\x61\x74\xc5\ \xc2\xbf\xc0\x1f\x9a\xf3\x92\xf8\xe1\x0f\x00\x72\x49\x61\x90\x28\ \x00\xa4\xe0\x60\x47\xce\x9b\xc6\xb4\x7f\xdb\xe1\xf6\xee\x41\xc5\ \x40\x4c\x96\xe0\x81\x07\x5e\x40\x37\xbf\xe2\xf2\xfd\x63\x2a\x16\ \x7c\x0f\xfe\xd0\x9c\x97\xcc\xfb\x5c\x08\x00\xf1\x72\xf7\x08\x92\ \x44\x01\x60\x30\x0e\xb6\x76\xbc\xdc\xd6\xd6\x1b\xf2\xdd\x1e\x06\ \x15\x03\x31\x59\x82\x07\x1e\x78\xc2\x73\x2b\xdb\xc7\x54\x55\xdd\ \x08\x7f\x68\xce\x13\x1c\x2e\x04\x80\x04\xa9\x4b\xff\xf1\x7c\x42\ \x10\x02\x40\x32\x0e\xb6\xf6\xbc\xc2\xae\xae\x04\xa7\xdb\xfb\x0a\ \x2a\x06\x62\xb2\x04\x0f\x3c\xbb\xf3\x32\x4a\xab\xe6\x3f\x53\x58\ \x98\x00\x7f\x68\xce\x13\xae\xde\x0b\x01\x20\x51\x4a\xfe\x71\x7c\ \x3a\x18\x28\xba\x5f\x80\x83\x1d\x45\x1e\xb9\x12\xf0\x8f\x7c\xc6\ \x73\x11\x15\x03\x31\x59\x82\x07\x9e\xdd\x78\x69\x85\xe5\x17\xc5\ \xdd\xfc\xe0\x0f\xcd\x79\xa9\xa2\x00\x90\x24\xb7\xe8\x4f\x1c\x00\ \x12\x15\x57\x09\xc2\xc1\x8e\x88\x37\xcd\xdd\xfe\x63\x71\xf9\x60\ \x54\x0c\xc4\x64\x09\x1e\x78\x56\xe7\x91\x56\xbe\x47\x32\xca\x6b\ \xee\x83\x3f\xa2\xca\x13\x02\x40\xb2\xa4\xcf\xf9\x27\xc5\x89\xf6\ \x08\x42\xfe\x31\xe4\xcd\x6c\x62\xbf\x48\x8a\x06\x75\xa2\x62\x20\ \x26\x4b\xf0\xc0\xb3\x3a\x2f\xbd\xa4\xa2\x2b\xad\xa8\xfa\x16\xf8\ \x23\xea\xbc\x54\x45\x6b\xf8\x44\x01\x20\x1e\xf2\xd7\x87\x37\x7a\ \x41\x4d\x72\xce\xba\xc6\x32\x54\x0c\xc4\x64\x09\x1e\x78\x96\x95\ \x7f\x59\x55\xb5\xb8\xb2\x1f\xfc\x11\x55\x5e\x8a\x9a\x72\xbf\x71\ \x90\xbf\xfe\xbc\x49\xcb\xd7\xfc\x3d\xa7\xce\x75\x0e\x15\x03\x31\ \x59\x82\x07\x9e\x55\x78\xe4\x92\xff\xf9\xcc\xf2\x9a\xa1\x98\xef\ \x0d\xc8\x0b\x57\xfc\x38\xd8\xd1\xe1\x8d\x29\xa9\xf8\x76\x9e\x8b\ \x7d\x0d\x15\x03\x31\xf9\x82\x07\x9e\xe9\xe5\x5f\x54\xbe\x3d\xbd\ \xb8\xf2\x2e\xcc\xf7\x68\x11\x0c\x9e\x42\xde\x6c\x72\x99\x4c\x6e\ \xab\x20\x2a\x06\x82\x07\x1e\x78\x46\xe6\xd1\x2d\x7e\xc1\x2e\xf9\ \x63\xbe\x87\xfc\xc1\x53\xc0\x23\x21\xe0\x8f\x64\xbb\xe0\x19\x54\ \x0c\xc4\xe4\x0b\x1e\x78\x66\xe1\x8d\x28\x2c\x3d\x3d\xba\x7c\xc1\ \x23\x98\xef\x21\x7f\xf0\x22\xe4\x4d\x6f\xe9\xb8\x8d\xee\x12\x40\ \xc5\x40\x4c\xbe\xe0\x81\x67\x74\x5e\x46\x71\x45\xc7\x84\x9a\x65\ \x5f\xc2\x7c\x0f\xf9\x83\xa7\x11\x2f\x6b\xc7\x8e\x81\xe4\x6a\xc0\ \x34\xb2\xe5\xee\x0a\x2a\x06\x62\xf2\x05\x0f\x3c\xa3\xf1\xc8\x42\ \xbf\xcb\xa3\x4a\xab\xa6\x65\x65\x65\xc5\x63\xbe\x87\xfc\xc1\x8b\ \x02\x2f\xdf\xdd\xf1\x5f\x8e\x66\xcf\xfb\xa8\x18\x88\xc9\x17\x3c\ \xf0\x0c\x24\xff\x23\xe9\x95\x0b\x7e\x85\xf9\x1e\xf2\x07\x2f\xca\ \xbc\x2c\x86\x49\x71\x36\x7b\x0a\x51\x31\x10\x93\x2f\x78\xe0\xe9\ \xcd\xcb\x28\xa9\x5a\x9c\x59\xbc\xe4\x5a\xcc\xcf\xe6\x92\xbf\xe2\ \xdd\x7f\x38\xd8\xc6\xe4\x4d\x5c\xbc\xfc\xa1\xec\x7a\xd7\x61\x54\ \x0c\x04\x0f\x3c\xf0\x62\xcd\xa3\x67\xfd\x63\xca\x6a\xfe\x88\xf9\ \xd9\x74\x3c\xa1\xf4\xbf\xe2\x22\x41\x29\x38\xd8\xc6\xe4\x0d\x77\ \xe6\x7d\x39\x67\x7d\x53\x2d\x2a\x06\x82\x07\x1e\x78\xb1\xe2\x91\ \x7d\xfd\x4b\xe4\xce\xfa\x31\x3f\x1b\x56\xfe\xf1\x8a\x02\x80\xa8\ \x9f\x70\x2a\x0e\xb6\xb1\x79\x4e\xa6\xe3\xe1\x7c\x77\xfb\x09\x54\ \x0c\x04\x0f\x3c\xf0\xa2\xc5\x4b\x2b\x2e\x3f\x9a\x59\xbe\xe0\x21\ \xcc\xcf\xa6\x95\xbf\xd0\xef\x47\x3a\x00\xf0\x0f\x4e\xe6\xcf\xfe\ \x53\x71\xb0\x8d\xcf\x9b\xc6\x74\x7e\x3e\xdf\xcd\x2e\x45\xc5\x40\ \xf0\xc0\x03\x4f\x6b\x1e\x29\xea\x53\xfb\x42\x65\xe5\x75\x98\x9f\ \x4d\x2b\xff\x44\xbe\xdb\x6f\x82\x64\xe9\x7f\xfe\xc1\x49\xfc\xd9\ \x7f\x8a\xa8\xb7\x30\x0e\xb6\x09\x78\xf9\x8c\xe7\x01\x52\x37\x60\ \x2f\x2a\x06\x82\x07\x1e\x78\x91\xf2\x46\x14\x56\x1c\x93\x2a\xea\ \x83\xf9\xd9\x14\xbc\x24\x7e\xf8\x03\x80\x5c\x52\x18\x24\x0a\x00\ \x29\x38\xd8\xe6\xe2\x4d\xdf\xb0\x65\x30\xb9\x1a\x30\x3d\xcf\xed\ \xbd\x84\x8a\x81\xe0\x81\x07\x9e\x5a\x5e\xda\xfc\xd2\x2b\x99\xa5\ \x55\x55\xa3\x17\x2c\xb8\x1e\xf3\xb3\xa9\x79\xc9\xbc\xcf\x85\x00\ \x10\x2f\x77\x8f\x20\x49\x14\x00\x06\xe3\x60\x9b\x97\x37\x8d\x69\ \xff\xb6\x50\x45\x10\x15\x03\xc1\x03\x0f\x3c\x25\xbc\xf4\x92\xaa\ \xad\x19\xe5\x35\xf7\x61\x3e\x35\x3d\x4f\x70\xb8\x10\x00\x12\xa4\ \x2e\xfd\xc7\xf3\x09\x41\x08\x00\xc9\x38\xd8\xe6\xe7\xd5\xd6\xd6\ \xc6\xe5\x31\x9e\x91\xd9\x75\xcc\x39\x54\x0c\x04\x0f\x3c\xf0\x42\ \xf1\xd2\x8a\x2a\xce\x64\x94\xd6\x64\x66\x71\xdc\x00\xcc\xa7\xa6\ \xe7\x09\x57\xef\x85\x00\x90\x28\x25\xff\x38\x3e\x1d\x0c\x14\xdd\ \x2f\xc0\xc1\xb6\x10\x6f\xf4\xcb\x05\x77\x65\xaf\xdf\xb8\x1a\x15\ \x03\xc1\x03\x0f\x3c\x31\x6f\xc4\x9c\xf9\x57\xd2\x8b\x2b\x16\x8d\ \x2a\x5e\x78\x13\xe6\x53\xcb\xf0\x52\x45\x01\x20\x49\x6e\xd1\x9f\ \x38\x00\x24\x2a\xae\x12\x84\x83\x6d\x3a\x1e\x29\x20\xf4\x3b\x67\ \x13\xbb\x0d\x15\x03\xc1\x03\x0f\x3c\x32\xde\xce\x9c\x5f\xf1\x0b\ \xcc\xa7\x96\xe3\x09\x01\x20\x59\xd2\xe7\xfc\x93\xe2\x44\x7b\x04\ \x21\x7f\x8b\xf3\xe8\x6d\x01\xd2\x57\xe0\x99\xfc\x66\xef\x31\x54\ \x0c\x04\x0f\x3c\xfb\xf1\x9e\x2b\x28\x3e\x37\xfc\x95\xf9\x2f\x0d\ \x1f\xfe\xdc\x40\xcc\xa7\x96\xe4\xa5\x2a\x5a\xc3\x27\x0a\x00\xf1\ \x90\xbf\xbd\x78\xce\xc6\xae\xab\x68\x97\xc1\xbc\xe6\xf6\x4f\x51\ \x31\x10\x3c\xf0\xac\xcf\x7b\x6e\x6e\xd1\xe5\xb4\xb9\x85\x8b\x87\ \xe6\x64\xdf\x81\xf9\xd4\xd2\xbc\x14\x35\xe5\x7e\xe3\x20\x7f\xfb\ \xf2\xf2\x18\xf6\x76\xa7\xcb\xbb\x02\x15\x03\xc1\x03\xcf\xc2\xbc\ \x79\x85\x8d\x43\xf3\x67\xfc\x18\xf3\x1f\x78\xbd\xd6\x00\xf4\x0b\ \xf3\x03\x07\xdb\x5a\x3c\x07\xe3\xfd\x19\xa9\x1f\xb0\x05\x15\x03\ \xc1\x03\xcf\x42\xbc\x82\xf9\xaf\x0f\x9b\xf6\xef\x07\x30\xff\x81\ \xa7\xd9\x07\x0e\xb6\x35\x79\x74\x7d\x00\x09\x02\x4f\x38\x5d\x9e\ \xdd\xa8\x18\x08\x1e\x78\xe6\xe5\x0d\x7f\xb5\x70\xf7\x88\x7f\x17\ \xfc\x7d\xc8\x90\xfb\xaf\xc6\xfc\x07\x1e\xe4\x0f\x9e\x62\xde\x63\ \xcf\x3e\x7d\x6d\xd6\x8a\x75\xa3\xa6\x36\x34\x1e\x44\xc5\x40\xf0\ \xc0\x33\x0f\x2f\xad\xa8\xec\xe8\xc8\x39\xaf\x8e\x7b\xf0\xc1\x07\ \xae\xc3\xfc\x07\x1e\xe4\x0f\x5e\xd8\xbc\x47\xd3\x86\xdf\x94\xbd\ \xba\xee\x79\x27\xd3\x76\x04\x15\x03\xc1\x03\xcf\xc0\xbc\xe2\xf2\ \x73\xa3\x4a\xca\xf3\x1e\x19\x9d\x71\x33\xe6\x3f\xf0\x20\x7f\xf0\ \x34\xe3\xd1\xfe\x02\x4e\x37\x3b\x2e\x8f\xf1\x9e\x44\xc5\x40\xf0\ \xc0\x33\x0e\x8f\x54\xf0\x3b\x9d\x59\x56\xe3\x18\xf3\xea\xab\x37\ \x60\xbe\x02\x0f\xf2\x07\x2f\x6a\xbc\xd9\x1d\x1d\xa9\x64\xa1\xe0\ \x24\x27\xd3\x7e\x16\x15\x03\xc1\x03\x4f\x3f\x5e\x7a\x51\xd9\x89\ \xf4\xd2\xea\xc9\x69\xd5\xd5\xa9\x98\xaf\xc0\x83\xfc\xc1\x8b\x19\ \xef\x65\x86\xb9\xda\xc9\x78\x5f\xc8\x77\xb7\x1f\x41\xc5\x40\xf0\ \xc0\x8b\x29\xef\x70\x7a\x59\xcd\xf8\x31\x55\x55\x83\x31\x5f\x81\ \x17\x26\xb3\x3f\x0e\x0e\x78\x11\xf3\xb2\x18\x26\xc9\x57\x55\xd0\ \xed\x7d\x17\x15\x03\xc1\x03\x2f\x7a\xbc\xb4\xa2\xca\x7d\x19\x65\ \xd5\xe9\x69\x75\x75\x89\x98\xaf\xc0\x0b\x57\xfc\x7c\xdd\x1f\xc5\ \x45\x82\x52\x70\xb0\xc1\x93\xfb\xf0\x75\x1d\x6c\xf2\x3c\x92\xdd\ \xd0\xfc\x3a\x2a\x06\x82\x07\x9e\x76\xbc\xb4\xc2\x8a\xdd\x99\x65\ \xd5\xcf\x3e\x53\x58\x98\x80\xf9\x0a\xbc\x08\xe5\x1f\xaf\x28\x00\ \x88\xfa\x09\xa7\xe2\x60\x83\xa7\x94\x47\xf7\x1c\xff\x8b\x34\x1c\ \xca\x59\xb7\xd1\x85\x8a\x81\xe0\x81\x17\x3e\x2f\xbd\xb8\xaa\x6d\ \x74\x59\xcd\xa3\xc1\xda\xf3\x62\xbe\x02\x2f\x0c\xf9\x0b\xfd\x7e\ \xa4\x03\x00\xff\xe0\x64\xfe\xec\x3f\x15\x07\x1b\xbc\x70\x78\x53\ \x1b\x99\xef\x39\xdd\x9e\x72\x22\xea\x8f\x51\x31\x10\x3c\xf0\xe4\ \x79\x23\x8b\x4a\x2f\xa4\x15\x57\x57\xa6\x97\xd7\x7c\x1b\xf3\x0b\ \x78\x1a\xca\x3f\x91\xef\xf6\x9b\x20\x59\xfa\x9f\x7f\x70\x12\x7f\ \xf6\x9f\x22\xea\x2d\x8c\x83\x0d\x5e\x58\xbc\xbc\xc6\xce\xeb\x9c\ \x4c\xc7\xd8\x7c\x86\xdd\x8d\x8a\x81\xe0\x81\xd7\x97\x47\xef\xef\ \x67\x96\x55\xbd\x94\x59\xbc\xe4\x5a\xcc\x2f\xe0\x69\xcc\x4b\xe2\ \x87\x3f\x00\xc8\x25\x85\x41\xa2\x00\x90\x82\x83\x0d\x9e\x16\x3c\ \x7a\x29\x93\x74\x1f\xfc\x8d\xc3\xed\x5d\x4b\x3a\x10\x5e\x41\xc5\ \x40\xf0\xec\xce\xa3\x97\xf9\x33\x4a\x17\xfe\x29\xd8\x65\x7e\xcc\ \x2f\xe0\x69\xc0\x4b\xe6\x7d\x2e\x04\x80\x78\xb9\x7b\x04\x49\xa2\ \x00\x30\x18\x07\x1b\xbc\x68\xf0\xa6\xb7\x74\xdc\x46\x84\xed\x24\ \xdb\x08\x4f\xa0\x62\x20\x78\x76\xe2\x8d\x2c\x2c\x3b\x4f\x2f\xf3\ \x8f\x2c\xad\xfa\x16\xe6\x03\xf0\xa2\xc8\x13\x1c\x2e\x04\x80\x04\ \xa9\x4b\xff\xf1\x7c\x42\x10\x02\x40\x32\x0e\x36\x78\xd1\xe6\xd1\ \x6d\x84\xb9\x4d\xed\x4f\x66\xd7\x37\xbb\xb3\xeb\x9a\xae\xa0\x62\ \x20\x78\x56\xe4\x0d\x2f\x28\xba\x3c\xaa\xb8\xa2\x2d\xb3\xbc\x66\ \xa8\xb0\x7f\x1f\xf3\x01\x78\x51\xe4\x09\x57\xef\x85\x00\x90\x28\ \x25\xff\x38\x3e\x1d\x0c\x14\xdd\x2f\xc0\xc1\x06\x2f\xa6\xbc\xd1\ \x05\xf3\xef\x9e\xbc\xaa\x7e\x72\x6e\x83\x6b\x17\x2a\x06\x82\x67\ \x05\xde\xf0\x39\x85\x1f\x8c\x9c\x57\x3c\x6d\x7c\xd9\x82\xdb\x30\ \x1f\x80\x17\x43\x5e\xaa\x28\x00\x24\xc9\x2d\xfa\x13\x07\x80\x44\ \xc5\x55\x82\x70\xb0\xc1\x8b\x02\x2f\x2b\xeb\xa5\xb8\x3c\xb7\xe7\ \x07\x44\xe8\x73\x84\x5b\x04\xa8\x18\x08\x9e\x69\x78\x05\x85\x1f\ \x3e\x37\xa7\x68\xd1\xb0\xe9\x33\xef\x27\x1d\xf9\xae\xc2\x7c\x00\ \x9e\x0e\x3c\x21\x00\x24\x4b\xfa\x9c\x7f\x52\x9c\x68\x8f\x20\xe4\ \x0f\x9e\x61\x78\x59\x3b\x76\x0c\xcc\x67\x3c\x0f\x3a\x5d\xde\x15\ \x64\xe1\xe0\xa7\xa8\x18\x08\x9e\x11\x79\x23\x0a\xcb\x2f\x8f\x7c\ \xb5\xb8\x65\xf8\xec\x57\x9f\x7b\xf4\x1f\x7f\xbb\x09\xef\x5f\xf0\ \x74\xe6\xa5\x2a\x5a\xc3\x27\x0a\x00\xf1\x90\x3f\x78\x46\xe6\xcd\ \x64\xd9\x6b\xa7\xb9\xd9\xbf\x3a\x18\xcf\xea\x3c\xb7\xf7\x13\x54\ \x0c\x04\x4f\x4f\xde\xc8\xc2\xf2\x8b\x23\x8b\x2a\x9a\xd2\x4b\x2b\ \x46\x3e\x35\x71\xc2\x57\xf0\xfe\x05\xcf\x40\x3c\x65\xbb\xf7\x44\ \x01\x00\xf2\x07\xcf\x34\x3c\xb2\x78\x30\x85\xb4\x27\xfe\x93\xa3\ \xb9\x6d\x09\x11\xfe\x79\x54\x0c\x04\x2f\x26\xbc\xe2\x8a\x8f\xd2\ \x4b\xca\xd7\x66\x56\x2c\xf8\x7b\x7a\x79\xf9\xd5\x78\xff\x82\x67\ \x6a\x5e\xb8\xe2\xc7\xc1\x06\xcf\x28\xbc\x47\xd3\x86\xdf\x34\x71\ \xc9\x8a\x47\xb3\xd7\x6d\x58\x90\xdd\xc0\x9c\x42\xc5\x40\xf0\x34\ \xad\xc5\x5f\x5c\x79\x26\xa3\xb4\xaa\x96\x96\xe5\x25\xf5\xf8\x93\ \xf1\xfe\x05\xcf\x8a\x3c\x1c\x1c\xf0\x4c\xcf\xcb\xaa\xae\x4a\xcc\ \x77\x79\xfe\x97\xc8\x7e\x46\x7e\xb3\x77\x1b\x2a\x06\x82\x17\x0e\ \x2f\xad\xb8\xe2\x83\x8c\xd2\xea\xf2\x8c\xe2\xaa\xdf\x65\xd5\xd6\ \x0e\xc4\xfb\x0d\x3c\xc8\x1f\x07\x1b\x3c\x93\xf1\xf2\xdb\xdb\xbf\ \xe0\x6c\x61\xff\x46\x2a\x10\x2e\x24\x3b\x0b\x8e\xa3\x62\x20\x78\ \xc1\x78\x69\x45\x15\xa7\xe9\xa5\x7d\xda\x6e\x77\x6c\x45\xc5\x7f\ \xe2\xfd\x06\x1e\xe4\x1f\xfa\x9b\x8b\x7b\x04\xa4\x6a\x50\x2e\x18\ \x3c\xf0\xa2\xce\xa3\xe5\x56\x1d\xae\x8e\xef\xe5\xbb\xd9\x7f\x39\ \x98\x76\xf7\xb8\x9a\x65\x97\x7c\x72\x98\x57\xec\x13\x82\x7f\xcc\ \x8b\x50\x36\xe0\x19\x9e\x37\x72\x7e\xd9\xc5\xb4\xa2\x2a\x36\xa3\ \x7c\x41\xce\xe8\xaa\xaa\x9f\x28\x29\xc5\x8b\xf7\x1b\x78\x56\xe3\ \x85\xf3\xcd\xc5\x3d\x02\x52\x34\x28\x17\x0c\x1e\x78\xba\xf0\x5e\ \x58\xb2\xe4\xea\x91\x05\x85\x8f\xa5\xbd\x5a\x5c\x3c\x72\x6e\xd1\ \xb6\x91\x73\x0b\x2f\x8d\x9c\x57\x12\xa1\x6c\x4a\xba\x05\xe3\x1f\ \xe0\x19\x82\x47\xfe\xb6\xc3\xe7\x16\xbd\x49\xfe\xd6\x25\x99\xa5\ \xd5\x7f\x18\x5e\x5b\x9b\x82\xf7\x07\x78\x76\xe6\x85\xf3\xcd\x93\ \x45\xf5\x85\x07\x6b\x50\x2e\x18\x3c\xf0\x0c\xc3\x7b\x6a\x5c\xd6\ \x8d\xe9\xa5\x95\x0f\x8c\x2a\xad\x9a\x96\x5e\x5c\xee\x1e\x59\x58\ \xf9\xa1\x2a\xd9\xbc\x5a\xc2\x0b\x87\x1f\xaf\x46\x28\x2f\xf0\xc2\ \xe6\x91\x33\xfc\x23\xa3\xe6\x95\x6c\x20\xf2\xcf\x1d\xfe\xef\x57\ \x1f\x78\x7c\x4c\xe6\x0d\x78\x7f\x80\x07\x5e\x78\xdf\xbc\xbf\xa8\ \x47\xc0\x20\x51\x73\x81\xfe\xe0\x81\x67\x55\x1e\xbd\x2c\x4c\x1b\ \xb6\x64\x94\x57\x8d\xc8\x2c\xa9\xaa\x18\x55\x54\xb9\x6d\x54\x51\ \xf9\xa7\x41\x17\x8d\xbd\x5a\x4a\x84\xd5\x33\xe8\xe7\x61\x89\x10\ \x3c\xd5\x3c\xba\x1f\x9f\x2c\xda\x7b\x8d\xac\xd4\x9f\x9f\x51\xb6\ \xf0\x6f\xcf\x57\x2f\xbd\x0d\xaf\x67\xf0\xc0\x93\x66\xaa\xf9\xe6\ \x89\xa2\x1e\x01\x49\x11\x96\x0b\x06\x0f\x3c\xd3\xf2\xd2\xea\xea\ \x12\xd3\x2b\x17\xfc\x38\xb3\xb4\x6a\x14\x0d\x05\x64\xe1\x58\xd7\ \x88\x57\x8b\xcf\xa7\xf1\xd2\xf2\x8d\xf9\x11\xca\x70\xbe\x88\x05\ \x5e\x6f\xd9\x17\x97\x1f\xf7\xdd\xbb\x2f\xae\x2e\xc9\x28\xad\xc9\ \x24\x8b\xf6\xfe\x8b\xfe\x4d\xf0\x7a\x06\x0f\x3c\xc5\xbc\x38\xa5\ \x45\x82\xfa\x8b\x7a\x04\x08\x23\x21\xc2\x6f\x0e\x1e\x78\x96\xe2\ \xfd\xf5\xaf\x8f\x25\x66\xcc\x9a\x73\x57\xfa\xfc\xd2\xc7\x47\x15\ \x57\xe6\x8d\x2a\xa9\x5a\xee\xbb\x5a\x40\x8a\xc6\xa8\x97\x61\x59\ \x9f\x11\x99\x5c\xcd\xc9\xa3\xab\xf2\xc9\x71\xec\xec\x0e\x59\xd5\ \xcf\x93\xd0\xf5\xab\x51\xc5\x0b\x6f\xc2\xeb\x0f\x3c\xf0\x22\xe2\ \xc5\x2b\x0a\x00\xa2\x07\x27\x88\x46\xbc\x06\xdf\x1c\x3c\xf0\x6c\ \xc1\xe3\x38\xae\xff\xf8\xda\xda\xff\x18\x55\x56\xf9\x5b\x7a\xb6\ \x9a\x5e\x5a\x33\x97\xac\x31\xa8\xcf\x28\xac\x7a\x8b\xf6\x84\xef\ \x23\xc3\xc2\x00\x19\x16\x46\x28\x57\x03\xf3\xc8\x65\xfb\xcb\x84\ \x71\x78\x54\x51\xd9\x6b\x23\x8b\x2b\x56\xa5\x17\x57\xcc\xc9\x28\ \xae\x1c\x3b\xaa\xa4\xfa\x81\xb4\xa2\xea\x5b\xe8\xb1\xc3\xeb\x0f\ \x3c\xf0\xa2\xc2\x53\x14\x00\xe2\x02\x47\xbf\x08\x3e\xc0\x03\x0f\ \xbc\x9e\x0f\x2a\xb8\x17\x2a\x2b\xaf\xcb\xac\x58\xf2\xc3\xd1\x95\ \x35\x8f\xa6\x17\x57\x8d\x27\x45\x67\xe6\x90\x33\xdf\x15\x69\xf3\ \xcb\x3d\x23\x8b\xcb\xde\x1d\x51\x58\x7a\x9a\x5c\x0e\xbf\x12\xee\ \xa2\xba\x34\xd1\x08\x7b\x71\x5e\x18\x3c\xd2\x18\xe7\x33\x7a\xa9\ \x7e\x54\x71\xd9\x7b\xa3\x4a\x2a\x3c\x19\x25\x55\x8b\xe9\xc2\xca\ \xd1\x15\x0b\x9e\xcb\x2c\x5f\xf8\xeb\xb1\xa5\x35\x5f\x1d\x39\x2d\ \x7f\x10\x5e\x2f\xe0\x81\xa7\x1b\xaf\xbf\x5c\x5a\x18\x20\x1a\xfd\ \x23\xfc\xe6\xe0\x81\x07\x5e\x18\x3c\x52\x7a\x36\x61\x74\xd9\xa2\ \x5b\xc7\x54\x2f\xfe\x41\x46\x79\xf5\xfd\x74\x91\xdb\xe8\xb2\x05\ \xa3\xc9\x95\x84\xdc\xd1\xe5\xd5\x73\xc8\x5a\x84\xaa\x8c\xd2\x8a\ \x95\xb4\x29\x0d\xbd\x37\x4e\xce\xa4\xb7\x90\xdb\x0f\xbb\xd2\x0a\ \x2b\xf6\xf9\x56\xc2\xcf\x2f\x3b\x45\x44\x7c\x6e\xd4\xfc\xd2\x8f\ \xe9\x02\xc6\x11\x45\x15\x97\x85\x50\x41\xcf\xc2\x47\x14\x56\x7c\ \x32\xaa\xb8\xfc\x1c\x11\xfa\xa9\xb4\xe2\xf2\xa3\x64\xf7\xc3\x7e\ \x32\xde\x27\xbc\x9d\x23\x8b\xca\xb7\xd3\xc5\x75\xe4\xb1\x5e\x72\ \x3b\xa3\x95\x3c\xbe\x29\xa3\xa8\x6a\x59\x46\x51\x79\x71\x66\x59\ \x8d\x83\x94\xc6\x1d\x4b\x6b\xe2\xd3\x6a\x79\x74\x5d\x04\x2d\xa0\ \x93\x56\x5d\x9d\x2a\x77\xf6\x8e\xbf\x2f\x78\xe0\xe9\xcf\xfb\xff\ \x3e\x9e\x74\x51\x67\xc6\x2d\x29\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x59\xf6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x90\x00\x00\x01\x90\x08\x06\x00\x00\x00\x80\xbf\x36\xcc\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x23\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x35\x2d\x63\x30\x31\x34\x20\x37\x39\ \x2e\x31\x35\x31\x34\x38\x31\x2c\x20\x32\x30\x31\x33\x2f\x30\x33\ \x2f\x31\x33\x2d\x31\x32\x3a\x30\x39\x3a\x31\x35\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x43\x20\x28\ \x4d\x61\x63\x69\x6e\x74\x6f\x73\x68\x29\x22\x20\x78\x6d\x70\x4d\ \x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\ \x70\x2e\x69\x69\x64\x3a\x30\x38\x30\x44\x33\x38\x45\x35\x39\x36\ \x42\x30\x31\x31\x45\x33\x38\x42\x45\x43\x42\x30\x42\x36\x41\x37\ \x32\x43\x39\x42\x31\x35\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\ \x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\ \x64\x3a\x30\x38\x30\x44\x33\x38\x45\x36\x39\x36\x42\x30\x31\x31\ \x45\x33\x38\x42\x45\x43\x42\x30\x42\x36\x41\x37\x32\x43\x39\x42\ \x31\x35\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\ \x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\ \x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\ \x64\x3a\x30\x38\x30\x44\x33\x38\x45\x33\x39\x36\x42\x30\x31\x31\ \x45\x33\x38\x42\x45\x43\x42\x30\x42\x36\x41\x37\x32\x43\x39\x42\ \x31\x35\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\ \x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x30\x38\ \x30\x44\x33\x38\x45\x34\x39\x36\x42\x30\x31\x31\x45\x33\x38\x42\ \x45\x43\x42\x30\x42\x36\x41\x37\x32\x43\x39\x42\x31\x35\x22\x2f\ \x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\ \x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\ \x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\ \x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\ \x5d\x74\x43\x61\x00\x00\x56\x69\x49\x44\x41\x54\x78\xda\xec\x9d\ \x09\x98\x1c\x55\xb9\xfe\xdf\xee\xea\x9e\xc9\x2c\x49\x26\xc9\x24\ \x33\xd9\xf7\x90\x7d\x27\x2b\x9b\x0a\xc8\x65\xd3\x0b\x57\xf0\xef\ \x55\x2f\x88\xa8\x80\x22\x8b\x08\x12\x20\xec\xab\xa2\xa2\x02\x2a\ \x28\x5e\xb8\x5e\x14\x10\x41\xe0\xa2\xa0\x22\xd9\xf7\x90\x85\xec\ \x7b\x32\xd9\x26\xc9\xcc\x64\x32\x99\x4c\x77\x57\xff\xcf\xa9\xaa\ \x84\x10\x32\xdd\xe7\x74\x57\x77\x57\x75\xbf\xef\xf3\x7c\x4f\x42\ \xe8\xaa\xae\x3e\x75\xea\xfb\xd5\x77\x96\xef\x0b\xc4\xe3\x71\x50\ \x14\x45\x51\x94\xae\x02\x04\x08\x45\x51\x14\x45\x80\x50\x14\x50\ \x2a\xac\x5a\x58\x17\xc7\xe4\xdf\x2b\x85\x55\x9c\x60\xed\x85\x15\ \x3b\x7f\x86\x85\x95\x0b\x6b\xe3\xfc\x5b\x32\x1d\x11\xd6\x2c\xac\ \x51\x58\x44\x58\xbd\xf3\x6f\xf2\xcf\xba\x13\xac\x56\xd8\x2e\x61\ \x7b\x1c\x93\x7f\x6f\xe2\x6d\xa2\x08\x10\x8a\xca\xbe\x3a\x09\xeb\ \x2f\x6c\xa0\xb0\x3e\xc2\x7a\x39\xd6\x43\x58\x4f\x07\x08\x5e\x97\ \x04\xcd\x36\x61\xdb\x85\x6d\x71\xfe\xbe\x59\xd8\x3a\x61\x1b\x84\ \xed\xe3\x6d\xa6\x08\x10\x8a\x4a\x4d\x86\xb0\x7e\xc2\x86\x39\x76\ \x8a\xf3\x67\x3f\x27\x7a\xc8\x77\xc9\xc8\x65\xa3\xb0\x95\xc2\x56\ \x0b\xfb\xd0\xf9\xbb\xfc\xb7\x18\xbb\x07\x45\x80\x50\x94\xad\x32\ \x61\xa3\x84\x8d\x11\x36\xda\xf9\x73\x38\xd4\x86\x92\x0a\x4d\x72\ \x98\x6c\xb9\xb0\xa5\xc2\x96\x38\x7f\x7e\x20\xec\x10\x9b\x86\x22\ \x40\xa8\x7c\x57\x50\xd8\x50\x61\x93\x84\x4d\x10\x36\xd9\xf9\xef\ \x20\x9b\x26\x65\x99\x4e\x74\x32\x57\xd8\x7c\xe7\xcf\x0f\x9d\x7f\ \xa7\x28\x02\x84\xf2\xad\x8a\x84\x8d\x13\x76\xa6\xb0\x33\x84\x4d\ \x15\xd6\x8e\xcd\x92\x71\x35\x08\x9b\x25\xec\x7d\x61\xff\x12\xb6\ \x48\x58\x0b\x9b\x85\x22\x40\x28\xaf\x47\x18\x72\x18\xea\x6c\x61\ \xe7\x0a\x9b\x22\xac\x84\xcd\x92\x73\x1d\x76\x80\xf2\x8e\xb0\x77\ \x61\x0f\x7d\x31\x42\xa1\x08\x10\x2a\xe7\x92\x4b\x65\xcf\x17\x76\ \x9e\xb0\xcf\xc0\x5e\x32\x4b\x79\x5b\x72\x69\xf1\xdf\x85\xbd\x2d\ \xec\x4d\x61\x7b\xd9\x24\x14\x01\x42\x65\x4b\x72\xa2\xfb\x42\x61\ \x17\xc0\x9e\xcb\x08\xb0\x49\x7c\x2b\xe9\x00\xe6\x3b\x20\xf9\x8b\ \x13\x9d\x50\x14\x01\x42\xb9\x26\x39\x34\x25\x27\xbe\x2f\x15\xf6\ \xef\xc2\xfa\xb2\x49\xf2\x56\x9b\x84\xbd\x2a\xec\x65\x61\xf3\xc0\ \xa1\x2e\x8a\x00\xa1\x52\xe9\x1b\x0e\x34\xbe\xe4\x80\xa3\x6b\x5e\ \xfc\xaa\x23\xf5\x40\xa4\x51\xd8\x41\x20\xda\x2c\xdc\x63\x8b\xf8\ \xfb\x21\xf1\x67\x0c\x88\x1d\xfe\xe8\x73\x91\x93\xac\x8c\x0d\x97\ \x7d\xf4\x77\xa3\x44\x60\xd5\xb0\xff\x2d\x58\x04\x84\xda\x88\xbf\ \xb7\x15\x56\x0e\x14\xb7\xcf\x97\x3e\xb0\x53\xd8\x2b\xc2\xfe\xc7\ \x81\x09\x9d\x05\x45\x80\x50\x09\x25\xf7\x60\xfc\xa7\xb0\x2f\xc2\ \xde\xe9\xed\x0f\x28\x1c\xde\xe3\x58\x2d\xd0\x5c\x0b\xb3\xb9\x1e\ \xf1\x96\x06\xf1\xff\xea\xc4\x9f\xd2\xc4\x67\xa2\x02\x1c\xf1\x2c\ \xbc\x50\x07\x44\xc0\x16\x2a\x47\xa0\xa8\xbd\xb0\x0a\x01\x94\x0a\ \xf1\x67\x3b\x04\xdb\x08\xb0\xb4\xa9\x04\x4a\xa4\x75\x01\x4a\xab\ \x80\x22\xdf\x2c\x4a\xdb\x2c\xec\x45\x07\x26\x2b\xf8\x98\x50\x04\ \x08\x75\x54\x95\x4e\xa4\x71\x05\xec\xf9\x0d\xef\xa9\xf9\x00\xd0\ \xb0\x09\x38\xb4\x03\x66\xe3\x4e\xc4\x9b\x76\x39\x56\x63\x47\x13\ \x7e\x95\x88\x5a\x02\xa5\xdd\x84\x55\x5b\x16\x2c\x17\x81\x5e\x59\ \x77\xa0\x5d\x5f\x01\x9b\x0e\x5e\xbd\x6a\xb9\x89\xf1\x39\x61\xbf\ \x87\x3d\x21\x4f\x11\x20\x54\x81\x49\xce\x6b\xc8\x95\x53\x5f\x13\ \x76\x31\xec\x84\x82\xb9\x97\x1c\x46\xaa\xdb\x00\xd4\x6f\x80\x59\ \xbf\x09\xf1\xc6\xed\x88\x1f\xdc\x22\x22\x88\xfd\x85\xf7\x70\x16\ \x57\x22\x50\xde\x53\x58\x0f\x04\xdb\x0b\xa0\xb4\xef\x0f\x54\xf4\ \xb7\x87\xcf\xbc\x21\xb9\xb7\x44\x4e\xbc\xff\x06\xf6\x8a\x2e\xce\ \x97\x10\x20\x54\x9e\x4b\x66\xa7\xbd\x4a\xd8\x37\x60\x27\x21\xcc\ \x9d\xcc\x08\x70\x60\xad\xb0\xd5\x88\xd5\xad\x43\xbc\x7e\xa3\x00\ \xc6\x66\x20\xce\x74\x4f\xad\x3f\xb1\x86\x00\x4a\x1f\x04\xda\xf7\ \x83\x51\x31\x10\xe8\x38\x44\x40\x45\xfc\x19\xcc\x39\xff\xb7\x0a\ \xfb\x95\xb0\x67\x61\x67\x1c\xa6\x08\x10\x2a\x8f\x24\x77\x83\x7f\ \x47\xd8\xe7\x84\x85\x72\x72\x05\x47\xea\x80\x7d\x2b\x60\xd6\x2e\ \x47\xfc\xc0\x1a\x11\x61\x08\x78\x98\x47\x78\x67\xd2\x8e\x25\x8b\ \x45\x84\x32\x08\x81\x0e\xa7\x20\x58\x39\x02\xe8\x34\xdc\x9a\x77\ \xc9\x91\xa2\xc2\x5e\x13\xf6\x33\xd8\xbb\xe0\x29\x02\x84\xf2\xa9\ \x64\x42\xc2\xff\x27\xec\xbb\xb0\x77\x88\x67\x57\x72\x12\xbb\xf6\ \x03\x98\x7b\x96\xc0\xdc\xff\x21\xe2\x07\x37\x64\x67\x12\xbb\xe0\ \x9f\xea\x20\x02\x6d\xfb\x23\xd8\x69\x28\x82\x9d\xc7\x00\x95\xa3\ \x72\x35\x59\x2f\xf7\x94\xfc\x54\xd8\xff\xc2\x4e\x04\x49\x11\x20\ \x94\x0f\x24\x27\xc5\xbf\x2d\xec\x5a\x61\x9d\xb3\xf7\xb5\x02\x0e\ \xfb\x56\x02\xbb\x17\x22\x56\xbb\x0c\x66\xdd\x87\xe2\x9f\xa2\xbc\ \x1b\x39\x8f\x50\x42\x08\x56\x0c\x85\x51\x39\x12\xa8\x1a\x2f\x22\ \x14\x99\x19\x3f\xab\xf9\x2b\xe5\x4e\xf7\x9f\x0b\x7b\x12\x9c\x74\ \x27\x40\x28\xcf\xaa\x8f\xb0\x9b\x61\x4f\x8c\x97\x66\xe5\x1b\xe5\ \x12\xda\x3d\x8b\x10\xdb\xbd\x00\xf1\x3d\x0b\x0b\x72\xb2\xdb\x77\ \x0f\x7d\x51\x27\x04\x04\x48\x8c\x2e\xe3\x6d\xa0\x64\x2f\x3a\x91\ \x95\x18\xe5\x84\xfb\x8f\x60\x2f\x0b\xa6\x08\x10\xca\x03\x92\x29\ \xd1\xa7\x09\xbb\x1c\x76\x31\xa6\xcc\xaa\x59\x40\x62\xe7\x2c\xc4\ \x76\xce\x85\x59\xbb\x90\x51\x86\xdf\xa3\x93\x4a\x01\x93\xae\x93\ \x80\xae\x53\x81\x36\x1d\xb3\xf1\xad\x72\x95\xc4\x1f\x84\x3d\x00\ \x3b\xf5\x3c\x45\x80\x50\x39\x02\xc7\x5d\xc2\x2e\x43\xa6\xf3\x51\ \x49\x68\xd4\xcc\x40\x6c\xc7\x4c\x98\xfb\x3f\xe0\x4a\xa9\xbc\xf4\ \x06\x06\x82\x1d\x47\xc1\xe8\x7e\x3a\xd0\xed\xf4\x6c\xec\x43\x91\ \xce\xe7\x8f\xc2\xee\x25\x48\x08\x10\x2a\x7b\x92\xbb\xc5\xef\x87\ \xbd\x7f\x23\x73\xe0\x90\xe9\x3c\x6a\x66\x22\x26\xc0\x61\xee\x5d\ \xc0\x48\xa3\xd0\x22\x93\xce\xa7\xc2\x90\x20\xe9\x76\xda\xc7\xd3\ \xb8\x64\x06\x24\x72\xe5\xd6\x1d\xb0\x8b\x63\x51\x04\x08\x95\x01\ \x0d\x10\x76\x37\xec\x5d\xe3\x99\x03\xc7\xde\x25\x30\xb7\xbe\x8b\ \xd8\xce\xf7\x81\x68\x13\x5b\xbd\xd0\x15\x2a\x83\xd1\xf5\x74\x04\ \x7b\x9d\x0d\x74\xce\x68\xa2\x02\xe9\x8c\x64\xaa\x94\x7b\x84\xad\ \x67\xc3\x13\x20\x94\x3b\xea\x06\x7b\xa8\x4a\x6e\x00\xcc\xcc\x1e\ \x8e\xa6\x3d\xc0\xd6\xbf\x21\x2a\xc0\x11\x6f\xda\xc6\x16\xa7\x4e\ \xee\x30\xca\x7a\x22\xd4\x53\x80\xa4\xd7\xb9\x40\x69\x97\x4c\x7d\ \x8d\x0c\x75\xe5\x86\x44\x39\xb4\x55\xc3\x56\x27\x40\xa8\xd4\x54\ \x2e\xec\x16\x61\xdf\x43\x46\x56\x55\x99\xf6\x92\xdb\xcd\x6f\xc3\ \xdc\x3d\x8b\x43\x54\x94\xba\xe4\x10\x57\xd5\x54\x18\x7d\xce\xb3\ \x57\x72\x65\x66\x59\xb0\x0c\x7f\x7f\x28\xec\x31\x61\x8d\x6c\x74\ \x02\x84\x52\x93\x5c\x49\x75\xa5\xb0\xfb\x60\xa7\x1e\x71\x57\x72\ \x83\xdf\xd6\x77\x10\xdd\xf4\x06\xe2\x87\xb6\xb2\xb5\xa9\x34\xa3\ \x92\x5e\x08\xf5\xbd\x50\x44\x25\xe7\x64\x6a\x49\xb0\x4c\x8d\x72\ \xa7\xb0\xdf\xc2\x5e\xc1\x45\x11\x20\x54\x2b\x92\x29\x47\x64\x1a\ \x88\x11\xae\x9f\xf9\xe0\x56\x98\x1b\x5f\x47\x6c\xdb\x3b\x76\x6a\ \x73\x8a\x72\x53\xe1\x72\x18\x3d\xcf\x45\xb0\xef\x45\x40\xdb\x8c\ \xa4\x59\x5b\x0e\x3b\x1d\x0f\x53\xa4\x10\x20\xd4\x09\xea\xe9\x84\ \xeb\x97\xb9\x7e\xe6\x7d\x2b\x10\x5b\xff\x27\x98\xbb\x66\x30\x95\ \x08\x95\x05\xaf\x62\x20\x58\x7d\x1a\x8c\x01\x97\xd8\x79\xb9\xdc\ \x97\x5c\xfa\x2b\x87\x75\x39\x59\x47\x80\x14\xbc\x8a\x9d\x87\x41\ \x6e\x04\x74\x37\x4f\xf7\xae\x39\x88\xad\x13\xe0\xd8\xb7\x98\xad\ \x4c\xe5\x44\xc1\x4e\x63\x61\x0c\x14\x20\xa9\x9e\xec\xf6\xa9\x65\ \xf9\x48\xb9\x11\x51\xce\x8f\xb4\xb0\xa5\x09\x90\x42\xd4\x59\xc2\ \x9e\x12\x36\xd8\xbd\x53\x8a\x08\x63\xc7\x0c\x44\xd7\xbe\x84\x78\ \xfd\x2a\xb6\x30\xe5\x0d\x47\xd3\x7e\x08\x42\xa7\x5c\x0e\x74\x9b\ \x0a\x97\x27\xdc\x57\x0b\xbb\x46\xd8\x7b\x6c\x65\x02\xa4\x50\xd4\ \xd9\x79\x73\xfa\x2f\x57\xc1\xb1\xfd\x5f\x02\x1c\x2f\x22\xde\xc0\ \x25\xf4\x94\x47\x1d\x4e\xbb\x01\x08\x0d\xfa\x22\xd0\xe3\x4c\xb7\ \x41\xf2\x3b\xd8\x2b\x16\xf7\xb2\x95\x09\x90\x7c\x96\xac\x37\xfe\ \x84\x30\xf7\x92\x0e\xed\x9c\x85\xe8\xaa\xe7\x05\x38\xd6\xb1\x75\ \x29\x9f\x44\x24\x83\x10\x1a\xfc\x65\x3b\xff\x96\x7b\xda\x07\xbb\ \x74\xc1\xff\xb0\x85\x09\x90\x7c\x53\x77\x61\xbf\x14\x76\x81\x6b\ \x67\x94\x59\x70\x57\xbf\x00\x73\xff\x32\xb6\x2e\xe5\x4b\x59\xb9\ \xb7\x24\x48\xba\x8c\x75\xf3\xb4\x6f\x0a\xfb\xa6\xb0\x1d\x6c\x61\ \x02\x24\x1f\x74\x35\xec\x15\x56\xee\x2c\x92\xaf\x5b\x8f\xd8\x87\ \xbf\x85\xb9\x67\x2e\x5b\x96\xca\x0f\x90\x54\x4d\x86\x31\xe4\x0a\ \xa0\x62\x80\x5b\xa7\x6c\x80\xbd\x38\xe5\xd7\x6c\x5d\x02\xc4\xaf\ \x92\x9b\x00\x65\x4a\x86\xf3\x5d\x39\x5b\xd3\x1e\x98\x22\xe2\x88\ \x6d\x7b\x9b\xd9\x70\xa9\x3c\xf4\x46\x06\x8c\x9e\xe7\x21\x28\x23\ \x12\xf7\xd2\xa4\xbc\x05\x3b\x05\x10\xeb\xb4\x13\x20\xbe\xd2\x17\ \x84\x3d\x0d\x37\xe6\x3a\x62\xcd\xc0\xba\x97\x10\x59\xff\x47\x26\ \x37\xa4\xf2\x5f\xa1\x52\x84\x07\x5c\x0e\x0c\xfc\x0f\xc0\x68\xe3\ \xc6\x19\x65\x95\xb3\x6f\x09\x7b\x89\x8d\x4b\x80\x78\x5d\x6d\x61\ \x97\xee\xfc\xb2\x2b\x67\xab\x99\x89\xe8\x8a\x67\x98\xe0\x90\x2a\ \x3c\xe7\x24\x13\x37\x0e\xfb\xba\x9d\x4e\xde\x1d\xbd\x00\xbb\xcc\ \xf3\x41\xb6\x2e\x01\xe2\x45\x4d\x14\xf6\x7b\x61\xfd\xd2\x3e\x53\ \xc3\x66\xc4\x96\xff\x0a\xe6\xde\x79\x6c\x55\xaa\xa0\x15\xec\x32\ \x09\xc6\xf0\xab\x81\x76\x7d\xdc\x38\xdd\x46\xd8\xe5\x10\xf8\x60\ \x11\x20\xde\xe9\xe3\xc2\x6e\x85\x9d\x7e\x3a\xbd\x74\xeb\x72\xb8\ \x6a\xed\x1f\x10\x59\xf7\x22\x60\x72\x83\x2d\x45\xd9\x4f\x58\x31\ \xc2\x03\x2f\x07\xe4\x1e\x12\xa3\x38\xdd\xb3\xc9\xb4\xd3\x32\x39\ \xe3\xa3\xb0\x36\x50\x51\x04\x48\xee\xd4\xc5\x09\x8d\xcf\x49\xfb\ \x4c\xbb\x17\x21\xba\xec\x49\xc4\x0f\x6d\x66\xab\x52\xd4\xc9\x1c\ \x56\x59\x1f\x84\x46\x5e\x0b\x54\x8d\x73\xe3\x74\xef\xc0\x1e\x6a\ \xde\xc3\x96\x25\x40\x72\x21\x39\x38\xfb\x07\xd8\x05\x9f\x52\xd7\ \x91\x3a\x98\x2b\x9e\x45\x6c\xdb\x5b\x6c\x51\x8a\x52\x90\xd1\xeb\ \x7c\x04\x87\x5d\x05\x14\x57\xa4\x7b\x2a\xb9\x57\x44\x84\x35\x98\ \xc9\x56\x25\x40\xb2\xd6\x6e\xc2\x6e\x16\xf6\x30\xec\xda\x1d\xa9\ \x4b\x4e\x92\x2f\xfb\x05\xe2\xcd\x7c\x09\xa2\x28\xad\x87\xb0\x4d\ \x17\x11\x8d\x5c\xe7\xc6\x24\xbb\x5c\x13\x7f\x9b\xb0\x1f\xc1\x2e\ \xab\x4b\x11\x20\x19\x93\xac\x12\xf8\x9c\xb0\x4b\xd3\x3a\x4b\xf3\ \x01\xc4\x56\x3c\x0d\x73\xfb\xbb\x6c\x51\x8a\x4a\x43\xc1\x1e\x67\ \xc3\x18\xfe\x2d\xa0\x4d\x87\x74\x4f\xf5\x8a\xb0\x2b\xc0\xea\x87\ \x04\x48\x86\x24\xb7\xc9\xfe\x59\xd8\xb0\xb4\xce\xb2\x6b\x1e\xa2\ \x4b\x7f\xc2\xa8\x83\xa2\xdc\x8c\x46\x46\xdf\x00\x54\x4f\x4c\xf7\ \x54\x2b\x85\x7d\x5e\x18\x33\x92\x12\x20\xae\x4a\xee\x26\x97\x49\ \xda\x52\x1f\x74\x6d\x69\x84\xb9\xf2\x19\xc4\xb6\xfc\x85\xad\x49\ \x51\x19\x90\xd1\xfb\x22\x04\xe5\x92\xdf\x70\x59\x3a\xa7\xa9\x83\ \xbd\xd4\xf7\xff\xd8\xa2\x04\x88\x1b\x92\x69\xa2\xe5\x7c\x47\xea\ \xf9\xa7\xf7\xaf\x42\x74\xd1\x0f\xb9\xc2\x8a\xa2\x32\xed\xd4\xe4\ \x4a\xad\xf1\xe2\x91\xed\x90\x56\x99\x1d\xb9\xbc\x57\xce\x8b\x3c\ \xc6\x16\x25\x40\x52\x55\x11\xec\x82\x4f\x5f\x4b\xab\x1f\xae\x7b\ \x19\x91\x55\xbf\x11\x7f\x8d\xb0\x45\x29\x2a\x1b\x0a\x86\x11\x1e\ \x72\x15\x30\xf0\x52\xa4\x59\x77\x44\x3c\xb8\x56\xc1\x2a\x6e\xca\ \x22\x40\xb4\xd4\x49\xd8\x9f\x84\x9d\x91\xf2\x19\x0e\xd7\x22\xb6\ \xf8\x71\xee\x26\xa7\xa8\x5c\x71\x44\xee\x62\x1f\x7b\x33\xd0\x26\ \xad\x94\x74\xef\x0b\xbb\x04\x76\xbd\x11\x8a\x00\x49\xaa\xfe\xb0\ \xc7\x3f\x07\xa6\x7c\x86\xbd\x4b\x11\x5d\xf4\x08\x27\xca\x29\x2a\ \xd7\x4e\x4e\x4e\xb0\x8f\xff\x01\x50\x39\x32\x9d\xd3\xc8\x6a\x6d\ \xff\x26\x6c\x03\x5b\x94\x00\x49\xa4\x09\xb0\x0b\xd2\x54\xa6\x76\ \xb8\x09\xac\xfd\x23\x22\xab\x7f\x2b\xfe\x1a\x65\x6b\x52\x94\x27\ \x42\x91\x10\xc2\x83\xaf\xb4\x53\xa1\xa4\xae\x5a\xd8\x05\xe1\xe6\ \xb3\x41\x09\x90\x93\xe9\x62\x61\x2f\x0a\x2b\x49\xe9\xe8\x96\x06\ \x7b\xc8\x6a\xd7\x0c\xb6\x24\x45\x79\x91\x23\xd5\xa7\xc3\x18\x7b\ \x13\x50\x94\x72\x6d\xb7\xc3\xb0\x77\xae\xbf\xce\xd6\x24\x40\x8e\ \xd7\xd7\x61\x97\x9c\x4d\x6d\xc6\xad\x7e\x13\xa2\x0b\x1e\x40\xbc\ \x71\x13\x5b\x92\xa2\xbc\xec\xf4\xca\xfb\x22\x74\xea\x34\xa0\x7d\ \xdf\x54\x4f\x21\x57\x68\xc9\x92\xb9\xcf\x10\x20\x04\x88\x94\xcc\ \xa4\xfb\x70\xca\x47\xd7\xcc\x44\x64\xc9\x63\x40\x84\x1b\x58\x29\ \xca\x17\x0a\x97\x23\x3c\xe6\x96\x74\xd3\xa0\xc8\x65\xbe\x8f\x10\ \x20\x05\xfc\xfb\x61\xaf\xf3\xbe\x39\xe5\x33\xac\x7e\x01\x91\x35\ \xbf\x03\xe2\xcc\x0a\x4d\x51\xfe\x7a\xfa\x83\x08\x9f\xf2\x5f\xc0\ \xe0\xb4\x6a\xbf\xc9\xfc\x59\x72\x9f\x58\x41\x3a\xd2\x42\x06\x88\ \x4c\x82\x28\x4b\xce\x7e\x3d\xa5\xa3\x63\xcd\x88\x2d\xf9\x29\xcc\ \xed\x7f\xe3\x83\x48\x51\x3e\x56\xb0\xe7\x67\x61\x8c\xbe\x3e\x9d\ \xf2\xb9\x72\x28\x4b\x96\xcc\x8d\x11\x20\x85\x03\x8f\xff\x86\x9d\ \xae\x40\x5f\x72\x7f\xc7\x82\x07\x60\xee\x5f\xc6\xa7\x8f\xa2\xf2\ \x01\x22\x1d\x47\xc2\x90\xf3\x22\x25\x95\xa9\x9e\x42\x56\x22\xfd\ \x6a\xa1\x41\xa4\x10\x01\x22\x77\x97\x3f\x2f\xec\xb2\x94\x8e\x96\ \x93\xe5\xf3\xee\x46\xbc\x69\x3b\x9f\x3a\x8a\xca\x27\x67\x58\xda\ \x03\xa1\x49\xf7\xa4\x53\x3a\xf7\x0f\x0e\x44\x0a\x66\xd7\x7a\xa1\ \x01\x44\xc2\xe3\x65\x61\x17\xa5\x74\xf4\xde\xa5\x88\x2c\xb8\x4f\ \x74\x8f\x3a\x3e\x6d\x14\x95\x97\x1e\xa2\x02\xe1\x09\xd3\xd3\xd9\ \x74\x28\x33\xa5\xfe\x47\xa1\x40\xa4\x90\x00\x92\x1e\x3c\xb6\xff\ \x13\x91\xc5\x8f\x01\xe6\x11\x3e\x64\x14\x95\xcf\x92\xf5\xd7\xc7\ \x7e\x1f\xe8\x71\x16\x21\x42\x80\x58\x92\x73\x1e\xaf\xa6\x0c\x8f\ \x8d\xaf\x23\xb2\xfc\x67\x5c\x69\x45\x51\x85\x22\xb9\x42\x6b\xc4\ \x77\x80\x7e\x17\xa7\x03\x91\x7f\x47\x9e\xcf\x89\x14\x02\x40\xd2\ \x9b\x30\x5f\xf3\x02\x22\xab\x7e\xcb\x07\x8a\xa2\x0a\x50\xe1\x21\ \x57\x02\xa7\xa4\xbc\xcc\x37\xef\x27\xd6\xf3\x1d\x20\x01\x07\x1e\ \x29\xf4\x00\x13\xe6\xb2\xa7\x10\xdb\xf8\x27\x3e\x45\x14\x55\xc0\ \x32\xfa\x5d\x8a\xe0\x48\xb9\x4a\x37\xa5\x24\x15\x2f\x38\x10\xc9\ \x4b\x47\x9b\xef\x00\xf9\xb9\xb0\xeb\x52\x82\xc7\xe2\x1f\x23\xb6\ \xf5\x2d\x3e\x3d\x14\x45\xc1\xe8\x75\x3e\x82\x63\x6f\x4c\x15\x22\ \xbf\x10\xf6\x6d\x02\xc4\x5f\xba\x5f\xd8\x34\x7d\x76\x44\x10\x5b\ \xf4\x18\xcc\x1d\x7f\xe7\x53\x43\x51\xd4\x31\x05\x7b\x9c\x63\xd7\ \x16\x09\x86\x53\x39\xfc\x01\x61\x77\x10\x20\xfe\x90\x4c\x4d\xf2\ \xc3\x94\xe0\xb1\xf0\x11\x98\x35\xff\xe4\xd3\x42\x51\xd4\x27\x21\ \xd2\xed\x53\x30\xc6\xdf\x9a\x2a\x44\xa4\x5f\x7a\x9c\x00\xf1\xb6\ \xe4\x64\xf9\xff\x10\x1e\x14\x45\x79\x10\x22\xff\x09\x7b\x72\x9d\ \x00\xf1\xa0\xce\x81\x5d\x0c\x4a\xef\xce\x12\x1e\x14\x45\x65\x07\ \x22\x11\xd8\x45\xa9\xde\x21\x40\xbc\xa5\x31\xc2\xde\x13\xa6\x57\ \x29\x86\xf0\xa0\x28\x2a\xbb\x10\x69\x10\x76\x96\xb0\x25\x04\x88\ \x37\xd4\x53\xd8\x3c\x61\x5d\xf5\x0e\x33\x05\x3c\x1e\x85\xb9\xfd\ \x1d\x3e\x0d\x14\x45\xe9\x43\xa4\xc7\xb9\x02\x22\x32\x9b\xbb\xf6\ \xea\xac\x9d\xc2\x26\x0a\xdb\xe6\xeb\xdf\x9f\x07\xf7\xb0\x2d\xec\ \x5d\x9f\x5d\x75\x0f\x34\x97\xfe\x9c\xf0\xa0\x28\x2a\x65\xc9\x72\ \x0e\xe6\x07\x3f\x4f\xe5\xd0\xae\x8e\xdf\x2a\x27\x40\x72\x27\xb9\ \xcb\xfc\x7f\x85\x8d\xd2\xbe\xf1\x2b\x9f\x45\x6c\xf3\x6b\x7c\x02\ \x28\x8a\x4a\x4b\xb1\x4d\xaf\x59\xfe\x24\x05\x49\xbf\xf5\xa2\xe3\ \xc7\x08\x90\x1c\x48\x2e\x89\xbb\x40\xfb\xa8\xb5\x2f\x22\xb6\xee\ \xf7\xec\xf9\x14\x45\xb9\x03\x11\xe9\x4f\xd6\xbe\x98\xca\xa1\xd2\ \x7f\xfd\xc8\xaf\xbf\xdb\xcf\x73\x20\x57\x21\x95\xa2\xf6\x5b\xfe\ \x8a\xc8\x92\x47\xd9\xe3\x29\x8a\x72\x5d\xe1\x31\xb7\x02\xbd\xcf\ \x4d\xe5\x50\x59\x19\xf5\x59\xbf\xfd\x5e\xbf\x02\x64\x32\xec\x15\ \x57\x45\x5a\x47\xed\x9a\x87\xc8\xfc\xbb\x00\x33\xca\x9e\x4e\x51\ \x94\xfb\x0a\x86\x10\x9e\x70\x1f\x50\x3d\x41\xf7\x48\x99\xfa\xfd\ \x2c\x61\x73\x08\x90\xcc\xaa\xbb\xb0\x85\xc2\xaa\xb5\x8e\xda\xbf\ \x0a\x91\xd9\xe2\xed\x20\x7a\x88\x9d\x9c\xa2\xa8\xcc\x29\x54\x86\ \xf0\x94\x47\x80\x8e\x43\x74\x8f\xdc\x25\x6c\xbc\xb0\x1d\x04\x48\ \x66\x24\x23\x8e\x19\xc2\xf4\xf0\xde\x58\x83\xe8\x8c\x1b\x11\x3f\ \x52\xcb\xce\x4d\x51\x54\xe6\x1d\x6b\x71\x25\x42\x67\xfc\x04\x28\ \xd3\x5e\x1c\x3a\x5f\xd8\xe9\xf0\x49\x31\x2a\xbf\x4d\xa2\xff\x44\ \x1b\x1e\x2d\x07\x11\x9d\x7f\x2f\xe1\x41\x51\x54\xd6\x24\xfd\x4d\ \x74\xde\x3d\x96\xff\xd1\xd4\x04\xc7\xcf\xf9\x42\x7e\x02\x88\xac\ \xe9\x71\x8d\xd6\x11\xce\x2e\xf3\x78\xc3\x3a\xf6\x68\x8a\xa2\xb2\ \x0b\x11\xe1\x77\x62\x8b\x1e\xb1\xfc\x90\xa6\xae\x41\x4a\x35\x8c\ \x72\x10\x69\xf9\x64\x08\x6b\x38\xec\x9d\xe6\xa5\x5a\xfc\x58\xf6\ \x0b\x16\x84\xa2\x28\x2a\xa7\x32\xfa\x5d\x82\xe0\x48\xed\xb2\x44\ \x4d\xb0\x77\xaa\xaf\x60\x04\x92\x9e\xe4\x4e\xcd\x97\x75\xe1\x81\ \xcd\x6f\x11\x1e\x14\x45\xe5\x5c\x96\x1f\xda\xa2\x5d\x9c\xae\xd4\ \xf1\x7b\x9e\xde\xa9\xee\x07\x80\xfc\x4c\xd8\x29\x5a\x47\xd4\x2e\ \x43\x64\xd9\x13\xec\xb9\x14\x45\x79\x42\x91\x0f\x7e\x66\xf9\x25\ \x4d\x9d\xe2\xf8\x3f\x02\x24\x45\xc9\x71\xc0\x2b\xf4\x02\xbf\xdd\ \x88\x2e\x7c\x30\x95\x71\x47\x8a\xa2\xa8\xcc\xc8\x6c\xb1\xfd\x92\ \xf0\x4f\x9a\xba\x02\x1e\x9e\x0f\xf1\xf2\x1c\xc8\x40\x61\x8b\xb5\ \x42\x38\x39\x69\x3e\xf3\xfb\x30\xf7\x2f\x63\x87\xa5\x28\xca\x7b\ \x6f\xec\x1d\x47\xc2\x38\xed\x51\xdd\x14\xf0\x8d\xc2\xc6\x0a\xf3\ \xdc\x6a\x20\xaf\x46\x20\x21\xd8\x55\x05\xb5\xc6\xff\xcc\x15\xbf\ \x22\x3c\x28\x8a\xf2\x6e\x20\x22\xfc\x93\xf4\x53\x9a\x2a\x77\xfc\ \x61\x88\x00\x51\xd3\x5d\xc2\x4e\xd5\x3a\x62\xdb\x3f\x38\x69\x4e\ \x51\x94\xe7\x65\xf9\x29\xe1\xaf\x34\x75\xaa\xe3\x17\x3d\x25\x2f\ \x0e\x61\xc9\x3c\x57\x72\xb7\xb9\x7a\x8a\xe3\xfa\x4d\x88\xcc\xb8\ \x1e\x88\x36\xb1\x77\x52\x14\xe5\x7d\xc9\x74\x27\x67\x3c\x01\xb4\ \xeb\xa3\xc5\x1e\xd8\xbb\xd4\x3d\x93\x2f\xcb\x6b\x11\x88\x0c\xd5\ \xfe\x5b\x0b\x1e\xb1\x66\x44\x17\x3f\x4a\x78\x50\x14\xe5\x1f\x45\ \x0f\x21\x2a\x37\x19\x0a\xff\xa5\x21\xc3\xf1\x8f\x9e\x59\xda\xeb\ \x35\x80\x88\x16\xc5\x00\x9d\x03\xe4\x78\x62\xbc\x7e\x2d\x3b\x24\ \x45\x51\xbe\x92\xf4\x5b\xe6\x8a\x5f\xeb\x1e\x36\xc0\xf1\x93\x04\ \xc8\x09\xfa\x94\xb0\x6b\xb5\x8e\xd8\xf1\xbe\x55\x0d\x8c\xa2\x28\ \xca\x8f\x8a\x6d\xfa\x33\x50\x33\x43\xf7\xb0\x6b\x1d\x7f\x99\x73\ \x79\x65\x0e\x44\xee\xba\xfc\x40\x2b\xfa\x68\xda\x8d\xc8\x7b\xa2\ \x1d\x5b\xea\xd8\x0b\x29\x8a\xf2\xaf\x8a\x2a\x10\x3e\xeb\x49\xe1\ \x05\xab\x74\x8e\x5a\x0f\xbb\x24\x6e\x4e\xc7\xee\xbd\x12\x81\x3c\ \xa8\x05\x0f\x98\x88\x2d\xf9\x09\xe1\x41\x51\x94\xff\x25\xfc\x58\ \x6c\xc9\x4f\x2d\xbf\xa6\xa1\x01\x8e\xdf\xcc\xa9\xbc\x00\x10\x99\ \x30\xec\x7a\xad\x23\xd6\xbf\x0a\x73\xef\x7c\x76\x3c\x8a\xa2\xf2\ \x42\xe6\xde\x79\x96\x5f\xd3\xd4\xf5\x8e\xff\x2c\x58\x80\xc8\x8d\ \x31\x72\x16\x29\xa0\x7c\x44\xfd\x46\x44\x56\x3d\xcb\x1e\x47\x51\ \x54\x5e\xc9\xf2\x6b\xf5\x9b\x74\x0e\x09\x38\xfe\x33\x67\x1b\x0c\ \x73\x0d\x90\x9b\x85\x8d\x50\xc7\x74\x14\xb1\xa5\x4f\x00\xb1\x23\ \xec\x6d\x14\x45\xe5\x97\x84\x5f\x8b\x2d\xfd\xa9\xe5\xe7\x34\x34\ \xc2\xf1\xa3\x05\x07\x90\x7e\xc2\xa6\x6b\x1d\xb1\xfe\x65\x98\x07\ \x96\xb3\xa3\x51\x14\x95\x97\xb2\xfc\xdb\xfa\x97\x75\x0f\x9b\xee\ \xf8\xd3\x82\x02\x88\x9c\x35\x2a\x51\xfe\xb4\xdc\x6d\xbe\xfa\xbf\ \xd9\xc3\x28\x8a\xca\x6b\x59\x7e\x4e\x6f\x28\xab\xc4\xf1\xa7\x05\ \x03\x90\x0b\x84\x5d\xa8\xc1\x65\x27\xb4\xe3\xd0\x15\x45\x51\xf9\ \x1e\x86\x1c\x41\xec\x83\x27\xa0\xb9\x2a\xeb\x42\xc7\xaf\xe6\x3d\ \x40\xda\x08\xd3\xab\xf6\xb4\xe1\x35\x0e\x5d\x51\x14\x55\x38\x0c\ \x91\x59\xc5\x37\x68\x6f\x92\x7e\xc2\xf1\xaf\x79\x0d\x90\xef\x41\ \x67\xbc\x4e\x6e\x18\x5c\xfd\x1c\x7b\x14\x45\x51\x05\x25\xcb\xef\ \x35\xed\xd1\x39\xa4\x9f\xe3\x5f\xf3\x16\x20\xdd\x85\xfd\x40\xe7\ \x80\xd8\xf2\x5f\x8a\x96\x6c\x64\x6f\xa2\x28\xaa\xc0\x08\xd2\x28\ \xfc\xdf\xd3\xba\x47\xfd\xc0\xf1\xb3\x59\x51\xb6\xd7\x0f\x3f\x00\ \x3b\x6d\x89\x9a\x76\xce\x82\xb9\xf3\x5f\xec\x48\x1e\x54\xa0\x4d\ \x17\x04\x3a\x0e\x83\x51\xde\x0d\x08\x8b\x5b\x1a\x8f\xc3\x3c\xb4\ \x1b\x66\xdd\x3a\xc4\x1b\xd6\x8a\xff\x36\xd9\x48\x9e\xbc\x71\x41\ \x04\x3b\x0c\x87\xd1\x65\x2c\x50\x52\x05\x14\x57\xd8\x19\x61\x0f\ \xef\x45\xac\x6e\x2d\xcc\x5d\x73\x81\x28\x5f\xd8\xbc\x22\xe9\xff\ \x0c\xe1\x07\xd1\x75\xaa\xea\x21\xa5\x8e\x9f\xbd\x22\x2b\xdd\x29\ \x8b\xb9\xb0\xc6\x09\x5b\x00\xd5\x4d\x83\x32\x4d\xfb\x3f\xbe\x85\ \xf8\xa1\x6d\xec\x45\xde\xf1\x3e\x08\x76\x3d\x13\x46\xbf\x8b\x80\ \xce\xa3\x5b\xff\xd8\xc1\x6d\x30\x37\xfd\x05\xb1\x2d\x6f\x70\xcf\ \x8e\x87\x14\xac\x3e\x1d\xc6\x90\xaf\x02\xed\x13\x8c\x20\xb7\x08\ \x78\x6c\x7a\x1d\x91\x75\x2f\x5a\x29\xc7\x29\x0f\x3c\x75\x65\xbd\ \x10\xfa\xf4\x53\x80\xa1\x3c\xbd\x21\x9d\xba\x2c\x40\xb5\x28\x9f\ \x00\x22\x43\x89\x33\x94\x3f\xbd\xfa\x79\xce\x7d\x78\xa9\x13\x97\ \xf7\x41\x68\xf4\x77\x81\xca\x91\xea\x07\x09\x90\xc8\xd5\x73\xe6\ \xbe\x25\x6c\xc0\x9c\x92\x23\x84\xf0\x28\x71\xef\x7a\x9f\xaf\x7e\ \x4c\xc3\x16\x44\x17\x3c\x88\xf8\xc1\xf5\x6c\x3f\x0f\x28\x3c\x58\ \x04\x14\x83\xbf\xa2\x73\xc8\xfb\xc2\xce\xcc\x17\x80\x5c\x2c\x4c\ \x7d\x49\x41\xe3\x0e\x44\xfe\x79\x35\xdf\x5e\x3d\xf3\xe6\x7a\x1a\ \x8c\xb1\xb7\x00\x45\x29\xd4\xb1\x31\xa3\x30\x97\x3f\x8d\xd8\xa6\ \x57\xd9\x90\xb9\x90\x51\x8c\xf0\xa9\xd3\x81\xea\x14\x52\x26\x1d\ \xa9\x43\x74\xf6\x1d\x88\xd7\xaf\x62\x3b\x7a\xe1\x3e\x7e\xea\xd7\ \x40\xb9\xd6\xf4\xc6\xe7\x84\xbd\x9e\x51\xdf\x90\x0d\xff\x03\x7b\ \x4c\x4e\x59\xb1\x95\xbf\x21\x3c\xbc\x02\x8f\x6e\x9f\x86\x31\xe1\ \xce\xd4\xe0\xe1\xbc\xfd\x06\x47\x7d\x1b\x46\xbf\x4b\xd9\x98\x39\ \x81\xc7\xdd\xa9\xc1\x43\xaa\xb8\x02\xa1\x29\xf7\x23\xd0\x7e\x08\ \xdb\x32\xd7\x92\x69\x4e\xa4\x5f\xd4\xd3\x03\x99\xf6\xf1\xd9\x00\ \xc8\x97\x85\x0d\x57\xfe\xf4\xde\xa5\x30\x77\xbe\xc7\x0e\xe3\x05\ \xff\xd3\xf3\x3c\x18\xe3\x6f\xb5\x20\x90\x76\x47\x1b\x79\x2d\x82\ \x3d\xce\x65\xa3\x66\x1d\x1e\x13\xd2\x3b\x0f\x21\xe2\x19\x59\x7e\ \x51\xf8\x47\x0d\x0d\x77\xfc\xaf\x6f\x01\x52\x24\xec\x5e\x8d\x26\ \x42\x54\x9f\xb2\x54\x26\xfc\x4f\xaf\x0b\x10\x1c\x77\x8b\x2b\xf0\ \x38\x76\xce\xb1\x37\x21\xd8\x79\x02\x1b\xd7\x2f\xf0\x20\x44\x3c\ \x27\xdb\x3f\x6a\xad\x70\xbc\xc7\xf1\xc3\xbe\x04\xc8\xb7\x84\xf5\ \x56\xfe\xf4\x96\x77\x11\xaf\x5b\xc9\x5e\xe2\x05\x78\x08\x67\xaf\ \x02\x7c\xec\x5e\x68\x27\x7f\xdb\xfa\x2e\xd0\x72\x30\x49\x6f\x0b\ \xc3\x98\x70\x07\x82\x15\x43\xd9\xc8\x5e\x80\xc7\x96\xbf\x21\xb6\ \xe8\x51\xe0\xc3\x67\x81\xc3\xb5\x84\x88\x0f\x64\xf9\x47\xe1\x27\ \x35\xd4\xc7\xf1\xc3\x19\x51\x26\x27\xd1\x65\x82\xaf\x8d\xc2\xaa\ \x95\x3e\x2d\x97\xed\xfe\xfd\x6a\xc4\x9b\x6a\xd8\x4b\xfc\x00\x8f\ \xfd\xab\x10\x5d\xfa\x13\xc4\x1b\x3e\x5a\xa5\x13\x28\xae\x44\x68\ \xcc\x0d\xe2\x8e\x4f\x4e\x7c\x6c\xf3\x7e\x44\x67\xdd\x86\xf8\xc1\ \x0d\x6c\xf0\x1c\xc1\xc3\x5c\xfc\x38\x62\x5b\xdf\xfc\xe8\xde\x95\ \xf6\x40\x68\x92\x78\x59\x6d\xd7\x27\xf1\x81\x47\xea\x10\x9b\x7f\ \x1f\xcc\x7d\x4b\xd9\xde\x39\x52\xa0\xb4\x1b\x42\x9f\xf9\xb5\xce\ \xb2\xde\x5d\xb0\x77\xa9\x1f\xf6\x53\x04\xf2\x4d\x65\x78\x48\x6d\ \x7c\x9d\xf0\xf0\x0b\x3c\x76\xcd\x47\x64\xd6\xf7\x3e\x06\x0f\xeb\ \xed\xe8\x48\x2d\x22\xf3\xa6\x03\xdb\xfe\x9e\xf8\xf8\x36\x1d\x11\ \x9a\x78\xb7\xf5\x20\x50\x6e\xdd\xbc\x92\x94\xe1\x61\xdd\xbb\xa6\ \xed\x88\xce\xfe\x01\xd0\xb0\x39\x69\x24\x62\x4c\xba\x17\xc1\x4e\ \x63\xd8\xe6\xb9\x8a\x42\xa4\x9f\xdc\xf8\x17\x9d\x43\xaa\x1d\x7f\ \xec\x9b\x08\x44\x2f\xfa\x68\x69\x40\xf4\xdd\xab\x10\x6f\xd9\xcf\ \xde\xe1\x07\x78\x2c\xb8\x3b\xf1\x2a\xb9\x60\x18\xe1\x89\xf7\x03\ \x55\xe3\x13\x9f\x4b\x38\xab\xe8\xcc\x5b\x78\xdf\xd3\x55\xa8\x1c\ \xe1\x49\xf7\x25\xdf\xa3\x23\x0b\xb2\x2d\x7a\x14\xe6\x8e\xd6\x01\ \x2f\x33\x0c\x84\xa6\x3c\x94\x3c\x12\x89\x1c\x42\x6c\xee\x74\xee\ \xf1\xc9\x55\x14\x52\x24\x5e\xc2\xce\x7e\x16\x28\x6a\x97\xd3\x28\ \x24\x53\x11\xc8\xd7\xb5\xa2\x8f\xf5\xaf\xd0\x89\xe4\x0b\x3c\x2c\ \x47\x15\x11\x9f\x13\x0e\xed\xc0\xea\xc4\x9f\x13\x4e\x2a\x24\xde\ \x66\xa5\x03\xa4\xb2\x00\x8f\x85\x8f\x24\x84\x87\xf5\x76\xdb\xbc\ \x47\x2d\x12\x09\x97\x89\x48\xe4\x1e\x46\x22\xb9\x8a\x42\xa4\xbf\ \x14\x7e\x53\x33\x0a\xf9\xba\xdb\xd7\x91\x09\x80\xc8\x65\x3b\xb7\ \x28\x7f\xba\xf9\x00\x22\x1b\xff\xcc\x1e\x91\x2f\xf0\x38\xaa\x68\ \x23\xa2\xf3\xc4\xe7\x0f\x6e\x4d\xfc\xb9\x8e\x43\x10\x3e\xf5\x2e\ \x6b\xfc\x9e\xca\x30\x3c\x6a\xfe\xa1\xe6\x9c\x08\x11\x5f\xc8\xf2\ \x9b\xc2\x7f\x6a\xe8\x16\xb8\x9c\xff\x30\x13\x00\xf9\x92\xb0\x9e\ \xaa\x1f\x36\x37\xfc\x89\xc9\xdb\x72\x05\x8f\xde\x17\x2a\xc2\x63\ \xae\x1e\x3c\x8e\x39\xa2\xbd\x88\xce\xb9\xd3\x4a\xd4\x97\x50\x55\ \xe3\x10\x1e\x7b\xab\x88\xcb\x0d\xde\x94\x1c\xc3\x83\x10\xf1\x91\ \x84\xdf\xb4\xfc\xa7\xba\x7a\x3a\xfe\xd9\xb3\x00\x91\x89\x12\x6f\ \xd3\x89\x3e\x62\x9b\x5e\x67\x47\xc8\x05\x3c\xfa\x7f\x01\xc1\x31\ \x37\x26\xff\xe0\x8e\x7f\x21\x32\x7f\x7a\xca\x99\x01\xac\xc9\xd9\ \x39\x77\x58\xab\x77\x12\xaa\xfb\x99\x76\xbe\x26\xc5\x5c\x9b\x84\ \x47\xe6\xe0\x41\x88\xf8\x47\x96\xff\xd4\x8b\x42\x6e\x73\xf3\x21\ \x73\x1b\x20\x32\xe7\x95\xf2\x42\x71\x46\x1f\x39\x84\xc7\x08\x85\ \xa5\xe1\x12\x1e\x8b\x1e\xb4\x1c\x51\x3a\x92\xab\xb5\x62\xf3\xee\ \xb1\x26\x5e\x13\xaa\xcf\x05\x08\x0f\xfd\x3a\x6f\x90\x07\xe0\x41\ \x88\xe4\x6d\x14\x32\xc4\xf1\xd3\x9e\x04\x88\xd6\xdc\x07\xa3\x8f\ \xfc\x87\xc7\x31\x7f\xb6\x7f\x19\x62\x0b\x1e\x4a\x7e\xbe\x41\x5f\ \x84\x31\xf0\x4b\xbc\x51\x1e\x80\xc7\x27\x20\x52\xbf\x51\x0d\x22\ \x95\xe3\x79\xaf\xb2\x1d\x85\x24\x8b\xf0\x3f\x2e\xd7\xaa\x16\xba\ \x09\x10\xd9\x6b\x94\xab\x9e\x60\xf3\x1b\x8c\x3e\x0a\x04\x1e\xc7\ \xfc\xda\x9e\x39\x88\x2d\x7e\x2c\x79\xa7\x1c\x76\x15\x8c\xbe\x9f\ \xe3\x0d\xfb\x98\x73\xce\x0d\x3c\x8e\x87\x48\x64\xd6\xf7\x81\x03\ \x6b\x92\x43\x64\xf2\xbd\x08\x56\x4d\xe6\x3d\xcb\x62\x14\x82\x4d\ \x5a\xfb\x42\x4e\x73\xfc\xb5\xa7\x00\x72\xa3\xf2\x27\x23\x87\x10\ \xdd\xc8\xe8\xa3\x90\xe0\x71\xcc\xbf\x6d\x7f\x17\xe6\x07\x3f\x4b\ \xde\x31\x47\x5d\x8f\x60\xcf\xcf\xf2\xc6\x49\x15\x75\x40\x78\xca\ \xa3\xc9\xe1\x21\x33\xb6\xce\xbb\xc7\x75\x78\x1c\x53\xcb\x01\x44\ \xe6\x4c\x4b\x0e\x11\xa3\xd8\xca\xe0\x4c\x88\x64\x91\x21\x72\x63\ \x61\x44\xab\x00\xd8\x8d\x6e\x7c\xaf\x5b\x00\x91\x49\xea\xbf\xa0\ \xfc\xe9\x2d\x6f\x73\xdf\x47\x01\xc2\xe3\xa3\x90\xfb\xcf\xc0\xaa\ \xe7\x92\x5f\xf7\x98\x9b\xac\x0a\x88\x05\x0f\x8f\xc9\x0f\x00\x1d\ \x4e\x49\x0e\x0f\x99\x62\x64\xf7\xec\xcc\x5e\x0f\x21\xe2\x49\xc5\ \x5b\xf6\x59\x7e\x55\x43\x5f\x80\x0b\xb5\xd3\xdd\x02\xc8\xb5\x32\ \x78\x55\x7b\x05\x8d\x0a\x5a\x72\xdf\x47\xa1\xc2\xe3\x58\x10\xba\ \xe6\x79\x20\xd9\xe4\x5f\x30\x64\xa5\x93\x0f\x76\x9e\x58\x98\x37\ \x4f\x1b\x1e\x73\xb2\x73\x5d\x84\x88\x47\xa3\x90\xd7\x75\x9e\xdf\ \xb0\xe3\xb7\x73\x0e\x10\x99\x2a\x58\x7d\xe9\x4c\xcd\x0c\xe6\xbc\ \x2a\x70\x78\x1c\x83\xc8\x8a\xa7\x93\xbf\x35\x59\x4e\x68\x5a\xe1\ \xad\xee\xf1\x2a\x3c\x08\x11\xef\x46\x21\x4d\xdb\x2d\xff\xaa\xa1\ \xaf\x23\xcd\x54\xef\x6e\x00\xe4\x12\x61\x5d\x94\x87\x2f\x38\xf7\ \x91\x15\x85\x07\x7d\x59\x0d\x1e\x5b\xfe\x9a\x13\x78\xd8\x3d\x3e\ \x86\xc8\x07\x3f\xb6\x00\x96\xf8\xc7\x94\x59\x69\xe0\x0b\x26\x95\ \xb8\xd7\xe1\x41\x88\x78\x56\x9a\xfe\xb5\x8b\xe3\xbf\x73\x0a\x90\ \x6b\x94\x3f\xb9\x6f\xa5\xb5\x9c\x93\xca\x30\x3c\x06\x5f\x01\x0c\ \xbd\x52\x01\x1e\x6f\x23\xb2\xf4\x47\xb9\x81\xc7\x51\x89\xef\x8e\ \x2c\x7a\xd8\x4a\x95\x92\x50\x47\xeb\x51\xb4\x1b\x40\x78\x78\x01\ \x1e\x84\x88\x27\x65\xf9\xd7\x7d\x5a\x35\x95\xae\x49\xe7\xfb\xd2\ \x05\x88\xac\x0c\x74\x86\x3a\x1d\x5f\xe3\x1d\xce\x06\x3c\x06\x7f\ \x45\x11\x1e\x8f\x5b\x51\x40\xee\x7b\x7d\x0b\x22\x0b\xee\x01\x6a\ \x97\x25\x87\x88\x70\xae\x81\xb6\xfd\xf3\x17\x1e\x53\x1f\xf3\x0f\ \x3c\x08\x11\x8f\x46\x21\x5a\x7e\xf6\x0c\xc7\x8f\xe7\x04\x20\xea\ \x73\x1f\x87\x6b\x61\xee\x7c\x9f\x77\x97\xf0\x68\xa5\xd7\x37\x23\ \x32\xef\xce\xe4\x4e\xa8\xa4\xd2\xa9\x25\xd2\x23\xaf\xee\x5d\xa0\ \xa4\x0a\xe1\xcf\x3c\x03\xb4\xef\xeb\x2f\x78\x1c\x0f\x91\xd9\xb7\ \x26\x7f\x09\x90\x10\x99\x38\x1d\xc1\x6e\x9f\xe6\x03\x9b\xa9\xf7\ \x31\xe9\x67\x93\x55\x98\x4c\xd5\x8f\xbb\x08\x10\x39\xf9\xf2\x15\ \xe5\x4f\x6f\x7d\xdb\x4a\xf3\x4d\x11\x1e\xad\x2a\xd2\x68\xbf\xc9\ \x26\x4b\x9b\x51\xde\xcd\xaa\x59\x21\x6b\x57\xe4\x85\x84\x53\x0d\ \x9d\xf1\x53\x2b\xc2\x4a\xdc\x3e\x87\x10\x9b\x73\xa7\xf7\xe0\x71\ \xec\xfa\x0e\x22\x32\xf7\xce\xe4\x10\x91\xa5\x8d\xe5\xea\x3a\x42\ \x24\x43\x04\x89\xd8\xfe\x56\x5d\x5f\x41\x8a\x93\xe9\xe9\x00\xe4\ \x42\x61\x95\x6a\x3f\x28\x8a\xe8\x96\xbf\xf1\xc6\x12\x1e\x4a\x6f\ \xb2\x76\xee\xa5\x2d\x85\x01\x11\x59\x86\x76\xc2\x3d\x22\xb2\xea\ \x9c\xc4\x39\x37\xd9\x05\x9c\x6a\x17\x79\xfb\xf7\x44\x1b\x15\x21\ \x12\x22\x44\x32\x79\x1b\xa4\xbf\x55\x9f\xdb\xac\x74\xfc\x79\x56\ \x01\xf2\x35\xe5\x4f\xee\x9e\x87\x78\xd3\x0e\xde\x55\xc2\x43\x49\ \x56\xee\xa5\xb9\x77\x01\x8d\x49\x96\x7b\xcb\x82\x54\x13\xef\xb1\ \xe6\x0e\x7c\x0b\x0f\x59\x86\xb6\xea\x54\x85\x97\xb0\x16\xc4\x5b\ \x1a\x7c\xe2\xbd\x08\x91\x9c\x3f\x43\xd2\xdf\xee\x9e\x9f\x19\x7f\ \xee\x02\x40\x64\x75\xab\x7f\x53\xfd\x70\x6c\xcb\x3b\xbc\xa3\x84\ \x87\xe6\x03\x20\xd3\xc0\x4f\x4b\x3e\x96\xdb\x61\x90\xbd\x6a\xc9\ \x6f\x10\x39\x0a\x0f\x85\x1a\xe6\x96\xac\x55\x68\x0f\xfa\x67\x01\ \x01\x21\x92\x73\xc5\xf4\x46\x7d\xfe\x0d\x3a\x55\x64\xd3\x04\xc8\ \x17\x95\x8f\x95\x93\xe7\x7b\xe6\xf0\x6e\xba\xaa\x00\xc2\x43\xae\ \x54\x83\xc7\xe6\x37\x5d\x85\x47\xa0\xac\x17\xc2\xc3\xaf\x15\x4e\ \xfb\x21\x84\x47\x5e\x2f\x1c\x5a\xe6\x96\xd5\xc6\x0f\x6d\x45\x74\ \xf6\xed\x0a\x10\x39\xc5\x4e\x34\xe8\x97\xd2\xb8\xba\xf0\x38\x2a\ \xb9\x80\x80\x10\xa1\x14\x65\xf9\x5d\xf5\xc9\x74\xe9\xcf\x2f\xd7\ \xee\xca\x77\xdf\x7d\x77\x2a\xd7\xf6\x04\x54\xf3\xa8\x6c\x7e\x5d\ \xfc\x90\x85\xbc\x9b\x6e\xc2\x63\xf8\x35\x56\xda\xf3\xa4\x5a\xff\ \x0a\x22\xcb\x64\xe2\x42\xd3\x95\x6f\x96\xbb\xc1\x43\x53\x1f\x05\ \x3a\x8f\x06\xca\xc5\xed\xef\x30\x18\xc1\xde\xe7\x00\xfb\xd7\x88\ \x88\x61\x67\x66\x7e\x6e\xcb\x01\xc4\x6b\x57\x0a\xe7\x32\x45\x00\ \xa2\x4d\x02\xe7\xda\x19\x46\xc7\x61\x30\x6b\x66\x59\xc3\x3d\x79\ \x07\x8f\x63\x61\x67\x29\x82\x5d\x27\x23\xbe\x67\x89\xd5\x36\xde\ \xf7\x62\x2d\xd6\x3d\x91\xf7\x06\xa5\x55\x09\xba\x75\x50\xfc\x2e\ \x71\x8f\x0f\xd6\x20\x7e\x70\x13\x1f\x73\x57\xde\xc0\x4c\x18\x6d\ \x3a\x02\x9d\x86\xab\x1e\xd1\x49\xd8\xaf\x33\x1d\x81\x0c\x12\x76\ \xaa\xea\x87\xa3\x5b\xff\xc9\x1b\xe9\x36\x3c\x06\x5c\xaa\x06\x8f\ \x15\x4f\xc9\x5e\xe4\x0e\x3c\x2a\xc7\x59\xb5\x1e\x50\x74\xc2\x5b\ \xbe\xd1\x06\xc6\x88\x6b\x32\xfb\x1c\xd4\xaf\x42\x6c\xee\xdd\xc9\ \xb3\x8d\x56\x8e\xf4\x76\x24\x22\xeb\x79\x4c\xbc\x3f\x75\x78\x30\ \x12\xa1\x74\x9b\x7e\xab\x56\x66\x66\xe9\xd7\x07\x66\x1a\x20\xea\ \xd5\x7e\xf6\xaf\x12\x6f\x13\xeb\x79\x17\xfd\x0e\x8f\xaa\xc9\x30\ \x26\xdf\x67\xa5\x14\x39\xa9\xda\xf7\x45\xa0\xa8\x53\x66\x5f\x64\ \x0f\x2c\xb7\x56\x21\x29\x41\xe4\xd4\x3b\xad\x37\x7d\xcf\xc1\x43\ \xc2\xad\xcb\xd8\x24\x3f\x34\x0a\x73\xc5\xaf\x93\x0f\x3d\xf8\x15\ \x22\xbb\x17\x28\x41\xc4\xe8\x79\x1e\x1f\x79\x37\x5e\xbe\xa4\xff\ \x3d\xb0\x5a\xe7\x90\xff\xcc\x34\x40\x94\xc7\xc9\xcc\xed\x8c\x3e\ \xdc\x52\x78\xd8\x37\x72\x07\x8f\x09\x49\x1c\xb2\x70\x7a\xf1\x58\ \x53\xe6\x47\x43\xf6\x2d\x41\x6c\xde\x7d\xc9\xeb\xb3\x57\x8d\xb7\ \x87\x89\xbc\x02\x11\xcd\x4a\x82\xb1\xf5\x2f\xaa\xcd\xfd\xf8\x11\ \x22\xf3\xa7\x27\x4f\x5b\x23\x20\x12\x1c\x77\x0b\x21\xe2\xd6\x73\ \xb3\x4d\x2b\x0a\xd1\x9a\x07\xd1\x05\xc8\x60\xc7\x14\xae\x5a\xbc\ \x49\xe9\x65\x86\xa4\x5a\x91\xd1\xef\x12\x11\x58\x5e\xe6\x4d\x78\ \x48\xed\x78\x5f\x38\xf5\xc3\xd9\x79\x18\x6a\x17\x58\x3b\xb1\x93\ \x42\xa4\x7a\x82\x0d\x91\x60\x51\x6e\x6f\x5e\x8a\x65\x68\xe3\x07\ \x37\xd8\xfb\x61\x92\x2d\x65\x3e\x0a\x11\xbf\x24\x9a\x14\xf7\x2d\ \xb2\xe0\xee\xe4\x10\x91\xfd\x6f\xcc\x8d\x85\x9b\xca\xdf\xcd\x67\ \x46\xfa\x61\xf5\x3d\x21\xea\x3e\x3e\x05\x80\xa8\x17\x8d\xda\xbb\ \xc4\x5a\xcf\x4f\xa5\xa7\x40\xdb\x7e\x08\x0e\xff\x86\x77\xe1\x71\ \x60\x0d\x22\xcb\x7f\x9e\xdd\x07\x62\xf7\x1c\x75\x88\x8c\xbb\xcd\ \x7a\xa3\xf5\x13\x3c\x3e\x1a\x7e\xd8\xa8\x01\x91\xfb\xf3\x0f\x22\ \x72\x38\x6b\xec\x8d\x22\xfc\x6e\x4b\x47\x90\x86\x2c\x3f\x2c\xfc\ \x71\x26\xfc\xbc\x2e\x40\x2e\x53\x7e\xc8\xb7\x33\xef\x95\x2b\x3e\ \x68\xe8\x15\x56\xea\x07\xcf\xc2\x43\xee\xd5\x68\xa9\xcf\xfe\x5b\ \x95\x84\xc8\xc2\x47\x93\xbf\x59\x75\x3f\x53\x40\xe4\xf6\xec\x43\ \x24\xe4\x4e\x0d\x73\x6b\x3f\x8c\x0a\x44\x8e\x66\x2b\xce\x37\x88\ \x94\x74\x46\xb8\xdf\x25\x74\x04\xe9\x3e\x2f\x7a\xfe\x58\xd9\xcf\ \xeb\x00\x44\x2e\xf8\x57\x5b\x0f\x66\x46\x10\xdb\xcd\xbd\x1f\x69\ \x47\x1f\xe5\x7d\x81\xae\x53\x3d\x0e\x8f\xdc\x2d\x25\x35\x77\xbe\ \x67\x39\x5f\xcf\x41\xc4\x25\x78\x7c\x0c\x22\x56\x5b\x37\x16\x26\ \x44\x7a\x9f\x27\x1e\x06\x83\x0e\x21\x9d\xa6\x96\xfe\x58\x3d\x17\ \xa1\xf4\xf3\xfd\xdc\x06\x88\x7a\xae\x94\xbd\x1f\xf8\x63\x8d\xba\ \xd7\xa3\x8f\x6e\x49\xe0\xb1\xe1\xd5\x82\x85\xc7\x31\x1f\x2c\x9c\ \xaf\x05\x91\x64\xca\x16\x44\x5c\x86\x87\xfd\x26\x61\x20\x34\xe8\ \xf2\x4f\x2e\xa1\x2e\x14\x88\x94\x76\xc9\xff\x3a\x30\x99\x96\x7c\ \x56\xf7\x6a\xd5\x62\xba\xd8\x6d\x80\x5c\xa4\xfe\x50\xcf\xe4\x0d\ \x73\x43\x89\x36\x00\x49\x27\xee\x2a\x3c\xa6\xf8\x0e\x1e\xc7\x43\ \xc4\x5c\xfc\x78\xee\x21\x22\xeb\x79\xa8\xc0\x43\xa6\x64\x5f\xf0\ \x90\x32\x3c\xc2\xa3\x6f\xb2\xdf\xc2\x55\xe5\x47\x88\x2c\x7e\x58\ \xf4\xa9\x83\xad\x37\x43\x69\x57\xfa\x83\xb4\x9f\x13\xad\x45\x4d\ \x4a\xfe\x5e\x15\x20\xed\xa1\x5c\x38\xca\x84\xb9\x8b\xc3\x57\xae\ \xa8\x6d\xaf\xd6\x5b\x79\xd3\x1b\xae\xa5\x27\x91\x1b\xb7\x64\x8d\ \x86\xa4\xf0\xa8\x5d\x66\xd7\x7c\xf0\x60\x74\x19\xdb\xfa\x66\x6e\ \x21\x72\xb4\x92\xa0\x0a\x3c\x64\x3d\x8f\x9d\xef\x65\x06\x1e\x7e\ \x85\x88\x9c\x47\xab\x5b\xdb\x7a\x53\x14\x71\x22\x3d\x6d\x80\x58\ \x7e\x59\x39\x2b\xc5\x19\x8e\xdf\x77\x05\x20\x9f\x95\xc1\xb9\xd2\ \x27\xf7\x7d\x88\xf8\x91\x5a\xde\x2d\x37\x94\xc0\xa1\xc7\x0f\xd5\ \xb8\x07\x8f\xf1\xb7\x26\x77\xa8\x12\x1e\x72\x23\x58\xe4\xa0\x77\ \x5f\x64\x73\x05\x91\x4c\x94\xa1\x15\xd7\x16\x1e\x3f\x2d\x35\x78\ \xf8\x11\x22\x01\xe1\x8a\x4a\x5a\x4f\x75\x12\x8f\x35\xd3\x1f\xa4\ \x29\xcb\x2f\x0b\xff\xac\xa8\x90\xe3\xf7\x5d\x01\xc8\x05\xea\x94\ \x9b\xc7\x3b\xe5\xda\x2b\x43\x82\x49\xaf\xd6\x76\x85\x67\x12\x1e\ \xd1\x46\xef\x8f\x86\x64\x1b\x22\x99\x82\x87\xbc\x36\x71\x8d\x49\ \xd5\xbc\x5f\x09\x22\xc1\x4e\xa3\xbd\xfd\xae\xd4\xf7\xf3\x22\xe2\ \x4e\x50\x65\xf2\xf0\x3e\xfa\x03\x57\xa2\x10\x2d\xff\x9c\xd4\xef\ \xab\x02\xe4\x1c\xe5\x0b\x64\xe2\x44\xf7\x74\x78\x6f\xeb\x0f\x5c\ \xe7\xb1\x84\x87\x5b\x10\x49\x75\x85\x4f\x8e\xe1\x61\x2e\x7f\x1a\ \xd1\xf7\xae\x4b\x5e\xc1\x51\x40\xc4\x98\x74\xaf\x95\x0c\xd3\x93\ \xf0\xe8\x75\x01\x82\x23\xaf\x4b\xd8\x7e\x66\xfd\x5a\xfa\x03\x37\ \x00\xa2\xe7\x9f\x93\xfa\x7d\x15\x80\x8c\x10\xa6\x36\x83\xd5\x58\ \x83\x38\x6f\xb4\x7b\xaa\x4b\x90\x47\xac\xd7\xb9\x29\xd7\x05\xcf\ \x67\x78\xa4\x02\x11\xa3\xff\x17\xf4\xbf\xc0\x03\xf0\x88\x6d\x78\ \xc9\x2e\xbe\x65\x55\x70\x4c\x02\x11\x11\xb1\xca\x64\x98\x5e\x83\ \x88\x05\x8f\xb1\x37\x25\xfe\x90\x5c\x94\xe3\xc3\x3e\xe8\x45\x59\ \xfe\xb9\x51\x79\xf8\xbb\xab\xe3\xff\xd3\x02\x88\x72\xf4\x01\x46\ \x1f\xee\x3a\xc1\xbd\x4b\x13\x38\x84\x52\x84\x4e\x9d\xa6\x5d\x48\ \xa9\x10\xe0\xa1\x0b\x91\x60\xcf\xcf\xf8\x12\x1e\xc7\x9c\x82\x4f\ \x21\x62\xf4\xbe\x28\x39\x3c\x60\x22\xba\xfe\x15\x3a\x03\x37\xe5\ \x62\x14\xe2\x2a\x40\x12\x3a\x3c\x4a\x3f\xdc\xdc\x9d\xa4\x20\x8c\ \xac\xc6\x37\xe5\x61\xe5\xba\xe0\x85\x04\x0f\x2d\x88\x84\x35\xd2\ \xbf\x7b\x0c\x1e\x7e\x85\x88\x8c\xfa\x82\x63\x6e\x48\xfe\xc1\x35\ \xff\x2b\xde\x9a\xd7\xd0\x19\x64\xeb\xc5\xd4\x65\x80\x48\x4f\x73\ \xba\x9a\xb7\x8b\xc2\xdc\x47\x80\xb8\x4b\x90\x16\x98\xeb\xff\x94\ \xf8\x33\x15\x03\x10\x9a\xf2\x10\x02\x25\xd5\x84\x47\xaa\x10\xd9\ \xb7\x5c\xe9\x3c\x32\x65\xbd\x1a\x3c\x9a\xb3\x0a\x0f\xbf\x41\xc4\ \x82\xc7\x88\x6f\x25\xff\xe0\x8e\x7f\x21\xb2\xfa\x77\xf4\x03\x6e\ \xbb\x15\xe9\xa7\xd5\x93\x2b\x9e\x8e\x04\x2b\x70\x93\x01\x64\xbc\ \x30\xb5\xe5\x3e\x32\xe7\x7c\x0e\x72\x22\xe5\xfd\xdb\xc2\xa6\x57\ \x81\xfa\x24\x15\xda\xda\xf5\x41\x68\xea\x63\xad\xce\x89\xc8\x71\ \x66\x63\xc2\xb4\xe4\xf0\xd8\x35\x1f\x91\x39\xb7\xe7\xe5\x78\x73\ \xab\x10\x11\x11\x5e\x74\xd5\xf3\xc9\xe1\x21\xa2\xbc\xd0\x69\x8f\ \x26\x87\x47\xe4\x10\x62\xb3\xef\xc8\x3a\x3c\xfc\x02\x11\x2d\x78\ \x2c\x7a\xd0\xb5\xbd\x4e\xd4\x71\x92\x7e\x5a\xbd\x46\x48\x99\xc3\ \x81\x94\x00\x72\xa6\xf2\x45\xe9\x65\x7b\xa4\x34\xa2\x90\xe8\xa2\ \x87\x93\x17\x52\x2a\xef\x66\x39\xb8\x13\x6b\x43\x28\x4d\x52\x1e\ \x85\x87\x4c\x29\x91\xa5\xb4\xec\xb9\x82\x48\xec\xfd\x1b\x81\x2d\ \x7f\xb5\x53\x67\xac\x7b\x11\xd1\x7f\x7d\x07\xf1\xa6\x6d\xc9\xe1\ \x21\xa2\x3c\x09\xea\xa4\xf0\x98\x3b\xdd\xaa\x5b\x92\x0b\x78\x78\ \x1d\x22\xda\xf0\x50\x7f\x4b\xa6\x74\xa5\xe7\xaf\x5b\xdd\x44\x1e\ \x88\xc7\x13\xa6\xc2\x78\x03\x8a\x7b\x40\x62\x33\x6f\xb3\x6a\x35\ \x50\x99\x51\xb0\x72\x3c\x8c\x89\x77\x25\xdf\xff\x21\xdf\xa8\xe7\ \xdc\x81\x78\xc3\xba\x14\xe0\x71\x84\x0d\xed\x73\x78\x7c\xe2\xda\ \x27\xdd\x0f\x54\xf4\x4f\x7e\xed\xf3\xef\x87\xb9\x77\x7e\xc6\xda\ \x91\xf0\xf0\x9a\x3f\x39\x15\xc6\x69\x0f\xab\x7e\xfc\x4d\xb4\x92\ \x0b\x31\x11\x40\x64\x74\x22\x73\x56\xb4\x4b\xde\xcb\x23\x88\xbc\ \xf9\x79\x6b\xec\x97\xca\xe0\x4d\x17\x6f\x8a\x56\x5d\xf2\x64\x10\ \x39\x52\x67\xa5\x3a\x09\x0e\xfe\x32\xe1\xe1\x67\x78\x2c\x7e\xdc\ \x8a\x9a\xd2\x52\x26\x26\xfd\x09\x0f\xff\xcb\x68\x83\xf0\x05\x7f\ \x4e\x5e\x2a\xc2\x56\x83\x30\xb9\xdc\xd3\x3c\x19\x24\x5a\xd3\x50\ \x25\x78\x48\xed\x5f\x45\x78\x64\x41\xd2\x41\x45\x67\xde\x6a\x01\ \x22\xa1\x8a\x2b\x08\x0f\xc2\xc3\x56\xcb\x01\x3b\xf9\xe5\x81\x24\ \x2b\x99\x8c\x62\x2b\x99\xa6\xcc\xc8\x4c\x78\x14\x80\xa4\xbf\x96\ \x7e\x5b\x4d\xed\x1c\x1e\x40\x07\x20\x93\x94\x2f\x46\x71\x15\x0b\ \x95\xbe\xe2\xf5\xab\x10\x9d\x7d\x47\xf2\x7a\xd9\x84\x87\xb7\xe0\ \x21\x1c\x74\x78\xfc\x9d\xd9\x85\x47\x8e\x21\x42\x78\x78\x5c\x7a\ \x7e\x7b\x52\xc6\x00\x12\xdb\xbf\x9a\x37\x23\xeb\x10\xb9\x3d\x61\ \xaa\x13\xc2\xc3\x63\xf0\x90\xf5\xd9\xbb\x9d\x96\x7d\x78\xe4\x08\ \x22\xe1\xc1\x57\xa8\xc1\x63\xcb\xdb\x84\x47\xae\x82\x10\x3d\xbf\ \xad\x0d\x10\xe5\x1e\x14\x3f\x40\x80\x64\x1d\x22\x07\x37\x20\x3a\ \xe3\x7b\x3a\x69\x09\x08\x8f\x5c\xc2\xa3\x7a\x42\xee\xe0\x91\x65\ \x88\x48\x78\x60\xf0\x57\xd4\xe0\xb1\xf4\x71\xc2\x23\x57\x3e\xe4\ \x80\xd6\x06\xcd\xc9\x3a\x00\x91\xc9\xf7\xd5\x72\x40\x1f\xdc\x8a\ \x78\xcb\x7e\xde\x8d\x5c\x74\x80\xa3\xf5\xb2\x93\x2d\xd7\x3c\x16\ \xb2\xae\x44\x64\x3e\xe1\x71\x52\x78\x94\xf6\x40\xe8\xb4\x1f\x26\ \x87\xc7\x91\x3a\x44\x67\xdd\xee\x3f\x78\x1c\x07\x91\xa8\x80\x5f\ \xd2\x79\xb4\x14\x21\xa2\x0d\x0f\xee\xf3\xc8\x9d\xff\x68\xd9\x67\ \xf9\x6f\x45\x0d\x71\xb8\xa0\x04\x90\x51\xf2\x99\x52\x3a\xad\xfa\ \x44\x0c\x95\x49\x88\x24\xdb\x6c\x28\xd5\x69\x18\x8c\x1e\x67\xb3\ \xd1\x4e\x06\x0f\x19\x79\x94\x77\x4f\x0e\x8f\xd9\x77\x20\x5e\xb7\ \xc2\x9f\xf0\xb0\x9e\xf8\x10\x42\x23\xaf\xb1\x16\x5a\xa8\xfc\x06\ \x1d\x88\x10\x1e\x3e\x94\xba\xff\x0e\x38\x5c\x50\x02\x88\x72\xae\ \x70\xb3\x8e\xd9\x77\x73\x0e\x91\xe6\x3d\x88\xcc\xba\x25\xf9\xd0\ \x84\xbc\xe1\x63\x6f\xb2\xf6\x87\x50\x27\xc2\xa3\x9b\x1a\x3c\xea\ \x15\x1e\x38\x0f\xc3\x43\xb9\xce\xc8\x89\x10\xa9\x3e\x8d\xf0\xc8\ \x43\x69\xfa\xef\xb1\xaa\x00\x51\xde\x9a\x1a\xaf\xdf\xc8\xbb\xe0\ \x05\x1d\x1d\xdf\xae\x5d\xa6\x06\x91\x7e\xff\xe1\xee\xf7\x17\xb5\ \x87\xd1\xff\x32\x84\xc7\xdc\x2c\x9c\xc9\x95\x29\xa7\x9a\x27\x3c\ \x32\x24\x6b\x15\xd8\x1d\x7a\xf0\x38\x11\x22\xdd\x3e\x4d\x78\xe4\ \xdb\xcb\xa7\x9e\xff\xfe\x04\x17\x5a\xdb\x48\x28\xbd\xd0\x08\x05\ \x7e\x21\xf2\xc6\xe7\x81\xe8\x21\xde\x09\xaf\x28\x54\x8e\xf0\xc4\ \x7b\x80\xce\xc9\x2b\xd0\xa5\xb3\xcb\xf9\x63\x9d\xa8\x6d\x7f\x84\ \xe4\x06\xc7\xb2\xe3\xca\xc6\x58\x13\xcd\x77\xc3\xdc\xb7\x98\xf0\ \xf0\x02\x3c\x14\xaf\x2b\xf1\x45\x47\x11\x5b\xf8\x08\xcc\x9a\x7f\ \x10\x1e\x79\xe3\x2f\xca\x10\xbe\xf0\xcf\x50\xac\x2d\x28\xb9\x30\ \x2a\x59\x04\x22\xb7\x26\xaa\x4d\xa0\xd7\x6f\x21\x3c\xbc\xa6\x68\ \x23\x22\x73\x6f\xb7\x73\x3d\x25\x8b\x44\x46\x7c\x0b\xe1\x41\x5f\ \x4e\xeb\xeb\x2c\x78\x4c\x79\xf0\xe3\xf0\xb0\x7a\x51\x19\x8c\xd1\ \xdf\xb5\x6b\x5d\x13\x1e\xfe\x80\x47\xe3\x8e\x24\x1d\x26\x64\x65\ \x74\x3e\x1a\x89\x10\x1e\xf9\xe0\x2f\x0e\xd9\x7e\x5c\x4d\x43\x1d\ \x3e\x24\x04\xc8\x20\x24\x48\xdf\xfb\x71\x80\xac\xe7\x0d\xf0\xa2\ \x62\x47\xec\xa5\xba\x2a\xf5\x8f\x87\x5e\x69\x3b\x82\x74\xe0\x51\ \x52\x79\xf2\x0f\xb4\xed\xe1\xb9\xa1\xac\x82\x82\x87\x8c\x46\x27\ \x28\x5e\xd7\xb2\xa7\x10\x79\xef\xda\xe4\x43\xa0\x0e\x44\xc2\x32\ \xc7\x96\x0a\x3c\x36\xfc\x99\xf0\xf0\xba\xd4\xfd\x78\xc8\xe1\x43\ \x42\x80\x0c\x55\x8e\x68\x55\x97\x8f\x52\xb9\x81\xc8\xfc\xbb\xac\ \x5d\xbe\x49\x25\x1c\x41\x78\xe8\xd5\x50\x5d\x78\xa7\x04\x8f\x63\ \x9d\xa4\x85\xf0\xb0\xda\x21\x0a\x73\xd1\x63\xd9\x85\xc7\xa4\xfb\ \x80\x2a\x45\xa8\x6d\x7c\xd9\x89\x5e\xef\x54\x82\x08\xaa\x15\x56\ \x66\xad\x7f\x05\x91\xe5\x3f\x27\x3c\x3c\x2e\x4d\x3f\x3e\x34\x19\ \x40\x86\xa9\x9e\x29\xde\xb8\x8d\xad\xef\xe9\x9e\x11\xb5\x77\xf9\ \xaa\x40\x64\xd0\x17\x11\x1e\x7e\x8d\x12\x44\x94\xe1\xb1\x6f\x39\ \xe2\x87\x77\x79\x03\x1e\xf2\x9a\xa7\x3e\x92\x1c\x1e\x32\x9b\xf1\ \xec\x69\xae\xc3\x43\xce\x1d\xc4\xb6\xbd\x9d\x5d\x78\x54\x8e\xd4\ \x8f\x88\x54\x21\xa2\x02\x8f\x15\x4f\x49\x2f\xc1\xe7\xd0\xe3\xd2\ \xf4\xe3\xc3\xdc\x03\xc8\x41\x02\xc4\x17\x10\x59\xf8\x80\x35\x0e\ \x9d\x54\x03\x2e\x45\x78\xc4\xb7\x85\xb7\x35\xd2\x87\x87\x74\xc4\ \x0a\xf5\xc8\xb3\x06\x0f\x6b\x9e\xa6\x5a\x01\x1e\xb7\x0b\x78\x28\ \x64\x56\xd0\x84\xc7\xf1\x13\xcf\x19\x95\xcc\xbe\xab\x02\x0f\x19\ \x11\xb5\x36\x9c\x96\x2e\x44\x08\x0f\x7f\x01\xe4\xa0\xbb\x00\x19\ \xa4\x36\x44\xd2\x8c\x78\xd3\x0e\xb6\xbe\x2f\x7a\x48\xcc\x1e\x87\ \x56\x81\x48\xff\xcf\x23\x3c\xfa\xa6\x93\x42\x44\x0b\x1e\xd2\x11\ \x1f\xda\x9a\xf3\x9f\xae\x7d\xcd\x07\x37\x28\xbe\xe1\x3f\xe8\x4d\ \x78\xc8\xd4\xed\x0a\xf0\xb0\x22\xa2\x44\xc3\x69\xa9\x42\x84\xf0\ \xf0\x9f\x7b\x90\x7e\x5c\x3d\x9b\x7a\xd2\x39\x90\x01\x4a\xa7\x91\ \xe3\x66\x1c\xdb\xf4\x1f\x44\x36\xbc\x9a\xfc\xb3\xbd\xcf\xb3\x21\ \x72\x5c\x09\xdc\x40\xfb\xc1\x6a\x8e\xb8\xb1\x06\xd1\x59\xb7\xa9\ \x39\x62\xdf\xc2\xe3\xbe\xe4\xcb\xa4\x73\x05\x8f\x64\x75\x3f\x74\ \xae\x4b\x42\x64\xce\x6d\x40\x9d\xe2\x24\x2b\xe1\xe1\x5b\xdf\x00\ \xf5\x79\x90\x01\x89\x00\x22\x73\x39\x94\x2a\x9d\xa6\x91\xd1\x87\ \x2f\x21\xb2\xfc\x17\xd6\x83\xae\x04\x11\xb9\x6b\x59\x40\x24\xd0\ \x7e\x88\x70\xc4\x0f\xa8\xc1\x63\xf6\x0f\x10\x6f\xdc\x94\xf3\x9f\ \x9a\x51\x78\x28\xbe\xe1\x67\x0b\x1e\x81\xe2\x4a\x45\x78\x44\xb4\ \xaf\xcb\xe8\x7e\x36\x50\xa1\xf0\x4e\xb9\xfe\x4f\x84\x87\x9f\xa5\ \xee\xcf\x4b\x1d\x4e\xd8\x8f\x44\x4a\xd1\x87\xd4\xa1\x1a\x36\xba\ \x3f\x29\x62\x3d\xe8\x61\xb9\x3a\x6a\xd0\xff\x4b\xfc\xd1\xee\x67\ \x22\x1c\x2e\x07\xda\xf7\x4f\x9e\x3b\xe9\x28\x3c\x9a\xb6\x13\x1e\ \xd9\x84\x87\x6a\x06\xe1\x14\x2a\x0e\x2a\x97\x44\xde\xbf\x4a\xf4\ \xa9\x27\x09\x0f\x3f\xeb\xd0\x4e\x9d\x4f\xcb\x1a\xc9\x3b\x4e\x16\ \x81\xf4\x53\x3d\x43\x4c\xef\x0b\x29\xaf\x41\xe4\xc3\x67\x80\xd5\ \xcf\x27\xff\x68\x97\x71\x84\x07\xe1\xd1\xba\xea\x36\x20\x32\xf3\ \x46\xc2\xc3\xe7\x8a\xe9\x05\x04\xfd\x8f\xfe\xe5\x44\x80\xf4\x55\ \x3e\x45\xd3\x6e\xb6\xba\xcf\x15\x59\xfd\x1c\xf0\xe1\x6f\xd3\x0c\ \x7d\x09\x8f\x9c\xc0\xa3\xb4\x9b\x22\x3c\x9a\x33\x07\x8f\x9d\xb3\ \x10\x79\xff\x5a\x6b\x68\x8c\xf2\xb9\xf4\xfc\xf9\x31\x4e\x9c\x38\ \x84\xd5\x53\xf9\x1d\xb6\x89\x11\x48\x5e\x40\x64\xed\x0b\x30\xc4\ \x1b\xaa\x52\xf5\x38\x2f\xc3\x43\x4e\xf2\xcb\x7c\x5c\xc9\xe0\x71\ \x68\x17\xa2\x73\xef\xf2\x39\x3c\x14\x37\x44\xea\x14\xbe\xd2\x85\ \x07\xcb\xd0\xe6\xd7\x98\x84\x9e\x3f\xef\xd9\x1a\x40\x7a\x29\x1d\ \x2e\xde\x38\xe2\xcd\xb5\x6c\xf5\x7c\x09\x5f\x9d\x84\x8a\x5a\x10\ \xf1\x14\x3c\xe4\x24\xff\xfd\xee\x0e\xb5\x11\x1e\x84\x47\x21\x01\ \x44\xfa\x73\x19\x49\x06\xc3\x2a\x1f\x3f\xc6\x89\x60\x4a\x11\x48\ \xd3\x1e\x2e\xe1\xcd\x43\x88\x98\x4b\x9f\x50\xfc\xf0\x61\x44\xe7\ \x4d\x27\x3c\xb2\x0d\x8f\xb2\x3e\x6a\xf0\x68\x69\x24\x3c\x28\x4d\ \x82\xc4\x6c\xbf\xae\x19\x81\x04\x53\x8a\x40\x0e\xef\x65\x83\xe7\ \x23\x44\x36\xbf\x66\xed\x4e\x4e\xee\x6d\x4a\x10\x1a\x76\xb5\xb5\ \x1b\x9b\xf0\xc8\x12\x3c\xe4\xfc\xce\x69\x8f\xa8\xe5\xf1\x9a\x75\ \x1b\xe1\x41\xe9\x4b\xdd\xaf\x9f\x34\x02\xe9\x20\x4c\xcd\x23\x70\ \x02\x3d\x7f\x21\xb2\xf5\x4d\x35\x88\x54\x4f\x40\x78\xf2\xc3\x96\ \xc3\x2d\x38\x78\x58\xab\x9a\xee\xcd\x2e\x3c\x54\x16\x07\xe8\x24\ \x81\x24\x3c\xa8\xd4\xfd\x7a\xb1\xc3\x8b\x8f\x01\xa4\x4a\xf9\x8b\ \x8e\xec\x67\x63\x13\x22\x96\xa3\xb5\x1c\x6e\x96\x21\x92\x7b\x78\ \xdc\x07\x73\xd7\xac\x2c\xfd\xd6\x41\x84\x07\x95\x1d\xe9\xf9\xf5\ \xaa\x94\x01\x62\x36\xd7\xb1\xb1\x0b\x00\x22\xb1\x45\x8f\x26\x77\ \x1a\x59\x86\x48\x46\xe0\x51\x54\xa1\x07\x0f\x8d\x25\xb1\xe9\xff\ \xd6\x87\xd4\x96\x25\xcf\xfc\x3e\xe1\x41\xa5\x25\x4d\xbf\xfe\x09\ \x80\x54\xab\x1e\x19\x6f\xa9\x67\x6b\x17\x42\x87\xda\xf6\x57\x6b\ \x9c\xdf\x2b\x10\xc9\x0c\x3c\x64\x0e\xa9\x07\x3d\x0a\x0f\x85\xdf\ \xaa\xb3\xa7\x85\xf0\xa0\x12\xfa\xf5\x86\xb4\x00\x52\xa9\x1e\xea\ \x10\x20\x05\x03\x91\x9a\x7f\xa8\x43\x64\xca\xc3\x96\x43\xce\x88\ \x43\xad\x18\xae\x08\x8f\x1d\x9a\xf0\x50\xc8\x21\x95\x65\x78\x04\ \x3b\x8c\x50\x84\xc7\x5e\xc2\x83\x72\x4f\x47\xb4\x22\x90\xce\x29\ \x03\x44\x93\x54\x54\xa1\x40\xa4\xe3\x10\xdb\x21\xbb\x0c\x91\x60\ \xa7\x31\x08\x4d\x7d\x30\xb9\x43\x6d\xd8\x8c\xe8\xcc\xef\xf9\x1b\ \x1e\xe2\xb7\x1a\x32\x71\xa5\x4a\x94\x35\xe3\x7b\x84\x07\x95\xab\ \x08\xa4\xf2\x44\x80\x54\x28\x1f\x1a\x21\x40\x0a\x13\x22\x0f\x5b\ \x0e\x35\xa1\x84\x43\x76\x13\x22\x96\x43\x95\x3b\xcc\xc3\x65\xc9\ \xe1\x21\x23\x8f\x66\x85\xb5\xec\x5e\x86\x87\xca\x6f\x4d\x61\x13\ \x27\xe1\x41\x25\xf7\xeb\x07\x75\x3e\x5d\x71\x22\x40\x94\x9f\xf8\ \xb8\xde\x17\x51\x79\x03\x91\x7f\x5a\x0e\x35\x5b\x10\x29\x28\x78\ \x54\x8e\x27\x3c\xa8\xdc\x46\x20\x7a\x81\x41\x45\x1a\x11\x48\x23\ \x5b\xbb\x50\x21\x22\x1c\xaa\x32\x44\x26\xde\x93\xb0\x3c\x2e\xe1\ \xe1\xfc\xd6\xaa\xc9\x30\x26\xdf\xab\xf6\x5b\x67\xde\x4c\x78\x50\ \x19\x8a\x40\xb4\xfc\x7a\x87\xd4\x00\x62\x4d\xb4\x30\x75\x33\x21\ \xa2\x00\x91\x4e\xc3\x84\x73\x9c\x44\x78\x24\x83\xc7\x84\x3b\x93\ \xef\xea\xd7\xf9\xad\x84\x07\x95\x5a\x0c\xa2\x33\x91\xfe\x89\x08\ \xa4\xbd\xd2\x61\x2d\x1c\xbe\xa2\x8e\x87\xc8\xe1\x84\x9f\x0b\x94\ \x76\x25\x3c\x5a\xfb\xad\xd5\xa7\x11\x1e\x94\xb7\xa4\xee\xdf\xdb\ \x9f\x08\x90\x22\xa5\xc3\x92\xbd\x75\x52\x85\x05\x91\xd9\x77\x5a\ \x99\x5f\x5b\x7d\xa7\x39\xac\x9e\xb5\xb9\xa0\xe0\xd1\xed\xd3\x6a\ \xf0\x38\xb0\x06\x11\xb9\xb2\x8c\xf0\xa0\xb2\x21\x75\xff\x5e\x74\ \x22\x40\xca\xd4\xbc\x06\x8b\xc7\x50\xc7\x75\x87\x7d\x4b\xac\xcc\ \xaf\x27\x85\x48\xdd\x06\xe1\x90\xd5\x52\x7e\xe4\x14\x1e\x32\xf5\ \x79\xb6\xe1\x31\xfe\x56\xab\xde\x7c\x52\x78\xcc\x99\x26\xde\x0a\ \x0f\x10\x1e\x54\x96\x1e\x68\x65\xff\x5e\x96\x1a\x40\x12\xbc\x6d\ \x52\x85\x0b\x91\xe8\x4c\xe1\x10\xf7\x7f\x78\xf4\x5f\x80\x9a\x99\ \x88\xce\xbb\x53\xa9\x43\x5a\xf3\x00\x72\xe3\x5c\x32\x78\x08\x87\ \x6a\xa5\xec\x70\x1b\x1e\x32\xf5\x79\xb6\xe0\xd1\xe3\xec\xcc\xc1\ \xa3\xdf\x25\x84\x07\x95\x9e\xd4\xfd\xbb\xf5\xb0\x1e\xdf\x8b\x95\ \x2a\x89\x20\xce\x4e\x47\x9d\xa4\x5b\xd4\xaf\x42\xe4\xfd\xef\x88\ \x5e\xd4\xd6\x86\x46\xac\x59\xcd\xa1\xaa\x4e\x22\xeb\x38\x54\x5d\ \x78\x68\xa4\x3e\x4f\x47\xca\xd1\x41\xed\x32\x44\xe6\x8a\x36\x89\ \xaa\xaf\x8a\x31\xfa\x7f\x41\xad\x20\x18\xe1\x41\xb9\xe3\xdf\xc3\ \x27\x02\x44\x6d\x12\x3d\x7a\x98\x8d\x4c\x25\x70\xca\xea\x8b\x2c\ \x32\x01\x8f\x40\x9b\x2e\x08\x4d\x12\xd1\x4c\x45\x7f\xc2\x83\xf0\ \xa0\x74\xa5\xee\xdf\xdb\x9d\x08\x10\x8a\xca\x9a\x32\x06\x0f\x99\ \xbd\xb6\x5d\x1f\x6f\xc1\xa3\xf7\x45\x08\x8e\xb9\x81\xf0\xa0\xf2\ \x49\x01\x02\x84\x22\x3c\x32\x0d\x0f\x55\x07\xbf\x6b\x3e\x22\x0b\ \xee\xd6\x5a\xe5\x48\x78\x50\x39\x7f\x96\xb5\x8f\x88\x9b\x6c\x35\ \x8a\xf0\x20\x3c\xa8\x7c\x54\x5c\x6f\x93\xb8\x7e\x04\x12\x6d\x62\ \x23\x53\x84\x47\x52\x07\x7f\xb9\x70\xf0\xdf\x20\x3c\x28\x7f\x29\ \xaa\xb7\xca\x96\x43\x58\x14\xe1\xe1\xb2\xc2\x83\xaf\x00\x06\x7f\ \x25\x23\x0e\x9e\xf0\xa0\xbc\x24\x7d\x80\x84\x4a\xd9\x6a\x94\x1e\ \x3c\xba\x9e\x05\x63\xfc\xf7\x93\xc3\x43\x4e\x22\xcf\xbf\x97\xf0\ \x20\x3c\xa8\x9c\x11\xa1\x4c\xef\xe3\xda\x5f\x10\x08\xb2\x91\x29\ \x75\x78\xa8\xee\xba\xd6\x58\x81\xe4\x4d\x78\x04\x10\x1e\x22\xe0\ \x71\xca\x97\x09\x0f\xca\xbf\x0a\x04\x32\x0c\x10\x8a\x22\x3c\x3e\ \x09\x8f\xe1\xd7\x00\x03\x2e\x4d\xfe\xd1\x2d\x6f\x23\xb2\xf4\x71\ \x20\x1e\x23\x3c\x28\xff\x3f\xe3\x6c\x02\x8a\xf0\x20\x3c\x28\x4a\ \x53\xf1\x13\x01\x52\xaf\x16\xb3\x94\xb0\xe9\x28\xef\xc2\xe3\x48\ \x1d\x62\xb3\xa7\x65\x07\x1e\x01\x03\xe1\x11\xd7\x12\x1e\x54\xfe\ \x48\xdd\xbf\x5b\xe5\x0b\x8f\x7f\xc2\xd5\xd2\x30\x06\x38\xea\x45\ \x79\x17\x1e\xd1\xd9\x77\x58\x79\xb9\xb2\x02\x8f\xd1\x37\x01\xbd\ \xcf\x4b\xfe\xd9\xf5\xaf\x20\xb2\xf2\x69\xad\x3d\x54\xae\xc2\x23\ \x10\x44\xa0\xb4\x97\xf8\x4b\x0c\xf1\x43\xdb\xc1\x82\x70\x94\x0b\ \xfe\x3d\x72\x22\x40\xe4\x02\xe0\xca\xa4\x87\x85\xcb\xd8\xc8\x54\ \xf6\xe0\x51\x52\x8d\x90\x4c\x8c\xe8\x67\x78\xac\x78\x4a\xcb\x69\ \xbb\x09\x8f\x60\xe5\x38\x18\xa3\xbf\x0b\x94\x77\xb7\xff\xa1\x6e\ \x1d\xa2\x4b\x7e\x2c\xda\x69\x0d\x3b\x2c\x95\x8e\x7f\xb7\x36\x8c\ \x04\x4f\xfc\x87\xe4\x5e\x22\xcc\x46\xa6\xb2\x03\x8f\xd2\x1e\x08\ \x4d\x7d\xcc\x5b\xf0\x10\xbf\xcf\x2f\xf0\x90\xed\x67\x4c\x9c\xfe\ \x11\x3c\xa4\x2a\x06\x8a\x68\xee\x41\x04\xda\x0f\x61\xa7\xa5\xd2\ \xf1\xef\x9f\x00\x48\x8b\x5a\x0f\x2f\x66\x23\x53\x1f\xef\x73\x3d\ \x3f\xab\x06\x8f\x3d\x8b\xf4\xe0\x21\x87\xad\xca\xbb\x79\x0b\x1e\ \xe3\x6e\x57\x83\xc7\xea\xe7\x73\x0a\x0f\x6b\x78\xa1\xe7\xa7\x4f\ \xfe\x46\x59\x5c\x21\xda\xf6\x7e\x42\x84\x4a\xc7\xbf\xb7\x9c\x08\ \x10\xb5\x49\xf4\xa2\xb6\x6c\x64\xea\xa3\xfe\xd6\xeb\x02\x18\xe3\ \xbe\x9f\x1c\x1e\x32\x65\xc7\xbc\x3c\x80\x47\xf7\x33\xd5\xe0\xb1\ \xfa\xb9\x9c\xc2\xc3\x52\x9b\x8e\xad\xff\x3f\x09\x91\xa9\x0f\x59\ \x95\x20\x29\x2a\x05\xff\x5e\x7f\x22\x40\xea\x94\x0e\x13\x1d\xcf\ \xc9\xe4\x4b\x11\x1e\x6a\x35\x2e\x34\xf2\x3d\x79\x13\x1e\xc5\x29\ \xc0\x43\xa3\x1d\x33\xb4\xda\xca\xac\xdf\x94\xd4\x59\xc8\x32\xc2\ \x84\x08\xe5\x3c\x7d\x8e\x7f\x57\x52\x5d\x6a\x00\x91\x0a\x97\xb3\ \xad\x09\x8f\xc2\x80\x87\x08\xe9\xc3\x13\xee\x56\x82\x87\xb9\xfc\ \x97\x9e\x81\x87\x54\x6c\xdb\xdf\xc4\x7b\xe2\xc6\x24\xcf\x72\x19\ \x21\x42\xa5\xe2\xd7\x3f\x01\x10\xe5\xe2\xcb\x81\x30\x87\xb1\x08\ \x8f\x02\x81\xc7\xa9\xe2\xfa\xab\x27\x28\xc0\xe3\x69\xc4\x36\xfc\ \xd1\x33\xf0\xb0\x09\x72\x18\x51\x99\x98\xb2\x61\x33\x21\x42\x29\ \xf8\xf5\x76\x3a\x1f\x3f\x90\x46\x04\xd2\x8e\xad\x4d\x78\xe4\x39\ \x3c\x4a\x34\xe1\xf1\x92\xb7\xe0\xe1\x28\xde\xbc\x47\xb4\xd9\x0f\ \x08\x11\x4a\xc1\xaf\x6b\x05\x06\x9f\x88\x40\x6a\x95\x49\x55\x44\ \x80\x10\x1e\x79\x0c\x8f\x50\x39\xc2\x93\x1f\x54\x83\xc7\x92\x1f\ \x7b\x16\x1e\x84\x08\xa5\x15\x81\xe8\xf9\xf5\xda\x94\x01\x82\xe2\ \xf6\x6c\x6d\xc2\x23\x7f\xe1\x31\xe9\x3e\xa0\x72\x64\x72\x78\x2c\ \x7e\x1c\xb1\x2d\x6f\x78\x1a\x1e\x84\x08\xa5\xee\xd7\x2b\x74\x3e\ \xbd\xf7\x44\x80\xec\x52\x27\x15\x01\x52\x50\xf0\xe8\x7d\x91\x22\ \x3c\xe6\xf9\x1b\x1e\x22\x84\xd7\x82\xc7\xd6\x37\x7d\x01\x0f\x42\ \x84\xca\x40\x04\xb2\xfb\x44\x80\xec\x56\x3d\x32\xd8\xa6\x82\xad\ \x5d\x28\xf0\x90\x4e\x6f\xcc\x0d\x6a\x4e\x6f\xfe\x5d\xee\xc2\xe3\ \x70\x2d\xa2\x33\xbf\x9f\x1d\x78\x14\x75\x40\x78\xca\x23\xc9\xe1\ \x21\x9c\x7a\x6c\xc1\x83\xbe\x83\xc7\xc7\x21\x72\x9b\x55\xf9\x31\ \x29\x44\xa6\xdc\x67\x55\x92\xa4\x0a\x43\x9a\x7e\x3d\x75\x80\xa0\ \xb8\x23\x5b\xbb\x50\xe0\xe1\xb2\xd3\xd3\x82\xc7\xec\xdb\x11\x3f\ \xb8\x21\x3b\xf0\x90\xf9\xb6\x3a\x9c\x92\x1c\x1e\x0b\x1f\x81\xb9\ \xe3\xef\xbe\x84\xc7\x47\x10\xd9\x6b\x97\x0d\x4e\x06\x11\xa3\xc4\ \x2a\x43\x4c\x88\x14\x88\xf4\xfc\xfa\x27\x00\x22\x97\x65\x1d\x51\ \x3a\xb4\xb4\x8a\x8d\x4d\x78\xe8\xc3\xa3\x6d\x7f\xcf\xc1\x23\x50\ \xd4\x51\x0f\x1e\x35\xff\xf0\x35\x3c\x8e\xa9\xe5\x80\x22\x44\x8a\ \x09\x91\x42\x91\xba\x5f\x3f\x82\x93\x2c\xe3\x95\xda\xaa\x74\x78\ \x49\x67\x36\x36\xe1\x91\x02\x3c\x1e\xf4\x16\x3c\x64\x9a\xf8\xd3\ \x1e\x4b\x0e\x8f\xd8\x11\xc4\xe6\xdd\x93\x3f\xf0\x20\x44\xa8\xf4\ \xfc\xfa\x31\x4e\x9c\x08\x90\x6d\x6a\xa4\xea\x62\xa5\xb4\xa6\x08\ \x0f\x2d\x78\x94\x54\x7a\x0b\x1e\x2a\x35\x46\x24\x3c\xe6\xdf\x07\ \x73\xf7\xec\xfc\x82\x07\x21\x42\x7d\xec\x81\x30\x6c\xbf\xae\xa6\ \x6d\xad\x01\x44\x2d\x02\x09\x86\xc5\x03\x58\xc9\x46\x27\x3c\xfc\ \x09\x8f\x92\x2a\x4d\x78\xcc\xc9\x4f\x78\x10\x22\xd4\xb1\x17\xaa\ \x4a\x9d\x54\xee\xad\x46\x20\xdb\x95\xbf\xb0\xb4\x2b\x5b\x9d\xf0\ \xf0\x1f\x3c\xac\x1a\x23\x3f\x54\xab\xab\x3e\xfb\x8e\xfc\x87\x07\ \x21\x42\xe9\xfb\xf3\x56\x23\x90\x4d\xca\xa7\xe0\x44\x3a\xe1\xe1\ \x47\x78\xa8\x4c\xe2\x4b\x78\xcc\x9d\x0e\x73\xdf\xe2\xcc\xb4\xe3\ \xb6\xbf\x7b\xb3\x86\x39\x21\x52\xb8\xd2\xf3\xe7\x9b\x5a\x03\x88\ \xf2\x53\x6c\x94\x31\x02\xc9\x07\x85\x07\x5f\xa1\xe6\xf4\xb6\xbc\ \xed\x73\x78\xf4\xd4\x84\xc7\x92\xcc\xc0\x43\xb6\xe3\xe2\x47\xbc\ \x07\x8f\x13\x21\x52\xbb\x2c\x39\x44\x26\x4e\xb7\x2a\x51\x52\x79\ \xf0\x12\x59\xd6\x4d\xe7\xe3\x1b\x5b\x03\xc8\x7a\xe5\x53\xe8\x7d\ \x21\xe5\x51\x78\x60\xf0\x57\xd4\x9c\xde\xd2\xc7\xfd\x0b\x0f\x79\ \x4d\xa7\xff\x50\x6d\xd7\xfb\xac\x1f\x64\x16\x1e\xb2\x1d\xe3\x31\ \x6f\x77\x0c\x09\x11\x59\x39\x32\x19\x44\x82\x61\xab\x12\x25\x21\ \x92\x07\xd2\x0b\x08\xd6\xb7\x06\x90\x1d\xc2\x9a\x94\x4e\x71\x7c\ \x9d\x65\x2a\xff\xe1\xa1\xe0\xf4\x3c\x0b\x0f\x95\x6b\x3a\x9a\x32\ \xa5\x6e\x65\x61\xc3\xe3\xa8\xa2\x8d\x8a\x10\x09\x11\x22\xf9\x20\ \x75\x7f\xde\xe4\x70\xe2\xa4\x00\x51\x8f\x42\xe4\x24\x24\x97\xf2\ \x12\x1e\x9e\x86\xc7\x00\x3d\x78\x68\xa6\x4c\xc9\x5b\x78\x10\x22\ \x85\x25\xe9\xc7\x93\x2d\x2a\x69\x85\x0f\x27\x03\xc8\x5a\xb5\xa7\ \xa7\x0d\x02\xa5\x8c\x42\x08\x0f\x0d\x78\x34\xd6\x58\xc9\xfc\xb2\ \x02\x8f\xf6\x43\x10\x3a\xed\x11\x35\xa0\xcd\xba\x95\xf0\x20\x44\ \x0a\x97\x1f\xd2\x8f\x0b\x7f\xae\xa8\xb5\xc9\x00\xa2\x1c\xc3\x07\ \xda\xf6\x64\xeb\x13\x1e\x9a\xf0\xd8\x98\x1d\x78\x4c\xb9\x3f\x79\ \x7a\xea\xa3\xd1\x50\xc3\x7a\xad\xf3\x17\x0c\x3c\x08\x91\xc2\x00\ \x88\x9e\x1f\x5f\xe9\x1e\x40\xca\x09\x10\xbf\xc8\xe8\x7f\x99\x1a\ \x3c\x64\x3d\x8f\x95\xbf\xca\x0c\x3c\x9a\xb6\x67\xfc\x77\x06\x2b\ \x86\xea\xc1\x43\x33\x1a\x2a\x38\x78\x10\x22\xf9\x0f\x90\x72\x77\ \x01\xf2\xa1\xf2\xc3\xaa\x3e\x6e\x46\xe5\x52\x45\x1d\x10\x54\x81\ \x87\x54\xf5\x04\x84\xcf\x7f\x19\xe1\xb3\x9e\x46\x78\xc4\x77\x10\ \xec\x71\x2e\x02\x65\xbd\x64\x37\xfb\xe4\x5b\xfe\x69\x8f\x7a\x0b\ \x1e\x9d\xc6\xc0\x98\xfa\x70\x72\x78\xc8\x6b\x9a\x79\x0b\xe1\x41\ \x88\x50\xfa\x7e\xfc\x63\x7c\x08\x9d\xe4\x03\x72\x8c\x2b\xda\xca\ \xff\xfb\xb8\xda\x0f\x60\xeb\xfb\x21\xfa\xa8\x9e\x0c\x84\x4b\x75\ \xba\x14\x50\x31\xd0\xb2\x63\xcb\x24\x9a\xf7\x03\xfb\x57\xc2\xdc\ \xf7\x21\xe2\xe2\xed\xdd\x18\x75\x9d\x9a\xa3\xce\x26\x3c\x26\xdd\ \x63\xd5\xb1\xc8\xc4\x35\x15\x3c\x3c\x4e\x80\x48\xf8\xd4\x3b\x80\ \xaa\x53\x93\x42\x24\xb0\xb4\x0d\x62\x5b\xdf\xe2\x43\xe8\x65\xa9\ \xfb\xf1\x28\x4e\x98\x03\x39\x19\x24\x22\xc2\xe4\x8c\xe2\x88\xe4\ \x5f\xdc\x5b\x9c\x41\x3c\xb0\xd1\x43\xbc\x09\x5e\x7e\xc3\xe8\x36\ \x35\xfd\x93\xb4\xe9\x08\x74\x3b\x5d\x9c\xeb\x74\xb5\xcf\x67\x15\ \x1e\x63\x05\x3c\xee\x26\x3c\xb2\x09\x91\xf9\xd3\x05\x44\xee\x4e\ \x5c\x37\x5e\x40\x24\x38\xf6\x66\x2b\x7a\xd5\x2d\xc0\x45\x65\x49\ \xd2\x7f\x4b\x3f\xae\x1e\x7d\x44\x4e\x78\xd5\x3c\xa9\x16\xa9\xbe\ \xa9\x06\xdb\xf5\xe7\x4d\xf0\xb2\xc2\xed\x80\x2e\xe3\xb2\xfb\x9d\ \xd9\x84\x47\xd5\x64\x18\x72\xce\x23\x19\x3c\x1a\x36\x23\x3a\xeb\ \x16\xc2\xc3\x2d\xc5\x8e\xd8\xe5\x8b\x77\xcd\x4f\x7e\x8f\xc6\xde\ \x04\xa3\xd7\x05\x7c\x16\xbd\xf8\x72\x69\xf9\xef\xa0\xea\xc7\x17\ \x9f\x64\xac\xe2\xa4\x52\xde\x8a\x1b\x68\xdf\x8f\x77\xc1\xcb\x1d\ \x44\x0e\x5f\xa9\x67\xd9\xf4\x1f\x3c\x26\xdc\x69\xa5\xd5\x48\x0a\ \x0f\x79\x4d\x87\x77\x11\x1e\x84\x08\x95\xba\xff\x5e\xa2\x0a\x10\ \xe5\x2c\x72\xc1\x8a\x41\xbc\x0b\x1e\x96\x91\x68\xf8\xca\x8c\xf8\ \x18\x1e\x53\xf4\xe0\xd1\xbc\x87\xf0\x20\x44\xa8\xf4\xfc\xf7\x27\ \xb8\xd0\xda\x44\xf9\x07\xc2\xe2\x38\x71\xe9\xcd\xc9\xd4\x71\x08\ \xef\x82\x57\x15\x2a\x07\xaa\x12\x8c\x51\xaf\x7d\x11\xd1\xad\xef\ \x22\x20\x3a\x91\xd1\x71\xb0\xb8\x97\x43\xed\xc9\xf3\x60\x48\xff\ \xbb\x0e\xed\xca\x1e\x3c\xba\x7d\xda\x9a\xa0\x4d\x7a\x9d\x07\xd6\ \x20\x3a\xe7\x4e\xc4\x5b\xf6\x11\x1e\x59\x80\x48\xd2\x39\x11\x07\ \x22\xd6\x21\x9c\x13\xf1\x86\xd4\xfd\x77\xdc\xe1\x82\x12\x40\x0e\ \xc2\x9e\x48\x1f\x9a\xf4\xb4\x6d\x7b\x59\x75\xa5\xe3\x2d\xfb\x79\ \x33\xbc\xf6\x76\x51\x35\x31\xe1\xf0\x55\x74\xe7\x1c\xcb\xe1\x4b\ \x3b\x56\xae\xd5\x28\x11\x6f\x25\x43\x10\xe8\x30\x08\xc1\x4e\xe2\ \xf6\x77\x10\xd6\xa6\x43\x72\x1f\xb2\xf8\x51\xcf\xc1\xc3\xca\x2a\ \xdb\x72\x80\xf0\x20\x44\xa8\x93\x28\x50\xd4\xc9\xf2\xdf\x8a\x5a\ \xe5\x70\x41\x09\x20\x52\x73\x94\x00\x22\x2f\xa4\xc3\x60\xc4\x35\ \x4b\x7e\x52\x99\x97\xd1\xed\xb4\xd6\xff\x67\xc3\x66\xc4\xeb\x4f\ \x52\xf7\x21\x76\xd8\xae\x83\x21\x2c\x66\x6d\xd0\x0e\x20\x50\xde\ \x5b\xc0\x64\x04\x82\x63\x6e\x68\xfd\xf5\xa4\x69\x4f\xc6\x7f\x0f\ \xe1\x41\x88\x50\x2e\x02\xa4\xc3\x29\x3a\x1f\x3f\x69\x65\xb5\x44\ \xd3\xef\xf3\x94\x1f\x3c\x39\xfc\x41\x79\x4b\x72\xf8\x2a\xd1\x43\ \xbc\x73\xa6\x72\xe4\x1a\x6f\xdc\x8c\x58\xcd\x3f\x73\x0b\xc3\x5e\ \x17\xc0\x98\x30\x2d\x39\x3c\x6a\x97\x09\x78\xfc\x80\xf0\xc8\x31\ \x44\x50\x93\xbc\x7f\x59\x73\x22\xfd\x2e\x65\x9b\xe5\xea\x99\xd2\ \xf3\xdb\x73\x75\x01\xa2\x5e\xcb\xb3\xd3\x08\xde\x0d\x8f\x29\xd8\ \x79\x7c\xc2\x04\x69\xb1\x9d\xf3\xfc\xd3\xd1\x05\x3c\x8e\xbe\xb1\ \x26\x85\x87\xdc\x29\xdd\x52\x4f\x78\xe4\x1a\x22\x0b\xef\xb3\x2a\ \x58\x26\xed\xa7\x23\xaf\xb5\xda\x9f\xca\x81\xf4\xfc\xb6\x36\x40\ \xe4\xa6\x91\x06\xa5\x53\xcb\x89\x18\xf5\x6c\x8e\x54\x36\x9c\x6e\ \xa2\xd5\x57\x8d\x3b\x60\xd6\xad\xf2\xc7\xef\xd0\x85\x47\xb4\x91\ \xf0\xf0\x82\xcc\xa8\x5d\xc1\x52\x05\x22\xa2\xfd\x09\x91\x6c\x3f\ \x58\x6d\x74\x26\xd0\x1b\xd0\x4a\x8a\xab\x44\x00\x31\x85\xcd\x50\ \x7b\xdd\x0d\x23\xd8\x81\x51\x88\x77\x3a\x47\x09\x50\x3d\xa9\xf5\ \xff\x5f\xf3\x3e\xec\x45\x15\x1e\xff\x19\xd2\xb9\xab\xc0\x43\x26\ \x80\x9c\x7b\x07\xe1\x41\x88\x50\xaa\x23\x14\xd2\x5f\xab\xef\x0f\ \x9b\xe1\xf0\x40\x0b\x20\x50\x06\x88\x7c\x18\x2b\x87\xf1\xae\x78\ \xa5\x73\x74\x99\x98\x30\xf7\x95\x1f\x86\xaf\x94\x9d\xbb\x84\x87\ \x1c\x73\xd7\x4c\xa7\x43\x78\x10\x22\x05\xfd\x8e\xa9\xe7\xaf\x5b\ \xe5\x40\x32\x80\xfc\x4b\xf9\x2b\x3a\x8f\xe1\x5d\xf1\x4a\xe7\xa8\ \x9e\xd8\xfa\xff\x3c\xb4\x0b\xa6\x66\xd9\x56\xcf\xc3\x23\x76\x24\ \xb7\xf0\x90\x15\xdd\x42\xa5\x19\x69\x0b\x99\xf5\x58\xae\x3e\x0b\ \x54\xc8\x07\x3e\xe0\xcf\x0e\x49\x88\x78\x4f\x7a\xfe\xba\xd5\x1b\ \x97\x6c\xc7\xd8\x42\xe9\x72\x84\x95\x25\xfd\x8a\x0e\x83\x81\xa2\ \xf6\xda\x13\x98\x94\xdb\xe1\x47\x31\xd0\x75\x72\xeb\xff\xbf\x46\ \xbc\x4c\xc4\x4d\xcf\x5e\xbe\x72\xd1\x2b\xe1\x8c\x22\x8b\x1f\xc9\ \x2d\x3c\x44\x5b\x87\x87\x5c\x09\xf4\xfe\x37\xd1\xf7\xcb\xad\xa5\ \xd1\xb1\x0f\x7f\x0b\x73\xd7\xcc\xf4\x1b\x22\x54\x8e\xf0\xf8\xdb\ \x81\xe3\x5f\x06\xf6\x2e\x11\xc0\xbc\xcf\x9f\xcf\x98\x03\x11\x6b\ \xd0\xa4\xfb\x99\x49\x21\x22\x3f\x1f\xdb\xf4\x2a\x9f\xe7\x4c\x48\ \xfa\xe9\x0e\xca\x2b\xb0\x0e\x39\x1c\x48\x29\x02\x89\x42\x79\x1e\ \x24\x84\x60\xa7\xd1\xbc\x39\xb9\xe6\x47\x97\x53\x45\x07\x69\xdb\ \xea\xff\x8f\xed\xf4\xee\x7e\x1d\x2d\x78\xc8\x37\xda\x1c\x47\x1e\ \xe1\x51\x37\x00\x03\xbf\x60\xc3\x43\xaa\x5d\x1f\x2b\xa5\x7c\xda\ \xe9\x3a\x24\x3c\x26\xdd\xf7\x71\x78\x38\x6f\x8d\xe1\x11\xdf\xf6\ \x6f\xe7\xd4\x89\x44\x46\x5d\x4b\x7f\x92\x29\x1f\x21\xdb\x55\x3d\ \xdb\xc4\x0c\x87\x03\x29\x01\x44\xea\x1d\xe5\x07\xb4\x33\x6f\x78\ \xae\x65\x74\x9d\xd2\xfa\xff\x3c\xbc\x17\xe6\x01\x6f\x0e\x5f\x69\ \xc3\xc3\x8c\xe6\x14\x1e\x56\x1d\xe9\xde\xe7\x9e\xfc\xa1\x4a\x27\ \xe7\x53\x51\x07\x84\x27\x3f\x00\x54\x8e\x3c\xf9\xff\xef\x7e\x46\ \xf2\xfc\x5f\x7e\x80\xc8\xd6\xbf\x25\x73\x73\x30\x86\x7f\x53\x34\ \x74\x90\x0f\xb5\xdb\x3e\x42\xcf\x4f\xbf\x93\xf8\x2e\xb9\x08\x10\ \x74\x19\xcf\xbb\x93\xd3\x57\x8b\xf0\x27\xdf\x5a\x8f\x97\x35\x7c\ \xe5\xb5\xc9\xe0\x00\xc2\xc3\xaf\x55\xac\xd5\xfe\x57\x4f\xc0\xc3\ \xba\xea\x92\x2e\x89\x6f\x45\x2a\x10\x39\x0a\x8f\x4e\xc3\x13\x46\ \xfa\x01\xa3\xcc\xdf\xfd\x54\x42\x64\xc9\x0f\xad\xf6\x4e\x28\x99\ \x4e\xa7\x23\x5f\x4a\x5d\x97\x9e\x9f\x4e\x1b\x20\xcb\x85\xed\x54\ \xfa\xaa\xf2\x6e\x08\xb4\x67\x76\xde\x9c\xf1\xa3\x72\x7c\xc2\x2a\ \x81\xb1\x9a\x39\x1e\xbb\x62\x09\x8f\x6b\x80\x01\x0a\xbb\x91\x2d\ \xe7\xfe\x23\x4f\xc0\x43\x2a\xde\x94\x3c\x35\xbc\x16\x44\x8e\xc2\ \x23\x59\x7a\x89\xfa\x8d\xf9\x91\x77\x4e\xb4\xb3\xd5\xde\x49\x20\ \x62\x54\x8d\xe5\x83\xed\xe6\x13\x27\xfd\xb3\xf0\xd3\x8a\xda\xe9\ \xf8\xff\x56\xa5\x3a\x10\x26\x29\xf4\x55\x25\x27\x26\xe8\x16\xab\ \x5f\xcb\x3b\x95\x8b\xd0\xb4\x7b\xa2\xe1\xab\x5a\x98\xfb\x3f\xc8\ \x1c\xbc\xba\x4e\x16\x8e\xed\xa0\x16\x3c\x8c\x1e\x9f\x4a\x9a\x33\ \x29\x15\xe7\x9e\x69\x78\x58\xfe\xef\xb0\x78\xb6\x36\xbf\x05\xf4\ \x39\x3f\x29\x44\x2c\x78\x27\xca\xf9\xa4\x0a\x8f\xd8\x11\xc4\x96\ \x3d\x95\x1d\x47\x53\x5c\x69\xe5\xb8\x43\xf4\x08\xcc\x03\xc2\x87\ \xc4\x9a\x33\x06\x91\xb0\x7c\xe9\x69\x6d\xdf\x12\x5f\x48\xdd\x7d\ \x4e\x5d\x8c\x3e\x74\x00\xf2\xa6\x32\x40\xaa\x27\x22\xb6\xee\xf7\ \xbc\x53\x59\xef\x19\xe2\x56\x56\x27\x00\x88\x9c\x3c\xcf\xe0\xf0\ \x55\x70\xe4\x75\x99\x39\xf1\x86\x57\x11\x59\xf1\x94\xa7\xe0\x71\ \x54\x91\xe5\x3f\x47\xb8\x4d\x65\x7a\x89\x03\x75\xe0\x31\xff\x3e\ \x3b\xd1\x65\xa6\x5f\x44\x64\xdb\x0d\xbd\xf2\xd8\x5c\x8b\xd1\xb4\ \x07\xb1\x85\x0f\x89\x17\x90\x65\x19\x81\x48\x6c\xeb\xbb\x30\x5a\ \x03\x48\x82\x88\x9a\x4a\xe1\x39\x4d\x34\xc4\x7d\x72\xbf\x9f\xf8\ \x7c\x8a\x27\xfa\x2b\x12\xcc\xc4\x7f\x4c\x9d\x86\x5a\x6f\x2f\x54\ \x96\x3b\x46\xc7\x31\x49\x86\xaf\x7c\x98\x2d\x79\xfd\x2b\xc2\x49\ \xff\xc2\x93\xf0\x38\xea\xd4\x75\x8a\x29\x05\x7b\x7e\x36\x3d\x78\ \xec\xce\xfc\x10\xa4\x5c\xcc\x60\xb5\xdd\xf1\x13\xf5\xa5\x5d\xec\ \xe2\x5d\xe1\xf2\x4c\xc5\x3b\x09\x1a\xce\xe0\xc3\xed\x62\x54\x29\ \xfd\xb3\xa2\xa2\x8e\xdf\x77\x05\x20\x72\xe1\xf9\xfb\x8a\xae\xcc\ \x2e\xa3\x4a\x65\x55\x46\xb7\x04\xd1\x47\xf3\x7e\xf1\xf6\xb8\xc4\ \x5f\x3f\x48\xc2\x43\x46\x1e\x9a\x29\x57\xb2\xbe\xc3\x5c\x03\x22\ \xc6\x98\x9b\xac\x4d\x81\x5e\x86\x47\xab\x8b\x19\xda\x74\x44\xb0\ \xf3\x84\xcc\xf4\xdd\x44\xf3\x1c\xcd\xfb\xf8\x70\xbb\x16\x7d\x4c\ \xd6\x70\xf9\x96\xbf\x4f\xba\xe1\x48\x67\x8d\xdc\x1b\xca\x17\x9a\ \xa8\x0e\x05\x95\x81\x9e\x11\x02\x12\xb5\xf9\xce\x59\xda\x93\xcf\ \x27\x73\x64\x59\xd3\x9a\xdf\xfb\x03\x1e\xba\x10\x11\xf7\x49\xd6\ \x33\x31\x7a\x9d\xef\x2f\x78\x1c\x7d\x83\x0d\x95\xb8\xdf\x75\x2b\ \xc7\x01\x3d\xcf\x6e\xfd\x03\x0d\x9b\xf9\x7c\xbb\xd5\xd6\xdd\x4e\ \xd7\xf9\xf8\x5f\xd4\xc2\x05\x97\x4f\x68\xa9\xf3\x28\xeb\x0d\x8b\ \xca\x52\xc7\xe8\x30\xd2\x7a\x43\x6c\xd5\x0f\xb9\x91\xfb\x4a\xd6\ \x4f\xaf\x5d\x96\xf9\x1f\xd3\xb4\x1b\x91\x55\xcf\xfa\x07\x1e\x29\ \x40\x24\x38\xf6\xe6\xe4\xf0\x88\x1c\x42\x6c\xde\xbd\x9e\x81\x87\ \xd5\x05\xea\xd6\xb8\xdb\x6f\x3b\x8d\x81\x31\x71\x7a\xc2\xa4\x7e\ \xb1\x3d\x4b\xf8\x80\xbb\x21\xe9\x8f\x3b\x8f\xd4\x39\xe2\x75\xb7\ \x01\x22\xeb\xd3\xad\x50\xeb\x19\x61\x11\x96\x72\x18\x2b\x5b\x32\ \xba\x25\x68\xeb\x23\x75\x30\x6b\x17\xba\xf2\x3d\xd1\x15\xcf\x58\ \x8e\x2d\xa3\x2a\xad\x42\xa0\xb4\x87\xbf\xe0\xa1\x0b\x91\x64\x92\ \xf0\x98\x3b\x1d\xe6\x9e\xb9\x9e\x81\x87\x1c\x52\x8c\x37\xac\x77\ \x17\x1e\x93\xee\x11\x17\x90\x60\x4f\x4b\x63\x8d\xe8\xbb\x0b\xf8\ \x80\xbb\xe1\x23\xa4\x3f\x56\xcf\xbe\x2b\xfd\xfc\x46\x95\x0f\x86\ \x34\xaf\xe3\x8f\xc2\x86\x2b\x75\x90\x1e\x67\x20\xb6\xed\x2d\xde\ \xb9\x4c\x4b\x26\xf2\x4b\x14\x9a\xee\x9a\x6d\x47\x0f\x2e\x28\x5e\ \xb7\x12\xd1\xf7\xbe\x8d\x50\xbf\x8b\x81\xf2\x1e\xe9\x5d\x73\x97\ \xd6\xc7\xbd\x83\x5d\xc6\x21\xb6\x59\xad\xbe\xba\xe7\xb2\xea\x6a\ \x94\x75\x4d\x08\x8f\x7d\x99\x7f\xf3\x56\x86\x87\x6c\xbb\x95\xbf\ \xcc\x2e\x3c\x64\xc4\xb3\xf6\x7f\xd3\x1f\x7a\xa5\x8e\xf9\x63\x4d\ \x3f\xaf\x24\x5d\x80\xbc\x24\xec\x5e\xa5\x4f\x76\x1e\x83\x40\x9b\ \x2e\x88\x37\xef\xe1\xdd\xcb\x64\xc7\xe8\x28\xc2\xd2\x92\xce\xad\ \xfb\xb3\x9d\xee\xbe\xc5\xc6\x0f\x6d\xb5\x96\xaf\xa6\xed\xbc\xa6\ \x3c\x2a\x20\x32\xee\xe4\xbf\xa9\x6a\xbc\x00\xc8\x6b\xc9\xe1\x31\ \xf0\x4b\x08\x0e\xbb\xca\x3b\xf0\x48\x17\x22\x59\x83\x47\x00\xe1\ \x61\xdf\x00\x06\x5e\x96\xfc\xa3\x1b\x5f\x4b\x69\x25\x5c\xa2\xfe\ \xaa\x02\x0f\xec\x9a\x27\x5e\x40\xdf\xe6\x03\xee\xc6\xdd\x16\x7e\ \x58\x33\xfb\xee\x4b\xca\xf7\x53\xf3\x5a\x56\x3b\xa6\x70\xe6\x90\ \xee\xa4\x0d\x95\x4a\x68\x9a\x68\x5d\x77\xcb\x41\x98\x7b\x16\x7a\ \xf2\xba\xcd\xdd\x09\xae\xab\xcb\x98\xa4\x15\x2e\xad\xe5\xa6\x5e\ \x84\xc7\x09\x10\x51\x1e\xce\x8a\x35\x67\x0f\x1e\x72\xf7\xbf\x0a\ \x3c\xe4\x4a\xb8\x65\x3f\x73\xad\xed\x64\x6a\x7a\x6b\xce\x23\x19\ \x3c\xea\x37\x22\xb2\xf8\x51\x4f\x67\x8d\xf6\xd5\x4b\xa6\xf4\xc3\ \xea\xc9\x13\xd5\x7d\x7c\x0a\x00\x91\xfa\x83\x7a\xd8\xf4\x29\xde\ \xbd\x8c\xfa\x82\x60\xe2\xe1\xab\x9d\x73\x84\xa7\x3e\xe2\xc9\x4b\ \x37\xf7\x26\xd8\x10\x67\x94\x20\x58\x39\xc6\x9d\xa1\x97\x5c\x16\ \x83\xd2\x81\x48\xa0\x08\x28\xce\xf4\xc2\x13\x8d\xd4\x31\x29\x2e\ \xa3\x4e\x04\x8f\xd0\x94\xfb\x93\x6f\x0c\x6c\xd8\x8c\xe8\x9c\x69\ \xe2\xe5\xa7\x8e\xcf\xb7\x5b\x00\xe9\xf9\xe9\x8c\xf8\xf7\x54\x01\ \xa2\xbe\xcd\xbc\xe3\x10\x04\xda\x0e\xe0\x1d\xcc\x54\xc7\xe8\x30\ \x1c\x28\xab\x6e\xdd\x7f\xc9\xe5\xbb\x1e\x95\x35\x21\xdb\x58\xd3\ \x3a\x43\x5a\x99\x23\xf1\x0d\x3c\x74\x21\x12\x0c\x5a\x4b\x7c\x8f\ \xed\x13\x29\x54\x78\xcc\xfe\x01\x87\xbd\xdd\xbc\xeb\xd2\xff\xaa\ \xd7\xfe\x90\xfa\x9f\x4c\x03\x44\x26\xba\x52\x5e\x1a\x11\xea\xc5\ \x28\x24\x53\x32\xba\x26\xa8\x7b\x1e\x69\x12\x6f\xf9\x0b\xbd\xfd\ \x03\x76\x27\x70\xaa\x55\x13\xfd\x0f\x0f\x6d\x88\x84\x32\x04\x11\ \xc2\xa3\x50\x15\xea\xa5\xd5\x97\xa4\x5f\x5f\x97\x69\x80\xe8\x45\ \x21\x3d\xce\xd6\x19\x7f\xa3\x34\x9c\x02\xba\x26\xd8\x3c\xb8\x6b\ \x6e\x66\x12\xe0\xb9\xe9\x57\xf7\x2c\x6a\xfd\x7f\x96\x77\x17\x6f\ \x4f\xfd\xfd\x0f\x8f\x94\x20\xf2\x7d\x04\x5d\x5b\x06\x4f\x78\x14\ \xee\x10\x85\xf0\xbb\x3d\x3e\x93\xb1\xe8\x23\x1d\x80\xbc\x28\x4c\ \x6d\x86\xab\xa4\x12\xc1\x2e\xdc\x13\xe2\x7a\xdf\xa8\x18\x62\x39\ \xd9\x56\xfd\x55\xcd\x2c\xcf\xff\x06\xb3\x76\x49\x42\xc8\x05\x9d\ \x95\x23\xbe\x87\x87\x36\x44\xc2\x56\xee\xa9\xf4\x21\x42\x78\x14\ \xb4\x8f\x90\x7e\xb7\x44\x39\x2f\xa1\xf4\xe7\x7f\xd0\xfe\x8e\x14\ \xaf\x4d\x16\x43\xf8\x3f\xe5\xa1\x96\xde\xe7\xf0\x6e\xba\xac\x84\ \xb9\xaf\xe4\xf0\xd5\x9e\x79\xde\xff\x11\xb1\xc3\xc0\xde\xd6\x53\ \xcc\x07\xab\x4e\xcd\x1f\x78\xe8\x42\xc4\x28\xb6\x21\xd2\x79\x62\ \x8a\x5f\x44\x78\x14\xbc\x8f\x68\xa5\x62\x66\x2b\xfa\x3f\xc7\xaf\ \x67\x05\x20\x52\xbf\x51\xfe\x64\xd5\x44\xbb\x04\x28\xe5\x9e\x12\ \x0d\x5f\xc9\xa5\xbb\xd2\x39\xfb\x40\xe6\xee\x04\xa0\x93\x49\xf6\ \xf2\x09\x1e\x29\x41\x64\x9a\xb5\xf1\x4e\xcf\x83\x1b\x08\x8f\xb8\ \x4e\x0d\x1e\xeb\x5e\x22\x3c\xf2\x50\x96\xbf\xad\xd2\xda\xc8\xfa\ \x9b\x54\xbe\x27\x1d\x80\xc8\xe4\x8a\xb5\x6a\xdf\x12\x42\x48\x8f\ \x86\x54\xc2\x87\xf4\x14\xa0\x6d\xcf\xd6\xfd\x53\xcd\x4c\xdf\xfc\ \x16\x33\x61\xae\x23\x85\xee\xe9\x37\x78\x1c\x0f\x91\x85\x0f\x24\ \xcf\x2f\x16\x2e\xb3\x36\xde\x29\x43\x44\xc2\x63\xf4\x4d\x40\xff\ \x7f\x4f\xfe\xd9\xd5\xcf\x23\xb2\xf2\x69\xc2\x23\x0f\x65\xf9\x5b\ \xf5\xb9\xe7\x5a\x68\x24\xcb\x75\x0b\x20\x2d\xc2\x9e\x57\xfe\x74\ \xaf\xf3\x74\x72\xb1\x50\x89\x3a\x47\xd7\x04\x63\xe3\xb1\xe6\xc4\ \x6f\xf5\x1e\x93\xdc\xd9\x9e\x72\xc6\x55\xbf\xc2\xe3\xa8\xa2\x8d\ \x88\xcc\xbd\x53\x19\x22\x81\x8a\xe1\x6a\xf0\xe8\x7d\x9e\x1a\x3c\ \x56\x3f\xe7\xe2\x4b\x0d\xe1\xe1\x19\x49\x3f\xdb\xeb\x3c\x9d\x23\ \x9e\x77\xfc\x79\x56\x01\x22\xf5\x8c\xf2\x27\xe5\x64\x7a\xd7\x33\ \x78\x73\xdd\x50\xa2\xcd\x83\x72\x87\xb7\x70\x4c\xbe\x52\x2a\xc0\ \xf3\x3b\x3c\x4e\x84\xc8\xbe\x95\x49\x21\x12\x9a\x7c\x8f\xe5\xa8\ \x09\x0f\x2a\xa1\x53\x97\x7e\xb6\x44\xab\xa8\xdf\x33\x29\x7f\x57\ \x9a\xd7\xfa\x21\x94\x0b\x4d\x01\x46\xbf\xcf\xf1\xee\xa6\xfb\xb0\ \xca\x8d\x41\xed\xfa\xb4\x1e\x80\xec\xf4\x49\xe5\x41\xa3\xd8\x5a\ \x25\x12\x1e\xf1\x6d\xdd\xa5\x86\xf9\x03\x8f\xe3\x21\x32\x6f\x3a\ \x70\x20\x49\xba\x74\xe1\xa0\xa5\xa3\xfe\x04\x44\x08\x0f\x2a\x75\ \x3f\xfb\xbe\xe3\xc7\x53\x1b\x0d\x71\xe1\x7a\xe5\x0c\x9c\x5a\x68\ \xd1\x69\x98\x95\x4c\x2d\x23\xb5\x95\x0b\x44\xa1\x44\x9b\x07\xcd\ \x08\xcc\x5d\x73\x3c\x7b\xed\x81\x92\x6a\x04\x3b\x8f\x43\x50\x26\ \x18\xec\x3c\x56\xbc\x55\x97\x16\x6e\xe4\x71\xa2\x5a\x0e\x20\x32\ \x67\x5a\xf2\x42\x53\x12\x22\x93\xef\x43\x74\xd6\xad\x88\x1f\xdc\ \x40\x78\x50\x1f\x8f\x08\x64\x72\x55\xe1\x67\x35\xfd\x77\xea\xfe\ \xc8\x85\x6b\xfe\x93\x30\xd9\x33\xba\xa8\xd1\xf1\x62\x02\x24\x1d\ \x75\x4b\xc0\x6a\xb9\xb3\x3b\xd2\xe0\x21\x62\x18\x08\x56\x0c\x85\ \x51\x35\x0e\xa8\x3a\x55\x37\xa5\x42\xe1\xc0\xe3\x44\x88\x4c\x7d\ \x0c\x68\xdf\xb7\xf5\xcf\xb5\xe9\x20\x1c\xf7\x83\x56\xce\xa8\x90\ \x9c\x2c\x27\x3c\xa8\xe3\xfc\xab\x86\xf6\x38\xfe\x3b\xa7\x00\x91\ \x93\x2f\x72\x0c\xed\x76\x35\x07\x78\x3a\x02\xa5\xdd\x10\x6f\xaa\ \xe1\xdd\xd6\x7d\x68\xe5\xce\xec\x8a\xfe\xad\x07\x20\x35\x1e\x88\ \x3e\xc2\x6d\xad\x32\xa5\x46\xb5\x84\xc6\xa4\x84\x95\x12\x09\x8f\ \x93\x43\x24\x3a\xe7\x76\xe1\x9c\x1f\x4a\x38\x54\x29\xc7\xb8\x43\ \x67\xfe\xc4\x4a\x3c\xe9\x59\x78\x34\xd6\x88\xdf\x72\x07\xe1\x91\ \x2d\xff\x20\x97\xee\xea\x65\x40\x7f\x06\x29\x4e\x9e\xbb\x09\x10\ \xa9\x27\x85\xdd\x22\xdd\x47\xf2\x18\x2b\x84\x50\xbf\xcf\x23\xb2\ \xe2\x49\xde\x71\xdd\xf0\x54\xbe\xc5\xb7\x4a\x8f\x68\xce\x56\x5f\ \x05\xca\xfb\x58\x45\xa0\xac\xeb\xeb\x3c\xda\xfd\xd5\x76\x9b\xdf\ \x42\xe4\x83\x9f\xe4\x3f\x3c\x1c\x49\x87\x2b\xdf\xda\x93\x42\x24\ \x17\xf0\x68\x37\x40\x1d\x1e\x32\xf2\x38\xbc\x93\x0f\x6e\x96\x14\ \x92\x73\x1f\xea\x4b\x77\x23\x8e\xdf\x4e\xef\x3b\x5d\xba\xf6\x1d\ \xb0\x8b\x90\x7c\x49\xe9\xd3\x22\xe4\x0e\xac\x7d\x11\xf1\x96\xfd\ \xbc\xeb\x3a\x00\xe9\x9e\x60\xf8\x6a\xcf\xa2\xec\xb5\xa7\x00\x44\ \xb0\xe3\x28\x18\x72\xa3\x9f\x8c\x32\xda\xf5\xce\xc0\x97\x98\xc0\ \xde\x65\x88\x89\xc8\xc3\xdc\xfe\x2e\xdc\xda\xab\xe0\x2b\x88\xcc\ \xbd\x53\x38\xeb\x47\x80\xf2\x6e\xa9\xb5\xe0\xf2\x5f\x22\xb6\xe1\ \x8f\xae\x5d\x93\x8c\x80\x43\x72\x8e\x46\x15\x1e\x4d\xdb\xf9\xd0\ \x66\xeb\x25\xae\xa8\x93\xda\x50\xe6\x47\x7a\xc9\xf1\xdb\x9e\x00\ \x88\xd4\x8f\x95\x01\x22\x97\x24\xf6\xbb\xd8\xd5\x37\xa3\xbc\xef\ \x20\x65\xbd\x13\x4e\xae\x9a\x19\xde\x3c\x28\x3b\x68\xa0\x6a\xbc\ \x80\x86\x88\x32\xba\x8c\x07\x8a\xda\xba\xff\x25\x47\xea\xad\x5d\ \xf4\xb1\xdd\x0b\x10\xcf\x26\x10\xbd\x0a\x91\xa6\x9a\x8f\x22\x11\ \x4d\x88\x98\xcb\x9f\x16\xf0\x78\xc9\xbd\xfb\x2f\xe1\x31\xe5\xc1\ \xe4\xcb\x43\x09\x8f\x1c\x45\x1f\x17\x25\x2f\xd4\xf5\x49\x7f\x9d\ \xfe\xf7\xba\xf8\x1b\x64\xee\x70\x99\xc1\x6f\xaa\xd2\xa7\xfb\x5c\ \x08\xac\x7f\xd9\x7f\x7b\x16\x72\x15\x7d\x24\xda\x3c\x28\xde\xd6\ \xcd\xdd\xf3\x5d\xfe\xc6\x80\xb5\xe3\x3d\x64\x45\x19\x13\x81\x4e\ \xc3\x33\xf3\xc3\xea\x37\x59\xfb\x40\x62\xbb\x17\xc1\x3c\xb0\x8c\ \x35\xb0\x3f\x01\x91\xed\x36\x44\xa6\x3e\x0c\x94\x75\x25\x3c\xa8\ \x93\x78\xf1\x72\xa0\xef\x45\x3a\x47\xcc\x74\xfc\xb5\xa7\x00\x22\ \xf5\x98\x32\x40\xda\x74\x80\xd1\xf7\x62\xc4\xd6\xfd\x9e\x1d\x40\ \x09\x20\x09\x92\x27\xee\x59\x82\xf8\x91\xda\xf4\xbf\x44\x56\x02\ \xec\x3c\x16\x86\x8c\x30\xaa\x27\x01\xa5\x5d\xdc\xff\x21\x66\xc4\ \xba\x5e\x39\x5f\x63\xca\x28\xe3\xd0\x36\xde\x5c\x15\x88\xcc\x9d\ \xae\xe6\xc4\x9b\x76\x23\xb6\xed\x6f\x84\x47\x01\x49\xfa\xd1\xa4\ \xc3\x8a\x1f\xd7\x0f\x5d\xeb\x1f\xf1\xb8\xab\x63\xcb\x01\x61\x72\ \x4b\xed\x10\xa5\x4f\x37\x1f\x40\xe4\xdd\x2b\x18\x85\x24\x6b\xd4\ \xd2\x1e\x08\x9d\xfb\xbb\xd6\x7d\xf2\x92\x9f\x20\xb6\xe5\x2f\x29\ \x9e\xbb\x3b\x82\x02\x18\xc1\x6a\x39\x01\x9e\xbc\x16\x79\x4a\x3a\ \x5c\x6b\xd5\x27\xb1\xa2\x8c\xda\x45\xe2\x7e\x1f\xe2\x4d\xcd\xa4\ \x33\xaf\x5d\x66\xef\x6e\x4f\xf3\xb9\x22\x3c\xfc\x11\x7d\x84\xcf\ \x7e\xce\x7a\x21\x57\xd4\x2a\x61\x72\xa3\x88\x2b\x8e\xdf\xed\x08\ \x44\x5e\x94\x88\xb5\xf1\x3b\x46\x21\x6e\x46\x1f\x89\xeb\x42\x68\ \x6d\x1e\x94\x7b\x33\x3a\x8e\xb0\x4b\xc6\xca\x6c\x9d\x15\x03\x33\ \x73\xd1\xfb\x57\xd9\xd0\xd8\xb3\x18\x66\xfd\x6a\xd1\x33\x4c\xde\ \xc8\x74\x1f\xae\x83\x1b\x44\x24\x72\x77\xf2\x55\x50\x95\x23\x11\ \x9e\x78\x8f\x80\xc8\xed\x56\xd2\x46\xc2\x23\xcf\xa3\x0f\x75\x78\ \xc0\xf1\xcf\xae\x45\x0d\x6e\x47\x20\x47\xa1\xb4\x51\x58\x4f\x46\ \x21\xee\x28\x7c\xda\x8f\x2d\xa7\xd0\xea\xdb\xe6\xcc\x1b\x13\x9f\ \xa0\xa8\x3d\x82\x9d\xc7\xdb\x43\x53\x72\x12\x5c\xaf\xc3\xa9\x29\ \x72\xc8\x9a\x00\x37\x77\x2d\x80\xb9\x77\x11\xd7\xfe\x67\xf2\x85\ \x42\x6e\xce\x94\x73\x22\xc9\x26\x4d\x77\xcd\xb7\xd3\xc6\x6b\x42\ \x84\xf0\xc8\xdb\xe8\x43\x8e\x17\xf7\x13\xe6\xda\x44\x63\x26\x6a\ \xcd\xca\x8b\x93\x73\x21\x4f\xa8\x46\x21\x61\xb9\x2f\x64\xed\x0b\ \xec\x10\x27\x7b\x98\x4b\xaa\x5a\x87\x87\x8c\x3e\x6a\x66\xb4\xe2\ \x04\x06\x20\x28\xa2\x0c\x2b\x6d\x48\xa7\x11\x99\x29\x2b\x7c\x70\ \xbb\x33\x01\x2e\xc0\xb1\xef\x03\x71\x31\x47\x78\xc3\xb2\x20\xb3\ \xee\x43\x60\xee\x74\x2b\x43\x6f\x42\x88\x88\x7b\x1f\x1e\xf7\x03\ \x44\x16\xde\xaf\xbc\x38\x81\xf0\xf0\xd1\x8b\xa5\xf0\x9b\x9a\x2f\ \x83\x8f\xb9\x09\x8f\x4c\x45\x20\x52\x25\x4e\x14\x52\xad\xf4\xe9\ \x96\x06\x44\xdf\xbd\x8a\xfb\x42\x4e\x16\xa2\xf6\xbb\x04\xc1\x91\ \xd7\xb5\x4e\xeb\xbf\x7e\x09\xf1\xc3\xbb\x05\x20\x8a\x11\xec\x34\ \xda\x49\x1b\x32\x11\x68\xdb\x23\x03\x9e\x2b\x6a\x45\x3c\xe6\xee\ \x05\xf6\x04\xb8\xcc\xc5\x44\xe5\x2e\x12\xe9\x3c\x41\x40\xe4\x6e\ \x2b\x31\x65\x42\x6d\x7d\x17\x91\x25\x8f\x26\xdd\x88\x49\x78\xf8\ \xe8\xc5\xb2\xa8\x23\x42\x67\x3f\x0b\x14\xb5\x53\x3d\x64\x97\x13\ \x7d\xb8\x5a\x69\x2e\x94\xa1\xdf\x27\x2f\xf2\x11\xa8\xae\x35\x16\ \x8d\x10\x1a\xf8\x05\x44\x56\xfe\x92\x3d\xe3\x44\x27\x91\x28\x35\ \x41\xc3\x66\x2b\x6d\x88\x35\x01\xde\x65\x9c\xee\x3a\x70\x35\x35\ \x1f\xb0\x72\x6c\x59\x51\x86\x9c\x00\x6f\xa9\xe7\x4d\xf1\x4a\x24\ \xb2\x77\x3e\x30\xff\x3e\x18\x13\xa7\x27\xde\xfd\xdf\xeb\x6c\x84\ \x45\x74\x18\x59\x2a\x1f\xc7\x38\xe1\x91\x07\x0a\x0d\xbc\x4c\x07\ \x1e\x70\xfc\xb1\xeb\x65\x4a\x33\x15\x81\xe8\x47\x21\xb1\x66\x44\ \xff\x7e\x35\x73\x64\x1d\x7f\x73\x8a\x2b\x11\xfa\xb7\x3f\x64\xff\ \x8b\xeb\xd6\x39\xd0\x90\x7b\x33\x56\x14\x4c\x0a\x11\xff\xbe\x64\ \x7c\x1a\xc6\xf8\x5b\x93\x0f\x53\x6e\xf9\xab\x9d\x42\x28\x72\xdc\ \x7c\x63\x20\x88\x60\xd5\x14\x18\xa3\xbe\x43\x78\xf8\xc5\x2f\x94\ \x76\x43\xe8\x33\xbf\xd6\x59\x31\x99\x91\xe8\x23\x93\x11\xc8\xd1\ \x28\xe4\x21\x61\x3f\x55\xfa\xb4\x68\x8c\xd0\x29\x5f\x11\xa1\xf6\ \x23\xec\x21\x47\x1d\x43\xf5\xe4\xec\x7c\x91\x80\x37\xe4\x6a\x29\ \x6b\x68\x6a\x21\x21\xee\xb7\x48\xa4\xe6\x1f\xc0\xe2\x90\x0d\x91\ \x44\xea\xfd\x59\x84\xe5\xfe\x9e\xda\xa5\xf6\xd2\x6a\x99\x4d\x40\ \xce\x8f\xa9\x6c\x50\x24\x3c\xbc\x13\x7d\x08\x3f\xa9\xb9\xdc\xfe\ \xa1\x4c\xc0\x23\xd3\x11\x88\x54\x91\xb0\xb5\xb2\xeb\x2a\x3e\x0a\ \x88\xbe\x77\x03\xe2\x75\x2b\xd9\x4b\x84\xc2\x53\x1e\xb5\x87\xa6\ \x32\xa1\xa6\xdd\xe2\xbd\x64\x9e\x95\x36\xc4\xac\x5d\x22\x20\x72\ \x98\x0d\xee\x73\x19\xbd\x2e\x40\x70\xec\x4d\xee\x9f\x98\xf0\xf0\ \x4e\xf4\x51\x31\x0c\xa1\xb3\x7e\x02\x8d\x5a\x80\x5b\x84\x0d\x42\ \x9a\x59\x77\x73\x11\x81\xc0\xb9\xe8\xbb\xa0\xba\x2f\x44\x34\x4a\ \x68\xd8\xd7\x10\x99\x75\x33\x3b\x4a\x71\xa5\x80\xc7\x18\x77\x4f\ \xba\x6f\xb9\x35\x34\x15\xdd\xbd\x08\xf1\x7a\xc9\xf5\x38\x9f\xc8\ \x3c\x52\x6c\xeb\x9b\x56\x91\xae\xe0\x88\x6f\x11\x1e\xf9\x1a\x7d\ \x08\xff\xa8\x59\x48\xf6\xae\x4c\xc1\x23\x1b\x00\x91\x92\xeb\x73\ \x65\xaa\x77\xb5\x64\x4a\x9d\x47\x23\xd8\xf5\x2c\x98\x3b\xdf\x2b\ \x6c\x80\xc8\xa1\x85\x74\x2b\x0e\xb7\x34\x58\x59\x7a\xad\xe4\x84\ \xbb\x17\x22\xde\xb2\x8f\x4f\x60\xbe\x43\x64\xc3\x4b\x08\x86\x4a\ \x81\x21\x5f\x4d\xff\x64\x87\x6b\x11\x9d\x37\x9d\xf0\xf0\x88\xa4\ \x5f\xb4\xca\x25\xa8\x6b\x85\xe3\x7f\x33\x07\xb4\x2c\xfc\x6e\xb9\ \x05\x79\x9a\xb0\xd7\x94\x43\x71\x41\x59\x73\xcf\x9c\x94\x77\xd1\ \xe6\x05\x40\x42\xa5\xa9\x1d\xd8\xb0\xf9\xa3\xe4\x84\xb2\xf2\xa3\ \xcc\x3d\x45\x15\x94\x22\x6b\x7e\x87\xb0\x5c\xf8\x30\xf4\xca\xd4\ \x4f\xd2\xb0\x45\xc0\xe3\x1e\xc4\x0f\x6d\x61\x83\x7a\x41\x46\xb1\ \xe5\x17\x35\x35\xcd\xf1\xbf\xbe\x06\x88\xd4\xeb\xb0\x8b\xb7\xab\ \xd5\x4e\x2f\xef\x8e\xf0\xc0\xff\x57\xd0\xe9\xde\xcd\x03\x6b\xd4\ \xe2\x0f\x09\x88\xbd\x4b\xad\x6c\xbc\xe6\xee\xc5\xe2\x81\xdf\xcc\ \x87\x8d\xb2\x36\xe6\x06\x1b\xb6\xc2\x18\x75\x5d\xf2\xd5\x55\x27\ \x4a\x16\xf0\x5a\xf9\x2b\x71\x92\x83\x6c\x48\x8f\x48\xfa\x43\xe9\ \x17\x35\xf4\xbe\xe3\x77\x33\xfb\xa2\x9b\xe1\x49\xf4\xe3\x25\x67\ \x83\x17\xc0\x4e\xb8\xa8\x10\x8b\xcb\x65\xbd\xdf\x12\xe1\x73\xe1\ \x66\x6b\x0d\x0f\xbb\x1a\x18\xf8\xc5\x93\x0e\x2d\x60\xcf\x7c\xc4\ \x76\xc9\xe4\x84\x0b\x3f\xbe\x2c\x93\xa2\x3e\xf6\x8a\x58\x0e\xa3\ \xcf\x85\x08\xf6\x39\x3f\xb1\x03\x6a\x11\xb0\xd8\x39\x03\xd1\x8d\ \x6f\x20\x5e\xbf\x86\xed\xe6\xa5\xd1\x88\xb2\x5e\x08\x7d\xfa\x29\ \x9d\x95\x57\xd2\xa9\xcb\xf2\xa5\x8b\xf2\x09\x20\x52\x32\xa4\xf8\ \x2f\xe5\x4f\xef\x9c\x85\xc8\xbc\xbb\x0a\xba\xf3\xc8\x71\x4f\xa3\ \xfb\x69\xa2\xf3\x14\x01\x75\xeb\x11\x93\xa9\xd0\x65\x2a\x0b\xee\ \xcd\xa0\xf4\x1e\x75\x04\xda\xf5\x47\xa0\x7d\x7f\x18\x25\x9d\xc5\ \xdb\x49\x89\x78\xf1\x38\x0c\xb3\x79\x3f\xe2\x07\xb7\xc1\x94\xd0\ \x30\x5b\xd8\x4c\x5e\x7c\x91\x9c\x78\x2f\xd0\x75\xaa\xce\x21\x72\ \xd1\xd2\x15\x59\xe9\x55\x59\x06\x88\x7c\x05\x92\xcb\x7f\x94\x07\ \xf8\x63\xf3\xee\x85\xb9\xf3\x5f\xec\x45\x14\x45\x15\xe0\x0b\xe4\ \x99\x30\x26\x6a\xbd\x44\x37\xc1\x5e\xb6\xbb\x23\x2b\xd7\x97\xe5\ \xf6\x90\x3f\xea\x21\x9d\x03\x8c\x11\xdf\x14\x08\x2e\x67\x4f\xa2\ \x28\xaa\xc0\x42\x8f\x72\xe1\xff\xb4\x97\x64\x3f\x94\x2d\x78\xe4\ \x02\x20\x52\xb2\x1a\xd6\x46\xe5\x4f\x97\x56\x21\x3c\xf8\x0a\x76\ \x26\x8a\xa2\x0a\x8b\x1f\xd2\xef\xe9\x55\x05\xdd\x08\x17\xab\x0d\ \x7a\x15\x20\xcd\xc2\xae\xd7\x3a\xa2\xff\xe7\x10\xec\x30\x82\x3d\ \x8a\xa2\xa8\x82\x50\xb0\xe3\x48\xcb\xef\x69\xea\x7a\xc7\xbf\xe6\ \x35\x40\xa4\xde\x14\xf6\x86\xce\x65\x1a\xa3\xbf\x6b\xa5\x2c\xa7\ \x28\x8a\xca\x6f\x7a\x14\xc3\x18\x75\xbd\xae\x7b\x7e\xc3\xf1\xab\ \xd9\xbd\xd4\x1c\x36\x93\x20\x82\x46\x82\xaf\xf6\x7d\x45\x48\xf7\ \x55\x76\x2e\x8a\xa2\xf2\x5a\x96\x9f\x13\xfe\x4e\x43\x87\x1d\x7f\ \x9a\x7d\xd6\xe5\xb0\x9d\xe4\x78\xdd\x3d\x5a\x47\x0c\xf8\x0f\x0e\ \x65\x51\x14\x95\xbf\xc1\x87\xf4\x6f\xc2\xcf\x69\xea\x1e\xe8\xcc\ \x2b\xbb\xa8\x6c\x2f\xe3\x3d\x51\x72\x27\xfc\x62\x61\xea\x54\xa8\ \xdf\x88\xc8\xfb\xdf\x2e\xe8\x34\x27\x14\x45\xe5\xa1\x8c\x62\x84\ \xcf\xf8\x85\x6e\xf4\xb1\x5c\xd8\x58\xb8\x5c\xaa\xd6\x0f\x11\x08\ \x9c\x1f\x7d\x35\x74\xd2\xc2\xb6\xef\x87\xf0\x90\xab\xd8\xd9\x28\ \x8a\xca\x2b\x59\x7e\x4d\x0f\x1e\x71\xc7\x7f\x46\x73\x75\xcd\x41\ \x0f\xb4\xdb\x3c\x61\x4f\x68\x1d\x31\xe0\xdf\xad\x7a\xd0\x14\x45\ \x51\xf9\xa0\x60\xe7\x89\x96\x5f\xd3\xd4\x13\x8e\xff\xcc\x99\x72\ \x3d\x84\x75\x54\x72\x67\xfa\x32\x61\xfd\x95\x8f\x68\xda\x8d\xc8\ \x7b\xd7\x02\x2d\x75\xec\x7d\x14\x45\xf9\x57\x45\x15\x08\x9f\xf5\ \xa4\xb5\xe7\x4d\x43\xeb\x85\x8d\x82\xbd\xf3\x3c\x77\xe0\xf3\x48\ \x13\x36\x39\xa1\x98\x06\x72\xaa\x10\x1e\xf5\x5d\x76\x3e\x8a\xa2\ \x7c\xad\xf0\xe8\x1b\x74\xe1\x21\xf5\x8d\x5c\xc3\xc3\x4b\x00\x91\ \xfa\xa7\xb0\x27\xb5\x8e\xe8\x7e\x06\x8c\xbe\x9f\x63\x0f\xa4\x28\ \xca\x97\x32\xfa\x7e\x1e\xe8\x76\xba\xee\x61\x4f\x3a\xfe\x32\xe7\ \xf2\xca\x10\xd6\x51\xc9\xa4\x57\x4b\xa1\x33\x94\x25\xd3\xbe\xbf\ \x7f\xa3\x53\xa2\x95\xa2\x28\xca\x1f\x0a\xb4\x1f\x84\xd0\x19\x3f\ \xd6\x49\xd3\x2e\xb5\x41\x98\x2c\x4b\xe8\x89\x1a\x0e\x41\x8f\xb5\ \xa9\x6c\x94\xaf\x48\x2c\xa8\x23\xbc\x0d\x42\x63\xbf\x0f\xa4\x5a\ \xc1\x8f\xa2\x28\x2a\xdb\x0a\x95\x21\x34\xee\x56\x5d\x78\xc4\x1c\ \xff\xe8\x99\x02\x40\x41\x0f\x36\xed\x1c\x61\x0f\x6a\x1d\x21\x77\ \xa9\x8f\xba\x91\x9d\x92\xa2\x28\x5f\x28\x3c\xea\x06\xa0\x5d\x1f\ \xdd\xc3\x1e\x74\xfc\xa3\x77\xa2\x28\x8f\x0d\x61\x1d\xe3\xb3\xb0\ \xd9\xb0\xab\x6a\x29\xcb\x5c\xf6\x0b\xc4\x36\xfe\x89\xbd\x93\xa2\ \x28\xcf\xca\xe8\x77\x09\x82\x23\xaf\xd3\x3d\x4c\x56\x73\x9d\x82\ \x1c\xee\xf9\xf0\x4b\x04\x02\xa7\x91\xfe\x53\x37\x54\x0b\x0e\xff\ \x86\x9d\xc5\x92\xa2\x28\xca\x83\x92\xfe\x49\xfa\x29\x4d\x35\x3a\ \xfe\x30\xea\xb9\xdf\xe3\xe1\xb6\x5e\x27\xec\x1a\xbd\x5f\x13\x86\ \x31\xfe\x36\x04\x8a\x2b\xd9\x53\x29\x8a\xf2\x94\x02\x6d\x3a\x5b\ \xfe\x49\xfa\x29\x4d\x5d\xe3\xf8\x43\xef\x01\xd1\xe3\x6d\xfe\x02\ \xec\x3a\xea\xea\x2a\xad\x42\xe8\xd4\x69\xa9\xdc\x24\x8a\xa2\xa8\ \x0c\x79\xda\x22\x84\xc6\xdf\x9e\xca\x7e\x8f\xe7\x1c\x3f\xe8\x4d\ \x28\x7a\x74\x0e\xe4\x78\xc9\xa5\xbd\x0b\x85\x9d\xa2\x75\xd4\xe6\ \xb7\x10\x59\xfa\x23\x76\x5c\x8a\xa2\x72\xae\xf0\x98\x9b\x81\xde\ \xe7\xeb\x1e\xb6\x46\xd8\x78\x78\x68\xd5\x95\xdf\x22\x10\x38\x8d\ \x27\xf3\x1b\xeb\xed\xba\xec\x73\xbe\x35\x59\x45\x51\x14\x95\x4b\ \x59\x7e\x48\x1f\x1e\x4d\x8e\xdf\x6b\xf4\xf2\x6f\x0b\xfa\xe4\x1e\ \xac\x10\xa6\x5d\x5d\xde\x9a\x54\xef\x32\x99\x3d\x98\xa2\xa8\xdc\ \x38\xd8\xaa\xc9\xa9\x4c\x9a\x4b\x7d\xd3\xf1\x7b\xde\xfe\x7d\x3e\ \xba\x17\xcf\x0b\x7b\x4a\xef\xd7\xc9\x49\xf5\x5b\x11\x68\x37\x80\ \x3d\x99\xa2\xa8\xac\x2a\xd0\x6e\x20\x0c\xb9\x59\x50\x7f\x3e\x56\ \xfa\xb9\x17\x7c\xf1\x1b\x7d\x30\x07\x72\xbc\x64\x51\xf4\xf7\x85\ \xe9\xe5\x72\x6f\xac\x41\x74\xc6\x8d\x88\x1f\xa9\x65\xaf\xa6\x28\ \x2a\xf3\x8e\xb5\xb8\x12\xa1\x33\x7e\x02\x94\x75\xd5\x3d\x74\xbe\ \x30\x99\x1c\xab\x85\x00\xc9\x8c\xba\xc3\x9e\x54\xaf\xd6\x3a\x6a\ \xff\x2a\x44\x66\x8b\xb7\x81\xe8\x21\xf6\x6e\x8a\xa2\x32\xa7\x50\ \x19\xc2\x53\x1e\x01\x3a\x0e\xd1\x3d\x72\x17\xec\x49\xf3\x1d\x7e\ \xf9\xa9\x41\x1f\xde\x1e\xd9\xb8\x72\x76\x3c\xa2\x75\x94\xb8\x99\ \xe1\xf1\x72\x79\x6f\x88\x1d\x9c\xa2\xa8\x0c\x79\xd4\x90\xed\x67\ \xf4\xe1\x11\x71\xfc\xda\x0e\x5f\xfd\x5c\x9f\xde\x26\x99\x0f\xe6\ \x1a\xed\xa3\xaa\x27\x22\x3c\xea\x26\x76\x72\x8a\xa2\x32\xa2\xf0\ \xa8\x9b\x2d\x3f\x93\x82\xae\x81\xc7\xf2\x5c\xe5\x33\x40\xa4\x9e\ \x85\x6e\x29\x5c\xa9\xde\x9f\x45\x78\xe8\xd7\xd9\xd3\x29\x8a\x72\ \x17\x1e\x43\xaf\x16\xfe\xe5\xdc\x54\x0e\x7d\xc2\xf1\x67\xbe\x93\ \x1f\xe7\x40\x8e\x97\x21\xec\x35\x61\x17\xe8\x1e\x68\xae\x7c\x16\ \xb1\x75\xbf\x67\xaf\xa7\x28\x2a\x7d\x47\x34\xf0\x4b\x08\x0e\xbb\ \x2a\x95\x43\xdf\x14\x26\xab\xe2\xc5\xfc\xf8\xbb\xfd\x0e\x10\xa9\ \xb6\xc2\x66\xc0\xae\x0f\xac\x07\x91\xa5\x4f\x20\xb6\xf9\x35\xf6\ \x7e\x8a\xa2\x52\x87\x47\x9f\xcf\x21\x38\xfa\xfa\x54\x0e\xfd\x00\ \xf6\x8a\xab\x83\x7e\xfd\xed\xf9\x00\x10\xa9\x9e\xb0\x97\xbf\xe9\ \xad\xcc\x82\x89\xd8\xc2\x47\x61\x6e\x7f\x87\x4f\x01\x45\x51\xda\ \x0a\xf6\x38\x17\xc6\xf8\x5b\x90\xc2\x6c\x80\x5c\x71\x25\xb7\x23\ \x6c\xf3\xf5\xef\xcf\x93\xfb\x28\x6f\x82\xcc\x15\xd0\xa0\xfb\xf3\ \x8d\xb1\x37\x23\xd8\xed\x53\x7c\x12\x28\x8a\xd2\xf3\x1e\xc2\x6f\ \x18\x63\x6f\x4a\xc5\x8d\x36\x38\xfe\x6a\x9b\xdf\xdb\x20\x5f\x22\ \x90\xa3\x3a\x07\xf6\x98\xa2\xde\xd6\x4f\x33\x22\x22\x91\x47\x60\ \xd6\xfc\x93\x4f\x05\x45\x51\x6a\xf0\x18\x9f\xd2\x2e\x73\xb9\x5c\ \x57\xce\xd9\xe6\xc5\xb0\x47\x30\xcf\xee\xab\xbc\x29\x57\xe8\xb7\ \x82\x9d\xf2\x84\x91\x08\x45\x51\x19\x84\x07\x1c\xff\x94\x37\x63\ \xe6\xc1\x3c\xbc\xbf\x72\x69\xd5\xf7\x08\x11\x8a\xa2\x3c\x06\x8f\ \xef\x39\xfe\x29\x6f\x94\x6f\x43\x58\xc7\xeb\x7e\x61\xd3\xb4\x8f\ \x92\xc3\x59\x8b\x1e\x83\xb9\xe3\xef\x7c\x5a\x28\x8a\xfa\x08\x1e\ \x3d\xce\x86\x31\xf6\x7b\xa9\xc2\xe3\x01\x61\x77\xe4\x5b\x9b\xe4\ \x33\x40\xa4\x7e\x2e\xec\x3a\xfd\xc3\x4c\x98\x8b\x7f\x8c\xd8\xd6\ \xb7\xf8\xd4\x50\x14\x05\xa3\xd7\xf9\x08\x8e\xbd\x11\x29\x0e\xda\ \xfc\x42\xd8\xb7\xf3\xb1\x5d\xf2\x1d\x20\x01\x61\xff\x2d\xec\xcb\ \x29\x41\x64\xd9\x53\x88\x6d\xfc\x13\x9f\x1e\x8a\x2a\x64\x78\xf4\ \xbb\x04\xc1\x91\xd7\xa4\x0a\x0f\x99\x96\xfd\xab\xc2\xf2\xd2\xd1\ \xe6\x3b\x40\xac\xfb\xef\x40\xe4\x4b\x29\x1d\xbd\xe6\x05\x44\x56\ \xfd\x96\x4f\x11\x45\x15\xa0\xc2\x43\xae\x04\x4e\xf9\x72\xaa\x87\ \xff\xde\x81\x47\x2c\x5f\xdb\xa7\x10\x00\x22\x25\x53\xf0\xca\x50\ \xe2\xa2\x94\x8e\xde\xf8\x1a\x22\xcb\x7f\x2e\xde\x21\x4c\x3e\x51\ \x14\x55\x08\x0a\x04\x11\x1e\xf1\x1d\xa0\xdf\xc5\xa9\x9e\xe1\x2f\ \xc2\xfe\x3d\x9f\xe1\x51\x48\x00\x91\x2a\x12\xf6\x72\xca\x10\xd9\ \xfe\x4f\x44\x16\x3f\x06\x98\x47\xf8\x70\x51\x54\x3e\x2b\x58\x8c\ \xf0\xd8\x5b\x80\x1e\x29\xaf\xc8\x94\xf0\x90\xf5\xcc\x5b\xf2\xbd\ \xa9\x0a\x09\x20\xe9\x43\x64\xef\x52\x44\x16\xdc\x27\xba\x45\x1d\ \x1f\x32\x8a\xca\x4b\x0f\x51\x81\xf0\x84\xe9\x40\xe5\x48\xc2\x83\ \x00\x69\x15\x22\xb2\xbe\xfa\x65\x29\x1d\x5d\xbf\x09\xd1\x79\x77\ \x23\xde\xb4\x9d\x0f\x1b\x45\xe5\x93\x33\x2c\xed\x81\xd0\xa4\x7b\ \x80\x76\x7d\x52\x3d\xc5\x1f\x85\x7d\xa5\x50\xe0\x51\xa8\x00\x91\ \x4a\x6f\x62\xfd\x70\x2d\x62\x0b\x1e\x80\xb9\x7f\x19\x9f\x3a\x8a\ \xca\x03\x05\x3b\x8e\x84\x71\xea\x34\xa0\xa4\x32\xd5\x53\xe4\xfd\ \x84\x39\x01\xf2\x49\x88\x3c\x2d\x2c\xb5\xea\x52\xb1\x66\xc4\x96\ \xfc\x14\xe6\xf6\xbf\xf1\xe9\xa3\x28\x3f\xc3\xa3\xe7\x67\x61\xc8\ \x74\xec\x46\x9b\x54\x4f\xf1\x8c\xb0\x6f\x15\x1a\x3c\x0a\x1d\x20\ \xd6\xef\x17\xf6\x98\xb0\x9b\x53\x3e\xc3\xea\x17\x10\x59\xf3\x3b\ \xae\xd0\xa2\x28\xdf\x3d\xfd\x41\x84\x4f\xf9\x2f\x60\xf0\x97\xd3\ \x39\xcb\x8f\x84\xc9\x7c\xee\x05\xe9\x48\x0b\x1d\x20\x47\x75\xab\ \xb0\x87\x53\x3e\xba\x66\x26\x22\x4b\x04\x87\x22\x8d\x6c\x49\x8a\ \xf2\x83\xc2\xe5\x08\x8f\x11\x7e\xbf\xdb\x69\xe9\x9c\xe5\x36\x61\ \x8f\x14\x34\x83\x09\x90\x63\x92\x43\x59\xbf\x44\xaa\x09\x26\xe5\ \xe4\xfa\x82\x07\x10\x6f\xdc\xc4\x96\xa4\x28\x2f\x3b\xbd\xf2\xbe\ \x08\xc9\xf9\x8e\xf6\x7d\x53\x3d\x85\x1c\x6e\xf8\x26\xec\xa1\xab\ \xc2\x6e\x4b\x02\xe4\x63\x92\xbb\x86\x5e\x14\x56\x92\xd2\xd1\x2d\ \x0d\x88\x2d\x7e\x1c\xe6\xae\x19\x6c\x49\x8a\xf2\xa0\x82\xd5\xa7\ \xdb\x45\xa0\x8a\xda\xa5\x7a\x8a\xc3\xc2\xbe\x28\xec\x75\xb6\x26\ \x01\x72\x32\xc9\x32\x93\xb2\x28\x55\x8a\xcb\x31\xc4\xcb\xc9\xda\ \x3f\x22\xb2\xfa\xb7\xe2\xaf\x51\xb6\x26\x45\x79\x82\x1c\x21\x84\ \x07\x5f\x09\x0c\xfa\x62\x3a\x67\xa9\x85\x5d\x0c\x6a\x3e\x1b\x94\ \x00\x49\xa4\xfe\xc2\xde\x16\x36\x20\xe5\x33\xec\x5d\x8a\xe8\xa2\ \x47\x10\x6f\xde\xc3\xd6\xa4\xa8\x5c\x3a\xb9\x36\x5d\x10\x1a\xff\ \x83\x74\x36\x07\x4a\xad\x17\x76\x9e\xb0\x0d\x6c\x51\x02\x44\x45\ \x9d\x60\xe7\xcf\x3a\x23\xe5\x33\xc8\xfd\x22\x72\x48\x6b\xef\x3c\ \xb6\x26\x45\xe5\x22\xf0\xe8\x32\x09\xc6\xd8\x9b\x81\x36\x1d\xd3\ \x39\xcd\xfb\xc2\x2e\x11\xb6\x8f\x2d\x4a\x80\xe8\x48\xee\x5a\x7f\ \x4a\xd8\xd7\x52\x3f\x85\x09\xac\x7b\x19\x91\x55\xbf\xb1\x8a\x55\ \x51\x14\x95\x0d\x72\x84\x11\x1e\x22\x1e\xdb\x81\x32\xab\x48\x5a\ \x85\x57\xc5\x83\x0b\x99\xcb\xbd\x85\x8d\x4a\x80\xa4\x2a\xb9\xce\ \xfb\xe1\xb4\x7a\xe2\xfe\x55\x88\x2e\xfa\x21\xe2\x87\x36\xb3\x35\ \x29\x2a\x93\x4e\xad\xac\x0f\x42\xe3\xc5\x23\xdb\x61\x70\x3a\xa7\ \x91\x2b\xad\xe4\x32\xdd\xc7\xd8\xa2\x04\x88\x1b\xba\x10\x76\x71\ \x98\xf6\x29\x9f\xa1\xa5\x11\xe6\xca\x67\x10\xdb\xf2\x17\xb6\x26\ \x45\x65\x40\x46\xef\x8b\x10\x1c\x7e\x35\x10\x2e\x4b\xe7\x34\x32\ \x5b\xaa\xdc\x5d\xf8\x26\x5b\x94\x00\x71\x53\x72\x52\xfd\xcf\xc2\ \x86\xa5\x75\x96\x5d\x73\x11\x5d\xfa\x53\x4e\xb0\x53\x94\x5b\x8e\ \x4c\x4e\x94\x8f\xbe\x01\xa8\x9e\x98\xee\xa9\x56\x0a\xfb\x3c\xec\ \x49\x73\x8a\x00\x71\x5d\xe5\xc2\x9e\x13\x76\x69\x5a\x67\x69\x3e\ \x80\xd8\x8a\xa7\x61\x6e\x7f\x97\x2d\x4a\x51\x69\x28\xd8\xe3\x6c\ \x18\xc3\xbf\x05\xb4\xe9\x90\xee\xa9\x5e\x11\x76\x85\x30\xa6\x94\ \x20\x40\x32\xdb\x6e\xb0\xf3\x67\xc9\x79\x11\x23\xad\x33\xd5\xcc\ \x40\x74\xd9\x93\x8c\x46\x28\x2a\x95\xa8\x63\xe4\x75\xe9\xa6\x23\ \x91\x92\x49\x10\xe5\x7c\x87\xcc\x6b\x45\x87\x48\x80\x64\x4d\xb2\ \xe7\xfe\x41\x58\xb7\xb4\xce\x72\xa4\x0e\xe6\x8a\x67\x11\xdb\xf6\ \x16\x5b\x94\xa2\x14\x64\xf4\x3a\x1f\xc1\x61\x57\x01\xc5\x15\xe9\ \x9e\xaa\x46\xd8\xe5\xc2\x66\xb2\x55\x09\x90\x5c\xa8\x0b\xec\xc9\ \xf5\x73\xd2\x3e\xd3\xee\x85\x22\x1a\x79\x8a\x2b\xb5\x28\xaa\x35\ \x87\x25\x57\x58\x8d\xbc\x16\xa8\x1a\xe7\xc6\xe9\xde\x81\x3d\x59\ \xce\xf0\x9f\x00\xc9\xa9\xe4\xf2\x5e\x99\xd1\xf7\x5e\x61\xa1\xf4\ \x82\xe9\x66\x60\xed\x1f\x10\x59\xf7\x22\x60\x72\xe9\x39\x45\xd9\ \x4f\x58\x31\xc2\x03\x2f\xb7\x53\x91\x18\xc5\xe9\x9e\x4d\xe6\x18\ \xba\x0b\x76\x26\x5d\xd6\x61\x20\x40\x3c\x23\xb9\x04\x44\x56\x26\ \xeb\x97\xf6\x99\x1a\x36\x23\xb6\xfc\x57\xdc\xc5\x4e\x91\x1d\x72\ \x37\xb9\x5c\x9a\x9b\x7a\xa9\xd9\xe3\xb5\x11\x76\x25\x52\x3e\x58\ \x04\x88\x27\x25\xd3\x7c\xfe\xc2\x09\x8d\xd3\x57\xcd\x4c\x44\x57\ \x3c\x83\x78\xd3\x36\xb6\x2c\x55\x58\xce\xa9\xb4\x27\x42\xc3\xbf\ \xee\xc6\x24\xf9\x51\xc9\xa1\xe6\x6b\x85\x1d\x64\xeb\x12\x20\x5e\ \xd7\x17\x60\x97\xcc\xed\x98\xf6\x99\xe4\xb0\xd6\xba\x97\x10\x59\ \xff\x47\x11\x7c\x37\xb1\x65\xa9\xfc\x56\xa8\x14\xe1\x01\x97\xdb\ \x69\x48\x52\x2f\x33\x7b\xbc\xf6\xc3\x2e\x39\xfb\x12\x1b\x97\x00\ \xf1\x93\xaa\x85\x3d\x2b\xec\x7c\x57\xce\xd6\xb4\x07\xe6\xea\x17\ \x10\xdb\xf6\x36\x10\x8f\xb1\x75\xa9\x3c\xf3\x46\x06\x8c\x9e\xe7\ \x21\x28\x4b\xcc\x96\x76\x71\xeb\xac\x72\x69\xe3\x55\xc2\x76\xb1\ \x81\x09\x10\xbf\xea\x6a\xd8\x6b\xcc\xdb\xba\x72\xb6\xba\xf5\x88\ \x7d\xf8\x5b\x98\x7b\xe6\xb2\x65\xa9\xbc\x50\xb0\xcb\x64\x18\x43\ \xaf\x00\x2a\x06\xb8\x75\xca\x06\x61\xdf\x13\xf6\x6b\xb6\x2e\x01\ \x92\x0f\xea\x0e\xbb\x64\xee\x05\xae\x9d\x71\xcf\x22\xc4\x44\x44\ \x62\xee\x5f\xc6\xd6\xa5\xfc\x09\x8e\x8e\xa3\x60\xc8\x88\xa3\xcb\ \x58\x37\x4f\x2b\x73\x58\xc9\x92\xb3\x3b\xd8\xc2\x04\x48\xbe\xe9\ \x3f\x85\x3d\x01\x37\xe6\x46\x8e\x6a\xe7\x2c\x44\x57\x3d\x8f\x78\ \xc3\x3a\xb6\x2e\xe5\x0f\xc7\xd3\x7e\x10\x42\x12\x1c\x5d\xa7\xba\ \x79\x5a\x39\xd7\x71\xbd\xb0\xff\x61\x0b\x13\x20\xf9\xac\xce\xb0\ \xd3\x44\xff\x97\x7b\xa7\x34\x81\xed\xff\x42\x74\xed\x8b\x02\x24\ \xcc\x03\x47\x79\xd4\xe1\xb4\x1b\x80\x90\xdc\xcb\xd1\xe3\x4c\xa4\ \x59\xa7\xe3\x44\xfd\x0e\x76\xd9\x85\xbd\x6c\x65\x02\xa4\x50\xf4\ \x29\x61\x4f\x0a\x1b\xec\xde\x29\x25\x48\xde\x47\x74\xdd\xcb\x88\ \xd7\xaf\x62\x0b\x53\x1e\x89\x38\x86\x20\x74\xca\xe5\x40\xb7\xa9\ \x6e\x83\x63\x35\xec\x82\x4f\xef\xb1\x95\x09\x90\x42\x94\xdc\x56\ \x2b\x27\xfb\xa6\x09\x2b\x71\xf5\xcc\x3b\x67\x23\xb6\xfe\x55\x98\ \xfb\x16\xb3\x95\xa9\x9c\x28\xd8\x69\x2c\x8c\x81\x97\x00\xd5\x93\ \xdd\x3e\xf5\x61\x61\x0f\x08\xfb\xa1\xb0\x23\x6c\x69\x02\xa4\xd0\ \xd5\xd3\x79\x18\x2e\x73\xfd\xcc\xfb\x56\x20\xb6\xee\x15\x98\xbb\ \x67\x02\x71\x66\x6e\xa0\x32\xed\x55\x0c\x04\xab\x4f\x83\x31\x40\ \x80\xa3\xd3\xf0\x4c\x7c\xc3\x1f\x9d\x97\x2e\xee\xae\x25\x40\xa8\ \x13\x74\x16\xec\x49\xf6\x11\xae\x9f\xf9\xe0\x56\x98\x1b\x5f\x47\ \x6c\xdb\x3b\x40\x94\x25\x0f\x28\x97\x15\x2e\x87\xd1\xe3\x1c\x04\ \xfb\x5d\x0c\xb4\xed\x95\x89\x6f\x58\x2e\xec\x3b\xc2\xfe\xc5\xc6\ \x26\x40\xa8\xd6\x25\x6b\x8c\x5c\x29\xec\x3e\xd8\x9b\x11\xdd\x55\ \x4b\x03\xb0\xf5\x6f\x88\x6e\x7a\x13\xf1\x43\x5b\xd9\xda\x54\x7a\ \x4e\xa4\xac\x17\x42\x7d\x2f\x04\x7a\x9d\x03\x14\xb5\xcb\xc4\x57\ \xc8\x4d\x80\x77\x0a\xfb\x2d\xec\xda\x1d\x14\x01\x42\x29\x48\x56\ \x3f\xbc\xc5\x09\xd7\x4b\xdd\x3f\xbd\x69\xa5\x90\x8f\x6d\xfa\x3f\ \x98\x7b\x66\x8b\xff\x8c\xb2\xc5\x29\x35\x05\x43\x08\x56\x4d\x85\ \xd1\xe7\x3c\xa0\x6a\x3c\x5c\x9e\x18\x3f\x2a\x99\xb7\x47\x0e\xeb\ \xca\x15\x8b\x0c\x99\x09\x10\x2a\x45\xc9\x82\x55\x32\xfd\xb4\x4c\ \xc9\x10\xca\xc8\x37\x34\xed\x11\x51\xc9\x5f\x11\xdd\xfa\x77\x26\ \x6e\xa4\x12\x44\x1b\x3d\x11\xea\x79\xb6\x88\x36\xce\x75\x33\xdd\ \xc8\x89\x92\x6f\x32\x32\x05\x90\x2c\x8f\x50\xc3\x56\x27\x40\x28\ \x77\x24\xf3\x3c\xdc\x0d\x3b\x1d\x75\x20\x63\xdf\xb2\x77\x09\x62\ \x5b\xdf\x81\xb9\x73\x06\x93\x37\x52\xe2\x95\xa5\x0c\x46\xd7\xd3\ \x11\xec\x25\xc0\xd1\x79\x4c\x26\xbf\x49\x3a\xa3\xdf\x3b\x7d\x9c\ \x9b\x99\x08\x10\x2a\x43\x92\x4b\x5b\xee\x17\xf6\xb9\x8c\x7e\x4b\ \x4b\xa3\xb5\xcb\x3d\x56\x33\x03\xe6\xde\x05\x1c\xe2\x2a\x24\xc9\ \x21\xaa\xce\xa7\xc2\xe8\x76\xba\x9d\x4e\x3d\x5c\x96\x69\x70\xbc\ \x2e\xec\x0e\x61\x2b\xd8\xf8\x04\x08\x95\x1d\x0d\x85\x3d\xb4\x75\ \x59\x46\x23\x12\xa9\xe6\xfd\x80\x00\x49\x6c\xc7\x4c\x98\xfb\x3f\ \x60\x36\xe0\xbc\xf4\x06\x86\x9d\x9b\xaa\xbb\x03\x8d\x36\x1d\x33\ \xfd\x8d\xd2\xf9\xc8\x25\xb9\x72\xa8\xea\x43\xde\x00\x02\x84\xca\ \x1d\x48\xee\x70\x40\x62\x64\xfc\xdb\x24\x4c\x64\x64\xb2\x73\x2e\ \xcc\xda\x85\x8c\x4c\xfc\x1e\x69\x54\x8e\x87\xd1\x75\x92\x9d\x97\ \x2a\xf3\xd0\x90\x92\x6f\x1f\x7f\x80\xbd\x11\x90\xe0\x20\x40\x28\ \x8f\xa8\x8f\xb0\x9b\x61\x4f\xb6\x97\x64\xe5\x1b\x8f\xd4\xdb\x59\ \x81\x77\x2f\x40\x7c\xcf\x42\xc4\x5b\xf6\xf3\x2e\x78\xfd\xa1\x2f\ \xea\x88\x40\xd5\xa9\x30\xba\x8c\xb7\x57\x50\x65\x66\xe9\xed\xc9\ \x24\x27\xd4\x7e\x03\xbb\xb4\xc1\x66\xde\x09\x02\x84\xf2\xa6\x2a\ \x85\x7d\x1b\x76\xf9\xce\xce\xd9\xfb\x5a\x13\xa8\x5d\x61\x03\xa5\ \x76\x19\xcc\xba\x0f\x19\x9d\x78\x25\xca\xa8\x18\x0a\xa3\x72\xa4\ \x0d\x8c\x4e\xc3\x90\xa1\x65\xb7\xad\x49\x26\x38\x94\x39\xdf\x7e\ \x2e\xac\x96\x37\x84\x00\xa1\xfc\x21\x99\x67\x4b\xae\xd8\x92\x29\ \xae\x47\x67\xfd\xdb\xe5\x86\xc5\xbd\x4b\x61\x4a\xdb\xbf\x12\xf1\ \x83\x1b\x99\x4a\x25\x2b\x4f\x75\x10\x81\xb6\xfd\x11\xec\x38\x14\ \xc1\x2e\x63\xc4\xeb\xc4\xa8\x6c\x46\x19\xc7\x6b\xa9\xb0\x9f\x0a\ \xfb\x5f\x30\x5f\x15\x01\x42\xf9\x5a\x32\x7f\xb6\x4c\x03\x21\x57\ \x6e\x85\x72\x72\x05\x47\xea\xac\xbc\x5c\x66\xed\x72\xc4\x0f\xac\ \x81\x59\xbf\x56\x44\x28\xf4\x2b\xe9\x47\x18\xc5\x08\xb6\x1f\x84\ \x40\x87\x53\x10\xac\x1c\x61\xe7\x9f\x2a\xae\xc8\xd5\xd5\xc8\x90\ \xf3\x35\x61\x3f\x03\x53\x8e\x10\x20\x54\xde\x49\xa6\x46\xf9\x3a\ \xec\x32\xbb\xbd\x72\x7a\x25\x66\x04\x10\x20\x91\x16\xab\x5b\x8b\ \x78\xfd\x26\xc4\x1b\x37\x73\x85\x57\xc2\x27\xd6\x40\xa0\xbc\x0f\ \x02\xed\xfb\xc1\xa8\x18\x08\x74\x18\x2c\x6c\x90\x80\x48\x38\xd7\ \x57\x26\x73\xe2\xfc\x0a\xf6\x06\x40\xd6\x1f\x27\x40\xa8\x7c\x7f\ \x6f\x15\x76\x9e\xb0\xaf\x09\xbb\x58\x58\xd8\x13\x57\x15\x3b\x0c\ \xd4\x6d\x00\xea\x37\x88\x08\x45\x02\x65\x3b\xe2\x07\xb7\x14\xe4\ \xe4\x7c\xa0\xa8\x13\x02\x6d\x7b\x09\x60\xf4\x10\x11\x46\x5f\xa0\ \x7d\x7f\xa0\x42\x98\x51\xe2\x95\x4b\x14\x6f\x00\xd6\xfe\x0d\x39\ \x31\xfe\x36\xac\x49\x30\x8a\x00\xa1\x0a\x4d\x72\xd2\x5d\xce\x95\ \x5c\x21\x6c\x8c\x27\xaf\xb0\xf9\x00\xd0\xb0\x09\x38\xb4\x03\x66\ \x63\x0d\xe2\x4d\xbb\x85\xed\xb4\x0c\x91\x83\xfe\x6d\xf9\x70\x5b\ \x04\x4a\xbb\x09\xab\xb6\x2c\x58\xde\x15\x28\xeb\x0e\xb4\x13\xc0\ \x68\xd3\xc1\xab\x57\xbd\x44\xd8\x73\xb0\x77\x8d\x73\x52\x9c\x00\ \xa1\xa8\x63\x92\xbb\xdc\x65\xdd\xf6\x2f\xc2\x5e\x16\xec\x7d\xc9\ \xa5\xc4\x87\xf7\xd8\xd6\xb4\x57\xfc\xf7\x3e\x98\xcd\x75\x22\x6a\ \x39\x68\xcd\xbb\xc4\x5b\xa4\xd5\xdb\x29\xec\xb3\x31\x89\x1f\x10\ \xc1\x5d\xa8\x5c\x44\x10\xed\x85\x55\x58\xf3\x11\x81\xa2\x76\x08\ \xb6\x69\x2f\xa0\x20\x58\x5d\x22\xad\x0b\x50\x5a\x95\xab\xc9\xed\ \x54\xb4\x59\xd8\x8b\xb0\xeb\x8d\x73\xb7\x38\x45\x80\x50\x89\xfb\ \x86\xb0\x49\x4e\x64\x72\xa9\xb0\xae\x79\xf1\xab\x24\x6c\x22\x8d\ \x76\xd4\x12\x3d\x6c\xcf\xc3\x44\x0e\xd9\xcb\x8d\x63\xcd\xf6\x67\ \xe4\x33\x71\xb2\x1c\x60\xa1\x52\xd1\x2a\xce\x86\x7f\xa3\x8d\xb5\ \x3c\xd6\x4a\xf1\x21\xe7\x1f\x42\x25\x56\x34\x21\x6b\x62\xa0\xb8\ \x7d\xbe\xf4\x01\x11\xde\xe1\x15\x27\xd2\x98\x0b\x7b\xe7\x38\x45\ \x11\x20\x94\x96\x82\x0e\x4c\x24\x48\x2e\xf1\x4d\x64\x42\xa5\xa2\ \x4d\xc2\x5e\x15\xf6\xb2\xb0\x79\xe0\xbc\x06\x45\x80\x50\x2e\x4b\ \xce\x93\x5c\x28\xec\x02\x61\x13\x90\xe9\x3c\x5c\x54\x26\x25\x1d\ \xc0\x7c\x61\x6f\x0a\x7b\x03\xf6\xfc\x06\x45\x11\x20\x54\x56\x24\ \x8b\x42\x9c\x0f\x7b\x45\xd7\xd9\xc2\x3a\xb1\x49\x3c\x2f\x39\xf1\ \xfd\x77\xd8\x2b\xa7\x24\x38\xf6\xb2\x49\x28\x02\x84\xca\xb5\xe4\ \x50\xd7\x68\x07\x24\xe7\x0a\x9b\x82\x6c\xe5\xe4\xa2\x12\xe9\xb0\ \xb0\xd9\xc2\xfe\x26\xec\x5d\xd8\x3b\xc4\x39\x34\x45\x11\x20\x94\ \xa7\x55\x24\x4c\xd6\x3b\x3d\x03\xf6\x4e\x78\x09\x94\x76\x6c\x96\ \x8c\xab\x41\xd8\x2c\x61\xef\xc3\xde\x0d\xbe\x48\x58\x0b\x9b\x85\ \x22\x40\x28\x3f\x4b\xa6\x9a\x1f\x02\x7b\x42\x5e\xce\x9d\x4c\x86\ \x9d\x8a\x3e\xc8\xa6\x49\x59\x32\x92\x90\x29\xd1\xe7\xc0\x9e\xcb\ \x98\xeb\xfc\x37\x23\x0c\x8a\x00\xa1\xf2\x5e\xb2\xd4\xdd\x28\xd8\ \x13\xf3\xa3\x9d\x3f\xe5\x5e\x94\x62\x36\xcd\x27\x24\x13\x87\xc9\ \x3d\x18\x72\xa2\x7b\xa9\xf3\xe7\x07\xc2\x0e\xb1\x69\x28\x02\x84\ \xa2\x3e\x8a\x54\xfa\x09\x1b\xe6\xd8\x60\x27\x52\xe9\x2f\xac\x7d\ \x01\xfc\xfe\x3a\x61\x1b\x85\xad\x14\xb6\xc6\xf9\x73\xa5\xf3\x6f\ \x4c\x14\x46\x11\x20\x14\x95\xa2\xe4\x2a\xaf\x01\x8e\xf5\x81\x9d\ \x10\x52\x5a\x0f\xe7\x4f\x3f\xcc\xb1\xd4\x0b\xdb\x26\x6c\x3b\xec\ \x24\x84\xd2\x36\x0b\x5b\x27\x6c\x83\xb0\x7d\xbc\xcd\x14\x01\x42\ \x51\xd9\x57\x29\xec\x5d\xf3\xb2\x90\x96\x5c\x62\x2c\xb3\x0f\xcb\ \x5c\x5f\x15\x27\x98\x8c\x64\x8a\x9d\x3f\x65\x22\xc9\x72\xd8\x2b\ \xc6\x8a\x14\xbe\x43\x0e\x25\xc9\x6d\xeb\x8d\xb0\x13\x0a\xd6\x3b\ \xff\x56\xef\x44\x0f\xc7\x9b\x5c\x32\x2b\xb3\xd3\xee\x71\x4c\xfe\ \xbd\x89\xb7\x89\x22\x40\x28\x8a\xa2\x28\x02\x84\xa2\x28\x8a\xa2\ \x08\x10\x8a\xa2\x28\x8a\x00\xa1\x28\x8a\xa2\xbc\xa9\xff\x2f\xc0\ \x00\x1a\x25\x9d\x78\x2a\x70\x0d\x09\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ " qt_resource_name = b"\ \x00\x05\ \x00\x4f\xa6\x53\ \x00\x49\ \x00\x63\x00\x6f\x00\x6e\x00\x73\ \x00\x0a\ \x03\xcd\x0a\xc7\ \x00\x74\ \x00\x68\x00\x65\x00\x6d\x00\x65\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x0a\xd4\xd2\xc7\ \x00\x64\ \x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x06\x9a\xc9\xa7\ \x00\x65\ \x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x06\x99\x5f\xa7\ \x00\x69\ \x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x09\xc5\x58\xc7\ \x00\x75\ \x00\x73\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x0b\x9c\xf1\x87\ \x00\x64\ \x00\x65\x00\x76\x00\x6c\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x06\x26\x85\x87\ \x00\x62\ \x00\x6f\x00\x6f\x00\x6b\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x0a\x8c\xa1\xe7\ \x00\x74\ \x00\x6f\x00\x64\x00\x61\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x00\xbd\xc0\x27\ \x00\x73\ \x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x09\x00\x00\x00\x02\ \x00\x00\x00\xde\x00\x00\x00\x00\x00\x01\x00\x03\x35\x3b\ \x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\xae\x00\x00\x00\x00\x00\x01\x00\x02\x16\x6b\ \x00\x00\x00\x60\x00\x00\x00\x00\x00\x01\x00\x00\x89\xb3\ \x00\x00\x00\x46\x00\x00\x00\x00\x00\x01\x00\x00\x7d\x67\ \x00\x00\x00\x7a\x00\x00\x00\x00\x00\x01\x00\x00\xf2\xae\ \x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x02\xc3\xa2\ \x00\x00\x00\x2a\x00\x00\x00\x00\x00\x01\x00\x00\x1d\x1a\ \x00\x00\x00\x90\x00\x00\x00\x00\x00\x01\x00\x01\x58\x29\ " qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x09\x00\x00\x00\x02\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\xde\x00\x00\x00\x00\x00\x01\x00\x03\x35\x3b\ \x00\x00\x01\x69\x18\xd6\x3f\x80\ \x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x69\x18\xd6\x43\x68\ \x00\x00\x00\xae\x00\x00\x00\x00\x00\x01\x00\x02\x16\x6b\ \x00\x00\x01\x69\x18\xd6\x43\x68\ \x00\x00\x00\x60\x00\x00\x00\x00\x00\x01\x00\x00\x89\xb3\ \x00\x00\x01\x69\x4d\xa4\x87\xdc\ \x00\x00\x00\x46\x00\x00\x00\x00\x00\x01\x00\x00\x7d\x67\ \x00\x00\x01\x69\x18\xd6\x47\x50\ \x00\x00\x00\x7a\x00\x00\x00\x00\x00\x01\x00\x00\xf2\xae\ \x00\x00\x01\x69\x18\xd6\x43\x68\ \x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x02\xc3\xa2\ \x00\x00\x01\x69\x18\xd6\x3f\x80\ \x00\x00\x00\x2a\x00\x00\x00\x00\x00\x01\x00\x00\x1d\x1a\ \x00\x00\x01\x69\x59\x02\xa6\xb9\ \x00\x00\x00\x90\x00\x00\x00\x00\x00\x01\x00\x01\x58\x29\ \x00\x00\x01\x69\x18\xd6\x43\x68\ " qt_version = [int(v) for v in QtCore.qVersion().split('.')] if qt_version < [5, 8, 0]: rcc_version = 1 qt_resource_struct = qt_resource_struct_v1 else: rcc_version = 2 qt_resource_struct = qt_resource_struct_v2 def qInitResources(): QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources()
[ "PyQt5.QtCore.qVersion", "PyQt5.QtCore.qUnregisterResourceData", "PyQt5.QtCore.qRegisterResourceData" ]
[((980271, 980372), 'PyQt5.QtCore.qRegisterResourceData', 'QtCore.qRegisterResourceData', (['rcc_version', 'qt_resource_struct', 'qt_resource_name', 'qt_resource_data'], {}), '(rcc_version, qt_resource_struct,\n qt_resource_name, qt_resource_data)\n', (980299, 980372), False, 'from PyQt5 import QtCore\n'), ((980402, 980505), 'PyQt5.QtCore.qUnregisterResourceData', 'QtCore.qUnregisterResourceData', (['rcc_version', 'qt_resource_struct', 'qt_resource_name', 'qt_resource_data'], {}), '(rcc_version, qt_resource_struct,\n qt_resource_name, qt_resource_data)\n', (980432, 980505), False, 'from PyQt5 import QtCore\n'), ((980038, 980055), 'PyQt5.QtCore.qVersion', 'QtCore.qVersion', ([], {}), '()\n', (980053, 980055), False, 'from PyQt5 import QtCore\n')]
# tests unix socket dothttp apis from unittest import skipIf import requests from dothttp.request_base import RequestCompiler, CurlCompiler from test import TestBase from test.core.test_request import dir_path try: import requests_unixsocket except: requests_unixsocket = None base_dir = f"{dir_path}/requests" @skipIf(requests_unixsocket is None, "in wasm mode, it will not be available") class TestUnixSocketRequests(TestBase): def test_simple(self): request = self.get_request( file=f"{base_dir}/unix.http" ) self.assertEqual(request.url, "http+unix://%2Fvar%2Frun%2Fdocker.sock/info") def test_integration(self): from requests_unixsocket.testutils import UnixSocketServerThread with UnixSocketServerThread() as usock_thread: urlencoded_usock = requests.compat.quote_plus(usock_thread.usock) base_url = f"http+unix://{urlencoded_usock}" req_comp: RequestCompiler = self.get_req_comp( file=f"{base_dir}/unix.http" , properties=["base_url=" + base_url] , target=2 ) response = req_comp.get_response() self.assertEqual(base_url + "/", response.url, "should be same request unix socket url") self.assertEqual(200, response.status_code, "should be 200") self.assertEqual('waitress', response.headers['server'], "server should be waitress") self.assertEqual(usock_thread.usock, response.headers['X-Socket-Path'], "unix socket path should be same") def test_url_extend_and_query(self): from requests_unixsocket.testutils import UnixSocketServerThread with UnixSocketServerThread() as usock_thread: urlencoded_usock = requests.compat.quote_plus(usock_thread.usock) base_url = f"http+unix://{urlencoded_usock}" req_comp2: RequestCompiler = self.get_req_comp( file=f"{base_dir}/unix.http" , properties=["base_url=" + base_url, "urlpath=/"] , target=3 ) response2 = req_comp2.get_response() self.assertEqual(200, response2.status_code, "should be 200") self.assertEqual('waitress', response2.headers['server'], "server should be waitress") self.assertEqual(usock_thread.usock, response2.headers['X-Socket-Path'], "unix socket path should be same") self.assertEqual('/containers/nginx/logs/', response2.headers['X-Requested-Path'], "path should be same") self.assertEqual('timestamp=true', response2.headers['X-Requested-Query-String']) def test_curl(self): request: CurlCompiler = self.get_req_comp( file=f"{base_dir}/unix.http", curl=True ) self.assertEqual("""curl -X GET --url http://localhost/info \\ --unix-socket /var/run/docker.sock""", request.get_curl_output()) def test_curl_with_query_and_path(self): request: CurlCompiler = self.get_req_comp( file=f"{base_dir}/unix.http", target=3 , properties=["base_url=" + "http+unix://%2Fvar%2Frun%2Fdocker.sock", "urlpath=/"], curl=True ) self.assertEqual("""curl -X GET --url http://localhost/containers/nginx/logs/?timestamp=true \\ --unix-socket /var/run/docker.sock""", request.get_curl_output())
[ "requests.compat.quote_plus", "unittest.skipIf", "requests_unixsocket.testutils.UnixSocketServerThread" ]
[((326, 403), 'unittest.skipIf', 'skipIf', (['(requests_unixsocket is None)', '"""in wasm mode, it will not be available"""'], {}), "(requests_unixsocket is None, 'in wasm mode, it will not be available')\n", (332, 403), False, 'from unittest import skipIf\n'), ((762, 786), 'requests_unixsocket.testutils.UnixSocketServerThread', 'UnixSocketServerThread', ([], {}), '()\n', (784, 786), False, 'from requests_unixsocket.testutils import UnixSocketServerThread\n'), ((835, 881), 'requests.compat.quote_plus', 'requests.compat.quote_plus', (['usock_thread.usock'], {}), '(usock_thread.usock)\n', (861, 881), False, 'import requests\n'), ((1704, 1728), 'requests_unixsocket.testutils.UnixSocketServerThread', 'UnixSocketServerThread', ([], {}), '()\n', (1726, 1728), False, 'from requests_unixsocket.testutils import UnixSocketServerThread\n'), ((1777, 1823), 'requests.compat.quote_plus', 'requests.compat.quote_plus', (['usock_thread.usock'], {}), '(usock_thread.usock)\n', (1803, 1823), False, 'import requests\n')]
"""add timer activity migration Revision ID: <KEY> Revises: <KEY> Create Date: 2021-04-29 22:31:18.464080 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = '<KEY>' down_revision = '<KEY>' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('activity', sa.Column('id', sa.Integer(), nullable=False), sa.Column('user_id', sa.Integer(), nullable=True), sa.Column('amount_time', sa.Integer(), nullable=True), sa.Column('break_time', sa.Integer(), nullable=True), sa.Column('break_activity', sa.String(length=300), nullable=True), sa.Column('date_created', sa.DateTime(), nullable=True), sa.ForeignKeyConstraint(['user_id'], ['users.id'], ), sa.PrimaryKeyConstraint('id') ) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.drop_table('activity') # ### end Alembic commands ###
[ "sqlalchemy.ForeignKeyConstraint", "sqlalchemy.DateTime", "alembic.op.drop_table", "sqlalchemy.PrimaryKeyConstraint", "sqlalchemy.Integer", "sqlalchemy.String" ]
[((977, 1002), 'alembic.op.drop_table', 'op.drop_table', (['"""activity"""'], {}), "('activity')\n", (990, 1002), False, 'from alembic import op\n'), ((759, 809), 'sqlalchemy.ForeignKeyConstraint', 'sa.ForeignKeyConstraint', (["['user_id']", "['users.id']"], {}), "(['user_id'], ['users.id'])\n", (782, 809), True, 'import sqlalchemy as sa\n'), ((817, 846), 'sqlalchemy.PrimaryKeyConstraint', 'sa.PrimaryKeyConstraint', (['"""id"""'], {}), "('id')\n", (840, 846), True, 'import sqlalchemy as sa\n'), ((420, 432), 'sqlalchemy.Integer', 'sa.Integer', ([], {}), '()\n', (430, 432), True, 'import sqlalchemy as sa\n'), ((476, 488), 'sqlalchemy.Integer', 'sa.Integer', ([], {}), '()\n', (486, 488), True, 'import sqlalchemy as sa\n'), ((535, 547), 'sqlalchemy.Integer', 'sa.Integer', ([], {}), '()\n', (545, 547), True, 'import sqlalchemy as sa\n'), ((593, 605), 'sqlalchemy.Integer', 'sa.Integer', ([], {}), '()\n', (603, 605), True, 'import sqlalchemy as sa\n'), ((655, 676), 'sqlalchemy.String', 'sa.String', ([], {'length': '(300)'}), '(length=300)\n', (664, 676), True, 'import sqlalchemy as sa\n'), ((724, 737), 'sqlalchemy.DateTime', 'sa.DateTime', ([], {}), '()\n', (735, 737), True, 'import sqlalchemy as sa\n')]
# -*- coding: utf-8 -*- """ Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if the characters in s can be replaced to get t. All occurrences of a character must be replaced with another character while preserving the order of characters. No two characters may map to the same character but a character may map to itself. Example 1: Input: s = "egg", t = "add" Output: true Example 2: Input: s = "foo", t = "bar" Output: false Example 3: Input: s = "paper", t = "title" Output: true Note: You may assume both s and t have the same length """ from collections import defaultdict class Solution: def isIsomorphic(self, s, t): """ :type s: str :type t: str :rtype: bool >>> s, t = "egg", "add" >>> judge = Solution() >>> judge.isIsomorphic(s, t) True >>> s, t = "foo", "bar" >>> judge.isIsomorphic(s, t) False >>> s, t = "paper", "title" >>> judge.isIsomorphic(s, t) True """ s_c = defaultdict(list) t_c = defaultdict(list) for k, i in enumerate(s): s_c[i].append(k) for k, i in enumerate(t): t_c[i].append(k) s_c_values = list(s_c.values()) t_c_values = list(t_c.values()) return sorted(s_c_values) == sorted(t_c_values) if __name__ == '__main__': import doctest doctest.testmod(verbose=True)
[ "doctest.testmod", "collections.defaultdict" ]
[((1426, 1455), 'doctest.testmod', 'doctest.testmod', ([], {'verbose': '(True)'}), '(verbose=True)\n', (1441, 1455), False, 'import doctest\n'), ((1059, 1076), 'collections.defaultdict', 'defaultdict', (['list'], {}), '(list)\n', (1070, 1076), False, 'from collections import defaultdict\n'), ((1091, 1108), 'collections.defaultdict', 'defaultdict', (['list'], {}), '(list)\n', (1102, 1108), False, 'from collections import defaultdict\n')]
from django.shortcuts import render, redirect from django.conf import settings from editor.models import ContentModel def index(request): context = {} template = "viewer/home.html" try: a = ContentModel.objects.get(ref_id='1') except Exception as e: return redirect('/welcome/') return render(request, template, context) def page_not_found(request): url = request.get_full_path() home_link = settings.SHARE_URL template = "error.html" context = {"url": home_link + url, "error_code": 404, "error_message": "Oops, the page you're <br/> looking for does not exist.", "home_link": home_link} return render(request, template, context) def server_error(request): url = request.get_full_path() home_link = settings.SHARE_URL template = "error.html" context = {"url": home_link + url, "error_code": 500, "error_message": "Sorry, but the requested page is unavailable <br/> due to a server hiccup.", "home_link": home_link} return render(request, template, context)
[ "django.shortcuts.render", "django.shortcuts.redirect", "editor.models.ContentModel.objects.get" ]
[((336, 370), 'django.shortcuts.render', 'render', (['request', 'template', 'context'], {}), '(request, template, context)\n', (342, 370), False, 'from django.shortcuts import render, redirect\n'), ((692, 726), 'django.shortcuts.render', 'render', (['request', 'template', 'context'], {}), '(request, template, context)\n', (698, 726), False, 'from django.shortcuts import render, redirect\n'), ((1081, 1115), 'django.shortcuts.render', 'render', (['request', 'template', 'context'], {}), '(request, template, context)\n', (1087, 1115), False, 'from django.shortcuts import render, redirect\n'), ((221, 257), 'editor.models.ContentModel.objects.get', 'ContentModel.objects.get', ([], {'ref_id': '"""1"""'}), "(ref_id='1')\n", (245, 257), False, 'from editor.models import ContentModel\n'), ((302, 323), 'django.shortcuts.redirect', 'redirect', (['"""/welcome/"""'], {}), "('/welcome/')\n", (310, 323), False, 'from django.shortcuts import render, redirect\n')]
""" Class with nosetests for OptionGroup AbstractBlock in slack_view library """ from nose.tools import raises from slackviews.view import OptionGroup, PlainText, Option __author__ = '<NAME>' __email__ = '<EMAIL>' class TestOptiongroup: def setup(self): self.expected_label = 'any label' self.expected_option0_text = 'option 1 text' self.expected_option0_value = 'option 1 value' self.expected_option1_text = 'option 2 text' self.expected_option1_value = 'option 2 value' self.expected_option0 = Option.Builder().text(self.expected_option0_text).value(self.expected_option0_value) \ .build() self.expected_option1 = Option.Builder().text(self.expected_option1_text).value(self.expected_option1_value) \ .build() self.expected_serialized_dict = {'options': [{'value': self.expected_option0_value, 'text': {'type': 'plain_text', 'text': self.expected_option0_text, 'emoji': False}}, {'value': self.expected_option1_value, 'text': {'type': 'plain_text', 'text': self.expected_option1_text, 'emoji': False}}], 'label': {'type': 'plain_text', 'text': self.expected_label, 'emoji': False}} self.expected_serialized_json = f'{{"options": [{{"value": "{self.expected_option0_value}", ' \ f'"text": {{"type": "plain_text", "text": "{self.expected_option0_text}", ' \ f'"emoji": false}}}}, {{"value": "{self.expected_option1_value}", ' \ f'"text": {{"type": "plain_text", "text": "{self.expected_option1_text}", ' \ f'"emoji": false}}}}], "label": {{"type": "plain_text", ' \ f'"text": "{self.expected_label}", "emoji": false}}}}' self.expected_option0 = Option.Builder().text(self.expected_option0_text).value( self.expected_option0_value).build() self.expected_option1 = Option.Builder().text(self.expected_option1_text).value( self.expected_option1_value).build() self.expected_options = [self.expected_option0, self.expected_option1] _builder = OptionGroup.Builder().label(self.expected_label) for opt_ in self.expected_options: _builder.Option().text(getattr(getattr(opt_, '_text'), '_text')).value(getattr(opt_, '_value')) self.optiongroup_instance = _builder.build() def teardown(self): OptionGroup.__all_slots__ = None def test_should_optiongroup_builder_provide_a_valid_instance_with_required_values(self): # GIVEN expected_slots = ('_label', '_options') expected_all_slots = expected_slots # WHEN instance = self.optiongroup_instance # THEN assert isinstance(instance, OptionGroup) assert hasattr(instance, '__all_slots__') assert hasattr(instance, '__slots__') for att in expected_slots: assert att in getattr(instance, '__slots__') for att in expected_all_slots: assert att in getattr(instance, '__all_slots__') assert isinstance(getattr(instance, '_label'), PlainText) assert getattr(getattr(instance, '_label'), '_text') == self.expected_label _options = getattr(instance, '_options') assert isinstance(_options, list) for _opt in getattr(instance, '_options'): assert isinstance(_opt, Option) assert isinstance(getattr(_opt, '_text'), PlainText) assert getattr(getattr(_options[0], '_text'), '_text') == self.expected_option0_text assert getattr(_options[0], '_value') == self.expected_option0_value assert getattr(getattr(_options[1], '_text'), '_text') == self.expected_option1_text assert getattr(_options[1], '_value') == self.expected_option1_value @raises(AttributeError) def test_should_optiongroup_serialize_raise_attributeerror_if_trying_to_serialize_without_all_required_slots(self): # WHEN OptionGroup.Builder().build().serialize() def test_should_optiongroup_serialize_provide_correct_dict_and_json_data(self): # GIVEN instance = self.optiongroup_instance # WHEN serialized_dict = instance.serialize() serialized_json = instance.serialize(as_json=True) # THEN assert serialized_dict == self.expected_serialized_dict assert serialized_json == self.expected_serialized_json def test_should_optiongroup_deserialize_provide_correct_instances_from_dict_and_json(self): # GIVEN serialized_dict = self.expected_serialized_dict serialized_json = self.expected_serialized_json # WHEN instance_from_dict = OptionGroup.deserialize(serialized_dict) instance_from_json = OptionGroup.deserialize(serialized_json, from_json=True) # THEN assert isinstance(instance_from_dict, OptionGroup) assert isinstance(instance_from_json, OptionGroup) for instance in (instance_from_dict, instance_from_json): assert isinstance(getattr(instance, '_label'), PlainText) assert getattr(getattr(instance, '_label'), '_text') == self.expected_label _options = getattr(instance, '_options') assert isinstance(_options, list) for _opt in getattr(instance, '_options'): assert isinstance(_opt, Option) assert isinstance(getattr(_opt, '_text'), PlainText) assert getattr(getattr(_options[0], '_text'), '_text') == self.expected_option0_text assert getattr(_options[0], '_value') == self.expected_option0_value assert getattr(getattr(_options[1], '_text'), '_text') == self.expected_option1_text assert getattr(_options[1], '_value') == self.expected_option1_value
[ "slackviews.view.OptionGroup.deserialize", "slackviews.view.OptionGroup.Builder", "nose.tools.raises", "slackviews.view.Option.Builder" ]
[((4221, 4243), 'nose.tools.raises', 'raises', (['AttributeError'], {}), '(AttributeError)\n', (4227, 4243), False, 'from nose.tools import raises\n'), ((5114, 5154), 'slackviews.view.OptionGroup.deserialize', 'OptionGroup.deserialize', (['serialized_dict'], {}), '(serialized_dict)\n', (5137, 5154), False, 'from slackviews.view import OptionGroup, PlainText, Option\n'), ((5184, 5240), 'slackviews.view.OptionGroup.deserialize', 'OptionGroup.deserialize', (['serialized_json'], {'from_json': '(True)'}), '(serialized_json, from_json=True)\n', (5207, 5240), False, 'from slackviews.view import OptionGroup, PlainText, Option\n'), ((2535, 2556), 'slackviews.view.OptionGroup.Builder', 'OptionGroup.Builder', ([], {}), '()\n', (2554, 2556), False, 'from slackviews.view import OptionGroup, PlainText, Option\n'), ((4388, 4409), 'slackviews.view.OptionGroup.Builder', 'OptionGroup.Builder', ([], {}), '()\n', (4407, 4409), False, 'from slackviews.view import OptionGroup, PlainText, Option\n'), ((555, 571), 'slackviews.view.Option.Builder', 'Option.Builder', ([], {}), '()\n', (569, 571), False, 'from slackviews.view import OptionGroup, PlainText, Option\n'), ((695, 711), 'slackviews.view.Option.Builder', 'Option.Builder', ([], {}), '()\n', (709, 711), False, 'from slackviews.view import OptionGroup, PlainText, Option\n'), ((2191, 2207), 'slackviews.view.Option.Builder', 'Option.Builder', ([], {}), '()\n', (2205, 2207), False, 'from slackviews.view import OptionGroup, PlainText, Option\n'), ((2329, 2345), 'slackviews.view.Option.Builder', 'Option.Builder', ([], {}), '()\n', (2343, 2345), False, 'from slackviews.view import OptionGroup, PlainText, Option\n')]
# This script converts excel files to pdf files # Import Module from win32com import client # Open Microsoft Excel excel = client.Dispatch("Excel.Application") excel_path = input("Enter the path of the excel file completely: ") pdf_path = input( "Enter the path of the folder where you want pdf file to be present: ") pdf_name = input("Enter the name by which pdf file should be saved: ") # Read Excel File sheets = excel.Workbooks.Open(excel_path) work_sheets = sheets.Worksheets[0] # Convert into PDF File work_sheets.ExportAsFixedFormat(0, pdf_path+'\ '+pdf_name+".pdf")
[ "win32com.client.Dispatch" ]
[((125, 161), 'win32com.client.Dispatch', 'client.Dispatch', (['"""Excel.Application"""'], {}), "('Excel.Application')\n", (140, 161), False, 'from win32com import client\n')]
from math import sin, cos, sqrt class Vector(): def __init__(self, x, y, z): if str in [type(x), type(y), type(z)]: print('\n', x,y,z) raise ValueError('Can only be numerical values') self.x = x self.y = y self.z = z self.texture = None self.id = None def __add__(self, other): return Vector(self.x + other.x, self.y + other.y, self.z + other.z) def __sub__(self, other): return Vector(self.x - other.x, self.y - other.y, self.z - other.z) def add(self, other): self.x += other.x self.y += other.y self.z += other.z def div(self, other): self.x /= other self.y /= other self.z /= other def mult(self, other): self.x /= other self.y /= other self.z /= other def get_xy(self): return (int(self.x), int(self.y)) def get_xy_center(self, size): return (int(self.x + size[0]/2), int(self.y + size[1]/2)) def rotate_x(self, a): self.x = (1 * self.x) + (0 * self.y) + (0 * self.z) self.y = (0 * self.x) + (cos(a) * self.y) + (-sin(a) * self.z) self.z = (0 * self.x) + (sin(a) * self.y) + (cos(a) * self.z) def rotate_y(self, a): self.x = (cos(a) * self.x) + (0 * self.y) + (sin(a) * self.z) self.y = (0 * self.x) + (1 * self.y) + (0 * self.z) self.z = (-sin(a) * self.x) + (0 * self.y) + (cos(a) * self.z) def rotate_z(self, a): self.x = (cos(a) * self.x) + (-sin(a) * self.y) + (0 * self.z) self.y = (sin(a) * self.x) + (cos(a) * self.y) + (0 * self.z) self.z = (0 * self.x) + (0 * self.y) + (1 * self.z)
[ "math.cos", "math.sin" ]
[((1277, 1283), 'math.cos', 'cos', (['a'], {}), '(a)\n', (1280, 1283), False, 'from math import sin, cos, sqrt\n'), ((1378, 1384), 'math.sin', 'sin', (['a'], {}), '(a)\n', (1381, 1384), False, 'from math import sin, cos, sqrt\n'), ((1511, 1517), 'math.cos', 'cos', (['a'], {}), '(a)\n', (1514, 1517), False, 'from math import sin, cos, sqrt\n'), ((1185, 1191), 'math.cos', 'cos', (['a'], {}), '(a)\n', (1188, 1191), False, 'from math import sin, cos, sqrt\n'), ((1206, 1212), 'math.sin', 'sin', (['a'], {}), '(a)\n', (1209, 1212), False, 'from math import sin, cos, sqrt\n'), ((1257, 1263), 'math.sin', 'sin', (['a'], {}), '(a)\n', (1260, 1263), False, 'from math import sin, cos, sqrt\n'), ((1343, 1349), 'math.cos', 'cos', (['a'], {}), '(a)\n', (1346, 1349), False, 'from math import sin, cos, sqrt\n'), ((1577, 1583), 'math.cos', 'cos', (['a'], {}), '(a)\n', (1580, 1583), False, 'from math import sin, cos, sqrt\n'), ((1649, 1655), 'math.sin', 'sin', (['a'], {}), '(a)\n', (1652, 1655), False, 'from math import sin, cos, sqrt\n'), ((1669, 1675), 'math.cos', 'cos', (['a'], {}), '(a)\n', (1672, 1675), False, 'from math import sin, cos, sqrt\n'), ((1476, 1482), 'math.sin', 'sin', (['a'], {}), '(a)\n', (1479, 1482), False, 'from math import sin, cos, sqrt\n'), ((1598, 1604), 'math.sin', 'sin', (['a'], {}), '(a)\n', (1601, 1604), False, 'from math import sin, cos, sqrt\n')]
import os import pytest from loguru import logger @pytest.mark.skipif(os.name == "nt", reason="Windows can't delete file in use") def test_file_deleted_before_write_without_delay(tmpdir): file = tmpdir.join("test.log") logger.add(str(file), format="{message}", watch=True, delay=False) os.remove(str(file)) logger.info("Test") assert file.read() == "Test\n" @pytest.mark.skipif(os.name == "nt", reason="Windows can't delete file in use") def test_file_deleted_before_write_with_delay(tmpdir): file = tmpdir.join("test.log") logger.add(str(file), format="{message}", watch=True, delay=True) logger.info("Test 1") os.remove(str(file)) logger.info("Test 2") assert file.read() == "Test 2\n" @pytest.mark.skipif(os.name == "nt", reason="Windows can't delete file in use") def test_file_path_containing_placeholder(tmpdir): logger.add(str(tmpdir.join("test_{time}.log")), format="{message}", watch=True) assert len(tmpdir.listdir()) == 1 filepath = tmpdir.listdir()[0] os.remove(str(filepath)) logger.info("Test") assert len(tmpdir.listdir()) == 1 assert filepath.read() == "Test\n" @pytest.mark.skipif(os.name == "nt", reason="Windows can't delete file in use") def test_file_reopened_with_arguments(tmpdir): file = tmpdir.join("test.log") logger.add(str(file), format="{message}", watch=True, encoding="ascii", errors="replace") os.remove(str(file)) logger.info("é") assert file.read() == "?\n" @pytest.mark.skipif(os.name == "nt", reason="Windows can't delete file in use") def test_file_manually_changed(tmpdir): file = tmpdir.join("test.log") logger.add(str(file), format="{message}", watch=True, mode="w") os.remove(str(file)) file.write("Placeholder") logger.info("Test") assert file.read() == "Test\n" @pytest.mark.skipif(os.name == "nt", reason="Windows can't delete file in use") def test_file_folder_deleted(tmpdir): file = tmpdir.join("foo/bar/test.log") logger.add(str(file), format="{message}", watch=True) os.remove(str(file)) os.rmdir(str(tmpdir.join("foo/bar"))) logger.info("Test") assert file.read() == "Test\n" @pytest.mark.skipif(os.name == "nt", reason="Windows can't delete file in use") def test_file_deleted_before_rotation(tmpdir): exists = None file = tmpdir.join("test.log") def rotate(_, __): nonlocal exists exists = file.exists() return False logger.add(str(file), format="{message}", watch=True, rotation=rotate) os.remove(str(file)) logger.info("Test") assert exists is True @pytest.mark.skipif(os.name == "nt", reason="Windows can't delete file in use") def test_file_deleted_before_compression(tmpdir): exists = None file = tmpdir.join("test.log") def compress(_): nonlocal exists exists = file.exists() return False logger.add(str(file), format="{message}", watch=True, compression=compress) os.remove(str(file)) logger.remove() assert exists is True @pytest.mark.skipif(os.name == "nt", reason="Windows can't delete file in use") def test_file_deleted_before_retention(tmpdir): exists = None file = tmpdir.join("test.log") def retain(_): nonlocal exists exists = file.exists() return False logger.add(str(file), format="{message}", watch=True, retention=retain) os.remove(str(file)) logger.remove() assert exists is True def test_file_correctly_reused_after_rotation(tmpdir): rotate = iter((False, True, False)) filepath = tmpdir.join("test.log") logger.add( str(filepath), format="{message}", mode="w", watch=True, rotation=lambda _, __: next(rotate), ) logger.info("Test 1") logger.info("Test 2") logger.info("Test 3") assert len(tmpdir.listdir()) == 2 rotated = next(f for f in tmpdir.listdir() if f != filepath) assert rotated.read() == "Test 1\n" assert filepath.read() == "Test 2\nTest 3\n" @pytest.mark.parametrize("delay", [True, False]) @pytest.mark.parametrize("compression", [None, lambda _: None]) def test_file_closed_without_being_logged(tmpdir, delay, compression): filepath = tmpdir.join("test.log") logger.add( str(filepath), format="{message}", watch=True, delay=delay, compression=compression, ) logger.remove() assert filepath.exists() is (False if delay else True)
[ "pytest.mark.parametrize", "loguru.logger.remove", "loguru.logger.info", "pytest.mark.skipif" ]
[((54, 132), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(os.name == 'nt')"], {'reason': '"""Windows can\'t delete file in use"""'}), '(os.name == \'nt\', reason="Windows can\'t delete file in use")\n', (72, 132), False, 'import pytest\n'), ((384, 462), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(os.name == 'nt')"], {'reason': '"""Windows can\'t delete file in use"""'}), '(os.name == \'nt\', reason="Windows can\'t delete file in use")\n', (402, 462), False, 'import pytest\n'), ((740, 818), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(os.name == 'nt')"], {'reason': '"""Windows can\'t delete file in use"""'}), '(os.name == \'nt\', reason="Windows can\'t delete file in use")\n', (758, 818), False, 'import pytest\n'), ((1160, 1238), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(os.name == 'nt')"], {'reason': '"""Windows can\'t delete file in use"""'}), '(os.name == \'nt\', reason="Windows can\'t delete file in use")\n', (1178, 1238), False, 'import pytest\n'), ((1496, 1574), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(os.name == 'nt')"], {'reason': '"""Windows can\'t delete file in use"""'}), '(os.name == \'nt\', reason="Windows can\'t delete file in use")\n', (1514, 1574), False, 'import pytest\n'), ((1835, 1913), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(os.name == 'nt')"], {'reason': '"""Windows can\'t delete file in use"""'}), '(os.name == \'nt\', reason="Windows can\'t delete file in use")\n', (1853, 1913), False, 'import pytest\n'), ((2182, 2260), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(os.name == 'nt')"], {'reason': '"""Windows can\'t delete file in use"""'}), '(os.name == \'nt\', reason="Windows can\'t delete file in use")\n', (2200, 2260), False, 'import pytest\n'), ((2615, 2693), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(os.name == 'nt')"], {'reason': '"""Windows can\'t delete file in use"""'}), '(os.name == \'nt\', reason="Windows can\'t delete file in use")\n', (2633, 2693), False, 'import pytest\n'), ((3050, 3128), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(os.name == 'nt')"], {'reason': '"""Windows can\'t delete file in use"""'}), '(os.name == \'nt\', reason="Windows can\'t delete file in use")\n', (3068, 3128), False, 'import pytest\n'), ((4039, 4086), 'pytest.mark.parametrize', 'pytest.mark.parametrize', (['"""delay"""', '[True, False]'], {}), "('delay', [True, False])\n", (4062, 4086), False, 'import pytest\n'), ((4088, 4150), 'pytest.mark.parametrize', 'pytest.mark.parametrize', (['"""compression"""', '[None, lambda _: None]'], {}), "('compression', [None, lambda _: None])\n", (4111, 4150), False, 'import pytest\n'), ((326, 345), 'loguru.logger.info', 'logger.info', (['"""Test"""'], {}), "('Test')\n", (337, 345), False, 'from loguru import logger\n'), ((627, 648), 'loguru.logger.info', 'logger.info', (['"""Test 1"""'], {}), "('Test 1')\n", (638, 648), False, 'from loguru import logger\n'), ((678, 699), 'loguru.logger.info', 'logger.info', (['"""Test 2"""'], {}), "('Test 2')\n", (689, 699), False, 'from loguru import logger\n'), ((1060, 1079), 'loguru.logger.info', 'logger.info', (['"""Test"""'], {}), "('Test')\n", (1071, 1079), False, 'from loguru import logger\n'), ((1444, 1460), 'loguru.logger.info', 'logger.info', (['"""é"""'], {}), "('é')\n", (1455, 1460), False, 'from loguru import logger\n'), ((1777, 1796), 'loguru.logger.info', 'logger.info', (['"""Test"""'], {}), "('Test')\n", (1788, 1796), False, 'from loguru import logger\n'), ((2124, 2143), 'loguru.logger.info', 'logger.info', (['"""Test"""'], {}), "('Test')\n", (2135, 2143), False, 'from loguru import logger\n'), ((2566, 2585), 'loguru.logger.info', 'logger.info', (['"""Test"""'], {}), "('Test')\n", (2577, 2585), False, 'from loguru import logger\n'), ((3005, 3020), 'loguru.logger.remove', 'logger.remove', ([], {}), '()\n', (3018, 3020), False, 'from loguru import logger\n'), ((3432, 3447), 'loguru.logger.remove', 'logger.remove', ([], {}), '()\n', (3445, 3447), False, 'from loguru import logger\n'), ((3770, 3791), 'loguru.logger.info', 'logger.info', (['"""Test 1"""'], {}), "('Test 1')\n", (3781, 3791), False, 'from loguru import logger\n'), ((3796, 3817), 'loguru.logger.info', 'logger.info', (['"""Test 2"""'], {}), "('Test 2')\n", (3807, 3817), False, 'from loguru import logger\n'), ((3822, 3843), 'loguru.logger.info', 'logger.info', (['"""Test 3"""'], {}), "('Test 3')\n", (3833, 3843), False, 'from loguru import logger\n'), ((4412, 4427), 'loguru.logger.remove', 'logger.remove', ([], {}), '()\n', (4425, 4427), False, 'from loguru import logger\n')]
# Author: <NAME> at 16/08/2021 <<EMAIL>> # Licence: MIT License # Copyright: <NAME> (2018) <<EMAIL>> from functools import partial import numpy as np from scipy import linalg from .utils import (readout_forward, _initialize_readout, _prepare_inputs_for_learning) from ..base.node import Node from ..base.types import global_dtype def _solve_ridge(XXT, YXT, ridge): return linalg.solve(XXT + ridge, YXT.T, assume_a="sym") def partial_backward(readout: Node, X_batch, Y_batch=None): transient = readout.transient X, Y = _prepare_inputs_for_learning(X_batch, Y_batch, transient=transient, bias=readout.input_bias, allow_reshape=True) xxt = X.T.dot(X) yxt = Y.T.dot(X) XXT = readout.get_buffer("XXT") YXT = readout.get_buffer("YXT") # This is not thread-safe, apparently, using Numpy memmap as buffers # ok for parallelization then with a lock (see ESN object) XXT += xxt YXT += yxt def backward(readout: Node, X=None, Y=None): ridge = readout.ridge XXT = readout.get_buffer("XXT") YXT = readout.get_buffer("YXT") input_dim = readout.input_dim if readout.input_bias: input_dim += 1 ridgeid = (ridge * np.eye(input_dim, dtype=global_dtype)) Wout_raw = _solve_ridge(XXT, YXT, ridgeid) if readout.input_bias: Wout, bias = Wout_raw[1:, :], Wout_raw[0, :][np.newaxis, :] readout.set_param("Wout", Wout) readout.set_param("bias", bias) else: readout.set_param("Wout", Wout_raw) def initialize(readout: Node, x=None, y=None, Wout_init=None): _initialize_readout(readout, x, y, bias=readout.input_bias, init_func=Wout_init) def initialize_buffers(readout): # create memmaped buffers for matrices X.X^T and Y.X^T pre-computed # in parallel for ridge regression # ! only memmap can be used ! Impossible to share Numpy arrays with # different processes in r/w mode otherwise (with proper locking) input_dim = readout.input_dim output_dim = readout.output_dim if readout.input_bias: input_dim += 1 readout.create_buffer("XXT", (input_dim, input_dim)) readout.create_buffer("YXT", (output_dim, input_dim)) class Ridge(Node): def __init__(self, output_dim=None, ridge=0.0, transient=0, Wout=None, input_bias=True, name=None): super(Ridge, self).__init__(params={"Wout": None, "bias": None}, hypers={"ridge": ridge, "transient": transient, "input_bias": input_bias}, forward=readout_forward, partial_backward=partial_backward, backward=backward, output_dim=output_dim, initializer=partial(initialize, Wout_init=Wout), buffers_initializer=initialize_buffers, name=name)
[ "numpy.eye", "functools.partial", "scipy.linalg.solve" ]
[((401, 449), 'scipy.linalg.solve', 'linalg.solve', (['(XXT + ridge)', 'YXT.T'], {'assume_a': '"""sym"""'}), "(XXT + ridge, YXT.T, assume_a='sym')\n", (413, 449), False, 'from scipy import linalg\n'), ((1328, 1365), 'numpy.eye', 'np.eye', (['input_dim'], {'dtype': 'global_dtype'}), '(input_dim, dtype=global_dtype)\n', (1334, 1365), True, 'import numpy as np\n'), ((3167, 3202), 'functools.partial', 'partial', (['initialize'], {'Wout_init': 'Wout'}), '(initialize, Wout_init=Wout)\n', (3174, 3202), False, 'from functools import partial\n')]
""" Day 6: Universal Orbit Map """ from utils import get_lines def distance(orbit_map, item): if item == 'COM': return 0 else: return 1 + distance(orbit_map, orbit_map[item]) def orbit_path(orbit_map, item1): if item1 == 'COM': return [] else: return orbit_path(orbit_map, orbit_map[item1]) + [item1] def puzzle1(): orbits = get_lines('day6') orbits_map = {} objects = set() for line in orbits: orbitee, orbiter = line.split(')') objects.add(orbiter) orbits_map[orbiter] = orbitee count = 0 for item in objects: count += distance(orbits_map, item) print(count) def puzzle2(): orbits = get_lines('day6') orbits_map = {} objects = set() for line in orbits: orbitee, orbiter = line.split(')') objects.add(orbiter) orbits_map[orbiter] = orbitee you_path = orbit_path(orbits_map, 'YOU') san_path = orbit_path(orbits_map, 'SAN') # determine length of common prefix for idx, (i1, i2) in enumerate(zip(you_path, san_path)): if i1 != i2: common_path_len = idx break else: raise RuntimeError("No common path") # Don't care about the starting node you_path.pop() san_path.pop() print(len(you_path) + len(san_path) - 2 * common_path_len) if __name__ == '__main__': puzzle1() puzzle2()
[ "utils.get_lines" ]
[((384, 401), 'utils.get_lines', 'get_lines', (['"""day6"""'], {}), "('day6')\n", (393, 401), False, 'from utils import get_lines\n'), ((708, 725), 'utils.get_lines', 'get_lines', (['"""day6"""'], {}), "('day6')\n", (717, 725), False, 'from utils import get_lines\n')]
import ee from zipfile import ZipFile from io import BytesIO import os import requests class S2indexes: def __init__(self, area, dir, date_from, date_end, scope): """ given an area defined by a geoJSON, it returns rasters of remote sensing indexes at the specified date at granularuity defined by the scope parameter Args: area: geoJSON, use squaretogeojson to generate dir: directory where to save the easter date_from, date_end: nightlights for what point in time? scope (str): country or urban? """ self.area = area self.dir = dir self.date_from = date_from self.date_end = date_end self.scope = scope self.files = None def download(self): print('INFO: downloading rms indexes for area of interest ...') if os.path.exists(self.dir + str(self.area["coordinates"]) + "NDVI_max.tif") \ and os.path.exists(self.dir + str(self.area["coordinates"]) + "NDBI_max.tif") \ and os.path.exists(self.dir + str(self.area["coordinates"]) + "NDWI_max.tif"): self.files = [str(self.area["coordinates"]) + "NDVI_max.tif", str(self.area["coordinates"]) + "NDBI_max.tif", str(self.area["coordinates"]) + "NDWI_max.tif"] print('INFO: NDs data for {} already downloaded'.format(self.area["coordinates"])) else: ee.Initialize() GREEN = 'B3' RED = 'B4' NIR = 'B8' SWIR = 'B11' sentinel = ee.ImageCollection('COPERNICUS/S2') \ .filterDate(ee.Date(self.date_from), ee.Date(self.date_end)) \ .filterBounds(self.area) \ .select([GREEN, RED, NIR, SWIR]) \ .filterMetadata('CLOUDY_PIXEL_PERCENTAGE', 'less_than', 70) def addIndices(image): ndvi = image.normalizedDifference([NIR, RED]) ndbi = image.normalizedDifference([SWIR, NIR]) ndwi = image.normalizedDifference([GREEN, NIR]) return image.addBands(ndvi.rename('NDVI')) \ .addBands(ndbi.rename('NDBI')) \ .addBands(ndwi.rename('NDWI')) img = sentinel.map(addIndices).select(['NDVI', 'NDBI', 'NDWI']).reduce("max").clip(self.area) # download if self.scope == 'urban': print('INFO: NDs scope > urban') scale = 100 else: print('INFO: NDs scope -> country') scale = 5000 for b in ['NDVI_max', 'NDBI_max', 'NDWI_max']: url = img.select(b).getDownloadUrl({'crs': 'EPSG:4326', 'region': self.area, 'scale': scale}) r = requests.get(url) z = ZipFile(BytesIO(r.content)) z.extract(z.namelist()[1], self.dir) os.rename(self.dir + z.namelist()[1], self.dir + str(self.area["coordinates"]) + b+'.tif') self.files = [str(self.area["coordinates"]) + "NDVI_max.tif", str(self.area["coordinates"]) + "NDBI_max.tif", str(self.area["coordinates"]) + "NDWI_max.tif"] def rms_values(self, longitudes, latitudes): """ Given a dataset with latitude and longitude columns, it returns the nightlight value at each point. Args: longitudes: list of longitudes latitudes: list of latitudes Returns: Series """ import rasterio try: NDVI = rasterio.open(self.dir + self.files[0]) NDBI = rasterio.open(self.dir + self.files[1]) NDWI = rasterio.open(self.dir + self.files[2]) except MemoryError: print('Remote sensing indexes rasters too big!') raise veg, build, wat = [], [], [] for lon, lat in zip(longitudes, latitudes): i, j = NDVI.index(lon, lat) veg.append(NDVI.read(1)[i, j]) build.append(NDBI.read(1)[i, j]) wat.append(NDWI.read(1)[i, j]) return veg, build, wat
[ "rasterio.open", "io.BytesIO", "ee.Date", "requests.get", "ee.ImageCollection", "ee.Initialize" ]
[((1419, 1434), 'ee.Initialize', 'ee.Initialize', ([], {}), '()\n', (1432, 1434), False, 'import ee\n'), ((3548, 3587), 'rasterio.open', 'rasterio.open', (['(self.dir + self.files[0])'], {}), '(self.dir + self.files[0])\n', (3561, 3587), False, 'import rasterio\n'), ((3607, 3646), 'rasterio.open', 'rasterio.open', (['(self.dir + self.files[1])'], {}), '(self.dir + self.files[1])\n', (3620, 3646), False, 'import rasterio\n'), ((3666, 3705), 'rasterio.open', 'rasterio.open', (['(self.dir + self.files[2])'], {}), '(self.dir + self.files[2])\n', (3679, 3705), False, 'import rasterio\n'), ((2766, 2783), 'requests.get', 'requests.get', (['url'], {}), '(url)\n', (2778, 2783), False, 'import requests\n'), ((2812, 2830), 'io.BytesIO', 'BytesIO', (['r.content'], {}), '(r.content)\n', (2819, 2830), False, 'from io import BytesIO\n'), ((1620, 1643), 'ee.Date', 'ee.Date', (['self.date_from'], {}), '(self.date_from)\n', (1627, 1643), False, 'import ee\n'), ((1645, 1667), 'ee.Date', 'ee.Date', (['self.date_end'], {}), '(self.date_end)\n', (1652, 1667), False, 'import ee\n'), ((1554, 1589), 'ee.ImageCollection', 'ee.ImageCollection', (['"""COPERNICUS/S2"""'], {}), "('COPERNICUS/S2')\n", (1572, 1589), False, 'import ee\n')]
import argparse # This program takes as Input the gene reference folder ############ INPUT OF VARIABLES ################### parser = argparse.ArgumentParser(description='Input program') parser.add_argument('namefolder', type=str, help='GeneReference folder') folder = parser.parse_args().namefolder #################################################### 3UTR ############################################################ result_name,line0,line1,line2,line4,line5 = [],[],[],[],[],[] data = open(folder+"/3UTR.bed", "r") for line in data.readlines(): complete_name = (line.split('\t')[3]) partial_name = complete_name.split('_utr3')[0] result_name.append(partial_name) line0.append(line.split('\t')[0]) line1.append(line.split('\t')[1]) line2.append(line.split('\t')[2]) line4.append(line.split('\t')[4]) line5.append(line.split('\t')[5]) data.close() data = open(folder+"/3UTR.bed", "w") for x in range(len(line0)): data.write(line0[x] + '\t' + line1[x] + '\t' +line2[x] + '\t' + result_name[x] + '\t' + line4[x] + '\t' + line5[x]) data.close() ##################################################### 5UTR ############################################################ result_name,line0,line1,line2,line4, line5 = [],[],[],[],[],[] data = open(folder+"/5UTR.bed", "r") for line in data.readlines(): complete_name = (line.split('\t')[3]) partial_name = complete_name.split('_utr5')[0] result_name.append(partial_name) line0.append(line.split('\t')[0]) line1.append(line.split('\t')[1]) line2.append(line.split('\t')[2]) line4.append(line.split('\t')[4]) line5.append(line.split('\t')[5]) data.close() data = open(folder+"/5UTR.bed", "w") for x in range(len(line0)): data.write(line0[x] + '\t' + line1[x] + '\t' +line2[x] + '\t' + result_name[x] + '\t' + line4[x] + '\t' + line5[x]) data.close() ##################################################### CDE ############################################################ result_name,line0,line1,line2,line4, line5 = [],[],[],[],[],[] data = open(folder+"/CDE.bed", "r") for line in data.readlines(): complete_name = (line.split('\t')[3]) partial_name = complete_name.split('_cds')[0] result_name.append(partial_name) line0.append(line.split('\t')[0]) line1.append(line.split('\t')[1]) line2.append(line.split('\t')[2]) line4.append(line.split('\t')[4]) line5.append(line.split('\t')[5]) data.close() data = open(folder+"/CDE.bed", "w") for x in range(len(line0)): data.write(line0[x] + '\t' + line1[x] + '\t' +line2[x] + '\t' + result_name[x] + '\t' + line4[x] + '\t' + line5[x]) data.close()
[ "argparse.ArgumentParser" ]
[((136, 188), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {'description': '"""Input program"""'}), "(description='Input program')\n", (159, 188), False, 'import argparse\n')]
""" Model architecture of Convolutional Autoencoder for converting grayscale images to RGB images. """ import torch import torch.nn as nn import torch.nn.functional as functional class ConvAutoencoder(nn.Module): def __init__(self, batch_size: int, ip_image_dims: int = 32, filter_count: tuple = (16, 32), kernel_dims: int = 3): """ The function requires batch size of the data for initializing the weights of the model. :param batch_size: Batch_size of the train/val data. :param ip_image_dims: Optional, image dims of the input image. :param filter_count: The channel dims of the filters. :param kernel_dims: The dims of the filters used to perform convolution operations. """ super(ConvAutoencoder, self).__init__() # Parameters. self.ip_image_dims = ip_image_dims self.batch_size = batch_size self.filter_count = filter_count self.kernel_dims = kernel_dims # Convolution transformations. self.conv1 = nn.Conv2d(1, filter_count[0], kernel_dims, padding=1) # (32-3+2/1)+1=32>>max_pool>>16 self.conv2 = nn.Conv2d(filter_count[0], filter_count[1], kernel_dims) # (16-3/1)+1=14>>max_pool>>7 conv_output_dims = self.get_conv_output_dims(self.ip_image_dims, len(filter_count), 1, pool_dims=2) # Linear transformations. self.linear1 = nn.Linear(32*conv_output_dims**2, 512) self.linear2 = nn.Linear(512, 3072) def get_conv_output_dims(self, ip_dims, layer_count, padding, pool_dims): """ Computes the resulting dims of convolution and pool transformations :param ip_dims: The dims of the input image :param layer_count: Number of conv layers. :param padding: If padding is used in the first layer. :param pool_dims: The dims of the max_pool transformation. :return: Integer value dims of the resulting square image. """ if not layer_count: return (ip_dims-self.kernel_dims+2+1)/2 return self.get_conv_output_dims((ip_dims-self.kernel_dims+2*padding+1)/pool_dims, layer_count-1, 0, pool_dims) def forward(self, x): """ The forward function for the the model. :param x: :return: """ # Encoder Phase p1 = functional.max_pool2d(self.conv1(x), (2, 2)) p2 = functional.max_pool2d(self.conv2(p1), (2, 2)) # Decoder Phase f1 = functional.relu(self.linear1(p2.view(self.batch_size, -1))) f2 = torch.sigmoid(self.linear2(f1)).view(-1, 3, self.ip_image_dims, self.ip_image_dims) return f2
[ "torch.nn.Linear", "torch.nn.Conv2d" ]
[((1032, 1085), 'torch.nn.Conv2d', 'nn.Conv2d', (['(1)', 'filter_count[0]', 'kernel_dims'], {'padding': '(1)'}), '(1, filter_count[0], kernel_dims, padding=1)\n', (1041, 1085), True, 'import torch.nn as nn\n'), ((1140, 1196), 'torch.nn.Conv2d', 'nn.Conv2d', (['filter_count[0]', 'filter_count[1]', 'kernel_dims'], {}), '(filter_count[0], filter_count[1], kernel_dims)\n', (1149, 1196), True, 'import torch.nn as nn\n'), ((1392, 1434), 'torch.nn.Linear', 'nn.Linear', (['(32 * conv_output_dims ** 2)', '(512)'], {}), '(32 * conv_output_dims ** 2, 512)\n', (1401, 1434), True, 'import torch.nn as nn\n'), ((1454, 1474), 'torch.nn.Linear', 'nn.Linear', (['(512)', '(3072)'], {}), '(512, 3072)\n', (1463, 1474), True, 'import torch.nn as nn\n')]
import pandas as pd import numpy as np from numpy import corrcoef import matplotlib.pyplot as plt from sklearn.feature_selection import chi2 from sklearn.feature_selection import f_classif from math import * plt.style.use('ggplot') fig = plt.figure() COUNTER = 1 #Return the category dictionary,categorical variables list and continuous list for every column in dataframe. #The categories are assigned as "target(type)_feature(type)" def get_category(df,target_name,categorical_name,columns_name): cat_dict = {} fin_cat_dict = {} catg_catg = [] cont_cont = [] catg_cont = [] cont_catg = [] for col in columns_name: if len(df[col].unique())<=2: cat_dict[col] = "categorical" elif col in categorical_name: cat_dict[col] = "categorical" else: cat_dict[col] = "continous" for col in cat_dict: if cat_dict[col]=="categorical" and cat_dict[target_name]=="categorical": fin_cat_dict[col] = "catg_catg" catg_catg.append(col) elif cat_dict[col]=="continous" and cat_dict[target_name]=="continous": fin_cat_dict[col] = "cont_cont" cont_cont.append(col) elif cat_dict[col]=="continous" and cat_dict[target_name]=="categorical": fin_cat_dict[col] = "catg_cont" catg_cont.append(col) else: fin_cat_dict[col] = "cont_catg" cont_catg.append(col) return fin_cat_dict,catg_catg,cont_cont,catg_cont,cont_catg #Return True if the categorical_name are present in the orignal dataframe columns. def is_present(columns_name,categorical_name): ls = [i for i in categorical_name if i not in columns_name] if len(ls)==0: return True else: raise ValueError(str(ls)+" is not present as a column in the data,Please check the name") #Function returns list of columns with non-numeric data. def clean_str_list(df,lst): rem=[] for i in lst: res = any(isinstance(n,str) for n in df[i]) if res == True: rem.append(i) for j in rem: lst.remove(j) return lst #Returns the Pearson Correlation Coefficient for the continous data columns. def pearson_correlation_cont_cont(x,y): return corrcoef(x,y) # This function is for the bivariate analysis between two continous varibale.Plots scatter plots and shows the coeff for the data. def bivariate_analysis_cont_cont(cont_cont_list,df,target_name,sub_len,COUNTER,PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE): clean_cont_cont_list = clean_str_list(df,cont_cont_list) if len(clean_str_list(df,[target_name])) == 0 and len(cont_cont_list)>0: raise ValueError("You seem to have a target variable with string values.") clean_df = df.dropna() for col in clean_cont_cont_list: summary = clean_df[col].describe() count = summary[0] mean = summary[1] std = summary[2] plt.subplot(PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE,COUNTER) plt.title("mean "+str(np.float32(mean))+" std "+str(np.float32(std)),fontsize=10) x = clean_df[col] y = np.float32(clean_df[target_name]) corr = pearson_correlation_cont_cont(x,y) plt.xlabel(col+"\n count "+str(count)+"\n Corr: "+str(np.float32(corr[0][1])), fontsize=10) plt.ylabel(target_name, fontsize=10) plt.scatter(x,y) print (col+" vs "+target_name+" plotted....") COUNTER +=1 return plt,COUNTER #Chi test is used to see association between catgorical vs categorical variables. #Lower Pvalue are significant they should be < 0.05 #chi value = X^2 = summation [(observed-expected)^2/expected] # The distribution of the statistic X2 is chi-square with (r-1)(c-1) degrees of freedom, where r represents the number of rows in the two-way table and c represents the number of columns. The distribution is denoted (df), where df is the number of degrees of freedom. #pvalue = p(df>=x^2) def evaluate_chi(x,y): chi,p_val = chi2(x,y) return chi,p_val def bivariate_analysis_catg_catg(catg_catg_list,df,target_name,sub_len,COUNTER,PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE,bin_size="auto"): clean_catg_catg_list = clean_str_list(df,catg_catg_list) clean_df = df.dropna() target_classes =df[target_name].unique() label = [str(i) for i in target_classes] c = 0 for col in clean_catg_catg_list: summary = clean_df[col].describe() binwidth = 0.7 if bin_size == 'auto': bins_size =np.arange(min(clean_df[col].tolist()), max(clean_df[col].tolist()) + binwidth, binwidth) else: bins_size = bin_size count = summary[0] mean = summary[1] std = summary[2] plt.subplot(PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE,COUNTER) plt.title("mean "+str(np.float32(mean))+" std "+str(np.float32(std)),fontsize=10) x = [np.array(clean_df[clean_df[target_name]==i][col]) for i in target_classes] y = clean_df[target_name] chi,p_val = evaluate_chi(np.array(clean_df[col]).reshape(-1,1),y) plt.xlabel(col+"\n chi: "+str(np.float32(chi[0]))+" / p_val: "+str(p_val[0]), fontsize=10) plt.ylabel("Frequency", fontsize=10) plt.hist(x,bins=bins_size,stacked=True,label = label) plt.legend(prop={'size': 10}) print (col+" vs "+target_name+" plotted....") COUNTER +=1 c+=1 return plt,COUNTER # Analysis of variance (ANOVA) is a collection of statistical models used to analyze the differences among group means and their associated procedures (such as "variation" among and between groups) # In its simplest form, ANOVA provides a statistical test of whether or not the means of several groups are equal, and therefore generalizes the t-test to more than two groups. ANOVAs are useful for comparing (testing) three or more means (groups or variables) for statistical significance. # A one-way ANOVA is used to compare the means of more than two independent groups. A one-way ANOVA comparing just two groups will give you the same results as the independent t test. def evaluate_anova(x,y): F_value,pvalue = f_classif(x,y) return F_value,pvalue # In descriptive statistics, a box plot or boxplot is a convenient way of graphically depicting groups of numerical data through their quartiles. Box plots may also have lines extending vertically from the boxes (whiskers) indicating variability outside the upper and lower quartiles, hence the terms box-and-whisker plot and box-and-whisker diagram. # Quartile: In descriptive statistics, the quartiles of a ranked set of data values are the three points that divide the data set into four equal groups, each group comprising a quarter of the data def bivariate_analysis_cont_catg(cont_catg_list,df,target_name,sub_len,COUNTER,PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE): clean_cont_catg_list = clean_str_list(df,cont_catg_list) if len(clean_str_list(df,[target_name])) == 0 and len(cont_catg_list)>0: raise ValueError("You seem to have a target variable with string values.") clean_df = df.dropna() for col in clean_cont_catg_list: col_classes =clean_df[col].unique() summary = clean_df[col].describe() count = summary[0] mean = summary[1] std = summary[2] plt.subplot(PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE,COUNTER) plt.title("mean "+str(np.float32(mean))+" std "+str(np.float32(std)),fontsize=10) x = [np.array(clean_df[clean_df[col]==i][target_name]) for i in col_classes] y = np.float32(clean_df[target_name]) f_value,p_val = evaluate_anova(np.array(clean_df[col]).reshape(-1,1),y) plt.xlabel(col+"\n f_value: "+str(np.float32(f_value[0]))+" / p_val: "+str(p_val[0]), fontsize=10) plt.ylabel(target_name, fontsize=10) plt.boxplot(x) print (col+" vs "+target_name+" plotted....") COUNTER +=1 return plt,COUNTER # This function is for the bivariate analysis between categorical vs continuous varibale.Plots box plots. def bivariate_analysis_catg_cont(catg_cont_list,df,target_name,sub_len,COUNTER,PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE): # No need to remove string varible as they are handled by chi2 function of sklearn. # clean_catg_cont_list = clean_str_list(df,catg_cont_list) clean_catg_cont_list = catg_cont_list clean_df = df.dropna() for col in clean_catg_cont_list: col_classes =df[target_name].unique() summary = clean_df[col].describe() count = summary[0] mean = summary[1] std = summary[2] plt.subplot(PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE,COUNTER) plt.title("mean "+str(np.float32(mean))+" std "+str(np.float32(std)),fontsize=10) x = [np.array(clean_df[clean_df[target_name]==i][col]) for i in col_classes] y = clean_df[target_name] f_value,p_val = evaluate_anova(np.array(clean_df[col]).reshape(-1,1),y) plt.xlabel(target_name+"\n f_value: "+str(np.float32(f_value[0]))+" / p_val: "+str(p_val[0]), fontsize=10) plt.ylabel(col, fontsize=10) plt.boxplot(x) print (col+" vs "+target_name+" plotted....") COUNTER +=1 return plt,COUNTER #returns the total number of subplots to be made. def total_subplots(df,lst): clean_df = df.dropna() total = [len(clean_str_list(clean_df,i)) for i in lst] return sum(total) # This function returns new categotical list after removing drop values if in case they are written in both drop and categorical_name list. def remove_drop_from_catglist(drop,categorical_name): for col in drop: if col in categorical_name: categorical_name.remove(col) return categorical_name def plot(data_input,target_name="",categorical_name=[],drop=[],PLOT_COLUMNS_SIZE = 4,bin_size="auto",wspace=0.5,hspace=0.8): """ This is the main function to give Bivariate analysis between the target variable and the input features. Parameters ----------- data_input : Dataframe This is the input Dataframe with all data. target_name : String The name of the target column. categorical_name : list Names of all categorical variable columns with more than 2 classes, to distinguish with the continuous variables. drop : list Names of columns to be dropped. PLOT_COLUMNS_SIZE : int Number of plots to display vertically in the display window.The row size is adjusted accordingly. bin_size : int ;default="auto" Number of bins for the histogram displayed in the categorical vs categorical category. wspace : int ;default = 0.5 Horizontal padding between subplot on the display window. hspace : int ;default = 0.5 Vertical padding between subplot on the display window. ----------- """ if type(data_input).__name__ == "DataFrame" : # Column names columns_name = data_input.columns.values #To drop user specified columns. if is_present(columns_name,drop): data_input = data_input.drop(drop,axis=1) columns_name = data_input.columns.values categorical_name = remove_drop_from_catglist(drop,categorical_name) else: raise ValueError("Couldn't find it in the input Dataframe!") if target_name == "": raise ValueError("Please mention a target variable") #Checks if the categorical_name are present in the orignal dataframe columns. categorical_is_present = is_present(columns_name,categorical_name) target_is_present = is_present(columns_name,[target_name]) if categorical_is_present: fin_cat_dict,catg_catg_list,cont_cont_list,catg_cont_list,cont_catg_list = get_category(data_input,target_name,categorical_name,columns_name) #Subplot(Total number of graphs) total = total_subplots(data_input,[cont_cont_list,catg_catg_list,catg_cont_list,cont_catg_list]) if total < PLOT_COLUMNS_SIZE: total = PLOT_COLUMNS_SIZE PLOT_ROW_SIZE = ceil(float(total)/PLOT_COLUMNS_SIZE) #Call various functions plot,count = bivariate_analysis_cont_cont(cont_cont_list,data_input,target_name,total,COUNTER,PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE) plot,count = bivariate_analysis_catg_catg(catg_catg_list,data_input,target_name,total,count,PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE,bin_size=bin_size) plot,count = bivariate_analysis_cont_catg(cont_catg_list,data_input,target_name,total,count,PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE) plot,count = bivariate_analysis_catg_cont(catg_cont_list,data_input,target_name,total,count,PLOT_ROW_SIZE,PLOT_COLUMNS_SIZE) fig.subplots_adjust(bottom=0.08,left = 0.05,right=0.97,top=0.93,wspace = wspace,hspace = hspace) plot.show() else: raise ValueError("Make sure input data is a Dataframe.")
[ "matplotlib.pyplot.boxplot", "matplotlib.pyplot.hist", "numpy.corrcoef", "matplotlib.pyplot.ylabel", "sklearn.feature_selection.f_classif", "matplotlib.pyplot.style.use", "numpy.array", "matplotlib.pyplot.figure", "matplotlib.pyplot.scatter", "sklearn.feature_selection.chi2", "matplotlib.pyplot....
[((208, 231), 'matplotlib.pyplot.style.use', 'plt.style.use', (['"""ggplot"""'], {}), "('ggplot')\n", (221, 231), True, 'import matplotlib.pyplot as plt\n'), ((239, 251), 'matplotlib.pyplot.figure', 'plt.figure', ([], {}), '()\n', (249, 251), True, 'import matplotlib.pyplot as plt\n'), ((2265, 2279), 'numpy.corrcoef', 'corrcoef', (['x', 'y'], {}), '(x, y)\n', (2273, 2279), False, 'from numpy import corrcoef\n'), ((4005, 4015), 'sklearn.feature_selection.chi2', 'chi2', (['x', 'y'], {}), '(x, y)\n', (4009, 4015), False, 'from sklearn.feature_selection import chi2\n'), ((6159, 6174), 'sklearn.feature_selection.f_classif', 'f_classif', (['x', 'y'], {}), '(x, y)\n', (6168, 6174), False, 'from sklearn.feature_selection import f_classif\n'), ((2942, 2996), 'matplotlib.pyplot.subplot', 'plt.subplot', (['PLOT_ROW_SIZE', 'PLOT_COLUMNS_SIZE', 'COUNTER'], {}), '(PLOT_ROW_SIZE, PLOT_COLUMNS_SIZE, COUNTER)\n', (2953, 2996), True, 'import matplotlib.pyplot as plt\n'), ((3124, 3157), 'numpy.float32', 'np.float32', (['clean_df[target_name]'], {}), '(clean_df[target_name])\n', (3134, 3157), True, 'import numpy as np\n'), ((3317, 3353), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['target_name'], {'fontsize': '(10)'}), '(target_name, fontsize=10)\n', (3327, 3353), True, 'import matplotlib.pyplot as plt\n'), ((3362, 3379), 'matplotlib.pyplot.scatter', 'plt.scatter', (['x', 'y'], {}), '(x, y)\n', (3373, 3379), True, 'import matplotlib.pyplot as plt\n'), ((4739, 4793), 'matplotlib.pyplot.subplot', 'plt.subplot', (['PLOT_ROW_SIZE', 'PLOT_COLUMNS_SIZE', 'COUNTER'], {}), '(PLOT_ROW_SIZE, PLOT_COLUMNS_SIZE, COUNTER)\n', (4750, 4793), True, 'import matplotlib.pyplot as plt\n'), ((5188, 5224), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Frequency"""'], {'fontsize': '(10)'}), "('Frequency', fontsize=10)\n", (5198, 5224), True, 'import matplotlib.pyplot as plt\n'), ((5233, 5287), 'matplotlib.pyplot.hist', 'plt.hist', (['x'], {'bins': 'bins_size', 'stacked': '(True)', 'label': 'label'}), '(x, bins=bins_size, stacked=True, label=label)\n', (5241, 5287), True, 'import matplotlib.pyplot as plt\n'), ((5295, 5324), 'matplotlib.pyplot.legend', 'plt.legend', ([], {'prop': "{'size': 10}"}), "(prop={'size': 10})\n", (5305, 5324), True, 'import matplotlib.pyplot as plt\n'), ((7327, 7381), 'matplotlib.pyplot.subplot', 'plt.subplot', (['PLOT_ROW_SIZE', 'PLOT_COLUMNS_SIZE', 'COUNTER'], {}), '(PLOT_ROW_SIZE, PLOT_COLUMNS_SIZE, COUNTER)\n', (7338, 7381), True, 'import matplotlib.pyplot as plt\n'), ((7568, 7601), 'numpy.float32', 'np.float32', (['clean_df[target_name]'], {}), '(clean_df[target_name])\n', (7578, 7601), True, 'import numpy as np\n'), ((7799, 7835), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['target_name'], {'fontsize': '(10)'}), '(target_name, fontsize=10)\n', (7809, 7835), True, 'import matplotlib.pyplot as plt\n'), ((7844, 7858), 'matplotlib.pyplot.boxplot', 'plt.boxplot', (['x'], {}), '(x)\n', (7855, 7858), True, 'import matplotlib.pyplot as plt\n'), ((8617, 8671), 'matplotlib.pyplot.subplot', 'plt.subplot', (['PLOT_ROW_SIZE', 'PLOT_COLUMNS_SIZE', 'COUNTER'], {}), '(PLOT_ROW_SIZE, PLOT_COLUMNS_SIZE, COUNTER)\n', (8628, 8671), True, 'import matplotlib.pyplot as plt\n'), ((9085, 9113), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['col'], {'fontsize': '(10)'}), '(col, fontsize=10)\n', (9095, 9113), True, 'import matplotlib.pyplot as plt\n'), ((9122, 9136), 'matplotlib.pyplot.boxplot', 'plt.boxplot', (['x'], {}), '(x)\n', (9133, 9136), True, 'import matplotlib.pyplot as plt\n'), ((4896, 4947), 'numpy.array', 'np.array', (['clean_df[clean_df[target_name] == i][col]'], {}), '(clean_df[clean_df[target_name] == i][col])\n', (4904, 4947), True, 'import numpy as np\n'), ((7484, 7535), 'numpy.array', 'np.array', (['clean_df[clean_df[col] == i][target_name]'], {}), '(clean_df[clean_df[col] == i][target_name])\n', (7492, 7535), True, 'import numpy as np\n'), ((8774, 8825), 'numpy.array', 'np.array', (['clean_df[clean_df[target_name] == i][col]'], {}), '(clean_df[clean_df[target_name] == i][col])\n', (8782, 8825), True, 'import numpy as np\n'), ((3055, 3070), 'numpy.float32', 'np.float32', (['std'], {}), '(std)\n', (3065, 3070), True, 'import numpy as np\n'), ((3271, 3293), 'numpy.float32', 'np.float32', (['corr[0][1]'], {}), '(corr[0][1])\n', (3281, 3293), True, 'import numpy as np\n'), ((4852, 4867), 'numpy.float32', 'np.float32', (['std'], {}), '(std)\n', (4862, 4867), True, 'import numpy as np\n'), ((5039, 5062), 'numpy.array', 'np.array', (['clean_df[col]'], {}), '(clean_df[col])\n', (5047, 5062), True, 'import numpy as np\n'), ((7440, 7455), 'numpy.float32', 'np.float32', (['std'], {}), '(std)\n', (7450, 7455), True, 'import numpy as np\n'), ((7642, 7665), 'numpy.array', 'np.array', (['clean_df[col]'], {}), '(clean_df[col])\n', (7650, 7665), True, 'import numpy as np\n'), ((8730, 8745), 'numpy.float32', 'np.float32', (['std'], {}), '(std)\n', (8740, 8745), True, 'import numpy as np\n'), ((8920, 8943), 'numpy.array', 'np.array', (['clean_df[col]'], {}), '(clean_df[col])\n', (8928, 8943), True, 'import numpy as np\n'), ((3025, 3041), 'numpy.float32', 'np.float32', (['mean'], {}), '(mean)\n', (3035, 3041), True, 'import numpy as np\n'), ((4822, 4838), 'numpy.float32', 'np.float32', (['mean'], {}), '(mean)\n', (4832, 4838), True, 'import numpy as np\n'), ((5119, 5137), 'numpy.float32', 'np.float32', (['chi[0]'], {}), '(chi[0])\n', (5129, 5137), True, 'import numpy as np\n'), ((7410, 7426), 'numpy.float32', 'np.float32', (['mean'], {}), '(mean)\n', (7420, 7426), True, 'import numpy as np\n'), ((7726, 7748), 'numpy.float32', 'np.float32', (['f_value[0]'], {}), '(f_value[0])\n', (7736, 7748), True, 'import numpy as np\n'), ((8700, 8716), 'numpy.float32', 'np.float32', (['mean'], {}), '(mean)\n', (8710, 8716), True, 'import numpy as np\n'), ((9012, 9034), 'numpy.float32', 'np.float32', (['f_value[0]'], {}), '(f_value[0])\n', (9022, 9034), True, 'import numpy as np\n')]
from django.conf.urls import patterns, include, url from django.contrib import admin from django.views.generic.base import TemplateView urlpatterns = patterns('', # Examples: url(r'^$', TemplateView.as_view(template_name="home.html"), name='home'), url(r'^auth-test', 'nepal.views.auth_test', name='auth-test'), url(r'^twitter/', include('twython_auth.urls')), url(r'^api/', include('api.urls', namespace='api')), url(r'^admin/', include(admin.site.urls)), ) urlpatterns += patterns('', (r'^django-rq/', include('django_rq.urls')), )
[ "django.conf.urls.include", "django.conf.urls.url", "django.views.generic.base.TemplateView.as_view" ]
[((262, 322), 'django.conf.urls.url', 'url', (['"""^auth-test"""', '"""nepal.views.auth_test"""'], {'name': '"""auth-test"""'}), "('^auth-test', 'nepal.views.auth_test', name='auth-test')\n", (265, 322), False, 'from django.conf.urls import patterns, include, url\n'), ((195, 242), 'django.views.generic.base.TemplateView.as_view', 'TemplateView.as_view', ([], {'template_name': '"""home.html"""'}), "(template_name='home.html')\n", (215, 242), False, 'from django.views.generic.base import TemplateView\n'), ((347, 375), 'django.conf.urls.include', 'include', (['"""twython_auth.urls"""'], {}), "('twython_auth.urls')\n", (354, 375), False, 'from django.conf.urls import patterns, include, url\n'), ((396, 432), 'django.conf.urls.include', 'include', (['"""api.urls"""'], {'namespace': '"""api"""'}), "('api.urls', namespace='api')\n", (403, 432), False, 'from django.conf.urls import patterns, include, url\n'), ((455, 479), 'django.conf.urls.include', 'include', (['admin.site.urls'], {}), '(admin.site.urls)\n', (462, 479), False, 'from django.conf.urls import patterns, include, url\n'), ((534, 559), 'django.conf.urls.include', 'include', (['"""django_rq.urls"""'], {}), "('django_rq.urls')\n", (541, 559), False, 'from django.conf.urls import patterns, include, url\n')]
from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options import scipy as sp import os try: from qsrs import BFGS_Jac_SolverNative, LeastSquares_Jac_SolverNative except ImportError: BFGS_Jac_SolverNative = None LeastSquares_Jac_SolverNative = None import pytest import tempfile import os import sys qft3 = unitaries.qft(8) def test_cobyla(project): project.add_compilation('qft2', unitaries.qft(4)) project['solver'] = solvers.COBYLA_Solver() project.run() def test_bfgs_jac(project): project.add_compilation('qft3', qft3) project['solver'] = solvers.BFGS_Jac_Solver() project.run() def test_least_squares_jac(project): project.add_compilation('qft3', qft3) project['solver'] = solvers.LeastSquares_Jac_Solver() project['error_residuals'] = utils.matrix_residuals project['error_residuals_jac'] = utils.matrix_residuals_jac project.run() @pytest.mark.skipif(sys.platform == 'win32', reason="This test currently hangs due to the nested parallel executor") def test_multistart_least_squares(project): project.add_compilation('qft3', qft3) project['solver'] = multistart_solvers.MultiStart_Solver(2) project['inner_solver'] = solvers.LeastSquares_Jac_Solver() project['parallelizer'] = parallelizers.ProcessPoolParallelizer project['error_residuals'] = utils.matrix_residuals project['error_residuals_jac'] = utils.matrix_residuals_jac project.run() @pytest.mark.skipif(sys.platform == 'win32', reason="This test currently hangs due to the nested parallel executor") def test_multistart_bfgs(project): project.add_compilation('qft3', qft3) project['solver'] = multistart_solvers.MultiStart_Solver(2) project['inner_solver'] = solvers.BFGS_Jac_Solver() project['parallelizer'] = parallelizers.ProcessPoolParallelizer project.run() def compile(U, solver): with tempfile.TemporaryDirectory() as dir: opts = options.Options() opts.target = U opts.error_func = utils.matrix_distance_squared opts.error_jac = utils.matrix_distance_squared_jac opts.solver = solver opts.log_file = os.path.join(dir, 'test.log') comp = compiler.SearchCompiler() res = comp.compile(opts) return res @pytest.mark.skipif(BFGS_Jac_SolverNative is None, reason="The rustopt feature has not been enabled") def test_rust_solver_qft3(): U = unitaries.qft(8) res = compile(U, BFGS_Jac_SolverNative()) circ = res['structure'] v = res['parameters'] assert utils.matrix_distance_squared(U, circ.matrix(v)) < 1e-10 @pytest.mark.skipif(LeastSquares_Jac_SolverNative is None, reason="The rustopt feature has not been enabled") def test_rust_solver_qft3(): U = unitaries.qft(8) res = compile(U, LeastSquares_Jac_SolverNative()) circ = res['structure'] v = res['parameters'] assert utils.matrix_distance_squared(U, circ.matrix(v)) < 1e-10
[ "tempfile.TemporaryDirectory", "qsrs.LeastSquares_Jac_SolverNative", "qsearch.multistart_solvers.MultiStart_Solver", "qsearch.solvers.BFGS_Jac_Solver", "os.path.join", "qsearch.compiler.SearchCompiler", "qsearch.unitaries.qft", "qsearch.options.Options", "qsrs.BFGS_Jac_SolverNative", "qsearch.solv...
[((371, 387), 'qsearch.unitaries.qft', 'unitaries.qft', (['(8)'], {}), '(8)\n', (384, 387), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((952, 1072), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(sys.platform == 'win32')"], {'reason': '"""This test currently hangs due to the nested parallel executor"""'}), "(sys.platform == 'win32', reason=\n 'This test currently hangs due to the nested parallel executor')\n", (970, 1072), False, 'import pytest\n'), ((1490, 1610), 'pytest.mark.skipif', 'pytest.mark.skipif', (["(sys.platform == 'win32')"], {'reason': '"""This test currently hangs due to the nested parallel executor"""'}), "(sys.platform == 'win32', reason=\n 'This test currently hangs due to the nested parallel executor')\n", (1508, 1610), False, 'import pytest\n'), ((2307, 2412), 'pytest.mark.skipif', 'pytest.mark.skipif', (['(BFGS_Jac_SolverNative is None)'], {'reason': '"""The rustopt feature has not been enabled"""'}), "(BFGS_Jac_SolverNative is None, reason=\n 'The rustopt feature has not been enabled')\n", (2325, 2412), False, 'import pytest\n'), ((2632, 2745), 'pytest.mark.skipif', 'pytest.mark.skipif', (['(LeastSquares_Jac_SolverNative is None)'], {'reason': '"""The rustopt feature has not been enabled"""'}), "(LeastSquares_Jac_SolverNative is None, reason=\n 'The rustopt feature has not been enabled')\n", (2650, 2745), False, 'import pytest\n'), ((493, 516), 'qsearch.solvers.COBYLA_Solver', 'solvers.COBYLA_Solver', ([], {}), '()\n', (514, 516), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((630, 655), 'qsearch.solvers.BFGS_Jac_Solver', 'solvers.BFGS_Jac_Solver', ([], {}), '()\n', (653, 655), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((778, 811), 'qsearch.solvers.LeastSquares_Jac_Solver', 'solvers.LeastSquares_Jac_Solver', ([], {}), '()\n', (809, 811), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((1178, 1217), 'qsearch.multistart_solvers.MultiStart_Solver', 'multistart_solvers.MultiStart_Solver', (['(2)'], {}), '(2)\n', (1214, 1217), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((1248, 1281), 'qsearch.solvers.LeastSquares_Jac_Solver', 'solvers.LeastSquares_Jac_Solver', ([], {}), '()\n', (1279, 1281), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((1707, 1746), 'qsearch.multistart_solvers.MultiStart_Solver', 'multistart_solvers.MultiStart_Solver', (['(2)'], {}), '(2)\n', (1743, 1746), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((1777, 1802), 'qsearch.solvers.BFGS_Jac_Solver', 'solvers.BFGS_Jac_Solver', ([], {}), '()\n', (1800, 1802), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((2445, 2461), 'qsearch.unitaries.qft', 'unitaries.qft', (['(8)'], {}), '(8)\n', (2458, 2461), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((2778, 2794), 'qsearch.unitaries.qft', 'unitaries.qft', (['(8)'], {}), '(8)\n', (2791, 2794), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((451, 467), 'qsearch.unitaries.qft', 'unitaries.qft', (['(4)'], {}), '(4)\n', (464, 467), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((1923, 1952), 'tempfile.TemporaryDirectory', 'tempfile.TemporaryDirectory', ([], {}), '()\n', (1950, 1952), False, 'import tempfile\n'), ((1976, 1993), 'qsearch.options.Options', 'options.Options', ([], {}), '()\n', (1991, 1993), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((2186, 2215), 'os.path.join', 'os.path.join', (['dir', '"""test.log"""'], {}), "(dir, 'test.log')\n", (2198, 2215), False, 'import os\n'), ((2231, 2256), 'qsearch.compiler.SearchCompiler', 'compiler.SearchCompiler', ([], {}), '()\n', (2254, 2256), False, 'from qsearch import Project, solvers, unitaries, utils, multistart_solvers, parallelizers, compiler, options\n'), ((2483, 2506), 'qsrs.BFGS_Jac_SolverNative', 'BFGS_Jac_SolverNative', ([], {}), '()\n', (2504, 2506), False, 'from qsrs import BFGS_Jac_SolverNative, LeastSquares_Jac_SolverNative\n'), ((2816, 2847), 'qsrs.LeastSquares_Jac_SolverNative', 'LeastSquares_Jac_SolverNative', ([], {}), '()\n', (2845, 2847), False, 'from qsrs import BFGS_Jac_SolverNative, LeastSquares_Jac_SolverNative\n')]
import os import numpy as np def save_samples_truncted_prob(fname, points, prob): ''' Save the visualization of sampling to a ply file. Red points represent positive predictions. Green points represent negative predictions. Parameters fname: File name to save points: [N, 3] array of points prob: [1, N] array of predictions in the range [0~1] Return: None ''' prob = prob.transpose(0, 1).detach().numpy() r = (prob > 0.5).reshape([-1, 1]) * 255 g = (prob < 0.5).reshape([-1, 1]) * 255 b = np.zeros(r.shape) to_save = np.concatenate([points, r, g, b,prob], axis=-1) return np.savetxt(fname, to_save, fmt='%.6f %.6f %.6f %d %d %d %.6f', comments='', header=( 'ply\nformat ascii 1.0\nelement vertex {:d}\nproperty float x\nproperty float y\nproperty float z\nproperty uchar red\nproperty uchar green\nproperty uchar blue\nproperty float prob\nend_header').format( points.shape[0]) ) def save_gallery(preds,samples,names,gallery_id,epoch): pred = preds[0].cpu() sample = samples[0].transpose(0, 1).cpu() name = names[0] save_gallery_path = os.path.join(gallery_id,name.split('/')[-2],"epoch_{:03d}".format(epoch)) os.makedirs(save_gallery_path,exist_ok=True) path = os.path.join(save_gallery_path,'pred.ply') save_samples_truncted_prob(path,sample,pred)
[ "os.makedirs", "numpy.zeros", "os.path.join", "numpy.concatenate" ]
[((568, 585), 'numpy.zeros', 'np.zeros', (['r.shape'], {}), '(r.shape)\n', (576, 585), True, 'import numpy as np\n'), ((601, 649), 'numpy.concatenate', 'np.concatenate', (['[points, r, g, b, prob]'], {'axis': '(-1)'}), '([points, r, g, b, prob], axis=-1)\n', (615, 649), True, 'import numpy as np\n'), ((1380, 1425), 'os.makedirs', 'os.makedirs', (['save_gallery_path'], {'exist_ok': '(True)'}), '(save_gallery_path, exist_ok=True)\n', (1391, 1425), False, 'import os\n'), ((1436, 1479), 'os.path.join', 'os.path.join', (['save_gallery_path', '"""pred.ply"""'], {}), "(save_gallery_path, 'pred.ply')\n", (1448, 1479), False, 'import os\n')]
import setuptools name = "yamlval" __version__ = "v1.0.2" with open("README.md", "r") as f: long_description = f.read() setuptools.setup( name=name, version=__version__, author="<NAME>", author_email="<EMAIL>", description="A YAML type validator", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/mycicle/yamlval/", download_url="https://github.com/mycicle/yamlval/archive/v1.0.2.tar.gz", packages=setuptools.find_packages(), install_requires=[ 'pyyaml >= 5.3.1', 'loguru >= 0.5.3' ], classifiers=( "Intended Audience :: Developers", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "License :: OSI Approved :: MIT License" ), )
[ "setuptools.find_packages" ]
[((502, 528), 'setuptools.find_packages', 'setuptools.find_packages', ([], {}), '()\n', (526, 528), False, 'import setuptools\n')]
import requests import pprint def format_open_search_results(results): formatted_results = [] titles = results[1] res_length = len(titles) count = 0 while count < res_length: formatted_results.append([titles[count], results[3][count]]) count += 1 return formatted_results ''' Wikipedia ''' def wikipedia_search(query): results = requests.get('https://wikipedia.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() return format_open_search_results(results) ''' Wiktionary ''' def wiktionary_search(query): results = requests.get('https://wiktionary.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() return format_open_search_results(results) ''' Wikibooks ''' def wikibooks_search(query): results = requests.get('https://wikibooks.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() return format_open_search_results(results) ''' Wikiquote ''' def wikiquote_search(query): results = requests.get('https://wikiquote.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() return format_open_search_results(results) ''' Wikivoyage ''' def wikivoyage_search(query): results = requests.get('https://wikivoyage.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() return format_open_search_results(results) ''' Wikisource ''' def wikisource_search(query): results = requests.get('https://wikisource.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() return format_open_search_results(results) ''' https://commons.wikimedia.org/w/api.php?action=opensearch&search=code ''' ''' Wikicommons ''' def wikicommons_search(query): results = requests.get('https://commons.wikimedia.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() return format_open_search_results(results) # ''' # Media Wiki # ''' # def mediawiki_search(query): # results = requests.get('https://www.mediawiki.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() # return format_open_search_results(results) # ''' Wikispecies ''' def wikispecies_search(query): results = requests.get('https://wikispecies.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() return format_open_search_results(results) ''' Wikinews ''' def wikinews_search(query): results = requests.get('https://wikinews.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() return format_open_search_results(results) ''' Wikiversity ''' def wikiversity_search(query): results = requests.get('https://wikiversity.org/w/api.php?action=opensearch&search=' + query + '&format=json').json() return format_open_search_results(results) ''' Wikidata ''' def wikidata_search(query): # OpenSearch does not work for wikidata non_open_search_endpoint = 'https://www.wikidata.org/w/api.php?action=query&list=search&srsearch='+ query +'&srlimit=10&srprop=size&formatversion=2&format=json' results = requests.get(non_open_search_endpoint).json() return results ''' MetaWiki ''' def meta_wiki_search(query): # https://meta.wikimedia.org/w/api.php results = requests.get('https://meta.wikimedia.org/w/api.php?action=opensearch&search=' + query).json() return format_open_search_results(results) # --------------------- def wikimedia_search_v2(query): # https://commons.wikimedia.org/w/api.php results = requests.get('https://commons.wikimedia.org/w/api.php?action=opensearch&search=' + query).json() print(results) pprint.pprint(results) def parse_wiktionary_search(url): wikipage = requests.get(url).text print(wikipage) # TODO: Parse the page to find the type, definition, sentence, usage, and root def wiktionary_search_direct_hit(query): # https://commons.wikimedia.org/w/api.php # https://en.wiktionary.org/w/api.php?action=query&titles=test&format=json results = requests.get('https://en.wiktionary.org/w/api.php?action=query&format=json&titles=' + query).json() print(results) # pprint.pprint(results) result_date = results['query']['pages'] page_number = list(result_date.keys())[0] if page_number == '-1': print('No results') return [] # print(page_number) wikipage_url = 'https://en.wiktionary.org/?curid=' + page_number print(wikipage_url) return [wikipage_url] # ------------- def get_wikipedia_page_from_id(page_id): # 'http://en.wikipedia.org/?curid=18630637' results = requests.get('http://en.wikipedia.org/?curid=' + page_id).text print(results) # pprint.pprint(results) def get_wikipedia_general_info(query): # https://en.wikipedia.org/w/api.php?action=query&formatversion=2&prop=extracts%7Cpageimages%7Crevisions&titles=Albert+Einstein&redirects=&exintro=true&exsentences=2&explaintext=true&piprop=thumbnail&pithumbsize=300&rvprop=timestamp&format=json results = requests.get('https://en.wikipedia.org/w/api.php?action=query&formatversion=2&prop=extracts%7Cpageimages%7Crevisions&titles=' + query + '&redirects=&exintro=true&exsentences=2&explaintext=true&piprop=thumbnail&pithumbsize=300&rvprop=timestamp&format=json').json() print(results) pprint.pprint(results) def get_wikipedia_search_results(query): query = query.replace(' ', '+') endpoint = 'https://en.wikipedia.org/w/api.php?action=query&list=search&srsearch=morelike:Marie_Curie%7Cradium&srlimit=10&srprop=size&formatversion=2' endpoint = 'https://en.wikipedia.org/w/api.php?action=query&list=search&srsearch=morelike:'+ query +'&srlimit=10&srprop=size&formatversion=2&format=json' endpoint = 'https://wikipedia.org/w/api.php?action=query&list=search&srsearch='+ query +'&srlimit=10&srprop=size&formatversion=2&format=json' results = requests.get(endpoint).json() # print(results) # pprint.pprint(results.json()) return results def find_something_obscure_wikipedia_cirrus(query): # https://www.mediawiki.org/wiki/API:Search_and_discovery endpoint = 'https://en.wikipedia.org/w/index.php?title=Special:Search&cirrusDumpResult=&search=napolean+dog' endpoint = 'https://en.wikipedia.org/w/index.php?title=Special:Search&cirrusDumpResult=&search=' + query # TODO: Check if query is actually obscure enough and that the page does not redirect to one that already exists results = requests.get(endpoint) print(results) pprint.pprint(results.json()) # --------- def wikivoyage_search_v2(query): endpoint = 'https://en.wikivoyage.org/w/api.php?action=query&list=search&srsearch=Panama&srlimit=10&srprop=size&formatversion=2&format=json' results = requests.get(endpoint).json() # print(results) # pprint.pprint(results.json()) return results def wikivoyage_similar_results(query): endpoint = 'https://en.wikivoyage.org/w/api.php?action=query&list=search&srsearch=morelike:Panama|radium&srlimit=10&srprop=size&formatversion=2' def get_all_results_v2(query): results = {} formatted_wikipedia = [] wikipedia_results = get_wikipedia_search_results(query)['query']['search'] print(wikipedia_results) for result in wikipedia_results: formatted_wikipedia.append([result['title'], 'https://en.wikipedia.org/wiki/?curid=' + str(result['pageid'])]) results['Wikipedia'] = formatted_wikipedia formatted_wikivoyage = [] wikivoyage_results = wikivoyage_search(query)['query']['search'] print(wikivoyage_results) for result in wikivoyage_results: formatted_wikipedia.append([result['title'], 'https://en.wikivoyage.org/wiki/?curid=' + str(result['pageid'])]) results['Wikivoyage'] = formatted_wikipedia print(results) return results def get_all_results_open_search(query): results = { 'Wikipedia' : wikipedia_search(query), 'Wiktionary': wiktionary_search(query), 'Wikibooks': wikibooks_search(query), 'Wikiquote': wikiquote_search(query), 'Wikivoyage': wikivoyage_search(query), 'Wikisource': wikisource_search(query), 'Wikispecies': wikispecies_search(query), 'Wikinews': wikinews_search(query), 'Wikiversity': wikiversity_search(query), # 'Wikidata': wikidata_search(query), 'Metawiki' : meta_wiki_search(query), 'Wikicommons' : wikicommons_search(query) } return results
[ "pprint.pprint", "requests.get" ]
[((3634, 3656), 'pprint.pprint', 'pprint.pprint', (['results'], {}), '(results)\n', (3647, 3656), False, 'import pprint\n'), ((5309, 5331), 'pprint.pprint', 'pprint.pprint', (['results'], {}), '(results)\n', (5322, 5331), False, 'import pprint\n'), ((6463, 6485), 'requests.get', 'requests.get', (['endpoint'], {}), '(endpoint)\n', (6475, 6485), False, 'import requests\n'), ((3708, 3725), 'requests.get', 'requests.get', (['url'], {}), '(url)\n', (3720, 3725), False, 'import requests\n'), ((4606, 4663), 'requests.get', 'requests.get', (["('http://en.wikipedia.org/?curid=' + page_id)"], {}), "('http://en.wikipedia.org/?curid=' + page_id)\n", (4618, 4663), False, 'import requests\n'), ((379, 481), 'requests.get', 'requests.get', (["('https://wikipedia.org/w/api.php?action=opensearch&search=' + query +\n '&format=json')"], {}), "('https://wikipedia.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')\n", (391, 481), False, 'import requests\n'), ((596, 699), 'requests.get', 'requests.get', (["('https://wiktionary.org/w/api.php?action=opensearch&search=' + query +\n '&format=json')"], {}), "('https://wiktionary.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')\n", (608, 699), False, 'import requests\n'), ((812, 914), 'requests.get', 'requests.get', (["('https://wikibooks.org/w/api.php?action=opensearch&search=' + query +\n '&format=json')"], {}), "('https://wikibooks.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')\n", (824, 914), False, 'import requests\n'), ((1027, 1129), 'requests.get', 'requests.get', (["('https://wikiquote.org/w/api.php?action=opensearch&search=' + query +\n '&format=json')"], {}), "('https://wikiquote.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')\n", (1039, 1129), False, 'import requests\n'), ((1244, 1347), 'requests.get', 'requests.get', (["('https://wikivoyage.org/w/api.php?action=opensearch&search=' + query +\n '&format=json')"], {}), "('https://wikivoyage.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')\n", (1256, 1347), False, 'import requests\n'), ((1462, 1565), 'requests.get', 'requests.get', (["('https://wikisource.org/w/api.php?action=opensearch&search=' + query +\n '&format=json')"], {}), "('https://wikisource.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')\n", (1474, 1565), False, 'import requests\n'), ((1761, 1876), 'requests.get', 'requests.get', (["('https://commons.wikimedia.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')"], {}), "(\n 'https://commons.wikimedia.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')\n", (1773, 1876), False, 'import requests\n'), ((2223, 2327), 'requests.get', 'requests.get', (["('https://wikispecies.org/w/api.php?action=opensearch&search=' + query +\n '&format=json')"], {}), "('https://wikispecies.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')\n", (2235, 2327), False, 'import requests\n'), ((2438, 2539), 'requests.get', 'requests.get', (["('https://wikinews.org/w/api.php?action=opensearch&search=' + query +\n '&format=json')"], {}), "('https://wikinews.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')\n", (2450, 2539), False, 'import requests\n'), ((2656, 2760), 'requests.get', 'requests.get', (["('https://wikiversity.org/w/api.php?action=opensearch&search=' + query +\n '&format=json')"], {}), "('https://wikiversity.org/w/api.php?action=opensearch&search=' +\n query + '&format=json')\n", (2668, 2760), False, 'import requests\n'), ((3080, 3118), 'requests.get', 'requests.get', (['non_open_search_endpoint'], {}), '(non_open_search_endpoint)\n', (3092, 3118), False, 'import requests\n'), ((3251, 3342), 'requests.get', 'requests.get', (["('https://meta.wikimedia.org/w/api.php?action=opensearch&search=' + query)"], {}), "(\n 'https://meta.wikimedia.org/w/api.php?action=opensearch&search=' + query)\n", (3263, 3342), False, 'import requests\n'), ((3514, 3613), 'requests.get', 'requests.get', (["('https://commons.wikimedia.org/w/api.php?action=opensearch&search=' + query)"], {}), "(\n 'https://commons.wikimedia.org/w/api.php?action=opensearch&search=' + query\n )\n", (3526, 3613), False, 'import requests\n'), ((4019, 4120), 'requests.get', 'requests.get', (["('https://en.wiktionary.org/w/api.php?action=query&format=json&titles=' + query\n )"], {}), "(\n 'https://en.wiktionary.org/w/api.php?action=query&format=json&titles=' +\n query)\n", (4031, 4120), False, 'import requests\n'), ((5022, 5297), 'requests.get', 'requests.get', (["(\n 'https://en.wikipedia.org/w/api.php?action=query&formatversion=2&prop=extracts%7Cpageimages%7Crevisions&titles='\n + query +\n '&redirects=&exintro=true&exsentences=2&explaintext=true&piprop=thumbnail&pithumbsize=300&rvprop=timestamp&format=json'\n )"], {}), "(\n 'https://en.wikipedia.org/w/api.php?action=query&formatversion=2&prop=extracts%7Cpageimages%7Crevisions&titles='\n + query +\n '&redirects=&exintro=true&exsentences=2&explaintext=true&piprop=thumbnail&pithumbsize=300&rvprop=timestamp&format=json'\n )\n", (5034, 5297), False, 'import requests\n'), ((5885, 5907), 'requests.get', 'requests.get', (['endpoint'], {}), '(endpoint)\n', (5897, 5907), False, 'import requests\n'), ((6746, 6768), 'requests.get', 'requests.get', (['endpoint'], {}), '(endpoint)\n', (6758, 6768), False, 'import requests\n')]
import re import pytest from mimesis import config from mimesis.enums import Gender from mimesis.exceptions import NonEnumerableError from mimesis.providers.base import BaseDataProvider, StrMixin from . import patterns def test_str_mixin(): mixin = StrMixin() assert mixin class TestBase(object): @pytest.fixture def base_data_provider(self): return BaseDataProvider() def test_str(self, base_data_provider): assert re.match(patterns.STR_REGEX, str(base_data_provider)) @pytest.mark.parametrize( 'gender, excepted', [ (Gender.MALE, 'male'), (Gender.FEMALE, 'female'), (None, ['female', 'male']), ], ) def test_validate_enum(self, base_data_provider, gender, excepted): result = base_data_provider._validate_enum(gender, Gender) assert (result == excepted) or (result in excepted) assert result in [item.value for item in Gender] with pytest.raises(NonEnumerableError): base_data_provider._validate_enum('', '') @pytest.mark.parametrize('locale', config.LIST_OF_LOCALES) def test_get_current_locale(self, locale): base = BaseDataProvider(locale=locale) assert locale == base.get_current_locale() class TestSeededBase(object): @pytest.fixture def _bases(self, seed): return BaseDataProvider(seed=seed), BaseDataProvider(seed=seed) def test_base_random(self, _bases): b1, b2 = _bases assert b1.random.randints() == b2.random.randints()
[ "pytest.mark.parametrize", "pytest.raises", "mimesis.providers.base.BaseDataProvider", "mimesis.providers.base.StrMixin" ]
[((258, 268), 'mimesis.providers.base.StrMixin', 'StrMixin', ([], {}), '()\n', (266, 268), False, 'from mimesis.providers.base import BaseDataProvider, StrMixin\n'), ((521, 649), 'pytest.mark.parametrize', 'pytest.mark.parametrize', (['"""gender, excepted"""', "[(Gender.MALE, 'male'), (Gender.FEMALE, 'female'), (None, ['female', 'male'])]"], {}), "('gender, excepted', [(Gender.MALE, 'male'), (Gender\n .FEMALE, 'female'), (None, ['female', 'male'])])\n", (544, 649), False, 'import pytest\n'), ((1073, 1130), 'pytest.mark.parametrize', 'pytest.mark.parametrize', (['"""locale"""', 'config.LIST_OF_LOCALES'], {}), "('locale', config.LIST_OF_LOCALES)\n", (1096, 1130), False, 'import pytest\n'), ((382, 400), 'mimesis.providers.base.BaseDataProvider', 'BaseDataProvider', ([], {}), '()\n', (398, 400), False, 'from mimesis.providers.base import BaseDataProvider, StrMixin\n'), ((1193, 1224), 'mimesis.providers.base.BaseDataProvider', 'BaseDataProvider', ([], {'locale': 'locale'}), '(locale=locale)\n', (1209, 1224), False, 'from mimesis.providers.base import BaseDataProvider, StrMixin\n'), ((978, 1011), 'pytest.raises', 'pytest.raises', (['NonEnumerableError'], {}), '(NonEnumerableError)\n', (991, 1011), False, 'import pytest\n'), ((1372, 1399), 'mimesis.providers.base.BaseDataProvider', 'BaseDataProvider', ([], {'seed': 'seed'}), '(seed=seed)\n', (1388, 1399), False, 'from mimesis.providers.base import BaseDataProvider, StrMixin\n'), ((1401, 1428), 'mimesis.providers.base.BaseDataProvider', 'BaseDataProvider', ([], {'seed': 'seed'}), '(seed=seed)\n', (1417, 1428), False, 'from mimesis.providers.base import BaseDataProvider, StrMixin\n')]
from collections import OrderedDict from nnunet.paths import nnUNet_raw_data from batchgenerators.utilities.file_and_folder_operations import * import shutil import argparse def main(): parser = argparse.ArgumentParser() parser.add_argument("-dataset_path", type=str, default='/home/lwt/data/synapse/RawData/') args = parser.parse_args() task_id = 17 task_name = "AbdominalOrganSegmentation" prefix = 'ABD' foldername = "Task%03.0d_%s" % (task_id, task_name) out_base = join(nnUNet_raw_data, foldername) imagestr = join(out_base, "imagesTr") imagests = join(out_base, "imagesTs") labelstr = join(out_base, "labelsTr") labelsts = join(out_base, "labelsTs") if isdir(imagestr): shutil.rmtree(imagestr) shutil.rmtree(imagests) shutil.rmtree(labelstr) shutil.rmtree(labelsts) maybe_mkdir_p(imagestr) maybe_mkdir_p(imagests) maybe_mkdir_p(labelstr) maybe_mkdir_p(labelsts) val_id = test_id = [1, 2, 3, 4, 8, 22, 25, 29, 32, 35, 36, 38] img_folder = join(args.dataset_path, "Training/img") label_folder = join(args.dataset_path, "Training/label") train_patient_names = [] test_patient_names = [] train_patients = subfiles(img_folder, join=False, suffix='nii.gz') for p in train_patients: serial_number = int(p[3:7]) train_patient_name = f'{prefix}_{serial_number:03d}.nii.gz' label_file = join(label_folder, f'label{p[3:]}') image_file = join(img_folder, p) shutil.copy(image_file, join( imagestr, f'{train_patient_name[:7]}_0000.nii.gz')) shutil.copy(label_file, join(labelstr, train_patient_name)) train_patient_names.append(train_patient_name) for p in test_id: test_patient = f"img{p:04d}.nii.gz" test_patient_name = f'{prefix}_{p:03d}.nii.gz' label_file = join(label_folder, f'label{test_patient[3:]}') image_file = join(img_folder, test_patient) shutil.copy(image_file, join( imagests, f'{test_patient_name[:7]}_0000.nii.gz')) shutil.copy(label_file, join(labelsts, test_patient_name)) test_patient_names.append(test_patient_name) json_dict = OrderedDict() json_dict['name'] = "AbdominalOrganSegmentation" json_dict['description'] = "Multi-Atlas Labeling Beyond the Cranial Vault Abdominal Organ Segmentation" json_dict['tensorImageSize'] = "3D" json_dict['reference'] = "https://www.synapse.org/#!Synapse:syn3193805/wiki/217789" json_dict['licence'] = "see challenge website" json_dict['release'] = "0.0" json_dict['modality'] = { "0": "CT", } json_dict['labels'] = OrderedDict({ "00": "background", "01": "spleen", "02": "right kidney", "03": "left kidney", "04": "gallbladder", "05": "esophagus", "06": "liver", "07": "stomach", "08": "aorta", "09": "inferior vena cava", "10": "portal vein and splenic vein", "11": "pancreas", "12": "right adrenal gland", "13": "left adrenal gland"} ) json_dict['evaluationClass'] = [8, 4, 3, 2, 6, 11, 1, 7] json_dict['numTraining'] = len(train_patient_names) json_dict['numTest'] = len(test_patient_names) json_dict['test'] = ["./imagesTs/%s" % test_patient_name for test_patient_name in test_patient_names] json_dict['training'] = [{'image': "./imagesTr/%s" % train_patient_name, "label": "./labelsTr/%s" % train_patient_name} for train_patient_name in train_patient_names] save_json(json_dict, os.path.join(out_base, "dataset.json")) splits = [] splits.append(OrderedDict()) splits[-1]['train'] = [i[:7] for i in train_patient_names if int(i[4:7]) not in val_id] splits[-1]['val'] = [i[:7] for i in train_patient_names if int(i[4:7]) in val_id] save_pickle(splits, join(out_base, "splits_final.pkl")) if __name__ == "__main__": main()
[ "collections.OrderedDict", "argparse.ArgumentParser", "shutil.rmtree" ]
[((200, 225), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {}), '()\n', (223, 225), False, 'import argparse\n'), ((2248, 2261), 'collections.OrderedDict', 'OrderedDict', ([], {}), '()\n', (2259, 2261), False, 'from collections import OrderedDict\n'), ((2716, 3052), 'collections.OrderedDict', 'OrderedDict', (["{'00': 'background', '01': 'spleen', '02': 'right kidney', '03':\n 'left kidney', '04': 'gallbladder', '05': 'esophagus', '06': 'liver',\n '07': 'stomach', '08': 'aorta', '09': 'inferior vena cava', '10':\n 'portal vein and splenic vein', '11': 'pancreas', '12':\n 'right adrenal gland', '13': 'left adrenal gland'}"], {}), "({'00': 'background', '01': 'spleen', '02': 'right kidney', '03':\n 'left kidney', '04': 'gallbladder', '05': 'esophagus', '06': 'liver',\n '07': 'stomach', '08': 'aorta', '09': 'inferior vena cava', '10':\n 'portal vein and splenic vein', '11': 'pancreas', '12':\n 'right adrenal gland', '13': 'left adrenal gland'})\n", (2727, 3052), False, 'from collections import OrderedDict\n'), ((764, 787), 'shutil.rmtree', 'shutil.rmtree', (['imagestr'], {}), '(imagestr)\n', (777, 787), False, 'import shutil\n'), ((796, 819), 'shutil.rmtree', 'shutil.rmtree', (['imagests'], {}), '(imagests)\n', (809, 819), False, 'import shutil\n'), ((828, 851), 'shutil.rmtree', 'shutil.rmtree', (['labelstr'], {}), '(labelstr)\n', (841, 851), False, 'import shutil\n'), ((860, 883), 'shutil.rmtree', 'shutil.rmtree', (['labelsts'], {}), '(labelsts)\n', (873, 883), False, 'import shutil\n'), ((3758, 3771), 'collections.OrderedDict', 'OrderedDict', ([], {}), '()\n', (3769, 3771), False, 'from collections import OrderedDict\n')]
""" Network wiring """ import tensorflow as tf import numpy as np import glob, time, os import functools from utils import Utils class Network(object): @staticmethod def _spectral_norm(w): w_shape = w.shape.as_list() w = tf.reshape(w, [-1, w_shape[-1]]) with tf.variable_scope("u", reuse=tf.AUTO_REUSE): u = tf.get_variable( "u", [1, w_shape[-1]], dtype=w.dtype, initializer=tf.truncated_normal_initializer(), trainable=False) v_hat = tf.nn.l2_normalize(tf.matmul(u, tf.transpose(w))) u_hat = tf.nn.l2_normalize(tf.matmul(v_hat, w)) with tf.control_dependencies([tf.assign(u, u_hat, name="update_u")]): u_hat = tf.identity(u_hat) u_hat = tf.stop_gradient(u_hat) v_hat = tf.stop_gradient(v_hat) sigma_w = tf.squeeze(tf.matmul(v_hat, tf.matmul(w, tf.transpose(u_hat)))) assign_u = tf.assign(u, u_hat) w_sn = tf.divide(w, sigma_w) w_sn = tf.reshape(w_sn, w_shape) return w_sn @staticmethod def dense_network(x, config, training, name='fully_connected', actv=tf.nn.relu, **kwargs): # Toy dense network for binary classification init = tf.contrib.layers.xavier_initializer() shape = [512,512,512,512,512] kwargs = {'center': True, 'scale': True, 'training': training, 'fused': True, 'renorm': True} # x = tf.reshape(x, [-1, num_features]) # x = x[:,:-1] print('Input X shape', x.get_shape()) with tf.variable_scope(name, initializer=init, reuse=tf.AUTO_REUSE) as scope: h0 = tf.layers.dense(x, units=shape[0], activation=actv) h0 = tf.layers.batch_normalization(h0, **kwargs) h1 = tf.layers.dense(h0, units=shape[1], activation=actv) h1 = tf.layers.batch_normalization(h1, **kwargs) h2 = tf.layers.dense(h1, units=shape[2], activation=actv) h2 = tf.layers.batch_normalization(h2, **kwargs) h3 = tf.layers.dense(h2, units=shape[3], activation=actv) h3 = tf.layers.batch_normalization(h3, **kwargs) h4 = tf.layers.dense(h3, units=shape[3], activation=actv) h4 = tf.layers.batch_normalization(h4, **kwargs) out = tf.layers.dense(h4, units=1, kernel_initializer=init) return out, h4 @staticmethod def dense_network_ext(x, config, training, n_layers, n_classes, name='fcn', actv=tf.nn.relu, **kwargs): # Toy dense network for binary classification init = tf.contrib.layers.xavier_initializer() shape = [64 for _ in range(int(n_layers))] assert n_layers <= len(shape), 'Number of requested layers too high.' kwargs = {'center': True, 'scale': True, 'training': training, 'fused': True, 'renorm': True} print('Input X shape', x.get_shape()) with tf.variable_scope(name, initializer=init, reuse=tf.AUTO_REUSE) as scope: h0 = tf.layers.dense(x, units=shape[0], activation=None) # h0 = tf.layers.batch_normalization(h0, **kwargs) h0 = tf.contrib.layers.layer_norm(h0, center=True, scale=True, activation_fn=actv) h = h0 current_layer = 1 while current_layer < n_layers: h = tf.layers.dense(h, units=shape[current_layer], activation=None) # h = tf.layers.batch_normalization(h, **kwargs) h = tf.contrib.layers.layer_norm(h, center=True, scale=True, activation_fn=actv) current_layer += 1 out = tf.layers.dense(h, units=n_classes, kernel_initializer=init) return out, h @staticmethod def MINE(x, y, y_prime, training, batch_size, name='MINE', actv=tf.nn.elu, n_layers=2, dimension=2, labels=None, jensen_shannon=True, standardize=False, apply_sn=False, **kwargs): """ Mutual Information Neural Estimator (x,y): Drawn from joint p(x,y) y_prime: Drawn from marginal p(y) returns MI: Lower bound on mutual information between x,y """ init = tf.contrib.layers.xavier_initializer() drop_rate = 0.0 shape = [64 for _ in range(int(n_layers))] assert n_layers <= len(shape), 'Number of requested layers too high.' kwargs = {'center': True, 'scale': True, 'training': training, 'fused': True, 'renorm': False} # y_prime = tf.random_shuffle(y) # Standardize inputs x_mu, x_sigma = tf.nn.moments(x, axes=0) y_mu, y_sigma = tf.nn.moments(y, axes=0) y_prime_mu, y_prime_sigma = tf.nn.moments(y_prime, axes=0) if standardize: x = (x - x_mu) / x_sigma y = (y - y_mu) / y_sigma y_prime = (y_prime - y_prime_mu) / y_prime_sigma if dimension == 2: y, y_prime = tf.expand_dims(y, axis=1), tf.expand_dims(y_prime, axis=1) if len(x.get_shape().as_list()) < 2: x = tf.expand_dims(x, axis=1) z = tf.concat([x,y], axis=1) z_prime = tf.concat([x,y_prime], axis=1) z.set_shape([None, dimension]) z_prime.set_shape([None, dimension]) print('X SHAPE:', x.get_shape().as_list()) print('Z SHAPE:', z.get_shape().as_list()) print('Z PRIME SHAPE:', z_prime.get_shape().as_list()) def statistic_network(t, name='MINE', apply_spectral_norm=False, reuse=False): if apply_spectral_norm is True: kernel_constraint = Network._spectral_norm print('Applying spectral norm') else: kernel_constraint = None with tf.variable_scope(name, initializer=init, reuse=reuse) as scope: h0 = tf.layers.dense(t, units=shape[0], activation=None, kernel_constraint=kernel_constraint) # h0 = tf.layers.batch_normalization(h0, **kwargs) h0 = tf.contrib.layers.layer_norm(h0, center=True, scale=True, activation_fn=actv) h = h0 current_layer = 1 while current_layer < n_layers: h = tf.layers.dense(h, units=shape[current_layer], activation=None, kernel_constraint=kernel_constraint) h = tf.contrib.layers.layer_norm(h, center=True, scale=True, activation_fn=actv) current_layer += 1 out = tf.layers.dense(h, units=1, kernel_initializer=init) return out def log_sum_exp_trick(x, batch_size, axis=1): # Compute along batch dimension x = tf.squeeze(x) x_max = tf.reduce_max(x) # lse = x_max + tf.log(tf.reduce_mean(tf.exp(x-x_max))) lse = x_max + tf.log(tf.reduce_sum(tf.exp(x-x_max))) - tf.log(batch_size) return lse joint_f = statistic_network(z, apply_spectral_norm=apply_sn) marginal_f = statistic_network(z_prime, reuse=True, apply_spectral_norm=apply_sn) print('Joint shape', joint_f.shape) print('marginal shape', marginal_f.shape) # MI_lower_bound = tf.reduce_mean(joint_f) - tf.log(tf.reduce_mean(tf.exp(marginal_f)) + 1e-5) MI_lower_bound = tf.squeeze(tf.reduce_mean(joint_f)) - tf.squeeze(log_sum_exp_trick(marginal_f, tf.cast(batch_size, tf.float32))) # H(p,q) = - E_p[log q] joint_loss = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits=joint_f, labels=tf.ones_like(joint_f))) marginal_loss = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits=marginal_f, labels=tf.zeros_like(marginal_f))) JSD_lower_bound = -(marginal_loss + joint_loss) + tf.log(4.0) # JSD_lower_bound = tf.squeeze(tf.reduce_mean(-tf.nn.softplus(-tf.squeeze(joint_f)))) - tf.squeeze(tf.reduce_mean(tf.nn.softplus(tf.squeeze(marginal_f)))) # GAN_lower_bound = tf.reduce_mean(tf.log(tf.nn.sigmoid(joint_f))) + tf.reduce_mean(tf.log(1.0-tf.nn.sigmoid(marginal_f))) if jensen_shannon: lower_bound = JSD_lower_bound else: lower_bound = MI_lower_bound return (z, z_prime), (joint_f, marginal_f), lower_bound @staticmethod def kernel_MMD(x, y, y_prime, batch_size, name='kernel_MMD', actv=tf.nn.elu, dimension=2, labels=None, bkg_only=True): """ Kernel MMD (x,y): Drawn from joint y_prime: Drawn from marginal returns mmd2: MMD distance between two distributions """ def gaussian_kernel_mmd2(X, Y, gamma): """ Parameters ____ X: Matrix, shape: (n_samples, features) Y: Matrix, shape: (m_samples, features) Returns ____ mmd: MMD under Gaussian kernel """ XX = tf.matmul(X, X, transpose_b=True) XY = tf.matmul(X, Y, transpose_b=True) YY = tf.matmul(Y, Y, transpose_b=True) M, N = tf.cast(XX.get_shape()[0], tf.float32), tf.cast(YY.get_shape()[0], tf.float32) X_sqnorm = tf.reduce_sum(X**2, axis=-1) Y_sqnorm = tf.reduce_sum(Y**2, axis=-1) row_bc = lambda x: tf.expand_dims(x,0) col_bc = lambda x: tf.expand_dims(x,1) K_XX = tf.exp( -gamma * (col_bc(X_sqnorm) - 2 * XX + row_bc(X_sqnorm))) K_XY = tf.exp( -gamma * (col_bc(X_sqnorm) - 2 * XY + row_bc(Y_sqnorm))) K_YY = tf.exp( -gamma * (col_bc(Y_sqnorm) - 2 * YY + row_bc(Y_sqnorm))) mmd2 = tf.reduce_sum(K_XX) / M**2 - 2 * tf.reduce_sum(K_XY) / (M*N) + tf.reduce_sum(K_YY) / N**2 return mmd2 def rbf_mixed_mmd2(X, Y, M, N, sigmas=[1.0, 2.0, 5.0, 10.0, 20.0, 40.0, 80.0]): """ Parameters ____ X: Matrix, shape: (n_samples, features) Y: Matrix, shape: (m_samples, features) sigmas: RBF parameter Returns ____ mmd2: MMD under Gaussian mixed kernel """ XX = tf.matmul(X, X, transpose_b=True) XY = tf.matmul(X, Y, transpose_b=True) YY = tf.matmul(Y, Y, transpose_b=True) X_sqnorm = tf.reduce_sum(X**2, axis=-1) Y_sqnorm = tf.reduce_sum(Y**2, axis=-1) row_bc = lambda x: tf.expand_dims(x,0) col_bc = lambda x: tf.expand_dims(x,1) K_XX, K_XY, K_YY = 0,0,0 for sigma in sigmas: gamma = 1 / (2 * sigma**2) K_XX += tf.exp( -gamma * (col_bc(X_sqnorm) - 2 * XX + row_bc(X_sqnorm))) K_XY += tf.exp( -gamma * (col_bc(X_sqnorm) - 2 * XY + row_bc(Y_sqnorm))) K_YY += tf.exp( -gamma * (col_bc(Y_sqnorm) - 2 * YY + row_bc(Y_sqnorm))) mmd2 = tf.reduce_sum(K_XX) / M**2 - 2 * tf.reduce_sum(K_XY) / (M*N) + tf.reduce_sum(K_YY) / N**2 return mmd2 init = tf.contrib.layers.xavier_initializer() if bkg_only: batch_size_bkg_only = tf.cast(batch_size - tf.reduce_sum(labels), tf.float32) if dimension == 2: y, y_prime = tf.expand_dims(y, axis=1), tf.expand_dims(y_prime, axis=1) if len(x.get_shape().as_list()) < 2: x = tf.expand_dims(x, axis=1) z = tf.concat([x,y], axis=1) z_prime = tf.concat([x,y_prime], axis=1) z.set_shape([None, dimension]) z_prime.set_shape([None, dimension]) print('X SHAPE:', x.get_shape().as_list()) print('Z SHAPE:', z.get_shape().as_list()) print('Z PRIME SHAPE:', z_prime.get_shape().as_list()) mmd2 = tf.nn.relu(rbf_mixed_mmd2(z, z_prime, M=batch_size_bkg_only, N=batch_size)) return z, z_prime, tf.sqrt(mmd2)
[ "tensorflow.transpose", "tensorflow.reduce_sum", "tensorflow.nn.moments", "tensorflow.truncated_normal_initializer", "tensorflow.ones_like", "tensorflow.reduce_mean", "tensorflow.cast", "tensorflow.log", "tensorflow.contrib.layers.layer_norm", "tensorflow.assign", "tensorflow.concat", "tensorf...
[((249, 281), 'tensorflow.reshape', 'tf.reshape', (['w', '[-1, w_shape[-1]]'], {}), '(w, [-1, w_shape[-1]])\n', (259, 281), True, 'import tensorflow as tf\n'), ((782, 805), 'tensorflow.stop_gradient', 'tf.stop_gradient', (['u_hat'], {}), '(u_hat)\n', (798, 805), True, 'import tensorflow as tf\n'), ((822, 845), 'tensorflow.stop_gradient', 'tf.stop_gradient', (['v_hat'], {}), '(v_hat)\n', (838, 845), True, 'import tensorflow as tf\n'), ((949, 968), 'tensorflow.assign', 'tf.assign', (['u', 'u_hat'], {}), '(u, u_hat)\n', (958, 968), True, 'import tensorflow as tf\n'), ((985, 1006), 'tensorflow.divide', 'tf.divide', (['w', 'sigma_w'], {}), '(w, sigma_w)\n', (994, 1006), True, 'import tensorflow as tf\n'), ((1022, 1047), 'tensorflow.reshape', 'tf.reshape', (['w_sn', 'w_shape'], {}), '(w_sn, w_shape)\n', (1032, 1047), True, 'import tensorflow as tf\n'), ((1261, 1299), 'tensorflow.contrib.layers.xavier_initializer', 'tf.contrib.layers.xavier_initializer', ([], {}), '()\n', (1297, 1299), True, 'import tensorflow as tf\n'), ((2317, 2370), 'tensorflow.layers.dense', 'tf.layers.dense', (['h4'], {'units': '(1)', 'kernel_initializer': 'init'}), '(h4, units=1, kernel_initializer=init)\n', (2332, 2370), True, 'import tensorflow as tf\n'), ((2608, 2646), 'tensorflow.contrib.layers.xavier_initializer', 'tf.contrib.layers.xavier_initializer', ([], {}), '()\n', (2644, 2646), True, 'import tensorflow as tf\n'), ((4201, 4239), 'tensorflow.contrib.layers.xavier_initializer', 'tf.contrib.layers.xavier_initializer', ([], {}), '()\n', (4237, 4239), True, 'import tensorflow as tf\n'), ((4591, 4615), 'tensorflow.nn.moments', 'tf.nn.moments', (['x'], {'axes': '(0)'}), '(x, axes=0)\n', (4604, 4615), True, 'import tensorflow as tf\n'), ((4640, 4664), 'tensorflow.nn.moments', 'tf.nn.moments', (['y'], {'axes': '(0)'}), '(y, axes=0)\n', (4653, 4664), True, 'import tensorflow as tf\n'), ((4701, 4731), 'tensorflow.nn.moments', 'tf.nn.moments', (['y_prime'], {'axes': '(0)'}), '(y_prime, axes=0)\n', (4714, 4731), True, 'import tensorflow as tf\n'), ((5104, 5129), 'tensorflow.concat', 'tf.concat', (['[x, y]'], {'axis': '(1)'}), '([x, y], axis=1)\n', (5113, 5129), True, 'import tensorflow as tf\n'), ((5147, 5178), 'tensorflow.concat', 'tf.concat', (['[x, y_prime]'], {'axis': '(1)'}), '([x, y_prime], axis=1)\n', (5156, 5178), True, 'import tensorflow as tf\n'), ((11118, 11156), 'tensorflow.contrib.layers.xavier_initializer', 'tf.contrib.layers.xavier_initializer', ([], {}), '()\n', (11154, 11156), True, 'import tensorflow as tf\n'), ((11481, 11506), 'tensorflow.concat', 'tf.concat', (['[x, y]'], {'axis': '(1)'}), '([x, y], axis=1)\n', (11490, 11506), True, 'import tensorflow as tf\n'), ((11524, 11555), 'tensorflow.concat', 'tf.concat', (['[x, y_prime]'], {'axis': '(1)'}), '([x, y_prime], axis=1)\n', (11533, 11555), True, 'import tensorflow as tf\n'), ((296, 339), 'tensorflow.variable_scope', 'tf.variable_scope', (['"""u"""'], {'reuse': 'tf.AUTO_REUSE'}), "('u', reuse=tf.AUTO_REUSE)\n", (313, 339), True, 'import tensorflow as tf\n'), ((626, 645), 'tensorflow.matmul', 'tf.matmul', (['v_hat', 'w'], {}), '(v_hat, w)\n', (635, 645), True, 'import tensorflow as tf\n'), ((746, 764), 'tensorflow.identity', 'tf.identity', (['u_hat'], {}), '(u_hat)\n', (757, 764), True, 'import tensorflow as tf\n'), ((1571, 1633), 'tensorflow.variable_scope', 'tf.variable_scope', (['name'], {'initializer': 'init', 'reuse': 'tf.AUTO_REUSE'}), '(name, initializer=init, reuse=tf.AUTO_REUSE)\n', (1588, 1633), True, 'import tensorflow as tf\n'), ((1661, 1712), 'tensorflow.layers.dense', 'tf.layers.dense', (['x'], {'units': 'shape[0]', 'activation': 'actv'}), '(x, units=shape[0], activation=actv)\n', (1676, 1712), True, 'import tensorflow as tf\n'), ((1730, 1773), 'tensorflow.layers.batch_normalization', 'tf.layers.batch_normalization', (['h0'], {}), '(h0, **kwargs)\n', (1759, 1773), True, 'import tensorflow as tf\n'), ((1792, 1844), 'tensorflow.layers.dense', 'tf.layers.dense', (['h0'], {'units': 'shape[1]', 'activation': 'actv'}), '(h0, units=shape[1], activation=actv)\n', (1807, 1844), True, 'import tensorflow as tf\n'), ((1862, 1905), 'tensorflow.layers.batch_normalization', 'tf.layers.batch_normalization', (['h1'], {}), '(h1, **kwargs)\n', (1891, 1905), True, 'import tensorflow as tf\n'), ((1924, 1976), 'tensorflow.layers.dense', 'tf.layers.dense', (['h1'], {'units': 'shape[2]', 'activation': 'actv'}), '(h1, units=shape[2], activation=actv)\n', (1939, 1976), True, 'import tensorflow as tf\n'), ((1994, 2037), 'tensorflow.layers.batch_normalization', 'tf.layers.batch_normalization', (['h2'], {}), '(h2, **kwargs)\n', (2023, 2037), True, 'import tensorflow as tf\n'), ((2056, 2108), 'tensorflow.layers.dense', 'tf.layers.dense', (['h2'], {'units': 'shape[3]', 'activation': 'actv'}), '(h2, units=shape[3], activation=actv)\n', (2071, 2108), True, 'import tensorflow as tf\n'), ((2126, 2169), 'tensorflow.layers.batch_normalization', 'tf.layers.batch_normalization', (['h3'], {}), '(h3, **kwargs)\n', (2155, 2169), True, 'import tensorflow as tf\n'), ((2188, 2240), 'tensorflow.layers.dense', 'tf.layers.dense', (['h3'], {'units': 'shape[3]', 'activation': 'actv'}), '(h3, units=shape[3], activation=actv)\n', (2203, 2240), True, 'import tensorflow as tf\n'), ((2258, 2301), 'tensorflow.layers.batch_normalization', 'tf.layers.batch_normalization', (['h4'], {}), '(h4, **kwargs)\n', (2287, 2301), True, 'import tensorflow as tf\n'), ((2938, 3000), 'tensorflow.variable_scope', 'tf.variable_scope', (['name'], {'initializer': 'init', 'reuse': 'tf.AUTO_REUSE'}), '(name, initializer=init, reuse=tf.AUTO_REUSE)\n', (2955, 3000), True, 'import tensorflow as tf\n'), ((3028, 3079), 'tensorflow.layers.dense', 'tf.layers.dense', (['x'], {'units': 'shape[0]', 'activation': 'None'}), '(x, units=shape[0], activation=None)\n', (3043, 3079), True, 'import tensorflow as tf\n'), ((3160, 3237), 'tensorflow.contrib.layers.layer_norm', 'tf.contrib.layers.layer_norm', (['h0'], {'center': '(True)', 'scale': '(True)', 'activation_fn': 'actv'}), '(h0, center=True, scale=True, activation_fn=actv)\n', (3188, 3237), True, 'import tensorflow as tf\n'), ((3632, 3692), 'tensorflow.layers.dense', 'tf.layers.dense', (['h'], {'units': 'n_classes', 'kernel_initializer': 'init'}), '(h, units=n_classes, kernel_initializer=init)\n', (3647, 3692), True, 'import tensorflow as tf\n'), ((5065, 5090), 'tensorflow.expand_dims', 'tf.expand_dims', (['x'], {'axis': '(1)'}), '(x, axis=1)\n', (5079, 5090), True, 'import tensorflow as tf\n'), ((6726, 6739), 'tensorflow.squeeze', 'tf.squeeze', (['x'], {}), '(x)\n', (6736, 6739), True, 'import tensorflow as tf\n'), ((6760, 6776), 'tensorflow.reduce_max', 'tf.reduce_max', (['x'], {}), '(x)\n', (6773, 6776), True, 'import tensorflow as tf\n'), ((7834, 7845), 'tensorflow.log', 'tf.log', (['(4.0)'], {}), '(4.0)\n', (7840, 7845), True, 'import tensorflow as tf\n'), ((8993, 9026), 'tensorflow.matmul', 'tf.matmul', (['X', 'X'], {'transpose_b': '(True)'}), '(X, X, transpose_b=True)\n', (9002, 9026), True, 'import tensorflow as tf\n'), ((9044, 9077), 'tensorflow.matmul', 'tf.matmul', (['X', 'Y'], {'transpose_b': '(True)'}), '(X, Y, transpose_b=True)\n', (9053, 9077), True, 'import tensorflow as tf\n'), ((9095, 9128), 'tensorflow.matmul', 'tf.matmul', (['Y', 'Y'], {'transpose_b': '(True)'}), '(Y, Y, transpose_b=True)\n', (9104, 9128), True, 'import tensorflow as tf\n'), ((9252, 9282), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['(X ** 2)'], {'axis': '(-1)'}), '(X ** 2, axis=-1)\n', (9265, 9282), True, 'import tensorflow as tf\n'), ((9304, 9334), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['(Y ** 2)'], {'axis': '(-1)'}), '(Y ** 2, axis=-1)\n', (9317, 9334), True, 'import tensorflow as tf\n'), ((10241, 10274), 'tensorflow.matmul', 'tf.matmul', (['X', 'X'], {'transpose_b': '(True)'}), '(X, X, transpose_b=True)\n', (10250, 10274), True, 'import tensorflow as tf\n'), ((10292, 10325), 'tensorflow.matmul', 'tf.matmul', (['X', 'Y'], {'transpose_b': '(True)'}), '(X, Y, transpose_b=True)\n', (10301, 10325), True, 'import tensorflow as tf\n'), ((10343, 10376), 'tensorflow.matmul', 'tf.matmul', (['Y', 'Y'], {'transpose_b': '(True)'}), '(Y, Y, transpose_b=True)\n', (10352, 10376), True, 'import tensorflow as tf\n'), ((10401, 10431), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['(X ** 2)'], {'axis': '(-1)'}), '(X ** 2, axis=-1)\n', (10414, 10431), True, 'import tensorflow as tf\n'), ((10453, 10483), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['(Y ** 2)'], {'axis': '(-1)'}), '(Y ** 2, axis=-1)\n', (10466, 10483), True, 'import tensorflow as tf\n'), ((11442, 11467), 'tensorflow.expand_dims', 'tf.expand_dims', (['x'], {'axis': '(1)'}), '(x, axis=1)\n', (11456, 11467), True, 'import tensorflow as tf\n'), ((11924, 11937), 'tensorflow.sqrt', 'tf.sqrt', (['mmd2'], {}), '(mmd2)\n', (11931, 11937), True, 'import tensorflow as tf\n'), ((573, 588), 'tensorflow.transpose', 'tf.transpose', (['w'], {}), '(w)\n', (585, 588), True, 'import tensorflow as tf\n'), ((3352, 3415), 'tensorflow.layers.dense', 'tf.layers.dense', (['h'], {'units': 'shape[current_layer]', 'activation': 'None'}), '(h, units=shape[current_layer], activation=None)\n', (3367, 3415), True, 'import tensorflow as tf\n'), ((3501, 3577), 'tensorflow.contrib.layers.layer_norm', 'tf.contrib.layers.layer_norm', (['h'], {'center': '(True)', 'scale': '(True)', 'activation_fn': 'actv'}), '(h, center=True, scale=True, activation_fn=actv)\n', (3529, 3577), True, 'import tensorflow as tf\n'), ((4945, 4970), 'tensorflow.expand_dims', 'tf.expand_dims', (['y'], {'axis': '(1)'}), '(y, axis=1)\n', (4959, 4970), True, 'import tensorflow as tf\n'), ((4972, 5003), 'tensorflow.expand_dims', 'tf.expand_dims', (['y_prime'], {'axis': '(1)'}), '(y_prime, axis=1)\n', (4986, 5003), True, 'import tensorflow as tf\n'), ((5744, 5798), 'tensorflow.variable_scope', 'tf.variable_scope', (['name'], {'initializer': 'init', 'reuse': 'reuse'}), '(name, initializer=init, reuse=reuse)\n', (5761, 5798), True, 'import tensorflow as tf\n'), ((5831, 5924), 'tensorflow.layers.dense', 'tf.layers.dense', (['t'], {'units': 'shape[0]', 'activation': 'None', 'kernel_constraint': 'kernel_constraint'}), '(t, units=shape[0], activation=None, kernel_constraint=\n kernel_constraint)\n', (5846, 5924), True, 'import tensorflow as tf\n'), ((6033, 6110), 'tensorflow.contrib.layers.layer_norm', 'tf.contrib.layers.layer_norm', (['h0'], {'center': '(True)', 'scale': '(True)', 'activation_fn': 'actv'}), '(h0, center=True, scale=True, activation_fn=actv)\n', (6061, 6110), True, 'import tensorflow as tf\n'), ((6534, 6586), 'tensorflow.layers.dense', 'tf.layers.dense', (['h'], {'units': '(1)', 'kernel_initializer': 'init'}), '(h, units=1, kernel_initializer=init)\n', (6549, 6586), True, 'import tensorflow as tf\n'), ((6912, 6930), 'tensorflow.log', 'tf.log', (['batch_size'], {}), '(batch_size)\n', (6918, 6930), True, 'import tensorflow as tf\n'), ((7348, 7371), 'tensorflow.reduce_mean', 'tf.reduce_mean', (['joint_f'], {}), '(joint_f)\n', (7362, 7371), True, 'import tensorflow as tf\n'), ((9365, 9385), 'tensorflow.expand_dims', 'tf.expand_dims', (['x', '(0)'], {}), '(x, 0)\n', (9379, 9385), True, 'import tensorflow as tf\n'), ((9416, 9436), 'tensorflow.expand_dims', 'tf.expand_dims', (['x', '(1)'], {}), '(x, 1)\n', (9430, 9436), True, 'import tensorflow as tf\n'), ((10514, 10534), 'tensorflow.expand_dims', 'tf.expand_dims', (['x', '(0)'], {}), '(x, 0)\n', (10528, 10534), True, 'import tensorflow as tf\n'), ((10565, 10585), 'tensorflow.expand_dims', 'tf.expand_dims', (['x', '(1)'], {}), '(x, 1)\n', (10579, 10585), True, 'import tensorflow as tf\n'), ((11322, 11347), 'tensorflow.expand_dims', 'tf.expand_dims', (['y'], {'axis': '(1)'}), '(y, axis=1)\n', (11336, 11347), True, 'import tensorflow as tf\n'), ((11349, 11380), 'tensorflow.expand_dims', 'tf.expand_dims', (['y_prime'], {'axis': '(1)'}), '(y_prime, axis=1)\n', (11363, 11380), True, 'import tensorflow as tf\n'), ((460, 493), 'tensorflow.truncated_normal_initializer', 'tf.truncated_normal_initializer', ([], {}), '()\n', (491, 493), True, 'import tensorflow as tf\n'), ((686, 722), 'tensorflow.assign', 'tf.assign', (['u', 'u_hat'], {'name': '"""update_u"""'}), "(u, u_hat, name='update_u')\n", (695, 722), True, 'import tensorflow as tf\n'), ((906, 925), 'tensorflow.transpose', 'tf.transpose', (['u_hat'], {}), '(u_hat)\n', (918, 925), True, 'import tensorflow as tf\n'), ((6242, 6346), 'tensorflow.layers.dense', 'tf.layers.dense', (['h'], {'units': 'shape[current_layer]', 'activation': 'None', 'kernel_constraint': 'kernel_constraint'}), '(h, units=shape[current_layer], activation=None,\n kernel_constraint=kernel_constraint)\n', (6257, 6346), True, 'import tensorflow as tf\n'), ((6395, 6471), 'tensorflow.contrib.layers.layer_norm', 'tf.contrib.layers.layer_norm', (['h'], {'center': '(True)', 'scale': '(True)', 'activation_fn': 'actv'}), '(h, center=True, scale=True, activation_fn=actv)\n', (6423, 6471), True, 'import tensorflow as tf\n'), ((7428, 7459), 'tensorflow.cast', 'tf.cast', (['batch_size', 'tf.float32'], {}), '(batch_size, tf.float32)\n', (7435, 7459), True, 'import tensorflow as tf\n'), ((7606, 7627), 'tensorflow.ones_like', 'tf.ones_like', (['joint_f'], {}), '(joint_f)\n', (7618, 7627), True, 'import tensorflow as tf\n'), ((7747, 7772), 'tensorflow.zeros_like', 'tf.zeros_like', (['marginal_f'], {}), '(marginal_f)\n', (7760, 7772), True, 'import tensorflow as tf\n'), ((9772, 9791), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['K_YY'], {}), '(K_YY)\n', (9785, 9791), True, 'import tensorflow as tf\n'), ((11050, 11069), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['K_YY'], {}), '(K_YY)\n', (11063, 11069), True, 'import tensorflow as tf\n'), ((11234, 11255), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['labels'], {}), '(labels)\n', (11247, 11255), True, 'import tensorflow as tf\n'), ((9709, 9728), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['K_XX'], {}), '(K_XX)\n', (9722, 9728), True, 'import tensorflow as tf\n'), ((10987, 11006), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['K_XX'], {}), '(K_XX)\n', (11000, 11006), True, 'import tensorflow as tf\n'), ((6892, 6909), 'tensorflow.exp', 'tf.exp', (['(x - x_max)'], {}), '(x - x_max)\n', (6898, 6909), True, 'import tensorflow as tf\n'), ((9742, 9761), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['K_XY'], {}), '(K_XY)\n', (9755, 9761), True, 'import tensorflow as tf\n'), ((11020, 11039), 'tensorflow.reduce_sum', 'tf.reduce_sum', (['K_XY'], {}), '(K_XY)\n', (11033, 11039), True, 'import tensorflow as tf\n')]
import os from tkinter import * from tkinter import messagebox from pytube import YouTube, exceptions app = Tk() # Inicia o programa app.title("Youtube Downloader") # Título do programa. app.geometry("600x400") # Dimensão do programa. # app.configure(background="#334") # Configurações de cor. # <------------------- Criando os componentes do programa.-------------------> # LOGO lblLogo = Label(app, text="Youtube Downloader", background="red", foreground="white", font="Arial") lblLogo.pack(fill=X) # Pega a URL lblUrl = Label(app, text="Insira o link:", font="Arial") lblUrl.place(x=10, y=80, width=150, height=30) url = Entry(app) url.place(x=170, y=80, width=400, height=30) url.focus() # Escolha do formato (Vídeo ou Áudio) lblFormat = Label(app, text="Formato: ", font="Arial") lblFormat.pack(fill=X, expand=True) lblFormat.place( x=10, y=120, width=150, height=50) listaFormato = ["Vídeo", "Áudio"] varFormato = StringVar() varFormato.set(listaFormato[0]) opMenu = OptionMenu(app, varFormato, *listaFormato) opMenu.pack(fill=X, expand=True) opMenu.place(x=170, y=120, width=150, height=50) # < ------------------ Função ao clicar em "BAIXAR" --------------------------> def baixar(): varForm = varFormato.get() # Associando variável à escolha. link = url.get() # Associando variável à URL try: yt = YouTube(link) # Associando variável à url except exceptions.RegexMatchError: # Tratamente de erro do link messagebox.showerror(title="ERRO DE LINK!", message="Verifique o link e tente novamente!").center() except exceptions.VideoUnavailable: messagebox.showerror(title="LINK INACESSÍVEL!", message="Verifique o link e tente novamente!").center() else: if varForm == listaFormato[0]: # Vídeo ys = yt.streams.get_highest_resolution() ys.download() else: # Áudio ys = yt.streams.get_audio_only() ys.download() msg = f"O arquivo foi salvo em: {os.getcwd()}" messagebox.showinfo(title="Download Concluído!", message=msg) # < ------------------------------------------------------------------> Button(app, text="Baixar Arquivo", font="Arial", activebackground="#c4302b", activeforeground="white", background="#333", foreground="white", borderwidth=8, command=baixar).place( x=200, y=250, width=200, height=50) app.mainloop()
[ "tkinter.messagebox.showerror", "tkinter.messagebox.showinfo", "pytube.YouTube", "os.getcwd" ]
[((1372, 1385), 'pytube.YouTube', 'YouTube', (['link'], {}), '(link)\n', (1379, 1385), False, 'from pytube import YouTube, exceptions\n'), ((2108, 2169), 'tkinter.messagebox.showinfo', 'messagebox.showinfo', ([], {'title': '"""Download Concluído!"""', 'message': 'msg'}), "(title='Download Concluído!', message=msg)\n", (2127, 2169), False, 'from tkinter import messagebox\n'), ((2085, 2096), 'os.getcwd', 'os.getcwd', ([], {}), '()\n', (2094, 2096), False, 'import os\n'), ((1500, 1595), 'tkinter.messagebox.showerror', 'messagebox.showerror', ([], {'title': '"""ERRO DE LINK!"""', 'message': '"""Verifique o link e tente novamente!"""'}), "(title='ERRO DE LINK!', message=\n 'Verifique o link e tente novamente!')\n", (1520, 1595), False, 'from tkinter import messagebox\n'), ((1677, 1776), 'tkinter.messagebox.showerror', 'messagebox.showerror', ([], {'title': '"""LINK INACESSÍVEL!"""', 'message': '"""Verifique o link e tente novamente!"""'}), "(title='LINK INACESSÍVEL!', message=\n 'Verifique o link e tente novamente!')\n", (1697, 1776), False, 'from tkinter import messagebox\n')]
from model.group import Group import random __author__ = 'Pysarev' def test_edit_first_group(app, db, check_ui): if len(db.get_group_list()) == 0: app.group.create(Group(name="Edit_test")) old_groups = db.get_group_list() old_group=random.choice(old_groups) edit_group = Group(name="edited2", footer="edited2") edit_group.id = old_group.id app.group.edit_group_by_id(edit_group.id, edit_group) new_groups = db.get_group_list() assert len(old_groups) == len(new_groups) old_groups_to_compare = [edit_group if group.id == edit_group.id else group for group in old_groups] assert old_groups_to_compare == new_groups if check_ui: def clean(group): return Group(id=group.id, name=group.name.strip()) ui_list = map(clean, new_groups) assert sorted(ui_list, key=Group.id_or_max) == sorted(app.group.get_group_list(), key=Group.id_or_max)
[ "model.group.Group", "random.choice" ]
[((254, 279), 'random.choice', 'random.choice', (['old_groups'], {}), '(old_groups)\n', (267, 279), False, 'import random\n'), ((297, 336), 'model.group.Group', 'Group', ([], {'name': '"""edited2"""', 'footer': '"""edited2"""'}), "(name='edited2', footer='edited2')\n", (302, 336), False, 'from model.group import Group\n'), ((178, 201), 'model.group.Group', 'Group', ([], {'name': '"""Edit_test"""'}), "(name='Edit_test')\n", (183, 201), False, 'from model.group import Group\n')]
# encoding: utf-8 import pyxel pyxel.init(160, 120, caption="Pong") # **** Számold a pontokat! **** # Legyen az app osztálynak egy-egy mezője, ami a jobb ill. bal # játékos pontját tárolja. # Legyen az app osztálynak egy-egy metódusa, ami a jobb ill. bal # játékos pontszerzését kezeli le. # Egy pont után induljon a labda újra középről, a nyert játékos # irányába. # Írd ki a pontokat! class Labda: def __init__(self, x, y): self.x = x self.y = y self.sebx = 1 self.seby = 1 def update(self): # ütközés if self.x > 160 - 6: if app.jobb_uto.rajta_van(self.y): self.sebx = -self.sebx if self.y > 120 - 6: self.seby = -self.seby if self.x < 6: if app.bal_uto.rajta_van(self.y): self.sebx = -self.sebx if self.y < 6: self.seby = -self.seby # labda mozgatása self.x = self.x + self.sebx self.y = self.y + self.seby def draw(self): pyxel.circ(self.x, self.y, 4, 8) class Uto: def __init__(self, x, up, down): self.y = 60 self.x = x self.up = up self.down = down def update(self): if pyxel.btn(self.up): self.y = self.y - 1 if pyxel.btn(self.down): self.y = self.y + 1 def draw(self): pyxel.rect(self.x, self.y - 20/2, 3, 20, 9) def rajta_van(self, y): return self.y-20/2 < y < self.y+20/2 class App: def __init__(self): self.labda = Labda(80, 60) self.bal_uto = Uto(0, pyxel.KEY_W, pyxel.KEY_S) self.jobb_uto = Uto(160-3, pyxel.KEY_I, pyxel.KEY_K) def update(self): self.labda.update() self.bal_uto.update() self.jobb_uto.update() def draw(self): pyxel.cls(0) self.labda.draw() self.bal_uto.draw() self.jobb_uto.draw() app = App() pyxel.run(app.update, app.draw)
[ "pyxel.rect", "pyxel.circ", "pyxel.init", "pyxel.run", "pyxel.btn", "pyxel.cls" ]
[((31, 67), 'pyxel.init', 'pyxel.init', (['(160)', '(120)'], {'caption': '"""Pong"""'}), "(160, 120, caption='Pong')\n", (41, 67), False, 'import pyxel\n'), ((1908, 1939), 'pyxel.run', 'pyxel.run', (['app.update', 'app.draw'], {}), '(app.update, app.draw)\n', (1917, 1939), False, 'import pyxel\n'), ((1004, 1036), 'pyxel.circ', 'pyxel.circ', (['self.x', 'self.y', '(4)', '(8)'], {}), '(self.x, self.y, 4, 8)\n', (1014, 1036), False, 'import pyxel\n'), ((1206, 1224), 'pyxel.btn', 'pyxel.btn', (['self.up'], {}), '(self.up)\n', (1215, 1224), False, 'import pyxel\n'), ((1269, 1289), 'pyxel.btn', 'pyxel.btn', (['self.down'], {}), '(self.down)\n', (1278, 1289), False, 'import pyxel\n'), ((1351, 1396), 'pyxel.rect', 'pyxel.rect', (['self.x', '(self.y - 20 / 2)', '(3)', '(20)', '(9)'], {}), '(self.x, self.y - 20 / 2, 3, 20, 9)\n', (1361, 1396), False, 'import pyxel\n'), ((1798, 1810), 'pyxel.cls', 'pyxel.cls', (['(0)'], {}), '(0)\n', (1807, 1810), False, 'import pyxel\n')]
from vulkan import vk, helpers as hvk class Renderer(object): def __init__(self, engine): self.engine = engine self.image_ready = None self.rendering_done = None self.render_fences = () self.render_cache = {} self.enabled = True self._setup_sync() self._setup_render_cache() def free(self): engine, api, device = self.ctx hvk.destroy_semaphore(api, device, self.image_ready) hvk.destroy_semaphore(api, device, self.rendering_done) for f in self.render_fences: hvk.destroy_fence(api, device, f) del self.engine @property def ctx(self): engine = self.engine api, device = engine.api, engine.device return engine, api, device def render(self, scene_data): if not self.enabled: return h = hvk engine, api, device = self.ctx render_queue = engine.render_queue.handle rc = self.render_cache image_index, result = h.acquire_next_image(api, device, engine.swapchain, semaphore = self.image_ready) fence = self.render_fences[image_index] h.wait_for_fences(api, device, (fence,)) h.reset_fences(api, device, (fence,)) scene_data.record(image_index) submit = rc["submit_info"] submit.command_buffers[0] = scene_data.render_commands[image_index] h.queue_submit(api, render_queue, (submit,), fence = fence) present = rc["present_info"] present.image_indices[0] = image_index h.queue_present(api, render_queue, present) def enable(self): self.enabled = True def disable(self): _, api, device = self.ctx hvk.device_wait_idle(api, device) self.enabled = False def _setup_sync(self): engine, api, device = self.ctx info = hvk.semaphore_create_info() self.image_ready = hvk.create_semaphore(api, device, info) self.rendering_done = hvk.create_semaphore(api, device, info) self.render_fences = [] info = hvk.fence_create_info(flags=vk.FENCE_CREATE_SIGNALED_BIT) for _ in range(len(engine.render_target.swapchain_images)): self.render_fences.append(hvk.create_fence(api, device, info)) def _setup_render_cache(self): engine = self.engine self.render_cache["submit_info"] = hvk.submit_info( wait_dst_stage_mask = (vk.PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT,), wait_semaphores = (self.image_ready,), signal_semaphores = (self.rendering_done,), command_buffers = (0,) ) self.render_cache["present_info"] = hvk.present_info( swapchains = (engine.swapchain,), image_indices = (0,), wait_semaphores = (self.rendering_done,) )
[ "vulkan.helpers.create_fence", "vulkan.helpers.device_wait_idle", "vulkan.helpers.destroy_semaphore", "vulkan.helpers.present_info", "vulkan.helpers.create_semaphore", "vulkan.helpers.destroy_fence", "vulkan.helpers.semaphore_create_info", "vulkan.helpers.fence_create_info", "vulkan.helpers.submit_i...
[((417, 469), 'vulkan.helpers.destroy_semaphore', 'hvk.destroy_semaphore', (['api', 'device', 'self.image_ready'], {}), '(api, device, self.image_ready)\n', (438, 469), True, 'from vulkan import vk, helpers as hvk\n'), ((478, 533), 'vulkan.helpers.destroy_semaphore', 'hvk.destroy_semaphore', (['api', 'device', 'self.rendering_done'], {}), '(api, device, self.rendering_done)\n', (499, 533), True, 'from vulkan import vk, helpers as hvk\n'), ((1740, 1773), 'vulkan.helpers.device_wait_idle', 'hvk.device_wait_idle', (['api', 'device'], {}), '(api, device)\n', (1760, 1773), True, 'from vulkan import vk, helpers as hvk\n'), ((1885, 1912), 'vulkan.helpers.semaphore_create_info', 'hvk.semaphore_create_info', ([], {}), '()\n', (1910, 1912), True, 'from vulkan import vk, helpers as hvk\n'), ((1949, 1988), 'vulkan.helpers.create_semaphore', 'hvk.create_semaphore', (['api', 'device', 'info'], {}), '(api, device, info)\n', (1969, 1988), True, 'from vulkan import vk, helpers as hvk\n'), ((2019, 2058), 'vulkan.helpers.create_semaphore', 'hvk.create_semaphore', (['api', 'device', 'info'], {}), '(api, device, info)\n', (2039, 2058), True, 'from vulkan import vk, helpers as hvk\n'), ((2107, 2164), 'vulkan.helpers.fence_create_info', 'hvk.fence_create_info', ([], {'flags': 'vk.FENCE_CREATE_SIGNALED_BIT'}), '(flags=vk.FENCE_CREATE_SIGNALED_BIT)\n', (2128, 2164), True, 'from vulkan import vk, helpers as hvk\n'), ((2417, 2617), 'vulkan.helpers.submit_info', 'hvk.submit_info', ([], {'wait_dst_stage_mask': '(vk.PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT,)', 'wait_semaphores': '(self.image_ready,)', 'signal_semaphores': '(self.rendering_done,)', 'command_buffers': '(0,)'}), '(wait_dst_stage_mask=(vk.\n PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT,), wait_semaphores=(self.\n image_ready,), signal_semaphores=(self.rendering_done,),\n command_buffers=(0,))\n', (2432, 2617), True, 'from vulkan import vk, helpers as hvk\n'), ((2715, 2827), 'vulkan.helpers.present_info', 'hvk.present_info', ([], {'swapchains': '(engine.swapchain,)', 'image_indices': '(0,)', 'wait_semaphores': '(self.rendering_done,)'}), '(swapchains=(engine.swapchain,), image_indices=(0,),\n wait_semaphores=(self.rendering_done,))\n', (2731, 2827), True, 'from vulkan import vk, helpers as hvk\n'), ((584, 617), 'vulkan.helpers.destroy_fence', 'hvk.destroy_fence', (['api', 'device', 'f'], {}), '(api, device, f)\n', (601, 617), True, 'from vulkan import vk, helpers as hvk\n'), ((2271, 2306), 'vulkan.helpers.create_fence', 'hvk.create_fence', (['api', 'device', 'info'], {}), '(api, device, info)\n', (2287, 2306), True, 'from vulkan import vk, helpers as hvk\n')]
# Display the ip's from all network interfaces on the display import time import Adafruit_Nokia_LCD as LCD import Adafruit_GPIO.SPI as SPI import netifaces from PIL import Image from PIL import ImageDraw from PIL import ImageFont # Raspberry Pi hardware SPI config: DC = 23 RST = 24 SPI_PORT = 0 SPI_DEVICE = 0 # Raspberry Pi software SPI config: # SCLK = 4 # DIN = 17 # DC = 23 # RST = 24 # CS = 8 # Beaglebone Black hardware SPI config: # DC = 'P9_15' # RST = 'P9_12' # SPI_PORT = 1 # SPI_DEVICE = 0 # Beaglebone Black software SPI config: # DC = 'P9_15' # RST = 'P9_12' # SCLK = 'P8_7' # DIN = 'P8_9' # CS = 'P8_11' # Hardware SPI usage: disp = LCD.PCD8544(DC, RST, spi=SPI.SpiDev(SPI_PORT, SPI_DEVICE, max_speed_hz=4000000)) # Software SPI usage (defaults to bit-bang SPI interface): #disp = LCD.PCD8544(DC, RST, SCLK, DIN, CS) # Initialize library. disp.begin(contrast=60) # Clear display. disp.clear() disp.display() # Create blank image for drawing. # Make sure to create image with mode '1' for 1-bit color. image = Image.new('1', (LCD.LCDWIDTH, LCD.LCDHEIGHT)) # Get drawing object to draw on image. draw = ImageDraw.Draw(image) # Draw a white filled box to clear the image. draw.rectangle((0,0,LCD.LCDWIDTH,LCD.LCDHEIGHT), outline=255, fill=255) # Load default font. font = ImageFont.load_default() # Refresh the ip's every second. while True: disp.clear(); # Draw a white filled box to clear the image. draw.rectangle((0,0,LCD.LCDWIDTH,LCD.LCDHEIGHT), outline=255, fill=255) cnt = 0 for i in netifaces.interfaces(): try: ip = str(netifaces.ifaddresses(i)[2][0]['addr']) # only display interfaces which aren't local if ip != "127.0.0.1" : draw.text((1,10 * cnt), i, font=font) draw.text((6,10 * cnt + 10), ip, font=font) cnt += 2 except: continue # Display image. disp.image(image) disp.display() time.sleep(1.0)
[ "PIL.ImageFont.load_default", "PIL.Image.new", "time.sleep", "netifaces.ifaddresses", "PIL.ImageDraw.Draw", "netifaces.interfaces", "Adafruit_GPIO.SPI.SpiDev" ]
[((1037, 1082), 'PIL.Image.new', 'Image.new', (['"""1"""', '(LCD.LCDWIDTH, LCD.LCDHEIGHT)'], {}), "('1', (LCD.LCDWIDTH, LCD.LCDHEIGHT))\n", (1046, 1082), False, 'from PIL import Image\n'), ((1130, 1151), 'PIL.ImageDraw.Draw', 'ImageDraw.Draw', (['image'], {}), '(image)\n', (1144, 1151), False, 'from PIL import ImageDraw\n'), ((1300, 1324), 'PIL.ImageFont.load_default', 'ImageFont.load_default', ([], {}), '()\n', (1322, 1324), False, 'from PIL import ImageFont\n'), ((1526, 1548), 'netifaces.interfaces', 'netifaces.interfaces', ([], {}), '()\n', (1546, 1548), False, 'import netifaces\n'), ((1879, 1894), 'time.sleep', 'time.sleep', (['(1.0)'], {}), '(1.0)\n', (1889, 1894), False, 'import time\n'), ((682, 736), 'Adafruit_GPIO.SPI.SpiDev', 'SPI.SpiDev', (['SPI_PORT', 'SPI_DEVICE'], {'max_speed_hz': '(4000000)'}), '(SPI_PORT, SPI_DEVICE, max_speed_hz=4000000)\n', (692, 736), True, 'import Adafruit_GPIO.SPI as SPI\n'), ((1569, 1593), 'netifaces.ifaddresses', 'netifaces.ifaddresses', (['i'], {}), '(i)\n', (1590, 1593), False, 'import netifaces\n')]
import configparser from whatcha_readin.paths import WhatchaReadinPaths VERSION = "0.0.4" def get_config(): config_path = WhatchaReadinPaths.get_config_path() config = configparser.ConfigParser() config.read(config_path) return config
[ "configparser.ConfigParser", "whatcha_readin.paths.WhatchaReadinPaths.get_config_path" ]
[((130, 166), 'whatcha_readin.paths.WhatchaReadinPaths.get_config_path', 'WhatchaReadinPaths.get_config_path', ([], {}), '()\n', (164, 166), False, 'from whatcha_readin.paths import WhatchaReadinPaths\n'), ((180, 207), 'configparser.ConfigParser', 'configparser.ConfigParser', ([], {}), '()\n', (205, 207), False, 'import configparser\n')]
from bokeh.application.handlers import FunctionHandler, DirectoryHandler from bokeh.application import Application import numpy as np import holoviews as hv import boto3 from PIL import Image import holoviews.plotting.bokeh # important from bokeh.io import show, curdoc from bokeh.layouts import layout import io from holoviews.operation.datashader import datashade from bokeh.models import Slider, Button from marshmallow import Schema, fields, INCLUDE renderer = hv.renderer('bokeh').instance(mode='server') class BokehImageAppArgsSchema(Schema): bucket = fields.List(fields.String()) key = fields.List(fields.String()) height = fields.List(fields.Integer()) width = fields.List(fields.Integer()) # Define valid function for FunctionHandler # when deploying as script, simply attach to curdoc def modify_doc(doc): args = doc.session_context.request.arguments args_schema = BokehImageAppArgsSchema() loaded_args = args_schema.load(args, unknown=INCLUDE) bucket = loaded_args['bucket'][0] key = loaded_args['key'][0] s3 = boto3.resource('s3') bucket = s3.Bucket(bucket) object = bucket.Object(key) file_stream = io.BytesIO() object.download_fileobj(file_stream) pil_image = Image.open(file_stream) hv_img_plot = hv.Image(np.asarray(pil_image)).options( height=loaded_args['height'][0], width=loaded_args['width'][0]) # Create HoloViews plot and attach the document hvplot = renderer.get_plot(hv_img_plot, doc) # Combine the holoviews plot and widgets in a layout plot = layout([ [hvplot.state]], sizing_mode='fixed') doc.add_root(plot) return doc bokeh_image_app = Application(FunctionHandler(modify_doc))
[ "bokeh.layouts.layout", "PIL.Image.open", "holoviews.renderer", "bokeh.application.handlers.FunctionHandler", "io.BytesIO", "numpy.asarray", "boto3.resource", "marshmallow.fields.String", "marshmallow.fields.Integer" ]
[((1073, 1093), 'boto3.resource', 'boto3.resource', (['"""s3"""'], {}), "('s3')\n", (1087, 1093), False, 'import boto3\n'), ((1176, 1188), 'io.BytesIO', 'io.BytesIO', ([], {}), '()\n', (1186, 1188), False, 'import io\n'), ((1246, 1269), 'PIL.Image.open', 'Image.open', (['file_stream'], {}), '(file_stream)\n', (1256, 1269), False, 'from PIL import Image\n'), ((1572, 1617), 'bokeh.layouts.layout', 'layout', (['[[hvplot.state]]'], {'sizing_mode': '"""fixed"""'}), "([[hvplot.state]], sizing_mode='fixed')\n", (1578, 1617), False, 'from bokeh.layouts import layout\n'), ((1698, 1725), 'bokeh.application.handlers.FunctionHandler', 'FunctionHandler', (['modify_doc'], {}), '(modify_doc)\n', (1713, 1725), False, 'from bokeh.application.handlers import FunctionHandler, DirectoryHandler\n'), ((469, 489), 'holoviews.renderer', 'hv.renderer', (['"""bokeh"""'], {}), "('bokeh')\n", (480, 489), True, 'import holoviews as hv\n'), ((580, 595), 'marshmallow.fields.String', 'fields.String', ([], {}), '()\n', (593, 595), False, 'from marshmallow import Schema, fields, INCLUDE\n'), ((619, 634), 'marshmallow.fields.String', 'fields.String', ([], {}), '()\n', (632, 634), False, 'from marshmallow import Schema, fields, INCLUDE\n'), ((661, 677), 'marshmallow.fields.Integer', 'fields.Integer', ([], {}), '()\n', (675, 677), False, 'from marshmallow import Schema, fields, INCLUDE\n'), ((703, 719), 'marshmallow.fields.Integer', 'fields.Integer', ([], {}), '()\n', (717, 719), False, 'from marshmallow import Schema, fields, INCLUDE\n'), ((1298, 1319), 'numpy.asarray', 'np.asarray', (['pil_image'], {}), '(pil_image)\n', (1308, 1319), True, 'import numpy as np\n')]
# coding=utf-8 u""" User: xulin Date: 13-6-6 Time: 上午11:08 """ import datetime from sqlalchemy import Column, DateTime, text from sqlalchemy.ext.declarative import declarative_base class TBase(object): created_date = Column(DateTime, default=datetime.datetime.now) modified_date = Column(DateTime, default=datetime.datetime.now, onupdate=text('current_timestamp')) Base = declarative_base(cls=TBase) if __name__ == '__main__': pass
[ "sqlalchemy.text", "sqlalchemy.Column", "sqlalchemy.ext.declarative.declarative_base" ]
[((384, 411), 'sqlalchemy.ext.declarative.declarative_base', 'declarative_base', ([], {'cls': 'TBase'}), '(cls=TBase)\n', (400, 411), False, 'from sqlalchemy.ext.declarative import declarative_base\n'), ((223, 270), 'sqlalchemy.Column', 'Column', (['DateTime'], {'default': 'datetime.datetime.now'}), '(DateTime, default=datetime.datetime.now)\n', (229, 270), False, 'from sqlalchemy import Column, DateTime, text\n'), ((348, 373), 'sqlalchemy.text', 'text', (['"""current_timestamp"""'], {}), "('current_timestamp')\n", (352, 373), False, 'from sqlalchemy import Column, DateTime, text\n')]
#Script to demonstrate overwriting a service. import arcpy from sddraft_modifiers import HostedFeatureServiceProperties print("Imported ArcPy") # Initialize the variables mxd = r'E:\UC_demo\Publishing\advanced_publishing\Good_cartography.mxd' server_con = r'MY_HOSTED_SERVICES' service_name = "Fortune_500_companies" # Set output path sd_file = r'E:\UC_demo\Publishing\advanced_publishing\overwrite.sd' sddraft_file = r'E:\UC_demo\Publishing\advanced_publishing\overwrite.sddraft' # Create a service definition draft analysis_result = arcpy.mapping.CreateMapSDDraft(mxd, sddraft_file, service_name, server_con) print("Initial SDdraft file created") # Convert service type to Feature Service service_properties = HostedFeatureServiceProperties(sddraft_file) service_properties.change_to_feature_service() print("Service type changed to Hosted Feature Service") # Enable editing capability service_properties.modify_web_capabilities("Editing") print("Edit capability enabled") # Convert publishing operation as overwrite service_properties.modify_for_overwriting() print("Updated publishing operation as overwrite") # Stage and create Service Definition file arcpy.StageService_server(sddraft_file, sd_file) print("Service Definition file created") # Publish the SD file as a service arcpy.UploadServiceDefinition_server(sd_file, "My Hosted Services") print("Service published successfully")
[ "arcpy.mapping.CreateMapSDDraft", "arcpy.StageService_server", "arcpy.UploadServiceDefinition_server", "sddraft_modifiers.HostedFeatureServiceProperties" ]
[((553, 628), 'arcpy.mapping.CreateMapSDDraft', 'arcpy.mapping.CreateMapSDDraft', (['mxd', 'sddraft_file', 'service_name', 'server_con'], {}), '(mxd, sddraft_file, service_name, server_con)\n', (583, 628), False, 'import arcpy\n'), ((735, 779), 'sddraft_modifiers.HostedFeatureServiceProperties', 'HostedFeatureServiceProperties', (['sddraft_file'], {}), '(sddraft_file)\n', (765, 779), False, 'from sddraft_modifiers import HostedFeatureServiceProperties\n'), ((1196, 1244), 'arcpy.StageService_server', 'arcpy.StageService_server', (['sddraft_file', 'sd_file'], {}), '(sddraft_file, sd_file)\n', (1221, 1244), False, 'import arcpy\n'), ((1327, 1394), 'arcpy.UploadServiceDefinition_server', 'arcpy.UploadServiceDefinition_server', (['sd_file', '"""My Hosted Services"""'], {}), "(sd_file, 'My Hosted Services')\n", (1363, 1394), False, 'import arcpy\n')]
import dash_core_components as dcc import dash_html_components as html from dash.dependencies import Input, Output from quantr.maindash import app def make_layout(): return html.Div( [ dcc.Input(id="my-id", value="initial value", type="text"), html.Div(id="my-div"), ] ) @app.callback( Output(component_id="my-div", component_property="children"), [Input(component_id="my-id", component_property="value")], ) def update_output_div(input_value): return f"You've entered {input_value}"
[ "dash_core_components.Input", "dash.dependencies.Output", "dash_html_components.Div", "dash.dependencies.Input" ]
[((343, 403), 'dash.dependencies.Output', 'Output', ([], {'component_id': '"""my-div"""', 'component_property': '"""children"""'}), "(component_id='my-div', component_property='children')\n", (349, 403), False, 'from dash.dependencies import Input, Output\n'), ((410, 465), 'dash.dependencies.Input', 'Input', ([], {'component_id': '"""my-id"""', 'component_property': '"""value"""'}), "(component_id='my-id', component_property='value')\n", (415, 465), False, 'from dash.dependencies import Input, Output\n'), ((212, 269), 'dash_core_components.Input', 'dcc.Input', ([], {'id': '"""my-id"""', 'value': '"""initial value"""', 'type': '"""text"""'}), "(id='my-id', value='initial value', type='text')\n", (221, 269), True, 'import dash_core_components as dcc\n'), ((283, 304), 'dash_html_components.Div', 'html.Div', ([], {'id': '"""my-div"""'}), "(id='my-div')\n", (291, 304), True, 'import dash_html_components as html\n')]
#!/usr/bin/env python3 import RPi.GPIO as GPIO import subprocess import time from gpiozero import OutputDevice SLEEP_INTERVAL = 3 # (seconds) How often we check the core temperature. GPIO_PIN = 13 # Which GPIO pin you're using to control the fan. DEBUG_LOGGING = False def setup(): if DEBUG_LOGGING: print('Setting up GPIO...') global pwm GPIO.setmode(GPIO.BCM) GPIO.setup(GPIO_PIN, GPIO.OUT) GPIO.output(GPIO_PIN, GPIO.LOW) pwm = GPIO.PWM(GPIO_PIN, 25000) pwm.start(0) def get_temp(): output = subprocess.run(['vcgencmd', 'measure_temp'], capture_output=True) temp_str = output.stdout.decode() try: return float(temp_str.split('=')[1].split('\'')[0]) except (IndexError, ValueError): raise RuntimeError('Could not parse temperature output.') def loop(): temp = 0 while True: prevTemp = temp temp = get_temp() if DEBUG_LOGGING: print('Core temperature:', temp) if temp >= 70: if prevTemp < 70: pwm.ChangeDutyCycle(100) if DEBUG_LOGGING: print('Temp >= 70, setting fan speed to 100%. Previous temp: ', prevTemp) elif temp >= 60: if prevTemp < 60 or prevTemp >= 70: pwm.ChangeDutyCycle(80) if DEBUG_LOGGING: print('Temp >= 60, setting fan speed to 80%. Previous temp: ', prevTemp) elif temp >= 50: if prevTemp < 50 or prevTemp >= 60: pwm.ChangeDutyCycle(60) if DEBUG_LOGGING: print('Temp >= 50, setting fan speed to 60%, Previous temp: ', prevTemp) elif temp >= 40: if prevTemp < 40 or prevTemp >= 50: pwm.ChangeDutyCycle(40) if DEBUG_LOGGING: print('Temp >= 40, setting fan speed to 40%, Previous temp: ', prevTemp) elif temp >= 30: if prevTemp < 30 or prevTemp >= 40: pwm.ChangeDutyCycle(20) if DEBUG_LOGGING: print('Temp >= 30, setting fan speed to 20%, Previous temp: ', prevTemp) elif temp < 30: if prevTemp >= 30: pwm.ChangeDutyCycle(0) if DEBUG_LOGGING: print('Temp < 30, setting fan speed to 0%, Previous temp: ', prevTemp) time.sleep(SLEEP_INTERVAL) def destroy(): if DEBUG_LOGGING: print('Cleaning up GPIO...') pwm.stop() GPIO.output(GPIO_PIN, GPIO.LOW) GPIO.cleanup() if __name__ == '__main__': setup() if DEBUG_LOGGING: print('GPIO setup complete. Starting main loop...') try: loop() except KeyboardInterrupt: destroy()
[ "RPi.GPIO.cleanup", "RPi.GPIO.setup", "RPi.GPIO.output", "subprocess.run", "time.sleep", "RPi.GPIO.PWM", "RPi.GPIO.setmode" ]
[((357, 379), 'RPi.GPIO.setmode', 'GPIO.setmode', (['GPIO.BCM'], {}), '(GPIO.BCM)\n', (369, 379), True, 'import RPi.GPIO as GPIO\n'), ((384, 414), 'RPi.GPIO.setup', 'GPIO.setup', (['GPIO_PIN', 'GPIO.OUT'], {}), '(GPIO_PIN, GPIO.OUT)\n', (394, 414), True, 'import RPi.GPIO as GPIO\n'), ((419, 450), 'RPi.GPIO.output', 'GPIO.output', (['GPIO_PIN', 'GPIO.LOW'], {}), '(GPIO_PIN, GPIO.LOW)\n', (430, 450), True, 'import RPi.GPIO as GPIO\n'), ((461, 486), 'RPi.GPIO.PWM', 'GPIO.PWM', (['GPIO_PIN', '(25000)'], {}), '(GPIO_PIN, 25000)\n', (469, 486), True, 'import RPi.GPIO as GPIO\n'), ((534, 599), 'subprocess.run', 'subprocess.run', (["['vcgencmd', 'measure_temp']"], {'capture_output': '(True)'}), "(['vcgencmd', 'measure_temp'], capture_output=True)\n", (548, 599), False, 'import subprocess\n'), ((2365, 2396), 'RPi.GPIO.output', 'GPIO.output', (['GPIO_PIN', 'GPIO.LOW'], {}), '(GPIO_PIN, GPIO.LOW)\n', (2376, 2396), True, 'import RPi.GPIO as GPIO\n'), ((2401, 2415), 'RPi.GPIO.cleanup', 'GPIO.cleanup', ([], {}), '()\n', (2413, 2415), True, 'import RPi.GPIO as GPIO\n'), ((2252, 2278), 'time.sleep', 'time.sleep', (['SLEEP_INTERVAL'], {}), '(SLEEP_INTERVAL)\n', (2262, 2278), False, 'import time\n')]
import pytest import os import core.utils.csv as csv def test_csv(): test_headers = ['style','country'] test_dict = dict(style='Porter', country='United Kingdom') test_file = "beer.csv" try: csv.dict_writer(test_file, test_headers, test_dict) except: pass if os.path.exists(test_file): os.remove(test_file)
[ "os.path.exists", "core.utils.csv.dict_writer", "os.remove" ]
[((300, 325), 'os.path.exists', 'os.path.exists', (['test_file'], {}), '(test_file)\n', (314, 325), False, 'import os\n'), ((216, 267), 'core.utils.csv.dict_writer', 'csv.dict_writer', (['test_file', 'test_headers', 'test_dict'], {}), '(test_file, test_headers, test_dict)\n', (231, 267), True, 'import core.utils.csv as csv\n'), ((335, 355), 'os.remove', 'os.remove', (['test_file'], {}), '(test_file)\n', (344, 355), False, 'import os\n')]
# -*- coding: utf-8 -*- from __future__ import print_function import os import sys import argparse import numpy as np import quantities as pq import nptdms import axographio def tdms2axg(filename, force=False, verbose=True): """ Convert a TDMS file to an AxoGraph (AXGX) file """ if not os.path.isfile(filename): raise ValueError('error: file not found: ' + filename) if filename.split('.')[-1] != 'tdms': raise ValueError('error: file does not appear to be a TDMS file (does not end in ".tdms"): ' + filename) output_filename = '.'.join(filename.split('.')[:-1]) + '.axgx' if os.path.isfile(output_filename) and not force: raise OSError('error: output file exists, use force flag to overwrite: ' + output_filename) # read the TDMS file tdms_file = nptdms.TdmsFile.read(filename) group = tdms_file.groups()[0] # use only first group channels = group.channels() if verbose: print() print('Properties of "' + filename + '":') print() for name, value in tdms_file.properties.items(): print(str(name) + ': ' + str(value)) print() # collect the data for writing to AxoGraph format names = ['Time (s)'] columns = [axographio.aslinearsequence(channels[0].time_track())] # assume time is same for all columns for c in channels: # try to determine channel units unit_string = None if 'unit_string' in c.properties: u = c.properties['unit_string'] try: # test whether the unit is recognizable q = pq.Quantity(1, u) unit_string = u except LookupError: try: # try assuming its a simple compound unit (e.g., Nm = N*m) u = '*'.join(u) q = pq.Quantity(1, u) unit_string = u except LookupError: # unit string cannot be interpreted pass if unit_string: name = c.name + ' (' + unit_string + ')' else: name = c.name names += [name] columns += [c[:]] if verbose: print('Channel names:', names[1:]) print() # write the AxoGraph file if verbose: print('Writing contents to AxoGraph file "' + output_filename + '"...') f = axographio.file_contents(names, columns) f.write(output_filename) if verbose: print('Done!') return output_filename def parse_args(argv): description = """ A simple script for converting LabVIEW TDMS files to AxoGraph files. The AxoGraph (AXGX) file is saved with the same name and in the same directory as the TDMS file. By default, an existing AxoGraph file will not be overwritten; use --force to overwrite it. """ parser = argparse.ArgumentParser(description=description) parser.add_argument('file', help='the path to a TDMS file') parser.add_argument('-f', '--force', action='store_true', dest='force', help='overwrite the output file if it already exists') parser.add_argument('-q', '--quiet', action='store_false', dest='verbose', help='run silently') args = parser.parse_args(argv[1:]) return args def main(): args = parse_args(sys.argv) try: tdms2axg(args.file, args.force, args.verbose) except Exception as e: # skip the traceback when run from the command line print(e)
[ "argparse.ArgumentParser", "nptdms.TdmsFile.read", "quantities.Quantity", "os.path.isfile", "axographio.file_contents" ]
[((817, 847), 'nptdms.TdmsFile.read', 'nptdms.TdmsFile.read', (['filename'], {}), '(filename)\n', (837, 847), False, 'import nptdms\n'), ((2413, 2453), 'axographio.file_contents', 'axographio.file_contents', (['names', 'columns'], {}), '(names, columns)\n', (2437, 2453), False, 'import axographio\n'), ((2894, 2942), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {'description': 'description'}), '(description=description)\n', (2917, 2942), False, 'import argparse\n'), ((309, 333), 'os.path.isfile', 'os.path.isfile', (['filename'], {}), '(filename)\n', (323, 333), False, 'import os\n'), ((628, 659), 'os.path.isfile', 'os.path.isfile', (['output_filename'], {}), '(output_filename)\n', (642, 659), False, 'import os\n'), ((1620, 1637), 'quantities.Quantity', 'pq.Quantity', (['(1)', 'u'], {}), '(1, u)\n', (1631, 1637), True, 'import quantities as pq\n'), ((1862, 1879), 'quantities.Quantity', 'pq.Quantity', (['(1)', 'u'], {}), '(1, u)\n', (1873, 1879), True, 'import quantities as pq\n')]
""" Defines the Repository dictionary, which maps names to Cards """ from collections import defaultdict from mtg_mana_simulator.card import Card from mtg_mana_simulator.sequence import Sequence Repository = defaultdict(lambda: Card.filler) Repository['Arcane Signet'] = Card.untapped_rock(2, 1) Repository['Azorius Signet'] = Card.untapped_rock(2, 1) Repository['Boros Signet'] = Card.untapped_rock(2, 1) Repository['Golgari Signet'] = Card.untapped_rock(2, 1) Repository['Gruul Signet'] = Card.untapped_rock(2, 1) Repository['Izzet Signet'] = Card.untapped_rock(2, 1) Repository['Dimir Signet'] = Card.untapped_rock(2, 1) Repository['Orzhov Signet'] = Card.untapped_rock(2, 1) Repository['Rakdos Signet'] = Card.untapped_rock(2, 1) Repository['Selesnya Signet'] = Card.untapped_rock(2, 1) Repository['Simic Signet'] = Card.untapped_rock(2, 1) Repository['Azorius Locket'] = Card.untapped_rock(3, 1) Repository['Boros Locket'] = Card.untapped_rock(3, 1) Repository['Golgari Locket'] = Card.untapped_rock(3, 1) Repository['Gruul Locket'] = Card.untapped_rock(3, 1) Repository['Izzet Locket'] = Card.untapped_rock(3, 1) Repository['Dimir Locket'] = Card.untapped_rock(3, 1) Repository['Orzhov Locket'] = Card.untapped_rock(3, 1) Repository['Rakdos Locket'] = Card.untapped_rock(3, 1) Repository['Selesnya Locket'] = Card.untapped_rock(3, 1) Repository['Simic Locket'] = Card.untapped_rock(3, 1) Repository['Azusa, Lost but Seeking'] = Card(cost=3, land_sequence=Sequence.repeat(2)) Repository['Dark Ritual'] = Card(cost=1, mana_sequence=Sequence.once(3)) Repository['Gitaxian Probe'] = Card.draw_spell(0, 1) Repository['Illusion of Choice'] = Card.cantrip Repository['Peek'] = Card.cantrip Repository['Phyrexian Arena'] = Card(cost=3, draw_sequence=Sequence.one.prefixed_by([0])) Repository['Reach Through Mists'] = Card.cantrip Repository['Plains'] = Card.untapped_land Repository['Island'] = Card.untapped_land Repository['Swamp'] = Card.untapped_land Repository['Mountain'] = Card.untapped_land Repository['Forest'] = Card.untapped_land Repository['Azorius Guildgate'] = Card.tapped_land Repository['Boros Guildgate'] = Card.tapped_land Repository['Golgari Guildgate'] = Card.tapped_land Repository['Gruul Guildgate'] = Card.tapped_land Repository['Izzet Guildgate'] = Card.tapped_land Repository['Dimir Guildgate'] = Card.tapped_land Repository['Orzhov Guildgate'] = Card.tapped_land Repository['Rakdos Guildgate'] = Card.tapped_land Repository['Selesnya Guildgate'] = Card.tapped_land Repository['Simic Guildgate'] = Card.tapped_land Repository['Arcane Sanctum'] = Card.tapped_land Repository['Crumbling Necropolis'] = Card.tapped_land Repository['Frontier Bivouac'] = Card.tapped_land Repository['Jungle Shrine'] = Card.tapped_land Repository['Mystic Monastery'] = Card.tapped_land Repository['Nomad Outpost'] = Card.tapped_land Repository['Opulent Palace'] = Card.tapped_land Repository['Sandsteppe Citadel'] = Card.tapped_land Repository['Savage Lands'] = Card.tapped_land Repository['Seaside Citadel'] = Card.tapped_land Repository['Akoum Refuge'] = Card.tapped_land Repository['Bloodfell Caves'] = Card.tapped_land Repository['Blossoming Sands'] = Card.tapped_land Repository['Dismal Backwater'] = Card.tapped_land Repository['Graypelt Refuge'] = Card.tapped_land Repository['Jungle Hollow'] = Card.tapped_land Repository['Jwar Isle Refuge'] = Card.tapped_land Repository['Kazandu Refuge'] = Card.tapped_land Repository['Rugged Highlands'] = Card.tapped_land Repository['Scoured Barrens'] = Card.tapped_land Repository['Sejiri Refuge'] = Card.tapped_land Repository['Swiftwater Cliffs'] = Card.tapped_land Repository['Thornwood Falls'] = Card.tapped_land Repository['Tranquil Cove'] = Card.tapped_land Repository['Wind-Scarred Crag'] = Card.tapped_land
[ "mtg_mana_simulator.sequence.Sequence.once", "collections.defaultdict", "mtg_mana_simulator.sequence.Sequence.one.prefixed_by", "mtg_mana_simulator.sequence.Sequence.repeat", "mtg_mana_simulator.card.Card.untapped_rock", "mtg_mana_simulator.card.Card.draw_spell" ]
[((210, 243), 'collections.defaultdict', 'defaultdict', (['(lambda : Card.filler)'], {}), '(lambda : Card.filler)\n', (221, 243), False, 'from collections import defaultdict\n'), ((275, 299), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (293, 299), False, 'from mtg_mana_simulator.card import Card\n'), ((332, 356), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (350, 356), False, 'from mtg_mana_simulator.card import Card\n'), ((389, 413), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (407, 413), False, 'from mtg_mana_simulator.card import Card\n'), ((446, 470), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (464, 470), False, 'from mtg_mana_simulator.card import Card\n'), ((503, 527), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (521, 527), False, 'from mtg_mana_simulator.card import Card\n'), ((560, 584), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (578, 584), False, 'from mtg_mana_simulator.card import Card\n'), ((617, 641), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (635, 641), False, 'from mtg_mana_simulator.card import Card\n'), ((674, 698), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (692, 698), False, 'from mtg_mana_simulator.card import Card\n'), ((731, 755), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (749, 755), False, 'from mtg_mana_simulator.card import Card\n'), ((788, 812), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (806, 812), False, 'from mtg_mana_simulator.card import Card\n'), ((845, 869), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(2)', '(1)'], {}), '(2, 1)\n', (863, 869), False, 'from mtg_mana_simulator.card import Card\n'), ((902, 926), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(3)', '(1)'], {}), '(3, 1)\n', (920, 926), False, 'from mtg_mana_simulator.card import Card\n'), ((959, 983), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(3)', '(1)'], {}), '(3, 1)\n', (977, 983), False, 'from mtg_mana_simulator.card import Card\n'), ((1016, 1040), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(3)', '(1)'], {}), '(3, 1)\n', (1034, 1040), False, 'from mtg_mana_simulator.card import Card\n'), ((1073, 1097), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(3)', '(1)'], {}), '(3, 1)\n', (1091, 1097), False, 'from mtg_mana_simulator.card import Card\n'), ((1130, 1154), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(3)', '(1)'], {}), '(3, 1)\n', (1148, 1154), False, 'from mtg_mana_simulator.card import Card\n'), ((1187, 1211), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(3)', '(1)'], {}), '(3, 1)\n', (1205, 1211), False, 'from mtg_mana_simulator.card import Card\n'), ((1244, 1268), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(3)', '(1)'], {}), '(3, 1)\n', (1262, 1268), False, 'from mtg_mana_simulator.card import Card\n'), ((1301, 1325), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(3)', '(1)'], {}), '(3, 1)\n', (1319, 1325), False, 'from mtg_mana_simulator.card import Card\n'), ((1358, 1382), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(3)', '(1)'], {}), '(3, 1)\n', (1376, 1382), False, 'from mtg_mana_simulator.card import Card\n'), ((1415, 1439), 'mtg_mana_simulator.card.Card.untapped_rock', 'Card.untapped_rock', (['(3)', '(1)'], {}), '(3, 1)\n', (1433, 1439), False, 'from mtg_mana_simulator.card import Card\n'), ((1631, 1652), 'mtg_mana_simulator.card.Card.draw_spell', 'Card.draw_spell', (['(0)', '(1)'], {}), '(0, 1)\n', (1646, 1652), False, 'from mtg_mana_simulator.card import Card\n'), ((1507, 1525), 'mtg_mana_simulator.sequence.Sequence.repeat', 'Sequence.repeat', (['(2)'], {}), '(2)\n', (1522, 1525), False, 'from mtg_mana_simulator.sequence import Sequence\n'), ((1582, 1598), 'mtg_mana_simulator.sequence.Sequence.once', 'Sequence.once', (['(3)'], {}), '(3)\n', (1595, 1598), False, 'from mtg_mana_simulator.sequence import Sequence\n'), ((1794, 1823), 'mtg_mana_simulator.sequence.Sequence.one.prefixed_by', 'Sequence.one.prefixed_by', (['[0]'], {}), '([0])\n', (1818, 1823), False, 'from mtg_mana_simulator.sequence import Sequence\n')]
import random from enum import Enum class OrderStatus(Enum): INITIATED = "INITIATED" PENDING = "PENDING" COMPLETE = "COMPLETE" class Order: """Order object class.""" def __init__(self, details): self.id = random.randint(100000, 999999) self.details = details self.status = OrderStatus.INITIATED.value def __str__(self): return f"Order id: {self.id} with details: {self.details}"
[ "random.randint" ]
[((238, 268), 'random.randint', 'random.randint', (['(100000)', '(999999)'], {}), '(100000, 999999)\n', (252, 268), False, 'import random\n')]
test_input = r'''..#.#..#####.#.#.#.###.##.....###.##.#..###.####..#####..#....#..#..##..###..######.###...####..#..#####..##..#.#####...##.#.#..#.##..#.#......#.###.######.###.####...#.##.##..#..#..#####.....#.#....###..#.##......#.....#..#..#..##..#...##.######.####.####.#.#...#.......#..#.#.#...####.##.#......#..#...##.#.##..#...##.#.##..###.#......#.#.......#.#.#.####.###.##...#.....####.#..#..#.##.#....##..#.####....##...##..#...#......#.#.......#.......##..####..#...#.#.#...##..#.#..###..#####........#..####......#..# #..#. #.... ##..# ..#.. ..### ''' puzzle_input = open(__file__.replace('.py', '_input.txt')).read() import copy from collections import defaultdict from operator import itemgetter import time class Image: def __init__(self, input_): self.parse_input(input_) self.step = 0 def parse_input(self, input_): lines = input_.splitlines() self.key = lines[0] self.initialize_image(self.key[0], lines[2:]) def initialize_image(self, default, input_): # This part is tricky, and the key to the whole thing... when accessing # pixels outside the known extents, those pixels are turning on and # off each step, and will influence the values along the border of the # known pixels. if default == '#': pixels = defaultdict(lambda:self.step % 2) else: pixels = defaultdict(lambda:0) # Convert the "#" and "." to 0s and 1s so we can count the pixels # easier at the end. for row, line in enumerate(input_): for column, pixel in enumerate(line): pixels[(column,row)] = 1 if pixel == '#' else 0 self.image = pixels self.get_image_dimensions() def get_image_dimensions(self): # since this only gets called once, and we start at 0,0 - this could # be simplified. coords = list(self.image.keys()) self.min_x = min(coords, key=itemgetter(0))[0] self.max_x = max(coords, key=itemgetter(0))[0] self.min_y = min(coords, key=itemgetter(1))[1] self.max_y = max(coords, key=itemgetter(1))[1] def enhance_image(self): # iterate through the image, but we also need to consider each # pixel just outside the current image. expand the range of pixel # coordinates by 1 in each direction to get the border pixels. enhanced_image = copy.copy(self.image) for x in range(self.min_x - 1, self.max_x + 2): for y in range(self.min_y - 1, self.max_y + 2): enhanced_image[(x, y)] = self.get_enhanced_pixel(x, y) self.image = enhanced_image # expand the range for the next step. self.min_x -= 1 self.max_x += 1 self.min_y -= 1 self.max_y += 1 self.step += 1 def get_enhanced_pixel(self, x, y): # get the 8 neighbors of the current pixel, convert the values into # a nine-digit binary string and convert to an integer to look up the # new value from the "key". Neighrbors are read left-to-right, top-to- # bottom. binary = '' for y1 in range(-1,2): for x1 in range(-1,2): binary += str(self.image[(x + x1, y + y1)]) offset = int(binary, 2) new_pixel = self.key[offset] return 1 if new_pixel == '#' else 0 def __repr__(self): # print the current image for debugging. rows = [] for y in range(self.min_y, self.max_y + 1): r = '' for x in range(self.min_x, self.max_x + 1): r += '#' if self.image[(x, y)] == 1 else '.' rows.append(r) print('\n'.join(rows).count('#')) return '\n'.join(rows) def part_one(input_): t0 = time.time() im = Image(input_) for i in range(2): im.enhance_image() print(time.time() - t0) return sum(im.image.values()) def part_two(input_): t0 = time.time() im = Image(input_) for i in range(50): im.enhance_image() print(time.time() - t0) return sum(im.image.values()) assert part_one(test_input) == 35 assert part_two(test_input) == 3351 print(f'Part One: {part_one(puzzle_input)}.') print(f'Part Two: {part_two(puzzle_input)}.')
[ "operator.itemgetter", "copy.copy", "time.time", "collections.defaultdict" ]
[((3819, 3830), 'time.time', 'time.time', ([], {}), '()\n', (3828, 3830), False, 'import time\n'), ((4000, 4011), 'time.time', 'time.time', ([], {}), '()\n', (4009, 4011), False, 'import time\n'), ((2437, 2458), 'copy.copy', 'copy.copy', (['self.image'], {}), '(self.image)\n', (2446, 2458), False, 'import copy\n'), ((1343, 1378), 'collections.defaultdict', 'defaultdict', (['(lambda : self.step % 2)'], {}), '(lambda : self.step % 2)\n', (1354, 1378), False, 'from collections import defaultdict\n'), ((1412, 1435), 'collections.defaultdict', 'defaultdict', (['(lambda : 0)'], {}), '(lambda : 0)\n', (1423, 1435), False, 'from collections import defaultdict\n'), ((3916, 3927), 'time.time', 'time.time', ([], {}), '()\n', (3925, 3927), False, 'import time\n'), ((4098, 4109), 'time.time', 'time.time', ([], {}), '()\n', (4107, 4109), False, 'import time\n'), ((1983, 1996), 'operator.itemgetter', 'itemgetter', (['(0)'], {}), '(0)\n', (1993, 1996), False, 'from operator import itemgetter\n'), ((2038, 2051), 'operator.itemgetter', 'itemgetter', (['(0)'], {}), '(0)\n', (2048, 2051), False, 'from operator import itemgetter\n'), ((2093, 2106), 'operator.itemgetter', 'itemgetter', (['(1)'], {}), '(1)\n', (2103, 2106), False, 'from operator import itemgetter\n'), ((2148, 2161), 'operator.itemgetter', 'itemgetter', (['(1)'], {}), '(1)\n', (2158, 2161), False, 'from operator import itemgetter\n')]
#import hickle as hkl import numpy as np from keras import backend as K from keras.preprocessing.image import Iterator import matplotlib.pyplot as plt # Defines one class: SequenceGenerator. a subclass of Iterator # ==================================== # Called from kitti_train.py and kitti_evaluate.py. # Class SequenceGenerator is a subclass of Iterator. # Data generator that creates sequences for input into PredNet. class SequenceGenerator(Iterator): # Iterator: can be iterated over in for-loop def __init__(self, data_file, source_file, nt, batch_size=8, shuffle=False, seed=None, output_mode='error', sequence_start_mode='all', N_seq=None, data_format=K.image_data_format()): print("\ndata_utils_RPB.py: Instantiating sequence generator:\n") # LOAD DATA FILE print("data_utils_RBP.py: Data file: \n", data_file) self.X = np.load(data_file) # X will be like (n_images, nb_cols, nb_rows, nb_channels) #self.X =hkl.transpose(self.X, (0, 3, 2, 1)) # =============================================================== # Added statements to print out two consecutive frames. ASM print("data_utils.py: self.X.shape\n", self.X.shape) # e.g., (41396, 128, 160, 3) # print("1st row:\n", self.X[0,:,:,:]) # will print the raw array # Print 1st two consecutive frames # NOTE: the video sequence seems to be stored in reverse order!!! Is this a bug? # 1. When called from "kitti_train.py" the frames for X_train.py and X_val.py seem # to be stored in reverse order. # 2. When called from "kitti_evaluate.py" the frames for X_test.py seem to be # in correct order. # 3. Need to make sure that the source files properly match the data files. my_temp = np.array(self.X[0,:,:,:], dtype = int, copy = True) # convert from float to int plt.imshow(my_temp) # look at 1st image plt.show() my_temp = np.array(self.X[1,:,:,:], dtype = int, copy = True) # convert from float to int plt.imshow(my_temp) # look at 2nd image plt.show() # LOAD SOURCE FILE print("data_utils.py: Source file: \n", source_file) self.sources = np.load(source_file) # Labels in b'string' format # Above: source for each image so when creating sequences can assure that consecutive # frames are from same video print("data_utils.py: self.sources.shape\n", self.sources.shape) # e.g., (41396,) print(self.sources[0]) # should print a byte literal representation of a string # End of print statements # =============================================================== # SET OTHER PARAMS self.nt = nt # 10 self.batch_size = batch_size # 4 if called from "kitti_train.py" self.data_format = data_format # K.image_data_format() assert sequence_start_mode in {'all', 'unique'}, 'sequence_start_mode must be in {all, unique}' self.sequence_start_mode = sequence_start_mode # default is 'all' assert output_mode in {'error', 'prediction'}, 'output_mode must be in {error, prediction}' self.output_mode = output_mode # default is 'error' if self.data_format == 'channels_first': # tensorflow data format is 'channels_last' self.X = np.transpose(self.X, (0, 3, 1, 2)) self.im_shape = self.X[0].shape # (128, 160, 3) I think. if self.sequence_start_mode == 'all': # allow for any possible sequence, starting from any frame self.possible_starts = np.array([i for i in range(self.X.shape[0] - self.nt) if self.sources[i] == self.sources[i + self.nt - 1]]) print("data_utils.py: possible_starts all: ", self.possible_starts) elif self.sequence_start_mode == 'unique': #create sequences where each unique frame is in at most one sequence curr_location = 0 possible_starts = [] while curr_location < self.X.shape[0] - self.nt + 1: if self.sources[curr_location] == self.sources[curr_location + self.nt - 1]: possible_starts.append(curr_location) curr_location += self.nt else: curr_location += 1 self.possible_starts = possible_starts print("data_utils.py: possible_starts unique: ", self.possible_starts) if shuffle: self.possible_starts = np.random.permutation(self.possible_starts) if N_seq is not None and len(self.possible_starts) > N_seq: # select a subset of sequences if want to self.possible_starts = self.possible_starts[:N_seq] self.N_sequences = len(self.possible_starts) super(SequenceGenerator, self).__init__(len(self.possible_starts), batch_size, shuffle, seed) # End of __init__() def __getitem__(self, null): return self.next() def next(self): # Returns a batch of x and y data with self.lock: current_index = (self.batch_index * self.batch_size) % self.n index_array, current_batch_size = next(self.index_generator), self.batch_size batch_x = np.zeros((current_batch_size, self.nt) + self.im_shape, np.float32) for i, idx in enumerate(index_array): idx = self.possible_starts[idx] batch_x[i] = self.preprocess(self.X[idx:idx+self.nt]) if self.output_mode == 'error': # model outputs errors, so y should be zeros batch_y = np.zeros(current_batch_size, np.float32) elif self.output_mode == 'prediction': # output actual pixels batch_y = batch_x return batch_x, batch_y # inputs, targets def preprocess(self, X): return X.astype(np.float32) / 255 # maps to [0, 1] # Returns 10 frames def create_all(self): # Below: plus operator is concatentation. Initialize multidim array of float32 zeros w/ specified shape X_all = np.zeros((self.N_sequences, self.nt) + self.im_shape, np.float32) for i, idx in enumerate(self.possible_starts): X_all[i] = self.preprocess(self.X[idx:idx+self.nt]) # map [0,255] to [0,1] for 10 frames return X_all
[ "matplotlib.pyplot.imshow", "numpy.transpose", "keras.backend.image_data_format", "numpy.random.permutation", "numpy.array", "numpy.zeros", "numpy.load", "matplotlib.pyplot.show" ]
[((718, 739), 'keras.backend.image_data_format', 'K.image_data_format', ([], {}), '()\n', (737, 739), True, 'from keras import backend as K\n'), ((928, 946), 'numpy.load', 'np.load', (['data_file'], {}), '(data_file)\n', (935, 946), True, 'import numpy as np\n'), ((1876, 1926), 'numpy.array', 'np.array', (['self.X[0, :, :, :]'], {'dtype': 'int', 'copy': '(True)'}), '(self.X[0, :, :, :], dtype=int, copy=True)\n', (1884, 1926), True, 'import numpy as np\n'), ((1964, 1983), 'matplotlib.pyplot.imshow', 'plt.imshow', (['my_temp'], {}), '(my_temp)\n', (1974, 1983), True, 'import matplotlib.pyplot as plt\n'), ((2012, 2022), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (2020, 2022), True, 'import matplotlib.pyplot as plt\n'), ((2041, 2091), 'numpy.array', 'np.array', (['self.X[1, :, :, :]'], {'dtype': 'int', 'copy': '(True)'}), '(self.X[1, :, :, :], dtype=int, copy=True)\n', (2049, 2091), True, 'import numpy as np\n'), ((2129, 2148), 'matplotlib.pyplot.imshow', 'plt.imshow', (['my_temp'], {}), '(my_temp)\n', (2139, 2148), True, 'import matplotlib.pyplot as plt\n'), ((2177, 2187), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (2185, 2187), True, 'import matplotlib.pyplot as plt\n'), ((2308, 2328), 'numpy.load', 'np.load', (['source_file'], {}), '(source_file)\n', (2315, 2328), True, 'import numpy as np\n'), ((5287, 5354), 'numpy.zeros', 'np.zeros', (['((current_batch_size, self.nt) + self.im_shape)', 'np.float32'], {}), '((current_batch_size, self.nt) + self.im_shape, np.float32)\n', (5295, 5354), True, 'import numpy as np\n'), ((6080, 6145), 'numpy.zeros', 'np.zeros', (['((self.N_sequences, self.nt) + self.im_shape)', 'np.float32'], {}), '((self.N_sequences, self.nt) + self.im_shape, np.float32)\n', (6088, 6145), True, 'import numpy as np\n'), ((3439, 3473), 'numpy.transpose', 'np.transpose', (['self.X', '(0, 3, 1, 2)'], {}), '(self.X, (0, 3, 1, 2))\n', (3451, 3473), True, 'import numpy as np\n'), ((4567, 4610), 'numpy.random.permutation', 'np.random.permutation', (['self.possible_starts'], {}), '(self.possible_starts)\n', (4588, 4610), True, 'import numpy as np\n'), ((5619, 5659), 'numpy.zeros', 'np.zeros', (['current_batch_size', 'np.float32'], {}), '(current_batch_size, np.float32)\n', (5627, 5659), True, 'import numpy as np\n')]
import psycopg2 from datetime import datetime from psycopg2 import sql from est.fltr import county_return from est.db.cur import con_cur import numpy as np import pandas as pd def comp_find(est, a, b): temp1 = est temp2 = np.array(temp1[0]) county = temp2[0].strip() state = temp2[1].strip() cur, con = con_cur() cur.execute(""" SELECT comp_st, comp_cty, comp_lv, comp_perc FROM est_LandValue(%s, %s, %s, %s) """, (a, b, state, county)) comp_states = cur.fetchall() con.close() return(comp_states) def find_comps(state, county, radius, population): cur, con = con_cur() cur.execute(""" SELECT comp_st, comp_cty, comp_lv, comp_perc FROM est_LandValue(%s, %s, %s, %s) """, (radius, population, state, county)) comp_states = pd.DataFrame(cur.fetchall(), columns = ['State', 'County', 'Land Value', 'Perc Land Value']) con.close() return(comp_states)
[ "numpy.array", "est.db.cur.con_cur" ]
[((231, 249), 'numpy.array', 'np.array', (['temp1[0]'], {}), '(temp1[0])\n', (239, 249), True, 'import numpy as np\n'), ((325, 334), 'est.db.cur.con_cur', 'con_cur', ([], {}), '()\n', (332, 334), False, 'from est.db.cur import con_cur\n'), ((632, 641), 'est.db.cur.con_cur', 'con_cur', ([], {}), '()\n', (639, 641), False, 'from est.db.cur import con_cur\n')]
#!/usr/bin/python3 import sys import math def getDigits(x): digits = [] while x > 0: digits.append(x % 10) x = x // 10 digits.reverse() return digits def getInt(digits): num = 0 digits.reverse() multiplier = 1 for digit in digits: num += digit * multiplier multiplier *= 10 return num # doesn't work if next largest palindrome is fewer digits than original, or if x isn't a palindrome def genNextLargestPalindrome(x): digits = getDigits(x) numDigits = len(digits) isEvenLength = numDigits % 2 == 0 innermostIndex = numDigits // 2 rightIndex = innermostIndex + 1 leftIndex = innermostIndex - 1 if isEvenLength: leftIndex -= 1 if digits[innermostIndex] != 0: digits[innermostIndex] -= 1 if isEvenLength: digits[innermostIndex - 1] -= 1 else: digits[innermostIndex] = 9 if isEvenLength: digits[innermostIndex - 1] = 9 while digits[leftIndex] == 0: digits[leftIndex] = 9 leftIndex -= 1 digits[rightIndex] = 9 rightIndex += 1 digits[leftIndex] -= 1 digits[rightIndex] -= 1 return getInt(digits) def main(): maxDivisor = divisor = 999 maxProduct = palindromeCandidate = (maxDivisor + 1) * (maxDivisor + 1) - 1 while True: quotient, remainder = divmod(palindromeCandidate, divisor) isViableCandidate = True squareRootOfCandidate = math.sqrt(palindromeCandidate) while isViableCandidate: while quotient < maxDivisor: if remainder == 0: print(palindromeCandidate) print(quotient) print(divisor) return palindromeCandidate else: divisor -= 1 quotient, remainder = divmod(palindromeCandidate, divisor) if divisor < squareRootOfCandidate: isViableCandidate = False isViableCandidate = False palindromeCandidate = genNextLargestPalindrome(palindromeCandidate) divisor = maxDivisor # for arg in sys.argv[1::]: # print(genNextLargestPalindrome(int(arg))) if __name__ == '__main__': main()
[ "math.sqrt" ]
[((1539, 1569), 'math.sqrt', 'math.sqrt', (['palindromeCandidate'], {}), '(palindromeCandidate)\n', (1548, 1569), False, 'import math\n')]
# -*- coding: utf-8 -*- # Generated by Django 1.9.1 on 2016-01-31 10:55 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Noun', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('word', models.CharField(max_length=100)), ('gender', models.CharField(choices=[('m', 'Maskulin'), ('f', 'Feminin'), ('n', 'Neutrum'), ('p', 'Plural')], max_length=1)), ('details', models.TextField(blank=True)), ('latest_update', models.DateTimeField(auto_now=True, db_index=True)), ], ), migrations.AlterUniqueTogether( name='noun', unique_together=set([('word', 'gender')]), ), ]
[ "django.db.models.DateTimeField", "django.db.models.TextField", "django.db.models.AutoField", "django.db.models.CharField" ]
[((364, 457), 'django.db.models.AutoField', 'models.AutoField', ([], {'auto_created': '(True)', 'primary_key': '(True)', 'serialize': '(False)', 'verbose_name': '"""ID"""'}), "(auto_created=True, primary_key=True, serialize=False,\n verbose_name='ID')\n", (380, 457), False, 'from django.db import migrations, models\n'), ((481, 513), 'django.db.models.CharField', 'models.CharField', ([], {'max_length': '(100)'}), '(max_length=100)\n', (497, 513), False, 'from django.db import migrations, models\n'), ((543, 659), 'django.db.models.CharField', 'models.CharField', ([], {'choices': "[('m', 'Maskulin'), ('f', 'Feminin'), ('n', 'Neutrum'), ('p', 'Plural')]", 'max_length': '(1)'}), "(choices=[('m', 'Maskulin'), ('f', 'Feminin'), ('n',\n 'Neutrum'), ('p', 'Plural')], max_length=1)\n", (559, 659), False, 'from django.db import migrations, models\n'), ((686, 714), 'django.db.models.TextField', 'models.TextField', ([], {'blank': '(True)'}), '(blank=True)\n', (702, 714), False, 'from django.db import migrations, models\n'), ((751, 801), 'django.db.models.DateTimeField', 'models.DateTimeField', ([], {'auto_now': '(True)', 'db_index': '(True)'}), '(auto_now=True, db_index=True)\n', (771, 801), False, 'from django.db import migrations, models\n')]
from opentsp import helpers def diamond_prune(instance): # def list_prune(ls): # var = True # may not be needed # while var is True: # may not be needed # bad_count = 0 # may not be needed # semi_pruned_ls = [i for i in ls if i.fitness == 'good'] # may not be needed # last_good_index = 0 # for index, edge in enumerate(semi_pruned_ls): # if index == 0 or index == len(semi_pruned_ls) - 1: # pass # elif edge.length_ > semi_pruned_ls[last_good_index].length_ \ # or edge.length_ > semi_pruned_ls[index + 1].length_: # edge.fitness = 'bad' # # for i in instance.edges.values(): # # if i == edge: # # i.fitness = 'bad' # bad_count += 1 # may not be needed # else: # last_good_index = index # if bad_count == 0: # may not be needed # var = False # may not be needed # pruned_ls = semi_pruned_ls # may not be needed # return pruned_ls # # def list_prune_v2(ls, n): # changed 'bad' count check to a while loop less than three check, added another test # loop = 1 # may not be needed # while loop < n + 1: # may not be needed # semi_pruned_ls = [i for i in ls if i.fitness == 'good'] # may not be needed # if len(semi_pruned_ls) <= 2: # break # last_good_index = 0 # for index, edge in enumerate(semi_pruned_ls): # if index == 0 or index == len(semi_pruned_ls) - 1: # pass # elif edge.length_ > semi_pruned_ls[last_good_index].length_ or \ # edge.length_ > semi_pruned_ls[index + 1].length_: # edge.fitness = 'bad' # else: # last_good_index = index # loop += 1 # if len(semi_pruned_ls) == 3: # if semi_pruned_ls[1].length_ < semi_pruned_ls[0].length_ and \ # semi_pruned_ls[1].length_ < semi_pruned_ls[2].length_: # if abs(helpers.angle(semi_pruned_ls[1].node_one, semi_pruned_ls[1].node_two, # semi_pruned_ls[0].node_two)) < \ # abs(helpers.angle(semi_pruned_ls[1].node_one, semi_pruned_ls[1].node_two, # semi_pruned_ls[2].node_two)): # del semi_pruned_ls[0] # else: # del semi_pruned_ls[2] # # add an else here in version 3 for when the middle edge is the middle length # pruned_ls = semi_pruned_ls # may not be needed # return pruned_ls # # def list_prune_v3(ls): # loop = 1 # while loop < 3: # # sp_ls stands for semi-pruned-ls # sp_ls = [i for i in ls if i.fitness == 'good'] # if len(sp_ls) <= 3: # break # last_good_index = 0 # for index, edge in enumerate(sp_ls): # if index == 0 or index == len(sp_ls) - 1: # pass # elif edge.length_ > sp_ls[last_good_index].length_ or edge.length_ > sp_ls[index + 1].length_: # edge.fitness = 'bad' # # for e in inst.edges.values(): # # if e == edge: # # e.fitness = 'bad' # else: # last_good_index = index # loop += 1 # if len(sp_ls) == 3: # ang_to_0 = helpers.angle(sp_ls[1].node_one, sp_ls[1].node_two, sp_ls[0].node_two) # ang_to_2 = helpers.angle(sp_ls[1].node_one, sp_ls[1].node_two, sp_ls[2].node_two) # # if middle edge of remaining 3 is the shortest: # if sp_ls[1].length_ < sp_ls[0].length_ and sp_ls[1].length_ < sp_ls[2].length_: # # if angle to edge_0 in sp_ls is less then angle to edge_2 in sp_ls: # if abs(ang_to_0) < abs(ang_to_2): # del sp_ls[0] # else: # del sp_ls[2] # elif sp_ls[1].length_ > sp_ls[0].length_ or sp_ls[1].length_ > sp_ls[2].length_: # if abs(ang_to_0) < abs(ang_to_2) and sp_ls[0].length_ < sp_ls[2].length_: # del sp_ls[1] # elif abs(ang_to_0) < abs(ang_to_2) and sp_ls[0].length_ > sp_ls[2].length_: # del sp_ls[0] # elif abs(ang_to_0) > abs(ang_to_2) and sp_ls[0].length_ > sp_ls[2].length_: # del sp_ls[1] # elif abs(ang_to_0) > abs(ang_to_2) and sp_ls[0].length_ < sp_ls[2].length_: # del sp_ls[2] # else: # print('The middle was the shortest but no edge was removed.') # if len(sp_ls) > 3: # print(f'The semi-pruned list had more three edges remaining on this iteration.') # pruned_ls = sp_ls # may not be needed # return pruned_ls # # def list_prune_v4(ls): # while True: # # sp_ls stands for semi-pruned-ls # sp_ls = [i for i in ls if i.fitness == 'good'] # if len(sp_ls) <= 3: # break # last_good_index = 0 # for index, edge in enumerate(sp_ls): # if index == 0 or index == len(sp_ls) - 1: # pass # elif edge.length_ > sp_ls[last_good_index].length_ or edge.length_ > sp_ls[index + 1].length_: # edge.fitness = 'bad' # # for e in inst.edges.values(): # # if e == edge: # # e.fitness = 'bad' # else: # last_good_index = index # if len(sp_ls) == 3: # ang_to_0 = helpers.angle(sp_ls[1].node_one, sp_ls[1].node_two, sp_ls[0].node_two) # ang_to_2 = helpers.angle(sp_ls[1].node_one, sp_ls[1].node_two, sp_ls[2].node_two) # # if middle edge is the shortest: # if sp_ls[1].length_ < sp_ls[0].length_ and sp_ls[1].length_ < sp_ls[2].length_: # # if angle to edge_0 in sp_ls is less then angle to edge_2 in sp_ls: # if abs(ang_to_0) < abs(ang_to_2): # del sp_ls[0] # else: # del sp_ls[2] # # else if middle edge is the middle length: # elif sp_ls[1].length_ > sp_ls[0].length_ or sp_ls[1].length_ > sp_ls[2].length_: # # comment what these ifs represent # if abs(ang_to_0) < abs(ang_to_2) and sp_ls[0].length_ < sp_ls[2].length_: # del sp_ls[1] # elif abs(ang_to_0) < abs(ang_to_2) and sp_ls[0].length_ > sp_ls[2].length_: # del sp_ls[0] # elif abs(ang_to_0) > abs(ang_to_2) and sp_ls[0].length_ > sp_ls[2].length_: # del sp_ls[1] # elif abs(ang_to_0) > abs(ang_to_2) and sp_ls[0].length_ < sp_ls[2].length_: # del sp_ls[2] # else: # print('The middle was the shortest but no edge was removed.') # if len(sp_ls) > 3: # print('The semi-pruned list had more three edges remaining on this iteration.') # elif len(sp_ls) == 2: # print('The semi-pruned list had two edges remaining on this iteration.') # pruned_ls = sp_ls # may not be needed # return pruned_ls def list_prune_v5(ls): while True: # sp_ls stands for semi-pruned-ls sp_ls = [i for i in ls if i.fitness == 'good'] if len(sp_ls) <= 4: break last_good_index = 0 for index, edge in enumerate(sp_ls): if index == 0 or index == len(sp_ls) - 1: pass # if the edge is the middle in length: elif edge.length_ > sp_ls[last_good_index].length_ or edge.length_ > sp_ls[index + 1].length_: # print('Calculating angles.') # if max(abs(sp_ls[last_good_index].angle), abs(sp_ls[index + 1].length)) - \ # min(abs(sp_ls[last_good_index].angle), abs(sp_ls[index + 1].length)) > 120: edge.fitness = 'bad' else: last_good_index = index if len(sp_ls) == 3: ang_to_0 = helpers.angle(sp_ls[1].node_one, sp_ls[1].node_two, sp_ls[0].node_two) ang_to_2 = helpers.angle(sp_ls[1].node_one, sp_ls[1].node_two, sp_ls[2].node_two) # if middle edge is the shortest: if sp_ls[1].length_ < sp_ls[0].length_ and sp_ls[1].length_ < sp_ls[2].length_: # if angle to edge_0 in sp_ls is less then angle to edge_2 in sp_ls: if abs(ang_to_0) < abs(ang_to_2): del sp_ls[0] else: del sp_ls[2] # else if middle edge is the middle length: elif sp_ls[1].length_ > sp_ls[0].length_ or sp_ls[1].length_ > sp_ls[2].length_: # comment what these ifs represent if abs(ang_to_0) < abs(ang_to_2) and sp_ls[0].length_ < sp_ls[2].length_: del sp_ls[1] elif abs(ang_to_0) < abs(ang_to_2) and sp_ls[0].length_ > sp_ls[2].length_: del sp_ls[0] elif abs(ang_to_0) > abs(ang_to_2) and sp_ls[0].length_ > sp_ls[2].length_: del sp_ls[1] elif abs(ang_to_0) > abs(ang_to_2) and sp_ls[0].length_ < sp_ls[2].length_: del sp_ls[2] else: print('The middle was the shortest but no edge was removed.') if len(sp_ls) > 3: print('The semi-pruned list had more three edges remaining on this iteration.') elif len(sp_ls) == 2: print('The semi-pruned list had two edges remaining on this iteration.') pruned_ls = sp_ls # may not be needed return pruned_ls # populate edge angles # eap_start = time.time() # edg_count = 0 for edge in instance.edges.values(): # edg_count += 1 # print(f'Populating edge angle: {edg_count}') edge.angle = helpers.angle(edge.node_one, instance.average_node, edge.node_two) # eap_end = time.time() # for each node, list the edges for which it is the origin, and which have good fitness good_edges = [] # node_count = 0 # pn_start = time.time() for node in instance.nodes.values(): # node_count += 1 # print(node_count) ls = [i for i in instance.edges.values() if i.node_one == node] ls.sort(key=lambda x: x.angle) # n_start = time.time() good = list_prune_v5(ls) # prune the list of edges # n_end = time.time() # print(f'Time taken for this node: {n_end - n_start}') # print(instance.edges) good_edges.extend(good) # this may not be needed... # pn_end = time.time() # print(f'Populating edge angles took: {eap_end - eap_start}') # print(f'Processing the nodes took: {pn_end - pn_start}')
[ "opentsp.helpers.angle" ]
[((10504, 10570), 'opentsp.helpers.angle', 'helpers.angle', (['edge.node_one', 'instance.average_node', 'edge.node_two'], {}), '(edge.node_one, instance.average_node, edge.node_two)\n', (10517, 10570), False, 'from opentsp import helpers\n'), ((8650, 8720), 'opentsp.helpers.angle', 'helpers.angle', (['sp_ls[1].node_one', 'sp_ls[1].node_two', 'sp_ls[0].node_two'], {}), '(sp_ls[1].node_one, sp_ls[1].node_two, sp_ls[0].node_two)\n', (8663, 8720), False, 'from opentsp import helpers\n'), ((8744, 8814), 'opentsp.helpers.angle', 'helpers.angle', (['sp_ls[1].node_one', 'sp_ls[1].node_two', 'sp_ls[2].node_two'], {}), '(sp_ls[1].node_one, sp_ls[1].node_two, sp_ls[2].node_two)\n', (8757, 8814), False, 'from opentsp import helpers\n')]
from aiohttp import web import socketio import numpy as np def load_eigenvector(k,d): vec_path = "eigenvectors/eigen_k=" + str(k) + ",d=" + str(d) + ".npy" eigenvector_np = np.load(vec_path) eigenvector_str = "" for x in np.nditer(eigenvector_np): eigenvector_str += str(x) + " " # print() # print(eigenvector_str) return eigenvector_str # creates a new Async Socket IO Server sio = socketio.AsyncServer(cors_allowed_origins="*") # Creates a new Aiohttp Web Application app = web.Application() # Binds our Socket.IO server to our Web App # instance sio.attach(app) # we can define aiohttp endpoints just as we normally # would with no change async def index(request): with open('index.html') as f: return web.Response(text=f.read(), content_type='text/html') async def test(request): with open('test.js') as f: return web.Response(text=f.read(), content_type='text/js') # If we wanted to create a new websocket endpoint, # use this decorator, passing in the name of the # event we wish to listen out for @sio.on('hi') async def print_message(sid, message, d_JS): k = message d = d_JS # print(k) # print(d) messageToJS = load_eigenvector(k,d) # print() # print(messageToJS) # print() # print(messageToJS) # When we receive a new event of type # 'message' through a socket.io connection # we print the socket ID and the message # print("Socket ID: " , sid) # print(message) #message is the value sent from the HTML await sio.emit('message', messageToJS) # notice it has to be of type 'message' and then pass the # value to send to html doc # @sio.on('d') # async def get_d_val(sid, message): # d = message # We bind our aiohttp endpoint to our app # router app.router.add_get('/', index) app.router.add_get('/test.js', test) # We kick off our server if __name__ == '__main__': web.run_app(app)
[ "aiohttp.web.run_app", "numpy.nditer", "aiohttp.web.Application", "socketio.AsyncServer", "numpy.load" ]
[((423, 469), 'socketio.AsyncServer', 'socketio.AsyncServer', ([], {'cors_allowed_origins': '"""*"""'}), "(cors_allowed_origins='*')\n", (443, 469), False, 'import socketio\n'), ((516, 533), 'aiohttp.web.Application', 'web.Application', ([], {}), '()\n', (531, 533), False, 'from aiohttp import web\n'), ((182, 199), 'numpy.load', 'np.load', (['vec_path'], {}), '(vec_path)\n', (189, 199), True, 'import numpy as np\n'), ((238, 263), 'numpy.nditer', 'np.nditer', (['eigenvector_np'], {}), '(eigenvector_np)\n', (247, 263), True, 'import numpy as np\n'), ((1924, 1940), 'aiohttp.web.run_app', 'web.run_app', (['app'], {}), '(app)\n', (1935, 1940), False, 'from aiohttp import web\n')]
import demistomock as demisto from CommonServerPython import * from CommonServerUserPython import * from typing import Union, Optional ''' IMPORTS ''' import requests import base64 import os import binascii # Disable insecure warnings requests.packages.urllib3.disable_warnings() """ GLOBALS/PARAMS """ # Global annotation CONTEXT = demisto.getIntegrationContext() DEMISTOBOT = 'https://demistobot.demisto.com/msg-mail-token' # Credentials TOKEN = demisto.params().get('token') TENANT_ID = demisto.params().get('tenant_id') # Remove trailing slash to prevent wrong URL path to service URL = demisto.params().get('url') SERVER = URL[:-1] if (URL and URL.endswith('/')) else URL # Should we use SSL USE_SSL = not demisto.params().get('unsecure', False) # Service base URL BASE_URL = str(SERVER) + '/v1.0' # Remove proxy if not set to true in params if not demisto.params().get('proxy'): os.environ.pop('HTTP_PROXY', '') os.environ.pop('HTTPS_PROXY', '') os.environ.pop('http_proxy', '') os.environ.pop('https_proxy', '') ''' HELPER FUNCTIONS ''' def error_parser(resp_err: requests.Response) -> str: """ Args: error (requests.Response): response with error Returns: str: string of error """ try: response = resp_err.json() error = response.get('error', {}) err_str = f"{error.get('code')}: {error.get('message')}" if err_str: return err_str # If no error message raise ValueError except ValueError: return resp_err.text def http_request(method: str, url_suffix: str = '', params: dict = None, data: dict = None, odata: str = None, url: str = None) -> dict: """ A wrapper for requests lib to send our requests and handle requests and responses better Headers to be sent in requests Args: method (str): any restful method url_suffix (str): suffix to add to BASE_URL params (str): http params data (dict): http body odata (str): odata query format url (str): url to replace if need a new api call Returns: dict: requests.json() """ token = get_token() headers = { 'Authorization': f'Bearer {token}', 'Content-Type': 'application/json', 'Accept': 'application/json' } if odata: url_suffix += odata res = requests.request( method, url if url else BASE_URL + url_suffix, verify=USE_SSL, params=params, data=data, headers=headers ) # Handle error responses gracefully if not (199 < res.status_code < 299): error = error_parser(res) return_error(f'Error in API call to Microsoft Graph Mail Integration [{res.status_code}] - {error}') try: return res.json() except ValueError: return_error('Could not decode response from API') return {} # return_error will exit def epoch_seconds(d: datetime = None) -> int: """ Return the number of seconds for given date. If no date, return current. Args: d (datetime): timestamp Returns: int: timestamp in epoch """ if not d: d = datetime.utcnow() return int((d - datetime.utcfromtimestamp(0)).total_seconds()) def get_token() -> str: """ Check if we have a valid token and if not get one from demistobot Returns: str: token from demistobot """ product = 'MicrosoftGraphMail' token = CONTEXT.get('token') stored = CONTEXT.get('stored') if token and stored: if epoch_seconds() - stored < 60 * 60 - 30: return token headers = { 'Authorization': TOKEN, 'Accept': 'application/json' } r = requests.get( DEMISTOBOT, headers=headers, params={ 'tenant': TENANT_ID, 'product': product }, verify=USE_SSL ) if r.status_code != requests.codes.ok: return_error( f'Error when trying to get token from Demisto Bot: [{r.status_code}] - {r.text}') data = r.json() demisto.setIntegrationContext( { 'token': data.get('token'), 'stored': epoch_seconds() } ) return data.get('token') def assert_pages(pages: Union[str, int]) -> int: """ Args: pages (str or int): pages need to pull in int or str Returns: int: default 1 """ if isinstance(pages, str) and pages.isdigit(): return int(pages) elif isinstance(pages, int): return pages return 1 def build_folders_path(folder_string: str) -> Optional[str]: """ Args: folder_string (str): string with `,` delimiter. first one is mailFolders all other are child Returns: str or None: string with path to the folder and child folders """ if isinstance(folder_string, str): path = 'mailFolders/' folders_list = argToList(folder_string, ',') first = True for folder in folders_list: if first: path += folder first = False else: path += f'/childFolders/{folder}' return path return None def pages_puller(response: dict, page_count: int) -> list: """ Gets first response from API and returns all pages Args: response (dict): page_count (int): Returns: list: list of all pages """ responses = [response] i = page_count while i != 0: next_link = response.get('@odata.nextLink') if next_link: responses.append( http_request('GET', url=next_link) ) else: return responses i -= 1 return responses def build_mail_object(raw_response: Union[dict, list], user_id: str, get_body: bool = False) -> Union[dict, list]: """Building mail entry context Getting a list from build_mail_object Args: user_id (str): user id of the mail get_body (bool): should get body raw_response (dict or list): list of pages Returns: dict or list: output context """ def build_mail(given_mail: dict) -> dict: """ Args: given_mail (dict): Returns: dict: """ # Dicts mail_properties = { 'ID': 'id', 'Created': 'createdDateTime', 'LastModifiedTime': 'lastModifiedDateTime', 'ReceivedTime': 'receivedDateTime', 'SendTime': 'sentDateTime', 'Categories': 'categories', 'HasAttachments': 'hasAttachments', 'Subject': 'subject', 'IsDraft': 'isDraft' } contact_properties = { 'Sender': 'sender', 'From': 'from', 'CCRecipients': 'ccRecipients', 'BCCRecipients': 'bccRecipients', 'ReplyTo': 'replyTo' } # Create entry properties entry = {k: given_mail.get(v) for k, v in mail_properties.items()} # Create contacts properties entry.update( {k: build_contact(given_mail.get(v)) for k, v in contact_properties.items()} # type: ignore ) if get_body: entry['Body'] = given_mail.get('body', {}).get('content') entry['UserID'] = user_id return entry def build_contact(contacts: Union[dict, list, str]) -> object: """Building contact object Args: contacts (list or dict or str): Returns: dict or list[dict] or str or None: describing contact """ if contacts: if isinstance(contacts, list): return [build_contact(contact) for contact in contacts] elif isinstance(contacts, dict): email = contacts.get('emailAddress') if email and isinstance(email, dict): return { 'Name': email.get('name'), 'Address': email.get('address') } return None mails_list = list() if isinstance(raw_response, list): for page in raw_response: # raw_response can be a list containing multiple pages or one response # if value in page, we got value = page.get('value') if value: for mail in value: mails_list.append(build_mail(mail)) else: mails_list.append(build_mail(page)) elif isinstance(raw_response, dict): return build_mail(raw_response) return mails_list def file_result_creator(raw_response: dict) -> dict: """ Args: raw_response (dict): Returns: dict: """ name = raw_response.get('name') data = raw_response.get('contentBytes') try: data = base64.b64decode(data) # type: ignore return fileResult(name, data) except binascii.Error: return_error('Attachment could not be decoded') return {} # return_error will exit ''' COMMANDS + REQUESTS FUNCTIONS ''' def test_module(): """ Performs basic get request to get item samples """ url = BASE_URL + '/me' token = get_token() headers = { 'Authorization': f'Bearer {token}', 'Content-Type': 'application/json', 'Accept': 'application/json' } response = requests.get(url, headers=headers, verify=USE_SSL) if response.status_code == 403: return True else: return_error(error_parser(response)) def list_mails(user_id: str, folder_id: str = '', search: str = None, odata: str = None) -> Union[dict, list]: """Returning all mails from given user Args: user_id (str): folder_id (str): search (str): odata (str): Returns: dict or list: """ no_folder = f'/users/{user_id}/messages/' with_folder = f'users/{user_id}/{build_folders_path(folder_id)}/messages/' pages_to_pull = demisto.args().get('pages_to_pull', 1) if search: odata = f'?{odata}$search={search}' if odata else f'?$search={search}' suffix = with_folder if folder_id else no_folder response = http_request('GET', suffix, odata=odata) return pages_puller(response, assert_pages(pages_to_pull)) def list_mails_command(): search = demisto.args().get('search') user_id = demisto.args().get('user_id') folder_id = demisto.args().get('folder_id') odata = demisto.args().get('odata') raw_response = list_mails(user_id, folder_id=folder_id, search=search, odata=odata) mail_context = build_mail_object(raw_response, user_id) entry_context = {'MSGraphMail(var.ID === obj.ID)': mail_context} # human_readable builder human_readable = tableToMarkdown( f'### Total of {len(mail_context)} of mails received', mail_context, headers=['Subject', 'From', 'SendTime'] ) return_outputs(human_readable, entry_context, raw_response) def delete_mail(user_id: str, message_id: str, folder_id: str = None) -> bool: """ Args: user_id (str): message_id (str): folder_id (str): Returns: bool """ with_folder = f'/users/{user_id}/{build_folders_path(folder_id)}/messages/{message_id}' # type: ignore no_folder = f'/users/{user_id}/messages/{message_id}' suffix = with_folder if folder_id else no_folder http_request('DELETE', suffix) return True def delete_mail_command(): user_id = demisto.args().get('user_id') folder_id = demisto.args().get('folder_id') message_id = demisto.args().get('message_id') delete_mail(user_id, message_id, folder_id) human_readable = tableToMarkdown( 'Message has been deleted successfully', { 'Message ID': message_id, 'User ID': user_id, 'Folder ID': folder_id }, headers=['Message ID', 'User ID', 'Folder ID'], removeNull=True ) entry_context = { f'MSGraphMail(val.ID === {message_id}': None } return_outputs(human_readable, entry_context) def get_attachment(message_id: str, user_id: str, attachment_id: str, folder_id: str = None) -> dict: """ Args: message_id (str): user_id (str_: attachment_id (str): folder_id (str): Returns: dict: """ no_folder = f'/users/{user_id}/messages/{message_id}/attachments/{attachment_id}' with_folder = (f'/users/{user_id}/{build_folders_path(folder_id)}/' # type: ignore f'messages/{message_id}/attachments/{attachment_id}') suffix = with_folder if folder_id else no_folder response = http_request('GET', suffix) return response def get_attachment_command(): message_id = demisto.args().get('message_id') user_id = demisto.args().get('user_id') folder_id = demisto.args().get('folder_id') attachment_id = demisto.args().get('attachment_id') raw_response = get_attachment(message_id, user_id, folder_id=folder_id, attachment_id=attachment_id) entry_context = file_result_creator(raw_response) demisto.results(entry_context) def get_message(user_id: str, message_id: str, folder_id: str = None, odata: str = None) -> dict: """ Args: user_id (str): User ID to pull message from message_id (str): Message ID to pull folder_id: (str) Folder ID to pull from odata (str): OData query Returns dict: request json """ no_folder = f'/users/{user_id}/messages/{message_id}/' with_folder = (f'/users/{user_id}/{build_folders_path(folder_id)}' # type: ignore f'/messages/{message_id}/') suffix = with_folder if folder_id else no_folder response = http_request('GET', suffix, odata=odata) # Add user ID response['userId'] = user_id return response def get_message_command(): user_id = demisto.args().get('user_id') folder_id = demisto.args().get('folder_id') message_id = demisto.args().get('message_id') get_body = demisto.args().get('get_body') == 'true' odata = demisto.args().get('odata') raw_response = get_message(user_id, message_id, folder_id, odata=odata) mail_context = build_mail_object(raw_response, user_id=user_id, get_body=get_body) entry_context = {'MSGraphMail(val.ID === obj.ID)': mail_context} human_readable = tableToMarkdown( f'Results for message ID {message_id}', mail_context, headers=['ID', 'Subject', 'SendTime', 'Sender', 'From', 'HasAttachments', 'Body'] ) return_outputs( human_readable, entry_context, raw_response=raw_response ) def list_attachments(user_id: str, message_id: str, folder_id: str) -> dict: """Listing all the attachments Args: user_id (str): message_id (str): folder_id (str): Returns: dict: """ no_folder = f'/users/{user_id}/messages/{message_id}/attachments/' with_folder = f'/users/{user_id}/{build_folders_path(folder_id)}/messages/{message_id}/attachments/' suffix = with_folder if folder_id else no_folder return http_request('GET', suffix) def list_attachments_command(): user_id = demisto.args().get('user_id') message_id = demisto.args().get('message_id') folder_id = demisto.args().get('folder_id') raw_response = list_attachments(user_id, message_id, folder_id) attachments = raw_response.get('value') if attachments: attachment_list = [{ 'ID': attachment.get('id'), 'Name': attachment.get('name'), 'Type': attachment.get('contentType') } for attachment in attachments] attachment_entry = {'ID': message_id, 'Attachment': attachment_list, 'UserID': user_id} entry_context = {'MSGraphMailAttachment(val.ID === obj.ID)': attachment_entry} # Build human readable file_names = [attachment.get('Name') for attachment in attachment_list if isinstance( attachment, dict) and attachment.get('Name')] human_readable = tableToMarkdown( f'Total of {len(attachment_list)} attachments found in message {message_id} from user {user_id}', {'File names': file_names} ) return_outputs(human_readable, entry_context, raw_response) else: human_readable = f'### No attachments found in message {message_id}' return_outputs(human_readable, dict(), raw_response) def main(): """ COMMANDS MANAGER / SWITCH PANEL """ command = demisto.command() LOG(f'Command being called is {command}') try: if command == 'test-module': # This is the call made when pressing the integration test button. test_module() demisto.results('ok') elif command in ('msgraph-mail-list-emails', 'msgraph-mail-search-email'): list_mails_command() elif command == 'msgraph-mail-get-email': get_message_command() elif command == 'msgraph-mail-delete-email': delete_mail_command() elif command == 'msgraph-mail-list-attachments': list_attachments_command() elif command == 'msgraph-mail-get-attachment': get_attachment_command() # Log exceptions except Exception as e: LOG(e) LOG.print_log() raise if __name__ == "builtins": main()
[ "demistomock.params", "demistomock.command", "requests.packages.urllib3.disable_warnings", "demistomock.args", "base64.b64decode", "requests.request", "os.environ.pop", "demistomock.getIntegrationContext", "requests.get", "demistomock.results" ]
[((238, 282), 'requests.packages.urllib3.disable_warnings', 'requests.packages.urllib3.disable_warnings', ([], {}), '()\n', (280, 282), False, 'import requests\n'), ((337, 368), 'demistomock.getIntegrationContext', 'demisto.getIntegrationContext', ([], {}), '()\n', (366, 368), True, 'import demistomock as demisto\n'), ((894, 926), 'os.environ.pop', 'os.environ.pop', (['"""HTTP_PROXY"""', '""""""'], {}), "('HTTP_PROXY', '')\n", (908, 926), False, 'import os\n'), ((931, 964), 'os.environ.pop', 'os.environ.pop', (['"""HTTPS_PROXY"""', '""""""'], {}), "('HTTPS_PROXY', '')\n", (945, 964), False, 'import os\n'), ((969, 1001), 'os.environ.pop', 'os.environ.pop', (['"""http_proxy"""', '""""""'], {}), "('http_proxy', '')\n", (983, 1001), False, 'import os\n'), ((1006, 1039), 'os.environ.pop', 'os.environ.pop', (['"""https_proxy"""', '""""""'], {}), "('https_proxy', '')\n", (1020, 1039), False, 'import os\n'), ((2387, 2514), 'requests.request', 'requests.request', (['method', '(url if url else BASE_URL + url_suffix)'], {'verify': 'USE_SSL', 'params': 'params', 'data': 'data', 'headers': 'headers'}), '(method, url if url else BASE_URL + url_suffix, verify=\n USE_SSL, params=params, data=data, headers=headers)\n', (2403, 2514), False, 'import requests\n'), ((3758, 3869), 'requests.get', 'requests.get', (['DEMISTOBOT'], {'headers': 'headers', 'params': "{'tenant': TENANT_ID, 'product': product}", 'verify': 'USE_SSL'}), "(DEMISTOBOT, headers=headers, params={'tenant': TENANT_ID,\n 'product': product}, verify=USE_SSL)\n", (3770, 3869), False, 'import requests\n'), ((9483, 9533), 'requests.get', 'requests.get', (['url'], {'headers': 'headers', 'verify': 'USE_SSL'}), '(url, headers=headers, verify=USE_SSL)\n', (9495, 9533), False, 'import requests\n'), ((13238, 13268), 'demistomock.results', 'demisto.results', (['entry_context'], {}), '(entry_context)\n', (13253, 13268), True, 'import demistomock as demisto\n'), ((16670, 16687), 'demistomock.command', 'demisto.command', ([], {}), '()\n', (16685, 16687), True, 'import demistomock as demisto\n'), ((452, 468), 'demistomock.params', 'demisto.params', ([], {}), '()\n', (466, 468), True, 'import demistomock as demisto\n'), ((494, 510), 'demistomock.params', 'demisto.params', ([], {}), '()\n', (508, 510), True, 'import demistomock as demisto\n'), ((595, 611), 'demistomock.params', 'demisto.params', ([], {}), '()\n', (609, 611), True, 'import demistomock as demisto\n'), ((8938, 8960), 'base64.b64decode', 'base64.b64decode', (['data'], {}), '(data)\n', (8954, 8960), False, 'import base64\n'), ((715, 731), 'demistomock.params', 'demisto.params', ([], {}), '()\n', (729, 731), True, 'import demistomock as demisto\n'), ((859, 875), 'demistomock.params', 'demisto.params', ([], {}), '()\n', (873, 875), True, 'import demistomock as demisto\n'), ((10092, 10106), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (10104, 10106), True, 'import demistomock as demisto\n'), ((10439, 10453), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (10451, 10453), True, 'import demistomock as demisto\n'), ((10482, 10496), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (10494, 10496), True, 'import demistomock as demisto\n'), ((10528, 10542), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (10540, 10542), True, 'import demistomock as demisto\n'), ((10572, 10586), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (10584, 10586), True, 'import demistomock as demisto\n'), ((11611, 11625), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (11623, 11625), True, 'import demistomock as demisto\n'), ((11657, 11671), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (11669, 11671), True, 'import demistomock as demisto\n'), ((11706, 11720), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (11718, 11720), True, 'import demistomock as demisto\n'), ((12894, 12908), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (12906, 12908), True, 'import demistomock as demisto\n'), ((12941, 12955), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (12953, 12955), True, 'import demistomock as demisto\n'), ((12987, 13001), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (12999, 13001), True, 'import demistomock as demisto\n'), ((13039, 13053), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (13051, 13053), True, 'import demistomock as demisto\n'), ((14032, 14046), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (14044, 14046), True, 'import demistomock as demisto\n'), ((14078, 14092), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (14090, 14092), True, 'import demistomock as demisto\n'), ((14127, 14141), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (14139, 14141), True, 'import demistomock as demisto\n'), ((14228, 14242), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (14240, 14242), True, 'import demistomock as demisto\n'), ((15350, 15364), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (15362, 15364), True, 'import demistomock as demisto\n'), ((15397, 15411), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (15409, 15411), True, 'import demistomock as demisto\n'), ((15446, 15460), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (15458, 15460), True, 'import demistomock as demisto\n'), ((16898, 16919), 'demistomock.results', 'demisto.results', (['"""ok"""'], {}), "('ok')\n", (16913, 16919), True, 'import demistomock as demisto\n'), ((14175, 14189), 'demistomock.args', 'demisto.args', ([], {}), '()\n', (14187, 14189), True, 'import demistomock as demisto\n')]
from django.conf import settings from django.template.defaulttags import register from django.urls import reverse from accounts.models import User from supply_chains.models import SupplyChain, SupplyChainUmbrella @register.simple_tag def get_feedback_emails_as_string() -> str: """Formats emails as comma separated string to be passed to a mailto link""" users = User.objects.filter(receive_feedback_emails=True) emails = [user.email for user in users] return ",".join(emails) @register.simple_tag def get_action_progress_route(user) -> str: """Return SAP route based on the logged in user""" route = None if user.is_admin: route = reverse("action-progress") else: route = reverse( "action-progress-department", kwargs={"dept": user.gov_department.name} ) return route @register.simple_tag(takes_context=True) def get_active_menu(context): menu = None resolver = context["request"].resolver_match view_name, route = resolver.view_name, resolver.route if route.startswith("supply-chains/"): menu = "updates" if route.startswith("action-progress/"): menu = "sap" if route.startswith("chain-details/"): menu = "scd" if route == "" and view_name == "index": menu = "home" return menu @register.simple_tag(takes_context=False) def quicksight_countries_dashboard_url(): return settings.QUICKSIGHT_COUNTRIES_DASHBOARD_URL @register.simple_tag(takes_context=True) def visualisation_link(context): request = context["request"] user = request.user gov_department = user.gov_department visualisation_url = gov_department.visualisation_url return visualisation_url @register.simple_tag(takes_context=False) def get_tasklist_link(supply_chain_slug): """Return link to tasklist page. With SC Umbrella feature, this link vary depending on the supply chain. If part of umbrella, it goes back to umbrella tasklist otherwise to supply chain. """ sc = SupplyChain.objects.get(slug=supply_chain_slug) if sc.supply_chain_umbrella: slug = sc.supply_chain_umbrella.slug else: slug = supply_chain_slug return reverse("supply-chain-task-list", kwargs={"supply_chain_slug": slug})
[ "supply_chains.models.SupplyChain.objects.get", "accounts.models.User.objects.filter", "django.template.defaulttags.register.simple_tag", "django.urls.reverse" ]
[((850, 889), 'django.template.defaulttags.register.simple_tag', 'register.simple_tag', ([], {'takes_context': '(True)'}), '(takes_context=True)\n', (869, 889), False, 'from django.template.defaulttags import register\n'), ((1329, 1369), 'django.template.defaulttags.register.simple_tag', 'register.simple_tag', ([], {'takes_context': '(False)'}), '(takes_context=False)\n', (1348, 1369), False, 'from django.template.defaulttags import register\n'), ((1470, 1509), 'django.template.defaulttags.register.simple_tag', 'register.simple_tag', ([], {'takes_context': '(True)'}), '(takes_context=True)\n', (1489, 1509), False, 'from django.template.defaulttags import register\n'), ((1730, 1770), 'django.template.defaulttags.register.simple_tag', 'register.simple_tag', ([], {'takes_context': '(False)'}), '(takes_context=False)\n', (1749, 1770), False, 'from django.template.defaulttags import register\n'), ((374, 423), 'accounts.models.User.objects.filter', 'User.objects.filter', ([], {'receive_feedback_emails': '(True)'}), '(receive_feedback_emails=True)\n', (393, 423), False, 'from accounts.models import User\n'), ((2030, 2077), 'supply_chains.models.SupplyChain.objects.get', 'SupplyChain.objects.get', ([], {'slug': 'supply_chain_slug'}), '(slug=supply_chain_slug)\n', (2053, 2077), False, 'from supply_chains.models import SupplyChain, SupplyChainUmbrella\n'), ((2212, 2281), 'django.urls.reverse', 'reverse', (['"""supply-chain-task-list"""'], {'kwargs': "{'supply_chain_slug': slug}"}), "('supply-chain-task-list', kwargs={'supply_chain_slug': slug})\n", (2219, 2281), False, 'from django.urls import reverse\n'), ((673, 699), 'django.urls.reverse', 'reverse', (['"""action-progress"""'], {}), "('action-progress')\n", (680, 699), False, 'from django.urls import reverse\n'), ((726, 811), 'django.urls.reverse', 'reverse', (['"""action-progress-department"""'], {'kwargs': "{'dept': user.gov_department.name}"}), "('action-progress-department', kwargs={'dept': user.gov_department.name}\n )\n", (733, 811), False, 'from django.urls import reverse\n')]
from decimal import Decimal,getcontext getcontext().prec=10**6 a,b = map(Decimal,input().split()) print(format(a * b,'f'))
[ "decimal.getcontext" ]
[((39, 51), 'decimal.getcontext', 'getcontext', ([], {}), '()\n', (49, 51), False, 'from decimal import Decimal, getcontext\n')]