seq_id string | text string | repo_name string | sub_path string | file_name string | file_ext string | file_size_in_byte int64 | program_lang string | lang string | doc_type string | stars int64 | dataset string | pt string | api list |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
18672969440 | import pandas as pd
import argparse
import yaml
import os
import io
import json
def retrieve_params(config):
with open(config) as yaml_file:
params= yaml.safe_load(yaml_file)
return params
def generate_metadata_csv(params):
excel_file_path = params["data"]["standard_excel_file"]
df = pd.read_csv(excel_file_path)
df.columns = [i.strip() for i in df.columns]
buffer = io.StringIO()
df.info(buf=buffer, verbose = True, null_counts = False, memory_usage=False)
s = buffer.getvalue()
s = s.split("\n")
del(s[1])
s = "\n".join(s)
standard_csv_meta = params["data"]["standard_csv_meta"]
with open(standard_csv_meta, "a+") as f:
f.write(s)
f.write("\n")
def generate_metadata_json(params):
json_file_path = params["data"]["standard_json_file"]
with open(json_file_path) as json_file:
standard_dict = json.load(json_file)
standard_json_meta = params["data"]["standard_json_meta"]
keys1 = standard_dict.keys()
for i in standard_dict["items"]:
keys2 = i.keys()
break
b = standard_dict["items"][0]["snippet"]
keys3 = b.keys()
with open(standard_json_meta, "w") as meta:
meta.write(str(list(keys1)))
meta.write("\n")
meta.write(str(list(keys2)))
meta.write("\n")
meta.write(str(list(keys3)))
def generate_metadata(config):
params = retrieve_params(config=config)
generate_metadata_csv(params)
generate_metadata_json(params)
if __name__=="__main__":
args = argparse.ArgumentParser()
args.add_argument("--config", default="params.yaml")
parsed_args = args.parse_args()
generate_metadata(parsed_args.config) | sagar-harry/Youtube_Trending_data | generate_meta_data_file_2.py | generate_meta_data_file_2.py | py | 1,708 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "yaml.safe_load",
"line_number": 10,
"usage_type": "call"
},
{
"api_name": "pandas.read_csv",
"line_number": 17,
"usage_type": "call"
},
{
"api_name": "io.StringIO",
"line_number": 19,
"usage_type": "call"
},
{
"api_name": "json.load",
"line_numb... |
15381149189 | import requests
from weather_message import WeatherStation
LINE_URL = 'https://notify-api.line.me/api/notify'
def send_message(token, msg):
headers = {'Authorization': 'Bearer ' + token}
payload = {'message': msg}
response = requests.post(LINE_URL, headers=headers, params=payload)
return response.status_code
def main():
line_token = 'your_line_token' # 你的line權杖
msg = ''
status_code = send_message(line_token, msg)
print(status_code)
if __name__ == '__main__':
main()
| shamiOuO/weather_report | Line_notify.py | Line_notify.py | py | 544 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "requests.post",
"line_number": 10,
"usage_type": "call"
}
] |
21123419493 | from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, Text, TIMESTAMP
from sqlalchemy import func
Base = declarative_base()
class TestData(Base):
__tablename__ = 'test'
id = Column(Integer, primary_key = True)
data = Column(Text)
created_at = Column(TIMESTAMP, server_default = func.sysdate())
updated_at = Column(TIMESTAMP, server_default = func.sysdate())
| tosiaki/windyfall_bot | testdata.py | testdata.py | py | 423 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "sqlalchemy.ext.declarative.declarative_base",
"line_number": 5,
"usage_type": "call"
},
{
"api_name": "sqlalchemy.Column",
"line_number": 10,
"usage_type": "call"
},
{
"api_name": "sqlalchemy.Integer",
"line_number": 10,
"usage_type": "argument"
},
{
... |
72177063783 | import json
import traceback
from flask import Blueprint, jsonify
from bson.json_util import dumps
from models.users import User
get_users_blueprint = Blueprint("get_users_blueprint", __name__)
@get_users_blueprint.route("/get-users")
def get_users():
try:
users = User.find(User.record_status=="ALIVE").all()
users_list = []
for user in users:
user_dict = {}
for x in user:
user_dict[x[0]] = x[1]
users_list.append(user_dict)
return jsonify({
"status_code": "200",
"status": "success",
"message": "users_retrieved_ok",
"data": users_list
})
except:
traceback.print_exc()
return jsonify({
"status_code": "500",
"status": "error",
"message": "failed_to_retrieve_users",
"data": [],
}) | emacliam/REDIS-HACKERTHON---CRM | CRM BACKEND/controllers/users/get_users.py | get_users.py | py | 947 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "flask.Blueprint",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "models.users.User.find",
"line_number": 13,
"usage_type": "call"
},
{
"api_name": "models.users.User",
"line_number": 13,
"usage_type": "name"
},
{
"api_name": "models.users.... |
25175834547 | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sun Apr 2 17:19:48 2023
@author: acomeau
"""
import matplotlib.pyplot as plt
import time
import numpy as np
import math
x=np.zeros((1,100))
x1=np.zeros((1,100))
x2=np.zeros((1,100))
for timeSetepNdx in range(1,100):
x[0,timeSetepNdx]=timeSetepNdx
x1[0,timeSetepNdx]=math.cos(timeSetepNdx*2*math.pi/100.0)
x2[0,timeSetepNdx]=math.sin(timeSetepNdx*2*math.pi/100.0)
plt.figure()
plt.subplot(211)
plt.plot(x,x1,'k-.')
plt.plot(x,x2,'k-.')
plt.xlabel('Sample')
plt.ylabel('x,y')
plt.subplot(212)
plt.plot(x1,x2,'k-.')
plt.axes('square')
plt.xlabel('x1')
plt.ylabel('y1')
plt.show()
time.sleep(0.1)
| adriencomeau/Telescopium | untitled1.py | untitled1.py | py | 749 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "numpy.zeros",
"line_number": 14,
"usage_type": "call"
},
{
"api_name": "numpy.zeros",
"line_number": 15,
"usage_type": "call"
},
{
"api_name": "numpy.zeros",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "math.cos",
"line_number": 22,... |
27435754821 | import os
import pathlib
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.image import imsave, imread
def add_noise(noise_type, image):
if noise_type == "gauss":
shp = image.shape
mean = 0
var = 0.01
sigma = var ** 0.5
gauss = np.random.normal(mean, sigma, shp)
noise = image + gauss
return noise
if noise_type == "uniform":
k = 0.5
if image.ndim == 2:
row, col = image.shape
noise = np.random.rand(row, col)
else:
row, col, chan = image.shape
noise = np.random.rand(row, col, chan)
noise = image + k * (noise - 0.5)
return noise
if noise_type == "s&p":
sh = image.shape
s_vs_p = 0.5
amount = 0.05
out = np.copy(image)
num_salt = np.ceil(amount * image.size * s_vs_p)
coords = [np.random.randint(0, i - 1, int(num_salt)) for i in sh]
out[coords] = 1
num_peper = np.ceil(amount * image.size * (1.0 - s_vs_p))
coords = [np.random.randint(0, i - 1, int(num_peper)) for i in sh]
out[coords] = 0
return out
if noise_type == "poisson":
PEAK = 20
noisy = image + np.random.poisson(0.5 * PEAK, image.shape) / PEAK
return noisy
if noise_type == "speckle":
if image.ndim == 2:
row, col = image.shape
noise = np.random.randn(row, col)
else:
row, col, chan = image.shape
noise = np.random.randn(row, col, chan)
noisy = image + image * 0.5 * noise
return noisy
def read_images_1(img_path):
row, column = 3, 2
# Original picture
fig = plt.figure(img_path)
plt.axis("off")
img = imread(img_path)
fig.add_subplot(row, column, 1, title="Original")
plt.imshow(img, cmap="gray")
plt.axis("off")
fig.add_subplot(row, column, 2, title="Gauss")
plt.imshow(add_noise("gauss", img), cmap="gray")
plt.axis("off")
fig.add_subplot(row, column, 3, title="Uniform")
plt.imshow(add_noise("uniform", img), cmap="gray")
plt.axis("off")
fig.add_subplot(row, column, 4, title="s&p")
plt.imshow(add_noise("s&p", img), cmap="gray")
plt.axis("off")
fig.add_subplot(row, column, 5, title="Poisson")
plt.imshow(add_noise("poisson", img), cmap="gray")
plt.axis("off")
fig.add_subplot(row, column, 6, title="Speckle")
plt.imshow(add_noise("speckle", img), cmap="gray")
plt.axis("off")
plt.show(block=True)
if __name__ == "__main__":
img_path = os.path.join(pathlib.Path(__file__).parent.parent, "input1", "coins.png")
read_images_1(img_path)
| 206081/psio | Lab2/zad1.py | zad1.py | py | 2,703 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "numpy.random.normal",
"line_number": 15,
"usage_type": "call"
},
{
"api_name": "numpy.random",
"line_number": 15,
"usage_type": "attribute"
},
{
"api_name": "numpy.random.rand",
"line_number": 24,
"usage_type": "call"
},
{
"api_name": "numpy.random"... |
12532422975 | """empty message
Revision ID: 8f71e60633a3
Revises: 2e7679aa003d
Create Date: 2023-01-24 23:57:44.856118
"""
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import mysql
# revision identifiers, used by Alembic.
revision = '8f71e60633a3'
down_revision = '2e7679aa003d'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table('cities', schema=None) as batch_op:
batch_op.add_column(sa.Column('ascii', sa.String(length=20), nullable=True))
batch_op.add_column(sa.Column('feat_code', sa.String(length=20), nullable=True))
batch_op.drop_column('ascci')
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table('cities', schema=None) as batch_op:
batch_op.add_column(sa.Column('ascci', mysql.VARCHAR(length=20), nullable=True))
batch_op.drop_column('feat_code')
batch_op.drop_column('ascii')
# ### end Alembic commands ###
| lusferror/SugestionCties | src/migrations/versions/8f71e60633a3_.py | 8f71e60633a3_.py | py | 1,087 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "alembic.op.batch_alter_table",
"line_number": 21,
"usage_type": "call"
},
{
"api_name": "alembic.op",
"line_number": 21,
"usage_type": "name"
},
{
"api_name": "sqlalchemy.Column",
"line_number": 22,
"usage_type": "call"
},
{
"api_name": "sqlalchemy.... |
69941827626 | import pickle
import os
import numpy as np
import torch
from sklearn.datasets import make_blobs
from torch.utils.data import Dataset
from torch.utils.data.dataset import T_co
def prepare_blob_dataset(city_num: int = 50,
feature_dim: int = 2,
sample_num: int = 100000
) -> (np.ndarray, np.ndarray):
samples = np.zeros((sample_num, city_num, feature_dim))
labels = np.zeros((sample_num, city_num))
for sample in range(sample_num):
samples[sample, :, :], labels[sample, :] = make_blobs(city_num,
feature_dim,
cluster_std=0.07,
center_box=(0.0, 1.0))
return samples, labels
class BlobDataset(Dataset):
def __init__(self, city_num: int = 50, feature_dim: int = 2, sample_num: int = 100000):
super(BlobDataset, self).__init__()
self.city_num = city_num
self.feature_dim = feature_dim
self.sample_num = sample_num
self.samples, self.labels = self._generate_dataset()
def __getitem__(self, index) -> T_co:
sample = self.samples[index]
label = self.labels[index]
data_pair = {'sample': sample, 'label': label}
return data_pair
def __len__(self):
return len(self.samples)
def _generate_dataset(self):
samples, labels = prepare_blob_dataset(self.city_num,
self.feature_dim,
self.sample_num)
return torch.from_numpy(samples).float(), torch.from_numpy(labels)
# TSP dataset wrapper from https://github.com/wouterkool/attention-learn-to-route
class TSPDataset(Dataset):
def __init__(self, filename=None, size=20, num_samples=1000000, offset=0, distribution=None):
super(TSPDataset, self).__init__()
self.data_set = []
if filename is not None:
if os.path.splitext(filename)[1] == '.npy':
data = np.load(filename)
assert data.ndim == (2 or 3), "data.ndim should either be 2 or 3"
if data.ndim == 2:
data = np.expand_dims(data, axis=0)
self.data = [torch.FloatTensor(row) for row in (data[offset:offset + num_samples])]
else:
assert os.path.splitext(filename)[1] == '.pkl'
with open(filename, 'rb') as f:
data = pickle.load(f)
self.data = [torch.FloatTensor(row) for row in (data[offset:offset + num_samples])]
else:
# Sample points randomly in [0, 1] square
self.data = [torch.FloatTensor(size, 2).uniform_(0, 1) for _ in range(num_samples)]
self.size = len(self.data)
def __len__(self):
return self.size
def __getitem__(self, idx):
return self.data[idx]
def data_normalisation(self):
self.data = [(self.data[row] - self.data[row].min()) / (self.data[row].max() - self.data[row].min())
for row in range(self.size)]
if __name__ == '__main__':
test = TSPDataset(filename='tmp/platforms.npy')
test2 = TSPDataset(size=20, num_samples=50)
print(len(test))
| ma-shangao/rl_waypoint_mrta | dataset_preparation.py | dataset_preparation.py | py | 3,367 | python | en | code | 2 | github-code | 36 | [
{
"api_name": "numpy.zeros",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "numpy.zeros",
"line_number": 17,
"usage_type": "call"
},
{
"api_name": "sklearn.datasets.make_blobs",
"line_number": 20,
"usage_type": "call"
},
{
"api_name": "numpy.ndarray",
... |
17393417065 | import sqlite3
import constants
#from constants import insert_base_user
DB_NAME = "vehicle_management.db"
db = sqlite3.connect(DB_NAME)
db.row_factory = sqlite3.Row
c = db.cursor()
#
# insert_base_user = """
# INSERT INTO BASE_USER (user_name, email, phone_number, address)
# VALUES (:user_name, :email, :phone_number, :address
# )
# """
# c.execute(insert_base_user, {'user_name': 'dux',
# 'email': 'dux@abv.bg',
# 'phone_number': 121,
# 'address': 'Ruse'})
class Mechanic:
def __init__(self, user_name, email, phone_number, address, type):
self.user_name = user_name
self.email = email
self.phone_number = phone_number
self.address = address
self.type = type
@classmethod
def save_to_db(cls, username, email, phone_number, address, type):
c.execute(constants.insert_base_user,
{'user_name': username,
'email': email,
'phone_number': phone_number,
'address': address,
'type': type})
ids = c.execute('SELECT ID FROM BASE_USER WHERE USER_NAME =?',(username,))
for i in ids.fetchone():
# print(i)
c.execute('INSERT INTO MECHANIC VALUES (?)', (i,))
c.execute('INSERT INTO MECHANIC_SERVICE (MECHANIC_ID) VALUES (?)', (i,))
db.commit()
db.commit()
db.commit()
@classmethod
def add_service_to_mechanic_id(cls, service_name, mechanic_id):
service_id = c.execute('SELECT ID FROM SERVICE WHERE NAME=?', (service_name,))
for i in service_id.fetchone():
service_id = i
c.execute('UPDATE MECHANIC_SERVICE SET SERVICE_ID =? WHERE ID=?', (service_id, mechanic_id))
db.commit()
| bonevb/HackBulgaria-Programming101-Python-2018 | week10/01-Vehicle-Repair-Manager/mechanic.py | mechanic.py | py | 1,904 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "sqlite3.connect",
"line_number": 7,
"usage_type": "call"
},
{
"api_name": "sqlite3.Row",
"line_number": 8,
"usage_type": "attribute"
},
{
"api_name": "constants.insert_base_user",
"line_number": 34,
"usage_type": "attribute"
}
] |
42985186741 | import psycopg2
def create_table(connection):
# il cursore è utillizato esequire comandi e accedere alla risposta
cursor = connection.cursor()
try:
# prepara il comando
create_table_query = '''CREATE TABLE students
(ID SERIAL PRIMARY KEY ,
NAME TEXT NOT NULL,
SURNAME TEXT NOT NULL,
unique(NAME,SURNAME)); '''
# eseguo il comando
cursor.execute(create_table_query)
create_table_query = '''CREATE TABLE courses
(ID SERIAL PRIMARY KEY ,
NAME TEXT NOT NULL,
DESCR TEXT NOT NULL); '''
cursor.execute(create_table_query)
create_table_query = '''CREATE TABLE booking
(STUDENT_ID BIGINT ,
COURSE_ID BIGINT ,
PRIMARY KEY (STUDENT_ID,COURSE_ID),
FOREIGN KEY (STUDENT_ID) REFERENCES students(ID) MATCH FULL ON DELETE CASCADE,
FOREIGN KEY (COURSE_ID) REFERENCES courses(ID) MATCH FULL ON DELETE CASCADE
); '''
cursor.execute(create_table_query)
# le modifiche diventano definitive
connection.commit()
except (Exception, psycopg2.Error) as error:
print("Error creating tables", error)
finally:
# chiudo il cursore in finally
cursor.close()
def insert_names(connection):
cursor = connection.cursor()
try:
nomi = [("Marco", "Torlaschi"), ("Roberta", "Latini"), ("Giorgo", "Franzini")]
# preparo il comando generico con %s e poi inserisco valori in all'esecuzione
insert = "INSERT INTO students (NAME,SURNAME) VALUES (%s,%s)"
for n in nomi:
cursor.execute(insert, n)
connection.commit()
except (Exception, psycopg2.Error) as error:
print("Error inserting names", error)
finally:
cursor.close()
def insert_courses(connection):
cursor = connection.cursor()
try:
corsi = [("SQL", "corso sql"), ("SPRING", "corso spring")]
insert = "INSERT INTO courses (NAME,DESCR) VALUES (%s,%s)"
for n in corsi:
cursor.execute(insert, n)
connection.commit()
except (Exception, psycopg2.Error) as error:
print("Error inserting names", error)
finally:
cursor.close()
def insert_booking(connection, name, surname, course):
cursor = connection.cursor()
try:
cursor.execute("SELECT ID FROM students WHERE NAME=%s AND SURNAME=%s", (name, surname))
student_id = cursor.fetchone()[0]
cursor.execute("SELECT ID FROM courses WHERE NAME = %s ", (course,))
course_id = cursor.fetchone()[0]
cursor.execute("INSERT INTO booking (STUDENT_ID,COURSE_ID) VALUES (%s,%s)", (str(student_id), str(course_id)))
connection.commit()
except (Exception, psycopg2.Error) as error:
print("Error inserting bookings", error)
finally:
cursor.close()
def delate_names(connetion):
cursor = connection.cursor()
try:
cursor.execute("DELETE FROM students where name='Roberta' ")
connection.commit()
except (Exception, psycopg2.Error) as error:
print("Error deleting name", error)
finally:
cursor.close()
def drop_tables(connetion):
cursor = connection.cursor()
try:
cursor.execute("DROP TABLE booking ")
cursor.execute("DROP TABLE students ")
cursor.execute("DROP TABLE courses ")
connection.commit()
except (Exception, psycopg2.Error) as error:
print("Error deleting name", error)
finally:
cursor.close()
if __name__ == '__main__':
print("esempi sql")
try:
# apro la connessione
connection = psycopg2.connect(user="postgres",
password="password",
host="127.0.0.1",
port="5432",
database="sample")
#drop_tables(connection)
create_table(connection)
insert_names(connection)
insert_courses(connection)
insert_booking(connection, "Marco", "Torlaschi", "SQL")
insert_booking(connection, "Marco", "Torlaschi", "SPRING")
insert_booking(connection, "Roberta", "Latini", "SPRING")
cursor = connection.cursor()
cursor.execute("SELECT * FROM students,booking,courses WHERE students.ID=booking.STUDENT_ID AND courses.ID=booking.COURSE_ID")
riga = cursor.fetchall()
print(riga)
drop_tables(connection)
except (Exception, psycopg2.Error) as error:
# catcho l'errore in connessione
print("Error while connecting to PostgreSQL", error)
finally:
# chiudo la connessione in finally per essere sicuro che avvenga sempre
if (connection):
connection.close()
print("PostgreSQL connection is closed")
| Torla/postgres_ex | main.py | main.py | py | 5,031 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "psycopg2.Error",
"line_number": 39,
"usage_type": "attribute"
},
{
"api_name": "psycopg2.Error",
"line_number": 60,
"usage_type": "attribute"
},
{
"api_name": "psycopg2.Error",
"line_number": 79,
"usage_type": "attribute"
},
{
"api_name": "psycopg2.... |
70506020904 | #importing libraries
import pandas as pd
from selenium import webdriver # for webdriver
from selenium.common.exceptions import NoSuchElementException # for exception handling
import time # for delay
# setting platform for selenium
path = r'C:\Users\haqab\Desktop\DS\chromedriver.exe'
driver = webdriver.Chrome(path)
# url
driver.get('https://www.olx.in/cars_c84')
# setting arrays for data.
links = []
URL = []
Company_name = []
prices = []
Location = []
Model = []
Variant = []
Year = []
Fuel = []
Transmission = []
Mileage = []
No_owner = []
#main state wise url links
for i in pages:
driver.get(i)
for j in range(1,15):
try:
time.sleep(1)
# for clicking load more botton
load_more = driver.find_element_by_xpath('//*[@class="rui-3sH3b rui-3K5JC rui-1zK8h"]')
load_more.click()
# escaping errors
except NoSuchElementException:
pass
# car links
# main links of cars to scrape.
posts = driver.find_elements_by_xpath('//*[@class = "EIR5N"]/a')
links = [elem.get_attribute('href') for elem in posts]
# checking the output
#print(len(links))
# individual cars url main scraping process..
for i in links:
driver.get(i)
try:
url = driver.find_element_by_xpath('//*[@rel = "alternate"]')
#print(url.get_attribute('href'))
URL.append(url.get_attribute('href'))
name = driver.find_element_by_xpath('//*[@data-aut-id = "value_make"]').text
#print(name)
Company_name.append(name)
price = driver.find_element_by_xpath('//*[@class="_18gRm"]').text
#print(price)
prices.append(price)
local = driver.find_element_by_xpath('//*[@class="_2FRXm"]').text
#print(local)
Location.append(local.split(',')[2])
model = driver.find_element_by_xpath('//*[@data-aut-id = "value_model"]').text
#print(model)
Model.append(model)
variant = driver.find_element_by_xpath('//*[@data-aut-id = "value_variant"]').text
#print(variant)
Variant.append(variant)
year = driver.find_element_by_xpath('//*[@data-aut-id = "value_year"]').text
#print(year)
Year.append(year)
fuel = driver.find_element_by_xpath('//*[@data-aut-id = "value_petrol"]').text
#print(fuel)
Fuel.append(fuel)
transmission = driver.find_element_by_xpath('//*[@data-aut-id = "value_transmission"]').text
#print(transmission)
Transmission.append(transmission)
mileage = driver.find_element_by_xpath('//*[@data-aut-id = "value_mileage"]').text
#print(mileage)
Mileage.append(mileage)
no_owner = driver.find_element_by_xpath('//*[@data-aut-id = "value_first_owner"]').text
#print(no_owner)
No_owner.append(no_owner)
except NoSuchElementException:
pass
#print('One state complete')
#print(len(links))
# The complete output
# conveting into dict..
dictt = {
'URL' : URL,
'Company_name' : Company_name,
'prices' : prices,
'Loctaion' : Location,
'Model' : Model,
'Varient' : Variant,
'Year' : Year,
'Fuel' : Fuel,
'Transmission' : Transmission,
'Mileage' : Mileage,
'No_owner' : No_owner }
dictt
# saving to data frame using pandas
df2 = pd.DataFrame.from_dict(dictt, orient = 'index')
df2 = df.transpose()
# output file
df.to_csv('output.csv')
| Abdulhaq005/Web-Scraping-scrapy-and-selenium- | cars/spiders/selenium_script.py | selenium_script.py | py | 3,645 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "selenium.webdriver.Chrome",
"line_number": 10,
"usage_type": "call"
},
{
"api_name": "selenium.webdriver",
"line_number": 10,
"usage_type": "name"
},
{
"api_name": "time.sleep",
"line_number": 35,
"usage_type": "call"
},
{
"api_name": "selenium.comm... |
29261172588 | import xml.etree.ElementTree as ET
def xml_parse(file_byte):
def get_recursive(parent):
res = {}
if not parent.getchildren():
res[parent.tag] = ''
return res
res[parent.tag] = []
for child in parent:
if child.getchildren():
res[parent.tag].append(get_recursive(child))
else:
res[parent.tag].append({child.tag: child.text})
return res
root = ET.fromstring(file_byte)
return get_recursive(root)
| oktavianustjoea/ap-app | xml_converter/utils.py | utils.py | py | 529 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "xml.etree.ElementTree.fromstring",
"line_number": 19,
"usage_type": "call"
},
{
"api_name": "xml.etree.ElementTree",
"line_number": 19,
"usage_type": "name"
}
] |
70307229865 | import os
import requests
import json
from requests_oauthlib import OAuth1
from dotenv import load_dotenv
load_dotenv()
CONSUMER_KEY = os.getenv("TWITTER_API_KEY")
CONSUMER_SECRET = os.getenv("TWITTER_API_SECRET")
ACCESS_TOKEN = os.getenv("TWITTER_ACCESS_TOKEN")
ACCESS_TOKEN_SECRET = os.getenv("TWITTER_ACCESS_TOKEN_SECRET")
API_KEY = os.getenv("WAKATIME_API_KEY")
auth = OAuth1(CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
def get_wakatime_stats():
waka_url = (
f"https://wakatime.com/api/v1/users/current/status_bar/today?api_key={API_KEY}"
)
response = requests.get(waka_url)
if response.status_code != 200:
raise Exception(
f"Request failed with error {response.status_code}, {response.text}"
)
stats = {}
top_3_languages = {}
stats["minutes_coded_today"] = response.json()["data"]["grand_total"]["text"]
for language in response.json()["data"]["languages"][0:3]:
top_3_languages[language["name"]] = language["text"]
return stats, top_3_languages
def update_coding_streak():
with open("coding_streak.txt", "r") as f:
coding_streak = int(f.read().strip())
stats, top_3_languages = get_wakatime_stats()
if stats["minutes_coded_today"]:
coding_streak += 1
else:
coding_streak = 0
with open("coding_streak.txt", "w") as f:
f.write(str(coding_streak))
# If the coding streak is broken, do not tweet and end the program. The streak file will be updated to 0.
if coding_streak == 0:
print("Coding streak broken, not tweeting")
exit()
return coding_streak
def format_tweet(coding_streak, minutes_coded_today, languages):
day_of_streak = coding_streak
tweet_text = f"Day {day_of_streak} of my coding streak: I coded {minutes_coded_today} today!\n\n#100DaysOfCode "
# make the hashtags each language
for language in languages.keys():
tweet_text += f"#{language} "
return tweet_text
def post_tweet(tweet_text):
url = "https://api.twitter.com/2/tweets"
headers = {"Content-Type": "application/json"}
data = {"text": tweet_text}
response = requests.post(url, auth=auth, data=json.dumps(data), headers=headers)
if response.status_code != 201:
raise Exception(
f"Request failed with error {response.status_code}, {response.text}"
)
print("Tweet posted successfully!", response.json())
if __name__ == "__main__":
coding_streak = update_coding_streak()
stats, languages = get_wakatime_stats()
tweet_text = format_tweet(coding_streak, stats["minutes_coded_today"], languages)
post_tweet(tweet_text)
| homeGrownCheese/tweet_waka_daily | tweet_stats.py | tweet_stats.py | py | 2,688 | python | en | code | 1 | github-code | 36 | [
{
"api_name": "dotenv.load_dotenv",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "os.getenv",
"line_number": 10,
"usage_type": "call"
},
{
"api_name": "os.getenv",
"line_number": 11,
"usage_type": "call"
},
{
"api_name": "os.getenv",
"line_number": ... |
72215373865 | # Download the helper library from https://www.twilio.com/docs/python/install
from twilio.rest import Client
# Your Account Sid and Auth Token from twilio.com/console
# DANGER! This is insecure. See http://twil.io/secure
account_sid = 'AC3f72ddfebffe2adae5b4efe0c6d9c9b6'
auth_token = 'd45d3fcfab5be3e08985b77a3fd13103'
client = Client(account_sid, auth_token)
from twilio.rest import TwilioRestClient
#填入你申请的号码
twilioNumber = '+19195253692'
#填入你验证的手机号
myNumbers = ["+8618601156335", "+8618601156335", "+8618601156335", "+8613120090157", "+8613120090157"]
#填入你想发送的信息
#Message
message = 'Hi this is ravana!'
client = Client(account_sid, auth_token)
for myNumber in myNumbers:
print("Sending", myNumber)
msg = client.messages.create(to=myNumber, from_=twilioNumber, body=message)
print(msg.sid)
#Phone call:
call = client.calls.create(
url='http://demo.twilio.com/docs/voice.xml',
to=myNumber,
from_=twilioNumber)
print(call.sid)
| leemengwei/tasty_shrimp_skype | phone_with_twilio.py | phone_with_twilio.py | py | 1,069 | python | en | code | 1 | github-code | 36 | [
{
"api_name": "twilio.rest.Client",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "twilio.rest.Client",
"line_number": 19,
"usage_type": "call"
}
] |
39687720281 | import networkx as nx, matplotlib.pyplot as plt, numpy as np, copy
import MarkovChain as SMC
from Randomized import *
from time import time
Pps = 0.4 # float(input('Ingrese la probabilidad de que un dispositivo protegido pase a ser susceptible: '))
Psp = 0.3 # float(input('Ingrese la probabilidad de que un dispositivo susceptible pase a ser protegido: '))
Psc = 0.5 # float(input('Ingrese la probabilidad de que un dispositivo susceptible pase a ser comprometido: '))
Pcp = 0.2 # float(input('Ingrese la probabilidad de que un dispositivo comprometido pase a ser protegido: '))
Pci = 0.1 # float(input('Ingrese la probabilidad de que un dispositivo comprometido pase a ser irrecuperable: '))
prec = 5 # int(input('Ingrese el número de decimales a manejar: '))
t_lim = 100 # int(input('Ingrese el número máximo de momentos a estudiar: '))
base_MT = [[1 - Pps, Pps, 0, 0], [Psp, 1 - Psp - Psc, Psc, 0], [Pcp, 0, 1 - Pcp - Pci, Pci], [0, 0, 0, 1]]
NetGraph, NetDevices, states = None, {}, ['Protegido', 'Susceptible', 'Comprometido', 'Irrecuperable']
HeatMap, gen_distr, N = [], [], 0
def setNonDefaults(Probs):
(Pps, Psp, Psc, Pcp, Pci) = Probs
base_MT = [[1 - Pps, Pps, 0, 0], [Psp, 1 - Psp - Psc, Psc, 0], [Pcp, 0, 1 - Pcp - Pci, Pci], [0, 0, 0, 1]]
return Psp, Psc, base_MT
def createNode(i, fs, nset, MT, adjust):
vi = [0, 0, 0, 0]
vi[states.index(fs)] = 1
if adjust:
NetDevices[i]['factual_state'] = fs
NetDevices[i]['init_vector'] = np.array(vi)
NetDevices[i]['trans_matrix'] = copy.deepcopy(np.array(MT))
for n in nset:
if (n not in NetDevices) or (i not in NetDevices[n]['neighbors']) and (len(NetDevices[n]['neighbors']) < 4):
NetDevices[i]['neighbors'].append(n)
NetDevices[n]['neighbors'].append(i)
else:
NetDevices[i] = {
'factual_state': fs,
'init_vector': np.array(vi),
'trans_matrix': copy.deepcopy(np.array(MT)),
'neighbors': nset }
def setNeighborFactor(u, NetDevices, Psp, Psc):
nset, count = NetDevices[u]['neighbors'], 0
if len(nset) == 0:
NetDevices[u]['trans_matrix'][1][1] = 1 - Psp - Psc
NetDevices[u]['trans_matrix'][1][2] = Psc
else:
for n in nset:
if NetDevices[n]['factual_state'] in states[2:]: count += 1
factor = (Psc + (count / len(nset))) / 2
NetDevices[u]['trans_matrix'][1][1] = np.round_(1 - Psp - factor, prec)
NetDevices[u]['trans_matrix'][1][2] = np.round_(factor, prec)
def setFactualState(j, NetDevices):
ref = states.index(NetDevices[j]['factual_state'])
comp = np.argmax(NetDevices[j]['init_vector'])
if NetDevices[j]['trans_matrix'][ref][comp] == 0:
if ref == 3: comp = ref
elif ref == 2 and comp == 1:
if NetDevices[j]['init_vector'][0] == 0: comp = 3
else: comp = 0
elif NetDevices[j]['init_vector'][ref + 1] == 0: comp = 0
else: comp = ref + 1
return states[comp]
def manualBuildNetwork(N, MT):
base_MT = MT; edges = []
nodes = [(x+1) for x in range(N)]
for y in nodes:
fs = ''
while fs not in states:
fs = input('Ingrese el estado del nodo '+str(y)+' (Protegido, Susceptible, Comprometido o Irrecuperable): ')
n_chain = input('Ingrese los vecinos del nodo ' + str(y) + ' separados por comas: ').split(',')
neighbors = [int(n) for n in n_chain]
createNode(y, fs, neighbors, base_MT, False)
for n in neighbors: edges.append([y, n])
return graphNetwork(nodes, edges)
def UIBuildNetwork(Nstates, Nedges, MT):
nodes, edges = [(x+1) for x in range(len(Nedges))], []
for y in nodes:
fs = Nstates[y-1]
n_chain = Nedges[y-1].split(',')
neighbors = [int(n) for n in n_chain]
createNode(y, fs, neighbors, MT, False)
for n in neighbors: edges.append([y, n])
return nodes, edges, NetDevices
def autoBuildNetwork(N, topology, MT):
base_MT = MT; edges, adjust = [], False
nodes = [(x+1) for x in range(N)]
for y in nodes:
fs, neighbors = randomFactualState(states), []
if y == 1:
for x in range(N):
NetDevices[x + 1] = {'factual_state': '', 'init_vector': [], 'trans_matrix': [], 'neighbors': []}
if topology == 'Lineal':
if y < N: neighbors.append(y + 1)
if y > 1: neighbors.append(y - 1)
elif topology == 'Anillo':
if y < N: neighbors.append(y + 1)
if y > 1: neighbors.append(y - 1)
if y in (1, N): neighbors.append(N - y + 1)
elif topology == 'Estrella':
if y == 1: neighbors = range(2, N + 1)
else: neighbors = [1]
elif topology == 'Cuadricula':
if y < N: neighbors.append(y + 1)
if y > 1: neighbors.append(y - 1)
if y % 2 == 0 and y in range(3, 10): neighbors.append(1)
if y in (2, 9) and N >= 9: neighbors.append(11 - y)
if y == 1: neighbors.extend(range(4, np.min([N+1, 8]), 2))
elif topology == 'Malla':
prev = len(NetDevices[y]['neighbors'])
limnodes = np.min([N, 5-prev])
if limnodes > 1:
tries, checks, adjust = np.random.randint(1, limnodes), 0, True
while checks < tries:
randneighbor = np.random.randint(1, N+1)
if y != randneighbor and randneighbor not in neighbors:
neighbors.append(randneighbor)
checks += 1
createNode(y, fs, neighbors, MT, adjust)
for n in neighbors: edges.append([y, n])
#graphNetwork(nodes, edges)
return NetDevices
def graphNetwork(nodes, edges):
NetGraph = nx.Graph()
NetGraph.add_nodes_from(nodes)
nx.set_node_attributes(NetGraph, NetDevices)
NetGraph.add_edges_from(edges)
MC = plt.figure(figsize=(8, 6))
pos = nx.kamada_kawai_layout(NetGraph)
nx.draw_networkx_nodes(NetGraph, pos, cmap=plt.get_cmap('jet'), node_size=1250, node_color='cyan')
nx.draw_networkx_labels(NetGraph, pos)
nx.draw_networkx_edges(NetGraph, pos)
plt.show()
return MC
def scanDistribution(N, NetDevices):
sums = np.array([0, 0, 0, 0])
for z in range(N): sums[states.index(NetDevices[z + 1]['factual_state'])] += 1
sums = sums / N
return sums
def spotNodeStates(N, NetDevices):
nodestates = np.array([0]*N)
for z in range(N): nodestates[z] = states.index(NetDevices[z + 1]['factual_state'])
return nodestates
def performStepAllNodes(N, NetDevices, Psp, Psc):
report, statereg = '', ''
#print('Distribution: ' + str(scanDistribution(N)))
for a in range(1, N + 1):
#report += str(NetDevices[a]['init_vector']) + ' '
#statereg += str(NetDevices[a]['factual_state']) + ' '
setNeighborFactor(a, NetDevices, Psp, Psc)
#print(NetDevices[a]['init_vector'], NetDevices[a]['trans_matrix'])
step = np.matmul(NetDevices[a]['init_vector'], NetDevices[a]['trans_matrix'])
NetDevices[a]['init_vector'] = np.around(step, prec)
NetDevices[a]['factual_state'] = setFactualState(a, NetDevices)
#print(report + '\n', statereg)
return scanDistribution(N, NetDevices)
def paintProgressMC(progress):
BP = plt.figure()
plt.xlabel('Time (t)')
plt.ylabel('Probability (P)')
for p in progress: plt.plot(p)
plt.legend(states)
plt.show()
return BP
def getPlots(progress, temps, comparetemps, context):
plt.plot(progress)
plt.title('Pps = {0}, Psp = {1}, Psc = {2}, Pcp = {3}, Pci = {4} \nInitialization Vector = {5}'
.format(Pps, Psp, Psc, Pcp, Pci, context))
plt.legend(states)
plt.xlabel('Time (t)')
plt.ylabel('Probability (P)')
plt.show()
difftemps = list(map(list, zip(temps, comparetemps)))
plt.plot(difftemps)
plt.title('Comparación de tiempos de ejecución conforme avanza el algoritmo')
plt.legend(['Múltiple', 'Simple'])
plt.xlabel('Moment (t)')
plt.ylabel('Execution Time (ms)')
plt.show()
def retrieveHeatMap(infection, nodes, moments):
HMNS = plt.figure()
plt.xlabel('Time (t)')
plt.ylabel('Nodes')
plt.imshow(infection, cmap='hot_r', aspect='auto', extent=[1, nodes, moments, 0])
plt.show()
infection = []
return HMNS
def start():
N = int(input('Ingrese el número de nodos de la red: '))
NetGraph = manualBuildNetwork(N, base_MT)
input('Press Enter to continue...')
num_nodes = len(NetGraph.nodes)
context = scanDistribution(num_nodes)
progress, temps, c, executime = [context], [0], 0, 0
while c < t_lim:
start_time = time()
progress.append(performStepAllNodes(num_nodes, NetDevices, Psp, Psc))
total_time = time() - start_time
executime += (total_time*1000); c += 1
temps.append(executime)
comparetemps = SMC.start(N)
getPlots(progress, temps, comparetemps, context)
#paintProgressMC()
retrieveHeatMap(HeatMap, len(HeatMap), len(HeatMap[0]))
#means = getMeanTime(matriz_transicion, vector_inverso)
#for m in range(len(means)): print('Tiempo medio desde el estado', Estados[m]+': ', means[m])
if __name__ == '__main__': start() | Zharet-Bautista-Montes/Markov_Inspector | venv/core/MultipleMC.py | MultipleMC.py | py | 9,302 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "numpy.array",
"line_number": 28,
"usage_type": "call"
},
{
"api_name": "copy.deepcopy",
"line_number": 29,
"usage_type": "call"
},
{
"api_name": "numpy.array",
"line_number": 29,
"usage_type": "call"
},
{
"api_name": "numpy.array",
"line_number"... |
17169329371 | import os
import telebot
from dotenv import load_dotenv
import client
load_dotenv()
bot_token = os.getenv('BOT_TOKEN')
admin = os.getenv('TG_ADMIN_ID')
bot = telebot.TeleBot(bot_token)
states_list = ["ADDRESS", "AMOUNT", "CONFIRM"]
states_of_users = {}
@bot.message_handler(commands=['start'])
def start_message(message):
"""
markup: создаем объект для работы с кнопками (row_width - определяет количество кнопок по ширине)
создаем три кнопки, типа:KeyboardButton
отправляем пользователю три кнопки типа:KeyboardButton
после команды /start.
"""
try:
client.create_user({"tg_ID": message.from_user.id,
"nick": message.from_user.username})
except Exception as e:
return e
markup = telebot.types.ReplyKeyboardMarkup(
row_width=3,
resize_keyboard=True
)
btn1 = telebot.types.KeyboardButton('Кошелек')
btn2 = telebot.types.KeyboardButton('Перевести')
btn3 = telebot.types.KeyboardButton('История')
btn4 = telebot.types.KeyboardButton('Админ')
markup.add(btn1, btn2, btn3, btn4)
text: str = f'Привет {message.from_user.full_name}, я твой бот-криптокошелек, \n' \
'у меня ты можешь хранить и отправлять биткоины'
bot.send_message(message.chat.id, text, reply_markup=markup)
@bot.message_handler(regexp='Кошелек')
def wallet(message):
wallet = client.get_user_wallet_by_tg_id(message.from_user.id)
markup = telebot.types.ReplyKeyboardMarkup(
row_width=2, resize_keyboard=True)
btn1 = telebot.types.KeyboardButton('Меню')
markup.add(btn1)
text = (f'Ваш баланс: {wallet["balance"]} BTC \n'
f'Ваш адрес: {wallet["address"]}')
bot.send_message(message.chat.id, text, reply_markup=markup)
@bot.message_handler(regexp='История транзакций')
def history(message):
transactions = client.get_user_transactions(
client.get_user_by_tg_id(message.from_user.id)["id"])
markup = telebot.types.ReplyKeyboardMarkup(
row_width=2,
resize_keyboard=True
)
btn1 = telebot.types.KeyboardButton('Меню')
markup.add(btn1)
text = f'Ваши транзакции: \n{transactions}'
bot.send_message(message.chat.id, text, reply_markup=markup)
@bot.message_handler(regexp='Перевести')
def transaction(message):
markup = telebot.types.ReplyKeyboardMarkup(
row_width=2,
resize_keyboard=True
)
btn1 = telebot.types.KeyboardButton('Меню')
markup.add(btn1)
text = f'Введите адрес кошелька куда хотите перевести: '
bot.send_message(message.chat.id, text, reply_markup=markup)
# тут мы даём юзеру состояние при котором ему будет возвращаться следующее
# сообщение
states_of_users[message.from_user.id] = {"STATE": "ADDRESS"}
@bot.message_handler(regexp='История')
def history(message):
markup = telebot.types.ReplyKeyboardMarkup(
row_width=2,
resize_keyboard=True
)
btn1 = telebot.types.KeyboardButton('Меню')
markup.add(btn1)
transactions = ['1', '2', '3'] # сюда мы загрузим транзакции
text = f'Ваши транзакции{transactions}'
bot.send_message(message.chat.id, text, reply_markup=markup)
@bot.message_handler(regexp='Меню')
def menu(message):
markup = telebot.types.ReplyKeyboardMarkup(
row_width=2,
resize_keyboard=True
)
btn1 = telebot.types.KeyboardButton('Кошелек')
btn2 = telebot.types.KeyboardButton('Перевести')
btn3 = telebot.types.KeyboardButton('История')
markup.add(btn1, btn2, btn3)
text = f'Главное меню'
bot.send_message(message.chat.id, text, reply_markup=markup)
@bot.message_handler(func=lambda message: message.from_user.id ==
admin and message.text == 'Админ')
def admin_panel(message):
if message.from_user.id != admin:
markup = telebot.types.ReplyKeyboardMarkup(
row_width=2,
resize_keyboard=True
)
btn1 = telebot.types.KeyboardButton('Меню')
markup.add(btn1)
bot.send_message(
message.chat.id,
'У вас нет прав администратора.',
reply_markup=markup)
else:
markup = telebot.types.ReplyKeyboardMarkup(
row_width=2, resize_keyboard=True)
btn1 = telebot.types.KeyboardButton('Общий баланс')
btn2 = telebot.types.KeyboardButton('Все юзеры')
btn3 = telebot.types.KeyboardButton('Данные по юзеру')
btn4 = telebot.types.KeyboardButton('Удалить юзера')
markup.add(btn1, btn2, btn3, btn4)
text = f'Админ-панель'
bot.send_message(message.chat.id, text, reply_markup=markup)
@bot.message_handler(func=lambda message: message.from_user.id ==
admin and message.text == "Все юзеры")
def show_all_users(message):
text = f'Юзеры:'
users = client.get_users()
inline_markup = telebot.types.InlineKeyboardMarkup()
for user in users:
inline_markup.add(telebot.types.InlineKeyboardButton(
text=f'Юзер: {user["tg_ID"]}',
callback_data=f'user_{user["tg_ID"]}'
))
bot.send_message(message.chat.id, text, reply_markup=inline_markup)
@bot.callback_query_handler(func=lambda call: True)
def callback_query(call):
query_type = call.data.split('_')[0]
users = client.get_users()
if query_type == 'user':
user_id = call.data.split('_')[1]
inline_markup = telebot.types.InlineKeyboardMarkup()
for user in users:
if str(user['tg_ID']) == user_id:
inline_markup.add(
telebot.types.InlineKeyboardButton(
text="Назад",
callback_data='users'),
telebot.types.InlineKeyboardButton(
text="Удалить юзера",
callback_data=f'delete_user_{user_id}'))
bot.edit_message_text(
text=f'Данные по юзеру:\n'
f'ID: {user["tg_ID"]}\n'
f'Ник: {user.get("nick")}\n'
f'Баланс: {client.get_user_balance_by_id(user["id"])}',
chat_id=call.message.chat.id,
message_id=call.message.message_id,
reply_markup=inline_markup)
print(f"Запрошен {user}")
break
if query_type == 'users':
inline_markup = telebot.types.InlineKeyboardMarkup()
for user in users:
inline_markup.add(
telebot.types.InlineKeyboardButton(
text=f'Юзер: {user["tg_ID"]}',
callback_data=f"user_{user['tg_ID']}"))
bot.edit_message_text(
text="Юзеры:",
chat_id=call.message.chat.id,
message_id=call.message.message_id,
reply_markup=inline_markup) # прикрепляем нашу разметку к ответному сообщению
if query_type == 'delete' and call.data.split('_')[1] == 'user':
user_id = int(call.data.split('_')[2])
for i, user in enumerate(users):
if user['tg_ID'] == user_id:
print(f'Удален Юзер: {users[i]}')
client.delete_user(users.pop(i)['id'])
inline_markup = telebot.types.InlineKeyboardMarkup()
for user in users:
inline_markup.add(
telebot.types.InlineKeyboardButton(
text=f'Юзер: {user["tg_ID"]}',
callback_data=f"user_{user['tg_ID']}"))
bot.edit_message_text(
text="Юзеры:",
chat_id=call.message.chat.id,
message_id=call.message.message_id,
reply_markup=inline_markup
)
@bot.message_handler(func=lambda message: message.from_user.id ==
admin and message.text == "Общий баланс")
def total_balance(message):
total_bal = client.get_total_balance()
markup = telebot.types.ReplyKeyboardMarkup(
row_width=2,
resize_keyboard=True
)
btn1 = telebot.types.KeyboardButton('Меню')
btn2 = telebot.types.KeyboardButton('Админка')
markup.add(btn1, btn2)
text = f'Общий баланс: {total_bal} BTC'
bot.send_message(message.chat.id, text, reply_markup=markup)
@bot.message_handler(
func=lambda message: states_of_users.get(
message.from_user.id)["STATE"] == 'AMOUNT')
def get_confirmation_of_transaction(message):
if message.text == "Меню":
del states_of_users[message.from_user.id]
menu(message)
markup = telebot.types.ReplyKeyboardMarkup(
row_width=2,
resize_keyboard=True
)
btn1 = telebot.types.KeyboardButton('Меню')
markup.add(btn1)
if message.text.isdigit():
text = f'Вы хотите перевести {message.text} сатоши,\n' \
f'на биткоин-адрес {states_of_users[message.from_user.id]["ADDRESS"]}: '
confirm = telebot.types.KeyboardButton('Подтверждаю')
markup.add(confirm)
bot.send_message(message.chat.id, text, reply_markup=markup)
# тут мы даём юзеру состояние при котором ему будет возвращаться
# следующее сообщение
states_of_users[message.from_user.id]["STATE"] = "CONFIRM"
states_of_users[message.from_user.id]["AMOUNT"] = int(message.text)
else:
text = f'Вы ввели не число, попробуйте заново: '
bot.send_message(message.chat.id, text, reply_markup=markup)
@bot.message_handler(
func=lambda message: states_of_users.get(
message.from_user.id)["STATE"] == 'CONFIRM')
def get_hash_of_transaction(message):
if message.text == "Меню":
del states_of_users[message.from_user.id]
menu(message)
elif message.text == "Подтверждаю":
bot.send_message(
message.chat.id,
f" Ваша транзакция: " + str(client.create_transaction(message.from_user.id,
states_of_users[message.from_user.id]['ADDRESS'],
states_of_users[message.from_user.id]['AMOUNT']))
)
del states_of_users[message.from_user.id]
menu(message)
@bot.message_handler(
func=lambda message: states_of_users.get(
message.from_user.id)["STATE"] == 'ADDRESS')
def get_amount_of_transaction(message):
if message.text == "Меню":
del states_of_users[message.from_user.id]
menu(message)
markup = telebot.types.ReplyKeyboardMarkup(
row_width=2, resize_keyboard=True)
btn1 = telebot.types.KeyboardButton('Меню')
markup.add(btn1)
text = f'Введите сумму в сатоши, которую хотите перевести: '
bot.send_message(message.chat.id, text, reply_markup=markup)
# тут мы даём юзеру состояние при котором ему будет возвращаться следующее
# сообщение
states_of_users[message.from_user.id]["STATE"] = "AMOUNT"
states_of_users[message.from_user.id]["ADDRESS"] = message.text
bot.infinity_polling(timeout=10)
| Lexxar91/bitcoin_api_bot | tg_bot/bot.py | bot.py | py | 12,039 | python | ru | code | 0 | github-code | 36 | [
{
"api_name": "dotenv.load_dotenv",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "os.getenv",
"line_number": 10,
"usage_type": "call"
},
{
"api_name": "os.getenv",
"line_number": 11,
"usage_type": "call"
},
{
"api_name": "telebot.TeleBot",
"line_num... |
31850440252 | import matplotlib.pyplot as plt
import numpy as np
# x axis
u = np.arange(0.0,2.74,0.01,dtype=np.cdouble)
v = np.arange(2.74,5.0,0.01,dtype=np.cdouble)
x = np.arange(0.0,5.0,0.01,dtype=np.cdouble)
y = np.arange(0.0,3.83,0.01, dtype=np.cdouble)
z = np.arange(3.83,5.0,0.01, dtype=np.cdouble)
# y axis
def f(t, option = 0):
c = 1
b = np.sqrt(t ** 4 - 16 * t ** 2 + 20)
a = -t ** 2 +8
if option % 2 == 1:
b *= -1
if option > 1:
c = -1
return c * np.sqrt(a+b)/np.sqrt(complex(22))
def g(t, option = 0):
c = 1
b = np.sqrt(t ** 4 - 8 * t ** 2 + 4)
a = 4 - t ** 2
if option % 2 == 1:
b *= -1
if option > 1:
c = -1
return c * np.sqrt(a+b)/np.sqrt(complex(6))
# use LaTeX fonts in the plot
plt.rc('text', usetex=True)
plt.rc('font', family='serif')
n = plt.figure()
# plot
plt.subplot(2,1,1)
for i in range(4):
plt.plot(x, np.real(f(x,i)), color="black")
plt.plot(x, np.real(g(x,i)), color="black")
plt.axvline(x=0.733, color = "black", alpha = 0.5, dashes = (2,2))
plt.axvline(x=3.83, color = "black", alpha = 0.5, dashes = (2,2))
# set labels (LaTeX can be used)
plt.title(r'\textbf{Symmetry Breaking}', fontsize=11)
plt.ylabel(r'\textbf{Re[$\omega$]}', fontsize=11)
plt.subplot(2,1,2)
for i in range(4):
plt.plot(y, np.imag(f(y,i)), color="black")
plt.plot(z, np.imag(f(z,i)), color="black")
plt.plot(u, np.imag(g(u,i)), color="black")
plt.plot(v, np.imag(g(v,i)), color="black")
# set labels (LaTeX can be used)
plt.axvline(x=0.733, color = "black", alpha = 0.5, dashes = (2,2))
plt.axvline(x=3.83, color = "black", alpha = 0.5, dashes = (2,2))
plt.xlabel(r'\textbf{$\gamma$}', fontsize=11)
plt.ylabel(r'\textbf{Im[$\omega$]}', fontsize=11)
plt.show()
# save as PDF
n.savefig("pt_breaking.pdf",)
| cesaregarza/QMResearch | plotter.py | plotter.py | py | 1,812 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "numpy.arange",
"line_number": 5,
"usage_type": "call"
},
{
"api_name": "numpy.cdouble",
"line_number": 5,
"usage_type": "attribute"
},
{
"api_name": "numpy.arange",
"line_number": 6,
"usage_type": "call"
},
{
"api_name": "numpy.cdouble",
"line_n... |
26626844923 | import astropy.units as u
from astropy.coordinates.sky_coordinate import SkyCoord
from astropy.units import Quantity
from astropy.io.votable import parse
from astropy.table import Table
from matplotlib.colors import LogNorm
import matplotlib.pyplot as plt
import numpy as np
extra_data = np.genfromtxt("Data/Mean_extinction_excess_SourceID_500pc_AG-4.4_BminR-1.7.dat", names = True, dtype=None)
source_id = extra_data['source_id']
readresults = Table.read('Data/All-star-500pc-AG-4.4-BminR-1.7.fits',format='fits')
results = np.array(readresults)
#Find the nonmatching source_id
nonmatches = np.array([])
j=0
for i in range(len(source_id)):
not_found = True
while not_found:
if source_id[i]!=results['source_id'][j]:
nonmatches = np.append(nonmatches,j)
j+=1
else:
not_found = False
j+=1
print(j)
#Delete the rows with source_id that have no AG and EBminR
for k in range(len(nonmatches)):
results = np.delete(results,nonmatches[k]-k)
#Check if the deletion was succesful
j=0
nonmatches_check = np.array([])
for i in range(len(source_id)):
not_found = True
while not_found:
if source_id[i]!=results['source_id'][j]:
nonmatches_check = np.append(nonmatches_check,j)
j+=1
else:
not_found = False
j+=1
print(j)
x=results['bp_rp']-extra_data['EBminR']
y_gaia=results['phot_g_mean_mag']+5*np.log10(results['parallax'])-10-extra_data['AG']
k=np.linspace(-4, 1, 1000)
counts_gaia,xbins_gaia,ybins_gaia,image_gaia = plt.hist2d(x,y_gaia,bins=600,normed=True,norm=LogNorm(),cmap = plt.cm.jet)
plt.colorbar()
plt.vlines(x=0, ymin=-5, ymax=2,color=(1.0,0.2,0.3))
plt.vlines(x=0.33, ymin=-5, ymax=4,color=(1.0,0.2,0.3))
#plt.contour(counts_gaia.transpose(), extent=[xbins_gaia.min(),xbins_gaia.max(),ybins_gaia.min(),ybins_gaia.max()], colors='k', linewidth=0.01, levels = [0.1])
plt.text(-0.6, -3.5, 'OB')
plt.text(0.1, -3.5, 'A')
plt.plot(k,3*k+2.1,linestyle='-',color=(1.0,0.2,0.3))
plt.xlim(np.min(x),1.7)
plt.ylim(-4,4.4)
plt.xlabel(r'$(G_{BP}-G_{RP})-<E(B-R)>$')
plt.ylabel(r'$M_G-<A_G>$')
plt.gca().invert_yaxis()
plt.savefig('CM-Diagram_All-star-500pc-AG-4.4-BminR-1.7-Corrected_mean_AG_EBminR.png')
| spacer730/Gaia_research | Queries-CM-Diagrams/CM-Diagram-corrected_mean_AG-EBminR .py | CM-Diagram-corrected_mean_AG-EBminR .py | py | 2,142 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "numpy.genfromtxt",
"line_number": 10,
"usage_type": "call"
},
{
"api_name": "astropy.table.Table.read",
"line_number": 13,
"usage_type": "call"
},
{
"api_name": "astropy.table.Table",
"line_number": 13,
"usage_type": "name"
},
{
"api_name": "numpy.a... |
31987030282 | # !/usr/bin/env python
# -*- coding: utf-8 -*-
import contextlib
import os
import zipfile
import os.path
import yaml
import json
applets_index = []
@contextlib.contextmanager
def change_dir(path):
old_path = os.getcwd()
os.chdir(path)
yield
os.chdir(old_path)
def read_applet_config(applet_path) -> dict:
config_path = os.path.join(applet_path, 'manifest.yml')
if not os.path.exists(config_path):
raise Exception(f'{applet_path} not exist manifest.yml')
with open(config_path, 'r', encoding='utf8') as f:
return yaml.safe_load(f)
def zip_applet(applet_path, dst_dir):
dir_path = os.path.dirname(applet_path)
if not os.path.exists(dst_dir):
os.makedirs(dst_dir)
print(f'creat zip build folder: {dst_dir}')
with change_dir(dir_path):
app_config = read_applet_config(applet_path)
if app_config.get("name"):
applets_index.append(app_config)
applet_name = os.path.basename(applet_path)
zip_name = os.path.join(dst_dir, applet_name + '.zip')
filelist = []
if os.path.isfile(applet_path):
filelist.append(applet_path)
else:
for root, dirs, files in os.walk(applet_name):
for name in files:
filelist.append(os.path.join(root, name))
with zipfile.ZipFile(zip_name, "w", zipfile.ZIP_DEFLATED) as zf:
for tar in filelist:
zf.write(tar, tar)
print(f'zip {applet_name} applet to {zip_name} success')
ignore_dirs = ['dist', 'node_modules', 'build', 'venv', '.git', '.idea', '.vscode',
'__pycache__', 'demo', 'pip_packages', ]
def zip_all_applets(project_path):
applets_dir = []
for file in os.listdir(project_path):
applet_path = os.path.join(project_path, file)
if not os.path.isdir(applet_path):
continue
if file.startswith(".") or file in ignore_dirs:
continue
applets_dir.append(applet_path)
dist_dir = os.path.join(project_path, 'build')
for applet in applets_dir:
zip_applet(applet, dist_dir)
def write_index_json(project_path):
dst_dir = os.path.join(project_path, 'build')
with change_dir(dst_dir):
with open('index.json', 'w', encoding='utf8') as f:
json.dump(applets_index, f, ensure_ascii=False, indent=4)
def run():
root_path = os.path.dirname(os.path.abspath(__file__))
zip_all_applets(root_path)
write_index_json(root_path)
if __name__ == '__main__':
run()
| jumpserver/applets | build.py | build.py | py | 2,560 | python | en | code | 9 | github-code | 36 | [
{
"api_name": "os.getcwd",
"line_number": 15,
"usage_type": "call"
},
{
"api_name": "os.chdir",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "os.chdir",
"line_number": 18,
"usage_type": "call"
},
{
"api_name": "contextlib.contextmanager",
"line_num... |
40861542036 | import numpy as np
from typing import List, Dict
from math import ceil
def _valleys(hist: Dict[int, int]) -> List[int]:
"""
Find the valleys of a histogram of gray levels
Arguments:
hist frequencies in the histogram of gray levels 0,1,...,L-1 (dictionary)
Value:
valleys returns an object with class 'list', list of integer values
"""
L = len(hist)
toRight = list([False]*L)
toLeft = list([False]*L)
# Find when a frequency is less than or equal to the following one
for i in range(0, L-1):
toRight[i] = hist[i] <= hist[i+1]
# Find when a frequency is less than the previous one
for i in range(1, L):
toLeft[i] = hist[i] < hist[i-1]
# Find when both condition hold
both = list(i and j for i, j in zip(toRight, toLeft))
val = list(i for i, x in enumerate(both) if x == True)
return val
def _valley_clustering(L: int, val: List[int]) -> np.ndarray:
"""
Find limits of the clusters of a histogram of gray levels according to given valleys
Arguments:
L number of gray levels 1,...,L
val list of valleys
Value:
valley_clustering returns an object with class 'np.ndarray'
"""
# Find the amount of clusters
n = len(val) + 1
clust = np.zeros((n, 2), dtype=np.uint8)
# Find clusters
clust[0] = [0, val[0] - 1]
for i in range(1, n-1):
clust[i] = [val[i-1], val[i] - 1]
clust[n-1] = [val[n-2], L-1]
return clust
def _searching_window(clust: List[int]) -> np.ndarray:
# Find length of the initial cluster
n = clust[1] - clust[0] + 1
if n == 2:
w = np.zeros((1, 2), dtype=np.uint16)
w[0] = np.transpose(np.array(clust))
else:
# Find length of the searching windows
length = ceil(n / 2)
total = n - length + 1
w = np.zeros((int(total), 2), dtype=np.uint16)
# Find searching windows
for j in range(total):
w[j] = [clust[0] + j, ceil(clust[0] + j + length - 1)]
return w
| image-multithresholding/Image-multithresholding | src/image_multi_thresholding/thresholding_windows.py | thresholding_windows.py | py | 2,140 | python | en | code | 1 | github-code | 36 | [
{
"api_name": "typing.Dict",
"line_number": 6,
"usage_type": "name"
},
{
"api_name": "typing.List",
"line_number": 6,
"usage_type": "name"
},
{
"api_name": "typing.List",
"line_number": 41,
"usage_type": "name"
},
{
"api_name": "numpy.zeros",
"line_number": 57... |
29028425647 | import json
import os
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import torch
from torchvision import transforms
from src.constants import (
DICT_CLASS,
EMB_ARRAY,
EMBEDDINGS,
METADATA,
NUM_CLOSEST_PLOT,
NUMBER_RANDOM_IMAGES,
PREDICTION,
SKETCHY,
TUBERLIN,
QUICKDRAW,
SKTU,
SKTUQD,
)
from src.data.loader_factory import load_data
from src.data.utils import default_image_loader, get_loader, get_dict
from src.models.utils import get_model, normalise_attention, get_parameters
from src.models.metrics import get_similarity
class Inference:
"""
Class to infer closest images of a sketch
Parent class of
- PlotInference called from main to plot closest images of random sketch
- ApiInference called from the api to retrieve the closest images of a hand-drawn sketch
"""
def __init__(self, args):
"""
Initialises the inference with the trained model and precomputed embeddings
Args:
- args: arguments received from the command line (argparse)
- mode: 'train', 'valid' or 'test'
"""
self.args = args
self.transform = transforms.Compose([transforms.ToTensor()])
self.loader = default_image_loader
self.im_net, self.sk_net = get_model(args, args.load)
self.im_net.eval()
self.sk_net.eval()
torch.set_grad_enabled(False)
self.prediction_folder = os.path.join(args.save, PREDICTION)
os.makedirs(self.prediction_folder, exist_ok=True)
self.embedding_path = os.path.join(args.save, EMBEDDINGS)
os.makedirs(self.embedding_path, exist_ok=True)
self.__get_data()
def __get_processed_images(self):
"""
Get the data of images to match with the sketches
Args:
- mode: 'train', 'valid' or 'test'
Return:
- dict_class: dictionnary mapping numbers to classes names
- paths to the images
- classes of the images
- images_embeddings: embeddings of the images
"""
dict_path = os.path.join(self.embedding_path, self.args.dataset + DICT_CLASS)
with open(dict_path, "r") as fp:
dict_class = json.load(fp)
array_path = os.path.join(
self.embedding_path, self.args.dataset + "_images" + EMB_ARRAY
)
with open(array_path, "rb") as f:
images_embeddings = np.load(f)
meta_path = os.path.join(
self.embedding_path, self.args.dataset + "_images" + METADATA
)
df = pd.read_csv(meta_path, sep=" ")
return dict_class, df["fnames"].values, df["classes"].values, images_embeddings
def __get_data(self):
"""
Loads the paths, classes and embeddings of the images of different datasets
"""
dataset = self.args.dataset
if dataset in [SKETCHY, TUBERLIN, QUICKDRAW]:
(
self.dict_class,
self.images_fnames,
self.images_classes,
self.images_embeddings,
) = self.__get_processed_images()
self.sketchy_limit = None
self.tuberlin_limit = None
elif dataset in [SKTU, SKTUQD]:
self.args.dataset = SKETCHY
(
dict_class_sk,
self.images_fnames,
self.images_classes,
self.images_embeddings,
) = self.__get_processed_images()
self.sketchy_limit = len(self.images_fnames)
self.tuberlin_limit = None
self.args.dataset = TUBERLIN
(
dict_class_tu,
images_fnames,
images_classes,
images_embeddings,
) = self.__get_processed_images()
self.dict_class = [dict_class_sk, dict_class_tu]
self.images_fnames = np.concatenate(
(self.images_fnames, images_fnames), axis=0
)
self.images_classes = np.concatenate(
(self.images_classes, images_classes), axis=0
)
self.images_embeddings = np.concatenate(
(self.images_embeddings, images_embeddings), axis=0
)
if dataset == SKTUQD:
self.args.dataset = QUICKDRAW
self.tuberlin_limit = len(self.images_fnames)
(
dict_class_qd,
images_fnames,
images_classes,
images_embeddings,
) = self.__get_processed_images()
self.dict_class.append(dict_class_qd)
self.images_fnames = np.concatenate(
(self.images_fnames, images_fnames), axis=0
)
self.images_classes = np.concatenate(
(self.images_classes, images_classes), axis=0
)
self.images_embeddings = np.concatenate(
(self.images_embeddings, images_embeddings), axis=0
)
else:
raise Exception(self.args.dataset + " not implemented.")
self.args.dataset = dataset
def inference_sketch(self, sk):
"""
Find the closest images of a sketch and plot them
"""
self.sketch = self.transform(sk).unsqueeze(0)
if self.args.cuda:
self.sketch = self.sketch.cuda()
sketch_embedding, self.attn_sk = self.sk_net(self.sketch)
if self.args.cuda:
sketch_embedding = sketch_embedding.cpu()
similarity = get_similarity(
sketch_embedding.detach().numpy(), self.images_embeddings
)
arg_sorted_sim = (-similarity).argsort()
self.sorted_fnames = [
self.images_fnames[i]
for i in arg_sorted_sim[0][0 : NUM_CLOSEST_PLOT + 1] # noqa E203
]
self.sorted_labels = [
self.images_classes[i]
for i in arg_sorted_sim[0][0 : NUM_CLOSEST_PLOT + 1] # noqa E203
]
return sketch_embedding
def get_heatmap(self):
""" Normalise the attention output of the model for heatmap plots """
attn_sk = normalise_attention(self.attn_sk, self.sketch)
self.heat_map = attn_sk.squeeze().cpu().detach().numpy()
def prepare_image(self, index):
""" Gets an an image and its label based on its index """
dataset = self.sorted_fnames[index].split("/")[-4]
loader = get_loader(dataset)
image = loader(self.sorted_fnames[index])
dict_class = get_dict(dataset, self.dict_class)
label = dict_class[str(self.sorted_labels[index])]
return image, label
class PlotInference(Inference):
""" Plot inference of a random sketch with its closest images in the latent space"""
def __init__(self, args, dataset_type):
super().__init__(args, dataset_type)
def random_images_inference(self, number_sketches):
""" Selects number_sketches random sketched and find the closest images """
_, _, [test_sk_loader, _], _ = load_data(self.args, self.transform)
rand_samples_sk = np.random.randint(
0, high=len(test_sk_loader), size=number_sketches
)
for i in range(len(rand_samples_sk)):
_, sketch_fname, _ = test_sk_loader[rand_samples_sk[i]]
self.sk = self.loader(sketch_fname)
self.inference_sketch(self.sk)
self.get_heatmap()
self.plot_closest(sketch_fname)
def plot_closest(self, sketch_fname):
"""
Plots a sketch with its closest images in the embedding space.
The images are stored in the same folder as the best model in a subfolder called 'predictions'
"""
fig, axes = plt.subplots(
1, NUM_CLOSEST_PLOT + 2, figsize=((NUM_CLOSEST_PLOT + 1) * 4, 8)
)
axes[0].imshow(self.sk)
axes[0].set(title="Sketch \n Label: " + sketch_fname.split("/")[-2])
axes[0].axis("off")
axes[1].imshow(self.sk)
axes[1].imshow(255 * self.heat_map, alpha=0.7, cmap="Spectral_r")
axes[1].set(title=sketch_fname.split("/")[-2] + "\n Attention Map")
axes[1].axis("off")
for i in range(2, NUM_CLOSEST_PLOT + 2):
im, label = self.prepare_image(i - 1)
axes[i].imshow(im)
axes[i].set(title="Closest image " + str(i) + "\n Label: " + label)
axes[i].axis("off")
plt.subplots_adjust(wspace=0.25, hspace=-0.35)
img_name = "_".join(sketch_fname.split("/")[-2:])
plt.savefig(os.path.join(self.prediction_folder, img_name))
plt.close(fig)
def main(args):
""" From here, the inference is done on a random sketch and a plot with its closest images is made """
inference = PlotInference(args, "test")
inference.random_images_inference(number_sketches=NUMBER_RANDOM_IMAGES)
if __name__ == "__main__":
args = get_parameters()
args.cuda = args.ngpu > 0 and torch.cuda.is_available()
main(args)
| VisiumCH/AMLD-2021-Sketchy | src/models/inference/inference.py | inference.py | py | 9,160 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "torchvision.transforms.Compose",
"line_number": 47,
"usage_type": "call"
},
{
"api_name": "torchvision.transforms",
"line_number": 47,
"usage_type": "name"
},
{
"api_name": "torchvision.transforms.ToTensor",
"line_number": 47,
"usage_type": "call"
},
{
... |
72547899303 | from tools.build_utils import *
import os, shutil
import argparse
def main():
# Command line parser options
parser = argparse.ArgumentParser(
formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument(
'--tf_version',
type=str,
help="TensorFlow tag/branch/SHA\n",
action="store",
default="v2.9.3")
parser.add_argument(
'--output_dir',
type=str,
help="Location where TensorFlow build will happen\n",
action="store",
required=True)
parser.add_argument(
'--target_arch',
help=
"Architecture flag to use (e.g., haswell, core-avx2 etc. Default \'native\'\n",
default="native")
parser.add_argument(
'--use_intel_tensorflow',
help="Build using Intel TensorFlow.",
action="store_true")
parser.add_argument(
'--cxx11_abi_version',
help="Desired version of ABI to be used while building Tensorflow",
default='1')
parser.add_argument(
'--resource_usage_ratio',
help="Ratio of CPU / RAM resources to utilize during Tensorflow build",
default=0.5)
arguments = parser.parse_args()
# Check bazel version
bazel_kind, bazel_ver = get_bazel_version()
got_correct_bazel_version = bazel_kind == 'Bazelisk version'
if (not got_correct_bazel_version and int(bazel_ver[0]) < 2):
raise Exception("Need bazel version >= 2.0.0 \n" + "Got: " +
'.'.join(bazel_ver))
if not os.path.isdir(arguments.output_dir):
os.makedirs(arguments.output_dir)
if not os.path.isdir(arguments.output_dir):
raise AssertionError("Did not find output directory: " +
arguments.output_dir)
if not os.path.exists(arguments.output_dir):
raise AssertionError("path doesn't exist {0}".format(
arguments.output_dir))
os.chdir(arguments.output_dir)
if (platform.system() == 'Windows'):
venv_dir = '.\\venv3\\'
else:
venv_dir = './venv3/'
install_virtual_env(venv_dir)
load_venv(venv_dir)
setup_venv(venv_dir, arguments.tf_version)
if not os.path.exists(arguments.output_dir):
raise AssertionError("Directory doesn't exist {0}".format(
arguments.output_dir))
if not os.path.isdir(os.path.join(arguments.output_dir, "tensorflow")):
# Download TensorFlow
download_repo("tensorflow",
"https://github.com/tensorflow/tensorflow.git",
arguments.tf_version)
else:
pwd = os.getcwd()
if not os.path.exists(arguments.output_dir):
raise AssertionError("Path doesn't exist {}".format(
arguments.output_dir))
os.chdir(os.path.join(arguments.output_dir, "tensorflow"))
call(["git", "fetch"])
command_executor(["git", "checkout", arguments.tf_version])
call(["git", "pull"])
if not os.path.exists(pwd):
raise AssertionError("Path doesn't exist {0}".format(pwd))
os.chdir(pwd)
# Build TensorFlow
build_tensorflow(
arguments.tf_version,
"tensorflow",
'artifacts',
arguments.target_arch,
False,
arguments.use_intel_tensorflow,
arguments.cxx11_abi_version,
resource_usage_ratio=float(arguments.resource_usage_ratio))
# Build TensorFlow C++ Library
build_tensorflow_cc(
arguments.tf_version, "tensorflow", 'artifacts', arguments.target_arch,
False, arguments.use_intel_tensorflow, arguments.cxx11_abi_version)
pwd = os.getcwd()
if (platform.system() == 'Windows'):
artifacts_dir = os.path.join(pwd, 'tensorflow')
else:
artifacts_dir = os.path.join(pwd, 'artifacts/tensorflow')
os.chdir("tensorflow")
copy_tf_to_artifacts(arguments.tf_version, artifacts_dir, None,
arguments.use_intel_tensorflow)
print('\033[1;35mTensorFlow Build finished\033[0m')
print(
'When building openvino_tensorflow using this prebuilt tensorflow, use:'
)
print('\033[3;34mpython3 build_ovtf.py --use_tensorflow_from_location ' +
os.path.abspath(arguments.output_dir) + '\033[1;0m')
if __name__ == '__main__':
main()
# Usage
# Build TF once
# ./build_tf.py --tf_version v1.15.2 --output_dir /prebuilt/tf/dir
#
# Reuse TF in different openvino_tensorflow builds
# mkdir ovtf_1; cd ovtf_1
# git clone https://github.com/openvinotoolkit/openvino_tensorflow.git
# ./build_ovtf.py --use_tensorflow_from_location /prebuilt/tf/dir
# cd ..; mkdir ovtf_2; cd ovtf_2
# git clone https://github.com/openvinotoolkit/openvino_tensorflow.git
# ./build_ovtf.py --use_tensorflow_from_location /prebuilt/tf/dir
| openvinotoolkit/openvino_tensorflow | build_tf.py | build_tf.py | py | 4,841 | python | en | code | 176 | github-code | 36 | [
{
"api_name": "argparse.ArgumentParser",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "argparse.RawTextHelpFormatter",
"line_number": 9,
"usage_type": "attribute"
},
{
"api_name": "os.path.isdir",
"line_number": 48,
"usage_type": "call"
},
{
"api_name":... |
13019170409 | import torch
import math
from torch import nn
import torch.nn.functional as F
# Objective: learn embedding vector for each "relative" position
# Steps: (1) Identify matrix of possible relatives (sent_len, sent_len) "clamped values"
# (2) Identify embedding vector with possible vocabs of relatives (vocab, emb)
# (3) Input 1 into 2 to have position matrix to learn on (PER SENTENCE)
class RelativePosition(nn.Module): # 2 stages: embeddings with vocab of available relativities + tokens of indices/relatives to learn each relative position
def __init__(self, max_relative_position, head_dim, device):
super().__init__()
self.head_dim = head_dim
self.max_relative_position = max_relative_position
# embedding: (vocab x emb_dim): vocab here is of size --> max * 2 (left/right) + 1 (relation with myself). e.g. (max = 3; "3*2+1 = 7")
# embedding table is table of random embeddings that learns by time. we only specify the size of available vocab here
# Embedding we have 512 vector as embedding representing each token in vocab (Initialization)
# When we use the embedding (pass sentence to it) --> we get the corresponding 512 vector of each token from sentence (vocab) then we change this by learning until its suitable for all sentences
self.embedding_table = nn.Embedding(max_relative_position*2 + 1, head_dim)
# nn.embedding (num_possible_emb_dict, emb_dim), Out shape: (*, emb_dim) --> where * is same as input shape
self.device = device
def forward(self, len_q, len_k): # for self attention (q/k/v) have same length as sequence, but this isn't always the case
possible_relatives_1d_q = torch.arange(len_q)
possible_relatives_1d_k = torch.arange(len_k)
# Make row matrix - column matrix [0, 1, 2, 3] - [[0, 1, 2, 3]] --> subtract full row from each token in column
# q is fixed in 2nd position (for its the query in hand?)
possible_relatives_2d = possible_relatives_1d_k[None, :] - possible_relatives_1d_q[:, None] # (Instead of None: put 1)
clamped_relatives_2d = torch.clamp(possible_relatives_2d, -self.max_relative_position, self.max_relative_position) # clamp that no min is less than specified min and same for max (relativity won't differ beyond that)
# shape: len_q x len_k (self attention: seq_len x seq_len)
# To make all positives (no -ve input to network)
clamped_relatives_positive = clamped_relatives_2d + self.max_relative_position # converted from distance matrix (-ve & +ve) to a positive distance matrix represented as tokens for each position
# Make in type long
clamped_relatives_positive = torch.LongTensor(clamped_relatives_positive).to(self.device) # Q: should we make .device from here? Q: why to make it in "Long"?
# this is the matrix that we want to input for embeddings to be learnt (each position will be represented by 512 embedding vector)
# get the relative position embeddings [embedding vector for each relative position token]
relative_position_embeddings = self.embedding_table(clamped_relatives_positive)
# shape: len_q x len_k x head_dim
return relative_position_embeddings
class RelativePositionalEmbedding(nn.Module):
def __init__(self, emb_dim, n_heads, max_relative_position, dropout, device): # here no need of vocab size as we can already infer from max_relative_pos
super().__init__() # Q: do we need to add device information here?
self.dropout, self.max_relative_position = dropout, max_relative_position
# N_heads: instead of having one big embedding vector (512) we make 2 (256) --> both will pass on the same input and same everything
self.emb_dim, self.n_heads = emb_dim, n_heads
self.head_dim = emb_dim // n_heads
# layers
# This takes embedding and output embedding all of same dimension
# --> reduction of head_dim happens during operations of attention but at last concatenated and pass through the linear
self.q_linear, self.k_linear, self.v_linear = nn.Linear(emb_dim, emb_dim), nn.Linear(emb_dim, emb_dim), nn.Linear(emb_dim, emb_dim) #
self.out = nn.Linear(emb_dim, emb_dim) # the output is emb_dim since we still want to o.p emb as this is pos emb (not vocab)
self.relative_position_k = RelativePosition(max_relative_position, self.head_dim, device)
self.relative_position_v = RelativePosition(max_relative_position, self.head_dim, device)
self.scale_factor = torch.sqrt(torch.FloatTensor([self.head_dim])).to(device)
self.dropout = nn.Dropout(dropout)
def forward(self, q, k, v, atten_mask=None): # Q: mask here is the attention mask, right?
# --------------------------------- Attention QK ----------------------- Question: what is the output from this? similarity between each word with all other words?
# Beginning of Equation (5) --> e_ij
# 1. normal self attention (qk) --> [ x*WQ * (x*WK)^T ]
# q.shape: [batch_size, seq_len, emb_dim]
batch_size, len_q, len_k, len_v = q.shape[0], q.shape[1], k.shape[1], v.shape[1]
q, k = self.q_linear(q), self.k_linear(k)
# QA: what is the difference between view and permute --> view: split/ chunk/ combine (reads data sequentially in any way you want), permute: only transpose what's already there
q_heads = q.view(batch_size, -1 ,self.n_heads, self.head_dim)
k_heads = k.view(batch_size, -1 ,self.n_heads, self.head_dim)
# for each batch: we have each sequence defined by n heads, each head has head dim (10 sequences, each seq has 2 heads, each head has 256 dim)
# what we want is to have, n heads: each head has n sequences and each sequence is defined by head_dim (2 heads, each head has 10 sequences; each sequence has 256 emb vector to define it)
# We do this to multiply the needed parts together which are the emb dim and seq_len; as matrix multiple only happen to the last 2 indices
q_head_perm, k_head_perm = q_heads.permute(0, 2, 1, 3), k_heads.permute(0, 2, 1, 3) # for we want to calculate emb_dim * seq (this is what matters)
# q: [1, 2, 10, 256] -- k: [1, 2, 10, 256] --> k.T: [1, 2, 256, 10]
qk = torch.matmul(q_head_perm, k_head_perm.permute(0, 1, 3, 2))
# shape: batch_size, n_heads, len_q, len_k
# ----------------------- Relatives ------------------------
# 2. Relative of k --> [a_k]
# [batch_size, len_sequence, emb_dim]
r_k = self.relative_position_k(len_q, len_k)
# shape: len_q x len_k x head_dim --> r_k.T: len_q x head_dim x len_k
q2_r = q_heads.permute(1, 0, 2, 3).contiguous().view(len_q, batch_size*self.n_heads, self.head_dim)
# shape: len_q x bsz*n_head x head_dim
q_rk = torch.matmul(q2_r, r_k.transpose(1, 2)) # transpose only swaps the two indices together
# shape: len_q x bsz*n_head x len_k --> we want to make bsz and n_head at first and leave interesting points to last 2 indices
q_rk = q_rk.transpose(0, 1)
# shape: bsz*n_head x len_q x len_k
q_rk = q_rk.contiguous().view(batch_size, self.n_heads, len_q, len_k)
# shape: batch_size, n_heads, len_q, len_k
attn1, attn2 = qk, q_rk
attn_total = (attn1 + attn2) / self.scale_factor
# shape: batch_size, n_heads, len_q, len_k
#if atten_mask is not None: # Question: ask hazem on how to adjust for mask
# attn_total = attn_total.masked_fill(atten_mask == 0, -1e10)
# End of Equation (5)
# ------------------------ Value --------------------------
# Begining of Equation (3)
# 1. Softmax of total pre attention: alpha_ij = softmax (e_ij)
attn_soft = self.dropout(F.softmax(attn_total, dim=-1))
# shape: batch_size, n_heads, len_q, len_k
# 3. Linear v --> x*W_v
v = self.v_linear(v)
# shape: batch_size, seq_len, emb_dim
v_heads = v.view(batch_size, -1, self.n_heads, self.head_dim) # multiply last from 1st with prelast from 2nd
v_heads = v_heads.permute(0, 2, 1, 3)
# shape: batch_size, n_heads, seq_len, head_dim
# 4. Softmax * linear v --> alpha_ij * [x*W_v]
# For matrix mult: they should be same exact sizes except for last two + last_first == prelast_sec
weight1 = torch.matmul(attn_soft, v_heads)
# shape: batch_size, n_heads, len_q, head_dim
# 2. Relative position of v --> a_v
r_v = self.relative_position_v(len_q, len_v)
# shape: len_q, len_v, head_dim
attn_soft = attn_soft.permute(2, 0, 1, 3).contiguous().view(len_q, batch_size*self.n_heads, len_k)
# shape: len_q, bsz*n_heads, len_k ## Question: how is len_v same as len_k? (for correct multiplication -- how do we know)
# 5. Softmax * relative v --> alpha_ij * [a_v]
weight2 = torch.matmul(attn_soft, r_v)
# shape: len_q, bsz*n_heads, head_dim
weight2 = weight2.transpose(0, 1).contiguous().view(batch_size, self.n_heads, len_q, self.head_dim)
# shape: batch_size, n_heads, len_q, head_dim
# 6. summation of (4) & (5)
weights = weight1 + weight2
# shape: batch_size, n_heads, len_q, head_dim
weights = weights.permute(0, 2, 1, 3).contiguous().view(batch_size, -1, self.emb_dim)
# shape: batch_size, len_q, emb_dim
### linear over summation ###
out = self.out(weights)
# needed out_shape: batch_size, len_q, emb_dim
return out
# class SelfAttention(nn.Module):
# def __init__(self, emb_size, clip, seq_len):
# self.emb_size = emb_size
# self.q_linear = nn.Linear(emb_size, emb_size)
# self.k_linear = nn.Linear(emb_size, emb_size)
# self.v_linear = nn.Linear(emb_size, emb_size)
# self.max_clip = max(-clip, min(seq_len, clip))
# clip = self.clip
# def forward(self, q, k, v, mask=None): # which one is the attention weights? and which is q/k/v weights?
# q, k, v = self.q_linear(q), self.k_linear(k), self.v_linear(v)
# # eq(5.1) == eq(2) --> qk_scale
# qk_scale = (torch.matmul(q, k.transpose(-2, -1)))/math.sqrt(self.emb_size)
# # eq(5.2)
# k_relative = k[] # k[-] -- put clip?
# qk_relative = (torch.matmul(q, k_relative.transpose(-1, -2)))/math.sqrt(self.emb_size)
# qk_total = qk_scale + qk_relative
# qk_total_soft = F.softmax(qk_total, dim=-1)
# # eq(3)
# v_relative = v[]
# v_new = v + v_relative
# qkv = torch.matmul(qk_total_soft, v_new)
| hosnaa/bert-implement | src/relative_position.py | relative_position.py | py | 10,928 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "torch.nn.Module",
"line_number": 10,
"usage_type": "attribute"
},
{
"api_name": "torch.nn",
"line_number": 10,
"usage_type": "name"
},
{
"api_name": "torch.nn.Embedding",
"line_number": 19,
"usage_type": "call"
},
{
"api_name": "torch.nn",
"line... |
36478211178 | from django import forms
from ..models import Modelo
class ModeloForm(forms.ModelForm):
class Meta:
model = Modelo
fields = ["marca", "nombre"]
def __init__(self, *args, **kwargs):
super(ModeloForm, self).__init__(*args, **kwargs)
for i, (fname, field) in enumerate(self.fields.iteritems()):
field.widget.attrs['class'] = 'form-control' | xcarlx/Venta | apps/producto/formstotal/modelo.py | modelo.py | py | 390 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "django.forms.ModelForm",
"line_number": 4,
"usage_type": "attribute"
},
{
"api_name": "django.forms",
"line_number": 4,
"usage_type": "name"
},
{
"api_name": "models.Modelo",
"line_number": 6,
"usage_type": "name"
}
] |
35291375172 | """
Created on Tue Apr 26 20:17:37 2022
@author: celiaberon
"""
import os
import numpy as np
import pandas as pd
import scipy
from nta.features.select_trials import match_trial_ids
from nta.preprocessing.signal_processing import snr_photo_signal
def QC_included_trials(ts: pd.DataFrame,
trials: pd.DataFrame,
allow_discontinuity: bool = False,
**kwargs) -> dict:
'''
Quality control within sessions to match timeseries and trial dataframes
starting and ending trial ID values. Also remove -- remove high timeout
blocks.
Args:
ts:
Timeseries containing states and neural data for a single
session.
trials:
Trial data for single session.
allow_discontinuity:
Whether or not continuous trial structure can be broken. If False,
only trials from beginning/end can be excluded. If False, also
permits mismatch in trial ids between min and max trial.
Returns:
trials_matched (dict):
{'trials': trial data, 'ts': timeseries data}
Contain only identical trial sets.
'''
assert ts.session.dropna().nunique() == 1, (
'multi-session not implemented')
assert trials.Session.dropna().nunique() == 1, (
'multi-session not implemented')
trials_ = trials.copy()
ts_ = ts.copy()
# flag only blocks that don't disrupt photometry timeseries
min_trial = trials_.query('~flag_block').nTrial.min()
max_trial = trials_.query('~flag_block').nTrial.max()
flagged_blocks = (trials_
.query('~nTrial.between(@min_trial, @max_trial)')
.nTrial.dropna().values)
trials_ = trials_.loc[~trials_.nTrial.isin(flagged_blocks)]
# Match min and max trial IDs only (can differ internally but offset will)
# be consistent.
trials_, ts_ = match_trial_ids(trials_, ts_,
allow_discontinuity=allow_discontinuity)
return {'trials': trials_, 'ts': ts_}
def QC_enl_penalty_rate(trials: pd.DataFrame) -> list:
'''
Generate list of sessions satisfying ENL penalty criteria, defined
as no greater than 2 std above mean penalty rate in final sessions.
Args:
trials (pandas.DataFrame):
Trial data.
Returns:
qc_sessions (list):
Sessions that pass ENLP quality control criteria.
'''
trials_ = trials.copy()
trials_['penalty'] = trials_['n_ENL'] > 1
trials_['Date'] = pd.to_datetime(trials_['Date'], format='%Y_%m_%d')
penalties = (trials_
.sort_values(by='Date')
.groupby(['Mouse', 'Date', 'Session'], as_index=False)
.penalty.mean())
for mouse, mouse_penalties in penalties.groupby('Mouse'):
late_dates = np.sort(mouse_penalties.Date.unique())[-6:]
late_sessions = mouse_penalties.query('Date.isin(@late_dates)')
late_sessions_mean = np.nanmean(late_sessions['penalty'])
late_sessions_std = np.nanstd(late_sessions['penalty'])
qc_criteria = late_sessions_mean + (2 * late_sessions_std)
penalties.loc[penalties.Mouse == mouse, 'QC_criteria'] = qc_criteria
penalties['Pass'] = penalties['penalty'] <= penalties['QC_criteria']
qc_sessions = penalties.query('Pass == True').Session.values
return qc_sessions
def get_sess_val(trials, trial_variable):
val = (trials
.groupby('Session')
.apply(lambda x: x[trial_variable].unique())
.squeeze().item())
return val
def QC_session_performance(trials: pd.DataFrame,
ts: pd.DataFrame,
update_log: bool = False,
**kwargs) -> bool:
'''
Filter out sessions that don't meet certain criteria:
target_avg_threshold:
Proportion of trials to high value port, must exceed
side_bias_threshold:
Proportion of trials that can favor one side (above/below 0.5)
spout_bias_threshold:
Proportion of licks to one spout (slightly more inclusive than
choice)
Args:
trials (pandas.DataFrame):
Trial data.
ts (pandas.DataFrame):
Timeseries data.
update_log (bool):
TRUE if saving .csv overview of session qc stats.
filename_suffix (str):
Suffix for session log filename.
Returns:
criteria_met (bool):
TRUE if passes quality control.
'''
criteria_met = True
# Set thresholds for session-level behavioral performance.
condition_perf_thresh = {9010: 0.7,
'9010': 0.7,
8020: 0.6,
'8020': 0.6}
TARGET_AVG = condition_perf_thresh.get(trials.Condition.unique()[0])
SIDE_BIAS = 0.1
SPOUT_BIAS = 0.15
MIN_TRIALS = 100
# Evaluate spout bias on same trials as trial-level QC (i.e., not
# including flagged blocks).
trial_ids = trials.nTrial.unique()
ts_ = ts.copy().query('nTrial.isin(@trial_ids)')
n_valid_trials = (trials
.query('flag_block==False & timeout==False')['nTrial']
.nunique())
target_avg = trials.selHigh.mean()
if target_avg < TARGET_AVG:
criteria_met = False
right_avg = trials.direction.mean()
if np.abs(right_avg - 0.5) > SIDE_BIAS:
criteria_met = False
spout_avg = (ts_.query('iSpout.ne(0)')
.iSpout.value_counts(normalize=True)[2.])
if np.abs(spout_avg - 0.5) > SPOUT_BIAS:
criteria_met = False
if n_valid_trials < MIN_TRIALS:
criteria_met = False
if update_log:
enlp_rate = np.mean(trials['n_ENL'] > 1)
qc_summary = pd.DataFrame({'Mouse': get_sess_val(trials, 'Mouse'),
'Date': get_sess_val(trials, 'Date'),
'Session': get_sess_val(trials, 'Session'),
'P(right)': round(right_avg, 2),
'P(high)': round(target_avg, 2),
'P(spout)': round(spout_avg, 2),
'N_valid_trials': n_valid_trials,
'enl_penalty_rate': round(enlp_rate, 2),
'Pass': criteria_met},
index=[0])
save_session_log(qc_summary, **kwargs)
return criteria_met
def load_session_log(path_to_file: str):
'''
Load existing session log if it exists, otherwise initialize a new one.
Args:
path_to_file:
Path including filename to try loading in file.
Returns:
session_log:
DataFrame containing session summary quality control stats.
logged_sessions:
List of sessions already included in session_log.
'''
try:
session_log = pd.read_csv(path_to_file, index_col=None)
logged_sessions = ['_'.join(sess)
for sess in session_log[['Mouse', 'Date']].values]
return session_log, logged_sessions
except FileNotFoundError:
return pd.DataFrame(), []
def save_session_log(sess_qc: pd.DataFrame,
fname_suffix: str = 'photometry',
root: str = '',
**kwargs):
'''
Save summary of session quality control metrics.
Args:
sess_qc:
DataFrame containing quality control metrics for single session.
filename_suffix:
Suffix for session_log filename.
Returns:
None
'''
if not root:
root = input('Please provide a path for logging:')
filename = f'session_log_{fname_suffix}.csv'
path_to_file = os.path.join(root, filename)
session_log, logged_sessions = load_session_log(path_to_file)
curr_session = f'{sess_qc.Mouse.item()}_{sess_qc.Date.item()}'
if curr_session not in logged_sessions:
tmp_log = pd.DataFrame({'Mouse': sess_qc['Mouse'].item(),
'Date': sess_qc['Date'].item()},
index=[0])
session_log = pd.concat((session_log, tmp_log)).reset_index(drop=True)
if 'N_valid_trials' not in session_log.columns:
updated_log = pd.merge(session_log, sess_qc,
on=['Mouse', 'Date'], how='left')
else:
updated_log = session_log.copy()
for col in sess_qc.columns.drop(['Mouse', 'Date']):
mouse, date, val = sess_qc[['Mouse', 'Date', col]].iloc[0].values
idx = updated_log.query('Mouse == @mouse & Date == @date').index
updated_log.loc[idx, col] = val
updated_log.to_csv(path_to_file, index=False)
def QC_photometry_signal(timeseries: pd.DataFrame,
mouse: str,
session_date: str,
) -> pd.DataFrame:
'''
Quality control on signal strength in photometry channels using FFT
method. If bilateral signals pass, take delta between right and left.
Args:
timeseries (pandas.DataFrame):
Timeseries data containing photometry signal.
mouse (str):
Mouse ID.
session_date (str):
Session ID.
pp_style (bool):
Deprecated, if changing standardization method for photometry.
Returns:
timeseries (pandas.DataFrame):
Copy of input but replace data with NaNs where QC fails.
ALTERNATE: early return with FALSE if no channels pass QC.
'''
ts_ = timeseries.copy()
# always use z-scored data just for QC consistency
y_cols = ts_.columns.intersection(['z_grnR', 'z_grnL'])
# need different thresholds for dLight vs GRAB-DA
qc_thresh = 2 if mouse in ['C32', 'C33', 'C34', 'C35'] else 5
y_cols = [col for col in y_cols if snr_photo_signal(ts_, col) < qc_thresh]
if len(y_cols) == 2:
print(f'insufficient photometry data...discarding {session_date}')
return None
for y_col in y_cols:
ts_[y_col] = np.nan # NaNs for cols that don't pass QC
if len(y_cols) == 2:
ts_['z_grnDelta'] = ts_['z_grnR'] - ts_['z_grnL']
y_cols_pass = {'z_grnR', 'z_grnL'} - set(y_cols)
return ts_, y_cols_pass
def is_normal(ts, include_score=False, verbose=False, thresh_score=0,
sensor='grabda_vls'):
'''
Test for normality as a measure of signal to noise. Result of normally
distributed data fails to pass QC protocol. Normality is determined via
collective evaluation of skew, kurtosis, and K-S test p-value.
Args:
ts:
Timeseries to be evaluated.
include_score:
Whether or not to include the number of metrics that passed as
normally distributed.
thresh_score:
Threshold for permissable tests that return normality=True.
Default of 1 means any test returning normal dist is sufficient to
accept dist as normal (most conservative inclusion level).
Returns:
result:
True if any metric is consistent with normal distribution. False if
all metrics deviate from normal distribution.
score:
Number of metrics that are consistent with normal distribution (0
to 3).
'''
if ts is None: # needs to be a distribution to have signal
return True
thresholds = {'grabda_vls': (0.5, 0.8),
'grabda_dms': (0.1, 0.2)}
skew_thresh, kurt_thresh = thresholds.get(sensor)
skew = np.abs(ts.skew()) < skew_thresh
kurtosis = np.abs(ts.kurtosis()) < kurt_thresh
rand_normal = np.random.normal(0, np.nanstd(ts), len(ts))
_, p_value = scipy.stats.ks_2samp(ts, rand_normal, alternative="two-sided")
ks_test = p_value > 0.05
score = sum((skew, kurtosis, ks_test))
# print(skew, kurtosis, ks_test)
result = score > thresh_score
if include_score:
if verbose:
print(f'skew = {np.abs(ts.skew())}\n',
f'kurtosis = {np.abs(ts.kurtosis())}\n',
f'p_value = {p_value}')
return result, score
else:
if verbose:
print(f'skew = {np.abs(ts.skew())}\n',
f'kurtosis = {np.abs(ts.kurtosis())}\n',
f'p_value = {p_value}')
return result
| celiaberon/neural-timeseries-analysis | nta/preprocessing/quality_control.py | quality_control.py | py | 12,580 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "pandas.DataFrame",
"line_number": 17,
"usage_type": "attribute"
},
{
"api_name": "pandas.DataFrame",
"line_number": 18,
"usage_type": "attribute"
},
{
"api_name": "nta.features.select_trials.match_trial_ids",
"line_number": 63,
"usage_type": "call"
},
{... |
33938514931 | import pytest
from schema import cities
async def test_database(sqlite_database):
tables_query = "SELECT * FROM sqlite_master where type='table';"
tables = await sqlite_database.fetch_all(query=tables_query)
assert len(tables) != 0
city_query = cities.insert(
values={"name": 'London',
"lattitude": 51.509865,
"longitude": -0.118092})
last_record_id = await sqlite_database.execute(query=city_query)
assert last_record_id == 1
| roman808080/route_planner | tests/test_db_manager.py | test_db_manager.py | py | 497 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "schema.cities.insert",
"line_number": 12,
"usage_type": "call"
},
{
"api_name": "schema.cities",
"line_number": 12,
"usage_type": "name"
}
] |
1141324769 | import re
import base64
import math
from glob import glob
from getpass import getpass
from pprint import pprint
from marshals.interface import api
import tns.sedm_auto_tns as tns
fritz_base_url = 'https://fritz.science/api/'
fritz_classification_url = fritz_base_url + 'classification'
fritz_redshift_update_url = fritz_base_url + 'sources/'
def add_spec_attachment(obj_id, comment, fname, spec_id=None, testing=False):
"""
adds a comment (not autoannotation) with attachment to a particular SEDM
spectrum on the view_spec page, which will also appear elsewhere.
obj_id: <str>
comment: <str>
fname: <str>
spec_id: <int>
testing: <bool> are we just testing?
return: True if success, False if not
"""
if obj_id is None or spec_id is None:
print("ERROR - Unable to get info required to post comment")
return False
# read in file
with open(fname, 'rb') as image_file:
encoded = base64.b64encode(image_file.read()).decode('ascii')
# create payload
ddict = {'obj_id': obj_id, 'spectrum_id': spec_id, # these go
'text': comment,
'attachment': {'body': encoded,
'name': fname.split('/')[-1]}}
if testing:
print("TESTING add_spec_attachment(): no data sent to marshal")
print("%s: %s encoded with length %d" % (obj_id, fname.split('/')[-1],
len(encoded)))
return True
else:
fritz_comment_url = fritz_base_url + 'spectra/%d/comments' % spec_id
r = api("POST", fritz_comment_url, data=ddict)
if 'success' in r['status']:
r_data = r['data']
if 'comment_id' in r_data:
print("Comment id = %d" % int(r_data['comment_id']))
print('{} uploaded'.format(fname.split('/')[-1]))
return True
else:
print('error submitting comment with attachment')
print(r['status'])
print(r['message'])
return False
def add_spec_autoannot(obj_id, andic, spec_id=None, origin=None, testing=False):
"""
adds an autoannotation without attachment to a particular SEDM spectrum
on the view_spec page, which will also appear elsewhere.
obj_id: 'ZTF18aaaaaa', for example
andic: <dict> of annotations
spec_id: <int>
origin: <str> giving origin of annotations
testing: <bool> are we testing only?
return: True if success, False if not
"""
ddict = {'origin': origin, 'data': andic}
if testing:
print("TESTING add_spec_autoannot(): no data sent to marshal")
print(ddict)
return True
else:
fritz_annotation_url = fritz_base_url + \
'spectra/%d/annotations' % spec_id
# fritz_annotation_url = fritz_base_url + \
# 'sources/%s/annotations' % obj_id
r = api("POST", fritz_annotation_url, data=ddict)
if 'success' in r['status']:
r_data = r['data']
if 'annotation_id' in r_data:
print("annotation id = %d" % int(r_data['annotation_id']))
print('{}: {} posted'.format(obj_id, origin))
return True
else:
print('error submitting annotation')
print(r['status'])
print(r['message'])
return False
def add_SNIascore_pysedm_autoannot(fname, object_id=None, spec_id=None,
testing=False, upload_tns=True):
"""
adds autoannotations with SNIASCORE and error
if SNIASCORE > 0.9, also adds SNIASCORE redshift and error
fname: '*ZTF18aaaaaaa.txt' that has a bunch of
"# SNIASCORE[something]: [val]" in the header
object_id: (str)
spec_id: (int)
testing: (bool)
upload_tns: (bool)
returns: True if autoannotation works, False
(and it'll exit early) otherwise
"""
tns_upl = False
ann_upl = False
file_ext = fname.split('.')[-1]
assert file_ext == 'txt' or file_ext == 'ascii'
with open(fname) as f:
header = {line.split(':', 1)[0][1:].strip():
line.split(':', 1)[-1].strip()
for line in f if line[0] == '#'}
# SNIascore RESULTS
if 'SNIASCORE' not in header:
print(fname, "never run through SNIascore?")
return ann_upl, tns_upl
if float(header['SNIASCORE']) < 0:
print('no score')
return ann_upl, tns_upl
# construct annotations dictionary
if float(header['SNIASCORE']) >= 0.9:
# Post classification
if add_SNIascore_classification(fname, object_id=object_id,
testing=testing):
print("POSTed Ia classification to fritz")
# Attempt to post to TNS
if upload_tns:
try:
if tns.sedm_tns_classify(fname, ztfname=object_id,
testing=testing):
print("Uploaded SNIa classification to TNS")
tns_upl = True
else:
print("Unable to upload SNIa classification to TNS")
except:
print("Problems connecting")
else:
print("Unable to post Ia classification to fritz")
# Generate annotation dictionary
andic = {
'SNIascore': header['SNIASCORE'],
'SNIascore_err': header['SNIASCORE_ERR'],
'SNIa_z': header['SNIASCORE_Z'],
'SNIa_z_err': header['SNIASCORE_ZERR']
}
else:
andic = {
'SNIascore': header['SNIASCORE'],
'SNIascore_err': header['SNIASCORE_ERR']}
# construct origin
# origin = 'SNIascore:spc%d' % spec_id
origin = 'sedm:SNIascore'
print(andic)
return add_spec_autoannot(object_id, andic, spec_id=spec_id,
origin=origin, testing=testing), tns_upl
def add_SNIascore_classification(fname, object_id=None, testing=False):
"""
adds SNIASCORE "Ia" classification if SNIASCORE > 0.9
fname: '*ZTF18aaaaaaa.txt' that has a bunch of
"# SNIASCORE[something]: [val]" in the header
object_id: (str)
testing: (bool)
returns: True if classification works, False
(and it'll exit early) otherwise
"""
file_ext = fname.split('.')[-1]
assert file_ext == 'txt' or file_ext == 'ascii'
with open(fname) as f:
header = {line.split(':', 1)[0][1:].strip():
line.split(':', 1)[-1].strip()
for line in f if line[0] == '#'}
# SNIascore RESULTS
if 'SNIASCORE' not in header:
print(fname, "never run through SNIascore?")
return False
if float(header['SNIASCORE']) < 0:
print('no score')
return False
# construct annotations dictionary
if float(header['SNIASCORE']) >= 0.9:
cldict = {
"obj_id": object_id,
"classification": "Ia",
"taxonomy_id": 3,
"probability": float(header['SNIASCORE'])
}
if testing:
print("TESTING add_SNIascore_classification():"
" no data sent to marshal")
print(cldict)
return True
else:
r = api("POST", fritz_classification_url, data=cldict)
if 'success' in r['status']:
r_data = r['data']
if 'classification_id' in r_data:
print("classification id = %d" %
int(r_data['classification_id']))
print('{}: Ia classification posted'.format(object_id))
# now add redshift
if 'SNIASCORE_Z' in header and 'SNIASCORE_ZERR' in header:
# What is the current redshift set to?
rc = api("GET", fritz_redshift_update_url + object_id)
if 'success' in rc['status']:
rc_data = rc['data']
current_redshift = None
if 'redshift' in rc_data:
current_redshift = rc_data['redshift']
# Only set redshift if it is not already set
if current_redshift is None:
new_redshift = float(header['SNIASCORE_Z'])
new_redshift_error = float(header['SNIASCORE_ZERR'])
try:
new_z_round = math.ceil(abs(
math.log10(new_redshift_error)))
# Handle negative, NaN, Inf, None and <str> values
except (ValueError, OverflowError, TypeError):
new_z_round = 1
new_z = round(new_redshift,
1 if new_z_round < 1 else new_z_round)
new_error = round(new_redshift_error,
1 if new_z_round < 1 else
new_z_round)
rsdict = {"redshift": new_z,
"redshift_error": new_error}
rr = api("PATCH",
fritz_redshift_update_url + object_id,
data=rsdict)
if 'success' in rr['status']:
print("redshift for %s updated to %.4f +- %.4f"
% (object_id, rsdict['redshift'],
rsdict['redshift_error']))
else:
print('error updating %s redshift' % object_id)
print(rr['status'])
print(rr['message'])
else:
print('Redshift for %s already set to %.4f' %
(object_id, float(rc_data['redshift'])))
else:
print('error getting current redshift for %s' %
object_id)
else:
print('No SNIascore redshift records found for %s ' %
object_id)
return True
else:
print('error submitting classification')
print(r['status'])
print(r['message'])
return False
return False
def add_SNID_pysedm_autoannot(fname, object_id=None, spec_id=None,
testing=False):
"""
if z < 0.3 and rlap > 5.0
adds autoannotations with SNID rlap, z, type, etc
adds a comment with the SNID plot attached
fname: '*ZTF18aaaaaaa.txt' that has a bunch of
"# SNIDMATCH[something]: [val]" in the header
cred: ('username', 'password')
reducedby: (str)
testing: (bool)
returns: True if all four comments/attachments works, False
(and it'll exit early) otherwise
"""
file_ext = fname.split('.')[-1]
assert file_ext == 'txt' or file_ext == 'ascii'
with open(fname) as f:
header = {line.split(':', 1)[0][1:].strip().lower():
line.split(':', 1)[-1].strip()
for line in f if line[0] == '#'}
# Upload pysedm_report
try:
pysedm_report = glob(fname.replace('spec',
'pysedm_report').replace('.txt',
'.png'))[0]
pr_posted = add_spec_attachment(object_id,
'pysedm_report:spc%d' % spec_id,
pysedm_report, spec_id=spec_id,
testing=testing)
except IndexError:
print('no pysedm_report for {}?'.format(header['name']))
pr_posted = False
# SNID RESULTS
if 'snidmatchtype' not in header:
print(fname, "never run through snid?")
return False
if header['snidmatchtype'].lower() == 'none':
print('no match')
return False
elif float(header['snidmatchrlap']) < 5:
print('bad rlap, only {}'.format(header['snidmatchrlap']))
return False
elif (header['snidmatchtype'][0] == 'I') \
and not (0.01 <= float(header['snidmatchredshift']) <= 0.3):
print('bad redshift, {snidmatchredshift} '
'for {snidmatchtype}'.format(**header))
return False
if header['snidmatchsubtype'] == '-':
header['snidmatchmatch'] = header['snidmatchtype']
else:
header['snidmatchmatch'] = '-'.join([header['snidmatchtype'],
header['snidmatchsubtype']])
# construct annotations dictionary
andic = {'match': 'None', 'rlap': 0., 'redshift': 0., 'age': 0.}
for key in andic:
andic[key] = header['snidmatch' + key]
# construct origin
# origin = 'sedm:spc%d' % spec_id
origin = 'sedm:SNID'
if not add_spec_autoannot(object_id, andic, spec_id=spec_id,
origin=origin, testing=testing):
return False
if pr_posted:
return True # we already have an attachment comment so don't overwrite
# SNID PLOT
# NOTE: this makes a major assumption about the naming scheme of snid plots
image_filename = fname.replace('.txt',
'_{}.png'.format(header['snidmatchtype']))
if not glob(image_filename):
return False
ret = add_spec_attachment(object_id, 'AUTO_SNID_plot', image_filename,
spec_id=spec_id, testing=testing)
return ret
if __name__ == "__main__":
auth = (input('GROWTH marshal username:'), getpass())
successes = []
for filename in glob('*ZTF?????????.txt'):
if add_SNID_pysedm_autoannot(filename, auth):
print('success!')
successes.append(re.findall(r'ZTF\d{2}[a-z]{7}', filename)[-1])
break
pprint(successes)
| scizen9/sedmpy | fritz/fritz_commenter.py | fritz_commenter.py | py | 14,311 | python | en | code | 5 | github-code | 36 | [
{
"api_name": "base64.b64encode",
"line_number": 36,
"usage_type": "call"
},
{
"api_name": "marshals.interface.api",
"line_number": 49,
"usage_type": "call"
},
{
"api_name": "marshals.interface.api",
"line_number": 88,
"usage_type": "call"
},
{
"api_name": "tns.se... |
32331024727 | #!/usr/bin/python3
"""Contains a class named Base"""
import json
class Base:
"""Class named Base"""
__nb_objects = 0
def __init__(self, id=None):
"""initialize Base class"""
if id is None:
Base.__nb_objects += 1
self.id = Base.__nb_objects
else:
self.id = id
@staticmethod
def to_json_string(list_dictionaries):
"""returns JSON string representation of list_dictionaries"""
if not list_dictionaries or list_dictionaries is None:
return "[]"
return json.dumps(list_dictionaries)
@staticmethod
def from_json_string(json_string):
"""returns list of the JSON string json_string"""
if not json_string or json_string is None:
return []
return json.loads(json_string)
@classmethod
def save_to_file(cls, list_objs):
"""writes JSON string of list_objs to a file"""
file_name = cls.__name__ + ".json"
with open(file_name, "w", encoding="utf-8") as f:
if list_objs is None:
f.write("[]")
else:
f.write(cls.to_json_string([i.to_dictionary()
for i in list_objs]))
@classmethod
def create(cls, **dictionary):
"""returns instance with attributes already set"""
if cls.__name__ == "Rectangle":
dummy = cls(1, 1)
if cls.__name__ == "Square":
dummy = cls(1)
dummy.update(**dictionary)
return dummy
@classmethod
def load_from_file(cls):
"""returns a list of instances"""
file_name = cls.__name__ + ".json"
ls = []
try:
with open(file_name, "r", encoding="utf-8") as f:
ls2 = cls.from_json_string(f.read())
for i in ls2:
ls.append(cls.create(**i))
except:
pass
return ls
| ammartica/holbertonschool-higher_level_programming | 0x0C-python-almost_a_circle/models/base.py | base.py | py | 1,956 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "json.dumps",
"line_number": 24,
"usage_type": "call"
},
{
"api_name": "json.loads",
"line_number": 31,
"usage_type": "call"
}
] |
15618824234 | #!/usr/bin/env python3
import argparse
from datetime import datetime
import json
import os
import sys
import time
import uuid
from aiosmtpd.controller import Controller
import mailparser
DATA_PATH = 'messages'
class Handler(object):
# noinspection PyPep8Naming,PyMethodMayBeStatic
async def handle_DATA(self, _, session, envelope):
print('Recieved message...')
# noinspection PyBroadException
try:
file_name = os.path.join('messages', str(uuid.uuid4().hex))
with open(file_name, 'w') as open_file:
content = envelope.original_content.decode('utf-8').replace("\r\r\n", "\r\n")
message = mailparser.parse_from_string(content)
json.dump({'mail_from': envelope.mail_from,
'rcpt_tos': envelope.rcpt_tos,
'subject': message.subject,
'body': message.body,
'data': content,
'timestamp': datetime.utcnow().isoformat()},
open_file)
return '250 OK'
except Exception:
return '500 Could not process your message'
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('host', type=str)
parser.add_argument('port', type=int)
args = parser.parse_args()
handler = Handler()
controller = Controller(handler, hostname=args.host, port=args.port)
# noinspection PyBroadException
try:
controller.start()
pid = str(os.getpid())
pidfile = "/run/postoffice/postoffice.pid"
open(pidfile, 'w').write(pid)
print("Running smtpd server on {}:{}\n".format(args.host, args.port))
while True:
time.sleep(3)
except Exception as exc:
print(exc, file=sys.stderr)
controller.stop()
finally:
os.unlink(pidfile)
| OPSnet/PostOffice | smtpd.py | smtpd.py | py | 1,929 | python | en | code | 1 | github-code | 36 | [
{
"api_name": "os.path.join",
"line_number": 23,
"usage_type": "call"
},
{
"api_name": "os.path",
"line_number": 23,
"usage_type": "attribute"
},
{
"api_name": "uuid.uuid4",
"line_number": 23,
"usage_type": "call"
},
{
"api_name": "mailparser.parse_from_string",
... |
9588266467 | import unittest
from tests import PluginTest
from plugins.basketball import basketball
from mock import patch, call
import requests
import datetime
from packages.memory.memory import Memory
class BasketballTest(PluginTest):
"""
Tests For Basketball Plugin
!!! test will be executed only if user has added his own api.basketball.com API_KEY
"""
def setUp(self):
self.test = self.load_plugin(basketball)
m = Memory("basketball.json")
self.unable_to_test_plugin = False
if m.get_data("API_KEY") is None:
self.unable_to_test_plugin = True
else:
self.headers = {"x-rapidapi-host": "api-basketball.p.rapidapi.com", "x-rapidapi-key": m.get_data("API_KEY")}
def test_todays_games(self):
if self.unable_to_test_plugin:
return
with patch.object(requests, 'get', headers=self.headers) as get_mock:
self.test.get_api_key(self.jarvis_api)
self.test.todays_games(self.jarvis_api)
date = datetime.datetime.now().strftime('%Y-%m-%d')
get_mock.assert_called_with(
"https://api-basketball.p.rapidapi.com/games?date={}".format(date), headers=self.headers)
def test_search_team(self):
if self.unable_to_test_plugin:
return
with patch.object(requests, 'get', headers=self.headers) as get_mock:
self.test.get_api_key(self.jarvis_api)
self.queue_input("boston")
self.test.search_team(self.jarvis_api)
get_mock.assert_called_with(
"https://api-basketball.p.rapidapi.com/teams?search=boston", headers=self.headers)
def test_search_league(self):
if self.unable_to_test_plugin:
return
with patch.object(requests, 'get', headers=self.headers) as get_mock:
self.test.get_api_key(self.jarvis_api)
self.queue_input("nba")
self.test.search_league(self.jarvis_api)
get_mock.assert_called_with(
"https://api-basketball.p.rapidapi.com/leagues?search=nba", headers=self.headers)
def test_list_leagues(self):
if self.unable_to_test_plugin:
return
with patch.object(requests, 'get', headers=self.headers) as get_mock:
self.test.get_api_key(self.jarvis_api)
self.test.list_leagues(self.jarvis_api)
get_mock.assert_called_with(
"https://api-basketball.p.rapidapi.com/leagues", headers=self.headers)
if __name__ == '__main__':
unittest.main()
| sukeesh/Jarvis | jarviscli/tests/test_basketball.py | test_basketball.py | py | 2,571 | python | en | code | 2,765 | github-code | 36 | [
{
"api_name": "tests.PluginTest",
"line_number": 10,
"usage_type": "name"
},
{
"api_name": "plugins.basketball.basketball",
"line_number": 17,
"usage_type": "argument"
},
{
"api_name": "packages.memory.memory.Memory",
"line_number": 18,
"usage_type": "call"
},
{
"... |
29138207241 |
from random import randint as rand
import pygame
import time
row_max =16
column_max =16
mine_count = 50
square_list = []
square_size = 30
BLACK = (0,0,0)
WHITE = (255,255,255)
BLUE = (0,0,255)
RED = (255,0,0)
pygame.init()
stage = "setup"
check_list = []
screen = pygame.display.set_mode((square_size*column_max, square_size*row_max))
pygame.display.set_caption("Minesweeper")
class square:
def __init__(self, row, column):
self.row = row
self.column = column
self.mine = False
self.hidden = True
self.flag = False
self.mark_mine = False
self.mark_safe = False
def adjacents(self, choice):
adjacent_list = []
empty_list = []
for row_difference in range(-1,2):
new_row = self.row + row_difference
for column_difference in range(-1,2):
new_column = self.column + column_difference
if (0 <= new_column < column_max) and (0 <= new_row < row_max) and not (column_difference == 0 and row_difference == 0):
adjacent_list.append([self.row+row_difference, self.column + column_difference])
output_list = []
for item in adjacent_list:
thing = square_list[item[0]][item[1]]
output_list.append(thing)
if thing.hidden and not thing.flag:
empty_list.append(thing)
if choice == 0:
return output_list
else:
return empty_list
def adjacent_mines(self, type):
num_mines = 0
num_safe = 0
num_hidden = 0
num_flag = 0
num_blank = 0
for item in self.adjacents(0):
if item.mine:
num_mines += 1
else:
num_safe +=1
if item.hidden:
num_hidden +=1
if item.flag:
num_flag +=1
else:
num_blank += 1
if type == 'm':
return num_mines
elif type == 's':
return num_safe
elif type == "h":
return num_hidden
elif type == "f":
return num_flag
elif type == "b":
return num_blank
def draw_me(self):
if self.hidden:
colour = WHITE
text_colour = BLACK
text = "F"
else:
colour = BLACK
text_colour = WHITE
text = str(self.adjacent_mines("m"))
pygame.draw.rect(screen, colour, (self.column*square_size, self.row*square_size, square_size, square_size))
if ((not self.hidden) or self.flag) and text != "0":
font = pygame.font.SysFont(None, square_size)
screen.blit(font.render(text, True, text_colour), (self.column *square_size + square_size/3, self.row*square_size + square_size/3))
def reveal(self):
global reveal_count
global stage
global win
global check_list
if self.hidden:
reveal_count += 1
self.flag = False
if self.mine:
stage = "end"
win = False
print(self.row, self.column)
else:
self.hidden = False
check_win()
if self.adjacent_mines("m") == 0:
for item in self.adjacents(0):
if item.hidden:
item.reveal()
if self.adjacent_mines("b") > 0:
check_list.append(self)
def autocomplete(self):
worked = False
if (not self.hidden) and self.adjacent_mines("b") > 0:
if self.adjacent_mines("b") == self.adjacent_mines("m")-self.adjacent_mines("f"):
worked = True
for item in self.adjacents(1):
item.flag = True
elif self.adjacent_mines("m") == self.adjacent_mines("f"):
worked = True
for item in self.adjacents(1):
item.reveal()
return worked
for row in range(row_max):
square_list.append([])
for column in range(column_max):
square_object = square(row, column)
square_list[row].append(square_object)
def setup(chosen_row, chosen_column):
global reveal_count
square_list[chosen_row][chosen_column].hidden = False
reveal_count = 1
for item in square_list[chosen_row][chosen_column].adjacents(0):
item.hidden = False
reveal_count += 1
for _ in range(mine_count):
valid = False
while not valid:
valid = True
random_column = rand(0, column_max-1)
random_row = rand(0, row_max -1)
if square_list[random_row][random_column].mine or (not square_list[random_row][random_column].hidden):
valid = False
else:
square_list[random_row][random_column].mine = True
for item in square_list[random_row][random_column].adjacents(0):
if item.adjacent_mines('s') == 0:
valid = False
square_list[random_row][random_column].mine = False
break
for row in square_list:
for item in row:
if not item.hidden:
item.reveal()
def draw_grid():
for i in range(row_max + 1):
pygame.draw.line(screen, BLUE, (0, i*square_size), (column_max*square_size, i*square_size))
for i in range(column_max + 1):
pygame.draw.line(screen, BLUE, (i*square_size, 0), (i*square_size, row_max*square_size))
def draw_board():
for row in square_list:
for item in row:
item.draw_me()
draw_grid()
def list_possibilities(num_things, num_spaces):
if num_things > num_spaces:
return([])
elif num_things == 0:
string = ""
for _ in range(num_spaces):
string += "0"
return([string])
else:
output_list = []
position_list = []
for _ in range(num_things):
position_list.append("")
def recursive(ordinal, smaller):
nonlocal output_list
nonlocal position_list
for current in range(smaller+1, num_spaces -ordinal ):
position_list[ordinal] = current
if ordinal == 0:
placeholder = []
for item in position_list:
placeholder.append(item)
output_list.append(placeholder)
else:
recursive(ordinal - 1, current)
recursive(num_things-1, -1)
return output_list
def wait():
draw_board()
pygame.display.update()
def brute(working):
global check_list
for square in check_list:
print(square.row, square.column)
wait()
if working:
print("going")
working = False
count = 0
for i in range(len(check_list)):
if stage == "play":
item = check_list[count]
if item.adjacent_mines("b") > 0:
attempt = item.autocomplete()
pygame.event.get()
if attempt:
working = True
del check_list[count]
wait()
check_win()
else:
count += 1
else:
del check_list[count]
else:
break
else:
print("stuck")
wait()
stuck_v2()
# thread = threading.Thread(stuck())
# thread.start()
# thread.join()
working = True
check_win()
return working
def check_board():
valid = True
for row in square_list:
for item in row:
if (not item.hidden) and item.adjacent_mines("m") > 0:
suspicious_count = 0
for adjacent in item.adjacents(0):
if adjacent.flag or adjacent.mark_mine:
suspicious_count += 1
if suspicious_count != item.adjacent_mines("m"):
valid = False
break
return valid
def check_win():
global win
global stage
if reveal_count == row_max*column_max - mine_count:
stage = "end"
win = True
timer_event = pygame.USEREVENT + 1
pygame.time.set_timer(timer_event, 1)
def game(option):
global screen
global stage
global win
global check_list
win = False
done = False
screen.fill(WHITE)
draw_grid()
autocomplete_working = True
stage_done = True
while not done:
for event in pygame.event.get():
if event.type == pygame.QUIT:
done = True
if stage == "setup":
if option == "c":
setup(rand(0, row_max-1), rand(0,column_max-1))
stage = "play"
draw_board()
for row in square_list:
for square in row:
if not square.hidden and square.adjacent_mines("b") > 0:
check_list.append(square)
wait()
time.sleep(1.5)
if event.type == pygame.MOUSEBUTTONDOWN and option == "p":
mouse_row = pygame.mouse.get_pos()[1]//square_size
mouse_column = pygame.mouse.get_pos()[0]//square_size
setup(mouse_row, mouse_column)
stage = "play"
draw_board()
elif stage == "play":
if event.type == pygame.MOUSEBUTTONDOWN and option == "p":
mouse_row = pygame.mouse.get_pos()[1]//square_size
mouse_column = pygame.mouse.get_pos()[0]//square_size
button = event.button
if button == 1:
if square_list[mouse_row][mouse_column].hidden:
square_list[mouse_row][mouse_column].reveal()
else:
_ = square_list[mouse_row][mouse_column].autocomplete()
print(square_possibilities(square_list[mouse_row][mouse_column]))
check_win()
draw_board()
#Left click
elif button == 3:
#Right click
square_list[mouse_row][mouse_column].flag = not square_list[mouse_row][mouse_column].flag
draw_board()
print(square_possibilities(square_list[mouse_row][mouse_column]))
elif option == "c" and event.type == timer_event:
autocomplete_working = brute(autocomplete_working)
elif stage == "end":
if stage_done == True:
if win == False:
print("lose")
# for row in square_list:
# for square in row:
# if square.flag:
# print(square.row, square.column, "flag")
else:
print("win")
if option == "c":
for row in square_list:
for item in row:
if not item.flag and item.hidden:
item.flag = True
wait()
stage_done = False
# # if event.type == pygame.MOUSEBUTTONDOWN:
# # done = True
# # else:
# if win:
# text = "You Win!"
# else:
# text = "You Lose!"
# screen.fill(BLACK)
# font = pygame.font.SysFont(None, square_size)
# screen.blit(font.render(text, True, WHITE), (square_size*column_max/3, square_size*row_max/3))
pygame.display.update()
def square_possibilities(square):
spaces = square.adjacent_mines("b")
temp_list = list_possibilities(square.adjacent_mines("m") - square.adjacent_mines("f"), spaces)
output_list = []
for item in temp_list:
binary_string = ''
for i in range(spaces):
if i in item:
binary_string += "1"
else:
binary_string += "0"
output_list.append(binary_string)
return output_list
def convert_overlap(indexes, string):
new_bin = ""
for index in indexes:
new_bin += string[index]
return new_bin
#reduce string to just overlaps
def make_new_bin(overlap_indexes, possibilities):
output_list = []
for bin in possibilities:
new_bin = convert_overlap(overlap_indexes, bin)
if new_bin not in output_list:
output_list.append(new_bin)
return output_list
#make new list of just overlap possibilities
def check_in_list(possibility_list, indexes, overlap_possibilities):
count = 0
for i in range(len(possibility_list)):
if convert_overlap(indexes, possibility_list[count]) not in overlap_possibilities:
possibility_list.pop(count)
else:
count += 1
return possibility_list
#Cull board_possibilities to possible lists
def stuck_v2():
global check_list
num_flags = 0
for row in square_list:
for item in row:
if item.flag:
num_flags += 1
board_possibilities = square_possibilities(check_list[0])
# for item in check_list:
# print(item.row, item.column, item.hidden)
keys = check_list[0].adjacents(1)
for key in keys:
print(key.row, key.column, "key")
# for key in keys:
# print("keys", key.row, key.column)
big_success = False
for k in range(1,len(check_list)):
for key in keys:
print(key.row, key.column, "key")
item = check_list[k]
# print(item, item.row, item.column)
big_overlap_indexes = []
small_overlap_indexes = []
item_adjacents = item.adjacents(1)
# for adjacent in item_adjacents:
# # print("adjacents",adjacent.row, adjacent.column )
item_possibilities = square_possibilities(item)
print(item_possibilities, item.row, item.column)
for i in range(len(keys)):
for k in range(len(item_adjacents)):
if keys[i] == item_adjacents[k]:
big_overlap_indexes.append(i)
small_overlap_indexes.append(k)
#Finds which squares overlap
big_overlap_possibilities = make_new_bin(big_overlap_indexes, board_possibilities)
print(big_overlap_possibilities, "big overlap possibilities")
small_overlap_possibilities = make_new_bin(small_overlap_indexes, item_possibilities)
print(small_overlap_possibilities, "small """)
overlap_possibilities = small_overlap_possibilities
for bin in overlap_possibilities:
if bin not in big_overlap_possibilities:
overlap_possibilities.remove(bin)
board_possibilities = check_in_list(board_possibilities, big_overlap_indexes, overlap_possibilities)
item_possibilities = check_in_list(item_possibilities, small_overlap_indexes, overlap_possibilities)
pygame.event.get()
stripped_item_possibilities = []
for bin in item_possibilities:
new_bin = ""
for i in range(len(bin)):
if i not in small_overlap_indexes:
new_bin += bin[i]
if new_bin not in stripped_item_possibilities:
stripped_item_possibilities.append(new_bin)
stripped_item_keys = []
pygame.event.get()
for i in range(len(item_adjacents)):
if i not in small_overlap_indexes:
stripped_item_keys.append(item_adjacents[i])
new_board_possibilities = []
for bin in board_possibilities:
for item_bin in stripped_item_possibilities:
potential_mines = 0
new_bin = bin + item_bin
check_bin = item_bin
for i in range(len(big_overlap_indexes)):
check_bin = check_bin[:small_overlap_indexes[i]] + bin[big_overlap_indexes[i]] + check_bin[small_overlap_indexes[i]:]
if check_bin in item_possibilities:
for character in new_bin:
if character == "1":
potential_mines += 1
if num_flags + potential_mines <= mine_count:
new_board_possibilities.append(new_bin)
#Check if there will be too many mines on the board
# print(board_possibilities)
# print(big_overlap_indexes)
# print(item_possibilities)
# print(small_overlap_indexes)
board_possibilities = new_board_possibilities
# print(new_board_possibilities)
keys += stripped_item_keys
# for key in keys:
# print("keys", key.row, key.column)
pygame.event.get()
print(board_possibilities)
for i in range(len(board_possibilities[0])):
small_success = True
number = board_possibilities[0][i]
for q in range(1, len(board_possibilities)):
if number != board_possibilities[q][i]:
small_success = False
break
if small_success:
big_success = True
print("big_success")
if number == "0":
keys[i].reveal()
elif number == "1":
keys[i].flag = True
wait()
if big_success:
for key in keys:
print(key.row, key.column, "key")
break
if not big_success:
random_num = rand(0, len(keys)-1)
keys[random_num].reveal()
print(keys[random_num].row, keys[random_num].column, "random selection")
wait()
print("random")
game("c")
| OOCam1/Minesweeper | Minesweeper.py | Minesweeper.py | py | 19,511 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "pygame.init",
"line_number": 17,
"usage_type": "call"
},
{
"api_name": "pygame.display.set_mode",
"line_number": 21,
"usage_type": "call"
},
{
"api_name": "pygame.display",
"line_number": 21,
"usage_type": "attribute"
},
{
"api_name": "pygame.displa... |
11249142498 | import torch
import copy
import numpy as np
from torch.nn import Dropout
from torch.nn import Linear
from torch.nn import LayerNorm
from torch.nn import functional as F
from RprMultiheadAttention import MultiheadAttention
def _get_activation_fn(activation):
if activation == "relu":
return F.relu
elif activation == "gelu":
return F.gelu
else:
raise RuntimeError("activation should be relu/gelu, not %s." % activation)
class MemTransformerEncoderLayer(torch.nn.Module):
"""TransformerEncoderLayer is made up of self-attn and feedforward network.
This standard encoder layer is based on the paper "Attention Is All You Need".
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,
Lukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need. In Advances in
Neural Information Processing Systems, pages 6000-6010. Users may modify or implement
in a different way during application.
Args:
d_model: the number of expected features in the input (required).
nhead: the number of heads in the multiheadattention models (required).
dim_feedforward: the dimension of the feedforward network model (default=2048).
dropout: the dropout value (default=0.1).
activation: the activation function of intermediate layer, relu or gelu (default=relu).
Examples::
>>> encoder_layer = nn.TransformerEncoderLayer(d_model=512, nhead=8)
>>> src = torch.rand(10, 32, 512)
>>> out = encoder_layer(src)
"""
def __init__(self, d_model, nhead, frame_len=29, dim_feedforward=2048, dropout=0.1, activation="relu"):
super(MemTransformerEncoderLayer, self).__init__()
self.self_attn = MultiheadAttention(d_model, nhead, dropout=dropout)
# Implementation of Feedforward model
self.linear1 = Linear(d_model, dim_feedforward)
self.dropout = Dropout(dropout)
self.linear2 = Linear(dim_feedforward, d_model)
self.norm1 = LayerNorm(d_model)
self.norm2 = LayerNorm(d_model)
self.dropout1 = Dropout(dropout)
self.dropout2 = Dropout(dropout)
self.activation = _get_activation_fn(activation)
# rpr encoding
self.frame_len = frame_len
self.k = 5
self.create_rpr_table(self.k)
self.pk_embed = nn.Embedding(2*self.k + 1, d_model)
self.pv_embed = nn.Embedding(2*self.k + 1, d_model)
def idx_clip(x, k):
return max(-k, min(k, x))
def create_rpr_table(self, k):
self.rpr_table = np.zeros((self.frame_len, self.frame_len))
for i in range(1, self.frame_len + 1):
for j in range(1, self.frame_len + 1):
self.rpr_table[i-1, j-1] = idx_clip(j-i, k) + k
return
def forward(self, src, src_mask=None, src_key_padding_mask=None):
r"""Pass the input through the endocder layer.
Args:
src: the sequnce to the encoder layer (required).
src_mask: the mask for the src sequence (optional).
src_key_padding_mask: the mask for the src keys per batch (optional).
Shape:
see the docs in Transformer class.
"""
src2 = self.self_attn(src, src, src, posk, posv, attn_mask=src_mask,
key_padding_mask=src_key_padding_mask)[0]
src = src + self.dropout1(src2)
src = self.norm1(src)
if hasattr(self, "activation"):
src2 = self.linear2(self.dropout(self.activation(self.linear1(src))))
else: # for backward compatibility
src2 = self.linear2(self.dropout(F.relu(self.linear1(src))))
src = src + self.dropout2(src2)
src = self.norm2(src)
return src
| perathambkk/lipreading | short1.27fast_nlls_xl_2mem_lattransconv_p_OSL_500_cosine/RprTransformerEncoderLayer.py | RprTransformerEncoderLayer.py | py | 3,370 | python | en | code | 3 | github-code | 36 | [
{
"api_name": "torch.nn.functional.relu",
"line_number": 13,
"usage_type": "attribute"
},
{
"api_name": "torch.nn.functional",
"line_number": 13,
"usage_type": "name"
},
{
"api_name": "torch.nn.functional.gelu",
"line_number": 15,
"usage_type": "attribute"
},
{
"a... |
6797122561 | import logging
import requests
from django.urls import reverse
from django.conf import settings
from django.core.mail import get_connection
from django.core.mail.backends.base import BaseEmailBackend
from .engine import send_email
from mail.models import Message
logger = logging.getLogger('mails')
def get_admins():
return [mail for name, mail in settings.ADMINS]
class StoreBackend(BaseEmailBackend):
def __get_category_from_header(self, email):
category = None
if settings.MAIL_CATEGORY_HEADER_KEY in email.extra_headers:
category = email.extra_headers.get(settings.MAIL_CATEGORY_HEADER_KEY, None)
email.extra_headers.pop(settings.MAIL_CATEGORY_HEADER_KEY)
return category
def __is_error_or_test_mail(self, subject):
return subject.startswith(settings.MAIL_ERROR_MESAGE_SUBJECT) or subject.startswith(
settings.MAIL_TEST_MESSAGE_SUBJECT)
def send_messages(self, email_messages, notify_webhook=None):
AUTOSEND = getattr(settings, 'MAILER_AUTOSEND', False)
num_sent = 0
for email in email_messages:
if self.__is_error_or_test_mail(email.subject):
email.to = get_admins()
email.connection = get_connection(
backend=settings.MAILER_EMAIL_BACKEND
)
email.send()
else:
msg = Message.objects.create(
subject=email.subject,
to_email=email.to,
from_email=email.from_email,
reply_to=email.reply_to,
cc=email.cc,
bcc=email.bcc,
body=email.body,
category=self.__get_category_from_header(email),
attachment=email.attachments)
if notify_webhook:
mail_url = '{}{}'.format(
settings.DOMAIN_NAME,
reverse('mail:inbox-message', kwargs={'pk': msg.pk}),
)
try:
requests.put(
notify_webhook,
data={
'email_url': mail_url,
'email_status': settings.MAIL_NOTIFY_WEBHOOK_STATUS_OK,
},
)
except Exception as e: # noqa
logger.error('Notify webhook Exception: {}'.format(e))
if AUTOSEND:
send_email(msg)
num_sent += 1
return num_sent
| tomasgarzon/exo-services | service-exo-mail/mail/backend.py | backend.py | py | 2,657 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "logging.getLogger",
"line_number": 13,
"usage_type": "call"
},
{
"api_name": "mail.models",
"line_number": 17,
"usage_type": "name"
},
{
"api_name": "django.conf.settings.ADMINS",
"line_number": 17,
"usage_type": "attribute"
},
{
"api_name": "django... |
37412068955 | ##############################################################################
#
# File format versions:
#
# 1: initial version
#
# 2: now contains reciprocal planck opacity and rosseland opacity
# previous rosseland opacity was actually reciprocal planck opacity
#
##############################################################################
from __future__ import print_function, division
import os
import hashlib
import h5py
import numpy as np
from astropy import log as logger
import six
from ..version import __version__
from ..util.constants import c
from ..util.functions import FreezableClass
from ..util.interpolate import interp1d_fast_loglog
from ..util.integrate import integrate_loglog
from ..util.nans import check_for_nans
from .optical_properties import OpticalProperties
from .emissivities import Emissivities
from .mean_opacities import MeanOpacities
def henyey_greenstein(mu, g, p_lin_max):
P1 = (1. - g * g) / (1. + g * g - 2. * g * mu) ** 1.5
P2 = - p_lin_max * P1 * (1. - mu * mu) / (1. + mu * mu)
P3 = P1 * 2. * mu / (1. + mu * mu)
P4 = 0.
return P1, P2, P3, P4
class SphericalDust(FreezableClass):
r"""
This class should be used in cases where fully arbitrary dust properties
need to be specified, within the framework of randomly oriented grains,
which means that the scattering phase function has the general form:
.. math:: R(\theta) = \left[\begin{array}{cccc}P_1 & P_2 & 0 & 0 \\P_2 & P_1 & 0 & 0 \\0 & 0 & P_3 & -P_4 \\0 & 0 & P_4 & P_3\end{array}\right]
This class is initialized with::
d = SphericalDust()
and the properties should then be set manually. See
`here <http://docs.hyperion-rt.org/en/stable/setup/setup_dust.html#fully-customized-4-element-dust>`_
for a description of the available properties and how to set them.
"""
def __init__(self, *args):
self._file = None
self.md5 = None
self.optical_properties = OpticalProperties()
self.mean_opacities = MeanOpacities()
self.emissivities = Emissivities()
self.set_sublimation_specific_energy('no', 0.)
self._freeze()
if len(args) == 0:
pass
elif len(args) == 1:
self.read(args[0])
else:
raise Exception("SphericalDust cannot take more than one argument")
def hash(self):
h = hashlib.md5()
if self.optical_properties is None or not self.optical_properties.all_set():
h.update('none'.encode('utf-8'))
else:
h.update(self.optical_properties.hash().encode('utf-8'))
if self.emissivities is None or not self.emissivities.all_set():
h.update('none'.encode('utf-8'))
else:
h.update(self.emissivities.hash().encode('utf-8'))
if self.mean_opacities is None or not self.mean_opacities.all_set():
h.update('none'.encode('utf-8'))
else:
h.update(self.mean_opacities.hash().encode('utf-8'))
import struct
h.update(self.sublimation_mode.encode('utf-8'))
h.update(struct.pack('>d', self.sublimation_energy))
return h.hexdigest()
def set_lte_emissivities(self, n_temp=1200, temp_min=0.1, temp_max=100000.):
'''
Calculate the emissivities assuming LTE
Parameters
----------
n_temp : int, optional
The number of temperatures to calculate the emissivities for
temp_min : float, optional
The minimum temperature to calculate the emissivities for
temp_max : float, optional
The maximum temperature to calculate the emissivities for
'''
self.mean_opacities.compute(self.optical_properties, n_temp=n_temp,
temp_min=temp_min, temp_max=temp_max)
self.emissivities.set_lte(self.optical_properties, self.mean_opacities)
def plot(self, filename):
# Check that the optical properties have been set
self.optical_properties.ensure_all_set()
import matplotlib.pyplot as plt
# Save original rc parameters
rc_orig = plt.rcParams
# Reset to defaults
plt.rcdefaults()
plt.rc('legend', fontsize=7)
plt.rc('axes', titlesize='x-small')
plt.rc('axes', labelsize='x-small')
plt.rc('xtick', labelsize='xx-small')
plt.rc('ytick', labelsize='xx-small')
plt.rc('axes', linewidth=0.5)
plt.rc('patch', linewidth=0.5)
# Compute mean opacities if not already existent
self._compute_mean_opacities()
# Check that emissivities are set (before computing mean opacities)
if not self.emissivities.all_set():
logger.info("Computing emissivities assuming LTE")
self.emissivities.set_lte(self.optical_properties, self.mean_opacities)
# Initialize figure
fig = plt.figure(figsize=(10, 12))
# Plot optical properties
fig = self.optical_properties.plot(fig, [421, 423, 424, 425, 426])
# Plot mean opacities
fig = self.mean_opacities.plot(fig, 428)
# Plot emissivities
fig = self.emissivities.plot(fig, 427)
# Adjust spacing between subplots
fig.subplots_adjust(left=0.08, right=0.92, wspace=0.22, hspace=0.30)
# Save figure
fig.savefig(filename, bbox_inches='tight')
# Close figure to save RAM
plt.close(fig)
# Restore rc parameters
plt.rc(rc_orig)
def set_sublimation_temperature(self, mode, temperature=0.):
'''
Set the dust sublimation mode and temperature.
Parameters
----------
mode : str
The dust sublimation mode, which can be:
* 'no' - no sublimation
* 'fast' - remove all dust in cells exceeding the
sublimation temperature
* 'slow' - reduce the dust in cells exceeding the
sublimation temperature
* 'cap' - any temperature exceeding the sublimation
temperature is reset to the sublimation
temperature.
temperature : float, optional
The dust sublimation temperature, in K
'''
if mode not in ['no', 'fast', 'slow', 'cap']:
raise Exception("mode should be one of no/fast/slow/cap")
if mode != 'no' and temperature is None:
raise Exception("Need to specify a sublimation temperature")
self.sublimation_mode = mode
self.sublimation_energy = self.temperature2specific_energy(temperature)
def set_sublimation_specific_energy(self, mode, specific_energy=0.):
'''
Set the dust sublimation mode and specific energy.
Parameters
----------
mode : str
The dust sublimation mode, which can be:
* 'no' - no sublimation
* 'fast' - remove all dust in cells exceeding the
sublimation specific energy
* 'slow' - reduce the dust in cells exceeding the
sublimation specific energy
* 'cap' - any specific energy exceeding the sublimation
specific energy is reset to the sublimation
specific energy.
specific_energy : float, optional
The dust sublimation specific energy, in cgs
'''
if mode not in ['no', 'fast', 'slow', 'cap']:
raise Exception("mode should be one of no/fast/slow/cap")
if mode != 'no' and specific_energy is None:
raise Exception("Need to specify a sublimation specific_energy")
self.sublimation_mode = mode
self.sublimation_energy = specific_energy
def _write_dust_sublimation(self, group):
group.attrs['sublimation_mode'] = np.string_(self.sublimation_mode)
if self.sublimation_mode in ['slow', 'fast', 'cap']:
group.attrs['sublimation_specific_energy'] = self.sublimation_energy
def _read_dust_sublimation(self, group):
if 'sublimation_mode' in group.attrs:
self.sublimation_mode = group.attrs['sublimation_mode'].decode('ascii')
if self.sublimation_mode in ['slow', 'fast', 'cap']:
self.sublimation_energy = group.attrs['sublimation_specific_energy']
def _compute_mean_opacities(self):
if not self.mean_opacities.all_set():
self.mean_opacities.compute(self.optical_properties)
def write(self, filename, compression=True):
'''
Write out to a standard dust file, including calculations of the mean
opacities and optionally thermal emissivities.
'''
# Check that the optical properties have been set
self.optical_properties.ensure_all_set()
# Compute mean opacities if not already existent
self._compute_mean_opacities()
# Check that emissivities are set (before computing mean opacities)
if not self.emissivities.all_set():
logger.info("Computing emissivities assuming LTE")
self.emissivities.set_lte(self.optical_properties, self.mean_opacities)
# Create dust table set
if isinstance(filename, six.string_types):
dt = h5py.File(filename, 'w')
else:
dt = filename
# Add standard keywords to header
dt.attrs['version'] = 2
dt.attrs['type'] = 1
dt.attrs['python_version'] = np.string_(__version__)
if self.md5:
dt.attrs['asciimd5'] = np.string_(self.md5)
# Add optical properties and scattering angle tables
self.optical_properties.to_hdf5_group(dt)
# Add mean opacities table
self.mean_opacities.to_hdf5_group(dt)
# Add emissivities and emissivity variable tables
self.emissivities.to_hdf5_group(dt)
# Dust sublimation parameters
self._write_dust_sublimation(dt)
# Check that there are no NaN values in the file - if there are, a
# warning is emitted.
check_for_nans(dt)
# Close dust file
if isinstance(dt, h5py.File):
dt.close()
self._file = (filename, self.hash())
def read(self, filename):
'''
Read in from a standard dust file
'''
from ..util.functions import asstr
if isinstance(filename, six.string_types):
# Check file exists
if not os.path.exists(filename):
raise Exception("File not found: %s" % filename)
# Read in dust table set
dt = h5py.File(filename, 'r')
close = True
else:
# Read in dust table set
dt = filename
close = False
# Check version and type
if dt.attrs['version'] not in [1, 2]:
raise Exception("Version should be 1 or 2")
if dt.attrs['type'] != 1:
raise Exception("Type should be 1")
if 'asciimd5' in dt.attrs:
self.md5 = asstr(dt.attrs['asciimd5'])
else:
self.md5 = None
# Read in the optical properties
self.optical_properties.from_hdf5_group(dt)
# Read in the planck and rosseland mean opacities
if dt.attrs['version'] == 1:
logger.warning("Version 1 dust file detected - discarding mean opacities and recomputing them")
self.mean_opacities.compute(self.optical_properties)
else:
self.mean_opacities.from_hdf5_group(dt)
# Read in emissivities
self.emissivities.from_hdf5_group(dt)
# Dust sublimation parameters
self._read_dust_sublimation(dt)
# Close file object if needed
if close:
dt.close()
self._file = (filename, self.hash())
def chi_nu_temperature(self, temperature):
"""
Compute the mean opacity to extinction for a blackbody at a given temperature.
Parameters
----------
temperature : float
The temperature of the blackbody to use
Returns
-------
chi_nu_mean : float
The mean opacity to extinction
"""
self._compute_mean_opacities()
return interp1d_fast_loglog(self.mean_opacities.temperature,
self.mean_opacities.chi_planck,
temperature,
bounds_error=True)
def kappa_nu_temperature(self, temperature):
"""
Compute the mean opacity to absorption for a blackbody at a given temperature.
Parameters
----------
temperature : float
The temperature of the blackbody to use
Returns
-------
kappa_nu_mean : float
The mean opacity to absorption
"""
self._compute_mean_opacities()
return interp1d_fast_loglog(self.mean_opacities.temperature,
self.mean_opacities.kappa_planck,
temperature,
bounds_error=True)
def chi_nu_spectrum(self, nu, fnu):
"""
Compute the mean opacity to extinction for a given spectrum.
Parameters
----------
nu : array_like
The frequencies, in Hz
fnu : array_like
The monochromatic fluxes per unit frequency. Units are unimportant
since proportionality constants are cancelled out in the
computation.
Returns
-------
chi_nu_mean : float
The mean opacity to extinction
"""
if nu.max() > self.optical_properties.nu.max() or nu.min() < self.optical_properties.nu.min():
raise Exception("Opacity to extinction is not defined at all "
"spectrum frequencies")
chi_nu = self.optical_properties.interp_chi_nu(nu)
return (integrate_loglog(nu, fnu * chi_nu) /
integrate_loglog(nu, fnu))
def kappa_nu_spectrum(self, nu, fnu):
"""
Compute the mean opacity to absorption for a given spectrum.
Parameters
----------
nu : array_like
The frequencies, in Hz
fnu : array_like
The monochromatic fluxes per unit frequency. Units are unimportant
since proportionality constants are cancelled out in the
computation.
Returns
-------
kappa_nu_mean : float
The mean opacity to absorption
"""
if nu.max() > self.optical_properties.nu.max() or nu.min() < self.optical_properties.nu.min():
raise Exception("Opacity to absorption is not defined at all "
"spectrum frequencies")
kappa_nu = self.optical_properties.interp_kappa_nu(nu)
return (integrate_loglog(nu, fnu * kappa_nu) /
integrate_loglog(nu, fnu))
def temperature2specific_energy(self, temperature):
"""
Convert a temperature to its corresponding specific energy value.
Parameters
----------
temperature : float or array_like
The temperature to convert
Returns
-------
specific_energy : float or array_like
The specific energy corresponding to the input temperature
"""
self._compute_mean_opacities()
specific_energy = interp1d_fast_loglog(self.mean_opacities.temperature,
self.mean_opacities.specific_energy,
temperature,
bounds_error=False,
fill_value=np.nan)
if np.isscalar(temperature):
if temperature < self.mean_opacities.temperature[0]:
specific_energy = self.mean_opacities.specific_energy[0]
elif temperature > self.mean_opacities.temperature[-1]:
specific_energy = self.mean_opacities.specific_energy[-1]
else:
specific_energy[temperature < self.mean_opacities.temperature[0]] = self.mean_opacities.specific_energy[0]
specific_energy[temperature > self.mean_opacities.temperature[-1]] = self.mean_opacities.specific_energy[-1]
return specific_energy
def specific_energy2temperature(self, specific_energy):
"""
Convert a specific energy value to its corresponding temperature.
Parameters
----------
specific_energy : float or array_like
The specific energy to convert
Returns
-------
temperature : float or array_like
The temperature corresponding to the input specific energy
"""
self._compute_mean_opacities()
temperature = interp1d_fast_loglog(self.mean_opacities.specific_energy,
self.mean_opacities.temperature,
specific_energy,
bounds_error=False,
fill_value=np.nan)
if np.isscalar(specific_energy):
if specific_energy < self.mean_opacities.specific_energy[0]:
temperature = self.mean_opacities.temperature[0]
elif specific_energy > self.mean_opacities.specific_energy[-1]:
temperature = self.mean_opacities.temperature[-1]
else:
temperature[specific_energy < self.mean_opacities.specific_energy[0]] = self.mean_opacities.temperature[0]
temperature[specific_energy > self.mean_opacities.specific_energy[-1]] = self.mean_opacities.temperature[-1]
return temperature
class IsotropicDust(SphericalDust):
"""
This class should be used for dust properties that include isotropic
scattering. The dust properties should be instatiated as::
d = IsotropicDust(nu, albedo, chi)
where ``nu``, ``albedo``, and ``chi`` are 1-D Numpy arrays containing the
frequencies, albedo, and opacity to extinction respectively.
"""
def __init__(self, nu, albedo, chi):
SphericalDust.__init__(self)
# Set cos(theta) grid for computing the scattering matrix elements
self.optical_properties.mu = np.linspace(-1., 1., 2)
# Set optical properties
self.optical_properties.nu = nu
self.optical_properties.albedo = albedo
self.optical_properties.chi = chi
# Compute scattering matrix elements
self.optical_properties.initialize_scattering_matrix()
# Set scattering matrix to isotropic values
self.optical_properties.P1[:, :] = 1.
self.optical_properties.P2[:, :] = 0.
self.optical_properties.P3[:, :] = 1.
self.optical_properties.P4[:, :] = 0.
# Sort optical properties
self.optical_properties._sort()
class HenyeyGreensteinDust(SphericalDust):
"""
This class should be used for dust properties that include
scattering parameterized by the `Henyey-Greenstein, 1941
<http://dx.doi.org/10.1086/144246>`_ function. The dust properties should
be instatiated as::
d = HenyeyGreensteinDust(nu, albedo, chi, g, p_lin_max)
where ``nu``, ``albedo``, and ``chi`` are 1-D Numpy arrays containing the
frequencies, albedo, and opacity to extinction respectively, and ``g`` and
``p_lin_max`` are also 1-D Numpy arrays containing the asymmetry parameter
and the maximum linear polarization.
"""
def __init__(self, nu, albedo, chi, g, p_lin_max):
SphericalDust.__init__(self)
# Set cos(theta) grid for computing the scattering matrix elements
n_mu = 100
self.optical_properties.mu = np.linspace(-1., 1., n_mu)
# Set optical properties
self.optical_properties.nu = nu
self.optical_properties.albedo = albedo
self.optical_properties.chi = chi
# Compute scattering matrix elements
self.optical_properties.initialize_scattering_matrix()
for i in range(n_mu):
self.optical_properties.P1[:, i], \
self.optical_properties.P2[:, i], \
self.optical_properties.P3[:, i], \
self.optical_properties.P4[:, i] = henyey_greenstein(self.optical_properties.mu[i], g, p_lin_max)
class HOCHUNKDust(HenyeyGreensteinDust):
"""
This class should be used for dust properties that include
scattering parameterized by the `Henyey-Greenstein, 1941
<http://dx.doi.org/10.1086/144246>`_ function, which are formatted for the
`HOCHUNK code <http://gemelli.colorado.edu/~bwhitney/codes/>`_. The dust
properties should be instatiated as::
d = HOCHUNKDust(filename)
where ``filename`` is the name of the file containing the dust properties
in the HOCHUNK format.
"""
def __init__(self, filename):
# Read in dust file
dustfile = np.loadtxt(filename, dtype=[('wav', float), ('c_ext', float),
('c_sca', float), ('chi', float), ('g', float),
('p_lin_max', float)], usecols=[0, 1, 2, 3, 4, 5])
# Ensure file is ordered in increasing frequency
if dustfile['wav'][-1] > dustfile['wav'][0]:
dustfile = dustfile[::-1]
# Compute frequency and albedo
nu = c / dustfile['wav'] * 1.e4
albedo = dustfile['c_sca'] / dustfile['c_ext']
self.md5 = hashlib.md5(open(filename, 'rb').read()).hexdigest()
HenyeyGreensteinDust.__init__(self, nu, albedo, dustfile['chi'], dustfile['g'], dustfile['p_lin_max'])
TTsreDust = HOCHUNKDust
class CoatsphSingle(SphericalDust):
def __init__(self, directory, size, density):
'''
Initialize single-component dust.
Parameters
----------
directory : str
Directory containing all the files describing the dust
size : float
Grain size, in cm
density : float
Dust grain density, in g/cm^3
'''
SphericalDust.__init__(self)
f = open('%s/coatsph_forw.dat' % directory, 'rb')
version = f.readline()
n_components = int(f.readline().strip().split()[5])
# Read in main dust file
dustfile = np.loadtxt(f, skiprows=3,
dtype=[('x', float), ('radius', float), ('wav', float),
('q_ext', float), ('q_sca', float), ('q_back', float),
('g', float)])
n_wav = len(dustfile)
self.optical_properties.nu = c / dustfile['wav'] * 1.e4
self.optical_properties.albedo = dustfile['q_sca'] / dustfile['q_ext']
self.optical_properties.chi = 0.75 * dustfile['q_ext'] / size / density
# Read in scattering matrix elements
for i in range(n_wav):
filename = '%s/coatsph_scat_%04i_0001.dat' % (directory, i + 1)
phasefile = np.loadtxt(filename, skiprows=9,
dtype=[('theta', float), ('s11', float), ('polariz',
float), ('s12', float), ('s33', float), ('s34',
float)])
if i == 0:
self.optical_properties.mu = np.cos(np.radians(phasefile['theta']))
self.optical_properties.initialize_scattering_matrix()
self.optical_properties.P1[i, :] = phasefile['s11']
self.optical_properties.P2[i, :] = phasefile['s12']
self.optical_properties.P3[i, :] = phasefile['s33']
self.optical_properties.P4[i, :] = phasefile['s34']
class CoatsphMultiple(SphericalDust):
def __init__(self, directory):
'''
Initialize multi-component dust.
Parameters
----------
directory : str
Directory containing all the files describing the dust
'''
SphericalDust.__init__(self)
f = open('%s/coatsph_forw.dat' % directory, 'rb')
version = f.readline()
n_components = int(f.readline().strip().split()[5])
# Read in main dust file
dustfile = np.loadtxt(f, skiprows=7,
dtype=[('wav', float), ('c_ext', float), ('c_sca', float),
('chi', float), ('g', float), ('pmax', float),
('thetmax', float)])
n_wav = len(dustfile)
self.optical_properties.nu = c / dustfile['wav'] * 1.e4
self.optical_properties.albedo = dustfile['c_sca'] / dustfile['c_ext']
self.optical_properties.chi = dustfile['chi']
# Read in scattering matrix elements
for i in range(n_wav):
filename = '%s/coatsph_scat.%04i.dat' % (directory, i + 1)
phasefile = np.loadtxt(filename, skiprows=7,
dtype=[('theta', float), ('s11', float), ('polariz',
float), ('s12', float), ('s33', float), ('s34',
float)])
if i == 0:
self.optical_properties.mu = np.cos(np.radians(phasefile['theta']))
self.optical_properties.initialize_scattering_matrix()
self.optical_properties.P1[i, :] = phasefile['s11']
self.optical_properties.P2[i, :] = phasefile['s12']
self.optical_properties.P3[i, :] = phasefile['s33']
self.optical_properties.P4[i, :] = phasefile['s34']
class MieXDust(SphericalDust):
def __init__(self, model):
SphericalDust.__init__(self)
wav = np.loadtxt('%s.alb' % model, usecols=[0])
self.optical_properties.albedo = np.loadtxt('%s.alb' % model, usecols=[1])
kappa = np.loadtxt('%s.k_abs' % model, usecols=[1])
self.optical_properties.chi = kappa / (1 - self.optical_properties.albedo)
# Check for NaN values
for quantity in ['chi', 'albedo']:
values = self.optical_properties.__dict__[quantity]
if np.any(np.isnan(values)):
logger.warning("NaN values found inside MieX %s file - interpolating" % quantity)
invalid = np.isnan(values)
values[invalid] = interp1d_fast_loglog(wav[~invalid], values[~invalid], wav[invalid])
if np.any(np.isnan(values)):
raise Exception("Did not manage to fix NaN values in MieX %s" % quantity)
self.optical_properties.nu = c / wav * 1.e4
n_wav = len(wav)
n_mu = (len(open('%s.f11' % model).readlines()) // n_wav) - 1
mu = np.zeros(n_mu)
# Read mu
f11 = open('%s.f11' % model)
f11.readline()
f11.readline()
for i in range(n_mu):
mu[i] = np.cos(np.radians(float(f11.readline().split()[0])))
f11.close()
self.optical_properties.mu = mu[::-1]
# Read in matrix elements
self.optical_properties.initialize_scattering_matrix()
f11 = open('%s.f11' % model)
f12 = open('%s.f12' % model)
f33 = open('%s.f33' % model)
f34 = open('%s.f34' % model)
f11.readline()
f12.readline()
f33.readline()
f34.readline()
for j in range(n_wav):
if float(f11.readline()) != wav[j]:
raise Exception("Incorrect wavelength in f11")
if float(f12.readline()) != wav[j]:
raise Exception("Incorrect wavelength in f12")
if float(f33.readline()) != wav[j]:
raise Exception("Incorrect wavelength in f33")
if float(f34.readline()) != wav[j]:
raise Exception("Incorrect wavelength in f34")
for i in range(n_mu):
self.optical_properties.P1[j, n_mu - i - 1] = float(f11.readline().split()[1])
self.optical_properties.P2[j, n_mu - i - 1] = float(f12.readline().split()[1])
self.optical_properties.P3[j, n_mu - i - 1] = float(f33.readline().split()[1])
self.optical_properties.P4[j, n_mu - i - 1] = float(f34.readline().split()[1])
for i in range(n_mu):
for quantity in ['P1', 'P2', 'P3', 'P4']:
values = self.optical_properties.__dict__[quantity]
if np.any(np.isnan(values[:, i])):
logger.warning("NaN values found inside MieX %s file - interpolating" % quantity)
invalid = np.isnan(values[:, i])
values[:, i][invalid] = interp1d_fast_loglog(wav[~invalid], values[:, i][~invalid], wav[invalid])
if np.any(np.isnan(values[:, i])):
raise Exception("Did not manage to fix NaN values in MieX %s" % quantity)
class BHDust(SphericalDust):
"""
This class should be used for dust properties that were computed using
`this dust calculation code <https://github.com/hyperion-rt/bhmie>`_ which
is a wrapper to the ``bhmie`` routine originally written by C.F. Bohren and
D. Huffman and improved by B. Draine.
When using the ``bhmie`` code, you should set the output format to ``2``,
which will create a number of files ending in ``.wav``, ``.mu``, ``.alb``,
etc. Then, instantiate this class with the name of the directory containing
these output files along with the prefix used. For example, if you use
``directory/mydust`` as a prefix in ``bhmie``, you can import this dust
with::
>>> from hyperion.dust import BHDust
>>> d = BHDust('directory/mydust')
"""
def __init__(self, model):
SphericalDust.__init__(self)
mu = np.loadtxt('%s.mu' % model)
nu = c / np.loadtxt('%s.wav' % model) * 1.e4
albedo = np.loadtxt('%s.alb' % model)
chi = np.loadtxt('%s.chi' % model)
P1 = np.loadtxt('%s.f11' % model)
P2 = np.loadtxt('%s.f12' % model)
P3 = np.loadtxt('%s.f33' % model)
P4 = np.loadtxt('%s.f34' % model)
if nu[-1] < nu[0]:
nu = nu[::-1]
albedo = albedo[::-1]
chi = chi[::-1]
P1 = P1[::-1, :]
P2 = P2[::-1, :]
P3 = P3[::-1, :]
P4 = P4[::-1, :]
if mu[-1] < mu[0]:
mu = mu[::-1]
P1 = P1[:, ::-1]
P2 = P2[:, ::-1]
P3 = P3[:, ::-1]
P4 = P4[:, ::-1]
self.optical_properties.mu = mu
self.optical_properties.nu = nu
self.optical_properties.albedo = albedo
self.optical_properties.chi = chi
self.optical_properties.P1 = P1
self.optical_properties.P2 = P2
self.optical_properties.P3 = P3
self.optical_properties.P4 = P4
| hyperion-rt/hyperion | hyperion/dust/dust_type.py | dust_type.py | py | 31,342 | python | en | code | 51 | github-code | 36 | [
{
"api_name": "util.functions.FreezableClass",
"line_number": 43,
"usage_type": "name"
},
{
"api_name": "optical_properties.OpticalProperties",
"line_number": 65,
"usage_type": "call"
},
{
"api_name": "mean_opacities.MeanOpacities",
"line_number": 66,
"usage_type": "call"... |
21891037955 | import json
import logging
import traceback
from django.views import View
from django.http import JsonResponse
from backend.models import AnnotationCategory, Video
# from django.core.exceptions import BadRequest
class AnnoatationCategoryCreate(View):
def post(self, request):
try:
if not request.user.is_authenticated:
return JsonResponse({"status": "error"})
# decode data
try:
body = request.body.decode("utf-8")
except (UnicodeDecodeError, AttributeError):
body = request.body
try:
data = json.loads(body)
except Exception as e:
return JsonResponse({"status": "error", "type": "wrong_request_body"})
if "name" not in data:
return JsonResponse({"status": "error", "type": "missing_values"})
try:
query_args = {"name": data.get("name"), "owner": request.user}
if "video_id" in data:
query_args["video__id"] = data.get("video_id")
annotation_category_db = AnnotationCategory.objects.get(**query_args)
except AnnotationCategory.DoesNotExist:
create_args = {"name": data.get("name"), "owner": request.user}
if "color" in data:
create_args["color"] = data.get("color")
if "video_id" in data:
try:
video_db = Video.objects.get(id=data.get("video_id"))
except Video.DoesNotExist:
return JsonResponse({"status": "error", "type": "not_exist"})
create_args["video"] = video_db
annotation_category_db = AnnotationCategory.objects.create(**create_args)
return JsonResponse({"status": "ok", "entry": annotation_category_db.to_dict()})
except Exception as e:
logging.error(traceback.format_exc())
return JsonResponse({"status": "error"})
class AnnoatationCategoryList(View):
def get(self, request):
try:
if not request.user.is_authenticated:
return JsonResponse({"status": "error"})
query_args = {}
query_args["owner"] = request.user
if "video_id" in request.GET:
query_args["video__id"] = request.GET.get("video_id")
query_results = AnnotationCategory.objects.filter(**query_args)
entries = []
for annotation_category in query_results:
entries.append(annotation_category.to_dict())
return JsonResponse({"status": "ok", "entries": entries})
except Exception as e:
logging.error(traceback.format_exc())
return JsonResponse({"status": "error"})
| TIBHannover/tibava-backend | backend/views/annotation_category.py | annotation_category.py | py | 2,854 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "django.views.View",
"line_number": 12,
"usage_type": "name"
},
{
"api_name": "django.http.JsonResponse",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "json.loads",
"line_number": 24,
"usage_type": "call"
},
{
"api_name": "django.http.Jso... |
5102702223 | """fask_dj URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.11/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.conf.urls import url, include
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
"""
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^tasks', views.tasks, name = 'tasks'),
url(r'^task/(?P<task_id>[0-9]+)/$', views.task, name = 'task'),
url(r'^task_delete/(?P<task_id>[0-9]+)/$', views.task_delete, name = 'task_delete'),
url(r'^task_project/(?P<task_id>[0-9]+)/(?P<project_id>[0-9]+)/(?P<redirect_name>[a-z]+)$', views.task_project, name = 'task_project'),
]
| ZompaSenior/fask | fask/src/fask_dj/task/urls.py | urls.py | py | 1,085 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "django.conf.urls.url",
"line_number": 21,
"usage_type": "call"
},
{
"api_name": "django.conf.urls.url",
"line_number": 22,
"usage_type": "call"
},
{
"api_name": "django.conf.urls.url",
"line_number": 23,
"usage_type": "call"
},
{
"api_name": "django... |
6377162291 | from django.db import models
import uuid
class apiKeys(models.Model):
id = models.CharField(max_length=200, null=False, blank=False)
key = models.TextField(primary_key=True, default=uuid.uuid4().hex)
def __unicode__(self):
return self.id
class ButtonTable(models.Model):
SKRANKE = 0
TELEFON = 1
RANDOM = 2
BUTTON_CHOICES= (
(SKRANKE, 'Skranke'),
(TELEFON, 'Telefon'),
(RANDOM, 'Random')
)
sender = models.ForeignKey(apiKeys, editable=False, null=False)
button = models.IntegerField(choices=BUTTON_CHOICES, default=0)
date_registered = models.DateTimeField(auto_now_add=True, auto_now=False)
def __unicode__(self):
return str(self.button)
class Meta:
verbose_name_plural = 'Case registers'
verbose_name = 'Registered case'
| OrakeltjenestenDragvoll/nix | apps/bujumbura/models.py | models.py | py | 837 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "django.db.models.Model",
"line_number": 5,
"usage_type": "attribute"
},
{
"api_name": "django.db.models",
"line_number": 5,
"usage_type": "name"
},
{
"api_name": "django.db.models.CharField",
"line_number": 6,
"usage_type": "call"
},
{
"api_name": "... |
74146205863 | from flair.data import Sentence
from flair.models import SequenceTagger
from flair.embeddings import (DocumentPoolEmbeddings,
FlairEmbeddings, StackedEmbeddings)
from torch import dot, norm, squeeze
from pathlib import Path
import pickle
from odm.nlp.tensors import PCA, plot_embeddings, normalize_tensors
from odm.nlp.parse import parse_veclang
class Model:
modelpath = '/data/model/'
def __init__(self):
# Sequence Tagging Model
tagger_file = self.modelpath + 'tagger.pt'
if Path(tagger_file).is_file():
print('loading tagger from file')
self.tagger = SequenceTagger.load_from_file(tagger_file)
else:
print('downloading pretrained tagger')
self.tagger = SequenceTagger.load('ner-ontonotes')
self.tagger.save(tagger_file)
# Text Embedding Model
embeddings_file = self.modelpath + 'embeddings.pickle'
if Path(embeddings_file).is_file():
print('loading embedder from file')
filestream = open(embeddings_file, 'rb')
self.embeddings = pickle.load(filestream)
else:
print('downloading pretrained embedders')
self.embeddings = [
# WordEmbeddings('glove'),
FlairEmbeddings('multi-forward')
# FlairEmbeddings('multi-backward')
]
filestream = open(embeddings_file, 'wb')
pickle.dump(self.embeddings, filestream)
self.token_embedder = StackedEmbeddings(self.embeddings)
self.doc_embedder = DocumentPoolEmbeddings(self.embeddings)
def parse(self, text):
sentence = Sentence(text)
self.tagger.predict(sentence)
self.token_embedder.embed(sentence)
self.doc_embedder.embed(sentence)
return sentence
def mindmap(self, text):
# parsing
lines, arrows = parse_veclang(text)
sentences = [self.parse(line) for line in lines]
tensors = [s.get_embedding() for s in sentences]
# tensor processing
norm_tensors = normalize_tensors(tensors)
flat_tensors = PCA(norm_tensors)
# plot map
filename = plot_embeddings(lines, flat_tensors, arrows)
return f'Plotted mindmap to {filename}'
def similarity(self, text):
lines = text.split('//')
sentences = [self.parse(line) for line in lines]
vecs = [squeeze(s.embedding) for s in sentences]
sim = dot(vecs[0], vecs[1])/(norm(vecs[0])*norm(vecs[1]))
return f'the similarity is {sim}'
| ixxie/odm | src/odm/nlp/model.py | model.py | py | 2,615 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "pathlib.Path",
"line_number": 24,
"usage_type": "call"
},
{
"api_name": "flair.models.SequenceTagger.load_from_file",
"line_number": 26,
"usage_type": "call"
},
{
"api_name": "flair.models.SequenceTagger",
"line_number": 26,
"usage_type": "name"
},
{
... |
7919024721 | from __future__ import division
import geojson
from helper import load_geom, degrees_to_radians, get_coord, PRECISION
from math import pow, sqrt, pi, tan, cos, sin
from measurement import rhumb_destination
from transformation import transform_rotate
def ellipse(center, x_semi_axis, y_semi_axis, options={}):
steps = 64
if 'steps' in options:
steps = options['steps']
units = 'kilometers'
units_mapping = {
'miles': 'mi',
'kilometers': 'km',
'meters': 'm',
'degrees': 'degrees',
}
if 'units' in options:
units = options['units']
angle = 0
if 'angle' in options:
angle = options['angle']
# validation
if center is None:
raise Exception('center is required')
if x_semi_axis is None:
raise Exception('x_semi_axis is required')
if y_semi_axis is None:
raise Exception('y_semi_axis is required')
if units not in units_mapping:
raise Exception('non valid units')
units = units_mapping[units]
center = load_geom(center)
center_coords = get_coord(center)
angle_rad = 0
if units == 'degrees':
angle_rad = degrees_to_radians(angle)
else:
x_semi_axis = rhumb_destination(center, x_semi_axis, 90, {'units': units})
y_semi_axis = rhumb_destination(center, y_semi_axis, 0, {'units': units})
x_semi_axis = get_coord(x_semi_axis)[0] - center_coords[0]
y_semi_axis = get_coord(y_semi_axis)[1] - center_coords[1]
coordinates = []
for i in range(0, steps):
step_angle = (i * -360) / steps
x = (x_semi_axis * y_semi_axis) / sqrt(
pow(y_semi_axis, 2) + pow(x_semi_axis, 2) * pow(get_tan_deg(step_angle), 2)
)
y = (
0
if pow(get_tan_deg(step_angle), 2) == 0
else (x_semi_axis * y_semi_axis)
/ sqrt(
pow(x_semi_axis, 2)
+ pow(y_semi_axis, 2) / pow(get_tan_deg(step_angle), 2)
)
)
if step_angle < -90 and step_angle >= -270:
x = -x
if step_angle < -180 and step_angle >= -360:
y = -y
if units == 'degrees':
newx = x * cos(angle_rad) + y * sin(angle_rad)
newy = y * cos(angle_rad) - x * sin(angle_rad)
x = newx
y = newy
coordinates.append([x + center_coords[0], y + center_coords[1]])
coordinates.append(coordinates[0])
if units == 'degrees':
return geojson.dumps(
geojson.Feature(
geometry=geojson.Polygon([coordinates], precision=PRECISION)
)['geometry']
)
else:
return geojson.dumps(
transform_rotate(
geojson.Feature(
geometry=geojson.Polygon([coordinates], precision=PRECISION)
),
angle,
mutate=True,
)['geometry']
)
def get_tan_deg(deg):
rad = (deg * pi) / 180
return tan(rad)
| CartoDB/analytics-toolbox-core | clouds/redshift/libraries/python/lib/constructors/ellipse/__init__.py | __init__.py | py | 3,027 | python | en | code | 181 | github-code | 36 | [
{
"api_name": "helper.load_geom",
"line_number": 37,
"usage_type": "call"
},
{
"api_name": "helper.get_coord",
"line_number": 38,
"usage_type": "call"
},
{
"api_name": "helper.degrees_to_radians",
"line_number": 41,
"usage_type": "call"
},
{
"api_name": "measureme... |
29317958483 | from keras.utils.data_utils import get_file
import os
import numpy as np
from os import listdir
from os.path import isfile, join, isdir
import cv2
from random import shuffle
import math
from keras.callbacks import TensorBoard, EarlyStopping, ModelCheckpoint, ReduceLROnPlateau, LearningRateScheduler
from keras.models import Model
from keras import optimizers
import tensorflow as tf
from keras import backend as K
from keras.layers import Input, BatchNormalization, Activation, Dropout, Embedding, LSTM, Dense, Conv2D, MaxPooling2D, TimeDistributed, Flatten, concatenate, Reshape, Lambda
from keras.applications.vgg16 import VGG16
import scipy.ndimage as ndimage
import operator
from keras.applications.vgg16 import preprocess_input
# annot_path='/home/lfan/Dropbox/JointAttention/Data/annotation/'
#
# train_path='/home/lfan/Dropbox/JointAttention/faces/train_union/'
# train_sf=[f for f in listdir(train_path) if isdir(join(train_path,f))]
# validate_path='/home/lfan/Dropbox/JointAttention/faces/validate_union/'
# validate_sf=[f for f in listdir(validate_path) if isdir(join(validate_path,f))]
# test_path='/home/lfan/Dropbox/runCoAtt/rawData/images/separate/test/'
# test_sf=[f for f in listdir(test_path) if isdir(join(test_path,f))]
#
# vid_set=test_sf #train_sf
#
# annot_sf=[join(annot_path,f) for f in listdir(annot_path) if isdir(join(annot_path,f))]
#
# with open('/home/lfan/Dropbox/runCoAtt/rawData/gaze_summary_test_new.txt','w') as F:
# for i in range(len(vid_set)):
# sf = annot_path+vid_set[i]
# vid = vid_set[i]
#
# with open(join(sf, 'coattention.txt'), 'r') as r1:
# lines = r1.readlines()
# for j in range(0,len(lines),10):
# list_now = lines[j].split()
# frame_now = str(int(list_now[1])+1)
# img_name = '/home/lfan/Dropbox/runCoAtt/rawData/images/all/' + frame_now.zfill(5) + '_' + vid + '.jpg'
#
# ca_xmin=float(list_now[2])
# ca_ymin=float(list_now[3])
# ca_xmax=float(list_now[4])
# ca_ymax=float(list_now[5])
# ca_x=(ca_xmin+ca_xmax)/2
# ca_y=(ca_ymin+ca_ymax)/2
#
#
# num_face = (len(list_now) - 2) / 4 - 1
# for k in range(num_face):
# face = list_now[(6 + k * 4):(10 + k * 4)]
# xmin=float(face[0])
# ymin=float(face[1])
# xmax=float(face[2])
# ymax=float(face[3])
# face_x=(xmin+xmax)/2
# face_y=(ymin+ymax)/2
#
# dir_x=ca_x-face_x
# dir_y=ca_y-face_y
# L=math.sqrt(dir_x ** 2 + dir_y ** 2)
# dir_x=dir_x/L
# dir_y=dir_y/L
#
# # if dir_y >= 0:
# # direction = math.acos(dir_x / math.sqrt(dir_x ** 2 + dir_y ** 2))
# # elif dir_y < 0:
# # direction = 2*math.pi - math.acos(dir_x / math.sqrt(dir_x ** 2 + dir_y ** 2))
#
# F.write(img_name+' '+str(xmin)+' '+str(ymin)+' '+str(xmax)+' '+str(ymax)+' '+str(dir_x)+' '+str(dir_y)+'\n')
# with open('/home/lfan/Dropbox/runCoAtt/rawData/gaze_summary_train.txt','r') as f:
# lines=f.readlines()
#
# for i in range(len(lines)):
# list=lines[i].split()
# if not isfile(list[0]):
#
# print(list[0])
# with open('/home/lfan/Dropbox/runCoAtt/rawData/gaze_summary_train.txt','r') as f:
# lines=f.readlines()
#
# dir_hist=np.zeros(shape=(10,1))
# for i in range(len(lines)):
# list=lines[i].split()
#
# dir=int(float(list[5])//(2*math.pi/10))
# if dir==10:
# dir=0
# dir_hist[dir,0]+=1
#
# print(dir_hist)
# with open('/home/lfan/Dropbox/runCoAtt/rawData/gaze_summary_test_new.txt','r') as f:
# lines=f.readlines()
# with open('/home/lfan/Dropbox/runCoAtt/rawData/gaze_summary_test_flipped_new.txt','w') as f2:
# for i in range(len(lines)):
# list = lines[i].split()
# xmin=float(list[1])
# xmax=float(list[3])
#
# xmax_n=480-xmin
# xmin_n=480-xmax
#
# dir_x=float(list[5])
# dir_y=float(list[6])
#
# dir_x=-dir_x
# # if dir<0.5*(2*math.pi):
# # dir_n=0.5-dir
# # else:
# # dir_n=1.5*(2*math.pi)-dir
#
# f2.write(list[0]+' '+str(xmin_n)+' '+list[2]+' '+str(xmax_n)+' '+list[4]+' '+str(dir_x)+' '+str(dir_y)+' '+'f\n')
# gfdatapath='/home/lfan/Dropbox/runCoAtt/vgg16/gazefollow_data/'
#
# with open('/home/lfan/Dropbox/runCoAtt/vgg16/gazefollow_data/annotation_test.txt','r') as f:
# lines=f.readlines()
# with open('/home/lfan/Dropbox/runCoAtt/vgg16/gazefollow_data/annotation_test_flipped.txt','w') as f2:
# for i in range(len(lines)):
# list = lines[i].split()
# img=cv2.imread(join(gfdatapath,list[0]))
# h, w, ch = img.shape
#
# xmin=float(list[1])
# xmax=float(list[3])+float(list[1])
#
# xmax_n=w-xmin
# xmin_n=w-xmax
# w_n=xmax_n-xmin_n
#
# dir=float(list[9])
# if dir<0.5:
# dir_n=0.5-dir
# else:
# dir_n=1.5-dir
#
# f2.write(list[0]+' '+str(xmin_n)+' '+list[2]+' '+str(w_n)+' '+list[4]+' '+list[5]+' '+list[6]+' '+list[7]+' '+list[8]+' '+str(dir_n)+' '+'f\n')
batch_size=25
epochs=25
nb_train_samples=12000 # 13706
nb_validate_samples=6000 #8533
nb_test_samples=6000
model_weights_path = '/home/lfan/Dropbox/runCoAtt/new_experiment/gazedir/gazedir_finalweights.hdf5'
model_path = '/home/lfan/Dropbox/runCoAtt/new_experiment/gazedir/gazedir_finalmodel.h5'
tensorboard_log_dir = '/home/lfan/Dropbox/runCoAtt/new_experiment/gazedir/tb_log/'
gfdatapath='/home/lfan/Dropbox/runCoAtt/vgg16/gazefollow_data/'
def mygenerator(mode):
if mode==1:
file_name='/home/lfan/Dropbox/runCoAtt/rawData/gaze_summary_train_new.txt'
#file_name_flip='/home/lfan/Dropbox/runCoAtt/rawData/gaze_summary_train_flipped.txt'
#file_name_gazefollow='/home/lfan/Dropbox/runCoAtt/vgg16/gazefollow_data/annotation_train.txt'
#file_name_gazefollow_flipped = '/home/lfan/Dropbox/runCoAtt/vgg16/gazefollow_data/annotation_train_flipped.txt'
sample_len=nb_train_samples
elif mode==2:
file_name = '/home/lfan/Dropbox/runCoAtt/rawData/gaze_summary_validate_new.txt'
#file_name_flip = '/home/lfan/Dropbox/runCoAtt/rawData/gaze_summary_validate_flipped.txt'
#file_name_gazefollow = '/home/lfan/Dropbox/runCoAtt/vgg16/gazefollow_data/annotation_test.txt'
#file_name_gazefollow_flipped = '/home/lfan/Dropbox/runCoAtt/vgg16/gazefollow_data/annotation_test_flipped.txt'
sample_len=nb_validate_samples
with open(file_name,'r') as reader:
lines=reader.readlines()
# with open(file_name_flip,'r') as reader:
# lines_flipped=reader.readlines()
# with open(file_name_gazefollow,'r') as reader:
# lines_gazefollow=reader.readlines()
# with open(file_name_gazefollow_flipped,'r') as reader:
# lines_gazefollow_flipped=reader.readlines()
lines=lines[0:sample_len]
#lines_flipped=lines_flipped[0:sample_len]
#lines[0:0]=lines_flipped
# lines[0:0]=lines_gazefollow
# lines[0:0]=lines_gazefollow_flipped
#lines=lines[0:sample_len]
shuffle(lines)
shuffle(lines)
cur_batch_index=0
while True:
x_batch = np.zeros(shape=(batch_size, 224, 224, 3))
y_batch = np.zeros(shape=(batch_size, 2))
start_id = cur_batch_index * batch_size
end_id = start_id + batch_size
files_batch_now = lines[start_id:end_id]
for j in range(batch_size):
list_now=files_batch_now[j].split()
if len(list_now)<8:
img = cv2.imread(list_now[0])
# if len(list_now) == 7:
# img = cv2.flip(img, 1)
# cv2.imshow('flipped',img)
# cv2.waitKey(0)
# cv2.destroyAllWindows()
xmin = int(float(list_now[1]))# - (float(list_now[3]) - float(list_now[1])) * 0)
ymin = int(float(list_now[2]))# - (float(list_now[4]) - float(list_now[2])) * 0)
xmax = int(float(list_now[3]))# + (float(list_now[3]) - float(list_now[1])) * 0)
ymax = int(float(list_now[4]) )#+ (float(list_now[4]) - float(list_now[2])) * 0)
# w = float(xmax - xmin)
# h = float(ymax - ymin)
# wh_list = [w, h]
# max_index, max_value = max(enumerate(wh_list), key=operator.itemgetter(1))
# pad = (wh_list[max_index] - wh_list[1 - max_index]) / 2
# if max_index == 0:
# ymin = ymin - pad
# ymax = ymax + pad
# elif max_index == 1:
# xmin -= pad
# xmax += pad
xmin = int(max(0, xmin))
ymin = int(max(0, ymin))
xmax = max(xmin + 1, xmax)
ymax = max(ymin + 1, ymax)
xmax = int(min(479, xmax))
ymax = int(min(319, ymax))
#direction = float(list_now[5]) / (2 * math.pi)
dir_x=float(list_now[5])
dir_y=float(list_now[6])
# print(img.shape)
face = img[ymin:ymax, xmin:xmax, :]
face = cv2.resize(face, (224, 224))
#face=face.astype('float32')
# face[:, :, 0] -= 123.68
# face[:, :, 1] -= 116.779
# face[:, :, 2] -= 103.939
#face=(face/255)*2-1
#print(direction)
#cv2.putText(face, str(direction), (10, 500), cv2.FONT_HERSHEY_SIMPLEX, 4, (255, 255, 255), 2, cv2.LINE_AA)
# cv2.imshow('face',face)
# cv2.waitKey(0)
# cv2.destroyAllWindows()
x_batch[j, :, :, :] = face
y_batch[j, 0] = dir_x
y_batch[j, 1] = dir_y
elif len(list_now)>9:
name = list_now[0]
bbox_x = int(float(list_now[1]))
bbox_y = int(float(list_now[2]))
bbox_w = int(float(list_now[3]))
bbox_h = int(float(list_now[4]))
eye_x = int(np.float32(list_now[5]))
eye_y = int(np.float32(list_now[6]))
direction = np.float32(list_now[9])
img = cv2.imread(gfdatapath + name)
if len(list_now)==11:
img = cv2.flip(img, 1)
h, w, ch = img.shape
totop = np.abs(eye_y - bbox_y)
if int(totop) == 0:
totop = 10
face_h = int(2* totop)
face_w = int(2 * totop)
face_x = int(eye_x - totop)
face_y = int(eye_y - totop)
if face_x < bbox_x:
face_x = bbox_x
if face_y < bbox_y:
face_y = bbox_y
if (face_x + face_w) > (bbox_x + bbox_w):
face_w = bbox_x + bbox_w - face_x
if (face_y + face_h) > (bbox_y + bbox_h):
face_h = bbox_y + bbox_h - face_y
if face_x < 0:
face_x = 0
if face_y < 0:
face_y = 0
face_w=max(1,face_w)
face_h=max(1,face_h)
if (face_x + face_w) > w:
face_w = w - face_x
if (face_y + face_h) > h:
face_h = h - face_y
face_pro = img[face_y:(face_y + face_h), face_x:(face_x + face_w), :]
face_pro = cv2.resize(face_pro, (224, 224))
face_pro=face_pro.astype('float32')
# face_pro[:, :, 0] -= 103.939
# face_pro[:, :, 1] -= 116.779
# face_pro[:, :, 2] -= 123.68
face_pro = np.float32(face_pro) / 255
#direction = direction / (math.pi * 2)
x_batch[j,:,:,:] = face_pro
y_batch[j,0] = direction
# cv2.imshow(str(direction),x_batch[j,:,:,:])
# cv2.waitKey(0)
# cv2.destroyAllWindows()
yield x_batch, y_batch
cur_batch_index = cur_batch_index + 1
if cur_batch_index >= (len(lines) // batch_size):
cur_batch_index = 0
shuffle(lines)
#
def myloss(y_true,y_pred):
lamb=0.9
loss=lamb*tf.reduce_sum(tf.square(y_true-y_pred))
sess=tf.Session()
sess.run(loss)
#+(1-lamb)*tf.abs(1-tf.reduce_sum(tf.square(y_pred)))
#loss= (1 - tf.matmul(y_true,y_pred,transpose_b=True)/tf.sqrt(tf.reduce_sum(tf.square(y_true))*tf.reduce_sum(tf.square(y_pred)))) #+ tf.abs(1-tf.reduce_sum(tf.square(y_pred)))
# offset=np.abs(y_true-y_pred)
# loss=2*((0.5-np.abs(offset-0.5))**2)
return loss
def lr_decay(epoch):
initial_lr = 1e-3
drop = 0.8
epochs_drop = 2
lr = initial_lr * math.pow(drop, math.floor(epoch / epochs_drop))
return lr
def train_model():
img_input = Input(shape=(224, 224, 3), name='img_input')
# Block 1
x = Conv2D(64, (3, 3), activation='relu', padding='same', name='block1_conv1')(img_input)
x = Conv2D(64, (3, 3), activation='relu', padding='same', name='block1_conv2')(x)
x = MaxPooling2D((2, 2), strides=(2, 2), name='block1_pool')(x)
# Block 2
x = Conv2D(128, (3, 3), activation='relu', padding='same', name='block2_conv1')(x)
x = Conv2D(128, (3, 3), activation='relu', padding='same', name='block2_conv2')(x)
x = MaxPooling2D((2, 2), strides=(2, 2), name='block2_pool')(x)
# Block 3
x = Conv2D(256, (3, 3), activation='relu', padding='same', name='block3_conv1')(x)
x = Conv2D(256, (3, 3), activation='relu', padding='same', name='block3_conv2')(x)
x = Conv2D(256, (3, 3), activation='relu', padding='same', name='block3_conv3')(x)
x = MaxPooling2D((2, 2), strides=(2, 2), name='block3_pool')(x)
# Block 4
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block4_conv1')(x)
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block4_conv2')(x)
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block4_conv3')(x)
x = MaxPooling2D((2, 2), strides=(2, 2), name='block4_pool')(x)
# Block 5
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block5_conv1')(x)
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block5_conv2')(x)
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block5_conv3')(x)
base_output = MaxPooling2D((2, 2), strides=(2, 2), name='block5_pool')(x)
base_model=Model(inputs=img_input,outputs=base_output)
base_model.trainable=True
WEIGHTS_PATH_NO_TOP = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.1/vgg16_weights_tf_dim_ordering_tf_kernels_notop.h5'
weights_path = get_file('vgg16_weights_tf_dim_ordering_tf_kernels_notop.h5',
WEIGHTS_PATH_NO_TOP,
cache_subdir='models')
base_model.load_weights(weights_path)
output = Flatten(name='flatten')(base_output)
output = Dense(4096, kernel_initializer='normal',activation='relu',name='fc1')(output)
output = Dropout(0.5)(output)
output = Dense(4096, kernel_initializer='normal',name='fc2')(output)
output=BatchNormalization()(output)
output=Activation('relu')(output)
output = Dropout(0.5)(output)
predict= Dense(2, kernel_initializer='normal',activation='tanh', name='predict')(output)
# Create your own model
mymodel = Model(inputs=img_input, outputs=predict)
mymodel.summary()
mycallback = []
tbCallback = TensorBoard(log_dir=tensorboard_log_dir,
histogram_freq=0, batch_size=batch_size,
write_graph=True, write_images=True)
lrscheduler = LearningRateScheduler(lr_decay)
model_checkpoint = ModelCheckpoint(
'/home/lfan/Dropbox/runCoAtt/new_experiment/gazedir/checkpoint.weights.{epoch:02d}-{val_loss:.2f}.hdf5',
save_best_only=False,
save_weights_only=True, monitor='val_loss')
mycallback.append(tbCallback)
mycallback.append(model_checkpoint)
mycallback.append(lrscheduler)
#sgd = optimizers.SGD(lr=1e-4)
mymodel.compile(optimizer='sgd', loss='mse', metrics=['mae','acc'])
history = mymodel.fit_generator(mygenerator(1),
steps_per_epoch=(2*nb_train_samples) // batch_size,
epochs=epochs,
validation_data=mygenerator(2),
validation_steps=(2*nb_validate_samples) // batch_size,
callbacks=mycallback)
mymodel.save_weights(model_weights_path)
mymodel.save(model_path)
score = mymodel.evaluate_generator(mygenerator(2), (2*nb_validate_samples) // batch_size)
print("Validation Accuracy= ", score[1])
def testmodel():
# img_input = Input(shape=(224, 224, 3), name='img_input')
#
# # Block 1
# x = Conv2D(64, (3, 3), activation='relu', padding='same', name='block1_conv1')(img_input)
# x = Conv2D(64, (3, 3), activation='relu', padding='same', name='block1_conv2')(x)
# x = MaxPooling2D((2, 2), strides=(2, 2), name='block1_pool')(x)
#
# # Block 2
# x = Conv2D(128, (3, 3), activation='relu', padding='same', name='block2_conv1')(x)
# x = Conv2D(128, (3, 3), activation='relu', padding='same', name='block2_conv2')(x)
# x = MaxPooling2D((2, 2), strides=(2, 2), name='block2_pool')(x)
#
# # Block 3
# x = Conv2D(256, (3, 3), activation='relu', padding='same', name='block3_conv1')(x)
# x = Conv2D(256, (3, 3), activation='relu', padding='same', name='block3_conv2')(x)
# x = Conv2D(256, (3, 3), activation='relu', padding='same', name='block3_conv3')(x)
# x = MaxPooling2D((2, 2), strides=(2, 2), name='block3_pool')(x)
#
# # Block 4
# x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block4_conv1')(x)
# x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block4_conv2')(x)
# x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block4_conv3')(x)
# x = MaxPooling2D((2, 2), strides=(2, 2), name='block4_pool')(x)
#
# # Block 5
# x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block5_conv1')(x)
# x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block5_conv2')(x)
# x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block5_conv3')(x)
# base_output = MaxPooling2D((2, 2), strides=(2, 2), name='block5_pool')(x)
#
# output = Flatten(name='flatten')(base_output)
# output = Dense(1024, activation='tanh', name='fc1')(output)
# output = Dropout(0.5)(output)
# output = Dense(512, activation='tanh', name='fc2')(output)
# output = Dropout(0.5)(output)
# output = Dense(128, activation='tanh', name='fc3')(output)
# output = Dropout(0.5)(output)
# predict = Dense(2, activation='tanh', name='predict')(output)
img_input = Input(shape=(224, 224, 3), name='img_input')
# Block 1
x = Conv2D(64, (3, 3), activation='relu', padding='same', name='block1_conv1')(img_input)
x = Conv2D(64, (3, 3), activation='relu', padding='same', name='block1_conv2')(x)
x = MaxPooling2D((2, 2), strides=(2, 2), name='block1_pool')(x)
# Block 2
x = Conv2D(128, (3, 3), activation='relu', padding='same', name='block2_conv1')(x)
x = Conv2D(128, (3, 3), activation='relu', padding='same', name='block2_conv2')(x)
x = MaxPooling2D((2, 2), strides=(2, 2), name='block2_pool')(x)
# Block 3
x = Conv2D(256, (3, 3), activation='relu', padding='same', name='block3_conv1')(x)
x = Conv2D(256, (3, 3), activation='relu', padding='same', name='block3_conv2')(x)
x = Conv2D(256, (3, 3), activation='relu', padding='same', name='block3_conv3')(x)
x = MaxPooling2D((2, 2), strides=(2, 2), name='block3_pool')(x)
# Block 4
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block4_conv1')(x)
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block4_conv2')(x)
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block4_conv3')(x)
x = MaxPooling2D((2, 2), strides=(2, 2), name='block4_pool')(x)
# Block 5
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block5_conv1')(x)
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block5_conv2')(x)
x = Conv2D(512, (3, 3), activation='relu', padding='same', name='block5_conv3')(x)
base_output = MaxPooling2D((2, 2), strides=(2, 2), name='block5_pool')(x)
output = Flatten(name='flatten')(base_output)
output = Dense(4096, kernel_initializer='normal', activation='relu', name='fc1')(output)
output = Dropout(0.5)(output)
output = Dense(4096, kernel_initializer='normal', name='fc2')(output)
output = BatchNormalization()(output)
output = Activation('relu')(output)
output = Dropout(0.5)(output)
predict = Dense(2, kernel_initializer='normal', activation='tanh', name='predict')(output)
# Create your own model
mymodel = Model(inputs=img_input, outputs=predict)
mymodel.summary()
mymodel.load_weights('/home/lfan/Dropbox/runCoAtt/new_experiment/gazedir/checkpoint.weights.19-0.47.hdf5')
file_name='/home/lfan/Dropbox/runCoAtt/rawData/gaze_summary_test_new.txt'
sample_len=nb_test_samples
with open(file_name,'r') as reader:
lines=reader.readlines()
lines=lines[0:sample_len]
shuffle(lines)
LOSS=0
cnt=0
for j in range(sample_len):
list_now = lines[j].split()
img = cv2.imread(list_now[0])
xmin = int(float(list_now[1])) # - (float(list_now[3]) - float(list_now[1])) * 0)
ymin = int(float(list_now[2])) # - (float(list_now[4]) - float(list_now[2])) * 0)
xmax = int(float(list_now[3])) # + (float(list_now[3]) - float(list_now[1])) * 0)
ymax = int(float(list_now[4])) # + (float(list_now[4]) - float(list_now[2])) * 0)
xmin = max(0, xmin)
ymin = max(0, ymin)
xmax = max(xmin + 1, xmax)
ymax = max(ymin + 1, ymax)
xmax = min(479, xmax)
ymax = min(319, ymax)
dir_x=float(list_now[5])
dir_y=float(list_now[6])
#direction = float(list_now[5]) / (2 * math.pi)
# print(img.shape)
face = img[ymin:ymax, xmin:xmax, :]
face = cv2.resize(face, (224, 224))
#face = face.astype('float32')
#face=face[:,:,::-1]
# face[:, :, 0] -= 123.68
# face[:, :, 1] -= 116.779
# face[:, :, 2] -= 103.939
#face=face/255
# print(direction)
# cv2.putText(face, str(direction), (10, 500), cv2.FONT_HERSHEY_SIMPLEX, 4, (255, 255, 255), 2, cv2.LINE_AA)
x_batch=np.zeros(shape=(1,224,224,3))
x_batch[0,:,:,:]=face
res=mymodel.predict(x_batch,batch_size=1)
res=res[0]
print(res)
print('GT: '+str(dir_x)+' '+str(dir_y))
o_x=112
o_y=112
cv2.arrowedLine(face,(o_x,o_y),(o_x+int(res[0]*100),o_y+int(res[1]*100)),(0,0,255),5)
cv2.arrowedLine(face, (o_x, o_y), (o_x + int(dir_x*100), o_y + int(dir_y*100)), (0, 255, 255), 5)
cv2.imshow('face',face)
cv2.waitKey(0)
cv2.destroyAllWindows()
LOSS+=((dir_x-res[0])**2+(dir_y-res[1])**2)/2
cnt+=1
# cv2.imshow(str(res[0])+' '+str(res[1]), face)
# cv2.waitKey(0)
# cv2.destroyAllWindows()
print('Average loss: {}'.format(LOSS/cnt))
#train_model()
testmodel()
| LifengFan/Shared-Attention | src/gazemap.py | gazemap.py | py | 23,892 | python | en | code | 4 | github-code | 36 | [
{
"api_name": "random.shuffle",
"line_number": 199,
"usage_type": "call"
},
{
"api_name": "random.shuffle",
"line_number": 200,
"usage_type": "call"
},
{
"api_name": "numpy.zeros",
"line_number": 205,
"usage_type": "call"
},
{
"api_name": "numpy.zeros",
"line_... |
18735221514 | import scrapy
from module.items import HotlineItem
class HotlineSpider(scrapy.Spider):
name = "hotline"
allowed_domains = ["hotline.ua"]
start_urls = [f"https://hotline.ua/ua/bt/holodilniki/?p={page}" for page in range(1, 4)]
def parse(self, response):
catalog = response.xpath('//div[contains(@class, "list-body__content")]').xpath('//div[contains(@class, "list-item ")]')
for item in catalog:
url = item.xpath('.//a[contains(@class, "list-item__title")]/@href').get()
yield scrapy.Request(
url=f"https://hotline.ua" + url,
callback=self.parse_hotline
)
def parse_hotline(self, response):
product_name = response.xpath('.//h1[contains(@class, "title__main")]/text()').get()
store_name = response.xpath('.//div[1][@class="list__item row flex"]//a[@data-eventcategory="Pages Product Prices" and @class="shop__title"]/text()').get()
price = response.xpath('.//div[1][@class="list__item row flex"]//span[@data-eventcategory="Pages Product Prices"]/span[@class="price__value"]/text()').get()
yield HotlineItem(
store_name=store_name,
product_name=product_name,
price=price
)
| Ivan7281/Lab-Data-Scraping | Lab7/module/spiders/hotline.py | hotline.py | py | 1,258 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "scrapy.Spider",
"line_number": 5,
"usage_type": "attribute"
},
{
"api_name": "scrapy.Request",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "module.items.HotlineItem",
"line_number": 26,
"usage_type": "call"
}
] |
34530261292 | from __future__ import absolute_import
import hashlib
import json
import os
import re
import socket
from mercurial.i18n import _
from mercurial import (
error,
pathutil,
url as urlmod,
util,
vfs as vfsmod,
worker,
)
from ..largefiles import lfutil
# 64 bytes for SHA256
_lfsre = re.compile(r'\A[a-f0-9]{64}\Z')
class lfsvfs(vfsmod.vfs):
def join(self, path):
"""split the path at first two characters, like: XX/XXXXX..."""
if not _lfsre.match(path):
raise error.ProgrammingError('unexpected lfs path: %s' % path)
return super(lfsvfs, self).join(path[0:2], path[2:])
def walk(self, path=None, onerror=None):
"""Yield (dirpath, [], oids) tuple for blobs under path
Oids only exist in the root of this vfs, so dirpath is always ''.
"""
root = os.path.normpath(self.base)
# when dirpath == root, dirpath[prefixlen:] becomes empty
# because len(dirpath) < prefixlen.
prefixlen = len(pathutil.normasprefix(root))
oids = []
for dirpath, dirs, files in os.walk(self.reljoin(self.base, path or ''),
onerror=onerror):
dirpath = dirpath[prefixlen:]
# Silently skip unexpected files and directories
if len(dirpath) == 2:
oids.extend([dirpath + f for f in files
if _lfsre.match(dirpath + f)])
yield ('', [], oids)
class filewithprogress(object):
"""a file-like object that supports __len__ and read.
Useful to provide progress information for how many bytes are read.
"""
def __init__(self, fp, callback):
self._fp = fp
self._callback = callback # func(readsize)
fp.seek(0, os.SEEK_END)
self._len = fp.tell()
fp.seek(0)
def __len__(self):
return self._len
def read(self, size):
if self._fp is None:
return b''
data = self._fp.read(size)
if data:
if self._callback:
self._callback(len(data))
else:
self._fp.close()
self._fp = None
return data
class local(object):
"""Local blobstore for large file contents.
This blobstore is used both as a cache and as a staging area for large blobs
to be uploaded to the remote blobstore.
"""
def __init__(self, repo):
fullpath = repo.svfs.join('lfs/objects')
self.vfs = lfsvfs(fullpath)
usercache = lfutil._usercachedir(repo.ui, 'lfs')
self.cachevfs = lfsvfs(usercache)
self.ui = repo.ui
def open(self, oid):
"""Open a read-only file descriptor to the named blob, in either the
usercache or the local store."""
# The usercache is the most likely place to hold the file. Commit will
# write to both it and the local store, as will anything that downloads
# the blobs. However, things like clone without an update won't
# populate the local store. For an init + push of a local clone,
# the usercache is the only place it _could_ be. If not present, the
# missing file msg here will indicate the local repo, not the usercache.
if self.cachevfs.exists(oid):
return self.cachevfs(oid, 'rb')
return self.vfs(oid, 'rb')
def download(self, oid, src):
"""Read the blob from the remote source in chunks, verify the content,
and write to this local blobstore."""
sha256 = hashlib.sha256()
with self.vfs(oid, 'wb', atomictemp=True) as fp:
for chunk in util.filechunkiter(src, size=1048576):
fp.write(chunk)
sha256.update(chunk)
realoid = sha256.hexdigest()
if realoid != oid:
raise error.Abort(_('corrupt remote lfs object: %s') % oid)
# XXX: should we verify the content of the cache, and hardlink back to
# the local store on success, but truncate, write and link on failure?
if not self.cachevfs.exists(oid):
self.ui.note(_('lfs: adding %s to the usercache\n') % oid)
lfutil.link(self.vfs.join(oid), self.cachevfs.join(oid))
def write(self, oid, data):
"""Write blob to local blobstore.
This should only be called from the filelog during a commit or similar.
As such, there is no need to verify the data. Imports from a remote
store must use ``download()`` instead."""
with self.vfs(oid, 'wb', atomictemp=True) as fp:
fp.write(data)
# XXX: should we verify the content of the cache, and hardlink back to
# the local store on success, but truncate, write and link on failure?
if not self.cachevfs.exists(oid):
self.ui.note(_('lfs: adding %s to the usercache\n') % oid)
lfutil.link(self.vfs.join(oid), self.cachevfs.join(oid))
def read(self, oid, verify=True):
"""Read blob from local blobstore."""
if not self.vfs.exists(oid):
blob = self._read(self.cachevfs, oid, verify)
# Even if revlog will verify the content, it needs to be verified
# now before making the hardlink to avoid propagating corrupt blobs.
# Don't abort if corruption is detected, because `hg verify` will
# give more useful info about the corruption- simply don't add the
# hardlink.
if verify or hashlib.sha256(blob).hexdigest() == oid:
self.ui.note(_('lfs: found %s in the usercache\n') % oid)
lfutil.link(self.cachevfs.join(oid), self.vfs.join(oid))
else:
self.ui.note(_('lfs: found %s in the local lfs store\n') % oid)
blob = self._read(self.vfs, oid, verify)
return blob
def _read(self, vfs, oid, verify):
"""Read blob (after verifying) from the given store"""
blob = vfs.read(oid)
if verify:
_verify(oid, blob)
return blob
def has(self, oid):
"""Returns True if the local blobstore contains the requested blob,
False otherwise."""
return self.cachevfs.exists(oid) or self.vfs.exists(oid)
class _gitlfsremote(object):
def __init__(self, repo, url):
ui = repo.ui
self.ui = ui
baseurl, authinfo = url.authinfo()
self.baseurl = baseurl.rstrip('/')
useragent = repo.ui.config('experimental', 'lfs.user-agent')
if not useragent:
useragent = 'git-lfs/2.3.4 (Mercurial %s)' % util.version()
self.urlopener = urlmod.opener(ui, authinfo, useragent)
self.retry = ui.configint('lfs', 'retry')
def writebatch(self, pointers, fromstore):
"""Batch upload from local to remote blobstore."""
self._batch(pointers, fromstore, 'upload')
def readbatch(self, pointers, tostore):
"""Batch download from remote to local blostore."""
self._batch(pointers, tostore, 'download')
def _batchrequest(self, pointers, action):
"""Get metadata about objects pointed by pointers for given action
Return decoded JSON object like {'objects': [{'oid': '', 'size': 1}]}
See https://github.com/git-lfs/git-lfs/blob/master/docs/api/batch.md
"""
objects = [{'oid': p.oid(), 'size': p.size()} for p in pointers]
requestdata = json.dumps({
'objects': objects,
'operation': action,
})
batchreq = util.urlreq.request('%s/objects/batch' % self.baseurl,
data=requestdata)
batchreq.add_header('Accept', 'application/vnd.git-lfs+json')
batchreq.add_header('Content-Type', 'application/vnd.git-lfs+json')
try:
rawjson = self.urlopener.open(batchreq).read()
except util.urlerr.httperror as ex:
raise LfsRemoteError(_('LFS HTTP error: %s (action=%s)')
% (ex, action))
try:
response = json.loads(rawjson)
except ValueError:
raise LfsRemoteError(_('LFS server returns invalid JSON: %s')
% rawjson)
return response
def _checkforservererror(self, pointers, responses, action):
"""Scans errors from objects
Raises LfsRemoteError if any objects have an error"""
for response in responses:
# The server should return 404 when objects cannot be found. Some
# server implementation (ex. lfs-test-server) does not set "error"
# but just removes "download" from "actions". Treat that case
# as the same as 404 error.
notfound = (response.get('error', {}).get('code') == 404
or (action == 'download'
and action not in response.get('actions', [])))
if notfound:
ptrmap = {p.oid(): p for p in pointers}
p = ptrmap.get(response['oid'], None)
if p:
filename = getattr(p, 'filename', 'unknown')
raise LfsRemoteError(
_(('LFS server error. Remote object '
'for "%s" not found: %r')) % (filename, response))
else:
raise LfsRemoteError(
_('LFS server error. Unsolicited response for oid %s')
% response['oid'])
if 'error' in response:
raise LfsRemoteError(_('LFS server error: %r') % response)
def _extractobjects(self, response, pointers, action):
"""extract objects from response of the batch API
response: parsed JSON object returned by batch API
return response['objects'] filtered by action
raise if any object has an error
"""
# Scan errors from objects - fail early
objects = response.get('objects', [])
self._checkforservererror(pointers, objects, action)
# Filter objects with given action. Practically, this skips uploading
# objects which exist in the server.
filteredobjects = [o for o in objects if action in o.get('actions', [])]
return filteredobjects
def _basictransfer(self, obj, action, localstore):
"""Download or upload a single object using basic transfer protocol
obj: dict, an object description returned by batch API
action: string, one of ['upload', 'download']
localstore: blobstore.local
See https://github.com/git-lfs/git-lfs/blob/master/docs/api/\
basic-transfers.md
"""
oid = str(obj['oid'])
href = str(obj['actions'][action].get('href'))
headers = obj['actions'][action].get('header', {}).items()
request = util.urlreq.request(href)
if action == 'upload':
# If uploading blobs, read data from local blobstore.
with localstore.open(oid) as fp:
_verifyfile(oid, fp)
request.data = filewithprogress(localstore.open(oid), None)
request.get_method = lambda: 'PUT'
for k, v in headers:
request.add_header(k, v)
response = b''
try:
req = self.urlopener.open(request)
if action == 'download':
# If downloading blobs, store downloaded data to local blobstore
localstore.download(oid, req)
else:
while True:
data = req.read(1048576)
if not data:
break
response += data
if response:
self.ui.debug('lfs %s response: %s' % (action, response))
except util.urlerr.httperror as ex:
if self.ui.debugflag:
self.ui.debug('%s: %s\n' % (oid, ex.read()))
raise LfsRemoteError(_('HTTP error: %s (oid=%s, action=%s)')
% (ex, oid, action))
def _batch(self, pointers, localstore, action):
if action not in ['upload', 'download']:
raise error.ProgrammingError('invalid Git-LFS action: %s' % action)
response = self._batchrequest(pointers, action)
objects = self._extractobjects(response, pointers, action)
total = sum(x.get('size', 0) for x in objects)
sizes = {}
for obj in objects:
sizes[obj.get('oid')] = obj.get('size', 0)
topic = {'upload': _('lfs uploading'),
'download': _('lfs downloading')}[action]
if len(objects) > 1:
self.ui.note(_('lfs: need to transfer %d objects (%s)\n')
% (len(objects), util.bytecount(total)))
self.ui.progress(topic, 0, total=total)
def transfer(chunk):
for obj in chunk:
objsize = obj.get('size', 0)
if self.ui.verbose:
if action == 'download':
msg = _('lfs: downloading %s (%s)\n')
elif action == 'upload':
msg = _('lfs: uploading %s (%s)\n')
self.ui.note(msg % (obj.get('oid'),
util.bytecount(objsize)))
retry = self.retry
while True:
try:
self._basictransfer(obj, action, localstore)
yield 1, obj.get('oid')
break
except socket.error as ex:
if retry > 0:
self.ui.note(
_('lfs: failed: %r (remaining retry %d)\n')
% (ex, retry))
retry -= 1
continue
raise
# Until https multiplexing gets sorted out
if self.ui.configbool('experimental', 'lfs.worker-enable'):
oids = worker.worker(self.ui, 0.1, transfer, (),
sorted(objects, key=lambda o: o.get('oid')))
else:
oids = transfer(sorted(objects, key=lambda o: o.get('oid')))
processed = 0
for _one, oid in oids:
processed += sizes[oid]
self.ui.progress(topic, processed, total=total)
self.ui.note(_('lfs: processed: %s\n') % oid)
self.ui.progress(topic, pos=None, total=total)
def __del__(self):
# copied from mercurial/httppeer.py
urlopener = getattr(self, 'urlopener', None)
if urlopener:
for h in urlopener.handlers:
h.close()
getattr(h, "close_all", lambda : None)()
class _dummyremote(object):
"""Dummy store storing blobs to temp directory."""
def __init__(self, repo, url):
fullpath = repo.vfs.join('lfs', url.path)
self.vfs = lfsvfs(fullpath)
def writebatch(self, pointers, fromstore):
for p in pointers:
content = fromstore.read(p.oid(), verify=True)
with self.vfs(p.oid(), 'wb', atomictemp=True) as fp:
fp.write(content)
def readbatch(self, pointers, tostore):
for p in pointers:
with self.vfs(p.oid(), 'rb') as fp:
tostore.download(p.oid(), fp)
class _nullremote(object):
"""Null store storing blobs to /dev/null."""
def __init__(self, repo, url):
pass
def writebatch(self, pointers, fromstore):
pass
def readbatch(self, pointers, tostore):
pass
class _promptremote(object):
"""Prompt user to set lfs.url when accessed."""
def __init__(self, repo, url):
pass
def writebatch(self, pointers, fromstore, ui=None):
self._prompt()
def readbatch(self, pointers, tostore, ui=None):
self._prompt()
def _prompt(self):
raise error.Abort(_('lfs.url needs to be configured'))
_storemap = {
'https': _gitlfsremote,
'http': _gitlfsremote,
'file': _dummyremote,
'null': _nullremote,
None: _promptremote,
}
def _verify(oid, content):
realoid = hashlib.sha256(content).hexdigest()
if realoid != oid:
raise error.Abort(_('detected corrupt lfs object: %s') % oid,
hint=_('run hg verify'))
def _verifyfile(oid, fp):
sha256 = hashlib.sha256()
while True:
data = fp.read(1024 * 1024)
if not data:
break
sha256.update(data)
realoid = sha256.hexdigest()
if realoid != oid:
raise error.Abort(_('detected corrupt lfs object: %s') % oid,
hint=_('run hg verify'))
def remote(repo):
"""remotestore factory. return a store in _storemap depending on config"""
url = util.url(repo.ui.config('lfs', 'url') or '')
scheme = url.scheme
if scheme not in _storemap:
raise error.Abort(_('lfs: unknown url scheme: %s') % scheme)
return _storemap[scheme](repo, url)
class LfsRemoteError(error.RevlogError):
pass
| bruno-oliveira/twilioHackathon-whats-around-me | env/lib/python2.7/site-packages/hgext/lfs/blobstore.py | blobstore.py | py | 17,091 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "re.compile",
"line_number": 23,
"usage_type": "call"
},
{
"api_name": "mercurial.vfs.vfs",
"line_number": 25,
"usage_type": "attribute"
},
{
"api_name": "mercurial.vfs",
"line_number": 25,
"usage_type": "name"
},
{
"api_name": "mercurial.error.Progr... |
12185429190 | # Creating a regression line - aka line of best fit
# Y = mx + b
from statistics import mean
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import style
style.use('fivethirtyeight')
# defined as numpy arrays
xs = np.array([1,2,3,4,5,6], dtype=np.float64)
ys = np.array([5,4,6,5,6,7], dtype=np.float64)
def best_fit_slope_and_intercept(xs,ys):
m = (((mean(xs) * mean(ys)) - mean(xs*ys)) / ( (mean(xs) * mean(xs)) - mean(xs**2) ) )
b = mean(ys) - m*mean(xs)
return m,b;
m,b = best_fit_slope_and_intercept(xs,ys)
#Creating line via for loop
regression_line = [(m*x)+b for x in xs]
#print(m,b)
predict_x = 8
predict_y = (m*predict_x + b)
#Create plots
plt.scatter(xs,ys)
plt.scatter(predict_x,predict_y)
plt.plot(xs, regression_line)
plt.show()
| Wcdunn3/pythonProjects | MachineLearning/MlLesson9LineFit.py | MlLesson9LineFit.py | py | 790 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "matplotlib.style.use",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "matplotlib.style",
"line_number": 8,
"usage_type": "name"
},
{
"api_name": "numpy.array",
"line_number": 12,
"usage_type": "call"
},
{
"api_name": "numpy.float64",
"... |
13509904582 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Resize and add text to videos
Usage example:
$ python transform.py
"""
import random
import os
import shutil
from moviepy.editor import *
from moviepy.video.tools.subtitles import SubtitlesClip
from sqlite import *
class VideoTransform:
def __init__(self, videos=[]):
print(' ----> {} videos to transform'.format(len(videos)))
for video in videos:
video['clip'] = VideoFileClip(video['filepath'])
self.videos = videos
print(' --> {} videos converted to clips'.format(len(self.videos)))
def adjustSize(self, clip,width,height):
# get current dimensions and ratio
clipWidth,clipHeight = clip.size
ratio = clipWidth / clipHeight
# resize the clip
if ratio > (width/height):
clip2 = clip.resize(width=width)
else:
clip2 = clip.resize(height=height)
return clip2
def adjustSizes(self,width=1920,height=1080):
for video in self.videos:
video['clip'] = self.adjustSize(video['clip'],width,height)
def addSubtitle(self, clip, subtitle, howLong, maxLength=15):
# trim the subtitle if it's too long
if len(subtitle) > maxLength:
subtitle = subtitle[:maxLength] + '...'
# set how long the subtitle will show
howLong = min(howLong,clip.duration)
subs = [((0, howLong), subtitle)]
# create clip with subtitle
subtitles = SubtitlesClip(subs, lambda txt: TextClip(txt, font='Arial', fontsize=72, color='white', stroke_color='black'))
# merge clip and subtitles
result = CompositeVideoClip([clip, subtitles.set_position(('center','bottom'))])
# return resulting clip
return result
def addSubtitles(self, howLong=10):
print(' ----> Adding subtitles')
for index, video in enumerate(self.videos):
video['clip'] = self.addSubtitle(video['clip'],video['title'],howLong)
print(' --> {}/{} subtitles added'.format(index+1,len(self.videos)))
def addSource(self,clip,source,howLong):
howLong = min(howLong,clip.duration)
subs = [((0, howLong), source)]
# create clip with source
subtitles = SubtitlesClip(subs, lambda txt: TextClip(txt, font='Arial', fontsize=24, color='white', bg_color='black'))
# merge clip and text
result = CompositeVideoClip([clip, subtitles.set_position((0,0))])
# return resulting clip
return result
def addSources(self, howLong=10):
print(' ----> Adding sources')
for index, video in enumerate(self.videos):
video['clip'] = self.addSource(video['clip'],video['link'],howLong)
print(' --> {}/{} sources added'.format(index+1,len(self.videos)))
def save(self, clip, filename, threads=1):
filepath = os.path.join(os.getcwd(),filename)
clip.write_videofile(filepath, codec='mpeg4', audio=True, threads=threads)
return filepath
if __name__ == '__main__':
# get videos from DB
sql = Sqlite()
result = sql.run('SELECT * FROM videos WHERE duration IS NULL')
videos = [ row for row in result if os.path.isfile(row['filepath']) ]
# convert them to clips
limit = 10
transform = VideoTransform(videos[:limit])
# resize them
transform.adjustSizes()
# add subtitles
transform.addSubtitles()
# add link to original
transform.addSources()
# backup the original videos
# and save the updated versions
for video in transform.videos:
shutil.move(video['filepath'],video['filepath']+'.original')
transform.save(video['clip'],video['filepath'])
# update their durations and sizes on the DB
for video in transform.videos:
filepath = video['filepath']
duration = video['clip'].duration
width,height = video['clip'].size
sql.run('''
UPDATE videos
SET duration = {duration},
width = {width},
height = {height}
WHERE
filepath = '{filepath}'
'''.format(
duration=duration,
filepath=filepath,
width=width,
height=height
))
| miguel-faggioni/zap-bot | transform.py | transform.py | py | 4,335 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "moviepy.video.tools.subtitles.SubtitlesClip",
"line_number": 48,
"usage_type": "call"
},
{
"api_name": "moviepy.video.tools.subtitles.SubtitlesClip",
"line_number": 64,
"usage_type": "call"
},
{
"api_name": "os.path.join",
"line_number": 77,
"usage_type": "... |
17299275140 | from django.shortcuts import render, get_object_or_404
from .models import Post, Comment
from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
from .forms import CommentForm
from django.views.decorators.http import require_POST
from taggit.models import Tag
"""
This is the Count aggregation function of the Django ORM. This function will
allow you to perform aggregated counts of tags. django.db.models includes the
following aggregation functions:
• Avg: The mean value
• Max: The maximum value
• Min: The minimum value
• Count: The total number of objects
"""
from django.db.models import Count
from itertools import chain
# Define the number of elements in one page
page_elements_count = 6
# Define number of similar posts
similar_posts_count = 3
# Create your views here.
def blog_list(request, tag_slug=None):
post_list = Post.published.all()
tag = None
if tag_slug:
tag = get_object_or_404(Tag, slug=tag_slug)
post_list = post_list.filter(tags__in=[tag])
posts_count = post_list.count()
# Pagination with page_elements_count per page
paginator = Paginator(post_list, page_elements_count)
# f the page parameter is not in the GET parameters of the request, we use
# the default value 1 to load the first page of results.
page_number = request.GET.get('page', 1)
# Try get the requested page
try:
posts = paginator.page(page_number)
# If the requests page is out of range, retrun the last page
except EmptyPage:
# If page_number is out of range deliver last page of results
posts = paginator.page(paginator.num_pages)
# If the requests page is not an integer, return the first page
except PageNotAnInteger:
posts = paginator.page(1)
return render(
request,
'blog/blog_home.html',
{
'posts': posts,
'posts_count': posts_count,
'tag': tag,
}
)
def blog_post(request, post_slug):
post = get_object_or_404(
Post,
slug=post_slug,
status=Post.Status.PUBLISHED
)
# List of active comments for this post
comments = post.comments.filter(active=True)
if request.method == 'GET':
# Form for users to comment
form = CommentForm()
else:
# Define a comment variable with the initial value None. This variable will
# be used to store the comment object when it gets created.
comment = None
form = CommentForm(data=request.POST)
if form.is_valid():
comment = form.save(commit=False)
# Assign the post attribute of the comment to the current post
comment.post = post
# Save the comment to the database
comment.save()
# List of similar posts
# retrieve a Python list of IDs for the tags of the current post. The
# values_list() QuerySet returns tuples with the values for the given
# fields. We pass flat=True to it to get single values such as
# [1, 2, 3, ...] instead of one-tuples such as [(1,), (2,), (3,) ...]
post_tags_ids = post.tags.values_list('id', flat=True)
# We get all posts that contain any of these tags, excluding the current
# post itself.
similar_posts = Post.published.filter(tags__in=post_tags_ids).exclude(id=post.id)
# use the Count aggregation function to generate a calculated
# field (same_tags) that contains the number of tags shared with all the
# tags queried.
# We order the result by the number of shared tags (descending order) and
# by publish to display recent posts first for the posts with the same
# number of shared tags. We slice the result to retrieve only the first
# three posts.
similar_posts = similar_posts.annotate(same_tags=Count('tags'))\
.order_by('-same_tags', '-created')[:similar_posts_count]
# Fill similar posts with normal posts; if the similar posts are less than
# the required similar_posts_count
if len(similar_posts) < similar_posts_count:
extra_posts_count = similar_posts_count - len(similar_posts)
extra_posts = Post.published.order_by('-created').exclude(id=post.id)\
.exclude(id__in=similar_posts)[:extra_posts_count]
similar_posts = list(chain(similar_posts, extra_posts))
return render(
request,
'blog/blog_post.html',
{
'post': post,
'form': form,
'comments': comments,
'similar_posts': similar_posts,
}
)
| m-abdelgawad/automagic-developer-django-postgres-docker-compose-stack | automagic-website/blog/views.py | views.py | py | 4,620 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "models.Post.published.all",
"line_number": 30,
"usage_type": "call"
},
{
"api_name": "models.Post.published",
"line_number": 30,
"usage_type": "attribute"
},
{
"api_name": "models.Post",
"line_number": 30,
"usage_type": "name"
},
{
"api_name": "djan... |
74540930982 | # -*- coding: utf-8 -*-
from enum import Enum
class SolarTerms(Enum):
the_beginning_of_spring = "the Beginning of Spring", "立春"
rain_water = "Rain Water", "雨水"
the_waking_of_insects = "the Waking of Insects", "惊蛰"
the_spring_equinox = "the Spring Equinox", "春分"
pure_brightness = "Pure Brightness", "清明"
grain_rain = "Grain Rain", "谷雨"
the_beginning_of_summer = "the Beginning of Summer", "立夏"
lesser_fullness_of_grain = "Lesser Fullness of Grain", "小满"
grain_in_beard = "Grain in Beard", "芒种"
the_summer_solstice = "the Summer Solstice", "夏至"
lesser_heat = "Lesser Heat", "小暑"
greater_heat = "Greater Heat", "大暑"
the_beginning_of_autumn = "the Beginning of Autumn", "立秋"
the_end_of_heat = "the End of Heat", "处暑"
white_dew = "White Dew", "白露"
the_autumn_equinox = "the Autumn Equinox", "秋分"
code_dew = "Cold Dew", "寒露"
frost_descent = "Frost's Descent", "霜降"
the_beginning_of_winter = "the Beginning of Winter", "立冬"
lesser_snow = "Lesser Snow", "小雪"
greater_snow = "Greater Snow", "大雪"
the_winter_solstice = "the Winter Solstice", "冬至"
lesser_cold = "Lesser Cold", "小寒"
greater_cold = "Greater Cold", "大寒"
# 计算节气用的 C 值
# 2000年的小寒、大寒、立春、雨水按照20世纪的C值来算
SOLAR_TERMS_C_NUMS = {
# 节气: [20世纪值, 21世纪值]
SolarTerms.the_beginning_of_spring: [4.6295, 3.87],
SolarTerms.rain_water: [19.4599, 18.73],
SolarTerms.the_waking_of_insects: [6.3926, 5.63],
SolarTerms.the_spring_equinox: [21.4155, 20.646],
SolarTerms.pure_brightness: [5.59, 4.81],
SolarTerms.grain_rain: [20.888, 20.1],
SolarTerms.the_beginning_of_summer: [6.318, 5.52],
SolarTerms.lesser_fullness_of_grain: [21.86, 21.04],
SolarTerms.grain_in_beard: [6.5, 5.678],
SolarTerms.the_summer_solstice: [22.2, 21.37],
SolarTerms.lesser_heat: [7.928, 7.108],
SolarTerms.greater_heat: [23.65, 22.83],
SolarTerms.the_beginning_of_autumn: [28.35, 7.5],
SolarTerms.the_end_of_heat: [23.95, 23.13],
SolarTerms.white_dew: [8.44, 7.646],
SolarTerms.the_autumn_equinox: [23.822, 23.042],
SolarTerms.code_dew: [9.098, 8.318],
SolarTerms.frost_descent: [24.218, 23.438],
SolarTerms.the_beginning_of_winter: [8.218, 7.438],
SolarTerms.lesser_snow: [23.08, 22.36],
SolarTerms.greater_snow: [7.9, 7.18],
SolarTerms.the_winter_solstice: [22.6, 21.94],
SolarTerms.lesser_cold: [6.11, 5.4055],
SolarTerms.greater_cold: [20.84, 20.12],
}
# 月份和节气对应关系
SOLAR_TERMS_MONTH = {
1: [SolarTerms.lesser_cold, SolarTerms.greater_cold],
2: [SolarTerms.the_beginning_of_spring, SolarTerms.rain_water],
3: [SolarTerms.the_waking_of_insects, SolarTerms.the_spring_equinox],
4: [SolarTerms.pure_brightness, SolarTerms.grain_rain],
5: [SolarTerms.the_beginning_of_summer, SolarTerms.lesser_fullness_of_grain],
6: [SolarTerms.grain_in_beard, SolarTerms.the_summer_solstice],
7: [SolarTerms.lesser_heat, SolarTerms.greater_heat],
8: [SolarTerms.the_beginning_of_autumn, SolarTerms.the_end_of_heat],
9: [SolarTerms.white_dew, SolarTerms.the_autumn_equinox],
10: [SolarTerms.code_dew, SolarTerms.frost_descent],
11: [SolarTerms.the_beginning_of_winter, SolarTerms.lesser_snow],
12: [SolarTerms.greater_snow, SolarTerms.the_winter_solstice],
}
# 有些节气使用公式计算计算的不够准确,需要进行偏移
SOLAR_TERMS_DELTA = {
(2026, SolarTerms.rain_water): -1,
(2084, SolarTerms.the_spring_equinox): 1,
(1911, SolarTerms.the_beginning_of_summer): 1,
(2008, SolarTerms.lesser_fullness_of_grain): 1,
(1902, SolarTerms.grain_in_beard): 1,
(1928, SolarTerms.the_summer_solstice): 1,
(1925, SolarTerms.lesser_heat): 1,
(2016, SolarTerms.lesser_heat): 1,
(1922, SolarTerms.greater_heat): 1,
(2002, SolarTerms.the_beginning_of_autumn): 1,
(1927, SolarTerms.white_dew): 1,
(1942, SolarTerms.the_autumn_equinox): 1,
(2089, SolarTerms.frost_descent): 1,
(2089, SolarTerms.the_beginning_of_winter): 1,
(1978, SolarTerms.lesser_snow): 1,
(1954, SolarTerms.greater_snow): 1,
(1918, SolarTerms.the_winter_solstice): -1,
(2021, SolarTerms.the_winter_solstice): -1,
(1982, SolarTerms.lesser_cold): 1,
(2019, SolarTerms.lesser_cold): -1,
(2000, SolarTerms.greater_cold): 1,
(2082, SolarTerms.greater_cold): 1,
}
| LKI/chinese-calendar | chinese_calendar/solar_terms.py | solar_terms.py | py | 4,541 | python | en | code | 866 | github-code | 36 | [
{
"api_name": "enum.Enum",
"line_number": 5,
"usage_type": "name"
}
] |
70539338983 | from intrinsic_types import intrinsic_types, is_float
from bitstring import Bits, BitArray
import random
from tempfile import NamedTemporaryFile
import os
import subprocess
from interp import interpret
from compiler import compile
from bit_util import *
import math
import z3
import functools
import operator
from spec_serializer import dump_spec, load_spec
src_path = os.path.dirname(os.path.abspath(__file__))
def get_imm_mask(imm8, outs):
'''
Given imm8 and the semantic of the outputs,
figure out a mask that identifies the bits of imm8
that are actually useful
'''
# TODO: don't assume there is only one output
y = outs[0]
mask = (1 << 33)-1
s = z3.Solver()
for i in range(33, 0, -1):
cur_mask = (1<<(i+1))-1
y_masked = z3.substitute(y, (imm8, imm8 & cur_mask))
ok = z3.is_true(z3.simplify(y_masked == y))
if not ok:
return mask
mask = cur_mask
return mask
def extract_float(bv, i, bitwidth):
'''
extract i'th float from bv
bitwidth is the size of a one floating point (either 32 or 64)
'''
if bitwidth == 32:
ty = z3.Float32()
else:
assert bitwidth == 64
ty = z3.Float64()
sub_bv = z3.Extract(i * bitwidth + bitwidth - 1, i * bitwidth, bv)
return z3.fpBVToFP(sub_bv, ty)
def equal(a, b, ty):
if is_float(ty):
if ty.is_float:
elem_bw = 32
else:
elem_bw = 64
assert ty.bitwidth % elem_bw == 0
num_elems = ty.bitwidth // elem_bw
return z3.Or(a == b, z3.And([
z3.fpAbs(extract_float(a, i, elem_bw) - extract_float(b, i, elem_bw)) < 1e-5
for i in range(num_elems)]))
return a == b
def check_compiled_spec_with_examples(param_vals, outs, out_types, inputs, expected_outs):
s = z3.Solver()
s.set(timeout=20000)
constraints = []
for input, expected in zip(inputs, expected_outs):
subs = [(param, z3.BitVecVal(x, param.size())) for param, x in zip(param_vals, input)]
outs_concrete = [z3.simplify(z3.substitute(out, *subs))
for out in outs]
constraints.append(
z3.And([equal(z3.BitVecVal(y_expected, y.size()), y, out_type)
for y_expected, y, out_type in zip(expected, outs_concrete, out_types)]))
#preconditions = [x_sym == x_conc
#for x_sym, x_conc in zip(param_vals, input)]
#postconditions = [equal(z3.BitVecVal(y_expected, y.size()), y, out_type)
# for y_expected, y, out_type in zip(expected, outs, out_types)]
#constraints.append(
# z3.Implies(z3.And(preconditions), z3.And(postconditions)))
spec_correct = z3.And(constraints)
s.add(z3.Not(spec_correct))
correct = s.check() == z3.unsat
#if not correct:
# print(s.model().evaluate(outs[0]), expected_outs[0][0])
return correct
def line_to_bitvec(line, ty):
qwords = list(map(int, line.split()))
if ty.bitwidth <= 64:
assert len(qwords) == 1
[bits] = qwords
mask = (1 << ty.bitwidth) - 1
return bits & mask
assert ty.bitwidth % 64 == 0
components = [bits << (i * 64) for i, bits in enumerate(qwords)]
return functools.reduce(operator.or_, components, 0)
load_intrinsics = {
'_m512i': '_mm512_loadu_si512',
'__m512i': '_mm512_loadu_si512',
'__m256i': '_mm256_loadu_si256',
'__m128i': '_mm_loadu_si128',
# single precision floats
'__m512': '_mm512_loadu_ps',
'__m256': '_mm256_loadu_ps',
'__m128': '_mm_loadu_ps',
'_m512': '_mm512_loadu_ps',
'_m256': '_mm256_loadu_ps',
'_m128': '_mm_loadu_ps',
# double precision floats
'__m512d': '_mm512_loadu_pd',
'__m256d': '_mm256_loadu_pd',
'__m128d': '_mm_loadu_pd',
'_m512d': '_mm512_loadu_pd',
'_m256d': '_mm256_loadu_pd',
'_m128d': '_mm_loadu_pd',
}
# functions that prints these vector registers
printers = {
'_m512i': 'print__m512i',
'__m512i': 'print__m512i',
'__m256i': 'print__m256i',
'__m128i': 'print__m128i',
# single precision floats
'__m512': 'print__m512i',
'__m256': 'print__m256i',
'__m128': 'print__m128i',
'_m512': 'print__m512i',
'_m256': 'print__m256i',
'_m128': 'print__m128i',
# double precision floats
'__m512d': 'print__m512i',
'__m256d': 'print__m256i',
'__m128d': 'print__m128i',
'_m512d': 'print__m512i',
'_m256d': 'print__m256i',
'_m128d': 'print__m128i',
}
def emit_load(outf, dst, src, typename):
if typename in load_intrinsics:
load_intrinsic = load_intrinsics[typename]
outf.write('%s %s = %s((%s *)%s);\n' % (
typename, dst, load_intrinsic, typename, src
))
else:
outf.write('%s %s = *(%s *)(%s);\n' % (
typename, dst, typename, src
))
def gen_rand_data(outf, name, typename):
'''
declare a variable of `data_type` called `name`
print result to `outf` and return the actual bytes in bits
e.g. for ty=__m512i, name = x1, we declare the following
unsigned char x1[64] = { ... };
'''
if typename.endswith('*'):
is_pointer = True
typename = typename[:-1].strip()
else:
is_pointer = False
ty = intrinsic_types[typename]
# generate floats separates for integer because we don't
# want to deal with underflow and other floating point issues
if not is_float(ty):
num_bytes = ty.bitwidth // 8
bytes = [random.randint(0, 255) for _ in range(num_bytes)]
outf.write('unsigned char %s_aux[%d] = { %s };\n' % (
name, num_bytes, ','.join(map(str, bytes))
))
bits = BitArray(length=ty.bitwidth)
for i, byte in enumerate(bytes):
update_bits(bits, i*8, i*8+8, byte)
else:
float_size = 32 if ty.is_float else 64
c_type = 'float' if ty.is_float else 'double'
num_floats = ty.bitwidth // float_size
floats = [random.random() for _ in range(num_floats)]
outf.write('%s %s_aux[%d] = { %s };\n' % (
c_type, name, num_floats, ','.join(map(str, floats))
))
bits = float_vec_to_bits(floats, float_size=float_size)
if not is_pointer:
# in this case we need to load the bytes
emit_load(outf, src='%s_aux'%name, dst=name, typename=typename)
else:
# in this case we just take the address
outf.write('%s *%s = (%s *)(&%s_aux);\n' % (
typename, name, typename, name
))
return bits
def emit_print(outf, var, typename):
if typename.endswith('*'):
typename = typename[:-1].strip()
ty = intrinsic_types[typename]
is_pointer = True
else:
is_pointer = False
ty = intrinsic_types[typename]
if is_pointer:
# need to load the value first first
tmp = get_temp_name()
emit_load(outf, dst=tmp, src=var, typename=typename)
var = tmp
if typename in printers:
# use the predefined printers
printer = printers[typename]
if ty.is_float:
param_ty = 'unsigned long'
elif ty.is_double:
param_ty = 'unsigned long'
else:
param_ty = 'unsigned long'
outf.write('%s((%s *)&%s);\n' % (printer, param_ty, var))
else:
if ty.is_float:
outf.write('printf("%%u\\n", float2int(%s));\n' % var)
elif ty.is_double:
outf.write('printf("%%lu\\n", double2long(%s));\n' % var)
else:
outf.write('printf("%%lu\\n", (unsigned long)%s);\n' % var)
counter = 0
def get_temp_name():
global counter
counter += 1
return 'tmp%d' % counter
def fuzz_intrinsic_once(outf, spec, sema):
'''
1) generate test (in C) that exercises the intrinsic
2) run the interpreter per the spec and return the expected output
'''
xs, ys = sema
# generate random arguments
c_vars = []
arg_vals = []
out_params = []
out_param_types = []
inst_form = spec.inst_form.split(', ')
no_imm8 = 'imm8' not in (param.name for param in spec.params)
# TODO: refactor out this signature parsing logic
for i, param in enumerate(spec.params):
if ((no_imm8 and i < len(inst_form) and inst_form[i] == 'imm') or
param.name == 'imm8'):
param_id = len(arg_vals)
mask = get_imm_mask(xs[param_id], ys)
byte = random.randint(0, 255) & mask
c_vars.append(str(byte))
arg_vals.append(Bits(uint=byte, length=8))
continue
c_var = get_temp_name()
arg_val = gen_rand_data(outf, c_var, param.type)
c_vars.append(c_var)
arg_vals.append(arg_val)
if param.type.endswith('*'):
out_params.append(c_var)
out_param_types.append(param.type[:-1].strip())
# call the intrinsic
has_return_val = spec.rettype != 'void'
if has_return_val:
ret_var = get_temp_name()
outf.write('%s %s = %s(%s);\n' % (
spec.rettype, ret_var, spec.intrin, ','.join(c_vars)
))
# print the result
emit_print(outf, ret_var, spec.rettype)
else:
outf.write('%s(%s);\n' % (
spec.intrin, ','.join(c_vars)
))
out_types = []
for param, param_type in zip(out_params, out_param_types):
emit_print(outf, param, param_type+'*')
return arg_vals, out_param_types, has_return_val
def get_err(a, b, is_float):
err = a - b
if not is_float:
return err
if math.isnan(a) and math.isnan(b):
return 0
return err
def identical_vecs(a, b, is_float):
errs = [get_err(aa, bb, is_float)
for aa,bb in zip(a, b)]
if is_float:
return all(abs(err) <= 1e-6 for err in errs)
return all(err == 0 for err in errs)
def bits_to_vec(bits, typename):
if typename.endswith('*'):
ty = intrinsic_types[typename[:-1]]
else:
ty = intrinsic_types[typename]
if ty.is_float:
return bits_to_float_vec(bits, float_size=32)
elif ty.is_double:
return bits_to_float_vec(bits, float_size=64)
# integer type
return bits_to_long_vec(bits)
def fuzz_intrinsic(spec, num_tests=100):
'''
spec -> (spec correct, can compile)
'''
param_vals, outs = compile(spec)
sema = param_vals, outs
interpreted = []
exe = NamedTemporaryFile(delete=False)
exe.close()
with NamedTemporaryFile(suffix='.c', mode='w') as outf:
outf.write('''
#include <emmintrin.h>
#include <immintrin.h>
#include <nmmintrin.h>
#include <pmmintrin.h>
#include <smmintrin.h>
#include <tmmintrin.h>
#include <wmmintrin.h>
#include <xmmintrin.h>
#include <stdio.h>
#include "printers.h"
#define __int64_t __int64
#define __int64 long long
union float_and_int {
float f;
unsigned int i;
};
union double_and_long {
double d;
unsigned long l;
};
unsigned int float2int(float f) {
union float_and_int x;
x.f = f;
return x.i;
}
unsigned long double2long(double d) {
union double_and_long x;
x.d = d;
return x.l;
}
int main() {
''')
x = []
y = []
for _ in range(num_tests):
arg_vals, out_param_types, has_return_val = fuzz_intrinsic_once(outf, spec, sema)
out_types = [intrinsic_types[ty] for ty in out_param_types]
if spec.rettype != 'void':
out_types = [intrinsic_types[spec.rettype]] + out_types
x.append([val.uint for val in arg_vals])
outf.write('''
return 0;
}
''')
outf.flush()
os.system('cp %s %s' % (outf.name, 'debug.c'))
# TODO: add CPUIDs
try:
subprocess.check_output(
'clang %s -o %s -I%s %s/printers.o >/dev/null 2>/dev/null -mavx -mavx2 -march=native -mfma' % (
outf.name, exe.name, src_path, src_path),
shell=True)
except subprocess.CalledProcessError:
return False, False
num_outputs_per_intrinsic = len(out_types)
stdout = subprocess.check_output([exe.name])
lines = stdout.decode('utf-8').strip().split('\n')
assert(len(lines) == num_tests * num_outputs_per_intrinsic)
os.system('rm '+exe.name)
for i in range(0, len(lines), num_outputs_per_intrinsic):
outputs = []
for ty, line in zip(out_types, lines[i:i+num_outputs_per_intrinsic]):
outputs.append(line_to_bitvec(line, ty))
y.append(outputs)
correct = check_compiled_spec_with_examples(param_vals, outs, out_types, x, y)
return correct, True
if __name__ == '__main__':
import sys
import xml.etree.ElementTree as ET
from manual_parser import get_spec_from_xml
from intrinsic_types import IntegerType
sema = '''
<intrinsic tech="Other" rettype='unsigned int' name='_bextr_u32'>
<type>Integer</type>
<CPUID>BMI1</CPUID>
<category>Bit Manipulation</category>
<parameter type='unsigned int' varname='a' />
<parameter type='unsigned int' varname='start' />
<parameter type='unsigned int' varname='len' />
<description>Extract contiguous bits from unsigned 32-bit integer "a", and store the result in "dst". Extract the number of bits specified by "len", starting at the bit specified by "start".</description>
<operation>
tmp := ZeroExtend_To_512(a)
dst := ZeroExtend(tmp[start[7:0]+len[7:0]-1:start[7:0]])
</operation>
<instruction name='bextr' form='r32, r32, r32'/>
<header>immintrin.h</header>
</intrinsic>
'''
intrin_node = ET.fromstring(sema)
spec = get_spec_from_xml(intrin_node)
ok = fuzz_intrinsic(spec, num_tests=32)
print(ok)
| ychen306/upgraded-succotash | fuzzer.py | fuzzer.py | py | 12,802 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "os.path.dirname",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "os.path",
"line_number": 16,
"usage_type": "attribute"
},
{
"api_name": "os.path.abspath",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "z3.Solver",
"line_nu... |
23565614159 | #!/usr/bin/python3
import sys
import pyvips
im = pyvips.Image.new_from_file(sys.argv[1], access="sequential")
text = pyvips.Image.text(f"<span color=\"red\">{sys.argv[3]}</span>",
width=500,
dpi=100,
align="centre",
rgba=True)
# scale the alpha down to make the text semi-transparent
text = (text * [1, 1, 1, 0.3]).cast("uchar")
text = text.rotate(45)
# tile to the size of the image page, then tile again to the full image size
text = text.embed(10, 10, text.width + 20, text.width + 20)
page_height = im.get_page_height()
text = text.replicate(1 + im.width / text.width, 1 + page_height / text.height)
text = text.crop(0, 0, im.width, page_height)
text = text.replicate(1, 1 + im.height / text.height)
text = text.crop(0, 0, im.width, im.height)
# composite the two layers
im = im.composite(text, "over")
im.write_to_file(sys.argv[2])
| libvips/pyvips | examples/watermark.py | watermark.py | py | 945 | python | en | code | 558 | github-code | 36 | [
{
"api_name": "pyvips.Image.new_from_file",
"line_number": 6,
"usage_type": "call"
},
{
"api_name": "pyvips.Image",
"line_number": 6,
"usage_type": "attribute"
},
{
"api_name": "sys.argv",
"line_number": 6,
"usage_type": "attribute"
},
{
"api_name": "pyvips.Image.... |
35701573370 | from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(899, 563)
MainWindow.setMinimumSize(QtCore.QSize(700, 480))
MainWindow.setStyleSheet("*{\n"
"background:#18162A;\n"
"border:none;\n"
"color:white;\n"
"}")
self.centralwidget = QtWidgets.QWidget(MainWindow)
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.centralwidget.sizePolicy().hasHeightForWidth())
self.centralwidget.setSizePolicy(sizePolicy)
self.centralwidget.setObjectName("centralwidget")
self.hboxlayout = QtWidgets.QHBoxLayout(self.centralwidget)
self.hboxlayout.setContentsMargins(0, 0, 0, 0)
self.hboxlayout.setSpacing(0)
self.hboxlayout.setObjectName("hboxlayout")
self.leftMenu = QtWidgets.QFrame(self.centralwidget)
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.leftMenu.sizePolicy().hasHeightForWidth())
self.leftMenu.setSizePolicy(sizePolicy)
self.leftMenu.setMinimumSize(QtCore.QSize(200, 0))
self.leftMenu.setMaximumSize(QtCore.QSize(0, 16777215))
self.leftMenu.setStyleSheet("background:#060117; border:none;")
self.leftMenu.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.leftMenu.setFrameShadow(QtWidgets.QFrame.Raised)
self.leftMenu.setLineWidth(0)
self.leftMenu.setObjectName("leftMenu")
self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.leftMenu)
self.verticalLayout_2.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_2.setSpacing(0)
self.verticalLayout_2.setObjectName("verticalLayout_2")
self.frame_4 = QtWidgets.QFrame(self.leftMenu)
self.frame_4.setMinimumSize(QtCore.QSize(0, 50))
self.frame_4.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frame_4.setFrameShadow(QtWidgets.QFrame.Raised)
self.frame_4.setObjectName("frame_4")
self.verticalLayout_3 = QtWidgets.QVBoxLayout(self.frame_4)
self.verticalLayout_3.setObjectName("verticalLayout_3")
self.dvsoft = QtWidgets.QPushButton(self.frame_4)
self.dvsoft.setText("DVsoft")
self.dvsoft.setObjectName("pushButton_9")
self.dvsoft.setStyleSheet("font-size:32px;")
self.verticalLayout_3.addWidget(self.dvsoft, 0, QtCore.Qt.AlignLeft)
self.verticalLayout_2.addWidget(self.frame_4, 0, QtCore.Qt.AlignTop)
self.frame_5 = QtWidgets.QFrame(self.leftMenu)
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.frame_5.sizePolicy().hasHeightForWidth())
self.frame_5.setSizePolicy(sizePolicy)
self.frame_5.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frame_5.setFrameShadow(QtWidgets.QFrame.Raised)
self.frame_5.setObjectName("frame_5")
self.verticalLayout_4 = QtWidgets.QVBoxLayout(self.frame_5)
self.verticalLayout_4.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_4.setSpacing(0)
self.verticalLayout_4.setObjectName("verticalLayout_4")
self.Menu2 = QtWidgets.QToolBox(self.frame_5)
self.Menu2.setStyleSheet("QToolBox{\n"
" background-color:rgb(24,24,36);\n"
" text-align:left;\n"
" font-size:20px;\n"
" color:white;\n"
"}\n"
"QToolBox::tab{\n"
" border-radius:5px;\n"
" background-color:rgb(17,16,26);\n"
" text-align:left;\n"
" font-size:20px;\n"
" color:white;\n"
"}")
self.Menu2.setObjectName("Menu2")
self.Menu1 = QtWidgets.QWidget()
self.Menu1.setGeometry(QtCore.QRect(0, 0, 200, 357))
self.Menu1.setStyleSheet("")
self.Menu1.setObjectName("Menu1")
self.verticalLayout_5 = QtWidgets.QVBoxLayout(self.Menu1)
self.verticalLayout_5.setObjectName("verticalLayout_5")
self.frame_7 = QtWidgets.QFrame(self.Menu1)
self.frame_7.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frame_7.setFrameShadow(QtWidgets.QFrame.Raised)
self.frame_7.setObjectName("frame_7")
self.verticalLayout_6 = QtWidgets.QVBoxLayout(self.frame_7)
self.verticalLayout_6.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_6.setSpacing(10)
self.verticalLayout_6.setObjectName("verticalLayout_6")
self.pushButton = QtWidgets.QPushButton(self.frame_7)
self.pushButton.setStyleSheet("font-size:20px")
self.pushButton.setObjectName("pushButton")
self.verticalLayout_6.addWidget(self.pushButton)
self.pushButton_2 = QtWidgets.QPushButton(self.frame_7)
self.pushButton_2.setStyleSheet("font-size:20px")
self.pushButton_2.setObjectName("pushButton_2")
self.verticalLayout_6.addWidget(self.pushButton_2)
self.pushButton_3 = QtWidgets.QPushButton(self.frame_7)
self.pushButton_3.setStyleSheet("font-size:20px")
self.pushButton_3.setObjectName("pushButton_3")
self.verticalLayout_6.addWidget(self.pushButton_3)
self.verticalLayout_5.addWidget(self.frame_7, 0, QtCore.Qt.AlignTop)
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap("icons/strelka3.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.Menu2.addItem(self.Menu1, icon, "")
self.menu2 = QtWidgets.QWidget()
self.menu2.setGeometry(QtCore.QRect(0, 0, 200, 357))
self.menu2.setObjectName("menu2")
self.verticalLayout_7 = QtWidgets.QVBoxLayout(self.menu2)
self.verticalLayout_7.setObjectName("verticalLayout_7")
self.frame_8 = QtWidgets.QFrame(self.menu2)
self.frame_8.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frame_8.setFrameShadow(QtWidgets.QFrame.Raised)
self.frame_8.setObjectName("frame_8")
self.verticalLayout_8 = QtWidgets.QVBoxLayout(self.frame_8)
self.verticalLayout_8.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_8.setSpacing(15)
self.verticalLayout_8.setObjectName("verticalLayout_8")
self.pushButton_4 = QtWidgets.QPushButton(self.frame_8)
self.pushButton_4.setStyleSheet("font-size:20px;")
self.pushButton_4.setObjectName("pushButton_4")
self.verticalLayout_8.addWidget(self.pushButton_4)
self.pushButton_5 = QtWidgets.QPushButton(self.frame_8)
self.pushButton_5.setStyleSheet("font-size:20px")
self.pushButton_5.setObjectName("pushButton_5")
self.verticalLayout_8.addWidget(self.pushButton_5)
self.label_2 = QtWidgets.QLabel(self.frame_8)
self.label_2.setStyleSheet("font-size:20px;")
self.label_2.setWordWrap(True)
self.label_2.setObjectName("label_2")
self.verticalLayout_8.addWidget(self.label_2)
self.verticalLayout_7.addWidget(self.frame_8)
self.Menu2.addItem(self.menu2, icon, "")
self.verticalLayout_4.addWidget(self.Menu2)
self.verticalLayout_2.addWidget(self.frame_5)
self.frame_6 = QtWidgets.QFrame(self.leftMenu)
self.frame_6.setMinimumSize(QtCore.QSize(0, 50))
self.frame_6.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frame_6.setFrameShadow(QtWidgets.QFrame.Raised)
self.frame_6.setObjectName("frame_6")
self.horizontalLayout_8 = QtWidgets.QHBoxLayout(self.frame_6)
self.horizontalLayout_8.setObjectName("horizontalLayout_8")
self.exit = QtWidgets.QPushButton(self.frame_6)
self.exit.setStyleSheet("font-size:20px;")
icon1 = QtGui.QIcon()
icon1.addPixmap(QtGui.QPixmap("icons/выход.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.exit.setIcon(icon1)
self.exit.setObjectName("pushButton_12")
self.horizontalLayout_8.addWidget(self.exit, 0, QtCore.Qt.AlignLeft)
self.verticalLayout_2.addWidget(self.frame_6)
self.hboxlayout.addWidget(self.leftMenu)
self.MainFrame = QtWidgets.QFrame(self.centralwidget)
self.MainFrame.setStyleSheet("border:none;")
self.MainFrame.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.MainFrame.setFrameShadow(QtWidgets.QFrame.Raised)
self.MainFrame.setObjectName("MainFrame")
self.verticalLayout = QtWidgets.QVBoxLayout(self.MainFrame)
self.verticalLayout.setContentsMargins(0, 0, 0, 0)
self.verticalLayout.setSpacing(0)
self.verticalLayout.setObjectName("verticalLayout")
self.header = QtWidgets.QFrame(self.MainFrame)
self.header.setMinimumSize(QtCore.QSize(0, 50))
self.header.setStyleSheet("background:#060117; border:none;")
self.header.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.header.setFrameShadow(QtWidgets.QFrame.Raised)
self.header.setLineWidth(0)
self.header.setObjectName("header")
self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.header)
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
self.frame = QtWidgets.QFrame(self.header)
self.frame.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frame.setFrameShadow(QtWidgets.QFrame.Raised)
self.frame.setObjectName("frame")
self.horizontalLayout = QtWidgets.QHBoxLayout(self.frame)
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
self.horizontalLayout.setSpacing(0)
self.horizontalLayout.setObjectName("horizontalLayout")
self.menuTurn = QtWidgets.QPushButton(self.frame)
self.menuTurn.setText("")
icon2 = QtGui.QIcon()
icon2.addPixmap(QtGui.QPixmap("icons/свернуть бар.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.menuTurn.setIcon(icon2)
self.menuTurn.setIconSize(QtCore.QSize(32, 32))
self.menuTurn.setObjectName("pushButton_11")
self.horizontalLayout.addWidget(self.menuTurn)
self.lineEdit = QtWidgets.QLineEdit(self.frame)
self.lineEdit.setStyleSheet("border-bottom:2px solid #19E67E;\n"
"font-size:24px;")
self.lineEdit.setObjectName("lineEdit")
self.horizontalLayout.addWidget(self.lineEdit)
self.pushButton_10 = QtWidgets.QPushButton(self.frame)
self.pushButton_10.setText("")
icon3 = QtGui.QIcon()
icon3.addPixmap(QtGui.QPixmap("icons/search.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.pushButton_10.setIcon(icon3)
self.pushButton_10.setIconSize(QtCore.QSize(32, 32))
self.pushButton_10.setObjectName("pushButton_10")
self.horizontalLayout.addWidget(self.pushButton_10)
self.horizontalLayout_2.addWidget(self.frame, 0, QtCore.Qt.AlignLeft)
self.frame_2 = QtWidgets.QFrame(self.header)
self.frame_2.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frame_2.setFrameShadow(QtWidgets.QFrame.Raised)
self.frame_2.setObjectName("frame_2")
self.horizontalLayout_4 = QtWidgets.QHBoxLayout(self.frame_2)
self.horizontalLayout_4.setContentsMargins(0, 0, 0, 0)
self.horizontalLayout_4.setSpacing(0)
self.horizontalLayout_4.setObjectName("horizontalLayout_4")
self.username = QtWidgets.QPushButton(self.frame_2)
self.username.setText("USERNAME")
icon4 = QtGui.QIcon()
icon4.addPixmap(QtGui.QPixmap("icons/пользователь.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.username.setIcon(icon4)
self.username.setIconSize(QtCore.QSize(32, 32))
self.username.setObjectName("pushButton_9")
self.username.setStyleSheet("font-size:24px;")
self.horizontalLayout_4.addWidget(self.username, 0, QtCore.Qt.AlignLeft)
self.horizontalLayout_2.addWidget(self.frame_2, 0, QtCore.Qt.AlignHCenter)
self.frame_3 = QtWidgets.QFrame(self.header)
self.frame_3.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frame_3.setFrameShadow(QtWidgets.QFrame.Raised)
self.frame_3.setObjectName("frame_3")
self.horizontalLayout_3 = QtWidgets.QHBoxLayout(self.frame_3)
self.horizontalLayout_3.setContentsMargins(0, 0, 0, 0)
self.horizontalLayout_3.setSpacing(0)
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
self.turn = QtWidgets.QPushButton(self.frame_3)
self.turn.setText("")
icon5 = QtGui.QIcon()
icon5.addPixmap(QtGui.QPixmap("icons/свернуть.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.turn.setIcon(icon5)
self.turn.setIconSize(QtCore.QSize(45, 45))
self.turn.setObjectName("pushButton_6")
self.horizontalLayout_3.addWidget(self.turn)
self.expand = QtWidgets.QPushButton(self.frame_3)
self.expand.setText("")
icon6 = QtGui.QIcon()
icon6.addPixmap(QtGui.QPixmap("icons/двойная диагональная стрелка.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.expand.setIcon(icon6)
self.expand.setIconSize(QtCore.QSize(30, 40))
self.expand.setObjectName("pushButton_7")
self.horizontalLayout_3.addWidget(self.expand)
self.close = QtWidgets.QPushButton(self.frame_3)
self.close.setText("")
icon7 = QtGui.QIcon()
icon7.addPixmap(QtGui.QPixmap("icons/x.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.close.setIcon(icon7)
self.close.setIconSize(QtCore.QSize(40, 40))
self.close.setObjectName("pushButton_8")
self.horizontalLayout_3.addWidget(self.close)
self.horizontalLayout_2.addWidget(self.frame_3, 0, QtCore.Qt.AlignRight)
self.verticalLayout.addWidget(self.header)
self.main = QtWidgets.QFrame(self.MainFrame)
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.main.sizePolicy().hasHeightForWidth())
self.main.setSizePolicy(sizePolicy)
font = QtGui.QFont()
font.setStyleStrategy(QtGui.QFont.PreferDefault)
self.main.setFont(font)
self.main.setAutoFillBackground(False)
self.main.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.main.setFrameShadow(QtWidgets.QFrame.Raised)
self.main.setObjectName("main")
self.verticalLayout_9 = QtWidgets.QVBoxLayout(self.main)
self.verticalLayout_9.setObjectName("verticalLayout_9")
self.label_5 = QtWidgets.QLabel(self.main)
self.label_5.setStyleSheet("border:10px solid #19E67E;\n"
"border-radius:90px;\n"
"padding: 15px")
self.label_5.setText("")
self.label_5.setPixmap(QtGui.QPixmap("icons/логотип.svg"))
self.label_5.setObjectName("label_5")
self.verticalLayout_9.addWidget(self.label_5, 0, QtCore.Qt.AlignHCenter|QtCore.Qt.AlignBottom)
self.label_6 = QtWidgets.QLabel(self.main)
self.label_6.setStyleSheet("font-size:50px;")
self.label_6.setObjectName("label_6")
self.verticalLayout_9.addWidget(self.label_6, 0, QtCore.Qt.AlignHCenter|QtCore.Qt.AlignTop)
self.verticalLayout.addWidget(self.main)
self.footer = QtWidgets.QFrame(self.MainFrame)
self.footer.setMinimumSize(QtCore.QSize(50, 50))
self.footer.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.footer.setFrameShadow(QtWidgets.QFrame.Raised)
self.footer.setObjectName("footer")
self.horizontalLayout_5 = QtWidgets.QHBoxLayout(self.footer)
self.horizontalLayout_5.setContentsMargins(0, 0, 0, 0)
self.horizontalLayout_5.setSpacing(0)
self.horizontalLayout_5.setObjectName("horizontalLayout_5")
self.frame_10 = QtWidgets.QFrame(self.footer)
self.frame_10.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frame_10.setFrameShadow(QtWidgets.QFrame.Raised)
self.frame_10.setObjectName("frame_10")
self.horizontalLayout_6 = QtWidgets.QHBoxLayout(self.frame_10)
self.horizontalLayout_6.setObjectName("horizontalLayout_6")
self.label_4 = QtWidgets.QLabel(self.frame_10)
self.label_4.setStyleSheet("font-size:14px;\n"
"")
self.label_4.setObjectName("label_4")
self.horizontalLayout_6.addWidget(self.label_4, 0, QtCore.Qt.AlignLeft|QtCore.Qt.AlignBottom)
self.horizontalLayout_5.addWidget(self.frame_10, 0, QtCore.Qt.AlignLeft)
self.frame_9 = QtWidgets.QFrame(self.footer)
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.frame_9.sizePolicy().hasHeightForWidth())
self.frame_9.setSizePolicy(sizePolicy)
self.frame_9.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frame_9.setFrameShadow(QtWidgets.QFrame.Raised)
self.frame_9.setObjectName("frame_9")
self.horizontalLayout_7 = QtWidgets.QHBoxLayout(self.frame_9)
self.horizontalLayout_7.setObjectName("horizontalLayout_7")
self.horizontalLayout_5.addWidget(self.frame_9)
self.verticalLayout.addWidget(self.footer)
self.hboxlayout.addWidget(self.MainFrame)
MainWindow.setCentralWidget(self.centralwidget)
self.retranslateUi(MainWindow)
self.Menu2.setCurrentIndex(1)
QtCore.QMetaObject.connectSlotsByName(MainWindow)
def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
self.dvsoft.setText(_translate("MainWindow", "DVsoft"))
self.pushButton.setText(_translate("MainWindow", "Item1"))
self.pushButton_2.setText(_translate("MainWindow", "Item2"))
self.pushButton_3.setText(_translate("MainWindow", "Item3"))
self.Menu2.setItemText(self.Menu2.indexOf(self.Menu1), _translate("MainWindow", "Menu1"))
self.pushButton_4.setText(_translate("MainWindow", "Weather"))
self.pushButton_5.setText(_translate("MainWindow", "Course Dollar/Euro"))
self.label_2.setText(_translate("MainWindow", "Больше информации вы можете прочеcть на нашем сайте, который ещё не готов :)"))
self.Menu2.setItemText(self.Menu2.indexOf(self.menu2), _translate("MainWindow", "Menu2"))
self.exit.setText(_translate("MainWindow", "Exit"))
self.lineEdit.setText(_translate("MainWindow", "Search"))
self.label_6.setText(_translate("MainWindow", "DVsoft"))
self.label_4.setText(_translate("MainWindow", "DVsoft.project.1"))
import icons_rc
| MyLongCode/project1 | ui_interface.py | ui_interface.py | py | 19,084 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "PyQt5.QtCore.QSize",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "PyQt5.QtCore",
"line_number": 8,
"usage_type": "name"
},
{
"api_name": "PyQt5.QtWidgets.QWidget",
"line_number": 14,
"usage_type": "call"
},
{
"api_name": "PyQt5.QtWidgets... |
8346930934 | import os
import random
import tempfile
from copy import copy
from functools import partial
from multiprocessing import cpu_count
import pickle
import numpy as np
import tensorflow as tf
from joblib import Parallel, delayed
from .tokenization import printable_text
from .utils import (BOS_TOKEN, EOS_TOKEN, add_special_tokens_with_seqs,
create_instances_from_document, create_mask_and_padding,
create_masked_lm_predictions, punc_augument,
tokenize_text_with_seqs, truncate_seq_pair)
def create_single_problem_single_instance(problem,
ex_index,
example,
label_encoder,
params,
tokenizer,
mode,
problem_type,
is_seq):
raw_inputs, raw_target = example
# punctuation augumentation
if params.punc_replace_prob > 0 and mode == 'train':
raw_inputs = punc_augument(raw_inputs, params)
# tokenize inputs, now the length is fixed, target == raw_target
if isinstance(raw_inputs, dict):
tokens_a, target = tokenize_text_with_seqs(
tokenizer, raw_inputs['a'], raw_target, is_seq)
tokens_b, _ = tokenize_text_with_seqs(
tokenizer, raw_inputs['b'], raw_target)
else:
tokens_a, target = tokenize_text_with_seqs(
tokenizer, raw_inputs, raw_target, is_seq)
tokens_b = None
if tokens_b is not None and is_seq:
raise NotImplementedError(
'Sequence Labeling with tokens b is not implemented')
if not tokens_a:
return
# check whether tokenization changed the length
if is_seq:
if len(target) != len(tokens_a):
tf.logging.warning('Data %d broken' % ex_index)
return
# truncate tokens and target to max_seq_len
tokens_a, tokens_b, target = truncate_seq_pair(
tokens_a, tokens_b, target, params.max_seq_len, is_seq=is_seq)
# add [SEP], [CLS] tokens
tokens, segment_ids, target = add_special_tokens_with_seqs(
tokens_a, tokens_b, target, is_seq)
# train mask lm as augument task while training
if params.augument_mask_lm and mode == 'train':
rng = random.Random()
(mask_lm_tokens, masked_lm_positions,
masked_lm_labels) = create_masked_lm_predictions(
tokens,
params.masked_lm_prob,
params.max_predictions_per_seq,
list(tokenizer.vocab.keys()), rng)
_, mask_lm_tokens, _, _ = create_mask_and_padding(
mask_lm_tokens,
copy(segment_ids),
copy(target),
params.max_seq_len,
is_seq,
dynamic_padding=params.dynamic_padding)
masked_lm_weights, masked_lm_labels, masked_lm_positions, _ = create_mask_and_padding(
masked_lm_labels, masked_lm_positions, None, params.max_predictions_per_seq)
mask_lm_input_ids = tokenizer.convert_tokens_to_ids(
mask_lm_tokens)
masked_lm_ids = tokenizer.convert_tokens_to_ids(masked_lm_labels)
input_mask, tokens, segment_ids, target = create_mask_and_padding(
tokens, segment_ids, target, params.max_seq_len, is_seq, dynamic_padding=params.dynamic_padding)
# create mask and padding for labels of seq2seq problem
if problem_type in ['seq2seq_tag', 'seq2seq_text']:
# tokenize text if target is text
if problem_type == 'seq2seq_text':
# assign num_classes for text generation problem
params.num_classes[problem] = len(label_encoder.vocab)
target, _ = tokenize_text_with_seqs(
label_encoder, target, None, False)
target, _, _ = truncate_seq_pair(
target, None, None, params.decode_max_seq_len, is_seq=is_seq)
# since we initialize the id to 0 in prediction, we need
# to make sure that BOS_TOKEN is [PAD]
target = [BOS_TOKEN] + target + [EOS_TOKEN]
label_mask, target, _, _ = create_mask_and_padding(
target, [0] * len(target), None, params.decode_max_seq_len)
input_ids = tokenizer.convert_tokens_to_ids(tokens)
if isinstance(target, list):
if problem_type == 'seq2seq_text':
label_id = label_encoder.convert_tokens_to_ids(target)
else:
label_id = label_encoder.transform(target).tolist()
label_id = [np.int32(i) for i in label_id]
else:
label_id = label_encoder.transform([target]).tolist()[0]
label_id = np.int32(label_id)
if not params.dynamic_padding:
assert len(input_ids) == params.max_seq_len
assert len(input_mask) == params.max_seq_len
assert len(segment_ids) == params.max_seq_len, segment_ids
if is_seq:
assert len(label_id) == params.max_seq_len
# logging in debug mode
if ex_index < 5:
tf.logging.debug("*** Example ***")
tf.logging.debug("tokens: %s" % " ".join(
[printable_text(x) for x in tokens]))
tf.logging.debug("input_ids: %s" %
" ".join([str(x) for x in input_ids]))
tf.logging.debug("input_mask: %s" %
" ".join([str(x) for x in input_mask]))
tf.logging.debug("segment_ids: %s" %
" ".join([str(x) for x in segment_ids]))
if is_seq or problem_type in ['seq2seq_tag', 'seq2seq_text']:
tf.logging.debug("%s_label_ids: %s" %
(problem, " ".join([str(x) for x in label_id])))
tf.logging.debug("%s_label: %s" %
(problem, " ".join([str(x) for x in target])))
else:
tf.logging.debug("%s_label_ids: %s" %
(problem, str(label_id)))
tf.logging.debug("%s_label: %s" %
(problem, str(target)))
if params.augument_mask_lm and mode == 'train':
tf.logging.debug("mask lm tokens: %s" % " ".join(
[printable_text(x) for x in mask_lm_tokens]))
tf.logging.debug("mask lm input_ids: %s" %
" ".join([str(x) for x in mask_lm_input_ids]))
tf.logging.debug("mask lm label ids: %s" %
" ".join([str(x) for x in masked_lm_ids]))
tf.logging.debug("mask lm position: %s" %
" ".join([str(x) for x in masked_lm_positions]))
# create return dict
if not params.augument_mask_lm:
return_dict = {
'input_ids': input_ids,
'input_mask': input_mask,
'segment_ids': segment_ids,
'%s_label_ids' % problem: label_id
}
else:
if mode == 'train' and random.uniform(0, 1) <= params.augument_rate:
return_dict = {
'input_ids': mask_lm_input_ids,
'input_mask': input_mask,
'segment_ids': segment_ids,
'%s_label_ids' % problem: label_id,
"masked_lm_positions": masked_lm_positions,
"masked_lm_ids": masked_lm_ids,
"masked_lm_weights": masked_lm_weights,
}
else:
return_dict = {
'input_ids': input_ids,
'input_mask': input_mask,
'segment_ids': segment_ids,
'%s_label_ids' % problem: label_id,
"masked_lm_positions": np.zeros([params.max_predictions_per_seq]),
"masked_lm_ids": np.zeros([params.max_predictions_per_seq]),
"masked_lm_weights": np.zeros([params.max_predictions_per_seq]),
}
if problem_type in ['seq2seq_tag', 'seq2seq_text']:
return_dict['%s_mask' % problem] = label_mask
return return_dict
def _multiprocessing_wrapper(
problem,
example_list,
label_encoder,
params,
tokenizer,
mode,
problem_type,
is_seq):
return_list = []
for ex_index, example in enumerate(example_list):
return_list.append(create_single_problem_single_instance(
problem,
999,
example,
label_encoder,
params,
tokenizer,
mode,
problem_type,
is_seq))
return return_list
def create_single_problem_generator(problem,
inputs_list,
target_list,
label_encoder,
params,
tokenizer,
mode):
"""Function to create iterator for single problem
This function will:
1. Do some text cleaning using original bert tokenizer, if
problem type is sequential tagging, corresponding labels
will be removed.
Example:
Before: inputs: ['a', '&', 'c'] target: [0, 0, 1]
After: inputs: ['a', 'c'] target: [0, 1]
2. Add [CLS], [SEP] tokens
3. Padding
4. yield result dict
Arguments:
problem {str} -- problem name
inputs_list {list } -- inputs list
target_list {list} -- target list, should have the same length as inputs list
label_encoder {LabelEncoder} -- label encoder
params {Params} -- params
tokenizer {tokenizer} -- Bert Tokenizer
epoch {int} -- Deprecate
"""
problem_type = params.problem_type[problem]
# whether this problem is sequential labeling
# for sequential labeling, targets needs to align with any
# change of inputs
is_seq = problem_type in ['seq_tag']
if not params.multiprocess:
for ex_index, example in enumerate(zip(inputs_list, target_list)):
return_dict = create_single_problem_single_instance(problem,
ex_index,
example,
label_encoder,
params,
tokenizer,
mode,
problem_type,
is_seq)
yield return_dict
else:
return_dict_list = []
pickle_file = os.path.join(
params.tmp_file_dir, '{0}_{1}_data.pkl'.format(problem, mode))
if not os.path.exists(pickle_file):
# params.tmp_file_dir = tempfile.mkdtemp(dir='.')
os.makedirs('tmp', exist_ok=True)
params.tmp_file_dir = 'tmp'
pickle_file = os.path.join(
params.tmp_file_dir, '{0}_{1}_data.pkl'.format(problem, mode))
tf.logging.info(
'Saving preprocessing files to {0}'.format(pickle_file))
partial_fn = partial(_multiprocessing_wrapper, problem=problem, label_encoder=label_encoder,
params=params, tokenizer=tokenizer,
mode=mode, problem_type=problem_type, is_seq=is_seq)
example_list = list(zip(inputs_list, target_list))
num_process = cpu_count()
def split(a, n):
k, m = divmod(len(a), n)
return (a[i * k + min(i, m):(i + 1) * k + min(i + 1, m)] for i in range(n))
example_list = list(split(example_list, num_process))
return_dict_list_list = Parallel(num_process)(delayed(partial_fn)(
example_list=example) for example in example_list
)
pickle.dump(return_dict_list_list, open(pickle_file, 'wb'))
else:
return_dict_list_list = pickle.load(open(pickle_file, 'rb'))
for return_dict_list in return_dict_list_list:
for return_dict in return_dict_list:
yield return_dict
def create_pretraining_generator(problem,
inputs_list,
target_list,
label_encoder,
params,
tokenizer
):
"""Slight modification of original code
Raises:
ValueError -- Input format not right
"""
if not isinstance(inputs_list[0][0], list):
raise ValueError('inputs is expected to be list of list of list.')
all_documents = []
for document in inputs_list:
all_documents.append([])
for sentence in document:
all_documents[-1].append(tokenizer.tokenize('\t'.join(sentence)))
all_documents = [d for d in all_documents if d]
rng = random.Random()
rng.shuffle(all_documents)
vocab_words = list(tokenizer.vocab.keys())
instances = []
print_count = 0
for _ in range(params.dupe_factor):
for document_index in range(len(all_documents)):
instances = create_instances_from_document(
all_documents,
document_index,
params.max_seq_len,
params.short_seq_prob,
params.masked_lm_prob,
params.max_predictions_per_seq,
vocab_words, rng)
for instance in instances:
tokens = instance.tokens
segment_ids = list(instance.segment_ids)
input_mask, tokens, segment_ids, _ = create_mask_and_padding(
tokens, segment_ids, None, params.max_seq_len)
masked_lm_positions = list(instance.masked_lm_positions)
masked_lm_weights, masked_lm_labels, masked_lm_positions, _ = create_mask_and_padding(
instance.masked_lm_labels, masked_lm_positions, None, params.max_predictions_per_seq)
input_ids = tokenizer.convert_tokens_to_ids(tokens)
masked_lm_ids = tokenizer.convert_tokens_to_ids(
masked_lm_labels)
next_sentence_label = 1 if instance.is_random_next else 0
yield_dict = {
"input_ids": input_ids,
"input_mask": input_mask,
"segment_ids": segment_ids,
"masked_lm_positions": masked_lm_positions,
"masked_lm_ids": masked_lm_ids,
"masked_lm_weights": masked_lm_weights,
"next_sentence_label_ids": next_sentence_label
}
if print_count < 3:
tf.logging.debug('%s : %s' %
('tokens', ' '.join([str(x) for x in tokens])))
for k, v in yield_dict.items():
if not isinstance(v, int):
tf.logging.debug('%s : %s' %
(k, ' '.join([str(x) for x in v])))
print_count += 1
yield yield_dict
def create_generator(params, mode):
"""Function to create iterator for multiple problem
This function dose the following things:
1. Create dummy labels for each problems.
2. Initialize all generators
3. Sample a problem to train at this batch. If eval, take turns
4. Create a loss multiplier
5. Tried to generate samples for target problem, if failed, init gen
6. Add dummy label to other problems
Example:
Problem: cws|NER|weibo_ner&weibo_cws
1. Dummy labels: cws_label_ids: [0,0,0] ...
2. Blablabla
3. Sample, say (weibo_ner&weibo_cws)
4. loss multipliers: {'cws_loss_multiplier': 0, ..., 'weibo_ner_loss_multiplier': 1, ...}
...
Arguments:
params {Params} -- params
mode {mode} -- mode
"""
# example
# problem_list: ['NER', 'cws', 'weibo_ner', 'weibo_cws']
# problem_chunk: [['NER'], ['cws'], ['weibo_ner', 'weibo_cws']]
problem_list = []
problem_chunk = []
for problem_dict in params.run_problem_list:
problem_list += list(problem_dict.keys())
problem_chunk.append(list(problem_dict.keys()))
# get dummy labels
def _create_dummpy_label(problem_type):
if problem_type == 'cls':
return 0
elif problem_type == 'seq_tag':
return [0]*params.max_seq_len
else:
return [0]*params.decode_max_seq_len
dummy_label_dict = {problem+'_label_ids': _create_dummpy_label(
params.problem_type[problem]) for problem in problem_list if params.problem_type[problem] != 'pretrain'}
dummy_label_dict.update({problem+'_mask': _create_dummpy_label(
params.problem_type[problem]) for problem in problem_list if params.problem_type[problem] in ['seq2seq_tag', 'seq2seq_text']})
# init gen
try:
gen_dict = {problem: params.read_data_fn[problem](params, mode)
for problem in problem_list}
except KeyError:
not_exist_problem = [
p for p in problem_list if p not in params.read_data_fn]
raise KeyError(
'The preprocessing function of {0} not found, make sure you called params.add_problem. If you\'re using train_bert_multitask, please make sure you provided problem_type_dict and processing_fn_dict.'.format(not_exist_problem))
while gen_dict:
# sample problem to train
if len(problem_chunk) > 1:
data_num_list = [params.data_num_dict[chunk[0]]
for chunk in problem_chunk]
if params.multitask_balance_type == 'data_balanced':
sample_prob = np.array(data_num_list) / np.sum(data_num_list)
current_problem_chunk_ind = np.random.choice(
list(range(len(problem_chunk))), p=sample_prob)
current_problem_chunk = problem_chunk[current_problem_chunk_ind]
elif params.multitask_balance_type == 'problem_balanced':
sample_prob = np.array(
[1]*len(data_num_list)) / np.sum([1]*len(data_num_list))
current_problem_chunk_ind = np.random.choice(
list(range(len(problem_chunk))), p=sample_prob)
current_problem_chunk = problem_chunk[current_problem_chunk_ind]
else:
current_problem_chunk = problem_chunk[0]
# create loss multiplier
loss_multiplier = {
problem+'_loss_multiplier': 0 for problem in problem_list}
for problem in current_problem_chunk:
loss_multiplier[problem+'_loss_multiplier'] = 1
base_dict = {}
base_input = None
for problem in current_problem_chunk:
try:
instance = next(gen_dict[problem])
except StopIteration:
if mode == 'train':
gen_dict[problem] = params.read_data_fn[problem](
params, mode)
instance = next(gen_dict[problem])
else:
del gen_dict[problem]
continue
except KeyError:
continue
if not instance:
continue
base_dict.update(instance)
if base_input is None:
base_input = instance['input_ids']
elif not params.augument_mask_lm:
assert base_input == instance[
'input_ids'], 'Inputs id of two chained problem not aligned. Please double check!'
if not base_dict:
continue
for problem in problem_list:
problem_type = params.problem_type[problem]
problem_label_name = '{0}_label_ids'.format(problem)
if problem_label_name not in base_dict:
if problem_type == 'seq_tag':
base_dict[problem_label_name] = dummy_label_dict[problem_label_name][:len(
base_dict['input_ids'])]
else:
base_dict[problem_label_name] = dummy_label_dict[problem_label_name]
if problem_type in ['seq2seq_tag', 'seq2seq_text']:
base_dict['{0}_mask'.format(
problem)] = dummy_label_dict['{0}_mask'.format(problem)]
# add loss multipliers
base_dict.update(loss_multiplier)
yield base_dict
| hauwenc/bert-multitask-learning | bert_multitask_learning/create_generators.py | create_generators.py | py | 20,858 | python | en | code | null | github-code | 36 | [
{
"api_name": "utils.punc_augument",
"line_number": 34,
"usage_type": "call"
},
{
"api_name": "utils.tokenize_text_with_seqs",
"line_number": 38,
"usage_type": "call"
},
{
"api_name": "utils.tokenize_text_with_seqs",
"line_number": 40,
"usage_type": "call"
},
{
"a... |
35614129449 | import msgpack
import redis
import click
import socket
import pandas as pd
import numpy as np
import ujson as json
#Extra Functions (for enrichment purpose)
df_port_name = pd.read_csv('enrichments/port_name.txt',delimiter=",", names=['port_num','port_name'])
df_ip_proto_name = pd.read_csv('enrichments/ip_proto_name.txt',delimiter=",", names=['proto_num','proto_name'])
@click.group()
def cli():
pass
@click.command()
def receive():
r = redis.StrictRedis(host='localhost', port=6379, db=0)
p = r.pubsub()
p.subscribe('patterns')
try:
# non-blocking
# while True:
# print(p.get_message())
# blocking
for message in p.listen():
if isinstance(message['data'], bytes):
payload = msgpack.unpackb(message['data'], encoding='utf-8')
print(payload)
except KeyboardInterrupt as e:
print('Keyboard interrupt')
def get_ip_proto_name(ip_proto_number):
try:
return df_ip_proto_name[df_ip_proto_name['proto_num']==ip_proto_number]['proto_name'].values[0]
except:
return str(ip_proto_number)
def get_port_name(port_number):
try:
return df_port_name[df_port_name['port_num']==port_number]['port_name'].values[0]+" service port"
except:
return "port "+str(int(port_number))
def get_tcp_flag_name(tcp_flags_str):
tcp_flags=""
try:
tcp_flags += ("FIN" if (tcp_flags_str.find('F') != -1) else next)
except:
next
try:
tcp_flags += ("SYN" if (tcp_flags_str.find('S')!= -1) else next)
except:
next
try:
tcp_flags += ("RST" if tcp_flags_str.find('R') != -1 else next)
except:
next
try:
tcp_flags += ("PUSH" if tcp_flags_str.find('P') != -1 else next)
except:
next
try:
tcp_flags += ("ACK" if tcp_flags_str.find('A') != -1 else next)
except:
next
try:
tcp_flags += ("URG" if tcp_flags_str.find('U') != -1 else next)
except:
next
try:
tcp_flags += ("ECE" if tcp_flags_str.find('E') != -1 else next)
except:
next
try:
tcp_flags += ("CWR" if tcp_flags_str.find('C') != -1 else next)
except:
next
return tcp_flags
def analyse(df):
"""
Analysis only top traffic stream
:param df:
:return:
"""
debug = True
attack_case = "-1"
ttl_variation_threshold = 4
result = {
"reflected":False,
"spoofed":False,
"fragmented":False,
"pattern_traffic_share":0.0,
"pattern_packet_count":0,
"pattern_total_megabytes":0,
"start_timestamp":0,
"end_timestamp":0,
"dst_ports":[], #(port,share)
"src_ports":[], #(port,share)
"ttl_variation":[],
"src_ips":[],
"dst_ips":[],
"packets":[]
}
if debug: print("\n\n\n")
top_ip_dst = df['ip_dst'].value_counts().index[0]
if debug: print("Top dst IP: "+ top_ip_dst)
result["dst_ips"] = top_ip_dst
top_ip_proto = df[df['ip_dst'] == top_ip_dst]['ip_proto'].value_counts().index[0]
if debug: print("Top IP protocol: "+str(top_ip_proto))
####
# Performing a first filter based on the top_ip_dst (target IP), the source IPs canNOT be from the \16 of the
# target IP, and the top IP protocol that targeted the top_ip_dst
df_filtered = df[
(df['ip_dst'] == top_ip_dst) & ~df['ip_src'].str.contains(".".join(top_ip_dst.split('.')[0:2]), na=False) & (
df['ip_proto'] == top_ip_proto)]
####
# Calculating the number of packets after the first filter
total_packets_filtered = len(df_filtered)
if debug: print("Number of packets: "+str(total_packets_filtered))
result["total_nr_packets"] = total_packets_filtered
####
# For attacks in the IP protocol level
attack_label = get_ip_proto_name(top_ip_proto) + "-based attack"
result["transport_protocol"] = get_ip_proto_name(top_ip_proto)
####
# For attacks based on TCP or UDP, which have source and destination ports
if ((top_ip_proto == 6) or (top_ip_proto == 17)):
if debug: print("\n####################\nREMAINING :\n####################")
####
# Calculating the distribution of source ports based on the first filter
percent_src_ports = df_filtered['sport'].value_counts().divide(float(total_packets_filtered) / 100)
if debug: print("\nSource ports frequency")
if debug: print(percent_src_ports.head())
####
# Calculating the distribution of destination ports after the first filter
percent_dst_ports = df_filtered['dport'].value_counts().divide(float(total_packets_filtered) / 100)
if debug: print("\nDestination ports frequency")
if debug: print(percent_dst_ports.head())
#####
## WARNING packets are filtered here again#####
# Using the top 1 (source or destination) port to analyse a pattern of packets
if (len(percent_src_ports) > 0) and (len(percent_dst_ports) > 0):
if percent_src_ports.values[0] > percent_dst_ports.values[0]:
if debug: print('Using top source port: ', percent_src_ports.keys()[0])
df_pattern = df_filtered[df_filtered['sport'] == percent_src_ports.keys()[0]]
result["selected_port"] = "src_" + str(percent_src_ports.keys()[0])
else:
if debug: print('Using top dest port: ', percent_dst_ports.keys()[0])
df_pattern = df_filtered[df_filtered['dport'] == percent_dst_ports.keys()[0]]
result["selected_port"] = "dst_" + str(percent_dst_ports.keys()[0])
else:
if debug: print('no top source/dest port')
return None
if debug: print("\n####################\nPATTERN "+ "\n####################")
#####
# Calculating the total number of packets involved in the attack
pattern_packets = len(df_pattern)
result["pattern_packet_count"] = pattern_packets
#WARNING Can be wrong
result['raw_attack_size_megabytes'] = (df_pattern['raw_size'].sum() /1000000).item()
result["pattern_total_megabytes"] = (df_pattern[df_pattern['fragments'] == 0]['ip_length'].sum() / 1000000).item()
#####
# Calculating the percentage of the current pattern compared to the raw input file
representativeness = float(pattern_packets) * 100 / float(total_packets_filtered)
result["pattern_traffic_share"] = representativeness
attack_label = 'In %.2f' % representativeness + "\n " + attack_label
#####
# Checking the existence of HTTP data
http_data = df_pattern['http_data'].value_counts().divide(float(pattern_packets) / 100)
#####
# Checking the existence of TCP flags
percent_tcp_flags = df_pattern['tcp_flag'].value_counts().divide(float(pattern_packets) / 100)
#####
# Calculating the number of source IPs involved in the attack
ips_involved = df_pattern['ip_src'].unique()
attack_label = attack_label + "\n"+ str(len(ips_involved)) + " source IPs"
result["src_ips"] = ips_involved.tolist()
#####
# Calculating the number of source IPs involved in the attack
result["start_timestamp"] = df_pattern['timestamp'].min().item()
result["end_timestamp"] = df_pattern['timestamp'].max().item()
####
# Calculating the distribution of TTL variation (variation -> number of IPs)
ttl_variations = df_pattern.groupby(['ip_src'])['ip_ttl'].agg(np.ptp).value_counts().sort_index()
if debug: print('TTL variation : NR of source IPs')
if debug: print(ttl_variations)
#use to_json
result["ttl_variation"] = json.loads(ttl_variations.to_json())
####
# Calculating the distribution of IP fragments (fragmented -> percentage of packets)
percent_fragments = df_pattern['fragments'].value_counts().divide(float(pattern_packets) / 100)
####
# Calculating the distribution of source ports that remains
percent_src_ports = df_pattern['sport'].value_counts().divide(float(pattern_packets) / 100)
if debug: print("\nSource ports frequency")
if debug: print(percent_src_ports.head())
#use to_json()
result["src_ports"] = json.loads(percent_src_ports.to_json())
####
# Calculating the distribution of destination ports after the first filter
percent_dst_ports = df_pattern['dport'].value_counts().divide(float(pattern_packets) / 100)
if debug: print("\nDestination ports frequency")
if debug: print(percent_dst_ports.head())
#use to_json
result["dst_ports"] = json.loads(percent_dst_ports.to_json())
####
# There are 3 possibilities of attacks cases!
if (percent_src_ports.values[0] == 100):
if (len(percent_dst_ports) == 1):
# if debug: print("\nCASE 1: 1 source port to 1 destination port") if debug else next
attack_label = attack_label + "; using " + get_port_name(
percent_src_ports.keys()[0]) + "; to target " + get_port_name(
percent_dst_ports.keys()[0]) + "[" + '%.1f' % percent_dst_ports.values[0] + "%]"
else:
# if debug: print("\nCASE 2: 1 source port to a set of destination ports") if debug else next
if (percent_dst_ports.values[0] >= 50):
attack_label = attack_label + "; using " + get_port_name(
percent_src_ports.keys()[0]) + "; to target a set of (" + str(
len(percent_dst_ports)) + ") ports, such as " + get_port_name(
percent_dst_ports.keys()[0]) + "[" + '%.2f' % percent_dst_ports.values[
0] + "%]" + " and " + get_port_name(percent_dst_ports.keys()[1]) + "[" + '%.2f' % \
percent_dst_ports.values[
1] + "%]"
elif (percent_dst_ports.values[0] >= 33):
attack_label = attack_label + "; using " + get_port_name(
percent_src_ports.keys()[0]) + "; to target a set of (" + str(
len(percent_dst_ports)) + ") ports, such as " + get_port_name(
percent_dst_ports.keys()[0]) + "[" + '%.2f' % percent_dst_ports.values[
0] + "%]" + "; " + get_port_name(percent_dst_ports.keys()[1]) + "[" + '%.2f' % \
percent_dst_ports.values[
1] + "%], and " + get_port_name(
percent_dst_ports.keys()[2]) + "[" + '%.2f' % percent_dst_ports.values[2] + "%]"
else:
attack_label = attack_label + "; using " + get_port_name(
percent_src_ports.keys()[0]) + "; to target a set of (" + str(
len(percent_dst_ports)) + ") ports, such as " + get_port_name(
percent_dst_ports.keys()[0]) + "[" + '%.2f' % percent_dst_ports.values[
0] + "%]" + "; " + get_port_name(percent_dst_ports.keys()[1]) + "[" + '%.2f' % \
percent_dst_ports.values[
1] + "%], and " + get_port_name(
percent_dst_ports.keys()[2]) + "[" + '%.2f' % percent_dst_ports.values[2] + "%]"
else:
if (len(percent_src_ports) == 1):
# if debug: print("\nCASE 1: 1 source port to 1 destination port") if debug else next
attack_label = attack_label + "; using " + get_port_name(percent_src_ports.keys()[0]) + "[" + '%.1f' % \
percent_src_ports.values[
0] + "%]" + "; to target " + get_port_name(
percent_dst_ports.keys()[0]) + "[" + '%.1f' % percent_dst_ports.values[0] + "%]"
else:
# if debug: print("\nCASE 3: 1 source port to a set of destination ports") if debug else next
if (percent_src_ports.values[0] >= 50):
attack_label = attack_label + "; using a set of (" + str(
len(percent_src_ports)) + ") ports, such as " + get_port_name(
percent_src_ports.keys()[0]) + "[" + '%.2f' % percent_src_ports.values[
0] + "%] and " + get_port_name(percent_src_ports.keys()[1]) + "[" + '%.2f' % \
percent_src_ports.values[
1] + "%]" + "; to target " + get_port_name(
percent_dst_ports.keys()[0]) + "[" + '%.1f' % percent_dst_ports.values[0] + "%]"
elif (percent_src_ports.values[0] >= 33):
attack_label = attack_label + "; using a set of (" + str(
len(percent_src_ports)) + ") ports, such as " + get_port_name(
percent_src_ports.keys()[0]) + "[" + '%.2f' % percent_src_ports.values[
0] + "%], " + get_port_name(percent_src_ports.keys()[1]) + "[" + '%.2f' % \
percent_src_ports.values[
1] + "%], and " + get_port_name(
percent_src_ports.keys()[2]) + "[" + '%.2f' % percent_src_ports.values[
2] + "%]" + "; to target " + get_port_name(percent_dst_ports.keys()[0]) + "[" + '%.1f' % \
percent_dst_ports.values[
0] + "%]"
else:
attack_label = attack_label + "; using a set of (" + str(
len(percent_src_ports)) + ") ports, such as " + get_port_name(
percent_src_ports.keys()[0]) + "[" + '%.2f' % percent_src_ports.values[
0] + "%], " + get_port_name(percent_src_ports.keys()[1]) + "[" + '%.2f' % \
percent_src_ports.values[
1] + "%], " + get_port_name(
percent_src_ports.keys()[2]) + "[" + '%.2f' % percent_src_ports.values[
2] + "%]" + "; and " + get_port_name(percent_src_ports.keys()[3]) + "[" + '%.2f' % \
percent_src_ports.values[
3] + "%]" + "; to target " + get_port_name(
percent_dst_ports.keys()[0]) + "[" + '%.1f' % percent_dst_ports.values[0] + "%]"
####
# Testing HTTP request
if len(http_data) > 0 and ((percent_dst_ports.index[0] == 80) or (percent_dst_ports.index[0] == 443)):
attack_label = attack_label + "; " + http_data.index[0]
####
# Testing TCP flags
if (len(percent_tcp_flags) > 0) and (percent_tcp_flags.values[0] > 50):
attack_label = attack_label + "; TCP flags: " + get_tcp_flag_name(
percent_tcp_flags.index[0]) + "[" + '%.1f' % percent_tcp_flags.values[0] + "%]"
####
# IP fragmentation
if (percent_fragments.values[0] > 0) and (percent_fragments.index[0] == 1):
attack_label = attack_label + "; involving IP fragmentation"
result["fragmented"] = True
####
# IP spoofing (if (more than 0) src IPs had the variation of the ttl higher than a treshold)
if (ttl_variations[::-1].values[0] > 0) and (ttl_variations[::-1].index[0] >= ttl_variation_threshold):
result["spoofed"]=True
attack_label = attack_label + "; (likely involving) spoofed IPs"
else:
####
# Reflection and Amplification
if percent_src_ports.values[0] >= 1:
result["reflected"]=True
attack_label = attack_label + "; Reflection & Amplification"
if debug: print("\n####################\nATTACK VECTOR LABEL:"+ "\n####################")
if debug: print(attack_label)
result["label"] = attack_label
print(result)
return result
if __name__ == "__main__":
cli.add_command(receive)
cli()
| jdcc2/ddoshackathon | packet_patterns.py | packet_patterns.py | py | 17,497 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "pandas.read_csv",
"line_number": 10,
"usage_type": "call"
},
{
"api_name": "pandas.read_csv",
"line_number": 11,
"usage_type": "call"
},
{
"api_name": "click.group",
"line_number": 14,
"usage_type": "call"
},
{
"api_name": "redis.StrictRedis",
"... |
22143984130 | from art import logo
def greet(name, location, time):
print(f"Hi {name} from {location}. Good {time}.")
print(f"Hey {name} from {location}. Good {time}.")
print(f"Hello {name} from {location}. Good {time}.")
#greet("Angela", location="London", time="evening")
def caeser(direction, text, shift):
caeser_text =""
shift = shift % 26
if direction == "encode":
shift = 26 - shift
for letter in text:
if letter in alphabet:
caeser_text += alphabet[alphabet.index(letter)-shift]
else:
caeser_text += letter
print(caeser_text)
def encrypt(text, shift):
encrypt_text =""
for letter in text:
encrypt_text += alphabet[alphabet.index(letter)+shift-26]
print(encrypt_text)
def decrypt(text, shift):
decrypt_text =""
for letter in text:
decrypt_text += alphabet[alphabet.index(letter)-shift]
print(decrypt_text)
print(logo)
alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
run = "y"
while run == "y":
direction = input("Type 'encode' to encrypt, type 'decode' to decrypt:\n")
text = input("Type your message:\n").lower()
shift = int(input("Type the shift number:\n"))
caeser(direction, text, shift)
run = input('Type "y" to continue. Type any other key to end.\n').lower()
print("Goodbye from Caeser") | tarunchandel/python-ceaser-cipher | main.py | main.py | py | 1,367 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "art.logo",
"line_number": 38,
"usage_type": "argument"
}
] |
35478168713 | #!/usr/bin/env python3
# -*- coding: UTF-8 -*-
import argparse
import codecs
import sys
import openapc_toolkit as oat
ARG_HELP_STRINGS = {
"csv_file": "The csv file where rows should be reordered",
"column": "The numerical index of the column to be used as sorting key",
"encoding": "The encoding of the CSV file. Setting this argument will " +
"disable automatic guessing of encoding.",
"quotemask": "A quotemask to apply to the result file after the action " +
"has been performed. A quotemask is a string consisting " +
"only of the letters 't' and 'f' (true/false) and has " +
"the same length as there are columns in the (resulting) " +
"csv file. Only the columns where the index is 't' will be " +
"quoted.",
"openapc_quote_rules": "Determines if the special openapc quote rules " +
"should be applied, meaning that the keywords " +
"NA, TRUE and FALSE will never be quoted. If in " +
"conflict with a quotemask, openapc_quote_rules " +
"will take precedence.",
"other_csv_file": "An optional second csv file. If given, the rows in " +
"the first file will not be sorted alphabetically. " +
"Instead, they will be rearranged so that the values in " +
"the denoted column mirror their order " +
"of occurence in the given column of the second file " +
"(this will obviously only make sense if the columns " +
"have common values and the values represent some sort " +
"of key). Rows with a column value not occuring in the " +
"second file will be appended to the end of the " +
"output file in original order.",
"other_column": "The numerical index of the column to use in the second " +
"file. If omitted, the same index as in the first file " +
"is used.",
"other_encoding": "The optional encoding of the second CSV file.",
"ignore_case": "Ignore case when comparing values for reordering between two files"
}
def main():
parser = argparse.ArgumentParser()
parser.add_argument("csv_file", help=ARG_HELP_STRINGS["csv_file"])
parser.add_argument("column", type=int, help=ARG_HELP_STRINGS["column"])
parser.add_argument("other_csv_file", nargs="?", help=ARG_HELP_STRINGS["other_csv_file"])
parser.add_argument("other_column", type=int, nargs="?", help=ARG_HELP_STRINGS["other_column"])
parser.add_argument("-e2", "--other_encoding", help=ARG_HELP_STRINGS["other_encoding"])
parser.add_argument("-e", "--encoding", help=ARG_HELP_STRINGS["encoding"])
parser.add_argument("-i", "--ignore_case", action="store_true", default=False,
help=ARG_HELP_STRINGS["ignore_case"])
parser.add_argument("-q", "--quotemask", help=ARG_HELP_STRINGS["quotemask"])
parser.add_argument("-o", "--openapc_quote_rules",
help=ARG_HELP_STRINGS["openapc_quote_rules"],
action="store_true", default=False)
args = parser.parse_args()
quote_rules = args.openapc_quote_rules
encs = [] #CSV file encodings
for encoding in [args.encoding, args.other_encoding]:
if encoding:
try:
codec = codecs.lookup(encoding)
msg = "Encoding '{}' found in Python's codec collection as '{}'"
print(msg.format(encoding, codec.name))
except LookupError:
print("Error: '" + encoding + "' not found Python's " +
"codec collection. Either look for a valid name here " +
"(https://docs.python.org/2/library/codecs.html#standard-" +
"encodings) or omit this argument to enable automated " +
"guessing.")
sys.exit()
encs.append(encoding)
mask = None
if args.quotemask:
reduced = args.quotemask.replace("f", "").replace("t", "")
if reduced:
print("Error: A quotemask may only contain the letters 't' and 'f'!")
sys.exit()
mask = [True if x == "t" else False for x in args.quotemask]
header, content = oat.get_csv_file_content(args.csv_file, enc=encs[0])
column = args.column
if not args.other_csv_file:
rearranged_content = header + sorted(content, key=lambda x: x[column])
else:
rearranged_content = []
_, second_content = oat.get_csv_file_content(args.other_csv_file, enc=encs[1])
other_column = column # default: use same column index as in first file
if args.other_column:
other_column = args.other_column
for other_row in second_content:
if args.ignore_case:
matching_rows = [row for row in content if row[column].lower() == other_row[other_column].lower()]
else:
matching_rows = [row for row in content if row[column] == other_row[other_column]]
rearranged_content += matching_rows
for matching_row in matching_rows:
content.remove(matching_row)
unmatched_msg = ("{} rows could not be rearranged (unmatched in second csv file) " +
"and were appended to the end of the result file " +
"in original order.")
if content:
oat.print_y(unmatched_msg.format(len(content)))
else:
oat.print_g("All rows matched.")
rearranged_content = header + rearranged_content + content # append any unmatched rows
with open('out.csv', 'w') as out:
writer = oat.OpenAPCUnicodeWriter(out, mask, quote_rules, False)
writer.write_rows(rearranged_content)
if __name__ == '__main__':
main()
| OpenAPC/openapc-de | python/csv_row_reorder.py | csv_row_reorder.py | py | 6,006 | python | en | code | 114 | github-code | 36 | [
{
"api_name": "argparse.ArgumentParser",
"line_number": 44,
"usage_type": "call"
},
{
"api_name": "codecs.lookup",
"line_number": 67,
"usage_type": "call"
},
{
"api_name": "sys.exit",
"line_number": 76,
"usage_type": "call"
},
{
"api_name": "sys.exit",
"line_n... |
74297991462 | from collections import defaultdict
from itertools import product, chain
class Rule:
def __init__(self, registry):
self.registry = registry
self.or_rules = []
self._generated = None
def __iter__(self):
for r in self.value:
yield r
def parse_rule(self, rule):
self.raw_rule = rule
for or_def in rule.split(" | "):
or_rule = []
for dependency in or_def.split(" "):
if dependency in '"a""b"':
or_rule.append([dependency[1]])
continue
or_rule.append(self.registry[dependency])
self.or_rules.append(or_rule)
@property
def value(self):
if not self._generated:
for idx, rules in enumerate(self.or_rules):
for i, rule in enumerate(rules):
if isinstance(rule, Rule):
rules[i] = rule.value
self.or_rules[idx] = ["".join(comb) for comb in product(*rules)]
self._generated = list(chain(*self.or_rules))
return self._generated
def parse_input(lines):
messages = []
rules = defaultdict(lambda: Rule(rules))
for line in lines:
if not line:
continue
if ':' in line:
index, rule = line.split(': ')
rules[index].parse_rule(rule)
else:
messages.append(line)
return rules, messages
def solve1(puzzle_input):
rules, messages = parse_input(puzzle_input)
valid_counter = 0
for message in messages:
if message in rules["0"].value:
valid_counter += 1
return valid_counter
def solve2(puzzle_input):
rules, messages = parse_input(puzzle_input)
valid_messages = 0
invalid_message = []
for message in messages:
if message in rules["0"].value:
valid_messages += 1
else:
invalid_message.append(message)
# I'm not smart enough for this (yet ;)) So imma just hack it.
def find_start(message):
for start in rules["8"].value:
if message.startswith(start):
return message[len(start):]
def find_end(message):
for start in rules["42"].value:
for end in rules["31"].value:
if message.startswith(start) and message.endswith(end):
return message[len(start): -len(end)]
msgs = 0
for message in invalid_message:
candidates = []
while message:
message = find_start(message)
if message:
candidates.append(message)
for message in candidates:
while message:
message = find_end(message)
if message == '':
msgs += 1
return valid_messages + msgs
| maarten-dp/adventofcode2020 | solvers/day19.py | day19.py | py | 2,835 | python | en | code | 2 | github-code | 36 | [
{
"api_name": "itertools.product",
"line_number": 33,
"usage_type": "call"
},
{
"api_name": "itertools.chain",
"line_number": 34,
"usage_type": "call"
},
{
"api_name": "collections.defaultdict",
"line_number": 40,
"usage_type": "call"
}
] |
16746507107 | import os
import sys
import gensim
import smart_open
import collections
import random
import json
import os.path
from gensim.models.doc2vec import Doc2Vec, TaggedDocument
from gensim.test.utils import get_tmpfile
import time
from corpus_indexer import CorpusIndexer
class CorpusModeler:
def __init__(self, model_name, corpus_name=""):
self.model_name = model_name
self.corpus_name = corpus_name
self.corpus_file = f"{self.corpus_name}.cor"
self.corpus_index = f"{self.corpus_name}.json"
self.settings_file = f"/models/{self.model_name}.json"
self.model_file = f"/models/{self.model_name}.model"
self.load()
def build(self):
self.__build_model()
def load(self):
self.__load_or_create_settings()
self.__load_model()
def save(self):
self.__save_settings()
self.__save_model()
def __load_or_create_settings(self):
if(os.path.exists(self.settings_file)):
with open(self.settings_file) as f:
content = f.read()
self.settings = json.loads(content)
self.corpus_file = self.settings["corpus_file"]
self.corpus_index = self.settings["corpus_index"]
self.model_file = self.settings["model_file"]
self.corpus_name = self.settings["corpus_name"]
self.model_name = self.settings["model_name"]
else:
with open(self.settings_file, "w+") as f:
empty_content = json.dumps({})
f.write(empty_content)
self.settings = {
"vector_size": 70,
"min_count":2,
"epochs":20,
"dm":0,
"corpus_name": self.corpus_name,
"corpus_file": self.corpus_file,
"corpus_index": self.corpus_index,
"model_file": self.model_file,
"model_name": self.model_name
}
self.__save_settings()
def __save_settings(self):
content = json.dumps(self.settings)
with open(self.settings_file, "w") as f:
f.write(content)
def __save_model(self):
fname = get_tmpfile(self.model_file)
self.model.save(fname)
def __read_corpus(self, fname, tokens_only=False):
with smart_open.open(fname, encoding="iso-8859-1") as f:
for i, line in enumerate(f):
tokens = gensim.utils.simple_preprocess(line)
if tokens_only:
yield tokens
else:
# For training data, add tags
yield gensim.models.doc2vec.TaggedDocument(tokens, [i])
def __build_model(self):
train_corpus = list(self.__read_corpus(self.corpus_file))
model = gensim.models.doc2vec.Doc2Vec(vector_size=self.settings["vector_size"],
min_count=self.settings["min_count"],
epochs=self.settings["epochs"],
dm=self.settings["dm"])
model.build_vocab(train_corpus)
model.train(train_corpus, total_examples=model.corpus_count, epochs=model.epochs)
self.model = model
def __load_model(self):
if (os.path.exists(self.model_file)):
self.model = Doc2Vec.load(self.model_file)
else:
model = None
def gen_data(self, test_file):
if(self.model == None):
print("Must Load of Build a Model to test")
else:
self.__gen_data(test_file)
def __gen_data(self, test_file):
test_corpus = list(self.__read_corpus(test_file, tokens_only=True))
data = []
for doc in test_corpus:
inferred_vector = self.model.infer_vector(doc)
sims = self.model.docvecs.most_similar([inferred_vector], topn=len(self.model.docvecs))
ranks = self.__build_ranks(sims)
data.append({"doc": doc, "ranks": ranks})
self.__save_data(data)
#print('Test Document ({}): «{}»\n'.format(doc_id, ' '.join(test_corpus[doc_id])))
#print(u'SIMILAR/DISSIMILAR DOCS PER MODEL %s:\n' % self.model)
#for label, index in [('MOST', 0), ('MEDIAN', len(sims)//2), ('LEAST', len(sims) - 1)]:
# print(u'%s %s: «%s»\n' % (label, sims[index], ' '.join(train_corpus[sims[index][0]].words)))
def __save_data(self, data):
content = json.dumps(data)
with open(f"/outputs/{self.model_name}-{time.time()}output.json", "w") as f:
f.write(content)
def __build_ranks(self, sims):
corpus_indexer = CorpusIndexer(self.corpus_index)
data = []
for sim in sims:
desc = corpus_indexer.get_description(sim[0])
point = {"id": int(sim[0]), "rank": float(sim[1]), "description": desc}
data.append(point)
return data
| kcculhwch/prayer2vec | build/scripts/corpus_modeler.py | corpus_modeler.py | py | 5,038 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "os.path.exists",
"line_number": 40,
"usage_type": "call"
},
{
"api_name": "os.path",
"line_number": 40,
"usage_type": "attribute"
},
{
"api_name": "json.loads",
"line_number": 43,
"usage_type": "call"
},
{
"api_name": "json.dumps",
"line_number"... |
14144674644 | import numpy as np
from PIL import Image
import torch
class GenericDataset:
def __init__(self):
self.patch_width = None
self.image_height = None
def add(self, dataset):
return SummedDataset(self, dataset)
def resize_image(self, image):
original_width, original_height = image.size
original_height = max(original_height, 1)
original_width = max(original_width, 1)
scale = self.image_height / original_height
resized_width = int(round(scale * original_width, 0))
new_width = resized_width + (self.patch_width - (resized_width % self.patch_width)) # Adjusted this line
return image.resize((new_width, self.image_height))
def __add__(self, dataset):
return self.add(dataset)
class SummedDataset(GenericDataset):
def __init__(self, dataset_left, dataset_right) -> None:
self.left = dataset_left
self.right = dataset_right
def __len__(self):
return len(self.left) + len(self.right)
def __getitem__(self, idx):
if idx > (len(self.left) - 1):
idx_corrected = idx % len(self.left)
return self.right[idx_corrected]
return self.left[idx]
class DummyDataset(GenericDataset):
def __init__(self, number=30, name='dummy_v1', split='test') -> None:
self.samples = list(range(number))
self.name = name
self.split = split
def __len__(self):
return len(self.samples)
def __getitem__(self, idx):
return {
'dataset_name': self.name,
'split': self.split,
'image': self.samples[idx]
}
class CollateFNs:
def __init__(self, patch_width, image_height, character_tokenizer, seq2seq_same_size=False, max_size=224,
transforms=lambda x: x) -> None:
self.patch_width = patch_width
self.image_height = image_height
self.character_tokenizer = character_tokenizer
self.visual_padding_token = torch.zeros((3, self.image_height, self.patch_width))
self.total_visual_padding = torch.zeros((3, max_size, max_size))
self.same_size = seq2seq_same_size
self.max_size = max_size
self.transforms = transforms
def collate(self, batch):
max_tokens = max([len(x['tokens']) for x in batch])
max_patches = max([x['input_tensor'].shape[2] // self.patch_width for x in batch])
max_tokens_both = max(max_patches, max_tokens)
visual_tokens = []
text_tokens = []
raw_texts = []
sources = []
resized_images = []
original_images = []
images_tensor_full = []
patched_images = []
masks = []
images_full_resized = []
simply_padded_labels = []
for item in batch:
original_image, image, text_token, raw_text, split, dataset, resized_image = item['original_image'], item[
'input_tensor'], item['tokens'], item['annotation'], item['split'], item['dataset'], item[
'resized_image']
original_images.append(original_image)
resized_image = resize_to_max_size(resized_image, self.max_size)
image_to_be_patched = self.transforms(resized_image)
images_full_resized.append(self.transforms(resized_image.resize((self.max_size, self.max_size))))
_, w, h = image_to_be_patched.shape
final_image = self.total_visual_padding.clone()
# mask = self.total_visual_padding.clone()
final_image[:, :w, :h] = image_to_be_patched
# mask[:, w:, h:] = 1
# mask = 1 - mask
# masks.append(mask)
patched_images.append(final_image)
resized_images.append(resized_image)
sources.append(f"{split}_ {dataset}")
raw_texts.append(raw_text.lower())
patches = list(image.chunk(image.shape[2] // self.patch_width, dim=-1))
patches = patches + [self.visual_padding_token] * (max_tokens_both - len(patches))
text_tokenized = torch.from_numpy(
self.character_tokenizer(
text_token + [self.character_tokenizer.padding_token] * (max_tokens_both - len(text_token))
)
)
text_simply_tokenized = torch.from_numpy(
self.character_tokenizer(
text_token + [self.character_tokenizer.padding_token] * (max_tokens - len(text_token))
)
)
simply_padded_labels.append(text_simply_tokenized)
text_tokens.append(text_tokenized)
visual_tokens.append(
torch.stack(
patches
)
)
images_tensor_full.append(
torch.cat(patches, dim=2)
)
return {
'input_visual_seq': torch.stack(visual_tokens),
'images_tensor': torch.stack(images_tensor_full),
'padded_labels_to_text': torch.stack(simply_padded_labels),
'labels': torch.stack(text_tokens),
'raw_text_gt': raw_texts,
'sources': sources,
# 'original_images': resized_images,
'input_lengths': [x.size[0] // self.patch_width for x in resized_images],
'output_lengths': [len([char for char in x]) for x in raw_texts],
# 'pre_resize_images': original_images,
'totally_padded_image': torch.stack(patched_images),
'input_lengths_clip': [224 // self.patch_width for _ in resized_images],
'masks': masks,
'square_full_images': torch.stack(images_full_resized)
}
def collate_while_debugging(self, batch):
try:
return self.collate(batch)
except:
print(batch)
import pdb
pdb.set_trace()
def resize_to_max_size(image, max_size):
width, height = image.size
return image.resize((min(max_size, width), min(max_size, height)))
if __name__ == '__main__':
dataset_0_3 = DummyDataset(3, name='dataset_1', split='test')
dataset_3_5 = DummyDataset(2, name='dataset_2', split='test')
dataset_5_10 = DummyDataset(5, name='dataset_3', split='val')
dataset_0_5 = dataset_0_3 + dataset_3_5
dataset_0_10 = dataset_0_5 + dataset_5_10
print(dataset_0_10[0]) # Prints dataset_1: 0
print(dataset_0_10[3]) # Prints dataset_2: 0
print(dataset_0_10[5]) # Prints dataset_3: 0
print(dataset_0_10[2]) # Prints dataset_1: 2
print(dataset_0_10[4]) # Prints dataset_2: 1
print(dataset_0_10[9]) # Prints dataset_3: 4
| EauDeData/oda_ocr | src/dataloaders/summed_dataloader.py | summed_dataloader.py | py | 6,678 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "torch.zeros",
"line_number": 72,
"usage_type": "call"
},
{
"api_name": "torch.zeros",
"line_number": 73,
"usage_type": "call"
},
{
"api_name": "torch.from_numpy",
"line_number": 125,
"usage_type": "call"
},
{
"api_name": "torch.from_numpy",
"lin... |
37338865985 | from distutils.core import setup
import os.path
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="python_obfuscator",
packages=setuptools.find_packages(),
version="0.0.2",
license="MIT",
description="It's a python obfuscator.",
author="David Teather",
author_email="contact.davidteather@gmail.com",
url="https://github.com/davidteather/python-obfuscator",
long_description=long_description,
long_description_content_type="text/markdown",
download_url="https://github.com/davidteather/python-obfuscator/tarball/master",
keywords=["obfuscator"],
install_requires=["regex"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
entry_points={"console_scripts": ["pyobfuscate=python_obfuscator.cli:cli"]},
)
| davidteather/python-obfuscator | setup.py | setup.py | py | 1,182 | python | en | code | 133 | github-code | 36 | [
{
"api_name": "setuptools.setup",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "setuptools.find_packages",
"line_number": 10,
"usage_type": "call"
}
] |
69904854506 | from flask import Flask, request, jsonify
from config import Config
from flask_cors import CORS, cross_origin
from database import db
def create_app(config_class=Config):
app = Flask(__name__)
app.config.from_object(config_class)
app.config['CORS_HEADERS'] = 'Content-Type'
db.init_app(app)
# import controllers
from controllers.weo.weo_controller import weo_bp
from controllers.econ.econ_controller import econ_bp
from controllers.money_supply.money_supply_controller import money_supply_bp
from controllers.oil.oil_controller import oil_production_bp
# register controllers
app.register_blueprint(weo_bp)
app.register_blueprint(econ_bp, url_prefix='/econ')
app.register_blueprint(money_supply_bp)
app.register_blueprint(oil_production_bp, url_prefix='/oil')
# test route
@app.route('/')
def hello_world():
return "Izzy is pretty"
# error handler
@app.errorhandler(404)
def not_found(error):
return jsonify({"error": "Not Found"}), 404
return app
app = create_app()
cors = CORS(app, resources={r"/*": {"origins": "*"}})
@app.after_request
def add_cors_headers(response):
response.headers.add('Access-Control-Allow-Origin', '*')
response.headers.add('Access-Control-Allow-Headers', 'Content-Type,Authorization')
response.headers.add('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS')
return response
if __name__ == '__main__':
app.run() | danme-l/website-v2-backend | app.py | app.py | py | 1,479 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "config.Config",
"line_number": 6,
"usage_type": "name"
},
{
"api_name": "flask.Flask",
"line_number": 7,
"usage_type": "call"
},
{
"api_name": "database.db.init_app",
"line_number": 12,
"usage_type": "call"
},
{
"api_name": "database.db",
"line_... |
30872218901 | # -*- coding: utf-8 -*-
# from rest_framework.generics import ListAPIView, CreateAPIView, UpdateAPIView, RetrieveAPIView, DestroyAPIView
# from django.shortcuts import render
# from django.views import View
# from rest_framework.views import APIView
from rest_framework.authentication import BasicAuthentication, SessionAuthentication
from rest_framework.permissions import IsAuthenticatedOrReadOnly, IsAuthenticated
from rest_framework.generics import GenericAPIView
from rest_framework.response import Response
from rest_framework.mixins import ListModelMixin, CreateModelMixin
from django.http import JsonResponse
from django.http.request import QueryDict
from rest_framework.viewsets import GenericViewSet, ModelViewSet
from crawlers.models import Book as Book_model, Comment as Comment_model
from book_drf.serializer import BookSerializer, CommentSerializer
# Create your views here.
class Books(GenericAPIView):
queryset = Book_model.objects.all()
serializer_class = BookSerializer
def get_res(self):
temp = {'result': False, 'data': None, 'msg': ''}
return dict(**temp)
def get(self, request):
# print(request.data, request.query_params)
# books = Book_model.objects.all()
books = self.get_queryset()
# c1 = BookContent.objects.get(id=1)
# print(c1.book_name.book_name)
# 关联查询 主表对象.(foreign_model.lower())_set
# book1 = Book_model.objects.get(book_id=1)
# contents = BookContent.objects.filter(book_name_id=book_id)
# contents = book1.bookcontent_set.all()
# print(contents)
ser = self.get_serializer(books, many=True)
# ser = BookSerializer(books, many=True)
res = self.get_res()
res['data'] = ser.data
res['result'] = True
# return JsonResponse(ser.data, safe=False, json_dumps_params={
# 'ensure_ascii': False})
return Response(data=res)
# class Book(GenericAPIView):
# queryset = Book_model.objects.all()
# serializer_class = BookSerializer
#
# def get_res(self):
# temp = {'result': False, 'data': None, 'msg': ''}
# return dict(**temp)
#
# def get(self, request, book_id):
# print(request.data, request.query_params)
# res = self.get_res()
# try:
# book1 = Book_model.objects.get(book_id=book_id)
# print('121:', book_id, book1)
# # books = self.get_queryset()
#
# ser = BookSerializer(book1, many=False)
# # ser.is_valid()
#
# res['result'] = True
# res['data'] = ser.data
#
# except Book_model.DoesNotExist:
# res['msg'] = 'not found'
# return JsonResponse(res, json_dumps_params={
# 'ensure_ascii': False}, status=404)
#
# # return JsonResponse(res, json_dumps_params={
# # 'ensure_ascii': False})
# return Response(data=res)
class Book(ModelViewSet):
authentication_classes = (BasicAuthentication, SessionAuthentication)
permission_classes = (IsAuthenticated, )
queryset = Book_model.objects.all()
serializer_class = BookSerializer
class Comment(GenericAPIView, ListModelMixin, CreateModelMixin):
queryset = Comment_model.objects.all()
serializer_class = CommentSerializer
def get(self, request):
return self.list(request)
# comments = self.get_queryset().filter(book_id=book_id, chapter_count=chapter_count)
# ser = self.get_serializer(comments, many=True)
# return Response(data=ser.data)
# def post(self, request: QueryDict, book_id, chapter_count):
def post(self, request: QueryDict):
try:
return self.create(request)
except Exception as e:
import traceback
traceback.print_exc()
# print(e)
return Response({'msg': str(e)}, 400)
# c = self.get_object()
# print('c=', c)
data = request.data
print(data, type(data))
temp = {'book_id': book_id, 'chapter_count': chapter_count}
temp.update(data)
print('temp:', temp)
# new_comment = Comment_model.objects.create()
ser = self.get_serializer(data=temp)
if ser.is_valid():
ser.save()
return Response(data=ser.data)
else:
# ser.save()
res = {'msg': 'invalid',
'data': ser.errors}
return Response(data=res, status=400)
| ietar/huluobei | book_drf/views2.py | views2.py | py | 4,527 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "rest_framework.generics.GenericAPIView",
"line_number": 20,
"usage_type": "name"
},
{
"api_name": "crawlers.models.Book.objects.all",
"line_number": 22,
"usage_type": "call"
},
{
"api_name": "crawlers.models.Book.objects",
"line_number": 22,
"usage_type": "... |
70442787624 | #coding: utf-8
# __author__ = jqy
import logging
class Logger(object):
def __init__(self, log_file):
"""Initialize logging module."""
# disable requests log
logging.getLogger("requests").setLevel(logging.DEBUG)
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s')
# Create a file handler to store error messages
fh = logging.FileHandler(log_file, mode='w')
fh.setLevel(logging.DEBUG)
fh.setFormatter(formatter)
# Create a stream handler to print all messages to console
ch = logging.StreamHandler()
ch.setLevel(logging.WARNING)
ch.setFormatter(formatter)
logger.addHandler(fh)
logger.addHandler(ch)
self.logger = logger
def getLogger(self):
return self.logger
| stkaeljason/TjgbSpider | logdealer.py | logdealer.py | py | 932 | python | en | code | 1 | github-code | 36 | [
{
"api_name": "logging.getLogger",
"line_number": 12,
"usage_type": "call"
},
{
"api_name": "logging.DEBUG",
"line_number": 12,
"usage_type": "attribute"
},
{
"api_name": "logging.getLogger",
"line_number": 14,
"usage_type": "call"
},
{
"api_name": "logging.DEBUG"... |
36748155431 | from collections import OrderedDict
from fudge.index import Index, read_index, write_index
from fudge.object import Object, load_object, store_object
from fudge.parsing.builder import Builder
from fudge.parsing.parser import Parser
from fudge.utils import FudgeException
class Node(object):
def __init__(self, name, mode, object_id):
self.name = name
self.mode = mode
self.object_id = object_id
self.children = OrderedDict()
def __iter__(self):
for child in self.children.values():
yield child
def add(self, child):
self.children[child.name] = child
def get(self, name):
return self.children.get(name)
@property
def is_branch(self):
return len(self.children) > 0
@property
def is_leaf(self):
return len(self.children) == 0
def get_node(root, path):
path = path.split('/')
current = root
for dirname in path:
current = current.get(dirname)
if not current:
break
return current
def walk_tree2(root, recurse, basepath):
for child in root:
path = basepath + child.name
yield path, child
if child.is_branch and recurse:
yield from walk_tree2(child, recurse, path + '/')
def walk_tree(root, recurse):
return walk_tree2(root, recurse, '')
def print_tree(root, recurse):
types = {
'100644': 'blob',
'100755': 'blob',
'40000': 'tree',
'160000': 'commit',
}
for path, node in walk_tree(root, recurse):
if node.is_branch and recurse:
continue
node_type = types.get(node.mode) or 'unknown'
print('{:0>6} {} {} {}'.format(node.mode, node_type, node.object_id, path))
def build_tree_from_object2(root):
obj = load_object(root.object_id)
if obj.type != 'tree':
raise FudgeException('the specified object is not a tree')
parser = Parser(obj.contents, padding=False)
while not parser.eof:
info = parser.get_utf8()
mode, name = info.split()
object_id = parser.get_sha1()
node = Node(name, mode, object_id)
root.add(node)
if mode == '40000':
build_tree_from_object2(node)
return root
def build_tree_from_object(object_id):
root = Node('root', None, object_id)
return build_tree_from_object2(root)
def read_tree2(index, root, basepath):
for child in root:
path = basepath + child.name
if child.is_branch:
read_tree2(index, child, path + '/')
else:
index.add_object(child.mode, child.object_id, path)
def read_tree(object_id):
index = Index()
root = build_tree_from_object(object_id)
read_tree2(index, root, '')
write_index(index)
def build_tree_from_index():
root = Node('root', None, None)
index = read_index()
for entry in index:
parts = entry.path.split('/')
if len(parts) == 1:
path, filename = [], parts[0]
else:
path, filename = parts[:-1], parts[-1]
current = root
for dirname in path:
if not current.get(dirname):
node = Node(dirname, '40000', None)
current.add(node)
current = current.get(dirname)
node = Node(filename, entry.perms, entry.object_id)
current.add(node)
return root
def write_tree2(root):
builder = Builder(padding=False)
for child in root:
if child.is_branch:
object_id = write_tree2(child)
child.object_id = object_id
info = '{} {}'.format(child.mode, child.name)
builder.set_utf8(info)
builder.set_sha1(child.object_id)
data = builder.data
obj = Object('tree', len(data), data)
store_object(obj)
return obj.id
def write_tree():
root = build_tree_from_index()
return write_tree2(root)
| QuantamKawts/fudge | fudge/tree.py | tree.py | py | 3,926 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "collections.OrderedDict",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "fudge.object.load_object",
"line_number": 80,
"usage_type": "call"
},
{
"api_name": "fudge.utils.FudgeException",
"line_number": 82,
"usage_type": "call"
},
{
"api_n... |
24770123438 | #!/usr/bin/python3
import requests # pip3 install requests
import sys
from lxml import etree # pip3 install lxml
import re
class Item:
category = ''
detName = ''
detDesc = ''
link = ''
def __init__(self, category, detName, detDesc, link):
self.category = category
self.detName = detName
self.detDesc = detDesc
self.link = link
def parseHtmlForItems(html):
items = []
trs = html.xpath('//table[@id="searchResult"]/tr')
for tr in trs:
cInfo = tr.xpath('./td[@class="vertTh"]/center/a/text()')
cStr = _paresCategoryInfo(cInfo)
if cStr != None:
detName = tr.xpath('.//a[@class="detLink"]/text()')[0].strip()
detDescTailNode = tr.xpath('.//font[@class="detDesc"]/a/text()')
detDescTail = ""
if len(detDescTailNode) > 0:
detDescTail = detDescTailNode[0]
detDesc = (tr.xpath('.//font[@class="detDesc"]/text()')[0] + detDescTail).strip()
link = tr.xpath('.//a[@title="Download this torrent using magnet"]/@href')[0].strip()
items.append(Item(cStr, detName, detDesc, link))
return items
def _paresCategoryInfo(categoryInfo):
if len(categoryInfo) != 2:
return None
return "{0}({1})".format(categoryInfo[0].strip(), categoryInfo[1].strip())
def showItems(items):
for i, item in enumerate(items):
print(i, item.category, item.detName, item.detDesc, sep=" | ")
def showItem(items, i):
if (i < 0) | (i >= len(items)):
print("无指定条目!")
return
item = items[i]
print(i, item.category, item.detName, item.detDesc, sep=" | ", end=" :\n")
print(item.link)
class Searcher:
searchName = ''
pageNum = 1
orderBy = 99
category = "0"
categoryStr = "All"
categoryNode = None
begin = 0
end = 0
totle = 0
count = 0
items = []
def search(self):
if (self.searchName == "") | (self.searchName.isspace()):
return
# 搜索
url = "https://thepiratebay10.org/search/{0}/{1}/{2}/{3}".format(self.searchName, self.pageNum, self.orderBy, self.category)
resp = requests.get(url)
if resp.status_code != 200:
print("网络请求出错, 请检查网络或访问的地址!!")
sys.exit(1)
resp.encoding = "utf-8"
html = etree.HTML(resp.text)
# 设置page信息
countInfo = html.xpath('//body/h2[1]/text()')[0].strip()
self._parseCountInfo(countInfo)
# 设置categoryNode
categoryNodes = html.xpath('//select[@id="category"]')
if len(categoryNodes) > 0:
self.categoryNode = categoryNodes[0]
else:
self.categoryNode = None
# 设置items
self.items = parseHtmlForItems(html)
def _parseCountInfo(self, countInfo):
matchObj = re.match(r"Displaying hits from (\d+) to (\d+) \(approx (\d+) found\)", countInfo, re.I)
if matchObj != None:
self.begin = int(matchObj.group(1))
self.end = int(matchObj.group(2))
self.totle = int(matchObj.group(3))
self.count = (self.totle + 29) // 30
else:
self.begin = 0
self.end = 0
self.totle = 0
self.count = 0
def setupCategory(self):
buf = {"0": "All"}
gBuf = {}
print("0 : All")
if self.categoryNode != None:
optgroups = self.categoryNode.xpath('./optgroup')
for optgroup in optgroups:
gCode = optgroup.xpath('./option[1]/@value')[0][:1] + "00"
gDesc = optgroup.xpath('./@label')[0]
print("[ {0} : {1} ]:".format(gCode, gDesc))
gBuf[gCode] = gDesc
opts = optgroup.xpath('./option')
for opt in opts:
code = opt.xpath('./@value')[0]
desc = opt.xpath('./text()')[0].strip()
buf[code] = desc
print("{0} : {1}".format(code, desc))
print("当前类型: {0}({1})".format(self.category, self.categoryStr))
while True:
inputStr = input("请输出类别编码(可以使用','分隔以同时输入多个组编码; 输入'q'将取消设置): ").strip()
if "q" == inputStr:
return
elif inputStr in buf:
self.category = inputStr
self.categoryStr = buf[inputStr]
return
else:
gCodes = inputStr.split(",")
cs = self._getCategoryStrByGCodes(gBuf, gCodes)
if cs != None:
self.category = inputStr
self.categoryStr = cs
return
else:
print("输入有误!")
def _getCategoryStrByGCodes(self, gBuf, gCodes):
gDescs = []
for gc in gCodes:
if gc in gBuf:
gDescs.append(gBuf[gc])
else:
return None
return ",".join(gDescs)
def showMeta(self):
print("类别: {0}, 搜索: {1}, 页码: {2}, 总条数: {3}, 总页数: {4}, 显示条码: [{5},{6})".format(
self.categoryStr, self.searchName, self.pageNum, self.totle, self.count, self.begin, self.end))
def searchAndShow(self):
self.search()
showItems(self.items)
self.showMeta()
def setPageNum(self, pageNum):
if pageNum < 1:
pageNum = 1
elif pageNum > self.count:
if self.count == 0:
pageNum = 1
else:
pageNum = self.count
self.pageNum = pageNum
class TopCategory:
title = ""
url = ""
ended = False
def __init__(self, title, url, ended = False):
self.title = title
self.url = url
self.ended = ended
class Toper:
categories = []
index = 0
items = []
def __init__(self):
url = "https://thepiratebay10.org/top"
resp = requests.get(url)
if resp.status_code != 200:
print("网络请求出错, 请检查网络或访问的地址!!")
sys.exit(1)
resp.encoding = "utf-8"
html = etree.HTML(resp.text)
nodes = html.xpath('//table[@id="categoriesTable"]/tr/td/dl/*')
for node in nodes:
if node.tag == "dt":
title = node.xpath('./a[1]/text()')[0].strip()
url = node.xpath('./a[1]/@href')[0]
self.categories.append(TopCategory("[ {0} ] ".format(title), "https://thepiratebay10.org"+url))
title2 = "[ {0}({1}) ]".format(title, node.xpath('./a[2]/text()')[0].strip())
url2 = node.xpath('./a[2]/@href')[0]
self.categories.append(TopCategory(title2, "https://thepiratebay10.org"+url2, True))
elif node.tag == "dd":
subNodes = node.xpath('.//a')
for subNode in subNodes:
title = subNode.xpath('./text()')[0].strip()
url = subNode.xpath('./@href')[0]
self.categories.append(TopCategory(title, "https://thepiratebay10.org"+url))
self.categories[-1].ended = True
def showCategories(self):
for i, v in enumerate(self.categories):
print(i , v.title, sep=":", end=" ")
if v.ended:
print()
def setCategoryIndex(self, index):
if (index < 0) | (index >= len(self.categories)):
return False
else:
self.index = index
return True
def getTop(self):
url = self.categories[self.index].url
resp = requests.get(url)
resp.encoding = "utf-8"
html = etree.HTML(resp.text)
# 设置items
self.items = parseHtmlForItems(html)
def getAndShow(self):
self.getTop()
showItems(self.items)
def runSearcher(searcher):
inputStr = input("请输入搜索关键词(输出空白字符将退出): ").strip()
if inputStr == "":
return
searcher.searchName = inputStr
searcher.searchAndShow()
while True:
ops = input("i <item> 查看指定条目详情; g <page> 跳转到指定页码; p 上一页; n 下一页; s <keyword> 搜索指定关键词; r 刷新; c 设置查询类型; q 退出;\n")
op = ops[:1]
arg = ops[1:].strip()
if op == "i":
showItem(searcher.items, (int(arg)))
elif op == "g":
searcher.setPageNum(int(arg))
searcher.searchAndShow()
elif op == "p":
searcher.setPageNum(searcher.pageNum - 1)
searcher.searchAndShow()
elif op == "n":
searcher.setPageNum(searcher.pageNum + 1)
searcher.searchAndShow()
elif op == "s":
if arg == "":
print("输入有误(不允许为空)!")
else:
searcher.searchName = arg
searcher.pageNum = 1
searcher.searchAndShow()
elif op == "r":
searcher.searchAndShow()
elif op == "c":
searcher.setupCategory()
elif op == "q":
return
def runToper(toper):
toper.showCategories()
while True:
inputStr = input("请输入类别编号[0, {0})(输入'q'将退出): ".format(len(toper.categories))).strip()
if inputStr == "q":
return
index = int(inputStr)
flag = toper.setCategoryIndex(index)
if flag:
toper.getAndShow()
break
else:
print("输入有误!")
while True:
ops = input("i <item> 查看指定条目详情; g <no> 查询指定类别编号的热门条目; r 刷新; c 查看类别目录; q 退出;\n")
op = ops[:1]
arg = ops[1:].strip()
if op == "i":
showItem(toper.items, int(arg))
elif op == "g":
flag = toper.setCategoryIndex(int(arg))
if flag:
toper.getAndShow()
else:
print("输入有误!")
elif op == "r":
toper.getAndShow()
elif op == "c":
toper.showCategories()
elif op == "q":
return
if __name__ == "__main__":
searcher = None
toper = None
while True:
m = input("请输入模式('s'(搜索), 't'(热门))(输入'q'将退出): ").strip()
if m == "q":
break
elif m == "s":
if searcher == None:
searcher = Searcher()
runSearcher(searcher)
elif m == "t":
if toper == None:
toper = Toper()
runToper(toper)
| echcz/sak | piratebay-cli.py | piratebay-cli.py | py | 10,776 | python | en | code | 2 | github-code | 36 | [
{
"api_name": "requests.get",
"line_number": 71,
"usage_type": "call"
},
{
"api_name": "sys.exit",
"line_number": 74,
"usage_type": "call"
},
{
"api_name": "lxml.etree.HTML",
"line_number": 76,
"usage_type": "call"
},
{
"api_name": "lxml.etree",
"line_number":... |
20336422398 | # -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.6.2)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x00\xcc\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x00\x06\x50\x4c\x54\x45\x00\xa8\xec\
\x00\x00\x00\x79\x99\x93\x18\x00\x00\x00\x02\x74\x52\x4e\x53\xff\
\x00\xe5\xb7\x30\x4a\x00\x00\x00\x4e\x49\x44\x41\x54\x78\xda\xec\
\xd6\x31\x0a\x00\x30\x08\x43\xd1\xf4\xfe\x97\xee\x5e\xa4\x56\x3a\
\x19\x7f\x56\xe1\x4d\x06\xd5\xfa\x8c\x00\x00\x4c\x01\x25\x71\x07\
\xf4\x98\x09\x40\x84\x9d\x73\x00\x7f\x80\x2e\x00\xa4\x87\x64\x00\
\x70\x43\x4a\x6d\x6c\x0e\x84\x47\xb4\xba\x89\x4d\x01\x7e\x24\x7e\
\x65\x80\xd1\xc0\x16\x60\x00\x69\x46\x0b\x61\xed\x85\x65\xe8\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x3a\x41\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\
\x01\x95\x2b\x0e\x1b\x00\x00\x20\x00\x49\x44\x41\x54\x78\xda\xed\
\xdd\x79\x9c\x65\x77\x5d\xe7\xff\xd7\x5d\xab\x6e\xed\x5d\xd5\x55\
\xd5\xfb\x96\x84\x28\x41\x19\xc2\xb0\xdc\xcc\x5c\x10\x6f\xe0\xe7\
\xee\x80\x30\x6a\x12\x24\xe3\x4f\x45\x08\x08\xa3\x2c\x2a\xae\xf3\
\x13\x7e\xc1\x51\x91\x80\x82\xcb\x4f\x16\x01\x17\x10\x07\x15\x47\
\x27\x94\xa0\x25\x16\xfc\x06\x02\xd9\x3a\x4b\x27\xbd\x77\x57\x55\
\xd7\xbe\xdc\xaa\xba\xfb\xfc\x71\x6f\x42\x93\xf4\x56\x5d\xdb\xbd\
\xe7\xbc\x9e\x8f\xc7\x7d\x54\x04\xe9\xf4\xf9\x7c\xbf\x75\x3f\xef\
\xf3\x3d\xe7\x7c\x0f\x48\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\
\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\xa4\x46\x11\xb1\
\x04\x0a\xb2\xa1\xe1\x91\x28\xb0\x03\xe8\x07\x7a\x81\xbe\xfa\xcf\
\x0b\x7d\xda\x81\xe4\x45\x3e\x2d\xf5\x9f\x00\x85\xcb\x7c\x96\x80\
\xe9\x0b\x7c\xa6\xce\xfb\xe7\x49\xe0\x6c\x36\x93\x2e\x3b\x4a\x92\
\x0c\x00\xd2\xea\x1b\x7c\x2b\xb0\x0f\xd8\x5f\xff\xec\x3b\xef\xff\
\xde\x07\xec\x39\xaf\x71\x37\x9a\x12\x70\x06\x38\x09\x9c\xb8\xd0\
\xcf\x6c\x26\x9d\x73\x94\x25\x19\x00\x14\xf6\x46\xff\xad\xc0\x0d\
\xc0\x33\xeb\x3f\x6f\x00\x0e\x02\xd1\x80\x1e\x76\xb5\x1e\x06\x1e\
\x04\x0e\xd7\x7f\x3e\x08\x1c\x36\x18\x48\x32\x00\x28\x88\xcd\x7e\
\x10\x78\x21\xf0\xbc\xf3\x1a\xfd\x21\x20\x66\x75\x00\xa8\xd4\x57\
\x08\x9e\x08\x04\x5f\x01\xbe\x94\xcd\xa4\x4f\x5b\x1a\x49\x06\x00\
\x35\x4b\xb3\x6f\x01\x9e\x03\xbc\xa0\xde\xf4\x5f\x08\x1c\xb0\x32\
\x57\xe5\x0c\xf0\x25\xe0\xcb\xf5\x9f\x5f\xcd\x66\xd2\x4b\x96\x45\
\x92\x01\x40\x8d\xd0\xf0\x3b\x81\xef\x00\xbe\xb3\xde\xec\x9f\x43\
\xed\x06\x3b\xad\xbf\x12\x70\x5f\x3d\x10\x7c\x1e\x18\xca\x66\xd2\
\xd3\x96\x45\x92\x01\x40\x9b\xd1\xf0\xe3\xc0\xf3\x81\x97\x02\x37\
\xd7\xcf\xf4\x13\x56\x66\x4b\x94\x81\xaf\x01\x77\x03\x9f\x03\xbe\
\x98\xcd\xa4\xf3\x96\x45\x32\x00\x48\xeb\xd5\xf4\x9f\x01\xbc\xac\
\xde\xf0\x5f\x02\x74\x59\x95\x86\xb4\x04\xfc\x4b\x3d\x0c\xdc\x9d\
\xcd\xa4\xef\xb3\x24\x92\x01\x40\x5a\x6d\xd3\xbf\x11\x78\x45\xfd\
\xf3\xad\x56\xa4\x29\x1d\x03\x3e\x5d\xff\x8c\x64\x33\xe9\xaa\x25\
\x91\x0c\x00\xd2\x53\x1b\x7e\x14\x48\x9f\xd7\xf4\x0f\x58\x95\x40\
\x19\x05\xfe\xba\xfe\xf9\x42\x36\x93\x2e\x59\x12\xc9\x00\xa0\x70\
\x37\xfd\x97\x00\xaf\x04\x7e\x10\xd8\x69\x55\x42\x61\x0a\xf8\x5b\
\xe0\x53\xc0\x3f\x1a\x06\x24\x03\x80\xc2\xd3\xf8\xaf\x03\x5e\x03\
\xbc\x9a\xda\xee\x7a\x0a\xaf\x71\xe0\xe3\xc0\x87\xb3\x99\xf4\xfd\
\x96\x43\x32\x00\x28\x78\x4d\xbf\x0b\x78\x15\x70\x3b\xf0\x1f\x9c\
\x2b\xba\x80\xaf\x02\x1f\x06\xfe\x2c\x9b\x49\x4f\x59\x0e\xc9\x00\
\xa0\xe6\x6d\xfa\x11\x6a\xcf\xe7\xdf\x4e\xed\xba\x7e\x9b\x55\xd1\
\x15\xc8\x03\x7f\x57\x0f\x03\xff\xe0\x25\x02\xc9\x00\xa0\xe6\x3a\
\xdb\xff\x71\xe0\x0d\xc0\x35\x56\x44\x6b\x70\x1a\xf8\x00\xf0\x87\
\xd9\x4c\x7a\xd2\x72\x48\x06\x00\x35\x66\xe3\xbf\x0e\x78\x63\xfd\
\x8c\xbf\xd3\x8a\x68\x1d\x2d\x03\x9f\x00\xee\x72\x7f\x01\xc9\x00\
\xa0\xc6\x68\xfa\x11\x6a\xbb\xf2\xfd\x0c\xf0\xdd\x04\xf7\x4d\x7a\
\x6a\x0c\x55\xe0\x0b\xc0\x5d\xc0\xdf\x64\x33\xe9\x8a\x25\x91\x0c\
\x00\xda\xdc\xc6\xdf\x5a\x3f\xd3\x7f\x23\xb5\xd7\xe9\x4a\x9b\xed\
\x18\xf0\x7e\xe0\x8f\xb2\x99\xf4\x82\xe5\x90\x0c\x00\xda\xd8\xc6\
\x9f\x02\x5e\x0b\xbc\x0d\x9f\xdb\x57\x63\x98\x06\xde\x03\xbc\x2f\
\x9b\x49\xcf\x59\x0e\xc9\x00\xa0\xf5\x6d\xfc\xed\xc0\xeb\x80\xb7\
\x00\x83\x56\x44\x0d\x68\x96\xda\xa5\x81\xdf\xcd\x66\xd2\x33\x96\
\x43\x32\x00\x68\x6d\x8d\xbf\x13\xb8\x03\xf8\x59\xa0\xdf\x8a\xa8\
\x09\xcc\x53\xbb\x34\xf0\x1e\x9f\x1c\x90\x0c\x00\x5a\x7d\xe3\xef\
\xa2\x76\x63\xdf\x9b\x81\x3e\x2b\xa2\x26\xb4\x08\xfc\x3e\xf0\x5b\
\xd9\x4c\x7a\xc2\x72\x48\x06\x00\x5d\xba\xf1\xc7\x81\x9f\x06\x7e\
\xc5\x33\x7e\x05\xc4\x02\xf0\x6e\xe0\x77\xb2\x99\xf4\xb2\xe5\x90\
\x0c\x00\x7a\x7a\xf3\xff\xc1\xfa\x17\xe5\xf5\x56\x43\x01\x74\x1a\
\x78\x07\xf0\xa7\xbe\x9a\x58\x32\x00\xa8\xd6\xf8\x9f\x07\xfc\x16\
\xf0\x22\xab\xa1\x10\xf8\x1a\xf0\x96\x6c\x26\xfd\x4f\x96\x42\x32\
\x00\x84\xb5\xf1\xef\x07\xde\x05\xfc\xa8\x63\xa7\x10\xfa\x3b\xe0\
\x6d\xd9\x4c\xfa\x21\x4b\x21\x19\x00\xc2\xd2\xf8\xdb\x80\x5f\xa6\
\x76\x83\x5f\xab\x15\x51\x88\x95\x80\x3f\x04\x7e\xc9\x47\x07\x25\
\x03\x40\xd0\x9b\xff\xf7\x52\x7b\x44\xea\x80\xd5\x90\x9e\x34\x0e\
\xfc\x6c\x36\x93\xfe\x84\xa5\x90\x0c\x00\x41\x6b\xfc\xbb\x80\xf7\
\x02\xaf\xb4\x1a\xd2\x45\x7d\x0e\x78\x5d\x36\x93\x7e\xcc\x52\x48\
\x06\x80\x66\x6f\xfc\x51\xe0\xf5\xc0\x3b\x81\x2e\x2b\x22\x5d\xd6\
\x0a\xb5\x7b\x63\xde\x9d\xcd\xa4\x0b\x96\x43\x32\x00\x34\x63\xf3\
\x7f\x0e\xf0\x07\xc0\xf3\xac\x86\xb4\x6a\x0f\x03\x3f\x9d\xcd\xa4\
\xff\xd9\x52\x48\x06\x80\x66\x69\xfc\xad\xc0\x6f\x00\x6f\x02\xe2\
\x56\x44\xba\x6a\x55\xe0\x23\xc0\x9b\x7d\xd1\x90\x64\x00\x68\xf4\
\xe6\x7f\x23\xf0\xa7\xf8\x8a\x5e\x69\x3d\x9d\x04\x6e\xcf\x66\xd2\
\x9f\xb7\x14\x92\x01\xa0\xd1\x1a\x7f\x0c\x78\x3b\xf0\xab\x40\xd2\
\x8a\x48\xeb\xae\x42\xed\x46\xda\x5f\xcc\x66\xd2\x2b\x96\x43\x32\
\x00\x34\x42\xf3\xbf\x06\xf8\x28\x70\x93\xd5\x90\x36\xdc\x83\xc0\
\xab\xb3\x99\xf4\xd7\x2c\x85\x64\x00\xd8\xca\xe6\xff\x93\xc0\xef\
\x00\x1d\x56\x43\xda\x34\x05\xe0\xd7\xa8\x3d\x29\x50\xb1\x1c\x92\
\x01\x60\x33\x1b\xff\x20\xf0\xc7\xc0\xf7\x59\x0d\x69\xcb\x7c\x11\
\xf8\xb1\x6c\x26\x7d\xd4\x52\xc8\x00\xa0\xcd\x68\xfe\x2f\x06\xfe\
\x1c\xd8\x61\x35\xa4\x2d\x37\x07\xfc\x78\x36\x93\xfe\xb4\xa5\x90\
\x01\x40\x1b\xd5\xf8\x23\xc0\x5b\xa9\x6d\xea\xe3\xe3\x7d\x52\xe3\
\xa8\x02\xbf\x0d\xfc\x42\x36\x93\x2e\x59\x0e\x19\x00\xb4\x9e\xcd\
\xbf\x1b\xf8\x30\xf0\x9f\xac\x86\xd4\xb0\x86\x81\x1f\xce\x66\xd2\
\xa3\x96\x42\x06\x00\xad\x47\xf3\x7f\x36\xf0\x29\xe0\x5a\xab\x21\
\x35\xbc\x31\xe0\x47\xdc\x41\x50\x06\x00\xad\xb5\xf9\xdf\x0e\xfc\
\x3e\x90\xb2\x1a\x52\xd3\x28\x01\xef\xc8\x66\xd2\xbf\x69\x29\x64\
\x00\xd0\x6a\x1b\x7f\x0b\xf0\x3e\xe0\x27\xad\x86\xd4\xb4\xfe\x07\
\xb5\x1d\x04\xdd\x46\x58\x06\x00\x5d\x51\xf3\xef\xaf\x7f\x71\xb8\
\xb1\x8f\xd4\xfc\x0e\x03\xdf\x97\xcd\xa4\x8f\x59\x0a\x19\x00\x74\
\xa9\xe6\xff\x2d\xc0\x67\x81\x43\x56\x43\x0a\x8c\x73\xc0\x0f\x66\
\x33\xe9\x2f\x59\x0a\x19\x00\x74\xa1\xe6\xff\x9d\xd4\x6e\xf6\xdb\
\x66\x35\xa4\xc0\x59\xa6\x76\x39\xe0\x2f\x2d\x85\x0c\x00\x3a\xbf\
\xf9\xff\x38\xf0\x41\x20\x61\x35\xa4\xc0\xaa\x00\xbf\x9c\xcd\xa4\
\xdf\x65\x29\x64\x00\xb0\xf1\x47\x80\x77\x51\x7b\x93\x9f\xf5\x93\
\xc2\xe1\x43\xc0\x6b\xb3\x99\x74\xd1\x52\xc8\x00\x10\xce\xe6\x9f\
\xa2\xf6\x16\xbf\x57\x5a\x0d\x29\x74\x3e\x0f\xfc\x50\x36\x93\x9e\
\xb1\x14\x32\x00\x84\xab\xf9\xf7\x00\x7f\x0f\xa4\xad\x86\x14\x5a\
\x0f\x01\x2f\xcb\x66\xd2\xa7\x2d\x85\x0c\x00\xe1\x68\xfe\x03\xc0\
\xff\x02\x9e\x6d\x35\xa4\xd0\x3b\x06\xdc\xec\x1b\x05\x65\x00\x08\
\x7e\xf3\xdf\x03\x7c\x0e\xb8\xde\x6a\x48\xaa\x3b\x0b\xbc\x34\x9b\
\x49\x1f\xb6\x14\x32\x00\x04\xb3\xf9\x5f\x0b\xdc\x0d\x1c\xb0\x1a\
\x92\x9e\x62\x02\xf8\xae\x6c\x26\x7d\x8f\xa5\x90\x01\x20\x58\xcd\
\xff\x86\x7a\xf3\xdf\x69\x35\x24\x5d\xc4\x1c\xf0\xbd\xd9\x4c\xfa\
\x8b\x96\x42\x06\x80\x60\x34\xff\x7f\x0f\xfc\x03\xd0\x67\x35\x24\
\x5d\x46\x0e\x78\x79\x36\x93\xbe\xdb\x52\xc8\x00\xd0\xdc\xcd\xff\
\x45\xc0\xdf\x02\x5d\x56\x43\xd2\x15\xca\x03\x3f\x9c\xcd\xa4\x3f\
\x63\x29\x64\x00\x68\xce\xe6\xff\x1f\xeb\x67\xfe\xed\x56\x23\x60\
\x13\x3d\x12\x21\x99\x4c\x90\x4c\x24\x88\xc5\xe3\xc4\x63\x31\xe2\
\xb1\x18\xb1\xf8\x37\x7e\xc6\x62\x71\xa2\x91\x08\x91\x48\x84\x48\
\x34\xf2\x8d\x7f\xae\x7f\x00\x2a\x95\x2a\xd5\x6a\x85\x6a\xb5\x4a\
\xb5\x5a\xa5\x52\xad\x52\xad\x54\x29\x57\xca\x94\x4b\x65\x4a\xe5\
\x32\xe5\x72\x99\x52\xe9\x89\x9f\x25\x8a\xa5\x12\x85\x42\x91\x72\
\xb9\xec\x40\x04\x5b\x11\x78\x65\x36\x93\xfe\x1b\x4b\x21\x03\x40\
\x73\x35\xff\xe7\x02\x43\x40\xb7\xd5\x68\x4e\xd1\x68\x94\xd6\xd6\
\x16\x5a\x5b\x5a\x48\x26\x93\xb5\x86\x9f\x4c\x90\x4c\x24\x89\xc7\
\x63\x4f\x36\xf1\xad\x52\x2e\x97\x29\x14\x8b\x14\x0a\x45\x0a\x85\
\x02\x85\x62\x91\xfc\x4a\x9e\xe5\x95\x3c\xa5\x52\xc9\x01\x0c\x86\
\x15\xe0\x07\xbc\x1c\x20\x03\x40\xf3\x34\xff\x67\x01\x5f\xc0\x6b\
\xfe\x4d\x23\x99\x4c\x90\x6a\x6d\xa5\xb5\xb5\x95\x54\xaa\x85\xd6\
\xd6\x56\x92\x89\xc4\x96\x37\xf9\xab\x55\x2a\x95\x58\x59\xc9\xb3\
\xbc\xb2\x72\xde\xcf\x15\xaa\x55\xc7\xba\x09\xe5\xa8\x3d\x1d\xf0\
\xaf\x96\x42\x06\x80\xc6\x6e\xfe\xd7\x01\xff\x8c\x77\xfb\x37\xee\
\x24\x8d\x40\xaa\x35\x45\x5b\x7b\x8a\xf6\xb6\x36\xda\xdb\xda\x48\
\x24\xe2\x81\x3f\xee\x4a\xa5\xc2\xd2\xd2\x32\xb9\xa5\x65\x72\x4b\
\x4b\x2c\x2d\x2d\x51\x2e\x57\x9c\x10\xcd\x61\x1e\xc8\x66\x33\xe9\
\xaf\x58\x0a\x19\x00\x1a\xb3\xf9\xef\x03\x86\x81\x7d\x4e\x85\xc6\
\x92\x4a\xa5\xe8\xea\x6c\xa7\xa3\xbd\x9d\xb6\xb6\x14\xd1\x68\x34\
\xf4\x35\xa9\x56\xab\xe4\xf3\x05\x16\x73\x39\x16\x16\x72\x2c\xe6\
\x72\x54\x2a\x06\x82\x06\x36\x05\xbc\x24\x9b\x49\xdf\x6f\x29\x64\
\x00\x68\xac\xe6\xbf\x03\xf8\x17\xe0\x3a\xa7\xc1\xd6\x8b\xc5\x62\
\x74\x76\x74\xd0\xd5\xd9\x41\x67\x67\x3b\xf1\x78\xdc\xa2\x5c\x76\
\x85\xa0\x4a\x6e\x69\x89\x85\x85\x05\xe6\x17\x72\xe4\xf3\x79\x8b\
\xd2\x78\xc6\x80\x17\x67\x33\xe9\x47\x2d\x85\x0c\x00\x8d\xd1\xfc\
\xfb\xa8\x5d\xf3\x7f\x96\x53\x60\xeb\x24\x12\x71\x7a\xba\xbb\xe8\
\xee\xee\xa2\x2d\x95\x6a\xda\xeb\xf7\x8d\xa2\x50\x28\x32\x37\x3f\
\xcf\xec\xdc\x3c\x4b\x4b\xcb\x16\xa4\x71\x9c\x02\x5e\x94\xcd\xa4\
\x8f\x5b\x0a\x19\x00\xb6\xb6\xf9\xa7\xa8\xbd\xd6\xf3\x05\x0e\xff\
\xe6\x8b\xc7\x6b\x4d\xbf\xa7\xbb\x8b\xb6\x36\x9b\xfe\x46\x86\x81\
\xd9\xb9\x39\x66\xe7\xe6\x59\x5e\x5e\xb1\x20\x5b\xef\x08\x90\xce\
\x66\xd2\x53\x96\x42\x06\x80\xad\x69\xfe\x51\xe0\x93\xc0\x2b\x1c\
\xfa\xcd\x13\x8d\x46\xe9\xe9\xee\x62\x5b\x4f\x37\xed\xed\x6d\x36\
\xfd\x4d\x96\xcf\x17\x98\x9d\x9b\x63\x7a\x66\x96\x42\xa1\x68\x41\
\xb6\xce\xbf\x52\x7b\x8b\xa0\xd7\x6a\x64\x00\xd8\x82\x00\xf0\x5b\
\xc0\xcf\x39\xec\x9b\xa3\x2d\x95\xa2\xb7\xb7\x87\x9e\xee\x2e\x62\
\xb1\x98\x05\xd9\x62\xd5\x6a\x95\xc5\x5c\x8e\xe9\xe9\x59\xe6\xe6\
\x17\xa8\xfa\x8c\xe1\x56\xf8\x73\xe0\x96\x6c\x26\x6d\xf1\xb5\xe5\
\x42\x73\xa7\xd5\xd0\xf0\xc8\xeb\x6c\xfe\x1b\x2f\x16\x8b\xb2\xad\
\xa7\x87\xde\xde\x1e\x52\xad\xad\x16\xa4\x91\xd2\x7e\x24\x42\x67\
\x47\x07\x9d\x1d\x1d\x94\x4a\x25\x66\x66\xe7\x98\x9a\x9e\x21\x9f\
\x2f\x58\x9c\xcd\xf3\x23\xc0\x51\xe0\x1d\x96\x42\xae\x00\x6c\x4e\
\xf3\xff\x1e\xe0\x33\x61\x0a\x3c\x9b\x2d\x99\x4c\xb0\xbd\xaf\x8f\
\xbe\xde\x1e\x1f\xd9\x6b\xaa\x55\x01\x58\x58\x5c\x64\x62\x72\x8a\
\xc5\xc5\x9c\x05\xd9\xa4\xb2\x03\x3f\x91\xcd\xa4\xff\xc4\x52\xc8\
\x00\xb0\xb1\xcd\xff\xd9\xd4\x9e\xf5\xef\x74\xb8\xd7\x5f\x5b\xaa\
\x95\xfe\xed\x7d\x74\x77\x77\x79\x6d\xbf\xc9\x2d\x2f\xaf\x70\x6e\
\x72\x8a\xb9\xb9\x39\x77\x20\xdc\x78\x45\xe0\x7b\xb2\x99\xf4\xe7\
\x2c\x85\x0c\x00\x1b\xd3\xfc\x77\x03\x5f\x02\xf6\x38\xd4\xeb\xab\
\xab\xb3\x83\xfe\xfe\x3e\x3a\xda\x7d\x6f\x52\xd0\x14\x8a\x45\x26\
\x27\xa7\x99\x9a\x9e\x71\xa3\xa1\x8d\x35\x0b\xfc\xc7\x6c\x26\xfd\
\xa0\xa5\x90\x01\x60\x7d\x9b\x7f\x1b\xf0\x45\xe0\xdf\x39\xcc\xeb\
\xa7\xb3\xa3\x9d\x1d\x83\x03\xb4\xb5\xa5\x2c\x46\xc0\x95\x4a\x25\
\xce\x4d\x4c\x31\x39\x35\xed\x0d\x83\x1b\xe7\x04\xf0\xbc\x6c\x26\
\x3d\x61\x29\x64\x00\x58\xbf\x00\xf0\x31\xe0\x56\x87\x78\x7d\x74\
\xb4\xb7\xb1\x63\x70\x80\xf6\xf6\x36\x8b\x11\x32\xc5\x62\x89\x73\
\x13\x13\x4c\x4d\xcf\x1a\x04\x36\xc6\x3f\x01\x2f\xcb\x66\xd2\xbe\
\x2f\x5a\x06\x80\x75\x68\xfe\x6f\x00\xde\xe7\xf0\xae\x5d\x5b\x5b\
\x8a\x9d\x83\x03\x74\x74\xb8\xd4\x1f\x76\x85\x62\x91\xf1\xf1\x49\
\xa6\x67\x66\x2c\xc6\xfa\xbb\x33\x9b\x49\xff\x82\x65\x90\x01\x60\
\x6d\xcd\x3f\x4d\x6d\x9b\xdf\xa4\xc3\x7b\xf5\x12\x89\x38\x3b\x77\
\x0c\xd2\xd3\xdd\x8d\xf7\xf6\xe9\x7c\x2b\x2b\x79\xce\x8c\x8e\xf9\
\xd4\xc0\xfa\xaa\x02\xaf\xc8\x66\xd2\xff\xc3\x52\xc8\x00\x70\x75\
\xcd\x7f\x00\xf8\x2a\xde\xf4\x77\xf5\x13\x22\x12\x61\xa0\x7f\x3b\
\x03\xfd\x7d\x3e\xce\xa7\x4b\x9a\x9b\x5f\xe0\xec\xe8\x38\x85\x82\
\xfb\x08\xac\x57\x49\xa9\xdd\x0f\x70\xc4\x52\xc8\x00\xb0\xba\xe6\
\x1f\x03\xee\x06\x5e\xe2\xb0\x5e\x9d\x9e\xee\x2e\x76\xee\x18\x24\
\x99\x4c\x58\x0c\x5d\x91\x4a\xb5\xca\xe4\xe4\x14\xe3\xe7\x26\x7d\
\x62\x60\x7d\xdc\x0f\xbc\x30\x9b\x49\x2f\x59\x0a\x6d\xb4\x20\x6d\
\x8c\xf3\x2e\x9b\xff\xd5\x49\x26\x93\xec\xdd\xbd\xd3\xeb\xfc\x5a\
\xb5\x68\x7d\xc5\x68\x5b\x4f\x0f\x67\xce\x8e\x32\x37\xbf\x60\x51\
\xd6\xe6\xdb\x80\x3f\xc2\x1b\x98\xe5\x0a\xc0\x15\x9f\xfd\xbf\x02\
\xf8\x14\x21\x7d\xbd\xf1\x5a\x0c\xf4\xf7\x31\x38\xd0\xef\x72\xbf\
\xd6\xc5\xdc\xfc\x02\x67\xce\x8c\x52\x2c\x95\x2c\xc6\xda\xbc\x31\
\x9b\x49\xbf\xdf\x32\xc8\x00\x70\xe9\xe6\xbf\x1f\xb8\x17\xe8\x76\
\x38\xaf\x5c\x2a\xd5\xca\xde\xdd\xbb\x48\xa5\xdc\xaf\x5f\xeb\xab\
\x5c\x2e\x33\x3a\x76\x8e\xa9\x69\x9f\x16\x58\x83\x02\xb5\xd7\x07\
\xdf\x63\x29\x64\x00\xb8\x70\xf3\x8f\x52\x7b\x86\xf6\xc5\x0e\xe5\
\x15\x0e\x78\x24\xc2\x8e\xc1\x7e\xfa\xb7\xf7\xb9\x75\xaf\x36\xd4\
\x62\x6e\x89\x53\xa7\xcf\x7a\x93\xe0\xd5\x7b\x08\x78\x6e\x36\x93\
\x5e\xb6\x14\xda\x08\xcd\x7e\x0f\xc0\x5b\x6c\xfe\x57\xae\xb5\xb5\
\x85\x7d\x7b\x77\xfb\x96\x3e\x6d\x8a\x8e\xf6\x36\xae\xbf\xee\x10\
\x67\xce\x8e\x31\x3d\x33\x6b\x41\x56\xef\x5b\x81\x77\x03\x3f\x63\
\x29\xe4\x0a\xc0\x37\x9f\xfd\x3f\x1b\xf8\x32\xd0\xe2\x30\x5e\xde\
\xf6\xbe\x5e\x76\xee\x18\xf0\x5a\xbf\xb6\xc4\xdc\xdc\x3c\xa7\xce\
\x8c\x52\x2e\xbb\xd9\xdd\x2a\x55\x81\xef\xca\x66\xd2\xff\xcb\x52\
\xc8\x00\x50\x6b\xfe\x2d\xc0\x57\x80\x67\x39\x84\x97\x16\x8f\xc7\
\xd9\xb7\x67\x17\x9d\x9d\x1d\x16\x43\x5b\xaa\x58\x2c\x72\xf2\xf4\
\x59\x37\x10\x5a\xbd\x33\xc0\xb7\x67\x33\xe9\x69\x4b\xa1\x75\xed\
\x0f\x4d\xfa\xf7\xfe\x7f\x6d\xfe\x97\xd7\xd5\xd9\xc1\xde\x3d\xbb\
\x88\xc7\xe3\x16\x43\x5b\x2e\x91\x48\x70\xe8\xc0\x3e\x26\x26\xa7\
\x18\x1d\x3b\x67\x41\xae\xdc\x6e\xe0\x83\xc0\x7f\xb6\x14\x0a\xf5\
\x0a\xc0\xd0\xf0\xc8\x77\x52\xdb\xf0\xc7\xb5\xec\x4b\x18\x1c\xe8\
\x67\x70\x60\xbb\x37\xfa\xa9\x21\x2d\xe6\x96\x38\x71\xf2\x14\xa5\
\x92\x97\x04\x56\xe1\xc7\xb2\x99\xf4\x9f\x5a\x06\x85\x32\x00\x0c\
\x0d\x8f\xf4\x00\xf7\x01\x7b\x1d\xba\x0b\x8b\xc5\xa2\xec\xdb\xb3\
\x9b\xae\xae\x4e\x8b\xa1\x86\x56\x2c\x16\x39\x7e\xf2\x34\x4b\x4b\
\xde\xe4\x7e\x85\xe6\xa8\x5d\x0a\x38\x69\x29\xb4\x1e\x9a\x6d\x6d\
\xf8\xb7\x6d\xfe\x17\xd7\xda\xda\xc2\x81\x7d\x7b\x69\x69\xf1\x3d\
\x48\x6a\x7c\x89\x44\x82\x6b\x0f\x1d\xe0\xcc\xd9\x31\xf7\x0c\xb8\
\x32\xdd\xc0\x1f\x02\xdf\x65\x29\x14\xaa\x15\x80\xa1\xe1\x91\x17\
\x03\x9f\xc7\xdd\xfe\x2e\xa8\xa7\xbb\x8b\xbd\x7b\x76\x79\x97\xbf\
\x9a\xd2\xf4\xcc\x2c\xa7\xcf\x8c\x52\xad\x56\x2d\xc6\xe5\xdd\x92\
\xcd\xa4\xff\xcc\x32\x28\x14\x01\xa0\x7e\xd7\xff\xd7\x81\x6f\x71\
\xc8\x9e\x6e\x70\x60\x3b\x83\x03\x03\xbe\xb6\x57\x4d\x6d\x31\xb7\
\xc4\xf1\x13\xa7\x7c\x54\xf0\xf2\xc6\x81\x6f\xcd\x66\xd2\x2e\x9b\
\x68\x4d\x9a\xe5\x12\xc0\xcf\xdb\xfc\x2f\x90\xde\x22\x11\xf6\xec\
\xde\x49\xef\xb6\x1e\x8b\xa1\xa6\xd7\xd1\xde\xc6\x75\xd7\x1c\xe4\
\xe8\xf1\x13\x14\x0a\x45\x0b\x72\x89\xcc\x0f\xdc\x09\xbc\xd6\x52\
\x28\xd0\x2b\x00\x43\xc3\x23\xd7\x53\xdb\xeb\xdf\x0d\x7f\xce\x13\
\x8b\x46\x39\xb0\x7f\xaf\x6f\xf0\x53\xe0\x94\x4a\x25\x8e\x9d\x38\
\xe5\xcd\x81\x97\x56\x01\x5e\x94\xcd\xa4\xbf\x68\x29\x14\xc8\x00\
\x30\x34\x3c\x12\xa1\x76\xdd\xdf\xed\x7e\xcf\x93\x4c\x24\x38\x78\
\x60\x1f\xad\xad\x66\x22\x05\xb4\xbb\x55\x2a\x9c\x3a\x7d\x96\xd9\
\xb9\x79\x8b\x71\x71\x0f\x02\xcf\xc9\x66\xd2\x2e\x97\xe8\xaa\x34\
\xfa\x25\x80\xff\x62\xf3\xff\x66\xad\x2d\x2d\x1c\x3a\xb8\x9f\x44\
\xc2\xcd\x7d\x14\x5c\xd1\x68\x94\x7d\x7b\x77\x13\x8b\xc5\x7c\x42\
\xe0\xe2\x6e\x00\xde\x0a\xbc\xcb\x52\x28\x50\x2b\x00\x43\xc3\x23\
\xfd\xd4\xde\x86\xd5\xe7\x30\xd5\xa4\x52\xad\x1c\x3a\xb0\xcf\x9d\
\xfd\x14\x2a\x67\x47\xc7\x99\x98\x9c\xb2\x10\x17\xb6\x0c\x7c\x5b\
\x36\x93\x7e\xdc\x52\x28\x48\x2b\x00\xef\xb2\xf9\x7f\x43\x7b\x5b\
\x8a\x83\x07\xf6\x11\x8b\xc5\x2c\x86\x42\x65\xd7\xce\x41\xa2\xd1\
\x28\xe3\xe7\x26\x2c\xc6\x05\xce\x0b\x80\xdf\x05\xbe\xdf\x52\x28\
\x10\x2b\x00\x43\xc3\x23\xdf\x0e\xdc\x03\xd8\xed\x80\x8e\x8e\x76\
\x0e\xee\xdf\xeb\x33\xfe\x0a\xb5\x73\x13\x53\x8c\x8e\x8d\x5b\x88\
\x0b\xbb\x39\x9b\x49\x0f\x59\x06\x05\x21\x00\xfc\x23\xf0\x32\x87\
\xa7\xf6\x42\x9f\xfd\xfb\xf6\xd8\xfc\x25\x60\x72\x6a\x86\x33\x67\
\x47\x2d\xc4\xd3\xdd\x0b\xdc\x98\xcd\xa4\x2b\x96\x42\x57\xaa\xe1\
\x2e\x01\x0c\x0d\x8f\x7c\xb7\xcd\xff\x1b\x67\xfe\x36\x7f\xe9\x1b\
\xb6\xf7\x6d\xa3\x5a\xad\x70\x76\xd4\x95\x80\xa7\x78\x36\x70\x3b\
\xf0\x27\x96\x42\x4d\xb9\x02\x30\x34\x3c\x12\xab\x27\xd9\x1b\xc2\
\x3e\x30\xed\x6d\x29\x0e\x1d\xdc\x6f\xf3\x97\x2e\x60\xfc\xdc\x04\
\x63\xe3\xde\x13\xf0\x14\xa3\xc0\x75\xd9\x4c\x3a\x67\x29\xd4\x8c\
\x2b\x00\x3f\x61\xf3\xaf\xdd\xed\x7f\xf0\xc0\x3e\x9b\xbf\x74\x11\
\x83\x03\xfd\x54\x2a\x15\xce\x4d\xf8\x74\xc0\x79\x76\x02\x6f\x03\
\x7e\xd5\x52\xa8\xa9\x56\x00\x86\x86\x47\x3a\x81\x23\xd4\xb6\xb9\
\x0c\xad\xd6\x96\x16\xae\x39\xb4\xdf\x47\xfd\xa4\x2b\x70\xfa\xec\
\x18\x53\x53\xd3\x16\xe2\x1b\x96\x80\x67\x64\x33\xe9\x33\x96\x42\
\xcd\xb4\x02\xf0\xf3\x61\x6f\xfe\xc9\x44\x82\x43\x07\x6d\xfe\xd2\
\x95\xda\xbd\x73\x90\x4a\xb9\xcc\xcc\xec\x9c\xc5\xa8\x69\x03\xde\
\x49\xed\x7e\x00\xa9\xf1\x57\x00\x86\x86\x47\x76\x02\x8f\x53\x7b\
\xa6\x35\x94\x62\xd1\x28\xd7\x5e\x73\xd0\xed\x7d\xa5\x55\xaa\x56\
\xab\x1c\x3d\x76\x82\xc5\xdc\x92\xc5\xa8\xa9\x50\xdb\x22\xf8\x3e\
\x4b\xa1\x66\x58\x01\x78\x7b\x98\x9b\x7f\x24\x12\xe1\xc0\xfe\xbd\
\x36\x7f\x69\x0d\xbf\x3f\x47\x1e\x3f\x4e\x3e\x9f\xb7\x20\x10\x05\
\x7e\x05\x78\xa5\xa5\x50\x43\xaf\x00\x0c\x0d\x8f\xec\x00\x8e\x86\
\x39\x00\xec\xdd\xb3\xcb\x57\xfa\x4a\x6b\x54\x28\x14\x38\xf2\xf8\
\x31\x4a\xa5\xb2\xc5\xa8\xad\x02\x3c\x3b\x9b\x49\x3f\x60\x29\xd4\
\xc8\x2b\x00\x6f\x0d\x73\xf3\x1f\x1c\xd8\x6e\xf3\x97\xd6\x41\x32\
\x99\xe4\xe0\xfe\x7d\x3c\x7e\xf4\x38\x95\x6a\xd5\x55\x00\xf8\x65\
\xe0\x87\x9d\x19\x6a\xc8\x15\x80\xa1\xe1\x91\x01\xe0\x18\xb5\x1b\
\x57\x42\xa7\xa7\xbb\x8b\x7d\x7b\xf7\x10\x89\x38\x11\xa5\xf5\x32\
\x37\x37\xcf\xf1\x93\xa7\x2d\x44\x6d\x15\xe0\xdb\xb2\x99\xf4\x61\
\x4b\xa1\x46\x5c\x01\x78\x6b\x58\x9b\x7f\x6b\x6b\x0b\x7b\xf7\xec\
\xb2\xf9\x4b\xeb\xac\xbb\xbb\x8b\x81\xfe\xed\x9c\x9b\x98\x74\x15\
\xa0\xb6\x0a\xf0\xa3\xce\x0a\x35\xd4\x0a\x40\xfd\x75\xbf\xc7\x80\
\xf6\xb0\x15\x3d\x16\x8b\x72\xdd\x35\x87\x68\x69\x49\x3a\x03\xa5\
\x0d\x50\xad\x56\x39\x76\xfc\x24\x0b\x8b\xa1\xdf\x14\xaf\x0c\x3c\
\x2b\x9b\x49\x3f\xec\xac\x50\x23\xad\x00\xbc\x25\x8c\xcd\x1f\x60\
\xdf\x9e\xdd\x36\x7f\x69\x23\xcf\x6c\x22\x11\xf6\xed\xdd\xc3\xa3\
\x8f\x1d\xa5\x58\x2c\x86\xb9\x14\xb1\xfa\x2a\xc0\xad\xce\x0a\x35\
\xc4\x0a\xc0\xd0\xf0\x48\x1f\x70\x1c\xe8\x08\x5b\xc1\x07\x07\xfa\
\xd9\x31\xd8\xef\xcc\x93\x36\xc1\xd2\xf2\x32\x8f\x3d\x7e\x9c\x6a\
\xb8\x6f\x0a\x2c\x03\xcf\xcc\x66\xd2\x8f\x3a\x23\xd4\x08\x2b\x00\
\x3f\x1d\xc6\xe6\xdf\xd5\xd9\xc1\xe0\xc0\x76\x67\x9d\xb4\x49\xda\
\x52\x29\xf6\xec\xde\xc1\xa9\xd3\xa1\x7e\x85\x70\x0c\x78\x33\xf0\
\x7a\x67\x84\xb6\x74\x05\x60\x68\x78\x24\x51\x3f\xfb\xdf\x15\xaa\
\xa4\x15\x8f\x73\xfd\x75\x87\xdc\xe6\x57\xda\x02\x27\x4e\x9e\x66\
\x76\x6e\x3e\xcc\x25\xc8\x01\x7b\xb3\x99\xf4\x8c\xb3\x41\x5b\xb9\
\x02\xf0\xaa\xb0\x35\x7f\x80\x7d\x7b\x76\xd9\xfc\xa5\x2d\xb2\x67\
\xf7\x4e\x72\x4b\xcb\x61\xbe\x1f\xa0\x1d\xf8\x49\xe0\x37\x9d\x0d\
\xda\xca\x15\x80\x2f\x03\xcf\x0f\x53\x91\xb7\xf7\xf5\xb2\x7b\xd7\
\x0e\x67\x9b\xb4\x85\x16\x73\x4b\x3c\x7e\xf4\x78\x98\x4b\x70\x12\
\x38\x94\xcd\xa4\xdd\x2a\x51\x9b\xbf\x02\x30\x34\x3c\x92\x0e\x5b\
\xf3\x6f\x6d\x6d\x61\xe7\x8e\x01\x67\x9a\xb4\xc5\x3a\xda\xdb\x18\
\x18\xd8\xce\xb9\x73\xa1\xdd\x1f\x60\x1f\xf0\x0a\xe0\x93\xce\x06\
\x6d\x7a\x00\x00\xde\x14\xa6\xe2\xd6\x1e\x45\xda\x4d\x34\x1a\x75\
\xa6\x49\x0d\x60\xc7\x40\x3f\x8b\x0b\x39\x96\x96\x97\xc3\x5a\x82\
\x37\x19\x00\xf4\x64\x8f\xda\xc4\xb3\xff\x3d\xd4\x5e\xfa\x93\x08\
\x4b\x71\x77\xee\x18\x60\xa0\xdf\xbb\xfe\xa5\x46\x92\xcf\xe7\x79\
\xe4\xc8\xd1\x30\x3f\x1a\xf8\xbc\x6c\x26\xfd\x15\x67\x82\x36\x73\
\x05\xe0\x8e\x30\x35\xff\x54\xaa\x95\xfe\xed\x7d\xce\x30\xa9\xc1\
\xb4\xb4\xb4\x30\x38\xd0\xcf\xd8\xf8\xb9\x30\xaf\x02\xbc\xda\x99\
\xa0\x4d\x59\x01\x18\x1a\x1e\x69\x01\xce\x00\xa1\xe9\x88\xcf\xb8\
\xf6\x10\xa9\x54\xab\x33\x4c\x6a\x40\xd5\x6a\x95\x47\x1f\x3b\xc6\
\xca\xca\x4a\x18\x0f\xbf\x00\xec\xc9\x66\xd2\x13\xce\x04\x57\x00\
\x36\xc3\x0f\x84\xa9\xf9\x0f\xf4\xf7\xd9\xfc\x9b\xc4\x5f\x7c\xf6\
\xb3\xeb\xfe\x67\xde\x74\xe3\x8d\xec\xdd\xb9\xd3\xe2\x36\xf2\x99\
\x4f\x24\xc2\xde\x3d\x3b\x39\xf2\xd8\xb1\x30\x1e\x7e\x12\xb8\x0d\
\x78\x8f\x33\xc1\x00\xb0\x19\x6e\x0f\xcd\x6f\x56\x32\xc9\xe0\x80\
\x5b\xfd\x4a\x8d\xae\x2d\x95\xa2\x7f\x7b\x1f\x13\x93\x53\x61\x3c\
\xfc\xdb\x0d\x00\xda\xf0\x00\x30\x34\x3c\xb2\x0b\x78\x59\x58\x0a\
\xba\x77\xf7\x4e\xef\xfa\x97\x9a\xc4\x8e\xc1\x7e\xe6\xe6\xe7\x29\
\x14\x42\xb7\x41\xd0\xb7\x0f\x0d\x8f\xdc\x98\xcd\xa4\xef\x71\x16\
\x18\x00\x36\xd2\xab\xd9\xda\xb7\x0e\x6e\x9a\x9e\xee\x2e\x3a\x3a\
\xda\x9d\x55\x52\x93\x88\x46\xa3\xec\xda\xb9\x83\xe3\x27\x4e\x85\
\xf1\xf0\xff\x0b\x60\x00\x30\x00\x6c\xa8\xdb\xc3\x50\xc8\x48\x24\
\xc2\xce\x1d\x83\xce\x28\xa9\xc9\x74\x77\x75\xd2\xd1\xde\xce\x62\
\x2e\x17\xb6\x43\xff\xd1\xa1\xe1\x91\xb7\x64\x33\xe9\xbc\xb3\xc0\
\x00\xb0\xee\xea\x3b\xff\x7d\x4b\x18\x0a\x39\xd0\xbf\x9d\x64\x32\
\xe1\x8c\x92\x9a\xd0\xae\x5d\x83\x3c\x7a\xe4\x68\xd8\x0e\xbb\x8f\
\xda\x0d\xda\x6e\x0c\x64\x00\xf0\xec\xff\x6a\x25\x12\x71\x06\xfa\
\x7d\xe6\x5f\x6a\x56\xa9\xd6\x56\xfa\x7a\xb7\x31\x35\x1d\xba\x97\
\xe5\xdd\x6e\x00\x30\x00\x6c\xc4\xd9\x7f\x0a\xf8\xe1\x30\x14\x71\
\xe7\x8e\x41\x6f\xfc\x93\x9a\xdc\x8e\xc1\x7e\x66\x67\xe7\x28\x57\
\x2a\x61\x3a\xec\x97\x0d\x0d\x8f\xec\xca\x66\xd2\x67\x9d\x01\x06\
\x80\xf5\xf4\x7d\x40\x77\xd0\x0b\xd8\xd6\x96\xa2\xa7\xbb\xdb\x99\
\x24\x35\xfb\x97\x61\x3c\xce\xe0\x40\x3f\x67\xc7\xc6\xc3\xd6\x03\
\x7e\x18\x1f\x09\x34\x00\xac\xb3\x57\x84\xe2\xec\x7f\x70\x80\x48\
\xc4\x89\x24\x05\x41\x5f\xdf\x36\x26\x26\xa7\x28\x96\x4a\x61\x3a\
\xec\x57\x18\x00\x0c\x00\xeb\x66\x68\x78\xa4\x15\xf8\xde\xa0\x17\
\xaf\xa3\xbd\xcd\xc7\xfe\xa4\x00\x89\x46\xa3\x0c\x0c\x6c\xe7\xcc\
\xd9\xb1\x30\x1d\xf6\x4d\x43\xc3\x23\x3b\xb2\x99\xf4\x98\x33\xc0\
\x00\xb0\x1e\x5e\x0a\x74\x06\xbd\x78\x3b\x06\x07\x9c\x41\x52\xc0\
\xf4\xf6\x6e\xe3\xdc\xc4\x14\xc5\x62\x68\x36\x07\x8a\x02\x2f\x07\
\x3e\xe0\xe8\x1b\x00\xd6\xc3\x0f\x05\xbd\x70\x9d\x1d\xed\xb4\xb7\
\xb7\x39\x83\xa4\xa0\x75\xc3\x48\x84\xc1\x81\xed\x9c\x3e\x33\x1a\
\xa6\xc3\x7e\x85\x01\xc0\x00\xb0\x66\x43\xc3\x23\x71\xe0\xfb\x3d\
\xfb\x97\xd4\xb4\xab\x00\xdb\x7a\x38\x37\x31\x19\xa6\x2d\x82\xbf\
\x63\x68\x78\xa4\x2f\x9b\x49\x4f\x39\xfa\x06\x80\xb5\x78\x09\xd0\
\x1b\xe4\xa2\x75\x75\x76\xd0\xd6\x96\x72\xf6\x48\x01\x15\x89\x44\
\x18\x1c\xe8\xe7\xd4\xe9\xd0\x3c\x1d\x17\xa7\xb6\x29\xd0\x87\x1c\
\x7d\x03\xc0\x5a\x04\x7e\xf9\xbf\xdf\x4d\x7f\xa4\xc0\xdb\xd6\xd3\
\xcd\xd8\xd8\xb9\x30\x3d\x11\xf0\x43\x06\x00\x03\xc0\x55\x1b\x1a\
\x1e\x89\x02\xff\x29\xc8\x05\x6b\x4b\xb5\xd2\xd1\xee\x9d\xff\x52\
\x18\x56\x01\xb6\x6f\xef\x65\x74\xec\x5c\x58\x0e\xf9\xe6\xa1\xe1\
\x91\xae\x6c\x26\x3d\xef\xe8\x1b\x00\xae\xc6\x73\x81\x40\xbf\x11\
\xa7\x7f\xbb\x67\xff\x52\x58\xf4\xf5\x6e\x63\xfc\xdc\x24\x95\x70\
\xec\x0e\xd8\x02\x64\x81\xbf\x76\xe4\x0d\x00\x57\xe3\xa5\x41\x2e\
\x56\x32\x99\xa0\xbb\xbb\xcb\x59\x23\x85\x44\x2c\x16\xa3\xb7\xb7\
\x87\xc9\xc9\xe9\xb0\x1c\xf2\x4b\x0d\x00\x06\x00\x03\xc0\x05\x6c\
\xef\xeb\x23\xe2\xb6\x7f\x52\xa8\xf4\xf7\xf5\x85\x2d\x00\xc8\x00\
\xb0\x3a\x43\xc3\x23\xed\x40\x3a\xb8\x67\x02\x51\xfa\x7a\x7b\x9c\
\x31\x52\xc8\x24\x93\x09\x7a\x7a\xba\x98\x9d\x0d\xc5\xa5\xf1\x6b\
\x87\x86\x47\x0e\x64\x33\xe9\xe3\x8e\xbc\x01\x60\x35\x5e\x44\xed\
\x1a\x52\x20\x6d\xeb\xe9\xf1\x8d\x7f\x52\x48\xf5\xf5\x6e\x0b\x4b\
\x00\x78\x62\x15\xe0\x8f\x1c\x75\x03\xc0\x6a\x27\x4d\x60\xf5\x7a\
\xf6\x2f\x85\x56\x47\x7b\x3b\x2d\x2d\x49\xf2\xf9\x42\x18\x0e\xf7\
\x66\x03\x80\x01\xe0\x6a\x26\x4d\x20\xb5\xa5\x52\xa4\x5a\x5b\x9d\
\x2d\x52\x88\xf5\x6e\xeb\x09\xcb\x23\x81\xd9\xa1\xe1\x91\x68\x36\
\x93\xae\x38\xea\x06\x80\xcb\x1a\x1a\x1e\xd9\x09\x3c\xcb\xb3\x7f\
\x49\x41\x0e\x00\x63\xe3\x13\x54\xab\xd5\xa0\x1f\x6a\x1f\x70\x23\
\xf0\x15\x47\xdd\x00\x70\xa5\x67\xff\x81\xbc\x3d\x3e\x1a\x8d\xd2\
\xe3\xa3\x7f\x92\x5f\x96\xf1\x38\x5d\x5d\x9d\xcc\xcd\x85\xe2\x5e\
\x80\x9b\x0d\x00\x06\x80\x2b\xf5\x1f\x83\x5a\xa0\x9e\xee\x2e\x62\
\xb1\x98\x33\x45\x12\x7d\xbd\x3d\x61\x09\x00\x19\xe0\x4e\x47\xdc\
\x00\x70\x25\x5e\x18\xd4\x02\x6d\xeb\xe9\x76\x96\x48\x02\x6a\x37\
\x03\xc6\xe3\x71\x4a\xc1\x7f\x3f\xc0\x0b\x1c\x6d\x03\xc0\x65\x0d\
\x0d\x8f\x74\x02\x37\x04\xb2\x38\xf1\x38\xed\xed\x6d\xce\x12\x49\
\x40\xed\xfd\x00\x3d\xdd\x5d\x4c\x4e\x05\x7e\x63\xa0\xbe\xa1\xe1\
\x91\x67\x64\x33\xe9\x47\x1d\x75\x03\xc0\xa5\x3c\x0f\x08\xe4\x1a\
\x79\x4f\x77\x97\x3b\xff\x49\x7a\xda\xf7\x42\x08\x02\x00\xd4\x56\
\x76\x0d\x00\x06\x80\x4b\x4a\x07\xf9\x17\x5d\x92\xce\xd7\xd6\x96\
\x22\x91\x88\x53\x2c\x06\xfe\x32\xc0\x0b\x81\x8f\x3a\xe2\x06\x80\
\xcb\x4d\x92\xc0\x49\x24\xe2\xb4\xb5\xa5\x9c\x21\x92\xbe\x49\x24\
\x12\xa1\xbb\x2b\x14\xab\x00\x69\x47\xdb\x00\x70\x39\x81\xbc\x59\
\xc4\xe5\x7f\x49\x17\xfd\x7e\xe8\x09\x45\x00\x78\xd6\xd0\xf0\x48\
\x7b\x36\x93\xce\x39\xe2\x06\x80\xa7\x19\x1a\x1e\xb9\x16\xe8\x0f\
\x62\x61\x7c\xed\xaf\xa4\x8b\x69\x4b\xa5\x48\xc4\xe3\x14\x83\xfd\
\x34\x40\x9c\xda\x3d\x5e\x5f\x70\xc4\x0d\x00\x17\x12\xc8\xe5\xff\
\x58\x2c\x46\x5b\xca\xe5\x7f\x49\x17\x16\x89\x44\xe8\xec\xec\x60\
\x7a\x66\x36\xe8\x87\xfa\x42\x03\x80\x01\xe0\x62\xfe\x5d\x10\x8b\
\xd2\xd9\xd1\xe1\xf2\xbf\xa4\x4b\xea\x0a\x47\x00\x78\xb6\x23\x6d\
\x00\xb8\x98\x67\x06\xf5\x17\x5b\x92\x2e\xa5\xa3\xa3\x9d\x48\x04\
\x02\xfe\x6a\x80\x1b\x1c\x69\x03\x40\xa8\x26\x47\x67\x67\xbb\x33\
\x43\xd2\x25\xc5\x62\x31\xda\xda\xda\xc8\xe5\x96\x82\x7c\x98\xd7\
\x0f\x0d\x8f\xc4\xb3\x99\x74\xc9\x11\x37\x00\x3c\x69\x68\x78\xa4\
\x0b\xd8\x1b\xb4\x82\xa4\x52\x29\xe2\xf1\xb8\x33\x43\xd2\x65\x75\
\x75\x76\x04\x3d\x00\x24\x81\xeb\x80\x87\x1c\x6d\x03\xc0\xf9\x9e\
\x49\x00\xdf\x00\xd8\xe5\xd9\xbf\xa4\x2b\xd4\xd9\xd9\xc1\xe8\xd8\
\xb9\xa0\x1f\xe6\x0d\x06\x00\x03\xc0\x85\x26\x45\xe0\x74\xb4\x1b\
\x00\x24\x5d\x99\x54\x6b\x2b\xf1\x58\x8c\x52\xb9\x1c\xf4\x00\xf0\
\x29\x47\xdb\x00\x10\xe8\x00\x10\x89\xe0\xee\x7f\x92\x56\xa5\xad\
\xbd\x8d\xf9\xf9\x85\xa0\x07\x00\x19\x00\x82\x3d\x29\x52\xad\x29\
\xa2\xd1\xa8\xb3\x42\xd2\x15\x6b\x6f\x4b\x19\x00\x64\x00\x68\xfe\
\x24\xef\xd9\xbf\xa4\xd5\x06\x80\xc0\xbf\x32\xfc\xba\xa1\xe1\x91\
\x44\x36\x93\x2e\x3a\xda\x06\x00\x86\x86\x47\x52\xc0\x2e\x7f\x91\
\x25\x85\x5d\x2a\x95\x22\x12\x89\x50\x0d\xee\x86\x00\x09\xe0\x00\
\x70\xc4\xd1\x36\x00\x00\xec\x23\x80\x4f\x00\x18\x00\x24\xad\x56\
\x34\x1a\xa1\x2d\x95\x22\xb7\x14\xe8\xc7\x01\xf7\x1b\x00\x0c\x00\
\xe7\x4f\x86\x40\x49\x26\x13\x24\x12\x3e\xff\x2f\x69\xf5\xda\xda\
\x43\x11\x00\x64\x00\x78\x72\x05\x20\x50\x52\xad\xad\xce\x06\x49\
\x7e\x7f\x18\x00\x0c\x00\x61\x0b\x00\xad\x06\x00\x49\x06\x80\xd0\
\x7c\xe7\xcb\x4b\x00\xdf\xf8\x05\x4e\xb5\x38\x1b\x24\x5d\x95\x96\
\x96\x64\xd0\x6f\x04\x74\x05\xc0\x00\x10\xdc\xc9\xe0\x0a\x80\xa4\
\xab\x15\x89\x44\x68\x6d\x69\x61\x79\x65\xc5\x00\xa0\xc0\x07\x80\
\x40\x2d\x07\x45\xa3\x51\x92\x89\x84\xb3\x41\xd2\x1a\x4e\x22\x02\
\x1d\x00\xf6\x0c\x0d\x8f\xc4\xb2\x99\x74\xd9\x91\x0e\x71\x00\x18\
\x1a\x1e\x89\x02\x7b\x82\xf6\x8b\x1b\x89\x44\x9c\x0d\x92\xd6\xf0\
\x3d\xd2\x0a\xcc\x05\xf5\xf0\x12\xd4\xf6\x7e\x39\xe5\x48\x87\x7b\
\x05\xa0\xbf\x3e\x19\x82\xf3\x8b\xdb\xe2\xf5\x7f\x49\x6b\x93\x6a\
\x0d\xfc\xf7\x88\x01\xc0\x00\x40\x5f\xd0\x8a\x90\x4c\x26\x9d\x09\
\x92\xfc\x1e\xb9\xb4\x5e\x47\xd9\x00\xd0\x1b\xbc\x5f\x5c\xaf\xff\
\x4b\xf2\x7b\xc4\x00\x60\x00\x08\xe1\x0a\x80\x01\x40\xd2\xda\x44\
\x22\x11\x12\x89\x38\xc5\x62\x29\xa8\x87\xd8\xe7\x28\x1b\x00\x82\
\x17\x00\x12\x5e\x02\x90\xb4\x1e\x27\x13\xc9\x20\x07\x00\x57\x00\
\x0c\x00\xc1\x0a\x00\x91\x48\x84\x78\x3c\xe6\x4c\x90\xb4\x0e\x27\
\x13\x09\x72\xc1\x3d\x3c\x03\x80\x01\x20\x58\x93\x20\x99\x4c\xf8\
\x08\xa0\xa4\x75\xfb\x3e\x09\x30\x03\x80\x01\x20\x58\x2b\x00\x6e\
\x00\x24\x69\xfd\xbe\x4f\x02\x7d\x39\xd1\x7b\x00\x0c\x00\xc1\x4a\
\x81\xb1\xb8\xaf\x00\x96\xb4\x4e\x5f\xa8\xc1\xbe\x9c\xe8\x0a\x80\
\x01\x80\x9e\x40\x15\x20\xe6\xf5\x7f\x49\xeb\x75\x42\x11\xe8\xef\
\x93\x6e\x47\xd8\x00\x10\xa8\x35\x2e\x03\x80\x24\xbf\x4f\xc2\xf7\
\xdd\xaf\xab\x0b\x00\x81\xda\xef\x32\x16\xf2\x27\x00\xfe\xe2\xb3\
\x9f\xf5\xb7\x60\x9d\xfd\xdb\x3d\xf7\x84\xfa\xf8\x6f\xba\xf1\x46\
\xf6\xee\xdc\x19\xce\x15\x80\x58\xa0\x2f\x29\xba\x67\xba\x01\xc0\
\x15\x00\x49\xba\x70\x00\x88\xba\x02\x20\x03\x80\x2b\x00\x92\xc2\
\x26\x12\x89\x10\x8b\xc5\x28\x97\x03\xf9\xd6\x5c\x03\x80\x01\x20\
\x60\x01\x20\xe6\x53\x00\x92\xd6\xf1\x4b\xd5\x00\x20\x03\x40\x73\
\x88\xba\x09\x90\xa4\xf5\x5c\x05\x88\x06\xf6\x3b\xc5\x00\x60\x00\
\x08\xd6\x24\x70\x17\x40\x49\x7e\xa7\x5c\xd9\xf9\xd2\xd0\xf0\x48\
\x2c\x9b\x49\x97\x1d\x65\x03\x80\x69\x5d\x92\xc2\x75\x52\xd1\x02\
\x2c\x39\xca\xe1\x0d\x00\x81\xba\x68\xee\x25\x00\x49\x06\x80\x70\
\x7e\xff\x1b\x00\x56\xaf\xe4\x2f\xab\x24\x85\xf2\xa4\xa2\xe8\x08\
\x87\x3b\x00\x14\x0c\x00\x92\x14\xca\xef\x94\x82\x23\x6c\x00\xf0\
\x97\x55\x92\xc2\xf5\x9d\x52\xf6\x06\x40\x03\x40\xde\xb2\x49\xd2\
\x85\x55\xab\x55\xcf\xfe\xe5\x0a\x40\x33\xa8\x54\xaa\xc4\x62\xae\
\x02\x48\x32\x00\x18\x00\x0c\x00\xa1\x9a\x04\xd5\x6a\x05\x88\x3a\
\x13\x24\x19\x00\x0c\x00\x06\x80\x70\x05\x80\xaa\xb3\x40\x92\xdf\
\x29\x06\x00\x03\x80\x01\x40\x92\xae\x5e\xc5\x00\xa0\x00\x07\x80\
\xbc\xbf\xac\x92\x14\xba\x93\x0a\x6f\x00\x37\x00\x30\x1b\xa8\x5f\
\xd6\x8a\x01\x40\x92\x01\xe0\x0a\xcc\x39\xba\x06\x80\xa9\x20\x15\
\xa0\x5c\xf1\xb1\x56\x49\xeb\xf8\x9d\x52\xae\x04\xf5\xd0\xa6\x1c\
\x5d\x03\xc0\x74\xa0\x7e\x59\x4b\x06\x00\x49\xeb\x19\x00\x02\xfb\
\x9d\x32\xed\xe8\x1a\x00\x02\x95\x02\x4b\x65\x03\x80\xa4\x75\x6a\
\xfe\x95\x4a\x90\x2f\x01\x18\x00\x0c\x00\x01\x5b\x01\x08\x79\x00\
\xb8\xe9\xc6\x1b\x43\x7d\xfc\xff\x76\xcf\x3d\xeb\xfe\x67\x5e\x7f\
\xe8\x10\x7d\x3d\x3d\xa1\xad\x69\xdf\xb6\x6d\xe1\x0d\x00\xa5\x52\
\x90\x0f\xcf\x00\x60\x00\x08\xd8\x0a\x40\xc8\x2f\x01\xec\xdd\xb9\
\xd3\xdf\x82\xf5\x6e\x80\x3d\x3d\xd6\x35\xa4\x02\xbe\xa2\x68\x00\
\x30\x00\x04\xec\x26\x40\x2f\x01\x48\x5a\xb7\x15\x80\x40\x7f\x9f\
\x78\x13\xa0\x01\x20\x68\x2b\x00\x25\x67\x81\x24\x57\x00\x5c\x01\
\x30\x00\x84\x6d\x12\x14\x0d\x00\x92\xd6\xeb\xfb\xa4\x58\x74\x05\
\x40\x81\x0e\x00\x93\xd4\xb6\x84\x4c\x06\xa1\x00\x85\x42\xd1\x59\
\x20\xc9\xef\x93\xcb\x3b\xeb\x08\x87\x3c\x00\x64\x33\xe9\xca\xd0\
\xf0\xc8\x29\xe0\x9a\x20\x14\xa0\x5c\x2e\x53\x2e\x97\x89\xc5\x62\
\xce\x06\x49\x06\x80\x8b\x1c\x1a\x30\xea\x08\xbb\x02\x00\x70\x22\
\x28\x01\x00\xa0\x50\x2c\x92\x32\x00\x48\x5a\xf3\x77\x49\x60\xdf\
\x97\x73\x2a\x9b\x49\x57\x1c\x61\x03\x00\xc0\xc9\xa0\xa5\xf6\x54\
\x6b\xab\xb3\x41\xd2\x55\xab\x56\xab\x41\x5e\x01\x38\xe1\x08\x1b\
\x00\x02\x1a\x00\x7c\xcb\xa5\xa4\xb5\x29\x95\x4a\x41\xde\x05\xd0\
\x00\x60\x00\x08\xe6\x64\x28\x14\xbd\x11\x50\xd2\x5a\x4f\x24\x02\
\xfd\x3d\x62\x00\x30\x00\x04\x73\x32\xe4\x57\x7c\xcd\xb5\xa4\xb5\
\x59\xc9\x07\xfa\x7b\xc4\x00\x60\x00\x78\x52\xa0\x2e\x01\x2c\x1b\
\x00\x24\xad\x35\x00\xac\x18\x00\x14\x9e\x00\x50\x05\x22\x41\x28\
\x42\xa9\x54\xa2\x54\x2a\x11\x8f\xc7\x9d\x11\x92\xae\xf2\x44\x62\
\xc5\x00\xa0\xe0\x07\x80\x6c\x26\x9d\xaf\xef\x05\xb0\x2f\x48\xe9\
\xbd\xa3\xc3\x00\x20\xc9\x15\x80\xa7\xc8\x13\xb0\x55\x5f\xad\x6d\
\x05\x00\xe0\x81\x20\x05\x80\xe5\x95\x15\x3a\x3a\xda\x9d\x11\x92\
\x56\xad\x58\x2c\x06\xf9\xc5\x62\x8f\x64\x33\x69\xf7\x4c\x37\x00\
\x7c\x93\xc3\xc0\xf7\x98\xde\x25\x85\x5d\xc0\xef\x23\x7a\xd0\x11\
\x36\x00\x04\x7a\x52\x04\xfc\xfa\x9d\xa4\x0d\x3d\x81\x08\xf4\xf7\
\xc7\x61\x47\xd8\x00\x10\xe8\x00\xb0\xb2\xb2\x42\xa5\x52\x21\x1a\
\x8d\x3a\x2b\x24\xad\x4a\x6e\x69\xd9\x15\x00\x85\x2a\x00\x1c\x06\
\x2a\x40\x20\x3a\x66\xb5\x0a\x4b\x4b\xcb\xde\x07\x20\x69\xd5\x96\
\x72\x4b\x06\x00\x85\x27\x00\x64\x33\xe9\xdc\xd0\xf0\xc8\x09\xe0\
\x60\x90\x52\xbc\x01\x40\xd2\x6a\xac\xe4\xf3\x94\x82\x7b\x03\xe0\
\x0a\xf0\xb8\xa3\x6c\x00\xb8\x58\x32\x0c\x50\x00\x58\x72\x46\x48\
\x5a\xe5\xd9\x7f\xa0\x97\xff\x1f\xce\x66\xd2\x65\x47\xd9\x00\x70\
\xb1\x00\xf0\x7d\x81\xf9\x45\x5e\x5a\xa2\x5a\xad\x12\x89\x44\x9c\
\x19\x92\x3c\x71\x70\xf9\xdf\x00\x70\x09\x5f\x0f\x52\x31\xca\xe5\
\x0a\xf9\x7c\x81\xd6\xd6\x16\x67\x86\x24\x03\x40\xc0\xbe\xe3\xb5\
\xbe\x01\x60\x24\x68\x05\x59\xcc\xe5\x0c\x00\x92\xae\x48\xa9\x54\
\x22\x9f\x0f\xf4\xeb\xc4\x47\x1c\x65\x03\xc0\x05\x65\x33\xe9\x13\
\x43\xc3\x23\x63\xc0\x8e\xa0\x14\x64\x61\x21\xc7\xf6\xbe\x5e\x67\
\x86\xa4\xcb\x9a\x5f\x58\x0c\xf2\xe1\x15\x80\xaf\x3a\xca\x06\x80\
\xcb\x25\xc4\x97\x07\x69\x05\xa0\x52\xa9\x12\x8d\x7a\x1f\x80\xa4\
\xcb\x9d\x30\x04\x3a\x00\xdc\x9b\xcd\xa4\xdd\x21\xcd\x00\x70\x49\
\x5f\x0e\x52\x00\xa8\x54\x2a\xe4\x96\x96\xe8\xf4\x71\x40\x49\x97\
\x50\xad\x56\x59\x58\xcc\x05\xf9\x10\xbf\xe4\x28\x1b\x00\xae\x64\
\x05\x20\x60\xa9\x7e\xc1\x00\x20\xe9\x92\x96\x96\x97\x83\xfc\x02\
\x20\x03\x80\x01\xe0\x8a\x7c\x05\x28\xad\xd3\x9f\xd5\x10\xe6\x17\
\x72\xec\xda\xe9\xe4\x90\x74\xa9\x13\x85\xc5\xa0\x1f\xa2\x01\xc0\
\x00\x70\x69\xd9\x4c\x7a\x69\x68\x78\xe4\x3e\xe0\xc6\xa0\x14\x25\
\x9f\xcf\x53\x28\x14\x49\x26\x13\xce\x10\x49\x17\x3d\x51\x08\xb0\
\x73\xd9\x4c\xfa\xa8\xa3\x6c\x00\xb8\xd2\xa4\x78\x63\x90\x0a\x33\
\x37\x3f\x4f\xff\xf6\x3e\x67\x88\xa4\xa7\x29\x14\x8b\x2c\x2f\x07\
\x7a\x07\x40\xcf\xfe\x0d\x00\x57\x6c\x18\x78\x7d\x90\x0a\x33\x3b\
\x67\x00\x90\x74\x91\x13\x84\xb9\xf9\xa0\x1f\xe2\xb0\xa3\x6c\x00\
\xb8\x52\x43\x04\xe8\xcd\x80\x50\x7b\x33\xa0\x97\x01\x24\x5d\xf0\
\x04\x61\x36\xf0\x01\xe0\x6e\x47\xd9\x00\x70\x45\xb2\x99\xf4\xc4\
\xd0\xf0\xc8\xbd\xc0\x73\x82\xb5\x0a\x30\xc7\x40\xff\x76\x67\x89\
\xa4\x27\x15\x0a\x45\x96\x82\xbd\xfc\x7f\x0e\xb8\xcf\x91\x36\x00\
\xac\xc6\xe7\x82\x17\x00\xe6\x0d\x00\x92\x9e\x76\x62\x10\x70\x9f\
\xcb\x66\xd2\x55\x47\xda\x00\xb0\x1a\x77\x03\x6f\x0d\x52\x71\x96\
\x97\x57\xc8\xe7\x0b\xb4\xb4\x24\x9d\x29\x92\x9e\x3c\x31\x08\x7a\
\x00\x70\x94\x0d\x00\xab\x35\x0c\x2c\x03\xa9\xa0\xa5\xfd\xc1\x81\
\x7e\x67\x8a\x24\xf2\xf9\x02\xcb\xcb\x81\xde\x1d\xb7\x8a\xd7\xff\
\x0d\x00\xab\x95\xcd\xa4\x57\x86\x86\x47\xfe\x15\x78\x69\x90\x0a\
\x34\x3d\x33\xcb\x40\xff\x76\x22\x11\xdf\x0d\x20\x85\xdd\xd4\xcc\
\x4c\xd0\x0f\xf1\xe1\x6c\x26\x7d\xda\x91\x36\x00\x5c\x8d\xcf\x05\
\x2d\x00\x14\x0a\x45\x16\x73\x39\x3a\x3b\x3a\x9c\x2d\x52\x88\x55\
\xab\x55\x66\x66\x66\x83\x7e\x98\x2e\xff\x1b\x00\xae\xda\xdd\xc0\
\xbb\x83\x56\xa4\xe9\xe9\x59\x03\x80\x14\x72\x73\xf3\x0b\x94\x4a\
\xe5\xa0\x1f\xa6\xcb\xff\x06\x80\xab\xf6\x75\xe0\x0c\xb0\x3b\x78\
\xbf\xf8\x25\xe2\xf1\xb8\x33\x46\x0a\xa9\xe9\xe9\xc0\x2f\xff\x2f\
\x03\xff\xe4\x48\x1b\x00\xae\x4a\x36\x93\xae\x0e\x0d\x8f\xfc\x35\
\xf0\x86\x20\x15\xa9\x5a\xad\x32\x33\x3b\xe7\xce\x80\x52\x48\x15\
\x0a\x85\xa0\xbf\xfa\x17\xe0\x1f\xb3\x99\x74\xce\xd1\x36\x00\xac\
\xc5\x5f\x05\x2d\x00\x00\x4c\x4d\xcf\xb0\xbd\xaf\x0f\xef\x05\x94\
\xc2\x67\x2a\xf8\xd7\xfe\x9f\xf8\xee\x96\x01\x60\x4d\x86\x81\x09\
\x20\x50\xcf\xce\xe5\xf3\x05\x16\x16\x17\xe9\xea\xf4\x5e\x00\x29\
\x4c\x2a\x95\x0a\x53\x53\x81\x5f\xfe\x2f\x00\x7f\xeb\x68\x1b\x00\
\xd6\x24\x9b\x49\x97\x87\x86\x47\x3e\x03\xfc\x44\xd0\x8a\x35\x31\
\x39\x65\x00\x90\x42\x66\x66\x76\x8e\x72\x39\xf0\x37\xff\x0d\x65\
\x33\xe9\x39\x47\xdb\x00\xb0\x1e\xfe\x2a\x88\x01\x60\x71\x31\xc7\
\xf2\xf2\x0a\xa9\x54\xab\x33\x47\x0a\x81\x6a\xb5\xca\xc4\xc4\x54\
\x18\x0e\xf5\xd3\x8e\xb6\x01\x60\xdd\xd2\x24\x30\x0b\xf8\x47\x4c\
\x0b\x00\x00\x19\xe7\x49\x44\x41\x54\xf4\x04\xad\x60\xe7\x26\xa7\
\xd8\xbf\x77\xb7\x33\x47\x0a\x81\xf9\x85\x45\xf2\x85\x42\xd0\x0f\
\xb3\x04\x7c\xc6\xd1\x36\x00\xac\x8b\x6c\x26\x5d\x1c\x1a\x1e\xf9\
\x5b\xe0\xd5\x41\x2b\xd8\xdc\xdc\x1c\x85\x1d\x03\x24\x13\xbe\x26\
\x58\x0a\xba\x89\x89\xc9\x30\x1c\xe6\x70\x36\x93\x9e\x70\xb4\x0d\
\x00\xeb\xe9\xd3\x41\x0c\x00\xd5\x2a\x4c\x4e\x4e\xb3\x6b\xe7\xa0\
\xb3\x47\x0a\xb0\xdc\xd2\x12\xb9\xa5\xe5\x30\x1c\xaa\x77\xff\x1b\
\x00\xd6\xdd\xff\x04\xa6\x81\xde\xa0\x15\x6d\x6a\x7a\x86\x81\xfe\
\x3e\x37\x06\x92\x02\x6c\x7c\x3c\x14\x67\xff\x45\xe0\x2f\x1d\x6d\
\x03\xc0\xba\xca\x66\xd2\xf9\xa1\xe1\x91\x4f\x10\xc0\x3d\x01\x2a\
\x95\x0a\xe7\x26\xa6\x5c\x05\x90\x82\x7a\xf6\x9f\x5b\x62\x61\x71\
\x31\x0c\x87\xfa\x59\x97\xff\x0d\x00\x1b\xe5\x43\x41\x0c\x00\x00\
\x93\x53\xd3\xf4\x6f\xef\x23\x91\x70\x15\x40\x0a\x9a\xb1\xf1\xd0\
\xf4\xc4\x0f\x39\xda\x06\x80\x8d\x5a\x05\xb8\x67\x68\x78\xe4\x3e\
\xe0\xdb\x83\x56\xb8\x6a\xb5\xca\xb9\x89\x09\x76\xef\xda\xe9\x2c\
\x92\x02\x64\x71\x31\xc7\x62\x2e\x14\x3b\xe2\x8e\x03\x7f\xef\x88\
\x1b\x00\x36\x3a\x61\xbe\x27\x88\xc5\x9b\x9a\x9e\xa5\xbf\x7f\xbb\
\x4f\x04\x48\x9e\xfd\x37\xa3\x8f\x65\x33\xe9\x92\x23\x6e\x00\xd8\
\x48\x1f\xa7\xf6\x8a\xe0\x64\x10\x57\x01\xc6\xc7\x27\xd9\xbb\xc7\
\x55\x00\x29\x08\x16\x16\x16\xc9\x2d\x2d\x85\xe5\x70\x5d\xfe\x37\
\x00\x6c\xac\x6c\x26\x3d\x31\x34\x3c\xf2\x59\xe0\xe5\x41\x2c\xe0\
\xf4\xcc\x0c\xfd\xdb\x7b\x69\x6d\x6d\x71\x36\x49\x4d\x1e\xe8\xcf\
\x8e\x8d\x87\xe5\x70\xff\x77\x36\x93\x7e\xd0\x51\x37\x00\x6c\x56\
\xd2\x7c\x79\x50\x8b\x78\x66\x74\x8c\x6b\x0e\xee\x77\x36\x49\x4d\
\x1d\xe6\x67\x59\x59\xc9\x7b\xf6\x2f\x03\xc0\x3a\xfb\x9f\xc0\x28\
\x10\xc8\xb5\xf2\xc5\xc5\x1c\x73\xf3\x0b\x74\x77\x75\x3a\xa3\xa4\
\x26\x54\x2e\x97\x19\x1b\x3b\x17\x96\xc3\x5d\x06\xfe\xcc\x51\xd7\
\xa6\x04\x80\x6c\x26\x5d\x1a\x1a\x1e\xf9\x20\xf0\xeb\x41\x2d\xe4\
\xd9\xd1\x71\x3a\x3b\x3b\x88\x46\x22\xce\x2a\xa9\xc9\x8c\x9f\x9b\
\xa4\x14\xfc\x37\xfe\x3d\xe1\x63\xd9\x4c\x7a\xd6\x51\xd7\x66\x3e\
\xc4\xfe\x41\xe0\x17\x81\x40\x5e\x2c\x2f\x14\x0a\x4c\x4e\x4e\x31\
\xd0\xbf\xdd\x59\x25\x35\x91\x7c\xbe\xc0\xe4\xd4\x74\x58\x0e\xb7\
\x0a\xdc\xe5\xa8\x6b\x53\x03\x40\x36\x93\x3e\x37\x34\x3c\xf2\x67\
\xc0\xed\x41\x3e\x8b\xd8\xd6\xd3\xe3\xe6\x40\x52\x13\x39\x3b\x3a\
\x46\xb5\x5a\x0d\xcb\xe1\x0e\x65\x33\xe9\x07\x1c\x75\x6d\xf6\x0a\
\x00\xc0\x7b\x83\x1c\x00\x2a\x95\x0a\x67\xce\x8e\x72\x60\xff\x5e\
\x67\x96\xd4\x04\x66\xe7\xe6\x99\x5f\x58\x0c\xd3\x21\xbf\xd7\x51\
\xd7\x96\x04\x80\x6c\x26\xfd\xf5\xa1\xe1\x91\x7f\x06\x5e\x1c\xd4\
\x82\xce\xcd\x2f\x78\x43\xa0\xd4\x04\xca\xe5\x32\x67\xce\x8e\x85\
\xe9\x90\x8f\x00\x9f\x75\xe4\xb5\x55\x2b\x00\x4f\x24\xd0\x17\x07\
\xb9\xa8\x67\xce\x8c\xd2\xd1\xde\x46\x2c\x16\x73\x86\x35\xb8\x9b\
\x6e\xbc\x71\xdd\xff\xcc\xbe\x6d\xdb\x2c\x6c\x13\x38\x3b\x3a\x4e\
\xa9\x14\xaa\x8d\xf0\xde\x97\xcd\xa4\xab\x8e\xbc\xb6\x32\x00\xfc\
\x0d\x70\x0c\x38\x18\xd4\xa2\x16\x4b\x25\x46\xc7\xce\xb1\x67\xb7\
\x3b\x04\x36\xba\xbd\x3b\x1d\xa3\x30\x5a\x5c\xcc\x31\x3d\x13\xaa\
\x1b\xe1\xe7\x80\x0f\x3b\xf2\x3a\xdf\x96\x3c\xb3\x36\x34\x3c\xf2\
\xb3\xc0\x6f\x07\xbd\xb8\xd7\x1c\x3a\x40\x47\x7b\x9b\xb3\x4c\x6a\
\x20\x95\x4a\x85\x47\x8e\x1c\xa5\x50\x28\x84\xe9\xb0\xdf\x93\xcd\
\xa4\x7f\xd6\xd1\xd7\x56\xaf\x00\x00\xfc\x31\xf0\x4b\x40\xa0\xd7\
\x4a\x4f\x9d\x3e\xcb\xf5\xd7\x1d\x22\x1a\x8d\x3a\xd3\xa4\x06\x31\
\x36\x7e\x2e\x6c\xcd\xbf\x80\x37\xff\xa9\x51\x56\x00\xea\xab\x00\
\xbf\x0a\xfc\x5a\xd0\x0b\xdc\xbb\xad\x87\xbd\x7b\x76\x39\xd3\xa4\
\x06\xb0\xb0\xb0\xc8\xd1\xe3\x27\xc3\x76\xd8\x7f\x9c\xcd\xa4\x7f\
\xd2\xd1\x57\xa3\xac\x00\x50\x4f\xa4\xff\x15\xe8\x0e\x72\x81\xa7\
\x67\x66\xe9\xea\xec\xa0\xbb\xbb\xcb\xd9\x26\x6d\xa1\x52\xa9\xc4\
\xc9\xd3\x67\xc3\x76\xd8\x45\xe0\x5d\x8e\xbe\x1a\x6a\x05\xa0\xbe\
\x0a\xf0\xdf\x80\x5f\x0e\x7a\x91\x63\xb1\x18\xd7\x5f\x77\x88\x44\
\x22\xe1\x8c\x93\xb6\xc8\xb1\xe3\xa7\x98\x5f\x58\x08\xdb\x61\x7f\
\x28\x9b\x49\xff\xb8\xa3\xaf\x46\x5b\x01\x00\x78\x0f\xf0\x26\x20\
\xd0\xa7\xc7\xe5\x72\x99\x93\xa7\xcf\x72\xe8\xc0\x3e\x22\xbe\x2b\
\x40\xda\x74\x53\x53\x33\x61\x6c\xfe\x25\xe0\x9d\x8e\xbe\x1a\x72\
\x05\xa0\xbe\x0a\xf0\x4e\x6a\xef\x08\x08\xbc\x9d\x3b\x06\x7c\x57\
\x80\xb4\xc9\x56\x56\xf2\x3c\xfa\xd8\xd1\x30\x6d\xf7\xfb\x84\x8f\
\x66\x33\xe9\xd7\x38\x03\xd4\xa8\x2b\x00\x00\xbf\x03\xbc\x11\x08\
\xfc\xd6\x79\xa3\x63\xe7\x68\x6b\x6b\xf3\xd1\x40\x69\x93\x94\xcb\
\x65\x8e\x9f\x3c\x15\xc6\xe6\x5f\xf6\xec\x5f\x0d\xbf\x02\x50\x5f\
\x05\xb8\x13\x78\x7b\x28\x12\x57\x3c\xc6\x33\xae\xf5\x7e\x00\x69\
\xa3\x55\xab\x70\xe2\xe4\x29\xe6\xe6\x17\xc2\x78\xf8\x1f\xcb\x66\
\xd2\xaf\x76\x16\xa8\xd1\x57\x00\x00\x7e\x0b\x78\x7d\x18\x56\x01\
\x4a\xa5\x32\xc7\x4f\x9e\xe6\xda\x43\x07\xbc\x1f\x40\xda\x40\x13\
\x93\x93\x61\x6d\xfe\x25\xe0\x37\x9c\x01\x6a\x8a\x15\x80\xfa\x2a\
\xc0\x2f\x01\xff\x4f\x58\x0a\xdf\xd7\xbb\xcd\xad\x82\xa5\x0d\xb2\
\xb8\x98\xe3\xf1\x63\x27\xc2\x7a\xf8\x1f\xcc\x66\xd2\xaf\x73\x16\
\xa8\x59\x56\x00\xa0\xb6\x35\xf0\x6b\x81\x3d\x61\x28\xfc\xd4\xf4\
\x0c\x6d\x6d\x29\x7a\xb7\xf5\x38\x0b\xa5\x75\x54\x28\x14\x39\x7e\
\xf2\x74\x58\x0f\x7f\x1e\xf8\x55\x67\x81\x9a\x6a\x05\xa0\xbe\x0a\
\xf0\x63\xc0\x47\x42\x53\xfc\x48\x84\x43\x07\xf7\x7b\x53\xa0\xb4\
\x4e\xca\xe5\x32\x8f\x1d\x3d\xce\xca\x4a\x3e\xac\x25\xf8\x85\x6c\
\x26\x7d\xa7\x33\x41\xcd\xb6\x02\x00\xf0\xa7\xd4\xf6\x05\xb8\x31\
\x0c\xc5\xaf\x56\xab\x1c\x3f\x71\x8a\xeb\xae\x39\x48\x4b\x4b\xd2\
\xd9\x28\xad\xf1\xf7\xe9\xc4\xc9\x33\x61\x6e\xfe\x27\x80\xdf\x75\
\x26\xa8\x29\x57\x00\xea\xab\x00\xdf\x01\x7c\x3e\x4c\x83\x90\x4c\
\x26\xb8\xee\x9a\x83\xc4\xe3\x71\x67\xa4\x74\x95\x4e\x9d\x3e\x1b\
\xb6\x57\xfc\x3e\xd5\x2d\xd9\x4c\xfa\xcf\x9c\x09\x6a\xda\x00\x50\
\x0f\x01\x9f\x01\x7e\x20\x4c\x03\xd1\xd6\x96\xe2\x9a\x83\xfb\x7d\
\x73\xa0\x74\x15\xc6\xcf\x4d\x32\x36\x7e\x2e\xcc\x25\xf8\x32\x90\
\xce\x66\xd2\x55\x67\x83\xae\x54\xa3\x9e\x72\xbe\x0d\xf8\x6e\x20\
\x34\x0f\xcb\x2f\x2d\x2d\x73\xea\xf4\x59\xf6\xed\xdd\xed\xe3\x81\
\xd2\x2a\xcc\xce\xce\x85\xbd\xf9\x57\x81\x9f\xb3\xf9\x2b\x10\x2b\
\x00\xf5\x55\x80\xbb\xa8\xed\x10\x18\x2a\x3e\x1e\x28\x5d\xb9\x85\
\x85\x45\x8e\x9d\x08\xe5\x4e\x7f\xe7\xfb\x64\x36\x93\xfe\xcf\xce\
\x06\x05\x65\x05\x00\xe0\x57\x80\x57\x01\x3b\xc2\x34\x20\x53\xd3\
\x33\x44\xa3\x51\x76\xed\x1c\x74\x76\x4a\x97\xb0\x98\xcb\xd9\xfc\
\x61\xa1\x5a\xad\xfe\x9c\xb3\x41\x81\x5a\x01\xa8\xaf\x02\xfc\x08\
\x10\xca\x9b\x5a\x06\x07\xfa\xd9\x31\xd8\xef\x0c\x95\x2e\x20\xb7\
\xb4\xcc\xd1\x63\x27\xa8\x54\x2a\xa1\xae\x43\xb5\x5a\xfd\xd9\x9b\
\x5f\x74\xd3\x7b\x9c\x11\x0a\x5c\x00\xa8\x87\x80\xbf\xa7\x76\x3f\
\x40\xe8\xec\xdc\x31\xc8\x40\x7f\x9f\xb3\x54\x3a\xcf\xf2\xf2\x0a\
\x8f\x1f\x3b\x4e\xb9\x5c\x09\x7b\x29\xbe\x9a\xcf\xe7\x5f\xf0\x3d\
\x37\x7f\x47\xd9\x59\xa1\xab\xd1\x0c\xcf\x9d\xbd\x1e\x78\x00\x68\
\x0f\xdb\xe0\x8c\x8e\x8d\x13\x8d\x46\xd9\xde\xb7\xcd\x99\x2a\x01\
\x2b\xf9\x3c\x47\x8f\x9d\xb0\xf9\x43\x79\x25\x9f\x7f\xed\xf7\xda\
\xfc\x15\xe4\x15\x80\xfa\x2a\xc0\x5b\x81\xdf\x0c\xeb\x20\xed\xda\
\x39\x48\xff\x76\x57\x02\xe4\x99\xff\xd1\x63\x27\x28\x95\xed\x79\
\xb3\xf3\x73\x7f\xf7\x43\xdf\xfb\x5d\xdf\xef\xac\x50\x18\x02\x40\
\x1c\xf8\x0a\xf0\xec\xb0\x0e\xd4\x8e\xc1\x7e\x06\x07\xbc\x27\x40\
\xe1\x94\x5b\x5a\xe6\xd8\x71\xcf\xfc\x01\xf2\xf9\x3c\x5f\xb9\xff\
\xeb\xd5\x54\xaa\xed\xcd\x6f\xfd\xe9\x9f\xba\xcb\xd9\xa1\x40\x07\
\x80\x7a\x08\x78\x3e\xf0\x6f\x40\x2c\xac\x83\x35\xd0\xdf\xc7\xce\
\x1d\x3e\x1d\xa0\x70\x59\xcc\xe5\x38\x76\xfc\x54\xe8\x6f\xf8\x7b\
\xc2\x83\x8f\x3e\xcc\xd4\xcc\x34\x40\xb5\x35\x95\x7a\xf3\x2f\xdc\
\xf1\x7a\x43\x80\x82\x1d\x00\xea\x21\xe0\x7d\xc0\x1b\xc2\x3c\x60\
\x7d\x7d\xbd\xec\xde\x39\xe8\x66\x41\x0a\x05\x9f\xf3\xff\x66\x93\
\xd3\x53\x1c\x3e\xf2\xc8\xf9\xff\x51\x35\xd9\xd2\xf2\xe6\x77\xbc\
\xf1\x0d\x86\x00\x05\x3e\x00\x74\x00\x5f\x03\xae\x0d\xf3\xa0\x6d\
\xeb\xe9\x66\xef\x9e\x5d\x86\x00\x05\xda\xec\xec\x1c\x27\x4f\x9f\
\xb5\xf9\xd7\x15\x8b\x45\xbe\x7a\xff\xd7\x29\x14\x8b\x4f\xfd\xaf\
\xaa\x89\x64\xf2\xcd\xbf\xf4\x33\x6f\x34\x04\x28\xb8\x01\xa0\x1e\
\x02\xd2\xc0\xbf\xd0\x1c\x4f\x30\x6c\x98\x8e\xf6\x36\x0e\xec\xdf\
\x4b\x2c\x16\x73\x16\x2b\x70\xdc\xdb\xff\xe9\xce\x5b\xfa\xbf\x10\
\x43\x80\x82\x1f\x00\xea\x21\xe0\xbf\x01\xbf\x1c\xf6\xc1\x6b\x69\
\x69\xe1\xd0\x81\xbd\x24\x93\xbe\x4a\x58\xc1\x50\xad\x56\x39\x7d\
\x66\x34\xec\x6f\xf5\x7b\x9a\xb1\x89\x71\x1e\x3d\xfa\xf8\x65\xcb\
\x67\x08\x50\x18\x02\x40\x9c\xda\x0d\x81\xcf\x0b\xfb\x00\xc6\xe3\
\x31\x0e\xee\xdf\x47\x5b\x5b\xca\xd9\xac\xa6\x56\x2e\x97\x39\x71\
\xf2\x0c\x0b\x8b\x8b\x16\xe3\x3c\xcb\x2b\x2b\xdc\x73\xff\xbd\x94\
\x2b\x57\xf4\xf8\xa3\x21\x40\xc1\x0e\x00\xf5\x10\xf0\x0c\xe0\x1e\
\x42\xb8\x41\xd0\x53\x45\x23\x11\xf6\xed\xdd\x4d\x77\x77\x97\x33\
\x5a\x4d\xa9\x50\x28\x72\xec\xc4\x49\x56\x56\xf2\x16\xe3\xfc\x6e\
\x5e\xad\x72\xef\x43\x0f\x30\xbf\xb0\xb0\xaa\xff\x99\x21\x40\x81\
\x0e\x00\xf5\x10\xf0\x3a\xe0\xf7\x1d\xc6\x9a\x81\xfe\xed\xec\x18\
\xec\xf7\xe6\x40\x35\x95\xc5\xc5\x1c\xc7\x4f\x9e\xa6\xec\x06\x3f\
\x4f\x73\xf2\xcc\x69\x8e\x9f\x3e\x79\x55\xd9\xc1\x10\xa0\x40\x07\
\x80\x7a\x08\xf8\x2c\xf0\x3d\x0e\x65\x4d\x67\x47\x3b\xfb\xf6\xee\
\x21\x1e\xf7\xe6\x40\x35\xfa\xd9\x2d\x4c\x4c\x4e\x32\x3a\xe6\xcd\
\x7e\x17\xb2\x90\x5b\xe4\xeb\x0f\xde\xbf\x96\xa7\x20\x0c\x01\x0a\
\x7c\x00\xd8\x01\xdc\x07\xb8\x4d\x5e\x5d\x22\x91\xe0\xc0\xfe\x3d\
\xb4\xa5\xbc\x2f\x40\x8d\xa9\x5c\x2e\x73\xea\xf4\x59\xe6\xe6\x17\
\x2c\xc6\x85\xea\x53\x29\xf3\xb5\xfb\xef\x63\x69\x65\x79\xcd\x39\
\xcb\x10\xa0\xc0\x06\x80\x7a\x08\xb8\x19\xf8\x07\x42\xbc\x4b\xe0\
\xd3\x06\x36\x12\x61\xcf\xee\x1d\xf4\x6e\xf3\x45\x42\x6a\x2c\x2b\
\x2b\x79\x8e\x9f\x3c\x45\x3e\x5f\xb0\x18\x17\xf1\xf0\xe3\x47\x38\
\x37\x39\xb1\x5e\x7f\x9c\x21\x40\xc1\x0d\x00\xf5\x10\xf0\x8b\xc0\
\x3b\x1d\xd2\x6f\xd6\xd3\xdd\xc5\x9e\xdd\x3b\xdd\x2f\x40\x0d\x61\
\x6a\x6a\x86\x33\xa3\x63\x6e\xee\x73\x09\x67\xc7\xc7\x78\xec\xf8\
\xd1\xf5\xfe\x63\x0d\x01\x0a\x74\x00\x88\x00\x9f\x01\x7c\x43\xd6\
\x53\x24\x12\x09\xf6\xed\xdd\x4d\x47\x7b\x9b\xc5\xd0\x96\x28\x95\
\x4a\x9c\x3a\x3d\xba\xda\xbb\xd9\x43\x67\x7e\x71\x81\x7b\x0f\x3f\
\xb0\x51\x01\xc9\x10\xa0\x60\x06\x80\x7a\x08\xe8\xa1\xf6\xd6\xc0\
\x6b\x1c\xda\xa7\x1b\x18\xd8\xce\x8e\x01\x9f\x12\xd0\xe6\x5a\x58\
\x58\xe4\xe4\xe9\xb3\x94\x4a\x25\x8b\x71\x09\xc5\x62\x91\x7b\x1e\
\xb8\x97\x7c\x61\x43\x2f\x8d\x18\x02\x14\xcc\x00\x50\x0f\x01\xcf\
\xa6\xb6\x49\x90\xa7\xbb\x17\xd0\x96\x4a\xb1\x6f\xef\x2e\x5a\x5a\
\x5a\x2c\x86\x36\x54\xa5\x52\x61\x6c\xfc\x1c\x13\x93\xd3\x16\xe3\
\x72\x5d\xb9\x5a\xe5\xfe\x87\x0f\x33\x3b\x3f\xb7\x29\xff\x3a\x43\
\x80\x02\x19\x00\xea\x21\xe0\x35\xc0\x87\x1d\xde\x8b\x0c\x7a\x24\
\xc2\xe0\x40\x3f\x03\xfd\x7d\xae\x06\x68\x43\x2c\x2e\xe6\x38\x75\
\x66\x94\x42\xc1\x1b\xfd\xae\xc4\xb1\x53\x27\x38\x75\xf6\xcc\xa6\
\x66\x8e\x44\x4b\xcb\x9b\x7f\xc9\xb7\x08\x1a\x00\x02\x1a\x02\x3e\
\x00\xfc\xb4\x43\x7c\x71\xad\xad\xad\xec\xdd\xb3\xd3\xc7\x05\xb5\
\x6e\xca\xe5\x32\x67\x47\xc7\xdd\xcb\x7f\x15\xa6\x66\xa6\x79\xf0\
\xd1\x87\xb7\x64\xe1\x21\xd9\xda\xfa\x5f\xdf\xf1\x86\x3b\xde\xeb\
\x28\x18\x00\x82\x16\x00\x5a\x80\x7f\x02\x6e\x72\x98\x2f\xad\x7f\
\x7b\x1f\x3b\x06\xfb\x89\x46\xa3\x16\x43\x57\x6d\x76\x6e\x9e\x33\
\x67\xc7\xbc\xd6\xbf\x0a\x4b\xcb\xcb\x7c\xfd\xc1\xfb\x28\x6d\xd1\
\x2e\x88\xb1\x78\xbc\xda\xdd\xd3\x73\xcb\x9b\x6e\x7f\xcd\x9f\x3b\
\x1a\x06\x80\xa0\x85\x80\x7e\x60\x04\x6f\x0a\xbc\xac\x64\x32\xc1\
\xae\x9d\x3b\xe8\xee\xea\xb4\x18\x5a\x95\x7c\xbe\xc0\xd9\xd1\x31\
\xe6\x17\x7c\x89\xcf\x6a\x14\x8b\x45\xbe\xf6\xe0\xfd\xac\xe4\x57\
\xb6\xaa\xf9\xb3\xad\xb7\x97\x68\x2c\x56\xac\x54\x2a\xb7\xbe\xf1\
\xd5\xb7\x7d\xd2\x51\x31\x00\x04\x2d\x04\x5c\x4f\xed\xa6\xc0\x5e\
\x87\xfb\xf2\x3a\xda\xdb\xd9\xb5\x6b\x90\x54\x6b\xab\xc5\xd0\x25\
\x95\xcb\x65\xc6\xcf\x4d\x32\x39\x35\xed\x73\xfd\xab\x54\xa9\x54\
\xb8\xef\xa1\x07\x99\x5f\xdc\x9a\xc7\x22\xcf\x6b\xfe\x4f\xe6\x91\
\x6a\xb5\x7a\xeb\x1b\x6e\xbb\xd5\x10\x60\x00\x08\x5c\x08\x78\x31\
\xf0\x8f\x80\xb7\xbe\x5f\xa1\xbe\xde\x6d\xec\x18\xec\x27\x1e\x8f\
\x5b\x0c\x7d\x93\x6a\xb5\xca\xf4\xcc\x2c\x63\x63\xe7\xb6\x6c\xe9\
\xba\xd9\xeb\xf7\xf0\x63\x8f\x32\x31\x3d\xd5\x28\xcd\xdf\x10\x60\
\x00\x08\x7c\x08\xb8\x0d\xf8\x68\x98\x8e\x79\xcd\x5f\x14\xd1\x28\
\x83\x03\xfd\xf4\xf5\x6d\xf3\xfe\x00\x01\xb5\x67\xfa\xcf\x8e\x8d\
\xfb\xda\xde\x35\x38\x76\xf2\x04\xa7\x46\xcf\x6c\xcd\xef\xf4\xc5\
\x9b\xff\x93\x21\x00\xb8\xf5\x8e\x5b\x6f\x31\x04\x18\x00\x02\x17\
\x02\x7e\x05\xf8\x75\x87\x7d\x75\x12\xf1\x38\x03\x03\xdb\xe9\xed\
\xdd\x46\xd4\xc7\x06\x43\x69\x71\x31\xc7\xd8\xf8\x04\xb9\xa5\x25\
\x8b\xb1\x06\xa3\xe7\xc6\x39\x72\xec\xf1\x46\x6d\xfe\x86\x00\x03\
\x40\xe0\x43\xc0\x47\x80\x1f\x73\xe8\xaf\x22\x08\x24\x12\x0c\x0e\
\x6c\xa7\x77\x5b\x8f\xfb\x07\x84\x44\x2e\xb7\xc4\xd8\xf8\x04\x8b\
\xb9\x9c\xc5\x58\xa3\x99\xb9\x59\x1e\x78\xe4\xa1\x2d\xb9\x5f\x62\
\x15\xcd\xff\x09\x25\xe0\x16\x43\x80\x01\x20\x68\x01\x20\x49\xed\
\xcd\x81\x2f\x71\xf8\xaf\x4e\x32\x99\x60\x70\xa0\x9f\x6d\x3d\xdd\
\x06\x81\xa0\x36\xfe\xa5\x25\xc6\xc7\x27\x59\x58\xf4\xce\xfe\xf5\
\xa9\x67\x8e\xaf\x1f\x7e\x80\xf2\x16\xdc\x33\x71\x15\xcd\xdf\x10\
\x60\x00\x08\x74\x08\xe8\x04\x86\x80\xe7\x39\x05\xd6\xb0\x22\x10\
\x8f\xb3\x7d\x7b\x2f\x7d\xbd\xdb\x7c\xdb\x60\x00\x54\xab\x55\xe6\
\x17\x16\x99\x98\x98\x24\xb7\xb4\x6c\x41\xd6\xc9\xf2\xca\x32\xf7\
\x1e\x7e\x80\x42\xb1\xd8\x4c\xcd\xdf\x10\x60\x00\x08\x74\x08\xe8\
\x05\xbe\x00\x7c\x9b\xd3\x60\x6d\xa2\xd1\x28\xbd\xbd\x3d\xf4\xf7\
\xf5\x91\x4c\x26\x2c\x48\x93\xa9\x54\x2a\xcc\xcc\xce\x31\x31\x31\
\xb5\xd1\x2f\xa2\x09\x9d\x95\x7c\x9e\x7b\x0f\x3f\x40\xbe\xb0\xf9\
\x37\x4d\xae\x43\xf3\x37\x04\x18\x00\x02\x1d\x02\x06\x81\x7f\x01\
\x9e\xe1\x54\x58\x1f\x3d\x3d\x5d\xf4\xf5\x6e\xa3\xa3\xbd\xdd\x62\
\x34\xb8\x42\xa1\xc0\xd4\xcc\x2c\x53\x53\x33\x5b\xb2\x34\x1d\x86\
\xfa\x7e\xfd\xf0\x03\x5b\xb2\xd1\xcf\x3a\x36\x7f\x43\x80\x01\x20\
\xd0\x21\x60\x6f\x3d\x04\x1c\x70\x3a\xac\x9f\x96\x96\x24\xbd\xdb\
\x7a\xe8\xdd\xd6\xe3\x5e\x02\x0d\xa4\x5a\xad\x32\x37\xbf\xc0\xf4\
\xf4\x0c\x0b\x8b\xde\xd8\xb7\x51\x8a\xc5\x22\xf7\x3e\xf4\x00\x4b\
\xcb\x9b\x7f\x29\x65\x03\x9a\xbf\x21\xc0\x00\x10\xe8\x10\x70\x4d\
\x3d\x04\xec\xb2\x1a\xeb\x3c\xc1\x22\x11\xba\xba\x3a\xe9\xeb\xed\
\xa1\xa3\xbd\xdd\x9b\x06\xb7\x48\x3e\x5f\x60\x6a\x66\x86\x99\x99\
\x59\x4a\x25\xcf\xf6\x37\x52\xa9\x54\xe2\xbe\x87\x1f\xdc\x92\x27\
\x27\x36\xb0\xf9\x1b\x02\x0c\x00\x81\x0e\x01\xcf\xa4\x76\x4f\x40\
\xbf\xd5\xd8\x18\xf1\x78\x9c\x9e\xee\x2e\x7a\xba\xbb\x68\x6b\x4b\
\x19\x06\x36\x58\xa1\x50\x64\x76\x6e\x8e\xd9\xb9\x79\x96\x97\x57\
\x2c\xc8\x26\x28\x97\xcb\xdc\xff\xf0\xe1\x2d\xd9\xe2\x77\x13\x9a\
\xbf\x21\xc0\x00\x10\xe8\x10\xf0\x1c\x6a\x6f\x10\xec\xb1\x1a\x1b\
\x2b\x91\x88\xd3\xdd\xd5\x45\x4f\x4f\x17\x6d\x29\xc3\xc0\xba\x35\
\xfd\x62\x91\xb9\xb9\x79\x66\x67\xe7\xb7\x64\xf9\x39\xcc\x2a\x95\
\x0a\x0f\x3c\xf2\x10\xb3\xf3\x73\x41\x6e\xfe\x86\x00\x03\x40\xa0\
\x43\xc0\x73\xa9\xed\x13\xb0\xdd\x6a\x6c\x52\x18\x88\xc7\xe9\xec\
\xec\xa0\xab\xb3\x83\x8e\x8e\x76\x1f\x29\x5c\x85\x6a\xb5\xca\xd2\
\xf2\x32\x0b\x0b\x8b\xcc\x2f\xe4\x58\xb6\xe9\x6f\xd9\x99\xff\x83\
\x8f\x3e\x1c\x96\xe6\x6f\x08\x30\x00\x04\x3a\x04\x3c\x13\xb8\x1b\
\xef\x09\xd8\xfc\x09\x19\x81\xb6\xb6\x36\xba\x3a\x3b\xe8\xec\xec\
\xf0\xad\x84\x17\xfa\xd6\x2d\x95\x98\x5f\x58\x64\x61\x61\x91\x85\
\xc5\x9c\x77\xf0\x37\xc0\x78\x3c\xf0\xc8\x43\x41\x5f\xf6\x37\x04\
\x18\x00\x42\x15\x02\x0e\x01\x9f\x03\x0e\x5a\x8d\xad\x13\x8f\xc5\
\x68\x6b\x6f\xa3\xbd\x2d\x45\x7b\x5b\x1b\xa9\x54\x8a\x68\x34\x5c\
\xd3\x76\x25\x9f\x67\x29\xb7\x4c\x6e\x69\x89\xdc\xd2\x12\xf9\xbc\
\xcf\xea\x37\x8a\x42\xb1\xc8\xfd\x0f\x1f\x26\xb7\x14\xc8\x1b\xfe\
\x0c\x01\x06\x80\x50\x87\x80\xdd\xf5\x10\xf0\x2d\x56\xa3\x51\x56\
\x08\x22\xb4\xa5\x52\xb4\xb5\xa7\x48\xb5\xb6\x92\x6a\x6d\xa5\xa5\
\x25\x19\x98\x7b\x08\x8a\xc5\x22\xcb\x2b\x79\x56\x56\x56\xc8\x2d\
\x2d\xb3\x94\x5b\xf2\x95\xbb\x0d\x2a\x5f\xc8\x73\xff\x43\x87\x59\
\x5a\x09\xd4\xa3\x7e\x86\x00\x03\x80\xce\x0b\x01\xfd\xc0\x3f\x02\
\xcf\xb1\x1a\x8d\x1b\x0a\x5a\x5b\x5a\x68\x6d\x6d\xa1\xb5\xb5\x95\
\x54\x6b\x0b\xc9\x64\x92\x64\x32\xd1\x90\xc1\xa0\x5a\xad\x52\x2a\
\x95\x28\x14\x8a\xac\xe4\xf3\xac\xac\xe4\x59\x5e\x59\x61\x65\x25\
\xef\x72\x7e\x93\x58\x5e\x59\xe1\xfe\x87\x1f\x64\x25\xdf\xd4\x3b\
\xfc\x19\x02\x0c\x00\xba\x82\x10\xd0\x03\x7c\x16\xb8\xc9\x6a\x34\
\x97\x44\x22\x5e\x0b\x03\x89\x04\xc9\x64\x82\x64\x22\x49\x3c\x1e\
\x23\x16\x8f\x11\x8f\xc5\x88\xc5\xe2\xc4\x62\xd1\x75\x0b\x0a\xe5\
\x4a\x85\x72\xa9\x44\xa9\x5c\xa6\x5c\x2a\x53\x2a\x97\x29\x16\x8b\
\x14\x0a\xf5\x4f\xb1\x40\xa1\x50\xdc\x92\x37\xc2\x69\x7d\x2c\x2d\
\x2f\x71\xdf\x43\x87\x29\x14\x37\xff\x52\x4c\x03\x37\x7f\x43\x80\
\x01\x20\xd0\x21\xa0\x1d\xf8\x6b\xe0\xa5\x56\x23\x78\x62\xb1\x5a\
\x20\x88\x44\x23\x44\x22\xdf\xf8\x44\xcf\xfb\xe7\x6a\xb5\xfa\x4d\
\x9f\xca\x79\xff\x5c\x2e\x57\x28\x97\xcb\x36\xf6\x80\x5b\xc8\x2d\
\xf2\xc0\xc3\x87\x29\x96\x4a\x36\x7f\x43\x80\x01\x20\x64\x21\x20\
\x01\x7c\x00\xf8\xbf\xad\x86\x14\x2e\x53\x33\xd3\x3c\xf4\xd8\xa3\
\x54\x2a\x15\x9b\xbf\x21\xc0\x00\x10\xe2\x20\xf0\x76\xe0\x5d\x40\
\xd4\x6a\x48\xc1\x77\x7a\xf4\x2c\x47\x4f\x1e\xdf\x92\x7f\x77\x13\
\x36\x7f\x43\x80\x01\x20\xf0\x21\xe0\x95\xc0\x47\x80\x36\xab\x21\
\x05\x53\xb5\x5a\xe5\xb1\xe3\xc7\x18\x3d\x37\x66\xf3\x37\x04\x18\
\x00\xf4\x4d\x21\xe0\xf9\xc0\x67\x80\x1d\x56\x43\x0a\x96\x52\xb9\
\xcc\x43\x47\x1e\x61\x66\x6e\xd6\xe6\x6f\x08\x30\x00\xe8\x82\x21\
\x60\x3f\xf0\x77\xc0\xb3\xac\x86\x14\x0c\x2b\xf9\x3c\x0f\x3e\xf2\
\x10\xb9\xe5\x25\x9b\xbf\x21\xc0\x00\xa0\x4b\x86\x80\x2e\xe0\x93\
\xc0\xcb\xac\x86\xd4\xdc\x16\x16\x17\x79\xf0\xd1\x87\x28\x14\x8b\
\x36\x7f\x43\x80\x01\x40\x57\x14\x02\xe2\xd4\x6e\x0c\x7c\x8b\x75\
\x95\x9a\xd3\xf8\xc4\x39\x8e\x1c\x3f\xba\x25\x77\xfa\x07\xbc\xf9\
\x1b\x02\x0c\x00\xa1\x08\x02\x2f\x07\x3e\x04\x74\x5b\x0d\xa9\x39\
\x54\x2a\x15\x1e\x3f\x71\x8c\xd1\x73\xe3\x5b\xf6\x77\x08\x41\xf3\
\x37\x04\x18\x00\x42\x11\x02\xae\x03\x3e\x05\x7c\xbb\xd5\x90\x1a\
\xdb\x4a\x7e\x85\xc3\x47\x1e\x61\x31\x97\xdb\xb2\xbf\x43\x88\x9a\
\xbf\x21\xc0\x00\x10\x8a\x10\x90\xa2\xb6\x69\xd0\x6b\xac\x86\xd4\
\x98\xa6\x66\x66\x78\xe4\xf1\x23\x94\xca\xa5\x2d\xfb\x3b\x84\xb0\
\xf9\x1b\x02\x0c\x00\xa1\x09\x02\x3f\x05\xbc\x17\xf0\xc5\xf6\x52\
\x83\xa8\x56\xab\x9c\x38\x7d\x8a\x93\x67\x4f\x6f\xe9\xdf\x23\xc4\
\xcd\xdf\x10\x60\x00\x08\x4d\x08\x78\x2e\xb5\xa7\x04\x0e\x5a\x0d\
\x69\x6b\x15\x8b\x45\x1e\x7a\xec\x51\x66\xe7\xe7\x6c\xfe\x86\x00\
\x03\x80\x36\x25\x04\x74\x03\xef\x07\x6e\xb3\x1a\xd2\xd6\x98\x9e\
\x9d\xe1\xd1\xa3\x8f\x6d\xd9\x23\x7e\x36\x7f\x43\x80\x01\x20\xdc\
\x41\xe0\x55\xd4\xee\x0d\xe8\xb3\x1a\xd2\xe6\x28\x97\xcb\x1c\x3d\
\x79\x62\xcb\xb6\xf4\xb5\xf9\x1b\x02\x0c\x00\x7a\x22\x04\xec\x02\
\xfe\x04\xf8\xbf\xac\x86\xb4\xb1\xe6\x17\x17\x78\xe4\xf1\x23\x2c\
\xaf\xac\xd8\xfc\x0d\x01\x32\x00\x34\x4c\x10\xb8\x03\xf8\x4d\x7c\
\xa1\x90\xb4\xee\xaa\xd5\x2a\x27\xce\x9c\xe2\xd4\x99\x33\x54\xa9\
\xda\xfc\x0d\x01\x32\x00\x34\x5c\x08\xb8\x1e\xf8\x28\xf0\x7c\xab\
\x21\xad\x8f\xa5\xe5\x65\x1e\x7e\xfc\x08\x8b\xb9\xc5\x86\xf8\xfb\
\xd8\xfc\x0d\x01\x06\x00\x5d\x2c\x04\xc4\x81\x5f\x00\x7e\x11\x1f\
\x17\x94\xd6\x74\xd6\x7f\x66\x7c\x94\xe3\xa7\x4e\x6e\xd9\x76\xbe\
\x36\x7f\x43\x80\x01\x40\x57\x13\x04\xae\xa3\x76\x83\x60\xd6\x6a\
\x48\xab\xb3\x90\x5b\xe4\xc8\xb1\xc7\xb7\x74\x47\x3f\x9b\xbf\x21\
\xc0\x00\xa0\xb5\x06\x81\xdb\x80\xdf\x06\x06\xac\x86\x74\x69\x95\
\x4a\x65\xe5\xe8\xc9\x13\x2d\x67\xc7\x47\x1b\xea\xfb\xcc\xe6\x6f\
\x08\x30\x00\xe8\x6a\x43\xc0\x36\xe0\x4e\xe0\x27\x80\xa8\x15\x91\
\x2e\xe8\x53\x0b\x8b\x8b\x6f\x7a\xfc\xd4\xf1\xdb\xe6\xe7\xe7\xef\
\x6c\x94\xef\x34\x9b\xbf\x21\xc0\x00\xa0\xf5\x08\x02\x37\x01\x7f\
\x00\x3c\xcb\x6a\x48\x4f\x3a\x5e\xa9\x54\xee\x78\xe9\x8b\xff\xc3\
\xdf\x3f\xf1\x1f\xbc\xfb\xf7\x3f\xf8\xb6\xa5\xa5\xdc\xbb\x6d\xfe\
\x86\x00\x19\x00\x82\x14\x02\x12\xc0\x9b\x81\x77\xe0\x6b\x86\x15\
\x6e\xcb\xc0\x7b\xaa\xd5\xea\x3b\x6f\x7e\xd1\x4d\x4b\x4f\xfd\x2f\
\xdf\xf9\xbe\xf7\xbf\xad\x90\xcf\x6f\x59\x08\xb0\xf9\x6f\x4a\x08\
\xb8\xf5\x8e\x5b\x6f\xf9\x4b\x4b\x61\x00\x08\x5b\x10\xd8\x0e\xfc\
\x1a\xf0\x53\x40\xc2\x8a\x28\x44\x2a\xc0\x27\x80\x77\x64\x33\xe9\
\x93\x97\xfa\x7f\xfc\x8d\xf7\xde\xf5\xb6\x62\xb1\xb8\xe9\x21\xc0\
\xe6\x6f\x08\x30\x00\x68\x33\x82\xc0\xf5\xc0\xbb\x81\x1f\xb4\x1a\
\x0a\x81\x2f\x00\x6f\xc9\x66\xd2\x5f\xbd\xd2\xff\xc1\x66\x87\x00\
\x9b\xbf\x21\xc0\x00\xa0\xcd\x0e\x02\x2f\x06\x7e\x0b\xf8\xf7\x56\
\x43\x01\xf4\x30\xf0\xf6\x6c\x26\xfd\x37\x57\xf3\x3f\xde\xac\x10\
\x60\xf3\x37\x04\x18\x00\xb4\x55\x21\x20\x02\xdc\x02\xbc\x0b\xd8\
\x67\x45\x14\x00\x13\xc0\xaf\x03\x7f\x90\xcd\xa4\x4b\x6b\xf9\x83\
\x36\x3a\x04\xd8\xfc\x0d\x01\x06\x00\x35\x42\x10\x68\xa5\xf6\xc8\
\xe0\xdb\x81\x3d\x56\x44\x4d\x68\x12\xf8\x1d\xe0\xfd\xd9\x4c\x7a\
\x61\xbd\xfe\xd0\x8d\x0a\x01\x36\x7f\x43\x80\x01\x40\x8d\x16\x04\
\x92\xc0\x8f\x03\x3f\x0f\xec\xb7\x22\x6a\x02\xe3\xd4\x36\xbe\xfa\
\x40\x36\x93\xde\x90\xcd\xfb\xd7\x3b\x04\xd8\xfc\x0d\x01\x06\x00\
\x35\x72\x10\x48\x00\xaf\xa1\xf6\x8e\x81\x43\x56\x44\x0d\x68\x14\
\xf8\xef\xd4\x96\xfa\x97\x36\xfa\x5f\xb6\x5e\x21\xc0\xe6\x6f\x08\
\x30\x00\xa8\x59\x82\x40\x1c\xb8\x8d\xda\x1e\x02\xd7\x5a\x11\x35\
\x80\xd3\xd4\x5e\x83\xfd\x47\xd9\x4c\x7a\x65\x33\xff\xc5\x6b\x0d\
\x01\x36\x7f\x43\x80\x01\x40\xcd\x18\x04\x62\xc0\xab\x80\x9f\x01\
\xd2\x56\x44\x5b\xe0\x5e\xe0\x2e\xe0\xe3\xd9\x4c\x3a\xbf\x55\x7f\
\x89\xab\x0d\x01\x36\x7f\x43\x80\x01\x40\x41\x08\x03\xcf\xaf\x07\
\x81\x57\x01\x49\x2b\xa2\x0d\x54\x06\xfe\x06\xb8\x2b\x9b\x49\x7f\
\xa1\x51\xfe\x52\xab\x0d\x01\x36\x7f\x43\x80\x01\x40\x41\x0b\x02\
\x3b\x81\xd7\x01\xaf\xc5\x37\x0f\x6a\x7d\xcd\x02\xff\x1f\xf0\x7b\
\xd9\x4c\xfa\x58\x23\xfe\x05\xaf\x34\x04\xd8\xfc\x0d\x01\x06\x00\
\x05\x39\x08\xb4\x00\x3f\x5a\x5f\x15\x78\x8e\x15\xd1\x1a\x3c\x0c\
\xbc\x0f\xf8\x48\x36\x93\xce\x35\xfa\x5f\xf6\x37\xde\x7b\xd7\xdb\
\x8b\xc5\xe2\x9d\x36\x7f\x43\x80\x01\x40\x86\x81\xe1\x91\xe7\x02\
\xb7\xd7\x03\x41\x9f\x15\xd1\x15\x98\x07\x3e\x09\x7c\x38\x9b\x49\
\xff\x6b\xb3\xfd\xe5\x2f\x16\x02\x6c\xfe\x86\x00\x03\x80\xc2\x1a\
\x04\x92\xc0\xf7\xd7\xc3\xc0\x77\x01\x71\xab\xa2\xf3\x54\x80\xcf\
\x03\x1f\x06\x3e\xbd\x19\x8f\xf1\x6d\x68\x08\xb8\xeb\x7d\x6f\x2f\
\x16\x0a\x77\xda\xfc\x0d\x01\x06\x00\xe9\x9b\xc3\xc0\x0e\x6a\x8f\
\x12\xde\x0e\xdc\x60\x45\x42\xed\x71\xe0\x23\xc0\x47\xb3\x99\xf4\
\x89\x20\x1d\xd8\x3b\xef\x7a\xdf\xdb\x0b\x85\xc2\x9d\x36\x7f\x43\
\x80\x01\x40\xba\x70\x18\x78\x2e\xf0\x4a\xe0\x15\xc0\x33\xac\x48\
\x28\x9c\x00\x3e\x0d\xfc\x15\xf0\x6f\xd9\x4c\xba\x1a\xd4\x03\xbd\
\xf3\xf7\x3f\xf0\x33\xed\x1d\x1d\xbf\x13\x8d\xd9\xfd\x0d\x01\x06\
\x00\xe9\x52\x61\xe0\x86\x7a\x10\x78\x05\xf0\x6c\xe7\x53\xa0\x3c\
\x52\x6f\xf8\x7f\x9d\xcd\xa4\xbf\x12\xa6\x03\x7f\xdf\x9f\x7e\xec\
\xb6\x68\x34\xfa\x61\xc0\x10\x60\x08\x30\x00\x48\x57\x10\x06\x0e\
\x9d\x17\x06\x5e\x00\x44\xad\x4a\x53\xa9\x52\xdb\xa8\xe7\xd3\xc0\
\x5f\x65\x33\xe9\xc3\x61\x2e\xc6\xfb\x3f\xf6\xf1\xdb\x22\x91\x88\
\x21\xc0\x10\x60\x00\x90\x56\x19\x06\x06\x81\x97\x02\x37\xd7\x3f\
\xbb\xad\x4a\x43\x9a\x04\x3e\x57\xff\xdc\x9d\xcd\xa4\x4f\x5a\x12\
\x43\x80\x21\xc0\x00\x20\xad\x67\x20\x78\xe6\x79\x81\xe0\xc5\x40\
\xa7\x55\xd9\x12\xcb\xc0\x17\x81\xbb\xeb\x4d\xff\x6b\x41\xbe\x9e\
\xbf\x1e\x7e\xef\xe3\x9f\xb8\x8d\xda\x93\x0e\x86\x00\x43\x80\x01\
\x40\x5a\x63\x18\x48\x00\x2f\x04\xbe\xb3\xfe\xf3\x05\xc0\x36\x2b\
\xb3\x21\x16\x80\xff\x0d\x7c\x09\xf8\x02\x30\xbc\xd9\x2f\xdf\x31\
\x04\xc8\x10\x60\x00\x90\x2e\x16\x08\x22\xc0\xf5\xf5\x20\xf0\xc2\
\xfa\xe7\x59\xb8\xef\xc0\x6a\x55\x80\x87\xea\xcd\xfe\xcb\xf5\x9f\
\x0f\x66\x33\xe9\x8a\xa5\x31\x04\xc8\x10\x60\x00\x50\xb3\x84\x82\
\x36\xe0\x79\xf5\xcf\x0d\xf5\xcf\x33\x81\x76\xab\x03\xd4\x96\xf2\
\x1f\x06\x1e\xac\x7f\xbe\x02\xfc\xff\xd9\x4c\x7a\xde\xd2\x18\x02\
\x64\x08\x30\x00\x28\x88\x2b\x05\x07\x9e\x12\x08\x6e\x00\xbe\x15\
\x68\x0b\xe8\x61\xaf\x50\x7b\x1c\xef\x41\xe0\xf0\x79\x0d\xff\x71\
\xcf\xec\x0d\x01\x32\x04\x18\x00\x64\x38\x18\x1e\x19\x00\xf6\xd7\
\x3f\xfb\xea\x9f\xfd\xe7\xfd\x6c\xd4\x77\x1a\xcc\x52\xdb\x64\xe7\
\xe4\x45\x7e\x8e\x79\x93\x9e\x21\x40\x86\x00\x03\x80\x74\xf5\x01\
\xa1\x0d\xe8\x07\x7a\xeb\x61\xa0\xf7\x22\x9f\x76\x20\x79\x91\x4f\
\x4b\xfd\x27\x40\xe1\x32\x9f\x25\x60\xfa\x02\x9f\xa9\xf3\xfe\x79\
\x32\x9b\x49\x2f\x38\x3a\x86\x00\x19\x02\x0c\x00\x92\x64\x08\x90\
\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\x92\x64\x08\x90\x21\
\xc0\x00\x20\x49\x86\x00\x6d\x6a\x08\xb8\xed\x8e\x5b\x6f\xf9\x0b\
\x03\x80\x24\xc9\x10\x60\x08\x30\x00\x48\x92\x0c\x01\x86\x00\x03\
\x80\x24\x19\x02\x0c\x01\x86\x00\x03\x80\x24\x19\x02\x64\x08\x30\
\x00\x48\x92\x21\x40\x86\x00\x03\x80\x24\x19\x02\x64\x08\x30\x00\
\x48\x92\x21\x40\x86\x00\x03\x80\x24\x19\x02\x64\x08\x30\x00\x48\
\x92\x21\x40\x86\x00\x03\x80\x24\x19\x02\x64\x08\x30\x00\x48\x92\
\x21\x40\x86\x00\x03\x80\x24\x19\x02\x64\x08\x30\x00\x48\x92\x21\
\x40\x86\x00\x03\x80\x24\x19\x02\x14\xe6\x10\x60\x00\x90\x24\x43\
\x80\x42\x18\x02\x0c\x00\x92\x64\x08\x50\x08\x43\x80\x01\x40\x92\
\x0c\x01\x0a\x61\x08\x30\x00\x48\x92\x21\x40\x21\x0c\x01\x06\x00\
\x49\x32\x04\x28\x84\x21\xc0\x00\x20\x49\x86\x00\x85\x30\x04\x18\
\x00\x24\xc9\x10\xa0\x10\x86\x00\x03\x80\x24\x19\x02\x14\xc2\x10\
\x60\x00\x90\x24\x43\x80\x42\x18\x02\x0c\x00\x92\x64\x08\x50\x08\
\x43\x80\x01\x40\x92\x0c\x01\x0a\x61\x08\x30\x00\x48\x92\x21\x40\
\x21\x0c\x01\x06\x00\x49\x32\x04\x28\x84\x21\xc0\x00\x20\x49\x86\
\x00\x85\x30\x04\x18\x00\x24\xc9\x10\xa0\x10\x86\x00\x03\x80\x24\
\x19\x02\x14\xc2\x10\x60\x00\x90\x24\x43\x80\x1a\x3b\x04\xfc\xe8\
\x1d\xb7\xde\xf2\xa9\xf5\xfe\x83\xe3\xd6\x56\x92\x9a\xd7\x1d\xb7\
\xde\xf2\xb1\xdf\xfb\xf8\x27\x30\x04\x04\xd6\x2c\x70\xc4\x15\x00\
\x49\x92\x2b\x01\xe1\x31\x09\xdc\x7c\xc7\xad\xb7\xdc\x6b\x00\x90\
\x24\x19\x02\x6c\xfe\x06\x00\x49\x92\x21\xc0\xe6\x6f\x00\x90\x24\
\xd5\x42\xc0\xab\x81\x0f\x19\x02\x6c\xfe\x06\x00\x49\x32\x04\xc8\
\xe6\x6f\x00\x90\x24\x43\x80\xc2\xdc\xfc\x0d\x00\x92\x64\x08\x50\
\x08\x9b\xbf\x01\x40\x92\x0c\x01\x0a\x61\xf3\x37\x00\x48\x92\x21\
\x40\x21\x6c\xfe\x06\x00\x49\x32\x04\x28\x84\xcd\xdf\x00\x20\x49\
\x86\x00\x85\xb0\xf9\x1b\x00\x24\xc9\x10\xa0\x10\x36\x7f\x03\x80\
\x24\x19\x02\x0c\x01\x21\x6c\xfe\x06\x00\x49\x32\x04\x18\x02\x42\
\xd8\xfc\x0d\x00\x92\x64\x08\x30\x04\x84\xb0\xf9\x1b\x00\x24\x49\
\x86\x80\x10\x36\x7f\x03\x80\x24\xc9\x10\x10\xc2\xe6\x6f\x00\x90\
\x24\x19\x02\x42\xd8\xfc\x0d\x00\x92\x24\x43\x40\x08\x9b\xbf\x01\
\x40\x92\x64\x08\x08\x61\xf3\x37\x00\x48\x92\x0c\x01\x21\x6c\xfe\
\x06\x00\x49\x92\x21\x20\x84\xcd\xdf\x00\x20\x49\x32\x04\x84\xb0\
\xf9\x1b\x00\x24\x49\x86\x80\x10\x36\x7f\x03\x80\x24\xc9\x10\x10\
\xc2\xe6\x6f\x00\x90\x24\x19\x02\x42\xd8\xfc\x0d\x00\x92\x24\x43\
\x40\x08\x9b\xbf\x01\x40\x92\x64\x08\x08\x61\xf3\x37\x00\x48\x92\
\x0c\x01\x21\x6c\xfe\x06\x00\x49\x92\x21\x20\x84\xcd\xdf\x00\x20\
\x49\x32\x04\x84\xb0\xf9\x1b\x00\x24\x49\x86\x80\x10\x36\x7f\x03\
\x80\x24\xc9\x10\x10\xc2\xe6\x6f\x00\x90\x24\x19\x02\x42\xd8\xfc\
\x0d\x00\x92\x24\x43\x40\x08\x9b\xbf\x01\x40\x92\x64\x08\x08\x61\
\xf3\x37\x00\x48\x92\x0c\x01\x21\x6c\xfe\x06\x00\x49\x92\x21\x20\
\x84\xcd\xdf\x00\x20\x49\x32\x04\x84\xb0\xf9\x1b\x00\x24\x49\x61\
\x0f\x01\xa1\x6c\xfe\x06\x00\x49\x52\x98\x43\x40\x68\x9b\xbf\x01\
\x40\x92\x14\xd6\x10\x10\xea\xe6\x6f\x00\x90\x24\x85\x31\x04\x84\
\xbe\xf9\x1b\x00\x24\x49\x61\x0b\x01\x36\x7f\x03\x80\x24\x29\x64\
\x21\xc0\xe6\x6f\x00\x90\x24\x85\x2c\x04\xd8\xfc\x0d\x00\x92\xa4\
\x90\x85\x00\x9b\xbf\x01\x40\x92\x14\xb2\x10\x60\xf3\x37\x00\x48\
\x92\x42\x16\x02\x6c\xfe\x06\x00\x49\x52\xc8\x42\x80\xcd\xdf\x00\
\x20\x49\x0a\x59\x08\xb0\xf9\x1b\x00\x24\x49\x21\x0b\x01\x36\x7f\
\x03\x80\x24\x29\x64\x21\xc0\xe6\x6f\x00\x90\x24\x85\x2c\x04\xd8\
\xfc\x0d\x00\x92\xa4\x90\x85\x00\x9b\xbf\x01\x40\x92\x14\xb2\x10\
\x60\xf3\x37\x00\x48\x92\x02\x1c\x02\x7e\x0c\xf8\x93\xa7\x84\x00\
\x9b\xbf\x01\x40\x92\x14\xb2\x10\x60\xf3\x37\x00\x48\x92\x42\x16\
\x02\xfe\x3b\xf0\x32\x9b\xbf\x24\x49\xe1\x0a\x01\x5d\x56\x41\x92\
\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\
\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\
\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\
\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\
\x49\x92\x24\x49\x92\x24\x49\x92\xa4\x80\xf9\x3f\xf8\xb6\x7b\x59\
\x54\xb9\xf5\x59\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\
\x00\x00\x04\x5d\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x04\x24\x49\x44\x41\x54\x78\xda\x9d\x96\x5b\x6c\x53\x75\
\x1c\xc7\xbf\x67\x6d\x57\xe8\x56\x76\x3b\x63\xeb\x06\xe8\xc6\x2c\
\x13\x99\x26\x06\xb2\x05\x87\x78\x7b\x60\x08\xb2\x11\x97\xa0\x31\
\xde\x1e\x7c\xf0\xc9\x4b\x88\x44\x4d\x0c\xbe\x28\xe1\xc1\x37\x79\
\xf0\x81\xc4\x07\x7d\x31\x0c\xa3\x14\x43\x36\x18\xb0\xc4\x2e\x60\
\xd0\x6d\x66\x6a\x57\xb3\x8e\x5d\xea\xba\x76\xbd\x9e\xd3\x73\x7a\
\x7a\x8e\xbf\xf3\x3f\xa7\x6b\xbb\x75\x0f\xf4\x9f\xfc\xfa\xbf\x9d\
\x7c\x3f\xbf\x5b\x4f\xcb\xa1\xcc\xf1\xe2\x0f\xcf\xf4\x71\x52\xd8\
\x23\x49\x19\x88\x92\x8c\x98\x64\x3d\x3a\xf9\xde\x3f\x57\xd7\x3f\
\xc7\x95\x23\x7e\xe2\xf2\x0b\x7d\xd6\x4c\xd8\xd3\xd1\xb6\x03\x4e\
\xa7\x13\x92\x2c\xc3\x33\xec\x45\x5c\xb2\x1c\xf5\x9d\x09\x5c\x6d\
\xf9\xa4\xce\xab\x28\x99\xee\xe5\x73\x49\xae\x2c\xc0\xe0\xd0\x41\
\x6f\x53\xbd\xa3\x7b\x35\x96\xc0\xa3\x7b\x76\x33\x80\x28\x8a\xf0\
\x8c\xdc\x85\x20\xab\xe3\x2d\x7c\x75\xf7\xcc\x5c\x08\x65\x03\x4e\
\x0d\x1d\xd0\xd2\x4a\xc5\x78\x2a\x63\x39\x8b\x74\xc4\x73\xf8\xa9\
\x27\x11\x8d\xc5\x90\x4a\x8a\xf8\xcb\x7f\x1f\x4d\x7c\x2d\xae\x7b\
\xa7\xcb\x07\x9c\xbc\x7c\xf8\xfc\xa5\xfe\x9b\xa7\x73\xfb\xde\x0b\
\xed\xda\x91\xe7\x7a\xb0\xb0\x10\x84\x20\xa6\x29\xa2\x4c\x31\xe0\
\xf7\x2f\x9d\xe1\xca\x9a\xa6\x7a\x25\x19\x2d\x29\x68\x71\x6c\x83\
\xcd\xb1\xeb\x6d\xf7\x5b\xa3\x17\x4b\xdd\x1f\xbc\xe0\xf6\xb6\x36\
\x56\x77\x3f\xd1\xd5\x09\xdf\xcc\xec\x46\xc0\xc4\x79\x5e\xeb\xfa\
\xe0\x1b\x20\x7e\x87\x76\x15\x1b\x15\xac\x15\xf8\xfb\xfb\xef\xc6\
\x3a\xdf\x99\x39\xb4\xfe\xea\xf9\x8b\xfb\x48\xdc\xd9\xed\x7e\xa4\
\x6d\xf3\x08\x18\xe0\x44\x2b\xb0\xfa\x47\xe9\xbe\x22\xa6\xef\x57\
\x5b\x40\xad\xea\xe1\xe4\xf0\xf4\xae\xc2\xab\x0f\x1b\x78\xd6\xa6\
\x62\x5a\xb7\x0c\xd2\x24\x2e\xc9\x59\xc8\x8a\x3a\x1e\x3a\x97\xe8\
\x29\x00\xb4\x00\xb1\x09\x02\x94\x20\xa8\x1a\xe0\x3a\x06\xf0\x7d\
\xb4\xce\x98\x87\x5a\xe1\x03\xec\x73\xf2\xeb\x2f\xd0\xb0\xff\xdd\
\x8e\xd6\x67\x3f\xf7\xe7\x6e\x36\x02\xca\x18\x92\x68\x81\x50\xf5\
\x1a\xe6\xaf\x5f\xd1\xb7\x59\xbd\x6c\xe6\x95\x3b\x0f\xe8\x77\x01\
\xd1\xc9\x4d\x45\x34\x72\x58\x88\xdb\x20\xc4\xac\x6c\x4e\x44\x6c\
\xd0\xd4\x7c\xb4\x5b\xf9\x26\xd8\x6b\xeb\x60\xaf\xa9\x81\x22\xc4\
\x11\x9e\x9e\xd6\x8f\x9b\xf3\x80\x81\x66\xaa\xc1\x14\xb2\x19\x0e\
\xd1\x65\x3b\xc4\x84\x8d\xcc\x8a\x74\xca\x52\x04\xda\xda\xb8\x13\
\xf6\xfa\xed\xb0\xd7\xf1\x24\x56\xcb\x6c\x4b\xcd\x36\x82\xc9\x94\
\x29\x09\x9c\x26\xc3\xff\xf3\x8f\x10\x56\xc2\x78\xfc\xf4\x4a\x41\
\x91\x07\x5a\xa0\xae\x4c\xe0\xcf\xdb\xbc\x21\xb4\xfd\x61\x12\x6a\
\x81\xbd\xc1\x45\x22\x8d\x24\x48\xa2\xb5\xd5\x2c\x14\x8e\x84\x34\
\x55\x00\xd2\x8b\xe0\x92\xf7\xe8\x4c\x5d\x73\x20\x91\x68\xc6\xec\
\xf0\x88\xbe\xec\x22\xc0\x54\x1e\x30\xf8\x18\xc4\x7f\xc7\x30\xe7\
\x73\x63\xcf\x1b\x9f\x42\xe3\x2a\xc1\x65\x23\xac\xc0\x1a\xb7\x85\
\x66\x91\xf6\x31\x20\x13\x26\x8b\x18\xb3\x92\x22\x71\xb9\x28\x42\
\xff\xed\xa0\xee\xfd\x22\x89\xb7\x16\x17\xf9\xd5\x5e\x04\xae\x8d\
\xc0\xb6\xe3\x18\x5c\x87\xfa\x59\xa8\xd0\x05\xd5\xb4\x21\x94\x4d\
\x92\x25\x68\xad\xcf\xe4\xbd\x1e\x41\x36\x5d\xd4\x4d\x89\x78\x23\
\x66\x47\x46\xf5\x25\x4f\x80\x70\x31\xe0\xf5\xe3\x98\xfc\xf6\x27\
\xb4\x0f\x7e\x0c\x87\x6b\x27\x38\x65\xd5\x10\xd1\xc5\x55\x13\xc0\
\xc4\x73\x00\x91\x4c\x29\xf6\xfe\xd6\x12\x84\x70\xc4\x47\xe2\xee\
\x0d\x6d\xba\xf7\xd4\x11\xf8\xae\xdc\x41\xe7\x9b\x9f\x91\x4f\x94\
\x67\x25\x62\x88\x28\x05\xe2\x0c\x90\x32\xce\x35\xc9\x68\x2d\x73\
\xc4\xa3\x75\x08\xdc\x18\xd3\x97\xd5\x04\x48\x6d\x00\xf0\x7b\xdb\
\xa1\x55\xee\xa6\xf4\x9c\xa4\x5c\x47\x8d\x74\xb0\x34\xd0\xb3\x4a\
\xc2\x84\xa4\x0c\xef\x59\x6a\x8a\xbd\x9f\xb9\xb5\x08\x31\xbc\xfa\
\x1b\x89\xef\x2f\x3c\x5f\x03\xe8\x73\xfb\xcb\x1f\xc1\xd1\xfc\x10\
\x79\x1f\xcc\xe7\x99\x89\x9b\x10\x06\x14\x59\x3b\x16\x8e\xf8\xaa\
\x13\x81\x51\xaf\xbe\xac\x24\x40\xa6\x24\xc0\xe6\xac\xa7\xee\x39\
\x4b\xc5\xd5\x8b\x1a\x31\x45\x73\x39\x37\xd7\x6b\x85\x55\x8b\xbd\
\xbf\x39\x0f\x31\x12\xbb\x4b\xe2\x07\xd6\x7f\x41\x19\x60\xea\x2b\
\x97\x56\xb7\xef\x69\xb8\x7a\x5f\x32\xd2\xa3\xc4\x0d\x51\x96\x16\
\x33\x02\x66\x12\x6b\xcb\x58\xa8\x12\xb1\xfb\x21\xa4\x96\x43\x50\
\xc4\x74\x4e\xcb\x4e\x00\xb9\x24\x80\x22\x50\xdb\x06\xde\xe7\xaa\
\x5a\x29\x3d\x72\xd0\xe8\x1a\x06\x11\x90\x8c\xd0\xab\x61\x69\x16\
\xc2\xf2\x02\x52\xff\x2d\xd1\xbb\x6e\x2d\x03\xf3\x64\xfa\xcb\xe7\
\x1a\xd9\xb0\xde\xa5\x04\xd0\x36\x03\x68\x1d\xaf\x9c\xa1\x1f\x95\
\x6a\x12\xf3\x21\xb5\xe8\x87\x10\x9c\x63\x66\x8e\x71\x32\xfd\x1f\
\xc3\x2f\x24\x32\x8e\x07\x18\x45\x45\x36\xc7\x10\xd9\x25\x32\x0f\
\x89\x45\x1e\x44\xac\xd4\xf8\x1f\xb6\x1b\x62\x55\x02\x20\xb9\x20\
\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x2a\x82\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\
\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\
\x28\x04\x49\x44\x41\x54\x78\xda\xed\xdd\x6f\x6c\x1c\xf7\x9d\xdf\
\xf1\xcf\x92\x5c\x51\xe2\x1f\x8b\xfa\xc7\x48\xb6\x45\x33\x8a\x44\
\x59\x87\xa4\xd9\x48\x45\x5a\xb1\x96\xad\x34\xb8\xb3\x2f\xae\x11\
\xca\x75\x13\x07\x4a\x11\xf2\x4e\xb2\xaf\x41\x75\x96\x0a\xe4\x81\
\x72\xf5\xbf\x1c\x8c\x2b\xfc\xa0\x52\x7a\x0f\x0a\x37\x41\xe4\xa0\
\x65\x61\x20\x41\xa5\xe2\x72\xbd\x8b\x9f\x58\xb1\x03\xe9\x4e\x88\
\x63\xa5\xa9\xe3\xa3\x63\xfb\x14\x25\xb6\x6c\xc9\x12\x29\x71\x45\
\x72\xc9\xe5\xfc\xfa\x60\x97\x32\x45\xee\xcc\xec\x2e\x77\xf7\x37\
\x33\xbf\xf7\x0b\x10\x20\x6b\xa4\xe5\x77\x69\x5b\xf3\xd9\xdf\xcc\
\x7c\x7e\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x48\x82\
\x94\xed\x01\xfa\x87\x47\xba\x24\x65\xe6\xfe\x79\x66\xfc\x8a\x66\
\xae\x5d\x69\xe8\x0c\x67\x0e\xfe\xbe\xed\x6f\x03\x80\x08\xfa\xf9\
\xef\x46\xf5\x27\x3f\xfc\x59\x43\xbf\x66\x73\xeb\x0a\xbd\xfa\xd8\
\xbf\x3c\x69\xfb\xbd\x23\xf9\x5a\x1a\xf9\xc5\xfa\x87\x47\x76\x4b\
\xda\x2d\xe9\xd3\x92\x7a\x35\xef\xc4\x0f\x00\x90\x66\x73\x93\xca\
\x3c\xfb\xd7\x92\xa4\x74\xe7\xaa\xb1\xf4\x2d\x6b\xce\x4a\x3a\x27\
\xe9\x37\x92\xce\x4a\x3a\x7b\x6a\xef\xd6\x73\xb6\xe7\x44\xfc\xd5\
\x3d\x00\xf4\x0f\x8f\x0c\x48\xfa\xa2\xa4\x01\x49\x5d\xb6\xdf\x30\
\x00\xc4\x46\x2a\xd5\xa5\xc2\x87\xa6\x9b\xf4\x0f\x8f\x8c\xa9\x10\
\x06\x7e\x22\xe9\xe4\xa9\xbd\x5b\x4f\xda\x1e\x15\xf1\x53\x97\x00\
\xd0\x3f\x3c\xd2\x2b\x69\x50\xd2\x63\xe2\xa4\x0f\x00\xb5\xd6\xa5\
\x42\x30\xd8\x2d\xe9\xc9\xfe\xe1\x11\x49\x3a\xa1\x42\x20\x38\xc1\
\x0a\x01\xca\x51\xd3\x00\x50\x3c\xf1\x3f\xa9\xc2\xc9\x1f\x00\xd0\
\x38\x03\xc5\x1f\x47\xfa\x87\x47\xce\x4a\x3a\x29\xe9\xfb\xa7\xf6\
\x6e\x3d\x6b\x7b\x30\x44\x53\xcd\x02\x40\xff\xf0\xc8\x53\xe2\x13\
\x3f\x00\x44\x41\xa6\xf8\xe3\x60\x31\x0c\x7c\x5f\xac\x0c\x60\x81\
\x25\x07\x80\xfe\xe1\x91\x8c\xa4\x63\xe2\x86\x3e\x00\x88\xa2\x4c\
\xf1\xc7\x91\xfe\xe1\x91\x13\x2a\xac\x0a\x9c\xb0\x3d\x14\xec\x5b\
\x52\x00\x28\x7e\xea\x7f\xd2\xf6\x9b\x00\x00\x94\x65\x40\xd2\x40\
\xff\xf0\xc8\x39\x15\x56\x05\x8e\x9e\xda\xbb\x75\xcc\xf6\x50\xb0\
\xa3\xaa\x00\x50\x7c\x76\xff\x98\x0a\xff\x31\x01\x00\xe2\xa5\x57\
\x85\x0f\x6f\x8f\x15\x57\x05\x9e\xe6\xf2\x80\x7b\x9a\x2a\xfd\x03\
\xc5\x93\xff\x4b\xe2\xe4\x0f\x00\x71\xd7\xa5\xc2\x4d\xdb\xff\xd8\
\x3f\x3c\x72\xac\x78\x23\x37\x1c\x51\x51\x00\x98\x77\xf2\xcf\xd8\
\x1e\x1c\x00\x50\x53\x83\x22\x08\x38\xa5\xec\x00\xc0\xc9\x1f\x00\
\x9c\x30\xa8\x42\x10\x38\x52\xfc\x7b\x1f\x09\x55\x56\x00\xe0\xe4\
\x0f\x00\xce\x39\xa8\x42\x10\x78\xca\xf6\x20\xa8\x8f\x72\x6f\x02\
\x3c\x22\x4e\xfe\x0d\x37\x9e\xcb\xeb\xd7\x97\xc6\x6d\x8f\xd1\x30\
\xdb\x6f\x5f\x65\x7b\x04\x00\x37\xeb\x52\xa1\x69\xf0\x6b\x92\x86\
\xa8\x1c\x4e\x96\xd0\x00\xd0\x3f\x3c\x72\x50\x34\xfb\x59\xf1\xeb\
\x4b\xe3\x0d\xdf\x89\xcc\x26\x76\x65\x04\x22\xab\x57\xd2\x4b\xc5\
\x27\x06\x86\x78\x74\x30\x19\x02\x2f\x01\x14\x4b\x7e\x8e\xd8\x1e\
\x12\x00\x10\x09\x03\x2a\x5c\x16\x18\xb0\x3d\x08\x96\x2e\xec\x1e\
\x80\x63\xb6\x07\x04\x00\x44\x4a\x97\xa4\xe3\xfd\xc3\x23\xc7\xb9\
\x49\x30\xde\x7c\x03\x40\x71\xe9\x3f\x63\x7b\x40\x00\x40\x24\x0d\
\x48\x7a\xad\x7f\x78\x64\xb7\xed\x41\x50\x9d\x92\x01\xa0\x98\xea\
\xa8\xf8\x05\x00\x04\xe9\x55\xe1\xde\x80\x83\xb6\x07\x41\xe5\xfc\
\x56\x00\x0e\x8a\x5d\xfd\x00\x00\xe5\x39\xc2\x25\x81\xf8\x59\x14\
\x00\x8a\xff\x02\x1f\xb3\x3d\x18\x00\x20\x56\x06\x54\x58\x0d\xe8\
\xb5\x3d\x08\xca\x53\x6a\x05\x60\x50\x7c\xfa\x07\x00\x54\x2e\xa3\
\xc2\x7d\x01\x19\xdb\x83\x20\x5c\xa9\x00\xc0\xa7\x7f\x00\x40\xb5\
\xba\x54\x58\x09\xc8\xd8\x1e\x04\xc1\x6e\x0a\x00\xc5\x7f\x61\xbd\
\xb6\x87\x02\x00\xc4\x5a\x97\x0a\x21\x60\xd0\xf6\x20\xf0\xb7\x70\
\x05\xe0\x6b\xb6\x07\x02\x00\x24\x42\x97\xa4\x63\x3c\x26\x18\x5d\
\x0b\x03\xc0\x80\xed\x81\x00\x00\x89\x72\x9c\xcb\x01\xd1\x74\x23\
\x00\x14\xef\xdc\xec\xb5\x3d\x10\x00\x20\x51\xba\xc4\x3d\x01\x91\
\x34\x7f\x05\x60\xb7\xed\x61\x00\x00\x89\xd4\xa5\xc2\x4a\x40\x97\
\xed\x41\xf0\x91\xf9\x01\xe0\xd3\xb6\x87\x01\x00\x24\x56\xaf\x0a\
\x2b\x01\x5d\xb6\x07\x41\xc1\xfc\x00\x90\xb1\x3d\x0c\x00\x20\xd1\
\x32\x62\x93\xb9\xc8\x98\x1f\x00\x7a\x6d\x0f\x03\x00\x48\xbc\x81\
\xfe\xe1\x11\x42\x40\x04\x10\x00\x00\x00\x8d\x36\xc8\x06\x42\xf6\
\x35\x2d\xfd\x25\x00\x00\xa8\xd8\x11\x8a\x82\xec\x22\x00\x00\x00\
\x6c\x39\xc6\xe3\x81\xf6\x34\x49\x37\x3a\x00\x00\x00\x68\x34\x3a\
\x02\x2c\x69\x92\xa4\x53\x7b\xb7\x9e\xb3\x3d\x08\x00\xc0\x49\x5d\
\xa2\x23\xc0\x0a\x2e\x01\x00\x00\x6c\xeb\x15\x1d\x01\x0d\x47\x00\
\x00\x00\x44\x41\x46\xd2\x71\xdb\x43\xb8\x84\x00\x00\x00\x88\x8a\
\xdd\x74\x04\x34\x0e\x01\x00\x00\x10\x25\x83\xfd\xc3\x23\x4f\xd9\
\x1e\xc2\x05\x04\x00\x00\x40\xd4\x3c\x49\x47\x40\xfd\x11\x00\x00\
\x00\x51\x74\xac\x7f\x78\x64\xb7\xed\x21\x92\x8c\x00\x00\x00\x88\
\xaa\xe3\x74\x04\xd4\x0f\x01\x00\x00\x10\x55\x5d\xe2\xf1\xc0\xba\
\x21\x00\x00\x00\xa2\xac\x4b\x84\x80\xba\x20\x00\x00\x00\xa2\x2e\
\x23\x3a\x02\x6a\x8e\x00\x00\x00\x88\x03\x3a\x02\x6a\x8c\x00\x00\
\x00\x88\x8b\xc1\xfe\xe1\x91\x23\xb6\x87\x48\x0a\x02\x00\x00\x20\
\x4e\x0e\xd2\x11\x50\x1b\x04\x00\x00\x40\xdc\x1c\xeb\x1f\x1e\x19\
\xb0\x3d\x44\xdc\x11\x00\x00\x00\x71\x74\x8c\x8e\x80\xa5\x21\x00\
\x00\x00\xe2\xa8\x4b\x85\xc7\x03\x7b\x6d\x0f\x12\x57\x04\x00\x00\
\x40\x5c\x75\xa9\xd0\x16\xd8\x65\x7b\x90\x38\x22\x00\x00\x00\xe2\
\x2c\x23\xe9\x25\xdb\x43\xc4\x11\x01\x00\x00\x10\x77\x19\x3a\x02\
\x2a\x47\x00\x00\x00\x24\x01\x1d\x01\x15\x22\x00\x00\x00\x92\x82\
\x8e\x80\x0a\x10\x00\x00\x00\x49\x42\x47\x40\x99\x08\x00\x00\x80\
\xa4\xa1\x23\xa0\x0c\x04\x00\x00\x40\xd2\x74\xa9\xd0\x11\x90\xb1\
\x3d\x48\x94\x11\x00\x00\x00\x49\xd4\xa5\xc2\x4a\x40\x97\xed\x41\
\xa2\x8a\x00\x00\x00\x48\xaa\x8c\x0a\x2b\x01\x5d\xb6\x07\x89\x22\
\x02\x00\x00\x20\xc9\x32\x92\x78\x3c\xb0\x04\x02\x00\x00\x20\xe9\
\x06\x29\x0a\x5a\x8c\x00\x00\x00\x70\xc1\x20\x1d\x01\x37\x23\x00\
\x00\x00\x5c\x71\x8c\x10\xf0\x11\x02\x00\x00\xc0\x25\x47\x78\x3c\
\xb0\x80\x00\x00\x00\x70\x49\x97\xe8\x08\x90\x44\x00\x00\x00\xb8\
\xa7\x4b\x74\x04\x10\x00\x00\x00\x4e\xca\xc8\xf1\x8e\x00\x02\x00\
\x00\xc0\x55\x19\x49\xce\x3e\x1e\x48\x00\x00\x00\xb8\x6c\xc0\xd5\
\x8e\x00\x02\x00\x00\xc0\x75\x83\xfd\xc3\x23\x07\x6d\x0f\xd1\x68\
\x04\x00\x00\x00\x0a\x8f\x07\x0e\xda\x1e\xa2\x91\x08\x00\x00\x00\
\x14\x1c\x73\xe9\xf1\x40\x02\x00\x00\x00\x1f\x71\xa6\x23\x80\x00\
\x00\x00\xc0\x47\xba\x24\x1d\x77\xe1\xf1\x40\x02\x00\x00\x00\x37\
\xeb\x95\x03\x1d\x01\x04\x00\x00\x00\x16\xcb\x28\xe1\x1d\x01\x04\
\x00\x00\x00\x4a\x4b\x74\x47\x00\x01\x00\x00\x00\x7f\x89\xed\x08\
\x20\x00\x00\x00\x10\xec\x48\xff\xf0\xc8\x80\xed\x21\x6a\x8d\x00\
\x00\x00\x40\xb8\x63\xfd\xc3\x23\xbd\xb6\x87\xa8\x25\x02\x00\x00\
\x00\xe1\xba\x24\x1d\xb7\x3d\x44\x2d\x11\x00\x00\x00\x28\x4f\xa6\
\x7f\x78\xe4\x88\xed\x21\x6a\x85\x00\x00\x00\x40\xf9\x0e\xf6\x0f\
\x8f\xec\xb6\x3d\x44\x2d\x10\x00\x00\x00\xa8\xcc\xb1\x24\x94\x04\
\x11\x00\x00\x00\xa8\x4c\xaf\xa4\x27\x6d\x0f\xb1\x54\x04\x00\x00\
\x00\x2a\x17\xfb\x4b\x01\x04\x00\x00\x00\xaa\x13\xeb\x1b\x02\x09\
\x00\x00\x00\x54\x27\x13\xe7\x96\x40\x02\x00\x00\x00\xd5\x7b\x32\
\xae\x37\x04\x12\x00\x00\x00\xa8\x5e\x97\x62\x7a\x43\x20\x01\x00\
\x00\x80\xa5\x39\x18\xc7\x9a\x60\x02\x00\x00\x00\x4b\x17\xbb\x55\
\x00\x02\x00\x00\x00\x4b\x37\x18\xb7\x55\x00\x02\x00\x00\x00\xb5\
\x11\xab\x55\x00\x02\x00\x00\x00\xb5\x11\xab\x55\x00\x02\x00\x00\
\x00\xb5\x13\x9b\x55\x00\x02\x00\x00\x00\xb5\x13\x9b\x55\x00\x02\
\x00\x00\x00\xb5\xf5\x98\xed\x01\xca\x41\x00\x00\x00\xa0\xb6\x06\
\xe3\xd0\x0e\x48\x00\x00\x00\xa0\xb6\xba\x24\x0d\xda\x1e\x22\x0c\
\x01\x00\x00\x80\xda\x8b\xfc\x65\x00\x02\x00\x00\x00\xb5\xd7\xdb\
\x3f\x3c\x32\x60\x7b\x88\x20\x04\x00\x00\x00\xea\xe3\x6b\xb6\x07\
\x08\x42\x00\x00\x00\xa0\x3e\x06\xa2\xfc\x48\x60\x8b\xed\x01\x00\
\xa0\x51\x4e\x65\x5f\xd1\xa9\xec\x2b\x7a\x3b\xf7\x96\xde\xce\xfd\
\xba\xac\x3f\xd3\xf5\x05\xdb\x53\x23\xd4\x6c\x9b\xcc\xe4\x1d\xf2\
\xae\x6d\x97\x77\x75\x87\xcc\xf4\x5a\xdb\x13\xcd\x37\x20\xe9\xa8\
\xed\x21\x4a\x49\xcd\xfd\xa4\x7f\x78\xc4\xd8\x1e\x46\x92\x66\xc6\
\xaf\x68\xe6\xda\x95\x86\x7e\xcd\x33\x07\x7f\xdf\xf6\xdb\x06\x50\
\x47\xa7\xb2\xaf\xe8\xbf\x5e\xfa\x2f\xfa\x60\xe6\x7d\xdb\xa3\xa0\
\x01\xbc\x2b\xbb\x94\x7f\x6f\xaf\x34\xdb\x66\x7b\x14\x49\x3a\x77\
\x6a\xef\xd6\x8f\xdb\x1e\xa2\x14\x2e\x01\x00\x48\xac\xac\x97\xd5\
\x53\xef\x7d\x53\x4f\xbd\xf7\x4d\x4e\xfe\x0e\x69\x5a\xfd\x8a\x96\
\x6d\xfb\x0f\x6a\x5a\xf9\xaa\xed\x51\xa4\xc2\xcd\x80\x19\xdb\x43\
\x94\x42\x00\x00\x90\x48\x59\x2f\xab\x6f\xfc\xf6\x4f\x75\x2a\xfb\
\x8a\xed\x51\x60\x43\xf3\x84\x5a\x7a\xbf\xad\xa6\xd5\x91\xf8\xf7\
\x1f\xc9\x9b\x01\x09\x00\x92\xc6\x73\x79\xdb\x23\x00\xa8\xa1\xb9\
\x93\x7f\xb9\xd7\xf9\x91\x5c\x2d\x1b\xbf\x13\x85\x10\x30\x60\x7b\
\x80\x52\x08\x00\x92\x7e\x7d\x69\xdc\xf6\x08\x00\x6a\xe8\xe9\xf7\
\xbe\xc9\xc9\x1f\x37\xb4\x6c\xfc\x8e\x9a\x3a\xfe\xc1\xe6\x08\x91\
\xbc\x0c\x40\x00\x90\x34\x9e\x9b\xb1\x3d\x02\x80\x1a\x39\x3e\xfa\
\x03\xfd\x62\xe2\x35\xdb\x63\x20\x62\x9a\x37\xfe\x37\xa9\x79\xc2\
\xe6\x08\x91\xbb\x0c\x40\x00\x90\xf4\xea\xef\x46\x6d\x8f\x00\xa0\
\x06\xb2\x5e\x56\xff\xfd\xf2\xf7\x6c\x8f\x81\x08\x4a\x2d\xfb\x50\
\xcd\xeb\x7e\x6c\x73\x84\x01\xdb\xdf\x83\x85\x08\x00\x92\x7e\x4e\
\x00\x00\x12\xe1\xf8\xe8\x0f\x94\xf5\xb2\xb6\xc7\x40\x44\x35\xaf\
\xfd\xb1\xcd\x55\x80\xde\xa8\x95\x02\x11\x00\x24\xbd\x79\x69\x9c\
\x1b\x01\x81\x04\x78\xf1\xda\xff\xb1\x3d\x02\xa2\xac\x79\xc2\xf6\
\xa3\x81\x03\xb6\xbf\x05\xf3\x11\x00\x8a\x7e\xf2\xf6\x45\xdb\x23\
\x00\x58\x82\x53\xd9\x57\x78\xd6\x1f\xa1\x9a\x57\xfd\xd4\xe6\x97\
\xff\xa2\xed\xf7\x3f\x1f\x01\xa0\xe8\x85\xd7\xce\xdb\x1e\x01\xc0\
\x12\xfc\x62\x92\x1b\xff\x10\x2e\xd5\xf1\x86\xcd\xcb\x00\xbb\x6d\
\xbf\xff\xf9\x08\x00\x45\x6f\x5e\x1a\xe7\x5e\x00\x20\xc6\xde\xc9\
\xbd\x65\x7b\x04\xc4\x44\xd3\x0a\x7b\x1f\xf8\xfa\x87\x47\x76\xdb\
\x7e\xff\x37\xbe\x0f\xb6\x07\x88\x92\xef\xfc\xdd\xdb\xb6\x47\x00\
\x50\x25\x1e\xfd\x43\xb9\x52\x2b\x7e\x63\xf3\xcb\xef\xb6\xfd\xfe\
\xe7\x10\x00\xe6\x79\xf5\x77\xa3\xac\x02\x00\x40\xd2\xd9\xed\x03\
\xb8\xc7\xf6\xdb\x9f\x43\x00\x58\xe0\x3f\xff\x64\xc4\xf6\x08\x00\
\x80\xe4\xda\x6d\x7b\x80\x39\x04\x80\x05\xde\xbc\x34\x4e\x08\x00\
\x00\xd4\x4d\x54\xee\x03\x20\x00\x94\xf0\xc2\x6b\xe7\x79\x2c\x10\
\x00\x50\x2f\x19\xdb\x03\x48\x04\x00\x5f\xdf\x7a\xf1\x75\xbd\xc9\
\x26\x41\x00\x80\xda\xfb\xb4\xed\x01\x24\x02\x80\xaf\xf1\x5c\x5e\
\xff\xee\x87\x3f\x23\x04\x00\x00\x6a\x2d\x63\x7b\x00\x89\x00\x10\
\x88\x10\x00\x00\xa8\x83\x8c\xed\x01\x24\x02\x40\xa8\xf1\x5c\x5e\
\x5f\x1d\xfe\x3b\xfd\xe8\x57\xef\xd9\x1e\x05\x00\x90\x10\xfd\xc3\
\x23\x19\xdb\x33\x10\x00\xca\xf4\xad\x17\x5f\xd7\x37\xfe\xea\x17\
\x6c\x1a\x04\x00\xa8\x85\x2e\xdb\x03\x10\x00\x2a\xf0\x93\xb7\x2f\
\x6a\xe0\x7b\xaf\xb0\x1a\x00\x00\x58\xaa\xdd\xb6\x07\x20\x00\x54\
\x68\x3c\x97\xd7\xb7\x5e\x7c\x5d\x5f\xfc\xde\x4f\xf5\xa3\x5f\xbd\
\xc7\x8a\x00\x00\x20\x96\x5a\x6c\x0f\x10\x57\x17\xae\x4d\xea\x5b\
\x2f\xbe\xae\xce\xd6\x11\xdd\xf3\x89\x6e\xdd\xf3\x89\x75\xda\x7e\
\xfb\x6a\x75\xb6\xf2\x2d\x05\x00\x84\xb2\x5e\x09\xcc\xd9\x6a\x89\
\xc6\x73\x79\xfd\xe8\x57\xef\xdd\xb8\x2c\xd0\xb7\xae\x53\x1b\x6e\
\x59\xa1\xbe\x75\x9d\xb6\x47\x03\xdc\xb2\xda\xf6\x00\x40\xbc\x10\
\x00\x6a\xec\xcd\x4b\xe3\x7a\xf3\xd2\x38\x4d\x82\x40\x83\x75\x7d\
\xc1\xf6\x04\x40\x45\x7a\x6d\x0f\xc0\x3d\x00\x00\x00\x34\x5e\xaf\
\xed\x01\x08\x00\x00\x00\x38\x88\x00\x00\x00\x80\x83\x08\x00\x00\
\x00\x38\x88\x00\x00\x00\x80\x83\x08\x00\x00\x00\x38\x88\x00\x00\
\x00\x80\x83\x08\x00\x00\x00\x38\x88\x00\x00\x00\x80\x83\x08\x00\
\x00\x00\x38\x88\x00\x00\x00\x80\x83\x22\x17\x00\x52\xa9\xc8\x8d\
\x04\x00\x40\xe2\x44\xee\x6c\xdb\x94\x6e\xb5\x3d\x02\x00\x00\x89\
\x17\xb9\x00\xa0\xa6\xe8\x8d\x04\x00\x40\xd2\x44\xee\x6c\xcb\x0a\
\x00\x00\x00\xf5\x17\xb9\x00\x20\x49\xcd\xad\x2b\x6c\x8f\x00\x00\
\x40\xa2\x45\x32\x00\x34\x11\x00\x00\x00\xa8\xab\x48\x06\x80\xe6\
\xe5\xed\xb6\x47\x00\x00\x20\xd1\x22\x19\x00\x9a\xd2\xad\xdc\x0b\
\x00\x00\x40\x1d\x45\x32\x00\x48\x52\x4b\x47\x97\xed\x11\x00\x00\
\x48\xac\xe8\x06\x80\xb6\x4e\xa5\x9a\xd3\xb6\xc7\x00\x00\x20\x91\
\x22\x1b\x00\x24\x29\x7d\xcb\x6a\xdb\x23\x00\x00\x90\x48\x91\x0e\
\x00\x2d\x6d\x9d\x3c\x12\x08\x00\x40\x1d\x44\x3a\x00\x48\xd2\xb2\
\x55\x1f\x53\x8a\x76\x40\x00\x00\x6a\x2a\xf2\x67\xd6\x54\x73\x8b\
\xd2\x2b\xd7\xd9\x1e\x03\x00\x80\x44\x89\x7c\x00\x90\x0a\x97\x02\
\x78\x2a\x00\x00\x80\xda\x89\x45\x00\x90\xa4\x65\x2b\xd7\xaa\xa5\
\xed\x16\xdb\x63\x00\x00\x90\x08\xb1\x09\x00\x92\xb4\x6c\x55\x37\
\x21\x00\x00\x80\x1a\x88\x55\x00\x90\x0a\x21\x60\xd9\xaa\x8f\xd9\
\x1e\x03\x00\x80\x58\x6b\xb1\x3d\x40\x55\x43\xb7\x75\xaa\x29\xbd\
\x4c\xd3\xa3\x17\xe5\xcd\xe4\x6c\x8f\x03\x00\x40\xec\xc4\x6e\x05\
\xe0\xc6\xe0\xe9\x56\x2d\xef\xde\xa8\xf4\x2d\xab\x79\x4c\x10\x00\
\x80\x0a\xc5\x72\x05\x60\xbe\x74\xe7\x6a\xb5\xb4\x77\x29\x7f\x7d\
\x4c\xf9\xeb\xe3\x32\xb3\x33\xb6\x47\x02\x00\x20\xf2\x62\x1f\x00\
\x24\x29\xd5\xd4\xa4\x74\xe7\x6a\xa5\x3b\x57\x6b\x76\xea\xba\x66\
\x27\xaf\x6b\x36\x37\x49\x18\x00\x00\xc0\x47\x22\x02\xc0\x7c\xcd\
\xcb\xdb\xd5\xbc\xbc\x5d\x92\x64\x66\xf3\x32\xf9\x19\xcd\x4e\x4f\
\xda\x1e\x0b\x00\x80\x48\x49\x5c\x00\x98\x2f\xd5\xdc\xa2\x54\x73\
\x8b\x9a\xd8\x4f\x00\x00\x80\x9b\x70\xf7\x1c\x00\x00\x0e\x22\x00\
\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\
\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\
\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\
\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\
\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\
\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\
\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\
\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\
\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\
\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\
\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\
\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\
\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\
\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\
\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\
\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\
\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\
\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\
\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\
\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\
\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\
\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\
\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\
\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\
\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\
\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\
\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\
\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\
\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\
\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\
\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\
\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\
\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\
\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\
\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\
\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\
\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\
\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\
\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\
\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\
\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\
\x00\x0e\x22\x00\x00\x00\xe0\xa0\x16\xdb\x03\xd4\xc3\x96\x55\xad\
\xba\xfb\xf6\x0e\x6d\x5e\xd5\xaa\x0d\xed\x69\x6d\x59\xd5\x6a\x7b\
\x24\x00\x75\xf6\xb9\xd7\x6d\x4f\x00\xc4\x4b\x62\x02\xc0\x86\xf6\
\xb4\xbe\x74\x67\x97\xbe\xf0\xf1\x95\xea\x58\xc6\xc2\x06\x00\x00\
\x41\x62\x1f\x00\xb6\xac\x6a\xd5\x63\x3b\xba\xf5\x99\xee\x15\xb6\
\x47\x01\x00\x20\x36\x62\x1b\x00\x3a\x96\x35\xe9\x8f\x3f\xb5\x46\
\x5f\xda\xba\xca\xf6\x28\x00\x00\xc4\x4e\x2c\x03\xc0\x96\x55\xad\
\xfa\x8b\xbb\x6f\xd5\x86\xf6\xb4\xed\x51\x00\x00\x88\xa5\xd8\x05\
\x80\x2f\x6c\xba\x45\x7f\xf6\xcf\xd7\xdb\x1e\x03\x00\x80\x58\x8b\
\xd5\xdd\x72\x9c\xfc\x01\x00\xa8\x8d\xd8\x04\x00\x4e\xfe\x00\x00\
\xd4\x4e\x2c\x02\xc0\xdd\xb7\x77\x70\xf2\x07\x00\xa0\x86\x22\x1f\
\x00\x36\xb4\xa7\x39\xf9\x03\x00\x50\x63\x91\xbf\x09\xf0\xcf\x76\
\xae\xa7\xd8\x07\x28\xc3\x5b\x53\xbf\xd6\xfb\x33\x17\xf4\xf6\xd4\
\x9b\xb6\x47\x69\xa8\xf7\xa7\x2f\xe8\xfd\x99\x0b\xb6\xc7\x40\x8c\
\x34\xad\x7a\x45\x4d\xed\xff\x60\x7b\x0c\xed\xfe\x7f\xff\xec\xa5\
\x3a\xbe\xfc\x59\x49\xbf\x90\x74\xe2\xe4\x27\xff\x7e\xac\xd4\x6f\
\x48\xcd\xfd\xa4\x7f\x78\xc4\xd8\xfe\x66\x2c\xc4\x75\x7f\x20\xd8\
\xfb\x33\x17\xf4\xfd\x8b\xdf\xd5\x4f\xc7\x5f\x56\x76\x76\xdc\xf6\
\x38\x00\xa2\xe9\x79\x49\x4f\x9f\xfc\xe4\xdf\x9f\x9b\xff\x8b\x91\
\xfe\x68\xfd\x47\x9f\x5a\x63\x7b\x04\x20\xb2\x7e\xf8\xfe\x0b\xfa\
\xca\x9b\x7b\xf4\xb7\x63\x7f\xcd\xc9\x1f\x40\x90\x41\x33\x69\x5e\
\xbb\xfb\x95\xcf\x66\xe6\xff\x62\x64\x03\xc0\x17\x36\xdd\x42\xd1\
\x0f\xe0\xe3\xf9\xf3\xdf\xd5\x5f\xbe\x75\x44\x26\x67\x7b\x12\x00\
\x91\x97\x97\xcc\x94\xba\x24\xbd\x74\xf7\x2b\x9f\xed\x9d\xfb\xe5\
\xc8\x06\x00\x2a\x7e\x81\xd2\xde\xcf\x5d\xd0\xb1\xf3\xdf\x91\x24\
\x99\x09\x23\xcd\xda\x9e\x08\x40\x64\x19\xc9\xcb\xde\xb8\xc2\xdf\
\xa5\x26\x1d\x99\xfb\x87\x48\x06\x80\x2d\xab\x5a\xd9\xc2\x17\xf0\
\xf1\x83\x77\x5f\xb8\xe9\x9f\xbd\xeb\x91\xbb\x7d\x07\x40\x44\x98\
\xeb\x46\x9a\xff\x57\x84\xa7\x81\xb9\x9f\x46\x32\x00\xdc\x7d\x7b\
\x87\xed\x11\x80\xc8\x7a\xeb\xfa\x82\xbb\xfc\x67\x8b\x2b\x01\x00\
\x30\x8f\x99\x29\xfc\xf0\x13\xc9\x00\xf0\x99\x8f\xb5\xd9\x1e\x01\
\x88\x15\x93\x93\x94\xb7\x3d\x05\x80\xc8\xf0\x8a\x9f\xfe\x03\x44\
\x33\x00\x74\xaf\xb0\x3d\x02\x10\x59\xeb\x97\x6f\x28\xf9\xeb\xde\
\xc2\xa5\x3e\x00\xce\x32\xfe\x7f\x1f\x8c\xcd\xfd\x24\x72\x01\x80\
\x4f\xff\x40\xb0\xcf\xac\xdc\x51\xfa\x40\x19\x89\x1f\x40\xf2\x99\
\x9c\x64\xfc\x57\x04\x4f\xcc\xfd\x24\x72\x01\x00\x40\xb0\xfb\xba\
\xef\x57\x47\x4b\x67\xc9\x63\x61\xd7\xfc\x00\x24\x5c\xf8\x3d\x41\
\x4f\xcf\xfd\x24\x72\x01\x60\x3b\xcb\xff\x40\xa8\xa1\x3b\xf6\xf9\
\x1e\x33\xd7\x8d\xe4\xd9\x9e\x10\x80\x0d\x21\x4f\x05\x1d\x7d\x79\
\xd7\x99\x73\x73\xff\x10\xb9\x00\x00\x20\xdc\x43\x1b\x1e\x56\x66\
\xe5\xf6\xd2\x07\x0d\x97\x02\x00\x17\x99\x29\x05\xf5\x82\x9c\xd3\
\xbc\x4f\xff\x12\x01\x00\x88\xad\xc3\x7d\x4f\xf8\x5f\x0a\xc8\x8b\
\x96\x40\xc0\x25\x79\xc9\x4c\x06\x06\xff\xa1\x97\x77\x9d\x19\x9b\
\xff\x0b\x04\x00\x20\xa6\xd6\xb7\x6e\xd0\xe1\x2d\x8f\xfb\x1e\xa7\
\x25\x10\x70\x84\x09\x5d\xfa\x7f\xfa\xe5\x5d\x67\x4e\x2e\xfc\x45\
\x02\x00\x10\x63\x77\xad\xb9\x47\x77\xad\xb9\xc7\xf7\x38\x2d\x81\
\x40\xf2\x99\x89\xc0\xfb\x7e\xce\xbe\xbc\xeb\xcc\x53\xa5\x0e\x10\
\x00\x80\x98\x3b\xbc\xe5\x71\xdf\x6e\x00\x5a\x02\x81\x64\x33\x33\
\x92\x99\x0e\xfc\x2d\x43\x7e\x07\x08\x00\x40\xcc\x75\xb4\x74\xea\
\xf0\x96\x27\x7c\x8f\xd3\x12\x08\x24\x54\xf8\x0d\xbf\x87\x5e\xde\
\x75\xe6\xac\xdf\x41\x02\x00\x90\x00\x99\x95\xdb\xf5\xd0\xad\x0f\
\xfb\x1e\xa7\x25\x10\x48\x1e\x13\xfc\xff\xf5\xc9\x97\x77\x9d\x39\
\x1a\xf4\xe7\x09\x00\x40\x42\x1c\xd8\x74\x48\x9b\xdb\xfb\x4a\x1f\
\xa4\x25\x10\x48\x14\x93\x0b\x2c\xfd\x1a\x53\xc0\xd2\xff\x1c\x02\
\x00\x90\x20\x87\xfb\x02\x9e\x0a\xa0\x25\x10\x48\x06\xaf\xac\x47\
\xfe\xce\x85\xbd\x0c\x01\x00\x48\x90\xcd\xed\x7d\x3a\xb0\xe9\x90\
\xef\x71\x5a\x02\x81\xf8\x0b\x59\xfa\x3f\xf1\xf2\xae\x33\x27\xca\
\x79\x1d\x02\x00\x90\x30\x0f\xdd\x4a\x4b\x20\x90\x54\x66\x2a\x70\
\xa3\x9f\x31\x95\xb1\xf4\x3f\x87\x00\x00\x24\x10\x2d\x81\x40\x02\
\xcd\x86\x2e\xfd\xef\x59\xd8\xf6\x17\x84\x00\x00\x24\x10\x2d\x81\
\x40\xc2\x84\xb7\xfd\x1d\x2d\xd5\xf6\x17\x84\x00\x00\x24\x14\x2d\
\x81\x40\x72\x98\x49\x53\xd1\x46\x3f\xe5\x20\x00\x00\x09\x46\x4b\
\x20\x90\x00\xe1\x97\xed\x2a\x5a\xfa\x9f\x43\x00\x00\x12\x8c\x96\
\x40\x20\xe6\xca\xdb\xe8\xe7\x6c\x35\x2f\xdd\x62\xfb\xbd\xc5\xd5\
\xcc\xcc\x8c\x46\x47\x47\x95\xcb\x71\x37\x15\xa2\x6d\x8d\xd6\xe9\
\x0f\x3a\xfe\x50\x2f\x66\xff\xa6\xe4\x71\xef\xba\x51\xd3\x2d\x29\
\x29\x65\x7b\x52\x00\x0b\x85\x3c\xba\xeb\xbb\xd1\x4f\x39\x08\x00\
\x55\xc8\xe5\x72\x3a\x7f\xfe\xbc\x3c\x8f\x07\xaa\x11\x0f\x0f\xad\
\xf8\x8a\xde\x98\x7a\x5d\xbf\xcd\x9f\x5f\x7c\xb0\xd8\x12\x98\xea\
\x20\x01\x00\x51\x12\x52\xde\x35\x26\x69\xcf\x52\x5e\x9f\x4b\x00\
\x55\xf8\xf0\xc3\x0f\x39\xf9\x23\x76\x06\x3b\x1f\xf1\x3d\x46\x4b\
\x20\x10\x31\xe1\xf5\xdd\x4f\x97\xd3\xf6\x17\x84\x00\x50\x85\x6c\
\x36\x6b\x7b\x04\xa0\x62\x1b\x5b\x7a\xf4\xe5\x8e\xbd\xbe\xc7\x69\
\x09\x04\xa2\x63\xa9\x1b\xfd\x94\x83\x00\x00\x38\xe4\xf3\x2b\xee\
\xd5\xd6\xf4\xb6\xd2\x07\x69\x09\x04\x22\xc1\xe4\x42\xdb\xfe\x96\
\xb4\xf4\x3f\x87\x00\x00\x38\x66\xb0\x73\xbf\xda\x52\x6d\x25\x8f\
\xd1\x12\x08\x58\x16\xde\xf6\x37\x54\xcd\x23\x7f\xa5\x10\x00\x00\
\xc7\xac\x69\x5e\xab\xc1\xce\xfd\xbe\xc7\x69\x09\x04\xec\xf1\x82\
\x97\xfe\x9f\x2f\x77\xa3\x9f\x72\x10\x00\x00\x07\x65\x5a\x77\x28\
\xd3\xba\xc3\xf7\x38\x2d\x81\x40\xe3\x99\x29\x85\xb5\xfd\x1d\x2a\
\xf7\xb5\xca\x41\x00\x00\x1c\x35\xd8\xb9\x5f\x6b\x9a\xd7\x96\x3e\
\x48\x4b\x20\xd0\x58\x0d\x5c\xfa\x9f\x43\x00\x00\x1c\xd5\x96\x6a\
\xd3\x50\xd0\xa3\x81\xb4\x04\x02\x8d\x61\x24\x2f\x5b\xdb\x8d\x7e\
\xca\x41\x00\x00\x1c\xd6\x97\xbe\x53\x9f\x5f\x71\xaf\xef\xf1\x90\
\xeb\x91\x00\x6a\xc0\x4c\x86\xb6\xfd\xd5\x74\xe9\x7f\x0e\x01\x00\
\x70\xdc\x97\x3b\xf6\x6a\x63\x4b\x4f\xe9\x83\xe1\x65\x24\x00\x96\
\xc0\xcc\x84\x3e\x79\x33\x54\xaf\xaf\x4d\x00\xa8\x42\x5b\x5b\xdb\
\xd2\x5f\x04\x88\x10\x5a\x02\x01\x0b\xc2\xbb\x37\xaa\xde\xe8\xa7\
\x1c\x04\x80\x2a\x74\x77\x77\xab\xa9\x89\x6f\x1d\x92\x63\x63\x4b\
\x8f\x1e\xe8\xf0\xef\x16\xa1\x25\x10\xa8\xbd\x32\xda\xfe\x9e\xaa\
\xe7\xd7\x67\x33\xa0\x2a\xb4\xb6\xb6\xaa\xb7\xb7\x57\x97\x2f\x5f\
\xd6\xcc\x0c\x1f\x8d\x90\x0c\x5f\x6e\xdb\xab\x77\xbc\xb7\xf4\xfa\
\xc4\x2f\x17\x1f\x2c\x7e\x52\x49\x75\xb2\x61\x10\x50\x0b\x66\x3a\
\x74\xa3\x9f\xba\x2d\xfd\xcf\x21\x00\x54\x29\x9d\x4e\x6b\xfd\xfa\
\xf5\xb6\xc7\x00\x6a\xea\x89\xee\x3f\xd7\x1f\xbf\xf6\x6f\x95\xcd\
\x8f\x2f\x3a\x66\xf2\x92\x72\x52\xaa\xd5\xf6\x94\x40\xcc\x79\xa1\
\x8f\xd9\x1e\x5a\xea\x46\x3f\xe5\x60\x1d\x1b\xc0\x0d\xeb\x5b\x37\
\xe8\xc0\x27\xfc\x6f\x38\xa6\x25\x10\x58\xba\x90\xa5\xff\x13\x2f\
\xef\x3a\xf3\x7c\x23\xe6\x20\x00\x00\xb8\xc9\x7d\xeb\xee\xd7\x5d\
\x6b\xee\xf1\x3d\x4e\x4b\x20\x50\x3d\x33\x15\xba\xd1\x4f\xdd\x97\
\xfe\xe7\x10\x00\x00\x2c\x72\x78\xcb\xe3\xea\x48\x77\x96\x3e\x48\
\x4b\x20\x50\x1d\x0b\x6d\x7f\x41\x08\x00\x00\x16\xe9\x68\xe9\xd4\
\x33\x77\x3e\xeb\x7b\x9c\x96\x40\xa0\x72\x21\xab\x67\x47\x6b\xb9\
\xd1\x4f\x39\x08\x00\x00\x4a\xca\xac\xdc\xae\x87\x6e\x7d\xd8\xf7\
\x38\x2d\x81\x40\xf9\x42\xee\x9f\x39\x27\xe9\xe9\x46\xcf\x44\x00\
\x00\xe0\x6b\xe8\x8e\xfd\xda\xdc\xde\x57\xfa\x20\x2d\x81\x40\x79\
\xf2\xa1\x6d\x7f\x7b\x1a\xb9\xf4\x3f\x87\x00\x00\xc0\x57\x47\x73\
\x87\x0e\xf7\x3d\xee\x7b\x9c\x96\x40\x20\x84\x09\x5d\xfa\xaf\x6b\
\xdb\x5f\x10\x02\x00\x80\x40\x9b\xdb\xfb\x34\x74\xc7\x7e\xdf\xe3\
\xb4\x04\x02\xfe\xcc\x44\xe8\x46\x3f\x4f\xd9\x9a\x8d\x00\x00\x20\
\xd4\xe0\xc6\x7d\xca\xac\xdc\x5e\xfa\x60\x78\x9f\x39\xe0\x24\x33\
\x53\x68\xfc\x2b\xc9\x6b\x93\x1a\xf8\xc8\x5f\x29\x04\x00\x00\x65\
\x39\xdc\xf7\x84\x3a\x5a\x4a\x3f\x1a\x68\xc2\xaf\x71\x02\x6e\x09\
\x09\xc6\xde\xd5\x07\x65\x6b\xe9\x7f\x0e\x01\x00\x40\x59\xd6\xb7\
\x6e\xd0\x81\x4d\xb4\x04\x02\xe5\x30\x59\xff\xa7\x64\x4c\x6e\x9b\
\xbc\xf1\x7b\x6d\x8f\x48\x00\x00\x50\xbe\xfb\xba\x69\x09\x04\xc2\
\x98\x5c\x40\xdb\x9f\xd7\xa6\xd9\x8b\x8f\xd9\x1e\x51\x12\x01\x00\
\x40\x85\x0e\x6f\x79\xdc\xf7\x52\x00\x2d\x81\x70\x9e\x17\xdc\xf6\
\x37\x7b\xf9\x11\xc9\xb4\xdb\x9e\x52\x12\x01\x00\x40\x85\x3a\x5a\
\x3a\xf5\xcc\x36\x5a\x02\x81\x52\xbc\xa0\xa5\xff\xc9\x1d\x32\x93\
\x3b\x6c\x8f\x78\x03\x01\x00\x40\xc5\x68\x09\x04\x16\x33\x53\xf2\
\xbf\x0f\x26\xbf\xb6\xf0\xe9\x3f\x42\x08\x00\x00\xaa\x32\xd4\xb3\
\x8f\x96\x40\x60\x4e\xc8\x46\x3f\xb3\x57\x1e\x99\x7b\xf4\x2f\x32\
\x08\x00\x00\xaa\xd2\xd1\xd2\x49\x4b\x20\x20\x15\xda\xfe\xb2\x01\
\x8f\xfc\x8d\xdf\x2b\x33\xb5\xcd\xf6\x94\x8b\x10\x00\x00\x54\x6d\
\x73\x7b\x9f\x86\x7a\x68\x09\x84\xdb\xcc\xa4\xff\x7f\xe7\x66\xfa\
\x0e\x79\x57\x1f\xb4\x3d\x62\x49\x04\x00\x00\x4b\x32\xd8\x43\x4b\
\x20\x1c\x16\x52\x82\xe5\x5d\xd9\x1f\xb9\xa5\xff\x39\x04\x00\x00\
\x4b\x46\x4b\x20\x9c\x14\xb6\xf4\x7f\xf5\x41\x99\xe9\x3b\x6c\x4f\
\xe9\x8b\x00\x00\x60\xc9\x68\x09\x84\x8b\xcc\xf5\x90\xb6\xbf\xab\
\x7b\x6c\x8f\x18\x88\x00\x00\xa0\x26\x68\x09\x84\x4b\xcc\x74\xc0\
\x4d\xae\x5e\x9b\xbc\x88\x3d\xf2\x57\x0a\x01\x00\x40\xcd\x84\xb6\
\x04\x4e\xd9\x9e\x10\xa8\x01\x2f\xb8\xf1\xd2\xbb\xfa\xa0\x4c\x7e\
\xad\xed\x29\x43\x11\x00\x00\xd4\x4c\x68\x4b\xe0\xa4\xa1\x25\x10\
\xb1\x17\xb8\xf4\x3f\xb9\x23\x12\x1b\xfd\x94\x83\x00\x00\xa0\xa6\
\x68\x09\x44\x92\x85\x6e\xf4\x13\x83\xa5\xff\x39\x04\x00\x00\x35\
\x17\xda\x12\xc8\x86\x41\x88\xa3\x90\xcd\xae\x66\x2f\x47\xaf\xed\
\x2f\x08\x01\x00\x40\xcd\x85\xb6\x04\x4e\xd3\x12\x88\xf8\x09\xba\
\x91\xd5\xbb\xf6\x07\x91\xda\xe8\xa7\x1c\x04\x00\x00\x75\x51\x56\
\x4b\x20\x0b\x01\x88\x89\xb0\x8d\x7e\xbc\x6b\xff\xda\xf6\x88\x15\
\x23\x00\x00\xa8\x9b\xd0\x96\xc0\x2c\x09\x00\x31\x90\x8f\xdf\x46\
\x3f\xe5\x68\xb1\x3d\x40\x9c\x65\xb3\x59\xe5\x72\x54\x9c\x01\x41\
\xf6\xaf\xfe\xba\xbe\x71\xed\x4f\x35\x61\x26\x16\x1d\x33\x79\x49\
\x39\x29\xd5\x6a\x7b\x4a\xc0\x87\x09\x59\xfa\xbf\xfa\x60\x24\x37\
\xfa\x29\x07\x01\xa0\x0a\x9e\xe7\xe9\xfc\xf9\xf3\x9c\xfc\x81\x32\
\xa4\xb5\x4c\x5f\xea\xd8\xab\xe7\xc7\xbf\x53\xf2\xb8\x99\x34\x4a\
\xb5\xa4\xa4\x66\xdb\x93\x02\x8b\x99\x89\xb0\x8d\x7e\xa2\xdd\xf6\
\x17\x84\x4b\x00\x55\xb8\x78\xf1\x22\x27\x7f\xa0\x02\xfd\xcb\x77\
\x29\xd3\xea\x73\x83\x94\xa1\x25\x10\xd1\x64\x66\x0a\x37\xac\xfa\
\xf1\xae\xec\x2f\xff\xc5\x22\x88\x00\x50\x85\xf1\xf1\x71\xdb\x23\
\x00\xb1\x33\xd8\xb9\x5f\x6d\x29\x9f\xeb\xa4\xb4\x04\x22\x6a\x42\
\x76\xb2\xf4\x46\xbf\x1a\xe9\x8d\x7e\xca\x41\x00\xa8\x82\xe7\xb1\
\xc1\x39\x50\xa9\xb6\x54\x9b\xbe\xbe\xf2\xa0\xef\x71\x5a\x02\x11\
\x25\xa1\x1b\xfd\xc4\xa4\xed\x2f\x08\x01\x00\x40\xc3\xf4\xa5\xef\
\xd4\xe7\x57\xf8\xff\xc5\x49\x4b\x20\xa2\xc0\xe4\xe2\xbf\xd1\x4f\
\x39\x08\x00\x00\x1a\xea\x81\xf6\x3d\xda\xd8\xd2\x53\xfa\x20\x2d\
\x81\xb0\xcd\x0b\x79\xe4\xef\xf2\x23\xb1\xd8\xe8\xa7\x1c\x04\x00\
\x00\x0d\xd5\x96\x6a\xd3\x60\xa7\xff\x27\x28\x5a\x02\x61\x93\x97\
\x0d\xde\xe8\x27\x6e\x6d\x7f\x41\x08\x00\x00\x1a\x6e\x63\x4b\x8f\
\x1e\x68\xf7\x7f\x7c\x8a\x96\x40\xd8\x10\xd8\xf6\x17\xb3\x8d\x7e\
\xca\x41\x00\x00\x60\xc5\x03\x6d\x7b\xb4\x35\xed\x53\xa0\x42\x4b\
\x20\x1a\x6d\x36\x64\xe9\xff\xc3\x83\xb1\x6c\xfb\x0b\x42\x00\x00\
\x60\x4d\xd0\xa3\x81\x26\x5f\xb8\x19\x0b\xa8\xbb\xb0\xb6\xbf\xf1\
\x7b\x63\xdb\xf6\x17\x84\x00\x00\xc0\x9a\x35\xcd\x6b\xf5\xa5\x8e\
\xbd\xbe\xc7\xcd\xa4\xf1\x5f\x92\x05\x6a\x24\xe8\xbf\xb3\x42\xdb\
\xdf\x83\xb6\x47\xac\x0b\x02\x40\x15\xd2\xe9\xb4\xed\x11\x80\xc4\
\xa0\x25\x10\x56\x85\xac\x34\x79\x57\xf6\x27\x6e\xe9\x7f\x0e\x01\
\xa0\x0a\xdd\xdd\xdd\xb6\x47\x00\x12\x85\x96\x40\x58\x51\xce\x46\
\x3f\x31\x6f\xfb\x0b\x42\x00\xa8\x42\x47\x47\x87\x6e\xbb\xed\x36\
\x56\x02\x80\x1a\xa1\x25\x10\x36\x98\xeb\xc9\xdd\xe8\xa7\x1c\xec\
\x06\x58\xa5\x8e\x8e\x0e\x75\x74\x74\xd8\x1e\x03\x48\x8c\xad\xda\
\xaa\x73\xef\xbc\xa3\x1f\xbe\xf7\x42\xc9\xe3\xde\x75\xa3\xa6\x5b\
\x52\x52\xca\xf6\xa4\x48\x02\x33\x13\xd2\xf6\xf7\xe1\x41\xdb\x23\
\xd6\x1d\x2b\x00\x00\x22\x63\xa8\x67\x9f\x36\xb7\xf7\x95\x3e\x48\
\x4b\x20\x6a\xc5\x0b\xd9\xe8\xe7\xea\x83\x89\x69\xfb\x0b\x42\x00\
\x00\x10\x19\x1d\x2d\x9d\x3a\xdc\xf7\xb8\xef\x71\x5a\x02\x51\x0b\
\x2e\x6c\xf4\x53\x0e\x02\x00\x80\x48\xd9\xdc\xde\xa7\xa1\x1e\xff\
\x7d\xd6\x69\x09\xc4\x52\x98\x5c\xa1\x63\xa2\x24\xaf\x4d\xb3\x97\
\x0e\xda\x1e\xb1\x61\x08\x00\x00\x22\x67\xb0\x67\x9f\x32\x2b\xb7\
\x97\x3e\x48\x4b\x20\xaa\x15\xd6\xf6\x77\xf9\x91\xc4\x3e\xf2\x57\
\x0a\x01\x00\x40\x24\x1d\xee\x7b\x42\x1d\x2d\x9d\x25\x8f\xd1\x12\
\x88\x6a\x04\x6d\x37\x6d\xae\xef\x4a\xd4\x46\x3f\xe5\x20\x00\x00\
\x88\xa4\xf5\xad\x1b\x74\x60\xd3\x21\xdf\xe3\xb4\x04\xa2\x12\x81\
\x1b\xfd\xe4\xd7\x6a\x76\xf4\xab\xb6\x47\x6c\x38\x02\x00\x80\xc8\
\xba\xaf\xfb\x7e\xdd\xb5\xe6\x9e\xd2\x07\x69\x09\x44\xb9\xf2\x21\
\x4b\xff\x57\xdc\x5a\xfa\x9f\x43\x00\x00\x10\x69\x87\xb7\x3c\xee\
\x7b\x29\x80\x96\x40\x84\x72\x74\xa3\x9f\x72\x10\x00\x00\x44\x5a\
\x47\x4b\xa7\x9e\xd9\xf6\xac\xef\x71\x5a\x02\x11\xc4\x4c\x86\xb4\
\xfd\x39\xb8\xf4\x3f\x87\x00\x00\x20\xf2\x32\x2b\xb7\xeb\xa1\x5b\
\x1f\xf6\x3d\xee\xf1\x68\x20\x4a\x30\x33\x65\x6c\xf4\xe3\x30\x02\
\x00\x80\x58\xa0\x25\x10\x15\x31\xc1\x6d\x7f\xff\xa2\xfd\x4f\x12\
\xbd\xd1\x4f\x39\x08\x00\x00\x62\x81\x96\x40\x54\x22\xa8\x30\x2a\
\xb3\x72\xbb\xfe\xcd\x6d\x0f\x57\xf6\x82\x09\x44\x00\x00\x10\x1b\
\xb4\x04\xa2\x1c\x41\x61\xb0\x10\x24\x9f\xb0\x3d\x62\x24\x10\x00\
\x00\xc4\x0a\x2d\x81\x08\x14\x72\x39\xe8\xc0\xa6\x43\x5a\xdf\xba\
\xc1\xf6\x94\x91\x40\x00\x00\x10\x3b\xb4\x04\xc2\x4f\xd0\x2a\xd0\
\x5d\x6b\xee\xd1\x7d\xdd\xf7\xdb\x1e\x31\x32\x08\x00\x00\x62\x87\
\x96\x40\x94\x62\xa6\xfc\x37\xfa\xe9\x68\xe9\xd4\xe1\x2d\x8f\x57\
\xf6\x82\x09\x47\x00\x00\x10\x4b\xb4\x04\xe2\x26\x21\x1b\xfd\xfc\
\xf9\x9d\xff\xc9\xbf\x50\xca\x51\x04\x00\x00\xb1\x45\x4b\x20\xe6\
\x04\x05\xbe\x87\x6e\x7d\x58\xdb\xbb\xfe\xa9\xed\x11\x23\x87\x00\
\x00\x20\xb6\x68\x09\x84\x54\xbc\xe9\xcf\xe7\x92\xcf\xfa\xe5\x1b\
\x34\xd4\xb3\xcf\xf6\x88\x91\x44\x00\x00\x10\x6b\xb4\x04\x3a\x2e\
\xe4\xa6\xcf\x67\xb6\x3d\xcb\xd2\xbf\x0f\x02\x00\x80\xd8\xa3\x25\
\xd0\x51\x21\xf7\x7a\x0c\xf5\xec\xf7\xff\xef\x02\x04\x00\x00\xf1\
\x47\x4b\xa0\x9b\xcc\x75\xff\x8d\x7e\x36\xb7\xf7\x69\x90\xa5\xff\
\x40\x04\x00\x00\x89\x40\x4b\xa0\x5b\xcc\x4c\x58\xdb\x1f\x8f\xfc\
\x85\x21\x00\x00\x48\x0c\x5a\x02\x1d\x11\xb2\xd1\x4f\xe0\x25\x21\
\xdc\x40\x00\x00\x90\x28\xb4\x04\x26\x9f\xc9\x06\x6f\xf4\x13\x74\
\x53\x28\x3e\x42\x00\x00\x90\x28\xb4\x04\x26\x9b\xc9\x05\xb7\xfd\
\x05\x3d\x16\x8a\x9b\x11\x00\x00\x24\x0e\x2d\x81\x09\x15\xd2\xf6\
\x17\x58\x0c\x85\x45\x08\x00\x00\x12\x89\x96\xc0\xe4\xf1\x42\x36\
\xfa\xf1\x0d\x7d\x28\x89\x00\x00\x20\x91\x68\x09\x4c\x16\x33\xa5\
\xc0\xb6\x3f\x36\xfa\xa9\x5c\x8b\xed\x01\xe2\x6e\x62\x62\xc2\xf6\
\x08\x00\x7c\xf4\xa5\xef\xd4\x03\x6b\xf6\xe8\xaf\x2e\x1f\x2f\x79\
\xdc\xbb\x6e\xd4\x74\x4b\x4a\x4a\xd9\x9e\x14\x81\x42\x97\xfe\x9f\
\x60\xe9\xbf\x0a\x04\x80\x2a\x5d\xbc\x78\x51\xa3\xa3\xa3\xb6\xc7\
\x00\x10\xe2\xf3\xa9\x7b\x75\xb6\xe5\x55\xfd\x36\x7f\x7e\xf1\xc1\
\x62\x4b\x60\xaa\x9d\x04\x10\x59\x46\xf2\xb2\xc1\x1b\xfd\xf8\x3e\
\xfa\x89\x40\x5c\x02\xa8\xc2\xe5\xcb\x97\x39\xf9\x03\x31\xd1\x96\
\x6a\xd3\x60\xe7\x23\xbe\xc7\x69\x09\x8c\x36\x33\x19\xdc\xf6\xf7\
\xef\x3f\x7e\xd0\xf6\x88\xb1\x45\x00\xa8\xc2\xd5\xab\x57\x6d\x8f\
\x00\xa0\x02\x1b\x5b\x7a\xf4\x40\xfb\x1e\xdf\xe3\xb4\x04\x46\x54\
\x48\x6f\xc3\xe1\xbe\xc7\x95\x4a\xb1\x7a\x53\x2d\x02\x40\x15\x66\
\x66\xf8\xb8\x00\xc4\xcd\x03\x6d\x7b\xb4\x35\xbd\xad\xf4\x41\x5a\
\x02\xa3\x27\x64\xe9\x9f\x8d\x7e\x96\x8e\x00\x00\xc0\x19\x83\x9d\
\xfb\xd5\x96\x6a\x2b\x79\x8c\x96\xc0\x68\x09\x5a\x95\xc9\xac\xdc\
\xce\x46\x3f\x35\x40\x00\x00\xe0\x8c\x35\xcd\x6b\xf5\xa5\x8e\xbd\
\xbe\xc7\x69\x09\x8c\x86\xa0\xfb\x32\x0a\x1b\xfd\x3c\x61\x7b\xc4\
\x44\x20\x00\x00\x70\x4a\xff\xf2\x5d\xca\xb4\xee\x28\x7d\x90\x96\
\x40\xfb\x8a\x4f\x66\xf8\x19\xea\xd9\xa7\xf5\xad\x1b\x6c\x4f\x99\
\x08\x04\x00\x00\xce\x09\xba\x14\x40\x4b\xa0\x5d\x26\xa4\xed\x8f\
\x8d\x7e\x6a\x87\x00\x00\xc0\x39\x6d\xa9\x36\x7d\x7d\xe5\x41\xdf\
\xe3\xb4\x04\xda\x11\xb6\xd1\x0f\x6d\x7f\xb5\x45\x00\x00\xe0\xa4\
\xbe\xf4\x9d\xfa\xfc\x8a\x7b\x7d\x8f\x7b\x3c\x1a\xd8\x58\xb3\xc1\
\x4b\xff\x6c\xf4\x53\x7b\x04\x00\x00\xce\x7a\xa0\x7d\x8f\x36\xb6\
\xf4\x94\x3e\x18\x72\x2d\x1a\xb5\x15\x74\xef\xc5\x43\xb7\x3e\xcc\
\x46\x3f\x75\x40\x00\xa8\x42\x53\x13\xdf\x36\x20\x09\x68\x09\x8c\
\x06\x33\x61\x02\x37\xfa\x19\xe2\x91\xbf\xba\xe0\x4c\x56\x85\xd5\
\xab\x57\xdb\x1e\x01\x40\x8d\xd0\x12\x68\x59\x58\xdb\x1f\x1b\xfd\
\xd4\x0d\x01\xa0\x0a\x6b\xd6\xac\xd1\xaa\x55\xab\x6c\x8f\x01\xa0\
\x46\x68\x09\xb4\x24\xe4\xb1\xcb\xa1\x9e\xfd\x6c\xf4\x53\x47\xec\
\x06\x58\xa5\xee\xee\x6e\xad\x5a\xb5\x8a\x5a\x60\x20\x21\xfe\x6c\
\xfd\x53\xfa\xfa\x1b\xfb\x94\xcd\x8f\x2f\x3a\x66\xf2\x92\x72\x52\
\xaa\xd5\xf6\x94\xc9\x62\x26\x82\x37\xfa\xa1\xed\xaf\xbe\x08\x00\
\x4b\x90\x4e\xa7\x95\x4e\xa7\x6d\x8f\x01\xa0\x06\xee\x50\xaf\x0e\
\x6c\x3a\xa4\xbf\x78\xf3\x5b\x25\x8f\x9b\x49\xa3\x54\x4b\x4a\x6a\
\xb6\x3d\x69\x32\x98\x99\xc2\x3d\x16\xa5\x14\xda\xfe\x78\xe4\xaf\
\xde\xb8\x04\x00\x00\x45\xf7\x75\xdf\xef\x7f\xb7\x39\x2d\x81\xb5\
\x63\x8a\xf7\x56\xf8\x18\xea\xd9\xc7\x46\x3f\x0d\x40\x00\x00\x80\
\x79\x02\x9f\x37\xa7\x25\xb0\x26\xc2\x36\xfa\xa1\xed\xaf\x31\x08\
\x00\x00\x30\x4f\x47\x4b\xa7\x9e\xd9\xf6\xac\xef\x71\x5a\x02\x97\
\xc6\xe4\xd8\xe8\x27\x2a\x08\x00\x00\xb0\x40\xd8\xa7\x50\x5a\x02\
\xab\xe4\x15\x03\x94\x8f\xc3\x5b\x1e\x67\xa3\x9f\x06\x22\x00\x00\
\x40\x09\x81\xd7\xa1\x69\x09\xac\x8a\x97\x0d\xde\xe8\x87\xb6\xbf\
\xc6\x22\x00\x00\x40\x09\x61\x77\xa2\xd3\x12\x58\x19\x33\x25\xdf\
\xb6\x3f\x36\xfa\xb1\x83\x00\x00\x00\x3e\x36\xb7\xf7\x69\xa8\x67\
\xbf\xef\x71\x5a\x02\xcb\x34\x1b\xbc\xf4\xff\xcc\xb6\x67\x69\xfb\
\xb3\x80\x00\x00\x00\x01\x06\x7b\xf6\xf9\xb7\xd1\xd1\x12\x18\xce\
\x84\x6f\xf4\x43\xdb\x9f\x1d\x04\x00\x00\x08\x71\xb8\xcf\xbf\x8f\
\xde\x84\x74\xd9\xbb\xce\x4c\xfa\x6f\xf4\x53\x58\x61\xa1\xed\xcf\
\x16\x02\x00\x00\x84\x58\xdf\xba\x41\x07\x36\x1d\xf2\x3d\x1e\x74\
\x92\x73\x5a\xd8\x46\x3f\x7d\x8f\xb3\xf4\x6f\x11\x01\x00\x00\xca\
\x40\x4b\x60\x85\x4c\xf1\xae\x7f\x1f\x43\x3d\xfb\x69\xfb\xb3\x8c\
\x00\x00\x00\x65\xa2\x25\xb0\x7c\x41\x37\x48\xb2\xd1\x4f\x34\x10\
\x00\x00\xa0\x4c\xb4\x04\x96\xc7\xcc\x04\xb7\xfd\x3d\xf3\x7b\xcf\
\x56\xf6\x82\xa8\x0b\x02\x00\x00\x54\x80\x96\xc0\x10\x5e\xf8\x46\
\x3f\xb4\xfd\x45\x03\x01\x00\x00\x2a\x44\x4b\xa0\xbf\xa0\xa5\xff\
\xbb\xd6\xdc\xc3\x46\x3f\x11\x42\x00\x00\x80\x0a\xd1\x12\xe8\xf3\
\xbe\x73\x85\xc7\x22\x4b\xa1\xed\x2f\x7a\x08\x00\x00\x50\x05\x5a\
\x02\x17\x98\x0d\xdf\xe8\x87\x47\xfe\xa2\x85\x00\x00\x00\x55\xa2\
\x25\xf0\x23\x41\xf7\x3e\xdc\xf7\xb1\xfb\xd9\xe8\x27\x82\x08\x00\
\x00\xb0\x04\xb4\x04\x06\x6f\xf4\xb3\x7e\xf9\x06\x1d\xf8\xf8\xa1\
\x8a\x5e\x0f\x8d\x41\x00\x00\x80\x25\x70\xbe\x25\x30\x1f\xb6\xf4\
\xff\x04\x4b\xff\x11\x45\x00\x00\x80\x25\x72\xb6\x25\x90\x8d\x7e\
\x62\x8d\x00\x00\x00\x35\xe0\x62\x4b\xa0\x99\x34\x92\x57\xfa\xd8\
\xe6\xf6\xbe\xc0\x95\x11\xd8\xf7\x51\x00\x98\xa5\xbe\x0a\x00\xaa\
\xe5\x5a\x4b\xa0\x99\x09\xdf\xe8\x07\x01\x22\x70\xce\x65\x05\x00\
\x00\x6a\xc4\x99\x96\x40\x13\xdc\xf6\x77\x60\xd3\x21\x36\xfa\x89\
\x81\x16\xdb\x03\x2c\x94\xbf\xf6\x5b\x4d\xbd\x3b\x62\x7b\x0c\x00\
\xa8\xca\x57\x9a\x7f\x4f\x3f\xf3\x96\xeb\x5c\x53\x89\x35\xff\x62\
\x4b\x60\xaa\x3d\x65\x7b\xcc\x25\x09\xea\x38\xf8\x64\x6a\x9d\xfe\
\x95\xe9\xd1\xd4\xbb\xa7\x6c\x8f\x19\x68\x7a\x2c\x2d\x69\xa5\xed\
\x31\xac\x8a\x5c\x00\xc8\xbe\xf1\x82\x3e\x78\xf5\x7b\xb6\xc7\x00\
\x80\xaa\xed\x5b\xb1\x4c\xff\x71\xdb\x6d\x25\x8f\x99\x69\x49\xcb\
\xa4\x54\xda\xf6\x94\xd5\x31\x39\xff\x96\xc3\xb6\x59\x4f\x7f\xf4\
\xc6\xcf\xf5\xc1\xab\x03\xb6\xc7\x0c\x35\x9a\xfe\x8c\xb4\xf2\x2f\
\xed\x0d\x60\xec\x3f\x1a\x32\xef\x1e\x00\x07\x7b\x2b\x01\xa0\x0e\
\x7a\x26\xa7\xb5\xe7\xc2\x98\xef\xf1\xd8\xb6\x04\x7a\xc1\x8f\xfc\
\xed\xfd\xdd\x65\xad\x9d\xb6\x7f\x6d\x3b\x16\x3c\x6f\xe9\xaf\xb1\
\x44\x37\x02\x80\x31\x71\xfc\xaf\x11\x00\xa2\x69\xcf\x85\x51\x6d\
\xcb\xfa\xdc\xfa\x1f\xd3\x96\xc0\xa0\xe0\xb2\x63\x6c\x42\xbb\x2e\
\x67\x6d\x8f\x18\x1b\xc6\x8b\xd2\x0a\x40\x04\x86\x01\x80\x24\xd9\
\x7f\xee\x92\xda\x66\x4b\x7f\xd2\x8b\x5b\x4b\xa0\x99\xf2\xdf\xe8\
\xa7\x6d\xd6\xd3\xfe\xdf\x5c\xb2\x3d\x62\xbc\x44\xe0\x9c\xcb\x25\
\x00\x00\xa8\x93\xb5\xd3\x79\xed\xfd\xdd\x65\xdf\xe3\xb1\x69\x09\
\x0c\xd9\xe8\xe7\xe0\x3b\x1f\xf8\x06\x1d\x94\x60\x4c\xc4\x02\x80\
\x14\x89\x81\x00\x20\x49\x76\x5d\xce\x6a\xc7\xd8\x44\xe9\x83\x31\
\x69\x09\x0c\x9a\xf1\xde\x8b\xd7\x74\xe7\x78\x02\x5b\x8e\xea\x29\
\x22\x1f\xb8\x6f\x0e\x00\xf9\x69\xdb\xf3\x00\x40\xe2\xec\xff\x8d\
\xff\xa5\x80\xa8\xb7\x04\x9a\x09\xff\x55\x8a\xb5\xd3\x79\xed\xb9\
\x30\x6a\x7b\xc4\xd8\x31\x11\x28\x01\x92\x16\x04\x00\x43\x00\x00\
\x80\x9a\x6b\x9b\xf5\x74\xf0\x9d\x0f\x7c\x8f\x47\xb6\x25\x30\xe4\
\x3e\x85\x83\x6f\xb3\xf4\x5f\x95\xd9\x68\x9c\x6b\x17\x5f\x02\x30\
\xfc\xcb\x04\x80\x5a\xbb\x73\x7c\x4a\xf7\x5e\xbc\xe6\x7b\x3c\x72\
\x2d\x81\x21\x97\x27\xf6\x5c\x18\x53\xcf\x64\x34\x4e\x64\xb1\xe2\
\xcd\x46\xe2\x11\x40\xa9\x44\x15\xb0\x99\x8e\xf0\x5a\x14\x00\xc4\
\xd8\x9e\x0b\xa3\xfe\x27\xcd\x62\x4b\x60\x54\x98\xeb\xfe\x1b\xfd\
\x14\x7a\x0e\x58\xfa\xaf\x86\x99\x89\xce\x39\x76\xf1\x5e\x00\xf9\
\x18\x3d\x97\x02\x00\x31\xd2\x36\xeb\xe9\x91\x73\xfe\x8f\xcb\x99\
\x69\xff\x96\xbd\x46\x32\x33\xc1\x6d\x7f\x8f\xbd\xfd\x41\x65\x2f\
\x88\x02\x63\xe6\xdf\x6b\x37\x66\x7b\x9c\xf9\x01\xe0\xdc\x47\x03\
\x12\x02\x00\xa0\x1e\x22\xdf\x12\x18\xb2\xd1\xcf\x9e\x0b\xa3\x5a\
\x47\xdb\x5f\x75\x66\xa6\x0a\xe7\xd8\x82\xb3\xb6\xc7\x59\x1c\x00\
\x24\x99\xe9\x49\xdb\x73\x01\x40\x62\x45\xb9\x25\xd0\x64\xfd\x03\
\xc8\xb6\x6c\xf0\x7d\x0c\x08\x60\xcc\xc2\xe5\xff\x31\xdb\x23\xcd\
\x0f\x00\x67\x6f\xfc\xcc\xf3\x24\x42\x00\x00\xd4\x4d\x14\x5b\x02\
\x4d\x2e\xb8\xed\x8f\xa5\xff\x25\xb8\xf9\xd3\xbf\x24\xfd\xc2\xf6\
\x48\xf3\x03\xc0\x4d\xc3\x98\xc5\xc3\x02\x00\x6a\x24\x72\x2d\x81\
\x21\x6d\x7f\x81\x5d\x06\x08\x66\xbc\x52\x2b\xeb\x27\x6d\x8f\x35\
\x3f\x00\xdc\x3c\x8c\x31\x32\xb9\xeb\xb6\xe7\x03\x80\xc4\x8a\x52\
\x4b\xa0\x17\xb2\xd1\x8f\xef\x9c\x08\x65\xa6\x4a\x9e\x4b\xcf\xda\
\x9e\xeb\x46\x00\x38\xfd\xe8\xce\x73\x9a\x77\x1f\x80\xa4\xc2\xdd\
\x8a\x94\x03\x01\x40\xdd\x44\xa1\x25\xd0\x4c\x29\xb0\xed\x8f\x8d\
\x7e\x96\x60\x66\xaa\x54\xf5\xef\xd9\xd3\x8f\xee\x1c\xb3\x3d\xda\
\xc2\xc7\x00\x4f\x2c\xfc\x0d\x26\x77\x9d\x72\x20\x00\xa8\x13\xeb\
\x2d\x81\x21\x4b\xff\x8f\xb0\xf4\x5f\x3d\x6f\x56\x26\x57\x72\xe5\
\xe4\xfb\xb6\x47\x93\x16\x07\x80\xc5\x43\x19\x23\x33\x39\xce\xfd\
\x00\x00\x50\x27\xd6\x5a\x02\x8d\xe4\x65\xd9\xe8\xa7\x2e\x8c\x91\
\x99\x1a\xf7\x3b\x7a\xc2\xf6\x78\xd2\x82\x00\x70\xfa\xd1\x9d\x67\
\xb5\xf0\x32\x80\x54\x4c\x31\xdc\x0f\x00\x00\xf5\x62\xa3\x25\xd0\
\x4c\x06\xb7\xfd\x05\xdd\xa4\x88\x00\xc6\xc8\x4c\x5e\xf3\xab\xfc\
\x3d\x5b\xbc\xe4\x6e\x5d\x4b\x89\x5f\xfb\xb6\xa4\x23\x8b\x7e\x35\
\x3f\x2d\x93\xbb\xae\x54\x6b\x7b\x5d\x07\xba\xd4\xbc\x41\x6f\xa4\
\x3f\x63\xfb\xfb\x02\x00\x0d\x77\xd7\xbb\xcb\xf4\x3f\x37\x5f\x2c\
\x79\xcc\x4c\x4b\x5a\x26\xa5\xd2\xb5\xf9\x5a\x66\x26\xf8\x51\xc3\
\xbb\xde\xbd\x5d\x6f\xa4\xbb\x6d\x7f\x4b\xea\xe6\x5c\xcb\x96\xba\
\xbd\xb6\xc9\x5d\x2f\x74\xfe\x97\xf6\x6d\xdb\xef\x7d\x4e\x6a\xe1\
\x2f\xec\x7c\xee\x74\x97\xa4\x7f\x94\xd4\x55\xf2\x4f\xa4\x5b\xeb\
\x1e\x02\x00\xc0\x55\x4d\x2b\x8f\xab\x69\xe5\xff\x2a\x7d\x30\x25\
\x35\xad\x4c\x95\xf8\x9b\xbb\x42\x46\xf2\xae\xfa\x5f\x56\xf0\xae\
\x3e\x28\xef\xea\x1e\xdb\xdf\x8a\xf8\x99\x7b\x7a\xce\xff\xe6\xf9\
\xb1\xd3\x8f\xee\x5c\x65\x7b\xcc\x39\x8b\xf6\x02\x28\xde\x99\xe8\
\x9f\x50\x66\x72\x32\x53\x59\xee\x09\x00\x80\x3a\xf0\xae\xee\x91\
\xc9\x6d\x2b\x7d\xb0\x46\x2d\x81\x41\x75\xc3\x26\xb7\x8d\x93\x7f\
\x35\xe6\x96\xfd\x83\x9f\x9c\x8b\xcc\xa7\x7f\xa9\xd4\x66\x40\x05\
\x47\x15\x54\x53\x98\x9f\x2e\xbc\x51\x9e\x0e\x00\x80\x9a\xf3\x2e\
\x3f\x22\x79\x6d\x25\x8f\x2d\xb5\x25\x30\x70\xc3\x21\xaf\xad\xf0\
\xb5\x51\x19\x6f\x56\x66\xf2\x6a\xd0\xb2\xbf\x54\xb8\xbf\xee\xa8\
\xed\x51\xe7\x2b\x19\x00\x8a\xab\x00\x4f\x87\xbe\xe1\x89\xab\xf4\
\x04\x00\x40\x8d\x99\xfc\x5a\x79\xa3\x5f\xf5\x3f\x3e\x61\x0a\xf7\
\x04\x54\x2a\x1f\xbc\xd1\x8f\x37\xfa\x55\x99\xfc\x5a\xdb\x6f\x3f\
\x5e\x66\xa6\x82\x6e\xf8\x9b\xef\xe9\x28\x3c\xfb\x3f\x5f\xe0\x95\
\xa4\x9d\xcf\x9d\x7e\x4d\x52\x26\xf4\x55\x5a\x96\x15\xee\x0b\x48\
\x2d\xf5\xc2\x14\x00\x60\x4e\xf3\xba\xa3\x4a\xad\x78\xd5\xf7\x78\
\xaa\x3d\xa5\xd4\xb2\xf2\x5e\xcb\x4c\x07\x9f\xfc\xcd\xe4\x0e\xcd\
\x5e\x3a\x68\xfb\x2d\xc7\x87\xf1\x0a\x0d\x7f\xb3\x65\xed\xdf\x7c\
\xf2\xf4\xa3\x3b\x3f\x67\x7b\xe4\x85\x9a\x42\x8e\x0f\x95\xf5\x2a\
\xf9\x69\x99\x89\xb1\x42\xe3\x11\x00\xa0\x26\x66\x03\x2e\x05\x48\
\x85\x13\xba\xc9\xfa\x3f\xca\x27\xa9\xf0\x08\x61\xd6\x04\x9e\xfc\
\xe5\xb5\x15\xbe\x16\xc2\x19\x23\x4d\x4f\x16\x56\xc0\xcb\x3b\xf9\
\x8f\xa9\xdc\x73\x69\x83\x05\x06\x80\x62\x2f\xc0\xa1\x72\xbf\x29\
\x26\x37\x51\x08\x02\x79\x0b\xdb\x58\x01\x40\xd2\x78\x6d\x9a\xfd\
\xf0\x60\xe0\x6f\x31\x33\x85\x3b\xfa\x4d\xd6\x14\x2a\x7d\xf3\x85\
\x1f\x26\x57\x38\xf1\x7b\x57\x8d\xff\x35\xff\xa2\xb0\xa0\x01\x15\
\x4e\xfc\x33\x53\x32\x13\x63\x85\x8d\x7d\xca\xbf\x11\xfe\x50\x54\
\x9e\xfb\x5f\xa8\xac\x35\xfb\x9d\xcf\x9d\x3e\x26\x69\xb0\xb2\x57\
\x4e\x29\x95\x5e\x2e\xa5\x5b\xa5\x54\xd8\x42\x03\x00\xc0\x4f\xd3\
\xaa\xff\xa1\xa6\xce\x1f\xd7\xe5\xb5\xbd\xf1\x7b\x03\xef\x37\x70\
\x9e\xf1\x64\xa6\xa7\x0a\x1f\x6c\x2b\x7f\xfa\xed\xf9\xd3\x8f\xee\
\x8c\xe4\xa7\x7f\x29\xfc\x12\xc0\x9c\x43\xaa\x74\xe7\x22\x63\x64\
\xa6\x27\x65\xae\x8f\x15\x96\x4a\x66\xa6\xc2\xee\x90\x04\x00\x94\
\xe0\x5d\x7d\x50\x66\xfa\x8e\xda\xbf\x70\x7e\xad\xbc\xab\x0f\xda\
\x7e\x7b\xd1\x33\x9b\xbf\xb1\xcc\x6f\xae\x8f\x15\xce\x5f\x95\x9f\
\xfc\x4f\x46\xf9\xe4\x2f\x95\x19\x00\x8a\x77\x2e\x7e\x4e\xd5\x6e\
\x5f\x58\xdc\x10\xa1\xf0\xcd\x1c\x95\x99\x1c\x2f\x6c\x90\x30\x33\
\x55\xf8\x46\xcf\xfd\x00\x00\x2c\xe6\xb5\xc9\xbb\xb2\xbf\xe6\x2f\
\x3b\x7b\xc5\xe1\xa5\xff\xf9\xe7\x9e\x99\xa9\xc2\x39\x6a\x72\x5c\
\x26\x7b\x45\x66\xf2\x5a\x61\x99\xbf\xfa\x0f\xad\x67\x25\x45\xbe\
\x4c\xa1\xa2\xdb\xf6\x8b\x2d\x81\x2f\xa9\x9c\x27\x03\x00\x00\x35\
\xd5\xbc\xee\x6f\xd5\xb4\xee\x6f\x6a\xf2\x5a\xde\xa5\x3f\xd4\xec\
\xa5\xfb\x6c\xbf\xa5\x24\x3a\x2b\xe9\x73\x51\x7b\xe4\xaf\x94\x8a\
\x2e\xce\x2f\x79\x25\x00\x00\x50\xb5\xd9\x4b\xf7\xc9\x4c\x6c\x5e\
\xf2\xeb\x98\xa9\xdb\x38\xf9\xd7\xc7\x59\xc5\xe4\xe4\x2f\x55\xd9\
\x28\x5d\x5c\x09\x38\x26\x69\xc0\xf6\x1b\x00\x00\x97\xa4\xd2\x57\
\xd4\xb2\xe9\x59\xa9\x79\xb2\xba\x17\x98\x5d\xa1\xfc\x6f\x0e\xc8\
\x4c\xdd\x66\xfb\xad\x24\x4d\xa4\x6f\xf8\x2b\x65\x49\xcd\x3d\x3b\
\x9f\x3b\xfd\x94\xa4\x27\x6d\xbf\x09\x00\x70\x49\x53\xe7\x2f\xd5\
\xbc\xf1\xbb\x55\xfd\xd9\xd9\xf7\xf6\xca\x1b\xfb\xac\xed\xb7\x90\
\x34\x87\x4e\x3f\xba\xf3\xa8\xed\x21\x2a\xb5\xe4\xea\xbe\x9d\xcf\
\x9d\xce\xa8\xb0\x1a\x90\xb1\xfd\x66\x00\xc0\x15\x4d\x5d\x67\xd4\
\x7c\xeb\x70\x45\x7f\x86\x93\x7f\xcd\x9d\x95\x34\x54\xec\xcc\x89\
\x9d\x9a\x75\xf7\x16\x57\x03\x1e\x93\xdf\x36\xc2\x00\x80\x9a\x4a\
\x2d\x7f\x57\xcd\xb7\x0e\x2b\xb5\xfc\xdd\xc0\xdf\x67\x66\x56\x6b\
\xf6\xb7\xfb\x58\xf6\xaf\x9d\x31\x15\xba\xfd\x8f\xda\x1e\x64\x29\
\x6a\x5a\xde\xbf\xf3\xb9\xd3\xbd\x2a\x5c\x12\x18\xb4\xfd\xc6\x00\
\xc0\x15\x4d\x5d\x67\x94\xea\xfc\xbf\x6a\xea\xfc\xe5\x4d\xbf\xee\
\x8d\x7f\x4a\x66\xfc\x9f\xf0\xa9\xbf\x76\xc6\x54\xd8\xd2\xf7\x68\
\x5c\x6e\xf4\x0b\x52\x97\xdd\x7b\x8a\x41\x60\x50\xac\x08\x00\x00\
\xe2\xef\x9c\xa4\xef\x2b\x21\x27\xfe\x39\x75\xdf\xbe\x6f\xe7\x73\
\xa7\x07\x24\x7d\x51\x85\x27\x06\xba\x6c\xbf\x61\x00\x00\xca\x30\
\x26\xe9\x84\xa4\xff\x7d\xfa\xd1\x9d\x27\x6c\x0f\x53\x0f\x0d\xdd\
\xbf\x77\xe7\x73\xa7\x77\x4b\xda\x2d\xe9\xd3\x92\x7a\xc5\x8d\x83\
\x00\x80\x68\x38\xab\xc2\x27\xfd\x9f\xa8\x50\xe3\x7b\xd6\xf6\x40\
\xf5\xd6\xd0\x00\x50\x4a\xb1\x53\x20\x63\x7b\x0e\x00\x80\x7b\x4e\
\x3f\xba\xf3\xa4\xed\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x96\xe2\xff\x03\x0b\x9a\x34\x94\x3f\x7c\x6c\x15\x00\x00\
\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\
\x65\x00\x32\x30\x31\x37\x2d\x31\x31\x2d\x31\x32\x54\x31\x31\x3a\
\x30\x35\x3a\x34\x34\x2b\x30\x38\x3a\x30\x30\xbe\x22\xc5\x00\x00\
\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\
\x66\x79\x00\x32\x30\x31\x35\x2d\x30\x34\x2d\x30\x39\x54\x32\x31\
\x3a\x33\x33\x3a\x31\x38\x2b\x30\x38\x3a\x30\x30\x00\x62\xb5\xb3\
\x00\x00\x00\x4d\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\
\x00\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x20\x37\x2e\x30\
\x2e\x31\x2d\x36\x20\x51\x31\x36\x20\x78\x38\x36\x5f\x36\x34\x20\
\x32\x30\x31\x36\x2d\x30\x39\x2d\x31\x37\x20\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\x63\
\x6b\x2e\x6f\x72\x67\xdd\xd9\xa5\x4e\x00\x00\x00\x18\x74\x45\x58\
\x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\
\x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\x00\
\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\
\x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x35\x31\x32\x8f\x8d\x53\
\x81\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\
\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\x35\x31\x32\
\x1c\x7c\x03\xdc\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\
\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\
\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\
\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x34\
\x32\x38\x35\x38\x36\x33\x39\x38\xc5\xba\x16\x73\x00\x00\x00\x12\
\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\
\x39\x2e\x33\x31\x4b\x42\x20\x1c\x1c\x53\x00\x00\x00\x5f\x74\x45\
\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\
\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\
\x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\
\x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\
\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\
\x31\x31\x38\x36\x33\x2f\x31\x31\x38\x36\x33\x31\x38\x2e\x70\x6e\
\x67\xf7\x1a\xf1\xb8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
\x82\
\x00\x00\x3a\x01\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\
\x01\x95\x2b\x0e\x1b\x00\x00\x20\x00\x49\x44\x41\x54\x78\xda\xed\
\xdd\x79\x7c\x64\x67\x7d\xe7\xfb\x4f\xad\x52\x95\xd6\x96\x5a\x52\
\xef\x9b\xdd\x36\xd8\x24\x0c\x30\x2c\xc5\x4c\x41\x48\xd9\xdc\xec\
\xb9\x21\x30\x49\x6c\x13\x3c\xb9\x49\x08\x18\x02\x93\xb0\x24\x21\
\xeb\xdc\xc0\x35\x99\x24\x04\x9b\x04\xb2\xdc\xb0\x04\x92\x4c\x20\
\x24\x64\x9b\x24\x46\x81\x89\xc2\x08\xee\xb0\x79\x6b\xb7\xdd\xee\
\x7d\x91\xd4\xad\x5d\x2a\x49\xb5\xdf\x3f\xaa\x6c\x1a\xbb\xbb\xdd\
\x6a\x6d\xa5\x73\x3e\xef\xd7\xab\x5e\x72\x20\xb4\xfb\xfc\x9e\x47\
\xf5\xfb\x9e\xe7\x9c\xf3\x1c\x90\x24\x49\x92\x24\x49\x92\x24\x49\
\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\xcd\
\x22\x62\x09\x14\x64\x83\x43\xc3\x51\x60\x1b\xd0\x07\xf4\x00\xbd\
\x8d\x9f\x97\xfa\xb4\x01\xc9\xcb\x7c\x5a\x1a\x3f\x01\x8a\xcf\xf0\
\x59\x00\x26\x2f\xf1\x99\xb8\xe8\x9f\xc7\x81\x73\xb9\x6c\xa6\xe2\
\x28\x49\x32\x00\x48\xcb\x6f\xf0\xad\xc0\x1e\x60\x6f\xe3\xb3\xe7\
\xa2\xff\x7b\x0f\xb0\xeb\xa2\xc6\xdd\x6c\xca\xc0\x59\xe0\x14\x70\
\xf2\x52\x3f\x73\xd9\x4c\xde\x51\x96\x64\x00\x50\xd8\x1b\xfd\xb3\
\x81\x9b\x81\x9b\x1a\x3f\x6f\x06\xf6\x03\xd1\x80\x1e\x76\xad\x11\
\x06\x1e\x06\x0e\x35\x7e\x3e\x0c\x1c\x32\x18\x48\x32\x00\x28\x88\
\xcd\x7e\x00\x78\x09\xf0\xc2\x8b\x1a\xfd\x01\x20\x66\x75\x00\xa8\
\x36\x56\x08\x9e\x08\x04\x5f\x06\xbe\x98\xcb\x66\xce\x58\x1a\x49\
\x06\x00\x6d\x96\x66\xdf\x02\x3c\x0f\x78\x71\xa3\xe9\xbf\x04\xd8\
\x67\x65\xae\xc9\x59\xe0\x8b\xc0\x97\x1a\x3f\xbf\x92\xcb\x66\x16\
\x2c\x8b\x24\x03\x80\x9a\xa1\xe1\x77\x00\xdf\x06\x7c\x7b\xa3\xd9\
\x3f\x8f\xfa\x0d\x76\x5a\x7d\x65\xe0\x81\x46\x20\xf8\x1c\x30\x98\
\xcb\x66\x26\x2d\x8b\x24\x03\x80\xd6\xa3\xe1\xc7\x81\x17\x01\xb7\
\x02\xb7\x34\xce\xf4\x13\x56\x66\x43\x54\x80\xaf\x01\xf7\x01\x9f\
\x05\xbe\x90\xcb\x66\x0a\x96\x45\x32\x00\x48\xab\xd5\xf4\x6f\x00\
\x5e\xd9\x68\xf8\xaf\x00\x3a\xad\x4a\x53\x5a\x00\xfe\xb5\x11\x06\
\xee\xcb\x65\x33\x0f\x58\x12\xc9\x00\x20\x2d\xb7\xe9\x3f\x1f\x78\
\x55\xe3\xf3\x6c\x2b\xb2\x29\x1d\x07\x3e\xdd\xf8\x0c\xe7\xb2\x99\
\x9a\x25\x91\x0c\x00\xd2\x53\x1b\x7e\x14\xc8\x5c\xd4\xf4\xf7\x59\
\x95\x40\x19\x01\xfe\xaa\xf1\xf9\x7c\x2e\x9b\x29\x5b\x12\xc9\x00\
\xa0\x70\x37\xfd\x57\x00\xaf\x06\xbe\x1f\xd8\x6e\x55\x42\x61\x02\
\xf8\x5b\xe0\x53\xc0\x3f\x19\x06\x24\x03\x80\xc2\xd3\xf8\x0f\x02\
\xaf\x03\x5e\x4b\x7d\x77\x3d\x85\xd7\x18\xf0\x09\xe0\x23\xb9\x6c\
\xe6\x41\xcb\x21\x19\x00\x14\xbc\xa6\xdf\x09\xbc\x06\xb8\x13\xf8\
\x0f\xce\x15\x5d\xc2\x57\x80\x8f\x00\x7f\x96\xcb\x66\x26\x2c\x87\
\x64\x00\xd0\xe6\x6d\xfa\x11\xea\xcf\xe7\xdf\x49\xfd\xba\x7e\xda\
\xaa\xe8\x2a\x14\x80\xbf\x6b\x84\x81\x7f\xf4\x12\x81\x64\x00\xd0\
\xe6\x3a\xdb\xff\x31\xe0\x4d\xc0\x75\x56\x44\x2b\x70\x06\xf8\x20\
\xf0\x07\xb9\x6c\x66\xdc\x72\x48\x06\x00\x35\x67\xe3\x3f\x08\xbc\
\xb9\x71\xc6\xdf\x61\x45\xb4\x8a\x16\x81\x3f\x05\xee\x71\x7f\x01\
\xc9\x00\xa0\xe6\x68\xfa\x11\xea\xbb\xf2\xfd\x34\xf0\x9d\x04\xf7\
\x4d\x7a\x6a\x0e\x35\xe0\xf3\xc0\x3d\xc0\xdf\xe4\xb2\x99\xaa\x25\
\x91\x0c\x00\x5a\xdf\xc6\xdf\xda\x38\xd3\x7f\x33\xf5\xd7\xe9\x4a\
\xeb\xed\x38\xf0\x01\xe0\x0f\x73\xd9\xcc\x9c\xe5\x90\x0c\x00\x5a\
\xdb\xc6\x9f\x02\x5e\x0f\xbc\x03\x9f\xdb\x57\x73\x98\x04\xde\x07\
\xdc\x9b\xcb\x66\x66\x2c\x87\x64\x00\xd0\xea\x36\xfe\x36\xe0\x0d\
\xc0\xdb\x80\x01\x2b\xa2\x26\x34\x4d\xfd\xd2\xc0\xef\xe4\xb2\x99\
\x29\xcb\x21\x19\x00\xb4\xb2\xc6\xdf\x01\xdc\x05\xfc\x0c\xd0\x67\
\x45\xb4\x09\xcc\x52\xbf\x34\xf0\x3e\x9f\x1c\x90\x0c\x00\x5a\x7e\
\xe3\xef\xa4\x7e\x63\xdf\x5b\x81\x5e\x2b\xa2\x4d\x68\x1e\xf8\x3d\
\xe0\x37\x73\xd9\xcc\x05\xcb\x21\x19\x00\x74\xe5\xc6\x1f\x07\x7e\
\x0a\xf8\x65\xcf\xf8\x15\x10\x73\xc0\x7b\x81\xdf\xce\x65\x33\x8b\
\x96\x43\x32\x00\xe8\xe9\xcd\xff\xfb\x1b\x5f\x94\x37\x5a\x0d\x05\
\xd0\x19\xe0\x5d\xc0\x9f\xf8\x6a\x62\xc9\x00\xa0\x7a\xe3\x7f\x21\
\xf0\x9b\xc0\xcb\xac\x86\x42\xe0\x6b\xc0\xdb\x72\xd9\xcc\xbf\x58\
\x0a\xc9\x00\x10\xd6\xc6\xbf\x17\x78\x0f\xf0\x23\x8e\x9d\x42\xe8\
\xef\x80\x77\xe4\xb2\x99\x47\x2c\x85\x64\x00\x08\x4b\xe3\x4f\x03\
\xbf\x44\xfd\x06\xbf\x56\x2b\xa2\x10\x2b\x03\x7f\x00\xfc\xa2\x8f\
\x0e\x4a\x06\x80\xa0\x37\xff\xef\xa6\xfe\x88\xd4\x3e\xab\x21\x3d\
\x69\x0c\xf8\x99\x5c\x36\xf3\xa7\x96\x42\x32\x00\x04\xad\xf1\xef\
\x00\xde\x0f\xbc\xda\x6a\x48\x97\xf5\x59\xe0\x0d\xb9\x6c\xe6\x71\
\x4b\x21\x19\x00\x36\x7b\xe3\x8f\x02\x6f\x04\xde\x0d\x74\x5a\x11\
\xe9\x19\x2d\x51\xbf\x37\xe6\xbd\xb9\x6c\xa6\x68\x39\x24\x03\xc0\
\x66\x6c\xfe\xcf\x03\x7e\x1f\x78\xa1\xd5\x90\x96\xed\x30\xf0\x53\
\xb9\x6c\xe6\x7f\x5a\x0a\xc9\x00\xb0\x59\x1a\x7f\x2b\xf0\xeb\xc0\
\x5b\x80\xb8\x15\x91\xae\x59\x0d\xf8\x28\xf0\x56\x5f\x34\x24\x19\
\x00\x9a\xbd\xf9\x3f\x1f\xf8\x13\x7c\x45\xaf\xb4\x9a\x4e\x01\x77\
\xe6\xb2\x99\xcf\x59\x0a\xc9\x00\xd0\x6c\x8d\x3f\x06\xbc\x13\xf8\
\x15\x20\x69\x45\xa4\x55\x57\xa5\x7e\x23\xed\x2f\xe4\xb2\x99\x25\
\xcb\x21\x19\x00\x9a\xa1\xf9\x5f\x07\x7c\x0c\x78\xa9\xd5\x90\xd6\
\xdc\xc3\xc0\x6b\x73\xd9\xcc\xd7\x2c\x85\x64\x00\xd8\xc8\xe6\xff\
\x13\xc0\x6f\x03\xed\x56\x43\x5a\x37\x45\xe0\x57\xa9\x3f\x29\x50\
\xb5\x1c\x92\x01\x60\x3d\x1b\xff\x00\xf0\x47\xc0\xf7\x58\x0d\x69\
\xc3\x7c\x01\xf8\xd1\x5c\x36\x73\xcc\x52\xc8\x00\xa0\xf5\x68\xfe\
\x2f\x07\xfe\x1c\xd8\x66\x35\xa4\x0d\x37\x03\xfc\x58\x2e\x9b\xf9\
\xb4\xa5\x90\x01\x40\x6b\xd5\xf8\x23\xc0\xdb\xa9\x6f\xea\xe3\xe3\
\x7d\x52\xf3\xa8\x01\xbf\x05\xfc\x7c\x2e\x9b\x29\x5b\x0e\x19\x00\
\xb4\x9a\xcd\xbf\x0b\xf8\x08\xf0\x7f\x5a\x0d\xa9\x69\x0d\x01\x3f\
\x94\xcb\x66\x46\x2c\x85\x0c\x00\x5a\x8d\xe6\xff\x5c\xe0\x53\xc0\
\xf5\x56\x43\x6a\x7a\xa3\xc0\x0f\xbb\x83\xa0\x0c\x00\x5a\x69\xf3\
\xbf\x13\xf8\x3d\x20\x65\x35\xa4\x4d\xa3\x0c\xbc\x2b\x97\xcd\xfc\
\x86\xa5\x90\x01\x40\xcb\x6d\xfc\x2d\xc0\xbd\xc0\x4f\x58\x0d\x69\
\xd3\xfa\x6b\xea\x3b\x08\xba\x8d\xb0\x0c\x00\xba\xaa\xe6\xdf\xd7\
\xf8\xe2\x70\x63\x1f\x69\xf3\x3b\x04\x7c\x4f\x2e\x9b\x39\x6e\x29\
\x64\x00\xd0\x95\x9a\xff\xb3\x80\xbf\x07\x0e\x58\x0d\x29\x30\xce\
\x03\xdf\x9f\xcb\x66\xbe\x68\x29\x64\x00\xd0\xa5\x9a\xff\xb7\x53\
\xbf\xd9\x6f\x8b\xd5\x90\x02\x67\x91\xfa\xe5\x80\xbf\xb0\x14\x32\
\x00\xe8\xe2\xe6\xff\x63\xc0\x87\x80\x84\xd5\x90\x02\xab\x0a\xfc\
\x52\x2e\x9b\x79\x8f\xa5\x90\x01\xc0\xc6\x1f\x01\xde\x43\xfd\x4d\
\x7e\xd6\x4f\x0a\x87\x0f\x03\xaf\xcf\x65\x33\x25\x4b\x21\x03\x40\
\x38\x9b\x7f\x8a\xfa\x5b\xfc\x5e\x6d\x35\xa4\xd0\xf9\x1c\xf0\x83\
\xb9\x6c\x66\xca\x52\xc8\x00\x10\xae\xe6\xdf\x0d\xfc\x03\x90\xb1\
\x1a\x52\x68\x3d\x02\xbc\x32\x97\xcd\x9c\xb1\x14\x32\x00\x84\xa3\
\xf9\xf7\x03\xff\x0c\x3c\xd7\x6a\x48\xa1\x77\x1c\xb8\xc5\x37\x0a\
\xca\x00\x10\xfc\xe6\xbf\x0b\xf8\x2c\x70\xa3\xd5\x90\xd4\x70\x0e\
\xb8\x35\x97\xcd\x1c\xb2\x14\x32\x00\x04\xb3\xf9\x5f\x0f\xdc\x07\
\xec\xb3\x1a\x92\x9e\xe2\x02\xf0\x1d\xb9\x6c\xe6\xab\x96\x42\x06\
\x80\x60\x35\xff\x9b\x1b\xcd\x7f\xbb\xd5\x90\x74\x19\x33\xc0\x77\
\xe7\xb2\x99\x2f\x58\x0a\x19\x00\x82\xd1\xfc\xff\x3d\xf0\x8f\x40\
\xaf\xd5\x90\xf4\x0c\xf2\xc0\x0f\xe4\xb2\x99\xfb\x2c\x85\x0c\x00\
\x9b\xbb\xf9\xbf\x0c\xf8\x5b\xa0\xd3\x6a\x48\xba\x4a\x05\xe0\x87\
\x72\xd9\xcc\x67\x2c\x85\x0c\x00\x9b\xb3\xf9\xff\xc7\xc6\x99\x7f\
\x9b\xd5\x08\xd8\x44\x8f\x44\x48\x26\x13\x24\x13\x09\x62\xf1\x38\
\xf1\x58\x8c\x78\x2c\x46\x2c\xfe\x8d\x9f\xb1\x58\x9c\x68\x24\x42\
\x24\x12\x21\x12\x8d\x7c\xe3\x9f\x1b\x1f\x80\x6a\xb5\x46\xad\x56\
\xa5\x56\xab\x51\xab\xd5\xa8\xd6\x6a\xd4\xaa\x35\x2a\xd5\x0a\x95\
\x72\x85\x72\xa5\x42\xa5\x52\xa1\x5c\x7e\xe2\x67\x99\x52\xb9\x4c\
\xb1\x58\xa2\x52\xa9\x38\x10\xc1\x56\x02\x5e\x9d\xcb\x66\xfe\xc6\
\x52\xc8\x00\xb0\xb9\x9a\xff\x0b\x80\x41\xa0\xcb\x6a\x6c\x4e\xd1\
\x68\x94\xd6\xd6\x16\x5a\x5b\x5a\x48\x26\x93\xf5\x86\x9f\x4c\x90\
\x4c\x24\x89\xc7\x63\x4f\x36\xf1\x8d\x52\xa9\x54\x28\x96\x4a\x14\
\x8b\x25\x8a\xc5\x22\xc5\x52\x89\xc2\x52\x81\xc5\xa5\x02\xe5\x72\
\xd9\x01\x0c\x86\x25\xe0\xfb\xbc\x1c\x20\x03\xc0\xe6\x69\xfe\xcf\
\x01\x3e\x8f\xd7\xfc\x37\x8d\x64\x32\x41\xaa\xb5\x95\xd6\xd6\x56\
\x52\xa9\x16\x5a\x5b\x5b\x49\x26\x12\x1b\xde\xe4\xaf\x55\xb9\x5c\
\x66\x69\xa9\xc0\xe2\xd2\xd2\x45\x3f\x97\xa8\xd5\x1c\xeb\x4d\x28\
\x4f\xfd\xe9\x80\x7f\xb3\x14\x32\x00\x34\x77\xf3\x3f\x08\xfc\x4f\
\xbc\xdb\xbf\x79\x27\x69\x04\x52\xad\x29\xd2\x6d\x29\xda\xd2\x69\
\xda\xd2\x69\x12\x89\x78\xe0\x8f\xbb\x5a\xad\xb2\xb0\xb0\x48\x7e\
\x61\x91\xfc\xc2\x02\x0b\x0b\x0b\x54\x2a\x55\x27\xc4\xe6\x30\x0b\
\xe4\x72\xd9\xcc\x97\x2d\x85\x0c\x00\xcd\xd9\xfc\xf7\x00\x43\xc0\
\x1e\xa7\x42\x73\x49\xa5\x52\x74\x76\xb4\xd1\xde\xd6\x46\x3a\x9d\
\x22\x1a\x8d\x86\xbe\x26\xb5\x5a\x8d\x42\xa1\xc8\x7c\x3e\xcf\xdc\
\x5c\x9e\xf9\x7c\x9e\x6a\xd5\x40\xd0\xc4\x26\x80\x57\xe4\xb2\x99\
\x07\x2d\x85\x0c\x00\xcd\xd5\xfc\xb7\x01\xff\x0a\x1c\x74\x1a\x6c\
\xbc\x58\x2c\x46\x47\x7b\x3b\x9d\x1d\xed\x74\x74\xb4\x11\x8f\xc7\
\x2d\xca\x33\xae\x10\xd4\xc8\x2f\x2c\x30\x37\x37\xc7\xec\x5c\x9e\
\x42\xa1\x60\x51\x9a\xcf\x28\xf0\xf2\x5c\x36\xf3\x98\xa5\x90\x01\
\xa0\x39\x9a\x7f\x2f\xf5\x6b\xfe\xcf\x71\x0a\x6c\x9c\x44\x22\x4e\
\x77\x57\x27\x5d\x5d\x9d\xa4\x53\xa9\x4d\x7b\xfd\xbe\x59\x14\x8b\
\x25\x66\x66\x67\x99\x9e\x99\x65\x61\x61\xd1\x82\x34\x8f\xd3\xc0\
\xcb\x72\xd9\xcc\x09\x4b\x21\x03\xc0\xc6\x36\xff\x14\xf5\xd7\x7a\
\xbe\xd8\xe1\x5f\x7f\xf1\x78\xbd\xe9\x77\x77\x75\x92\x4e\xdb\xf4\
\xd7\x32\x0c\x4c\xcf\xcc\x30\x3d\x33\xcb\xe2\xe2\x92\x05\xd9\x78\
\x47\x80\x4c\x2e\x9b\x99\xb0\x14\x32\x00\x6c\x4c\xf3\x8f\x02\x9f\
\x04\x5e\xe5\xd0\xaf\x9f\x68\x34\x4a\x77\x57\x27\x5b\xba\xbb\x68\
\x6b\x4b\xdb\xf4\xd7\x59\xa1\x50\x64\x7a\x66\x86\xc9\xa9\x69\x8a\
\xc5\x92\x05\xd9\x38\xff\x46\xfd\x2d\x82\x5e\xab\x91\x01\x60\x03\
\x02\xc0\x6f\x02\x3f\xeb\xb0\xaf\x8f\x74\x2a\x45\x4f\x4f\x37\xdd\
\x5d\x9d\xc4\x62\x31\x0b\xb2\xc1\x6a\xb5\x1a\xf3\xf9\x3c\x93\x93\
\xd3\xcc\xcc\xce\x51\xf3\x19\xc3\x8d\xf0\xe7\xc0\x6d\xb9\x6c\xc6\
\xe2\x6b\xc3\x85\xe6\x4e\xab\xc1\xa1\xe1\x37\xd8\xfc\xd7\x5e\x2c\
\x16\x65\x4b\x77\x37\x3d\x3d\xdd\xa4\x5a\x5b\x2d\x48\x33\xa5\xfd\
\x48\x84\x8e\xf6\x76\x3a\xda\xdb\x29\x97\xcb\x4c\x4d\xcf\x30\x31\
\x39\x45\xa1\x50\xb4\x38\xeb\xe7\x87\x81\x63\xc0\xbb\x2c\x85\x5c\
\x01\x58\x9f\xe6\xff\x5d\xc0\x67\xc2\x14\x78\xd6\x5b\x32\x99\x60\
\x6b\x6f\x2f\xbd\x3d\xdd\x3e\xb2\xb7\xa9\x56\x05\x60\x6e\x7e\x9e\
\x0b\xe3\x13\xcc\xcf\xe7\x2d\xc8\x3a\x95\x1d\xf8\xf1\x5c\x36\xf3\
\xc7\x96\x42\x06\x80\xb5\x6d\xfe\xcf\xa5\xfe\xac\x7f\x87\xc3\xbd\
\xfa\xd2\xa9\x56\xfa\xb6\xf6\xd2\xd5\xd5\xe9\xb5\xfd\x4d\x6e\x71\
\x71\x89\xf3\xe3\x13\xcc\xcc\xcc\xb8\x03\xe1\xda\x2b\x01\xdf\x95\
\xcb\x66\x3e\x6b\x29\x64\x00\x58\x9b\xe6\xbf\x13\xf8\x22\xb0\xcb\
\xa1\x5e\x5d\x9d\x1d\xed\xf4\xf5\xf5\xd2\xde\xe6\x7b\x93\x82\xa6\
\x58\x2a\x31\x3e\x3e\xc9\xc4\xe4\x94\x1b\x0d\xad\xad\x69\xe0\x3f\
\xe6\xb2\x99\x87\x2d\x85\x0c\x00\xab\xdb\xfc\xd3\xc0\x17\x80\x7f\
\xe7\x30\xaf\x9e\x8e\xf6\x36\xb6\x0d\xf4\x93\x4e\xa7\x2c\x46\xc0\
\x95\xcb\x65\xce\x5f\x98\x60\x7c\x62\xd2\x1b\x06\xd7\xce\x49\xe0\
\x85\xb9\x6c\xe6\x82\xa5\x90\x01\x60\xf5\x02\xc0\xc7\x81\xdb\x1d\
\xe2\xd5\xd1\xde\x96\x66\xdb\x40\x3f\x6d\x6d\x69\x8b\x11\x32\xa5\
\x52\x99\xf3\x17\x2e\x30\x31\x39\x6d\x10\x58\x1b\xff\x02\xbc\x32\
\x97\xcd\xf8\xbe\x68\x19\x00\x56\xa1\xf9\xbf\x09\xb8\xd7\xe1\x5d\
\xb9\x74\x3a\xc5\xf6\x81\x7e\xda\xdb\x5d\xea\x0f\xbb\x62\xa9\xc4\
\xd8\xd8\x38\x93\x53\x53\x16\x63\xf5\xdd\x9d\xcb\x66\x7e\xde\x32\
\xc8\x00\xb0\xb2\xe6\x9f\xa1\xbe\xcd\x6f\xd2\xe1\xbd\x76\x89\x44\
\x9c\xed\xdb\x06\xe8\xee\xea\xc2\x7b\xfb\x74\xb1\xa5\xa5\x02\x67\
\x47\x46\x7d\x6a\x60\x75\xd5\x80\x57\xe5\xb2\x99\xbf\xb6\x14\x32\
\x00\x5c\x5b\xf3\xef\x07\xbe\x82\x37\xfd\x5d\xfb\x84\x88\x44\xe8\
\xef\xdb\x4a\x7f\x5f\xaf\x8f\xf3\xe9\x8a\x66\x66\xe7\x38\x37\x32\
\x46\xb1\xe8\x3e\x02\xab\x55\x52\xea\xf7\x03\x1c\xb1\x14\x32\x00\
\x2c\xaf\xf9\xc7\x80\xfb\x80\x57\x38\xac\xd7\xa6\xbb\xab\x93\xed\
\xdb\x06\x48\x26\x13\x16\x43\x57\xa5\x5a\xab\x31\x3e\x3e\xc1\xd8\
\xf9\x71\x9f\x18\x58\x1d\x0f\x02\x2f\xc9\x65\x33\x0b\x96\x42\x6b\
\x2d\x48\x1b\xe3\xbc\xc7\xe6\x7f\x6d\x92\xc9\x24\xbb\x77\x6e\xf7\
\x3a\xbf\x96\x2d\xda\x58\x31\xda\xd2\xdd\xcd\xd9\x73\x23\xcc\xcc\
\xce\x59\x94\x95\xf9\x16\xe0\x0f\xf1\x06\x66\xb9\x02\x70\xd5\x67\
\xff\xaf\x02\x3e\x45\x48\x5f\x6f\xbc\x12\xfd\x7d\xbd\x0c\xf4\xf7\
\xb9\xdc\xaf\x55\x31\x33\x3b\xc7\xd9\xb3\x23\x94\xca\x65\x8b\xb1\
\x32\x6f\xce\x65\x33\x1f\xb0\x0c\x32\x00\x5c\xb9\xf9\xef\x05\xee\
\x07\xba\x1c\xce\xab\x97\x4a\xb5\xb2\x7b\xe7\x0e\x52\x29\xf7\xeb\
\xd7\xea\xaa\x54\x2a\x8c\x8c\x9e\x67\x62\xd2\xa7\x05\x56\xa0\x48\
\xfd\xf5\xc1\x5f\xb5\x14\x32\x00\x5c\xba\xf9\x47\xa9\x3f\x43\xfb\
\x72\x87\xf2\x2a\x07\x3c\x12\x61\xdb\x40\x1f\x7d\x5b\x7b\xdd\xba\
\x57\x6b\x6a\x3e\xbf\xc0\xe9\x33\xe7\xbc\x49\xf0\xda\x3d\x02\xbc\
\x20\x97\xcd\x2c\x5a\x0a\xad\x85\xcd\x7e\x0f\xc0\xdb\x6c\xfe\x57\
\xaf\xb5\xb5\x85\x3d\xbb\x77\xfa\x96\x3e\xad\x8b\xf6\xb6\x34\x37\
\x1e\x3c\xc0\xd9\x73\xa3\x4c\x4e\x4d\x5b\x90\xe5\x7b\x36\xf0\x5e\
\xe0\xa7\x2d\x85\x5c\x01\xf8\xe6\xb3\xff\xe7\x02\x5f\x02\x5a\x1c\
\xc6\x67\xb6\xb5\xb7\x87\xed\xdb\xfa\xbd\xd6\xaf\x0d\x31\x33\x33\
\xcb\xe9\xb3\x23\x54\x2a\x6e\x76\xb7\x4c\x35\xe0\x3b\x72\xd9\xcc\
\x3f\x5b\x0a\x19\x00\xea\xcd\xbf\x05\xf8\x32\xf0\x1c\x87\xf0\xca\
\xe2\xf1\x38\x7b\x76\xed\xa0\xa3\xa3\xdd\x62\x68\x43\x95\x4a\x25\
\x4e\x9d\x39\xe7\x06\x42\xcb\x77\x16\xf8\xd6\x5c\x36\x33\x69\x29\
\xb4\xaa\xfd\x61\x93\xfe\xbd\xff\x1f\x9b\xff\x33\xeb\xec\x68\x67\
\xf7\xae\x1d\xc4\xe3\x71\x8b\xa1\x0d\x97\x48\x24\x38\xb0\x6f\x0f\
\x17\xc6\x27\x18\x19\x3d\x6f\x41\xae\xde\x4e\xe0\x43\xc0\x7f\xb2\
\x14\x0a\xf5\x0a\xc0\xe0\xd0\xf0\xb7\x53\xdf\xf0\xc7\xb5\xec\x2b\
\x18\xe8\xef\x63\xa0\x7f\xab\x37\xfa\xa9\x29\xcd\xe7\x17\x38\x79\
\xea\x34\xe5\xb2\x97\x04\x96\xe1\x47\x73\xd9\xcc\x9f\x58\x06\x85\
\x32\x00\x0c\x0e\x0d\x77\x03\x0f\x00\xbb\x1d\xba\x4b\x8b\xc5\xa2\
\xec\xd9\xb5\x93\xce\xce\x0e\x8b\xa1\xa6\x56\x2a\x95\x38\x71\xea\
\x0c\x0b\x0b\xde\xe4\x7e\x95\x66\xa8\x5f\x0a\x38\x65\x29\xb4\x1a\
\x36\xdb\xda\xf0\x6f\xd9\xfc\x2f\xaf\xb5\xb5\x85\x7d\x7b\x76\xd3\
\xd2\xe2\x7b\x90\xd4\xfc\x12\x89\x04\xd7\x1f\xd8\xc7\xd9\x73\xa3\
\xee\x19\x70\x75\xba\x80\x3f\x00\xbe\xc3\x52\x28\x54\x2b\x00\x83\
\x43\xc3\x2f\x07\x3e\x87\xbb\xfd\x5d\x52\x77\x57\x27\xbb\x77\xed\
\xf0\x2e\x7f\x6d\x4a\x93\x53\xd3\x9c\x39\x3b\x42\xad\x56\xb3\x18\
\xcf\xec\xb6\x5c\x36\xf3\x67\x96\x41\xa1\x08\x00\x8d\xbb\xfe\xbf\
\x0e\x3c\xcb\x21\x7b\xba\x81\xfe\xad\x0c\xf4\xf7\xfb\xda\x5e\x6d\
\x6a\xf3\xf9\x05\x4e\x9c\x3c\xed\xa3\x82\xcf\x6c\x0c\x78\x76\x2e\
\x9b\x71\xd9\x44\x2b\xb2\x59\x2e\x01\xfc\x9c\xcd\xff\x12\xe9\x2d\
\x12\x61\xd7\xce\xed\xf4\x6c\xe9\xb6\x18\xda\xf4\xda\xdb\xd2\x1c\
\xbc\x6e\x3f\xc7\x4e\x9c\xa4\x58\x2c\x59\x90\x2b\x64\x7e\xe0\x6e\
\xe0\xf5\x96\x42\x81\x5e\x01\x18\x1c\x1a\xbe\x91\xfa\x5e\xff\x6e\
\xf8\x73\x91\x58\x34\xca\xbe\xbd\xbb\x7d\x83\x9f\x02\xa7\x5c\x2e\
\x73\xfc\xe4\x69\x6f\x0e\xbc\xb2\x2a\xf0\xb2\x5c\x36\xf3\x05\x4b\
\xa1\x40\x06\x80\xc1\xa1\xe1\x08\xf5\xeb\xfe\x6e\xf7\x7b\x91\x64\
\x22\xc1\xfe\x7d\x7b\x68\x6d\x35\x13\x29\xa0\xdd\xad\x5a\xe5\xf4\
\x99\x73\x4c\xcf\xcc\x5a\x8c\xcb\x7b\x18\x78\x5e\x2e\x9b\x71\xb9\
\x44\xd7\xa4\xd9\x2f\x01\xfc\x67\x9b\xff\x37\x6b\x6d\x69\xe1\xc0\
\xfe\xbd\x24\x12\x6e\xee\xa3\xe0\x8a\x46\xa3\xec\xd9\xbd\x93\x58\
\x2c\xe6\x13\x02\x97\x77\x33\xf0\x76\xe0\x3d\x96\x42\x81\x5a\x01\
\x18\x1c\x1a\xee\xa3\xfe\x36\xac\x5e\x87\xa9\x2e\x95\x6a\xe5\xc0\
\xbe\x3d\xee\xec\xa7\x50\x39\x37\x32\xc6\x85\xf1\x09\x0b\x71\x69\
\x8b\xc0\xb7\xe4\xb2\x99\xa3\x96\x42\x41\x5a\x01\x78\x8f\xcd\xff\
\x1b\xda\xd2\x29\xf6\xef\xdb\x43\x2c\x16\xb3\x18\x0a\x95\x1d\xdb\
\x07\x88\x46\xa3\x8c\x9d\xbf\x60\x31\x2e\x71\x5e\x00\xfc\x0e\xf0\
\xbd\x96\x42\x81\x58\x01\x18\x1c\x1a\xfe\x56\xe0\xab\x80\xdd\x0e\
\x68\x6f\x6f\x63\xff\xde\xdd\x3e\xe3\xaf\x50\x3b\x7f\x61\x82\x91\
\xd1\x31\x0b\x71\x69\xb7\xe4\xb2\x99\x41\xcb\xa0\x20\x04\x80\x7f\
\x02\x5e\xe9\xf0\xd4\x5f\xe8\xb3\x77\xcf\x2e\x9b\xbf\x04\x8c\x4f\
\x4c\x71\xf6\xdc\x88\x85\x78\xba\xfb\x81\xe7\xe7\xb2\x99\xaa\xa5\
\xd0\xd5\x6a\xba\x4b\x00\x83\x43\xc3\xdf\x69\xf3\xff\xc6\x99\xbf\
\xcd\x5f\xfa\x86\xad\xbd\x5b\xa8\xd5\xaa\x9c\x1b\x71\x25\xe0\x29\
\x9e\x0b\xdc\x09\xfc\xb1\xa5\xd0\xa6\x5c\x01\x18\x1c\x1a\x8e\x35\
\x92\xec\xcd\x61\x1f\x98\xb6\x74\x8a\x03\xfb\xf7\xda\xfc\xa5\x4b\
\x18\x3b\x7f\x81\xd1\x31\xef\x09\x78\x8a\x11\xe0\x60\x2e\x9b\xc9\
\x5b\x0a\x6d\xc6\x15\x80\x1f\xb7\xf9\xd7\xef\xf6\xdf\xbf\x6f\x8f\
\xcd\x5f\xba\x8c\x81\xfe\x3e\xaa\xd5\x2a\xe7\x2f\xf8\x74\xc0\x45\
\xb6\x03\xef\x00\x7e\xc5\x52\x68\x53\xad\x00\x0c\x0e\x0d\x77\x00\
\x47\xa8\x6f\x73\x19\x5a\xad\x2d\x2d\x5c\x77\x60\xaf\x8f\xfa\x49\
\x57\xe1\xcc\xb9\x51\x26\x26\x26\x2d\xc4\x37\x2c\x00\x37\xe4\xb2\
\x99\xb3\x96\x42\x9b\x69\x05\xe0\xe7\xc2\xde\xfc\x93\x89\x04\x07\
\xf6\xdb\xfc\xa5\xab\xb5\x73\xfb\x00\xd5\x4a\x85\xa9\xe9\x19\x8b\
\x51\x97\x06\xde\x4d\xfd\x7e\x00\xa9\xf9\x57\x00\x06\x87\x86\xb7\
\x03\x47\xa9\x3f\xd3\x1a\x4a\xb1\x68\x94\xeb\xaf\xdb\xef\xf6\xbe\
\xd2\x32\xd5\x6a\x35\x8e\x1d\x3f\xc9\x7c\x7e\xc1\x62\xd4\x55\xa9\
\x6f\x11\xfc\x80\xa5\xd0\x66\x58\x01\x78\x67\x98\x9b\x7f\x24\x12\
\x61\xdf\xde\xdd\x36\x7f\x69\x05\xbf\x3f\x47\x8e\x9e\xa0\x50\x28\
\x58\x10\x88\x02\xbf\x0c\xbc\xda\x52\xa8\xa9\x57\x00\x06\x87\x86\
\xb7\x01\xc7\xc2\x1c\x00\x76\xef\xda\xe1\x2b\x7d\xa5\x15\x2a\x16\
\x8b\x1c\x39\x7a\x9c\x72\xb9\x62\x31\xea\xab\x00\xcf\xcd\x65\x33\
\x0f\x59\x0a\x35\xf3\x0a\xc0\xdb\xc3\xdc\xfc\x07\xfa\xb7\xda\xfc\
\xa5\x55\x90\x4c\x26\xd9\xbf\x77\x0f\x47\x8f\x9d\xa0\x5a\xab\xb9\
\x0a\x00\xbf\x04\xfc\x90\x33\x43\x4d\xb9\x02\x30\x38\x34\xdc\x0f\
\x1c\xa7\x7e\xe3\x4a\xe8\x74\x77\x75\xb2\x67\xf7\x2e\x22\x11\x27\
\xa2\xb4\x5a\x66\x66\x66\x39\x71\xea\x8c\x85\xa8\xaf\x02\x7c\x4b\
\x2e\x9b\x39\x64\x29\xd4\x8c\x2b\x00\x6f\x0f\x6b\xf3\x6f\x6d\x6d\
\x61\xf7\xae\x1d\x36\x7f\x69\x95\x75\x75\x75\xd2\xdf\xb7\x95\xf3\
\x17\xc6\x5d\x05\xa8\xaf\x02\xfc\x88\xb3\x42\x4d\xb5\x02\xd0\x78\
\xdd\xef\x71\xa0\x2d\x6c\x45\x8f\xc5\xa2\x1c\xbc\xee\x00\x2d\x2d\
\x49\x67\xa0\xb4\x06\x6a\xb5\x1a\xc7\x4f\x9c\x62\x6e\x3e\xf4\x9b\
\xe2\x55\x80\xe7\xe4\xb2\x99\xc3\xce\x0a\x35\xd3\x0a\xc0\xdb\xc2\
\xd8\xfc\x01\xf6\xec\xda\x69\xf3\x97\xd6\xf2\xcc\x26\x12\x61\xcf\
\xee\x5d\x3c\xf6\xf8\x31\x4a\xa5\x52\x98\x4b\x11\x6b\xac\x02\xdc\
\xee\xac\x50\x53\xac\x00\x0c\x0e\x0d\xf7\x02\x27\x80\xf6\xb0\x15\
\x7c\xa0\xbf\x8f\x6d\x03\x7d\xce\x3c\x69\x1d\x2c\x2c\x2e\xf2\xf8\
\xd1\x13\xd4\xc2\x7d\x53\x60\x05\xb8\x29\x97\xcd\x3c\xe6\x8c\x50\
\x33\xac\x00\xfc\x54\x18\x9b\x7f\x67\x47\x3b\x03\xfd\x5b\x9d\x75\
\xd2\x3a\x49\xa7\x52\xec\xda\xb9\x8d\xd3\x67\x42\xfd\x0a\xe1\x18\
\xf0\x56\xe0\x8d\xce\x08\x6d\xe8\x0a\xc0\xe0\xd0\x70\xa2\x71\xf6\
\xbf\x23\x54\x49\x2b\x1e\xe7\xc6\x83\x07\xdc\xe6\x57\xda\x00\x27\
\x4f\x9d\x61\x7a\x66\x36\xcc\x25\xc8\x03\xbb\x73\xd9\xcc\x94\xb3\
\x41\x1b\xb9\x02\xf0\x9a\xb0\x35\x7f\x80\x3d\xbb\x76\xd8\xfc\xa5\
\x0d\xb2\x6b\xe7\x76\xf2\x0b\x8b\x61\xbe\x1f\xa0\x0d\xf8\x09\xe0\
\x37\x9c\x0d\xda\xc8\x15\x80\x2f\x01\x2f\x0a\x53\x91\xb7\xf6\xf6\
\xb0\x73\xc7\x36\x67\x9b\xb4\x81\xe6\xf3\x0b\x1c\x3d\x76\x22\xcc\
\x25\x38\x05\x1c\xc8\x65\x33\x6e\x95\xa8\xf5\x5f\x01\x18\x1c\x1a\
\xce\x84\xad\xf9\xb7\xb6\xb6\xb0\x7d\x5b\xbf\x33\x4d\xda\x60\xed\
\x6d\x69\xfa\xfb\xb7\x72\xfe\x7c\x68\xf7\x07\xd8\x03\xbc\x0a\xf8\
\xa4\xb3\x41\xeb\x1e\x00\x80\xb7\x84\xa9\xb8\xf5\x47\x91\x76\x12\
\x8d\x46\x9d\x69\x52\x13\xd8\xd6\xdf\xc7\xfc\x5c\x9e\x85\xc5\xc5\
\xb0\x96\xe0\x2d\x06\x00\x3d\xd9\xa3\xd6\xf1\xec\x7f\x17\xf5\x97\
\xfe\x24\xc2\x52\xdc\xed\xdb\xfa\xe9\xef\xf3\xae\x7f\xa9\x99\x14\
\x0a\x05\x1e\x3d\x72\x2c\xcc\x8f\x06\xbe\x30\x97\xcd\x7c\xd9\x99\
\xa0\xf5\x5c\x01\xb8\x2b\x4c\xcd\x3f\x95\x6a\xa5\x6f\x6b\xaf\x33\
\x4c\x6a\x32\x2d\x2d\x2d\x0c\xf4\xf7\x31\x3a\x76\x3e\xcc\xab\x00\
\xaf\x75\x26\x68\x5d\x56\x00\x06\x87\x86\x5b\x80\xb3\x40\x68\x3a\
\xe2\x0d\xd7\x1f\x20\x95\x6a\x75\x86\x49\x4d\xa8\x56\xab\xf1\xd8\
\xe3\xc7\x59\x5a\x5a\x0a\xe3\xe1\x17\x81\x5d\xb9\x6c\xe6\x82\x33\
\xc1\x15\x80\xf5\xf0\x7d\x61\x6a\xfe\xfd\x7d\xbd\x36\x7f\xa9\x99\
\xcf\x7c\x22\x11\x76\xef\xda\xce\x91\xc7\x8f\x87\xf1\xf0\x93\xc0\
\x1d\xc0\xfb\x9c\x09\x06\x80\xf5\x70\x67\x68\x7e\xb3\x92\x49\x06\
\xfa\xdd\xea\x57\x6a\x76\xe9\x54\x8a\xbe\xad\xbd\x5c\x18\x9f\x08\
\xe3\xe1\xdf\x69\x00\xd0\x9a\x5f\x02\x18\x1c\x1a\xde\x01\x9c\x64\
\xe3\x5f\x3d\xbc\x2e\xae\xdb\xbf\x97\xf6\xf6\x36\x67\x96\xb4\x09\
\x54\xab\x55\x1e\x3d\x72\x94\x62\x31\x94\x1b\x04\xbd\x20\x97\xcd\
\x7c\xd5\x59\xe0\x0a\xc0\x5a\x7a\x6d\x58\x9a\x7f\x77\x57\xa7\xcd\
\x5f\xda\x44\xa2\xd1\x28\x3b\xb6\x6f\xe3\xc4\xc9\xd3\x61\x3c\xfc\
\xff\x0c\x18\x00\x5c\x01\x58\xd3\x15\x80\x47\x80\x67\x05\xbe\x90\
\x91\x08\xcf\xba\xe1\x7a\x92\xc9\x84\xb3\x4a\xda\x64\x8e\x1e\x3b\
\xc9\x7c\x3e\x1f\xb6\xc3\x9e\x00\x76\xe6\xb2\x99\x82\x33\xc0\x15\
\x80\xb5\x68\xfe\x99\x30\x34\x7f\x80\xfe\xbe\xad\x36\x7f\x69\x93\
\xda\xb1\x63\x80\xc7\x8e\x1c\x0b\xdb\x61\xf7\x52\xbf\x41\xdb\x8d\
\x81\x0c\x00\x6b\xe2\xce\x30\x14\x31\x91\x88\xd3\xdf\xe7\x33\xff\
\xd2\x66\x95\x6a\x6d\xa5\xb7\x67\x0b\x13\x93\xa1\x7b\x59\xde\x9d\
\x06\x80\xf0\x5a\xb3\x4b\x00\x83\x43\xc3\x29\x60\x04\xe8\x0a\x7a\
\x11\xf7\xec\xde\xc9\x96\xee\x2e\x67\x93\xb4\x89\x95\xcb\x65\x0e\
\x3f\xfa\x38\x95\x6a\x35\x54\x87\x0d\xec\xcd\x65\x33\xe7\x9c\x01\
\xae\x00\xac\xa6\xef\x09\x43\xf3\x4f\xa7\x53\x74\x77\xd9\xfc\xa5\
\x4d\xff\x65\x18\x8f\x33\xd0\xdf\xc7\xb9\xd1\xb1\xb0\xf5\x80\x1f\
\xc2\x47\x02\x0d\x00\xab\xec\x55\x61\x28\xe0\xf6\x81\x7e\x22\x11\
\x27\x92\x14\x04\xbd\xbd\x5b\xb8\x30\x3e\x41\xa9\x5c\x0e\xd3\x61\
\xbf\xca\x00\x10\x4e\x6b\xd2\xba\x06\x87\x86\x5b\x81\xf3\x40\x47\
\x90\x8b\xd7\xde\x96\xe6\xba\x03\xfb\x9c\x45\x52\x80\x8c\x4f\x4c\
\x72\xf6\xdc\x68\x98\x0e\xb9\x4a\xfd\x69\x80\x51\x47\xdf\x15\x80\
\xd5\x70\x6b\xd0\x9b\x3f\xc0\xb6\x81\x7e\x67\x90\x14\x30\x3d\x3d\
\x5b\x38\x7f\x61\x82\x52\x29\x34\x9b\x03\x45\x81\x1f\x00\x3e\xe8\
\xe8\x1b\x00\x56\xc3\x0f\x06\xbd\x70\x1d\xed\x6d\xb4\xb5\xa5\x9d\
\x41\x52\xd0\xba\x61\x24\xc2\x40\xff\x56\xce\x9c\x1d\x09\xd3\x61\
\xbf\xca\x00\x10\x3e\xab\x7e\x09\x60\x70\x68\x38\x0e\x8c\x01\x3d\
\x41\x2e\xdc\xc1\xeb\xf6\x93\x4e\xa7\x9c\x41\x52\x00\xd5\x6a\x35\
\x0e\x3f\xf6\x78\x98\xb6\x08\x2e\x03\xdb\x72\xd9\xcc\x84\xa3\xef\
\x0a\xc0\x4a\xbc\x22\xe8\xcd\xbf\xb3\xa3\xdd\xe6\x2f\x05\xf9\xcc\
\x28\x12\x61\xa0\xbf\x8f\xd3\x67\x42\xf3\x74\x5c\x9c\xfa\xa6\x40\
\x1f\x76\xf4\x0d\x00\x2b\x11\xf8\xe5\xff\x3e\x37\xfd\x91\x02\x6f\
\x4b\x77\x17\xa3\xa3\xe7\xc3\xf4\x44\xc0\x0f\x1a\x00\x42\x16\x74\
\x57\xf3\x0f\x1b\x1c\x1a\x8e\x02\xe7\x80\x81\xa0\x16\x2c\x9d\x6a\
\xe5\xe0\xf5\x07\x9c\x39\x52\x08\x9c\xbf\x30\xce\xc8\xe8\xf9\xb0\
\x1c\x6e\x01\xe8\xcf\x65\x33\xb3\x8e\xbc\x2b\x00\xd7\xe2\x05\x41\
\x6e\xfe\x00\x7d\x5b\x3d\xfb\x97\xc2\xa2\xb7\x67\x0b\x63\xe7\xc7\
\xa9\x86\x63\x77\xc0\x16\x20\x07\xfc\x95\x23\x6f\x00\xb8\x16\xb7\
\x06\xb9\x58\xc9\x64\x82\xae\xae\x4e\x67\x8d\x14\x12\xb1\x58\x8c\
\x9e\x9e\x6e\xc6\xc7\x27\xc3\x72\xc8\xb7\x1a\x00\x0c\x00\x06\x80\
\x4b\xd8\xda\xdb\x4b\xc4\x6d\xff\xa4\x50\xe9\xeb\xed\x0d\x5b\x00\
\x50\x48\xac\x5a\x37\x1b\x1c\x1a\x6e\xa3\xfe\x7e\xe9\x96\x60\x9e\
\x09\x44\xb9\xe9\x59\x37\x10\x8d\x46\x9d\x35\x52\xc8\x9c\x3c\x7d\
\x86\xe9\xe9\xd0\x5c\x1a\xdf\x9f\xcb\x66\x4e\x38\xea\xae\x00\x2c\
\xc7\xcb\x82\xda\xfc\x01\xb6\x74\x77\xdb\xfc\xa5\x90\xea\xed\xd9\
\x12\xa6\x00\x70\x2b\xf0\x87\x8e\xba\x01\x60\xb9\x93\x26\xb0\x7a\
\x7a\xba\x9d\x2d\x52\x48\xb5\xb7\xb5\xd1\xd2\x92\xa4\x50\x28\x86\
\xe1\x70\x6f\x31\x00\x18\x00\xae\x65\xd2\x04\x52\x3a\x95\x22\xd5\
\xda\xea\x6c\x91\x42\xac\x67\x4b\x77\x58\x1e\x09\xcc\x0d\x0e\x0d\
\x47\x73\xd9\x4c\xd5\x51\x37\x00\x3c\xa3\xc1\xa1\xe1\xed\xc0\x73\
\x3c\xfb\x97\x14\xe4\x00\x30\x3a\x76\x81\x5a\xad\x16\xf4\x43\xed\
\x05\x9e\x0f\x7c\xd9\x51\x37\x00\x5c\xed\xd9\x7f\x20\x6f\x8f\x8f\
\x46\xa3\x74\xfb\xe8\x9f\xe4\x97\x65\x3c\x4e\x67\x67\x07\x33\x33\
\xa1\xb8\x17\xe0\x16\x03\x80\x01\xe0\x6a\xfd\xc7\xa0\x16\xa8\xbb\
\xab\x93\x58\x2c\xe6\x4c\x91\x44\x6f\x4f\x77\x58\x02\x40\x16\xb8\
\xdb\x11\x37\x00\x5c\x8d\x97\x04\xb5\x40\x5b\xba\xbb\x9c\x25\x92\
\x80\xfa\xcd\x80\xf1\x78\x9c\x72\xf0\xdf\x0f\xf0\x62\x47\x3b\xf8\
\x56\xbc\x6c\x3f\x38\x34\xdc\x01\x4c\x01\x81\x3b\x4d\x8e\xc7\xe3\
\xdc\xf4\xac\x83\x6e\xfe\x23\xe9\x49\x67\xcf\x8d\x32\x3e\x11\x8a\
\x8d\x81\x6e\xcc\x65\x33\x8f\x39\xe2\xae\x00\x5c\xc9\x0b\x83\xd8\
\xfc\xa1\xbe\xfc\x6f\xf3\x97\xf4\xd4\xef\x85\x90\x04\x80\x97\x00\
\x06\x00\x03\xc0\x15\x65\x82\xfc\x8b\x2e\x49\x17\x4b\xa7\x53\x24\
\x12\x71\x4a\xa5\xc0\x5f\x06\x78\x09\xf0\x31\x47\xdc\x00\xf0\x4c\
\x93\x24\x70\x12\x89\x38\xe9\x74\xca\x19\x22\xe9\x9b\x44\x22\x11\
\xba\x3a\x43\xb1\x0a\x90\x71\xb4\x0d\x00\xcf\x24\x90\x37\x8b\xb8\
\xfc\x2f\xe9\xb2\xdf\x0f\xdd\xa1\x08\x00\xcf\x19\x1c\x1a\x6e\xcb\
\x65\x33\x79\x47\xdc\x00\xf0\x34\x83\x43\xc3\xd7\x03\x7d\x41\x2c\
\x8c\xaf\xfd\x95\x74\x39\xe9\x54\x8a\x44\x3c\x4e\x29\xd8\x4f\x03\
\xc4\xa9\xdf\xe3\xf5\x79\x47\xdc\x00\x70\x29\x81\x5c\xfe\x8f\xc5\
\x62\xa4\x53\x2e\xff\x4b\xba\xb4\x48\x24\x42\x47\x47\x3b\x93\x53\
\xd3\x41\x3f\xd4\x97\x18\x00\x0c\x00\x97\xf3\xef\x82\x58\x94\x8e\
\xf6\x76\x97\xff\x25\x5d\x51\x67\x38\x02\xc0\x73\x1d\x69\x03\xc0\
\xe5\xdc\x14\xd4\x5f\x6c\x49\xba\x92\xf6\xf6\x36\x22\x11\x08\xf8\
\xab\x01\x6e\x76\xa4\x0d\x00\xa1\x9a\x1c\x1d\x1d\x6d\xce\x0c\x49\
\x57\x14\x8b\xc5\x48\xa7\xd3\xe4\xf3\x0b\x41\x3e\xcc\x1b\x07\x87\
\x86\xe3\xb9\x6c\xa6\xec\x88\x1b\x00\x9e\x34\x38\x34\xdc\x09\xec\
\x0e\x5a\x41\x52\xa9\x14\xf1\x78\xdc\x99\x21\xe9\x19\x75\x76\xb4\
\x07\x3d\x00\x24\x81\x83\xc0\x23\x8e\xb6\x01\xe0\x62\x37\x11\xc0\
\x37\x00\x76\x7a\xf6\x2f\xe9\x2a\x75\x74\xb4\x33\x32\x7a\x3e\xe8\
\x87\x79\xb3\x01\xc0\x00\x70\xa9\x49\x11\x38\xed\x6d\x06\x00\x49\
\x57\x27\xd5\xda\x4a\x3c\x16\xa3\x5c\xa9\x04\x3d\x00\x7c\xca\xd1\
\x36\x00\x04\x3a\x00\x44\x22\xb8\xfb\x9f\xa4\x65\x49\xb7\xa5\x99\
\x9d\x9d\x0b\x7a\x00\x90\x01\x20\xd8\x93\x22\xd5\x9a\x22\x1a\x8d\
\x3a\x2b\x24\x5d\xb5\xb6\x74\xca\x00\x20\x03\xc0\xe6\x4f\xf2\x9e\
\xfd\x4b\x5a\x6e\x00\x48\x07\xfd\x10\x0f\x0e\x0e\x0d\x27\x72\xd9\
\x4c\xc9\xd1\x36\x00\x30\x38\x34\x9c\x02\x76\xf8\x8b\x2c\x29\xec\
\x52\xa9\x14\x91\x48\x84\x5a\x70\x37\x04\x48\x00\xfb\x80\x23\x8e\
\xb6\x01\x00\x60\x0f\x01\x7c\x02\xc0\x00\x20\x69\xb9\xa2\xd1\x08\
\xe9\x54\x8a\xfc\x42\xa0\x1f\x07\xdc\x6b\x00\x30\x00\x5c\x3c\x19\
\x02\x25\x99\x4c\x90\x48\xf8\xfc\xbf\xa4\xe5\x4b\xb7\x85\x22\x00\
\xc8\x00\xf0\xe4\x0a\x40\xa0\xa4\x5a\x5b\x9d\x0d\x92\xfc\xfe\x30\
\x00\x18\x00\xc2\x16\x00\x5a\x0d\x00\x92\x0c\x00\xa1\xf9\xce\x97\
\x97\x00\xbe\xf1\x0b\x9c\x6a\x71\x36\x48\xba\x26\x2d\x2d\xc9\xa0\
\xdf\x08\xe8\x0a\x80\x01\x20\xb8\x93\xc1\x15\x00\x49\xd7\x2a\x12\
\x89\xd0\xda\xd2\xc2\xe2\xd2\x92\x01\x40\x81\x0f\x00\x81\x5a\x0e\
\x8a\x46\xa3\x24\x13\x09\x67\x83\xa4\x15\x9c\x44\x04\x3a\x00\xec\
\x1a\x1c\x1a\x8e\xe5\xb2\x99\x8a\x23\x1d\xe2\x00\x30\x38\x34\x1c\
\x05\x76\x05\xed\x17\x37\x12\x89\x38\x1b\x24\xad\xe0\x7b\xa4\x15\
\x98\x09\xea\xe1\x25\xa8\xef\xfd\x72\xda\x91\x0e\xf7\x0a\x40\x5f\
\x63\x32\x04\xe7\x17\xb7\xc5\xeb\xff\x92\x56\x26\xd5\x1a\xf8\xef\
\x11\x03\x80\x01\x80\xde\xa0\x15\x21\x99\x4c\x3a\x13\x24\xf9\x3d\
\x72\x65\x3d\x8e\xb2\x01\xa0\x27\x78\xbf\xb8\x5e\xff\x97\xe4\xf7\
\x88\x01\xc0\x00\x10\xc2\x15\x00\x03\x80\xa4\x95\x89\x44\x22\x24\
\x12\x71\x4a\xa5\x72\x50\x0f\xb1\xd7\x51\x36\x00\x04\x2f\x00\x24\
\xbc\x04\x20\x69\x35\x4e\x26\x92\x41\x0e\x00\xae\x00\x18\x00\x82\
\x15\x00\x22\x91\x08\xf1\x78\xcc\x99\x20\x69\x15\x4e\x26\x12\xe4\
\x83\x7b\x78\x06\x00\x03\x40\xb0\x26\x41\x32\x99\xf0\x11\x40\x49\
\xab\xf6\x7d\x12\x60\x06\x00\x03\x40\xb0\x56\x00\xdc\x00\x48\xd2\
\xea\x7d\x9f\x04\xfa\x72\xa2\xf7\x00\x18\x00\x82\x95\x02\x63\x71\
\x5f\x01\x2c\x69\x95\xbe\x50\x83\x7d\x39\xd1\x15\x00\x03\x00\xdd\
\x81\x2a\x40\xcc\xeb\xff\x92\x56\xeb\x84\x22\xd0\xdf\x27\x5d\x8e\
\xb0\x01\x20\x50\x6b\x5c\x06\x00\x49\x7e\x9f\x84\xef\xbb\x5f\xd7\
\x16\x00\x02\xb5\xdf\x65\x2c\xe4\x4f\x00\xfc\xf7\xbf\xff\x7b\x7f\
\x0b\xb4\xaa\x5e\xfa\xfc\xe7\xb3\x7b\xfb\xf6\x70\xae\x00\xc4\x02\
\x7d\x49\xd1\x3d\xd3\x0d\x00\xae\x00\x48\xd2\xa5\x03\x40\xd4\x15\
\x00\x19\x00\x5c\x01\x90\x14\x36\x91\x48\x84\x58\x2c\x46\xa5\x12\
\xc8\xb7\xe6\x1a\x00\x0c\x00\x01\x0b\x00\x31\x9f\x02\x90\xb4\x8a\
\x5f\xaa\x06\x00\x19\x00\x36\x87\xa8\x9b\x00\x49\x5a\xcd\x55\x80\
\x68\x60\xbf\x53\x0c\x00\x06\x80\x60\x4d\x02\x77\x01\x94\xe4\x77\
\xca\xd5\x9d\x2f\x0d\x0e\x0d\xc7\x72\xd9\x4c\xc5\x51\x36\x00\x98\
\xd6\x25\x29\x5c\x27\x15\x2d\xc0\x82\xa3\x1c\xde\x00\x10\xa8\x8b\
\xe6\x5e\x02\x90\x64\x00\x08\xe7\xf7\xbf\x01\x60\xf9\xca\xfe\xb2\
\x4a\x52\x28\x4f\x2a\x4a\x8e\x70\xb8\x03\x40\xd1\x00\x20\x49\xa1\
\xfc\x4e\x29\x3a\xc2\x06\x00\x7f\x59\x25\x29\x5c\xdf\x29\x15\x6f\
\x00\x34\x00\x14\x2c\x9b\x24\x5d\x5a\xad\x56\xf3\xec\x5f\xae\x00\
\x6c\x06\xd5\x6a\x8d\x58\xcc\x55\x00\x49\x06\x00\x03\x80\x01\x20\
\x54\x93\xa0\x56\xab\x02\x51\x67\x82\x24\x03\x80\x01\xc0\x00\x10\
\xae\x00\x50\x73\x16\x48\xf2\x3b\xc5\x00\x60\x00\x30\x00\x48\xd2\
\xb5\xab\x1a\x00\x14\xe0\x00\x50\xf0\x97\x55\x92\x42\x77\x52\xe1\
\x0d\xe0\x06\x00\xa6\x03\xf5\xcb\x5a\x35\x00\x48\x32\x00\x5c\x85\
\x19\x47\xd7\x00\x30\x11\xa4\x02\x54\xaa\x3e\xd6\x2a\x69\x15\xbf\
\x53\x2a\xd5\xa0\x1e\xda\x84\xa3\x6b\x00\x98\x0c\xd4\x2f\x6b\xd9\
\x00\x20\x69\x35\x03\x40\x60\xbf\x53\x26\x1d\x5d\x03\x40\xa0\x52\
\x60\xb9\x62\x00\x90\xb4\x4a\xcd\xbf\x5a\x0d\xf2\x25\x00\x03\x80\
\x01\x20\x60\x2b\x00\x21\x0f\x00\x2f\x7d\xfe\xf3\xfd\x2d\xd0\xaa\
\xea\xdd\xb2\x25\xbc\x01\xa0\x5c\x0e\xf2\xe1\x19\x00\x0c\x00\x01\
\x5b\x01\x08\xf9\x25\x80\xdd\xdb\xb7\xfb\x5b\x20\xad\xd6\xf7\x49\
\xb0\x4f\x28\x0c\x00\x06\x80\x80\xdd\x04\xe8\x25\x00\x49\xab\xb6\
\x02\x10\xe8\xef\x13\x6f\x02\x34\x00\x04\x6d\x05\xa0\xec\x2c\x90\
\xe4\x0a\x80\x2b\x00\x06\x80\xb0\x4d\x82\x92\x01\x40\xd2\x6a\x7d\
\x9f\x94\x4a\xae\x00\x28\xd0\x01\x60\x9c\xfa\x96\x90\xc9\x20\x14\
\xa0\x58\x2c\x39\x0b\x24\xf9\x7d\xf2\xcc\xce\x39\xc2\x21\x0f\x00\
\xb9\x6c\xa6\x3a\x38\x34\x7c\x1a\xb8\x2e\x08\x05\xa8\x54\x2a\x54\
\x2a\x15\x62\xb1\x98\xb3\x41\x92\x01\xe0\x32\x87\x06\x8c\x38\xc2\
\xae\x00\x00\x9c\x0c\x4a\x00\x00\x28\x96\x4a\xa4\x0c\x00\x92\x56\
\xfc\x5d\x12\xd8\xf7\xe5\x9c\xce\x65\x33\x55\x47\xd8\x00\x00\x70\
\x2a\x68\xa9\x3d\xd5\xda\xea\x6c\x90\x74\xcd\x6a\xb5\x5a\x90\x57\
\x00\x4e\x3a\xc2\x06\x80\x80\x06\x00\xdf\x72\x29\x69\x65\xca\xe5\
\x72\x90\x77\x01\x34\x00\x18\x00\x82\x39\x19\x8a\x25\x6f\x04\x94\
\xb4\xd2\x13\x89\x40\x7f\x8f\x18\x00\x0c\x00\xc1\x9c\x0c\x85\x25\
\x5f\x73\x2d\x69\x65\x96\x0a\x81\xfe\x1e\x31\x00\x18\x00\x9e\x14\
\xa8\x4b\x00\x8b\x06\x00\x49\x2b\x0d\x00\x4b\x06\x00\x85\x27\x00\
\xd4\x80\x48\x10\x8a\x50\x2e\x97\x29\x97\xcb\xc4\xe3\x71\x67\x84\
\xa4\x6b\x3c\x91\x58\x32\x00\x28\xf8\x01\x20\x97\xcd\x14\x1a\x7b\
\x01\xec\x09\x52\x7a\x6f\x6f\x37\x00\x48\x72\x05\xe0\x29\x0a\x04\
\x6c\xd5\x57\x2b\x5b\x01\x00\x78\x28\x48\x01\x60\x71\x69\x89\xf6\
\xf6\x36\x67\x84\xa4\x65\x2b\x95\x4a\x41\x7e\xb1\xd8\xa3\xb9\x6c\
\xc6\x3d\xd3\x0d\x00\xdf\xe4\x10\xf0\x5d\xa6\x77\x49\x61\x17\xf0\
\xfb\x88\x1e\x76\x84\x0d\x00\x81\x9e\x14\x01\xbf\x7e\x27\x69\x4d\
\x4f\x20\x02\xfd\xfd\x71\xc8\x11\x36\x00\x04\x3a\x00\x2c\x2d\x2d\
\x51\xad\x56\x89\x46\xa3\xce\x0a\x49\xcb\x92\x5f\x58\x74\x05\x40\
\xa1\x0a\x00\x87\x80\x2a\x10\x88\x8e\x59\xab\xc1\xc2\xc2\xa2\xf7\
\x01\x48\x5a\xb6\x85\xfc\x82\x01\x40\xe1\x09\x00\xb9\x6c\x26\x3f\
\x38\x34\x7c\x12\xd8\x1f\xa4\x14\x6f\x00\x90\xb4\x1c\x4b\x85\x02\
\xe5\xe0\xde\x00\xb8\x04\x1c\x75\x94\x0d\x00\x97\x4b\x86\x01\x0a\
\x00\x0b\xce\x08\x49\xcb\x3c\xfb\x0f\xf4\xf2\xff\xe1\x5c\x36\x53\
\x71\x94\x0d\x00\x97\x0b\x00\xdf\x13\x98\x5f\xe4\x85\x05\x6a\xb5\
\x1a\x91\x48\xc4\x99\x21\xc9\x13\x07\x97\xff\x0d\x00\x57\xf0\xf5\
\x20\x15\xa3\x52\xa9\x52\x28\x14\x69\x6d\x6d\x71\x66\x48\x32\x00\
\x04\xec\x3b\x5e\xab\x1b\x00\x86\x83\x56\x90\xf9\x7c\xde\x00\x20\
\xe9\xaa\x94\xcb\x65\x0a\x85\x40\xbf\x4e\x7c\xd8\x51\x36\x00\x5c\
\x52\x2e\x9b\x39\x39\x38\x34\x3c\x0a\x6c\x0b\x4a\x41\xe6\xe6\xf2\
\x6c\xed\xed\x71\x66\x48\x7a\x46\xb3\x73\xf3\x41\x3e\xbc\x22\xf0\
\x15\x47\xd9\x00\xf0\x4c\x09\xf1\x07\x82\xb4\x02\x50\xad\xd6\x88\
\x46\xbd\x0f\x40\xd2\x33\x9d\x30\x04\x3a\x00\xdc\x9f\xcb\x66\xdc\
\x21\xcd\x00\x70\x45\x5f\x0a\x52\x00\xa8\x56\xab\xe4\x17\x16\xe8\
\xf0\x71\x40\x49\x57\x50\xab\xd5\x98\x9b\xcf\x07\xf9\x10\xbf\xe8\
\x28\x1b\x00\xae\x66\x05\x20\x60\xa9\x7e\xce\x00\x20\xe9\x8a\x16\
\x16\x17\x83\xfc\x02\x20\x03\x80\x01\xe0\xaa\x7c\x19\x28\xaf\xd2\
\x9f\xd5\x14\x66\xe7\xf2\xec\xd8\xee\xe4\x90\x74\xa5\x13\x85\xf9\
\xa0\x1f\xa2\x01\x20\xe0\x56\xe5\x42\xf7\xe0\xd0\xf0\x57\x80\xe7\
\x07\xa9\x30\xcf\xbe\xf1\x20\xc9\x64\xc2\x19\x22\xe9\x92\x1e\x7b\
\xfc\x38\x8b\x8b\x81\xdd\x04\xe8\x7c\x2e\x9b\x19\x70\x94\x5d\x01\
\xb8\xda\xa4\x18\xa8\x00\x30\x33\x3b\x4b\xdf\xd6\x5e\x67\x88\xa4\
\xa7\x29\x96\x4a\x41\x6e\xfe\x9e\xfd\x1b\x00\x96\x65\x08\x78\x63\
\x90\x0a\x33\x3d\x63\x00\x90\x74\x99\x13\x84\x99\xd9\xa0\x1f\xe2\
\x90\xa3\x6c\x00\xb8\x5a\x83\x04\xe8\xcd\x80\x50\x7f\x33\x60\xb1\
\x58\xf2\x32\x80\xa4\xa7\x9f\x20\x4c\x07\x3e\x00\xdc\xe7\x28\x1b\
\x00\xae\x4a\x2e\x9b\xb9\x30\x38\x34\x7c\x3f\xf0\xbc\x60\xad\x02\
\xcc\xd0\xdf\xb7\xd5\x59\x22\xe9\x49\xc5\x62\x89\x85\x60\x2f\xff\
\x9f\x07\x1e\x70\xa4\x0d\x00\xcb\xf1\xd9\xe0\x05\x80\x59\x03\x80\
\xa4\xa7\x9d\x18\x04\xdc\x67\x73\xd9\x4c\xcd\x91\x36\x00\x2c\xc7\
\x7d\xc0\xdb\x83\x54\x9c\xc5\xc5\x25\x0a\x85\x22\x2d\x2d\x49\x67\
\x8a\xa4\x27\x4f\x0c\x82\x1e\x00\x1c\x65\x03\xc0\x72\x0d\x01\x8b\
\x40\x2a\x68\x69\x7f\xa0\xbf\xcf\x99\x22\x89\x42\xa1\xc8\xe2\x62\
\xa0\x77\xc7\xad\xe1\xf5\xff\xd0\x58\xd5\x0d\xef\x07\x87\x86\xff\
\x19\xb8\x35\x48\x05\x4a\x26\x13\x3c\xeb\x86\xeb\x89\x44\x7c\x37\
\x80\x14\x76\xe7\x46\xc7\xb8\x70\x61\x22\xc8\x87\xf8\x48\x2e\x9b\
\xb9\xc9\x91\x76\x05\xe0\x5a\x7c\x36\x68\x01\xa0\x58\x2c\x31\x9f\
\xcf\xd3\xd1\xde\xee\x6c\x91\x42\xac\x56\xab\x31\x35\x35\x1d\xf4\
\xc3\x74\xf9\xdf\x00\x70\xcd\xee\x03\xde\x1b\xb4\x22\x4d\x4e\x4e\
\x1b\x00\xa4\x90\x9b\x99\x9d\xa3\x5c\xae\x04\xfd\x30\x5d\xfe\x37\
\x00\x5c\xb3\xaf\x03\x67\x81\x9d\xc1\xfb\xc5\x2f\x13\x8f\xc7\x9d\
\x31\x52\x48\x4d\x4e\x4e\x05\xfd\x10\x17\x81\x7f\x71\xa4\x0d\x00\
\xd7\x24\x97\xcd\xd4\x06\x87\x86\xff\x0a\x78\x53\x90\x8a\x54\xab\
\xd5\x98\x9a\x9e\x71\x67\x40\x29\xa4\x8a\xc5\x62\xd0\x5f\xfd\x0b\
\xf0\x4f\xb9\x6c\x26\xef\x68\x1b\x00\x56\xe2\x2f\x83\x16\x00\x00\
\x26\x26\xa7\xd8\xda\xdb\x8b\xf7\x02\x4a\xe1\x33\x11\xfc\x6b\xff\
\x4f\x7c\x77\xcb\x00\xb0\x22\x43\xc0\x05\x20\x50\xcf\xce\x15\x0a\
\x45\xe6\xe6\xe7\xe9\xec\xf0\x5e\x00\x29\x4c\xaa\xd5\x2a\x13\x13\
\x81\x5f\xfe\x2f\x02\x7f\xeb\x68\x1b\x00\x56\x24\x97\xcd\x54\x06\
\x87\x86\x3f\x03\xfc\x78\xd0\x8a\x75\x61\x7c\xc2\x00\x20\x85\xcc\
\xd4\xf4\x0c\x95\x4a\xe0\x6f\xfe\x1b\xcc\x65\x33\x33\x8e\xb6\x01\
\x60\x35\xfc\x65\x10\x03\xc0\xfc\x7c\x9e\xc5\xc5\x25\x52\xa9\x56\
\x67\x8e\x14\x02\xb5\x5a\x2d\xe8\xcf\xfd\x3f\xe1\xd3\x8e\xb6\x01\
\x60\xd5\xd2\x24\x30\x0d\x74\x07\xad\x60\xe7\xc7\x27\xd8\xbb\x7b\
\xa7\x33\x47\x0a\x81\xd9\xb9\x79\x0a\xc5\x62\xd0\x0f\xb3\x0c\x7c\
\xc6\xd1\x0e\x9f\x35\xbb\xa5\x6d\x70\x68\xf8\x63\xc0\x30\x02\x67\
\x31\x00\x00\x19\xa7\x49\x44\x41\x54\x6b\x03\x57\xb0\x08\x3c\xeb\
\xc6\x83\x24\x13\xbe\x26\x58\x0a\xba\xc7\x8f\x1e\x27\xbf\xb0\x18\
\xf4\xc3\xfc\x5c\x2e\x9b\xf9\x76\x47\xdb\x15\x80\xd5\xf4\xe9\x20\
\x06\x80\x5a\x0d\xc6\xc7\x27\xd9\xb1\x7d\xc0\xd9\x23\x05\x58\x7e\
\x61\x21\x0c\xcd\x1f\xbc\xfb\xdf\x00\xb0\x06\xfe\x07\x30\x09\xf4\
\x04\xad\x68\x13\x93\x53\xf4\xf7\xf5\xba\x31\x90\x14\x60\x63\x63\
\xe3\x61\x38\xcc\x12\xf0\x17\x8e\x76\x38\xad\xe9\x53\xed\x83\x43\
\xc3\xf7\x12\xc0\x3d\x01\x00\xfa\xb6\xf6\xba\x0a\x20\x05\xf5\xec\
\x3f\xbf\xc0\xe3\xc7\x4e\x84\xe1\x50\xff\x3a\x97\xcd\xfc\x80\x23\
\xee\x0a\xc0\x5a\xf8\x70\x50\x03\xc0\xf8\xc4\x24\x7d\x5b\x7b\x49\
\x24\x5c\x05\x90\x82\x66\x74\xec\x42\x58\x0e\xf5\xc3\x8e\xb6\x2b\
\x00\x6b\xb9\x0a\x70\x3f\xf0\xad\x41\x2c\xde\xd6\xde\x2d\xec\xdc\
\xb1\xdd\x59\x24\x05\xc8\xfc\x7c\x9e\xa3\xc7\x4f\x86\xe1\x50\xc7\
\x80\x5d\xb9\x6c\xa6\xec\xa8\xbb\x02\xb0\x96\x09\xf3\x7d\x41\x2c\
\xde\xc4\xe4\x34\x7d\x7d\x5b\x7d\x22\x40\xf2\xec\x7f\x33\xfa\xb8\
\xcd\xdf\x00\xb0\xd6\x3e\x41\xfd\x15\xc1\xc9\xa0\x15\xaf\x56\xab\
\x31\x36\x36\xce\xee\x5d\xae\x02\x48\x41\x30\x37\x37\x4f\x7e\x61\
\x21\x2c\x87\xeb\xf2\x7f\xc8\xad\xcb\xab\x6d\x06\x87\x86\x3f\x0d\
\x04\xf6\x46\x93\x1b\x0f\x5e\x47\x6b\x6b\x8b\xb3\x49\xda\xe4\x81\
\xfe\xb1\xc7\x8f\xb1\xb4\x54\x08\xc3\xe1\xfe\xef\x5c\x36\xf3\x22\
\x47\xdd\x15\x80\xf5\x4a\x9a\x81\x0d\x00\x67\x47\x46\xb9\x6e\xff\
\x5e\x67\x93\xb4\x89\x4d\x4e\x4d\x87\xa5\xf9\x7b\xf6\xaf\x75\x0d\
\x00\xff\x03\x18\x01\x02\xb9\x56\x3e\x3f\x9f\x67\x66\x76\x8e\xae\
\xce\x0e\x67\x94\xb4\x09\x55\x2a\x15\x46\x47\xcf\x87\xe5\x70\x17\
\x81\x3f\x73\xd4\xb5\x2e\x01\x20\x97\xcd\x94\x07\x87\x86\x3f\x04\
\xfc\x5a\x50\x0b\x79\x6e\x64\x8c\x8e\x8e\x76\xa2\x91\x88\xb3\x4a\
\xda\x64\xc6\xce\x8f\x53\x0e\xfe\x1b\xff\x9e\xf0\xf1\x5c\x36\x33\
\xed\xa8\x6b\x3d\x1f\x62\xff\x10\xf0\x0b\x40\x20\x2f\x96\x17\x8b\
\x45\xc6\xc7\x27\xe8\xef\xdb\xea\xac\x92\x36\x91\x42\xa1\xc8\xf8\
\xc4\x64\x58\x0e\xb7\x06\xdc\xe3\xa8\x0b\xd6\xe9\x26\xc0\x27\x0c\
\x0e\x0d\x7f\x18\xb8\x33\xa8\xc5\x8c\x46\xa3\x3c\xeb\x86\xeb\xdd\
\x1c\x48\xda\x44\x8e\x9f\x38\xc5\xec\xdc\x7c\x58\x0e\xf7\xb3\xb9\
\x6c\xe6\x56\x47\x5d\xeb\xbd\x02\x00\xf0\xfe\x20\x07\x80\x6a\xb5\
\xca\xd9\x73\x23\xec\xdb\xbb\xdb\x99\x25\x6d\x02\xd3\x33\xb3\x61\
\x6a\xfe\x4f\x7c\x07\x4b\xeb\xbf\x02\xd0\x58\x05\xf8\x3c\xf0\xf2\
\x20\x17\x75\xdf\xde\xdd\xde\x10\x28\x35\xb9\x4a\xa5\xc2\xe1\xc7\
\x8e\x52\x2e\x87\x66\x2f\x9c\x23\xc0\x8d\xb9\x6c\xa6\xe6\xe8\x6b\
\x23\x56\x00\x9e\x48\xa0\x81\x0e\x00\x67\xcf\x8e\xd0\xde\x96\x26\
\x16\x8b\x39\xc3\xa4\x26\x75\x6e\x64\x2c\x4c\xcd\x1f\xe0\x5e\x9b\
\xbf\x36\x3a\x00\xfc\x0d\x70\x1c\xd8\x1f\xd4\xa2\x96\xca\x65\x46\
\x46\xcf\xb3\x6b\xa7\x3b\x04\x4a\xcd\x68\x7e\x3e\xcf\xe4\x54\xa8\
\x6e\x84\x9f\x01\x3e\xe2\xc8\xeb\x62\x1b\xf2\xcc\xda\xe0\xd0\xf0\
\xcf\x00\xbf\x15\xf4\xe2\x5e\x77\x60\x1f\xed\x6d\x69\x67\x99\xd4\
\x44\xaa\xd5\x2a\x8f\x1e\x39\x46\xb1\x58\x0c\xd3\x61\xbf\x2f\x97\
\xcd\xfc\x8c\xa3\xaf\x8d\x5e\x01\x00\xf8\x23\xe0\x17\x81\x2d\x41\
\x2e\xee\xe9\x33\xe7\xb8\xf1\xe0\x01\xa2\xd1\xa8\x33\x4d\x6a\x12\
\xa3\x63\xe7\xc3\xd6\xfc\x8b\x78\xf3\x9f\x9a\x65\x05\xa0\xb1\x0a\
\xf0\x2b\xc0\xaf\x06\xbd\xc0\x3d\x5b\xba\xd9\xbd\x6b\x87\x33\x4d\
\x6a\x02\x73\x73\xf3\x1c\x3b\x71\x2a\x6c\x87\xfd\x47\xb9\x6c\xe6\
\x27\x1c\x7d\x35\xcb\x0a\x00\x8d\x44\xfa\x5f\x80\xae\x20\x17\x78\
\x72\x6a\x9a\xce\x8e\x76\xba\xba\x3a\x9d\x6d\xd2\x06\x2a\x97\xcb\
\x9c\x3a\x73\x2e\x6c\x87\x5d\x02\xde\xe3\xe8\xab\xa9\x56\x00\x1a\
\xab\x00\xff\x15\xf8\xa5\xa0\x17\x39\x16\x8b\x71\xe3\xc1\x03\x24\
\x12\x09\x67\x9c\xb4\x41\x8e\x9f\x38\xcd\xec\xdc\x5c\xd8\x0e\xfb\
\xc3\xb9\x6c\xe6\xc7\x1c\x7d\x35\xdb\x0a\x00\xc0\xfb\x80\xb7\x00\
\x81\x3e\x3d\xae\x54\x2a\x9c\x3a\x73\x8e\x03\xfb\xf6\x10\xf1\x5d\
\x01\xd2\xba\x9b\x98\x98\x0a\x63\xf3\x2f\x03\xef\x76\xf4\xd5\x94\
\x2b\x00\x8d\x55\x80\x77\x53\x7f\x47\x40\xe0\x6d\xdf\xd6\xef\xbb\
\x02\xa4\x75\xb6\xb4\x54\xe0\xb1\xc7\x8f\x51\xab\x85\xee\x11\xf8\
\x8f\xe5\xb2\x99\xd7\x39\x03\xd4\xac\x2b\x00\x00\xbf\x0d\xbc\x19\
\x08\xfc\xd6\x79\x23\xa3\xe7\x49\xa7\xd3\x3e\x1a\x28\xad\x93\x4a\
\xa5\xc2\x89\x53\xa7\xc3\xd8\xfc\x2b\x9e\xfd\xab\xe9\x57\x00\x1a\
\xab\x00\x77\x03\xef\x0c\x45\xe2\x8a\xc7\xb8\xe1\x7a\xef\x07\x90\
\xd6\x5a\xad\x06\x27\x4f\x9d\x66\x66\x76\x2e\x8c\x87\xff\xf1\x5c\
\x36\xf3\x5a\x67\x81\x9a\x7d\x05\x00\xe0\x37\x81\x37\x86\x61\x15\
\xa0\x5c\xae\x70\xe2\xd4\x19\xae\x3f\xb0\xcf\xfb\x01\xa4\x35\x74\
\x61\x7c\x3c\xac\xcd\xbf\x0c\xfc\xba\x33\x40\x9b\x62\x05\xa0\xb1\
\x0a\xf0\x8b\xc0\xff\x1d\x96\xc2\xf7\xf6\x6c\x71\xab\x60\x69\x8d\
\xcc\xcf\xe7\x39\x7a\xfc\x64\x58\x0f\xff\x43\xb9\x6c\xe6\x0d\xce\
\x02\x6d\x96\x15\x00\xa8\x6f\x0d\xfc\x7a\x60\x57\x18\x0a\x3f\x31\
\x39\x45\x3a\x9d\xa2\x67\x4b\xb7\xb3\x50\x5a\x45\xc5\x62\x89\x13\
\xa7\xce\x84\xf5\xf0\x67\x81\x5f\x71\x16\x68\x53\xad\x00\x34\x56\
\x01\x7e\x14\xf8\x68\x68\x8a\x1f\x89\x70\x60\xff\x5e\x6f\x0a\x94\
\x56\x49\xa5\x52\xe1\xf1\x63\x27\x58\x5a\x2a\x84\xb5\x04\x3f\x9f\
\xcb\x66\xee\x76\x26\x68\xb3\xad\x00\x00\xfc\x09\xf5\x7d\x01\x9e\
\x1f\x86\xe2\xd7\x6a\x35\x4e\x9c\x3c\xcd\xc1\xeb\xf6\xd3\xd2\x92\
\x74\x36\x4a\x2b\xfc\x7d\x3a\x79\xea\x6c\x98\x9b\xff\x49\xe0\x77\
\x9c\x09\xda\x94\x2b\x00\x8d\x55\x80\x6f\x03\x3e\x17\xa6\x41\x48\
\x26\x13\x1c\xbc\x6e\x3f\xf1\x78\xdc\x19\x29\x5d\xa3\xd3\x67\xce\
\x85\xed\x15\xbf\x4f\x75\x5b\x2e\x9b\xf9\x33\x67\x82\x36\x6d\x00\
\x68\x84\x80\xcf\x00\xdf\x17\xa6\x81\x48\xa7\x53\x5c\xb7\x7f\xaf\
\x6f\x0e\x94\xae\xc1\xd8\xf9\x71\x46\xc7\xce\x87\xb9\x04\x5f\x02\
\x32\xb9\x6c\xa6\xe6\x6c\xd0\xd5\x6a\xd6\x53\xce\x77\x00\xdf\x09\
\x84\xe6\x61\xf9\x85\x85\x45\x4e\x9f\x39\xc7\x9e\xdd\x3b\x7d\x3c\
\x50\x5a\x86\xe9\xe9\x99\xb0\x37\xff\x1a\xf0\xb3\x36\x7f\x05\x62\
\x05\xa0\xb1\x0a\x70\x0f\xf5\x1d\x02\x43\xc5\xc7\x03\xa5\xab\x37\
\x37\x37\xcf\xf1\x93\xa1\xdc\xe9\xef\x62\x9f\xcc\x65\x33\xff\xc9\
\xd9\xa0\xa0\xac\x00\x00\xfc\x32\xf0\x1a\x60\x5b\x98\x06\x64\x62\
\x72\x8a\x68\x34\xca\x8e\xed\x03\xce\x4e\xe9\x0a\xe6\xf3\x79\x9b\
\x3f\xcc\xd5\x6a\xb5\x9f\x75\x36\x28\x50\x2b\x00\x8d\x55\x80\x1f\
\x06\x42\x79\x53\xcb\x40\x7f\x1f\xdb\x06\xfa\x9c\xa1\xd2\x25\xe4\
\x17\x16\x39\x76\xfc\x24\xd5\x6a\x35\xd4\x75\xa8\xd5\x6a\x3f\x73\
\xcb\xcb\x5e\xfa\x3e\x67\x84\x02\x17\x00\x1a\x21\xe0\x1f\xa8\xdf\
\x0f\x10\x3a\xdb\xb7\x0d\xd0\xdf\xd7\xeb\x2c\x95\x2e\xb2\xb8\xb8\
\xc4\xd1\xe3\x27\xa8\x54\xaa\x61\x2f\xc5\x57\x0a\x85\xc2\x8b\xbf\
\xeb\x96\x6f\xab\x38\x2b\x74\x2d\x36\xc3\x73\x67\x6f\x04\x1e\x02\
\xda\xc2\x36\x38\x23\xa3\x63\x44\xa3\x51\xb6\xf6\x6e\x71\xa6\x4a\
\xc0\x52\xa1\xc0\xb1\xe3\x27\x6d\xfe\x50\x59\x2a\x14\x5e\xff\xdd\
\x36\x7f\x05\x79\x05\xa0\xb1\x0a\xf0\x76\xe0\x37\xc2\x3a\x48\x3b\
\xb6\x0f\xd0\xb7\xd5\x95\x00\x79\xe6\x7f\xec\xf8\x49\xca\x15\x7b\
\xde\xf4\xec\xcc\xdf\xfd\xe0\x77\x7f\xc7\xf7\x3a\x2b\x14\x86\x00\
\x10\x07\xbe\x0c\x3c\x37\xac\x03\xb5\x6d\xa0\x8f\x81\x7e\xef\x09\
\x50\x38\xe5\x17\x16\x39\x7e\xc2\x33\x7f\x80\x42\xa1\xc0\x97\x1f\
\xfc\x7a\x2d\x95\x4a\xbf\xf5\xed\x3f\xf5\x93\xf7\x38\x3b\x14\xe8\
\x00\xd0\x08\x01\x2f\x02\xfe\x17\x10\x0b\xeb\x60\xf5\xf7\xf5\xb2\
\x7d\x9b\x4f\x07\x28\x5c\xe6\xf3\x79\x8e\x9f\x38\x1d\xfa\x1b\xfe\
\x9e\xf0\xf0\x63\x87\x99\x98\x9a\x04\xa8\xb5\xa6\x52\x6f\xfd\xf9\
\xbb\xde\x68\x08\x50\xb0\x03\x40\x23\x04\xdc\x0b\xbc\x29\xcc\x03\
\xd6\xdb\xdb\xc3\xce\xed\x03\x6e\x16\xa4\x50\xf0\x39\xff\x6f\x36\
\x3e\x39\xc1\xa1\x23\x8f\x5e\xfc\x1f\xd5\x92\x2d\x2d\x6f\x7d\xd7\
\x9b\xdf\x64\x08\x50\xe0\x03\x40\x3b\xf0\x35\xe0\xfa\x30\x0f\xda\
\x96\xee\x2e\x76\xef\xda\x61\x08\x50\xa0\x4d\x4f\xcf\x70\xea\xcc\
\x39\x9b\x7f\x43\xa9\x54\xe2\x2b\x0f\x7e\x9d\x62\xa9\xf4\xd4\xff\
\xaa\x96\x48\x26\xdf\xfa\x8b\x3f\xfd\x66\x43\x80\x82\x1b\x00\x1a\
\x21\x20\x03\xfc\x2b\x9b\xe3\x09\x86\x35\xd3\xde\x96\x66\xdf\xde\
\xdd\xc4\x62\x31\x67\xb1\x02\xc7\xbd\xfd\x9f\xee\xa2\xa5\xff\x4b\
\x31\x04\x28\xf8\x01\xa0\x11\x02\xfe\x2b\xf0\x4b\x61\x1f\xbc\x96\
\x96\x16\x0e\xec\xdb\x4d\x32\xe9\xab\x84\x15\x0c\xb5\x5a\x8d\x33\
\x67\x47\xc2\xfe\x56\xbf\xa7\x19\xbd\x30\xc6\x63\xc7\x8e\x3e\x63\
\xf9\x0c\x01\x0a\x43\x00\x88\x53\xbf\x21\xf0\x85\x61\x1f\xc0\x78\
\x3c\xc6\xfe\xbd\x7b\x48\xa7\x53\xce\x66\x6d\x6a\x95\x4a\x85\x93\
\xa7\xce\x32\x37\x3f\x6f\x31\x2e\xb2\xb8\xb4\xc4\x57\x1f\xbc\x9f\
\x4a\xf5\xaa\x1e\x7f\x34\x04\x28\xd8\x01\xa0\x11\x02\x6e\x00\xbe\
\x4a\x08\x37\x08\x7a\xaa\x68\x24\xc2\x9e\xdd\x3b\xe9\xea\xea\x74\
\x46\x6b\x53\x2a\x16\x4b\x1c\x3f\x79\x8a\xa5\xa5\x82\xc5\xb8\xb8\
\x9b\xd7\x6a\xdc\xff\xc8\x43\xcc\xce\xcd\x2d\xeb\x7f\x66\x08\x50\
\xa0\x03\x40\x23\x04\xbc\x01\xf8\x3d\x87\xb1\xae\xbf\x6f\x2b\xdb\
\x06\xfa\xbc\x39\x50\x9b\xca\xfc\x7c\x9e\x13\xa7\xce\x50\x71\x83\
\x9f\xa7\x39\x75\xf6\x0c\x27\xce\x9c\xba\xa6\xec\x60\x08\x50\xa0\
\x03\x40\x23\x04\xfc\x3d\xf0\x5d\x0e\x65\x5d\x47\x7b\x1b\x7b\x76\
\xef\x22\x1e\xf7\xe6\x40\x35\xfb\xd9\x2d\x5c\x18\x1f\x67\x64\xd4\
\x9b\xfd\x2e\x65\x2e\x3f\xcf\xd7\x1f\x7e\x70\x25\x4f\x41\x18\x02\
\x14\xf8\x00\xb0\x0d\x78\x00\x70\x9b\xbc\x86\x44\x22\xc1\xbe\xbd\
\xbb\x48\xa7\xbc\x2f\x40\xcd\xa9\x52\xa9\x70\xfa\xcc\x39\x66\x66\
\xe7\x2c\xc6\xa5\xea\x53\xad\xf0\xb5\x07\x1f\x60\x61\x69\x71\xc5\
\x39\xcb\x10\xa0\xc0\x06\x80\x46\x08\xb8\x05\xf8\x47\x42\xbc\x4b\
\xe0\xd3\x06\x36\x12\x61\xd7\xce\x6d\xf4\x6c\xf1\x45\x42\x6a\x2e\
\x4b\x4b\x05\x4e\x9c\x3a\x4d\xa1\x50\xb4\x18\x97\x71\xf8\xe8\x11\
\xce\x8f\x5f\x58\xad\x3f\xce\x10\xa0\xe0\x06\x80\x46\x08\xf8\x05\
\xe0\xdd\x0e\xe9\x37\xeb\xee\xea\x64\xd7\xce\xed\xee\x17\xa0\xa6\
\x30\x31\x31\xc5\xd9\x91\x51\x37\xf7\xb9\x82\x73\x63\xa3\x3c\x7e\
\xe2\xd8\x6a\xff\xb1\x86\x00\x05\x3a\x00\x44\x80\xcf\x00\xbe\x21\
\xeb\x29\x12\x89\x04\x7b\x76\xef\xa4\xbd\x2d\x6d\x31\xb4\x21\xca\
\xe5\x32\xa7\xcf\x8c\x2c\xf7\x6e\xf6\xd0\x99\x9d\x9f\xe3\xfe\x43\
\x0f\xad\x55\x40\x32\x04\x28\x98\x01\xa0\x11\x02\xba\xa9\xbf\x35\
\xf0\x3a\x87\xf6\xe9\xfa\xfb\xb7\xb2\xad\xdf\xa7\x04\xb4\xbe\xe6\
\xe6\xe6\x39\x75\xe6\x1c\xe5\x72\xd9\x62\x5c\x41\xa9\x54\xe2\xab\
\x0f\xdd\x4f\xa1\xb8\xa6\x97\x46\x0c\x01\x0a\x66\x00\x68\x84\x80\
\xe7\x52\xdf\x24\xc8\xd3\xdd\x4b\x48\xa7\x52\xec\xd9\xbd\x83\x96\
\x96\x16\x8b\xa1\x35\x55\xad\x56\x19\x1d\x3b\xcf\x85\xf1\x49\x8b\
\xf1\x4c\x5d\xb9\x56\xe3\xc1\xc3\x87\x98\x9e\x9d\x59\x97\x7f\x9d\
\x21\x40\x81\x0c\x00\x8d\x10\xf0\x3a\xe0\x23\x0e\xef\x65\x06\x3d\
\x12\x61\xa0\xbf\x8f\xfe\xbe\x5e\x57\x03\xb4\x26\xe6\xe7\xf3\x9c\
\x3e\x3b\x42\xb1\xe8\x8d\x7e\x57\xe3\xf8\xe9\x93\x9c\x3e\x77\x76\
\x5d\x33\x47\xa2\xa5\xe5\xad\xbf\xe8\x5b\x04\x0d\x00\x01\x0d\x01\
\x1f\x04\x7e\xca\x21\xbe\xbc\xd6\xd6\x56\x76\xef\xda\xee\xe3\x82\
\x5a\x35\x95\x4a\x85\x73\x23\x63\xee\xe5\xbf\x0c\x13\x53\x93\x3c\
\xfc\xd8\xe1\x0d\x59\x78\x48\xb6\xb6\xfe\x97\x77\xbd\xe9\xae\xf7\
\x3b\x0a\x06\x80\xa0\x05\x80\x16\xe0\x5f\x80\x97\x3a\xcc\x57\xd6\
\xb7\xb5\x97\x6d\x03\x7d\x44\xa3\x51\x8b\xa1\x6b\x36\x3d\x33\xcb\
\xd9\x73\xa3\x5e\xeb\x5f\x86\x85\xc5\x45\xbe\xfe\xf0\x03\x94\x37\
\x68\x17\xc4\x58\x3c\x5e\xeb\xea\xee\xbe\xed\x2d\x77\xbe\xee\xcf\
\x1d\x0d\x03\x40\xd0\x42\x40\x1f\x30\x8c\x37\x05\x3e\xa3\x64\x32\
\xc1\x8e\xed\xdb\xe8\xea\xec\xb0\x18\x5a\x96\x42\xa1\xc8\xb9\x91\
\x51\x66\xe7\x7c\x89\xcf\x72\x94\x4a\x25\xbe\xf6\xf0\x83\x2c\x15\
\x96\x36\xaa\xf9\xb3\xa5\xa7\x87\x68\x2c\x56\xaa\x56\xab\xb7\xbf\
\xf9\xb5\x77\x7c\xd2\x51\x31\x00\x04\x2d\x04\xdc\x48\xfd\xa6\xc0\
\x1e\x87\xfb\x99\xb5\xb7\xb5\xb1\x63\xc7\x00\xa9\xd6\x56\x8b\xa1\
\x2b\xaa\x54\x2a\x8c\x9d\x1f\x67\x7c\x62\xd2\xe7\xfa\x97\xa9\x5a\
\xad\xf2\xc0\x23\x0f\x33\x3b\xbf\x31\x8f\x45\x5e\xd4\xfc\x9f\xcc\
\x23\xb5\x5a\xed\xf6\x37\xdd\x71\xbb\x21\xc0\x00\x10\xb8\x10\xf0\
\x72\xe0\x9f\x00\x6f\x7d\xbf\x4a\xbd\x3d\x5b\xd8\x36\xd0\x47\x3c\
\x1e\xb7\x18\xfa\x26\xb5\x5a\x8d\xc9\xa9\x69\x46\x47\xcf\x6f\xd8\
\xd2\xf5\x66\xaf\xdf\xe1\xc7\x1f\xe3\xc2\xe4\x44\xb3\x34\x7f\x43\
\x80\x01\x20\xf0\x21\xe0\x0e\xe0\x63\x61\x3a\xe6\x15\x7f\x51\x44\
\xa3\x0c\xf4\xf7\xd1\xdb\xbb\xc5\xfb\x03\x04\xd4\x9f\xe9\x3f\x37\
\x3a\xe6\x6b\x7b\x57\xe0\xf8\xa9\x93\x9c\x1e\x39\xbb\x31\xbf\xd3\
\x97\x6f\xfe\x4f\x86\x00\xe0\xf6\xbb\x6e\xbf\xcd\x10\x60\x00\x08\
\x5c\x08\xf8\x65\xe0\xd7\x1c\xf6\xe5\x49\xc4\xe3\xf4\xf7\x6f\xa5\
\xa7\x67\x0b\x51\x1f\x1b\x0c\xa5\xf9\xf9\x3c\xa3\x63\x17\xc8\x2f\
\x2c\x58\x8c\x15\x18\x39\x3f\xc6\x91\xe3\x47\x9b\xb5\xf9\x1b\x02\
\x0c\x00\x81\x0f\x01\x1f\x05\x7e\xd4\xa1\xbf\x86\x20\x90\x48\x30\
\xd0\xbf\x95\x9e\x2d\xdd\xee\x1f\x10\x12\xf9\xfc\x02\xa3\x63\x17\
\x98\xcf\xe7\x2d\xc6\x0a\x4d\xcd\x4c\xf3\xd0\xa3\x8f\x6c\xc8\xfd\
\x12\xcb\x68\xfe\x4f\x28\x03\xb7\x19\x02\x0c\x00\x41\x0b\x00\x49\
\xea\x6f\x0e\x7c\x85\xc3\x7f\x6d\x92\xc9\x04\x03\xfd\x7d\x6c\xe9\
\xee\x32\x08\x04\xb5\xf1\x2f\x2c\x30\x36\x36\xce\xdc\xbc\x77\xf6\
\xaf\x4e\x3d\xf3\x7c\xfd\xd0\x43\x54\x36\xe0\x9e\x89\x6b\x68\xfe\
\x86\x00\x03\x40\xa0\x43\x40\x07\x30\x08\xbc\xd0\x29\xb0\x82\x15\
\x81\x78\x9c\xad\x5b\x7b\xe8\xed\xd9\xe2\xdb\x06\x03\xa0\x56\xab\
\x31\x3b\x37\xcf\x85\x0b\xe3\xe4\x17\x16\x2d\xc8\x2a\x59\x5c\x5a\
\xe4\xfe\x43\x0f\x51\x2c\x95\x36\x53\xf3\x37\x04\x18\x00\x02\x1d\
\x02\x7a\x80\xcf\x03\xdf\xe2\x34\x58\x99\x68\x34\x4a\x4f\x4f\x37\
\x7d\xbd\xbd\x24\x93\x09\x0b\xb2\xc9\x54\xab\x55\xa6\xa6\x67\xb8\
\x70\x61\x62\xad\x5f\x44\x13\x3a\x4b\x85\x02\xf7\x1f\x7a\x88\x42\
\x71\xfd\x6f\x9a\x5c\x85\xe6\x6f\x08\x30\x00\x04\x3a\x04\x0c\x00\
\xff\x0a\xdc\xe0\x54\x58\x1d\xdd\xdd\x9d\xf4\xf6\x6c\xa1\xbd\xad\
\xcd\x62\x34\xb9\x62\xb1\xc8\xc4\xd4\x34\x13\x13\x53\x1b\xb2\x34\
\x1d\x86\xfa\x7e\xfd\xd0\x43\x1b\xb2\xd1\xcf\x2a\x36\x7f\x43\x80\
\x01\x20\xd0\x21\x60\x77\x23\x04\xec\x73\x3a\xac\x9e\x96\x96\x24\
\x3d\x5b\xba\xe9\xd9\xd2\xed\x5e\x02\x4d\xa4\x56\xab\x31\x33\x3b\
\xc7\xe4\xe4\x14\x73\xf3\xde\xd8\xb7\x56\x4a\xa5\x12\xf7\x3f\xf2\
\x10\x0b\x8b\xeb\x7f\x29\x65\x0d\x9a\xbf\x21\xc0\x00\x10\xe8\x10\
\x70\x5d\x23\x04\xec\xb0\x1a\xab\x3c\xc1\x22\x11\x3a\x3b\x3b\xe8\
\xed\xe9\xa6\xbd\xad\xcd\x9b\x06\x37\x48\xa1\x50\x64\x62\x6a\x8a\
\xa9\xa9\x69\xca\x65\xcf\xf6\xd7\x52\xb9\x5c\xe6\x81\xc3\x0f\x6f\
\xc8\x93\x13\x6b\xd8\xfc\x0d\x01\x06\x80\x40\x87\x80\x9b\xa8\xdf\
\x13\xd0\x67\x35\xd6\x46\x3c\x1e\xa7\xbb\xab\x93\xee\xae\x4e\xd2\
\xe9\x94\x61\x60\x8d\x15\x8b\x25\xa6\x67\x66\x98\x9e\x99\x65\x71\
\x71\xc9\x82\xac\x83\x4a\xa5\xc2\x83\x87\x0f\x6d\xc8\x16\xbf\xeb\
\xd0\xfc\x0d\x01\x06\x80\x40\x87\x80\xe7\x51\x7f\x83\x60\xb7\xd5\
\x58\x5b\x89\x44\x9c\xae\xce\x4e\xba\xbb\x3b\x49\xa7\x0c\x03\xab\
\xd6\xf4\x4b\x25\x66\x66\x66\x99\x9e\x9e\xdd\x90\xe5\xe7\x30\xab\
\x56\xab\x3c\xf4\xe8\x23\x4c\xcf\xce\x04\xb9\xf9\x1b\x02\x0c\x00\
\x81\x0e\x01\x2f\xa0\xbe\x4f\xc0\x56\xab\xb1\x4e\x61\x20\x1e\xa7\
\xa3\xa3\x9d\xce\x8e\x76\xda\xdb\xdb\x7c\xa4\x70\x19\x6a\xb5\x1a\
\x0b\x8b\x8b\xcc\xcd\xcd\x33\x3b\x97\x67\xd1\xa6\xbf\x61\x67\xfe\
\x0f\x3f\x76\x38\x2c\xcd\xdf\x10\x60\x00\x08\x74\x08\xb8\x09\xb8\
\x0f\xef\x09\x58\xff\x09\x19\x81\x74\x3a\x4d\x67\x47\x3b\x1d\x1d\
\xed\xbe\x95\xf0\x52\xdf\xba\xe5\x32\xb3\x73\xf3\xcc\xcd\xcd\x33\
\x37\x9f\xf7\x0e\xfe\x26\x18\x8f\x87\x1e\x7d\x24\xe8\xcb\xfe\x86\
\x00\x03\x40\xa8\x42\xc0\x01\xe0\xb3\xc0\x7e\xab\xb1\x71\xe2\xb1\
\x18\xe9\xb6\x34\x6d\xe9\x14\x6d\xe9\x34\xa9\x54\x8a\x68\x34\x5c\
\xd3\x76\xa9\x50\x60\x21\xbf\x48\x7e\x61\x81\xfc\xc2\x02\x85\x82\
\xcf\xea\x37\x8b\x62\xa9\xc4\x83\x87\x0f\x91\x5f\x08\xe4\x0d\x7f\
\x86\x00\x03\x40\xa8\x43\xc0\xce\x46\x08\x78\x96\xd5\x68\x96\x15\
\x82\x08\xe9\x54\x8a\x74\x5b\x8a\x54\x6b\x2b\xa9\xd6\x56\x5a\x5a\
\x92\x81\xb9\x87\xa0\x54\x2a\xb1\xb8\x54\x60\x69\x69\x89\xfc\xc2\
\x22\x0b\xf9\x05\x5f\xb9\xdb\xa4\x0a\xc5\x02\x0f\x3e\x72\x88\x85\
\xa5\x40\x3d\xea\x67\x08\x30\x00\xe8\xa2\x10\xd0\x07\xfc\x13\xf0\
\x3c\xab\xd1\xbc\xa1\xa0\xb5\xa5\x85\xd6\xd6\x16\x5a\x5b\x5b\x49\
\xb5\xb6\x90\x4c\x26\x49\x26\x13\x4d\x19\x0c\x6a\xb5\x1a\xe5\x72\
\x99\x62\xb1\xc4\x52\xa1\xc0\xd2\x52\x81\xc5\xa5\x25\x96\x96\x0a\
\x2e\xe7\x6f\x12\x8b\x4b\x4b\x3c\x78\xf8\x61\x96\x0a\x9b\x7a\x87\
\x3f\x43\x80\x01\x40\x57\x11\x02\xba\x81\xbf\x07\x5e\x6a\x35\x36\
\x97\x44\x22\x5e\x0f\x03\x89\x04\xc9\x64\x82\x64\x22\x49\x3c\x1e\
\x23\x16\x8f\x11\x8f\xc5\x88\xc5\xe2\xc4\x62\xd1\x55\x0b\x0a\x95\
\x6a\x95\x4a\xb9\x4c\xb9\x52\xa1\x52\xae\x50\xae\x54\x28\x95\x4a\
\x14\x8b\x8d\x4f\xa9\x48\xb1\x58\xda\x90\x37\xc2\x69\x75\x2c\x2c\
\x2e\xf0\xc0\x23\x87\x28\x96\xd6\xff\x52\x4c\x13\x37\x7f\x43\x80\
\x01\x20\xd0\x21\xa0\x0d\xf8\x2b\xe0\x56\xab\x11\x3c\xb1\x58\x3d\
\x10\x44\xa2\x11\x22\x91\x6f\x7c\xa2\x17\xfd\x73\xad\x56\xfb\xa6\
\x4f\xf5\xa2\x7f\xae\x54\xaa\x54\x2a\x15\x1b\x7b\xc0\xcd\xe5\xe7\
\x79\xe8\xf0\x21\x4a\xe5\xb2\xcd\xdf\x10\x60\x00\x08\x59\x08\x48\
\x00\x1f\x04\xfe\x2f\xab\x21\x85\xcb\xc4\xd4\x24\x8f\x3c\xfe\x18\
\xd5\x6a\xd5\xe6\x6f\x08\x30\x00\x84\x38\x08\xbc\x13\x78\x0f\x10\
\xb5\x1a\x52\xf0\x9d\x19\x39\xc7\xb1\x53\x27\x36\xe4\xdf\xbd\x09\
\x9b\xbf\x21\xc0\x00\x10\xf8\x10\xf0\x6a\xe0\xa3\x40\xda\x6a\x48\
\xc1\x54\xab\xd5\x78\xfc\xc4\x71\x46\xce\x8f\xda\xfc\x0d\x01\x06\
\x00\x7d\x53\x08\x78\x11\xf0\x19\x60\x9b\xd5\x90\x82\xa5\x5c\xa9\
\xf0\xc8\x91\x47\x99\x9a\x99\xb6\xf9\x1b\x02\x0c\x00\xba\x64\x08\
\xd8\x0b\xfc\x1d\xf0\x1c\xab\x21\x05\xc3\x52\xa1\xc0\xc3\x8f\x3e\
\x42\x7e\x71\xc1\xe6\x6f\x08\x30\x00\xe8\x8a\x21\xa0\x13\xf8\x24\
\xf0\x4a\xab\x21\x6d\x6e\x73\xf3\xf3\x3c\xfc\xd8\x23\x14\x4b\x25\
\x9b\xbf\x21\xc0\x00\xa0\xab\x0a\x01\x71\xea\x37\x06\xbe\xcd\xba\
\x4a\x9b\xd3\xd8\x85\xf3\x1c\x39\x71\x6c\x43\xee\xf4\x0f\x78\xf3\
\x37\x04\x18\x00\x42\x11\x04\x7e\x00\xf8\x30\xd0\x65\x35\xa4\xcd\
\xa1\x5a\xad\x72\xf4\xe4\x71\x46\xce\x8f\x6d\xd8\xdf\x21\x04\xcd\
\xdf\x10\x60\x00\x08\x45\x08\x38\x08\x7c\x0a\xf8\x56\xab\x21\x35\
\xb7\xa5\xc2\x12\x87\x8e\x3c\xca\x7c\x3e\xbf\x61\x7f\x87\x10\x35\
\x7f\x43\x80\x01\x20\x14\x21\x20\x45\x7d\xd3\xa0\xd7\x59\x0d\xa9\
\x39\x4d\x4c\x4d\xf1\xe8\xd1\x23\x94\x2b\xe5\x0d\xfb\x3b\x84\xb0\
\xf9\x1b\x02\x0c\x00\xa1\x09\x02\x3f\x09\xbc\x1f\xf0\xc5\xf6\x52\
\x93\xa8\xd5\x6a\x9c\x3c\x73\x9a\x53\xe7\xce\x6c\xe8\xdf\x23\xc4\
\xcd\xdf\x10\x60\x00\x08\x4d\x08\x78\x01\xf5\xa7\x04\xf6\x5b\x0d\
\x69\x63\x95\x4a\x25\x1e\x79\xfc\x31\xa6\x67\x67\x6c\xfe\x86\x00\
\x03\x80\xd6\x25\x04\x74\x01\x1f\x00\xee\xb0\x1a\xd2\xc6\x98\x9c\
\x9e\xe2\xb1\x63\x8f\x6f\xd8\x23\x7e\x36\x7f\x43\x80\x01\x20\xdc\
\x41\xe0\x35\xd4\xef\x0d\xe8\xb5\x1a\xd2\xfa\xa8\x54\x2a\x1c\x3b\
\x75\x72\xc3\xb6\xf4\xb5\xf9\x1b\x02\x0c\x00\x7a\x22\x04\xec\x00\
\xfe\x18\xf8\x3f\xac\x86\xb4\xb6\x66\xe7\xe7\x78\xf4\xe8\x11\x16\
\x97\x96\x6c\xfe\x86\x00\x19\x00\x9a\x26\x08\xdc\x05\xfc\x06\xbe\
\x50\x48\x5a\x75\xb5\x5a\x8d\x93\x67\x4f\x73\xfa\xec\x59\x6a\xd4\
\x6c\xfe\x86\x00\x19\x00\x9a\x2e\x04\xdc\x08\x7c\x0c\x78\x91\xd5\
\x90\x56\xc7\xc2\xe2\x22\x87\x8f\x1e\x61\x3e\x3f\xdf\x14\x7f\x1f\
\x9b\xbf\x21\xc0\x00\xa0\xcb\x85\x80\x38\xf0\xf3\xc0\x2f\xe0\xe3\
\x82\xd2\x8a\xce\xfa\xcf\x8e\x8d\x70\xe2\xf4\xa9\x0d\xdb\xce\xd7\
\xe6\x6f\x08\x30\x00\xe8\x5a\x82\xc0\x41\xea\x37\x08\xe6\xac\x86\
\xb4\x3c\x73\xf9\x79\x8e\x1c\x3f\xba\xa1\x3b\xfa\xd9\xfc\x0d\x01\
\x06\x00\xad\x34\x08\xdc\x01\xfc\x16\xd0\x6f\x35\xa4\x2b\xab\x56\
\xab\x4b\xc7\x4e\x9d\x6c\x39\x37\x36\xd2\x54\xdf\x67\x36\x7f\x43\
\x80\x01\x40\xd7\x1a\x02\xb6\x00\x77\x03\x3f\x0e\x44\xad\x88\x74\
\x49\x9f\x9a\x9b\x9f\x7f\xcb\xd1\xd3\x27\xee\x98\x9d\x9d\xbd\xbb\
\x59\xbe\xd3\x6c\xfe\x86\x00\x03\x80\x56\x23\x08\xbc\x14\xf8\x7d\
\xe0\x39\x56\x43\x7a\xd2\x89\x6a\xb5\x7a\xd7\xad\x2f\xff\x0f\xff\
\xf0\xc4\x7f\xf0\xde\xdf\xfb\xd0\x3b\x16\x16\xf2\xef\xb5\xf9\x1b\
\x02\x64\x00\x08\x52\x08\x48\x00\x6f\x05\xde\x85\xaf\x19\x56\xb8\
\x2d\x02\xef\xab\xd5\x6a\xef\xbe\xe5\x65\x2f\x5d\x78\xea\x7f\xf9\
\xee\x7b\x3f\xf0\x8e\x62\xa1\xb0\x61\x21\xc0\xe6\xbf\x2e\x21\xe0\
\xf6\xbb\x6e\xbf\xed\x2f\x2c\x85\x01\x20\x6c\x41\x60\x2b\xf0\xab\
\xc0\x4f\x02\x09\x2b\xa2\x10\xa9\x02\x7f\x0a\xbc\x2b\x97\xcd\x9c\
\xba\xd2\xff\xe3\xaf\xbf\xff\x9e\x77\x94\x4a\xa5\x75\x0f\x01\x36\
\x7f\x43\x80\x01\x40\xeb\x11\x04\x6e\x04\xde\x0b\x7c\xbf\xd5\x50\
\x08\x7c\x1e\x78\x5b\x2e\x9b\xf9\xca\xd5\xfe\x0f\xd6\x3b\x04\xd8\
\xfc\x0d\x01\x06\x00\xad\x77\x10\x78\x39\xf0\x9b\xc0\xbf\xb7\x1a\
\x0a\xa0\xc3\xc0\x3b\x73\xd9\xcc\xdf\x5c\xcb\xff\x78\xbd\x42\x80\
\xcd\xdf\x10\x60\x00\xd0\x46\x85\x80\x08\x70\x1b\xf0\x1e\x60\x8f\
\x15\x51\x00\x5c\x00\x7e\x0d\xf8\xfd\x5c\x36\x53\x5e\xc9\x1f\xb4\
\xd6\x21\xc0\xe6\x6f\x08\x30\x00\xa8\x19\x82\x40\x2b\xf5\x47\x06\
\xdf\x09\xec\xb2\x22\xda\x84\xc6\x81\xdf\x06\x3e\x90\xcb\x66\xe6\
\x56\xeb\x0f\x5d\xab\x10\x60\xf3\x37\x04\x18\x00\xd4\x6c\x41\x20\
\x09\xfc\x18\xf0\x73\xc0\x5e\x2b\xa2\x4d\x60\x8c\xfa\xc6\x57\x1f\
\xcc\x65\x33\x6b\xb2\x79\xff\x6a\x87\x00\x9b\xbf\x21\xc0\x00\xa0\
\x66\x0e\x02\x09\xe0\x75\xd4\xdf\x31\x70\xc0\x8a\xa8\x09\x8d\x00\
\xff\x8d\xfa\x52\xff\xc2\x5a\xff\xcb\x56\x2b\x04\xd8\xfc\x0d\x01\
\x06\x00\x6d\x96\x20\x10\x07\xee\xa0\xbe\x87\xc0\xf5\x56\x44\x4d\
\xe0\x0c\xf5\xd7\x60\xff\x61\x2e\x9b\x59\x5a\xcf\x7f\xf1\x4a\x43\
\x80\xcd\xdf\x10\x60\x00\xd0\x66\x0c\x02\x31\xe0\x35\xc0\x4f\x03\
\x19\x2b\xa2\x0d\x70\x3f\x70\x0f\xf0\x89\x5c\x36\x53\xd8\xa8\xbf\
\xc4\xb5\x86\x00\x9b\xbf\x21\xc0\x00\xa0\x20\x84\x81\x17\x35\x82\
\xc0\x6b\x80\xa4\x15\xd1\x1a\xaa\x00\x7f\x03\xdc\x93\xcb\x66\x3e\
\xdf\x2c\x7f\xa9\xe5\x86\x00\x9b\xbf\x21\xc0\x00\xa0\xa0\x05\x81\
\xed\xc0\x1b\x80\xd7\xe3\x9b\x07\xb5\xba\xa6\x81\xff\x17\xf8\xdd\
\x5c\x36\x73\xbc\x19\xff\x82\x57\x1b\x02\x6c\xfe\x86\x00\x03\x80\
\x82\x1c\x04\x5a\x80\x1f\x69\xac\x0a\x3c\xcf\x8a\x68\x05\x0e\x03\
\xf7\x02\x1f\xcd\x65\x33\xf9\x66\xff\xcb\xfe\xfa\xfb\xef\x79\x67\
\xa9\x54\xba\xdb\xe6\x6f\x08\x30\x00\xc8\x30\x30\x34\xfc\x02\xe0\
\xce\x46\x20\xe8\xb5\x22\xba\x0a\xb3\xc0\x27\x81\x8f\xe4\xb2\x99\
\x7f\xdb\x6c\x7f\xf9\xcb\x85\x00\x9b\xbf\x21\xc0\x00\xa0\xb0\x06\
\x81\x24\xf0\xbd\x8d\x30\xf0\x1d\x40\xdc\xaa\xe8\x22\x55\xe0\x73\
\xc0\x47\x80\x4f\xaf\xc7\x63\x7c\x6b\x1a\x02\xee\xb9\xf7\x9d\xa5\
\x62\xf1\x6e\x9b\xbf\x21\xc0\x00\x20\x7d\x73\x18\xd8\x46\xfd\x51\
\xc2\x3b\x81\x9b\xad\x48\xa8\x1d\x05\x3e\x0a\x7c\x2c\x97\xcd\x9c\
\x0c\xd2\x81\xbd\xfb\x9e\x7b\xdf\x59\x2c\x16\xef\xb6\xf9\x1b\x02\
\x0c\x00\xd2\xa5\xc3\xc0\x0b\x80\x57\x03\xaf\x02\x6e\xb0\x22\xa1\
\x70\x12\xf8\x34\xf0\x97\xc0\xff\xca\x65\x33\xb5\xa0\x1e\xe8\xdd\
\xbf\xf7\xc1\x9f\x6e\x6b\x6f\xff\xed\x68\xcc\xee\x6f\x08\x30\x00\
\x48\x57\x0a\x03\x37\x37\x82\xc0\xab\x80\xe7\x3a\x9f\x02\xe5\xd1\
\x46\xc3\xff\xab\x5c\x36\xf3\xe5\x30\x1d\xf8\xbd\x7f\xf2\xf1\x3b\
\xa2\xd1\xe8\x47\x00\x43\x80\x21\xc0\x00\x20\x5d\x45\x18\x38\x70\
\x51\x18\x78\x31\x10\xb5\x2a\x9b\x4a\x8d\xfa\x46\x3d\x9f\x06\xfe\
\x32\x97\xcd\x1c\x0a\x73\x31\x3e\xf0\xf1\x4f\xdc\x11\x89\x44\x0c\
\x01\x86\x00\x03\x80\xb4\xcc\x30\x30\x00\xdc\x0a\xdc\xd2\xf8\xec\
\xb4\x2a\x4d\x69\x1c\xf8\x6c\xe3\x73\x5f\x2e\x9b\x39\x65\x49\x0c\
\x01\x86\x00\x03\x80\xb4\x9a\x81\xe0\xa6\x8b\x02\xc1\xcb\x81\x0e\
\xab\xb2\x21\x16\x81\x2f\x00\xf7\x35\x9a\xfe\xd7\x82\x7c\x3d\x7f\
\x35\xfc\xee\x27\xfe\xf4\x0e\xea\x4f\x3a\x18\x02\x0c\x01\x06\x00\
\x69\x85\x61\x20\x01\xbc\x04\xf8\xf6\xc6\xcf\x17\x03\x5b\xac\xcc\
\x9a\x98\x03\xfe\x37\xf0\x45\xe0\xf3\xc0\xd0\x7a\xbf\x7c\xc7\x10\
\x20\x43\x80\x01\x40\xba\x5c\x20\x88\x00\x37\x36\x82\xc0\x4b\x1a\
\x9f\xe7\xe0\xbe\x03\xcb\x55\x05\x1e\x69\x34\xfb\x2f\x35\x7e\x3e\
\x9c\xcb\x66\xaa\x96\xc6\x10\x20\x43\x80\x01\x40\x9b\x25\x14\xa4\
\x81\x17\x36\x3e\x37\x37\x3e\x37\x01\x6d\x56\x07\xa8\x2f\xe5\x1f\
\x06\x1e\x6e\x7c\xbe\x0c\xfc\x7f\xb9\x6c\x66\xd6\xd2\x18\x02\x64\
\x08\x30\x00\x28\x88\x2b\x05\xfb\x9e\x12\x08\x6e\x06\x9e\x0d\xa4\
\x03\x7a\xd8\x4b\xd4\x1f\xc7\x7b\x18\x38\x74\x51\xc3\x3f\xea\x99\
\xbd\x21\x40\x86\x00\x03\x80\x0c\x07\x43\xc3\xfd\xc0\xde\xc6\x67\
\x4f\xe3\xb3\xf7\xa2\x9f\xcd\xfa\x4e\x83\x69\xea\x9b\xec\x9c\xba\
\xcc\xcf\x51\x6f\xd2\x33\x04\xc8\x10\x60\x00\x90\xae\x3d\x20\xa4\
\x81\x3e\xa0\xa7\x11\x06\x7a\x2e\xf3\x69\x03\x92\x97\xf9\xb4\x34\
\x7e\x02\x14\x9f\xe1\xb3\x00\x4c\x5e\xe2\x33\x71\xd1\x3f\x8f\xe7\
\xb2\x99\x39\x47\xc7\x10\x20\x43\x80\x01\x40\x92\x0c\x01\x32\x04\
\x18\x00\x24\xc9\x10\x20\x43\x80\x01\x40\x92\x0c\x01\x32\x04\x18\
\x00\x24\xc9\x10\xa0\x75\x0d\x01\x77\xdc\x75\xfb\x6d\xff\xdd\x00\
\x20\x49\x32\x04\x18\x02\x0c\x00\x92\x24\x43\x80\x21\xc0\x00\x20\
\x49\x86\x00\x43\x80\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\
\x92\x64\x08\x90\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\x92\
\x64\x08\x90\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\x92\x64\
\x08\x90\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\x92\x64\x08\
\x90\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\x92\x64\x08\x90\
\x21\xc0\x00\x20\x49\x86\x00\x85\x39\x04\x18\x00\x24\xc9\x10\xa0\
\x10\x86\x00\x03\x80\x24\x19\x02\x14\xc2\x10\x60\x00\x90\x24\x43\
\x80\x42\x18\x02\x0c\x00\x92\x64\x08\x50\x08\x43\x80\x01\x40\x92\
\x0c\x01\x0a\x61\x08\x30\x00\x48\x92\x21\x40\x21\x0c\x01\x06\x00\
\x49\x32\x04\x28\x84\x21\xc0\x00\x20\x49\x86\x00\x85\x30\x04\x18\
\x00\x24\xc9\x10\xa0\x10\x86\x00\x03\x80\x24\x19\x02\x14\xc2\x10\
\x60\x00\x90\x24\x43\x80\x42\x18\x02\x0c\x00\x92\x64\x08\x50\x08\
\x43\x80\x01\x40\x92\x0c\x01\x0a\x61\x08\x30\x00\x48\x92\x21\x40\
\x21\x0c\x01\x06\x00\x49\x32\x04\x28\x84\x21\xc0\x00\x20\x49\x86\
\x00\x85\x30\x04\x18\x00\x24\xc9\x10\xa0\xe6\x0e\x01\x3f\x72\xd7\
\xed\xb7\x7d\x6a\xb5\xff\xe0\xb8\xb5\x95\xa4\xcd\xeb\xae\xdb\x6f\
\xfb\xf8\xef\x7e\xe2\x4f\x31\x04\x04\xd6\x34\x70\xc4\x15\x00\x49\
\x92\x2b\x01\xe1\x31\x0e\xdc\x72\xd7\xed\xb7\xdd\x6f\x00\x90\x24\
\x19\x02\x6c\xfe\x06\x00\x49\x92\x21\xc0\xe6\x6f\x00\x90\x24\xd5\
\x43\xc0\x6b\x81\x0f\x1b\x02\x6c\xfe\x06\x00\x49\x32\x04\xc8\xe6\
\x6f\x00\x90\x24\x43\x80\xc2\xdc\xfc\x0d\x00\x92\x64\x08\x50\x08\
\x9b\xbf\x01\x40\x92\x0c\x01\x0a\x61\xf3\x37\x00\x48\x92\x21\x40\
\x21\x6c\xfe\x06\x00\x49\x32\x04\x28\x84\xcd\xdf\x00\x20\x49\x86\
\x00\x85\xb0\xf9\x1b\x00\x24\xc9\x10\xa0\x10\x36\x7f\x03\x80\x24\
\x19\x02\x0c\x01\x21\x6c\xfe\x06\x00\x49\x32\x04\x18\x02\x42\xd8\
\xfc\x0d\x00\x92\x64\x08\x30\x04\x84\xb0\xf9\x1b\x00\x24\x49\x86\
\x80\x10\x36\x7f\x03\x80\x24\xc9\x10\x10\xc2\xe6\x6f\x00\x90\x24\
\x19\x02\x42\xd8\xfc\x0d\x00\x92\x24\x43\x40\x08\x9b\xbf\x01\x40\
\x92\x64\x08\x08\x61\xf3\x37\x00\x48\x92\x0c\x01\x21\x6c\xfe\x06\
\x00\x49\x92\x21\x20\x84\xcd\xdf\x00\x20\x49\x32\x04\x84\xb0\xf9\
\x1b\x00\x24\x49\x86\x80\x10\x36\x7f\x03\x80\x24\xc9\x10\x10\xc2\
\xe6\x6f\x00\x90\x24\x19\x02\x42\xd8\xfc\x0d\x00\x92\x24\x43\x40\
\x08\x9b\xbf\x01\x40\x92\x64\x08\x08\x61\xf3\x37\x00\x48\x92\x0c\
\x01\x21\x6c\xfe\x06\x00\x49\x92\x21\x20\x84\xcd\xdf\x00\x20\x49\
\x32\x04\x84\xb0\xf9\x1b\x00\x24\x49\x86\x80\x10\x36\x7f\x03\x80\
\x24\xc9\x10\x10\xc2\xe6\x6f\x00\x90\x24\x19\x02\x42\xd8\xfc\x0d\
\x00\x92\x24\x43\x40\x08\x9b\xbf\x01\x40\x92\x64\x08\x08\x61\xf3\
\x37\x00\x48\x92\x0c\x01\x21\x6c\xfe\x06\x00\x49\x92\x21\x20\x84\
\xcd\xdf\x00\x20\x49\x32\x04\x84\xb0\xf9\x1b\x00\x24\x49\x61\x0f\
\x01\xa1\x6c\xfe\x06\x00\x49\x52\x98\x43\x40\x68\x9b\xbf\x01\x40\
\x92\x14\xd6\x10\x10\xea\xe6\x6f\x00\x90\x24\x85\x31\x04\x84\xbe\
\xf9\x1b\x00\x24\x49\x61\x0b\x01\x36\x7f\x03\x80\x24\x29\x64\x21\
\xc0\xe6\x6f\x00\x90\x24\x85\x2c\x04\xd8\xfc\x0d\x00\x92\xa4\x90\
\x85\x00\x9b\xbf\x01\x40\x92\x14\xb2\x10\x60\xf3\x37\x00\x48\x92\
\x42\x16\x02\x6c\xfe\x06\x00\x49\x52\xc8\x42\x80\xcd\xdf\x00\x20\
\x49\x0a\x59\x08\xb0\xf9\x1b\x00\x24\x49\x21\x0b\x01\x36\x7f\x03\
\x80\x24\x29\x64\x21\xc0\xe6\x6f\x00\x90\x24\x85\x2c\x04\xd8\xfc\
\x0d\x00\x92\xa4\x90\x85\x00\x9b\xbf\x01\x40\x92\x14\xb2\x10\x60\
\xf3\x37\x00\x48\x92\x02\x1c\x02\x7e\x14\xf8\xe3\xa7\x84\x00\x9b\
\xbf\x01\x40\x92\x14\xb2\x10\x60\xf3\x37\x00\x48\x92\x42\x16\x02\
\xfe\x1b\xf0\x4a\x9b\xbf\x24\x49\xe1\x0a\x01\x9d\x56\x41\x92\x24\
\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\
\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\
\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\
\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\
\x92\x24\x49\x92\x24\x49\x92\xa4\x80\xf9\xff\x01\x35\xd0\x5c\x2a\
\xdb\x5e\x02\x03\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\
\x00\x00\x09\x77\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x3a\
\x50\x4c\x54\x45\xff\xff\xff\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\
\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\
\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\
\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\
\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\
\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\
\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\
\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\
\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\
\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\
\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\
\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\
\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\
\x86\xad\xd2\x8a\xb0\xd4\x86\xad\xd2\x86\xad\xd2\x92\xb5\xd7\x86\
\xad\xd2\x9b\xbb\xda\x86\xad\xd2\x8a\xb0\xd3\x9e\xbd\xdb\x9c\xbc\
\xda\x93\xb6\xd7\x9b\xbb\xda\x86\xad\xd2\x9c\xbc\xda\x9c\xbc\xda\
\x90\xb4\xd6\x9b\xbb\xda\x9d\xbc\xda\x9b\xbb\xda\x97\xb9\xd8\x9d\
\xbd\xdb\x9d\xbd\xdb\x9d\xbc\xda\x9e\xbd\xdb\x9e\xbd\xdb\x86\xad\
\xd2\x9c\xbc\xda\x9c\xbc\xda\x9d\xbc\xda\x86\xad\xd2\x9b\xbb\xda\
\x9e\xbd\xdb\x9c\xbc\xda\x86\xad\xd2\x9d\xbc\xda\x9d\xbd\xdb\x86\
\xad\xd2\x9e\xbd\xdb\x9c\xbc\xda\x9c\xbc\xda\x9e\xbd\xdb\x9b\xbb\
\xda\x9e\xbd\xdb\x99\xba\xd9\x9d\xbd\xdb\x8a\xb0\xd3\x9d\xbc\xda\
\x9c\xbc\xda\x9e\xbd\xdb\x9c\xbc\xda\x9b\xbb\xda\x9b\xbb\xda\x9b\
\xbb\xda\x9d\xbd\xdb\x9c\xbc\xda\x9a\xbb\xda\x9e\xbd\xdb\x9b\xbb\
\xda\xa4\xc2\xdd\x9c\xbc\xda\x9e\xbd\xdb\x9a\xbb\xda\x9b\xbb\xda\
\x9c\xbc\xda\x9b\xbb\xda\x9c\xbc\xda\x99\xba\xd9\x9d\xbc\xda\x9c\
\xbc\xda\x9b\xbb\xda\x9c\xbc\xda\x9e\xbd\xdb\x9c\xbc\xda\x9c\xbc\
\xda\x9c\xbc\xda\x9b\xbb\xda\x9d\xbd\xdb\x97\xb9\xd8\x9b\xbb\xda\
\x9d\xbd\xdb\x9d\xbd\xdb\x9b\xbb\xda\x9d\xbc\xda\x9c\xbc\xda\x9c\
\xbc\xda\x9d\xbc\xda\x9b\xbb\xda\x9c\xbc\xda\x86\xad\xd2\x8e\xb2\
\xd5\x98\xb9\xd9\x9e\xbd\xdb\x91\xb4\xd6\x91\xb5\xd6\x9d\xbc\xda\
\x88\xae\xd3\x93\xb6\xd7\x8b\xb0\xd4\x96\xb8\xd8\x8f\xb3\xd5\x99\
\xba\xd9\x89\xaf\xd3\x8d\xb2\xd4\x8c\xb1\xd4\x94\xb7\xd7\x9c\xbc\
\xda\x8d\xb2\xd5\x95\xb7\xd7\x88\xaf\xd3\x8f\xb3\xd6\x97\xb8\xd8\
\x87\xae\xd2\x94\xb6\xd7\x9a\xbb\xd9\x87\xae\xd3\x9b\xbb\xda\x8b\
\xb1\xd4\x97\xb9\xd8\x8a\xb0\xd4\x92\xb5\xd6\xff\xff\xff\x08\x6e\
\x68\xb1\x00\x00\x00\x9d\x74\x52\x4e\x53\x00\x00\x24\x63\x84\x99\
\xb4\xcc\xe4\x4b\xa2\xe7\x15\xea\xf0\xed\xf9\x12\x93\xf6\xab\x6c\
\x36\x03\xa5\x1e\x21\x4e\x7b\xa8\xf3\x69\xfc\x57\x0c\x09\x1b\xc0\
\x9f\x39\x66\xc3\x96\x33\x06\x48\x3c\x42\xe1\xde\x75\x18\x5a\xd5\
\xdb\x45\x3f\xbd\x8a\x0f\x2d\x27\xcf\x30\xc9\x7e\xba\x72\xb7\x1c\
\x78\x87\x7f\x54\xd3\xb1\xd9\xfd\x16\x9a\x62\x60\x69\x91\x78\x34\
\xb6\xa2\x0e\xd9\xe4\xa5\xe9\xf3\xae\x79\x38\xb9\x5d\x45\xf8\x0b\
\xd2\xbf\xd7\x81\xee\xa8\x88\xe6\x49\xf5\x1f\xc1\x3e\xc4\x7f\xf0\
\x9a\x52\x3f\x1d\xdf\xae\x42\xfa\x56\x04\xbc\xe1\x2a\x4f\xa2\x66\
\x94\x19\xc9\x9f\x81\x9d\xeb\x75\x8b\x59\x23\xcc\x07\x4c\xcf\xd4\
\x72\xb1\x5f\x97\xb4\x2e\x6f\x03\x96\xf9\xc0\x00\x00\x00\x01\x62\
\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x07\x74\x49\x4d\x45\
\x07\xdd\x09\x09\x15\x2b\x0e\x99\x49\x39\x5f\x00\x00\x04\x09\x49\
\x44\x41\x54\x58\xc3\xed\x96\xfb\x5f\x53\x65\x1c\xc7\xbf\xcc\x6d\
\x20\x30\x2e\x72\x99\x22\xc9\x36\x50\x94\x06\x04\x49\x96\xa2\x33\
\xb4\xd4\x68\x8b\x52\x6b\x30\xd6\x20\xc0\x6c\x82\x40\xdc\x56\xb9\
\x0d\x69\x78\xa1\x1b\xa6\x40\x60\x0f\x7d\x0d\x08\x21\x8c\x52\x8a\
\x6e\x7f\x5c\xcf\x73\xce\xce\xb6\xb3\xcb\xb9\xf8\x9b\xaf\x57\x9f\
\xd7\x6b\xe7\x9c\x3d\xe7\xbc\x3f\xe7\xfb\x7c\xbf\xcf\xe5\x00\xfc\
\xaf\x04\xa5\x09\xd2\xec\xd0\xea\xf4\xe9\x19\x24\x23\x5d\xaf\xd3\
\xee\xd0\x08\xcd\x0a\x0d\x76\x66\x66\x11\xb1\xb2\x32\x77\x2a\x36\
\xc8\xd6\x1a\xc2\x54\x4e\x2e\x3b\xe6\x85\xff\x19\xb4\xd9\x4a\x0c\
\xf2\x77\x15\xb0\xa7\x0b\x0a\x8b\x8a\x8d\x69\xbb\xd9\xe5\x9e\x92\
\xbd\xa5\xcf\xed\xe3\x1a\x77\xe5\xcb\xf1\xc6\x32\xf6\x52\x93\xde\
\x6c\xe1\x02\xe6\x0d\xd8\x55\xb9\x59\xcf\xc5\x54\x66\x94\xe4\x2b\
\xf6\x73\xc1\x1e\x60\x48\xe5\x41\xdd\xa1\x1c\xf6\x2f\xbd\xea\xe0\
\xf3\x56\xd6\xc0\xdd\xdb\x5f\x21\xc1\x57\xe7\x84\xbb\x5b\x53\x5b\
\x65\x10\xe5\x30\x57\x57\x93\xa6\x0f\x27\xa6\x3a\x25\x5f\x66\x22\
\xe4\x85\x43\x24\x85\x32\xd8\xc1\x54\x47\x7f\x65\x29\xf8\x7a\x16\
\xe0\x8b\x9a\x3c\x22\xa1\xaa\x7c\xd6\xc9\xfa\xa4\xfc\x61\x7a\x47\
\x67\x4d\xb3\x34\x48\x19\x68\xc0\x7a\x80\x9e\x0e\x27\xe1\x8b\xe9\
\x9b\x4b\x01\x34\x92\x3c\x79\x49\x03\x50\x4a\xeb\x59\x9c\xc0\x6b\
\x68\xd2\xaa\x00\x8e\xe4\x12\x69\xe5\xbe\x0c\xa0\xa5\x83\x4a\x13\
\xc7\xb3\xc0\x5f\x31\x42\x6d\x1e\x91\x53\x5e\x2d\x00\xed\x45\x83\
\x45\x6c\x70\x94\x8e\xf6\x63\xd0\x98\x23\xcb\xd3\x32\x1e\x87\xf2\
\x13\x84\x1c\x15\xf1\x36\x5a\x40\x72\x72\x6f\x86\x02\x9e\xe6\xa1\
\xe4\x55\x3a\xb0\x4d\xb6\x58\x83\x26\x45\xa4\x58\x4d\x31\x7c\xe5\
\x53\xf0\x84\x54\x46\x0d\xe8\x20\x95\xcb\x7e\x12\xe9\xa3\x53\xc8\
\x44\x0c\x96\x53\x4a\x12\x18\xd1\x69\x9b\x81\x98\x5e\x13\x0c\x5e\
\x27\xe4\x0c\x18\x95\x65\x90\x97\xc1\x0a\x67\x08\x39\x2b\x18\xa4\
\x13\xd2\x08\x47\x54\x85\x7f\x0e\x1a\xc9\xe2\x1b\x61\x3e\xdf\x44\
\xea\x00\x32\x55\x19\x34\x03\xbc\xf9\x83\xdd\xc1\x1b\x98\xe9\x24\
\x82\xf2\x02\x55\x06\x05\xe5\xf0\x16\x62\x0b\x6f\x40\x87\xf6\xdb\
\x50\xa3\xae\x02\xb4\x86\xef\x20\x9e\xe7\x0d\x0a\x09\xb1\xc1\x29\
\x95\x06\x17\xe0\x22\xe2\xbb\xbc\x01\x9d\x47\xc7\x40\xa7\x8e\x7f\
\xf0\x1e\x38\x11\x5b\x79\x03\x5a\x51\x9d\xae\x4e\x15\xff\xe3\x52\
\x9b\xcb\x65\xc7\x76\xde\x40\x7e\x0a\xc7\x69\x79\x05\x79\xb9\x79\
\x03\xa5\x9c\x29\x7c\xfe\x69\x15\x05\x3d\x55\x04\x0f\xd7\x22\xbc\
\x5b\xc8\x81\x0a\xad\xaf\x2c\x45\x78\x21\x07\xb4\x0a\x16\xa5\x55\
\x88\xbc\xde\x15\x53\x85\xf7\xd9\x38\x28\x52\x82\xff\x1c\xed\xbd\
\x07\x3a\x10\x3b\x23\x23\xf1\x03\x25\x23\x71\xe3\xd1\x2f\xd1\xe8\
\xbb\x62\x46\xa2\x99\x2d\xe8\xb2\x73\x61\xf3\xd7\x18\x1c\xbb\x7b\
\xc0\x15\x99\x0b\x74\x36\x5e\x02\x68\x96\xa2\x7f\x7b\xfc\x04\x45\
\xfa\x10\xa0\x0d\x85\xd9\x08\x27\xd8\x96\x65\x4e\x49\x6f\x6d\xfe\
\xfe\x07\xc6\xa9\x05\xba\x10\x2f\x0b\x0b\x0a\xdd\xab\x3e\x02\x6b\
\x56\x52\x7a\x79\x71\x65\x0d\x13\xe4\xed\x81\x2b\x88\xbd\x31\x6b\
\x62\x96\xd5\x92\xb8\xb4\x6f\x6f\x3c\x58\xfd\x13\x93\xa9\xef\xaa\
\xb3\x1f\xed\x03\x91\x55\xf5\x34\x21\x99\xe2\x65\x79\xf9\xaf\x87\
\x2b\x7f\x27\x87\x79\xb5\x22\x0e\x46\x97\xf5\x8f\xd7\xb7\xb7\x58\
\x67\xb7\xd7\xff\xd9\x58\x7c\xfc\xef\xa3\x27\x6b\x4b\x28\xaf\xae\
\x98\x9d\x65\x48\xc1\xf3\xf1\x1a\x8a\xdd\xda\x3a\xec\xac\xa9\xb3\
\x5d\x11\xd9\x3e\x3c\x42\x8f\xf6\x0e\xd1\xee\x3a\x4a\x9b\xc6\xe0\
\xa2\x5b\x01\xdf\xed\x83\x4f\xfa\x11\x47\xc5\xdb\xbb\xf3\x53\xc4\
\xcf\x00\xae\x75\xcb\xf2\xfe\x00\x04\xc7\x11\xaf\x3b\xe3\xbe\x30\
\x26\xbc\x5c\x5d\x3f\x97\x73\xe8\x0e\x00\x84\xe8\x40\x98\x48\xf8\
\xc6\xf1\xf9\x11\x87\xe9\x49\x3a\x0f\x7d\x3e\x80\x5e\x1a\x86\x0f\
\x12\x35\x49\xef\xdf\x00\xb8\x79\x4b\x82\xf7\x3a\x20\x78\x9b\x9e\
\x27\x21\x99\xa6\x58\x21\x9c\xc1\xcb\x52\x11\x4c\x3a\x98\xff\x14\
\x24\x97\x87\x16\xb3\xed\x8b\x54\x2c\x57\xe9\x2f\xfb\xe8\xc5\x57\
\x90\x4a\x01\xa1\x8c\x5f\x8f\x5d\x19\x11\xd1\xfd\x9d\xdf\x4c\x87\
\x6f\xba\x03\x90\x5a\xd3\x77\xb8\x67\xae\x7f\x4b\xaf\xef\x7a\x5c\
\xf7\x38\x66\xc6\x35\xeb\x63\x0d\xc3\xdc\xbd\x3b\xd3\x20\xa5\xa0\
\x87\x31\xfe\xf1\x16\xbe\xcc\x73\x0c\xe1\x88\x9e\xef\xc6\x59\x1f\
\xdc\x9e\x20\xc8\xc8\x11\xf2\x73\xf5\xee\xf4\xf8\x04\x83\x81\xb1\
\xa9\x39\x2e\x16\x7f\xc8\x21\x87\x33\x0d\xcc\x7b\x85\xaa\x71\x89\
\x10\xc6\x96\x77\x7e\x40\x09\xce\x75\x24\xb0\xe0\x15\x97\x00\xbd\
\x0b\x01\xd9\xe0\xc5\xba\xff\x7d\x68\x70\x86\x45\x30\x32\x33\x18\
\x9a\xbd\xaf\x0e\x7e\xa6\xf4\x1f\x7f\x4f\xad\x52\xb7\x8c\xdd\x5a\
\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\
\x61\x74\x65\x00\x32\x30\x31\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\
\x31\x3a\x34\x39\x3a\x30\x34\x2b\x30\x38\x3a\x30\x30\x0d\x55\x32\
\x5f\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\
\x64\x69\x66\x79\x00\x32\x30\x31\x33\x2d\x30\x39\x2d\x30\x39\x54\
\x32\x31\x3a\x34\x33\x3a\x31\x34\x2b\x30\x38\x3a\x30\x30\xab\x23\
\x00\xfb\x00\x00\x00\x43\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\
\x72\x65\x00\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\
\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\
\x64\x6f\x63\x2f\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\
\x37\x2f\x2f\x69\x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\
\x0a\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\
\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\
\x31\xa7\xff\xbb\x2f\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\
\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\
\x74\x00\x36\x34\xbc\xe0\xa9\x84\x00\x00\x00\x16\x74\x45\x58\x74\
\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\
\x64\x74\x68\x00\x36\x34\x44\x4f\x69\x09\x00\x00\x00\x19\x74\x45\
\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\
\x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\
\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\
\x69\x6d\x65\x00\x31\x33\x37\x38\x37\x33\x34\x31\x39\x34\x73\x18\
\xb5\x0a\x00\x00\x00\x11\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\
\x3a\x53\x69\x7a\x65\x00\x32\x33\x31\x31\x42\xd3\x08\x42\x88\x00\
\x00\x00\x5f\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\
\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\
\x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\
\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\
\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\
\x2f\x73\x72\x63\x2f\x31\x31\x32\x35\x39\x2f\x31\x31\x32\x35\x39\
\x39\x37\x2e\x70\x6e\x67\x07\xf9\x08\xdc\x00\x00\x00\x00\x49\x45\
\x4e\x44\xae\x42\x60\x82\
\x00\x00\x23\xbc\
\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\x04\x00\x00\x00\x5e\x71\x1c\x71\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\
\x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x07\x74\x49\
\x4d\x45\x07\xde\x06\x09\x11\x27\x11\xbb\x39\x36\x05\x00\x00\x21\
\x3a\x49\x44\x41\x54\x78\xda\xed\xdd\x79\x98\x5d\x55\x99\xef\xf1\
\xdf\xca\xc0\x98\x5c\x03\x08\x21\x15\x07\x1a\x11\x22\x7d\xbd\xa8\
\x84\x80\x02\x09\x82\x10\xbb\x89\x19\x80\x40\xe8\xee\x38\x3c\xad\
\x10\xba\x99\x91\x41\x54\xe0\x32\x87\x08\xf6\x6d\x44\x41\x64\xb6\
\x15\xaa\x1a\x52\x61\xe8\x06\x82\x5c\x40\x6c\x49\x50\x2e\xd0\x4d\
\x98\x12\xe4\xa2\x56\x20\x44\xc4\x00\x61\x88\xc9\xea\x3f\x52\xd3\
\xae\x3a\xe7\xd4\x19\xf6\xda\xef\xde\x6b\x7f\x3f\x79\x78\x48\x6a\
\x38\xeb\xdd\x87\xec\x1f\x6f\xad\xf3\x9e\xbd\x9d\x17\x80\xb2\x1a\
\x66\x5d\x00\x00\x3b\x04\x00\x50\x62\x23\xac\x0b\x80\xe4\xb6\x52\
\x9b\xc6\x69\xbd\x56\xaa\xcb\xaf\xb1\xae\x06\x65\xe2\xd8\x03\xb0\
\xe0\x9c\xf6\xd0\x74\xed\xa2\x36\x8d\xd3\x38\x6d\xd6\xef\x53\x6f\
\x69\xa5\xba\xb4\x52\x4f\xa8\xd3\x3f\x6d\x5d\x27\x62\x47\x00\x64\
\xcc\x8d\xd4\x7e\x9a\xa5\xe9\x1a\x5f\xc7\x17\x3f\xa7\x4e\x75\xea\
\x11\xcf\x7f\x24\x04\x42\x00\x64\xc8\xed\xa9\xe3\x75\xb0\xde\xd7\
\xe0\xb7\xbd\xac\x45\xba\xd4\x3f\x6f\x5d\x3d\x62\x44\x00\x64\xc4\
\x7d\x54\x17\xea\xb0\xa6\xbf\xfd\xcf\xba\x5a\xff\xdb\xbf\x62\x7d\
\x14\x88\x0d\x01\x90\x01\x37\x56\x67\xeb\x6b\x2d\x6f\xb8\xbe\xa5\
\x4b\xb5\xc0\xbf\x69\x7d\x34\x88\x09\x01\x10\x98\xdb\x5c\x67\xe8\
\x14\x6d\x99\xd2\xc3\xad\xd2\xb9\xfa\x81\xdf\x60\x7d\x54\x88\x05\
\x01\x10\x94\x1b\xaf\x45\xda\x3d\xe5\x07\xbd\x43\x7f\xeb\xdf\xb0\
\x3e\x32\xc4\x81\x00\x08\xc8\xed\xa9\x4e\x6d\x1f\xe0\x81\x9f\xd2\
\x74\xff\x82\xf5\xd1\x21\x06\x4c\x02\x06\xe3\xe6\xea\xc1\x20\xa7\
\xbf\xf4\x97\x5a\xea\x3e\x6b\x7d\x7c\x88\x01\x01\x10\x84\x1b\xe6\
\x16\xe8\x46\x6d\x1a\x6c\x81\x6d\x74\xaf\xfb\x07\xeb\xa3\x44\xf1\
\xf1\x23\x40\x10\xee\x5a\x7d\x25\x83\x65\x4e\xf7\x97\x58\x1f\x29\
\x8a\x8d\x00\x08\xc0\x9d\xa4\xcb\x32\x59\x68\x83\x66\xf8\x3b\xad\
\x8f\x16\x45\x46\x00\xa4\xce\x4d\xd5\x5d\x1a\x9e\xd1\x62\x6f\x68\
\x2f\xbf\xcc\xfa\x88\x51\x5c\x04\x40\xca\xdc\x2e\x5a\xd2\xf0\xb0\
\x6f\x2b\x56\x68\x92\x7f\xcd\xfa\xa8\x51\x54\x6c\x02\xa6\xca\x8d\
\xd1\xed\x99\x9e\xfe\xd2\x47\xd4\xe1\x78\x53\x37\x9a\x44\x00\xa4\
\xeb\x06\xed\x9c\xf9\x9a\xfb\xeb\x02\xeb\xc3\x46\x51\xf1\x23\x40\
\x8a\xdc\x01\xba\xcf\x64\xe1\xf7\x34\xc1\xff\xc6\xfa\xe8\x51\x44\
\x74\x00\xa9\x71\x4e\xf3\x8d\x96\xde\x44\xe7\x5b\x1f\x3d\x8a\x89\
\x00\x48\xcf\x11\xa9\x4f\xfd\xd7\xef\x48\xf7\x49\xeb\xc3\x47\x11\
\xf1\x23\x40\x4a\xdc\x48\x3d\xa3\x1d\x0d\x0b\x58\xec\x0f\xb2\x7e\
\x0e\x50\x3c\x74\x00\x69\x99\x67\x7a\xfa\x4b\x07\xba\x03\xad\x9f\
\x02\x14\x0f\x1d\x40\x2a\xdc\x26\xfa\x9d\xb6\x35\x2e\x62\x89\xdf\
\xcb\xfa\x79\x40\xd1\xd0\x01\xa4\x63\x7f\xf3\xd3\x5f\xda\xd3\xed\
\x60\x5d\x02\x8a\x86\x00\x48\xc7\x4c\xeb\x02\x72\x54\x05\x0a\x84\
\x00\x48\x81\x73\x9a\x6e\x5d\x83\x24\x02\x00\x0d\x63\x0f\x20\x05\
\x6e\x2f\xfd\xd2\xba\x06\x49\xd2\x06\x8d\xf5\xab\xad\x8b\x40\x91\
\xd0\x01\xa4\x61\xa6\x75\x01\xdd\x86\xe9\x29\x77\x11\x13\x01\xa8\
\x1f\x1d\x40\x0a\xdc\x33\xda\xc5\xba\x86\x84\x15\xea\x50\xbb\xff\
\x7f\xd6\x65\x20\xff\x08\x80\x96\xb9\xb1\x7a\xd9\xba\x86\x8a\x56\
\xa8\x5d\x1d\xc4\x00\x6a\x21\x00\x5a\xe6\x3e\xa9\xc7\xac\x6b\xa8\
\x61\xb9\x3a\x88\x01\x54\x43\x00\xb4\xcc\x1d\xac\xfc\x5f\x96\x8b\
\x18\x40\x45\x6c\x02\xb6\x6e\x9c\x75\x01\x75\xd8\x49\xdf\xd0\x63\
\xee\x79\x77\x21\x5b\x84\xe8\x8f\x00\x68\x5d\x9b\x75\x01\x75\x23\
\x06\x30\x00\x01\xd0\xba\xe2\x04\xc0\x46\xc4\x00\x7a\xb1\x07\xd0\
\x22\xf7\x01\x3d\x1a\xe8\xfe\x3f\x59\x60\x6f\xa0\xe4\x08\x80\x16\
\xb8\xe1\x3a\x4e\xe7\x69\x94\x75\x1d\x2d\x5b\xae\x0e\xb5\xfb\xc7\
\xad\xcb\x40\xf6\x08\x80\xa6\xb9\xdd\xf5\x43\x7d\xca\xba\x8a\x14\
\x11\x03\x25\x44\x00\x34\xc5\x8d\xd2\xf9\x3a\x36\xb3\xdb\x7f\x64\
\x89\x18\x28\x15\x02\xa0\x09\x6e\xa6\x2e\xd7\x07\xac\xab\x08\x8a\
\x18\x28\x09\x02\xa0\x41\xee\x83\xba\x5c\x33\xac\xab\xc8\xc8\x72\
\xb5\xab\x83\x18\x88\x19\x01\xd0\x80\x68\x36\xfd\x1a\x43\x0c\x44\
\x8c\x00\xa8\x5b\x74\x9b\x7e\x8d\x79\x5e\x1d\xc4\x40\x7c\x08\x80\
\xba\x44\xbc\xe9\xd7\x18\x62\x20\x32\x04\x40\x1d\x4a\xb0\xe9\xd7\
\x18\x62\x20\x1a\x04\xc0\x10\x4a\xb5\xe9\xd7\x18\x62\x20\x02\x04\
\x40\x0d\x25\xdd\xf4\x6b\x0c\x31\x50\x68\x04\x40\x55\x25\xdf\xf4\
\x6b\xcc\xf3\xea\x50\xbb\x7f\xc2\xba\x0c\x34\x8a\x00\xa8\xc8\x8d\
\xd6\x79\x6c\xfa\x35\x8c\x18\x28\x1c\x02\xa0\x02\x36\xfd\x5a\x42\
\x0c\x14\x08\x01\x30\x00\x9b\x7e\x29\x21\x06\x0a\x81\x00\xe8\x87\
\x4d\xbf\xd4\x3d\xaf\x76\x75\x10\x03\xf9\x45\x00\xf4\x62\xd3\x2f\
\x18\x62\x20\xb7\x08\x00\x49\x6c\xfa\x65\xe2\x39\x75\x10\x03\x79\
\x43\x00\x88\x4d\xbf\x4c\x11\x03\xb9\x52\xfa\x00\x60\xd3\xcf\x04\
\x31\x90\x13\xa5\x0e\x00\x36\xfd\x8c\x11\x03\xe6\x4a\x1c\x00\x6c\
\xfa\xe5\x04\x31\x60\xa8\xa4\x01\xc0\xa6\x5f\xee\x3c\xa7\x0e\xb5\
\xfb\x27\xad\xcb\x28\x9b\x52\x06\x00\x9b\x7e\xb9\x15\x2c\x06\xdc\
\x36\x1a\xaf\xcd\xd4\xa5\x97\xfd\x9f\xad\x0f\x32\x4f\x4a\x17\x00\
\x6c\xfa\x15\x40\x2a\x31\xe0\xb6\xd2\x5f\x6b\x77\xb5\x69\xbc\xc6\
\xab\x4d\x9b\x76\x7f\x78\x83\x5e\xd1\xef\xd5\xa5\xdf\xeb\x39\xdd\
\xe5\x9f\xb7\x3e\x54\x6b\xa5\x0a\x00\x36\xfd\x0a\xa5\xe9\x18\x70\
\x7f\xa1\xe9\x9a\xae\xc9\x1a\x31\xe4\x97\x3e\xad\x45\xba\x5d\x4b\
\xfc\x06\xeb\x83\xb5\x52\xa2\x00\x60\xd3\xaf\x90\x9e\x53\xbb\x3a\
\xea\x8d\x01\xb7\xad\x8e\xd5\x2c\x7d\xbc\xc1\x35\x5e\xd1\x9d\xba\
\xd2\xff\xca\xfa\x50\x2d\x94\x24\x00\xd8\xf4\x2b\xb8\x3a\x62\xc0\
\x6d\xa9\x93\x75\xaa\x46\x37\xb9\x82\x57\xbb\xbe\xe9\x57\x58\x1f\
\x68\xd6\x4a\x11\x00\xd1\x6d\xfa\xfd\x42\xaf\xe8\xf3\xda\xc2\xba\
\x8c\xcc\x55\x8d\x01\x37\x42\x5f\xd5\xd9\x2d\xdf\xa4\x75\x9d\xae\
\xd2\x79\x7e\x95\xf5\x61\x66\xca\x47\xfe\x4b\x1f\x54\xa7\x79\x11\
\x69\xfe\xda\xa0\x6f\x7a\x79\x69\x0b\xcd\x56\xbb\xde\x32\xaf\x27\
\xfb\x5f\xcf\xe8\x3c\xfd\xaf\xc4\x7f\xe3\x43\xf4\x6c\x6a\x8f\xbe\
\x46\x67\x69\x73\xeb\x43\xcc\xee\x97\x79\x01\x41\x0f\x6e\xb8\x4e\
\xd4\x1b\xe6\x65\xa4\xf9\xeb\x7e\xed\x91\x38\xc2\xd2\xc7\x80\x46\
\xe8\xfb\xa9\x3f\xf6\x63\xfa\x80\xf5\xe1\x65\xf5\x2b\xe2\x1f\x01\
\xa2\xdb\xf4\x7b\x52\x67\xf8\x7f\xaf\x78\xa4\x5b\xe8\x60\xcd\xd6\
\xc1\x25\xfc\xa1\x60\xb9\x46\x68\x87\x00\x8f\xfb\xb2\x66\xf9\x47\
\xac\x0f\x2e\x0b\x91\x06\x40\x4e\x37\xfd\xde\xed\x7d\x35\xba\x51\
\x2f\xe9\xdb\xfa\x71\xed\x17\xab\x4a\x1c\x03\x21\xbc\xab\xaf\xfa\
\x1f\x5b\x17\x11\x5e\x94\x01\xe0\x66\xe9\x9f\x73\xb7\xe9\xf7\xac\
\xe6\xe9\x71\xcd\xd5\xcc\xba\x5e\x9f\xee\xf3\xb6\x16\x6b\xa1\x7e\
\xea\xdf\xad\xf3\xd8\x89\x81\xf4\xcc\xd7\x99\xb1\x4f\x08\x44\x17\
\x00\xee\x83\xfa\x9e\xa6\x5b\x57\x31\xc0\xbb\xba\x48\x17\xf9\xf7\
\xba\x2b\xdc\x5a\xd3\x34\x53\x53\x87\x3c\x45\x5f\xd3\x9d\xea\xd4\
\x3d\x7e\x6d\x13\xcf\x02\x31\x90\x8e\x1b\xfc\x97\xad\x4b\x08\x2b\
\xaa\x00\x70\xc3\x75\xbc\xce\xcd\xdd\xa4\xdf\xff\xd5\x3c\xff\xdc\
\xa0\x5a\x37\xd7\x01\xda\x45\x6d\x1a\xd7\xfd\xcf\x28\x49\x7f\x52\
\x97\xba\xb4\x52\x5d\x5a\xa9\x27\xf4\xf3\x56\xa7\xd6\x89\x81\x14\
\x9c\xe6\x17\x58\x97\x10\x52\x44\x01\xe0\x26\xea\xaa\xdc\x6d\xfa\
\xad\xd6\xd7\xfd\x0d\x75\x55\x3f\x4a\xeb\xfd\xdb\x21\x4a\x20\x06\
\x5a\xb2\x41\x5f\xf0\xff\x66\x5d\x44\x38\x91\x04\x80\x1b\xad\xf3\
\x75\xac\x86\x59\xd7\x31\xc0\x75\x3a\xd5\xff\xc1\xba\x88\x8d\x88\
\x81\xa6\xad\xd1\x5e\xfe\x69\xeb\x22\x42\x89\x22\x00\x72\xb9\xe9\
\xf7\x8c\xe6\xf9\x07\xad\x8b\x18\x88\x18\x68\xca\x72\x4d\xf2\x7f\
\xb4\x2e\x22\x8c\xc2\x07\x40\x4e\x37\xfd\x2e\xd4\xc5\x3d\x9b\x7e\
\xf9\x43\x0c\x34\xec\x6e\xff\x57\xd6\x25\x84\x51\xe8\x00\x28\xd2\
\xa6\x5f\xfe\x10\x03\x0d\x99\xe6\xef\xb2\x2e\x21\x84\x02\x07\x40\
\x4e\x37\xfd\x4e\xf1\x37\x5a\x17\xd1\x08\x62\xa0\x4e\x4f\x69\x37\
\xbf\xde\xba\x88\xf4\x15\x34\x00\xd8\xf4\x4b\x17\x31\x50\x87\xaf\
\xfa\x6b\xac\x4b\x48\x5f\x21\x03\x80\x4d\xbf\x30\x88\x81\x9a\xba\
\xf4\xd1\x66\x86\xb2\xf2\xad\x70\x01\xc0\xa6\x5f\x68\xc4\x40\x55\
\xdf\xf2\x17\x58\x97\x90\xb6\x42\x05\x40\x4e\x37\xfd\xee\xd7\x31\
\x45\xd8\xf4\x6b\x0c\x31\x50\xc1\x1a\x7d\xc8\xff\xc9\xba\x88\x74\
\x15\x28\x00\xd8\xf4\xcb\x1e\x31\x30\xc0\xdf\xf8\x9f\x5a\x97\x90\
\xae\x82\x04\x00\x9b\x7e\x96\x88\x81\x5e\xb7\xf8\x39\xd6\x25\xa4\
\xab\x10\x01\xc0\xa6\x5f\x1e\x10\x03\x92\xd6\xe8\xfd\x7e\x9d\x75\
\x11\x69\xca\x7d\x00\xb0\xe9\x97\x2f\xa5\x8f\x81\x83\xfc\x62\xeb\
\x12\xd2\x94\xeb\x00\xc8\xed\xa6\xdf\xbc\xb2\xdf\x51\xa6\xc4\x31\
\x70\x85\x3f\xd6\xba\x84\x34\xe5\x38\x00\x72\xb9\xe9\xf7\xaa\x4e\
\xf1\x37\x59\x17\x91\x17\xa5\x8c\x81\x97\xfc\x87\xad\x4b\x48\x53\
\x4e\x03\x20\x97\x9b\x7e\x5e\xd7\xe9\x54\xff\x9a\x75\x19\x79\x53\
\xba\x18\xd8\x29\xa6\xdb\x87\xe4\x32\x00\xdc\x2c\x5d\xae\xf1\xd6\
\x55\x0c\xf0\x8c\x8e\xf6\x0f\x59\x17\x91\x5f\x25\x8a\x81\xfd\x62\
\xda\xfc\xcd\xd7\xff\x63\x25\xb9\x0f\xba\x45\xba\x2d\x67\xa7\xff\
\xbb\x3a\x4b\xbb\x71\xfa\xd7\xe2\xd7\xfa\x0e\x7f\xb8\xb6\xd5\xe1\
\xea\x50\x74\x03\xb3\x09\xe3\xac\x0b\x48\x53\xae\x02\xc0\x0d\x77\
\x27\x69\x59\xee\xf6\xfc\xef\xd7\xc7\xfd\x79\xe5\xdc\xf3\x6f\x54\
\x29\x62\xa0\xcd\xba\x80\x34\xe5\x28\x00\xdc\x44\x2d\xd5\x65\x39\
\xdb\xf3\x7f\x55\x5f\xf4\x07\x94\x7d\xcf\xbf\x51\x91\xc7\x00\x01\
\x90\x3e\x37\xda\xfd\x1f\x2d\xc9\xd9\x9e\xbf\xd7\xb5\x9a\xc0\x9e\
\x7f\xb3\xa2\x8d\x81\xa8\x7e\x04\xc8\xc5\x26\x20\x9b\x7e\xb1\x8b\
\x6a\x8b\xf0\x01\xff\x59\xeb\x12\xd2\x63\x1e\x00\x39\x9d\xf4\xbb\
\x40\xf3\xf9\xa9\x3f\x6d\x91\xc4\xc0\x93\x7e\x37\xeb\x12\xd2\x63\
\x1a\x00\x39\x9d\xf4\xfb\x99\x8e\xe1\xa7\xfe\x70\x0a\x1f\x03\xf7\
\xfb\x03\xac\x4b\x48\x8f\xe1\x1e\x80\x9b\xa8\x47\x73\xb9\xe9\xf7\
\x39\x4e\xff\x90\x0a\xbf\x37\xb0\xd2\xba\x80\x34\x19\x05\x40\xf7\
\xa6\xdf\x27\xad\x0f\x3f\x81\x4d\xbf\x0c\x15\x38\x06\xba\xac\x0b\
\x48\x53\x23\xf7\xa9\xad\xc0\x39\xed\xac\xb6\x7e\x77\xb8\x1b\xa3\
\x55\xbd\x77\xb7\xeb\xd2\x4b\xfe\xb7\x15\xbf\x2b\x8f\x9b\x7e\x4f\
\x6b\x1e\x9b\x7e\x59\xf3\x6b\xd5\xa1\x8e\x82\xfd\x50\x10\x55\x00\
\x34\xbd\x07\xe0\x36\xd3\x01\x9a\xa1\x2f\x68\xfb\x9a\x5f\xf6\xac\
\x16\x69\x91\x1e\xe9\xbb\xc9\x72\x2e\x37\xfd\xde\xd1\x85\x6c\xfa\
\x59\x2b\x4c\x0c\xcc\xf1\xb7\x58\x97\x90\x9e\x26\x02\xc0\x6d\xad\
\x69\x9a\xa1\xa9\xda\xb2\xee\x6f\x59\xa5\x3b\xb4\x48\x8b\xb5\x8e\
\x4d\x3f\xd4\x56\x80\x18\x98\xec\x7f\x6e\x5d\x42\x7a\x1a\x0c\x00\
\x37\x5a\xa7\xeb\xa4\x26\xff\xe3\xac\xd6\x5a\x7d\xc8\xfa\x80\x07\
\x78\x55\x27\xfb\x1f\x5b\x17\x81\x81\x72\x1d\x03\x7f\xe1\x5f\xb4\
\x2e\x21\x3d\x0d\x04\x80\x1b\xa9\xa3\x75\x96\xb6\xb5\x2e\x39\x35\
\x5e\xd7\xea\x34\xde\xde\x9b\x5f\xb9\x8c\x81\x17\xfc\x47\xac\x4b\
\x48\x53\xdd\xaf\x02\xb8\xc3\xb4\x4c\x97\x47\x74\xfa\x3f\xad\x29\
\xfe\xab\x9c\xfe\x79\xd6\xef\x95\x82\x07\xac\x6b\xe9\xb5\xc8\xba\
\x80\x74\xd5\xd5\x01\xb8\xed\x75\x8b\x26\x5b\x97\x9a\xa2\x77\x74\
\x81\x2e\x61\xd3\xaf\x38\xdc\x70\xad\xd2\xd6\xd6\x55\x48\x8a\xec\
\x6a\x00\x75\x75\x00\x6e\x77\x3d\x1a\xd5\xe9\xff\x33\x7d\xdc\x9f\
\xcf\xe9\x5f\x24\x7e\xbd\xee\xb0\xae\x41\x92\xf4\x07\x3d\x6c\x5d\
\x42\xba\x86\x0c\x00\x77\xa4\x7e\x9e\xbb\x4b\x72\x37\xef\x55\xcd\
\xf5\x9f\xf3\xcb\xad\xcb\x40\xc3\xf2\xd1\x7a\xdf\x15\xdb\x1d\x82\
\x6b\x06\x80\x1b\xe6\x2e\xd2\x4f\xb4\xb9\x75\x91\x29\xf1\xba\x46\
\x13\xd8\xf3\x2f\xa8\x7b\xf5\x8e\x75\x09\xca\x4b\x0c\xa5\xa8\x46\
\x00\xb8\x4d\xb4\x48\x67\x58\x17\x98\x1a\x36\xfd\x0a\xcd\xbf\xa5\
\x85\xd6\x35\x68\xb5\xee\xb1\x2e\x21\x6d\xb5\x3a\x80\x2b\x35\xcd\
\xba\xbc\x94\xbc\xa3\x6f\xeb\x13\x31\x8d\x6f\x94\xd2\x59\xb2\xbe\
\x27\xcf\xf9\xfe\x2d\xeb\x27\x21\x6d\x55\x03\xc0\x9d\xa4\xaf\x58\
\x17\x97\x92\xfb\xd8\xf4\x8b\x81\x5f\xae\xab\x4c\x0b\x78\x41\x3f\
\xb0\x7e\x0e\xd2\x57\xe5\x65\x40\x37\x55\x77\x69\xb8\x75\x71\x29\
\x60\xd2\x2f\x22\x6e\x3b\x2d\xd7\x68\xb3\xe5\x8f\xf4\x37\x5b\x3f\
\x03\xe9\xab\xd8\x01\xb8\x9d\x75\x73\x04\xa7\x3f\x9b\x7e\x91\xf1\
\xab\xb4\xc0\x70\xf9\x88\x6e\x07\xd2\xa7\x42\x07\xe0\xde\xa7\x25\
\xda\xc5\xba\xb0\x96\x3d\xad\xa3\xf9\xa9\x3f\x36\x6e\x4b\x2d\x1f\
\xe2\xfd\xa7\xe1\xdc\xe9\xbf\x60\x7d\xfc\xe9\xab\xd4\x01\x9c\x5d\
\xf8\xd3\x9f\x4d\xbf\x48\xf9\xb7\x74\xaa\xd9\xe2\xd3\xdc\x44\xeb\
\xe3\x4f\xdf\xa0\x0e\xc0\xed\xa0\x67\xb4\xa9\x75\x59\x2d\xb9\x4f\
\xc7\x30\xea\x13\x2f\xf7\x4f\x3a\xc1\x68\xe9\x08\x7b\x80\xc1\x01\
\x70\x93\xfe\xce\xba\xa8\x16\xac\xd2\xc9\xfe\x5f\xac\x8b\x40\x48\
\x6e\xb8\xfe\x5d\x07\x1a\x2d\x3e\xd1\xff\xda\xfa\xf8\xd3\x35\x20\
\x00\xdc\x27\xf4\x98\x9c\x75\x51\x4d\xf2\xba\x46\xa7\xf9\x3f\x5a\
\x97\x81\xd0\xdc\x18\x2d\xd5\x47\x4d\x96\x8e\xae\x07\x18\x18\x00\
\x77\x6b\xaa\x75\x49\x4d\x5a\xa6\x79\xfc\xd4\x5f\x16\x6e\x82\x1e\
\xd1\xfb\x4c\x96\x8e\xac\x07\x48\x6c\x02\xba\x03\x0a\x7a\xfa\xbf\
\xa3\x6f\xb1\xe9\x57\x26\xfe\x19\xcd\x91\xcd\x68\xd7\x39\xd6\xc7\
\x9e\xae\xe4\xab\x00\xc7\x58\x97\xd3\x94\xfb\xf4\x71\x7f\x81\xb7\
\x1e\x13\x45\xa6\xfc\xdd\xda\x5f\xab\x0c\x16\x9e\xe6\x76\xb7\x3e\
\xf6\x34\xf5\xfb\x11\xc0\x6d\xa6\xd5\x0d\x5c\xe8\x33\x1f\xd8\xf4\
\x2b\x31\xf7\x21\x2d\xd2\x27\x32\x5f\x36\xaa\x7d\x80\xfe\x1d\xc0\
\xe7\x0a\x76\xfa\x7b\xfd\x48\x13\x38\xfd\xcb\xcb\xbf\xa4\xbd\xf5\
\xaf\x99\x2f\x1b\x55\x0f\xd0\x3f\x00\x66\x5a\x17\xd3\x90\x65\x9a\
\xec\xbf\xc6\x9e\x7f\xb9\xf9\xb5\x3a\x5c\xe7\x28\xeb\x1b\x5c\x9e\
\x63\x7d\xdc\xe9\xe9\xfd\x11\xc0\x0d\xd3\x4a\x6d\x67\x5d\x4e\x9d\
\xde\xd1\xf9\xba\x84\x9f\xfa\xb1\x91\xdb\x5b\x97\xe8\x33\x99\x2e\
\x19\xcd\x6b\x01\x7d\x1d\xc0\xa7\x0b\x73\xfa\x2f\x66\xd3\x0f\xfd\
\xf9\x5f\xf8\xbd\x35\x4b\xcf\x64\xb8\xe4\x39\xd6\xc7\x9c\x96\xbe\
\x00\x28\xc6\xc6\xc6\x2a\xfd\x9d\x3f\x88\x41\x5f\x0c\xe4\x3b\xf5\
\x3f\x75\x54\x66\xf7\xed\x8b\x66\x1f\xa0\x2f\x00\x6c\x26\xab\x1a\
\xc1\xa6\x1f\x6a\xf0\xeb\xfd\xd5\xfa\xa8\xfe\x51\xf7\x65\x72\xe5\
\xa0\x73\xac\x8f\x37\x1d\x7d\x7b\x00\xbf\xd4\x5e\xd6\xc5\xd4\xb4\
\x4c\x47\xfb\xc8\x2e\xc9\x8c\x30\xdc\x18\x1d\xac\x99\xfa\x7c\xe0\
\xbb\x50\x46\xb1\x0f\xd0\x17\x00\x2f\xea\xc3\xd6\xc5\x54\xc5\xa6\
\x1f\x1a\xe6\x36\xd5\x01\xda\x5d\x6d\x9a\xa8\x30\x6f\xe3\x8d\x62\
\x1e\xa0\x3b\x00\x9c\xd3\x3b\xda\xc4\xba\x98\x2a\x16\xeb\x18\x1f\
\xe5\xd5\x58\x90\x05\x37\x4c\xff\xa9\x5d\x83\x3c\x74\x04\x3d\x40\
\xcf\x1e\xc0\xd6\x39\x3d\xfd\x57\xe9\x6f\xfd\x41\x9c\xfe\x68\x9e\
\xdf\xa0\xf3\x02\x3d\xf4\x39\xd6\xc7\xd6\xba\x9e\x00\x68\xb3\x2e\
\xa4\x02\xaf\xab\x35\xc1\xff\xc4\xba\x0c\x14\x5e\xbb\x96\x05\x79\
\xdc\x08\x5e\x0b\xe8\x09\x80\x71\xd6\x85\x0c\xb2\x4c\x93\xfd\x51\
\x4c\xfa\xa1\x75\xf4\x00\xd5\xf5\x04\xc0\xbb\xd6\x85\x0c\x70\xb6\
\x3e\xc1\x9e\x3f\x52\x43\x0f\x50\x45\x4f\x00\x64\x35\x40\x51\x9f\
\xd7\xfd\xb9\xec\xf9\x23\x3d\x01\x7b\x80\xb3\xad\x8f\xad\x35\x3d\
\x01\xb0\xd2\xba\x90\x84\xdf\x59\x17\x80\xe8\x84\xea\x01\xbe\x50\
\xec\x1e\xa0\x3b\x00\xfc\x9b\x7a\xc3\xba\x94\x7e\xf2\x15\x47\x88\
\x00\x3d\x40\x65\x7d\xa3\xc0\x79\xfa\x21\x20\x4f\xb5\x20\x16\xf4\
\x00\x15\xf4\x05\x40\x9e\xfe\xaf\x9b\xa7\x5a\x10\x09\x7a\x80\x4a\
\xe8\x00\x50\x1e\xf4\x00\x83\xf4\x05\x40\x9e\x86\x1a\xf3\x54\x0b\
\xa2\x41\x0f\x30\x58\xdf\x9b\x81\x76\xcc\xcd\xdd\x4f\x5f\x51\x9b\
\xdf\x60\x5d\x04\x62\xc4\xfb\x02\x06\xea\xed\x00\xfc\x0b\xfa\x2f\
\xeb\x62\xba\xdd\xc1\xe9\x8f\x30\xe8\x01\x06\xea\x7f\x51\xd0\x4e\
\xeb\x62\x72\x56\x07\x62\xc4\x3e\x40\x42\xfe\x02\xe0\x4d\xdd\x67\
\x5d\x02\xe2\x45\x0f\x90\xd4\x2f\x00\xfc\xaf\xf5\x5b\xeb\x72\x24\
\xdd\xed\xf3\xf6\xbe\x04\xc4\x85\x1e\xa0\x9f\xe4\xad\xc1\x3a\xad\
\xcb\x91\xb4\xd0\xba\x00\xc4\x8d\x1e\xa0\xbf\xc4\xdd\x81\xdd\x87\
\xf5\xac\x36\x35\xad\x67\xb9\x76\xe5\x6d\x40\x08\x8b\xd7\x02\xfa\
\x24\x3a\x00\xff\xff\x75\x85\x71\x3d\x67\x72\xfa\x23\x34\x7a\x80\
\x3e\x2e\x79\x57\x25\xb7\xb5\x5e\x30\xba\xef\xba\x24\x3d\xea\x27\
\x59\x3f\x21\x28\x03\x7a\x80\x1e\xc9\x3d\x00\xf9\xd7\x74\xb1\x61\
\x35\xa7\x99\x3e\x17\x28\x0d\x7a\x80\x1e\x6e\xe0\x7d\x15\xdd\xe6\
\x7a\x5e\xe3\x4d\x6a\xf9\x37\x7f\xb0\xf5\xd3\x81\xb2\xa0\x07\xd8\
\x68\xd8\xc0\x0f\xf8\xb7\x75\x96\x49\x25\xeb\x75\x86\xf5\x93\x81\
\xf2\xa0\x07\xd8\xc8\x55\xba\xb3\xb2\xfb\x89\x8e\xcc\xbc\x92\x13\
\xfc\x3f\x5b\x3f\x19\x28\x13\x7a\x00\xa9\x42\x07\x20\x49\xfa\x7b\
\xfd\x2a\xe3\x3a\xae\xe6\xf4\x47\xb6\xe8\x01\xa4\x2a\x1d\x80\xe4\
\xc6\xeb\xd1\x0c\x2f\x15\xfe\xa0\x0e\xe4\xe5\x3f\x64\x8d\x1e\xa0\
\x5a\x07\x20\xff\x7b\xcd\xca\xec\x52\xe1\xbf\xd1\xa1\x9c\xfe\xc8\
\x1e\x3d\x40\xd5\x0e\x40\x92\xdc\x5c\xdd\x98\x41\x05\x6f\xe8\xd3\
\xfe\x29\xeb\xa7\x01\xe5\x44\x0f\x30\xac\xfa\xa7\xfc\x4d\x3a\x3a\
\xf8\x9d\xd6\x5f\xd1\x54\x4e\x7f\x58\xa1\x07\xa8\xd1\x01\x48\x92\
\xdb\x57\xb7\x6a\xdb\x60\xab\x3f\xa6\x19\x9e\x7b\x00\xc0\x50\xd9\
\x7b\x80\x61\xb5\x3f\xed\x7f\xae\x89\x7a\x3c\xd0\xda\xed\xda\x87\
\xd3\x1f\xb6\xca\xde\x03\x0c\xd1\x01\x48\x92\xdb\x42\xd7\x6b\x76\
\xca\xeb\x7a\x9d\xe5\xcf\xb7\x3e\x78\xa0\xec\x3d\xc0\xb0\xa1\xbf\
\xc4\xaf\xf5\x87\xeb\xba\x94\xd7\x3d\x92\xd3\x1f\xf9\x50\xee\x1e\
\xa0\x8e\x0e\x40\x92\xdc\xcc\x94\x2f\xd4\xb1\x95\x7f\xdd\xfa\xd0\
\x81\x8d\xca\xdc\x03\xd4\xd1\x01\x00\x71\x2b\x73\x0f\x40\x00\x00\
\x25\xbe\x4e\x20\x01\x00\x94\xb8\x07\x20\x00\x00\xa9\xb4\x3d\x00\
\x01\x00\xa8\xbc\x3d\x00\x01\x00\x6c\x54\xca\x1e\x80\x00\x00\x24\
\x95\xb5\x07\x20\x00\x80\x1e\xe1\x7a\x80\x4f\x59\x1f\x5a\x35\x04\
\x00\xd0\x2d\x60\x0f\x70\x8e\xf5\xb1\x55\x43\x00\x00\x7d\x4a\xd7\
\x03\x10\x00\x40\xaf\xf2\xf5\x00\x04\x00\xd0\x5f\xc9\x7a\x00\x02\
\x00\xe8\xa7\x6c\x3d\x00\x01\x00\x24\x95\xaa\x07\x20\x00\x80\x84\
\x72\xf5\x00\x04\x00\x30\x50\x89\x7a\x00\x02\x00\x18\xa0\x4c\x3d\
\x00\x01\x00\x0c\x56\x9a\x1e\x80\x00\x00\x06\x29\x4f\x0f\x40\x00\
\x00\x95\x94\xa4\x07\x20\x00\x80\x0a\xca\xf2\xde\x40\x02\x00\xa8\
\x2c\x54\x0f\x30\x3d\x4f\x3d\x00\x01\x00\x54\x54\x8e\x1e\x80\x00\
\x00\xaa\x29\x41\x0f\x40\x00\x00\x55\x94\xa1\x07\x20\x00\x80\xea\
\xa2\xef\x01\x08\x00\xa0\xaa\xf8\x7b\x00\x02\x00\xa8\x25\xf2\x1e\
\x80\x00\x00\x6a\x88\xbd\x07\x20\x00\x80\xda\xa2\xee\x01\x08\x00\
\xa0\xa6\xb8\x7b\x00\x02\x00\x18\x4a\xc4\x3d\x00\x01\x00\x0c\x21\
\xe6\x1e\x80\x00\x00\x86\x16\x6d\x0f\x40\x00\x00\x43\x8a\xb7\x07\
\x20\x00\x80\x7a\x44\xda\x03\x10\x00\x40\x1d\x62\xed\x01\x08\x00\
\xa0\x3e\x51\xf6\x00\x04\x00\x50\x97\x38\x7b\x00\x02\x00\xa8\x57\
\x84\x3d\x00\x01\x00\xd4\x29\xc6\x1e\x80\x00\x00\xea\x17\x5d\x0f\
\x40\x00\x00\x75\x8b\xaf\x07\x20\x00\x80\x46\x44\xd6\x03\x10\x00\
\x40\x03\x62\xeb\x01\x08\x00\xa0\x31\x51\xf5\x00\x04\x00\xd0\x90\
\xb8\x7a\x00\x02\x00\x68\x54\x44\x3d\x00\x01\x00\x34\x28\xa6\x1e\
\x80\x00\x00\x1a\x17\x4d\x0f\x40\x00\x00\x0d\x8b\xa7\x07\x20\x00\
\x80\x66\x44\xd2\x03\x10\x00\x40\x13\x62\xe9\x01\x08\x00\xa0\x39\
\x51\xf4\x00\x04\x00\xd0\x94\x38\x7a\x00\x02\x00\x68\x56\x04\x3d\
\x00\x01\x00\x34\x29\x86\x1e\x80\x00\x00\x9a\x57\xf8\x1e\x80\x00\
\x00\x9a\x56\xfc\x1e\x80\x00\x00\x5a\x51\xf0\x1e\x80\x00\x00\x5a\
\x50\xf4\x1e\x80\x00\x00\x5a\x53\xe8\x1e\x80\x00\x00\x5a\x52\xec\
\x1e\x80\x00\x00\x5a\x15\xae\x07\xf8\x64\xe8\xd2\x09\x00\xa0\x45\
\x01\x7b\x80\x73\x42\xd7\x4e\x00\x00\xad\x2b\x6c\x0f\x40\x00\x00\
\x2d\x2b\x6e\x0f\x40\x00\x00\x69\x28\x68\x0f\x40\x00\x00\x29\x28\
\xea\x6b\x01\x04\x00\x90\x8e\x50\x3d\xc0\x8c\x90\x3d\x00\x01\x00\
\xa4\xa2\x98\x3d\x00\x01\x00\xa4\xa5\x80\x3d\x00\x01\x00\xa4\xa4\
\x88\x3d\x00\x01\x00\xa4\xa7\x70\x3d\x00\x01\x00\xa4\xa6\x78\x3d\
\x00\x01\x00\xa4\xa9\x60\x3d\x00\x01\x00\xa4\xa8\x68\x3d\x00\x01\
\x00\xa4\xab\x50\x3d\x00\x01\x00\xa4\xaa\x58\x3d\x00\x01\x00\xa4\
\xad\x40\x3d\x00\x01\x00\xa4\xac\x48\x3d\x00\x01\x00\xa4\xaf\x30\
\x3d\x00\x01\x00\xa4\xae\x38\x3d\x00\x01\x00\x84\x50\x90\x1e\x80\
\x00\x00\x02\x28\x4a\x0f\x40\x00\x00\x61\x14\xa2\x07\x20\x00\x80\
\x20\x8a\xd1\x03\x10\x00\x40\x28\x05\xe8\x01\x08\x00\x20\x90\x22\
\xf4\x00\x04\x00\x10\x4e\xee\x7b\x00\x02\x00\x08\x26\xff\x3d\x00\
\x01\x00\x84\x14\xae\x07\x78\xde\xdd\xe3\xae\x73\x5f\x76\xef\x6f\
\xe5\x61\x9c\xaf\xef\xcb\x66\x6a\x61\xaa\xe5\x6f\xe5\x5f\x0f\xf2\
\xb4\x00\x39\xe3\xe6\xe8\xa7\x41\x17\x58\xaf\x87\xd5\xa9\x4e\xff\
\x62\x33\xdf\x4c\x07\x00\x84\x15\xaa\x07\xe8\x31\x5c\x53\xf4\x5d\
\xfd\xc6\x3d\xee\xce\x70\xa3\x1a\xfd\x66\x02\x00\x08\x2a\xe0\x3e\
\x40\xd2\x6e\xba\x48\xcb\xdd\x3f\xb8\x91\x8d\x7c\x13\x01\x00\x84\
\x16\xba\x07\xe8\x33\x56\x57\x68\x99\x9b\x5d\xff\x37\x10\x00\x40\
\x60\x99\xf5\x00\x1b\xed\xa4\x76\xb7\xd4\xed\x53\xdf\x17\x13\x00\
\x40\x78\xd9\xf5\x00\x1b\xed\xa1\x07\xdc\x29\xf5\x7c\x21\x01\x00\
\x04\x97\x71\x0f\x20\x49\xc3\xf5\x1d\x77\xa3\xdb\x74\xa8\x2f\x23\
\x00\x80\x2c\x64\xdd\x03\x48\xd2\x5c\x3d\xe4\xda\x6a\x7f\x09\x01\
\x00\x64\xc0\xa0\x07\x90\xa4\x49\x7a\xd4\x4d\xaa\xf5\x05\x04\x00\
\x90\x0d\x8b\x1e\x40\x6a\xd3\x83\xb5\x22\x80\x00\x00\x32\x61\xd4\
\x03\x48\x9b\x69\x61\xf5\x1f\x04\x08\x00\x20\x2b\x36\x3d\x80\xd4\
\xa6\x85\xd5\xb6\x03\x09\x00\x20\x23\x66\x3d\x80\x34\x49\x57\x57\
\xfe\x04\x01\x00\x64\xc7\xaa\x07\x90\xe6\x56\x9e\x0b\x20\x00\x80\
\xcc\x18\xf6\x00\xd2\xfc\x4a\xd3\x81\x04\x00\x90\x25\xbb\x1e\x60\
\xb8\x2e\x1b\xfc\x41\x02\x00\xc8\x90\xdf\xa0\x1f\x9a\x2d\xbe\xc7\
\xe0\xb7\x09\x11\x00\x40\xb6\x3e\x63\xb8\xf6\x85\x03\xdf\x2c\x4c\
\x00\x00\x19\x72\x13\xd5\xc0\x9b\x75\x53\xb7\x93\xbe\x96\xfc\x00\
\x01\x00\x64\x69\xbe\x9c\xe9\xfa\x67\x25\xaf\x1a\x44\x00\x00\x99\
\x71\xfb\x69\x7f\xe3\x12\xc6\xea\xd8\xfe\x7f\x24\x00\x80\xec\xcc\
\xb1\x2e\x60\x60\x0d\x04\x00\x90\x11\xe7\x34\xdd\xba\x06\x49\xbb\
\xb9\x1d\xfa\xfe\x40\x00\x00\x59\xd9\x53\xe3\xac\x4b\x90\x24\xcd\
\xec\xfb\x2d\x01\x00\x64\x65\xa6\x75\x01\x83\xeb\x20\x00\x80\xac\
\xcc\xb4\x2e\xa0\xdb\x3e\x7d\x77\x13\x22\x00\x80\x4c\xb8\x09\xda\
\xc5\xba\x86\x6e\xc3\x35\xad\xe7\xb7\x04\x00\x90\x8d\x29\xd6\x05\
\x54\xaa\x85\x00\x00\xb2\xd1\xd6\xfa\x43\xa4\x5f\x0b\x01\x00\x64\
\x83\x00\x00\x4a\x2c\x1f\x2f\x01\x0e\xa8\x85\x00\x00\xb2\x91\xa7\
\x0e\x60\x9b\x9e\x6b\x04\x12\x00\x40\x36\xf2\xd4\x01\xf4\x56\x43\
\x00\x00\x19\x70\x23\xb4\x9d\x75\x0d\x09\x04\x00\x90\xa1\xd1\x39\
\x3b\xd7\xc6\x6c\xfc\x57\xbe\x8a\x02\x62\xf5\xba\xd6\x59\x97\x90\
\xb0\x6a\xe3\xbf\x08\x00\x20\x03\xde\x6b\xa5\x75\x0d\x09\x5d\x1b\
\xff\x45\x00\x00\xd9\xc8\x53\x00\xac\xa7\x03\x00\xb2\xd5\x65\x5d\
\x40\x3f\xab\xfc\xfa\x8d\xbf\x21\x00\x80\x6c\xe4\xa9\x03\xe8\xad\
\x85\x00\x00\xb2\x91\xa7\x0e\xa0\xb7\x16\x02\x00\xc8\xc6\x4b\xd6\
\x05\x54\xaa\x85\x00\x00\xb2\x71\x9f\xbc\x75\x09\xbd\xee\xed\xf9\
\x0d\x01\x00\x64\xc2\xaf\xd4\x12\xeb\x1a\xba\xad\x25\x00\x80\xec\
\x75\x5a\x17\xd0\xed\x5e\xff\x76\xcf\x6f\x09\x00\x20\x2b\xbf\xb0\
\x2e\xa0\xdb\xc2\xbe\xdf\x12\x00\x40\x26\xdc\x48\x5d\x6c\x5d\x83\
\x24\x69\xbd\xee\xec\xfb\x03\x01\x00\x64\x63\x81\xf6\xb6\x2e\x41\
\x92\xf4\x90\x7f\xad\xef\x0f\x04\x00\x90\x01\x37\x47\x27\x58\xd7\
\xd0\xed\x86\xfe\x7f\x20\x00\x80\xe0\xdc\xae\xfa\x91\x75\x0d\xdd\
\x9e\xd2\x4d\xfd\xff\x48\x00\x00\x81\xb9\xd1\xba\x4d\x5b\x5a\x57\
\xd1\xed\x0c\xbf\xa1\xff\x1f\x09\x00\x20\xb4\xeb\x72\x73\x4b\x90\
\x87\xfc\x9d\xc9\x0f\x10\x00\x40\x50\xee\xeb\x3a\xd4\xba\x86\x5e\
\xa7\x0f\xfc\x00\x01\x00\x04\xe4\xa6\xe8\x22\xeb\x1a\x7a\xdd\xea\
\x1f\x19\xf8\x21\x02\x00\x08\xc6\xb5\xe9\x16\x8d\xb0\xae\xa2\xdb\
\xeb\x3a\x6d\xf0\x07\x09\x00\x20\x10\x37\x52\xed\x1a\x6b\x5d\x45\
\xb7\xf5\x9a\xe3\x5f\x18\xfc\x61\x02\x00\x08\x25\x2f\xa3\x3f\x92\
\x74\xaa\xbf\xa7\xd2\x87\x09\x00\x20\x08\x77\x44\x6e\x46\x7f\xa4\
\xeb\xfd\x77\x2b\x7f\x82\x00\x00\x02\x70\xbb\xea\x1a\xeb\x1a\x7a\
\xfd\x87\x8e\xae\xf6\x29\x02\x00\x48\x5d\xae\x46\x7f\x96\xeb\x10\
\xff\x5e\xb5\x4f\x12\x00\x40\xfa\xae\xcd\xcd\xe8\xcf\xfd\xda\xd3\
\xbf\x52\xfd\xd3\x04\x00\x90\x32\x77\x8a\x0e\xb3\xae\xa1\xdb\x15\
\x9a\xda\xff\xbd\x7f\x83\xe5\xe5\x35\x4a\x20\x12\x6e\x72\x4e\xde\
\xf7\xbf\x4e\xc7\xf9\xab\x86\xfa\x22\x02\x00\x48\x91\x1b\xa7\xf6\
\x5c\x9c\x55\xab\x75\x98\x7f\x70\xe8\x2f\xe3\x47\x00\x20\x35\x6e\
\x44\x2e\x46\x7f\xd6\xe9\x7b\xda\xb5\x9e\xd3\x9f\x0e\x00\x48\xd3\
\x02\xed\x63\x5c\x81\x57\xbb\xbe\xe9\x57\xd4\xfb\xe5\x04\x00\x90\
\x12\x77\x84\x4e\x34\x2e\xe1\x7e\x9d\xee\x7f\xd5\xc8\x37\x10\x00\
\x40\x2a\x8c\xaf\xfa\xb3\x52\xb7\xeb\x66\xff\x40\xa3\xdf\x46\x00\
\x00\x29\x70\xa3\x75\xab\x46\x99\x2c\xfd\xac\x3a\xd5\xa9\x25\xbe\
\xa9\xfb\x0e\x11\x00\x40\x1a\xae\xd5\x84\xc0\x2b\x78\xbd\xaa\xad\
\x34\x52\x1b\xf4\xaa\xba\xd4\xa5\x95\xea\x52\x97\x1e\xf4\xcf\xb4\
\xf2\xa0\x04\x00\xd0\xb2\x4c\x46\x7f\xbe\xe1\xe7\x3b\xa7\x31\x7a\
\xc3\xff\x39\xbd\x07\x25\x00\x80\x16\x65\x32\xfa\xd3\xa9\x4b\x24\
\xef\xf5\xc7\x74\x1f\x96\x39\x00\xa0\x25\x6e\x5c\x06\x57\xfd\x79\
\x5e\x5f\x6a\xee\x67\xfc\xa1\x10\x00\x40\x0b\xdc\x08\xb5\x6b\xfb\
\xc0\x8b\xac\xd5\xa1\x7e\x4d\x98\x87\x26\x00\x80\x56\x64\x31\xfa\
\x73\x94\xff\xcf\x50\x0f\x4d\x00\x00\x4d\x73\x87\x67\x30\xfa\x73\
\x85\xff\x97\x70\x0f\x4e\x00\x00\x4d\x72\x1f\xcb\xe0\xaa\x3f\x8f\
\xe8\xa4\x90\x0f\x4f\x00\x00\x4d\x71\xa3\x75\x5b\xf0\xd1\x9f\x57\
\x35\xdb\xaf\x0b\xb9\x00\x01\x00\x34\x27\xfc\xe8\xcf\x7a\xcd\xf1\
\xbf\x0b\xbb\x04\x01\x00\x34\xc1\x9d\x9c\xc1\xe8\xcf\x37\xfd\xfd\
\xa1\x97\x20\x00\x80\x86\xb9\xc9\x9a\x1f\x7c\x91\x4e\x5d\x12\xfe\
\x48\x08\x00\xa0\x41\x19\x8d\xfe\x7c\x39\xcc\xe8\x4f\x12\x01\x00\
\x34\x24\xb3\xd1\x9f\x3f\x65\x71\x34\x04\x00\xd0\x98\x4b\x8a\x3d\
\xfa\x93\x44\x00\x00\x0d\x70\x87\x87\x7d\x5d\x5e\x52\xe0\xd1\x9f\
\x24\x02\x00\xa8\x5b\x46\xa3\x3f\x27\x67\x77\x44\x04\x00\x50\x27\
\x37\x2a\xa3\xd1\x9f\xf7\x5a\x7f\x98\x7a\x11\x00\x40\xbd\xa2\x18\
\xfd\x49\x22\x00\x80\xba\xb8\x93\x35\x3b\xf8\x22\xdf\x0a\x3f\xfa\
\x93\x44\x00\x00\x75\x70\xfb\x66\x30\xfa\xb3\x28\x83\x35\x06\x20\
\x00\x80\x21\x65\x72\xc3\xaf\x60\x57\xfd\xa9\x85\x00\x00\x86\xe0\
\x46\xe8\x96\x78\x46\x7f\x92\x08\x00\x60\x28\x97\x68\xdf\xe0\x6b\
\x64\x36\xfa\x93\x44\x00\x00\x35\xb9\xd9\x71\x8d\xfe\x24\x11\x00\
\x40\x0d\xee\x63\xba\x36\xf8\x22\x99\x8e\xfe\x24\x11\x00\x40\x55\
\x6e\x54\x06\x37\xfc\xca\x78\xf4\x27\x89\x00\x00\xaa\xbb\x56\x1f\
\x0b\xbc\x42\xe6\xa3\x3f\x49\x04\x00\x50\x85\x3b\x29\xc6\xd1\x9f\
\x24\x02\x00\xa8\xc8\xed\x9b\xc1\x15\x79\x0c\x46\x7f\x92\x08\x00\
\xa0\x02\xb7\x7d\x06\xa3\x3f\xcb\x2d\x46\x7f\x92\x08\x00\x60\x90\
\x8c\xae\xfa\x73\x88\xc5\xe8\x4f\x12\x01\x00\x0c\x36\x3f\x83\xd1\
\x9f\xa3\x6d\x46\x7f\x92\x08\x00\x60\x00\x37\x3b\x83\xd7\xe5\xaf\
\xf0\x3f\xb6\x3e\x4e\x89\x00\x00\x06\x70\x13\xe2\x1e\xfd\x49\x22\
\x00\x80\x7e\x62\xbc\xea\x4f\x2d\x04\x00\xd0\xdf\x35\xb1\x8f\xfe\
\x24\x11\x00\x40\x2f\x77\x92\x0e\x0f\xbe\x88\xf1\xe8\x4f\x12\x01\
\x00\x74\x73\xfb\x94\x61\xf4\x27\x89\x00\x00\x24\x95\x67\xf4\x27\
\x89\x00\x00\xd4\x7d\xd5\x9f\x71\x81\x17\xc9\xc5\xe8\x4f\x12\x01\
\x00\x48\xd2\x7c\x4d\x0e\xbe\x46\x2e\x46\x7f\x92\x08\x00\x20\x9b\
\xd1\x9f\xef\xe7\x63\xf4\x27\x89\x00\x40\xe9\xb9\x09\x99\xdc\xf0\
\x2b\xfc\x85\xc5\x9a\x40\x00\xa0\xe4\xdc\x28\xdd\xa6\xd1\x81\x17\
\xc9\xd1\xe8\x4f\x12\x01\x80\xb2\xcb\x62\xf4\xe7\xc8\xfc\x8c\xfe\
\x24\x11\x00\x28\x35\x77\x62\x26\xa3\x3f\x3f\xb3\x3e\xce\x6a\x08\
\x00\x94\x98\xdb\x47\x0b\x82\x2f\x92\xb3\xd1\x9f\x24\x02\x00\xa5\
\x55\xce\xd1\x9f\x24\x02\x00\x25\x55\xd6\xd1\x9f\x24\x02\x00\x65\
\x75\x71\x39\x47\x7f\x92\x08\x00\x94\x92\x3b\x4c\xa7\x04\x5f\x24\
\x97\xa3\x3f\x49\x04\x00\x4a\x28\x93\xab\xfe\x2c\xc9\xe7\xe8\x4f\
\x12\x01\x80\xd2\x71\xa3\x74\x6b\x06\xa3\x3f\x87\xe5\x73\xf4\x27\
\x89\x00\x40\xf9\xfc\x48\xbb\x06\x5e\x21\xc7\xa3\x3f\x49\x04\x00\
\x4a\xc6\x9d\xa8\x23\x82\x2f\xf2\xed\xfc\x8e\xfe\x24\x11\x00\x28\
\x95\x8c\x46\x7f\x2e\xb6\x3e\xce\x7a\x11\x00\x28\x11\x46\x7f\x06\
\x22\x00\x50\x1a\x19\x8d\xfe\x1c\x9a\xef\xd1\x9f\x24\x02\x00\xe5\
\x91\xcd\xe8\xcf\x93\xd6\x87\xd9\x08\x02\x00\x25\xc1\xe8\x4f\x25\
\x04\x00\x4a\xc1\xed\xc2\xe8\x4f\x25\x04\x00\x4a\xc0\x6d\x99\xc9\
\x55\x7f\x0a\x31\xfa\x93\x44\x00\xa0\x0c\xae\x61\xf4\xa7\x32\x02\
\x00\xd1\x73\x27\x30\xfa\x53\x0d\x01\x80\xc8\xb9\xbd\x33\x18\xfd\
\xb9\xbd\x38\xa3\x3f\x49\x04\x00\xa2\xe6\xc6\xaa\x43\x23\x03\x2f\
\xb2\x5c\x5f\x2c\xce\xe8\x4f\x12\x01\x80\x88\x31\xfa\x33\x14\x02\
\x00\x31\xbb\x48\x53\x82\xaf\x31\xaf\x58\xa3\x3f\x49\x04\x00\xa2\
\xe5\x0e\xd5\xd7\x83\x2f\xf2\x7d\x7f\x93\xf5\x71\xb6\x82\x00\x40\
\xa4\xdc\x2e\xba\x2e\xf8\x22\x05\x1c\xfd\x49\x22\x00\x10\x25\x46\
\x7f\xea\x43\x00\x20\x4e\x5c\xf5\xa7\x2e\x04\x00\x22\xe4\x4e\xd0\
\x9c\xe0\x8b\x14\x74\xf4\x27\x89\x00\x40\x74\x18\xfd\xa9\x1f\x01\
\x80\xc8\xb8\xb1\x6a\x67\xf4\xa7\x5e\x04\x00\xa2\xe2\x86\xeb\x16\
\xb5\x05\x5e\xa4\xd0\xa3\x3f\x49\x04\x00\xe2\x72\x31\xa3\x3f\x8d\
\x20\x00\x10\x91\x4c\x46\x7f\x7e\x50\xec\xd1\x9f\x24\x02\x00\xd1\
\xc8\x68\xf4\xe7\x44\xeb\xe3\x4c\x13\x01\x80\x48\xb8\x2d\x33\xb9\
\xe1\xd7\xec\xa2\x8f\xfe\x24\x11\x00\x88\xc5\x8f\xf4\x97\x81\x57\
\x58\xaf\x23\xfd\x6f\xad\x0f\x33\x5d\x04\x00\xa2\xe0\x8e\x67\xf4\
\xa7\x19\x04\x00\x22\xe0\xf6\xd6\x77\x82\x2f\x12\xc9\xe8\x4f\x12\
\x01\x80\xc2\x63\xf4\xa7\x79\x04\x00\x0a\xce\x0d\xd7\xcd\xc1\x47\
\x7f\xde\x8e\x67\xf4\x27\x89\x00\x40\xd1\x5d\xa4\xfd\x82\xaf\x51\
\xb0\x1b\x7e\xd5\x8f\x00\x40\xa1\xb9\x43\x74\x6a\xf0\x45\xa2\x1a\
\xfd\x49\x22\x00\x50\x60\x6e\x67\x5d\x1f\x7c\x91\xc8\x46\x7f\x92\
\x08\x00\x14\x56\x26\x57\xfd\x59\x1d\xdb\xe8\x4f\x12\x01\x80\xe2\
\xba\x3a\xf8\xe8\xcf\x86\xf8\x46\x7f\x92\x08\x00\x14\x94\x3b\x5e\
\x47\x06\x5f\xe4\x5b\xfe\x3e\xeb\xe3\x0c\x8b\x00\x40\x21\xb9\xcf\
\x30\xfa\x93\x06\x02\x00\x05\xc4\x0d\xbf\xd2\x42\x00\xa0\x70\x18\
\xfd\x49\x0f\x01\x80\xe2\x61\xf4\x27\x35\x04\x00\x0a\x86\xd1\x9f\
\x34\x11\x00\x28\x14\xb7\x33\x57\xfd\x49\x13\x01\x80\x02\x71\x5b\
\xea\x36\xfd\x8f\xc0\x8b\x44\x3e\xfa\x93\x44\x00\xa0\x48\x18\xfd\
\x49\x19\x01\x80\xc2\x70\xc7\x65\x30\xfa\xf3\xed\xd8\x47\x7f\x92\
\x08\x00\x14\x84\xfb\x8c\x2e\x0d\xbe\xc8\xed\xba\xc8\xfa\x38\xb3\
\x45\x00\xa0\x10\xdc\x76\x19\x5c\xf5\x67\x45\x19\x46\x7f\x92\x08\
\x00\x14\x80\x1b\xae\x5b\x34\x3e\xf0\x22\x6f\xeb\x90\x32\x8c\xfe\
\x24\x11\x00\x28\x82\x0b\x19\xfd\x09\x83\x00\x40\xee\xb9\x59\x3a\
\x2d\xf8\x22\xa5\x19\xfd\x49\x22\x00\x90\x5b\xee\x7d\x6e\x93\x8c\
\xae\xfa\xb3\xb4\x3c\xa3\x3f\x49\x23\xac\x0b\x00\x7a\xb8\x31\x3a\
\x50\x3b\xaa\x4d\xe3\xba\xff\xd9\x4c\xde\xfd\x51\x5b\x68\xb3\xc0\
\x0b\xaf\xd6\x61\xe5\x19\xfd\x49\x22\x00\x90\x03\x6e\xbc\x66\x68\
\xa6\xf6\x1b\xb4\xcf\xef\xb4\x75\xf0\xc5\x4b\x36\xfa\x93\x44\x00\
\xc0\x94\xfb\x80\xbe\xa8\x99\x9a\x28\x67\x56\x42\xc9\x46\x7f\x92\
\x08\x00\x98\x71\x63\xf4\x0d\x1d\x1f\xbc\xc1\xaf\xed\x8e\xb2\x8d\
\xfe\x24\x11\x00\x30\xe1\x36\xd3\xb1\x3a\x53\x5b\x19\x97\xb1\x42\
\x73\xcb\x36\xfa\x93\x54\x6f\x00\xa4\xfd\x0e\xac\x4d\xad\x0f\x1c\
\x76\xdc\x30\xcd\xd5\xb9\xfa\x90\x75\x1d\xe5\x1c\xfd\x49\xaa\xeb\
\x65\x40\x37\x45\x97\xa7\xbc\xee\xfd\x6e\x07\xeb\x43\x87\x0d\x37\
\x46\x77\xeb\xfa\x1c\x9c\xfe\xd2\xbc\x32\x8e\xfe\x24\xd5\x11\x00\
\xee\x68\x2d\x4e\xbd\x03\xd8\x55\x4b\xdd\x3e\xd6\x07\x8f\xec\xb9\
\x9d\xb5\x44\x07\x5a\x57\x21\x49\xfa\x81\xbf\xd1\xba\x04\x7b\xae\
\xf6\x0f\x40\x6e\x84\xfe\x49\xff\x18\x68\xed\xf7\x74\x8c\xbf\xd6\
\xfa\x09\x40\x96\xdc\x81\x6a\xd7\x18\xeb\x2a\x24\x49\x4b\xb5\x6f\
\x59\x5f\xfb\xef\xaf\x66\x00\xb8\xad\xd5\xa1\xfd\x83\xae\xff\x5d\
\x9d\xea\xd7\x5b\x3f\x09\xc8\x86\x3b\x4e\xdf\xd5\x70\xeb\x2a\x24\
\x49\xab\xf5\xa9\xf2\xbe\xf6\xdf\x5f\x8d\x00\x70\x63\xf5\xb0\x76\
\x0a\x5e\xc1\x22\x1d\x4a\x04\x94\x81\x5b\xa0\xaf\x5b\xd7\xd0\x6d\
\x83\xa6\x96\xf9\xb5\xff\xfe\xaa\xee\x01\xb8\x4d\x74\x5b\x06\xa7\
\xbf\x34\x43\x0b\xac\x9f\x04\x84\xe7\x8e\xca\xcd\xe9\x5f\xf2\xd1\
\x9f\xa4\xaa\x1d\x80\xbb\x4e\x5f\xce\xac\x8a\xbf\x67\x2f\x20\x6e\
\x6e\x8a\x16\x07\xbf\x9c\x47\xbd\xee\xd0\x8c\x72\xbf\xf6\xdf\x5f\
\x95\x00\x70\x27\xe9\xb2\x0c\xab\x78\x4f\x07\xf8\x87\xad\x9f\x0a\
\x84\xe2\x76\xd4\x52\x6d\x63\x5d\x45\xb7\x15\x9a\xe8\x5f\xb7\x2e\
\x22\x3f\x2a\x06\x80\x9b\xaa\xbb\x32\xde\xac\x79\x55\x93\xfc\x8b\
\xd6\x4f\x06\x42\x70\xa3\xf5\xcb\xe0\xd7\xf2\xad\xd7\xdb\xfa\xb4\
\x7f\xc2\xba\x88\x3c\xa9\x10\x00\x6e\x47\xfd\xda\xe0\xa5\x9a\x65\
\xda\x5f\xef\x5a\x3f\x1d\x08\xe0\xa7\xfa\xbc\x75\x09\xbd\xbe\xc4\
\x6b\xff\x49\x95\x02\xe0\x5f\x75\xa8\x75\x59\x40\x00\x57\xfa\x63\
\xac\x4b\xc8\x9b\x41\x01\xe0\xf6\xd2\x2f\xad\x8b\x02\x02\x60\xf4\
\xa7\x82\xc1\x01\xf0\xa0\x26\x5b\x17\x05\xa4\x8e\xd1\x9f\x8a\x06\
\xcc\x01\xb8\x69\x9c\xfe\x88\x50\xa9\xaf\xfa\x53\x4b\x22\x00\xdc\
\x30\x5d\x6c\x5d\x10\x10\x00\xa3\x3f\x55\x24\x3b\x80\xb9\xb9\x79\
\xb9\x06\x48\x4f\xc9\xaf\xfa\x53\x4b\x32\x00\xbe\x64\x5d\x0e\x90\
\xba\x12\xde\xf0\xab\x7e\xfd\x36\x01\xdd\xd6\x5a\x95\x93\xf7\x6a\
\x01\x69\x79\x57\x7b\x32\xfa\x53\x5d\xff\x0e\x60\x1a\xa7\x3f\xa2\
\xb3\x98\xd3\xbf\x96\xfe\x01\x30\xcb\xba\x18\x20\x75\x59\xbc\xa3\
\xb5\xc0\x7a\x7f\x04\x70\x9b\x6b\xb5\xb6\xb0\x2e\x07\x48\xdd\x04\
\xff\xac\x75\x09\xf9\xd5\xd7\x01\x1c\xc4\xe9\x8f\x28\xcd\xb4\x2e\
\x20\xcf\xfa\x07\x00\x10\x23\xfe\x66\xd7\xd0\x17\x00\x79\xb8\x4c\
\x33\x90\x3e\xfe\x66\xd7\xd0\x17\x00\x6d\xd6\xa5\x00\x41\xf0\x37\
\xbb\x86\xbe\x00\x18\x67\x5d\x0a\x10\xc4\x16\x2e\xed\xbb\x5a\x44\
\xa4\x3b\x00\xdc\x70\x6d\x67\x5d\x0a\x10\x08\x3d\x40\x55\x3d\x1d\
\xc0\x76\x0c\x01\x21\x5a\x74\xb7\x55\xf5\x04\x00\x19\x89\x78\xf1\
\xb7\xbb\xaa\xbe\x0e\x00\x88\x15\x7f\xbb\xab\xea\x09\x80\xd7\xad\
\x0b\x01\x82\x79\xdd\xba\x80\xfc\xea\x09\x80\x2e\xeb\x42\x80\x60\
\x56\x5a\x17\x90\x5f\x3d\x01\xf0\xb2\x75\x21\x40\x30\xfc\xef\xad\
\xaa\xee\x00\xf0\xef\xea\x0f\xd6\xa5\x00\x81\x10\x00\x55\xf5\x0d\
\x02\xd1\x26\x21\x4e\xef\xf1\x3f\xb7\xea\xfa\x02\x80\x94\x44\x9c\
\x5e\xe6\x82\x60\xd5\x11\x00\x88\x1d\x7f\xb3\x6b\xe8\x0b\x80\x07\
\xad\x4b\x01\x82\xe0\x6f\x76\x0d\x7d\x01\x70\xa7\xd6\x5b\x17\x03\
\x04\xd0\x69\x5d\x40\x9e\xf5\x06\x80\x5f\xad\x87\xad\x8b\x01\x52\
\xb7\x52\x4b\xac\x4b\xc8\xb3\xfe\x17\x05\xed\xb4\x2e\x06\x48\xdd\
\xed\x6c\x01\xd6\x42\x00\x20\x6e\x9d\xd6\x05\xe4\x5b\xe2\xee\xc0\
\xee\x71\xed\x66\x5d\x10\x90\xa2\x35\xda\x96\x5b\x82\xd7\x92\xbc\
\x35\xd8\xcd\xd6\xe5\x00\xa9\x5a\xc8\xe9\x5f\x5b\xb2\x03\x18\xa5\
\xe5\x1a\x6b\x5d\x12\x90\x92\x75\xfa\x98\x5f\x61\x5d\x44\xbe\x25\
\x3a\x00\xff\xa6\xce\xb5\x2e\x08\x48\xcd\x95\x9c\xfe\x43\x71\xc9\
\x2d\x52\x37\x52\xcb\xb8\x99\x12\xa2\xf0\x86\x3e\xe2\x5f\xb5\x2e\
\x22\xef\x92\x7b\x00\xf2\xeb\x74\xa6\x75\x49\x40\x2a\x16\x70\xfa\
\x0f\xcd\x0d\x7e\x91\xd4\x2d\xd5\x1e\xd6\x65\x01\x2d\x7a\x59\x3b\
\xf9\xb7\xac\x8b\xc8\xbf\x11\x15\x3e\x76\xb2\x1e\x30\xb8\x46\xf0\
\x1a\x1d\xa7\x35\xd6\x4f\x07\x52\x37\x5c\x97\x99\xdc\x9b\xe7\x4c\
\x4e\xff\x7a\xb8\x4a\x63\x52\xee\x14\x7d\x27\xe3\x3a\xd6\xe9\x40\
\xcf\x9b\x36\xa2\xe4\x76\xd2\x52\x6d\x95\xf1\xa2\x57\xfb\xa3\xac\
\x8f\xbb\x18\x5c\xe5\x39\x49\x77\xa3\xe6\x66\x5a\xc7\x3c\x7f\x95\
\xf5\x53\x81\x50\xdc\x01\xba\xbb\x62\xaf\x19\xca\x43\xfa\x9c\x5f\
\x67\x7d\xd4\xc5\x50\x2d\x00\x36\xd5\x43\x9a\x94\x59\x15\x57\xf8\
\x63\xad\x9f\x08\x84\xe4\x8e\xd5\xe5\x99\x2d\xf6\xa2\x26\xb1\xfd\
\x57\x2f\x57\xed\x9d\x12\xae\x4d\x8f\x66\x74\x43\x85\xfb\x35\xd5\
\xff\xd9\xfa\x89\x40\x58\xee\x2a\x65\xd3\x94\xbf\xa9\xbd\xfd\x93\
\xd6\x47\x5b\x1c\xae\xfa\x5b\xa5\xdc\x24\x3d\xa8\xcd\x82\x57\xb0\
\x5c\x7b\xfa\xd7\xac\x9f\x06\x84\xe6\x46\x6a\xb1\xa6\x04\x5f\x66\
\x83\x0e\xf5\x9d\xd6\xc7\x5a\x24\xc3\xaa\x7f\xca\x2f\xd5\x94\xe0\
\x97\x53\xfa\x0f\xed\xc3\xe9\x5f\x06\x7e\x9d\xfe\x5a\x1d\x81\x17\
\x59\xa3\xe9\x9c\xfe\x8d\x19\x56\xeb\x93\x7e\xa9\xf6\xd0\xd2\x80\
\xab\x5f\xaf\xcf\xfa\x57\xac\x9f\x02\x64\xc3\xaf\xd5\x11\x3a\x5b\
\xe1\xde\x9d\xbf\x42\x9f\xf6\x77\x59\x1f\x65\xd1\x0c\xab\xfd\x69\
\xdf\xa5\xc9\xba\x29\xc8\xca\xeb\x75\xb2\xff\x0a\xef\xd5\x2a\x13\
\xef\xfd\xb9\x3a\x4c\x61\x5e\x9f\xff\x99\x26\xf9\x65\xd6\x47\x58\
\x3c\xae\x9e\x40\x76\xa7\x68\x7e\xca\xa3\x41\xaf\x6b\x8e\xbf\xc7\
\xfa\xe0\x61\xc1\xed\xa6\x45\xfa\x70\xca\x0f\xfa\x3d\x9d\xc4\x46\
\x72\x33\x86\xd5\xf3\x45\xfe\x52\xed\xa7\x47\x53\x5c\xf5\x56\xed\
\xce\xe9\x5f\x56\xfe\x09\x4d\xd4\x95\x4a\xef\x74\x5d\xae\xc3\xfc\
\x71\x9c\xfe\xcd\xa9\xab\x03\xe8\xfe\xd2\xd9\xba\x30\x85\x77\x0a\
\x3e\xa4\xd3\xfd\x23\xd6\x87\x0d\x6b\x6e\x67\x5d\xa8\x43\x5b\x7e\
\x98\x55\x3a\x57\x3f\x64\xe8\xa7\x79\x0d\x04\x80\xe4\x46\xea\x6b\
\x3a\xab\x85\x4b\x86\x3c\xa5\x33\xfc\x9d\xd6\x87\x8c\xbc\x70\x7b\
\xea\x12\x4d\x6e\xfa\xdb\xdf\xd4\xa5\xfa\x8e\x7f\xd3\xfa\x28\x8a\
\xad\xa1\x00\x90\x24\x37\x4a\xc7\x6a\x4e\xc3\xd7\x0e\x5c\xaf\x87\
\x74\x83\x6e\xf2\x1b\xac\x0f\x18\xf9\xe2\x0e\xd6\xd1\x3a\xb0\xe1\
\x79\x93\x15\xba\x55\x97\xf1\x0a\x52\xeb\x1a\x0e\x80\xee\x6f\xdb\
\x41\x33\x35\x53\xfb\xd4\xb1\x35\xb8\x56\xf7\x6a\xa1\xee\xe4\xd5\
\x7e\x54\xe3\xb6\xd4\x54\xcd\xd4\xb4\xba\xde\x32\xf4\x98\x16\xaa\
\xd3\xff\x97\x75\xcd\xb1\x68\x32\x00\xba\xbf\xf9\xfd\x9a\xa6\x29\
\x6a\x53\x9b\xc6\x69\x9b\x7e\x9f\x58\xaf\x55\x5a\xa9\x2e\xbd\xa4\
\x7b\x75\xaf\x7f\xdb\xfa\x20\x51\x04\x6e\x84\x26\xeb\x60\xed\xa8\
\x36\x8d\xd3\xf6\x1a\xd9\xef\x53\x7f\xd2\x4a\x75\xa9\x4b\x4b\xd5\
\xe9\x7f\x6b\x5d\x67\x5c\x5a\x0a\x80\xc4\x03\x6d\xaa\x71\x1a\xa7\
\x31\x5a\xa5\x2e\xad\xf2\xdc\x66\x0c\x2d\x70\x4e\xef\x57\x9b\xb6\
\xd7\x5a\xad\x54\x97\x5f\x6b\x5d\x4f\xbc\x52\x0b\x00\x00\xc5\x53\
\xd7\x1c\x00\x80\x38\x11\x00\x40\x89\xfd\x37\x06\xe8\x39\xbf\xec\
\xd4\x94\x46\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\
\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x38\x2d\x30\x34\x2d\x31\
\x30\x54\x30\x33\x3a\x32\x37\x3a\x33\x30\x2b\x30\x38\x3a\x30\x30\
\xe1\xb5\x5e\x14\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\
\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x34\x2d\x30\x36\x2d\
\x30\x39\x54\x31\x37\x3a\x33\x39\x3a\x31\x37\x2b\x30\x38\x3a\x30\
\x30\x5e\x10\xcd\xa4\x00\x00\x00\x43\x74\x45\x58\x74\x73\x6f\x66\
\x74\x77\x61\x72\x65\x00\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\
\x2f\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2f\x73\x68\x61\
\x72\x65\x2f\x64\x6f\x63\x2f\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\
\x63\x6b\x2d\x37\x2f\x2f\x69\x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\
\xbd\xb5\x79\x0a\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\
\x62\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\
\x65\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\x00\x18\x74\x45\x58\x74\
\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\
\x69\x67\x68\x74\x00\x35\x31\x32\x8f\x8d\x53\x81\x00\x00\x00\x17\
\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\
\x3a\x3a\x57\x69\x64\x74\x68\x00\x35\x31\x32\x1c\x7c\x03\xdc\x00\
\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x69\
\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\
\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\
\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x34\x30\x32\x33\x30\x36\
\x37\x35\x37\xfe\xc5\x1c\xdd\x00\x00\x00\x11\x74\x45\x58\x74\x54\
\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\x36\x34\x38\x35\x42\
\xd0\xe2\x22\x7a\x00\x00\x00\x5f\x74\x45\x58\x74\x54\x68\x75\x6d\
\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\x2f\x68\
\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\x74\x65\
\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x6e\x65\
\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\x69\x63\
\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\x31\x31\x36\x39\x34\x2f\
\x31\x31\x36\x39\x34\x37\x31\x2e\x70\x6e\x67\x3e\x82\x2d\xbf\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x6c\x9e\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x02\x1e\x00\x00\x02\x1e\x08\x06\x00\x00\x00\xf4\xc3\x06\x4a\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\
\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\xbb\x7f\x00\x00\
\x00\x09\x70\x48\x59\x73\x00\x00\x00\x5a\x00\x00\x00\x5a\x00\x70\
\x23\xb8\x7d\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xe1\x04\x15\x00\
\x21\x08\x01\xcf\xfe\x3b\x00\x00\x69\x8b\x49\x44\x41\x54\x78\xda\
\xed\xdd\x75\x78\x14\x67\xdb\xfe\xf1\x73\x77\x92\x00\xc1\xbd\xc1\
\xdd\x21\x68\x70\x59\x5c\x0b\x29\x54\x29\xdb\xb4\xd4\x4b\x81\x2a\
\xf5\xb4\xa1\xee\xee\x96\xad\x6b\xea\xde\x6e\x0d\x28\x41\x83\xbb\
\x43\x0a\x85\xe2\x1a\x36\x79\xff\xd8\xec\xf3\xf2\xf0\x20\x91\xb9\
\xe6\x9a\x99\x3d\x3f\xc7\xd1\xa3\xbf\xf7\xf7\x94\x7b\xae\x59\x42\
\xf2\xe5\x9e\xd9\x59\x80\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\xa8\x10\
\x3c\xda\x03\x38\x41\x42\x52\xf2\xa3\x00\xba\x00\xe8\x91\x9d\x99\
\xa1\x3d\x0e\x11\x11\x91\x63\x31\x3c\x4e\x23\x3f\x3a\x6e\xc8\xff\
\x3f\xa7\x81\xf1\x41\x44\x44\x54\x64\x0c\x8f\x53\x38\x2e\x3a\x22\
\xa6\x03\xe8\xce\xf8\x20\x22\x22\x2a\x3c\x86\xc7\x49\x9c\x24\x3a\
\x22\x18\x1f\xe4\x28\xa1\xa0\x1f\x00\x62\x00\x94\x06\x50\x1e\x40\
\x15\x00\x55\x01\x54\xcf\xff\xa7\x5a\xfe\xff\x5f\x65\x00\x15\x00\
\x94\xcb\xff\x6f\x4b\x01\x28\x01\x20\x2e\xff\xd7\x7b\xf3\xff\x39\
\xfe\x7b\x47\x6e\xfe\x3f\x21\x00\x39\x00\x8e\x00\x38\x04\xe0\x00\
\x80\xbd\x00\x76\x03\xd8\x09\x60\x3b\x80\x7f\x00\x6c\x05\xb0\x2d\
\xff\xdf\xdb\x01\xfc\x9b\xff\xdf\x1d\x32\x7c\x81\x3c\xed\xd7\x8b\
\x88\xe4\x30\x3c\x4e\xe0\x34\xd1\x11\x31\x03\x40\x37\xc6\x07\x69\
\x0b\x05\xfd\x1e\x84\x43\xa1\x06\x80\x86\x00\x9a\x01\x68\x01\xa0\
\x09\x80\xba\x08\x07\x46\x09\xed\x39\x0b\x21\x17\xc0\x1e\x00\x5b\
\x00\xac\x02\xb0\x0c\xc0\x52\x00\x2b\x00\xac\x03\xb0\xdd\xf0\x05\
\x8e\x68\x0f\x49\x44\x45\xc3\xf0\x38\x4e\x01\xa3\x23\x82\xf1\x41\
\x96\x08\x05\xfd\x06\xc2\xbb\x12\xcd\x00\x74\x00\x90\x04\x20\x11\
\xe1\xb0\x70\x52\x54\x98\x69\x07\xc2\x41\x32\x1b\x40\x26\x80\x05\
\x00\xd6\x19\xbe\xc0\x7e\xed\xc1\x88\xe8\xe4\x18\x1e\xc7\x28\x64\
\x74\x44\xfc\x05\xa0\x2b\xe3\x83\xcc\x10\x0a\xfa\xbd\x00\x6a\x22\
\x1c\x17\x7d\x00\xf4\x44\x78\xf7\xa2\xa4\xf6\x6c\x0e\xb3\x05\xc0\
\x2c\x00\x41\x84\x2f\x8d\x2e\x33\x7c\x81\xbd\xda\x43\x11\x11\xc3\
\xe3\x3f\x8a\x18\x1d\x11\x8c\x0f\x2a\xb4\x50\xd0\x5f\x02\x40\x53\
\x00\x7d\x01\x0c\x41\xf8\x2d\xdb\xe5\xb4\xe7\x72\xb1\x3c\x84\x2f\
\xd7\xfc\x0c\xe0\x3b\x84\x77\x49\xb6\x1a\xbe\x80\xf6\x5c\x44\x51\
\x85\xe1\x81\x62\x47\x47\x04\xe3\x83\x4e\x2a\xff\x3e\x8c\x06\x00\
\x06\x00\x48\x06\xd0\x03\x40\xbc\xf6\x5c\x04\x00\x58\x0d\xe0\x6b\
\x00\x5f\x00\xc8\xe4\xce\x08\x91\xac\xa8\x0f\x0f\x93\xa2\x23\x62\
\x26\x80\x2e\x8c\x0f\xca\xdf\xcd\xe8\x04\x60\x0c\x80\x51\x08\xdf\
\x8b\x41\xce\x70\x04\xc0\xef\x00\x3e\x40\x78\x67\x64\x13\x77\x45\
\x88\xcc\x13\xd5\xe1\x61\x72\x74\x44\x30\x3e\xa2\x50\x7e\x68\x74\
\x03\x30\x16\xe1\x1d\x8d\x4a\xda\x33\x91\x69\xf2\x10\xbe\x5f\xe4\
\x6d\x00\x9f\x1b\xbe\xc0\x06\xed\x81\x88\x9c\x2c\x6a\xc3\x43\x28\
\x3a\x22\x32\x01\x74\x66\x7c\xb8\x57\xfe\xa5\x93\x44\x00\xe3\x00\
\x5c\x00\xe0\x0c\xed\x99\xc8\x32\x79\x00\x7e\x03\xf0\x2a\x80\x6f\
\x0c\x5f\x60\xa7\xf6\x40\x44\x4e\x12\x95\xe1\x21\x1c\x1d\x11\x8c\
\x0f\x97\x09\x05\xfd\x95\x00\x9c\x05\xe0\x4a\x84\xdf\x75\x42\x04\
\x84\x1f\x7c\xf6\x1e\xc2\x21\x32\x9b\x0f\x40\x23\x3a\xb5\xa8\x0b\
\x0f\x8b\xa2\x23\x62\x16\x80\x24\xc6\x87\x73\x85\x82\xfe\xe6\x00\
\x2e\x07\x90\x82\xf0\x13\x3d\x89\x4e\x67\x06\x80\xa7\x01\x7c\xc9\
\x67\x8a\x10\xfd\xaf\xa8\x0a\x0f\x8b\xa3\x23\x82\xf1\xe1\x20\xf9\
\x97\x50\xba\x01\x98\x8c\xf0\xee\x86\x57\x7b\x26\x72\xb4\x75\x08\
\x47\xc8\x5b\x86\x2f\xb0\x5d\x7b\x18\x22\x3b\x88\x9a\xf0\x50\x8a\
\x8e\x88\x59\x08\x5f\x76\xe1\x16\xac\x0d\xe5\xc7\x46\x1f\x00\x37\
\x03\x18\xac\x3d\x0f\xb9\xd6\x36\x00\x4f\x01\x78\xd5\xf0\x05\xb6\
\x69\x0f\x43\xa4\x25\x2a\xc2\x43\x39\x3a\x22\x66\x23\xbc\xf3\xc1\
\xf8\xb0\x81\xfc\x0f\x4d\xeb\x06\xe0\x56\x00\xc3\xb5\xe7\xa1\xa8\
\xb3\x15\xc0\xa3\x00\x5e\xe3\xcd\xa9\x14\x6d\x5c\x1f\x1e\x36\x89\
\x8e\x08\xc6\x87\xb2\x50\xd0\xdf\x14\xc0\x2d\x00\xfc\xe0\x65\x14\
\xb2\x87\x55\x00\xa6\x02\x78\x9f\x1f\x7e\x47\xd1\xc0\xd5\xe1\x61\
\xb3\xe8\x88\x98\x03\xa0\x13\xe3\xc3\x3a\xa1\xa0\xbf\x02\x80\x6b\
\x00\x4c\x01\x50\x56\x7b\x1e\xa2\x53\xf8\x15\xc0\x9d\x00\xfe\xe4\
\x43\xcb\xc8\xad\x5c\x1b\x1e\x36\x8d\x8e\x08\xc6\x87\xb0\xfc\xfb\
\x36\x86\x00\x78\x00\x40\x1b\xed\x79\x88\x0a\xe9\x28\x80\x67\x00\
\x3c\x64\xf8\x02\x5b\xb5\x87\x21\x32\x93\x2b\xc3\xc3\xe6\xd1\x11\
\x31\x17\x40\x47\xc6\x87\xb9\x42\x41\x7f\x02\x80\xdb\x01\x5c\x0d\
\x97\x7e\x7d\x53\xd4\x59\x8e\xf0\x8d\xcf\x5f\xf2\x19\x21\xe4\x06\
\xae\xfb\xc6\xec\x90\xe8\x88\x60\x7c\x98\x20\xff\x46\xd1\xc1\x00\
\x1e\x43\xf8\x23\xe4\x89\xdc\x28\x0f\xe1\xb7\xe6\xde\xcb\xb7\xe6\
\x92\x93\xb9\x2a\x3c\x24\xa3\xa3\x6c\xe9\x78\xec\xdd\x7f\x40\x62\
\x69\xc6\x47\x11\x85\x82\xfe\xd2\x00\x6e\x44\x78\x87\x23\x56\x7b\
\x1e\x22\x0b\x65\x02\x98\x6c\xf8\x02\x33\xb4\x07\x21\x2a\x2c\xd7\
\x84\x87\x64\x74\xfc\xfa\xfe\x53\xa8\x5a\xa9\x02\xda\x0e\x1b\x8f\
\x9c\x9c\xa3\x12\x87\x98\x07\xa0\x03\xe3\xa3\x60\x42\x41\x7f\x43\
\x00\x8f\x03\x38\x53\x7b\x16\x22\x65\xbb\x11\x8e\xef\xd7\x0d\x5f\
\x20\x57\x7b\x18\xa2\x82\x70\x45\x78\x48\x47\x47\x93\xfa\xb5\x01\
\x00\x3b\x76\xee\x46\xeb\xc1\x17\x4b\x9d\x06\xe3\xe3\x34\x42\x41\
\x7f\x1f\x00\x2f\x00\x68\xa6\x3d\x0b\x91\x0d\x3d\x06\xe0\x1e\xc3\
\x17\xd8\xab\x3d\x08\xd1\xa9\x38\x3e\x3c\xac\x8a\x8e\x88\x6d\x3b\
\x76\xa1\xed\xd0\x4b\xa4\x4e\x67\x3e\x80\xf6\x8c\x8f\xff\x97\x7f\
\xff\xc6\x85\x08\xdf\xe1\x5f\x41\x7b\x1e\x22\x07\xf8\x04\xe1\xcb\
\x30\x9b\xb4\x07\x21\x3a\x11\x47\x87\x87\xd5\xd1\x11\xf1\xf7\x3f\
\xff\xa2\xfd\xf0\x4b\xa5\x4e\x6b\x3e\x18\x1f\x08\x05\xfd\x06\x80\
\x89\x00\x1e\x02\xef\xdf\x20\x2a\x8a\x3f\x01\x5c\x6e\xf8\x02\x4b\
\xb5\x07\x21\x3a\x96\x63\xc3\x43\x2b\x3a\x22\xb6\x6c\xdd\x8e\x8e\
\x67\x5e\x2e\x75\x7a\x59\x00\xda\x45\x63\x7c\x84\x82\xfe\x38\x00\
\xb7\x01\xb8\x0b\x0e\xfe\xfa\x24\xb2\x91\x85\x00\x2e\x36\x7c\x81\
\x39\xda\x83\x10\x01\x0e\xfd\xc6\xae\x1d\x1d\x11\x1b\xb3\xb7\xa1\
\xf3\xa8\x2b\xa5\x4e\xd3\x16\xf1\x91\x90\x94\x0c\x00\x13\xb2\x33\
\x33\x9e\x95\x3c\x4e\x28\xe8\x2f\x01\xe0\x6e\x84\x1f\x67\x4e\x44\
\xe6\x5b\x01\xc0\x6f\xf8\x02\x33\xb5\x07\xa1\xe8\xe6\xb8\xf0\xb0\
\x4b\x74\x44\xac\xdb\xf4\x37\xba\x8d\xbe\x5a\xea\x74\x55\xe3\x23\
\x3f\x3a\x7e\x07\xd0\x13\xc0\x13\xd9\x99\x19\xd7\x9b\x7d\x8c\x50\
\xd0\x1f\x0b\xe0\x1e\x84\x3f\xac\x8d\x88\xe4\xad\x00\x70\xa1\xe1\
\x0b\xcc\xd2\x1e\x84\xa2\x93\xa3\xc2\xc3\x6e\xd1\x11\xb1\x66\xc3\
\x16\xf4\x38\x7b\x82\xd4\x69\x2f\x00\xd0\xd6\xea\xf8\x38\x2e\x3a\
\x22\x4c\x8b\x8f\xfc\x7b\x38\x6e\x03\x90\x66\xe5\x79\x11\xd1\x7f\
\x2c\x02\x70\x81\xe1\x0b\x2c\xd4\x1e\x84\xa2\x8b\x63\xc2\xc3\xae\
\xd1\x11\xb1\x72\xed\x26\xf4\x3e\x6f\xa2\xd4\xe9\x5b\x1a\x1f\x27\
\x89\x8e\x88\x62\xc5\x47\xfe\xbb\x54\xae\x41\xf8\x09\x8c\xfc\x74\
\x58\x22\x7d\xd3\x01\x8c\x35\x7c\x81\x75\xda\x83\x50\x74\x70\x44\
\x78\xd8\x3d\x3a\x22\x96\xad\x5e\x8f\xbe\x17\x5c\x27\xf5\x32\x2c\
\x04\x90\x28\x1d\x1f\xa7\x89\x8e\x88\x22\xc5\x47\x28\xe8\x1f\x0d\
\xe0\x2d\x00\xa5\x24\xcf\x81\x88\x8a\xe4\x33\x00\x97\x18\xbe\xc0\
\x4e\xed\x41\xc8\xdd\x6c\x1f\x1e\x4e\x89\x8e\x88\x45\x2b\xd6\x62\
\xe0\x38\xb1\x8f\x8a\x59\x88\xf0\xce\x87\xc8\x13\x0a\x0b\x18\x1d\
\x11\x05\x8e\x8f\x50\xd0\xdf\x19\xe1\x67\x0b\xd4\x94\x7a\x61\x88\
\xc8\x34\x4f\x01\xb8\xc9\xf0\x05\x72\xb4\x07\x21\x77\xb2\x75\x78\
\x38\x2d\x3a\x22\xb2\x96\xae\xc2\x90\x94\x9b\xa5\x5e\x16\x91\xf8\
\x28\x64\x74\x44\x9c\x32\x3e\x42\x41\x7f\x4d\x00\x1f\x01\xe8\x2a\
\xf5\x62\x10\x91\x88\x3c\x00\x57\x1b\xbe\xc0\x8b\xda\x83\x90\xfb\
\xd8\x36\x3c\x9c\x1a\x1d\x11\x73\x17\xad\xc0\xf0\xf1\x62\xef\x0c\
\x5d\x84\xf0\x65\x17\x53\xe2\xa3\x88\xd1\x11\xf1\x3f\xf1\x91\xff\
\x2c\x8e\x67\x00\x88\x3d\xe8\x84\x88\x2c\xf1\x2f\x80\x51\x86\x2f\
\xf0\x87\xf6\x20\xe4\x1e\xb6\x0c\x0f\xa7\x47\x47\x44\x66\xd6\x52\
\x8c\xba\xfc\x76\xa9\xe5\x4d\x89\x8f\x62\x46\x47\xc4\x7f\xe2\x23\
\x14\xf4\x5f\x0a\xe0\x65\xd8\xf4\x6b\x8b\x88\x8a\x64\x1a\x80\xd1\
\x86\x2f\xb0\x55\x7b\x10\x72\x3e\xdb\xfd\x70\x70\x4b\x74\x44\x4c\
\x9f\xbb\x08\x63\xae\xba\x4b\x6a\xf9\xc5\x00\xda\x14\x35\x3e\x4c\
\x8a\x0e\x00\x40\xe3\x6a\xde\xb7\x82\x37\x94\xee\x0b\x87\xdd\xc7\
\x91\x97\x07\xdc\xf2\xe9\x21\xf8\xbb\xc6\xa1\x65\x0d\xbe\xc9\x86\
\xe8\x34\x1e\x06\x70\x8b\xe1\x0b\x44\xdd\x53\x95\xc9\x3c\xb6\x0a\
\x0f\xb7\x45\x47\xc4\x1f\x99\x0b\x70\xee\xb5\x77\x4b\x2d\x5f\xa4\
\xf8\x30\x33\x3a\x22\x5e\x1c\x5b\x0a\xc3\xdb\xc4\x48\x9d\xa7\xe9\
\x22\xd1\xf1\x4e\x66\xf8\x1e\xba\xef\x27\x95\x66\x7c\x10\x9d\xde\
\x21\x00\xc9\x86\x2f\xf0\x9d\xf6\x20\xe4\x4c\xb6\x09\x0f\xb7\x46\
\x47\x44\x70\xc6\x3c\x8c\x9d\x3c\x55\x6a\xf9\x42\xc5\x87\x44\x74\
\x44\x38\x25\x3e\x8e\x8f\x8e\x08\xc6\x07\x51\x81\x4d\x03\x30\xd2\
\xf0\x05\x76\x68\x0f\x42\xce\x62\x8b\xef\xb0\x6e\x8f\x0e\x00\xf0\
\x75\x6d\x87\xf4\x47\xc5\x9e\x0a\xde\x12\xc0\xc2\x84\xa4\xe4\xd3\
\xfe\x7e\x4a\x46\x07\x00\x5c\xf9\xce\x41\x7c\xb5\xe0\xa8\xd4\x79\
\x9a\xe2\x64\xd1\x01\x00\x83\x9e\xda\x8f\xc5\x5b\x44\xde\xad\x4c\
\xe4\x36\xdd\x01\x6c\x0f\x05\xfd\x37\x69\x0f\x42\xce\xa2\xbe\xe3\
\x11\x0d\xd1\x71\xac\x6f\x7e\xfd\x0b\x97\x4e\x79\x58\x6a\xf9\x25\
\x00\x5a\x9f\x6c\xe7\x43\x3a\x3a\x8e\x65\xd7\x9d\x8f\x53\x45\xc7\
\xb1\xb8\xf3\x41\x54\x28\x9b\x01\xf4\x37\x7c\x81\x65\xda\x83\x90\
\xfd\xa9\x86\x47\xb4\x45\x47\xc4\x17\x3f\x4d\xc3\x95\xb7\x3f\x26\
\xb5\xfc\x52\x00\xad\x8e\x8f\x0f\x2b\xa3\x23\xc2\x6e\xf1\x51\xd0\
\xe8\x88\xf8\x6e\x52\x69\xb4\x62\x7c\x10\x15\xc6\x53\x00\xae\xe3\
\xcd\xa7\x74\x2a\x6a\xe1\x11\xad\xd1\x11\xf1\xe9\x77\xbf\x63\x42\
\xea\x93\x52\xcb\xff\x57\x7c\x68\x44\x47\x84\x5d\xe2\xa3\xb0\xd1\
\x11\xc1\xf8\x20\x2a\xb4\xdd\x00\xfa\x1a\xbe\xc0\x5c\xed\x41\xc8\
\x9e\x54\xc2\x23\xda\xa3\x23\xe2\x83\xaf\x7e\xc1\x75\x53\x9f\x95\
\x5a\x7e\x29\x80\x56\x00\x72\xa1\x14\x1d\x11\xda\xf1\x51\xd4\xe8\
\x88\xf8\x6e\x52\x3c\x5a\xd5\x30\xd4\xe6\x27\x72\xa8\x17\x00\x5c\
\xc3\xdd\x0f\x3a\x9e\xe5\xe1\xc1\xe8\xf8\x6f\xef\x7c\xf6\x23\x6e\
\x7a\xe0\x05\xa9\xe5\x97\x01\xf8\x07\x8a\xd1\x11\xa1\x15\x1f\xc5\
\x8d\x8e\x08\xc6\x07\x51\x91\xec\x02\xd0\xcb\xf0\x05\x16\x6a\x0f\
\x42\xf6\x61\x69\x78\x30\x3a\x4e\xec\xcd\x8f\xbf\xc5\x6d\x8f\xbc\
\xa2\x3d\x86\x38\xab\xe3\xc3\xac\xe8\x88\xf8\x6e\x62\x3c\x5a\xd5\
\x64\x7c\x10\x15\xc1\x83\x86\x2f\x20\xf6\xb6\x3e\x72\x16\xcb\xc2\
\x83\xd1\x71\x6a\xaf\xbc\xff\x25\x52\x9f\x78\x43\x7b\x0c\x71\x56\
\xc5\x87\xd9\xd1\x11\xc1\xf8\x20\x2a\xb2\xf5\x00\xba\x1b\xbe\xc0\
\x66\xed\x41\x48\x97\x25\x77\xcd\x31\x3a\x4e\xef\xb2\xf3\x46\xe0\
\x8e\x09\x7e\xed\x31\xc4\x59\xf1\x9c\x0f\xa9\xe8\x00\x80\xc1\x4f\
\x1f\xc0\xc2\xcd\x21\xd1\xf9\x89\x5c\xaa\x2e\x80\x4d\xf9\x9f\xe7\
\x44\x51\xcc\xaa\xdb\xf5\xbb\x48\x2c\x5a\xbe\x6c\x69\x54\xab\x5c\
\xd1\xa2\x53\x90\x77\xf5\xb8\x51\x98\x72\xe5\x05\xda\x63\x88\x93\
\x8c\x0f\xc9\xe8\x88\x18\xc2\xf8\x20\x2a\x8e\x57\x42\x41\xff\x8f\
\xf9\x9f\x62\x4d\x51\xc8\xaa\xf0\xe8\x81\xf0\xe3\x75\x4d\xb5\x7b\
\xef\x7e\x74\x3d\xeb\x2a\xec\xda\xb3\xcf\xa2\xd3\x90\x37\xe9\xe2\
\x31\xb8\x6e\xfc\x39\xda\x63\x88\x93\x88\x0f\x2b\xa2\x23\x82\xf1\
\x41\x54\x2c\xfd\x01\xec\x09\x05\xfd\x1d\xb4\x07\x21\xeb\x59\x12\
\x1e\xd9\x99\x19\x00\xe3\xa3\xc0\x6e\xba\xfc\x3c\x4c\xf0\x9f\xa5\
\x3d\xc6\x7f\xbc\xff\x4c\xaa\xc8\xba\x66\xc6\x87\x95\xd1\x11\xc1\
\xf8\x20\x2a\x96\x12\x00\x66\x87\x82\xfe\xdb\xb5\x07\x21\x6b\x59\
\xfd\xae\x16\x00\xf8\x13\xe1\x67\xfc\x9b\xaa\x7c\xd9\xd2\x98\xf1\
\xe9\x0b\xa8\x50\xae\x8c\x95\xa7\x24\xea\x9e\xa7\xde\xc4\x4b\xef\
\x7e\xa1\x3a\xc3\xb4\x8f\x9f\x43\xfd\xda\x09\xf8\x7d\x66\x16\xce\
\x9b\x78\x8f\xc8\x31\x8a\x7b\xc3\xa9\x46\x74\x1c\xeb\xdb\x89\xf1\
\x68\xcd\x1b\x4e\x89\x8a\xe3\x2f\x00\x3e\xc3\x17\x38\xa4\x3d\x08\
\xc9\xd3\x78\x8e\x07\xc0\xf8\x28\xb0\xdb\x1f\x7d\x05\x6f\x7c\xf4\
\xad\xca\xb1\x23\xd1\x11\xf1\xdb\xcc\xf9\x38\x7f\x62\x9a\xc8\xb1\
\x8a\x1a\x1f\xda\xd1\x11\xc1\xf8\x20\x2a\xb6\x23\x00\x92\x0c\x5f\
\x20\x4b\x7b\x10\x92\x65\xf9\xb3\xa0\x79\xd9\xa5\x70\xee\xbd\xe1\
\x52\x8c\x1d\x35\xc0\xf2\xe3\x1e\x1f\x1d\x00\xd0\xbb\x73\x5b\xbc\
\xfb\xd4\x5d\x22\xc7\x2b\xca\x65\x17\xbb\x44\x07\x10\xbe\xec\xb2\
\x80\x97\x5d\x88\x8a\x23\x0e\xc0\xfc\x50\xd0\x3f\x41\x7b\x10\x92\
\xa5\xf9\x59\x2d\x00\x77\x3e\x0a\x24\x2f\x2f\x0f\x93\xa7\x3e\x8b\
\x8f\xbe\x0e\x5a\x72\xbc\x13\x45\xc7\xb1\x82\x33\xe6\x61\xec\xe4\
\xa9\x22\xc7\x2e\xe8\xce\x87\x9d\xa2\xe3\x58\xdf\x4c\x8c\x47\x1b\
\xee\x7c\x10\x15\x57\x06\x80\xd1\x7c\xdc\xba\x3b\x69\x7f\x3a\x2d\
\xc0\xf8\x28\x90\xdc\xdc\x5c\x5c\x73\xd7\x93\xf8\xfc\xc7\x3f\x45\
\x8f\x73\xba\xe8\x88\xf8\x65\xc6\x5c\x5c\x38\xf9\x5e\x91\x19\x4e\
\x17\x1f\x76\x8d\x8e\x88\x6f\xae\x8d\x47\x9b\x5a\x8c\x0f\xa2\x62\
\xda\x02\x20\xd1\xf0\x05\xb6\x6b\x0f\x42\xe6\x52\xfd\xd8\x4d\x5e\
\x76\x29\x38\xaf\xd7\x8b\x67\xd3\x26\x63\x48\x9f\xce\x62\xc7\x28\
\x68\x74\x00\x40\xdf\xae\xed\xf1\xf6\x13\x77\x88\xcc\x71\xaa\xcb\
\x2e\x76\x8f\x0e\x00\x18\xfa\xcc\x01\x2c\xd8\xc4\xcb\x2e\x44\xc5\
\x54\x03\xc0\xb6\x50\xd0\xdf\x4d\x7b\x10\x32\x97\xfa\xe7\x7d\x33\
\x3e\x0a\xee\xb1\x57\x3e\xc0\xb7\xbf\xce\x14\x59\xbb\x30\xd1\x11\
\xd1\xb7\x5b\x7b\xbc\xf5\xb8\xcc\x3b\xe1\x4e\x14\x1f\x4e\x88\x8e\
\x08\xc6\x07\x91\x29\x3c\x00\xa6\xf1\xbe\x0f\x77\x51\xbd\xd4\x72\
\x2c\x5e\x76\x39\xb5\x87\x5f\x7a\x0f\x4f\xbe\xfe\x91\xc8\xda\x45\
\x89\x8e\x63\xfd\x34\x6d\x0e\xfc\xd7\xdf\x27\x32\x5b\xe4\xb2\x8b\
\x93\xa2\xe3\x58\xbc\xec\x42\x64\x9a\x74\xc3\x17\x48\xd1\x1e\x82\
\x8a\xcf\x36\xe1\x01\x30\x3e\x4e\xc6\xce\xd1\x11\xf1\xe3\x9f\xb3\
\x71\xd1\x0d\xf7\x8b\xcc\xf8\xe2\xd8\x52\xf8\x63\xe5\x51\x91\xe8\
\x28\x57\xca\x83\xaa\x65\x3c\x58\xfd\x4f\xae\xc8\xec\x00\xf0\xf5\
\xb5\xf1\x48\x64\x7c\x10\x99\x61\x1e\x80\xce\x86\x2f\xe0\xac\xbf\
\x81\xd0\x7f\xb1\x55\x78\x00\x8c\x8f\xe3\x39\x21\x3a\x22\x7e\xf8\
\x63\x16\x52\x6e\x7c\xc0\xaa\x97\xa6\xd8\xca\x95\xf2\x60\xfa\x94\
\xd2\x88\x33\xc2\x97\x46\x56\x6d\x63\x7c\x10\x39\xc0\x2e\x00\xcd\
\x0c\x5f\x60\xab\xf6\x20\x54\x34\xea\xf7\x78\x1c\x8f\xf7\x7c\xfc\
\x3f\x27\x45\x07\x00\x0c\xec\xd9\x09\x6f\x3e\x72\xab\x15\x2f\x4d\
\xb1\x45\xa2\xa3\x42\x29\x0f\xe2\xe3\x3c\xf8\xe6\xda\x78\x34\xa9\
\x2e\xf7\xc7\x61\xd8\x33\x07\x90\xc5\x7b\x3e\x88\xcc\x50\x01\x40\
\x76\x28\xe8\x6f\xaf\x3d\x08\x15\x8d\xed\xc2\x03\x60\x7c\x00\xce\
\x8b\x8e\x88\x81\xbd\x3a\xe1\x8d\x47\x6e\x91\x7c\x69\x8a\xed\xd8\
\xe8\x88\x88\x8f\xf3\xe0\xeb\x09\xf1\x68\x76\x06\xe3\x83\xc8\x01\
\x3c\x00\xe6\x84\x82\xfe\x64\xed\x41\xa8\xf0\x6c\x19\x1e\x40\x74\
\xc7\x87\x53\xa3\x23\x62\x50\xaf\x24\xbc\xfe\xb0\x3d\xe3\xe3\x44\
\xd1\x11\x51\x2a\xce\x83\x2f\x27\xc4\xa3\x45\x02\xe3\x83\xc8\x21\
\x3e\x0d\x05\xfd\xd7\x69\x0f\x41\x85\x63\xbb\x7b\x3c\x8e\x17\x6d\
\xf7\x7c\x38\x3d\x3a\x8e\xf5\xed\xaf\x33\x31\x7e\xca\x43\x96\x1d\
\xef\x74\x4e\x15\x1d\xc7\x3a\x98\x03\x8c\x7a\x7e\x3f\x16\x6f\xe1\
\x3d\x1f\x44\x0e\xf1\xb4\xe1\x0b\x4c\xd2\x1e\x82\x0a\xc6\xf6\xe1\
\x01\x44\x4f\x7c\xb8\x29\x3a\x22\xbe\xf9\xf5\x2f\x5c\x3a\xe5\x61\
\xcb\x8f\x7b\xbc\x82\x46\x47\xc4\xa1\x1c\x20\xf9\x05\xd9\x8f\xbd\
\xff\x6a\x42\x3c\xda\xd6\x66\x7c\x10\x99\xe4\x53\xc3\x17\x18\xad\
\x3d\x04\x9d\x9e\x23\xc2\x03\x70\x7f\x7c\xb8\x31\x3a\x22\xbe\x0e\
\xfe\x85\xcb\x6e\xd1\x8b\x8f\xc2\x46\x47\xc4\xa1\x1c\x60\xf4\x8b\
\xb2\x97\x46\x18\x1f\x44\xa6\x9a\x06\xa0\x27\x3f\xe3\xc5\xde\x1c\
\x13\x1e\x80\x7b\xe3\xc3\xcd\xd1\x11\xf1\xf5\x2f\x33\x70\xd9\xad\
\x8f\x58\x7e\xdc\xa2\x46\x47\xc4\xa1\x1c\xe0\xec\x97\x0e\x60\xde\
\x46\xc6\x07\x91\x43\x2c\x03\xd0\xda\xf0\x05\x0a\xf7\x71\xd7\x64\
\x19\x47\x85\x07\xe0\xbe\xf8\x88\x86\xe8\x88\xf8\xea\xe7\xe9\xb8\
\xfc\xb6\x47\x2d\x3b\x5e\x71\xa3\x23\xe2\xf0\xd1\x70\x7c\xcc\xdd\
\xc0\xf8\x20\x72\x88\x2d\x00\x1a\x19\xbe\xc0\x41\xed\x41\xe8\x7f\
\x39\x2e\x3c\x00\xf7\xc4\x47\x34\x45\x47\xc4\x97\x3f\x4f\xc7\x15\
\x16\xc4\x87\x59\xd1\x11\x71\xf8\x28\x70\xee\xcb\x07\x30\x7b\x3d\
\xe3\x83\xc8\x21\x76\x02\xa8\x6f\xf8\x02\xbb\xb5\x07\xa1\xff\x66\
\xdb\xb7\xd3\x9e\x8a\x1b\xde\x6a\x1b\x8d\xd1\x01\x00\x23\xfa\x75\
\xc3\x8b\xf7\xdd\x20\x7a\x0c\xb3\xa3\x03\x00\x4a\xc4\x00\x1f\x5e\
\x1e\x8f\xa4\x7a\x72\x61\x30\xfc\xd9\x03\x98\x2f\x78\x49\x87\x28\
\xca\x54\x04\xb0\x25\x14\xf4\x57\xd1\x1e\x84\xfe\x9b\x23\xc3\x03\
\x70\x76\x7c\x44\x6b\x74\x44\x9c\xd9\xbf\x3b\x5e\xb8\xf7\x7a\xb1\
\xf5\x1f\x3e\xab\xa4\xa9\xd1\x11\x11\x17\x03\xbc\x7f\x59\x3c\xba\
\xd4\x97\x8d\x0f\xc9\xfb\x49\x88\xa2\x4c\x3c\x80\x4d\xa1\xa0\xff\
\x0c\xed\x41\xe8\xff\x39\x36\x3c\x00\x67\xc6\x47\xb4\x47\x47\xc4\
\xc8\x01\x3d\xf0\xfc\x54\x99\xf8\xb8\xf2\x9d\x83\xf8\x6a\x81\xcc\
\x7d\x65\x71\x31\xc0\xbb\x97\xc6\xa3\x6b\x03\xb9\xf8\x18\xc1\xf8\
\x20\x32\x53\x09\x00\x1b\x42\x41\x7f\x0d\xed\x41\x28\xcc\xd1\xe1\
\x01\x38\x2b\x3e\x18\x1d\xff\x6d\xd4\xc0\x1e\x78\x6e\xaa\xcc\x43\
\x07\xa5\xe3\xe3\x9d\x4b\xe3\xd1\xbd\x21\xe3\x83\xc8\x21\x62\x01\
\xac\x67\x7c\xd8\x83\xe3\xc3\x03\x70\x46\x7c\x30\x3a\x4e\x2c\x79\
\x60\x4f\x3c\x97\x36\x59\x64\x6d\xd1\xf8\x30\x80\xb7\xc7\xc7\xa3\
\x67\x23\xc6\x07\x91\x43\xc4\x20\x1c\x1f\xce\xfc\x66\xe9\x22\x8e\
\x7c\x57\xcb\xc9\xd8\xf5\xdd\x2e\x8c\x8e\xd3\xfb\xf4\xbb\xdf\x31\
\x21\xf5\x49\x91\xb5\x5f\x1c\x5b\x0a\xc3\xdb\xc4\x88\xac\x9d\x13\
\x02\x2e\x7a\xf3\x20\x7e\x5f\x21\xf7\xc8\x80\x2f\xaf\x89\x47\xbb\
\x3a\x7c\xb7\x0b\x91\x49\x72\x00\xd4\x32\x7c\x81\x6d\xda\x83\x44\
\x2b\x57\xec\x78\x44\xd8\x71\xe7\x83\xd1\x51\x30\x67\x0d\xee\x85\
\x67\xee\x96\xf9\xa8\x05\xc9\x9d\x8f\x58\x03\x48\x4f\x29\x85\x3e\
\x4d\x65\xc2\x06\x00\x46\x3c\x77\x00\xf3\x04\x9f\x21\x42\x14\x65\
\x22\x97\x5d\x2a\x6a\x0f\x12\xad\x5c\x15\x1e\x80\xbd\xe2\x83\xd1\
\x51\x38\xa3\x87\xf4\xc6\xd3\x77\x4f\x14\x59\x5b\x3a\x3e\xde\xbc\
\xa8\x14\xfa\x36\x93\x8d\x0f\xc9\x07\x98\x11\x45\x99\x92\x08\xc7\
\x87\xfe\x87\x74\x45\x21\xd7\x85\x07\x60\x8f\xf8\x60\x74\x14\xcd\
\x98\x21\x7d\xf0\x54\xaa\xf3\xe2\x23\xc6\x00\x5e\xbf\xa8\x14\xfa\
\x35\x97\x8b\x8f\x33\x19\x1f\x44\x66\x2a\x0b\x60\x4d\x28\xe8\x2f\
\xa1\x3d\x48\xb4\x71\x65\x78\x00\xba\xf1\xc1\xe8\x28\x9e\xb3\x87\
\xf6\xc1\x93\x77\x5d\x2b\xb2\xb6\x68\x7c\x78\x81\xd7\xfc\xa5\x30\
\x80\xf1\x41\xe4\x14\x55\x01\x2c\x0d\x05\xfd\xae\xfd\x59\x68\x47\
\xae\x7e\xb1\x35\xe2\x83\xd1\x61\x8e\x73\x86\xf9\xf0\xc4\x9d\x13\
\x44\xd6\x96\x8e\x8f\x57\xfc\xa5\x30\xa8\x05\xe3\x83\xc8\x21\xea\
\x03\x98\x1d\x0a\xfa\xb5\xe7\x88\x1a\xae\x0e\x0f\xc0\xda\xf8\x60\
\x74\x98\xeb\xdc\xe1\x7d\xf1\xf8\x1d\xce\x8c\x8f\x97\xc7\x95\xc2\
\xe0\x96\x8c\x0f\x22\x87\x68\x07\xe0\x7b\xed\x21\xa2\x85\xab\xde\
\x4e\x7b\x2a\xd2\x6f\xb5\xbd\xf8\xec\xa1\x8c\x0e\x21\xef\x7d\xf9\
\x33\x6e\xb8\xf7\x39\x91\xb5\x25\xdf\x6a\x1b\xca\x05\xae\x7a\xe7\
\x20\xbe\x59\x24\xf7\x56\xdb\x2f\xae\x89\x47\x7b\xbe\xd5\x96\xc8\
\x2c\x6f\x1a\xbe\xc0\xc5\xda\x43\xb8\x5d\xd4\x84\x07\x20\x1b\x1f\
\x52\xa2\x3d\x3a\x22\xde\xfb\xe2\x27\xdc\x70\xdf\xf3\x22\x6b\x4b\
\xc7\xc7\x35\xef\x1e\xc4\x57\x0b\xe5\xe2\xe3\xf3\x6b\xe2\xd1\x81\
\xf1\x41\x64\x96\xa9\x86\x2f\x70\x97\xf6\x10\x6e\x16\x55\xe1\x01\
\x38\x2b\x3e\x18\x1d\xff\xed\xdd\xcf\x7f\xc2\x8d\xf7\x3b\x33\x3e\
\x26\xbc\x77\x10\x5f\x0a\x5d\xda\x01\x18\x1f\x44\x26\xbb\xc4\xf0\
\x05\xde\xd0\x1e\xc2\xad\xa2\x2e\x3c\x00\x67\xc4\x07\xa3\xe3\xc4\
\xde\xf9\xec\x47\xdc\xf4\xc0\x0b\x22\x6b\x4b\xc6\x47\x6e\x1e\x70\
\xed\x7b\x07\xf1\x79\x96\x60\x7c\x5c\x1d\x8f\x0e\x75\x19\x1f\x44\
\x26\xe9\x6b\xf8\x02\x41\xed\x21\xdc\x28\x2a\xc3\x03\xb0\x77\x7c\
\x30\x3a\x4e\xed\xed\x8c\x1f\x70\xf3\x83\x2f\x8a\xac\x2d\x1d\x1f\
\x13\xdf\x3f\x84\xcf\xe6\xe7\x88\xbd\x36\x8c\x0f\x22\x53\x35\x36\
\x7c\x81\x55\xda\x43\xb8\x4d\xd4\x86\x07\x60\xcf\xf8\x60\x74\x14\
\xcc\x5b\x19\xdf\x63\xca\x83\x2f\x89\xac\x2d\x1d\x1f\x93\x3f\x38\
\x84\x4f\xe7\x31\x3e\x88\x1c\xe0\x08\x80\x2a\x86\x2f\xb0\x57\x7b\
\x10\x37\x71\xfd\xdb\x69\x4f\x45\xf2\xad\xb6\x45\xc1\xe8\x28\xb8\
\x71\xc9\x83\xf0\xe0\x94\x2b\x44\xd6\x96\x7c\xab\xad\xd7\x03\x3c\
\x79\x6e\x49\x8c\x6e\x1f\x2b\xf6\xda\x8c\x7c\xfe\x00\xe6\xac\xe7\
\x5b\x6d\x89\x4c\x10\x07\x60\x61\x28\xe8\x8f\xea\xbf\xa4\x9b\x2d\
\xea\xff\x5a\xb4\x6f\xf3\x32\x94\xad\xd9\xfc\x75\x00\x03\x00\xd4\
\xd1\x9a\x83\xd1\x51\x78\x89\xcd\x1b\xa1\x4a\xa5\xf2\xf8\x79\xda\
\x1c\xd3\xd7\xfe\x6a\xe1\x51\x34\xa9\x6e\xa0\x49\x75\xf3\xdb\xdc\
\xe3\x01\x06\xb5\x8c\xc1\xa6\x9d\x79\x58\x92\x9d\x2b\xf2\xda\xbc\
\x3f\x2b\x07\xbd\x9a\xc4\xa0\x46\x85\xa8\xfe\xbb\x05\x91\x19\x2a\
\x00\xe8\x92\x96\x9e\xf5\xb6\xf6\x20\x6e\x11\xf5\xe1\x01\xe8\xc7\
\x07\xa3\xa3\xe8\xda\xb6\x68\x84\xca\x15\xcb\xe1\xe7\xe9\x73\x4d\
\x5f\x5b\x3a\x3e\x06\xb6\x88\xc1\x96\x5d\x79\x58\xbc\x85\xf1\x41\
\x64\x73\x8d\x52\x53\x12\x4b\xa4\xa5\x67\xfd\xac\x3d\x88\x1b\x30\
\x3c\xf2\x69\xc5\x07\xa3\xa3\xf8\xda\xb6\x68\x8c\x4a\x15\xca\xe1\
\x17\x87\xc6\x47\xf6\xee\x3c\x2c\x62\x7c\x10\xd9\x5d\xcf\xd4\x94\
\xc4\x85\x69\xe9\x59\x4b\xb5\x07\x71\x3a\x5e\xb7\x3a\x8e\x95\x37\
\x9c\x32\x3a\xcc\xf5\xfa\x87\xdf\xe0\x8e\xc7\x5e\x15\x59\x5b\xf2\
\x86\xd3\xbc\x3c\x60\xca\xa7\x87\xf0\x6e\xa6\xdc\x0d\xa7\x9f\x5d\
\x1d\x8f\x8e\xbc\xe1\x94\xc8\x0c\x4d\x0c\x5f\x60\xa5\xf6\x10\x4e\
\xc6\xf0\x38\x01\x2b\xe2\x83\xd1\x21\xe3\xb5\x0f\xbf\xc6\x9d\x8f\
\xbd\x26\xb2\xb6\x74\x7c\xdc\x92\x71\x08\xef\xcc\x64\x7c\x10\xd9\
\xdc\x41\x00\x15\x0d\x5f\xe0\xb0\xf6\x20\x4e\xc5\xfd\xd7\x13\xc8\
\x7f\xb7\xcb\x56\xa9\xf5\x19\x1d\x72\xc6\x9f\x33\x0c\x69\xd7\x5f\
\x22\xb2\xb6\xe4\xbb\x5d\x3c\x1e\xe0\xc1\xe4\x92\x18\xd7\x45\xee\
\xdd\x2e\xa3\x9e\x3f\x80\xd9\xeb\xf8\x6e\x17\xa2\x62\x2a\x05\x9b\
\xbc\x13\xd2\xa9\xf8\xd7\x9f\x13\x48\x48\x4a\xfe\x04\xc0\x59\x12\
\x6b\x33\x3a\xe4\xb5\x6f\xd5\x04\xe5\xca\x96\xc6\xaf\x7f\xcd\x33\
\x7d\x6d\xe9\x7b\x3e\xfa\x35\x8b\xc1\x8e\xfd\x79\xc8\xda\x24\x74\
\xcf\xc7\xec\x1c\xf4\x6c\x1c\x83\x9a\xbc\xe7\x83\xa8\x38\x6a\xa4\
\xa6\x24\x96\x4b\x4b\xcf\xfa\x41\x7b\x10\x27\x62\x78\x1c\x87\xd1\
\xe1\x0e\x1d\x5a\x35\x41\xd9\x32\xf1\xf8\xf5\xaf\xf9\xa6\xaf\x2d\
\x1d\x1f\x7d\x9b\xc5\x60\xe7\x81\x3c\xcc\xdf\x28\x13\x1f\x1f\x30\
\x3e\x88\xcc\xd0\x35\x35\x25\x71\x4e\x5a\x7a\xd6\x0a\xed\x41\x9c\
\x86\xf7\x78\x1c\x83\xd1\xe1\x3e\x2f\xbd\xfb\x05\xee\x79\xea\x4d\
\x91\xb5\x45\xef\xf9\x00\x70\xd7\xe7\x87\xf1\xc6\xf4\x23\x62\xaf\
\x4d\xc6\x55\xf1\xe8\x54\x8f\x7f\xf7\x20\x2a\xa6\x04\xc3\x17\xf8\
\x5b\x7b\x08\x27\xe1\x5f\x79\xf2\x31\x3a\xdc\xe9\x8a\x0b\xce\xc4\
\x5d\x13\x2f\x12\x59\x5b\xf4\x9e\x0f\x00\x69\x23\x4b\x60\x7c\xf7\
\x38\xb1\xd7\x26\xf9\x85\x03\x98\xc5\x7b\x3e\x88\x8a\x6b\x4e\x28\
\xe8\xd7\x9e\xc1\x51\xf8\xd7\x1d\x30\x3a\xdc\xae\x63\x9b\x66\x88\
\x2f\x55\x12\xbf\x67\x66\x99\xbe\xb6\xe8\x65\x17\x00\xbe\xa6\x31\
\xd8\x73\x08\x98\xbb\x41\x26\x10\x78\xd9\x85\xa8\xd8\xca\x02\x68\
\x94\x96\x9e\x95\xa1\x3d\x88\x53\x44\xfd\x77\x1b\x46\xc7\xa9\x6d\
\xdb\xb1\x13\x35\x3a\x9f\x85\xec\x6d\x3b\xb4\x47\x29\x96\xab\x2e\
\x1c\x89\x3b\xae\x95\xf9\x5b\x89\xe4\xce\x07\x00\xdc\x3d\xa2\x04\
\x2e\xef\x29\xbb\xf3\x91\xc9\x9d\x0f\xa2\xe2\xb8\x30\x14\xf4\x9f\
\xad\x3d\x84\x53\x44\xf5\x3d\x1e\x8c\x8e\x53\xdb\xb6\x63\x27\xda\
\x0e\x1d\xff\x9f\xff\x7b\xce\x97\xaf\x20\xa1\x5a\x65\xed\xb1\x8a\
\xe5\xb9\xb7\x32\x70\xdf\xb3\x6f\x89\xac\x2d\x79\xcf\x07\x00\x4c\
\xfd\xfa\x30\x5e\xfa\x5d\xee\x9e\x8f\x4f\xaf\x8a\x47\x12\xef\xf9\
\x20\x2a\x0e\xde\xef\x51\x00\x51\xbb\xe3\xc1\xe8\x38\xb5\xe3\xa3\
\x03\x00\x3a\x8c\xb8\xcc\xf1\x3b\x1f\xd7\x8c\x4b\xc6\x6d\xd7\x5c\
\x28\xb2\xb6\xf4\xce\xc7\x9d\xc3\x4a\xe0\xaa\xde\x72\x3b\x1f\x67\
\x71\xe7\x83\xa8\xb8\xfe\xd2\x1e\xc0\x09\xa2\x32\x3c\x18\x1d\xa7\
\x76\xa2\xe8\x88\x70\x43\x7c\x4c\xf0\x9f\x85\x5b\xaf\x76\x66\x7c\
\xdc\x3e\xb4\x04\xae\xee\xc3\xf8\x20\xb2\xa9\xba\xa1\xa0\xff\x49\
\xed\x21\xec\x2e\xea\x2e\xb5\x30\x3a\x4e\xed\x54\xd1\x71\x2c\x37\
\x5c\x76\x79\xfa\xcd\x4f\xf0\xe0\x0b\xef\x88\xac\x2d\x7d\xd9\xe5\
\x81\xef\x0e\xe3\xb9\xa0\xe0\x65\x97\x2b\xe3\x91\x54\x9f\x97\x5d\
\x88\x8a\xa8\x87\xe1\x0b\xf0\xe9\xa6\x27\x11\x55\xe1\xc1\xe8\x38\
\xb5\x82\x46\x47\x84\x1b\xe2\xe3\xa9\x37\x3e\xc6\x43\x2f\xbe\x2b\
\xb2\xb6\x74\x7c\x3c\xf4\xdd\x61\x3c\xc3\xf8\x20\xb2\xa3\x1c\x00\
\x65\x0c\x5f\x40\xee\x0f\xa8\x83\x45\xcd\xa5\x16\x46\xc7\xa9\x15\
\x36\x3a\x00\x77\x5c\x76\x99\x74\xf1\x18\xdc\x7c\xc5\xf9\x22\x6b\
\x4b\x5f\x76\x99\x32\xb8\x04\x26\xf6\x15\xbc\xec\xf2\xe2\x01\xcc\
\x5c\xcb\xcb\x2e\x44\x45\x10\x0b\xe0\x73\xed\x21\xec\x2a\x2a\xc2\
\x83\xd1\x71\x6a\x45\x89\x8e\x08\x37\xc4\xc7\xe4\x4b\xce\xc6\x4d\
\x97\x3b\x33\x3e\x6e\x1e\x54\x02\x93\xfb\xc9\xc5\xc7\x68\xc6\x07\
\x51\x51\x0d\x0e\x05\xfd\xe7\x68\x0f\x61\x47\xae\xbf\xd4\xc2\xe8\
\x38\xb5\xe2\x44\xc7\xb1\xdc\x70\xd9\xe5\xf1\x57\x3f\xc4\xa3\xaf\
\xbc\x2f\xb2\xb6\xf4\x65\x97\xc7\x7e\x3c\x8c\x27\x7e\x92\xdb\xd5\
\xfd\xe4\xca\x78\x74\xe6\x65\x17\xa2\xa2\xa8\x60\xf8\x02\xbb\xb5\
\x87\xb0\x13\x57\xef\x78\x30\x3a\x4e\xcd\xac\xe8\x00\xdc\xb1\xf3\
\x71\xfd\xa5\xe7\xe0\x86\xcb\xce\x15\x59\x5b\x7a\xe7\xe3\x86\x01\
\x25\x70\xfd\x80\x12\x62\xeb\x73\xe7\x83\xa8\xc8\xbe\xd7\x1e\xc0\
\x6e\x5c\x1b\x1e\x8c\x8e\x53\x33\x33\x3a\x22\xdc\x10\x1f\x37\x5c\
\x7a\x2e\xae\xbf\x54\x66\x77\x54\x3a\x3e\xae\xef\x1f\x87\x1b\x07\
\x32\x3e\x88\x6c\xa6\x73\x28\xe8\x4f\xd1\x1e\xc2\x4e\x5c\xb9\x77\
\x9a\x90\x94\x3c\x12\xc0\x3d\x52\xeb\x6f\xca\xfe\x07\xc3\xfb\x75\
\x83\xd7\xeb\xdc\x6e\xbb\xf6\xee\xa7\xb1\x6a\xfd\x66\xd3\xd7\x5d\
\xb9\x6e\x13\x46\x0f\xee\xad\x7d\x7a\xc5\xd2\xad\x43\x2b\xe4\xe6\
\xe5\xe2\xaf\x79\x4b\x4c\x5f\x5b\xf2\xb3\x5d\x00\xa0\x4b\x03\x03\
\x86\xd7\x83\xe9\xab\x65\x02\xe1\xc3\xd9\x39\xe8\xde\x28\x06\xb5\
\x2a\x3a\xf7\x6b\x9f\x48\xc1\xa8\xd4\x94\xc4\xa7\xd2\xd2\xb3\x0e\
\x69\x0f\x62\x07\xae\x0c\x8f\x7d\x9b\x97\x2d\x2f\x5b\xb3\xf9\x21\
\x00\xfd\x25\xd6\x5f\xbd\x61\x0b\x96\xac\x5c\x8f\x11\xfd\xba\x3a\
\x36\x3e\x86\xf7\xed\x8a\xa5\xab\x36\x98\x1a\x1f\xbe\xae\xed\xf0\
\xe6\xa3\xb7\xc1\x70\xe8\x6b\x72\xac\xee\x1d\x5a\x23\x94\xeb\xdc\
\xf8\x88\x35\x3c\x98\x26\x18\x1f\xdd\x18\x1f\x44\x85\xd5\x27\x2d\
\x3d\xeb\x35\xed\x21\xec\xc0\x95\xe1\x01\x00\xfb\x36\x2f\x9b\x26\
\x1a\x1f\xeb\x37\x63\xe9\xaa\x0d\x18\xde\xb7\x1b\xbc\x5e\xe7\xdd\
\xa3\xeb\xf5\x7a\x4d\x8d\x8f\x48\x74\xc4\xc6\xb8\xe7\x4b\xaa\x7b\
\xc7\xd6\x38\x1a\x0a\x61\xe6\x7c\xe7\xc5\x47\xe7\xfa\x06\xe2\x62\
\x3c\xf8\x73\x95\x60\x7c\x34\x64\x7c\x10\x15\x42\xad\xd4\x94\xc4\
\x65\x69\xe9\x59\x8b\xb5\x07\xd1\xe6\x9e\x9f\x12\x27\x20\x1d\x1f\
\xab\xd6\x6f\xc6\xf2\xd5\x1b\x30\xac\x6f\xd7\xa8\x8e\x0f\x37\x46\
\x47\x44\x8f\x8e\xad\x91\x73\xf4\x28\x66\xce\x5f\x6a\xfa\xda\xd2\
\xf1\x91\x54\xdf\x40\x89\x58\xc1\xf8\x98\xc3\xf8\x20\x2a\xa4\xd1\
\xa9\x29\x89\x0f\xa7\xa5\x67\xc9\xdd\xec\xe5\x00\xee\xfb\x49\x71\
\x1c\xe9\xf8\x58\xb9\x6e\x13\x56\xac\xd9\x88\x61\xbe\xe8\x8c\x0f\
\x37\x47\x47\x44\x8f\x4e\x6d\x70\x24\x27\x07\x99\x59\x0e\x8c\x8f\
\x7a\x06\x4a\xc5\x79\xf0\xc7\x4a\xc6\x07\x91\x0d\x78\x00\xb4\x4e\
\x4b\xcf\x92\x79\xdf\xbe\x43\xb8\xf7\xa7\xc5\x31\xf2\xe3\xe3\x30\
\x04\xe3\x63\xe5\xda\x8d\x18\xda\xb7\x2b\xbc\x9e\xe8\x89\x8f\x68\
\x88\x8e\x88\x9e\x9d\xda\xe0\xf0\x91\x23\xc8\xcc\x5a\x66\xfa\xda\
\xd2\xf1\xd1\xa9\x9e\x81\xf8\x38\x0f\x7e\x67\x7c\x10\xd9\x41\xd3\
\xd4\x94\xc4\x9f\xd3\xd2\xb3\x36\x68\x0f\xa2\xc5\xfd\x3f\x31\xf2\
\xed\xdb\xbc\xec\x4f\xc9\xf8\x58\xb1\x76\x13\x56\xad\xdb\x84\xa1\
\xbe\x2e\x51\x11\x1f\xd1\x14\x1d\x11\x3d\x93\x12\x71\xe8\xf0\x11\
\xcc\x5a\xe0\xbc\xf8\xe8\x58\xcf\x40\xe9\x12\xb2\xf1\xd1\xb5\x61\
\x0c\x6a\x33\x3e\x88\x0a\xe2\x9c\xd4\x94\xc4\x07\xd3\xd2\xb3\xb4\
\xe7\x50\x11\x3d\x3f\x35\x60\x45\x7c\x6c\xc4\xea\x0d\x9b\x31\xb4\
\x4f\x17\x78\x5c\x1c\x1f\xd1\x18\x1d\x11\xbd\x92\x12\x71\xe0\xd0\
\x61\xcc\x76\x62\x7c\xd4\x35\x50\xb6\xa4\x07\xbf\xad\x90\x89\x8f\
\x8f\x18\x1f\x44\x05\x15\x07\x20\x2e\x2d\x3d\xeb\x67\xed\x41\x34\
\x44\xdd\x4f\x0e\xe9\xf8\x58\xbe\x66\x23\xd6\x6c\xdc\x82\x21\x7d\
\x3a\xbb\x32\x3e\xa2\x39\x3a\x22\x7a\x77\x4e\xc4\xfe\x83\x87\x30\
\x7b\xe1\x72\xd3\xd7\x96\x8e\x8f\x0e\x75\x0d\x94\x2b\xe5\xc1\xaf\
\x8c\x0f\x22\x6d\x3d\x53\x53\x12\x5f\x4e\x4b\xcf\xda\xa7\x3d\x88\
\xd5\xa2\xf2\xa7\xc7\xbe\xcd\xcb\xfe\xec\xd1\xb9\x55\xa5\xad\x7b\
\xf2\x3a\x4b\xac\xbf\x6c\xf5\x06\xac\xdd\x94\x8d\x21\xbd\xdd\x15\
\x1f\x8c\x8e\xff\xd7\xbb\x73\x5b\xec\x3b\x70\x10\x73\x1c\x18\x1f\
\xed\xeb\x18\x28\x1f\xef\xc1\xaf\xcb\x19\x1f\x44\xca\x7a\xa7\xa5\
\x67\xbd\xa2\x3d\x84\xd5\xa2\xf6\x27\xc8\xf2\xe7\x3b\xbe\xda\xb1\
\x9e\x51\xee\x93\xb9\x32\xef\x6a\x5a\xb6\x7a\x03\xd6\x6d\xfe\x1b\
\x83\x7b\x27\xb9\x22\x3e\x18\x1d\xff\xab\x4f\x97\xb6\xd8\xbb\xff\
\x00\xe6\x2c\x5a\x61\xfa\xda\x56\xc4\x47\x85\x78\x0f\x82\x8c\x0f\
\x22\x4d\x35\x52\x53\x12\x33\xd3\xd2\xb3\x56\x69\x0f\x62\xa5\xa8\
\xfc\x29\x12\x0a\xfa\x2f\x05\x30\xb6\x6e\x65\x2f\x3a\xd6\x33\x20\
\x15\x1f\x4b\x57\xad\xc7\xfa\x2d\x5b\x31\xb8\x97\xb3\x77\x3e\x76\
\xec\xdc\x83\xa7\xef\x9e\xc4\xe8\x38\x81\x3e\x5d\xda\x61\xcf\xbe\
\xfd\x98\xeb\xc0\xf8\x68\x57\xc7\x40\xa5\xd2\x5e\xfc\xb2\x5c\xe6\
\xeb\xff\xa3\x39\x39\xe8\xda\x20\x06\xb5\x2b\x31\x3e\x88\x4e\xe1\
\xac\xd4\x94\xc4\xfb\xa3\xe9\x46\xd3\xa8\xfb\x49\x12\x0a\xfa\xe3\
\x00\xcc\x44\xf8\xfd\xd4\xb0\x22\x3e\x36\x64\x6f\xc3\xa0\x5e\xce\
\xdd\xf9\xe8\xdf\xa3\xa3\x2b\x1e\x83\x2e\xc5\xd7\xb5\x1d\x76\xef\
\xdd\x8f\xb9\x8b\x9d\x17\x1f\x6d\x6b\x1b\xa8\x5c\xc6\x8b\x5f\x96\
\xc9\xc5\x47\x17\xc6\x07\xd1\xa9\xc4\x02\x40\x5a\x7a\xd6\xaf\xda\
\x83\x58\x25\x1a\xbf\x1b\x3c\x83\xfc\xe8\x88\xe8\xd5\x38\x06\xef\
\x5e\x5a\x4a\xec\x80\x1f\x7f\xf3\x2b\xae\xbf\xf7\x59\xe4\xe6\xe5\
\x69\x9f\x3b\x09\x49\xbb\xfe\x12\x8c\x3f\x67\x98\xc8\xda\xd2\x9f\
\x6a\x7b\x51\xd7\x58\xdc\x9f\x5c\x52\x6c\xfd\x73\x5e\x3e\x20\xf6\
\xa1\x75\x44\x2e\x91\x1a\x0a\xfa\xcb\x6b\x0f\x61\x95\xa8\xda\xf1\
\x08\x05\xfd\x35\x01\xbc\x73\xa2\xff\x4d\x7a\xe7\x63\xf1\xca\x75\
\xd8\xfc\xf7\x76\x0c\xea\xd5\xc9\x91\x3b\x1f\x74\x7a\xbe\x6e\xed\
\xb1\x6b\xf7\x5e\xcc\x5b\xb2\xd2\xf4\xb5\xa5\x77\x3e\x12\x6b\x19\
\xa8\x56\xd6\x8b\x9f\xb8\xf3\x41\xa4\xa5\x45\xb4\x3c\xd1\x34\xaa\
\xc2\x23\x35\x25\xf1\x7b\x00\xb5\x4f\xf6\xbf\x8b\xc7\xc7\x8a\xb5\
\xd8\xb2\x75\x3b\x06\xf6\x64\x7c\xb8\x91\x07\x80\xaf\x6b\x7b\xec\
\xdc\xb5\x07\xf3\x97\x98\x7f\xaf\x98\x74\x7c\xb4\xa9\x65\xa0\x7a\
\x39\x2f\x7e\x5a\xca\xf8\x20\x52\xd0\x34\x35\x25\xf1\xc3\xb4\xf4\
\xac\xed\xda\x83\x48\x8b\x9a\xf0\x08\x05\xfd\x9d\x01\xdc\x73\xba\
\xff\x4e\x3a\x3e\x16\xad\x58\x8b\xec\x6d\x3b\x18\x1f\x2e\xe5\xf1\
\x00\x7d\xbb\xb5\xc7\x8e\x9d\x7b\x90\xb5\xd4\x99\xf1\x71\x46\x79\
\x2f\x7e\x64\x7c\x10\x69\xe8\x97\x96\x9e\xf5\x9c\xf6\x10\xd2\xa2\
\x26\x3c\x52\x53\x12\x67\x02\x28\x57\x90\xff\x56\x3c\x3e\x96\xaf\
\xc5\xdf\xff\xfc\x8b\x01\x3d\x3a\x32\x3e\x5c\xc8\xe3\xf1\xa0\x5f\
\xb7\xf6\xd8\xfe\xef\x6e\x64\x2d\x5d\x6d\xfa\xfa\xd2\xf1\xd1\xba\
\xa6\x81\x84\x0a\x5e\xfc\xb8\x44\x2e\x3e\x3a\x37\x88\x41\x1d\xc6\
\x07\xd1\xf1\xaa\xa4\xa6\x24\xce\x48\x4b\xcf\x32\xff\x1b\x87\x8d\
\x44\x45\x78\x84\x82\xfe\x31\x00\xc6\x17\xe6\xd7\x48\xc7\xc7\xc2\
\xe5\x6b\xb0\x75\xfb\x4e\xc6\x87\x4b\x79\x3c\x1e\xf4\xeb\xde\x01\
\xff\xec\xd8\x8d\x05\xcb\x9c\x19\x1f\x35\x2a\x78\xf1\x83\x50\x7c\
\x7c\xcc\xf8\x20\x3a\x99\x11\x69\xe9\x59\x0f\x69\x0f\x21\xc9\xf5\
\xe1\x11\x0a\xfa\x01\x60\x36\xf2\xdf\xb2\x54\x18\xe2\xf1\xb1\x6c\
\x0d\xb6\xed\xd8\x85\xfe\xdd\x3b\x30\x3e\x5c\xc8\xe3\xf1\xa0\x7f\
\xf7\x0e\xd8\xb6\x7d\x97\x23\xe3\xa3\x55\x4d\x03\xb5\x2a\x7a\xf1\
\x3d\xe3\x83\xc8\x4a\x25\x53\x53\x12\x37\xa4\xa5\x67\xcd\xd7\x1e\
\x44\x4a\x34\xfc\x89\x9f\x00\xa0\xc8\xef\x95\xed\xd5\x38\x06\xef\
\x8e\x97\x7b\xab\xed\xdb\x19\x3f\xe0\xd6\x87\x5f\x46\x1e\xdf\x6a\
\xeb\x4a\x1e\x8f\x07\x0f\xdd\x72\x05\xc6\x8e\x1c\x20\xb2\xbe\xf4\
\x5b\x6d\xcf\xe9\x18\x8b\x27\xce\x91\x7b\xab\xed\xb9\x2f\x1f\xc0\
\xb4\x55\x7c\xab\x2d\xd1\x71\x5e\x0e\x05\xfd\xae\xfd\xdb\xa8\xab\
\x77\x3c\x42\x41\xbf\x01\x60\x3a\x8e\x7b\x6e\x47\x61\xd5\xad\xec\
\x45\xc7\xba\x06\x3e\x99\x27\xf3\x0d\x3e\x6b\xe9\x6a\xec\xd8\xb9\
\x07\xfd\xba\xb5\xe7\xce\x87\x0b\x79\x3c\x1e\x0c\xe8\xd1\x11\x7f\
\x6f\xfb\x17\x0b\x97\xaf\x31\x7d\x7d\xe9\x9d\x8f\x96\x35\x0c\xd4\
\xa9\xec\xc5\x77\x8b\x85\x76\x3e\xe6\xe6\xa0\x73\x7d\xee\x7c\x10\
\x1d\xc3\x0b\x60\x7f\x5a\x7a\xd6\x74\xed\x41\xa4\x4e\xce\xcd\x6e\
\x35\xeb\x1c\x7b\x35\x91\xdd\xf9\x48\xff\xe4\x3b\xdc\xfe\xe8\x2b\
\xdc\xf9\x70\x29\x8f\xc7\x83\x47\x6e\xbb\x0a\xe7\x8f\xe8\x27\xb2\
\xbe\xf4\xce\xc7\x98\xf6\xb1\x78\xea\x5c\xc1\x9d\x8f\x57\x0e\xe0\
\x4f\xee\x7c\x10\x1d\xeb\xe1\x50\xd0\x1f\xa3\x3d\x84\x04\xd7\xee\
\x78\x84\x82\xfe\x58\x00\x41\x33\xd7\xac\x5b\xd9\x8b\x0e\x75\x0d\
\x7c\x2a\xb4\xf3\x31\x7f\xc9\x2a\xec\xdc\xbd\x17\x7d\xbb\x76\x00\
\x37\x3e\xdc\xc7\xe3\xf1\x60\x60\xcf\x4e\xd8\xfc\xf7\x76\x2c\x5e\
\xb1\xd6\xf4\xf5\xa5\x77\x3e\x5a\x24\x18\xa8\x57\xc5\x8b\x6f\x17\
\xc9\xed\x7c\x24\x71\xe7\x83\xe8\x58\x9e\xb4\xf4\x2c\x53\x7f\x8e\
\xd9\x81\x9b\xff\x84\xdf\x2d\xb1\x68\xef\x26\x31\x78\x47\x70\xe7\
\xe3\x8d\x8f\xbe\xc5\x9d\x8f\xbf\x0a\xee\x7b\x9c\xd8\xee\xbd\xfb\
\xb1\x64\xe5\x3a\xed\x31\x8a\xcc\xe3\xf1\xe0\xb1\x3b\xae\xc1\x39\
\xc3\x7c\x22\xeb\x4b\xef\x7c\x9c\xd5\x2e\x16\xcf\x9e\x2f\xb7\xf3\
\x71\x1e\x77\x3e\x88\x8e\x75\x67\xfe\xe7\x8b\xb9\x8a\x2b\x77\x3c\
\x42\x41\x7f\x09\x00\xdf\x4b\xad\x5f\x4f\x78\xe7\x63\xde\xe2\x95\
\xd8\xbd\x77\x1f\xfa\x76\x6d\x2f\x75\x0a\x8e\xb4\x7b\xef\x7e\x74\
\x1f\x73\x0d\x5e\x7a\xf7\x0b\x0c\xe9\xd3\x19\x55\x2b\x57\xd0\x1e\
\xa9\x48\x3c\x1e\x0f\x06\xf6\x4a\xc2\xc6\x2d\xdb\x44\x22\x4a\x7a\
\xe7\xa3\xd9\x19\x06\x1a\x56\xf5\xe2\x1b\xee\x7c\x10\x59\x21\x2e\
\x2d\x3d\xeb\x27\xed\x21\xcc\xe4\xd6\x3f\xd9\x77\x4b\x1f\x40\x7a\
\xe7\xe3\xb5\x0f\xbe\xc6\x5d\x4f\xbc\x2e\x7d\x1a\x8e\x11\x89\x8e\
\x7f\x77\xed\x01\x00\xf4\xbf\xf0\x7a\x47\xef\x7c\x78\x3d\x1e\x3c\
\x71\xe7\xb5\x18\x33\xa4\x8f\xc8\xfa\xd2\x3b\x1f\x23\xdb\xc6\xe2\
\xf9\x0b\xe4\xbe\xfe\xb9\xf3\x41\xf4\x1f\x53\xdc\xb6\xeb\xe1\xba\
\x1d\x8f\xfc\xdf\x20\xb1\xdd\x8e\x63\x49\xef\x7c\xcc\x5d\xb4\x02\
\x7b\xf6\x1f\x80\xaf\x4b\x3b\x2b\x4e\xc7\xb6\x8e\x8f\x8e\x88\xc0\
\xa7\xdf\x3b\x7e\xe7\x63\x50\xaf\x24\xac\xdf\xbc\x15\x4b\x57\xad\
\x37\x7d\x7d\xe9\x9d\x8f\xa6\x67\x78\xd1\xb8\xba\x81\xaf\x17\x72\
\xe7\x83\x48\x98\x91\x96\x9e\xf5\x8b\xf6\x10\x66\x71\xe3\x9f\xe8\
\xdb\xac\x3c\x98\xf4\xce\xc7\x2b\xef\x7d\x89\x7b\x9e\x7a\xd3\xca\
\x53\xb2\x95\x93\x45\x47\x84\xe3\x77\x3e\xbc\x1e\x3c\x95\x7a\x2d\
\xce\x1a\xd4\x4b\x64\x7d\xe9\x9d\x8f\x11\x6d\x62\xf0\xe2\x58\xd9\
\x9d\x8f\x3f\xb8\xf3\x41\x74\x9b\x9b\xde\xe1\xe2\xaa\x1d\x8f\xfc\
\xe7\x76\xfc\x8c\x62\x3e\xb7\xa3\xb0\xa4\x77\x3e\xe6\x2c\x5c\x8e\
\xfd\x07\x0f\xa2\x77\xe7\xb6\x56\x9e\x96\xba\xd3\x45\x47\x84\x1b\
\x76\x3e\x06\xf7\x4e\xc2\x9a\x8d\xd9\x58\xb6\x7a\x83\xe9\xeb\x4b\
\xef\x7c\x34\xa9\xee\x45\xd3\x33\x0c\xb1\xc0\xf9\x64\x6e\x0e\x3a\
\xd5\x8b\x41\xdd\xca\x6e\xfc\x7b\x12\x51\x81\x1d\x4e\x4b\xcf\xfa\
\x43\x7b\x08\x33\xb8\xed\x4f\xf2\x44\x58\x1c\x1d\x11\xd2\x3b\x1f\
\x2f\xbe\xf3\x05\xa6\x3e\x9d\xae\x71\x6a\x2a\x0a\x1a\x1d\x11\xce\
\xdf\xf9\xf0\xe2\xd9\x7b\x26\x61\xe4\x80\x1e\x22\xeb\x4b\xef\x7c\
\x0c\x6b\x1d\x83\x97\xc7\xc9\x7d\xfd\x9f\xff\xea\x01\xfc\xb1\x92\
\x3b\x1f\x14\xd5\xa6\xba\xe5\x69\xa6\xae\xd9\xf1\xc8\xff\x4c\x96\
\xdf\x35\xcf\x49\x7a\xe7\x63\xf6\xc2\xe5\x38\x78\xe8\x30\x7a\x75\
\x4e\xd4\x3a\x45\x4b\x14\x36\x3a\x22\xdc\xb0\xf3\x31\xb4\x4f\x67\
\xac\x5a\xbf\x19\xcb\xd7\x6c\x34\x7d\x7d\xe9\x9d\x8f\xc6\xd5\xbc\
\x68\x91\x60\xe0\x0b\xee\x7c\x10\x49\xf0\x00\xf8\x3b\x2d\x3d\x6b\
\xb6\xf6\x20\xc5\xe5\xa6\x3f\xc1\x63\x51\x84\x0f\x82\x33\x9b\xf4\
\xce\xc7\xf3\x6f\x7f\x86\xfb\x9e\x7d\x4b\xfb\x34\xc5\x14\x35\x3a\
\x22\xdc\xb0\xf3\xf1\xdc\xd4\xeb\x30\xa2\x5f\x37\x91\xf5\xa5\x77\
\x3e\x06\xb7\x8a\xc1\x6b\x7e\xe9\x9d\x0f\xb9\xf9\x89\x6c\xee\x71\
\xed\x01\xcc\xe0\xa6\xf0\x78\x56\x7b\x80\x08\xe9\xf8\x78\xee\xad\
\x0c\xdc\xff\xdc\xdb\xda\xa7\x69\xba\xe2\x46\x47\x84\xd3\xe3\xc3\
\xf0\x7a\xf1\xfc\xbd\xd7\x63\x78\xdf\xae\x22\xeb\x4b\xc7\xc7\xa0\
\x96\x31\x78\xfd\x22\xc9\xf8\x38\x88\xdf\x19\x1f\x14\x9d\x4a\x85\
\x82\xfe\x91\xda\x43\x14\x97\x2b\x2e\xb5\x84\x82\xfe\x3e\x00\xae\
\xd4\x9e\xe3\x58\xd2\x97\x5d\x32\xb3\x96\xe2\x48\x4e\x0e\x7a\x76\
\x6a\xa3\x7d\xaa\xa6\x30\x2b\x3a\x22\x9c\x7e\xd9\xc5\xeb\xf1\x60\
\xa8\xaf\x2b\x96\xaf\xd9\x80\x95\xeb\x36\x99\xbe\xbe\xf4\x65\x97\
\x86\x55\xbd\x68\x5d\xd3\xc0\xe7\x59\x52\x97\x5d\x8e\xa2\x63\x3d\
\x83\x97\x5d\x28\x1a\xf5\x4a\x4b\xcf\x72\xf4\xce\x87\x5b\xfe\xd4\
\xbe\xa0\x3d\xc0\x89\x48\xef\x7c\x3c\x93\xfe\x29\x1e\x7c\xe1\x1d\
\xed\xd3\x2c\xb6\x03\x07\x0f\x9b\x1a\x1d\x11\xfd\x2f\xbc\x5e\xe4\
\xf9\x18\x56\x31\x0c\x2f\x5e\xba\xef\x46\x0c\xe9\xd3\x59\x64\x7d\
\xe9\x9d\x8f\x01\x2d\x62\xf0\x66\x8a\xdc\xd7\xff\x05\xdc\xf9\xa0\
\xe8\x54\x23\x14\xf4\x3b\xfa\xb1\xd6\x8e\xdf\xf1\x08\x05\xfd\x0d\
\x01\xa4\x69\xcf\x71\x32\xd2\x3b\x1f\x33\xe7\x2f\xc5\xd1\x50\x08\
\x3d\x3a\xb6\xd6\x3e\xd5\x22\x8b\x8d\x8d\xc1\xce\x3d\x7b\x31\x2b\
\x6b\x99\xa9\xeb\x36\x6f\x54\x17\x57\x8f\x1b\x85\xd8\x18\xe7\xbe\
\xfd\xdd\xeb\xf5\x60\x78\xdf\xae\x58\xba\x6a\x3d\x56\xad\xdf\x6c\
\xfa\xfa\xd2\x3b\x1f\x0d\xaa\x7a\x91\x58\xdb\xc0\x67\xf3\xb9\xf3\
\x41\x64\xa2\x36\x69\xe9\x59\xaf\x69\x0f\x51\x54\x8e\x0f\x8f\xd4\
\x94\xc4\x37\x01\x34\xd5\x9e\xe3\x54\xe4\xe3\x63\x09\x42\xb9\xb9\
\xe8\xee\xe0\xf8\xe8\x95\x94\x88\x43\x47\x8e\x98\x16\x1f\xcd\x1b\
\xd5\xc5\x57\xaf\x3d\x88\x52\x25\x4b\x68\x9f\x5a\xb1\x79\xbd\x5e\
\x0c\xeb\xdb\x15\x4b\x56\xae\xc7\x6a\x27\xc6\x47\x15\x2f\xda\xd6\
\x36\x90\xc1\xf8\x20\x32\x4b\xed\xd4\x94\xc4\x17\xd2\xd2\xb3\xf6\
\x6b\x0f\x52\x14\x8e\x0e\x8f\x50\xd0\x5f\x1a\x80\x23\x1e\x6e\x21\
\x1d\x1f\x7f\xcd\x5b\x82\xdc\xbc\x3c\x74\xef\xd0\x4a\xfb\x54\x8b\
\xcc\xac\xf8\x70\x53\x74\x44\x78\xbd\x5e\x0c\xef\xd7\x15\x8b\x56\
\xac\xc3\x9a\x0d\x5b\x4c\x5f\x5f\x3a\x3e\xea\x57\xf1\xa2\x5d\x1d\
\x03\x19\x42\x5f\xff\x9f\xcc\x3d\x8a\x0e\x75\x0d\xd4\x63\x7c\x50\
\xf4\xa8\x90\x96\x9e\xf5\xa5\xf6\x10\x45\xe1\xe8\xf0\x48\x4d\x49\
\xbc\x0d\x40\x1f\xed\x39\x0a\x4a\x3e\x3e\x16\x23\x0f\x79\xe8\x16\
\xc5\xf1\xe1\xc6\xe8\x88\xf0\x7a\xbd\x18\xd1\xaf\x1b\x16\x2e\x5f\
\xeb\xd8\xf8\x68\x2f\xf8\xf5\xff\xe9\x3c\xc6\x07\x45\x95\x0e\xa9\
\x29\x89\xf7\xa6\xa5\x67\xe5\x69\x0f\x52\x58\x8e\x0d\x8f\xfc\x07\
\x86\xfd\xe8\xb4\x73\x90\x8e\x8f\x19\x73\x17\x03\x1e\xa0\x5b\xfb\
\xe8\x8b\x0f\x37\x47\x47\x44\x24\x3e\x16\x2c\x5f\x83\xb5\x1b\xb3\
\x4d\x5f\x5f\x3a\x3e\xa4\xbf\xfe\x19\x1f\x14\x65\x36\xa6\xa5\x67\
\xcd\xd5\x1e\xa2\xb0\x1c\xf5\x43\xfb\x58\xa9\x29\x89\x83\x01\xf8\
\xb5\xe7\x28\x0a\x2b\xe2\xc3\xe3\xf5\xa0\x6b\xfb\x96\xda\xa7\x5a\
\x64\x85\x8d\x8f\x68\x88\x8e\x08\xaf\xd7\x8b\x33\xfb\x75\x47\xd6\
\xd2\xd5\x58\xbb\xc9\x99\xf1\xd1\xb1\x9e\x81\x4f\xe6\x32\x3e\x88\
\x8a\xa9\x7b\x5a\x7a\xd6\xc3\xda\x43\x14\x96\x93\xc3\xe3\x73\x00\
\x55\xb5\xe7\x28\x2a\xe9\xf8\x98\x3e\x67\x11\xbc\x86\x17\x5d\xdb\
\xb9\x3f\x3e\xa2\x29\x3a\x22\xbc\x5e\x2f\xce\xec\xdf\x1d\xf3\x97\
\xac\xc2\xba\x4d\x7f\x9b\xbe\xbe\x74\x7c\xd4\xad\xec\x45\xa7\xfa\
\x31\xf8\x64\x6e\x8e\xc8\xfa\x8c\x0f\x8a\x12\xf1\xa9\x29\x89\x9f\
\xa5\xa5\x67\x6d\xd5\x1e\xa4\x30\x1c\x19\x1e\xa1\xa0\x3f\x01\xc0\
\x83\xda\x73\x14\x97\x15\xf1\x61\xc4\x18\xe8\xd2\xae\x85\xf6\xa9\
\x16\xd9\xe9\xe2\x23\x1a\xa3\x23\xc2\xeb\xf5\xe2\xcc\x01\xdd\x31\
\x6f\xf1\x4a\xac\xdf\xec\xc0\xf8\xa8\xe4\x45\x52\xfd\x18\x7c\xcc\
\xf8\x20\x2a\x8e\xfa\x69\xe9\x59\x8e\x7a\x94\xb5\x23\xc3\x23\x35\
\x25\xf1\x21\x00\x9d\xb4\xe7\x30\x83\x74\x7c\x4c\x9b\xbd\x10\x31\
\x2e\x8d\x8f\x68\x8e\x8e\x08\xc3\xeb\xc5\xc8\x01\xdd\x31\x77\xd1\
\x0a\xac\xdf\x6c\xfe\x5f\x7a\xa4\xe3\xa3\x4e\x25\x2f\x3a\x37\x88\
\xc1\xc7\x73\xe4\xe2\xa3\x3d\xe3\x83\xdc\xad\x51\x6a\x4a\xe2\xc3\
\x69\xe9\x42\x8f\x09\x16\xe0\xb8\xf0\xc8\xff\x58\xe0\x2f\x11\xfe\
\xa4\x3e\x57\xb0\x22\x3e\x62\x63\x63\xd0\xb9\xad\x7b\xe2\x83\xd1\
\xf1\xff\x0c\xaf\x17\x23\x07\xf6\xc0\x9c\x85\xcb\xb1\x61\x8b\x33\
\xe3\xa3\x4b\x83\x18\x7c\xc4\xf8\x20\x2a\xaa\x7f\xd2\xd2\xb3\x66\
\x6a\x0f\x51\x50\x8e\x0b\x8f\xd4\x94\xc4\xa1\x08\x7f\x12\xad\xab\
\x48\xc7\xc7\x9f\xb3\x17\xa2\x44\x5c\x2c\x92\xda\x36\xd7\x3e\xd5\
\x22\x8b\xc4\xc7\xbe\xfd\x07\x19\x1d\xc7\x31\xbc\x5e\x8c\x1a\xd0\
\x03\xb3\x16\x2c\xc3\xc6\x2d\xdb\x4c\x5f\x5f\x3a\x3e\x6a\x57\xf2\
\xa2\x6b\x43\xc6\x07\x51\x11\x75\x49\x4b\xcf\x7a\x48\x7b\x88\x82\
\x72\xdc\xae\x41\x28\xe8\x9f\x0f\x20\x51\x7b\x0e\x29\xbf\xad\x38\
\x8a\xb1\xaf\x1d\x14\x5b\xff\xf6\x6b\xc6\xe1\x1a\x7f\xb2\xf6\x69\
\x16\xcb\x91\x9c\xa3\x88\x8b\x75\xee\x63\xd0\x25\x1d\xc9\x39\x8a\
\x0b\x26\xa5\x61\xfa\x9c\x45\x22\xeb\xbf\x38\xb6\x14\x86\xb7\x91\
\x7b\xed\xff\x5a\x13\xc2\x98\x97\x0e\x88\xad\xff\xf6\x25\xa5\xd0\
\xa7\x29\xbf\x76\xc8\x95\x5a\x1a\xbe\xc0\x12\xed\x21\x0a\xc2\x51\
\x3b\x1e\xa1\xa0\xbf\x02\x80\x27\xb4\xe7\x90\x24\xbd\xf3\xf1\xc7\
\xac\x05\x28\x55\x32\x0e\x9d\x12\x9d\xbb\xf3\x61\x18\xfc\x5b\xeb\
\xc9\x18\x86\x17\xa3\x06\xf6\xc4\xcc\xf9\x4b\xb0\x29\xfb\x1f\xd3\
\xd7\x97\xde\xf9\xa8\x55\xd1\x8b\xee\x8d\x62\xf0\xe1\x6c\xc1\x9d\
\x8f\x3a\x06\xea\x55\xe1\xd7\x10\xb9\x4e\xd5\xb4\xf4\xac\x8f\xb5\
\x87\x28\x08\xa7\xfd\xe9\xbb\x46\x7b\x00\x2b\xf4\x6e\x12\x83\xb7\
\x05\x3f\xd5\xf6\xde\x67\xdf\xc2\x0b\x6f\x7f\xa6\x7d\x9a\x24\x24\
\x2e\x36\x06\xef\x3d\x7d\x97\xd8\x0d\xc5\xd2\x9f\x6a\xdb\xb9\xbe\
\x81\x4f\xaf\x8a\x17\x5b\xff\xc2\xd7\x0f\x22\xb8\xdc\x31\xf7\xe1\
\x11\x15\xd4\x39\xa1\xa0\xdf\x11\x3f\xd3\x1d\x31\xe4\x31\xa6\x68\
\x0f\x60\x95\x3e\xc2\xf1\x31\xf5\x99\x00\x5e\x7c\xe7\x73\xed\xd3\
\x24\x21\x71\xb1\xb1\x78\xff\x99\x54\xb1\x7b\x7a\xa4\xe3\x23\xa9\
\x9e\x81\x0c\xc1\xf8\x18\xc7\xf8\x20\x77\x1a\xae\x3d\x40\x41\x38\
\xe6\x52\x4b\x28\xe8\x6f\x0a\xe0\x06\xed\x39\xac\x54\xaf\xb2\xec\
\x67\x5b\xfc\x36\x33\x0b\x65\x4a\x97\x42\xc7\xd6\xb6\xfe\x70\x5f\
\x2a\x22\xc3\x30\x90\x3c\xa8\x17\xa6\xcf\x59\x84\x2d\x5b\xb7\x9b\
\xbe\xbe\xf4\x65\x97\x9a\x15\xbc\xe8\xd5\x24\x06\xef\xcf\x92\xb9\
\xec\x92\x31\xef\x28\xda\xd5\x31\x50\x9f\x97\x5d\xc8\x3d\x9a\xa7\
\xa5\x67\xbd\xa4\x3d\xc4\xe9\x38\xe9\x4f\xdc\xad\xda\x03\x68\x90\
\xde\xf9\xb8\xe7\xa9\x37\xf1\xf2\xbb\x5f\x68\x9f\x26\x09\x29\x11\
\x17\x8b\x0f\x9f\xbb\x47\x2c\x2e\xa5\x77\x3e\x3a\xd6\x35\xf0\xf9\
\xd5\xdc\xf9\x20\x2a\xa0\xb6\xa1\xa0\xbf\x8c\xf6\x10\xa7\xe3\x88\
\x1d\x8f\xfc\x0f\x84\xfb\x04\x0e\x7c\x17\x8e\x19\xa4\x77\x3e\x7e\
\x9d\x39\x1f\x65\xcb\xc4\xa3\x03\x77\x3e\x5c\x29\xc6\x30\x70\xd6\
\xe0\xde\xf8\x63\xd6\x02\x64\x6f\xdb\x61\xfa\xfa\xd2\x3b\x1f\x35\
\x2a\x78\xd1\xa7\x69\x0c\xde\xe3\xce\x07\x51\x41\x6c\x49\x4b\xcf\
\x9a\xa5\x3d\xc4\xa9\x38\xe5\x4f\x5a\x37\x07\xcd\x2a\x42\x7a\xe7\
\xe3\xee\x27\xdf\xc0\x2b\xef\x7f\xa5\x7d\x9a\x24\xa4\x44\x5c\x2c\
\x3e\x79\x21\x0d\xed\x5a\x36\x16\x59\x5f\x7a\xe7\xa3\x7d\x1d\x03\
\x5f\x5e\x23\xbb\xf3\xf1\x0b\x77\x3e\xc8\x1d\x6c\x7f\x75\xc0\x29\
\x3f\xcc\x6d\xff\x42\x5a\x41\x3a\x3e\x52\x9f\x78\x1d\xaf\x7e\xf0\
\xb5\xf6\x69\x92\x90\x12\x71\x71\xf8\xe4\x85\xa9\x68\xdb\xa2\x91\
\xc8\xfa\xd2\xf1\xd1\xae\x8e\x81\xaf\x26\xc8\xc5\x87\xff\xf5\x83\
\xf8\x65\x19\xe3\x83\x1c\xaf\x66\x28\xe8\xaf\xa2\x3d\xc4\xa9\xd8\
\xfe\x52\x4b\xfe\x23\xd2\xdf\xd1\x9e\xc3\x2e\xa4\x2f\xbb\x04\x67\
\xcc\x43\x85\xf2\x65\xd0\xbe\x65\x13\xed\x53\x25\x01\x31\x31\x06\
\x46\x0f\xe9\x8d\x5f\xff\x9a\x87\xad\xdb\x77\x9a\xbe\xbe\xf4\x65\
\x97\x33\xca\x7b\xd1\xaf\x79\x0c\xde\xcd\x14\xba\xec\x32\xff\x28\
\xda\xd6\xe6\x65\x17\x72\xbc\x5d\x69\xe9\x59\x7f\x6a\x0f\x71\x32\
\x4e\xf8\xd3\xd5\x47\x7b\x00\xbb\x91\xde\xf9\xb8\xf3\xb1\xd7\xf0\
\xfa\x47\xdf\x68\x9f\x26\x09\x29\x59\x22\x0e\x19\x2f\xdd\x87\xd6\
\xcd\x1a\x88\xac\x2f\xbd\xf3\x91\x58\xcb\xc0\x37\xd7\x0a\xee\x7c\
\xbc\xc1\x9d\x0f\x72\xbc\xeb\xb4\x07\x38\x15\x27\x84\xc7\xcd\xda\
\x03\xd8\x91\x74\x7c\xdc\xf1\xe8\xab\x78\xe3\xe3\x6f\xb5\x4f\x93\
\x84\x94\x2c\x11\x87\xcf\x5f\xbe\x1f\xad\x9a\xd4\x17\x59\x5f\x3a\
\x3e\xda\xd4\x32\xf0\xcd\x44\xc6\x07\xd1\x49\x54\x0d\x05\xfd\xd5\
\xb4\x87\x38\x19\x5b\x5f\x6a\xc9\xbf\xcc\xf2\x96\xf6\x1c\x76\x25\
\x7d\xd9\xe5\x97\xe9\x73\x51\xb9\x62\x79\xb1\x7b\x02\x48\x57\x4c\
\x8c\x81\x31\x43\xfb\xe0\xe7\x69\x73\xf0\xcf\xbf\xbb\x4c\x5f\x5f\
\xfa\xb2\x4b\xf5\x72\x5e\x0c\x68\x11\x83\x77\x66\xca\x5d\x76\x49\
\xac\x6d\xa0\x01\x2f\xbb\x90\x33\xfd\x6b\xd7\xcb\x2d\x76\xff\x13\
\xd5\x4d\x7b\x00\xbb\x93\xde\xf9\xb8\xed\x91\x97\x91\xfe\xc9\x77\
\xda\xa7\x69\x4b\x87\x8f\xe4\x60\xc5\xda\x8d\xda\x63\x14\x4b\xa9\
\x92\x25\xf0\xc5\xab\x0f\xa0\x79\xa3\xba\x22\xeb\x4b\xef\x7c\xb4\
\xae\x69\xe0\xbb\x49\x72\x3b\x1f\x17\xbd\x71\x10\x3f\x73\xe7\x83\
\x9c\x69\xa2\xf6\x00\x27\x63\xf7\xf0\x98\xac\x3d\x80\x13\x48\xc7\
\xc7\xad\x0f\xbf\x8c\xc0\xa7\xdf\x6b\x9f\xa6\xad\x1c\x3e\x92\x83\
\xb3\xaf\xbe\x0b\x7d\xce\x9b\x84\x65\xab\x37\x68\x8f\x53\x2c\xa5\
\x4a\x96\xc0\x57\xaf\x3d\x88\x66\x0d\xeb\x88\xac\x2f\x1d\x1f\xad\
\x6a\x18\xf8\x7e\x52\x69\xb1\xf5\x19\x1f\xe4\x50\x09\xf9\x1f\xac\
\x6a\x3b\x76\x0f\x8f\xb3\xb4\x07\x70\x0a\xe9\xf8\xb8\xe5\xa1\x97\
\xf0\x56\xc6\x0f\xda\xa7\x69\x0b\x91\xe8\x98\xbd\x70\x39\x00\xa0\
\xef\x05\x93\xdd\x11\x1f\xaf\x3f\x84\xa6\x0d\x6a\x8b\xac\x2f\x1d\
\x1f\x2d\x6b\x78\xf1\xc3\x64\xc6\x07\xd1\x71\xce\xd1\x1e\xe0\x44\
\x6c\x1b\x1e\xa1\xa0\xbf\xb9\x9d\xe7\xb3\x23\xe9\xf8\x98\xf2\xe0\
\x8b\x78\xfb\xb3\xe8\x8e\x8f\xe3\xa3\x23\xc2\x0d\xf1\x11\x5f\xb2\
\x04\xbe\x7e\xfd\x61\x34\xae\x5f\x4b\x64\x7d\xe9\xf8\x68\x91\xe0\
\xc5\x8f\x8c\x0f\xa2\x63\x4d\xd2\x1e\xe0\x44\xec\xfc\x83\xfd\x72\
\xed\x01\x9c\xa8\x4f\x93\x18\xbc\x7d\x89\x5c\x7c\xdc\xfc\xc0\x8b\
\x78\xe7\xb3\x1f\xb5\x4f\x53\xc5\xc9\xa2\x23\xc2\x15\xf1\x51\xaa\
\x04\xbe\x7d\xe3\x61\x34\xaa\x5b\x53\x64\x7d\xe9\xf8\x68\x9e\xe0\
\xc5\x4f\xd7\xc9\xc6\xc7\x4f\x4b\x19\x1f\xe4\x18\x2d\x42\x41\x7f\
\xac\xf6\x10\xc7\xb3\x73\x78\x5c\xac\x3d\x80\x53\xf5\x69\x2a\x1b\
\x1f\x37\x3d\xf0\x02\xde\xfd\xfc\x27\xed\xd3\xb4\xd4\xe9\xa2\x23\
\xc2\x1d\xf1\x51\x12\xdf\xa5\x3f\x82\x06\x75\x6a\x88\xac\x2f\x1d\
\x1f\xcd\xce\x90\x8d\x8f\x94\x37\x19\x1f\xe4\x28\xfd\xb4\x07\x38\
\x9e\x2d\xc3\x23\x14\xf4\x57\x02\x50\x5e\x7b\x0e\x27\x93\x8e\x8f\
\x1b\xef\x7f\x1e\xef\x7d\xf1\xb3\xf6\x69\x5a\xa2\xa0\xd1\x11\xe1\
\x96\xf8\xf8\x3e\xf0\x28\xea\xd7\x4e\x10\x59\xdf\x8a\xf8\xf8\xf9\
\x7a\xc6\x07\x11\x80\xab\xb5\x07\x38\x9e\x2d\xc3\x03\xbc\xa9\xd4\
\x14\xd2\xf1\x71\xc3\x7d\xcf\xe1\xfd\x2f\xdd\x1d\x1f\x85\x8d\x8e\
\x08\x37\xc4\x47\xe9\x52\x25\xf1\x43\xe0\x31\xd4\xab\x75\x86\xc8\
\xfa\xd2\xf1\xd1\xb4\xba\x17\xbf\x30\x3e\x88\x86\x69\x0f\x70\x3c\
\xbb\x86\xc7\x95\xda\x03\xb8\x85\x74\x7c\x5c\x7f\xef\x73\xf8\xe0\
\xab\x5f\xb4\x4f\x53\x44\x51\xa3\x23\xc2\x15\xf1\x11\x5f\x12\x3f\
\xbe\xf5\x18\xea\xd4\xac\x2e\xb2\xbe\x74\x7c\x34\xa9\xee\x45\xf0\
\x06\x7b\xc6\xc7\xba\x1d\xb9\x62\x73\x11\x1d\xc3\x1b\x0a\xfa\x65\
\x3e\x1f\xa1\xa8\x03\x69\x0f\x70\xbc\xfc\xa7\x95\x76\xd0\x9e\xc3\
\x4d\xa4\xe3\xe3\xba\xa9\xcf\xe2\xc3\xaf\x82\xda\xa7\x69\xaa\xe2\
\x46\x47\x84\x3b\xe2\xa3\x14\x7e\x7a\xfb\x71\xd4\x4e\x90\x79\x02\
\xb3\x74\x7c\x34\xae\xe6\xc5\xaf\xc2\xf1\xf1\xe6\xf4\x82\x3f\x3d\
\x35\x94\x0b\xdc\xf9\xf9\x61\xf4\x78\x78\x3f\xe6\x6e\x08\x89\xcd\
\x45\x74\x8c\x0b\xb4\x07\x38\x96\xed\xc2\x03\x40\xa2\xf6\x00\x6e\
\x24\x1d\x1f\x93\xa7\x3e\x83\x0f\xbf\x76\x47\x7c\x98\x15\x1d\x11\
\x6e\x88\x8f\x32\xf1\xa5\xf0\xf3\x3b\x4f\xa0\xd6\x19\x55\x45\xd6\
\x97\x8e\x8f\x46\xd5\xbc\xf8\xf5\x46\xb9\xf8\xb8\xe3\xf3\x43\x18\
\xf5\xfc\x01\xac\xd8\x7a\xf2\x5d\x8c\xbc\x3c\x60\xe6\xda\x10\xda\
\xdd\xbb\x0f\x6f\x4c\x3f\x02\x00\x38\xf3\xb9\x03\x8c\x0f\xb2\x82\
\xad\xde\xac\xe1\xd1\x1e\xe0\x78\xa1\xa0\xff\x31\x00\xd7\x6b\xcf\
\xe1\x56\xbf\x2e\x3f\x8a\x0b\x5f\x3f\x28\xb6\xfe\x53\xa9\x13\x71\
\xf6\xd0\x3e\xda\xa7\x59\x64\x47\x8f\x86\x70\xd6\x95\x77\x98\x16\
\x1d\xc7\xfa\xe5\xdd\x27\xc5\x9e\x0e\x6a\x95\x7d\xfb\x0f\xa2\xcf\
\xf9\x93\xb0\x65\xeb\x76\x91\xf5\x5f\x1c\x5b\x0a\xc3\xdb\xc4\x88\
\xcd\xbf\xfa\x9f\x5c\xf4\x7e\x74\xbf\xd8\xfa\x00\x50\x2a\xd6\x83\
\x89\x7d\xe3\xd0\xa0\xaa\x17\x95\xcb\x78\xf0\xf7\xee\x5c\x2c\xdc\
\x9c\x8b\x97\x7e\x3f\x72\xd2\x5f\xf3\xc5\x35\xf1\x68\x5f\xc7\xd6\
\x1f\x9d\x45\xce\x17\x67\xf8\x02\x32\x1f\x6c\x54\x48\x76\xdc\xf1\
\xb0\xd5\x96\x90\xdb\x48\xef\x7c\x4c\xba\xe7\x69\x7c\xfc\xed\x6f\
\xda\xa7\x59\x64\x31\x31\x06\x3a\xb6\x69\x6a\xfa\xba\x71\xb1\xb1\
\xa8\x56\xb9\x82\xf6\xe9\x15\x5b\x99\xd2\xa5\x10\x7c\xef\x49\x24\
\x54\xab\x2c\xb2\xbe\xf4\xce\x47\xc3\xaa\x5e\xfc\x2e\xb8\xf3\x01\
\x00\x07\x73\xf2\xf0\xd0\xf7\x87\x71\xc5\xdb\x07\x31\xe6\xc5\x03\
\x98\xf0\xde\xa1\x53\x46\x07\xc0\x9d\x0f\xb2\x44\x92\xf6\x00\x11\
\xb6\x0a\x8f\x50\xd0\x5f\x02\x80\xcc\x2d\xf4\xf4\x1f\xd2\xf1\x31\
\xf1\xee\xa7\xf0\xc9\x77\xce\x8d\x8f\xbb\x26\xa6\xe0\xca\xb1\x67\
\x9a\xb6\x5e\x5c\x6c\x2c\xe6\x7e\xf5\x0a\x2a\x55\x28\xa7\x7d\x6a\
\xa6\x28\x5b\x3a\x1e\xbf\xbe\xff\x14\xaa\x57\xad\x24\xb2\xbe\x74\
\x7c\x34\xa8\xea\xc5\x1f\x37\xc9\xc6\x47\x51\x30\x3e\x48\x98\x5f\
\x7b\x80\x08\x5b\x85\x07\xf8\x69\xb4\x96\x91\x8e\x8f\x6b\x53\x9f\
\xc2\xa7\xdf\xfd\xae\x7d\x9a\x45\x66\x56\x7c\xb8\x2d\x3a\x22\xca\
\x96\x8e\xc7\xef\xef\x3f\x8d\x6a\x95\x2b\x8a\xac\x2f\x1d\x1f\xf5\
\xab\x30\x3e\x28\xea\x8c\xd6\x1e\x20\xc2\x6e\xe1\x31\x56\x7b\x80\
\x68\xd2\xa7\x69\x0c\xde\x12\x8c\x8f\x09\xa9\x4f\x22\xe3\xfb\x3f\
\xb4\x4f\xb3\xc8\x8a\x1b\x1f\x71\x71\xee\x8c\x8e\x88\xb2\x65\xe2\
\xf1\xfb\x87\xcf\xa0\x6a\xa5\x0a\x22\xeb\x5b\x11\x1f\x7f\xde\xcc\
\xf8\xa0\xa8\x51\x39\x14\xf4\xcb\x7d\xc3\x2f\x04\xbb\x85\x47\xb2\
\xf6\x00\xd1\xc6\x27\x1c\x1f\xd7\xdc\xf5\x04\x3e\xfb\x21\xfa\xe2\
\x23\x2e\x2e\x16\x73\xbf\x74\x6f\x74\x44\x94\x2b\x13\x8f\x3f\x3e\
\x7a\x06\x95\x2b\xca\x3c\x68\x58\x3a\x3e\xea\x55\xf6\x62\x1a\xe3\
\x83\xa2\x47\x17\xed\x01\x00\x1b\x85\x47\xfe\xfd\x1d\x32\x17\x8d\
\xe9\x94\xa4\xe3\xe3\xea\x3b\x9f\xc0\xe7\x3f\xfe\xa9\x7d\x9a\x45\
\x56\xd8\xf8\x88\x96\xe8\x88\x28\x57\xa6\x34\xfe\xfc\xe8\x59\x54\
\xaa\x50\x56\x64\x7d\xe9\xf8\xa8\x5b\xd9\x8b\xe9\x53\x18\x1f\x14\
\x15\xce\xd7\x1e\x00\xb0\x51\x78\x00\xe8\xa4\x3d\x40\x34\x93\x8e\
\x8f\xab\xee\x78\x1c\x5f\xfc\x38\x4d\xfb\x34\x8b\xec\xae\x89\x29\
\xb8\xf2\x82\xd3\xc7\x47\xb4\x45\x47\x44\xf9\xb2\xa5\x31\xed\xe3\
\xe7\x51\xa1\x5c\x19\x91\xf5\xa5\xe3\xa3\x4e\x25\xc6\x07\x45\x85\
\x91\xda\x03\x00\xf6\x0a\x8f\x31\xda\x03\x44\x3b\xe9\xf8\xb8\xf2\
\x8e\xc7\xf0\xc5\x4f\x0e\x8e\x8f\x49\x29\xb8\xe2\x14\xf1\x51\x22\
\x4a\xa3\x23\xa2\x7c\xd9\xd2\x98\xf1\xe9\xf3\x28\x5f\x56\xe6\x07\
\xb8\x15\xf1\x31\xe3\x16\xc6\x07\xb9\x5a\xb5\x50\xd0\x1f\xab\x3d\
\x84\x9d\xc2\x63\x94\xf6\x00\x64\x41\x7c\xdc\xfe\x18\xbe\xfc\x79\
\xba\xf6\x69\x16\x59\xea\x49\xe2\xa3\x44\x5c\x2c\xe6\x44\x71\x74\
\x44\x94\x2f\x5b\x06\x33\x3e\x7d\x01\xe5\xca\xc4\x8b\xac\x2f\x1d\
\x1f\xb5\x2b\xda\x73\xe7\xa3\x4a\x19\xdb\x3d\xeb\x91\x9c\xab\xb5\
\xf6\x00\xb6\x08\x8f\xfc\xcf\x67\xa9\xab\x3d\x07\x85\x49\xc7\xc7\
\x15\xb7\x3d\x8a\xaf\x7e\x99\xa1\x7d\x9a\x45\x76\x7c\x7c\x84\xa3\
\xe3\xd5\xa8\x8f\x8e\x88\x0a\xe5\xca\xe0\xaf\x8c\x17\x51\xa6\xb4\
\xcc\xd7\x90\x15\x3b\x1f\x3f\x5d\x67\x8f\xf8\x28\x15\xe7\xc1\x9c\
\xdb\xcb\xa0\x4e\x25\x5b\x7c\xab\x26\x77\x30\xef\x21\x45\x45\x64\
\x97\xaf\xe6\x86\xda\x03\xd0\x7f\x93\x8e\x8f\xcb\x6f\x7d\x04\x5f\
\xbb\x20\x3e\xfe\x3f\x3a\x64\x6e\xac\x74\xaa\x0a\xe5\xca\x20\xf3\
\xb3\x97\x50\xba\x54\x49\x91\xf5\xa5\xe3\xa3\xd9\x19\x5e\xfc\xae\
\xfc\x9c\x8f\x3e\x4d\x62\x90\x75\x67\x69\x54\x2f\xc7\xdd\x0e\x32\
\x95\xfa\xbb\x47\x6d\xf1\x15\x1d\x0a\xfa\xaf\x04\xf0\x82\xf6\x1c\
\xf4\xbf\x82\xcb\x8f\x62\x9c\xe0\x67\xbb\xbc\xfa\xe0\xcd\x18\xea\
\xb3\xc5\x3b\xbc\x8a\x64\xef\xfe\x83\x28\x2b\xf4\x37\x7b\x37\xd8\
\xb9\x7b\x2f\x3a\x9e\x79\x39\x0e\x1e\x3a\x2c\xb2\xbe\xf4\x67\xbb\
\xec\x3a\x90\x87\x71\xaf\x1f\xc4\xbc\x8d\xd6\xde\x63\xf1\xc8\xe8\
\x92\x38\x3f\x49\xfd\x52\x3c\xb9\x53\x9e\xe1\x0b\xa8\x6e\x3a\xd8\
\x65\xc7\x43\xbd\xc0\xe8\xc4\xa4\x77\x3e\x2e\xbd\xe5\x61\x7c\xfb\
\xeb\x5f\xda\xa7\x59\x64\x8c\x8e\x53\xab\x58\xbe\x2c\x66\x7f\xf1\
\x32\x4a\x96\x88\x13\x59\x5f\x7a\xe7\xa3\x42\xbc\x07\x5f\x4c\x88\
\xc7\x63\x67\xcb\xec\xdc\x1c\xaf\x7b\x43\x03\x99\xb7\x95\x61\x74\
\x90\x24\x4f\x28\xe8\xaf\xa2\x39\x80\x5d\xc2\xa3\x87\xf6\x00\x74\
\x72\xd2\xf1\x31\x7e\xca\xc3\xf8\xf6\xb7\x99\xda\xa7\x49\x42\x2a\
\x96\x2f\x8b\xd9\x5f\xbe\x82\xb8\x38\x99\x1f\xa6\xd2\xf1\xe1\x01\
\x70\x6e\xc7\x58\x2c\xba\xbb\x0c\xae\xee\x23\x13\x50\x1d\xea\x1a\
\xf8\xfa\xda\x78\x7c\x70\x79\x3c\x6a\x94\xb7\xc5\x46\x34\xb9\x5b\
\x57\xcd\x83\xab\x7f\x85\xe7\x3f\x38\xec\x90\xf6\x1c\x74\x7a\xd2\
\x97\x5d\x5e\x7f\xf8\x16\x0c\xee\x6d\x9b\x0f\x50\x24\x93\xfd\xbb\
\x6b\x0f\xda\x0d\xbb\x14\x39\x47\x65\x22\x41\xfa\xb2\x4b\xc4\x9e\
\x43\x79\xf8\x61\xc9\x51\x3c\xf0\xed\x61\x6c\xdd\x93\x57\xac\xb5\
\xae\xef\x1f\x87\x31\x1d\x62\x79\xf3\x28\x59\xed\x25\xc3\x17\xb8\
\x52\xeb\xe0\x76\x08\x8f\x44\x00\xf3\xb5\xe7\xa0\x82\x91\x8e\x8f\
\x37\x1e\xb9\x05\x83\x7a\x31\x3e\xdc\x6a\xc7\xae\x3d\x68\x3b\x74\
\x3c\x42\x21\x99\x7b\x26\xac\x8a\x8f\x88\x9d\x07\xf2\xb0\x64\x4b\
\x2e\xfe\x58\x75\x14\x33\xd7\x86\x30\x6b\xdd\xc9\xcf\xab\xe9\x19\
\x5e\x74\x6d\x10\x83\x9e\x8d\x0c\xb4\xaa\xe9\x45\x8d\xf2\x5e\x78\
\xd4\xbf\x03\x53\x94\x5a\x6b\xf8\x02\x0d\xb4\x0e\xae\xfe\x65\x1f\
\x0a\xfa\x27\x03\x78\x42\x7b\x0e\x2a\x38\xe9\xf8\x78\xf3\xd1\x5b\
\x31\xb0\x27\x1f\x64\xeb\x56\x3b\x76\xee\x41\xe2\xd0\x8b\x91\x9b\
\x5b\xbc\xdd\x82\x93\xb1\x3a\x3e\x8e\x97\x9b\x07\x84\x72\xc3\xff\
\xf6\x7a\xc2\xff\x18\xdc\xd0\x20\xfb\xf1\x18\xbe\x80\xca\x81\xed\
\xf0\xc7\x61\x88\xf6\x00\x54\x38\xd2\xf7\x7c\xa4\xdc\xf8\x00\x7e\
\xfc\x63\xb6\xf6\x69\x92\x90\xca\x15\xcb\x21\xeb\x9b\xd7\xc5\xd6\
\x97\xbe\xe7\xe3\x74\xbc\x1e\x20\xd6\x00\x4a\xc4\x84\xff\xcd\xe8\
\x20\x9b\x52\xbb\xc1\xd4\x0e\x7f\x24\x9c\xfb\x5e\xca\x28\x26\x1d\
\x1f\x17\xdd\x78\x3f\x7e\xfa\x93\xf1\xe1\x56\x95\x2b\x96\xc7\x82\
\xef\xde\x10\x5b\x5f\x3b\x3e\x88\x1c\xa0\x9d\xd6\x81\x55\xc3\x23\
\x14\xf4\x7b\x01\xf0\x71\x8f\x0e\x25\x1d\x1f\xfe\x1b\xee\xc7\x4f\
\xd3\xe6\x68\x9f\x66\x54\xc8\xcd\xcd\xb5\xfc\x98\x55\x2a\x96\xc7\
\x82\x6f\x19\x1f\x44\x4a\xfa\x69\x1d\x58\x7b\xc7\xa3\xa6\xf2\xf1\
\xa9\x98\xc4\xe3\xe3\xfa\xfb\xf0\xf3\x74\xc6\x87\xa4\x23\x47\x72\
\xb0\x64\xc5\x6a\xec\x3f\x70\xc0\xf2\x63\x57\xa9\x54\x1e\x59\xdf\
\xba\xf7\xb2\x0b\x91\x8d\xf5\xd5\x3a\xb0\x76\x78\x74\x50\x3e\x3e\
\x99\x40\x3a\x3e\xc6\x5d\x77\x1f\x7e\x99\x3e\x57\xfb\x34\x5d\xe9\
\xc8\x91\x1c\xac\x58\xb3\x0e\x00\xb0\x76\xc3\x66\x95\xf8\xa8\x5a\
\xa9\x02\xe3\x83\xc8\x7a\x6a\x1f\x16\xa7\x1d\x1e\x7d\x94\x8f\x4f\
\x26\x91\x8e\x8f\x0b\xaf\xbb\x17\xc1\x19\xf3\xb4\x4f\xd3\x55\x8e\
\x8d\x8e\x08\xcd\xf8\x98\xef\xe2\x1b\x4e\x89\x6c\xa8\x64\x28\xe8\
\x57\x79\xfb\x97\x76\x78\xf4\x54\x3e\x3e\x99\x48\x3a\x3e\xc6\x4e\
\x9e\x8a\xe0\x5f\x8c\x0f\x33\x9c\x28\x3a\x22\xb4\xe2\xa3\x5a\xe5\
\x0a\x98\xff\xcd\x6b\x62\xeb\x33\x3e\x88\xfe\x47\x2d\x8d\x83\x6a\
\x87\x47\x0b\xe5\xe3\x93\xc9\xc4\xe3\x63\xd2\x54\xfc\xfa\xd7\x7c\
\xed\xd3\x74\xb4\x53\x45\x47\x84\x5e\x7c\x54\xc4\xfc\xaf\x19\x1f\
\x44\x16\x49\xd4\x38\xa8\x5a\x78\x84\x82\x7e\x03\x80\x35\x9f\xbc\
\x44\x96\x92\x8e\x8f\x0b\x26\xa5\xe1\xb7\x99\xf3\xb5\x4f\xd3\x91\
\x0a\x12\x1d\x11\x6a\xf1\x51\xa5\x22\xe6\x31\x3e\x88\xac\xd0\x5d\
\xe3\xa0\x9a\x3b\x1e\xd5\x14\x8f\x4d\xc2\xa4\xe3\xe3\xfc\x89\x69\
\xf8\x3d\x33\x4b\xfb\x34\x1d\xa5\x30\xd1\x11\xa1\x15\x1f\xd5\xab\
\x54\xc4\xbc\xaf\x5f\x15\x5b\x9f\xf1\x41\x04\x40\xe9\xc3\xe2\x34\
\xc3\xa3\x99\xe2\xb1\xc9\x02\xd2\xf1\x71\xde\xb5\xf7\xe0\x8f\xcc\
\x05\xda\xa7\xe9\x08\x45\x89\x8e\x08\xbd\xf8\xa8\x84\xb9\x5f\x31\
\x3e\x88\x04\xb5\xd2\x38\xa8\x66\x78\xf0\xad\xb4\x51\xc0\xd7\x34\
\x06\x01\xc1\xf8\x38\xf7\xda\xbb\xf1\xc7\x2c\xc6\xc7\xa9\x14\x27\
\x3a\x22\xb4\xe2\xe3\x8c\xaa\x8c\x0f\x22\x41\x15\x42\x41\xbf\xe5\
\x07\xd5\x0c\x0f\x7e\x04\x69\x94\xe8\x2b\x1d\x1f\x13\xee\xc6\x9f\
\xb3\x17\x6a\x9f\xa6\x2d\x99\x11\x1d\x11\x9a\xf1\x31\xe7\xcb\x57\
\xc4\xd6\x67\x7c\x50\x94\x2b\x63\xf5\x01\x35\xc3\x43\xe5\x6e\x5a\
\xd2\x21\x1d\x1f\xe7\x5c\x93\x8a\x69\x8c\x8f\xff\x62\x66\x74\x44\
\x68\xc5\x47\x42\xb5\xca\x8c\x0f\x22\x19\xb5\xad\x3e\xa0\x66\x78\
\xd4\x55\x3c\x36\x29\x90\x8e\x8f\xb3\xaf\x49\xc5\xf4\x39\x8b\xb4\
\x4f\xd3\x16\x24\xa2\x23\x42\x33\x3e\x66\x7f\xf1\xb2\xd8\xfa\x8c\
\x0f\x8a\x52\xcd\xad\x3e\xa0\x4a\x78\x84\x82\x7e\x0f\x80\x12\x1a\
\xc7\x26\x5d\xd2\xf1\x31\xe6\xea\xbb\x30\x7d\x6e\x74\xc7\x87\x64\
\x74\x44\x68\xc5\x47\x8d\xea\x55\x18\x1f\x44\xe6\x6a\x6b\xf5\x01\
\xb5\x76\x3c\xf8\x89\xb4\x51\x4c\x3c\x3e\xae\xba\x0b\x33\xe6\x2e\
\xd6\x3e\x4d\x15\x56\x44\x47\x84\x66\x7c\xcc\x62\x7c\x10\x99\xc5\
\xf2\xdb\x1e\xb4\xc2\xa3\x86\xd2\x71\xc9\x26\xfa\x36\x8d\x41\xe0\
\x62\xb9\xf8\x18\x7d\xd5\x9d\xf8\x6b\x5e\x74\xc5\x87\x95\xd1\x11\
\xa1\x15\x1f\x35\xab\x57\xc1\xac\xcf\x5f\x12\x5b\x9f\xf1\x41\x51\
\x24\x3a\x2e\xb5\x00\x68\xa8\x74\x5c\xb2\x91\xbe\xcd\x64\xe3\xe3\
\xac\x2b\xef\xc4\xcc\xf9\x4b\xb4\x4f\xd3\x12\x1a\xd1\x11\xa1\x16\
\x1f\x67\x54\x45\x26\xe3\x83\xa8\xb8\x2c\xff\xbc\x16\xad\xf0\xe0\
\xc3\xc3\x08\x80\x7c\x7c\x24\x5f\x71\x07\x66\xce\x5f\xaa\x7d\x9a\
\xa2\x34\xa3\x23\x42\x2b\x3e\x6a\x9d\x51\x15\x99\x9f\x31\x3e\x88\
\x8a\xa1\x94\xd5\xcf\xf2\xd0\x0a\x0f\x7e\x38\x1c\xfd\x87\x7c\x7c\
\xdc\x8e\xcc\x2c\x77\xc6\x87\x1d\xa2\x23\x42\x2d\x3e\x12\xaa\x62\
\xe6\x67\x2f\x8a\xad\xcf\xf8\xa0\x28\x60\xe9\xe7\xa6\x69\x85\x47\
\x13\xa5\xe3\x92\x4d\x49\xc7\xc7\xa8\xcb\x6f\xc7\xac\xac\x65\xda\
\xa7\x69\x2a\x3b\x45\x47\x84\x56\x7c\xd4\x4e\xa8\x86\x99\x19\x8c\
\x0f\xa2\x22\xaa\x68\xe5\xc1\xb4\xc2\x83\xcf\xf0\xa0\xff\x21\x1d\
\x1f\x23\x2f\xbf\x0d\xb3\x16\xb8\x23\x3e\xec\x18\x1d\x11\x6a\xf1\
\x51\xa3\x1a\xfe\xca\x78\x41\x6c\x7d\xc6\x07\xb9\x58\x82\x95\x07\
\xd3\x0a\x8f\xaa\x4a\xc7\x25\x9b\x13\x8f\x8f\xcb\x6e\xc3\xec\x85\
\xcb\xb5\x4f\xb3\x58\xec\x1c\x1d\x11\x5a\xf1\x51\xa7\x46\x75\xfc\
\xf5\x29\xe3\x83\xa8\x90\xea\x58\x79\x30\xcb\xc3\x23\xff\x26\x16\
\x3e\x3c\x8c\x4e\x4a\x3a\x3e\xce\xbc\xf4\x56\xcc\x71\x68\x7c\x38\
\x21\x3a\x22\xd4\xe2\xa3\x66\x75\xcc\x60\x7c\x10\x15\x46\x7d\x2b\
\x0f\xa6\xb1\xe3\x11\xa3\x70\x4c\x72\x18\xe9\xf8\x18\x71\xe9\xad\
\x98\xb3\x68\x85\xf6\x69\x16\x8a\x93\xa2\x23\x42\x2b\x3e\xea\xd6\
\xac\x8e\xe9\x9f\x3c\x2f\xb6\x3e\xe3\x83\x5c\xc6\xf5\xe1\x51\x5a\
\xe1\x98\xe4\x40\xe2\xf1\x31\xfe\x16\xcc\x75\x48\x7c\x38\x31\x3a\
\x22\xb4\xe2\xa3\x5e\xad\x33\x18\x1f\x44\x05\x53\xcf\xca\x83\x69\
\x84\x47\x79\x85\x63\x92\x43\x49\xc7\xc7\xf0\xf1\xb7\x60\xde\xe2\
\x95\xda\xa7\x79\x4a\x4e\x8e\x8e\x08\xcd\xf8\x98\xf6\xf1\x73\x62\
\xeb\x33\x3e\xc8\x25\x6a\x5a\x79\x30\x8d\xf0\xa8\xac\x70\x4c\x72\
\x30\xe9\xf8\x18\x76\xc9\x14\xcc\x5f\x62\xcf\xf8\x70\x43\x74\x44\
\x68\xc5\x47\xfd\xda\x09\x8c\x0f\xa2\x53\xab\x6e\xe5\xc1\x34\xc2\
\xa3\x9a\xc2\x31\xc9\xe1\xa4\xe3\x63\xe8\xc5\x53\x30\x7f\xc9\x2a\
\xed\xd3\xfc\x2f\x6e\x8a\x8e\x08\xcd\xf8\xf8\xf3\xa3\x67\xc5\xd6\
\x67\x7c\x90\xc3\x55\xb0\xf2\x60\x1a\xe1\x61\x69\x59\x91\x7b\xc8\
\xc7\xc7\xcd\xc8\x5a\x6a\x8f\xf8\x70\x63\x74\x44\x68\xc5\x47\x83\
\x3a\x35\x18\x1f\x44\x27\x26\xf7\x8d\xf5\x04\x18\x1e\xe4\x28\xd2\
\xf1\x31\x24\xe5\x66\x2c\x58\xba\x5a\xf5\x1c\xdd\x1c\x1d\x11\x9a\
\xf1\xf1\xc7\x87\x8c\x0f\xa2\xe3\x78\xad\xfc\xbc\x16\x5e\x6a\x21\
\xc7\x91\x8e\x8f\xc1\x29\x37\x61\xc1\x32\x9d\xf8\xc8\xcd\xcd\x75\
\x7d\x74\x44\x68\xc5\x47\xc3\xba\x35\xf0\xc7\x87\xcf\x88\xad\xcf\
\xf8\x20\x87\x32\xac\x3a\x90\x46\x78\x54\x51\x38\x26\xb9\x8c\x78\
\x7c\x5c\x74\x13\x16\x2e\x5f\x63\xf9\x79\x79\xbd\x5e\xd4\xaf\x63\
\xe9\x0d\xe6\xaa\xf4\xe2\xa3\x26\x7e\xff\x80\xf1\x41\x74\x8c\x58\
\xab\x0e\xc4\x77\xb5\x90\x63\x49\xc7\xc7\x20\xff\x8d\x2a\xf1\x51\
\x3a\x3e\x9e\xf1\x61\x81\x46\xf5\x6a\xe2\xb7\x0f\x9e\x16\x5b\x9f\
\xf1\x41\x0e\x63\xd9\x13\xc5\x35\xc2\xa3\x82\xc2\x31\xc9\xa5\xac\
\x88\x8f\x45\x2b\xd6\x5a\x7e\x5e\x8c\x0f\x6b\x34\xae\x57\x0b\xbf\
\xbd\xcf\xf8\x20\x02\x50\xd2\xaa\x03\x69\x84\x47\x39\x85\x63\x92\
\x8b\x49\xc7\xc7\xc0\x71\x37\x60\x31\xe3\x43\x9c\x5a\x7c\xd4\xaf\
\x85\x5f\xdf\x7f\x4a\x6c\x7d\xc6\x07\x39\x44\xbc\x55\x07\xe2\x23\
\xd3\xc9\x15\xfa\x36\x8b\x41\xba\x60\x7c\x0c\x18\x77\x03\x16\xaf\
\x5c\x67\xf9\x79\x31\x3e\xac\xd1\xa4\x7e\x6d\xfc\xfa\x1e\xe3\x83\
\xa2\x9a\x65\x6f\xa9\xd5\x08\x0f\x4b\xdf\x2f\x4c\xd1\xa3\x9f\x74\
\x7c\x5c\x78\x3d\x96\x30\x3e\xc4\xa9\xc5\x47\x83\xda\x08\xbe\xf7\
\xa4\xd8\xfa\x8c\x0f\xb2\x39\x57\x87\x87\x65\x37\xb0\x50\xf4\x91\
\x8e\x8f\xfe\x17\x5e\x8f\xa5\xab\xd6\x5b\x7e\x5e\x8c\x0f\x6b\x34\
\x6d\x50\x07\xbf\xbc\xfb\xa4\xd8\xfa\x8c\x0f\xb2\x31\x57\xdf\xe3\
\x11\xa7\x70\x4c\x8a\x22\xd2\xf1\xd1\x6f\xec\x75\x8c\x0f\x0b\x68\
\xc5\x47\xb3\x86\x8c\x0f\x8a\x4a\xae\x0e\x8f\x18\x85\x63\x52\x94\
\xb1\x22\x3e\x96\xad\xde\x60\xf9\x79\x31\x3e\xac\xd1\xac\x61\x1d\
\xfc\xfc\xce\x13\x62\xeb\x33\x3e\xc8\x86\x5c\xfd\x76\x5a\x8d\x63\
\x52\x14\x92\x8e\x8f\xbe\x17\x4c\xc6\xf2\x35\x8c\x0f\x69\x5a\xf1\
\xd1\xbc\x51\x5d\xfc\xc4\xf8\xa0\xe8\xe1\xea\x07\x88\x31\x3c\xc8\
\x32\xd2\xf1\xe1\x3b\x7f\x32\x96\xaf\xd9\x68\xf9\x79\x31\x3e\xac\
\xd1\xa2\x51\x5d\xfc\xf4\xf6\xe3\x62\xeb\x33\x3e\xc8\x46\x2c\xbb\
\x1a\xa1\x11\x01\x1e\x85\x63\x52\x14\x93\x8f\x8f\x49\x58\xb1\x96\
\xf1\x21\x4d\x2d\x3e\x1a\xd7\xc3\x8f\x8c\x0f\x72\x3f\xcb\x7a\x80\
\xbb\x0f\x14\x15\xa4\xe3\xa3\xcf\x79\x93\xb0\x62\xed\x26\xcb\xcf\
\x8b\xf1\x61\x8d\x96\x8d\xeb\xe1\xc7\xb7\x1e\x13\x5b\x9f\xf1\x41\
\x36\x60\xd9\xa6\x00\xc3\x83\xa2\x86\x7c\x7c\x4c\xc4\xca\x75\x8c\
\x0f\x69\x6a\xf1\xd1\xa4\x3e\x7e\x08\x30\x3e\x88\x8a\x8b\xe1\x41\
\x51\x45\x3a\x3e\x7a\x9f\x3b\x11\xab\x18\x1f\xe2\xb4\xe2\xa3\x55\
\xd3\xfa\xf8\x3e\xf0\xa8\xd8\xfa\x8c\x0f\x52\x94\x6b\xd5\x81\x34\
\xc2\xc3\xb2\x93\x23\x3a\x11\xe9\xf8\xe8\x75\xee\x44\xac\x5a\xbf\
\xd9\xf2\xf3\x62\x7c\x58\xa3\x75\xd3\x06\xf8\x3e\x9d\xf1\x41\xae\
\x13\xb2\xea\x40\x0c\x0f\x8a\x4a\xe2\xf1\x71\xce\xb5\x58\xcd\xf8\
\x10\xa7\x16\x1f\xcd\x1a\xe0\xbb\xf4\x47\xc4\xd6\x67\x7c\x90\x82\
\x1c\xab\x0e\xa4\x11\x1e\x96\x55\x15\xd1\xa9\x48\xc7\x47\xcf\x73\
\xae\xc5\xea\x0d\x5b\x2c\x3f\x2f\xc6\x87\x35\xda\x34\x6b\x88\x6f\
\xdf\x64\x7c\x90\x6b\x1c\xb1\xea\x40\x1a\xe1\x61\x59\x55\x11\x9d\
\x8e\x78\x7c\x9c\x3d\x01\x6b\x18\x1f\xe2\xb4\xe2\x23\xb1\x79\x43\
\x7c\xfb\xe6\xc3\x62\xeb\x33\x3e\xc8\x42\x87\xad\x3a\x90\x46\x78\
\x58\x56\x55\x44\x05\x21\x1d\x1f\x3d\xce\x9e\x80\x35\x1b\xb3\x2d\
\x3f\x2f\xc6\x87\x35\x12\x9b\x37\xc2\x37\x6f\x30\x3e\xc8\xf1\x0e\
\x59\x75\x20\x8d\xf0\xb0\xec\xe4\x88\x0a\x4a\x3c\x3e\xc6\x5c\x83\
\xb5\x8c\x0f\x71\x5a\xf1\xd1\xb6\x45\x23\x7c\xfd\xfa\x43\x62\xeb\
\x33\x3e\xc8\x02\x07\xad\x3a\x90\x46\x78\x58\xff\x5d\x81\xa8\x00\
\xa4\xe3\xa3\xfb\x98\x6b\xb0\x6e\x13\xe3\x43\x9a\x56\x7c\xb4\x6b\
\xd9\x98\xf1\x41\x4e\xe6\xea\xf0\xd8\xab\x70\x4c\xa2\x02\x91\x8e\
\x8f\x6e\xa3\xaf\xc1\xba\x4d\x7f\x5b\x7e\x5e\x8c\x0f\x6b\xb4\x6b\
\xd9\x18\x5f\xbd\xf6\xa0\xd8\xfa\x8c\x0f\x12\xe4\xea\xf0\xd8\xad\
\x70\x4c\xa2\x02\x93\x8f\x8f\xab\xb1\x7e\x33\xe3\x43\x9a\x56\x7c\
\xb4\x6f\xd5\x04\x5f\x32\x3e\xc8\x79\x5c\x1d\x1e\x3b\x15\x8e\x49\
\x54\x28\xd2\xf1\xd1\xf5\xac\xab\xb1\x7e\xf3\x56\xcb\xcf\x8b\xf1\
\x61\x8d\x0e\xad\x9a\xe0\xcb\x57\x1f\x10\x5b\x9f\xf1\x41\x02\x5c\
\x7d\x73\xe9\x76\x85\x63\x12\x15\x9a\x7c\x7c\x5c\x85\x0d\x5b\x18\
\x1f\xd2\xd4\xe2\xa3\x75\x53\x7c\xf1\x0a\xe3\x83\x1c\xc3\xd5\xcf\
\xf1\xf8\x47\xe1\x98\x44\x45\xd2\xaf\x59\x0c\xd2\x53\xe4\xe2\xa3\
\x4b\x32\xe3\xc3\x0a\x5a\xf1\xd1\xb1\x4d\x53\x7c\xfe\xca\xfd\x62\
\xeb\x33\x3e\xc8\x44\x96\x7d\x21\x69\x84\xc7\x36\x85\x63\x12\x15\
\x59\xbf\xe6\xf2\xf1\xb1\x71\x8b\xf5\x7f\x2c\x18\x1f\xd6\xe8\xd4\
\xa6\x19\x3e\x7b\xf9\x3e\xb1\xf5\x19\x1f\x64\x06\xc3\x17\xc8\xb3\
\xea\x58\x1a\xe1\x61\xfd\x5f\xef\x88\x8a\x49\x3a\x3e\x3a\x27\x5f\
\x89\x8d\xd9\x8c\x0f\x69\x5a\xf1\x91\x94\xd8\x9c\xf1\x41\x76\x66\
\xe9\x83\x3d\x19\x1e\x44\x05\xd4\xaf\x79\x0c\xde\x94\x8c\x8f\x51\
\x57\x62\x53\xb6\xf5\x57\x22\x19\x1f\xd6\x48\x4a\x6c\x8e\x8c\x97\
\xee\x15\x5b\x9f\xf1\x41\xc5\x60\xe9\x63\x2e\x78\x8f\x07\x51\x21\
\xf4\x17\x8e\x8f\xa4\x51\x57\x60\xd3\xdf\x8c\x0f\x69\x5a\xf1\xd1\
\xb9\x6d\x0b\x7c\xfa\x22\xe3\x83\x6c\x67\x87\x95\x07\xe3\xdb\x69\
\x89\x0a\x49\x3c\x3e\x46\x5e\x81\xcd\x8c\x0f\x71\x5a\xf1\xd1\xa5\
\x5d\x0b\x7c\xfa\xe2\x54\xb1\xf5\x19\x1f\x54\x04\x96\x3e\x52\x99\
\x4f\x2e\x25\x2a\x02\xe9\xf8\xe8\x34\xf2\x0a\x6c\xde\x6a\xfd\x3b\
\xcf\x19\x1f\xd6\xe8\xd2\xae\x25\x3e\x79\x81\xf1\x41\xb6\xb1\xc1\
\xca\x83\xf1\x43\xe2\x88\x8a\x48\x3c\x3e\xce\xbc\x1c\x5b\x18\x1f\
\xe2\xb4\xe2\xa3\x6b\xfb\x96\xf8\xf8\xf9\x34\xb1\xf5\x19\x1f\x54\
\x08\xeb\xac\x3c\x98\xe5\xe1\x91\xff\x96\x9d\x5c\xab\x8f\x4b\x24\
\x41\x3a\x3e\x3a\x9e\x79\x39\xb6\x6c\xb3\xf4\xf2\x2b\x00\xc6\x87\
\x55\xba\x75\x68\x85\x8f\x18\x1f\xa4\x6f\x8d\x95\x07\xd3\xd8\xf1\
\x00\x80\x3d\x4a\xc7\x25\x32\x9d\x78\x7c\x8c\xb8\x0c\xd9\x8c\x0f\
\x71\x5a\xf1\xd1\xbd\x43\x2b\x7c\xf4\xdc\x3d\x62\xeb\x33\x3e\xa8\
\x00\xd6\x59\x79\x30\xad\xf0\xd8\xa2\x74\x5c\x22\x11\xd2\xf1\xd1\
\x81\xf1\x61\x09\xb5\xf8\xe8\xd8\x1a\x1f\x3e\x7b\xb7\xd8\xfa\x8c\
\x0f\x3a\x8d\xcd\x56\x1e\x4c\x2b\x3c\x56\x2b\x1d\x97\x48\x8c\x15\
\xf1\xf1\xf7\x3f\xff\x5a\x7e\x5e\x8c\x0f\x6b\xf4\xe8\xd4\x06\x1f\
\x30\x3e\x48\x87\xa5\x4f\x2f\xd4\x0a\x8f\xa5\x4a\xc7\x25\x12\x25\
\x1d\x1f\xed\x87\x5f\xca\xf8\xb0\x80\x56\x7c\xf4\xec\xd4\x06\xef\
\x3f\x93\x2a\xb6\x3e\xe3\x83\x4e\xc2\xf5\x0f\x10\x03\x18\x1e\xe4\
\x62\x56\xc4\xc7\xd6\xed\x8c\x0f\x69\x5a\xf1\xd1\x2b\x29\x11\xef\
\x3f\xcd\xf8\x20\xcb\xe4\x1a\xbe\x80\xa5\x6f\xf8\xd0\x0a\x8f\x15\
\x4a\xc7\x25\xb2\x84\x74\x7c\xb4\x1b\x76\x29\xb6\x6e\xb7\xfe\x59\
\x7c\x8c\x0f\x6b\xf4\xea\x9c\x88\xf7\x9e\xbe\x4b\x6c\x7d\xc6\x07\
\x1d\xc3\xf2\x9b\xc7\xb4\xc2\x63\x9d\xd2\x71\x89\x2c\x23\x1f\x1f\
\xe3\xb1\x8d\xf1\x21\x4e\x2b\x3e\x7a\x77\x6e\x8b\x77\x9f\x62\x7c\
\x90\x38\xcb\xef\xb9\xd4\x0a\x0f\xeb\x9f\x8a\x44\xa4\x40\x3a\x3e\
\xda\x0e\x1b\x8f\x6d\x3b\x18\x1f\xd2\xb4\xe2\xa3\x4f\x97\xb6\x78\
\xe7\xc9\x3b\xc5\xd6\x67\x7c\x10\x80\x85\x56\x1f\x50\x25\x3c\x0c\
\x5f\xc0\xd2\x8f\xe0\x25\xd2\x24\x1e\x1f\x43\xc7\xe3\x9f\x1d\xbb\
\x2c\x3f\x2f\xc6\x87\x35\x7c\x5d\xdb\xe1\xed\x27\xef\x10\x5b\x9f\
\xf1\x11\xf5\xe6\x5b\x7d\x40\xad\x1d\x0f\x40\xe1\xba\x12\x91\x16\
\xe9\xf8\x48\x1c\x7a\x09\xfe\xf9\x77\x97\xe5\xe7\xc5\xf8\xb0\x46\
\xdf\xae\xed\xf1\xf6\x13\x8c\x0f\x12\xb1\xc0\xea\x03\x6a\x86\x07\
\xdf\xd9\x42\x51\x45\x3c\x3e\x86\x30\x3e\xac\xa0\x16\x1f\xdd\xda\
\xe3\xad\xc7\x6f\x17\x5b\x9f\xf1\x11\xb5\xa2\xe6\x1e\x0f\x00\x98\
\xad\x78\x6c\x22\x15\x56\xc4\xc7\xf6\x7f\x77\x5b\x7e\x5e\x8c\x0f\
\x6b\xf4\xeb\xde\x01\x01\xc6\x07\x99\xeb\x1f\xab\x0f\xa8\x19\x1e\
\xb3\x14\x8f\x4d\xa4\x46\x3a\x3e\xda\x0c\xb9\x18\xdb\x77\x32\x3e\
\xa4\x69\xc5\x47\xff\xee\x1d\x90\xfe\xd8\x6d\x62\xeb\x33\x3e\xa2\
\xca\x51\xc3\x17\xb0\xfc\x37\x5b\x33\x3c\xb2\x14\x8f\x4d\xa4\xca\
\x8a\x9d\x8f\x1d\x8c\x0f\x71\x5a\xf1\x31\xa0\x47\x47\xbc\xf9\xe8\
\xad\x62\xeb\x33\x3e\xa2\xc6\x7a\x8d\x83\x6a\x86\xc7\x3a\xc5\x63\
\x13\xa9\x93\x8c\x8f\xbc\xbc\x3c\x24\x0e\x1d\x8f\x1d\xbb\xac\xff\
\x20\x68\xc6\x87\x35\x06\xf6\xec\x84\x37\x1f\x61\x7c\x50\xb1\xa8\
\x5c\x79\x50\x0b\x0f\xc3\x17\xd8\xaf\x75\x6c\x22\xbb\x90\x8c\x8f\
\xdc\xdc\x5c\xb4\x1b\x3a\x1e\xff\x32\x3e\xc4\xa9\xc5\x47\xaf\x4e\
\x78\xe3\x91\x5b\xc4\xd6\x67\x7c\xb8\xde\x34\x8d\x83\x6a\xee\x78\
\x00\xc0\x16\xe5\xe3\x13\xa9\x93\x8c\x8f\xa3\xa1\x10\xda\x0d\xbf\
\x94\xf1\x61\x01\xad\xf8\x18\xd4\x2b\x09\xaf\x3f\xcc\xf8\xa0\x22\
\xc9\xd4\x38\xa8\x76\x78\xf0\x06\x53\x22\xc8\xc6\x47\x4e\xce\x51\
\x74\x18\x71\x19\xfe\xdd\x6d\xe9\x07\x50\x02\x60\x7c\x58\x65\x70\
\xef\x24\xbc\xf6\xd0\x14\xb1\xf5\x19\x1f\xae\xb5\x5c\xe3\xa0\xda\
\xe1\x11\x54\x3e\x3e\x91\x6d\x48\xc6\xc7\xe1\x23\x39\xe8\x38\xe2\
\x32\xec\x64\x7c\x88\xd3\x8a\x8f\x21\x7d\x3a\xe3\xd5\x87\x6e\x16\
\x5b\x9f\xf1\xe1\x4a\xd6\xdf\x81\x0e\xfd\xf0\x98\xae\x7c\x7c\x22\
\x5b\xe9\xdf\x3c\x06\x6f\x08\xc5\xc7\xa1\xc3\x47\xd0\x69\xe4\xe5\
\x8c\x0f\x0b\x68\xc5\xc7\xd0\x3e\x5d\xf0\xca\x83\x8c\x0f\x2a\x90\
\x2d\x86\x2f\xa0\x72\x60\xed\xf0\xe0\xd3\x4b\x89\x8e\x33\x40\x30\
\x3e\x0e\x1c\x3c\x8c\xa4\x51\x57\x60\xd7\x9e\x7d\x96\x9f\x17\xe3\
\xc3\x1a\xc3\x7c\x5d\xf0\xca\x03\x37\x89\xad\xcf\xf8\x70\x0d\x95\
\x1b\x4b\x01\xe5\xf0\x30\x7c\x81\x7d\x00\xf2\x34\x67\x20\xb2\x23\
\xc9\xf8\xd8\x7f\xe0\x10\x3a\x8f\xba\x92\xf1\x61\x01\xb5\xf8\xe8\
\xdb\x15\x2f\xdf\x7f\xa3\xd8\xfa\x8c\x0f\x57\xf8\x51\xeb\xc0\xda\
\x3b\x1e\x00\xb0\x42\x7b\x00\x22\x3b\x92\x8c\x8f\xbd\xfb\x0f\xa0\
\x4b\xf2\x55\x8c\x0f\x0b\x68\xc5\xc7\xf0\x7e\xdd\xf0\x12\xe3\x83\
\x4e\x2e\x3a\x77\x3c\xf2\xfd\xac\x3d\x00\x91\x5d\x49\xc6\xc7\x9e\
\x7d\xfb\xd1\x75\xf4\xd5\xd8\xbd\xd7\xfa\x47\xea\x30\x3e\xac\x31\
\xa2\x5f\x37\xbc\x78\xdf\x0d\x62\xeb\x33\x3e\x1c\x6d\x95\xd6\x81\
\xed\x10\x1e\xdf\x69\x0f\x40\x64\x67\x92\xf1\xb1\x7b\xcf\x3e\x74\
\x63\x7c\x58\x42\x2b\x3e\xce\xec\xdf\x1d\x2f\xdc\x7b\xbd\xd8\xfa\
\x8c\x0f\x47\x3a\x60\xf8\x02\x47\xb4\x0e\x6e\x87\xf0\x50\x79\x80\
\x09\x91\x93\x48\xc6\xc7\xce\xdd\x7b\xd1\x7d\xcc\x35\xd8\xc3\xf8\
\x10\xa7\x15\x1f\x23\x07\xf4\xc0\xf3\x53\x19\x1f\xf4\x1f\x33\x35\
\x0f\x6e\x87\xf0\xd8\xaa\x3d\x00\x91\x13\x48\xc6\xc7\xbf\xbb\xf6\
\xa0\xc7\xd9\x13\xb0\x67\x1f\xe3\x43\x9a\x56\x7c\x8c\x1a\xd8\x03\
\xcf\x4d\xbd\x4e\x6c\x7d\xc6\x87\xa3\x7c\xa5\x79\x70\xf5\xf0\xc8\
\x7f\x1f\xf1\x6a\xed\x39\x88\x9c\x40\x32\x3e\xb6\xef\xdc\x8d\x9e\
\x67\x5f\x8b\x3d\xfb\xac\xff\xa1\xc8\xf8\xb0\x46\xf2\xc0\x9e\x78\
\x2e\x6d\xb2\xd8\xfa\x8c\x0f\xc7\x50\x7b\x47\x0b\x60\x83\xf0\xc8\
\xf7\xb5\xf6\x00\x44\x4e\x21\x19\x1f\xff\xfc\xbb\x0b\xbd\xcf\xbd\
\x16\x7b\x19\x1f\xe2\xd4\xe2\x63\x50\x2f\x3c\x7b\xcf\x64\xb1\xf5\
\x19\x1f\x8e\xb0\x4c\xf3\xe0\x76\x09\x8f\x2f\xb4\x07\x20\x72\x12\
\xc9\xf8\xd8\xba\x7d\x27\x7a\x9f\x37\x11\x7b\xf7\x33\x3e\xa4\x69\
\xc5\xc7\x59\x83\x7b\xe1\x99\xbb\x27\x89\xad\xcf\xf8\xb0\xb5\x5d\
\x86\x2f\x90\xa3\x39\x80\x5d\xc2\x83\x37\x98\x12\x15\x92\x64\x7c\
\xfc\xfd\xcf\xbf\xe8\x73\xde\x24\xc6\x87\x05\xb4\xe2\x63\xf4\x90\
\xde\x78\xfa\xee\x89\x62\xeb\x33\x3e\x6c\x4b\xf5\x32\x0b\x60\x93\
\xf0\x30\x7c\x81\xbd\x00\xd4\xde\xda\x43\xe4\x54\x92\xf1\x91\xbd\
\x6d\x07\xfa\x9e\x3f\x19\xfb\xf6\x1f\xb4\xfc\xbc\x18\x1f\xd6\x18\
\x33\xa4\x0f\x9e\x4a\x65\x7c\x44\x99\x8f\xb5\x07\xb0\x45\x78\xe4\
\xfb\x5d\x7b\x00\x22\x27\x92\x8c\x8f\xcd\x5b\xb7\xa3\xef\xd8\xc9\
\xd8\x77\x80\xf1\x21\x4d\x2b\x3e\xce\x1e\xda\x07\x4f\xde\x75\xad\
\xd8\xfa\x8c\x0f\xdb\xf9\x55\x7b\x00\x3b\x85\xc7\x07\xda\x03\x10\
\x39\xd5\x80\xe6\x31\x78\xe3\x22\x99\xf8\xd8\x94\xfd\x0f\xfa\x8d\
\xbd\x8e\xf1\x61\x01\xad\xf8\x38\x67\x98\x0f\x4f\xdc\x39\x41\x6c\
\x7d\xc6\x87\x6d\xe4\x1a\xbe\xc0\x36\xed\x21\xec\x14\x1e\x7c\x82\
\x29\x51\x31\x0c\x68\x21\x17\x1f\x1b\xb7\x6c\xc3\x80\x0b\xaf\xc7\
\x7e\xc6\x87\x38\xad\xf8\x38\x77\x78\x5f\x3c\x7e\x07\xe3\xc3\xe5\
\x54\x1f\x1c\x16\x61\xa7\xf0\xd8\x04\x7e\x52\x2d\x51\xb1\x48\xc6\
\xc7\xfa\xcd\x5b\x31\x60\xdc\x0d\xd8\x7f\xe0\x90\xe5\xe7\xc5\xf8\
\xb0\xc6\x79\x23\xfa\xe2\xb1\x3b\xae\x11\x5b\x9f\xf1\xa1\xee\x5d\
\xed\x01\x00\x1b\x85\x47\xfe\x83\xc4\x66\x69\xcf\x41\xe4\x74\x92\
\xf1\xb1\x6e\xd3\xdf\x18\xe4\xbf\x01\xfb\x0f\x32\x3e\xa4\x69\xc5\
\xc7\xf9\x23\xfa\xe1\xb1\xdb\xaf\x16\x5b\x9f\xf1\xa1\xea\x4b\xed\
\x01\x00\x1b\x85\x47\xbe\xb7\xb5\x07\x20\x72\x03\xc9\xf8\x58\xb3\
\x31\x1b\x83\x2f\xba\x11\x07\x18\x1f\xe2\xd4\xe2\xe3\xcc\xfe\x78\
\xf4\x36\xc6\x87\x0b\xad\xd7\x1e\x00\xb0\x5f\x78\x7c\xae\x3d\x00\
\x91\x5b\x48\xc6\xc7\xea\xf5\x5b\x30\x38\xe5\x26\xc6\x87\x05\xb4\
\xe2\xe3\x82\x91\xfd\xf1\xc8\xad\x57\x89\xad\xcf\xf8\xb0\xdc\xcc\
\xfc\x2b\x0b\xea\x6c\x15\x1e\x86\x2f\xb0\x01\xbc\xcf\x83\xc8\x34\
\x92\xf1\xb1\x6a\xdd\x66\x0c\xbd\xf8\x66\x1c\x38\x78\xd8\xf2\xf3\
\x62\x7c\x58\x63\xec\xa8\x01\x78\xf8\x96\x2b\xc5\xd6\x67\x7c\x58\
\xea\x4d\xed\x01\x22\x6c\x15\x1e\xf9\x7e\xd3\x1e\x80\xc8\x4d\x24\
\xe3\x63\xc5\xda\x4d\x18\x76\xc9\x14\x1c\x3c\xc4\xf8\x90\xa6\x15\
\x1f\x17\x26\x0f\xc4\x43\xb7\x5c\x21\xb6\x3e\xe3\xc3\x32\xb6\xb9\
\xa2\x60\x68\x0f\x70\xbc\xd4\x94\xc4\x10\x80\xb3\xb4\xe7\x20\x72\
\x93\x86\x55\xbd\x68\x5d\xd3\xc0\xe7\x59\xe6\x7f\x83\xdf\xb1\x73\
\x37\x7e\xf8\x63\x36\xce\x19\xe6\x43\x6c\x4c\x8c\xa5\xe7\x15\x17\
\x1b\x8b\xd2\xf1\xa5\xb0\x6b\xf7\x5e\x4b\x8f\xab\x65\xd7\xee\xbd\
\x28\x1d\x5f\x0a\x71\xb1\xb1\x96\x1e\x37\xb1\x79\x23\x54\xad\x5c\
\x01\x3f\x4d\x9b\x23\xb2\xfe\x57\x0b\x8f\xa2\x49\x75\x03\x4d\xaa\
\xdb\xf1\xef\xc2\xae\x90\x63\xf8\x02\x53\xb4\x87\x88\xb0\xe3\xef\
\x32\x3f\xa9\x96\x48\x80\xe4\xce\xc7\xb2\xd5\xeb\x31\x62\xfc\xad\
\xdc\xf9\xb0\x80\xd6\xce\x87\xff\xac\x41\x78\xe0\xe6\xcb\xc5\xd6\
\xe7\xce\x87\xa8\x6f\xb4\x07\x38\x96\xed\xc2\xc3\xf0\x05\x76\x02\
\x88\x8e\xbf\xbe\x10\x59\x4c\x32\x3e\x96\xac\x5a\x87\x33\x2f\xbb\
\x0d\x07\x0f\x5b\xff\xb1\x4b\x8c\x0f\x6b\x5c\x34\x7a\x30\xee\xbf\
\xe9\x32\xb1\xf5\x19\x1f\x62\x5e\xd6\x1e\xe0\x58\xb6\x0b\x8f\x7c\
\xef\x69\x0f\x40\xe4\x56\x03\x5a\xc4\xe0\x75\xa1\xf8\x58\xbc\x62\
\x2d\x46\x5e\x76\x1b\x0e\x31\x3e\xc4\x69\xc5\x47\xca\x98\x21\xb8\
\xef\x46\xc6\x87\xc3\xfc\xa2\x3d\xc0\xb1\x6c\x77\x8f\x07\x00\xa4\
\xa6\x24\x6e\x05\x20\xf7\x95\x4d\x14\xe5\x1a\x56\xf5\xa2\x95\xd0\
\x3d\x1f\xdb\x76\xec\x44\x70\xc6\x3c\x8c\x19\xda\x07\x31\x31\xd6\
\x7e\x8b\xe1\x3d\x1f\xd6\x68\xd7\xb2\x31\x2a\x96\x2f\x8b\x5f\x66\
\xcc\x15\x59\x9f\xf7\x7c\x98\x6a\x83\xe1\x0b\x3c\xaa\x3d\xc4\xb1\
\xec\xfa\xbb\x3a\x5b\x7b\x00\x22\xb7\x1b\x28\xb8\xf3\xb1\x60\xd9\
\x6a\x24\x5f\x71\x07\x77\x3e\x2c\xa0\xb5\xf3\x71\xc9\x39\x43\x31\
\xf5\x86\xf1\x62\xeb\x73\xe7\xc3\x34\xaf\x68\x0f\x70\x3c\x5b\x86\
\x87\xe1\x0b\xe4\x01\x98\xa1\x3d\x07\x91\xdb\x49\xc6\x47\xd6\xd2\
\x55\x38\xeb\xca\x3b\x71\x98\xf1\x21\x4e\x2b\x3e\xc6\x9f\x33\x0c\
\x69\xd7\x5f\x22\xb6\x3e\xe3\xc3\x14\xf6\x78\x6a\xd8\x31\x6c\x79\
\xa9\x05\x00\x52\x53\x12\xf7\x03\x18\xa3\x3d\x07\x91\xdb\x49\x5e\
\x76\xf9\xfb\x9f\x7f\xf1\x47\xe6\x02\x8c\x1e\xd2\x1b\x31\x06\x2f\
\xbb\x48\xd2\xba\xec\xd2\xbe\x55\x13\x94\x2b\x5b\x1a\xbf\xfe\x35\
\x4f\x64\x7d\x5e\x76\x29\x96\xc3\x86\x2f\x70\x93\xf6\x10\xc7\xb3\
\xf3\xef\xa4\x2d\x3e\xcc\x86\x28\x1a\x48\xee\x7c\xcc\x5d\xbc\x02\
\x63\xae\xba\x0b\x87\x8f\xe4\x58\x7e\x5e\xdc\xf9\xb0\xc6\x65\xe7\
\x0d\xc7\xdd\x93\x2f\x16\x5b\x9f\x3b\x1f\x45\xf6\xbe\xf6\x00\x27\
\x62\xdb\xf0\x30\x7c\x81\xfd\x00\xd6\x69\xcf\x41\x14\x2d\x24\xe3\
\x63\xce\xa2\xe5\x38\xfb\x1a\xc6\x87\x15\xb4\xe2\xe3\xf2\xf3\x47\
\x20\x75\x52\x8a\xd8\xfa\x8c\x8f\x22\x79\x56\x7b\x80\x13\xb1\x6d\
\x78\xe4\x7b\x5a\x7b\x00\xa2\x68\x22\x19\x1f\xb3\x17\x2c\xc7\xb9\
\x13\x52\x71\x84\xf1\x21\x4e\x2b\x3e\xae\xb8\xe0\x4c\xdc\x35\xf1\
\x22\xb1\xf5\x19\x1f\x85\x66\xcb\x37\x6a\xd8\xf6\x1e\x0f\x00\x48\
\x4d\x49\x5c\x05\xe0\x66\xed\x39\x88\xa2\x89\xe4\x3d\x1f\x9b\xb7\
\x6e\xc7\x8c\x79\x8b\x71\xd6\xe0\x5e\x30\x78\xcf\x87\x28\xad\x7b\
\x3e\x3a\xb6\x69\x86\xf8\x52\x25\xf1\x7b\x66\x96\xc8\xfa\xbc\xe7\
\xa3\xc0\xbe\x36\x7c\x81\x77\xb5\x87\x38\x11\x5b\xff\xce\x19\xbe\
\xc0\x76\x00\xdb\xb4\xe7\x20\x8a\x36\x92\x3b\x1f\x33\xe7\x2f\xc5\
\x79\xd7\xde\x83\x23\x39\xdc\xf9\x90\xa6\xb5\xf3\x71\xd5\x85\x23\
\x71\xc7\xb5\x7e\xb1\xf5\xb9\xf3\x51\x20\xb6\x7a\x76\xc7\xb1\x6c\
\x1d\x1e\xf9\x9e\xd2\x1e\x80\x28\x1a\x49\xc6\xc7\x5f\xf3\x96\xe0\
\xfc\x89\x69\x38\x92\x63\xfd\x0f\x0f\xc6\x87\x35\xae\xbe\x70\x14\
\x6e\x9f\x30\x4e\x6c\x7d\xc6\xc7\x69\xd9\xf6\x93\xde\x6d\x7d\xa9\
\x05\x00\x52\x53\x12\x97\x03\xb0\xdd\xdb\x81\x88\xa2\x81\xe4\x65\
\x97\x4d\xd9\xff\x60\x56\xd6\x52\x24\x0f\xec\x09\xc3\xb0\xf6\xef\
\x40\xbc\xec\x62\x8d\xa4\xc4\xe6\x28\x51\x22\x16\x7f\xcc\x5a\x20\
\xb2\x3e\x2f\xbb\x9c\xd4\x77\x86\x2f\xf0\xb6\xf6\x10\x27\x63\xfb\
\xdf\x2d\xc3\x17\xd8\x06\x60\xab\xf6\x1c\x44\xd1\x4a\x72\xe7\x63\
\xda\x9c\x45\x18\x3b\x79\x2a\x72\xb8\xf3\x21\x4e\x6b\xe7\x63\x82\
\xff\x2c\xdc\x7a\xf5\x85\x62\xeb\x73\xe7\xe3\x84\x1e\xd4\x1e\xe0\
\x54\x6c\xbf\xe3\x01\x00\xa9\x29\x89\x00\x30\x50\x7b\x0e\xa2\x68\
\x25\xb9\xf3\xb1\x61\xcb\x36\xcc\x59\xb8\x1c\xa3\x06\xf6\x80\xe1\
\xe5\xce\x87\x24\xad\x9d\x8f\xce\x6d\x9b\x23\x36\x36\x06\x7f\xce\
\x5e\x28\xb2\x3e\x77\x3e\xfe\xc7\x25\x69\xe9\x32\x37\xf7\x9a\xc1\
\x29\xe1\xb1\x14\xc0\x14\xed\x39\x88\xa2\x99\x6c\x7c\x6c\xc5\xdc\
\xc5\x2b\x30\x72\x00\xe3\x43\x9a\x5e\x7c\xb4\x40\x4c\x8c\x81\x69\
\x8c\x0f\x69\x9f\x18\xbe\xc0\x87\xda\x43\x9c\x8a\x23\x7e\x87\x0c\
\x5f\x60\x27\x80\x55\xda\x73\x10\x45\x3b\xc9\xcb\x2e\xbf\xcf\xcc\
\xc2\x45\x37\xdc\x8f\x9c\xa3\x21\xcb\xcf\x8b\x97\x5d\xac\x31\xe9\
\xe2\x31\xb8\xf9\x8a\xf3\xc5\xd6\xe7\x65\x17\x00\xc0\xfd\xda\x03\
\x9c\x8e\x23\x76\x3c\x00\x20\x35\x25\x71\x37\x80\x64\xed\x39\x88\
\xa2\x9d\xe4\xce\xc7\xba\x4d\x7f\x23\x6b\xe9\x2a\x8c\xec\xdf\x03\
\x5e\xee\x7c\x88\xd2\xda\xf9\xe8\xd2\xae\x25\xbc\x5e\x2f\xa6\xcf\
\x59\x24\xb2\x7e\x94\xef\x7c\xe4\x18\xbe\xc0\xd5\xda\x43\x9c\x8e\
\x93\x7e\x67\x6c\xf9\xcc\x79\xa2\x68\x24\xb9\xf3\x11\x9c\x31\x0f\
\x29\x37\x3d\x80\xa3\xdc\xf9\x10\xa7\xb5\xf3\x71\xdd\xf8\xb3\x71\
\xe3\x65\xe7\x89\xad\x1f\xc5\x3b\x1f\xcf\x6b\x0f\x50\x10\x8e\x09\
\x0f\xc3\x17\x38\x02\x20\xa8\x3d\x07\x11\x85\x49\xc6\xc7\x2f\xd3\
\xe7\xe2\xe2\x9b\x1f\x64\x7c\x58\x40\x2b\x3e\xae\xbf\xf4\x1c\xdc\
\x70\xe9\xb9\x62\xeb\x47\x69\x7c\xd8\xf6\xa1\x61\xc7\x72\xcc\xa5\
\x16\x00\x48\x4d\x49\x5c\x0d\xe0\x12\xed\x39\x88\x28\x4c\xf2\xb2\
\xcb\xda\x8d\xd9\x58\xb4\x62\x2d\x46\xf4\xef\xc6\xcb\x2e\xc2\xb4\
\x2e\xbb\x74\xeb\xd0\x0a\x79\xc8\xc3\x8c\xb9\x8b\x45\xd6\x8f\xb2\
\xcb\x2e\x5b\x0c\x5f\xe0\x6e\xed\x21\x0a\xc2\x69\xbf\x1b\x7f\x02\
\x88\xba\x84\x25\xb2\x33\xc9\x9d\x8f\x1f\xff\x9c\x8d\x4b\xa7\x3c\
\x8c\xa3\x21\xee\x7c\x48\xd3\xda\xf9\xb8\xf1\xb2\xf3\x70\xdd\xf8\
\xb3\xc5\xd6\x8f\xa2\x9d\x8f\x54\xed\x01\x0a\xca\x51\x3b\x1e\x69\
\xe9\x59\x48\x4d\x49\xac\x08\xa0\xab\xf6\x2c\x44\xf4\xff\x24\x77\
\x3e\x56\x6f\xd8\x82\x25\x2b\xd7\x63\x44\xbf\xae\xdc\xf9\x10\xa6\
\xb5\xf3\xd1\xbd\x43\x6b\x84\x72\x73\xf1\xd7\xbc\x25\x22\xeb\x47\
\xc9\xce\xc7\xd9\x69\xe9\x59\xd6\x17\x7a\x11\x38\x2a\x3c\x00\x20\
\x35\x25\x71\x3e\x80\x1b\xb5\xe7\x20\xa2\xff\x26\x1a\x1f\xeb\x37\
\x63\xe9\xaa\x0d\x18\xde\xb7\x1b\xbc\x5e\x8f\xa5\xe7\xc5\xf8\xb0\
\x46\xf7\x8e\xad\x71\x34\x14\xc2\xcc\xf9\x8c\x8f\x22\xf8\xd6\xf0\
\x05\x02\xda\x43\x14\x94\xe3\x7e\x07\x0c\x5f\x60\x2b\x80\xe5\xda\
\x73\x10\xd1\xff\x92\xbc\xec\xf2\xdd\x6f\x33\x71\xc5\x6d\x8f\x22\
\x14\xca\xb5\xfc\xbc\x78\xd9\xc5\x1a\x53\xae\xbc\x00\x13\x53\x46\
\x8b\xad\xef\xe2\xcb\x2e\xb7\x69\x0f\x50\x18\x8e\xdb\xf1\x00\x80\
\xd4\x94\xc4\x0d\x00\xe4\x9e\x42\x43\x44\x45\xd6\xb0\xaa\x17\x2d\
\x6b\x1a\xf8\x42\x60\xe7\x63\xe5\xba\x4d\x58\xb1\x66\x23\x86\xf9\
\xba\x72\xe7\x43\x98\xd6\xce\x47\x8f\x4e\x6d\x70\x24\x27\x07\x99\
\x59\x4b\x45\xd6\x77\xe1\xce\xc7\x1e\xc3\x17\x98\xac\x3d\x44\x61\
\x38\xf5\x95\xff\x12\x40\x9e\xf6\x10\x44\x74\x62\x83\x5a\xc4\xe0\
\x35\xa1\x9d\x8f\xaf\x83\x33\x70\xd5\x1d\x8f\x21\x94\xcb\x9d\x0f\
\x69\x5a\x3b\x1f\xb7\x5e\x7d\x21\x26\xf8\xe5\x9e\x17\xe9\xb2\x9d\
\x8f\xbb\xb4\x07\x28\x2c\x47\xee\x78\x1c\x73\x93\x69\x17\xed\x59\
\x88\xe8\xc4\x1a\x09\xee\x7c\xac\x58\xbb\x09\xab\xd6\x6d\xc2\x50\
\x5f\x17\x78\x3d\xdc\xf9\x90\xa4\xb5\xf3\xd1\x33\x29\x11\x87\x0e\
\x1f\xc1\xac\x05\xcb\x44\xd6\x77\xd1\xce\xc7\x28\xa7\xdc\x54\x1a\
\xe1\xc8\xf0\x00\x80\xd4\x94\xc4\xd9\x00\x6e\xd6\x9e\x83\x88\x4e\
\x4e\x36\x3e\x36\x62\xf5\x86\xcd\x18\xda\xa7\x0b\x3c\x8c\x0f\x51\
\x5a\xf1\xd1\x2b\x29\x11\x07\x0e\x1d\xc6\x6c\xc6\xc7\xc9\x7c\x66\
\xf8\x02\xef\x68\x0f\x51\x58\x8e\x7d\xb5\x0d\x5f\x60\x3b\x80\x4c\
\xed\x39\x88\xe8\xd4\x24\x2f\xbb\x7c\xf1\xe3\x34\x4c\x48\x7d\x12\
\xb9\xbc\xec\x22\x4e\xeb\xb2\xcb\x9d\xd7\xfa\x71\xe5\xd8\x91\x62\
\xeb\x3b\xfc\xb2\x8b\x23\x3f\xb5\xdd\xb1\x3b\x1e\x00\x90\x9a\x92\
\xb8\x18\xc0\x78\xed\x39\x88\xe8\xd4\x24\x77\x3e\x96\xad\xde\x80\
\xb5\x9b\xb2\x31\xa4\x77\x67\xee\x7c\x08\xd3\xda\xf9\xe8\xdd\xb9\
\x2d\xf6\x1d\x38\x88\x39\x0b\x65\xde\xd0\xe8\xd0\x9d\x8f\xf5\x86\
\x2f\x70\xa7\xf6\x10\x45\xe1\xa8\x57\xf9\x78\x86\x2f\x30\x03\xc0\
\x6e\xed\x39\x88\xe8\xf4\x06\xb5\x88\xc1\x6b\x7e\x99\x9d\x8f\x8c\
\xef\xff\xc0\xc4\x7b\x9e\xe6\xce\x87\x05\xb4\x76\x3e\x52\x27\xa5\
\xe0\xf2\xf3\x47\x88\xad\xef\xc0\x9d\x8f\x49\xda\x03\x14\x95\xa3\
\x77\x3c\x00\x20\x35\x25\x71\x3b\x80\x33\xb5\xe7\x20\xa2\xd3\x6b\
\x54\xcd\x8b\x96\x35\x64\x76\x3e\x96\xae\x5a\x8f\xf5\x5b\xb6\x62\
\x70\x2f\xee\x7c\x48\xd3\xda\xf9\xe8\xd3\xa5\x1d\xf6\xec\xdb\x8f\
\xb9\x8b\x56\x88\xac\xef\xa0\x9d\x8f\x1c\x00\x17\xa6\xa5\x67\x69\
\xcf\x51\x24\x6e\x08\x8f\xf9\x70\xd0\x33\xea\x89\xa2\x9d\x74\x7c\
\x6c\xc8\xde\x86\x41\xbd\x92\x18\x1f\xc2\xb4\xe2\xc3\xd7\xb5\x1d\
\x76\xef\xdd\x8f\xb9\x8b\xa3\x3a\x3e\xee\x34\x7c\x81\x3f\xb5\x87\
\x28\x2a\xc7\x87\x47\x5a\x7a\x56\x5e\x6a\x4a\x62\x59\x00\xdd\xb4\
\x67\x21\xa2\x82\x91\x8c\x8f\x25\x2b\xd7\x61\xd3\xdf\xff\x60\x20\
\xe3\x43\x9c\x66\x7c\xec\xda\xb3\x0f\xf3\x16\xaf\x14\x59\xdf\x01\
\xf1\x31\xcc\x69\x6f\xa1\x3d\x96\xe3\xc3\x03\x00\x52\x53\x12\x67\
\x00\xb8\x55\x7b\x0e\x22\x2a\x38\xc9\xf8\x58\xbc\x72\x1d\x36\xff\
\xbd\x1d\x83\x7a\x75\x62\x7c\x08\x53\x8b\x8f\x6e\xed\xb1\x6b\xf7\
\x5e\xcc\x5b\x12\x75\xf1\xf1\xba\xe1\x0b\x7c\xaa\x3d\x44\x71\xb8\
\x22\x3c\xd2\xd2\xb3\x8e\xa4\xa6\x24\xb6\x06\xd0\x42\x7b\x16\x22\
\x2a\x38\xd1\xf8\x58\xb1\x16\x5b\xb6\x6e\xc7\xc0\x9e\x8c\x0f\x69\
\x1a\xf1\xe1\x01\xe0\xeb\xda\x1e\x3b\x77\xed\xc1\xfc\x25\xab\x44\
\x8e\x61\xd3\xf8\x18\x94\x96\x9e\x65\xfd\xdd\xbd\x26\x72\x45\x78\
\x00\x40\x6a\x4a\xe2\x74\x00\xd7\x6b\xcf\x41\x44\x85\x23\x19\x1f\
\x8b\x56\xac\x45\xf6\xb6\x1d\x8c\x0f\x0b\xa8\xc4\x87\x07\xe8\xdb\
\xad\x3d\x76\xec\xdc\x83\xac\xa5\x51\x11\x1f\x3f\x18\xbe\xc0\x4b\
\xda\x43\x14\x97\x6b\xc2\x23\x2d\x3d\x6b\x4f\x6a\x4a\x62\x7f\x00\
\x75\xb4\x67\x21\xa2\xc2\x11\x8d\x8f\xe5\x6b\xf1\xf7\x3f\xff\x62\
\x40\x8f\x8e\x8c\x0f\x61\x3a\xf1\xe1\x41\xbf\x6e\xed\xb1\xfd\xdf\
\xdd\xc8\x5a\xba\x5a\xe4\x18\x36\x8a\x8f\x41\x69\xe9\x59\x3b\xb5\
\x87\x28\x2e\xd7\x84\x07\x00\xa4\xa6\x24\xfe\x05\xe0\x1a\xed\x39\
\x88\xa8\xf0\x24\xe3\x63\xe1\xf2\x35\xd8\xba\x7d\x27\xe3\xc3\x02\
\x6a\xf1\xd1\xbd\x03\xfe\xd9\xb1\x1b\x0b\x96\xb9\x36\x3e\xe6\x18\
\xbe\xc0\x43\x5a\x07\x37\x93\x7a\xbe\x99\xc9\xf0\x05\x96\x02\x58\
\xa8\x3d\x07\x11\x15\xcd\xa0\x96\x72\x0f\x19\x7b\xe7\xb3\x1f\x31\
\xe5\xa1\x97\x90\x97\x67\xfd\x07\x5b\xf3\x21\x63\xf2\x3c\x1e\x0f\
\x1e\x9c\x72\x39\x2e\x1c\x35\x50\xec\x18\xca\x0f\x19\x73\xcd\x53\
\xba\x5d\xb5\xe3\x01\x00\xa9\x29\x89\x99\x00\x2e\xd7\x9e\x83\x88\
\x8a\x46\x72\xe7\x63\xc1\xb2\xd5\xd8\xfe\xef\x6e\xf4\xeb\xde\x81\
\x3b\x1f\xc2\xb4\x76\x3e\xfa\xf7\xe8\x80\xad\xff\xec\xc4\xc2\xe5\
\x6b\x44\x8e\xa1\xb4\xf3\xb1\xd4\xf0\x05\xee\xb2\xf2\x80\x92\x5c\
\xb5\xe3\x01\x00\x86\x2f\x30\x07\x80\xcc\x93\x65\x88\xc8\x12\x92\
\x3b\x1f\x81\x4f\xbf\xc7\x6d\x8f\xbc\xc2\x9d\x0f\x0b\x68\xed\x7c\
\x3c\x7c\xeb\x95\xb8\xe0\xcc\xfe\x62\xc7\x50\xd8\xf9\x48\xb1\xf2\
\x60\xd2\x5c\xb7\xe3\x01\x00\xa9\x29\x89\xb3\x00\x5c\xaa\x3d\x07\
\x11\x15\x9d\xe4\xce\x47\xd6\xd2\x55\xf8\x77\xd7\x5e\xf4\xed\xd6\
\x9e\x3b\x1f\xc2\xb4\x76\x3e\x06\xf4\xec\x88\xec\xad\x3b\xb0\x68\
\xc5\x5a\x91\x63\x58\xb8\xf3\xb1\xd2\xf0\x05\x6e\x91\x3e\x88\x95\
\x5c\xb7\xe3\x01\x00\x86\x2f\x30\x13\xdc\xf5\x20\x72\x3c\xc9\x9d\
\x8f\x37\x3f\xfe\x16\x77\x3c\xf6\x2a\x14\x36\x3e\xb8\xf3\x61\x01\
\x8f\xc7\x83\x47\x6f\xbf\x1a\xe7\x0e\xef\x2b\x76\x0c\x8b\x76\x3e\
\xc6\x49\x1f\xc0\x6a\xae\xdc\xf1\x00\x80\xd4\x94\xc4\x99\x00\x2e\
\xd3\x9e\x83\x88\x8a\x47\x72\xe7\x63\xfe\x92\x55\xd8\xb5\x67\x2f\
\x7c\xdd\xda\xc3\xda\x7d\x0f\xee\x7c\x58\xc1\xe3\xf1\x60\x60\xaf\
\x4e\xd8\x94\xfd\x0f\x16\xaf\x5c\x27\x72\x0c\xe1\x9d\x8f\x65\x86\
\x2f\xe0\xba\xa7\x72\xbb\x72\xc7\x03\x00\x0c\x5f\x60\x16\x80\x45\
\xda\x73\x10\x51\xf1\x49\xee\x7c\xbc\xfe\xe1\x37\xb8\xeb\xf1\xd7\
\x54\xce\x8b\x3b\x1f\xf2\xbc\x1e\x0f\x1e\xbf\x73\x02\xce\x1e\xda\
\x47\xec\x18\x82\x3b\x1f\x63\xc5\x86\x56\xe4\xda\x1d\x0f\x00\x48\
\x4d\x49\xfc\x13\xc0\x55\xda\x73\x10\x51\xf1\x49\xee\x7c\xcc\x5b\
\xbc\x12\xbb\xf7\xed\x87\xaf\x6b\x3b\xcb\xcf\x8b\x3b\x1f\xf2\x3c\
\x1e\x0f\x06\xf5\x4a\xc2\x86\x2d\xdb\xb0\x64\xd5\x3a\x91\x63\x08\
\xec\x7c\xcc\x35\x7c\x81\x7b\xac\x7a\x8d\xac\xe4\xda\x1d\x0f\x00\
\x30\x7c\x81\x85\x00\xa6\x6b\xcf\x41\x44\xe6\x90\xdc\xf9\x78\xf5\
\xfd\xaf\x90\xfa\xe4\x1b\x2a\xe7\xc5\x9d\x0f\x79\x5e\xaf\x07\x4f\
\xde\x75\x2d\x46\x0f\xee\x2d\x76\x0c\x93\x77\x3e\x2e\xb0\xe4\x85\
\x51\xe0\xea\x1d\x0f\x00\x48\x4d\x49\xfc\x05\xc0\x64\xed\x39\x88\
\xc8\x1c\x92\x3b\x1f\x73\x17\xad\xc0\xbe\x03\x07\xd1\xa7\x4b\x5b\
\xcb\xcf\x8b\x3b\x1f\xf2\x3c\x1e\x0f\x06\xf7\x4e\xc2\xba\x4d\x7f\
\x63\xe9\xea\xf5\x22\xc7\x30\x69\xe7\xe3\x67\xc3\x17\x78\xc2\xb2\
\x17\xc6\x62\xae\x0f\x8f\xb4\xf4\xac\x5d\xa9\x29\x89\x6d\x01\x34\
\xd3\x9e\x85\x88\xcc\xd1\xa8\x9a\x17\x2d\x84\xe2\x63\xce\xc2\xe5\
\xd8\x7f\xf0\x20\x7a\x77\x6e\x6b\xf9\x79\x31\x3e\xe4\x45\xe2\x63\
\xcd\xc6\x6c\x2c\x5b\xbd\x41\xe4\x18\x26\xc4\x47\x8f\xb4\xf4\xac\
\x7d\x96\xbd\x28\x16\x73\x7d\x78\x00\x40\x6a\x4a\xe2\x0f\x00\xa6\
\x68\xcf\x41\x44\xe6\x91\x8c\x8f\xd9\x0b\x97\xe3\xc0\xc1\x43\x8c\
\x0f\x0b\x68\xc5\xc7\x90\x3e\x9d\xb1\x7a\xc3\x16\x2c\x5f\x63\xbb\
\xf8\x08\x18\xbe\xc0\x5b\x96\xbd\x18\x0a\xa2\x22\x3c\xd2\xd2\xb3\
\x0e\xa5\xa6\x24\x56\x04\xd0\x45\x7b\x16\x22\x32\x8f\x74\x7c\x1c\
\x3c\x74\x18\xbd\x3a\x27\x5a\x7e\x5e\x8c\x0f\x79\x1e\x8f\x07\x43\
\xfb\x74\xc6\xaa\xf5\x9b\xb1\x7c\xcd\x46\x91\x63\x14\x31\x3e\xba\
\xa7\xa5\x67\xe5\x58\xf6\x42\x28\x88\x8a\xf0\x00\x80\xd4\x94\xc4\
\x9f\x01\xdc\x01\x58\xfe\x76\x7d\x22\x12\x24\x19\x1f\xb3\x16\x2c\
\xc3\xa1\xc3\x47\xd0\x2b\x89\xf1\x21\x4d\x6d\xe7\xc3\xd7\x05\xab\
\xd6\x6d\xc2\x8a\xb5\xb6\x88\x8f\xbb\x0c\x5f\xe0\x27\xcb\x5e\x00\
\x25\x51\x13\x1e\x69\xe9\x59\xb9\xa9\x29\x89\x5b\x01\x0c\xd7\x9e\
\x85\x88\xcc\x25\x1d\x1f\x87\x8f\xe4\xa0\x67\x52\x1b\xcb\xcf\x8b\
\xf1\x21\xcf\xeb\xf1\x60\xa8\xaf\x0b\x56\xae\xdd\x88\x15\x6b\x37\
\x89\x1c\xa3\x80\xf1\x71\x18\xc0\xa0\xb4\xf4\x2c\xcb\xce\x5d\x4b\
\xd4\x84\x07\x00\xa4\xa5\x67\xcd\x4e\x4d\x49\x9c\x08\x40\xe6\xfd\
\x78\x44\xa4\x46\x32\x3e\x32\xb3\x96\xe2\x48\x4e\x0e\x7a\x76\x62\
\x7c\x48\xd3\x8b\x8f\xae\x58\xbe\x66\x03\x56\xae\x53\x8b\x8f\xf3\
\x0c\x5f\x60\x89\x65\x27\xad\x28\xaa\xc2\x03\x00\x52\x53\x12\x67\
\x00\xb8\x58\x7b\x0e\x22\x32\x9f\x74\x7c\xe4\x1c\x3d\x8a\x1e\x8c\
\x0f\x71\x2a\xf1\xe1\xf5\x60\x98\xaf\x2b\x96\xad\x5e\x8f\x55\xeb\
\x36\x8b\x1c\xe3\x14\xf1\xb1\xda\xf0\x05\xa2\xe6\x61\x97\xae\x7e\
\x80\xd8\x89\x18\xbe\xc0\x1f\x00\xa6\x69\xcf\x41\x44\x32\x06\xb7\
\x8c\xc1\xab\x42\x0f\x19\x7b\xfa\xcd\x4f\xf0\xd0\x8b\xef\xaa\x9c\
\x17\x1f\x32\x26\xcf\x30\xbc\x78\xf9\xfe\x1b\x31\xb8\x77\x92\xd8\
\x31\x4e\xf2\x90\xb1\x11\x96\x9e\xa8\xb2\xa8\xdb\xf1\x00\x80\xd4\
\x94\xc4\xaf\x01\xdc\xa8\x3d\x07\x11\xc9\x90\xdc\xf9\x98\x39\x7f\
\x09\x42\xb9\xb9\xe8\xde\xb1\xb5\xe5\xe7\xc5\x9d\x0f\x79\x5e\xaf\
\x17\xc3\xfa\x76\xc5\x92\x95\xeb\xb1\x7a\xbd\x25\x3b\x1f\x1f\x1a\
\xbe\xc0\x0b\x96\x9d\xa0\x0d\x44\x65\x78\xa4\xa5\x67\xed\x4f\x4d\
\x49\x8c\x07\xd0\x5d\x7b\x16\x22\x92\x21\x19\x1f\x7f\xcd\x5b\x82\
\xdc\xbc\x3c\x74\xef\xd0\xca\xf2\xf3\x62\x7c\xc8\xf3\x7a\xbd\x18\
\xde\xaf\x2b\x16\xad\x58\x87\x35\x1b\xb6\x88\x1c\xe3\x98\xf8\x48\
\x72\xfb\xdb\x67\x8f\x17\x95\xe1\x01\xfc\xe7\xed\xb5\x53\x00\xc4\
\x68\xcf\x42\x44\x32\x64\xe3\x63\x31\xf2\x90\x87\x6e\x8c\x0f\x71\
\x5a\xf1\x31\xa2\x5f\x37\x2c\x5c\xbe\x56\x34\x3e\x1e\xff\xe9\x48\
\xfc\xbe\xcd\xcb\xbe\xb7\xec\xc4\x6c\x20\x6a\xc3\x23\x2d\x3d\x0b\
\xa9\x29\x89\x73\x00\x5c\xa8\x3d\x0b\x11\xc9\x91\x8c\x8f\x19\x73\
\x17\x03\x1e\xa0\x5b\x7b\xc6\x87\x34\xcd\xf8\x58\xb0\x7c\x0d\xd6\
\x6e\xcc\x96\x3a\x4c\xd7\xb2\x35\x9b\x97\x8f\xa6\xf8\x88\xda\xf0\
\x00\x80\xb4\xf4\xac\x55\xa9\x29\x89\x03\x00\xd4\xd1\x9e\x85\x88\
\xe4\x48\xc7\x87\xc7\xeb\x41\xd7\xf6\x2d\x2d\x3f\x2f\xc6\x87\x3c\
\xaf\xd7\x8b\x33\xfb\x75\x47\xd6\xd2\xd5\x58\xbb\x89\xf1\x61\x86\
\xa8\x0e\x0f\x00\x48\x4d\x49\xfc\x1c\xc0\xcd\xda\x73\x10\x91\x2c\
\xc9\xf8\x98\x3e\x67\x11\xbc\x86\x17\x5d\xdb\x31\x3e\xa4\xa9\xc5\
\x47\xff\xee\x98\xbf\x64\x15\xd6\x6d\xfa\x5b\xea\x30\x51\x13\x1f\
\x51\x1f\x1e\x69\xe9\x59\x07\x53\x53\x12\x0f\x00\x18\xa0\x3d\x0b\
\x11\xc9\x92\x8e\x0f\x23\xc6\x40\x97\x76\x2d\x2c\x3f\x2f\xc6\x87\
\x3c\xaf\xd7\x8b\x33\x07\x74\xc7\xbc\xc5\x2b\xb1\x7e\x33\xe3\xa3\
\x38\xa2\x3e\x3c\x00\x20\x2d\x3d\x6b\x7a\x6a\x4a\xe2\xe5\x00\xca\
\x6a\xcf\x42\x44\xb2\x24\xe3\x63\xda\xec\x85\x88\x61\x7c\x58\x42\
\x23\x3e\x0c\xaf\x17\x23\x07\x74\xc7\xdc\x45\x2b\xb0\x7e\xf3\x56\
\xa9\xc3\xb8\x3e\x3e\x18\x1e\xf9\x52\x53\x12\xbf\x01\x30\x41\x7b\
\x0e\x22\x92\x27\x1d\x1f\xb1\xb1\x31\xe8\xdc\x96\xf1\x21\x4d\x2d\
\x3e\x06\xf6\xc0\x9c\x85\xcb\xb1\x61\x0b\xe3\xa3\x28\x18\x1e\xf9\
\xd2\xd2\xb3\xb6\xa7\xa6\x24\x56\x04\xd0\x45\x7b\x16\x22\x92\x27\
\x19\x1f\x7f\xce\x5e\x88\x12\x71\xb1\x48\x6a\xdb\xdc\xf2\xf3\x62\
\x7c\xc8\x33\xbc\x5e\x8c\x1a\xd0\x03\xb3\x16\x2c\xc3\xc6\x2d\xdb\
\xa4\x0e\xe3\xda\xf8\x60\x78\x1c\x23\x35\x25\xf1\x7b\x00\x93\x01\
\x94\xd4\x9e\x85\x88\xe4\x49\xc6\xc7\x1f\xb3\x16\xa0\x64\x89\x38\
\x24\x25\x32\x3e\xa4\xa9\xc4\x87\xe1\xc5\xa8\x81\x3d\x91\x99\xb5\
\x14\x1b\xb3\x19\x1f\x85\xe1\xd1\x1e\xc0\x6e\x42\x41\x7f\x7b\x00\
\x73\xb4\xe7\x20\x22\xeb\x7c\xb7\xf8\x28\x2e\x0d\x1c\x14\x59\xfb\
\x8e\x09\xe3\x70\xf5\xb8\x64\x95\xf3\xda\x7f\xe0\x00\xd6\x6e\x90\
\x79\xec\xb7\x1d\xd5\xaf\x53\x13\xa5\xe3\xe3\x2d\x3d\xe6\x91\x9c\
\xa3\x38\x7f\xe2\x3d\xe1\x67\xba\xc8\x89\xcf\xce\xcc\x90\xf9\x02\
\x55\xc0\x1d\x8f\xe3\xa4\xa5\x67\x65\xa7\xa6\x24\x56\x07\xd0\x49\
\x7b\x16\x22\xb2\x86\xe4\xce\xc7\xef\x99\x0b\x10\x5f\xaa\x04\x3a\
\xb5\x69\x66\xf9\x79\x71\xe7\x43\x9e\x61\x78\x91\x3c\xa8\x27\xfe\
\x9a\xb7\x04\x9b\xfe\xfe\x47\xea\x30\xc1\x7d\x9b\x97\xad\xb5\xec\
\xa4\x84\x31\x3c\x4e\x20\xff\x46\xd3\x49\xe0\x25\x17\xa2\xa8\x21\
\x1b\x1f\x59\x28\x1d\x5f\x12\x1d\x19\x1f\xe2\x74\xe2\xc3\x40\xf2\
\xa0\x9e\x98\x3e\x77\x31\x36\xff\xbd\x5d\xe2\x10\x79\xfb\x36\x2f\
\xfb\xcc\xb2\x13\x12\xe6\xd5\x1e\xc0\x8e\x0c\x5f\x20\x0f\x40\x2f\
\xed\x39\x88\xc8\x5a\x83\x5b\xc6\xe0\xd5\x71\xa5\x44\xd6\x4e\x7b\
\x3a\x1d\x2f\xbd\xfb\x85\xca\x79\x95\x8e\x8f\x47\xfd\x3a\x35\x55\
\x8e\xad\x61\xed\x86\xcd\xd8\x7f\xe0\x80\xa5\xc7\x8c\x8b\x8d\xc5\
\x07\xcf\xdc\x2d\xb5\xb3\x35\xca\xd2\x93\x11\xc6\x1d\x8f\x93\x48\
\x4b\xcf\xda\x96\x9a\x92\x58\x12\x40\x0f\xed\x59\x88\xc8\x3a\x8d\
\xaa\x79\xd1\x22\xc1\xc0\x17\x0b\xcc\xdf\xf9\xf8\x6d\xe6\x7c\x94\
\x2d\x5d\x0a\x1d\x5a\x37\xb5\xfc\xbc\xb8\xf3\x21\x2f\xc6\x30\x70\
\xd6\xe0\x5e\x98\x36\x7b\x21\xb6\x6c\xdb\x61\xe6\xd2\x25\xcb\xd6\
\x6c\xfe\xe8\xbe\xcd\xcb\x5c\xf1\x29\xb6\xdc\xf1\x38\x05\xc3\x17\
\xb8\x15\xc0\x7a\xed\x39\x88\xc8\x5a\x83\x5b\xc5\xe0\x15\xa1\x9d\
\x8f\xbb\x9f\x7a\x13\x2f\xbf\xf7\xa5\xca\x79\x71\xe7\x43\x5e\x89\
\xb8\x58\x7c\xf4\x7c\x1a\xda\xb7\x6a\x62\xf6\xd2\xae\xd9\x85\x67\
\x78\x9c\x5e\x77\xed\x01\x88\xc8\x7a\x43\x24\xe3\xe3\xc9\x37\xf0\
\xca\xfb\x5f\xa9\x9c\x17\xe3\x43\x5e\x89\xb8\x58\x7c\xf2\x42\x1a\
\xda\xb5\x6c\x6c\xe6\xb2\x7e\x4b\x4f\x42\x10\xc3\xe3\x34\x0c\x5f\
\x60\x33\x80\x4b\xb5\xe7\x20\x22\xeb\x49\xc6\x47\xea\x13\xaf\xe3\
\xd5\x0f\xbe\x56\x39\x2f\xc6\x87\xbc\x12\x71\x71\xf8\xe4\x85\xa9\
\x68\xdb\xa2\x91\x59\x4b\x8e\xb0\xf4\x04\x04\xf1\x39\x1e\x05\x14\
\x0a\xfa\x7f\x04\xd0\x5f\x7b\x0e\x22\xb2\xde\xb7\x8b\x8e\xe2\xb2\
\xb7\x64\x1e\xa3\x30\xf5\x86\xf1\x18\x7f\xce\x30\x95\xf3\xe2\x73\
\x3e\xe4\x1d\x3a\x7c\x04\xc9\x57\xdc\x8e\xac\xa5\xab\xcd\x58\xae\
\x7c\x76\x66\xc6\x1e\x4b\x4f\x40\x00\x77\x3c\x0a\x6e\x18\x80\xc3\
\xda\x43\x10\x91\xf5\x24\x77\x3e\xee\x7c\xec\x35\xbc\xfe\xd1\x37\
\x2a\xe7\xc5\x9d\x0f\x79\x25\x4b\xc4\xe1\xee\xc9\x17\x9b\xb5\x5c\
\x5f\x4b\x87\x17\xc2\xf0\x28\x20\xc3\x17\x38\x02\xde\xef\x41\x14\
\xb5\x24\xe3\xe3\x8e\x47\x5f\xc5\x1b\x1f\x7f\xab\x72\x5e\x8c\x0f\
\x79\x2d\x1a\xd7\x33\x6b\x29\x57\xdc\xe7\xc1\xf0\x28\x04\xc3\x17\
\x98\x03\xe0\x0e\xed\x39\x88\x48\x87\x64\x7c\xdc\xfe\xc8\x2b\x78\
\xf3\xe3\xef\x54\xce\x8b\xf1\x21\xab\x6c\xe9\x78\x54\xab\x5c\xd1\
\x8c\xa5\x86\x58\x36\xb4\x20\x86\x47\x21\x19\xbe\xc0\x7d\x00\xfe\
\xd2\x9e\x83\x88\x74\x48\xc6\xc7\x6d\x8f\xbc\x8c\xf4\x4f\x18\x1f\
\x56\xb0\x3a\x3e\x52\xc6\x0c\x36\x63\x99\x92\x09\x49\xc9\xa6\x14\
\x8c\x26\x86\x47\xd1\xf8\x00\x1c\xd1\x1e\x82\x88\x74\x48\xc6\xc7\
\xad\x0f\xbf\x8c\xc0\xa7\x3a\x1f\x46\xca\xf8\x90\xd3\xaf\x5b\x07\
\xb3\x96\x1a\x60\xc9\xc0\x82\x18\x1e\x45\x60\xf8\x02\x87\x00\x24\
\x69\xcf\x41\x44\x7a\x24\xe3\xe3\x96\x87\x5e\xc2\x5b\x19\x3f\xa8\
\x9c\x17\xe3\x43\x46\xe3\xfa\xb5\xcc\x5a\xea\x22\xf1\x61\x85\x31\
\x3c\x8a\xc8\xf0\x05\xb2\x00\x5c\xab\x3d\x07\x11\xe9\x91\x8c\x8f\
\x29\x0f\xbe\x88\xb7\x3f\x63\x7c\x58\xc1\x8a\xf8\x28\x59\x22\xce\
\xac\x9b\x4c\xb9\xe3\x11\xcd\x0c\x5f\xe0\x59\x00\x19\xda\x73\x10\
\x91\x1e\xc9\xf8\xb8\xf9\x81\x17\xf1\xce\x67\x3f\xaa\x9c\x17\xe3\
\xc3\x7c\x63\x47\x9a\xf2\x28\xa8\xd8\x84\xa4\xe4\xaa\x96\xbc\x28\
\x42\x18\x1e\xc5\x37\x1a\xc0\x16\xed\x21\x88\x48\x8f\x64\x7c\xdc\
\xf4\xc0\x0b\x78\xf7\xf3\x9f\x54\xce\x8b\xf1\x61\xae\x9e\x9d\x12\
\xcd\x5a\xca\x94\x3b\x55\xb5\x30\x3c\x8a\xc9\xf0\x05\xf2\x00\x98\
\xf6\xd5\x44\x44\xce\x24\x19\x1f\x37\xde\xff\x3c\xde\xfb\xe2\x67\
\x95\xf3\x62\x7c\x98\xa7\x6e\xad\xea\x66\x2d\xe5\xe8\xe7\x79\x30\
\x3c\x4c\x60\xf8\x02\xdb\xc1\x87\x8b\x11\x45\x3d\xc9\xf8\xb8\xe1\
\xbe\xe7\xf0\xfe\x97\x8c\x0f\x2b\xac\xdd\xb0\x19\xa1\x50\xae\xe9\
\xeb\xc6\xc6\xc4\xa0\x67\xa7\x36\x66\x2c\xe5\xb3\xfc\x45\x31\x11\
\xc3\xc3\x24\x86\x2f\x30\x1d\xbc\xd9\x94\x28\xea\x49\xc6\xc7\xf5\
\xf7\x3e\x87\x0f\xbe\xfa\x45\xe5\xbc\xa2\x2d\x3e\x0e\x1d\x96\xf9\
\x84\x8c\xb3\x87\xf5\x31\x63\x19\x23\x21\x29\xf9\x0c\x2b\x5f\x0f\
\x33\x31\x3c\x4c\x94\x7f\xb3\x69\xba\xf6\x1c\x44\xa4\x4b\x32\x3e\
\xae\x9b\xfa\x2c\x3e\xfc\x2a\xa8\x72\x5e\xd1\x14\x1f\x7b\xf6\xed\
\x13\x59\xb7\x4b\xdb\x96\x66\x2d\xa5\xf3\xc9\x82\x26\x60\x78\x98\
\xcc\xf0\x05\x52\x00\xcc\xd3\x9e\x83\x88\x74\x49\xc6\xc7\xe4\xa9\
\xcf\xe0\xc3\xaf\x19\x1f\x92\x76\xfc\xbb\x4b\x64\xdd\x1a\xd5\x2b\
\x9b\xb5\x94\x63\x9f\xe7\xc1\xf0\x90\xd1\x19\xc0\x2e\xed\x21\x88\
\x48\x97\x68\x7c\xa4\x3d\x83\x8f\xbe\xf9\x55\xe5\xbc\xa2\x25\x3e\
\x42\xa1\x90\xe9\x6b\x7a\xbd\x5e\x8c\x1c\x60\xca\x2d\x81\x3d\x2c\
\x7f\x41\xcc\x7a\x0d\xb4\x07\x70\x23\xc3\x17\xc8\x01\xd0\x0c\x40\
\x9e\xf6\x2c\x44\xa4\x4b\x32\x3e\x26\xdd\xf3\x34\x3e\xfe\xf6\x37\
\x95\xf3\x8a\x86\xf8\x38\x78\x48\xe6\x3e\x8f\x91\x03\x7a\x9a\xb1\
\x8c\x27\x21\x29\xd9\xb4\xc7\xa1\x5a\x89\xe1\x21\xc4\xf0\x05\xb6\
\x02\xe8\xa8\x3d\x07\x11\xe9\x93\x8c\x8f\x89\x77\x3f\x85\x4f\xbe\
\x63\x7c\x48\xd8\xb3\x57\xe6\x3e\x8f\x0e\xad\x9a\x98\xb5\xd4\x99\
\x96\xbd\x18\x26\x62\x78\x08\x32\x7c\x81\xb9\x00\xce\xd2\x9e\x83\
\x88\xf4\x49\xc6\xc7\xb5\xa9\x4f\xe1\xd3\xef\x7e\x57\x39\x2f\x37\
\xc7\xc7\xbf\xbb\x76\x8b\xac\x5b\xa5\x52\x05\xb3\x96\x72\xe4\xf3\
\x3c\x18\x1e\xc2\x0c\x5f\x20\x03\xc0\x0d\xda\x73\x10\x91\x3e\xc9\
\xf8\x98\x90\xfa\x24\x32\xbe\xff\x43\xe5\xbc\xdc\x1c\x1f\x47\x8f\
\x9a\x7f\x9f\x87\xc7\x03\x5c\x34\xda\x94\x87\x8f\x76\x4e\x48\x4a\
\xb6\xfc\x35\x29\x2e\x86\x87\x05\x0c\x5f\xe0\x71\x00\x4f\x6b\xcf\
\x41\x44\xfa\x24\xe3\xe3\x9a\xbb\x9e\xc0\x67\x3f\x30\x3e\xcc\x74\
\xf0\xd0\x21\x91\x75\x87\xf9\xba\x98\xb5\x54\x7d\xcb\x5e\x0c\x93\
\x30\x3c\x2c\x62\xf8\x02\x93\x00\x7c\xaa\x3d\x07\x11\xe9\x1b\xd2\
\x2a\x06\x2f\x0b\xc5\xc7\xd5\x77\x3e\x81\xcf\x7f\xfc\x53\xe5\xbc\
\xdc\x18\x1f\xbb\xf7\xee\x15\x59\xb7\x75\xb3\x06\x66\x2d\x35\xca\
\xaa\xd7\xc2\x2c\x0c\x0f\x0b\x19\xbe\xc0\x68\x00\xd3\xb4\xe7\x20\
\x22\x7d\x43\x05\xe3\xe3\xaa\x3b\x1e\xc7\x17\x3f\xea\x7c\xab\x71\
\x5b\x7c\xec\xda\x2d\x13\x1e\xe5\xcb\x96\x41\xd9\xd2\xf1\x66\x2c\
\xe5\xb8\xfb\x3c\x18\x1e\xd6\xeb\x09\x60\x99\xf6\x10\x44\xa4\x4f\
\x32\x3e\xae\xbc\xe3\x31\x7c\xf1\x13\xe3\xc3\x0c\x39\x47\x8f\x8a\
\xac\x7b\xc9\x39\x43\xcd\x58\xa6\xad\xd3\xee\xf3\x60\x78\x58\x2c\
\xff\xd3\x6c\x5b\x03\xd8\xa2\x3d\x0b\x11\xe9\x13\x8d\x8f\xdb\x1f\
\xc3\x97\x3f\x4f\x57\x39\x2f\x37\xc5\xc7\xc1\x83\x32\xf7\x79\x0c\
\xe8\x61\xda\x13\x17\x1a\x5b\xf6\x62\x98\x80\xe1\xa1\xc0\xf0\x05\
\x8e\x02\x68\x04\x60\xa7\xf6\x2c\x44\xa4\x4f\x32\x3e\xae\xb8\xed\
\x51\x7c\xf5\xcb\x0c\x95\xf3\x72\x4b\x7c\xec\xda\x23\x73\xb9\xa5\
\x59\xc3\x3a\x66\x2d\x35\xda\xb2\x17\xc3\x04\x0c\x0f\x25\x86\x2f\
\x70\x10\xe1\xbb\x91\x0f\x68\xcf\x42\x44\xfa\x24\xe3\xe3\xf2\x5b\
\x1f\xc1\xd7\x8c\x8f\x22\x93\x7a\x90\x58\x7c\xa9\x92\xa8\x5f\x3b\
\xc1\x8c\xa5\xc6\x59\xfa\x82\x14\x13\xc3\x43\x91\xe1\x0b\xec\x06\
\x50\x17\x80\xcc\x73\x79\x89\xc8\x51\x24\xe3\xe3\xb2\x5b\x1f\xc1\
\x37\xc1\xbf\x54\xce\xcb\x0d\xf1\x91\x93\x23\x73\x9f\xc7\xb8\xe4\
\x81\x66\x2c\xd3\x22\x21\x29\xd9\x63\xe9\x0b\x52\x0c\x0c\x0f\x65\
\x86\x2f\xb0\x1d\xe1\xf8\xc8\xd1\x9e\x85\x88\xf4\x49\xc6\xc7\xa5\
\xb7\x3c\x8c\x6f\x7f\x65\x7c\x14\xc5\xfe\x83\x07\x45\xd6\xed\xd3\
\xa5\xad\x59\x4b\x35\xb7\xea\xb5\x28\x2e\x86\x87\x0d\xe4\x7f\xae\
\x4b\x3d\x00\x32\x49\x4d\x44\x8e\x22\x19\x1f\xe3\xa7\x3c\x8c\x6f\
\x7f\x9b\xa9\x72\x5e\x4e\x8e\x8f\xdd\x42\x6f\xab\x6d\x50\xbb\x86\
\x59\x4b\x9d\x6d\xd9\x8b\x51\x4c\x0c\x0f\x9b\x30\x7c\x81\x2d\x08\
\xef\x7c\x30\x3e\x88\x48\x36\x3e\x6e\x7e\x08\xdf\xfd\x96\xa9\x72\
\x5e\x4e\x8d\x8f\xbd\xfb\xf7\x23\x2f\xcf\xfc\x0f\x1c\x8f\x8b\x8b\
\x45\xc7\x36\x4d\xcd\x58\x6a\xac\xe5\x2f\x4a\x11\x31\x3c\x6c\x24\
\x3f\x3e\xea\x80\x97\x5d\x88\x08\xb2\xf1\x71\xc9\xcd\x0f\xe2\xfb\
\xdf\x19\x1f\x85\x21\x75\x9f\xc7\x79\xc3\xfb\x99\xb1\x4c\xe3\x84\
\xa4\x64\x47\xfc\x4c\x77\xc4\x90\xd1\xc4\xf0\x05\xb2\x01\xd4\x02\
\x20\xf3\xc6\x71\x22\x72\x14\xc9\xf8\xb8\xf8\xa6\x07\xf1\xc3\x1f\
\xb3\x54\xce\xcb\x89\xf1\x21\x75\x9f\x47\xb7\x0e\xad\xcc\x5a\xaa\
\xb5\x65\x2f\x46\x31\x30\x3c\x6c\xc8\xf0\x05\xb6\x01\xa8\x01\x40\
\xe6\xa2\x22\x11\x39\x8a\x64\x7c\xa4\xdc\xf8\x00\x7e\xfc\x63\xb6\
\xca\x79\x39\x2d\x3e\x76\xed\xde\x23\xb2\x6e\xed\x84\x6a\x66\x2d\
\x75\xae\x65\x2f\x46\x31\x30\x3c\x6c\xca\xf0\x05\x76\x22\x1c\x1f\
\xff\x68\xcf\x42\x44\xfa\x24\xe3\xe3\xa2\x1b\xef\xc7\x4f\x7f\x32\
\x3e\x4e\x67\xff\x81\x83\x22\xf7\x79\x18\x86\x17\x03\x7b\x76\x32\
\x63\xa9\x0b\x2c\x7f\x51\x8a\x80\xe1\x61\x63\x86\x2f\xb0\x0f\x40\
\x6d\x00\x6b\xb5\x67\x21\x22\x7d\x43\x5b\xc5\xe0\xe5\x0b\x65\xe2\
\xc3\x7f\xc3\xfd\xf8\x69\xda\x1c\x95\xf3\x72\x52\x7c\x1c\xc9\x91\
\xb9\x05\x6f\xf4\xe0\xde\x66\x2c\x53\x37\x21\x29\x39\xc6\xd2\x17\
\xa4\x08\x18\x1e\x36\x67\xf8\x02\x87\x11\x7e\xbc\xfa\x3c\xed\x59\
\x88\x48\xdf\xd0\xd6\x82\xf1\x71\xfd\x7d\xf8\x79\x3a\xe3\xe3\x54\
\xf6\xef\x97\xb9\xcf\xa3\x63\xa2\x29\xef\x6c\x01\x80\x76\x96\xbd\
\x18\x45\xc4\xf0\x70\x00\xc3\x17\xc8\x05\xd0\x1e\xc0\x0f\xda\xb3\
\x10\x91\x3e\xc9\xf8\x18\x77\xdd\x7d\xf8\x65\xfa\x5c\x95\xf3\x72\
\x42\x7c\xec\x14\xba\xcf\xe3\x8c\x2a\x95\xcc\x5a\xea\x7c\xcb\x5e\
\x8c\x22\x62\x78\x38\x84\xe1\x0b\xc0\xf0\x05\x06\x01\x78\x53\x7b\
\x16\x22\xd2\x27\x19\x1f\x17\x5e\x77\x2f\x82\x33\x74\x36\x59\xed\
\x1e\x1f\x07\x0f\x1d\x12\xb9\xcf\xc3\xe3\xf1\xe0\xbc\x11\x7d\xcd\
\x58\xca\xf6\x37\x98\x32\x3c\x1c\xc6\xf0\x05\x2e\x06\x90\xa6\x3d\
\x07\x11\xe9\x93\x8c\x8f\xb1\x93\xa7\x22\xf8\x17\xe3\xe3\x44\x0e\
\x1f\x39\x22\xb2\xee\x88\x7e\xdd\xcc\x58\xa6\x46\x42\x52\x72\xac\
\xa5\x2f\x48\x21\x31\x3c\x1c\xc8\xf0\x05\x52\x01\x5c\xa2\x3d\x07\
\x11\xe9\x13\x8d\x8f\x49\x53\xf1\xeb\x5f\xf3\x55\xce\xcb\xce\xf1\
\xb1\x6f\xbf\xcc\x87\x8a\x27\x36\x6f\x64\xd6\x52\xa6\xbc\x45\x46\
\x0a\xc3\xc3\xa1\x0c\x5f\xe0\x0d\x00\xa6\xec\xcb\x11\x91\xb3\x49\
\xc6\xc7\x05\x93\xd2\xf0\xdb\xcc\xf9\x2a\xe7\x55\x3a\x3e\x1e\xcd\
\x1b\x37\x44\xfd\x3a\xb5\x50\xb9\x52\x05\x95\x19\x4e\x64\xe7\x2e\
\x99\xfb\x3c\x2a\x55\x28\x07\xc3\x6b\xca\x8f\x65\x5b\x3f\x3e\x9d\
\xe1\xe1\x60\x86\x2f\x10\x04\xd0\x18\x80\xcc\xbe\x1f\x11\x39\x86\
\x64\x7c\x9c\x3f\x31\x0d\xbf\x67\x66\xa9\x9c\x97\x61\x78\x51\x3a\
\xbe\x14\x12\xaa\x55\x45\xab\x66\x8d\xd1\xbc\x71\x03\xd4\xab\x5d\
\x13\x95\x2a\x94\x57\x99\x07\x08\x5f\x6a\xc9\xcd\x35\xff\x3e\x0f\
\x00\xb8\xec\xfc\x11\x66\x2c\x33\xc6\xd2\x17\xa4\x90\x18\x1e\x0e\
\x67\xf8\x02\xab\x00\x54\x01\xb0\x5e\x7b\x16\x22\xd2\x25\x19\x1f\
\xe7\x5d\x7b\x0f\xfe\xc8\x5c\xa0\x7d\x8a\x30\x0c\x03\x65\x4a\xc7\
\xa3\xc6\x19\xd5\xd0\xaa\x59\x63\x34\x6b\xd4\x00\x75\x6b\xd5\x40\
\x85\xf2\x65\x2d\x9d\x43\xea\x3e\x8f\x41\xbd\x92\xcc\x58\xa6\x5a\
\x42\x52\x72\x09\x4b\x5f\x90\x42\x60\x78\xb8\x80\xe1\x0b\xec\x05\
\x50\x1f\xc0\xf7\xda\xb3\x10\x91\x2e\xc9\xf8\x38\xf7\xda\xbb\xf1\
\xc7\x2c\xfd\xf8\x38\x56\x4c\x8c\x81\xb2\x65\x4a\xa3\x56\xc2\x19\
\x68\xd5\xac\x31\x9a\x36\xaa\x8f\x3a\x35\x13\x50\xae\x6c\x19\xd1\
\xe3\xee\xdb\xbf\x5f\x64\xdd\x16\x8d\xeb\x9a\xb5\x54\x57\xd1\x17\
\xa0\x18\x18\x1e\x2e\x61\xf8\x02\x79\x86\x2f\x30\x18\xc0\x03\xda\
\xb3\x10\x91\xae\xa1\xad\x63\xf0\x92\x54\x7c\x4c\xb8\x1b\x7f\xce\
\x5e\xa8\x7d\x8a\x27\x15\x1b\x13\x83\x72\x65\xcb\xa0\x4e\xcd\x84\
\x70\x88\x34\xac\x8f\x5a\x35\xce\x40\xd9\xd2\xa5\x4d\x3d\xce\xbf\
\xbb\x76\x8b\xcc\x5f\xb6\x74\x3c\xaa\x9b\xf3\x4c\x8f\x0b\x45\x06\
\x34\x01\xc3\xc3\x65\x0c\x5f\xe0\x36\x00\xa3\xb5\xe7\x20\x22\x5d\
\xc3\x04\xe3\xe3\x9c\x6b\x52\x31\xcd\xc6\xf1\x71\xac\xd8\xd8\x18\
\x54\x28\x57\x16\x75\x6b\xd7\x40\xcb\xa6\x8d\xd0\xa4\x41\x3d\xd4\
\x4c\xa8\x8e\xd2\xf1\xc5\x7b\x6d\x72\x72\x8e\x22\x37\x37\x57\x64\
\xe6\x94\x31\x83\xcd\x58\xe6\x2c\x91\xe1\x4c\xe0\xd1\x1e\x80\x64\
\x84\x82\xfe\xc6\x00\xb2\x00\xc8\x7c\xe7\x21\x22\x47\xf8\x7a\xe1\
\x51\x5c\xf1\xb6\xcc\x63\xbe\x3f\x7e\x3e\xcd\xcc\x8f\x74\xb7\x5c\
\x5e\x5e\x1e\x8e\xe4\xe4\x60\xff\xfe\x83\xd8\xb9\x7b\x0f\x0e\x1e\
\x3a\x54\xa8\x5f\xdf\xa0\x6e\x6d\xc4\x97\x2a\x69\xfa\x5c\x0b\x97\
\xaf\xc1\x20\xff\x8d\x66\x2c\x55\x3a\x3b\x33\x43\xe6\xbd\xbf\xc5\
\xc0\x1d\x0f\x97\x32\x7c\x81\x95\x00\x2a\x02\xd0\xf9\xe0\x05\x22\
\xb2\x05\xc9\x9d\x8f\x31\x57\xdf\x85\xe9\x73\x17\x69\x9f\x62\x91\
\x79\x3c\x1e\x94\x88\x8b\x43\xa5\x8a\xe5\xd1\xb0\x5e\x6d\xb4\x6c\
\xda\x08\x8d\xea\xd7\xc1\x19\xd5\xaa\xa0\x44\x5c\xdc\x69\x7f\xfd\
\x5e\xa1\xfb\x3c\x1a\xd7\xab\x65\xd6\x52\x3d\x44\x06\x2c\x26\x86\
\x87\x8b\x19\xbe\xc0\x61\xc3\x17\xe8\x08\xe0\x09\xed\x59\x88\x48\
\x8f\x68\x7c\x5c\x75\x17\x66\xcc\x5d\xac\x7d\x8a\xa6\xf0\x78\x3c\
\x28\x59\xa2\x04\xaa\x54\xaa\x88\xc6\x0d\xea\xa2\x45\x93\x46\x68\
\x58\xaf\x0e\xaa\x57\xad\x8c\xd8\xd8\xff\xfd\xd0\xd7\x7f\x77\xca\
\xdc\xe7\x51\xb2\x44\x1c\x5a\x36\xa9\x6f\xc6\x52\xe3\x64\x5f\xb1\
\xa2\x61\x78\x44\x01\xc3\x17\xb8\x1e\x80\x29\x6f\x0e\x27\x22\x67\
\x92\x8c\x8f\xd1\x57\xdd\x89\xbf\xe6\xb9\x23\x3e\x8e\xe5\xf5\x7a\
\x50\xaa\x64\x09\x54\xad\x5c\x09\x4d\x1b\xd6\x47\x8b\x26\x0d\xd1\
\xa0\x6e\x6d\x54\xad\x52\x09\x86\x61\x20\x14\x0a\x21\x24\x74\x9f\
\xc7\x05\x23\xfb\x9b\xb1\xcc\x48\x4b\x5f\xb0\x02\xe2\x3d\x1e\x51\
\x24\x14\xf4\x9f\x81\xf0\xa5\x97\x1a\xda\xb3\x10\x91\x0e\xc9\x7b\
\x3e\x32\x5e\xba\x17\x9d\xdb\xb6\xd0\x3e\x45\xcb\x84\x72\x73\xcd\
\x7a\xd2\xe8\xff\x58\xb5\x7e\x33\x7a\x9d\x73\xad\x19\x4b\x95\xcd\
\xce\xcc\xd8\x67\xe9\x0b\x73\x1a\xdc\xf1\x88\x22\x86\x2f\xf0\x37\
\x80\x9a\x00\xde\xd6\x9e\x85\x88\x74\x48\xee\x7c\x24\x5f\x71\x07\
\x66\xce\x5f\xaa\x7d\x8a\x96\x91\x8a\x0e\x00\xa8\x5b\xf3\x0c\xb3\
\x96\xea\x63\xc5\x6b\x51\x18\x0c\x8f\x28\x63\xf8\x02\x30\x7c\x81\
\x71\x00\xce\xd1\x9e\x85\x88\x74\xc8\xc6\xc7\xed\xc8\xcc\x8a\x9e\
\xf8\x90\x12\x1b\x63\xa0\x57\x52\xa2\x19\x4b\xf9\xb5\xcf\xe5\x78\
\x0c\x8f\x28\x65\xf8\x02\x1f\x01\x38\x03\x7c\xd4\x3a\x51\x54\x92\
\x8c\x8f\x51\x97\xdf\x8e\x59\x59\xcb\xb4\x4f\xd1\xf1\xce\x1e\xda\
\xc7\x8c\x65\x86\x69\x9f\xc7\xf1\x18\x1e\x51\xcc\xf0\x05\xb6\x1a\
\xbe\x40\x3d\x00\x4f\x69\xcf\x42\x44\xd6\x93\x8c\x8f\x91\x97\xdf\
\x86\x59\x0b\x18\x1f\xc5\xd1\xb9\x9d\x29\xf7\xcb\xc4\x27\x24\x25\
\xeb\x7d\xa2\xde\x09\x30\x3c\x08\x86\x2f\x30\x19\xe1\xf7\x7b\xe7\
\x68\xcf\x42\x44\xd6\x12\x8d\x8f\xcb\x6e\xc3\xec\x85\xcb\xb5\x4f\
\xd1\xb1\x6a\x54\xab\x6c\xd6\x52\xa6\xbc\x45\xc6\x2c\x0c\x0f\x02\
\x00\x18\xbe\xc0\x34\x00\x65\x00\x7c\xa7\x3d\x0b\x11\x59\x4b\x32\
\x3e\xce\xbc\xf4\x56\xcc\x61\x7c\x14\x89\xd7\xeb\xc5\xa8\x81\xa6\
\x3c\x03\xcc\x56\xf7\x79\x30\x3c\xe8\x3f\x0c\x5f\xe0\x88\xe1\x0b\
\x0c\x01\x70\xae\xf6\x2c\x44\x64\x2d\xc9\xf8\x18\x71\xe9\xad\x98\
\xb3\x68\x85\xf6\x29\x3a\xd2\xc8\x01\xa6\x84\xc7\x20\xed\xf3\x38\
\x16\xc3\x83\xfe\x87\xe1\x0b\x7c\x08\xa0\x02\x80\x4c\xed\x59\x88\
\xc8\x3a\xa2\xf1\x31\xfe\x16\xcc\x65\x7c\x14\x5a\xfb\x56\x4d\xcc\
\x58\xa6\x44\x42\x52\xb2\x69\xd7\x6d\x8a\x8b\xe1\x41\x27\x64\xf8\
\x02\xbb\x0d\x5f\xa0\x33\x80\x4b\xb4\x67\x21\x22\xeb\x48\xc6\xc7\
\xf0\xf1\xb7\x60\xde\xe2\x95\xda\xa7\xe8\x28\x55\x2a\x55\x30\x6b\
\xa9\x81\xda\xe7\x12\x61\x68\x0f\x40\xf6\x96\x96\x9e\x35\x3f\x35\
\x25\xf1\x29\x84\x1f\x42\x63\xda\x27\x17\x11\x91\x7d\x35\xa9\xee\
\x45\xd3\x33\x0c\x7c\xb5\xe0\xa8\xe9\x6b\xbf\xfb\xf9\x4f\x38\x92\
\x93\x83\xf8\x92\x25\x50\xbe\x6c\x19\xc4\x9d\xe0\x33\x50\xe8\xff\
\x79\x00\xec\xd8\xb5\x07\xf3\x97\xac\x2a\xee\x52\x65\xf6\x6d\x5e\
\x66\x8b\x87\x47\xf2\x91\xe9\x54\x60\xa1\xa0\xff\x5c\x00\xef\x81\
\x5f\x37\x44\x51\x41\xf2\xf1\xea\x11\x75\x6a\x54\x87\xff\xac\x41\
\xe8\xd3\xb5\x2d\x1a\xd6\xa9\x89\x12\x71\xb1\xda\xa7\x6d\x3b\x7f\
\xce\x5e\x88\x73\xae\x49\x2d\xee\x32\x47\xb3\x33\x33\x6c\xf1\xe2\
\xf2\x07\x08\x15\x4a\x28\xe8\x2f\x05\xe0\x7d\x00\x67\x6a\xcf\x42\
\x44\xf2\xac\x88\x8f\x63\xb5\x6b\xd9\x18\xe7\x8f\xe8\x87\xee\x1d\
\x5b\xa3\x76\x8d\x6a\x88\x31\xb8\x31\xbf\x7b\xef\x7e\x34\xef\x6f\
\xca\x07\xcd\x56\xcf\xce\xcc\xd8\xa6\x7d\x3e\x0c\x0f\x2a\x92\x50\
\xd0\xdf\x13\xc0\x37\x08\xbf\x05\x97\x88\x5c\xcc\xea\xf8\x38\x56\
\xff\xee\x1d\x30\x7a\x48\x6f\x74\x4a\x6c\x8e\x84\xaa\x95\xe0\xf1\
\x44\xe7\x8f\xad\x66\xfd\x2e\xc4\x9e\x7d\x07\x8a\xbb\xcc\xc5\xd9\
\x99\x19\x6f\x6a\x9f\x4b\x74\xfe\x0e\x92\x29\x42\x41\xbf\x07\xc0\
\x7d\x00\x6e\xd5\x9e\x85\x88\x64\x69\xc6\xc7\xb1\xce\x1e\xda\x07\
\x67\xf6\xef\x8e\xb6\x2d\x1a\xa3\x72\xc5\x72\xda\xe3\x58\xe6\xe1\
\x97\xde\xc3\x93\xaf\x7f\x54\xdc\x65\x82\xd9\x99\x19\x7d\xb5\xcf\
\x85\xe1\x41\xc5\x16\x0a\xfa\x13\x00\x7c\x01\xa0\xa3\xf6\x2c\x44\
\x24\xe7\xab\x05\x47\x71\xe5\x3b\xfa\xf1\x71\xac\xcb\xce\x1f\x81\
\x21\xbd\x3b\xa3\x65\xe3\x7a\x28\x5b\x26\x5e\x7b\x1c\x31\xf3\x16\
\xaf\xc4\xb0\x4b\xa6\x14\x77\x99\xdc\xec\xcc\x0c\xf5\x6b\x57\x0c\
\x0f\x32\x4d\x28\xe8\x1f\x0c\xe0\x53\x00\x32\xef\xc5\x23\x22\x4d\
\x1f\x02\xb8\xb8\xd6\x94\xbd\x53\x01\x5c\xaf\x3d\xcc\x89\x54\xa9\
\x54\x1e\x17\x8f\x19\x82\x7e\xdd\x3b\xa0\x71\xbd\x5a\x28\x55\xb2\
\x84\xf6\x48\xa6\x39\x70\xf0\x10\x1a\xf5\xb9\xc0\x8c\xa5\x6a\x66\
\x67\x66\x6c\xd1\x3c\x17\x86\x07\x99\x2a\xff\xf2\xcb\x5d\x00\xee\
\xd6\x9e\x85\x88\x4c\xb1\x1a\xc0\x08\xc3\x17\xf8\xcf\x67\xdd\x27\
\x24\x25\x3f\x06\x9b\xc6\xc7\xb1\x9a\x35\xac\x83\xb1\xa3\x06\xa0\
\x57\x52\x22\xea\xd5\x3a\x03\xb1\x31\xce\x7e\xeb\x6e\x8f\xb3\x27\
\x60\xcd\x86\x62\x37\xc3\x95\xd9\x99\x19\x2f\x69\x9e\x07\xc3\x83\
\x44\x84\x82\xfe\xf2\x00\x02\xe0\xbb\x5f\x88\x9c\xea\x30\x80\xb1\
\x86\x2f\xf0\xc9\x89\xfe\x47\xa7\xc4\xc7\xb1\xba\x77\x6c\x8d\x73\
\x86\xf9\xd0\xa5\x5d\x0b\xd4\xac\x5e\x05\x5e\xaf\xb3\x9e\xa1\xf9\
\xd2\xbb\x5f\xe0\x9e\xa7\xde\x2c\xee\x32\xd3\xb3\x33\x33\xba\x6b\
\x9e\x07\xc3\x83\x44\x85\x82\xfe\xe6\x08\x5f\x7e\x69\xa6\x3d\x0b\
\x11\x15\xd8\x5d\x00\xee\x35\x7c\x81\xbc\x53\xfd\x47\x4e\x8c\x8f\
\x63\x8d\xe8\xd7\x0d\xa3\x06\xf6\x44\x87\xd6\x4d\x50\xb5\x52\x05\
\xdb\xbf\x63\x66\xd9\xea\x0d\xe8\x7b\xc1\xe4\xe2\x2e\x93\x07\xc0\
\x9b\x9d\x99\xa1\x76\x1e\xf6\x7e\x95\xc9\x35\x42\x41\xff\x40\x00\
\x1f\x20\xfc\x19\x30\x44\x64\x4f\x01\x00\x57\x1b\xbe\xc0\xfe\x82\
\xfe\x02\xa7\xc7\xc7\xb1\xfc\x67\x0d\xc2\xb0\xbe\x5d\xd1\xba\x69\
\x03\x54\x28\x67\xbf\x27\x05\x1c\xc9\xc9\x41\xbd\x1e\xa6\x7c\x86\
\x67\xdd\xec\xcc\x8c\x0d\x5a\xe7\xc1\xf0\x20\x4b\x85\x82\xfe\x8b\
\x01\xbc\x0c\xc0\xd9\x17\x5b\x89\xdc\xe5\x67\x00\xe3\x0c\x5f\x20\
\xbb\x28\xbf\xd8\x4d\xf1\x11\x51\xba\x54\x49\x8c\x3f\x77\x18\x06\
\xf4\xec\x84\x66\x0d\xeb\xa0\x74\xa9\x92\xda\x23\x01\x00\x46\x5e\
\x76\x1b\x66\x2d\x58\x56\xdc\x65\x26\x66\x67\x66\x3c\xa3\x75\x0e\
\x0c\x0f\xb2\x5c\xfe\x0d\xa8\x37\x02\x78\x08\xfc\x1a\x24\xd2\x34\
\x17\xc0\x05\x86\x2f\xb0\xbc\xb8\x0b\xb9\x31\x3e\x8e\x55\xb7\x66\
\xfe\xa3\xdd\xbb\xb4\x43\x83\x3a\x35\xd4\x1e\xed\xfe\xde\x17\x3f\
\xe1\x86\xfb\x9e\x2f\xee\x32\xb3\xb3\x33\x33\x3a\xa9\x9c\x00\xf8\
\x4d\x9f\x14\x85\x82\xfe\x18\x84\xaf\x25\xdf\xa9\x3d\x0b\x51\x94\
\x59\x86\xf0\x8d\xa3\x73\xcd\x5c\xd4\xed\xf1\x71\xac\xf6\xad\x9a\
\xe0\xfc\x11\xfd\xd0\xad\x43\x2b\x4b\x1f\xed\xbe\x7e\xd3\xdf\xe8\
\x3a\xfa\x6a\x33\x96\xf2\x68\xdd\xe7\xc1\xf0\x20\x75\xa1\xa0\x3f\
\x0e\x40\x1a\x80\x62\x3f\x1d\x87\x88\x4e\x69\x25\xc2\x97\x54\x66\
\x4a\x1d\x20\x9a\xe2\xe3\x58\x03\x7a\x74\xc4\xe8\xc1\xbd\xd1\x29\
\xb1\x19\xce\x10\x7c\xb4\x7b\x28\x94\x8b\xda\xdd\xc6\x98\xb1\x54\
\xa3\xec\xcc\x8c\xd5\x96\xbe\x48\xf9\x18\x1e\x64\x1b\xf9\x01\x92\
\x0a\xe0\x36\xed\x59\x88\x5c\x66\x29\x80\x14\xc3\x17\xc8\xb4\xe2\
\x60\x09\x49\xc9\xa5\x00\x74\x03\x30\x0e\xc0\x28\x00\xe5\xb5\x5f\
\x00\xab\x9d\x33\xcc\x87\x33\xfb\x77\x47\x62\x8b\x46\xa8\x5c\xc1\
\xdc\x47\xbb\x5f\x7c\xd3\x83\xf8\xfe\xf7\x62\xff\x56\xde\x94\x9d\
\x99\xf1\xa8\xc6\x6b\xc3\xf0\x20\xdb\xc9\xbf\x04\x73\x33\x80\xa9\
\x00\x9c\xf5\x46\x7b\x22\x7b\x99\x03\x60\xbc\xe1\x0b\x64\x69\x0e\
\x91\x90\x94\x5c\x1a\x40\x2f\x00\x7e\x00\x23\x00\x94\xd6\x7e\x61\
\xac\xe4\xf1\x78\x70\xd9\x79\xc3\x31\xb8\x77\x67\xb4\x6c\x52\x0f\
\x65\x4b\x17\xef\xd1\xee\x5f\xfe\x3c\x1d\x57\xdc\x56\xec\x66\x58\
\x90\x9d\x99\x91\xa8\xf2\x7a\x68\x1c\x94\xa8\x20\xf2\x6f\x42\xbd\
\x1c\xc0\x13\xe0\x63\xd8\x89\x0a\xe3\x07\x84\xdf\x16\xab\xb2\x95\
\x7e\x3a\x09\x49\xc9\xe5\x00\xf4\x45\x38\x44\x86\x00\xb0\xc7\x5b\
\x46\x2c\x52\xad\x72\x05\xa4\x8c\x19\x82\xbe\xdd\x3a\xa0\x49\xfd\
\x5a\x28\x59\x22\xae\x50\xbf\xfe\xef\x7f\xfe\x45\xfb\xe1\x97\x9a\
\x31\x8a\x37\x3b\x33\x23\xaf\xf8\xcb\x14\x0e\xc3\x83\x1c\x21\x14\
\xf4\x9f\x09\xe0\x05\x00\x35\xb4\x67\x21\xb2\xb1\xd7\x01\x4c\x31\
\x7c\x81\xed\xda\x83\x14\x46\x42\x52\x72\x45\x00\x03\x00\x5c\x94\
\xff\x6f\x9d\xb7\x8c\x28\x69\xde\xa8\x2e\xc6\x8e\x1a\x80\x9e\x9d\
\xda\x14\xe8\xd1\xee\x79\x79\x79\xa8\xd9\x65\xb4\x19\x87\x6e\x96\
\x9d\x99\x51\xec\x77\x34\x15\x16\xc3\x83\x1c\x25\x14\xf4\xb7\x07\
\xf0\x2c\x80\xae\xda\xb3\x10\xd9\x44\x0e\xc2\xf7\x46\x3d\x6e\xf8\
\x02\x87\xb5\x87\x31\x43\x42\x52\x72\x15\x84\x77\x42\xfc\x00\x7c\
\x00\xd4\x3f\x51\xd5\x4a\x3d\x3a\xb5\xc1\x39\x43\xfb\xa0\xf3\x29\
\x1e\xed\x7e\xc3\xbd\xcf\xe1\xbd\x2f\x7f\x2e\xee\xa1\xee\xc8\xce\
\xcc\xb8\xcf\xea\xf3\x63\x78\x90\x23\x85\x82\xfe\x6a\x00\xee\x05\
\x70\x99\xf6\x2c\x44\x4a\xd6\x03\x98\x04\xe0\x73\xc3\x17\xd0\x9e\
\x45\x54\x42\x52\xf2\x19\x00\x86\x21\xbc\x23\xd2\x03\x51\xf6\xb3\
\xeb\xcc\xfe\xdd\x31\x6a\x60\x4f\xb4\x6f\x15\x79\xb4\x3b\x10\x9c\
\x31\x0f\x63\x27\x4f\x2d\xee\xd2\xcb\xb2\x33\x33\x9a\x5b\x7d\x3e\
\x51\xf5\x9b\x47\xee\x13\x0a\xfa\x0d\x00\x17\x03\x78\x10\x40\x65\
\xed\x79\x88\x2c\xf0\x19\xc2\x97\x53\x56\x68\x0f\xa2\x25\x21\x29\
\xb9\x16\xc2\x1f\x40\xe9\x07\xd0\x59\x7b\x1e\xab\x5d\x34\x7a\x30\
\x86\xfa\xba\xe0\xdc\x09\x77\x9b\xb1\x9c\x91\x9d\x99\x91\x6b\xe5\
\xfc\x0c\x0f\x72\x8d\x50\xd0\x9f\x88\xf0\xd3\x50\x07\x69\xcf\x42\
\x64\xb2\x3d\x08\x3f\x6c\xef\x45\xb7\x5c\x4e\x31\x4b\x42\x52\x32\
\x00\xd4\x47\xf8\x6d\xbb\xe3\x00\xb4\xd3\x9e\xc9\x61\x5a\x67\x67\
\x66\x2c\xb2\xf2\x80\x0c\x0f\x72\x9d\x50\xd0\x5f\x0a\xe1\x77\xc3\
\xdc\x0d\x7e\x28\x1d\x39\xdb\xb7\x00\x6e\x33\x7c\x81\xf9\xda\x83\
\x38\x45\x7e\x88\x34\x06\x30\x1a\xc0\x85\x00\x5a\x6a\xcf\x64\x73\
\xf7\x66\x67\x66\x58\xfa\xf4\x68\x86\x07\xb9\x5a\x28\xe8\x6f\x8e\
\x70\x80\x9c\xa3\x3d\x0b\x51\x01\x6d\x41\xf8\x66\xd1\x80\xe1\x0b\
\x1c\xd1\x1e\xc6\xe9\x12\x92\x92\x3d\x00\x9a\x03\x38\x1b\xc0\x58\
\x84\xa3\x84\xfe\xdf\x9a\xec\xcc\x8c\x86\x56\x1e\x90\xe1\x41\x51\
\x21\x14\xf4\x7b\x11\x7e\x70\xd1\x3d\x00\x54\x1e\x9a\x43\x74\x0a\
\x39\x00\x9e\x07\xf0\xa8\xe1\x0b\x6c\xd2\x1e\xc6\xcd\x12\x92\x92\
\xbd\x00\x5a\x03\x38\x17\xc0\xf9\x00\xea\x69\xcf\x64\x03\x31\xd9\
\x99\x19\x21\xab\x0e\xc6\xf0\xa0\xa8\x13\x0a\xfa\xcb\x20\x7c\x77\
\xfc\x2d\x00\x6a\x69\xcf\x43\x51\xed\x13\x00\xf7\x9b\xfd\x61\x6d\
\x54\x70\x09\x49\xc9\x06\xc2\xf7\x85\x9c\x0f\xe0\x3c\x44\xe7\xb3\
\x82\x3a\x64\x67\x66\x58\xf6\x35\xc8\xf0\xa0\xa8\x16\x0a\xfa\xab\
\x20\xfc\x96\xdc\xeb\x00\x54\xd5\x9e\x87\xa2\xc2\x77\x08\xbf\x0b\
\xeb\x77\xc3\x17\xb0\xfc\xa9\x91\x74\x6a\x09\x49\xc9\xb1\x00\x3a\
\x01\xb8\x00\xe1\xcb\x33\xd5\xb4\x67\xb2\xc0\x23\xd9\x99\x19\x37\
\x5b\x75\x30\x86\x07\x51\xbe\xfc\x67\x83\x5c\x02\x60\x22\x80\x04\
\xed\x79\xc8\x55\xbe\x06\xf0\x28\x80\xdf\x18\x1b\xce\x92\x90\x94\
\x5c\x02\xe1\x07\x16\x5e\x08\xe0\x2c\x00\x15\xb5\x67\x12\xb0\x31\
\x3b\x33\xa3\x8e\x55\x07\x63\x78\x10\x9d\x40\x28\xe8\xaf\x80\xf0\
\x0d\xa9\x93\x00\xb4\xd0\x9e\x87\x1c\xe7\x30\x80\xf7\x11\x7e\xca\
\xee\x6c\xb7\x3f\xe0\x2b\x9a\x24\x24\x25\xc7\x23\xfc\x10\xb3\x71\
\x00\x46\x02\x28\xab\x3d\x93\x49\x62\xb3\x33\x33\x8e\x5a\x71\x20\
\x86\x07\xd1\x69\x84\x82\xfe\x58\x00\xfd\x00\x5c\x8d\xf0\xd3\x13\
\xf9\x89\xb9\x74\x22\x1b\x00\xbc\x82\xf0\xbb\x51\x36\x68\x0f\x43\
\xd6\x48\x48\x4a\x2e\x03\xa0\x0f\xc2\x0f\x33\x1b\x06\xa0\x78\x1f\
\x3d\xab\xa7\x4b\x76\x66\xc6\x4c\x2b\x0e\xc4\xf0\x20\x2a\xa4\x50\
\xd0\xdf\x00\xe1\xeb\xbf\x97\x20\xfc\xe0\x22\x8a\x4e\x39\x00\xbe\
\x01\xf0\x32\x80\x5f\x0c\x5f\xe0\x90\xf6\x40\xa4\x2f\x21\x29\xb9\
\x3c\xc2\x7f\x51\xb9\x08\xe1\x87\x19\x96\xd0\x9e\xa9\x80\x9e\xce\
\xce\xcc\x98\x64\xc5\x81\x18\x1e\x44\xc5\x90\xbf\x1b\x92\x84\xf0\
\xb6\xeb\x18\xf0\xb1\xed\x6e\x37\x13\xc0\x9b\x08\x7f\x3e\x4a\xb6\
\xf6\x30\x64\x7f\x09\x49\xc9\x95\x10\x0e\x10\x3f\x80\xfe\x00\x62\
\x8a\xb7\xa2\x98\xbf\xb3\x33\x33\x2c\xb9\xb7\x8d\xe1\x41\x64\xa2\
\xfc\xa7\xa6\x76\x45\xf8\x6d\x79\x23\x11\x1d\x77\xc4\xbb\x55\x2e\
\xc2\xa1\xf1\x2e\x80\x2f\x01\xac\xe7\xbd\x1a\x54\x5c\x09\x49\xc9\
\xd5\x10\xfe\xe4\xdd\x8b\x00\xf4\x86\xbd\x2e\xdd\x96\xc8\xce\xcc\
\x10\x7f\x68\x1d\xc3\x83\x48\x50\xfe\x8e\x48\x6b\x84\x3f\xd0\x2a\
\x39\xff\xff\xcd\x3f\x77\xf6\xb4\x0b\xc0\x8f\x00\x3e\x06\xf0\xab\
\xe1\x0b\x6c\xd3\x1e\x88\xdc\x2f\x21\x29\xb9\x06\x80\xe1\x08\xef\
\x88\x74\x83\xee\xf7\x87\x5e\xd9\x99\x19\x7f\x48\x1f\x84\xdf\x00\
\x89\x2c\x96\xff\xec\x90\xae\x08\x7f\xb3\x19\x00\xde\x27\xa2\xe1\
\x20\x80\xbf\x00\x7c\x85\x70\x6c\x2c\x33\x7c\x81\x1c\xed\xa1\x88\
\x12\x92\x92\xeb\x20\xbc\x5b\xea\x07\xd0\xd1\xe2\xc3\xbf\x94\x9d\
\x99\x71\xa5\xf4\x41\x18\x1e\x44\xca\x42\x41\x3f\x00\x54\x41\xf8\
\xe9\x89\xfd\x00\xf4\x45\x78\x67\xa4\xa4\xf6\x6c\x2e\xb1\x05\xc0\
\x34\x84\x03\x63\x1a\x80\x55\xfc\x0c\x14\x72\x82\xfc\x0f\xbc\x6b\
\x80\xf0\xf3\x43\xc6\x01\x68\x23\x7c\xc8\xed\xd9\x99\x19\xe2\x0f\
\x52\x64\x78\x10\xd9\x54\x28\xe8\x8f\x41\xf8\x91\xee\x89\x00\xba\
\x23\xbc\x4b\xd2\x0a\xfc\xc4\xdd\x13\x39\x0a\x60\x3d\x80\x59\x08\
\xc7\x45\x26\x80\xe5\x00\x76\xf3\xbe\x0c\x72\x8b\xfc\x0f\xbc\x6b\
\x82\xf0\x8d\xec\x17\x02\x68\x66\xf6\x31\xb2\x33\x33\xc4\xbb\x80\
\xe1\x41\xe4\x30\xf9\x3b\x24\x65\x00\xd4\x46\xf8\x53\x37\xdb\x22\
\x1c\x27\xcd\x11\x0e\x95\x52\xda\x33\x0a\xc8\x05\xb0\x03\xc0\x6a\
\x00\x0b\x01\xcc\xcf\xff\xf7\x2a\x00\xff\x18\xbe\x80\x25\x0f\x3e\
\x22\xb2\x93\xfc\x10\x69\x89\xf0\xc3\x0e\x2f\x00\x50\xec\x4f\x99\
\x65\x78\x10\x51\xa1\xe5\x87\x49\x49\x84\x1f\xed\x9c\x00\xa0\x0e\
\xc2\xf7\x91\xd4\x07\x50\x17\xe1\x38\xa9\x8e\xf0\xce\x49\x29\xe8\
\xdd\x55\x7f\x04\xc0\x5e\x84\x83\x22\x1b\xe1\x07\x70\xad\x03\xb0\
\x26\xff\xdf\x9b\x01\x6c\x03\xb0\xcf\xf0\x05\x2c\xfb\xe4\x4c\x22\
\xa7\xca\xff\xc0\xbb\x36\x08\xbf\xab\xee\x7c\x84\xff\x72\x52\x28\
\x0c\x0f\x22\x12\x97\x1f\x2a\x06\x80\x58\x84\x1f\x76\x54\x12\xe1\
\x20\x89\xcf\xff\x77\xc9\xfc\x7f\xe2\xf2\xff\x89\x41\x38\x56\x22\
\xdf\x3f\x72\x01\x84\x10\x7e\xa0\xd6\x11\x84\x1f\x17\x7e\x08\xe1\
\x1b\x38\x8f\xfd\xe7\x50\xfe\xff\x7e\x94\x9f\x57\x42\x24\x2f\x21\
\x29\x39\x06\x40\x07\x84\x23\xe4\x5c\x00\x67\x9c\xee\xd7\x30\x3c\
\x88\x88\x88\xc8\x14\x09\x49\xc9\x71\x08\x3f\xf0\x70\x2c\xc2\xf7\
\x89\x54\x39\xfe\xbf\xb1\x22\x3c\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\
\x88\x0a\xe5\xff\x00\x8a\xce\x3f\x75\x3e\x88\x2f\x2f\x00\x00\x00\
\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\
\x00\x32\x30\x31\x37\x2d\x31\x31\x2d\x31\x32\x54\x31\x31\x3a\x32\
\x38\x3a\x31\x37\x2b\x30\x38\x3a\x30\x30\x6a\xb8\xe3\x88\x00\x00\
\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\
\x79\x00\x32\x30\x31\x37\x2d\x30\x34\x2d\x32\x31\x54\x30\x30\x3a\
\x33\x33\x3a\x30\x38\x2b\x30\x38\x3a\x30\x30\x79\x4f\x6e\x0d\x00\
\x00\x00\x4d\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\
\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x20\x37\x2e\x30\x2e\
\x31\x2d\x36\x20\x51\x31\x36\x20\x78\x38\x36\x5f\x36\x34\x20\x32\
\x30\x31\x36\x2d\x30\x39\x2d\x31\x37\x20\x68\x74\x74\x70\x3a\x2f\
\x2f\x77\x77\x77\x2e\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\
\x2e\x6f\x72\x67\xdd\xd9\xa5\x4e\x00\x00\x00\x63\x74\x45\x58\x74\
\x73\x76\x67\x3a\x63\x6f\x6d\x6d\x65\x6e\x74\x00\x20\x47\x65\x6e\
\x65\x72\x61\x74\x6f\x72\x3a\x20\x41\x64\x6f\x62\x65\x20\x49\x6c\
\x6c\x75\x73\x74\x72\x61\x74\x6f\x72\x20\x31\x39\x2e\x30\x2e\x30\
\x2c\x20\x53\x56\x47\x20\x45\x78\x70\x6f\x72\x74\x20\x50\x6c\x75\
\x67\x2d\x49\x6e\x20\x2e\x20\x53\x56\x47\x20\x56\x65\x72\x73\x69\
\x6f\x6e\x3a\x20\x36\x2e\x30\x30\x20\x42\x75\x69\x6c\x64\x20\x30\
\x29\x20\x20\xce\x48\x90\x0b\x00\x00\x00\x18\x74\x45\x58\x74\x54\
\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\
\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\x00\x18\x74\
\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\
\x3a\x48\x65\x69\x67\x68\x74\x00\x35\x34\x32\xf2\xfa\xa7\xc4\x00\
\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\
\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\x35\x34\x32\x61\x0b\
\xf7\x99\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\
\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\x65\x2f\
\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\x74\x54\
\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x34\x39\x32\
\x37\x30\x35\x39\x38\x38\x47\x21\xa4\xd8\x00\x00\x00\x10\x74\x45\
\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\x35\x31\
\x4b\x42\x53\x53\x5e\x2e\x00\x00\x00\x5f\x74\x45\x58\x74\x54\x68\
\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\
\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\
\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\
\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\
\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\x31\x32\x30\x38\
\x31\x2f\x31\x32\x30\x38\x31\x35\x36\x2e\x70\x6e\x67\x4c\xc7\x8f\
\x71\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x09\x42\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x1c\
\x50\x4c\x54\x45\xff\xff\xff\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\
\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\
\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\
\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\
\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\
\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\
\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\
\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\
\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\
\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\
\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\
\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\
\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\
\xff\xb2\xbe\xff\xb5\xc0\xff\xb2\xbe\xff\xb2\xbe\xff\xba\xc5\xff\
\xb2\xbe\xff\xc0\xc9\xff\xb2\xbe\xff\xb4\xc0\xff\xc1\xcb\xff\xc0\
\xca\xff\xba\xc5\xff\xbf\xc9\xff\xb2\xbe\xff\xc0\xca\xff\xc0\xca\
\xff\xb8\xc3\xff\xbf\xc9\xff\xc0\xca\xff\xbf\xc9\xff\xbd\xc7\xff\
\xc1\xca\xff\xc1\xca\xff\xc0\xca\xff\xc1\xcb\xff\xc1\xcb\xff\xb2\
\xbe\xff\xc0\xca\xff\xc0\xca\xff\xc0\xca\xff\xb2\xbe\xff\xbf\xc9\
\xff\xc1\xcb\xff\xc0\xca\xff\xb2\xbe\xff\xc0\xca\xff\xc1\xca\xff\
\xb2\xbe\xff\xc1\xcb\xff\xc0\xca\xff\xc0\xca\xff\xc1\xcb\xff\xc0\
\xc9\xff\xc1\xcb\xff\xbe\xc8\xff\xc1\xca\xff\xb4\xc0\xff\xc0\xca\
\xff\xc0\xca\xff\xc1\xcb\xff\xc0\xca\xff\xbf\xc9\xff\xc0\xc9\xff\
\xbf\xc9\xff\xc1\xca\xff\xc0\xca\xff\xbf\xc9\xff\xc1\xcb\xff\xbf\
\xc9\xff\xc5\xce\xff\xc0\xca\xff\xc1\xcb\xff\xbf\xc9\xff\xc0\xc9\
\xff\xc0\xca\xff\xc0\xc9\xff\xc0\xca\xff\xbe\xc8\xff\xc0\xca\xff\
\xc0\xca\xff\xc0\xc9\xff\xc0\xca\xff\xc1\xcb\xff\xc0\xca\xff\xc0\
\xca\xff\xc0\xca\xff\xbf\xc9\xff\xc1\xca\xff\xbd\xc7\xff\xbf\xc9\
\xff\xc1\xca\xff\xc1\xca\xff\xc0\xc9\xff\xc0\xca\xff\xc0\xca\xff\
\xc0\xca\xff\xc0\xca\xff\xbf\xc9\xff\xc0\xca\xff\xb2\xbe\xff\xb7\
\xc2\xff\xbd\xc7\xff\xc1\xcb\xff\xb9\xc4\xff\xc0\xca\xff\xb3\xbf\
\xff\xba\xc5\xff\xb5\xc1\xff\xbc\xc6\xff\xb7\xc3\xff\xbe\xc8\xff\
\xb4\xc0\xff\xb8\xc3\xff\xb6\xc2\xff\xb6\xc1\xff\xbb\xc6\xff\xb4\
\xbf\xff\xbb\xc5\xff\xbf\xc9\xff\xb5\xc0\xff\xba\xc4\xff\xff\xff\
\x50\x22\x31\xef\x00\x00\x00\x9d\x74\x52\x4e\x53\x00\x00\x24\x63\
\x84\x99\xb4\xcc\xe4\x4b\xa2\xe7\x15\xea\xf0\xed\xf9\x12\x93\xf6\
\xab\x6c\x36\x03\xa5\x1e\x21\x4e\x7b\xa8\xf3\x69\xfc\x57\x0c\x09\
\x1b\xc0\x9f\x39\x66\xc3\x96\x33\x06\x48\x3c\x42\xe1\xde\x75\x18\
\x5a\xd5\xdb\x45\x3f\xbd\x8a\x0f\x2d\x27\xcf\x30\xc9\x7e\xba\x72\
\xb7\x1c\x78\x87\x7f\x54\xd3\xb1\xd9\xfd\x16\x9a\x62\x60\x69\x91\
\x78\x34\xb6\xa2\x0e\xd9\xe4\xa5\xe9\xf3\xae\x79\x38\xb9\x5d\x45\
\xf8\x0b\xd2\xbf\xd7\x81\xee\xa8\x88\xe6\x49\xf5\x1f\xc1\x3e\xc4\
\x7f\xf0\x9a\x52\x3f\x1d\xdf\xae\x42\xfa\x56\x04\xbc\xe1\x2a\x4f\
\xa2\x66\x94\x19\xc9\x9f\x81\x9d\xeb\x75\x8b\x59\x23\xcc\x07\x4c\
\xcf\xd4\x72\xb1\x5f\x97\xb4\x2e\x6f\x03\x96\xf9\xc0\x00\x00\x00\
\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x07\x74\x49\
\x4d\x45\x07\xdd\x09\x09\x15\x2b\x1d\x1d\xf7\x78\x81\x00\x00\x03\
\xf2\x49\x44\x41\x54\x58\xc3\xed\x96\x67\x57\x13\x41\x14\x86\x2f\
\x31\x09\x08\x86\x22\x4a\x2c\x28\x49\x50\x11\x8c\x20\xf6\x82\x62\
\xef\x89\x58\xd0\x48\x88\x01\x01\x4b\x14\x01\x05\x89\x25\x09\x6a\
\xb0\x60\xc3\x82\x7d\xe0\x42\x40\x01\xb1\xfe\x42\x67\x76\xb3\x61\
\x37\x65\x8b\xdf\x3c\xc7\xf7\x9c\xec\x6e\x66\xf7\x79\xf7\xce\xdc\
\x3b\x33\x0b\xf0\x5f\x09\x4a\x13\xa4\x9b\xa1\x37\x18\xd3\x33\x48\
\x46\xba\xd1\xa0\x9f\xa1\x13\x9a\x55\x1a\xcc\xcc\xcc\x22\x52\x65\
\x65\xce\x54\x6d\x30\x4b\x6f\x8a\x52\xd9\x39\xec\x98\x1b\xfd\x67\
\xd2\xcf\x52\x63\x90\x37\x3b\x9f\x3d\x9d\x3f\x67\x6e\x81\x39\x6d\
\x1e\xbb\x9c\xbf\x60\x61\xe1\xa2\xc5\x5c\xe3\xec\x3c\x25\xde\x5c\
\xc4\x5e\x6a\x31\x5a\x6d\x5c\xc0\xbc\x01\xbb\x2a\xb6\x1a\xb9\x98\
\x8a\xcc\xb2\xfc\x92\xa5\x5c\xb0\xcb\x18\x52\xb2\xdc\x50\x9a\xcd\
\xfe\xa5\x97\x2d\x5f\x61\x67\x0d\xdc\xbd\xa5\x4b\x64\xf8\x95\xd9\
\xd1\xee\x96\x57\x94\x99\x24\x63\x98\x63\x28\x4f\x33\x46\x07\x66\
\x65\x4a\xbe\xc8\x42\xc8\xaa\x52\x92\x42\x19\xec\x60\xa9\xa4\xbf\
\xa2\x14\xfc\x6a\x16\xe0\x1a\x5d\x2e\x91\x51\x59\x1e\xeb\xe4\xea\
\xa4\xfc\x5a\x7a\xc7\x60\x4f\xb3\xad\x93\x33\xd0\x81\x7d\x19\x3d\
\xad\x4d\xc2\x17\xd0\x37\x17\x02\xe8\x64\x79\xb2\x5e\x07\x50\x48\
\xf3\x59\x90\xc0\xeb\xe8\xa0\x95\x01\x6c\xc8\x21\xf2\xca\xd9\x08\
\xa0\xa7\x45\xa5\x8b\xe3\x59\xe0\x9b\xcc\x50\x91\x4b\x94\x94\x5b\
\x01\x40\x7b\xb1\xce\x26\x35\xd8\x4c\xab\x7d\x0b\x54\x65\x2b\xf2\
\x34\x8d\x5b\xa1\x78\x1b\x21\x9b\x25\x7c\x35\x4d\x20\xd9\xbe\x30\
\x43\x05\x4f\xc7\x61\xc1\x0e\x5a\xd8\x96\x6a\xb1\xc1\x4e\x55\xa4\
\x54\x3b\x45\x7c\xc9\x5f\xf0\x84\x94\x4c\x1b\xd0\x22\x55\x1a\xfd\
\x24\x32\x4e\x4f\x21\x0b\x31\xd9\x76\xa9\x19\xc0\x98\x76\x57\x9b\
\x88\x65\x8f\x60\xb0\x97\x90\x7d\x60\x56\x37\x82\xbc\x4c\x76\xd8\
\x47\xc8\x7e\xc1\x20\x9d\x90\x2a\xd8\xa0\x29\xfc\x03\x50\x45\x06\
\x0f\x46\xf9\x3c\x0b\xa9\x04\xc8\xd4\x64\x70\x08\xe0\xf0\x90\xc3\
\xc9\x1b\x58\xe9\x24\x82\xe2\x7c\x4d\x06\xf9\xc5\x70\x04\xb1\x86\
\x37\xa0\xa5\x7d\x14\xca\xb5\x65\x80\xe6\xf0\x18\xe2\x71\xde\x60\
\x0e\x21\xd5\xb0\x4b\xa3\xc1\x09\xa8\x45\x3c\xc9\x1b\xd0\x79\xb4\
\x05\x0c\xda\xf8\xe1\x53\xe0\x42\x3c\xcd\x1b\xd0\x8c\x1a\x0c\x95\
\xda\xf8\x91\x3a\xb7\xdb\x81\xf5\xbc\x81\xf2\x14\x8e\x53\x64\x14\
\x79\x79\x78\x03\xb5\x9c\x25\x7a\x1e\xfb\x8c\x82\xfe\x2a\x82\x2f\
\xe3\x31\xde\x23\x8c\x81\x06\x4d\x8c\x8e\xc4\x78\x61\x0c\x68\x16\
\x6c\x6a\xb3\x30\x29\xbc\xde\x2d\xca\xc2\x19\x56\x07\x73\xd5\xe0\
\x5f\xa7\x7b\xef\x85\x06\xc4\xc6\x58\x25\x9e\x55\x53\x89\x53\xdf\
\x44\xd1\x37\x89\x2a\xd1\xca\x16\x74\xc5\xb9\x30\x28\xc6\xb1\xb9\
\x05\xdc\xb1\xb9\x40\x67\xe3\x39\x80\x43\x72\xf4\xf7\xc9\x21\x94\
\xe8\x3c\x40\x1d\x0a\xb3\x11\xb6\xb1\x2d\xcb\x9a\x92\x8e\x0c\xfe\
\xf8\x89\x71\xaa\x81\x26\xc4\x0b\xc2\x82\x42\xf7\xaa\x8b\x60\xcf\
\x4a\x41\x8f\x8e\x63\x82\x7c\x2d\x70\x09\xf1\xb2\x68\x4d\xcc\xb2\
\xdb\x12\x97\xf6\xc8\xd4\xf0\xe7\x9f\x98\x4c\xad\x57\x5c\x6d\xe8\
\x68\x8f\xad\xaa\xbb\x09\xc9\x94\x2e\xcb\x91\xb1\xc9\xd1\xa1\xe4\
\x30\xaf\xd3\x88\x1d\xd3\xcb\xfa\xd5\x89\x48\x84\x51\x91\x89\x5f\
\x53\x83\x93\xbf\xbf\x0d\x8d\x8f\xa0\xb2\x9a\x44\x3b\xcb\x35\x15\
\xcf\xc7\xeb\x9a\x78\x6b\x6b\x70\xb0\xa6\xc6\x7a\x55\x64\x7d\x67\
\x17\x3d\x3a\x1a\x24\xbb\xeb\x75\xda\xd4\x0d\xb5\x1e\x15\x7c\xb3\
\x1f\x6e\xb4\x21\x5e\x97\x6e\xef\xae\x9b\x88\xb7\x00\x6e\x37\x2b\
\xf2\x81\x20\x84\x7a\x10\xef\xb8\xe2\xbe\x30\xee\xfa\xb8\xbc\xde\
\x53\x72\x68\x0e\x02\x84\x69\x21\xdc\x4d\xf8\xc6\xf1\x07\x10\x3b\
\xe9\x49\x7e\x1c\x5a\xfd\x00\x97\x69\x18\x7e\x48\x54\x2f\xbd\x7f\
\x1f\xe0\xc1\x43\x19\xde\xe7\x84\xd0\x23\x7a\xee\x85\x64\xea\x63\
\x89\x70\x85\x2e\xc8\x45\xd0\xeb\x64\xfe\x7d\x90\x5c\x5e\x9a\xcc\
\xba\xc7\xa9\x58\x2e\xd3\x4f\x5a\xe9\xc5\x53\x48\xa5\xa0\x90\xc6\
\x67\xdd\x97\xba\x24\x74\x5b\xe3\xf3\xfe\xe8\x4d\x4f\x10\x52\xab\
\xff\x05\xf7\xcc\x9d\x97\xf4\xfa\x95\xd7\xfd\x9a\x63\x06\xdc\x6f\
\xfc\xac\xa1\x93\xbb\xf7\xa2\x1f\xe4\x14\xf2\x32\x26\xd0\x53\xc3\
\xa7\xf9\x2d\x43\x38\xa2\xe5\x5d\x0f\xeb\x83\xc7\x1b\x02\x05\x39\
\xc3\x01\x2e\xdf\x8d\x5e\xbf\x60\xd0\xde\xdd\xf7\x96\x8b\x25\x10\
\x76\x2a\xe1\x4c\xed\xef\x7d\x42\xd6\xb8\x81\x10\x6a\xcb\xf7\xbe\
\x5d\x0d\xce\x75\x24\xf8\xc1\x27\x4d\x01\xfa\x3e\x04\x15\x83\x97\
\xea\xe3\xa7\x70\xc7\x00\x8b\xa0\x6b\xa0\x23\xfc\xe6\xa3\x36\xf8\
\x9f\xd2\x1f\xf1\x22\xab\xf9\x01\xb9\x69\xf9\x00\x00\x00\x25\x74\
\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\
\x30\x31\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\x31\x3a\x34\x39\x3a\
\x30\x35\x2b\x30\x38\x3a\x30\x30\xab\x22\x39\xeb\x00\x00\x00\x25\
\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\
\x32\x30\x31\x33\x2d\x30\x39\x2d\x30\x39\x54\x32\x31\x3a\x34\x33\
\x3a\x32\x39\x2b\x30\x38\x3a\x30\x30\x44\x7b\x66\xd8\x00\x00\x00\
\x43\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x2f\x75\
\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\x61\x67\x65\x6d\x61\
\x67\x69\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\x64\x6f\x63\x2f\x49\
\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\x37\x2f\x2f\x69\x6e\
\x64\x65\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\x0a\x00\x00\x00\x18\
\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\
\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\
\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\
\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x36\x34\xbc\
\xe0\xa9\x84\x00\x00\x00\x16\x74\x45\x58\x74\x54\x68\x75\x6d\x62\
\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\x36\
\x34\x44\x4f\x69\x09\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\
\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\
\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\
\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\
\x33\x37\x38\x37\x33\x34\x32\x30\x39\xde\x2d\xcc\xa7\x00\x00\x00\
\x11\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\
\x00\x32\x32\x32\x38\x42\xb8\x30\x20\xfd\x00\x00\x00\x5f\x74\x45\
\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\
\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\
\x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\
\x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\
\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\
\x31\x31\x32\x36\x30\x2f\x31\x31\x32\x36\x30\x33\x39\x2e\x70\x6e\
\x67\xf9\xb1\xf8\xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
\x82\
\x00\x00\x22\xab\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x02\x00\x00\x00\x02\x00\x08\x03\x00\x00\x00\xc3\xa6\x24\xc8\
\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\
\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\
\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\
\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\
\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x00\x50\x4c\x54\
\x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x0b\x23\xb7\xe1\x00\x00\x00\xff\x74\x52\x4e\x53\x00\x01\x02\
\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10\x11\x12\
\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20\x21\x22\
\x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30\x31\x32\
\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40\x41\x42\
\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\
\x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60\x61\x62\
\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\
\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80\x81\x82\
\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\
\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\
\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\
\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\
\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\
\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0\xe1\xe2\
\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\
\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xeb\x08\xd9\x35\
\x00\x00\x1e\x12\x49\x44\x41\x54\x18\x19\xed\xc1\x07\x80\x54\xd5\
\xdd\xf0\xe1\xdf\x9c\x9d\xa5\xf7\x3a\xcb\x2e\x36\x44\xec\x58\x51\
\x51\xb1\x12\x35\xa0\x18\x8c\xe5\xc3\x68\x30\xb1\x25\xd6\xa8\x49\
\x30\xc6\x86\xc6\xf2\x2d\xc6\x1a\x7b\x50\xd3\x6c\xb1\x80\x05\xc4\
\x9e\x04\x14\x1b\x8a\x0a\x58\x40\xc0\x65\x29\x2a\xbd\xec\x2e\xbb\
\xfb\xff\xde\x37\x9f\x26\x20\xbb\x67\xee\xb9\xe7\xde\x99\x3b\xe3\
\xff\x79\x40\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\
\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\
\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x54\x01\x48\x91\x17\x5b\x6f\xdb\
\xfb\xb3\x49\x8d\xa8\xef\xa6\xb6\x37\x36\x88\xc8\xbc\x1f\xa3\xbe\
\x93\x7a\xce\x92\x7f\x6b\x38\x1a\xf5\x1d\xd4\xe9\x5d\xf9\xda\xda\
\x6d\x50\x79\x96\x22\xd7\xda\x3c\x3f\x90\x6f\x3c\x7c\x02\xb9\xb4\
\xc5\xa0\x5e\xbd\xba\x19\x6c\x64\x79\x75\xf5\xd4\x0f\x70\xd7\xe6\
\x90\x3e\x65\x99\x96\x04\xd4\xf8\x65\xf5\x82\x57\xe7\xe3\xae\xfb\
\x21\xbd\xcb\x7a\xa4\xb1\x91\x55\x0b\xab\xa7\xbf\x2e\x24\x54\x8b\
\xe7\xe4\xbf\x1a\x77\x26\x67\x3a\xff\xe6\x1d\x09\xe8\xe3\xeb\x7a\
\xe3\x66\xf8\x13\x6b\xc5\xd9\x9b\xbf\xee\x80\x93\x96\x3f\x7f\xb5\
\x41\x82\xa9\xbe\x63\x57\x12\xa9\xe4\x51\xd9\xd0\x93\xe4\x48\xeb\
\x51\xcb\xc4\xc1\xba\xeb\x3b\x11\xdc\xa0\xa9\x12\xce\x17\xe7\x96\
\x12\x58\x6a\xc4\x5c\x71\xd0\xf8\x60\x1f\x12\xe8\x5e\xd9\xd8\x9e\
\xe4\x44\xdf\x8f\xc4\xd1\xc2\xbd\x09\x28\x7d\xab\x84\xf7\xee\x66\
\x04\xd4\x71\x82\x38\xaa\x39\x99\xc4\x19\x23\xdf\xf2\x1c\xb9\x70\
\xf0\x52\x71\x56\xf3\x23\x02\xe9\xfc\xbc\xf8\x58\xbc\x2f\x81\xf4\
\x9d\x29\xee\xae\x4d\x91\x2c\x97\xc8\x26\xf6\x27\x7e\xfb\xd4\x48\
\x18\x23\x08\xa0\xd5\x54\xf1\xb3\x76\x57\x02\x28\xaf\x96\x30\xae\
\x27\x51\x4e\x91\x4d\xbd\x4a\xec\x36\x5f\x2c\xa1\xac\x1b\x40\x76\
\x7f\x11\x5f\xf3\x7a\x90\x55\xeb\x37\x25\x9c\x91\x24\xc8\xfe\xb5\
\xd2\x84\xc1\xc4\x2c\x35\x55\x42\xaa\x6a\x47\x36\x3f\x13\x7f\x93\
\xc8\xea\x2e\x09\xa9\x76\x3b\x12\x63\xab\x2f\xa4\x29\x53\x89\xd9\
\x71\x12\xda\x15\x64\xd1\x7e\x89\x44\x60\x08\x59\xec\xdc\x20\x61\
\x3d\x4e\x52\x74\xf8\x50\x9a\x76\x24\xb1\x4a\x7f\x22\xa1\xad\xea\
\x89\xdd\x68\x89\xc2\x87\x25\xd8\x3d\x27\xe1\xed\x4d\x32\x94\x3c\
\x2b\xcd\x78\x37\x45\x9c\x8e\x10\x0f\xa3\xb0\x4a\x7f\x29\x91\x38\
\x1c\xab\x7e\xe2\xe1\x01\xac\x0c\x39\x72\xd5\x11\x34\xa3\xff\xb1\
\xc4\x69\x18\x1e\x86\x63\x35\xa8\x2b\x91\x18\x8e\xd5\x30\x3c\x0c\
\x2d\x21\x09\xf6\xaa\x97\x66\xcd\x2c\x21\x3e\xa9\x6a\xf1\xd1\x1b\
\x9b\xdb\x24\x1a\x8b\x0d\x36\x93\xc5\xc7\x01\xd8\x18\x72\xa2\xd5\
\x7d\x25\x34\x6b\xdb\x13\x89\x4f\xcf\x32\x7c\xec\x86\xcd\xee\x44\
\xa3\x47\x05\x36\xbb\xe1\xa3\x3f\x36\x86\x9c\x18\xbd\x1d\x16\x97\
\x97\x12\x9b\x0a\xbc\x54\x60\x53\x41\x44\xca\xb0\xe8\xda\x0a\x1f\
\xbd\xb0\x31\xe4\xc2\x3e\x17\x62\xb3\xd5\x29\xc4\xa6\x1c\x2f\x15\
\x58\x94\x94\x11\x91\x32\x2c\x2a\xf0\x52\x86\x8d\x21\x07\x5a\xdd\
\x67\xb0\xba\xb4\x25\x71\xe9\x84\x97\x52\x2c\x8c\x21\x22\xa5\x58\
\x94\xe2\xa5\x03\x36\x86\x1c\xb8\xba\x1f\x76\x15\x67\x12\x97\x14\
\x5e\xaa\xb0\x58\xbf\x84\x88\x2c\xc4\xa2\x0a\x2f\x29\x6c\x0c\xf1\
\xdb\xfa\x5c\xb2\xb9\xb8\x0d\xc9\x54\x85\x4d\x15\x11\xa9\xc6\x62\
\xf1\x7a\xe2\x63\x88\xdf\xd5\xa5\x64\xd3\xf3\x1c\x92\xe9\x7d\x6c\
\xde\x27\x1a\x2b\x3f\xc7\x42\x66\x10\x1f\x43\xec\x76\x3f\x8e\xec\
\x7e\xd5\x81\x24\x9a\xf5\x11\x36\x4f\x12\x8d\x67\xd7\x63\x33\x9e\
\xf8\x18\x62\x77\x7d\x8a\xec\xba\xfc\x82\x24\x7a\x1c\xab\x49\x6b\
\x88\xc4\xe3\x58\x8d\x23\x3e\x86\xb8\x0d\x3e\x84\x20\x2e\xe8\x42\
\xf2\xd4\xdf\x87\xd5\xba\xbf\x10\x85\xea\xa7\xb1\x7a\x7b\x1a\xb1\
\x31\xc4\x2c\x75\x1d\x81\x74\xf8\x15\xc9\x73\xef\xa7\xd8\x8d\x5e\
\x4b\x04\x2e\x5f\x87\xdd\xaf\x28\x5c\x27\x48\x40\x6b\x7a\x12\x87\
\x91\x12\xde\xea\x32\xb2\xb9\x46\xfc\xbd\x5f\x42\x36\x13\x24\xbc\
\x27\xb1\x31\xc4\xab\xf4\x6a\x02\x6a\x73\x31\x09\x23\x23\x17\x92\
\xcd\x15\x93\xf1\xb5\xf2\xf8\x06\xb2\x39\xe5\x73\x62\x62\x88\xd7\
\x31\x7d\x08\xea\xcc\x0a\x92\xe5\xb2\xbf\x93\x55\xdd\x0f\xe6\xe2\
\xa7\xe1\xf8\x19\x64\xb5\xe8\xa8\x35\xc4\xc3\x10\xaf\x93\x09\xac\
\xe5\x6f\x49\x94\xdf\x5d\x4d\x00\x5f\x0c\xfe\x08\x1f\x35\x23\x26\
\x12\xc0\xbb\x43\xbe\xa2\x10\x65\xea\x25\xb8\xba\xad\x88\xde\x48\
\x09\x67\xed\x09\x04\xd4\x71\xa2\x84\xb7\x70\x00\x01\x6d\xf5\xa1\
\x84\xf3\x24\x36\x86\x58\x8d\x28\x21\xb8\xd2\xcb\x48\x8c\xf1\xbb\
\x3d\x44\x40\x2b\x86\x9c\xb1\x88\x70\xea\xef\xe8\xff\x06\x01\xcd\
\x19\x70\xd5\x5a\x0a\xce\x34\x71\x51\xbf\x2d\x91\x1b\x29\xee\xd6\
\x3d\xb9\x3f\x4e\xda\xfe\x66\xa6\xb8\x5b\x7a\x5f\x3f\x9c\xf4\xba\
\x65\xa1\xb8\x7b\x12\x9b\x14\x71\xda\x69\x3a\x4e\x1e\x39\x9e\xa8\
\x8d\xbc\x0f\xab\x0f\xeb\xd9\x90\x2c\xaf\xae\x9e\x3a\x61\x0d\xce\
\xb6\x1b\xda\xa7\x2c\xd3\x92\x80\x1a\xbf\xac\x5e\xf0\xca\xcb\xf5\
\xb8\x32\xfb\x0c\xee\x5d\xd6\x23\xcd\x46\xfa\xb6\xc1\x66\xdc\xd1\
\xe4\x4d\xa5\xb8\x69\xec\x4f\xd4\x46\x8a\x5d\x86\x82\xf7\xba\x58\
\x3d\x89\x8d\x21\x46\x66\x04\x6e\x52\xa3\x51\xb9\x65\x88\xd1\xa1\
\xbd\x70\x74\xd4\x00\x54\x4e\x19\x62\x74\x32\xce\xae\x42\xe5\x94\
\x21\x46\x87\xe3\xec\x7b\x83\x50\xb9\x64\x88\x4f\x9f\xae\xb8\xbb\
\x1a\x95\x4b\x86\xf8\xec\x45\x08\xfb\x7f\x0f\x95\x43\x86\xf8\xec\
\x45\x18\x57\xa1\x72\xc8\x10\x9f\xbd\x08\x63\xc0\x51\xa8\xdc\x31\
\xc4\x26\xd5\x9f\x50\xae\x4a\xa1\x72\xc6\x10\x9b\xae\xad\x08\x65\
\xe7\x63\x51\x39\x63\x88\x4d\x2f\x42\xba\xb2\x04\x95\x2b\x86\xd8\
\x94\x11\xd2\xb6\x3f\x42\xe5\x8a\x21\x36\xbd\x08\xeb\xf2\x52\x54\
\x8e\x18\x62\x53\x46\x58\x5b\xfe\x04\x95\x23\x86\xd8\xb4\x21\xb4\
\xdf\xb6\x24\x2a\x0d\xd8\x35\x50\xf0\x1a\xb0\x6a\xc0\xc6\x10\x9b\
\x5a\x42\xab\x38\x93\xa8\x2c\xc2\xaa\x61\x29\x05\x6f\x11\x56\x5f\
\x60\x63\x88\x4d\x1d\xe1\x5d\xdc\x96\x88\x54\x61\xb5\xa4\x81\x82\
\x57\x85\x55\x35\x36\x86\xd8\xd4\x12\x5e\xcf\x73\x88\xc8\xe7\x82\
\x4d\x15\x85\x6f\x1e\x56\x55\xd8\x18\x62\x53\x8b\x87\x5f\x76\x20\
\x1a\xab\xa7\x62\xf3\x3c\x85\xef\x45\xac\x5e\xc0\xc6\x10\x9b\x1a\
\x3c\x74\xb9\x80\x88\x8c\xc3\xe6\x71\x0a\xdf\x7b\xf3\xb0\x78\x6b\
\x3e\x36\x86\xd8\xcc\xc7\xc7\x2f\xba\x10\x8d\x27\x84\xe6\xcd\x79\
\x9b\x22\xf0\x18\x16\x8f\x92\x2f\x19\xf1\x72\x1d\x11\xf9\xab\x34\
\xef\x24\x8a\x41\x66\xb5\x34\x6b\x49\x7b\xf2\xe6\x2b\xf1\xb1\xa6\
\x27\xd1\xd8\xa2\x46\x9a\x33\x2d\x45\x51\xb8\x52\x9a\x75\x1e\xf9\
\xf3\x0f\xf1\x72\x33\x11\xf9\xad\x34\xa3\x6e\x20\xc5\xa1\xdd\x4c\
\x69\xc6\xdb\x2d\xc8\x9f\x3b\xc4\x4b\x4d\x05\x11\x79\x48\x9a\x76\
\x1a\xc5\x62\xeb\xaf\xa4\x49\x0b\xca\xc9\xa3\xb3\xc4\xcf\x5d\x44\
\xa4\xd5\x3f\xa5\x29\x95\x14\x8f\x03\x56\x4b\x13\x96\xed\x41\x3e\
\x6d\x25\x7e\xea\xb6\x22\x22\x2d\x1f\x90\x4d\xac\x3f\x87\x62\xd2\
\x7f\x9e\x6c\xe2\xa3\x7e\xe4\xd7\x9b\xe2\xe7\x01\x22\x73\xfe\x2a\
\xd9\xd8\xdc\x43\x29\x2e\x3d\x9e\x95\x6f\x79\xb4\x13\x79\x76\x91\
\xf8\xa9\xdf\x96\xc8\x64\xee\xaa\x97\xff\x5a\x7a\x61\x4b\x8a\xce\
\xe0\x77\x65\x03\x93\x07\x92\x77\x9b\x35\x8a\x9f\x87\x89\x50\xf9\
\x59\x2f\xae\x97\xff\xb5\xfc\x6f\x3f\x6c\x4b\x31\x4a\x0d\xac\xfc\
\x44\xfe\x6d\xc6\xef\x76\x27\x98\x14\x71\x7a\x6d\x6f\xbc\xc8\xae\
\xef\x11\x25\xd3\xa3\xac\xd3\x92\xea\x65\x14\xb1\xd6\x65\x65\x52\
\xbd\xb0\x96\x64\x38\x5f\x3c\x8d\x47\x15\xb2\xce\xab\xc4\xd3\x00\
\x54\xac\x4a\x88\x53\x4d\x97\x81\xf8\xd9\xe2\xcf\xa8\x02\xd6\xab\
\x46\x3c\x0d\x42\xc5\xa9\x84\x58\xad\xda\x6c\x77\xfc\x6c\x7d\x1f\
\xaa\x80\x6d\x5d\x2f\x9e\x0e\x43\x15\xb2\x87\xc4\xd3\x1b\xa8\x42\
\xb6\x73\xa3\x78\x1a\x86\x2a\x64\x4f\x89\xa7\xf7\x52\xa8\x02\x36\
\x48\x7c\x1d\x8f\x2a\x64\x53\xc5\xd3\xac\x12\x54\x5c\x4a\x88\xdd\
\xf2\xe3\xf0\xd3\x6d\xce\x7b\xa8\xc2\x65\x3e\x15\x4f\x73\x4a\x51\
\x31\x29\x21\x76\x52\x3f\x04\x3f\x9d\xab\xdf\x42\x15\xae\xd6\x5f\
\x88\xa7\xaa\x56\xa8\x78\x94\x10\xbf\xfa\xb6\x07\xe2\xa7\xc3\x57\
\xaf\xa3\x62\x91\x22\x07\xba\xcf\x6b\x8d\x9f\x25\x5b\xad\x41\xc5\
\xa1\x84\x1c\x58\x5b\xbe\x27\x7e\xda\xae\xfa\x17\xaa\x70\x6d\xdd\
\x20\x9e\xbe\xea\x88\x8a\x43\x09\xb9\xb0\xb4\xff\x76\xf8\x69\x5d\
\xf7\x0a\xaa\x70\xed\x2d\xbe\x56\x76\x45\xc5\xa0\x84\x9c\xa8\x3a\
\x74\x33\xfc\xb4\xe4\x05\x54\xe1\x3a\x4a\x7c\xad\xc9\xa0\x0a\x57\
\x6a\xa6\xf8\xba\x19\x55\xc0\x4e\x15\x5f\x35\xbd\x51\x85\xab\xe5\
\x42\xf1\x75\x37\xaa\x80\xfd\x46\x7c\xad\xef\x83\x2a\x5c\x9d\x57\
\x89\xaf\x3f\xa1\x0a\xd8\x4d\xe2\xab\x61\x3b\x54\xe1\xda\x7c\xbd\
\xf8\x7a\x04\x55\xc0\xfe\x26\xbe\x1a\x77\x41\x15\xae\x5d\xc5\xdb\
\x53\xa8\x02\xf6\x82\x78\xdb\x0b\x55\xb8\x0e\x13\x6f\xcf\xa3\x0a\
\xd8\x74\xf1\x76\x00\xaa\x70\x9d\x24\xde\xfe\x89\x2a\x5c\xa5\x9f\
\x8b\xb7\xc3\x50\x11\x4a\x91\x53\x17\x8e\xc1\xd7\x5b\x7b\x12\x52\
\xd7\xa1\x07\xf4\xae\xe8\xbc\xa8\x6a\xf6\xc4\x97\x6a\x29\x4e\xbb\
\x1d\xb5\x43\x45\x45\x63\x55\xd5\x7b\xe3\x3f\x20\x91\x3a\x2c\x17\
\x6f\x47\x13\xca\x41\x2f\xd5\xcb\x37\x56\x3e\xb0\x25\xc5\xa7\xfd\
\x15\x9f\xcb\x7f\xcc\x19\xd5\x9a\x24\xfa\xbf\xe2\x6d\x7a\x0a\x77\
\xdb\x3c\x25\x1b\xa9\xbd\xb1\x23\xc5\xc5\x9c\xbb\x44\x36\xb2\xe0\
\x54\x12\xa8\xbc\x4e\xbc\x9d\x80\xb3\xa1\x2b\xe5\xdb\x66\x6d\x43\
\x31\x69\x37\x4e\x36\xf1\xd7\x56\x24\xcf\xfd\xe2\xed\xa3\x12\x1c\
\x5d\xd0\x20\x9b\x5a\x76\x10\xc5\xa3\xec\x5d\x69\xc2\x6b\x5d\x48\
\x9c\x1d\x1b\xc5\xdb\x48\xdc\x9c\x24\x4d\x5a\xb1\x1d\xc5\xa2\xcd\
\x5b\xd2\xa4\x57\x4a\x49\x9c\x67\xc5\xdb\x67\xa5\xb8\xd8\xbb\x46\
\x9a\xf6\x71\x27\x8a\x43\xea\x51\x69\xc6\xbd\x24\xce\x41\xe2\xef\
\x67\x38\x68\x31\x47\x9a\xf3\x47\x8a\xc3\x8f\xa4\x59\x43\x49\x9c\
\xb7\xc4\x5b\x55\x2b\x82\xfb\x85\x34\xab\x61\x47\x8a\x41\x8b\x39\
\xd2\xac\xe9\x86\xa4\x39\x5e\xfc\xfd\x82\xc0\x3a\x7c\x29\xcd\x7b\
\x8a\x62\x70\x96\x58\x9c\x48\xd2\x94\xcc\x11\x6f\x8b\xdb\x12\xd4\
\x89\x62\xd1\xd0\x93\x22\xf0\xba\x58\x4c\xc4\xca\x90\x73\x0d\x37\
\xe2\xad\xc7\xb9\x04\x35\x0c\x0b\x33\x8c\xc2\x97\x19\x80\xc5\x41\
\xed\x49\x9a\xb6\x5f\x89\xb7\xa5\x1d\x09\x26\xbd\x52\x6c\x9e\xa1\
\xf0\xfd\x44\xac\x86\x63\x63\xc8\xbd\x35\xb7\xe3\xad\xf3\x05\x04\
\xd3\xab\x3d\x36\xfd\x28\x7c\xdb\x60\xb5\x0d\x36\x86\x3c\xb8\xb5\
\x06\x6f\xbf\xe8\x4a\x20\xbd\xb1\xea\x45\xe1\x2b\xc7\xaa\x1c\x1b\
\x43\x1e\x2c\xf9\x13\xde\xda\xff\x9a\x40\xca\xb1\x6a\xdd\x91\x82\
\x57\x8e\x55\x39\x36\x86\x7c\xb8\xa1\x11\x6f\x67\x65\x08\xa2\x0d\
\x76\xad\x29\x78\x6d\xb0\x6a\x83\x8d\x21\x1f\x3e\x1e\x8f\xb7\x36\
\xbf\x41\xf9\x33\xe4\x45\x25\xfe\x4e\xef\x8d\xf2\x66\xc8\x8b\x29\
\x53\xf0\xd6\xf2\x52\x94\x37\x43\x7e\x54\xe2\xef\x94\x3e\x28\x5f\
\x86\xfc\x18\xff\x31\xde\xd2\x57\xa0\x7c\x19\xf2\xa3\xf1\xf7\xf8\
\x1b\xb1\x3d\xca\x93\x21\x4f\x1e\x58\x82\x37\x73\x25\xca\x93\x21\
\x4f\x6a\x6e\xc3\xdf\x31\xbb\xa0\xfc\x18\xf2\xe5\x0f\x6b\xf1\x96\
\xba\x0a\xe5\xc7\x90\x2f\x4b\xc7\xe2\x6f\xe8\xde\x28\x2f\x86\xbc\
\xf9\x7d\x03\xfe\xae\x46\x79\x31\xe4\xcd\x67\x8f\xe1\xef\x90\x03\
\x51\x3e\x0c\xf9\x53\x49\x04\xae\x46\xf9\x30\xe4\xcf\x5b\xaf\xe0\
\x6f\xdf\xc3\x51\x1e\x0c\x79\x54\x49\x04\xae\x42\x79\x30\xe4\xd1\
\x84\x0f\xf1\xb7\xc7\xd1\xa8\xf0\x0c\x79\x24\x63\x88\xc0\x68\x83\
\x0a\xcd\x90\x4f\x7f\xab\xc6\xdf\x4e\xc7\xa3\x42\x33\xe4\x53\xdd\
\xcd\x44\xe0\x8a\x12\x54\x58\x86\xbc\xba\x6b\x15\xfe\xb6\x39\x19\
\x15\x96\x21\xaf\x56\xdc\x4d\x04\x2e\x2b\x45\x85\x64\xc8\xaf\x9b\
\xd6\xe3\x6f\x8b\x53\x51\x21\x19\xf2\xab\xea\x21\x22\xf0\xdb\x56\
\xa8\x70\x0c\x79\x36\x86\x08\xf4\xfa\x39\x2a\x1c\x43\x9e\x4d\x7f\
\x8e\x08\x8c\x6a\x8b\x0a\xc5\x90\x6f\x63\x88\x40\xf7\xf3\x50\xa1\
\x18\xf2\xed\x85\x69\x44\xe0\xa2\x8e\xa8\x30\x0c\x79\x37\x86\x08\
\x74\xbe\x10\x15\x86\x21\xef\x1e\x99\x47\x04\xce\xef\x86\x0a\xc1\
\x90\x77\xf5\x37\x11\x81\xf6\xbf\x42\x85\x60\xc8\xbf\x7b\x97\x11\
\x81\xb3\x33\x28\x77\x86\xfc\x5b\x7d\x27\x11\x68\x7d\x09\xca\x9d\
\x21\x01\x6e\xa9\x25\x02\xa7\x6f\x86\x72\x66\x48\x80\x45\x7f\x21\
\x02\x2d\x2e\x45\x39\x33\x24\xc1\x0d\x42\x04\x46\x6e\x8d\x72\x65\
\x48\x82\x99\x4f\x13\x81\xf4\xe5\x28\x57\x86\x44\xa8\x24\x0a\x23\
\xb6\x47\x39\x32\x24\xc2\x3f\xa7\x12\x01\x33\x1a\xe5\xc8\x90\x0c\
\x95\x44\x61\xf8\xae\x28\x37\x86\x64\x78\x62\x36\x11\x48\x5d\x85\
\x72\x63\x48\x86\xc6\x1b\x88\xc2\x90\xbd\x51\x4e\x0c\x09\x71\xff\
\x97\x44\xe1\x6a\x94\x13\x43\x42\xac\xbb\x8d\x28\x1c\x72\x20\xca\
\x85\x21\x29\xfe\xb0\x8e\x28\x5c\x8d\x72\x61\x48\x8a\x2f\xef\x23\
\x0a\xfb\x1e\x81\x72\x60\x48\x8c\xdf\x37\x12\x85\xab\x50\x0e\x0c\
\x89\x31\xfb\x09\xa2\xb0\xfb\x0f\x50\xc1\x19\x92\xa3\x92\x48\x8c\
\x36\xa8\xc0\x0c\xc9\x31\xf5\x9f\x44\x61\xc7\xe3\x51\x81\x19\x12\
\xa4\x92\x48\x5c\x59\x82\x0a\xca\x90\x20\x4f\xcf\x24\x0a\x7d\x7f\
\x8c\x0a\xca\x90\x20\x72\x03\x91\xb8\xac\x05\x2a\x20\x43\x92\xfc\
\x65\x11\x51\xd8\xfc\x54\x54\x40\x86\x24\xa9\xbd\x85\x48\x5c\xd2\
\x0a\x15\x8c\x21\x51\xee\x58\x4d\x14\x7a\xfd\x1c\x15\x8c\x21\x51\
\x96\xdf\x4b\x24\x46\xb5\x43\x05\x62\x48\x96\x1b\xeb\x89\x42\xf7\
\xf3\x50\x81\x18\x92\x65\xfe\x23\x44\xe2\xa2\xd6\xa8\x20\x0c\x09\
\x33\x86\x48\x74\xea\x88\x0a\xc2\x90\x30\xd3\x5e\x40\xe5\x90\x21\
\x69\x2a\x51\x39\x64\x48\x9a\x49\xd3\x51\xb9\x63\x48\x9c\x4a\x54\
\xee\x18\x12\xe7\xe1\xcf\x51\x39\x63\x48\x9c\xf5\x37\xa1\x72\xc6\
\x90\x3c\xf7\xac\x40\xe5\x8a\x21\x79\x56\xdd\x85\xca\x15\x43\x02\
\xdd\x5c\x87\xca\x11\x43\x02\x55\xff\x8d\xc8\xac\xc2\x6e\x35\x05\
\x6f\x15\x56\xab\xb0\x31\x24\xd1\x18\x21\x2a\x0b\xb0\x5a\xbd\x9a\
\x82\x57\x85\x55\x15\x36\x86\x24\xfa\x70\x02\x51\xa9\xc2\x6a\x21\
\x85\x6f\x01\x56\x0b\xb0\x31\x24\x52\x25\x51\x59\xb8\x1c\x9b\x59\
\x14\xbe\xf7\xb1\x7a\x1f\x1b\x43\x22\xbd\xf2\x16\x11\x69\x78\x16\
\x9b\xa7\x28\x7c\x13\xea\xb0\x58\xf1\x32\x36\x86\x64\xaa\x24\x2a\
\xe3\xb0\x90\xa7\x28\x7c\x2b\x5f\xc0\xe2\x99\x3a\x0a\x51\xc9\x1c\
\xf1\x93\xe1\x6b\x6d\x17\x4b\xf3\x9e\xa2\x18\x0c\x13\x8b\x03\x28\
\x4c\x67\x8b\x9f\x0c\xdf\x38\x5b\x9a\x55\xbf\x03\x45\x61\xb2\x34\
\xeb\x19\x0a\x54\x9b\x2f\xc5\x4b\x86\x6f\x94\x7e\x2a\xcd\xb9\x87\
\xe2\xb0\x6f\xa3\x34\xa3\x7e\x27\x0a\xd5\x68\xf1\x92\xe1\x3f\x76\
\x5f\x2b\x4d\xfb\xb0\x03\x45\xe2\x32\x69\xc6\xb9\x14\xac\x1e\xeb\
\xc4\x47\x86\xff\xfa\x61\xa3\x34\xe5\xab\x3e\x14\x8b\xd4\xc3\xd2\
\xa4\xbb\x29\x60\x77\x8a\x8f\x0c\x1b\x38\xb5\x4e\x36\xb5\x70\x00\
\xc5\xa3\xf5\xa3\xd2\x84\xb1\xa5\x14\xb0\xbe\x0d\xe2\x21\xc3\x86\
\x0e\xfa\x4a\xbe\xed\xed\x0a\x8a\x49\xea\xf2\x46\xf9\x96\x86\x0b\
\x28\x6c\x8f\x8b\x87\x0c\x1b\xe9\x7d\x7f\x83\x6c\x68\xc5\x6f\x5a\
\x53\x64\x06\xbd\x21\x1b\xf9\xc7\x00\x0a\xdc\x3e\xe2\x21\xc3\xb7\
\xec\xf0\xc0\x52\xf9\xc6\xec\xeb\xba\x51\x7c\x52\xc7\xbd\xb4\x5e\
\xbe\x56\xf7\xdc\x51\x04\x92\x22\xc1\xfe\xb5\x2f\xa1\x95\x2d\xe2\
\xdb\xd2\xfb\x0f\xea\x5d\xde\x79\x51\xd5\x67\xcf\x7d\x40\x91\xea\
\xf2\xfd\x9d\x2b\x2a\xe4\xf3\xaa\x69\x13\x56\x52\x04\x86\x49\x78\
\x19\x54\x10\x86\x04\x1b\xff\x31\x2a\x66\x86\x04\x93\x1b\x50\x31\
\x4b\x91\x64\xad\xe6\xf6\x24\xa4\xb2\x45\xa8\x00\x0c\x49\x56\x73\
\x1b\x2a\x5e\x29\x12\xad\xcb\xfc\xb6\x84\x53\xb6\x08\x15\x80\x21\
\xd1\x96\x8e\x45\x7d\xa7\x6d\x51\x2f\xe1\x64\x50\x41\x18\x92\x6d\
\xee\xdf\x51\x71\x32\x24\x5c\x25\x2a\x4e\x86\x84\x7b\xfb\x65\x54\
\x8c\x0c\x49\x57\x89\x8a\x91\x21\xe9\x26\x7c\x80\x8a\x8f\x21\xf1\
\xc6\xa0\xbe\xd3\x4a\xab\x24\x84\x0c\x2a\x08\x43\xe2\xad\xbf\x19\
\xf5\x9d\xd6\x71\x85\xb8\xcb\xa0\x82\x30\x24\xdf\x8a\xbb\x51\xdf\
\x69\x15\x75\xe2\x2c\x83\x0a\xc2\x50\x00\xaa\x1e\x44\xc5\xc4\x50\
\x08\xc6\xa0\x62\x62\x28\x04\xef\x3f\x87\x8a\x87\xa1\x20\x54\xa2\
\xe2\x61\x28\x08\x2f\xbe\x83\x8a\x85\xa1\x30\x8c\x41\x7d\xa7\xa5\
\xe7\x8a\x9b\x0c\x2a\x08\x43\x61\xa8\xbf\x11\xf5\x9d\xd6\x76\xa9\
\x38\xc9\xa0\x82\x30\x14\x88\x35\x77\xa0\xbe\xd3\x7a\xd6\x88\x8b\
\x0c\x2a\x08\x43\xa1\x58\xfc\x67\xd4\x77\xda\xb6\x8d\xe2\x20\x83\
\x0a\xc2\x50\x30\x66\xbd\x84\x8a\x9c\xa1\x60\x6c\xb1\x0f\x2a\x72\
\x86\x82\xf1\x87\x36\xa8\xef\xb0\xe3\xc4\x49\x06\x55\x54\x3a\x2e\
\x14\x27\x19\x54\x10\x69\x0a\xc4\x75\x19\xfc\xf5\x2e\x2f\xeb\xb4\
\xa4\x7a\xde\x52\x8a\x56\xeb\x2d\xcb\xca\x1a\x17\x56\x7f\x56\x47\
\x91\x19\xd8\x28\x6e\x32\x7c\xdb\x5e\x95\xb3\xe5\xdf\x1a\xa7\x5c\
\xb4\x39\xc5\xa8\xd3\x4f\xc7\xaf\x93\x7f\x5b\xf5\xf7\x93\xdb\x53\
\x4c\x4a\xdf\x17\x47\x19\x36\xb6\xf3\x73\xb2\x81\xba\x5b\xbb\x53\
\x6c\x5a\x5e\xb4\x54\x36\xb0\xf8\xac\x34\xc5\xe3\x62\x71\x95\x61\
\x43\xe9\x9b\x1a\x64\x63\x2b\x47\x52\x5c\x06\x7c\x26\xdf\x32\x6b\
\x27\x8a\x45\x9f\xb5\xe2\x2a\xc3\x06\xba\xbc\x28\x9b\xba\xc1\x50\
\x44\x4e\x5c\x27\x9b\x58\x35\x8c\x22\x31\x49\x9c\x65\xf8\xaf\x2e\
\xb3\xa4\x29\x0f\xa5\x28\x1a\x67\x4a\x53\x1a\x47\x50\x14\x4e\x14\
\x77\x19\xfe\xa3\xf4\x25\x69\xda\xe5\x14\x8b\x83\xd7\x4b\x93\xd6\
\x0d\xa0\x08\x74\x59\x2c\xee\x32\xfc\xc7\xad\xd2\x8c\xc6\x23\x29\
\x0e\xe5\x5f\x49\x33\xaa\xbb\x52\xf8\xee\x95\x10\x32\x7c\x63\xa7\
\x06\x69\xce\xec\x16\x14\x85\xb1\xd2\xac\xdf\x53\xf0\x06\x35\x4a\
\x08\x19\xbe\x31\x41\x9a\x77\x1e\xc5\x60\x87\x06\x69\x56\xcd\xe6\
\x14\xb8\x16\x33\x25\x8c\x0c\x5f\xdb\x55\x2c\x16\x1a\x8a\xc0\x7d\
\x62\x71\x23\x56\x86\xa4\x1b\xb5\x2d\x5e\x7e\x80\x45\x66\x3f\x0a\
\x9f\x19\x8a\xc5\x30\x0a\xdb\x36\x35\x12\x4a\x86\xaf\xbd\x27\x36\
\x37\x52\xf8\xf6\x13\xab\x1d\xb1\x31\x24\xdc\x9d\x2d\xf1\xd2\x69\
\x67\x6c\x0e\xa4\xf0\xed\x87\xd5\x7e\xd8\x18\x92\x6d\xe4\x41\xf8\
\xa9\xc0\xaa\x17\x85\xaf\x37\x56\xbd\xb1\x31\x24\x5a\xb7\x31\x78\
\xea\x8d\x55\xf7\x34\x05\xaf\x02\xab\x0a\x6c\x0c\x89\x76\x43\x57\
\x3c\x75\xc7\x2a\xd5\x85\x82\xd7\x1d\xab\xee\xd8\x18\x92\xec\xe0\
\x93\xf1\x65\xb0\x33\x14\x3c\x83\x95\xc1\xc6\x90\x60\xad\xee\x44\
\xc5\xcc\x90\x60\x97\xf4\x45\xc5\xcc\x90\x5c\xdb\xff\x0a\x15\x37\
\x43\x62\xa5\xee\x6a\x81\x8a\x9b\x21\xb1\x4e\xdd\x0f\x15\x3b\x43\
\x52\xf5\xbc\x1e\x15\x3f\x43\x52\xdd\xd8\x19\x15\x3f\x43\x42\x1d\
\xf6\x7f\x50\x39\x60\x48\xa6\xd6\xb7\xa3\x72\xc1\x90\x4c\x97\x6f\
\x85\xca\x05\x43\x22\xed\x74\x21\x2a\x27\x0c\x49\x64\xee\x4e\xa3\
\x72\xc2\x90\x44\x67\xee\x8d\xca\x0d\x43\x02\x95\x5d\x83\xca\x11\
\x43\x02\xdd\xd2\x11\x95\x23\x86\xe4\x19\xf2\x43\x54\xae\x18\x12\
\xa7\xed\x1f\x50\x39\x63\x48\x9c\xd1\x9b\xa3\x72\xc6\x90\x34\xbb\
\x9e\x87\xca\x1d\x43\xc2\x98\xbb\x4b\x50\xb9\x63\x48\x98\xb3\xf7\
\x40\xe5\x90\x21\x59\x2a\xae\x46\xe5\x92\x21\x59\x6e\x6b\x8f\xca\
\xa5\x34\xb9\xd3\x7b\xa7\x1d\x3a\xb7\xfa\x5a\xcb\xe5\x8b\x16\x2f\
\x5a\xb4\x68\xc1\x47\xf5\x6c\xe8\xe8\x61\xa8\x9c\x4a\x93\x0b\x9d\
\x76\xdc\xe9\x7f\x74\x64\x53\xb5\xef\x4f\x9b\x36\x6d\xfa\x5a\xfe\
\xbf\xf6\xb7\xa2\x72\x2b\x4d\xdc\xba\x0e\x3d\x6a\x40\x05\xcd\x69\
\xb9\xc7\x1e\xd0\xf0\xce\xf8\xf1\xd3\xf9\x1f\x57\x57\x10\x91\x95\
\xab\x51\x09\xd0\xe7\x82\x57\xeb\x25\x90\xb9\xb7\x0e\x2e\xdd\xb3\
\x41\xa2\x72\x06\x5f\x1b\x29\x76\x19\x0a\xde\xeb\x62\x35\x11\x9b\
\x34\xb1\x49\xed\x39\x6c\xd8\x0e\x04\xb5\xf9\xd9\x67\xaf\x5c\x63\
\x88\xc8\x2b\x77\xa3\x02\x49\x13\x93\xf2\x73\x4e\xea\x85\x9b\x0e\
\x1d\x88\xc8\xba\xd3\x04\x15\x48\x9a\x58\xf4\xbf\xf0\x84\x52\xf2\
\xe7\xd2\x4f\x51\xc1\xa4\x89\xc1\x61\x17\x1d\x4a\x3e\xbd\x79\x13\
\x2a\xa0\x34\x51\x6b\x31\xe2\xc2\x1d\xc9\xab\xf5\x3f\x69\x40\x05\
\x94\x26\x5a\xad\xce\x3b\xaf\x8c\x3c\xbb\xe6\x03\x54\x50\x69\x22\
\x75\xf8\x6d\x7d\xc8\xb7\x0f\xae\x41\x05\x66\x88\x50\xef\xc7\x26\
\xf4\x21\xdf\x1a\x7f\x5a\x87\x0a\xcc\x10\x99\xd2\x5f\xce\x1c\x4e\
\xfe\xdd\xf4\x06\x2a\xb8\x34\x51\x39\xe0\x0f\x3b\x90\x00\xb3\x2f\
\x45\x39\x30\x44\xa3\xe7\x9f\x5e\xd9\x81\x04\x90\xd3\xd6\xa2\x1c\
\xa4\x89\xc4\x91\x0f\x74\x26\x11\xc6\xbe\x8c\x72\x61\x88\x40\xc9\
\xb5\xe3\x3a\x93\x08\xeb\x2e\x43\x39\x49\xe3\xaf\xe7\x83\x07\x91\
\x10\x77\x54\xa3\x9c\xa4\xf1\xb6\xdf\xc3\xbd\x48\x88\x35\xd7\xa1\
\xdc\x18\x7c\x5d\xf0\x72\x2f\x92\xe2\x96\x2f\x50\x6e\xd2\xf8\xe9\
\x30\xf6\x18\x12\x63\x45\x25\xca\x51\x1a\x2f\xdb\x3f\xd9\x97\xe4\
\xb8\x71\x19\xca\x51\x1a\x1f\xbb\x3e\xdf\x95\xe4\x58\x7a\x23\xca\
\x95\xc1\xc3\x80\x17\xbb\x92\x20\x95\x2b\x51\xae\x0c\xe1\x0d\x7c\
\xbe\x33\x09\xb2\xe4\x56\x94\x33\x43\x68\x07\x3c\xd7\x81\x24\xb9\
\x76\x0d\xca\x99\x21\xac\xc1\xcf\xb6\x23\x49\x16\xdc\x89\x72\x67\
\x08\xe9\xfb\xe3\xdb\x90\x28\xbf\xab\x41\xb9\x33\x84\x73\xf4\x13\
\xad\x48\x94\xaf\xc6\xa2\x42\x48\x13\xca\x90\x47\xd3\x24\xcb\x03\
\xb5\xa8\x10\x0c\x61\x6c\xff\x60\x9a\x84\xb9\x1b\x15\x86\x21\x84\
\x2e\xe3\xdb\x93\x30\xaf\x7c\x84\x0a\xc3\xe0\x2e\xfd\x68\x1f\x92\
\xe6\x2e\x54\x28\x06\x77\x37\x1e\x4c\xd2\x7c\xf1\x38\x2a\x14\x83\
\xb3\xd3\xcf\x26\x71\xee\xab\x43\x85\x62\x70\x35\xe8\x36\x12\x47\
\xee\x41\x85\x63\x70\xb4\xc5\xdf\x4b\x49\x9c\x17\x3f\x45\x85\x63\
\x70\xd3\x76\x5c\x77\x92\xe7\x2e\x54\x48\x06\x37\x95\x3b\x93\x3c\
\x8b\xc7\xa1\x42\x32\x38\xd9\xf7\x4c\x12\x68\xec\x7a\x54\x48\x06\
\x17\x2d\xee\x49\x91\x3c\x72\x0f\x2a\x2c\x83\x8b\x4b\xb6\x23\x81\
\x26\x7d\x86\x0a\xcb\xe0\x60\xfb\x51\x24\xd1\x5d\xa8\xd0\xd2\x04\
\x97\xba\xa7\x05\xfe\x96\xae\x5c\xbb\x6e\x5d\xa7\x2d\xda\x11\x95\
\xea\xa7\x50\xa1\xa5\x09\xee\xe7\x03\xf1\xb3\x76\xd2\xdb\xd3\xa6\
\x55\xf3\x6f\x5d\xb7\x18\x38\xf4\xc0\x16\x44\xe0\xa1\x7a\x2c\x1a\
\xb0\x6b\xa0\xe0\x35\x60\xd5\x40\x44\x2a\x56\x8a\x97\xd7\x4f\xef\
\xc0\xc6\xda\x1d\xf3\x9a\xf8\xdb\x1f\x9b\xc1\x62\x55\x5f\x42\xc1\
\x7b\x4c\xac\xfe\x48\x44\xc6\x89\x87\x45\x95\xdb\xd3\x94\xa3\xa6\
\x8b\xa7\x25\x06\x9b\xed\xc4\xaa\x9a\xc2\x77\xb3\x58\x5d\x49\x34\
\x0e\x90\xd0\x1a\xc7\x0f\x4b\xd3\x0c\x73\xd2\x0a\xf1\x32\x16\xab\
\xf6\x8d\x62\xf3\x26\x85\xef\x42\xb1\xfa\x29\xd1\xf8\x97\x84\x35\
\x73\x10\x36\xdb\x7f\x2a\x3e\x8e\xc2\xee\x0d\xb1\xb9\x8e\xc2\xb7\
\x8b\x58\x6d\x41\x24\x8e\x90\x90\x6a\x2e\x6d\x81\x5d\x97\x17\x24\
\xbc\x35\xad\xb1\xbb\x44\x6c\x06\x50\x04\xe6\x88\xc5\x3b\x44\x22\
\xf5\xb6\x84\xf3\x42\x5f\xb2\x4a\x3f\x2d\xa1\x3d\x41\x16\xdb\x89\
\xc5\xdc\x14\x45\xe0\x7a\xb1\xb8\x98\x48\x1c\x23\xa1\x2c\x39\x89\
\x20\x3a\xcc\x90\xb0\x7e\x4c\x36\x0f\x49\xf3\x46\x52\x0c\x7a\xae\
\x92\x66\x7d\xd9\x81\x28\x98\x19\x12\xc6\xa4\x2e\x04\xd3\x77\xa9\
\x84\x53\xdf\x95\x6c\xb6\xac\x95\xe6\xbc\x6b\x28\x0a\x57\x48\xb3\
\xce\x27\x12\xc7\x4a\x18\xf7\x97\x12\xd4\x50\x09\xe7\x15\xb2\xfb\
\xad\x34\xa3\x6e\x5f\x8a\x43\xbb\x59\xd2\x8c\xb7\x5b\x10\x89\xd7\
\x24\x84\xab\x70\xf0\x8c\x84\x72\x3e\xd9\xa5\x1e\x95\xa6\x9d\x49\
\xb1\xe8\xbb\x54\x9a\xb4\xb0\x82\x48\xec\x2d\xee\xea\x4f\xc3\xc5\
\xb6\xeb\x25\x8c\x2d\x09\xa0\xcd\xeb\xd2\x94\x5b\x28\x1e\x87\xae\
\x93\x26\xac\xdc\x9b\x68\x3c\x22\xce\x56\x7f\x1f\x37\x37\x4b\x08\
\xef\x11\x48\xeb\x87\x64\x13\x0d\xbf\xa4\x98\xec\xb9\x40\x36\x31\
\x67\x47\xa2\xb1\x79\xbd\xb8\x5a\x33\x00\x47\x99\xf5\xe2\xee\x4a\
\x02\x1a\xb5\x56\x36\xb6\xe0\xfb\x14\x97\x5e\x2f\xca\xb7\x3c\xd5\
\x8d\x88\x8c\x11\x67\xc7\xe2\xec\x31\x71\xb7\x1b\x41\xf5\x7e\xa0\
\x41\xfe\x6b\xc5\x25\x6d\x28\x3a\x43\x3e\x90\x0d\xbc\x75\x30\x51\
\x69\xbf\x5c\x5c\xfd\x0e\x77\x87\x89\xb3\x79\x38\xd8\xf2\xc2\xc9\
\x8d\xf2\xbf\xd6\x3c\xfe\xa3\x8e\x14\x23\x73\xe0\x2d\xf3\xe5\xdf\
\xe6\xdc\xb0\x6f\x8a\xc8\x9c\x27\xae\x9e\x32\xb8\x33\x9f\x89\xab\
\x5b\x70\xd3\x72\x8b\x7d\x8e\xd8\xbd\xac\x84\x22\xd6\x69\xfb\x43\
\x0e\xde\xb6\x23\x91\x7a\x47\x1c\xcd\xec\x40\x18\x37\x89\xab\x43\
\x50\xf1\x2b\x17\x47\xcb\xb6\x21\x94\xa3\xc4\xd1\xd2\x34\xca\x93\
\x21\xab\xa1\xb8\x69\x1c\xf1\x31\xa1\xbc\xda\x80\x9b\x67\xea\x51\
\x9e\x0c\x59\x1d\x89\x9b\x8b\x27\x10\xce\x8a\x69\xb8\x99\x80\x8a\
\x5f\x9b\x75\xe2\xe4\x05\x42\xfb\x93\xb8\xd9\x0c\xe5\xcb\x90\xcd\
\xa1\xad\x70\xd1\x78\x11\xa1\x2d\xc6\xc9\x82\xf9\x28\x5f\x86\x6c\
\x86\xe2\xe4\xcf\xef\x12\xda\x62\x9c\x4c\x41\x79\x33\x64\x91\x1a\
\x8a\x8b\x75\xbf\x25\xbc\x25\x38\x99\x8c\xf2\x66\xc8\x62\xf7\x32\
\x5c\xdc\x58\x45\x78\x8b\x71\x32\x05\xe5\xcd\x90\xc5\x91\xb8\xf8\
\xe2\x7a\x3c\x2c\xc6\xc5\xda\x77\x51\xde\x0c\x59\x0c\xc5\xc5\x15\
\x2b\xf1\xb0\x18\x17\x6f\xae\x47\xc5\xae\x5c\x5c\xcc\x4a\xe3\xa3\
\x54\x5c\x5c\x83\xf2\x67\xb0\xfb\x3e\x2e\x2e\xae\xc7\x47\x3b\x5c\
\x4c\x46\xf9\x33\xd8\xed\x8a\x83\x45\xe3\xf0\xd2\x0d\x07\xf2\x1a\
\xca\x9f\xc1\xae\x1f\x0e\x1e\x6d\xc4\x4b\x37\x1c\xcc\x5a\x8a\xf2\
\x67\xb0\xeb\x87\x83\x47\xf0\xd3\x1d\x07\x53\x50\x11\x30\x58\xb5\
\x2b\x27\xb8\xaa\xc9\xf8\xe9\x86\x83\x29\xa8\x08\x18\xac\xb6\xc1\
\xc1\xa3\x82\x9f\x7e\x38\x98\x8c\x8a\x80\xc1\xaa\x1f\x0e\x1e\xc6\
\x53\x7f\x82\xfb\xea\x23\x54\x04\x0c\x56\xfd\x08\x6e\xee\x54\x3c\
\xed\x4c\x70\x53\x50\x51\x30\x58\xf5\x23\xb8\x47\xf1\xd4\xbd\x8c\
\xe0\xa6\xa0\xa2\x60\xb0\xea\x47\x70\x0f\xe3\x69\x67\x1c\x4c\x41\
\x45\xc1\x60\xb5\x0d\x81\xd5\x4e\xc3\xd3\x81\x04\xb7\xfe\x4d\x54\
\x14\x0c\x36\xe5\x6d\x09\x6c\x6e\x23\x9e\x8e\x24\xb8\x69\xeb\x50\
\x51\x30\xd8\xf4\x23\xb8\xd9\x78\xea\xdd\x9f\xe0\x26\xa3\x22\x61\
\xb0\xe9\x4b\x70\xb3\xf1\x74\x24\x0e\xa6\xa0\x22\x61\xb0\x69\x47\
\x70\xb3\xf1\x74\x24\x0e\xa6\xa0\x22\x61\xb0\x29\x21\xb8\xd9\xf8\
\xe9\x79\x08\xc1\xcd\xad\x46\x45\xc2\x60\x93\x26\xb8\xd9\xf8\xf9\
\x69\x29\xc1\xbd\x8e\x8a\x86\xc1\xa6\x84\xc0\xe4\x33\xbc\x98\x33\
\x70\x30\x15\x15\x0d\x83\x4d\x9a\xc0\x16\xd4\xe0\x65\xc8\x66\x38\
\x98\x8a\x8a\x86\xc1\xa6\x84\xc0\x96\xe0\xe7\x67\x38\x58\x3f\x0d\
\x15\x0d\x83\x4d\x9a\xc0\x3a\xe1\x65\xd7\xc3\x71\xf0\x5e\x0d\x2a\
\x1a\x06\x9b\x34\x81\x75\xc6\xcb\xb5\x29\x1c\xbc\x8e\x8a\x88\xc1\
\xa6\x84\xc0\x3a\x1a\x3c\x1c\x74\x18\x2e\x26\xa2\x22\x62\xb0\x49\
\x13\x98\xe9\x88\x87\xeb\x70\xb1\xe6\x45\x54\x44\x0c\x36\x25\x04\
\xd7\x99\xf0\x8e\x19\x80\x8b\xe7\x6b\x50\x11\x49\x63\xb3\x94\xe0\
\xba\xcc\x21\xac\x8e\x37\xe3\x64\x3c\xa1\x74\x3a\xf2\xc0\xf2\xb2\
\x4e\x4b\xaa\x3f\x7b\xf6\xe5\xf5\x14\xa7\xfe\x47\xef\x50\x56\xd6\
\xb8\xb0\x7a\xfa\x13\xb3\x88\xc2\x19\x12\xdc\x60\x42\xfb\xa3\x38\
\x69\xe8\x41\x08\x03\x27\xd4\xc9\x37\x96\xdd\x55\x41\xf1\x69\x33\
\x6a\xb6\xfc\xc7\xcc\xf3\x5b\xe2\xef\x08\x09\xee\x47\x84\x75\x98\
\xb8\x99\x8c\xbb\x2d\x1f\x95\x8d\xac\xbd\xb6\x1d\xc5\x25\x75\xfa\
\x02\xd9\xc8\xdc\x1f\xe1\x6d\x47\x09\xee\x01\x42\xea\x30\x5f\xdc\
\xfc\x1a\x67\x83\x97\xc9\xb7\xbd\xbf\x25\xc5\xa4\xf5\x23\xb2\x89\
\x3f\x96\xe2\xa9\x83\x04\xf7\x65\x09\xe1\xfc\x45\x1c\x6d\x8f\xab\
\xb3\xea\x65\x53\x5f\xec\x4b\xf1\xe8\xf1\xa6\x34\xe1\xd5\x4e\x78\
\x5a\x21\xc1\x0d\x22\x94\x0b\xc4\xd1\xdb\xb8\x3a\x5e\x9a\xb4\xac\
\x2f\xc5\xa2\xd5\x6b\xd2\xa4\xe7\xd3\xf8\x79\x5f\x82\x1b\x43\x18\
\x83\xeb\xc5\xd1\xe9\x38\xda\x7d\xad\x34\x6d\x46\x07\x8a\xc4\x5f\
\xa5\x19\xb7\xe3\xe7\x59\x09\xee\x13\x42\xe8\xf3\x95\x38\x5a\xd9\
\x0e\x37\xa5\x9f\x48\x73\xee\xa2\x38\x9c\x20\xcd\x3a\x1c\x2f\x77\
\x8a\x83\xed\x70\xd6\xf9\x03\x71\x75\x3b\x8e\xce\x93\x66\xd5\x6f\
\x4f\x31\x28\xfd\x44\x9a\x35\x2d\x85\x8f\x4b\xc4\xc1\x28\x5c\x75\
\x7e\x4b\x9c\xf5\xc7\x4d\x87\x2f\xa5\x79\xe3\x29\x06\x67\x88\xc5\
\xf1\xf8\x38\x51\x1c\x54\x77\xc4\x4d\xa7\x37\xc5\xd9\x6b\x38\x3a\
\x51\x2c\x1a\x7a\x52\x04\x26\x8b\xc5\x33\xf8\xd8\x4a\x5c\xdc\x86\
\x93\x8e\x6f\x88\xbb\x91\x38\x7a\x44\x6c\x4e\xa7\xf0\xf5\x68\x10\
\x8b\x9a\x76\xf8\x98\x27\x0e\x1a\xf6\xc4\x41\xf9\x1b\xe2\x6e\x59\
\x6b\xdc\xa4\x57\x8a\xcd\x33\x14\xbe\x91\x62\x75\x34\x36\x06\xbb\
\x97\x70\x60\xee\x2c\x21\xb0\x43\xde\xd9\x13\x77\xb7\xac\xc3\x4d\
\xaf\xf6\xd8\xf4\xa3\xf0\xf5\xc3\xaa\x1f\x36\x06\xbb\x97\x71\xb1\
\xdb\xd9\x04\x94\xba\x74\x52\x0f\xdc\x2d\xfb\x3d\x8e\x2a\xb0\x2a\
\xa3\xf0\x95\x63\x55\x8e\x8d\xc1\xee\x25\x9c\x5c\x55\x4e\x20\x5d\
\x9f\x1d\x6d\x08\xa1\x72\x05\x8e\x2a\xb0\x6a\xd3\x81\x82\x57\x81\
\x55\x05\x36\x06\xbb\xaa\x4f\x71\xd1\xfe\xc9\x8e\x04\xb0\xd7\x3b\
\x87\x13\xc6\x92\x5b\x70\xd5\x06\xbb\x36\x14\xbc\x36\x58\xb5\xc1\
\xc6\x90\xc5\x4b\x38\xd9\xe3\xd9\xb6\x64\xd3\xf6\xd2\x7f\x6c\x46\
\x28\xd7\xad\x41\x45\xcb\x90\xc5\x4b\xb8\x19\xf8\x6c\x37\xac\x5a\
\x9c\x3b\x7b\x74\x0b\x42\x59\x70\x07\x2a\x62\x86\x2c\x5e\xc1\xd1\
\xa0\xf7\x0e\xa4\x79\x25\xa7\x7c\x7c\x73\x4f\x42\xfa\x5d\x0d\x2a\
\x62\x86\x2c\x16\x7f\x88\xa3\x5e\x2f\x5e\xd3\x85\xa6\xa5\x8e\xfd\
\x60\xec\xe6\x84\xf5\xd9\xbd\xa8\xa8\x19\xb2\x79\x0c\x57\xe6\xe2\
\xf9\xb7\x6c\xc9\x26\xcc\xc0\xeb\x3f\x7a\x64\x5b\xc2\x3b\x7b\x3d\
\x2a\xf7\xca\xeb\x25\x84\xfa\x87\xf7\x64\x43\xad\x86\xde\xb3\x48\
\xfc\x3c\x44\x18\x23\xc5\x2e\x43\xc1\x7b\x5d\xac\x26\x62\x93\x26\
\x9b\x05\xe3\x86\xe3\xae\xe4\xb8\xe3\x56\xcd\xf8\x70\xc6\x8c\x8f\
\x5a\xf5\xe8\xd1\xa3\x67\x8f\x8a\x03\xda\xe2\x69\xf9\xf9\xa8\xe8\
\xa5\xc9\xea\x8e\xe1\x84\xd2\x7e\xaf\xbd\x88\xd0\xaf\x17\xa1\xa2\
\x67\xc8\xea\xc5\x8f\x49\x80\x7f\xdd\x83\x8a\x81\x21\x2b\xb9\x83\
\xfc\xab\x3b\x43\x50\x31\x30\x64\x77\xff\x5a\xf2\xee\xfa\x19\xa8\
\x38\x18\xb2\x5b\xfe\x20\xf9\xf6\xee\xef\x50\xb1\x30\x04\x70\x3b\
\x79\xb6\xe6\x84\x5a\x54\x2c\x0c\x01\xbc\x33\x95\xfc\x3a\xe7\x23\
\x54\x3c\xd2\x04\xf1\xcb\x7f\x90\x4f\x0f\xde\x47\x6c\x4e\x5b\xc5\
\x86\x64\x69\x55\xd5\xec\x46\x42\xe8\xb4\x55\x45\x79\x4b\x02\x6a\
\x5c\x52\x35\x7f\x3e\x61\x94\x6d\x5e\x91\x49\xb3\x91\x0c\xf1\xbb\
\x5f\xf2\xe8\xcd\x36\x84\x37\x52\x9c\x7d\x71\xff\xf0\x52\xdc\x6c\
\xfe\xcb\x7f\x35\x88\xa3\x39\x37\x0d\xc2\xd1\x6e\xd7\x7c\x28\xce\
\x26\x12\x81\xee\x4b\x25\x6f\xe6\x66\xf0\x30\x52\xc2\xf8\x78\x38\
\x0e\xba\xdd\x52\x27\xa1\xfc\x63\x2f\x1c\x6c\xf3\x84\x84\x31\x91\
\x28\x9c\x21\xf9\xb2\x7c\x07\x7c\x8c\x94\x70\x5e\xea\x41\x50\x27\
\xae\x90\xd0\xfe\xd8\x92\x80\x52\x57\xac\x97\x50\x26\x12\x05\x33\
\x55\xf2\x63\xfd\xa1\x78\x19\x29\x21\xcd\xeb\x4f\x20\xe6\x5a\xf1\
\x31\xb9\x07\x81\xb4\x7d\x4c\x42\x9a\x48\x24\x76\xab\x97\xbc\xf8\
\x09\x7e\x46\x4a\x58\xab\xf7\x20\x88\xfb\xc5\xcf\xa7\xdd\x08\xa0\
\xd5\xeb\x12\xd6\x44\x6c\x0c\x01\xbd\x73\x07\xf9\x70\xcd\x58\xf2\
\xa5\xed\xb8\x5e\x64\xf7\xeb\x1f\xe3\xa7\xcf\x63\xa5\x64\x37\x76\
\x2f\xf2\xad\xe3\x42\xc9\xbd\x07\x53\x78\x1a\x29\xe1\xbd\x5e\x42\
\x36\xdf\x6b\x10\x6f\xb7\x91\xd5\x45\x12\xde\x44\x22\x32\x42\x72\
\xee\x5f\x2d\xf1\x35\x52\x3c\x9c\x4a\x16\x25\x33\xc4\x5f\x43\x7f\
\xb2\xc8\xac\x96\xf0\x26\x62\x63\x08\xec\x6f\x4f\x93\x63\x53\x86\
\xd6\x92\x57\xa3\xdb\x62\x77\xca\x76\xf8\x33\x95\x64\x31\xba\x2d\
\x71\x31\x04\xf7\x7f\xde\x25\xa7\x26\x0e\x5e\x4e\x7e\x95\x9d\x82\
\xdd\xc5\x44\x61\xf0\x9e\x58\x65\x7e\x42\x6c\x0c\xc1\xad\x1e\x52\
\x45\x0e\x3d\x74\xd4\x5a\xf2\xed\x07\x58\xed\xb2\x15\x91\x38\x06\
\xab\x23\x4b\x88\x8d\xc1\x41\xf5\x90\x95\xe4\xcc\xed\x27\xae\x27\
\xef\x06\x75\xc2\x66\x38\xd1\x18\x8e\xd5\x30\xe2\x63\x70\x31\xfd\
\xd8\x7a\x72\xe4\xaa\xb3\x1a\xc9\xbf\xf4\xde\xd8\x0c\x22\x1a\x7d\
\x33\xd8\xec\x47\x7c\x0c\x4e\x26\xfd\x8c\x9c\x90\xf3\x2f\x23\x11\
\x7a\x63\xd3\x9b\x88\xf4\xc2\xa2\x7d\x47\xe2\x63\x70\x73\xef\xb5\
\xe4\x40\xfd\xc9\x37\x93\x0c\x15\xd8\x94\x13\x91\x32\x2c\x2a\x88\
\x91\xc1\xd1\x25\x0f\x12\xbb\x2f\x87\xfc\x85\xa8\xd4\xe2\xa5\x03\
\x16\xad\x5a\x12\x91\xf6\x58\x74\xc0\x4b\x2d\x36\x06\x47\x72\xca\
\x3f\x89\xd9\xab\xfd\x27\x11\x99\x05\x78\x59\x88\x45\xcd\x32\x22\
\xb2\x18\x8b\x85\x78\x59\x80\x8d\xc1\x55\xed\x11\x8f\x11\xa7\xc6\
\x2b\x0f\xa9\x26\x3a\x0b\xf0\x52\x85\x4d\x15\x11\x59\x88\x45\x75\
\x23\x3e\x16\x60\x63\x70\xb6\xe6\xd8\x2b\x84\xd8\x2c\x3c\xf4\x8a\
\x06\x22\x54\x55\x8b\x8f\x4f\xb1\xf9\x84\x68\xac\xff\x1c\x8b\xfa\
\x79\xf8\x98\x8d\x8d\xc1\x9d\x5c\x79\xec\x1a\x62\xf2\x5c\xff\x97\
\x89\x54\xed\xcb\x78\x58\xf2\x16\x36\x4f\x13\x8d\x97\xd7\x60\xf3\
\x2c\x1e\x1a\x26\x61\x63\x08\xe3\xb1\x7d\xe7\x11\x87\xfa\x51\x47\
\x7c\x41\xc4\xc6\xe3\xe1\xe9\x46\x6c\xc6\x37\x10\x89\xc7\xb1\x1a\
\x87\x87\xc9\x4b\x89\x43\xf7\x7f\x4a\xf4\x66\xec\x43\xf4\xca\x6a\
\x24\xbc\x83\xb1\x7b\x4a\xa2\xb0\xa6\x3b\x56\xa5\x55\x12\xde\xcf\
\x88\x47\x8b\x7b\x24\x62\x4b\xcf\x4d\x13\x87\x31\x12\xda\x24\xb2\
\xe8\xdf\x28\x11\x18\x4d\x16\x3f\x91\xd0\xe6\xb4\x20\x2e\xe7\xac\
\x97\x08\xd5\xdf\xde\x95\x78\x74\x59\x26\x21\x35\xee\x42\x36\x7f\
\x15\x7f\x8b\xdb\x93\x85\x79\x5f\xc2\x1a\x41\x7c\x76\x7a\x41\x22\
\xf3\xe2\x4e\xc4\x66\x84\x84\x34\x9a\xac\x7a\xce\x17\x5f\x0d\x43\
\xc9\x6a\xf7\xb5\x12\xce\x93\x29\xe2\x34\xec\x13\x89\xc4\xec\x1f\
\x10\xa7\x6b\x24\x94\x47\x52\x64\xd7\x7f\xb5\x78\xba\x90\x00\x7e\
\xd8\x28\x61\x4c\x6f\x47\xbc\x5a\x5c\xb4\x42\xbc\x7d\x39\xaa\x25\
\xb1\x4a\x3d\x20\x21\x4c\x6c\x4d\x10\x87\xad\x12\x2f\x95\x04\x72\
\x4e\x83\xb8\xfb\x64\x73\x62\xd7\xe3\xee\x06\xf1\xf2\xde\x4f\x5b\
\x11\xbb\x5f\x37\x88\xab\x9b\x4a\x08\x66\xc7\x39\x12\x5e\xdd\x69\
\x04\xf4\xfd\x15\xe2\xea\x85\xce\xe4\x42\xff\x97\x25\xb4\xfa\xc7\
\x0f\x24\x27\xbe\x37\x53\x9c\xcc\x3f\x9e\xc0\xba\x8d\x6d\x90\x90\
\xde\x1e\x48\x60\xfd\x26\x89\x93\x55\x97\xa6\xc9\x91\x1f\x4c\x91\
\x50\x96\x55\x6e\x41\xae\x94\x9c\x31\x4f\x02\x5b\x3c\xaa\x15\x2e\
\x76\x1a\x5f\x2f\x21\xcc\x1c\x91\xc2\xc5\x61\x6f\x48\x60\x6b\x6e\
\xef\x49\x10\x29\x22\xb1\xe3\x69\x27\x75\xc6\xd1\xdb\xf7\xfe\x79\
\x0d\xb9\xb4\xdb\xb0\xfd\x7b\xf5\x6a\x8f\x5d\xcd\xc2\xea\x37\x1f\
\x9f\xdc\x88\xa3\xae\x47\x0d\xed\x53\xd6\x3d\x45\x50\xab\xaa\x17\
\xbc\xf2\xf8\x87\xb8\xda\x72\xf8\xe0\xde\x65\x9d\xb1\xab\x5b\x54\
\xfd\xfe\xf8\x17\x6a\x08\x24\x45\x44\x5a\x1d\x7b\xda\x7e\x29\x82\
\x5a\xf7\xe2\xd3\x4f\x2f\x20\x1f\x5a\x18\x6c\xa4\x96\xf0\x4a\x4a\
\x09\xa8\xb1\x8e\xf0\x4a\x4b\xb0\x91\x3a\x21\x3f\x7a\x9e\xf2\xf7\
\x95\x12\xc0\x82\xbb\x8e\x6c\x8d\x4a\x86\x14\x91\x2a\x1d\x34\x64\
\xff\x1d\x5b\xd1\x2c\x99\x3b\xe3\xcd\xa7\xdf\x11\x54\x52\xa4\x88\
\x5c\x7a\xdb\x5d\x76\xd9\x75\xdb\x1e\x69\x36\xd2\x30\x7b\xc6\x8c\
\x99\x33\x66\xad\x45\x25\x4a\x8a\x98\xa4\x3a\xf7\xec\xd1\xa3\x3b\
\x75\xb5\xb5\x75\xb5\x75\xb5\x75\xab\x67\xd7\xa2\x94\x52\x4a\x29\
\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\
\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\
\x52\x4a\xa9\x70\xfe\x1f\xfe\x43\x8a\x30\x46\x60\x94\x4b\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x09\x63\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x2e\
\x50\x4c\x54\x45\xff\xff\xff\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\
\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\
\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\
\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\
\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\
\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\
\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\
\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\
\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\
\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\
\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\
\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\
\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\
\xba\x94\xdd\xbc\x98\xde\xba\x94\xdd\xba\x94\xdd\xc1\x9f\xe0\xba\
\x94\xdd\xc6\xa7\xe3\xba\x94\xdd\xbc\x97\xde\xc8\xa9\xe4\xc6\xa7\
\xe3\xc2\xa0\xe1\xc6\xa6\xe3\xba\x94\xdd\xc6\xa7\xe3\xc6\xa7\xe3\
\xc0\x9d\xe0\xc6\xa6\xe3\xc7\xa8\xe3\xc6\xa6\xe3\xc4\xa3\xe2\xc7\
\xa9\xe4\xc7\xa9\xe4\xc7\xa8\xe3\xc8\xa9\xe4\xc8\xa9\xe4\xba\x94\
\xdd\xc6\xa7\xe3\xc6\xa7\xe3\xc7\xa8\xe3\xba\x94\xdd\xc6\xa6\xe3\
\xc8\xa9\xe4\xc6\xa7\xe3\xba\x94\xdd\xc7\xa8\xe3\xc7\xa9\xe4\xba\
\x94\xdd\xc8\xa9\xe4\xc7\xa8\xe3\xc7\xa8\xe3\xc8\xa9\xe4\xc6\xa7\
\xe3\xc8\xa9\xe4\xc5\xa5\xe2\xc7\xa9\xe4\xbc\x97\xde\xc7\xa8\xe3\
\xc6\xa7\xe3\xc8\xa9\xe4\xc6\xa7\xe3\xc6\xa6\xe3\xc6\xa7\xe3\xc6\
\xa6\xe3\xc7\xa9\xe4\xc7\xa8\xe3\xc6\xa6\xe3\xc8\xa9\xe4\xc6\xa6\
\xe3\xcb\xaf\xe6\xc7\xa8\xe3\xc8\xa9\xe4\xc6\xa6\xe3\xc6\xa7\xe3\
\xc7\xa8\xe3\xc6\xa7\xe3\xc7\xa8\xe3\xc5\xa5\xe2\xc7\xa8\xe3\xc7\
\xa8\xe3\xc6\xa7\xe3\xc7\xa8\xe3\xc8\xa9\xe4\xc6\xa7\xe3\xc6\xa7\
\xe3\xc6\xa7\xe3\xc6\xa6\xe3\xc7\xa9\xe4\xc4\xa3\xe2\xc6\xa6\xe3\
\xc7\xa9\xe4\xc7\xa9\xe4\xc6\xa7\xe3\xc7\xa8\xe3\xc6\xa7\xe3\xc7\
\xa8\xe3\xc7\xa8\xe3\xc6\xa6\xe3\xc6\xa7\xe3\xba\x94\xdd\xbe\x9b\
\xdf\xc4\xa4\xe2\xc8\xa9\xe4\xc0\x9e\xe0\xc7\xa8\xe3\xbb\x96\xde\
\xc1\x9f\xe1\xbd\x98\xde\xc3\xa2\xe1\xbf\x9c\xdf\xc5\xa5\xe2\xbc\
\x97\xde\xc2\xa0\xe1\xbf\x9c\xe0\xc5\xa4\xe2\xbe\x9a\xdf\xbe\x99\
\xdf\xc2\xa1\xe1\xc3\xa3\xe2\xbb\x95\xdd\xc5\xa6\xe3\xc6\xa6\xe3\
\xbd\x99\xde\xc4\xa3\xe2\xbc\x98\xde\xbd\x99\xdf\xc1\x9e\xe0\xff\
\xff\xff\x5d\x0a\x5e\xab\x00\x00\x00\x9d\x74\x52\x4e\x53\x00\x00\
\x24\x63\x84\x99\xb4\xcc\xe4\x4b\xa2\xe7\x15\xea\xf0\xed\xf9\x12\
\x93\xf6\xab\x6c\x36\x03\xa5\x1e\x21\x4e\x7b\xa8\xf3\x69\xfc\x57\
\x0c\x09\x1b\xc0\x9f\x39\x66\xc3\x96\x33\x06\x48\x3c\x42\xe1\xde\
\x75\x18\x5a\xd5\xdb\x45\x3f\xbd\x8a\x0f\x2d\x27\xcf\x30\xc9\x7e\
\xba\x72\xb7\x1c\x78\x87\x7f\x54\xd3\xb1\xd9\xfd\x16\x9a\x62\x60\
\x69\x91\x78\x34\xb6\xa2\x0e\xd9\xe4\xa5\xe9\xf3\xae\x79\x38\xb9\
\x5d\x45\xf8\x0b\xd2\xbf\xd7\x81\xee\xa8\x88\xe6\x49\xf5\x1f\xc1\
\x3e\xc4\x7f\xf0\x9a\x52\x3f\x1d\xdf\xae\x42\xfa\x56\x04\xbc\xe1\
\x2a\x4f\xa2\x66\x94\x19\xc9\x9f\x81\x9d\xeb\x75\x8b\x59\x23\xcc\
\x07\x4c\xcf\xd4\x72\xb1\x5f\x97\xb4\x2e\x6f\x03\x96\xf9\xc0\x00\
\x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x07\
\x74\x49\x4d\x45\x07\xdd\x09\x09\x15\x2b\x20\x45\x9f\x34\x90\x00\
\x00\x04\x01\x49\x44\x41\x54\x58\xc3\xed\x96\xf9\x57\x13\x57\x14\
\xc7\x2f\x31\x09\x08\x86\x45\x94\xb8\x50\x49\x02\x8a\x62\x04\xb1\
\x5a\xab\xa2\x28\xa0\xb8\x25\x62\xdd\x22\x21\x06\x04\xac\x46\x29\
\x50\x41\x62\x35\x09\x6a\xb0\x15\x6d\xc5\x05\x71\x7b\x78\x05\xab\
\x2c\xa2\xc6\xfd\xcf\xf3\xbd\x99\x4c\x98\xc9\x32\x8b\xbf\xf5\x9c\
\x7e\xcf\xc9\xcc\xe4\xcd\x7c\xbe\x73\xdf\xbb\xf7\xbd\x37\x00\xff\
\x2b\x41\x69\x82\x74\x73\xf4\x06\x63\x7a\x06\xc9\x48\x37\x1a\xf4\
\x73\x74\x42\xb3\x4a\x83\xb9\x99\x59\x44\xaa\xac\xcc\xb9\xaa\x0d\
\xe6\xe9\x4d\x51\x2a\x3b\x87\x1d\x73\xa3\xff\x4c\xfa\x79\x6a\x0c\
\xf2\xe6\xe7\xb3\xa7\xf3\x17\x2c\x2c\x30\xa7\x2d\x62\x97\x8b\x97\
\x2c\x2d\xfc\x61\x19\xd7\x38\x3f\x4f\x89\x37\x17\xb1\x97\x5a\x8c\
\x56\x1b\x17\x30\x6f\xc0\xae\x8a\xad\x46\x2e\xa6\x22\xb3\x2c\x5f\
\xb2\x9c\x0b\x76\x05\x43\x4a\x57\x1a\x56\x65\xb3\x7f\xe9\x65\x2b\
\x57\xdb\x59\x03\x77\x6f\x79\x89\x0c\xbf\x26\x3b\xda\xdd\xf2\x8a\
\x32\x93\x64\x0c\x73\x0c\xe5\x69\xc6\xe8\xc0\xac\x49\xc9\x17\x59\
\x08\x59\xbb\x8a\xa4\x50\x06\x3b\x58\x2a\xe9\xaf\x28\x05\xbf\x8e\
\x05\xf8\xa3\x2e\x97\xc8\xa8\x2c\x8f\x75\x72\x5d\x52\x7e\x3d\xbd\
\x63\xb0\xa7\xd9\x36\xc8\x19\xe8\xc0\xbe\x82\x9e\xd6\x27\xe1\x0b\
\xe8\x9b\x0b\x01\x74\xb2\x3c\xf9\x49\x07\x50\x48\xf3\x59\x90\xc0\
\xeb\xe8\xa0\x95\x01\x6c\xcc\x21\xf2\xca\xf9\x19\x40\x4f\x8b\x4a\
\x17\xc7\xb3\xc0\x37\x99\xa1\x22\x97\x28\x29\xb7\x02\x80\xf6\x62\
\x83\x4d\x6a\xb0\x99\x56\xfb\x16\xa8\xca\x56\xe4\x69\x1a\xb7\x42\
\xf1\x36\x42\x36\x4b\xf8\x6a\x9a\x40\xb2\x7d\x69\x86\x0a\x9e\x8e\
\xc3\x92\x1d\xb4\xb0\x2d\xd5\x62\x83\x1a\x55\xa4\x54\x35\x22\xbe\
\xf4\x3b\x78\x42\x4a\x67\x0d\x68\x91\x2a\x8d\x7e\x12\x19\x67\xa7\
\x90\x85\x98\x6c\xb5\x6a\x06\x30\xa6\xba\x6a\x13\xb1\xec\x14\x0c\
\x76\x11\x52\x0f\x66\x75\x23\xc8\xcb\x64\x87\x7a\x42\x76\x0b\x06\
\xe9\x84\x54\xc1\x46\x4d\xe1\xef\x81\x2a\x32\xba\x37\xca\xe7\x59\
\x48\x25\x40\xa6\x26\x83\x7d\x00\xfb\x9f\x39\x9c\xbc\x81\x95\x4e\
\x22\x28\xce\xd7\x64\x90\x5f\x0c\x07\x10\x1b\x78\x03\x5a\xda\x07\
\xa1\x5c\x5b\x06\x68\x0e\x7f\x41\x3c\xc4\x1b\x2c\x20\xa4\x1a\x6a\
\x35\x1a\x1c\x86\x23\x88\x47\x79\x03\x3a\x8f\xb6\x80\x41\x1b\xff\
\xfc\x18\xb8\x10\x8f\xf3\x06\x34\xa3\x06\x43\xa5\x36\x7e\xac\xd1\
\xed\x76\x60\x13\x6f\xa0\x3c\x85\xe3\x34\xfe\x02\x79\x79\x78\x03\
\xb5\x9c\x25\x7a\xfe\xf7\x25\x0a\xfa\xae\x08\x5e\x4d\xc4\x78\x8f\
\x30\x06\x1a\x34\x39\x35\x16\xe3\x85\x31\xa0\x59\xb0\xa9\xcd\xc2\
\xf4\xeb\x28\xeb\x16\x65\xe1\x04\xab\x83\x85\x6a\xf0\x99\xd9\xde\
\x7b\xa1\x19\xb1\x25\x56\x89\x27\xd5\x54\xe2\x9b\xb7\xa2\xe8\x5b\
\x45\x95\x68\x65\x0b\xba\xe2\x5c\x98\x11\xe3\xd8\xd6\x0e\xee\xd8\
\x5c\xa0\xb3\xf1\x14\xc0\x3e\x39\x7a\x7c\xfa\x1d\x4a\xf4\x2b\x40\
\x23\x0a\xb3\x11\xb6\xb1\x2d\xcb\x9a\x92\x8e\xcc\x4c\xbd\xc7\x38\
\x35\x40\x2b\xe2\x69\x61\x41\xa1\x7b\xd5\x19\xb0\x67\x25\x7f\xf7\
\xe8\xd4\x04\x26\xc8\xd7\x0e\x67\x11\xcf\x89\xd6\xc4\x2c\xbb\x2d\
\x71\x69\x8f\xbc\x79\xfe\xf2\x03\x26\x53\xc7\x6f\xae\x4e\x74\x74\
\xc5\x56\xd5\x3a\x42\x32\xa5\xcb\xf2\xf8\xc7\xe9\x17\x9f\x92\xc3\
\xbc\x8e\x23\x76\xcf\x2e\xeb\xbf\x4f\x46\x22\xec\x8d\x91\xc9\xcf\
\x5f\x46\xa7\xbf\xbe\x7d\x37\x31\x86\xca\x6a\x15\xed\x2c\xe7\x55\
\x3c\x1f\xaf\xf3\xe2\xad\xad\xd9\xc1\x9a\x5a\x9a\x54\x91\x4d\x3d\
\xbd\xf4\xe8\x68\x96\xec\xae\x17\x68\x53\x1f\x1c\xf1\xa8\xe0\xdb\
\xfc\x70\xb1\x13\xf1\x82\x74\x7b\x77\xfd\x81\x78\x09\xe0\x72\x9b\
\x22\x1f\x08\x42\xa8\x1f\xf1\x8a\x2b\xee\x0b\xe3\xaa\x8f\xcb\xeb\
\x35\x25\x87\xb6\x20\x40\x98\x16\xc2\xd5\x84\x6f\x1c\x7f\x00\xb1\
\x87\x9e\xe4\xc7\xa1\xc3\x0f\x70\x8e\x86\xe1\x87\x44\x0d\xd0\xfb\
\xd7\x01\xfe\xfc\x4b\x86\xf7\x39\x21\x74\x83\x9e\x07\x20\x99\x06\
\x59\x22\x5c\xa1\xd3\x72\x11\x0c\x38\x99\xff\x20\x24\x97\x97\x26\
\xb3\xf1\x66\x2a\x96\xcb\xf4\xad\x0e\x7a\xf1\x37\xa4\x52\x50\x48\
\xe3\x3f\x7d\x67\x7b\x25\x74\x67\xcb\xed\xa1\xe8\x4d\x4f\x10\x52\
\x6b\xe8\x0e\xf7\xcc\x95\xbb\xf4\xfa\x9e\xd7\x7d\x9f\x63\x86\xdd\
\x0f\xfc\xac\xa1\x87\xbb\x77\x67\x08\xe4\x14\xf2\x32\x26\xd0\xdf\
\xc0\xa7\x79\x84\x21\x1c\xd1\xfe\xb0\x9f\xf5\xc1\xe3\x0d\x81\x82\
\x9c\xe1\x00\x97\xef\x16\xaf\x5f\x30\xe8\xea\x1b\x1c\xe1\x62\x09\
\x84\x9d\x4a\x38\x53\xd7\x23\x9f\x90\x35\x6e\x20\x84\xda\xf2\x3d\
\xea\x52\x83\x73\x1d\x09\x3e\xf6\x49\x53\x80\xbe\xc7\x41\xc5\xe0\
\xa5\x7a\xf2\x34\xdc\x3d\xcc\x22\xe8\x1d\xee\x0e\x3f\x78\xa2\x0d\
\xfe\x4f\xe9\x1b\xea\x4a\xac\xe0\x7b\x4b\x6b\xdf\x00\x00\x00\x25\
\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\
\x32\x30\x31\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\x31\x3a\x34\x39\
\x3a\x30\x36\x2b\x30\x38\x3a\x30\x30\x9a\xca\x23\x76\x00\x00\x00\
\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\
\x00\x32\x30\x31\x33\x2d\x30\x39\x2d\x30\x39\x54\x32\x31\x3a\x34\
\x33\x3a\x33\x32\x2b\x30\x38\x3a\x30\x30\x8a\xd6\x32\xbc\x00\x00\
\x00\x43\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x2f\
\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\x61\x67\x65\x6d\
\x61\x67\x69\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\x64\x6f\x63\x2f\
\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\x37\x2f\x2f\x69\
\x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\x0a\x00\x00\x00\
\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\
\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\
\x2f\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\
\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x36\x34\
\xbc\xe0\xa9\x84\x00\x00\x00\x16\x74\x45\x58\x74\x54\x68\x75\x6d\
\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\
\x36\x34\x44\x4f\x69\x09\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\
\x75\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\
\x61\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\
\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\
\x31\x33\x37\x38\x37\x33\x34\x32\x31\x32\x50\xe4\x24\x6e\x00\x00\
\x00\x11\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\
\x65\x00\x32\x33\x30\x36\x42\x9d\x8b\xbe\x78\x00\x00\x00\x5f\x74\
\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\
\x6c\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\
\x6f\x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\
\x69\x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\
\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\
\x2f\x31\x31\x32\x36\x30\x2f\x31\x31\x32\x36\x30\x35\x33\x2e\x70\
\x6e\x67\x65\x58\x03\x64\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
\x60\x82\
\x00\x00\x04\xb3\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x01\x0a\x00\x00\x00\xb0\x08\x04\x00\x00\x00\x5d\xe4\xe8\xe5\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\
\x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\
\x59\x73\x00\x00\x01\x2c\x00\x00\x01\x2c\x00\x73\x88\xe9\x52\x00\
\x00\x00\x07\x74\x49\x4d\x45\x07\xde\x0c\x13\x12\x38\x1f\xe6\x89\
\x04\x9f\x00\x00\x01\xae\x49\x44\x41\x54\x78\xda\xed\xd4\xc1\x0d\
\xc2\x40\x10\x04\xc1\x35\x22\x3f\x62\x21\x34\x9c\xe0\xf1\xb6\x9a\
\xff\x59\xa2\x6a\x13\x98\x47\x6b\x8f\x59\x03\x17\x8f\xdd\x03\xb8\
\x1f\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\xfc\
\xb0\x72\xfc\x9b\xf7\xb5\x00\x9f\x82\x10\x05\x21\x0a\x42\x14\x84\
\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\
\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\
\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\
\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\
\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\
\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\
\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\
\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\
\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\
\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\
\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\
\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\
\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\
\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\
\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\
\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\
\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\
\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\
\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\
\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\
\x42\x14\x84\x28\x88\x63\xd6\xee\x09\xdc\x8d\x4f\x41\x88\x82\x10\
\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xcf\x39\xe7\x35\x9f\xdd\
\x33\xb8\x93\x2f\x8d\x3d\x15\x70\x17\xd8\xd5\x99\x00\x00\x00\x25\
\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\
\x32\x30\x31\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\x33\x3a\x35\x37\
\x3a\x30\x38\x2b\x30\x38\x3a\x30\x30\x75\xee\x02\x13\x00\x00\x00\
\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\
\x00\x32\x30\x31\x34\x2d\x31\x32\x2d\x31\x39\x54\x31\x38\x3a\x35\
\x36\x3a\x33\x31\x2b\x30\x38\x3a\x30\x30\x4a\x82\x46\xff\x00\x00\
\x00\x43\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x2f\
\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\x61\x67\x65\x6d\
\x61\x67\x69\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\x64\x6f\x63\x2f\
\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\x37\x2f\x2f\x69\
\x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\x0a\x00\x00\x00\
\x63\x74\x45\x58\x74\x73\x76\x67\x3a\x63\x6f\x6d\x6d\x65\x6e\x74\
\x00\x20\x47\x65\x6e\x65\x72\x61\x74\x6f\x72\x3a\x20\x41\x64\x6f\
\x62\x65\x20\x49\x6c\x6c\x75\x73\x74\x72\x61\x74\x6f\x72\x20\x31\
\x36\x2e\x30\x2e\x30\x2c\x20\x53\x56\x47\x20\x45\x78\x70\x6f\x72\
\x74\x20\x50\x6c\x75\x67\x2d\x49\x6e\x20\x2e\x20\x53\x56\x47\x20\
\x56\x65\x72\x73\x69\x6f\x6e\x3a\x20\x36\x2e\x30\x30\x20\x42\x75\
\x69\x6c\x64\x20\x30\x29\x20\x20\x72\x0b\x75\x96\x00\x00\x00\x18\
\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\
\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\
\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\
\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x31\x37\x36\
\xd9\xb3\x98\xc2\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\
\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\
\x32\x36\x36\x51\x1f\x47\x87\x00\x00\x00\x19\x74\x45\x58\x74\x54\
\x68\x75\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\
\x6d\x61\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\
\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\
\x00\x31\x34\x31\x38\x39\x38\x36\x35\x39\x31\x41\xa6\x15\xfd\x00\
\x00\x00\x10\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\
\x7a\x65\x00\x38\x33\x33\x42\x45\x5b\xa1\x63\x00\x00\x00\x5f\x74\
\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\
\x6c\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\
\x6f\x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\
\x69\x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\
\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\
\x2f\x31\x31\x38\x33\x30\x2f\x31\x31\x38\x33\x30\x37\x35\x2e\x70\
\x6e\x67\x99\xb2\xc0\x4e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
\x60\x82\
\x00\x00\x40\x5e\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x04\x69\x00\x00\x04\x69\x08\x04\x00\x00\x00\xd7\x1d\x92\x20\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\
\x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\
\x59\x73\x00\x00\x00\xc8\x00\x00\x00\xc8\x00\x63\xfa\xe7\xad\x00\
\x00\x00\x07\x74\x49\x4d\x45\x07\xdf\x0c\x0a\x16\x04\x2e\x25\xe0\
\x1e\x36\x00\x00\x3d\x4b\x49\x44\x41\x54\x78\xda\xed\xdd\x67\xa0\
\x65\x65\x7d\x3e\xec\x7b\x98\x19\x60\xe8\x0c\xe0\x00\x82\x48\x53\
\xc4\x02\x2a\x62\x07\x11\xdb\x2b\x11\x05\x83\x60\x23\xd6\xc4\x68\
\x2c\x51\x63\x62\x8c\x46\x4d\xf0\xaf\xd1\x68\x8c\xb1\xa1\x89\x0d\
\x15\x7b\x89\x11\x45\x41\x05\x15\xc1\xd8\x05\x51\x41\x45\x2c\xa8\
\x58\x11\x69\x0a\xef\x07\x24\x0a\x0c\x33\xe7\xcc\xde\x7b\xfd\x9e\
\xf5\xec\xeb\x3a\x5f\x28\x33\xfb\xb9\xd7\x99\x73\xf6\xb9\xe7\x29\
\x6b\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xd0\x90\x25\xd5\x01\x9a\xb3\x5e\x56\x64\xcb\x6c\x9f\x55\xb9\
\x5e\xb6\xcf\x8e\xd9\x29\x5b\x66\x93\x6c\x92\x4d\xb2\x69\x96\x55\
\x87\x03\x60\x0e\x5d\x92\x5f\xe7\x82\xfc\x3a\x17\xe6\xc7\x39\x27\
\xdf\xcb\x0f\xf3\xe3\x9c\x97\xf3\xf2\x8b\x5c\x92\x2b\xaa\xc3\xb5\
\x43\xa5\x49\x92\xf5\xb2\x65\x76\xce\xde\x39\x20\x77\xc9\xf6\xd5\
\x61\x00\x60\xc1\xce\xcc\x89\x39\x39\x5f\xc9\xb9\xb9\x60\xde\xeb\
\xcd\x7c\x57\x9a\x8d\xb3\x5b\xf6\xcf\x11\xb9\x7d\x75\x10\x00\x98\
\xd8\xfb\xf2\xee\x9c\x92\x73\x72\x69\x75\x90\x1a\xf3\x59\x69\x96\
\x67\x8f\xdc\x27\x4f\xc8\xaa\xea\x20\x00\x30\x75\x5f\xca\x2b\xf2\
\x91\x9c\x93\xcb\xab\x83\x0c\x6b\xde\x2a\xcd\xe6\x39\x20\x0f\xcf\
\xc1\xd5\x31\x00\x60\xe6\x5e\x9d\x37\xe7\xb4\x5c\x52\x1d\x63\x28\
\xf3\x53\x69\x36\xcd\x7e\x79\x6a\xee\x52\x1d\x03\x00\x06\xf5\xc6\
\xbc\x2a\x9f\x9b\x87\xc5\xa8\x79\xa8\x34\xeb\xe5\xd6\xf9\xbb\x1c\
\x5a\x1d\x03\x00\xca\xfc\x6b\x5e\x95\xb3\xaa\x43\xcc\x56\xef\x95\
\x66\xeb\x1c\x91\x97\x55\x87\x00\x80\x06\x9c\x93\xa7\xe4\xb8\xfc\
\xa6\x3a\xc6\xac\xf4\x5c\x69\x76\xcf\x33\xf2\x67\xd5\x21\x00\xa0\
\x29\xcf\xca\xab\xf2\x93\xea\x10\xb3\xd0\x6b\xa5\xb9\x6d\x5e\x9c\
\x3b\x54\x87\x00\x80\x26\xbd\x2e\xcf\xeb\x6f\x19\xaa\xc7\x4a\x73\
\xbb\xbc\x29\xbb\x55\x87\x00\x80\xa6\xbd\x27\x7f\x93\xb3\xab\x43\
\x4c\xd3\x7a\xd5\x01\xa6\xec\xd6\xf9\x62\x4e\x51\x68\x00\x60\x2d\
\x0e\xc9\x59\x39\x26\x3b\x55\xc7\x98\x9e\x9e\x2a\xcd\xce\xf9\x48\
\xfe\x37\x7b\x55\xc7\x00\x80\x91\x78\x70\xbe\x93\x17\x67\x8b\xea\
\x18\xd3\xd1\xcb\xc2\xd3\xa6\x79\x7a\x9e\x5e\x1d\x02\x00\x46\xe9\
\x11\x79\x63\x7e\x57\x1d\x62\x52\x3d\x54\x9a\x25\x79\x40\x8e\xad\
\x0e\x01\x00\x23\x76\x51\x0e\xc8\xa9\xd5\x21\x26\x33\xfe\x85\xa7\
\x9d\xf2\x19\x85\x06\x00\x26\xb2\x22\x9f\xc9\x2b\xb2\x69\x75\x8c\
\x49\x8c\x7b\x96\x66\x69\x1e\x93\xff\xa8\x0e\x01\x00\xdd\xb8\x57\
\x3e\x5c\x1d\x61\x5d\x8d\xb9\xd2\xec\x94\x13\xb2\x6b\x75\x08\x00\
\xe8\xca\x9b\xf3\x97\xb9\xa0\x3a\xc4\xba\x18\x6f\xa5\x39\xdc\x72\
\x13\x00\xcc\xc4\xbe\xf9\x6c\x75\x84\xc5\x1b\xe7\x5e\x9a\xcd\xf2\
\x0e\x85\x06\x00\x66\xe4\xb4\xfc\xfd\xf8\x1a\xc2\x18\x67\x69\xf6\
\xcc\xe9\xd5\x11\x00\xa0\x73\xa7\xe6\xde\xf9\x59\x75\x88\xc5\x18\
\x5d\x07\xcb\xfd\x15\x1a\x00\x98\xb9\xdb\xe6\xa7\xd9\xbb\x3a\xc4\
\x62\x8c\xab\xd2\x2c\xcd\x8b\xf2\xce\xea\x10\x00\x30\x27\xbe\x90\
\x87\x56\x47\x58\xb8\xa5\xd5\x01\x16\x61\xe3\x1c\x97\x07\x55\x87\
\x00\x80\x39\x72\x48\x96\xe5\xe3\xd5\x21\x16\x66\x3c\x7b\x69\xb6\
\xcd\xe9\x59\x59\x1d\x02\x00\xe6\xce\x3b\xf3\x90\x5c\x52\x1d\x62\
\xed\xc6\x52\x69\x6e\x9a\xaf\x56\x47\x00\x80\x39\x75\x66\xee\xd8\
\xfe\x56\xe1\x71\x54\x9a\x7d\xc6\x78\x3e\x1e\x00\xba\x71\x59\x76\
\xcc\x8f\xaa\x43\xac\xd9\x18\xb6\x07\xdf\x49\xa1\x01\x80\x52\xcb\
\x73\x5e\x76\xa8\x0e\xb1\x66\xed\x57\x9a\xbb\xe7\xe4\xea\x08\x00\
\x40\xce\xcd\x2e\xd5\x11\xd6\xa4\xf5\x85\xa7\xbb\xe7\xf8\xea\x08\
\x00\xc0\xef\xed\x92\x6f\x57\x47\xb8\x2e\x6d\x57\x9a\x3b\x99\xa1\
\x01\x80\xa6\xec\x90\xef\x57\x47\x58\xbd\x96\x2b\x8d\x4d\xc1\x00\
\xd0\x9e\x55\xf9\x71\x75\x84\xd5\x69\xb7\xd2\x38\xb6\x0d\x00\x2d\
\xba\x28\xdb\xe5\x97\xd5\x21\xae\xad\xd5\xed\xc1\xdb\x2a\x34\x00\
\xd0\xa4\x15\x39\x31\xcb\xab\x43\x5c\x5b\x9b\x0f\x44\xd8\x38\x67\
\x65\x45\x75\x08\x00\x60\xb5\xb6\xcb\x4e\x79\x6f\x75\x88\x6b\x6a\
\xb1\xd2\x2c\xcd\x71\xd9\xb3\x3a\x04\x00\x70\x9d\xf6\xca\x6f\x5b\
\x3b\xc2\xd3\x62\xa5\x79\xa1\x87\x53\x02\x40\xe3\xee\x9a\xaf\xe4\
\x6b\xd5\x21\xfe\x58\x7b\xdb\x83\xef\x9f\x77\x56\x47\x00\x00\x16\
\xe0\x26\x39\xb3\x3a\xc2\x1f\xb4\x56\x69\xf6\xcc\xe9\xd5\x11\x00\
\x80\x05\xda\x2c\x17\x54\x47\xb8\x4a\x5b\x27\x9e\x36\x53\x68\x00\
\x60\x44\xde\xde\xce\xe4\x48\x5b\x7b\x69\x8e\xb1\x2d\x18\x00\x46\
\x64\xb7\x9c\x97\xff\xad\x0e\x71\xa5\x66\xba\x55\x92\xc3\x73\x6c\
\x75\x04\x00\x60\x91\x6e\x9a\x33\xaa\x23\x24\x2d\x55\x9a\x9d\xf2\
\x9d\xea\x08\x00\xc0\xa2\x5d\x9c\x2d\x72\x49\x75\x88\x76\x16\x9e\
\x96\xe6\xb3\x59\x59\x1d\x02\x00\x58\xb4\x65\xd9\x24\x1f\xae\x0e\
\xd1\xce\xf6\xe0\xc7\x64\xd7\xea\x08\x00\xc0\x3a\x79\x52\xf6\xad\
\x8e\xd0\xca\xc2\x93\x45\x27\x00\x18\xb7\x0d\xab\x17\x9f\x5a\x58\
\x78\x5a\x92\x0f\xe7\xfa\xd5\x21\x00\x80\x09\x5c\x9a\x93\x6a\x03\
\xb4\x30\x4b\xe3\xa4\x13\x00\x8c\xdf\x9e\xb5\x0f\x48\xa8\xaf\x34\
\x9b\xe6\x57\xd5\x11\x00\x80\x89\x7d\x31\xb7\xac\x1c\xbe\x7e\x7b\
\xf0\xd3\xab\x03\x00\x00\x53\xb0\x77\xee\x55\x39\x7c\xf5\x2c\xcd\
\xce\xf9\x56\x71\x02\x00\x60\x5a\x0a\x37\x09\x57\x6f\x0f\x7e\x47\
\x76\x29\x4e\x00\x00\x4c\xcb\xcf\xf2\x99\xaa\xa1\x6b\x67\x69\x6e\
\xdd\xca\x73\x21\x00\x80\xa9\xd8\x32\xbf\xa8\x19\xb8\x76\x96\xe6\
\xb8\x6c\x5b\x3a\x3e\x00\x30\x5d\x17\xe7\x13\x35\x03\x57\xce\xd2\
\xdc\x2e\xa7\x14\x8e\x0e\x00\xcc\xc2\xd6\xf9\x69\xc5\xb0\x95\xb3\
\x34\x1f\xf3\x54\x27\x00\xe8\xce\xe5\x39\xa1\x62\xd8\xba\x59\x9a\
\xdb\xd6\x6d\x20\x02\x00\x66\x68\xab\xfc\x6c\xf8\x41\xeb\x66\x69\
\xde\x9e\x1d\xcb\xc6\x06\x00\x66\xe7\xfc\x7c\x7a\xf8\x41\xab\x66\
\x69\x76\xcf\x37\x8a\x46\x06\x00\x66\x6d\x45\x2e\x1e\x7a\xc8\xaa\
\xbb\x07\x3f\xa3\x68\x5c\x00\x60\xf6\x0e\x19\x7e\xc8\x9a\x59\x9a\
\xad\xf3\x93\x92\x71\x01\x80\x61\x2c\xcd\xe5\xc3\x0e\x58\x33\x4b\
\x73\x44\xc9\xa8\x00\xc0\x50\xf6\x1e\x7a\xc0\x8a\xed\xc1\xeb\x39\
\xeb\x04\x00\x9d\xdb\x22\xef\x1c\x76\xc0\x8a\x85\xa7\xdb\xe4\xb4\
\x82\x51\x01\x80\x21\x0d\xfc\x68\x84\x8a\x85\xa7\xbf\x2b\x18\x13\
\x00\x18\xd6\xc0\x5b\x84\x87\x9f\xa5\xd9\x34\xbf\x1a\x7c\x4c\x00\
\x60\x68\xe7\x67\x9b\x21\x87\x1b\x7e\x96\x66\xbf\xc1\x47\x04\x00\
\x86\xb7\x75\x76\x18\x72\xb8\xe1\x2b\xcd\x53\x07\x1f\x11\x00\xa8\
\x30\xe8\xd2\xd3\xd0\x0b\x4f\x9b\x0f\xbb\x55\x08\x00\x28\xf3\xeb\
\x6c\x3a\xdc\x60\x43\xcf\xd2\x1c\x30\xf0\x78\x00\x40\x95\x4d\x72\
\x83\xe1\x06\x1b\xba\xd2\x3c\x7c\xe0\xf1\x00\x80\x3a\x77\x1b\x6e\
\xa8\x61\x17\x9e\x96\xe7\xd2\x41\xc7\x03\x00\x2a\xfd\x6f\x6e\x33\
\xd4\x50\xc3\xce\xd2\xec\x31\xe8\x68\x00\x40\xad\x7d\xb2\xf1\x50\
\x43\x0d\x5b\x69\xee\x33\xe8\x68\x00\x40\xb5\xbd\x86\x1a\x68\xd8\
\x67\x3c\xbd\x23\x9b\x0c\x3a\x1e\x00\x50\xeb\x67\xf9\xc8\x30\x03\
\x0d\xb9\x97\x66\xe3\xfc\x7a\xc0\xd1\x00\x80\x7a\x3f\xcd\xd6\xc3\
\x0c\x34\xe4\xc2\xd3\x6e\x03\x8e\x05\x00\xb4\x60\xab\xa1\x56\x68\
\x86\xac\x34\xfb\x0f\x38\x16\x00\xd0\x86\xdd\x87\x19\x66\xc8\x4a\
\x73\xc4\x80\x63\x01\x00\x6d\xb8\xcb\x30\xc3\x0c\xb7\x97\x66\xbd\
\xfc\x6e\xb0\xb1\x00\x80\x56\x7c\x2c\x77\x1d\x62\x98\xe1\x2a\xcd\
\x56\x39\x7f\xb0\xb1\x00\x80\x76\x0c\xd2\x36\x86\x5b\x78\xda\x79\
\xb0\x91\x00\x80\xb9\x33\x5c\xa5\xd9\xbb\xfa\x52\x01\x80\x7e\x0d\
\x57\x69\x3c\x83\x1b\x00\x98\x99\xe1\xf6\xd2\x7c\x3f\xdb\x57\x5f\
\x2c\x00\x50\x60\x90\xb6\x31\x54\xa5\x71\xde\x09\x00\xe6\x55\x57\
\xdb\x83\x57\x0c\x34\x0e\x00\x30\x97\x86\xaa\x34\x5b\x56\x5f\x28\
\x00\xd0\xb3\xa1\x2a\x8d\x7d\x34\x00\xc0\x0c\x0d\x55\x69\x56\x55\
\x5f\x28\x00\xd0\xb3\xa1\x2a\xcd\xf5\xaa\x2f\x14\x00\xe8\x99\x85\
\x27\x00\xa0\x03\x43\x55\x9a\x1d\xab\x2f\x14\x00\xe8\xd9\x50\x95\
\x66\xa7\xea\x0b\x05\x00\x7a\xe6\x10\x37\x00\xd0\x81\xa1\x2a\xcd\
\x26\xd5\x17\x0a\x00\xf4\x4c\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\
\x18\xea\xb1\x95\x97\x65\x59\xf5\xa5\x02\x00\x25\xba\x7a\x12\xf7\
\x15\x03\x8d\x03\x00\xb4\xa6\xab\x27\x71\x03\x00\xcc\x90\x4a\x03\
\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\
\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\
\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\
\x00\x00\x1d\xf0\x7c\xec\xe9\xf0\x79\x04\x60\x12\xdb\xe5\xdc\xea\
\x08\x63\xe7\x47\xf1\xb4\xfc\xae\x3a\x00\x00\xcc\x33\x0b\x4f\x00\
\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\
\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\
\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\
\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\
\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\
\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\
\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\
\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\
\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\
\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\
\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\
\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\
\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\
\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\
\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\
\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\
\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\
\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\
\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\
\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\
\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\
\x00\x3a\xa0\xd2\x00\x00\x1d\x58\x56\x1d\x00\x80\xa6\xac\x97\x15\
\x59\x99\xad\x72\xbd\x6c\x97\x2d\xb3\x55\x36\xcf\x06\xd9\x20\xbf\
\xcb\xc5\xb9\x38\xe7\xe7\xa7\xf9\x69\x7e\x98\x9f\xe4\x67\xf9\x55\
\x2e\xab\x8e\x0a\x7f\x4c\xa5\x01\x20\xd9\x38\x37\xcc\x2d\x73\xfb\
\xdc\x33\xbb\x2e\xe2\x77\x7d\x30\x1f\xcf\xe7\x72\x46\x7e\x92\xdf\
\x55\x5f\x00\x2c\x19\x68\x9c\x2b\xaa\x2f\x74\xc6\x96\xf9\x76\x06\
\x46\x69\xcb\xdc\x2a\x07\xe5\x31\x59\x31\xe1\xeb\x9c\x90\xb7\xe4\
\xe4\x7c\x3b\xbf\xad\xbe\xa0\xd1\xda\x21\xe7\x56\x47\x98\xa1\x41\
\xda\x86\x4a\x33\x1d\x2a\x0d\x30\x2e\x4b\xb2\x5b\x0e\xcd\x5f\x67\
\xd5\x94\x5f\xf7\xad\x79\x43\x3e\x95\x5f\x57\x5f\xde\x08\xa9\x34\
\xe3\x18\x24\x2a\x0d\x40\x3b\x76\xc9\x91\xf9\xc7\x99\x8e\x70\x42\
\x5e\x98\x93\x72\x51\xf5\x85\x8e\x8a\x4a\x33\x8e\x41\xa2\xd2\x00\
\xb4\x60\xd3\x1c\x9c\x97\x65\xcb\x81\x46\x7b\x4d\x5e\x9c\x33\xab\
\x2f\x79\x34\x54\x9a\x89\x39\xc4\x0d\x30\x1f\x6e\x98\x97\xe7\x57\
\x39\x66\xb0\x42\x93\x3c\x3a\x5f\xcb\xf7\x72\x9f\x2c\xaf\xbe\x74\
\xe6\x83\x4a\x03\xd0\xbf\x5b\xe4\xa3\xf9\x76\x1e\x5b\x30\xf2\xf5\
\xf3\xfe\x5c\x9a\xbf\x98\x78\xfb\x31\xac\x95\x4a\x03\xd0\xb7\xbd\
\xf2\xc9\x7c\x29\x07\x96\x66\x78\x55\x7e\x93\xc7\x64\xc3\xea\x4f\
\x05\x7d\x53\x69\x00\xfa\xb5\x73\xde\x97\x2f\xe6\x8e\xd5\x31\x92\
\x24\xaf\xcc\x45\x39\xcc\x4f\x1d\x66\xc7\x17\x17\x40\x9f\x36\xc9\
\x51\xf9\x56\x0e\xae\x8e\x71\x35\x6f\xcf\x4f\xb2\x4f\x75\x08\x7a\
\xa5\xd2\x00\xf4\xe8\x3e\xb9\x20\x7f\x5f\x1d\x62\x35\x56\xe6\xb3\
\x39\x26\x2b\xab\x63\xd0\x23\x95\x06\xa0\x37\xdb\xe5\xf8\xbc\xbf\
\x3a\xc4\x1a\x3c\x38\x3f\xcd\x21\xd5\x21\xe8\x8f\x4a\x03\xd0\x97\
\x43\xf3\x83\xdc\xbd\x3a\xc4\x5a\xbd\x3b\xef\x1b\xf0\x38\x39\x73\
\x41\xa5\x01\xe8\xc7\x26\x79\x7b\xde\x55\x1d\x62\x81\x0e\xce\xcf\
\x72\x97\xea\x10\xf4\x44\xa5\x01\xe8\xc5\xcd\x72\x41\x0e\xab\x0e\
\xb1\x28\x1f\xcb\x33\xfc\x1c\x62\x5a\x7c\x29\x01\xf4\xe1\xf0\x7c\
\xa5\x3a\xc2\x3a\xf8\xe7\x9c\x9c\x2d\xaa\x43\xd0\x07\x95\x06\x60\
\xfc\xd6\xcb\x0b\x72\x6c\x75\x88\x75\x74\x87\xfc\x3c\x37\xae\x0e\
\x41\x0f\x54\x1a\x80\xb1\x5b\x91\xff\xce\xd3\xaa\x43\x4c\xe4\xcc\
\xec\x57\x1d\x81\xf1\x53\x69\x00\xc6\x6d\x65\xce\xcc\xbd\xab\x43\
\x4c\xec\x13\x39\xbc\x3a\x02\x63\xb7\xac\x3a\x00\x00\x13\xd8\x2e\
\xe7\x66\x69\x75\x88\xa9\x38\x36\x9b\xe5\x35\xd5\x21\x18\x33\xb3\
\x34\x00\xe3\xb5\x63\x7e\xd0\x49\xa1\x49\x92\xa3\xf3\x94\xea\x08\
\x8c\x99\x4a\x03\x30\x56\xd7\xcf\x77\xab\x23\x4c\xd9\x8b\xf2\xc4\
\xea\x08\x8c\x97\x4a\x03\x30\x4e\xd7\xcb\xf7\xaa\x23\xcc\xc0\xbf\
\xe5\xb1\xd5\x11\x18\x2b\x95\x06\x60\x8c\x36\xcb\x59\xd5\x11\x66\
\xe4\xe5\x79\x40\x75\x04\xc6\x49\xa5\x01\x18\x9f\xf5\xf3\xe9\x6c\
\x5a\x1d\x62\x66\xde\x96\xbb\x56\x47\x60\x8c\x54\x1a\x80\xf1\xf9\
\xaf\xdc\xb4\x3a\xc2\x4c\x9d\x90\x3d\xaa\x23\x30\x3e\x2a\x0d\xc0\
\xd8\xfc\x6d\x1e\x5c\x1d\x61\xe6\xbe\x96\x95\xd5\x11\x18\x1b\x95\
\x06\x60\x5c\xee\x9e\xe7\x57\x47\x18\xc4\x71\x1d\x1d\x4f\x67\x10\
\x2a\x0d\xc0\x98\xec\x94\xe3\xab\x23\x0c\x64\xdf\x3c\xa7\x3a\x02\
\xe3\xa2\xd2\x00\x8c\xc7\xf2\x9c\x5c\x1d\x61\x40\xcf\xc8\x81\xd5\
\x11\x18\x13\x95\x06\x60\x3c\x9e\x9b\x1d\xab\x23\x0c\xea\xa3\xb9\
\x5e\x75\x04\xc6\x43\xa5\x01\x18\x8b\xdb\xe5\xef\xaa\x23\x0c\xee\
\x2d\xd5\x01\x18\x0f\x95\x06\x60\x1c\x36\xce\x29\xd5\x11\x0a\x1c\
\x98\x23\xaa\x23\x30\x16\x2a\x0d\xc0\x38\x3c\xb7\x3a\x40\x91\xb7\
\x5a\x7c\x62\x61\x54\x1a\x80\x31\xd8\x2b\x4f\xae\x8e\x50\xe6\x15\
\xd5\x01\x18\x07\x95\x06\xa0\x7d\xeb\xe5\xc3\xd5\x11\x0a\xdd\x3f\
\xfb\x55\x47\x60\x0c\x54\x1a\x80\xf6\x3d\x20\xab\xaa\x23\x94\xfa\
\x68\x96\x55\x47\xa0\x7d\x2a\x0d\x40\xeb\x36\xc9\x5b\xab\x23\x14\
\x5b\x9e\x23\xab\x23\xd0\x3e\x95\x06\xa0\x75\x8f\xad\x0e\xd0\x80\
\xff\xcc\xc6\xd5\x11\x68\x9d\x4a\x03\xd0\xb6\x95\x79\x41\x75\x84\
\x26\xfc\x65\x75\x00\x5a\xa7\xd2\x00\xb4\xed\x89\xd5\x01\x1a\xf1\
\xc2\x6c\x56\x1d\x81\xb6\xa9\x34\x00\x2d\xdb\x3c\xcf\xaa\x8e\xd0\
\x8c\x47\x56\x07\xa0\x6d\x2a\x0d\x40\xcb\xfe\xbc\x3a\x40\x43\x5e\
\x9c\x8d\xaa\x23\xd0\x32\x95\x06\xa0\x5d\x1b\xe4\x5f\xaa\x23\x34\
\xe5\xbe\xd5\x01\x68\x99\x4a\x03\xd0\xae\x7b\x57\x07\x68\xcc\xeb\
\xb3\xa4\x3a\x02\xed\x52\x69\x00\xda\xf5\x1f\xd5\x01\x1a\xb3\x7e\
\xf6\xa9\x8e\x40\xbb\x54\x1a\x80\x56\xdd\x28\xdb\x57\x47\x68\xce\
\xdf\x54\x07\xa0\x5d\x2a\x0d\x40\xab\xdc\x62\xef\xda\x0e\xcb\x16\
\xd5\x11\x68\x95\x4a\x03\xd0\xa6\xe5\xee\x48\xb3\x5a\xf7\xa8\x0e\
\x40\xab\x54\x1a\x80\x36\xd9\x35\xb2\x7a\xee\xd3\xc3\x75\x50\x69\
\x00\xda\xe4\x8e\x34\xab\x77\xd3\x6c\x5d\x1d\x81\x36\xa9\x34\x00\
\x2d\x5a\x96\x87\x55\x47\x68\xd6\x01\xd5\x01\x68\x93\x4a\x03\xd0\
\xa2\x9b\x56\x07\x68\xd8\xe3\xab\x03\xd0\x26\x95\x06\xa0\x45\x7f\
\x52\x1d\xa0\x61\x77\xce\x86\xd5\x11\x68\x91\x4a\x03\xd0\x22\xa7\
\x9d\xd6\x64\xcf\xea\x00\xb4\x48\xa5\x01\x68\xcf\xe6\xd9\xa6\x3a\
\x42\xd3\x0e\xaa\x0e\x40\x8b\x54\x1a\x80\xf6\xdc\xa4\x3a\x40\xe3\
\x1e\x5a\x1d\x80\x16\xa9\x34\x00\xed\x39\xb0\x3a\x40\xe3\x76\xb7\
\x9b\x86\x6b\x53\x69\x00\xda\x73\x58\x75\x80\xe6\xed\x58\x1d\x80\
\xf6\xa8\x34\x00\xad\x59\x9a\xbd\xaa\x23\x34\xef\xe6\xd5\x01\x68\
\x8f\x4a\x03\xd0\x1a\x77\xc7\x5d\xbb\xbb\x54\x07\xa0\x3d\x2a\x0d\
\x40\x6b\x6e\x50\x1d\x60\x04\x3c\xbc\x92\x6b\x51\x69\x00\x5a\xe3\
\xae\x2b\x6b\x77\x63\x3f\xbf\xb8\x26\x5f\x12\x00\xad\xf1\x0c\xee\
\x85\xd8\xa4\x3a\x00\xad\x51\x69\x00\x5a\x73\xcb\xea\x00\xa3\xb0\
\x65\x75\x00\x5a\xa3\xd2\x00\xb4\xe6\x76\xd5\x01\x46\x61\x55\x75\
\x00\x5a\xa3\xd2\x00\xb4\x65\xbd\x2c\xad\x8e\x30\x0a\x3b\x54\x07\
\xa0\x35\x2a\x0d\x40\x5b\xd6\xaf\x0e\x30\x12\xdb\x56\x07\xa0\x35\
\x2a\x0d\x40\x5b\x56\x54\x07\x18\x89\xeb\x57\x07\xa0\x35\x2a\x0d\
\x40\x5b\x3c\xbd\x68\x61\xae\x57\x1d\x80\xd6\xa8\x34\x00\x6d\xd9\
\xa0\x3a\xc0\x48\x38\xf1\xc4\x35\xa8\x34\x00\x6d\x31\x4b\xb3\x30\
\x2a\x0d\xd7\xa0\xd2\x00\xb4\xc5\xfb\xf2\xc2\xa8\x7e\x5c\x83\x6f\
\x1d\x80\xb6\x2c\xa9\x0e\x30\x12\x8e\xba\x73\x0d\x2a\x0d\x00\x63\
\x74\x71\x75\x00\x5a\xa3\xd2\x00\xb4\xe5\xd2\xea\x00\x23\xa1\xd2\
\x70\x0d\x2a\x0d\x40\x5b\x54\x9a\x85\xf9\x55\x75\x00\x5a\xa3\xd2\
\x00\xb4\xc5\xec\xc3\xc2\xfc\xa8\x3a\x00\xad\x51\x69\x00\xda\x72\
\x51\x75\x80\x91\x38\xbf\x3a\x00\xad\x51\x69\x00\xda\x72\x49\x75\
\x80\x91\xf8\x5e\x75\x00\x5a\xa3\xd2\x00\xb4\xc5\x5e\x9a\x85\xf9\
\x7e\x75\x00\x5a\xa3\xd2\x00\xb4\xe5\x0a\x4b\x2a\x0b\x62\x2f\x0d\
\xd7\xa0\xd2\x00\xb4\xe6\xf3\xd5\x01\x46\xe1\xbc\xea\x00\xb4\x46\
\xa5\x01\x68\xcd\x67\xaa\x03\x8c\xc2\x2f\xaa\x03\xd0\x1a\x95\x06\
\xa0\x35\x5f\xae\x0e\x30\x0a\x0e\xbb\x73\x0d\x2a\x0d\x40\x6b\xbe\
\x5e\x1d\x60\x04\x4e\xca\x15\xd5\x11\x68\x8d\x4a\x03\xd0\x9a\x73\
\xab\x03\x8c\xc0\x89\xd5\x01\x68\x8f\x4a\x03\xd0\x1a\xb7\xfa\x5f\
\xbb\x4f\x57\x07\xa0\x3d\x2a\x0d\x40\x6b\xae\xc8\x07\xab\x23\x34\
\xef\xf4\xea\x00\xb4\x47\xa5\x01\x68\xcf\x7b\xab\x03\x34\xcf\x5d\
\x69\xb8\x16\x95\x06\xa0\x3d\xa7\x54\x07\x68\xdc\x09\xf9\x5d\x75\
\x04\xda\xa3\xd2\x00\xb4\xe7\x9b\xd5\x01\x1a\xf7\x96\xea\x00\xb4\
\x48\xa5\x01\x68\xcf\x25\x39\xad\x3a\x42\xd3\x4e\xaa\x0e\x40\x8b\
\x54\x1a\x80\x16\x1d\x5d\x1d\xa0\x69\xdf\xae\x0e\x40\x8b\x54\x1a\
\x80\x16\x1d\x5f\x1d\xa0\x61\x6f\xb0\x93\x86\xd5\x51\x69\x00\x5a\
\xf4\xbd\xea\x00\x0d\x7b\x5d\x75\x00\xda\xa4\xd2\x00\xb4\xe8\x8a\
\x3c\xb3\x3a\x42\xb3\xec\x33\x62\xb5\x54\x1a\x80\x36\x1d\x5b\x1d\
\xa0\x51\xef\xcd\x45\xd5\x11\x68\x93\x4a\x03\xd0\xa6\xb3\xf3\xdb\
\xea\x08\x4d\xfa\xd7\xea\x00\xb4\x4a\xa5\x01\x68\xd3\x15\x79\x7c\
\x75\x84\x26\x9d\x5a\x1d\x80\x56\xa9\x34\x00\xad\x7a\x57\x75\x80\
\x06\x1d\x95\xcb\xaa\x23\xd0\x2a\x95\x06\xa0\x55\x3f\xc9\x7f\x57\
\x47\x68\x8e\xfb\xf5\x70\x9d\x54\x1a\x80\x76\x3d\xa7\x3a\x40\x63\
\x4e\xcb\x77\xab\x23\xd0\x2e\x95\x06\xa0\x5d\x9f\xcf\x2f\xaa\x23\
\x34\xe5\xaf\xab\x03\xd0\x32\x95\x06\xa0\x5d\x57\xe4\xc8\xea\x08\
\x0d\xf9\xb5\x27\x94\xb3\x26\x2a\x0d\x40\xcb\x8e\xab\x0e\xd0\x90\
\x07\xe6\x8a\xea\x08\xb4\x4c\xa5\x01\x68\xd9\x6f\x73\x44\x75\x84\
\x66\xa8\x77\xac\x91\x4a\x03\xd0\x36\x47\xb9\xaf\x74\x3f\x0f\xab\
\x64\xcd\x54\x1a\x80\xb6\xfd\x36\xf7\xad\x8e\xd0\x80\x1f\x3b\xd0\
\xce\xda\xa8\x34\x00\xad\xfb\xef\x9c\x5b\x1d\xa1\xdc\xa1\xb9\xbc\
\x3a\x02\xad\x53\x69\x00\x5a\x77\x45\xee\x5f\x1d\xa1\xd8\x87\xf3\
\xa9\xea\x08\xb4\x4f\xa5\x01\x68\xdf\x67\xf3\xa6\xea\x08\xa5\xfe\
\xbc\x3a\x00\x63\xa0\xd2\x00\x8c\xc1\x93\xab\x03\x14\x7a\x9a\x7b\
\x06\xb3\x10\x2a\x0d\xc0\x18\x9c\x9f\x07\x55\x47\x28\xf2\x9b\xfc\
\x5b\x75\x04\xc6\x41\xa5\x01\x18\x87\xb7\xe6\x93\xd5\x11\x4a\xdc\
\xc9\xb3\xb7\x59\x18\x95\x06\x60\x2c\x0e\xaf\x0e\x50\xe0\x1f\xf2\
\x85\xea\x08\x8c\x85\x4a\x03\x30\x16\x3f\x98\xbb\x3b\xd4\x7c\x2f\
\x2f\xa8\x8e\xc0\x78\xa8\x34\x00\xe3\xf1\xfe\xbc\xb6\x3a\xc2\xa0\
\xee\x98\xdf\x56\x47\x60\x3c\x54\x1a\x80\x31\xf9\xab\xfc\xb4\x3a\
\xc2\x60\xfe\xc4\x49\x27\x16\x43\xa5\x01\x18\x93\x4b\xb2\x4f\x75\
\x84\x81\x3c\x37\xff\x53\x1d\x81\x71\x59\x32\xd0\x38\xbd\x3f\x10\
\x7e\x99\xc7\xa9\x75\x66\x49\xd6\xcf\x86\xd9\x30\x1b\x64\x59\x92\
\xdf\xe5\xd2\x5c\x9c\x8b\x73\x89\x5b\xb2\xd3\x84\xfd\xf2\x89\xea\
\x08\x33\x77\x42\xee\x31\x67\xdf\x6f\x3b\x74\xfd\xd8\x8b\x41\xda\
\x86\x4a\x33\x1d\x2a\x4d\x1f\x36\xcb\x6e\xd9\x27\x77\xca\xfe\xb9\
\xc1\x75\xfc\x8a\x9f\xe7\xe4\x7c\x2a\x9f\xcd\xd7\xf3\x23\x7f\xe6\
\x14\x7a\x54\x5e\x53\x1d\x61\xa6\x7e\x95\xeb\xe7\xd7\xd5\x21\x06\
\xa6\xd2\x8c\x63\x90\xa8\x34\xb4\x6d\x79\x6e\x96\x43\xf3\x84\x6c\
\xb6\xa8\xdf\x75\x42\x8e\xc9\xc7\xf3\xdd\x39\xfb\x9b\x24\xad\x78\
\x6e\x9e\x59\x1d\x61\x86\xb6\xcf\x0f\xab\x23\x0c\x4e\xa5\x19\x8d\
\x2b\x3a\xff\x58\x5a\xfd\x09\x66\x1d\x2d\xc9\x4d\xf3\xb2\x09\xff\
\xf4\x5f\x94\x5b\xfa\x0a\x60\x70\x4b\xf2\xfa\xf2\x77\xbe\x59\x7d\
\xec\x51\xfd\xc9\x2d\xb1\x43\xf9\xe7\x7d\x96\x1f\x83\x30\x4b\x33\
\x1d\x66\x69\xc6\x68\x45\xee\x9b\xa3\xb3\xe9\x94\x5e\xed\xa8\xfc\
\x57\xbe\x55\x7d\x49\xcc\x95\xa5\x79\x7b\x0e\xad\x0e\x31\x03\xb7\
\x9a\xd3\x9b\xeb\x99\xa5\x19\x8d\xea\x7e\x38\xeb\x0f\x7f\x47\x1f\
\x9b\x4d\xf3\xd7\x33\xf8\x3a\x38\x2b\xf7\xc9\x06\xd5\x97\xc6\x1c\
\x59\x96\x0f\x97\xbf\xfb\x4d\xfb\xe3\xb6\xd5\x9f\xd4\x32\x66\x69\
\x26\xe6\x10\x37\xf3\x67\x45\x9e\x90\x5f\xe5\xc5\x33\x78\xe5\x5d\
\xf3\xfe\x5c\x9c\xa7\x64\xcb\xea\x4b\x64\x4e\xfc\x36\x07\xe5\x3d\
\xd5\x21\xa6\x6a\xdf\x9c\x5a\x1d\x81\xf1\x52\x69\x98\x2f\x4b\x72\
\x48\x7e\x93\x97\xce\x74\x8c\x17\xe5\x67\x79\x41\xae\x57\x7d\xa9\
\xcc\x85\xdf\xe6\xb0\xbc\xa9\x3a\xc4\xd4\xec\x9d\xcf\x56\x47\x60\
\xcc\x54\x1a\xe6\xc9\x4d\x72\x46\xde\x3d\xc8\x48\x4f\xcb\x8f\xf2\
\xc2\x6c\x5d\x7d\xc1\xcc\x81\xdf\xe5\xcf\x72\x54\x75\x88\xa9\xd8\
\x35\x5f\xaa\x8e\xc0\xb8\xa9\x34\xcc\x8b\x0d\xf2\xdc\x9c\x31\xe8\
\x49\x8a\xa7\xe6\x27\xf9\xfb\x6c\x52\x7d\xe1\x74\xef\x8a\xfc\x43\
\x1e\x53\x1d\x62\x42\xdf\xca\x36\xb6\xd7\x33\x29\x27\x9e\xa6\xc3\
\x89\xa7\xd6\xdd\x2a\x9f\x2b\x1b\xfb\x21\x39\xd6\xd7\x07\x33\x77\
\xd7\x9c\x50\x1d\x61\x9d\xbd\x3d\x47\xe6\x92\xea\x10\xe5\x9c\x78\
\x9a\x98\x59\x1a\xfa\xb7\x34\xcf\x28\x2c\x34\xc9\x31\x39\x3f\xb7\
\xa9\xfe\x24\xd0\xbd\x13\xb3\x6b\x2e\xac\x0e\xb1\x4e\x1e\x9f\xc3\
\x15\x1a\xa6\x41\xa5\xa1\x77\x3b\xe4\x8c\xfc\x73\x71\x86\x2d\x72\
\x5a\xde\x62\x67\x0d\x33\xf6\xad\x6c\x33\xc2\xad\xc2\x77\xcc\x7f\
\x54\x47\xa0\x17\x2a\x0d\x7d\xbb\x57\xce\xcd\x8d\xaa\x43\x24\x49\
\x1e\x98\x9f\xe4\xc1\x7d\xdd\x6e\x8a\xe6\x5c\x94\x23\x73\x58\x75\
\x88\x45\x38\x3e\x5b\xe5\xd3\xd5\x21\xe8\x87\x4a\x43\xbf\xd6\xcb\
\xb3\x73\x5c\x75\x88\xab\x39\x26\x9f\xcb\x0d\xab\x43\xd0\xb9\x77\
\x66\xa7\x7c\xb1\x3a\xc4\x82\x3c\x24\xf7\xcc\xcf\xaa\x43\xd0\x13\
\x95\x86\x5e\x6d\x9e\x8f\xe7\x1f\xab\x43\x5c\xcb\x2d\xf3\xed\x3c\
\xc6\x5c\x0d\x33\xf5\xdd\xdc\x2a\x8f\xa8\x0e\xb1\x16\x27\x67\xc7\
\xbc\xb9\x3a\x04\xbd\x71\xe2\x69\x3a\x9c\x78\x6a\xcd\xee\xf9\x46\
\x75\x84\x35\xf8\x52\x0e\xce\x77\xab\x43\xd0\xb9\x6d\xf3\xca\xdc\
\xaf\x3a\xc4\x75\xb8\x6f\xde\x5f\x1d\xa1\x41\x4e\x3c\x4d\xcc\x2c\
\x0d\x3d\xba\x4b\xd3\x85\x26\xd9\x2b\xe7\xe4\x88\xea\x10\x74\xee\
\xbc\x1c\x92\xfd\xf2\xeb\xea\x18\xd7\xf2\xdc\x6c\xaa\xd0\x30\x1b\
\x2a\x0d\xfd\x79\x68\x3e\x56\x1d\x61\x01\xde\x9a\x77\x67\xf3\xea\
\x10\x74\xee\xe4\x6c\x91\x07\x55\x87\xf8\x23\x6f\xcd\x0d\xf2\x8f\
\x0d\xd6\x2c\x58\x94\xea\x67\x80\xce\xfa\xc3\x93\xb8\xdb\xf1\xcc\
\xf2\xaf\x86\xc5\x7c\xec\x5b\xfd\xe9\x62\x0e\x6c\x90\x47\x96\x7f\
\xa5\x5f\x91\xf7\x37\x72\xf6\xb0\x5d\x9e\xc4\x3d\x1a\xd5\x9f\xcc\
\x59\x7f\xa8\x34\x6d\x58\x9a\x57\x97\x7f\x2d\x2c\xf6\xe3\x29\x36\
\x0b\x33\x80\x0d\xf2\xc0\xc2\xaf\xf2\x37\x65\x97\xea\x4f\xc0\x08\
\xa8\x34\xa3\x51\xfd\xc9\x9c\xf5\x87\x4a\xd3\x82\x0d\xf2\x81\xf2\
\xaf\x84\x75\xf9\xf8\x58\xb6\xac\xfe\xd4\x31\x17\x96\x66\xff\x7c\
\x66\xf0\xaf\xef\xbf\xcd\x36\xd5\x17\x3e\x12\x2a\xcd\xc4\x9c\x78\
\x9a\x0e\x27\x9e\xea\x6d\x9c\x93\x72\xab\xea\x10\xeb\x6c\x9f\xd2\
\x47\x36\x30\x4f\x76\xcc\x43\x07\x7a\x72\xf7\x27\xf2\xec\x7c\x2a\
\x97\x55\x5f\xf0\x68\x38\xf1\x34\x1a\xd5\xfd\x70\xd6\x1f\x66\x69\
\xaa\x6d\x9e\x6f\x97\x7f\x15\x4c\xf6\xf1\xb0\xea\x4f\x21\x73\x64\
\x69\xf6\xce\x4b\x67\xf8\xd5\xfc\xa5\x1c\x61\xee\x71\xd1\xcc\xd2\
\x4c\xcc\x2c\xcd\x74\x98\xa5\xa9\xb5\x55\xce\xee\xe0\xf4\xd0\x6b\
\xf3\xb8\x5c\x5a\x1d\x82\x39\xb2\x34\x37\xca\x7d\xf3\xc4\x6c\x3b\
\xc5\xd7\x3c\x36\xc7\xe4\x93\xf9\x65\xf5\xa5\x8d\x92\x59\x9a\x71\
\x0c\x12\x95\x86\x59\xda\x26\xe7\x66\x83\xea\x10\x53\xf1\xad\xdc\
\x21\x3f\xaa\x0e\xc1\xdc\xd9\x2c\xb7\xc8\x01\x39\x3c\x37\x9d\xe0\
\x35\xde\x92\xf7\xe6\xb3\x39\xd7\x3b\xe1\x04\x54\x9a\x71\x0c\x12\
\x95\x86\xd9\xd9\x26\x3f\xea\x6a\x95\xd6\xae\x1a\xaa\x2c\xcf\xd6\
\xd9\x3d\x37\xcf\x3e\xd9\x6f\x01\x27\x94\x2e\xcc\x69\xf9\x64\xbe\
\x90\xaf\xe7\xbb\xee\x34\x33\x15\x2a\xcd\x38\x06\x89\x4a\xc3\xac\
\x6c\x93\xf3\xba\xbb\x61\xe4\x61\x79\x67\x75\x04\xe6\xde\x92\x2c\
\xcf\x46\xd9\x28\x9b\x64\xe3\x6c\x90\x0d\xb3\x24\x97\xe7\x8a\xfc\
\x26\x17\xe5\xc2\xfc\x3a\xbf\xc9\x25\xde\xf3\xa6\x4e\xa5\x19\xc7\
\x20\x51\x69\x98\x8d\xad\xf2\x83\xac\x5f\x1d\x62\x06\x9e\x99\xa3\
\xba\xff\x9e\x01\xae\x4e\xa5\x99\x58\x6f\x7f\xbf\x65\x9e\x6c\x91\
\xb3\xba\x2c\x34\xc9\x3f\xe5\xed\x9d\xec\x0e\x02\x18\x8c\x4a\xc3\
\x58\x6d\x92\xaf\x64\x8b\xea\x10\x33\xf3\xa7\xf9\x4a\xb6\xaa\x0e\
\x01\x30\x26\x2a\x0d\xe3\xb4\x61\x3e\x95\x1d\xaa\x43\xcc\xd4\xee\
\x39\x3f\xbb\x55\x87\x00\x18\x0f\x95\x86\x31\x5a\x96\xe3\x72\x8b\
\xea\x10\x03\xf8\xa6\xc7\x5a\x02\x2c\x94\x4a\xc3\xf8\xac\x97\x63\
\x72\x97\xea\x10\x03\x39\x35\x07\x55\x47\x00\x18\x07\x95\x86\xf1\
\xf9\xb7\x1c\x5e\x1d\x61\x40\x1f\xc8\xa3\xaa\x23\x00\x8c\x81\x4a\
\xc3\xd8\x3c\x3d\x8f\xaf\x8e\x30\xb0\xd7\xe4\xef\xab\x23\x00\xb4\
\x4f\xa5\x61\x5c\x1e\x91\xe7\x55\x47\x28\x70\x54\x5e\xe6\x7b\x15\
\x60\xcd\xbc\x4d\x32\x26\xf7\xce\x7f\x56\x47\x28\xf2\x57\x79\x5b\
\x96\x57\x87\x00\x68\x99\x4a\xc3\x78\xec\x93\xff\xa9\x8e\x50\xe8\
\x4f\xf3\x91\xac\xa8\x0e\x01\xd0\x2e\x95\x86\xb1\xd8\x39\x9f\xad\
\x8e\x50\x6c\xff\x7c\x2e\x9b\x55\x87\x00\x68\x95\x4a\xc3\x38\xac\
\xcc\xb7\xaa\x23\x34\xe0\x26\x39\x3b\x2b\xab\x43\x00\xb4\x49\xa5\
\x61\x0c\x36\xc8\xa7\xab\x23\x34\x62\xeb\xfc\x28\xab\xaa\x43\x00\
\xb4\x48\xa5\xa1\x7d\x4b\xf2\x86\xdc\xb8\x3a\x44\x33\x96\xe5\xbc\
\xce\x1f\x05\x01\xb0\x4e\x54\x1a\xda\xf7\x0f\x73\x75\x6b\xbd\x85\
\x38\x37\x37\xac\x8e\x00\xd0\x1a\x95\x86\xd6\x1d\x91\xe7\x56\x47\
\x68\xd0\xb7\xb3\x6b\x75\x04\x80\xb6\xa8\x34\xb4\x6d\xdf\xbc\xb5\
\x3a\x42\xa3\xce\xca\x8d\xaa\x23\x00\xb4\x44\xa5\xa1\x65\x3b\xe6\
\xd4\xea\x08\x0d\xfb\x7a\xf6\xa8\x8e\x00\xd0\x0e\x95\x86\x76\x6d\
\x9c\x33\xaa\x23\x34\xee\x6b\x4a\x0d\xc0\x55\x54\x1a\x5a\xb5\x24\
\x6f\xcb\x26\xd5\x21\x9a\xa7\xd4\x00\xfc\x9e\x4a\x43\xab\x9e\x99\
\x83\xaa\x23\x8c\xc2\xd7\x1c\x70\x07\x48\x54\x1a\x5a\x75\xbf\x3c\
\xa7\x3a\xc2\x68\x9c\x99\xdd\xab\x23\x00\xd4\x53\x69\x68\xd1\x4d\
\xf3\x9e\xea\x08\xa3\xf2\x8d\xec\x52\x1d\x01\xa0\x9a\x4a\x43\x7b\
\x56\xe6\xab\xd5\x11\x46\xe7\x6c\x37\xdf\x03\xe6\x9d\x4a\x43\x6b\
\x96\xe6\x83\xd5\x11\x46\xe9\xdb\xb9\x7e\x75\x04\x80\x4a\x2a\x0d\
\xad\xf9\xe7\xdc\xb6\x3a\xc2\x48\x7d\xcf\x03\x2d\x81\x79\xa6\xd2\
\xd0\x96\x43\xf3\x77\xd5\x11\x46\xec\xfb\xd9\xaa\x3a\x02\x40\x15\
\x95\x86\x96\xdc\x24\xef\xaa\x8e\x30\x6a\x4b\xf3\xcd\x6c\x5e\x1d\
\x02\xa0\x86\x4a\x43\x3b\x36\x75\xb7\xe0\x89\x6d\x99\xcf\x65\xa3\
\xea\x10\x00\x15\x54\x1a\x5a\xb1\x24\x6f\xaf\x8e\xd0\x85\x5d\xf3\
\xb1\x6c\x50\x1d\x02\x60\x78\x2a\x0d\xad\x78\x72\xee\x55\x1d\xa1\
\x13\xfb\xe6\xbd\x59\x56\x1d\x02\x60\x68\x2a\x0d\x6d\xd8\x2f\x2f\
\xaa\x8e\xd0\x91\x7b\xe5\x0d\x59\x52\x1d\x02\x60\x58\x2a\x0d\x2d\
\xd8\x2e\x9f\xa8\x8e\xd0\x99\x07\xe5\x25\xd5\x11\x00\x86\xa5\xd2\
\x50\x6f\x59\x3e\x5e\x1d\xa1\x43\x4f\xcc\x3f\x54\x47\x00\x18\x92\
\x4a\x43\xbd\xa3\x72\xa3\xea\x08\x5d\xfa\xa7\x3c\xb6\x3a\x02\xc0\
\x70\x54\x1a\xaa\x1d\x94\xa7\x55\x47\xe8\xd6\xcb\x73\x78\x75\x04\
\x80\xa1\xa8\x34\xd4\xda\x29\x1f\xa8\x8e\xd0\xb5\x63\x73\xf7\xea\
\x08\x00\xc3\x50\x69\xa8\xb4\x7e\x3e\x53\x1d\xa1\x7b\xc7\xe7\x36\
\xd5\x11\x00\x86\xa0\xd2\x50\xe9\x5f\xb2\x6d\x75\x84\x39\x70\x9a\
\xbd\x4a\xc0\x3c\x50\x69\xa8\x73\x70\x9e\x58\x1d\x61\x4e\x7c\x3d\
\xdb\x57\x47\x00\x98\x35\x95\x86\x2a\x3b\xe5\x7d\xd5\x11\xe6\xc8\
\xd9\x1e\x67\x09\xf4\x4e\xa5\xa1\xc6\xf2\x7c\xaa\x3a\xc2\x5c\xd9\
\x30\x27\x7b\xf2\x13\xd0\x37\x95\x86\x1a\x47\xe5\xfa\xd5\x11\xe6\
\xcc\xcd\x73\xac\xef\x77\xa0\x67\xde\xe2\xa8\x70\xcf\xfc\x4d\x75\
\x84\x39\x74\xbf\xbc\xb8\x3a\x02\xc0\xec\xa8\x34\x0c\x6f\xbb\x7c\
\xa8\x3a\xc2\x9c\x7a\x62\x9e\x54\x1d\x01\x60\x56\x54\x1a\x86\xb6\
\x5e\x8e\xab\x8e\x30\xc7\x5e\x92\x3f\xad\x8e\x00\x30\x1b\x2a\x0d\
\x43\x7b\x5a\xf6\xaa\x8e\x30\xd7\xde\x91\x3b\x55\x47\x00\x98\x85\
\x25\x03\x8d\x73\x45\xf5\x85\xce\xd8\xb2\xfc\xae\x3a\xc2\x48\xdc\
\x2e\xa7\x54\x47\x20\x37\xc9\x99\xd5\x11\x80\x6b\xd8\x21\xe7\x56\
\x47\x98\xa1\x41\xda\x86\x59\x1a\x86\xb4\xb9\x42\xd3\x84\xaf\x65\
\x55\x75\x04\x80\x69\x53\x69\x18\xd2\xeb\xab\x03\xf0\x7b\x5f\xce\
\x46\xd5\x11\x00\xa6\x4b\xa5\x61\x38\x0f\xcd\xfd\xaa\x23\xf0\x7b\
\xd7\xcb\xfb\xb2\xb4\x3a\x04\xc0\x34\xa9\x34\x0c\x65\xb7\xbc\xb1\
\x3a\x02\x7f\xe4\x6e\x79\x49\x75\x04\x80\x69\x52\x69\x18\xc6\xf2\
\x7c\xba\x3a\x02\xd7\xf0\xf8\x3c\xa1\x3a\x02\xc0\xf4\xa8\x34\x0c\
\xe3\x39\xd9\xa6\x3a\x02\xd7\xf2\xd2\xdc\xa7\x3a\x02\xc0\xb4\x38\
\xc4\x3d\x1d\x0e\x71\xaf\xd9\x9d\x73\x52\x75\x04\xae\xc3\xad\xf2\
\x85\xea\x08\x40\x1c\xe2\x9e\x02\xb3\x34\xcc\xde\x96\x0a\x4d\xc3\
\x3e\x9f\x1d\xaa\x23\x00\x4c\x83\x4a\xc3\xec\xbd\xbe\x3a\x00\x6b\
\x74\x66\x36\xa9\x8e\x00\x30\x39\x95\x86\x59\x7b\x60\x0e\xae\x8e\
\xc0\x1a\x6d\x9c\x0f\x38\xd0\x0d\x8c\x9f\x4a\xc3\x6c\xed\x94\xb7\
\x54\x47\x60\xad\xf6\xcf\x8b\xaa\x23\x00\x4c\x4a\xa5\x61\x96\x96\
\xe6\x23\xd5\x11\x58\x90\x27\xe5\xd1\xd5\x11\x00\x26\xa3\xd2\x30\
\x4b\x4f\xcd\xee\xd5\x11\x58\xa0\xa3\x73\xd7\xea\x08\x00\x93\x70\
\x88\x7b\x3a\x1c\xe2\x5e\x9d\xbd\x1d\x0f\x1e\x99\x3d\xf2\xf5\xea\
\x08\x30\xb7\x1c\xe2\x9e\x98\x59\x1a\x66\x65\x85\x42\x33\x3a\x67\
\x66\x65\x75\x04\x80\x75\xa5\xd2\x30\x2b\xcf\xaf\x0e\xc0\x3a\xf8\
\x58\x96\x57\x47\x00\x58\x37\x2a\x0d\xb3\x71\x80\xe7\x07\x8d\xd2\
\x2d\xf2\x1f\xd5\x11\x00\xd6\x8d\x4a\xc3\x2c\x6c\x91\x13\xab\x23\
\xb0\x8e\xfe\x3c\x8f\xad\x8e\x00\xb0\x2e\x54\x1a\x66\xe1\xe8\xea\
\x00\x4c\xe0\xe5\xb9\x5b\x75\x04\x80\xc5\x53\x69\x98\xbe\xfb\xe5\
\xb0\xea\x08\x4c\xe4\x23\xb9\x51\x75\x04\x80\xc5\x72\x88\x7b\x3a\
\x1c\xe2\xfe\x83\x6d\xf3\xc3\xea\x08\x4c\xc1\x16\xf9\x65\x75\x04\
\x98\x2b\x0e\x71\x4f\xcc\x2c\x0d\xd3\xf6\xb6\xea\x00\x4c\xc5\x71\
\x9e\xfb\x04\x8c\x8b\x4a\xc3\x74\x1d\x99\xfd\xaa\x23\x30\x15\xb7\
\xcf\xbf\x54\x47\x00\x58\x0c\x0b\x4f\xd3\x61\xe1\xe9\x4a\x37\xc8\
\x39\xd5\x11\x98\xa2\x23\xf3\xa6\xea\x08\x30\x37\x2c\x3c\x4d\xcc\
\x2c\x0d\xd3\xb3\x5e\xfe\xbb\x3a\x02\x53\xf5\xc6\xdc\xb6\x3a\x02\
\xc0\x42\xa9\x34\x4c\xcf\x5f\xe4\x16\xd5\x11\x98\xb2\xcf\x64\xfb\
\xea\x08\x00\x0b\xa3\xd2\x30\x2d\xbb\xe5\x15\xd5\x11\x98\x81\xff\
\xcd\x86\xd5\x11\x00\x16\x42\xa5\x61\x3a\x96\xe6\x23\xd5\x11\x98\
\x89\xed\xf2\xda\xea\x08\x00\x0b\xa1\xd2\x30\x1d\x4f\xc8\x0d\xab\
\x23\x30\x23\x0f\xce\xe3\xab\x23\x00\xac\x9d\x13\x4f\xd3\x31\xef\
\x27\x9e\xf6\xc8\xd7\xaa\x23\x30\x53\x07\x7a\x6a\x17\xcc\x98\x13\
\x4f\x13\x33\x4b\xc3\xe4\x96\xe5\xe3\xd5\x11\x98\xb1\x13\xcc\xc2\
\x01\xad\x53\x69\x98\xdc\x93\xb3\xaa\x3a\x02\x33\x77\x46\x36\xaa\
\x8e\x00\xb0\x26\x2a\x0d\x93\xba\x49\x5e\x50\x1d\x81\x01\xac\xc8\
\x31\x83\x2d\x54\x03\xac\x03\x95\x86\xc9\x2c\xcb\x27\xaa\x23\x30\
\x90\x43\xf2\xe4\xea\x08\x00\xd7\x4d\xa5\x61\x32\x4f\xc9\x36\xd5\
\x11\x18\xcc\x8b\x72\xb7\xea\x08\x00\xd7\xc5\x89\xa7\xe9\x98\xd7\
\x13\x4f\x7b\xe6\xf4\xea\x08\x0c\x6c\x97\x7c\xbb\x3a\x02\x74\xc9\
\x89\xa7\x89\x99\xa5\x61\xdd\x39\xe9\x34\x8f\xbe\x6a\x9b\x30\xd0\
\x26\x95\x86\x75\xf7\x24\x8b\x4e\x73\x68\xa3\xbc\xbe\x3a\x02\xc0\
\xea\xa8\x34\xac\xab\x1b\xe7\x85\xd5\x11\x28\x71\x98\xbb\x09\x03\
\x2d\x52\x69\x58\x37\x4b\x73\x42\x75\x04\xca\xfc\x7b\xee\x5c\x1d\
\x01\xe0\x9a\x54\x1a\xd6\xcd\xe3\x73\xfd\xea\x08\x14\x3a\xc9\x9f\
\x3f\xd0\x1a\x27\x9e\xa6\x63\xde\x4e\x3c\xed\x96\x6f\x56\x47\xa0\
\xd8\x0f\xb2\x4b\x2e\xa9\x0e\x01\x1d\x71\xe2\x69\x62\x66\x69\x58\
\xbc\xf5\xf2\xc1\xea\x08\x94\xdb\x3e\xff\x51\x1d\x01\xe0\x8f\xa9\
\x34\x2c\xde\xa3\xb3\x7b\x75\x04\x1a\xf0\xa8\x1c\x59\x1d\x01\xe0\
\x0f\x2c\x3c\x4d\xc7\x3c\x2d\x3c\xed\x94\xef\x54\x47\xa0\x19\xb7\
\xcc\x17\xab\x23\x40\x27\x2c\x3c\x4d\xcc\x2c\x0d\x8b\xb3\x24\xef\
\xae\x8e\x40\x43\xbe\x90\x95\xd5\x11\x00\xae\xa4\xd2\xb0\x38\x0f\
\xcd\xad\xaa\x23\xd0\x94\x0f\x78\x17\x01\xda\xe0\xcd\x88\xc5\xd8\
\x2e\x6f\xa8\x8e\x40\x63\x6e\x9f\x67\x55\x47\x00\x48\x54\x1a\x16\
\xe7\x8d\xd5\x01\x68\xd0\x3f\xe6\x5e\xd5\x11\x00\x54\x1a\x16\xe3\
\x90\xdc\xad\x3a\x02\x4d\x3a\x2e\x37\xac\x8e\x00\xe0\xc4\xd3\x74\
\xcc\xc3\x89\xa7\x95\xf9\x69\x75\x04\x9a\xf5\xf3\x6c\x9f\x8b\xab\
\x43\xc0\xa8\x39\xf1\x34\x31\xb3\x34\x2c\xd4\x2b\xab\x03\xd0\xb0\
\x2d\xf3\x8a\xea\x08\xc0\xbc\x53\x69\x58\x98\x03\xf3\x80\xea\x08\
\x34\xed\xe1\x6e\xbc\x07\xd4\xb2\xf0\x34\x1d\xbd\x2f\x3c\x6d\x92\
\x0b\xaa\x23\x30\x02\x7b\xe7\x4b\xd5\x11\x60\xb4\x2c\x3c\x4d\xcc\
\x2c\x0d\x0b\xf1\xbc\xea\x00\x8c\xc2\x17\xb3\x79\x75\x04\x60\x7e\
\xa9\x34\xac\xdd\x6d\xf2\xf8\xea\x08\x8c\xc4\x3b\x06\x9b\xf9\x05\
\xb8\x06\x95\x86\xb5\x59\x3f\xa7\x56\x47\x60\x34\xee\x9e\x27\x55\
\x47\x00\xe6\x95\x4a\xc3\xda\x3c\xcd\xdf\xbb\x59\x84\x17\xe7\x8e\
\xd5\x11\x80\xf9\x64\x7b\xf0\x74\xf4\xbb\x3d\xf8\xc6\x39\xb3\x3a\
\x02\xa3\xb3\x2a\x3f\xae\x8e\x00\xa3\x63\x7b\xf0\xc4\x96\x55\x5f\
\x25\x4d\x5b\x2f\x1f\xac\x8e\xc0\x08\x1d\x9f\x5b\x77\x5b\xf2\xc7\
\x6d\xfd\x6c\x91\x95\xd9\x36\x3b\x66\x55\x36\xcd\xa6\xd9\x2c\x17\
\xe7\x17\xf9\x65\xbe\x99\x73\xf2\xc3\x9c\x9f\xdf\x56\x07\x84\x49\
\xa8\x34\xac\xc9\x23\xb2\x4b\x75\x04\x46\x68\xaf\x3c\x3b\xcf\xac\
\x0e\xc1\xff\xd9\x38\xbb\xe5\x8e\xb9\x73\xee\x9d\xcd\xd6\xf2\x2b\
\x4f\xcf\xb1\x39\x2e\x5f\xcb\x6f\xaa\x23\xc3\xba\xb0\xf0\x34\x1d\
\x7d\x2e\x3c\x6d\x9f\xef\x57\x47\x60\xb4\xee\x99\xe3\xab\x23\xcc\
\xbd\x8d\xb2\x57\xfe\x34\x0f\xcf\x96\x8b\xfe\x9d\xa7\xe5\xc5\x39\
\x21\xe7\x57\x5f\xc0\x9c\xb1\xf0\x34\x8e\x41\xa2\xd2\x8c\xd3\x09\
\xb9\x6b\x75\x04\x46\x6c\xc7\x7c\xaf\x3a\xc2\xdc\x5a\x95\x83\xf2\
\xd8\xdc\x7a\xc2\x57\xf9\x72\x9e\x95\x8f\xe6\xc2\xea\x8b\x99\x1b\
\x2a\xcd\x38\x06\x89\x4a\x33\x46\x07\xe7\x7d\xd5\x11\x18\xb5\xef\
\x66\xb7\x5c\x56\x1d\x62\xee\xac\xca\xbd\xf3\xac\xa9\x3e\x19\xfd\
\xe8\xbc\x28\xdf\xac\xbe\xac\xb9\xa0\xd2\x4c\xcc\x21\x6e\x56\x6f\
\x73\x85\x86\x09\xdd\x20\x2f\xa8\x8e\x30\x57\x36\xc8\xdd\xf3\xc9\
\x9c\x97\xff\x9a\x6a\xa1\x49\xfe\x3c\xdf\xc8\x57\x72\xa0\x9f\x16\
\xb4\xcf\x17\x29\xab\xf7\xc2\xea\x00\x74\xe0\xaf\x73\x9f\xea\x08\
\x73\x62\x87\xfc\xbf\x5c\x9c\xe3\x67\x76\x4f\xa0\x9b\xe5\xa3\xb9\
\x38\x87\x64\x79\xf5\x85\xc2\x9a\x58\x78\x9a\x8e\xde\x16\x9e\x6e\
\x97\x53\xaa\x23\xd0\x89\x9d\xf3\x9d\xea\x08\x5d\x5b\x92\xdb\xe4\
\xa8\xdc\x6d\xb0\xf1\x0e\xcb\x7b\x3a\x7b\xb7\x6b\x87\x85\xa7\x71\
\x0c\x12\x95\x66\x5c\xd6\xcf\x25\xd5\x11\xe8\xc6\x4f\xb2\x43\x2e\
\xad\x0e\xd1\xa9\xa5\xb9\x57\xde\xb2\xd6\x83\xd9\xd3\xf7\x27\xf9\
\x60\xf7\xef\xe9\x15\x54\x9a\x89\x59\x78\xe2\xda\xfe\xa6\x3a\x00\
\x1d\xd9\x26\x2f\xae\x8e\xd0\xa5\x0d\xf2\xc0\xfc\x36\x1f\x28\x28\
\x34\xc9\x07\x72\x4e\xf6\xa9\xfe\x04\xc0\xb5\x99\xa5\x99\x8e\x9e\
\x66\x69\x76\xcf\x37\xaa\x23\xd0\x99\x43\xf3\x9e\xea\x08\x5d\x59\
\x9e\xc3\xf2\xe6\xea\x10\xf9\x40\x1e\x97\xef\x56\x87\xe8\x8a\x59\
\x9a\x89\x99\xa5\xe1\xea\x96\xf8\xe1\xc3\xd4\xbd\xdb\x5d\xa8\xa7\
\x66\x69\x0e\xc9\xa5\x0d\x14\x9a\xe4\x4f\x72\x4e\x9e\x9e\x0d\xab\
\x63\xc0\x1f\xa8\x34\x5c\xdd\x83\x72\xd3\xea\x08\x74\xe8\xb4\x6c\
\x50\x1d\xa1\x0b\xfb\xe7\x82\xbc\xbb\x3a\xc4\x1f\x79\x5e\x2e\xca\
\xdd\xab\x43\xc0\x55\x54\x1a\xfe\xd8\xd6\x39\xa6\x3a\x02\x5d\xda\
\x2a\xff\x5a\x1d\x61\xf4\x6e\x92\xcf\xe4\xe3\x59\x51\x1d\xe3\x5a\
\x8e\xcf\xfb\xb2\xaa\x3a\x04\x24\x2a\x0d\x57\xf7\xf2\xea\x00\x74\
\xeb\x71\xb9\x5f\x75\x84\x11\x5b\x99\xd7\xe4\x8c\xdc\xb6\x3a\xc6\
\x75\x38\x38\xe7\xe5\xc8\xc1\x76\x66\xc2\x75\xb2\x3d\x78\x3a\xfa\
\xd8\x1e\x7c\x97\x7c\xac\x3a\x02\x5d\x73\x8f\x9a\x75\xb1\x34\x7f\
\x96\xff\xac\x0e\xb1\x00\x9f\xcf\x21\xb6\x0b\x4f\xc4\xf6\xe0\x71\
\x0c\x12\x95\x66\x0c\x36\xcc\x45\xd5\x11\xe8\xdc\x8f\x72\x03\xf7\
\xa8\x59\xa4\xdb\xe4\xf8\x6c\x51\x1d\x62\xc1\x1e\x91\xd7\x77\xff\
\x6e\x3f\x3b\x2a\xcd\xc4\x2c\x3c\x71\x95\xa7\x57\x07\xa0\x7b\xab\
\x3c\xf5\x69\x51\x36\xcb\x2b\x73\xda\x88\x0a\x4d\xf2\x5f\x39\x35\
\xdb\x55\x87\x60\x7e\x99\xa5\x99\x8e\xf1\xcf\xd2\xdc\x38\x67\x56\
\x47\x60\x2e\xfc\x49\xfe\xa7\x3a\xc2\x48\xdc\x27\xef\xaf\x8e\xb0\
\x8e\x0e\xc9\x7b\xab\x23\x8c\x92\x59\x9a\x89\x99\xa5\x21\x49\x96\
\x8c\xf6\xcd\x93\xb1\xf9\x40\x76\xac\x8e\x30\x02\xab\x72\xfc\x88\
\xbf\x27\xdf\x93\xb7\x64\xd3\xea\x10\xcc\x23\x95\x86\x24\x79\x70\
\x6e\x54\x1d\x81\xb9\xf1\xf1\x2c\xab\x8e\xd0\xb8\x07\xe4\xbc\x91\
\xdf\xed\xe5\x81\xf9\x55\x6e\x55\x1d\x82\xf9\xa3\xd2\x90\x6c\x9d\
\x37\x55\x47\x60\x8e\xec\x92\xe7\x54\x47\x68\xd8\xb6\x39\x31\x6f\
\xab\x0e\x31\x15\x9f\xcb\x93\x1c\xec\x66\x58\x2a\x0d\xc9\x7f\x54\
\x07\x60\xce\xfc\x7d\x0e\xac\x8e\xd0\xa8\xfb\xe6\x87\x39\xa0\x3a\
\xc4\xd4\xbc\x24\x9f\xcc\x56\xd5\x21\x98\x27\xb6\x07\x4f\xc7\x98\
\xb7\x07\xdf\x39\x27\x55\x47\x60\x0e\x6d\x9b\x1f\x55\x47\x68\xcc\
\x66\x79\x55\x1e\x58\x1d\x62\x06\x6e\x97\x53\xab\x23\x8c\x84\xed\
\xc1\x13\x33\x4b\x33\xef\x36\x50\x68\x28\xf1\x41\xef\x3e\x57\x73\
\x87\xfc\xb2\xcb\x42\x93\x7c\x26\x4f\xb0\x00\xc5\x30\xbc\xa9\xcc\
\xbb\x27\x57\x07\x60\x4e\xdd\x2a\x7f\x53\x1d\xa1\x19\x4b\xf3\xcc\
\x7c\xaa\x3a\xc4\x0c\xbd\x34\xff\xed\x04\x14\x43\xb0\xf0\x34\x1d\
\x63\x5d\x78\xda\x25\x67\x57\x47\x60\x8e\xdd\x21\xa7\x54\x47\x68\
\xc0\x0e\xf9\x68\x6e\x5c\x1d\x62\x00\x7b\xe4\xeb\xd5\x11\x1a\x67\
\xe1\x69\x62\x66\x69\xe6\x5b\x1f\x27\x2b\x18\xab\x4f\x67\xcb\xea\
\x08\xe5\x0e\xca\xb9\x73\x51\x68\x92\x33\x73\xdf\xea\x08\xf4\x4e\
\xa5\x99\x67\x87\x66\x9f\xea\x08\xcc\xb9\xb7\x54\x07\x28\xb5\x3c\
\x2f\xcc\x07\xaa\x43\x0c\xe8\xbd\x79\x8e\x9f\x39\xcc\x92\x85\xa7\
\xe9\x18\xe3\xc2\xd3\xe6\xf9\x45\x75\x04\xc8\x5f\xe4\xe8\xea\x08\
\x45\x76\xc8\x49\xd9\xb9\x3a\xc4\xe0\x4e\xc8\x21\xb9\xa0\x3a\x44\
\xa3\x2c\x3c\x4d\x4c\x63\x9e\x5f\xcf\xab\x0e\x00\x49\x5e\x9d\x9b\
\x55\x47\x28\x71\x60\xce\x9d\xc3\x42\x93\x1c\x98\x5f\x65\xb7\xea\
\x10\xf4\x4a\xa5\x99\x57\x7b\xe7\xb1\xd5\x11\x20\x49\xf2\x95\x6c\
\x54\x1d\x61\x60\x4b\xf2\xb7\xf9\x68\x75\x88\x42\xdf\xec\xe8\x76\
\x82\x34\x45\xa5\x99\x4f\x4b\xf3\x91\xea\x08\xf0\x7f\xe6\xeb\xfe\
\xd5\x9b\xe5\x43\x79\x7e\x75\x88\x62\x27\xe6\xd1\xd5\x11\xe8\x91\
\x4a\x33\x9f\x1e\x91\xad\xab\x23\xc0\xff\x79\x78\xee\x5f\x1d\x61\
\x30\x37\xce\x2f\x73\x8f\xea\x10\x0d\x38\x3a\xff\x9e\xa5\xd5\x21\
\xe8\x8d\xed\xc1\xd3\x31\xae\xed\xc1\xab\x72\x5e\x75\x04\xb8\x86\
\x1b\xe6\x9c\xea\x08\x03\xb8\x77\xfe\xa7\x3a\x42\x43\x3e\x99\x7b\
\xdb\x2a\xfc\x47\x6c\x0f\x9e\x98\x59\x9a\x79\xf4\xca\xea\x00\x70\
\x2d\x1f\xcf\xb2\xea\x08\x33\xb6\x24\x7f\xab\xd0\x5c\xcd\x9d\xf2\
\xa3\xec\x50\x1d\x82\x9e\xa8\x34\xf3\x67\xbf\x1c\x52\x1d\x01\xae\
\xe5\x86\x79\x56\x75\x84\x99\x5a\x91\x77\xcd\xfd\x0e\x9a\x6b\x5b\
\x91\x73\x73\xcb\xea\x10\xf4\xc3\xc2\xd3\x74\x8c\x67\xe1\x69\x83\
\x5c\x5c\x1d\x01\xae\xc3\xfe\xdd\x3e\x44\x75\xbb\x7c\x3e\xdb\x56\
\x87\x68\xd6\xbd\x73\x5c\x75\x84\x26\x58\x78\x9a\x98\x59\x9a\x79\
\xf3\xc4\xea\x00\x70\x9d\x3e\x91\x95\xd5\x11\x66\x62\xef\xfc\x40\
\xa1\x59\x83\x0f\xe6\x51\xd5\x11\xe8\x83\x4a\x33\x5f\x76\xca\x0b\
\xaa\x23\xc0\x1a\x1c\x3b\xd8\xcc\xf1\x70\x0e\xce\x17\xaa\x23\x34\
\xef\x35\x79\x6e\x87\x7f\xf2\x0c\x4e\xa5\x99\x2f\x6f\xac\x0e\x00\
\x6b\x74\xf7\xee\xfe\xbe\xfe\xc4\xbc\xaf\x3a\xc2\x28\x3c\x33\xc7\
\x64\x79\x75\x08\xc6\xce\x5e\x9a\xe9\x18\xc7\x5e\x1a\x07\x48\x19\
\x83\x9b\xe6\x8c\xea\x08\x53\xb2\x34\xff\xee\x2e\xdd\x8b\xf0\xe9\
\xdc\x23\x17\x56\x87\x28\x64\x2f\xcd\x38\x06\x89\x4a\xd3\x82\x8d\
\xe6\xfa\xcd\x82\xf1\xb8\x2c\x9b\x75\xb1\x89\x7d\xe3\xfc\x4f\xf6\
\xaf\x0e\x31\x32\xe7\xe5\xe6\x39\xbf\x3a\x44\x19\x95\x66\x62\x16\
\x9e\xe6\xc7\xdf\x57\x07\x80\x05\x59\x9e\x17\x55\x47\x98\x82\xeb\
\xe5\x5b\x0a\xcd\xa2\x6d\x9b\x9f\xe4\x86\xd5\x21\x18\x2f\xb3\x34\
\xd3\xd1\xfe\x2c\xcd\xee\xf9\x46\x75\x04\x58\xb0\xb1\x1f\xeb\xf5\
\xfd\x36\x89\x9b\xe7\xab\xd5\x11\x4a\x98\xa5\x99\x98\x59\x9a\xf9\
\xb0\x24\x6f\xaf\x8e\x00\x8b\xf0\xc1\x51\x1f\x7a\xbe\xad\x42\x33\
\x91\xaf\xe4\xf6\xd5\x11\x18\x27\x95\x66\x3e\xdc\x2f\x7b\x57\x47\
\x80\x45\x79\xdf\x68\x0f\xf5\xde\x2b\x9f\xa9\x8e\x30\x7a\x9f\xce\
\x3d\xab\x23\x30\x46\x2a\xcd\x3c\xd8\x34\xef\xae\x8e\x00\x8b\xb4\
\x6f\x1e\x5f\x1d\x61\x9d\x3c\x64\xe4\x4b\x66\xad\xf8\x50\x0e\xaf\
\x8e\xc0\xf8\xa8\x34\xf3\xe0\x39\xd5\x01\x60\x1d\xbc\x34\xb7\xa8\
\x8e\xb0\x68\x4f\xce\x9b\xaa\x23\x74\xe3\xd8\xee\xee\x51\xc4\xcc\
\xd9\x1e\x3c\x1d\x2d\x6f\x0f\xde\x33\xa7\x57\x47\x80\x75\xb4\x71\
\x7e\x53\x1d\x61\xc1\x96\xe4\xa8\x3c\xbd\x3a\x44\x67\x9e\x9a\x7f\
\xad\x8e\x30\x20\xdb\x83\x27\x66\x96\xa6\x77\x4b\xf2\xde\xea\x08\
\xb0\xce\x5e\x52\x1d\x60\xc1\xd6\xcb\xab\x15\x9a\xa9\x7b\x51\x9e\
\x5b\x1d\x81\x31\x51\x69\x7a\xf7\x80\xec\x5e\x1d\x01\xd6\xd9\x9f\
\xe7\xa0\xea\x08\x0b\xb2\x3c\xef\xca\xa3\xab\x43\x74\xe9\x99\x79\
\xc9\x68\x37\x8a\x33\x38\x0b\x4f\xd3\xd1\xea\xc2\xd3\xe6\xf9\x45\
\x75\x04\x98\xd0\x76\x39\xaf\x3a\xc2\x5a\xac\xc8\xf1\xb9\x53\x75\
\x88\x8e\xbd\x36\x7f\x91\xcb\xab\x43\x0c\xc0\xc2\xd3\xc4\xcc\xd2\
\xf4\xed\x9f\xab\x03\xc0\xc4\x5a\x3f\xce\xbd\x49\x4e\x53\x68\x66\
\xea\x51\x79\x73\x96\x55\x87\x60\x0c\x54\x9a\x9e\xdd\x3c\x7f\x55\
\x1d\x01\x26\xb6\x6f\x1e\x57\x1d\x61\x0d\xb6\xcc\xd7\x72\xb3\xea\
\x10\xdd\x3b\x22\xef\xf5\x9c\x6e\xd6\xce\xc2\xd3\x74\xb4\xb8\xf0\
\xb4\x5e\xce\xca\xce\xd5\x21\x60\x2a\x5a\xbd\x45\xfe\xd6\xf9\x4e\
\x36\xae\x0e\x31\x27\x4e\xc8\x41\xb9\xa4\x3a\xc4\x4c\x59\x78\x9a\
\x98\x59\x9a\x7e\x1d\xae\xd0\xd0\x8d\x2f\x66\xc3\xea\x08\xab\xb1\
\x2a\x3f\x51\x68\x06\x73\x60\x4e\x68\xf2\xab\x80\x86\xa8\x34\xbd\
\xda\x22\x6f\xa9\x8e\x00\x53\xb3\x34\xff\x52\x1d\xe1\x5a\xae\xdf\
\xfc\xb6\xe5\xde\xdc\x31\x27\x67\xa3\xea\x10\xb4\x4c\xa5\xe9\xd5\
\x3f\x55\x07\x80\xa9\x7a\x7c\xee\x56\x1d\xe1\x6a\x6e\x90\xef\x55\
\x47\x98\x43\xfb\xe4\x54\xf3\x62\x5c\x37\x7b\x69\xa6\xa3\xb5\xbd\
\x34\x37\xcb\x57\xaa\x23\xc0\xd4\x6d\x93\xf3\xab\x23\xfc\xde\x4e\
\xf9\x4e\x75\x84\xb9\x75\x46\xf6\xcd\x85\xd5\x21\x66\xc2\x5e\x9a\
\x89\x99\xa5\xe9\x91\x3b\x06\xd3\xa7\x56\x16\x53\x15\x9a\x4a\x7b\
\xe6\x7f\xb3\x49\x75\x08\xda\xa4\xd2\xf4\xe8\x01\xd9\xb5\x3a\x02\
\xcc\xc0\xdd\xf3\xb0\xea\x08\x49\x76\x56\x68\x8a\xed\x91\xcf\x2b\
\x35\xac\x8e\x85\xa7\xe9\x68\x69\xe1\xc9\x1d\x83\xe9\xd9\x6e\x39\
\xbb\x74\x7c\x33\x34\x6d\x38\x2b\xb7\xcc\xaf\xab\x43\x4c\x99\x85\
\xa7\x89\x99\xa5\xe9\x8f\xc7\xbc\xd1\xb3\x93\x4a\xef\x23\x7b\x03\
\x85\xa6\x11\xbb\xe5\x7f\x6d\x14\xe6\x9a\x54\x9a\xde\xec\x99\x27\
\x54\x47\x80\x19\xda\x3e\xcf\x28\x1b\x7b\xc7\x9c\x53\x7d\xf9\xfc\
\x9f\x1b\xe7\x34\xa5\x86\xab\xb3\xf0\x34\x1d\xad\x2c\x3c\x2d\xc9\
\xe9\xb9\x49\x75\x08\x98\xb1\xdb\xe6\xb4\x82\x51\xb7\xcf\xf7\xab\
\x2f\x9c\x6b\xf8\x4a\x6e\x97\xdf\x54\x87\x98\x1a\x0b\x4f\x13\x33\
\x4b\xd3\x97\x43\x14\x1a\xe6\xc0\xa9\x05\x9b\x43\xaf\xa7\xd0\x34\
\xe8\xe6\x39\xd9\x1d\x85\xf9\x03\x95\xa6\x27\x9b\xe4\x5d\xd5\x11\
\x60\x10\x2f\x1b\x78\xbc\xad\x14\x9a\x46\xdd\x2a\x27\x64\x83\xea\
\x10\xb4\x42\xa5\xe9\xc9\x3f\x54\x07\x80\x81\x3c\x2c\x07\x0d\x38\
\xda\xe6\x39\xbb\x74\x53\x32\x6b\x72\x87\x1c\x97\xf5\xab\x43\xd0\
\x06\x7b\x69\xa6\xa3\x85\xbd\x34\xbb\xe7\x1b\xd5\x11\x60\x40\xdb\
\xe6\x47\x83\x8c\xb3\x49\xbe\x9a\x9d\xaa\x2f\x96\x35\xfa\x50\xee\
\x93\xdf\x56\x87\x98\x98\xbd\x34\x13\x33\x4b\xd3\x8f\xb7\x56\x07\
\x80\x41\xbd\x7d\x90\x37\xc9\x0d\xf3\x29\x85\xa6\x79\xf7\xca\xdb\
\xb2\xb4\x3a\x04\xf5\x54\x9a\x5e\x1c\x94\x5b\x57\x47\x80\x41\xed\
\x97\x47\xcc\x7c\x8c\xe5\xf9\x70\x6e\x51\x7d\xa1\x2c\xc0\xa1\x79\
\xdd\x60\xab\x0e\x34\xcb\xc2\xd3\x74\x54\x2f\x3c\xad\xe8\xe8\x20\
\x23\x2c\xdc\xee\x39\x6b\x86\xaf\xbe\x5e\xde\x99\x43\xaa\x2f\x91\
\x05\x7b\x55\x1e\x3b\xea\x9f\x35\x16\x9e\x26\x66\x96\xa6\x0f\x4f\
\xad\x0e\x00\x25\x3e\x36\xc3\x6d\xbb\x4b\x72\xb4\x42\x33\x2a\x8f\
\xc9\x8b\xaa\x23\x50\x4b\xa5\xe9\xc1\x4e\x1e\x82\xc0\x9c\xda\x21\
\x7f\x3b\xb3\xd7\x7e\x7e\x1e\x59\x7d\x79\x2c\xd2\x93\xf3\xec\xea\
\x08\x54\x52\x69\x7a\xf0\x9f\xd5\x01\xa0\xcc\x3f\xe7\x56\x33\x79\
\xdd\xa7\xe5\x69\xd5\x97\xc6\x3a\xf8\xc7\x3c\xa5\x3a\x02\x75\xec\
\xa5\x99\x8e\xca\xbd\x34\x07\xe4\xc4\xea\xcb\x87\x52\x1b\xe5\xa2\
\x29\xbf\xe2\x23\xf3\xda\xea\x8b\x62\x9d\x3d\x26\xaf\xae\x8e\xb0\
\x4e\xec\xa5\x99\x98\x59\x9a\xb1\x5b\x5f\xa1\x61\xee\xbd\x70\xca\
\xaf\x77\x88\x42\x33\x6a\xaf\xca\x43\xaa\x23\x50\x43\xa5\x19\xbb\
\xc7\x56\x07\x80\x72\x8f\xcb\x5d\xa7\xf8\x6a\xfb\xe7\xdd\xd5\x17\
\xc4\x84\xde\x94\x83\xab\x23\x50\xc1\xc2\xd3\x74\x54\x2d\x3c\x6d\
\x9b\x1f\x56\x5f\x3a\x34\x61\x65\x7e\x3e\x95\xd7\xd9\x3b\x5f\xa8\
\xbe\x14\xa6\xe2\xc0\xd1\xcd\x60\x5b\x78\x9a\x98\x59\x9a\x71\x7b\
\x69\x75\x00\x68\xc4\x74\x96\x8a\x76\x56\x68\xba\x71\x42\x6e\x5b\
\x1d\x81\xa1\xa9\x34\x63\xb6\x6f\x1e\x50\x1d\x01\x1a\x71\x68\x0e\
\x9d\xf8\x35\xb6\xc9\xb7\xaa\x2f\x83\x29\xfa\x4c\x6e\x56\x1d\x81\
\x61\x59\x78\x9a\x8e\x8a\x85\xa7\xa5\xf9\x49\xb6\xac\xbe\x70\x68\
\xc8\xf6\x13\x2d\xc4\x6e\x9c\xb3\xb3\xaa\xfa\x12\x98\xb2\x5d\x47\
\x54\x53\x2d\x3c\x4d\xcc\x2c\xcd\x78\x3d\x44\xa1\x81\xab\x79\xe7\
\x04\x6f\x9b\xcb\x72\x9c\x42\xd3\xa1\xb3\xb3\x5d\x75\x04\x86\xa3\
\xd2\x8c\xd5\x96\x79\x7d\x75\x04\x68\xcc\x1d\x26\x78\x90\xe5\xd1\
\xb9\x73\x75\x7c\x66\xe2\x1c\x7f\xf9\x9b\x1f\x2a\xcd\x58\xfd\x53\
\x75\x00\x68\xd0\x6b\xb3\xcb\x3a\xfd\xbe\x67\xe6\xe1\xd5\xd1\x99\
\x91\xe5\xf9\x42\x36\xaa\x0e\xc1\x30\xec\xa5\x99\x8e\xa1\xf7\xd2\
\xec\x99\xd3\xab\x2f\x19\x9a\xf4\xad\xdc\x68\xd1\xdf\x8d\x47\xe6\
\x0d\xd5\xb1\x99\xa9\x4f\xe5\x80\x5c\x56\x1d\x62\xad\xec\xa5\x99\
\x98\x59\x9a\x31\x5a\x92\xb7\x57\x47\x80\x46\xed\x92\x27\x2d\xf2\
\x77\xdc\x4d\xa1\xe9\xde\x1d\x73\x8c\x9f\x76\xf3\xc0\x1f\xf2\x18\
\xdd\x27\x37\xad\x8e\x00\xcd\x7a\xd1\xa2\xbe\x3f\x6e\x96\x8f\x54\
\x07\x66\x00\x0f\xc8\x4b\xaa\x23\x30\x7b\x16\x9e\xa6\x63\xc8\x85\
\xa7\x8d\x72\x61\xf5\xe5\x42\xd3\x2e\xcc\xca\x5c\xba\xa0\x5f\xb9\
\x5d\x7e\x50\x1d\x96\xc1\x3c\x23\xcf\xab\x8e\xb0\x46\x16\x9e\x26\
\x66\x96\x66\x7c\x9e\x52\x1d\x00\x1a\xb7\x71\x9e\xb9\xc0\x5f\xf7\
\xd5\xea\xa8\x0c\xe8\xa8\x09\x4e\xc4\x31\x0a\x66\x69\xa6\x63\xb8\
\x59\x9a\x1b\xe4\x9c\xea\x8b\x85\x11\xd8\x37\x9f\x5d\xcb\xaf\x58\
\x2f\x1f\xca\xdd\xab\x63\x32\xb0\xfb\xe6\xfd\xd5\x11\xae\x93\x59\
\x9a\x89\x99\xa5\x19\x9b\x57\x55\x07\x80\x51\x38\x2d\x2b\xd6\xf2\
\x2b\x5e\xa8\xd0\xcc\xa1\xf7\xe5\x8e\xd5\x11\x98\x1d\x95\x66\x5c\
\xee\x94\xff\xaf\x3a\x02\x8c\xc4\xf3\xd7\xf8\x7f\x1f\x99\x27\x57\
\x07\xa4\xc4\x27\x1d\xaf\xe8\x97\x85\xa7\xe9\x18\x66\xe1\x69\x59\
\x2e\xcc\xfa\xd5\x97\x0a\xa3\xb1\x7f\x4e\xba\x8e\xff\x73\x40\x4e\
\xac\x0e\x47\xa1\x1b\x34\xb9\xc4\x63\xe1\x69\x62\x66\x69\xc6\xe4\
\xe1\x0a\x0d\x2c\xc2\x27\xb2\xe9\x6a\xff\xfb\xee\x0a\xcd\x9c\xfb\
\xae\x87\x24\xf4\x49\xa5\x19\x8f\x95\x39\xba\x3a\x02\x8c\xcc\x4b\
\x57\xf3\xdf\xb6\xc8\x37\xaa\x63\x51\xee\xb4\x6c\x58\x1d\x81\xe9\
\x53\x69\xc6\xe3\xa8\xea\x00\x30\x3a\x0f\xcf\x3d\xae\xf1\x5f\x96\
\xe5\xc3\xd5\xa1\x68\xc0\x6e\x79\x6f\x96\x56\x87\x60\xda\x54\x9a\
\xb1\xd8\x33\x8f\xa9\x8e\x00\x23\xf4\xe1\x6b\x2c\x31\xbc\x28\xfb\
\x56\x47\xa2\x09\xf7\xcc\xcb\xaa\x23\x30\x6d\x2a\xcd\x38\x2c\xc9\
\xdb\xaa\x23\xc0\x48\xbd\xfa\x8f\xfe\xf9\xcf\xf2\xc4\xea\x38\x34\
\xe3\x2f\xf3\xb7\xd5\x11\x98\x2e\x95\x66\x1c\x0e\xca\xcd\xaa\x23\
\xc0\x48\x1d\x96\xfb\xfc\xfe\x9f\x6e\x9b\xd7\x57\x87\xa1\x29\xcf\
\xcf\x43\xaa\x23\x30\x4d\x0e\x71\x4f\xc7\x6c\x0f\x71\xaf\xc8\x6f\
\xaa\x2f\x10\x46\x6d\x9b\x9c\xef\x79\x4e\xac\xd6\xdd\x72\x42\x75\
\x84\xdf\x73\x88\x7b\x62\x66\x69\xc6\xe0\x09\xd5\x01\x60\xe4\x5e\
\x97\xf5\x73\x4a\x75\x08\x9a\xf4\xd1\xdc\xa2\x3a\x02\xd3\x62\x96\
\x66\x3a\x66\x39\x4b\xb3\x7d\xbe\x5f\x7d\x79\x30\x7a\x47\xe7\xcf\
\xab\x23\xd0\xac\x1d\xf3\xbd\xea\x08\x31\x4b\x33\x05\x66\x69\xda\
\xf7\xef\xd5\x01\xa0\x03\x0a\x0d\xd7\xed\x3b\xd9\xbc\x3a\x02\xd3\
\xa0\xd2\xb4\xee\x36\xb9\x7f\x75\x04\x80\xae\x2d\xcd\x49\xee\xcd\
\xde\x03\x95\xa6\x6d\xeb\xe5\x03\xd5\x11\x00\xba\x77\x8b\xbc\x7e\
\xb0\x8d\x18\xcc\x8c\x4a\xd3\xb6\xc3\x73\xbd\xea\x08\x00\x73\xe0\
\x81\x79\x76\x75\x04\x26\x65\x7b\xf0\x74\xcc\x66\x7b\xf0\xa6\xf9\
\x55\xf5\x85\x01\xcc\x8d\x87\x97\xde\xb9\xc8\xf6\xe0\x89\x99\xa5\
\x69\xd9\xd3\xab\x03\x00\xcc\x91\xd7\xe5\x6e\xd5\x11\x98\x84\x59\
\x9a\xe9\x98\xc5\x2c\xcd\x0d\xf3\xed\xea\xcb\x02\x98\x33\x37\xcf\
\x57\x8b\x46\x36\x4b\x33\x31\xb3\x34\xed\x7a\x4d\x75\x00\x80\xb9\
\xf3\x95\x6c\x57\x1d\x81\x75\xa5\xd2\xb4\xea\xce\x26\x40\x01\x0a\
\x9c\x9e\x8d\xab\x23\xb0\x6e\x54\x9a\x36\x2d\xcb\x47\xaa\x23\x00\
\xcc\xa5\x2d\xf3\xdf\x59\x5a\x1d\x82\x75\xa1\xd2\xb4\xe9\xa1\xd9\
\xa0\x3a\x02\xc0\x9c\x3a\x20\x2f\xae\x8e\xc0\xba\xb0\x3d\x78\x3a\
\xa6\xbb\x3d\x78\x8b\xfc\xbc\xfa\x82\x00\xe6\xda\xe3\xf2\x8a\x81\
\x47\xb4\x3d\x78\x62\x66\x69\x5a\xf4\xac\xea\x00\x00\x73\xee\xe5\
\xb9\x77\x75\x04\x16\xcb\x2c\xcd\x74\x4c\x73\x96\x66\xb7\x7c\xb3\
\xfa\x72\x00\xc8\x5e\xf9\xf2\x80\xa3\x99\xa5\x99\x98\x59\x9a\xf6\
\xbc\xae\x3a\x00\x00\x49\xbe\xe4\x40\xf7\xb8\xa8\x34\xad\x39\x20\
\x77\xaa\x8e\x00\x40\x92\xe4\xcb\xd9\xa8\x3a\x02\x0b\xa7\xd2\xb4\
\x65\x79\x4e\xac\x8e\x00\xc0\xef\x6d\x9d\x77\xf9\x39\x39\x1e\xfe\
\xa8\xda\xf2\xb0\xea\x00\x00\xfc\x91\x7b\xe5\x79\xd5\x11\x58\x28\
\xdb\x83\xa7\x63\x3a\xdb\x83\xb7\xcc\xcf\xaa\x2f\x04\x80\x6b\x78\
\x58\xde\x30\xc0\x28\xb6\x07\x4f\xcc\x2c\x4d\x4b\x9e\x5d\x1d\x00\
\x80\x6b\x79\x7d\xf6\xab\x8e\xc0\x42\x98\xa5\x99\x8e\x69\xcc\xd2\
\xec\x9e\x6f\x54\x5f\x06\x00\xab\xb5\x5b\xce\x9e\xf1\x08\x66\x69\
\x26\x66\x96\xa6\x1d\x0e\x6f\x03\xb4\xea\xac\x6c\x51\x1d\x81\xb5\
\x51\x69\x5a\x71\x40\xee\x58\x1d\x01\x80\xeb\x74\x7c\x96\x55\x47\
\x60\xcd\x54\x9a\x36\x2c\x73\x78\x1b\xa0\x69\xb7\xc9\xbf\x57\x47\
\x60\xcd\x54\x9a\x36\x3c\xac\x3a\x00\x00\x6b\xf1\x97\xf9\xcb\xea\
\x08\xac\x89\xed\xc1\xd3\x31\xd9\xf6\x60\x4f\xde\x06\x18\x87\xbb\
\xe5\x84\x19\xbd\xb2\xed\xc1\x13\x33\x4b\xd3\x02\x4f\xde\x06\x18\
\x87\x8f\xe6\x46\xd5\x11\xb8\x2e\x66\x69\xa6\x63\x92\x59\x9a\x5d\
\x73\x56\x75\x7c\x00\x16\x6c\xe5\x4c\x66\xd6\xcd\xd2\x4c\xcc\x2c\
\x4d\xbd\xd7\x56\x07\x00\x60\x11\x3e\xe2\xec\x53\x9b\x54\x9a\x6a\
\x77\xce\x5d\xaa\x23\x00\xb0\x08\xb7\xce\xbf\x55\x47\x60\x75\x54\
\x9a\x5a\x4b\x73\x7c\x75\x04\x00\x16\xe9\x71\x79\x54\x75\x04\xae\
\x4d\xa5\xa9\xf5\xe0\x6c\x58\x1d\x01\x80\x45\x7b\x8d\xe7\x3e\xb5\
\xc7\xf6\xe0\xe9\x58\xb7\xed\xc1\x9b\xe5\x97\xd5\xc1\x01\x58\x47\
\x3b\xe7\x3b\x53\x7c\x35\xdb\x83\x27\x66\x96\xa6\xd2\xdf\x55\x07\
\x00\x60\x9d\x7d\x23\x9b\x54\x47\xe0\x8f\xa9\x34\x75\x76\xca\xd3\
\xab\x23\x00\xb0\xce\x96\xe7\x5d\x7e\x8a\xb6\xc4\x1f\x46\x9d\x97\
\x57\x07\x00\x60\x22\xf7\xc8\xb3\xab\x23\xf0\x07\x2a\x4d\x95\x7d\
\x73\x50\x75\x04\x00\x26\xf4\xcc\xdc\xbf\x3a\x02\x57\x51\x69\x6a\
\xac\x97\xf7\x57\x47\x00\x60\x0a\xde\x99\xbd\xaa\x23\x70\x25\x95\
\xa6\xc6\xa1\x59\x55\x1d\x01\x80\xa9\xf8\x62\xb6\xa9\x8e\x40\xa2\
\xd2\xd4\xd8\x28\xef\xa8\x8e\x00\xc0\xd4\x9c\x94\xe5\xd5\x11\x50\
\x69\x6a\x3c\xb1\x3a\x00\x00\x53\xb4\x47\x5e\x56\x1d\x01\xb7\xda\
\x9b\x96\xc5\xdc\x6a\x6f\xdb\xfc\xb0\x3a\x2e\x00\x53\xf6\xa8\xfc\
\xe7\x44\xbf\xdf\xad\xf6\x26\x66\x96\x66\x78\x2f\xac\x0e\x00\xc0\
\xd4\xbd\x36\x77\xa8\x8e\x30\xef\xcc\xd2\x4c\xc7\xc2\x67\x69\x6e\
\x9e\x2f\x57\x87\x05\x60\x26\x76\xc8\xf7\x27\xf8\xbd\x66\x69\x26\
\x64\x96\x66\x68\x6f\xa9\x0e\x00\xc0\x8c\x7c\xce\xa3\x88\x2b\xa9\
\x34\xc3\xba\x67\x6e\x56\x1d\x01\x80\x19\x59\x35\xe1\x7e\x1a\x26\
\xa2\xd2\x0c\x69\xfd\x7c\xa8\x3a\x02\x00\x33\xf4\xa0\xfc\x55\x75\
\x84\xf9\xa5\xd2\x0c\xe9\x11\xd5\x01\x00\x98\xb1\x97\x65\xff\xea\
\x08\xf3\xca\xf6\xe0\xe9\x58\xc8\xf6\xe0\x2d\xf3\xb3\xea\x98\x00\
\x0c\x60\xa7\x7c\x77\xd1\xbf\xc7\xf6\xe0\x89\x99\xa5\x19\xce\x3f\
\x54\x07\x00\x60\x10\x5f\xcc\x8a\xea\x08\xf3\x48\xa5\x19\xca\xce\
\x79\x72\x75\x04\x00\x06\xb1\xa5\x6d\xc2\x15\x54\x9a\xa1\xbc\xaa\
\x3a\x00\x00\x83\x79\xa0\x6d\xc2\xc3\x53\x69\x86\x71\xbb\xdc\xa3\
\x3a\x02\x00\x03\x7a\x59\xee\x5c\x1d\x61\xde\xd8\x1e\x3c\x1d\x6b\
\xde\x1e\xbc\x5e\xce\xf3\xe8\x79\x80\xb9\xb3\x98\xbb\x09\xdb\x1e\
\x3c\x31\xb3\x34\x43\x38\x54\xa1\x01\x98\x43\x9f\xcd\x06\xd5\x11\
\xe6\x89\x4a\x33\x7b\x2b\xf2\x8e\xea\x08\x00\x14\xd8\x2e\xaf\xac\
\x8e\x30\x4f\x54\x9a\xd9\xb3\x45\x0c\x60\x5e\x3d\x3c\x8f\xac\x8e\
\x30\x3f\xec\xa5\x99\x8e\xeb\xde\x4b\x73\xbd\xfc\xa8\x3a\x1c\x00\
\x85\xf6\xcd\x67\x17\xf0\xab\xec\xa5\x99\x98\x59\x9a\x59\x3b\xaa\
\x3a\x00\x00\xa5\x4e\xcb\xf5\xaa\x23\xcc\x07\x95\x66\xb6\xf6\xc8\
\xa3\xaa\x23\x00\x50\xec\x84\x2c\xab\x8e\x30\x0f\x54\x9a\xd9\x7a\
\x5d\x75\x00\x00\xca\xdd\x2c\xcf\xaf\x8e\x30\x0f\x54\x9a\x59\xda\
\x3f\xb7\xab\x8e\x00\x40\x03\x9e\x92\xfb\x57\x47\xe8\x9f\xed\xc1\
\xd3\xb1\xba\xed\xc1\x4b\xf3\xeb\x6c\x58\x1d\x0c\x80\x46\xec\x99\
\xaf\xad\xe1\xff\xda\x1e\x3c\x31\xb3\x34\xb3\x73\x84\x42\x03\xc0\
\xff\x39\x23\x9b\x56\x47\xe8\x9b\x4a\x33\x2b\x1b\xe7\x98\xea\x08\
\x00\x34\xe5\xd8\xc1\xd6\x46\xe6\x92\x4a\x33\x2b\x7f\x5d\x1d\x00\
\x80\xc6\xdc\xdb\xcf\x86\x59\xb2\x97\x66\x3a\xae\xb9\x97\x66\xdb\
\xfc\xb0\x3a\x12\x00\x0d\xda\x3f\x27\xad\xf6\xbf\xdb\x4b\x33\x31\
\xb3\x34\xb3\xf1\x82\xea\x00\x00\x34\xe9\x13\xd9\xae\x3a\x42\xaf\
\x54\x9a\x59\xd8\x33\x47\x56\x47\x00\xa0\x51\x27\x67\x79\x75\x84\
\x3e\xa9\x34\xb3\xf0\x86\xea\x00\x00\x34\x6b\xd7\xfc\x4b\x75\x84\
\x3e\xa9\x34\xd3\x77\x40\xf6\xa9\x8e\x00\x40\xc3\x9e\xe4\xc6\x7b\
\xb3\x60\x7b\xf0\x74\xfc\x61\x7b\xf0\xd2\x5c\x64\x4a\x11\x80\xb5\
\xb8\x71\xbe\x71\xb5\x7f\xb7\x3d\x78\x62\x66\x69\xa6\xed\x81\x0a\
\x0d\x00\x6b\x75\x66\x36\xae\x8e\xd0\x1b\x95\x66\xba\x36\xce\x9b\
\xaa\x23\x00\x30\x02\x4b\xf2\x5f\xd5\x11\x7a\xa3\xd2\x4c\xd7\x93\
\xaa\x03\x00\x30\x12\x0f\xc8\xa3\xab\x23\xf4\xc5\x5e\x9a\xe9\xb8\
\x72\x2f\x8d\x1b\xec\x01\xb0\x18\xb7\xce\xe7\x7f\xff\x4f\xf6\xd2\
\x4c\xcc\x2c\xcd\x34\xfd\xbf\xea\x00\x00\x8c\xca\xe7\xb2\x65\x75\
\x84\x7e\xa8\x34\xd3\x73\x93\x3c\xac\x3a\x02\x00\x23\xf3\x2e\x8f\
\xb2\x9c\x16\x95\x66\x7a\x6c\xf4\x02\x60\xb1\x0e\xc8\x53\xaa\x23\
\xf4\x42\xa5\x99\x96\xfd\x72\xbb\xea\x08\x00\x8c\xd0\x0b\x73\xa7\
\xea\x08\x7d\xb0\x3d\x78\x3a\x96\xe5\x17\xd9\xa4\x3a\x04\x00\x23\
\xb5\x2a\xeb\xdb\x1e\x3c\x29\xb3\x34\xd3\xf1\xa7\x0a\x0d\x00\xeb\
\xec\x43\xd5\x01\x7a\xa0\xd2\x4c\xc7\xb1\xd5\x01\x00\x18\xb1\x5b\
\xe6\x91\xd5\x11\xc6\xcf\xc2\x13\x00\x30\x5b\x16\x9e\x00\x00\x16\
\x46\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\
\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\
\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\
\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\
\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\
\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\
\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\
\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\
\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\
\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\
\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\
\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\
\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\
\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\
\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\
\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\
\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\
\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\
\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\
\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\
\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\
\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\
\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\
\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\
\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\
\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\
\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\
\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\
\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\
\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\
\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\
\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\
\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\
\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\
\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\
\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\
\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\
\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\
\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\
\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\
\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\
\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\
\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\
\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\
\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\
\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\
\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\
\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\
\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\
\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\
\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\
\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\
\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\
\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\
\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\
\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\
\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\
\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\
\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\
\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\
\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\
\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\
\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\
\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\
\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\
\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\
\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\
\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\
\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\
\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\
\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\
\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\
\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\
\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\
\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\
\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\
\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\
\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\
\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\
\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\
\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\
\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\
\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\
\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\
\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\
\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\
\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\
\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\
\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\
\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\
\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\
\x80\x0e\x0c\x55\x69\x2e\xa9\xbe\x50\x00\xa0\x67\x43\x55\x9a\x5f\
\x57\x5f\x28\x00\xd0\xb3\xa1\x2a\xcd\x05\xd5\x17\x0a\x00\xf4\xcc\
\x2c\x0d\x00\xd0\x81\xa1\x2a\xcd\x85\xd5\x17\x0a\x00\xf4\x6c\xa8\
\x4a\xf3\xe3\xea\x0b\x05\x00\x7a\x36\x54\xa5\x39\xa7\xfa\x42\x01\
\x80\x9e\x0d\x55\x69\xbe\x57\x7d\xa1\x00\x40\xcf\x86\xaa\x34\x3f\
\xac\xbe\x50\x00\xa0\x67\xf6\xd2\x00\x00\x1d\x18\xaa\xd2\x9c\x57\
\x7d\xa1\x00\x40\xcf\x54\x1a\x00\xa0\x03\x43\x55\x9a\x5f\x54\x5f\
\x28\x00\xd0\xb3\x25\x83\x8d\x73\x79\xf5\xa5\x02\x00\x25\x06\x69\
\x1b\x43\xcd\xd2\x5c\x91\x33\x07\x1a\x09\x00\x98\x43\x43\x55\x9a\
\xe4\xc4\xea\x4b\x05\x00\xfa\x35\x5c\xa5\x39\xb9\xfa\x52\x01\x80\
\x7e\x0d\x57\x69\xbe\x52\x7d\xa9\x00\x40\xbf\x86\xab\x34\xe7\x56\
\x5f\x2a\x00\xd0\xaf\xe1\x2a\xcd\x05\xd5\x97\x0a\x00\x14\x78\xcf\
\x30\xc3\x0c\x57\x69\xae\xc8\xfb\x06\x1b\x0b\x00\x68\xc5\xfb\x87\
\x19\x66\xb8\x4a\x93\xbc\x7b\xc0\xb1\x00\x80\x36\x9c\x32\xcc\x30\
\x43\x56\x9a\x81\x2e\x09\x00\x68\xc8\x77\x86\x19\x66\xc8\x4a\x73\
\xce\x80\x63\x01\x00\x2d\x38\x3d\x97\x0c\x33\xd0\x90\x95\xe6\xd2\
\x7c\x69\xc0\xd1\x00\x80\x7a\xc7\x0c\x35\xd0\x90\x95\x26\x79\xc5\
\xa0\xa3\x01\x00\xd5\x3e\x30\xd4\x40\x43\x3d\xb6\xf2\x4a\x3b\xe7\
\x5b\x83\x8e\x07\x00\xd4\x5a\x3f\x97\x0d\x33\xd0\xb0\xb3\x34\x76\
\xd3\x00\xc0\x3c\x79\xdf\x50\x85\x66\xe8\x4a\x73\x79\x5e\x3d\xe8\
\x78\x00\x40\xa5\xd7\x0d\x37\xd4\xb0\x95\x26\x79\xf3\xc0\xe3\x01\
\x00\x75\x3e\x35\xdc\x50\xc3\xee\xa5\x49\x36\xc8\xc5\x03\x8f\x08\
\x00\xd4\xf8\x52\xf6\x1e\x6e\xb0\xa1\x67\x69\x2e\xc9\x1b\x07\x1e\
\x11\x00\xa8\xf1\xff\x86\x1c\x6c\xe8\x59\x9a\xe4\xf6\xf9\xf4\xe0\
\x63\x02\x00\xc3\x5b\x99\x9f\x0f\x37\xd8\xf0\x95\x66\xfd\xa1\xee\
\x22\x08\x00\x14\x3a\x2d\xb7\x1d\x72\xb8\xa5\x83\x5f\xe0\xef\xb2\
\x69\xee\x30\xf8\xa8\x00\xc0\xb0\x1e\x9d\xb3\x86\x1c\x6e\xf8\x59\
\x9a\x64\xb7\x7c\xb3\x60\x54\x00\x60\x48\x1b\x0e\xbb\x2e\x33\xf4\
\xf6\xe0\x24\x39\xcb\x2d\xf7\x00\xa0\x73\x2f\x18\x7a\xa3\x49\x45\
\xa5\x49\x9e\x52\x32\x2a\x00\x30\x94\xa3\x87\x1e\xb0\x62\xe1\x29\
\xd9\x28\x17\x96\x8c\x0b\x00\x0c\xe1\xab\xb9\xf9\xd0\x43\x0e\xbf\
\x3d\x38\x49\x2e\xcb\xe5\x39\xa0\x64\x64\x00\x60\xf6\x1e\x30\xfc\
\x26\x93\x9a\x59\x9a\x64\x9b\xfc\xb8\x68\x64\x00\x60\xb6\x2e\xcf\
\xf2\x5c\x3e\xf4\xa0\x35\x7b\x69\x92\x9f\x0c\xf9\x20\x2b\x00\x60\
\x40\x0f\x1a\xbe\xd0\xd4\xcd\xd2\x38\xca\x0d\x00\xbd\x5a\x51\xf1\
\x44\xc7\xaa\x59\x9a\xe4\xac\xbc\xa7\x6c\x6c\x00\x60\x56\x1e\x5d\
\xf3\x88\xea\xba\x59\x9a\x64\xd7\x61\xef\x2a\x08\x00\x0c\x60\xe0\
\x5b\xec\x5d\xa5\x6e\x96\x26\x39\x3b\x6f\x2e\x1c\x1d\x00\x98\xbe\
\x23\xab\x9e\xe5\x58\x39\x4b\x93\xec\x94\xef\x94\x8e\x0f\x00\x4c\
\xd7\x06\xb9\xb4\x66\xe0\x9a\xfb\xd2\x5c\xe5\x97\xd9\x3c\xb7\x2f\
\x4d\x00\x00\x4c\xcf\x7d\x73\x46\xd5\xd0\xb5\xb3\x34\xc9\x16\xf9\
\x79\x71\x02\x00\x60\x3a\xbe\x9e\x9b\xe4\x8a\xaa\xc1\x2b\xf7\xd2\
\x24\xc9\x2f\xf2\x88\xe2\x04\x00\xc0\x74\x1c\x56\x57\x68\xea\x67\
\x69\x92\xa5\xb9\x20\x2b\xaa\x43\x00\x00\x13\x7a\x7d\x1e\x5e\x39\
\x7c\x7d\xa5\x49\x6e\x9b\xcf\x54\x47\x00\x00\x26\xb4\x4d\xce\xaf\
\x1c\xbe\x76\x7b\xf0\x95\xbe\x9f\x55\xb9\x4d\x75\x08\x00\x60\x02\
\x87\xe7\xb3\xb5\x01\x5a\x98\xa5\x49\x36\xcd\xaf\xaa\x23\x00\x00\
\xeb\xec\x94\xdc\xa1\x3a\x42\xf5\xf6\xe0\x2b\x5d\x90\x7b\x55\x47\
\x00\x00\xd6\xd9\x11\xd5\x01\xda\x58\x78\x4a\x92\xb3\xb3\x7b\x6e\
\x51\x1d\x02\x00\x58\x07\x8f\xcc\xc7\xab\x23\xb4\xb2\xf0\x94\x58\
\x7c\x02\x80\x71\xfa\x48\xee\x51\x1d\x21\x69\xa9\xd2\x24\xb7\xc9\
\x69\xd5\x11\x00\x80\x45\xda\x3a\x3f\xad\x8e\x90\xb4\xb3\xf0\x94\
\x24\x3f\xc8\x65\x39\xb0\x3a\x04\x00\xb0\x08\x07\xd6\x3d\x02\xe1\
\xea\xda\xd8\x1e\x7c\x95\xe7\xe7\xd4\xea\x08\x00\xc0\x82\x3d\x37\
\x27\x56\x47\xb8\x4a\x4b\x0b\x4f\x49\xb2\xb2\x8d\xc9\x2b\x00\x60\
\xad\x3e\x9d\x3b\xe7\xf2\xea\x10\x57\x69\xad\xd2\x24\x7b\xe7\x0b\
\xd5\x11\x00\x80\x05\x58\xd9\xd2\xc3\xa7\xdb\x5a\x78\x4a\x92\x2f\
\xe6\xc8\xea\x08\x00\xc0\x5a\xed\xdd\x52\xa1\x69\x6b\x7b\xf0\x55\
\xbe\x9c\x65\xd9\xaf\x3a\x04\x00\xb0\x06\x07\xe7\xa4\xea\x08\x57\
\xd7\x62\xa5\x49\x3e\x9e\x9b\x66\xcf\xea\x10\x00\xc0\x75\x78\x7c\
\x8e\xa9\x8e\x70\x4d\xed\xed\xa5\xb9\xd2\x06\xf9\x62\xf6\xa8\x0e\
\x01\x00\xac\xc6\x4b\xf3\xa4\xea\x08\xd7\xd6\x6a\xa5\x49\x56\xe6\
\xbc\x2c\xaf\x0e\x01\x00\x5c\xc3\x7b\x73\xff\x76\xce\x39\xfd\x41\
\xbb\x95\x26\x59\x95\xf3\xaa\x23\x00\x00\x57\xf3\xb1\xdc\x33\x97\
\x55\x87\x58\x9d\x96\x2b\x4d\xb2\x43\xce\xad\x8e\x00\x00\xfc\x9f\
\xcf\xe7\x8e\xb9\xb8\x3a\xc4\xea\xb5\x5d\x69\x92\x5d\x72\x76\x75\
\x04\x00\x20\x49\x72\x76\xf6\xca\x85\xd5\x21\xae\x4b\x7b\xf7\xa5\
\xb9\xba\x6f\x65\x97\xea\x08\x00\x40\x92\xcf\xb7\x5c\x68\xda\xaf\
\x34\xc9\xb7\xb3\x43\x75\x04\x00\x98\x7b\x1f\xcb\x1d\x5b\x2e\x34\
\x63\xa8\x34\xc9\xf7\xb3\x2a\x17\x55\x87\x00\x80\x39\xf6\xde\xdc\
\xb3\xd5\x3d\x34\x57\x19\x43\xa5\x49\x7e\x9c\xed\xf2\xf9\xea\x10\
\x00\x30\xa7\x5e\x9a\xfb\xb7\x79\xca\xe9\x8f\x8d\xa3\xd2\x24\xbf\
\xcc\xed\xf2\xc6\xea\x10\x00\x30\x87\x1e\x9f\x27\xb5\x78\x1f\x9a\
\x6b\x6a\xf3\x81\x08\xab\x73\x79\xde\x9b\xdf\xe6\xae\xd5\x31\x00\
\x60\xae\x1c\xdc\xde\xa3\x0f\x56\xaf\xf5\x43\xdc\xd7\x74\x68\xde\
\x55\x1d\x01\x00\xe6\xc6\xde\xf9\x52\x75\x84\x85\x1a\x5b\xa5\x49\
\xf6\xc8\xd7\xaa\x23\x00\xc0\x1c\xf8\x74\xfe\x24\x3f\xaf\x0e\xb1\
\x70\x63\xd9\x4b\xf3\x07\x67\x66\xb3\x7c\xa8\x3a\x04\x00\x74\xee\
\xb9\xb9\xf3\x98\x0a\xcd\x18\x67\x69\xae\x4c\xfd\x17\x79\x65\x75\
\x08\x00\xe8\xd6\x81\x39\xb1\x3a\xc2\x62\x8d\xb3\xd2\x24\xc9\x9e\
\xf9\x5c\x36\xac\x0e\x01\x00\xdd\xf9\x68\x8e\xc8\x4f\xab\x43\x2c\
\xde\xf8\x16\x9e\xae\x72\x46\xb6\xc8\xbf\x55\x87\x00\x80\xce\x3c\
\x32\x77\x1f\x63\xa1\x19\xf3\x2c\xcd\x95\xf6\xcd\xa9\xd5\x11\x00\
\xa0\x13\xa7\xe4\x88\x7c\xb7\x3a\xc4\xba\x1a\xef\x2c\xcd\x95\x4e\
\xcb\x86\x79\x56\x75\x08\x00\xe8\xc0\xe1\xb9\xc3\x78\x0b\xcd\xf8\
\x67\x69\xae\x74\x93\xbc\x25\x7b\x57\x87\x00\x80\xd1\x7a\x7d\xfe\
\x26\xe7\x57\x87\x98\x4c\x1f\x95\x26\x49\xee\x95\xe3\xaa\x23\x00\
\xc0\x08\x7d\x23\x87\xe5\xcb\xd5\x21\x26\x37\xf6\x85\xa7\x3f\xf8\
\x50\x36\xcc\x93\xab\x43\x00\xc0\xc8\xdc\x37\x7b\xf4\x50\x68\x7a\
\x9a\xa5\xb9\xd2\x16\x79\x62\x9e\x5d\x1d\x02\x00\x46\xe1\xc8\xbc\
\x2d\x97\x56\x87\x98\x96\xde\x2a\x4d\x92\x6c\x95\xa7\xe6\xef\xaa\
\x43\x00\x40\xd3\x1e\x9d\x37\xe5\x92\xea\x10\xd3\xd4\x63\xa5\x49\
\x92\x95\x79\x44\x5e\x58\x1d\x02\x00\x1a\x74\x45\x1e\x98\xf7\xe5\
\xe2\xea\x18\xd3\xd6\x6b\xa5\x49\x92\x0d\x73\x48\xde\x52\x1d\x02\
\x00\x1a\x72\x7a\x1e\x97\x93\x73\x79\x75\x8c\x59\xe8\x67\x7b\xf0\
\xb5\x5d\x9c\xb7\x66\x69\x6e\x9d\xb7\x55\x07\x01\x80\x06\xbc\x20\
\xbb\xe6\x66\xf9\x44\x9f\x85\xa6\xef\x59\x9a\x3f\xd8\x22\x87\xe4\
\x5f\xb2\x75\x75\x0c\x00\x28\x71\x5a\x9e\x9d\x13\xfb\xda\x39\x73\
\x6d\xf3\x51\x69\xae\xb4\x43\x0e\xc9\xf3\xb2\x49\x75\x0c\x00\x18\
\xcc\x97\xf3\xbc\x7c\x24\x3f\xab\x8e\x31\x84\x79\xaa\x34\x57\xba\
\x41\xee\x96\xbf\xcc\x3e\xd5\x31\x00\x60\xa6\xde\x9f\xff\xca\xa7\
\xc6\x7e\x47\xe0\xc5\x98\xbf\x4a\x73\xa5\x8d\xb3\x57\xee\x97\x47\
\x64\xab\xea\x20\x00\x30\x55\xa7\xe7\x98\xfc\x4f\xce\xcc\x65\xd5\
\x41\x86\x36\xaf\x95\xe6\x2a\x9b\x64\xf7\xdc\x25\xf7\xc9\x01\xd5\
\x41\x00\x60\x22\xef\xc9\xfb\x73\x4a\xbe\xd3\xfb\x8e\x19\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x89\xff\
\x1f\x61\x2a\x9d\xa4\x57\x56\x34\x3d\x00\x00\x00\x25\x74\x45\x58\
\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\
\x37\x2d\x31\x31\x2d\x31\x32\x54\x31\x31\x3a\x31\x36\x3a\x32\x39\
\x2b\x30\x38\x3a\x30\x30\x33\x23\xc9\x84\x00\x00\x00\x25\x74\x45\
\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\
\x31\x35\x2d\x31\x32\x2d\x31\x30\x54\x32\x32\x3a\x30\x34\x3a\x34\
\x36\x2b\x30\x38\x3a\x30\x30\x7c\x2f\x24\xf4\x00\x00\x00\x4d\x74\
\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x49\x6d\x61\x67\
\x65\x4d\x61\x67\x69\x63\x6b\x20\x37\x2e\x30\x2e\x31\x2d\x36\x20\
\x51\x31\x36\x20\x78\x38\x36\x5f\x36\x34\x20\x32\x30\x31\x36\x2d\
\x30\x39\x2d\x31\x37\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\
\x2e\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2e\x6f\x72\x67\
\xdd\xd9\xa5\x4e\x00\x00\x00\x63\x74\x45\x58\x74\x73\x76\x67\x3a\
\x63\x6f\x6d\x6d\x65\x6e\x74\x00\x20\x47\x65\x6e\x65\x72\x61\x74\
\x6f\x72\x3a\x20\x41\x64\x6f\x62\x65\x20\x49\x6c\x6c\x75\x73\x74\
\x72\x61\x74\x6f\x72\x20\x31\x38\x2e\x30\x2e\x30\x2c\x20\x53\x56\
\x47\x20\x45\x78\x70\x6f\x72\x74\x20\x50\x6c\x75\x67\x2d\x49\x6e\
\x20\x2e\x20\x53\x56\x47\x20\x56\x65\x72\x73\x69\x6f\x6e\x3a\x20\
\x36\x2e\x30\x30\x20\x42\x75\x69\x6c\x64\x20\x30\x29\x20\x20\xd3\
\xdd\x83\xdc\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\
\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\
\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\x00\x19\x74\x45\x58\x74\x54\
\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\
\x67\x68\x74\x00\x31\x31\x32\x39\x98\x55\xce\x37\x00\x00\x00\x18\
\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\
\x3a\x3a\x57\x69\x64\x74\x68\x00\x31\x31\x32\x39\x8d\x1c\x12\x2e\
\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\
\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\
\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\
\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x34\x34\x39\x37\x35\
\x36\x32\x38\x36\xef\x9b\x07\x8b\x00\x00\x00\x12\x74\x45\x58\x74\
\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\x31\x36\x2e\x31\
\x4b\x42\x3e\xac\xcd\x3f\x00\x00\x00\x5f\x74\x45\x58\x74\x54\x68\
\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\
\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\
\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\
\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\
\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\x31\x31\x39\x37\
\x33\x2f\x31\x31\x39\x37\x33\x37\x31\x2e\x70\x6e\x67\xd3\x76\x5e\
\x97\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x09\x80\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x40\
\x50\x4c\x54\x45\xff\xff\xff\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\
\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\
\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\
\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\
\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\
\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\
\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\
\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\
\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\
\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\
\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\
\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\
\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\
\xa5\x9f\x97\xa8\xa2\x9b\xa5\x9f\x97\xa5\x9f\x97\xae\xa9\xa2\xa5\
\x9f\x97\xb5\xb0\xa9\xa5\x9f\x97\xa8\xa2\x9a\xb7\xb2\xab\xb5\xb0\
\xaa\xaf\xaa\xa2\xb5\xb0\xa9\xa5\x9f\x97\xb5\xb0\xaa\xb5\xb0\xaa\
\xac\xa7\xa0\xb5\xb0\xa9\xb6\xb1\xab\xb5\xb0\xa9\xb2\xad\xa6\xb6\
\xb1\xab\xb6\xb1\xab\xb6\xb1\xab\xb7\xb2\xab\xb7\xb2\xab\xa5\x9f\
\x97\xb5\xb0\xaa\xb5\xb0\xaa\xb6\xb1\xab\xa5\x9f\x97\xb5\xb0\xa9\
\xb7\xb2\xab\xb5\xb0\xaa\xa5\x9f\x97\xb6\xb1\xab\xb6\xb1\xab\xa5\
\x9f\x97\xb7\xb2\xab\xb6\xb1\xaa\xb6\xb1\xaa\xb7\xb2\xab\xb5\xb0\
\xa9\xb7\xb2\xac\xb3\xae\xa8\xb6\xb1\xab\xa8\xa2\x9a\xb6\xb1\xab\
\xb5\xb0\xaa\xb7\xb2\xab\xb5\xb0\xaa\xb5\xb0\xa9\xb5\xb0\xa9\xb5\
\xb0\xa9\xb6\xb1\xab\xb6\xb1\xaa\xb4\xaf\xa9\xb7\xb2\xac\xb5\xb0\
\xa9\xbc\xb7\xb1\xb6\xb1\xaa\xb7\xb2\xab\xb4\xaf\xa9\xb5\xb0\xa9\
\xb6\xb1\xaa\xb5\xb0\xa9\xb6\xb1\xaa\xb3\xae\xa8\xb6\xb1\xab\xb6\
\xb1\xaa\xb5\xb0\xa9\xb6\xb1\xaa\xb7\xb2\xab\xb5\xb0\xaa\xb5\xb0\
\xaa\xb5\xb0\xaa\xb5\xb0\xa9\xb6\xb1\xab\xb2\xad\xa6\xb5\xb0\xa9\
\xb6\xb1\xab\xb6\xb1\xab\xb5\xb0\xa9\xb6\xb1\xab\xb5\xb0\xaa\xb6\
\xb1\xaa\xb6\xb1\xab\xb5\xb0\xa9\xb5\xb0\xaa\xa5\x9f\x97\xab\xa5\
\x9e\xb2\xad\xa6\xb7\xb2\xac\xad\xa8\xa0\xad\xa8\xa1\xb6\xb1\xab\
\xa6\xa1\x99\xaf\xa9\xa2\xa9\xa3\x9b\xb1\xab\xa4\xab\xa6\x9e\xb3\
\xae\xa7\xa7\xa2\x9a\xaf\xaa\xa2\xac\xa6\x9f\xaa\xa4\x9d\xaa\xa4\
\x9c\xb0\xaa\xa3\xb6\xb1\xaa\xaa\xa5\x9d\xb0\xab\xa4\xa7\xa1\x99\
\xac\xa7\x9f\xb1\xac\xa5\xb7\xb2\xab\xa6\xa0\x98\xaf\xaa\xa3\xb4\
\xaf\xa8\xb5\xb0\xa9\xa8\xa2\x9b\xa9\xa4\x9c\xae\xa8\xa1\xb3\xae\
\xa8\xff\xff\xff\xc9\x58\x90\x5e\x00\x00\x00\x9d\x74\x52\x4e\x53\
\x00\x00\x24\x63\x84\x99\xb4\xcc\xe4\x4b\xa2\xe7\x15\xea\xf0\xed\
\xf9\x12\x93\xf6\xab\x6c\x36\x03\xa5\x1e\x21\x4e\x7b\xa8\xf3\x69\
\xfc\x57\x0c\x09\x1b\xc0\x9f\x39\x66\xc3\x96\x33\x06\x48\x3c\x42\
\xe1\xde\x75\x18\x5a\xd5\xdb\x45\x3f\xbd\x8a\x0f\x2d\x27\xcf\x30\
\xc9\x7e\xba\x72\xb7\x1c\x78\x87\x7f\x54\xd3\xb1\xd9\xfd\x16\x9a\
\x62\x60\x69\x91\x78\x34\xb6\xa2\x0e\xd9\xe4\xa5\xe9\xf3\xae\x79\
\x38\xb9\x5d\x45\xf8\x0b\xd2\xbf\xd7\x81\xee\xa8\x88\xe6\x49\xf5\
\x1f\xc1\x3e\xc4\x7f\xf0\x9a\x52\x3f\x1d\xdf\xae\x42\xfa\x56\x04\
\xbc\xe1\x2a\x4f\xa2\x66\x94\x19\xc9\x9f\x81\x9d\xeb\x75\x8b\x59\
\x23\xcc\x07\x4c\xcf\xd4\x72\xb1\x5f\x97\xb4\x2e\x6f\x03\x96\xf9\
\xc0\x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\
\x00\x07\x74\x49\x4d\x45\x07\xdd\x09\x09\x15\x2b\x1b\xf4\x94\xdd\
\xb4\x00\x00\x04\x0c\x49\x44\x41\x54\x58\xc3\xed\x96\xf9\x57\x13\
\x57\x14\xc7\x2f\x31\x09\x08\x86\x45\x84\x58\x45\x49\x82\x8a\xd2\
\x08\xc5\x6a\x6d\x15\xc5\x2a\x4a\x5b\x9a\x14\xd7\x46\x42\x0c\x14\
\xb0\x1a\xa1\x40\x05\x89\x4b\x12\xb4\xc1\x05\x97\x42\x5b\xb0\x68\
\x1f\x5e\x0b\xae\xb8\xd4\x22\x4d\x5b\x97\xbf\xcd\xf7\x66\x32\xc9\
\x4c\x96\x59\xfc\xcd\x73\xfc\x9e\x93\x99\xc9\x9b\xf9\x7c\xe7\xbe\
\x77\xef\x7b\x6f\x00\xde\x2b\x49\x19\x82\x74\xf3\xf4\x06\x63\x66\
\x16\xc9\xca\x34\x1a\xf4\xf3\x74\x42\xb3\x4a\x83\xf9\xd9\x39\x44\
\xaa\x9c\xec\xf9\xaa\x0d\x16\xe8\x4d\x51\x2a\x37\x8f\x1d\xf3\xa3\
\xff\x4c\xfa\x05\x6a\x0c\x0a\x16\x16\xb2\xa7\x0b\x17\x15\x15\x9b\
\x33\x16\xb3\xcb\x0f\x96\x2c\x2d\x59\xb6\x9c\x6b\x5c\x58\xa0\xc4\
\x9b\x4b\xd9\x4b\x2d\x46\xab\x8d\x0b\x98\x37\x60\x57\x65\x56\x23\
\x17\x53\xa9\x59\x96\x5f\xb1\x92\x0b\x76\x15\x43\xca\x57\x1b\xd6\
\xe4\xb2\x7f\x99\x15\xab\x3f\xb4\xb3\x06\xee\xde\xca\x15\x32\xfc\
\xda\xdc\x68\x77\x2b\xab\x2a\x4c\x92\x31\xcc\x33\x54\x66\x18\xa3\
\x03\xb3\x36\x2d\x5f\x6a\x21\xe4\xa3\x35\x24\x8d\xb2\xd8\xc1\x52\
\x4d\x7f\xa5\x69\xf8\x75\x2c\xc0\x8f\x75\xf9\x44\x46\x15\x05\xac\
\x93\xeb\x52\xf2\xeb\xe9\x1d\x83\x3d\xc3\xb6\x41\xce\x40\x07\xf6\
\x55\xf4\xb4\x3e\x05\x5f\x4c\xdf\x5c\x02\xa0\x93\xe5\xc9\x27\x3a\
\x80\x12\x9a\xcf\xe2\x24\x5e\x47\x07\xad\x02\x60\x63\x1e\x91\x57\
\xde\xa7\x00\x7a\x5a\x54\xba\x04\x9e\x05\xfe\x99\x19\xaa\xf2\x89\
\x92\xf2\xab\x00\x68\x2f\x36\xd8\xa4\x06\x9b\x68\xb5\x6f\x86\x9a\
\x5c\x45\x9e\xa6\x71\x0b\x94\x6d\x25\x64\x93\x84\xaf\xa5\x09\x24\
\xdb\x96\x66\xa9\xe0\xe9\x38\x2c\xf9\x9c\x16\xb6\xa5\x56\x6c\xb0\
\x5d\x15\x29\xd5\x76\x11\x5f\xfe\x16\x3c\x21\xe5\x71\x03\x5a\xa4\
\x4a\xa3\x9f\x42\xc6\xf8\x14\xb2\x10\x93\x6d\x87\x9a\x01\x8c\xa9\
\xae\xd6\x44\x2c\x3b\x05\x83\x5d\x84\xd4\x83\x59\xdd\x08\xf2\x32\
\xd9\xa1\x9e\x90\x2f\x04\x83\x4c\x42\x6a\x60\xa3\xa6\xf0\xbf\x84\
\x1a\x32\xf9\x55\x94\x2f\xb0\x90\x6a\x80\x6c\x4d\x06\x0d\x00\x5f\
\xdf\x72\x38\x79\x03\x2b\x9d\x44\x50\x56\xa8\xc9\xa0\xb0\x0c\xbe\
\x41\x6c\xe4\x0d\x68\x69\xef\x86\x4a\x6d\x19\xa0\x39\xdc\x83\xb8\
\x97\x37\x58\x44\x48\x2d\xec\xd0\x68\xb0\x0f\xf6\x23\x1e\xe0\x0d\
\xe8\x3c\xda\x0c\x06\x6d\xfc\xed\x6f\xc1\x85\x78\x90\x37\xa0\x19\
\x35\x18\xaa\x35\xf1\x7f\x4e\x35\xb9\xdd\x0e\x6c\xe6\x0d\x94\xa7\
\x70\x82\xa6\xef\x20\x2f\x0f\x6f\xa0\x96\xb3\x44\xcf\x77\xef\xa1\
\xa0\xb7\x8a\xe0\xfe\x83\x18\xef\x11\xc6\x40\x83\x1e\xce\x4c\xc5\
\x78\x61\x0c\x68\x16\x6c\x6a\xb3\xf0\x48\x78\xbd\x5b\x94\x85\x43\
\xac\x0e\x8a\xd4\xe0\x8f\xe3\xbd\xf7\x42\x0b\x62\x6b\xac\x12\xbf\
\x53\x53\x89\x4f\x9e\xfe\x15\x8f\xbe\x4d\x54\x89\x56\xb6\xa0\x2b\
\xce\x85\x67\x7f\x8b\x70\x6c\xef\x00\x77\x6c\x2e\xd0\xd9\x78\x18\
\xa0\x41\x8e\x9e\x7d\x3e\xf7\x0f\x8a\xf5\x3d\x40\x13\x0a\xb3\x11\
\xb6\xb2\x2d\xcb\x9a\x96\x8e\x3c\xfb\xf7\x3f\x4c\x50\x23\xb4\x21\
\x1e\x11\x16\x14\xba\x57\x1d\x05\x7b\x4e\x4a\x7a\x7a\x72\xe6\x01\
\x26\xc9\xd7\x01\xc7\x10\x3b\x45\x6b\x62\x8e\xdd\x96\xbc\xb4\x47\
\x9e\xdc\xbe\xf7\x3f\xa6\x52\xd7\x0f\xae\x6e\x74\xf4\xc4\x56\xd5\
\x3a\x42\xb2\xa5\xcb\xf2\xf4\xdd\x47\x77\x6e\xa5\x86\x79\x1d\x44\
\xec\x8d\x2f\xeb\x3f\xce\x46\x22\xec\x8d\x91\xd9\x17\x2f\x27\x9f\
\xbf\x7a\x3a\xf7\x7a\x0a\x95\xd5\x26\xda\x59\x8e\xab\x78\x3e\x51\
\xc7\xc5\x5b\x5b\x8b\x83\x35\xb5\x36\xab\x22\x9b\xfb\xfa\xe9\xd1\
\xd1\x22\xd9\x5d\x4f\xd0\xa6\x01\xd8\xef\x51\xc1\xb7\xfb\xe1\x64\
\x37\xe2\x09\xe9\xf6\xee\x3a\x85\x78\x1a\xe0\x4c\xbb\x22\x1f\x08\
\x42\x68\x10\xf1\xac\x2b\xe1\x0b\xe3\x9c\x8f\xcb\xeb\x4f\x4a\x0e\
\xed\x41\x80\x30\x2d\x84\x73\x49\xdf\x38\xfe\x00\x62\x1f\x3d\xc9\
\x8f\x43\x97\x1f\xa0\x93\x86\xe1\x87\x64\x0d\xd1\xfb\xe7\x01\x2e\
\x5c\x94\xe1\x7d\x4e\x08\x5d\xa2\xe7\x21\x48\xa5\x61\x96\x08\x57\
\xe8\x88\x5c\x04\x43\x4e\xe6\x3f\x0c\xa9\xe5\xa5\xc9\x6c\xba\x9c\
\x8e\xe5\x32\x7d\xa5\x8b\x5e\x5c\x85\x74\x0a\x0a\x69\xbc\x36\x70\
\xac\x5f\x42\x77\xb7\xfe\x3c\x12\xbd\xe9\x09\x42\x7a\x8d\x8c\x72\
\xcf\x9c\xfd\x85\x5e\xff\xea\x75\xff\xc6\x31\x63\xee\x71\x3f\x6b\
\xe8\xe3\xee\x8d\x8e\x80\x9c\x42\x5e\xc6\x04\x06\x1b\xf9\x34\x5f\
\x67\x08\x47\x74\xfc\x3e\xc8\xfa\xe0\xf1\x86\x40\x41\xce\x70\x80\
\xcb\x77\xab\xd7\x2f\x18\xf4\x0c\x0c\x5f\xe7\x62\x09\x84\x9d\x4a\
\x38\x53\xcf\x84\x4f\xc8\x1a\x37\x10\x42\x6d\xf9\x26\x7a\xd4\xe0\
\x5c\x47\x82\x37\x7c\xd2\x14\xa0\xef\x46\x50\x31\x78\xa9\x6e\xfe\
\x11\xee\x1d\x63\x11\xf4\x8f\xf5\x86\xc7\x6f\x6a\x83\xdf\x29\xbd\
\x01\xcf\x8a\xad\xb7\xc6\x34\xf5\x6a\x00\x00\x00\x25\x74\x45\x58\
\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\
\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\x31\x3a\x34\x39\x3a\x30\x35\
\x2b\x30\x38\x3a\x30\x30\xab\x22\x39\xeb\x00\x00\x00\x25\x74\x45\
\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\
\x31\x33\x2d\x30\x39\x2d\x30\x39\x54\x32\x31\x3a\x34\x33\x3a\x32\
\x37\x2b\x30\x38\x3a\x30\x30\x14\x44\x1d\x85\x00\x00\x00\x43\x74\
\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x2f\x75\x73\x72\
\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\
\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\x64\x6f\x63\x2f\x49\x6d\x61\
\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\x37\x2f\x2f\x69\x6e\x64\x65\
\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\x0a\x00\x00\x00\x18\x74\x45\
\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\
\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\
\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\
\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x36\x34\xbc\xe0\xa9\
\x84\x00\x00\x00\x16\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\
\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\x36\x34\x44\
\x4f\x69\x09\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\x62\
\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\x65\
\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\x74\
\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x33\x37\
\x38\x37\x33\x34\x32\x30\x37\x39\x95\xe1\xa0\x00\x00\x00\x11\x74\
\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\x32\
\x33\x34\x30\x42\xcc\xd8\xb1\x22\x00\x00\x00\x5f\x74\x45\x58\x74\
\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\
\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\x74\x2f\
\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\x63\x6f\
\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\
\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\x31\x31\
\x32\x36\x30\x2f\x31\x31\x32\x36\x30\x32\x35\x2e\x70\x6e\x67\xf7\
\x1d\xc6\x7c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x09\x87\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x46\
\x50\x4c\x54\x45\xff\xff\xff\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\
\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\
\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\
\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\
\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\
\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\
\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\
\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\
\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\
\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\
\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\
\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\
\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\
\x5c\xc7\x90\x62\xc9\x94\x5c\xc7\x90\x5c\xc7\x90\x6d\xcd\x9b\x5c\
\xc7\x90\x79\xd1\xa4\x5c\xc7\x90\x61\xc9\x93\x7c\xd2\xa6\x79\xd1\
\xa4\x6e\xcd\x9c\x78\xd1\xa3\x5c\xc7\x90\x79\xd1\xa4\x79\xd1\xa4\
\x69\xcc\x99\x78\xd1\xa3\x7b\xd2\xa5\x78\xd1\xa3\x73\xcf\xa0\x7b\
\xd2\xa5\x7b\xd2\xa5\x7b\xd2\xa5\x7c\xd2\xa6\x7c\xd2\xa6\x5c\xc7\
\x90\x79\xd1\xa4\x79\xd1\xa4\x7b\xd2\xa5\x5c\xc7\x90\x78\xd1\xa3\
\x7c\xd2\xa6\x79\xd1\xa4\x5c\xc7\x90\x7b\xd2\xa5\x7b\xd2\xa5\x5c\
\xc7\x90\x7c\xd2\xa6\x7a\xd1\xa4\x7a\xd1\xa4\x7c\xd2\xa6\x79\xd1\
\xa4\x7d\xd2\xa6\x76\xd0\xa2\x7b\xd2\xa5\x61\xc9\x93\x7b\xd2\xa5\
\x79\xd1\xa4\x7c\xd2\xa6\x79\xd1\xa4\x78\xd1\xa3\x79\xd1\xa4\x78\
\xd1\xa3\x7b\xd2\xa5\x7a\xd1\xa4\x77\xd0\xa3\x7d\xd2\xa6\x78\xd1\
\xa3\x85\xd5\xac\x7a\xd1\xa4\x7c\xd2\xa6\x77\xd0\xa3\x79\xd1\xa4\
\x7a\xd1\xa4\x79\xd1\xa4\x7a\xd1\xa4\x76\xd0\xa2\x7b\xd2\xa5\x7a\
\xd1\xa4\x79\xd1\xa4\x7a\xd1\xa4\x7c\xd2\xa6\x79\xd1\xa4\x79\xd1\
\xa4\x79\xd1\xa4\x78\xd1\xa3\x7b\xd2\xa5\x73\xcf\xa0\x78\xd1\xa3\
\x7b\xd2\xa5\x7b\xd2\xa5\x79\xd1\xa4\x7b\xd2\xa5\x79\xd1\xa4\x7a\
\xd1\xa4\x7b\xd2\xa5\x78\xd1\xa3\x79\xd1\xa4\x5c\xc7\x90\x66\xcb\
\x97\x74\xcf\xa0\x7d\xd2\xa6\x6b\xcc\x9a\x7b\xd2\xa5\x5f\xc8\x92\
\x6d\xcd\x9c\x62\xc9\x94\x71\xce\x9e\x68\xcb\x98\x76\xd0\xa1\x60\
\xc9\x93\x6e\xcd\x9c\x75\xd0\xa1\x65\xca\x96\x64\xca\x96\x6f\xce\
\x9d\x7a\xd1\xa4\x66\xca\x97\x70\xce\x9d\x69\xcb\x99\x72\xcf\x9f\
\x7c\xd2\xa6\x5d\xc7\x91\x6f\xcd\x9d\x77\xd0\xa2\x5e\xc8\x91\x78\
\xd1\xa3\x63\xc9\x95\x73\xcf\xa0\x60\xc8\x93\x5d\xc7\x90\x64\xca\
\x95\x6c\xcc\x9b\x76\xd0\xa2\xff\xff\xff\x87\x1c\xef\x27\x00\x00\
\x00\x9d\x74\x52\x4e\x53\x00\x00\x24\x63\x84\x99\xb4\xcc\xe4\x4b\
\xa2\xe7\x15\xea\xf0\xed\xf9\x12\x93\xf6\xab\x6c\x36\x03\xa5\x1e\
\x21\x4e\x7b\xa8\xf3\x69\xfc\x57\x0c\x09\x1b\xc0\x9f\x39\x66\xc3\
\x96\x33\x06\x48\x3c\x42\xe1\xde\x75\x18\x5a\xd5\xdb\x45\x3f\xbd\
\x8a\x0f\x2d\x27\xcf\x30\xc9\x7e\xba\x72\xb7\x1c\x78\x87\x7f\x54\
\xd3\xb1\xd9\xfd\x16\x9a\x62\x60\x69\x91\x78\x34\xb6\xa2\x0e\xd9\
\xe4\xa5\xe9\xf3\xae\x79\x38\xb9\x5d\x45\xf8\x0b\xd2\xbf\xd7\x81\
\xee\xa8\x88\xe6\x49\xf5\x1f\xc1\x3e\xc4\x7f\xf0\x9a\x52\x3f\x1d\
\xdf\xae\x42\xfa\x56\x04\xbc\xe1\x2a\x4f\xa2\x66\x94\x19\xc9\x9f\
\x81\x9d\xeb\x75\x8b\x59\x23\xcc\x07\x4c\xcf\xd4\x72\xb1\x5f\x97\
\xb4\x2e\x6f\x03\x96\xf9\xc0\x00\x00\x00\x01\x62\x4b\x47\x44\x00\
\x88\x05\x1d\x48\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xdd\x09\x09\
\x15\x2b\x12\x8d\x48\x65\x10\x00\x00\x04\x0d\x49\x44\x41\x54\x58\
\xc3\xed\x96\xf9\x57\x13\x57\x14\xc7\x2f\x31\x09\x9b\x61\x11\x25\
\x56\xb1\x24\x41\x45\x31\x82\xb8\xd4\x0a\x54\x5a\xb5\xee\x89\xa8\
\xb5\x46\x42\x1a\x10\x70\x89\x52\xa0\x6c\xd1\x36\x09\xd8\x50\x15\
\xdb\x8a\xb6\xb8\x3f\xbc\x82\x8a\xb5\x85\xe2\x82\xd2\xba\xb4\x7f\
\x5a\xdf\x9b\xc9\x24\x33\x59\x66\xf1\x37\xcf\xe9\xf7\x9c\xcc\x4c\
\xde\xcc\xe7\x3b\xf7\xbd\x7b\xdf\x7b\x03\xf0\xbf\x12\x94\x26\x48\
\x37\x47\x6f\x30\xa6\x67\x90\x8c\x74\xa3\x41\x3f\x47\x27\x34\xab\
\x34\xc8\xcc\xca\x26\x52\x65\x67\x65\xaa\x36\x98\xab\x37\x45\xa8\
\x9c\x5c\x76\xcc\x8b\xfc\x33\xe9\xe7\xaa\x31\xc8\x9f\x57\xc0\x9e\
\x2e\x98\xbf\xa0\xd0\x9c\xb6\x90\x5d\x7e\xb0\x68\x71\xd1\x92\x0f\
\xb9\xc6\x79\xf9\x4a\xbc\xb9\x98\xbd\xd4\x62\xb4\xda\xb8\x80\x79\
\x03\x76\x55\x62\x35\x72\x31\x15\x9b\x65\xf9\xa5\xcb\xb8\x60\x97\
\x33\xa4\x74\x85\x61\x65\x0e\xfb\x97\x5e\xb6\x62\x95\x9d\x35\x70\
\xf7\x96\x2d\x95\xe1\x57\xe7\x44\xba\x5b\x5e\x51\x66\x92\x8c\x61\
\xae\xa1\x3c\xcd\x18\x19\x98\xd5\x29\xf9\x62\x0b\x21\x6b\x56\x92\
\x14\xca\x60\x07\x4b\x25\xfd\x15\xa7\xe0\xd7\xb2\x00\xd7\xe9\xf2\
\x88\x8c\xca\xf2\x59\x27\xd7\x26\xe5\xd7\xd3\x3b\x06\x7b\x9a\x6d\
\x83\x9c\x81\x0e\xec\xcb\xe9\x69\x7d\x12\xbe\x90\xbe\xb9\x08\x40\
\x27\xcb\x93\x8f\x74\x00\x45\x34\x9f\x85\x09\xbc\x8e\x0e\x5a\x19\
\xc0\xc6\x5c\x22\xaf\xdc\x8f\x01\xf4\xb4\xa8\x74\x71\x3c\x0b\x7c\
\x93\x19\x2a\xf2\x88\x92\xf2\x2a\x00\x68\x2f\x36\xd8\xa4\x06\x55\
\xb4\xda\xab\xa1\x26\x47\x91\xa7\x69\xfc\x04\x4a\x36\x13\x52\x25\
\xe1\x6b\x69\x02\xc9\xa7\x8b\x33\x54\xf0\x74\x1c\x16\x7d\x46\x0b\
\xdb\x52\x2b\x36\xd8\xa2\x8a\x94\x6a\x8b\x88\x2f\x7d\x07\x9e\x90\
\xd2\x98\x01\x2d\x52\xa5\xd1\x4f\x22\x63\x6c\x0a\x59\x88\xc9\xb6\
\x55\xcd\x00\x46\xb5\xad\xd6\x44\x2c\x9f\x0b\x06\xdb\x09\xd9\x01\
\x66\x75\x23\xc8\xcb\x64\x87\x1d\x84\xec\x14\x0c\xd2\x09\xa9\x81\
\x8d\x9a\xc2\xdf\x05\x35\x64\x74\x77\x84\xcf\xb7\x90\x4a\x80\x2c\
\x4d\x06\x7b\x00\xf6\xde\x75\x38\x79\x03\x2b\x9d\x44\x50\x52\xa0\
\xc9\xa0\xa0\x04\xf6\x21\xd6\xf1\x06\xb4\xb4\xf7\x43\xb9\xb6\x0c\
\xd0\x1c\x1e\x40\x3c\xc8\x1b\xcc\x27\xa4\x16\xb6\x6a\x34\xf8\x02\
\x0e\x21\x7e\xc9\x1b\xd0\x79\x54\x0d\x06\x6d\xfc\xbd\xc3\xe0\x42\
\x3c\xc2\x1b\xd0\x8c\x1a\x0c\x95\xda\xf8\xb1\x7a\xb7\xdb\x81\x0d\
\xbc\x81\xf2\x14\x8e\xd3\xf8\x7d\xe4\xe5\xe1\x0d\xd4\x72\x96\xc8\
\xf9\xc1\x43\x14\xf4\x4e\x11\x4c\x3c\x8a\xf2\x1e\x61\x0c\x34\xe8\
\xb7\xc7\x63\x51\x5e\x18\x03\x9a\x05\x9b\xda\x2c\x4c\xfc\x1e\x61\
\xdd\xa2\x2c\x7c\xc5\xea\x60\x81\x1a\xfc\x8f\x58\xef\xbd\xd0\x88\
\xd8\x14\xad\xc4\xa3\x6a\x2a\x71\x72\xea\xcf\x58\xf4\xcd\xa2\x4a\
\xb4\xb2\x05\x5d\x71\x2e\x4c\x3f\x11\xe1\xd8\xd2\x0a\xee\xe8\x5c\
\xa0\xb3\xf1\x18\xc0\x1e\x39\x7a\xfc\xe9\xb3\xe7\x28\xd6\x71\x80\
\x7a\x14\x66\x23\x6c\x66\x5b\x96\x35\x25\x3d\x33\xfd\xe2\x25\xc6\
\xa9\x0e\x9a\x11\x4f\x08\x0b\x0a\xdd\xab\x4e\x82\x3d\x3b\xf9\xbb\
\x47\x1f\x3f\xc2\x04\xf9\x5a\xe1\x14\xe2\x69\xd1\x9a\x98\x6d\xb7\
\x25\x2e\xed\xb3\x93\xf7\x1e\xfe\x85\xc9\xd4\xf6\xb5\xab\x1d\x1d\
\x1d\xd1\x55\x75\x1b\x21\x59\xd2\x65\x79\xfc\xef\x89\xfb\xaf\x92\
\xc3\xbc\x8e\x20\x76\xc6\x96\xf5\x6f\x5e\xcf\xce\xbc\x21\x6f\x66\
\x66\x5f\x3f\x78\x3b\xfa\xf4\x9f\xa9\x67\xff\x8e\xa1\xb2\x9a\x45\
\x3b\x4b\x97\x8a\xe7\xe3\xd5\x25\xde\xda\x1a\x1d\xac\xa9\xa9\x41\
\x15\xd9\xd0\xdd\x43\x8f\x8e\x46\xc9\xee\xda\x4b\x9b\xfa\xe0\x90\
\x47\x05\xdf\xe2\x87\x33\xed\x88\xbd\xd2\xed\xdd\x75\x16\xf1\x5b\
\x80\xef\x5a\x14\xf9\x40\x10\x42\xfd\x88\x03\xae\xb8\x2f\x8c\x73\
\x3e\x2e\xaf\xdf\x2b\x39\xb4\x04\x01\xc2\xb4\x10\xce\x25\x7c\xe3\
\xf8\x03\x88\xdd\xf4\x24\x3f\x0e\x6d\x7e\x80\xd3\x34\x0c\x3f\x24\
\x6a\x90\xde\xff\x01\xe0\xfc\x05\x19\xde\xe7\x84\xd0\x45\x7a\x1e\
\x84\x64\x1a\x62\x89\x70\x85\x4e\xc8\x45\x30\xe8\x64\xfe\x43\x90\
\x5c\x5e\x9a\xcc\xfa\x4b\xa9\x58\x2e\xd3\x3f\xb6\xd1\x8b\x9f\x20\
\x95\x82\x42\x1a\x7f\xee\x3b\xd5\x23\xa1\xdb\x9b\x2e\x0f\x47\x6e\
\x7a\x82\x90\x5a\xc3\x57\xb8\x67\x06\xae\xd2\xeb\x5f\xbc\xee\x5f\
\x39\x66\xc4\x7d\xcd\xcf\x1a\xba\xb9\x7b\x57\x86\x41\x4e\x21\x2f\
\x63\x02\xfd\x75\x7c\x9a\xaf\x33\x84\x23\x5a\x6f\xf4\xb3\x3e\x78\
\xbc\x21\x50\x90\x33\x1c\xe0\xf2\xdd\xe4\xf5\x0b\x06\x1d\x7d\x43\
\xd7\xb9\x58\x02\x61\xa7\x12\xce\xd4\x71\xd3\x27\x64\x8d\x1b\x08\
\xa1\xb6\x7c\x37\x3b\xd4\xe0\x5c\x47\x82\xb7\x7c\xd2\x14\xa0\xef\
\x56\x50\x31\x78\xa9\x6e\xdf\x09\x77\x8e\xb0\x08\x7a\x46\x3a\xc3\
\xd7\x6e\x6b\x83\xdf\x2b\xfd\x07\x55\xed\xad\xe1\xad\xe9\x25\x79\
\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\
\x61\x74\x65\x00\x32\x30\x31\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\
\x31\x3a\x34\x39\x3a\x30\x35\x2b\x30\x38\x3a\x30\x30\xab\x22\x39\
\xeb\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\
\x64\x69\x66\x79\x00\x32\x30\x31\x33\x2d\x30\x39\x2d\x30\x39\x54\
\x32\x31\x3a\x34\x33\x3a\x31\x38\x2b\x30\x38\x3a\x30\x30\x6c\x83\
\x6a\x8f\x00\x00\x00\x43\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\
\x72\x65\x00\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\
\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\
\x64\x6f\x63\x2f\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\
\x37\x2f\x2f\x69\x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\
\x0a\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\
\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\
\x31\xa7\xff\xbb\x2f\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\
\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\
\x74\x00\x36\x34\xbc\xe0\xa9\x84\x00\x00\x00\x16\x74\x45\x58\x74\
\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\
\x64\x74\x68\x00\x36\x34\x44\x4f\x69\x09\x00\x00\x00\x19\x74\x45\
\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\
\x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\
\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\
\x69\x6d\x65\x00\x31\x33\x37\x38\x37\x33\x34\x31\x39\x38\x7a\xae\
\xf9\x21\x00\x00\x00\x11\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\
\x3a\x53\x69\x7a\x65\x00\x32\x33\x36\x38\x42\x07\x85\xef\x44\x00\
\x00\x00\x5f\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\
\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\
\x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\
\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\
\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\
\x2f\x73\x72\x63\x2f\x31\x31\x32\x36\x30\x2f\x31\x31\x32\x36\x30\
\x31\x31\x2e\x70\x6e\x67\x84\x09\x12\x12\x00\x00\x00\x00\x49\x45\
\x4e\x44\xae\x42\x60\x82\
\x00\x00\x2f\x9e\
\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\x04\x00\x00\x00\x5e\x71\x1c\x71\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\
\x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\
\x59\x73\x00\x00\x8d\xbb\x00\x00\x8d\xbb\x01\x9d\x75\x81\x80\x00\
\x00\x00\x07\x74\x49\x4d\x45\x07\xdd\x09\x04\x16\x02\x31\x9b\x45\
\xed\x0d\x00\x00\x2d\x06\x49\x44\x41\x54\x78\xda\xed\xdd\x79\x9c\
\x55\xc5\x9d\xf7\xf1\xcf\x0f\x50\x56\x51\x5c\x41\x45\x7d\x19\x16\
\x17\x50\x1a\x89\xd1\x08\x2e\x11\x1a\xa3\x41\xd4\x24\x9a\xc4\x56\
\xa2\x99\x24\x44\x1f\x9d\x44\x51\x67\x12\x33\xaf\x49\x9c\xe4\x89\
\x82\xce\x8c\x4e\x0c\x99\x3c\x2e\x68\x3b\x89\x8e\x1b\x31\xa2\x34\
\x18\x45\x8c\xc6\x0d\x88\x82\xca\xa2\x2f\xa5\x8d\x8a\x22\xa2\xb2\
\x89\x42\x3d\x7f\x74\x03\xdd\x4d\x2f\x55\xe7\x9e\x73\xeb\xde\x7b\
\xbe\xef\xfe\xa7\xe9\x3e\x55\xa7\xea\xd0\xbf\xdf\xad\xb3\x54\x1d\
\x73\x88\x48\x5e\x75\x8a\xdd\x00\x11\x89\x47\x09\x40\x24\xc7\x94\
\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\
\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\
\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\
\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\
\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\
\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\
\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\
\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\
\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\
\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\
\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\
\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\
\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\
\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\
\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\
\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\
\x09\x40\x24\xc7\xba\xc4\x6e\x80\x64\xcd\xba\xd0\xa3\xf1\xab\xfb\
\xd6\xef\xb6\xfd\x1b\xd6\xb1\x9e\x75\xcd\xbe\xb6\xfe\xdb\x7d\x16\
\xbb\xf5\x92\x2d\x73\xb1\x5b\x20\x05\xb2\x5e\xec\x47\x7f\xfa\xd3\
\x9f\x3d\xe8\xb9\x5d\x80\xf7\x60\x87\x02\x2a\xff\xb4\x79\x42\x60\
\x1d\xeb\x58\xcb\x7b\xd4\x53\x4f\x3d\xcb\xdd\x9a\xd8\xbd\x97\xc2\
\x28\x01\x94\x19\xeb\xca\xbe\xf4\xa7\xff\xd6\xa0\xef\xcf\x2e\x11\
\x9b\xb3\xba\x31\x15\xd4\xb3\x9c\x7a\xea\x79\xd3\x7d\x12\xfb\x08\
\x49\x08\x25\x80\x92\x66\x9d\xe9\xd7\x24\xd4\xf7\xa3\x3f\x7b\x60\
\xb1\x5b\xd5\x0e\xc7\x7b\x5b\x93\x41\x43\x5a\x78\xdb\x6d\x8a\xdd\
\x28\x69\x9b\x12\x40\xc9\xb1\x5e\x0c\xa3\x8a\x61\x0c\x66\x3f\xf6\
\xa6\x73\xec\xf6\x14\x68\x13\x6f\xb1\x9c\xc5\x2c\x60\x3e\x0b\x74\
\xca\x50\x6a\x94\x00\x4a\x84\xed\x4e\x15\xc3\xa9\xa2\x8a\x81\x25\
\xfd\x19\x5f\x08\xc7\x52\xe6\x33\x9f\x79\xcc\x77\x2b\x63\x37\x46\
\x40\x09\x20\x32\xdb\x8f\xaa\xc6\xc0\xdf\x37\x76\x5b\x8a\xec\xcd\
\x86\x44\xc0\x7c\xb7\x3c\x76\x53\xf2\x4c\x09\xa0\xe8\xac\x13\x83\
\x1a\xc3\x7e\x18\xbb\xc5\x6e\x4d\x09\x78\x9f\xf9\x8d\x5f\x4b\xdc\
\xe6\xd8\x8d\xc9\x1b\x25\x80\x22\xb1\x1d\x18\x4a\x15\x55\x54\x71\
\x38\x3d\x63\xb7\xa6\x44\xad\xe5\x6f\x8d\xa9\xe0\x45\xf7\x69\xec\
\xc6\xe4\x83\x12\x40\xe6\xec\x60\xaa\xa9\xe6\x38\x85\x7d\x80\xb5\
\xcc\xa1\x8e\x3a\xf7\x72\xec\x86\x54\x3a\x25\x80\xcc\xd8\x6e\x8c\
\xa6\x9a\x31\xf4\x8f\xdd\x92\x32\x56\xcf\x2c\xea\x98\xed\xde\x8f\
\xdd\x90\x4a\xa5\x04\x90\x3a\xdb\x81\xa3\xa9\xa6\x9a\x23\x34\xd3\
\x22\x25\x9b\x79\x9e\x3a\xea\x78\x4a\x27\x06\x69\x53\x02\x48\x91\
\x0d\xa2\x9a\x6a\x4e\xa0\x57\xec\x96\x54\xa8\x35\x3c\x4a\x1d\x75\
\x6e\x49\xec\x86\x54\x0e\x25\x80\x14\x58\x1f\xbe\x44\x35\x63\xd9\
\x3f\x76\x4b\x72\xe2\x0d\x66\x52\xc7\x9f\xdd\x07\xb1\x1b\x52\xfe\
\x94\x00\x0a\x60\x5d\xf8\x02\xd5\x54\xf3\xf9\xb2\x7f\x5e\xaf\x1c\
\x6d\xe2\x59\xea\xa8\xe3\x69\xcd\x59\x4c\x4e\x09\x20\x11\xeb\xc6\
\x38\xce\x62\x0c\xbd\x63\xb7\x44\xf8\x88\x59\xdc\xc9\x03\x6e\x43\
\xec\x86\x94\x23\x25\x80\x40\x66\x1c\x47\x0d\x5f\x63\xe7\xd8\x2d\
\x91\x66\x3e\xe4\x6e\x6a\x99\xe3\xf4\x07\x1d\x44\x09\x20\x80\x1d\
\x4a\x0d\x67\xeb\xb6\x5e\x09\xab\xe7\x0e\x6a\xdd\xa2\xd8\xcd\x28\
\x1f\x4a\x00\x5e\xac\x1f\xdf\xa2\x86\x61\xb1\xdb\x21\x5e\x16\x50\
\xcb\xff\xb8\xb7\x63\x37\xa3\x1c\x28\x01\x74\xc0\x7a\x71\x06\x35\
\x9c\xa8\x7b\xfa\x65\x66\x33\x8f\x50\xcb\xbd\x9a\x80\xdc\x3e\x25\
\x80\x36\x59\x17\xc6\x50\xc3\x69\xf4\x88\xdd\x92\xcc\x6c\x60\x1d\
\xd0\x83\x6e\xb1\x1b\x92\x99\x75\xdc\x4f\x2d\xb3\x74\x9f\xa0\x2d\
\x4a\x00\xad\xb2\x11\xd4\xf0\x4d\xf6\x8c\xdd\x8e\x40\x9b\x78\x87\
\x8f\x9a\xac\xdd\xd7\x7c\x25\xbf\x96\xdf\xaf\xdf\x32\xf7\xce\x3a\
\x35\xae\x1e\xd8\x74\x45\xc1\xe6\xab\x0b\x6e\xfb\x57\x6f\xfa\x96\
\xdd\x4d\xcf\x77\xf9\x3d\xb5\xee\xb9\xd8\xcd\x28\x45\x4a\x00\x2d\
\xd8\x01\xd4\x50\xc3\xe0\xd8\xed\xf0\xe0\x78\x77\xeb\xd2\x5b\x45\
\x5c\x7e\xab\xc5\x32\x65\xfd\xe9\xcf\x9e\x65\xb1\x84\xc9\x62\x6a\
\xa9\x75\xaf\xc7\x6e\x46\x69\x51\x02\xd8\xca\xba\xf0\x35\x2e\x60\
\x64\xc9\xfe\x31\x7f\xd0\x2c\xdc\x4b\x68\x01\xce\xad\x0b\x95\x6e\
\xfb\xea\x13\xbb\x4d\x6d\x70\x3c\xc1\x8d\xdc\xad\x53\x82\x2d\x94\
\x00\x00\xb0\x5e\x7c\x87\x1f\x95\xd8\xa3\xbc\x9b\x59\xca\x7c\x16\
\x6f\x09\xf8\x72\xba\x9c\x65\xbd\xb6\xa6\x82\xc1\x54\x31\xb0\xc4\
\x2e\xa1\xbe\xc1\xbf\x73\x53\x39\x1d\xcf\xec\x28\x01\x60\x7d\xb9\
\x98\x89\x25\xf3\x99\xf5\x29\x2f\x31\x8f\xf9\xcc\xe3\x6f\x95\xf2\
\x27\x6a\xbd\x38\x9c\xe1\x54\x31\x9c\x43\x0a\x7a\x4b\x41\x9a\x3e\
\x60\x2a\xd7\xbb\x77\x62\x37\x23\xb6\x9c\x27\x00\x3b\x98\x4b\xa9\
\xa1\x6b\xec\x76\xb0\x9e\xbf\x35\xae\x91\xb7\xb0\x54\x06\xf6\x59\
\xb0\xae\x0c\x69\x5c\x03\xf1\x70\xba\xc7\x6e\x0d\x9f\x50\xcb\xb5\
\xf9\x5e\x74\x24\xc7\x09\xc0\x8e\xe5\x32\x4e\x89\x7a\xc6\xff\x61\
\x63\xd0\xcf\x63\x71\xde\x56\xcf\xb7\xce\x0c\x6e\x1c\x15\x54\x45\
\x7d\xac\xda\xf1\x20\x93\xdd\xe3\xb1\x8f\x47\x2c\xb9\x4c\x00\xd6\
\x99\x33\x98\xc4\x91\x91\x76\xbf\x82\xf9\xcc\x63\x1e\xf3\xdd\x6b\
\xb1\x8f\x44\x69\xb0\x03\xa9\x62\x38\xc3\xa9\x62\xaf\x48\x4d\x78\
\x86\x29\xdc\x9b\xb7\x24\x0c\x39\x4c\x00\xd6\x83\xf3\xb8\x84\x03\
\x23\xec\x7a\x2d\x8f\x51\x47\x9d\x7b\x25\xf6\x31\x28\x5d\x76\x10\
\xd5\x54\x73\x7c\x94\xf5\x13\x5f\xe3\x3a\x6e\x71\xeb\x62\x1f\x83\
\xe2\xca\x55\x02\xb0\x3d\xb8\x88\x0b\x8a\xbe\x14\xb7\x63\x3e\x75\
\xd4\xf1\x17\xb7\x31\xf6\x11\x28\x0f\xb6\x23\xc7\x50\x4d\x35\x55\
\x45\x3f\x41\x7b\x9f\x1b\xb9\xc1\xbd\x17\xfb\x08\x14\x4f\x6e\x12\
\x80\x0d\xe4\x52\x26\x14\xf9\xa1\xd7\xb7\x98\x45\x1d\xb3\xf2\xf4\
\x07\x95\x26\xdb\x83\x31\x54\x33\x86\xbd\x8b\xba\xdb\x0d\x4c\xe3\
\x5a\xb7\x34\x76\xef\x8b\x23\x17\x09\xc0\x8e\xe6\x72\x4e\x2d\xe2\
\xbd\xe8\xf5\xcc\x65\x26\x75\x6e\x61\xec\x9e\x57\x06\x1b\x42\x35\
\x63\x19\x55\xc4\xfb\x06\x9b\xf9\x23\xd7\xb8\xa7\x62\xf7\x3c\x7b\
\x15\x9f\x00\x6c\x28\x53\xa8\x2e\xda\xee\x5e\xa0\x8e\x3a\xe6\x6a\
\x75\x9a\xf4\x59\x37\x46\x51\x4d\x35\x87\x15\x6d\x97\x75\x4c\x72\
\x2f\xc6\xee\x77\xb6\x2a\x3a\x01\x58\x5f\xae\xe2\xfc\xa2\x7c\xf2\
\xbf\xdb\x38\xd8\xd7\x1c\xf4\xcc\x59\xbf\xc6\x13\x83\x62\x4c\xd5\
\xda\xcc\xcd\xfc\xb4\x92\x1f\x17\xaa\xd8\x04\x60\xdd\xb9\x94\x2b\
\x8a\xb0\x40\xf7\xc7\xdc\x43\x2d\x8f\xea\xad\x76\xc5\x65\x9d\x38\
\x81\x1a\xbe\xca\x4e\x99\xef\x6a\x0d\x57\x73\xad\x5b\x1f\xbb\xc7\
\xd9\xa8\xc8\x04\x60\xc6\xd9\xfc\x32\xf3\xa5\xbb\x3e\xa3\x8e\xdb\
\x99\x5e\xa9\x7f\x1a\xe5\xc0\xba\x33\x9e\x73\xa8\xa6\x4b\xc6\x3b\
\xaa\xe7\xc7\xdc\x51\x89\xeb\x0d\x56\x60\x02\xb0\x51\x5c\xc7\x88\
\x8c\x77\xf2\x1c\xb7\xf3\x07\xf7\x6e\xec\xbe\x0a\x80\xed\xc9\x37\
\x38\xa7\x08\xff\xe7\x97\xb8\xb9\xb1\xfb\x9a\xb6\x0a\x4b\x00\x36\
\x80\xab\x39\x23\xd3\x5d\xbc\xce\x1d\xdc\xee\x16\xc7\xee\xa9\xb4\
\x64\x83\x39\x87\xb3\x39\x20\xd3\x9d\xdc\xcb\x15\x6e\x59\xec\x9e\
\xa6\xa9\x82\x12\x80\xf5\xe1\xa7\x5c\xc8\x8e\x99\xed\x60\x35\x77\
\x51\xcb\x13\x95\x38\x10\xac\x14\x66\x8c\xa4\x86\x33\xd9\x25\xb3\
\x5d\x6c\xe4\xd7\x5c\x55\x39\xef\x24\xaa\x90\x04\x60\x3b\x70\x01\
\xff\xc2\xae\x19\x55\xbf\x91\x19\xd4\xf2\xa7\x4a\x9e\xa7\x57\x49\
\xac\x2b\x5f\xa1\x86\x93\x33\xfb\x30\x58\xc5\xcf\xb9\xb1\x32\x5e\
\x54\x5a\x11\x09\xc0\x4e\xe3\x1a\x06\x66\x54\xf9\x93\xdc\xce\x5d\
\x6e\x55\xec\x3e\x4a\x28\xdb\x95\x33\x39\x87\x2f\x66\x54\xfd\x52\
\x2e\x77\xf7\xc7\xee\x63\xe1\xca\x3e\x01\xd8\x70\xae\xe3\xb8\x4c\
\xaa\x7e\x9f\xdf\x70\x8b\x66\xec\x95\x37\x3b\x90\xf3\xf8\x41\x46\
\xf3\x3f\xe6\x70\x89\x9b\x17\xbb\x87\x85\x29\xeb\x04\x60\xfb\xf0\
\x4b\xce\xc9\x64\xc2\x48\x2e\x67\x86\x55\xaa\x0c\x67\x80\x3a\x6e\
\xe7\xc7\xee\xef\xb1\x7b\x98\x5c\x19\x27\x00\x9b\xc8\x35\x99\x3c\
\x06\xf2\x2c\x93\xf3\x39\x37\xbc\x92\x59\x67\xce\xe0\x32\x3e\x9f\
\x41\xd5\x1f\x73\xb9\x9b\x1a\xbb\x7f\x49\x95\x69\x02\xb0\x7d\xb8\
\x39\x83\x27\xfc\x1d\x33\x98\xec\xe6\xc4\xee\x9d\x64\xc5\x8e\xe3\
\x32\x4e\xce\x60\xcc\x58\xc7\xf9\xe5\x39\x0e\x28\xcb\x04\x60\x35\
\xdc\x90\xfa\x8d\x9e\x8d\xd4\x72\xad\x7b\x29\x76\xdf\x24\x6b\x76\
\x08\x97\x52\x93\xfa\x1d\x82\xd5\x5c\xe4\x6a\x63\xf7\x2d\xc1\xd1\
\x28\xb7\x04\x60\x7b\x30\x35\xf5\x47\x7d\x56\x33\x95\xeb\x35\x91\
\x27\x3f\xac\x1f\x17\x33\x31\xf5\x0f\x91\x7b\x99\x58\x6e\x6b\x3f\
\x94\x59\x02\xb0\xd3\xf8\x6d\xca\xb3\xc0\x96\xf3\x1f\xfc\xae\x52\
\x16\xe0\x16\x7f\xd6\x8b\xef\xf2\x43\xf6\x4b\xb5\xd2\x77\xf9\x7e\
\x79\xdd\x1c\x2c\xa3\x04\x60\x3b\x73\x3d\xe7\xa6\x5a\xe5\x02\xa6\
\x70\xa7\xde\x12\x93\x5f\xd6\x85\xb3\x98\x94\xf2\x6b\xdf\x6f\xe3\
\x62\xf7\x61\xec\x9e\x79\x1f\x81\x72\x49\x00\x36\x9a\x9b\x53\x9d\
\xdf\x57\xc7\x64\x37\x3b\x76\xaf\xa4\x14\xd8\x68\x2e\x4b\xf5\x92\
\x72\x3d\xe7\x97\xcb\xdf\x56\x59\x24\x00\xeb\xc1\x64\x7e\x90\xe2\
\xb5\xdb\x87\xf9\x67\xb7\x20\x76\xaf\xa4\x94\xd8\x30\xfe\x2f\x27\
\xa5\x56\x9d\xe3\x37\x5c\x56\x0e\xcf\x91\x94\x41\x02\xb0\x2f\x32\
\x8d\x01\xa9\x55\xb7\x90\x49\x6e\x66\xec\x3e\x49\x29\xb2\xb1\x4c\
\x61\x48\x6a\xd5\x2d\x63\x82\x7b\x32\x76\x9f\x3a\x52\x5a\x2f\x6d\
\xdc\x8e\xed\x68\xbf\x62\x6e\x6a\xe1\xbf\x82\xef\x33\x4c\xe1\x2f\
\xad\x73\x33\x19\xc6\xf7\x59\x91\x52\x75\x03\x98\x6b\xbf\xb2\xec\
\x66\xa7\xa6\xa2\xa4\x47\x00\x36\x8c\xdb\x18\x9a\x52\x65\xeb\xb9\
\x8e\x5f\xe9\x6a\xbf\x74\xc4\x7a\xf1\x4f\x5c\x92\xda\x0a\xc4\x2f\
\x72\x6e\x29\x9f\x6e\x96\xec\x08\xc0\x3a\xdb\x95\x3c\x93\x52\xf8\
\x3b\x6a\x19\xec\xae\x54\xf8\x4b\xc7\xdc\x1a\x77\x25\x83\xa9\x25\
\x9d\xcf\xc6\xa1\x3c\x63\x57\x5a\xe7\xd8\xbd\x6a\x4b\x89\x8e\x00\
\x6c\x3f\xee\xe4\xa8\x94\x2a\x7b\x9c\x4b\xdd\x73\xb1\x7b\x24\xe5\
\xc6\x46\x70\x2d\xc7\xa6\x54\xd9\x5f\x39\xcb\x2d\x8f\xdd\xa3\x56\
\x7b\x59\x8a\x09\xc0\x46\x71\x0f\x7b\xa4\x52\xd5\x32\x2e\x77\xf7\
\xc5\xee\x8f\x94\x2b\x3b\x9d\x6b\x52\xba\x02\xf5\x1e\x5f\x2d\xc5\
\x15\x05\x4b\xf0\x14\xc0\xfe\x81\x47\x52\x09\xff\x55\xfc\x88\x43\
\x14\xfe\x92\x9c\xbb\x8f\x43\xf8\x11\x69\x2c\x07\xb3\x07\x8f\xd8\
\x3f\xc4\xee\xcf\xf6\x4a\x6c\x04\x60\x9d\xb9\x8e\x8b\x53\xa8\xa8\
\xc2\x56\x6e\x93\x98\x52\x5c\x6d\xf2\x7a\x2e\x29\xad\x89\xe6\x25\
\x95\x00\xac\x0f\x77\x31\x3a\x85\x8a\x2a\x6e\xed\x56\x89\x2d\xb5\
\xf5\xa6\x67\x73\x66\x29\x7d\x30\x95\x50\x02\xb0\x83\x78\x20\x85\
\xf3\xad\x97\x98\x58\x8a\xe7\x5a\x52\xfe\x6c\x14\x53\x39\xa4\xe0\
\x6a\x96\x31\xce\xbd\x12\xbb\x2f\x5b\x94\xcc\x35\x00\x3b\x99\xa7\
\x0b\x0e\xff\xcd\x4c\x61\xb8\xc2\x5f\xb2\xe1\xe6\x32\x9c\x29\x14\
\xfa\x12\xb8\x01\x3c\x6d\x27\xc7\xee\xcb\x16\x25\x32\x02\xb0\x49\
\x5c\x5d\x70\x32\x7a\x8d\x09\xee\x89\xd8\x3d\x91\x4a\x67\x23\x99\
\x56\xf0\xfa\x82\x9b\xb9\xc2\x4d\x89\xdd\x13\x28\x89\x11\x80\x75\
\xb5\x69\x4c\x2e\xb8\x25\x53\x39\x4c\xe1\x2f\xd9\x73\x4f\x70\x18\
\x85\xae\x01\xd8\x89\xc9\x36\xcd\xba\xc6\xee\x4b\x09\x8c\x00\xac\
\x2f\xf7\x15\xfc\xc8\xcf\xdf\xf9\x8e\x9e\xf0\x97\x62\xb2\xb1\xdc\
\xc4\x3e\x05\x56\xf2\x57\x4e\x8f\xfd\xea\xf1\xc8\x23\x00\x3b\x82\
\xe7\x0a\x0e\xff\x5a\x86\x28\xfc\xa5\xb8\xdc\x4c\x86\x50\xe8\x1a\
\x80\x47\xf1\x9c\x1d\x11\xb7\x1f\x51\x13\x80\x7d\x83\xb9\x05\x66\
\xd1\xf7\xf8\xaa\x3b\xc7\xad\x8e\xd9\x0b\xc9\x27\xb7\xda\x9d\xc3\
\x57\x29\x6c\x0d\xc0\x7d\x98\x6b\xdf\x88\xd9\x8b\x68\x09\xc0\xcc\
\xfe\x8d\xdf\x17\x38\xe7\xea\x7e\x86\xb8\x7b\x63\xf5\x40\xc4\xdd\
\xcb\x10\xee\x2f\xa8\x8a\xee\xfc\xde\xfe\xcd\xb2\x78\xb9\x8d\x97\
\x48\xd7\x00\xac\x17\xb5\x8c\x2f\xa8\x8a\x0f\xb9\xd8\xdd\x16\xa5\
\xf1\x22\xcd\xd8\xb9\x5c\xcf\xce\x05\x55\x31\x9d\x9a\x38\x73\x55\
\xa3\x24\x00\xdb\x9d\x87\x29\xec\xdc\x67\x16\xe7\xbb\x37\x23\x34\
\x5d\xa4\x15\xb6\x2f\x37\x33\xa6\xa0\x2a\x9e\xe7\x24\xb7\xb2\xf8\
\x2d\x8f\x70\x0a\x60\x7d\x79\xac\xa0\xf0\x5f\xcb\x85\x8c\x55\xf8\
\x4b\xe9\x70\x6f\x32\x96\x0b\x59\x5b\x40\x15\x47\xf0\x98\xf5\x2d\
\x7e\xcb\x8b\x3e\x02\xb0\xfe\x3c\x52\xd0\xab\xbc\x9f\x64\x82\x9e\
\xf3\x97\x52\x64\x03\x98\x56\xd0\xeb\xc8\x97\x72\xa2\xab\x2f\x6e\
\x9b\x8b\x3c\x02\xb0\xcf\x31\xb7\xa0\xf0\x9f\xca\x71\x0a\x7f\x29\
\x4d\x6e\x19\xc7\x15\xf4\x88\xd0\x40\xe6\xda\xe7\x8a\xdb\xe6\xa2\
\x26\x00\x3b\x98\xc7\xd9\x3f\x71\xf1\xcf\xb8\xd0\xfd\x40\xaf\xf1\
\x90\xd2\xe5\x3e\x73\x3f\xe0\xff\x90\xfc\x6f\x74\x7f\x1e\xb7\x83\
\x8b\xd9\xe2\x22\x9e\x02\xd8\x30\xea\x0a\x58\xe8\x63\x15\x5f\x77\
\x7f\x2e\x5a\x63\x45\x12\xb3\x2f\xf1\xbf\xec\x9a\xb8\xf8\x7b\x54\
\x17\x6f\x19\xd1\xa2\x25\x00\xfb\x02\x0f\x17\xf0\x32\xc6\x97\x39\
\x55\x43\x7f\x29\x17\x36\x80\x3f\x92\xfc\x93\x7c\x35\x27\xb9\xa7\
\x8b\xd3\xd2\x22\x9d\x02\xd8\x31\xcc\x2a\x20\xfc\x67\x70\x94\xc2\
\x5f\xca\x87\x5b\xc6\x51\xcc\x48\x5c\x7c\x17\x66\xd9\x31\xc5\x69\
\x69\x51\x12\x80\x1d\xc1\x0c\x76\x4a\x5c\xfc\x5a\xc6\xb9\x8f\x8a\
\x73\x38\x44\xd2\xe1\x3e\x62\x1c\xd7\x26\x2e\xbe\x13\x33\x8a\x33\
\x4b\xa0\x08\xa7\x00\x76\x28\x73\xd8\x2d\x61\xe1\x4f\xf8\xbe\x9b\
\x56\x8c\x03\x21\x92\x3e\x9b\xc0\x6f\x49\x3a\xe9\xf7\x7d\x8e\x73\
\x8b\x32\x6f\x61\xd6\x09\xc0\x3e\xc7\x5c\xfa\x25\x2c\xbc\x82\xd3\
\xdd\x53\x59\x1f\x02\x91\xec\xd8\xd1\xdc\xc7\x5e\x09\x0b\xbf\xcd\
\x28\xf7\x6a\xc6\xed\xcb\x36\x01\x58\x7f\xe6\x26\xbe\xf1\x37\x9f\
\xf1\xc5\x7e\x2c\x42\x24\x6d\xd6\x9f\xe9\x54\x25\x2c\xfc\x06\xa3\
\xb2\x8d\x81\x4c\xaf\x01\xd8\x9e\xcc\x4e\x1c\xfe\x77\x33\x52\xe1\
\x2f\xe5\xcf\xd5\x33\x92\xbb\x13\x16\xde\x9f\xd9\xb6\x67\x96\xad\
\xcb\x30\x01\x58\x1f\x66\x31\x28\x51\x51\xc7\xcf\x38\xb3\x1c\xde\
\xae\x2e\xd2\x31\xb7\x8e\x33\xf9\x59\xc2\x77\x0d\x0e\x62\x96\xf5\
\xc9\xae\x6d\x99\x9d\x02\x58\x2f\x66\xf3\x85\x44\x45\xd7\xf1\x6d\
\xf7\xbf\xd9\x75\x59\x24\x06\xfb\x3a\xb7\xd2\x23\x51\xd1\xa7\x19\
\x9d\xd5\x64\xe1\x8c\x12\x80\x75\x61\x46\xc2\xe9\x91\x2b\x38\xd9\
\xcd\xcb\xa6\xb3\x22\x31\xd9\x70\x66\x24\xbc\x20\x38\x8b\x93\xb3\
\x79\x08\x3e\xab\x53\x80\x1b\x13\x86\x7f\x3d\xc7\x2a\xfc\xa5\x32\
\xb9\x79\x1c\x4b\xb2\xeb\x5a\x63\xb8\x31\x9b\x36\x65\x92\x00\xec\
\x32\xbe\x9b\xa8\xe0\x32\x46\xb9\x25\xd9\x74\x54\x24\x3e\xb7\x84\
\x51\x24\x7b\xa6\xf5\xbb\x76\x59\x16\x2d\xca\xe0\x14\xc0\x4e\xe7\
\x1e\x92\xac\x71\xb6\x88\x31\xee\xed\x2c\x3a\x29\x52\x3a\xac\x1f\
\xb3\x38\x34\x41\x41\xc7\x57\xd3\x7f\xd7\x75\xea\x09\xc0\x46\x30\
\x27\xd1\xa5\x8e\xe7\x38\xc9\xbd\x9f\x76\xf7\x44\x4a\x8f\xed\xc6\
\xc3\x8c\x48\x50\x70\x1d\xc7\xb9\xe7\x52\x6e\x4b\xba\x09\xc0\xfa\
\xf3\x0c\x49\x16\x36\x9a\xcb\x57\xf4\xbc\xbf\xe4\x85\xf5\xe6\x4f\
\x8c\x4a\x50\xf0\x1d\x8e\x4c\xf7\xe9\x98\x54\xaf\x01\xd8\x4e\x3c\
\x98\x28\xfc\x67\x71\x92\xc2\x5f\xf2\xc3\x7d\xc4\x49\xcc\x4a\x50\
\xb0\x2f\x0f\x5a\xf2\x69\x75\xad\x48\x31\x01\x58\x67\xee\x64\x68\
\x82\x82\x7f\xe6\x54\x3d\xf4\x23\xf9\xe2\xd6\x71\x2a\x49\x16\xb8\
\x19\xca\x9d\xd6\x39\xbd\x76\xa4\x39\x02\xb8\x9a\x2f\x27\x28\xf5\
\x34\xe3\xdd\x86\x14\x5b\x21\x52\x16\xdc\x06\xc6\x93\x64\xd9\x8f\
\x2f\x73\x75\x7a\xad\x48\xed\x1a\x80\x9d\x4e\x92\x77\xf4\xbc\xc8\
\x71\xee\x83\xf4\xba\x23\x52\x4e\xac\x0f\x73\x12\x8d\x9a\xcf\x48\
\xeb\x7e\x40\x4a\x09\xc0\x06\xf0\x5c\x82\x77\xa3\x2c\x63\xa4\x5b\
\x91\x4e\x47\x44\xca\x91\xed\xc5\x13\x0c\x08\x2e\xf6\x21\x23\xd2\
\x59\x23\x2b\x95\x53\x00\xeb\xc6\xdd\x09\xc2\xbf\x9e\xd1\x0a\x7f\
\xc9\x37\xb7\x82\xd1\x09\x9e\x0e\xdc\x99\xbb\xad\x5b\x1a\xfb\x4f\
\xe7\x1a\xc0\x7f\x71\x78\x70\x99\x77\x19\xe3\xde\x48\x65\xef\x22\
\x65\xcc\xbd\xc1\x18\xde\x0d\x2e\x76\x38\xff\x95\xc6\xde\x53\x48\
\x00\xf6\x6d\xbe\x13\x5c\x68\x35\x63\xdd\xe2\x34\x3a\x20\x52\xee\
\xdc\x62\xc6\xb2\x3a\xb8\xd8\x77\xec\xdb\x85\xef\xbb\xe0\x6b\x00\
\x76\x18\x7f\x0d\x7e\xc9\xf7\x46\xc6\xba\xc7\x0a\x6f\xbc\x48\xa5\
\xb0\xe3\x99\xc9\x8e\x81\x85\xd6\x73\x94\x7b\xa1\xb0\xfd\x16\x38\
\x02\xb0\xde\xdc\x1d\x1c\xfe\xf0\x5d\x85\xbf\x48\x53\xee\xb1\x04\
\x13\xe8\xba\x73\xb7\xf5\x2e\x6c\xbf\x85\x9e\x02\xdc\x98\xe0\x4d\
\x7f\x57\xb9\xdb\x0a\xdc\xab\x48\xc5\x71\xb7\x71\x55\x70\xa1\x81\
\x85\x4e\x13\x2e\xe8\x14\xc0\xbe\x46\xf8\xca\x3d\xff\xe3\xce\x2e\
\xac\xc9\x22\x95\xca\xee\xe0\x5b\xc1\x85\xbe\xee\x92\xae\x38\x48\
\x41\x09\xc0\xf6\x62\x21\xbb\x07\x16\x7a\x82\xd1\xee\x93\xe4\xcd\
\x15\xa9\x64\xd6\x95\xd9\x8c\x0c\x2c\xb4\x92\x21\xc9\x6f\xa7\x17\
\x72\x0a\xf0\xdb\xe0\xf0\x5f\xca\x69\x0a\x7f\x91\xb6\xb8\x4f\x38\
\x8d\xa5\x81\x85\x76\xe7\xb7\xc9\xf7\x98\x38\x01\xd8\x04\xc6\x07\
\x16\x59\xcd\x29\x9a\xf1\x2f\xd2\x1e\xf7\x3e\xa7\x04\xdf\x12\x1c\
\x6f\x13\x92\xee\x2f\xe1\x29\x80\xf5\xe7\xc5\xe0\x67\xff\x4e\x73\
\xd3\x0b\x3b\x38\x22\x79\x60\xe3\xb9\x3f\xb0\xc8\x87\x0c\x4d\xb6\
\x4e\x40\xa2\x11\x80\x19\x37\x05\x87\xff\x64\x85\xbf\x88\x0f\x37\
\x9d\xc9\x81\x45\x76\xe6\x26\x4b\xb2\x0c\x5f\xb2\x11\x80\x5d\xc0\
\xaf\x03\x8b\x3c\xce\x89\xd9\x2c\x6b\x2c\x52\x79\xac\x0b\x8f\x70\
\x6c\x60\xa1\x0b\x5d\x82\x5b\x82\x09\x12\x80\x1d\xc0\x42\x7a\x06\
\x15\x59\x41\x95\x96\xfb\x14\xf1\x67\xfd\x98\x1f\xf8\x0e\x81\xb5\
\x0c\x71\xaf\x87\xee\x27\xc9\x29\xc0\xf5\x81\xe1\xbf\x89\x6f\x28\
\xfc\x45\x42\xb8\xb7\xf9\x06\x9b\x82\x8a\xf4\xe4\xfa\xf0\xfd\x04\
\x27\x00\x1b\xc7\xb8\xc0\x22\x57\xea\xc1\x5f\x91\x50\xee\x31\xae\
\x0c\x2c\x32\xce\x42\x63\x33\xf4\x14\xc0\xba\xf3\x12\x07\x04\x15\
\x79\x80\xf1\x2e\xdb\x77\x90\x8b\x54\x24\x33\xa6\x07\x7e\xdc\xbe\
\xce\x21\x6e\x7d\x48\x81\xd0\x11\xc0\x8f\x03\xc3\xbf\x9e\x73\x15\
\xfe\x22\x49\x38\xc7\xb9\x81\x8b\x85\x1c\xc0\x8f\xc3\xf6\x11\x34\
\x02\xb0\x81\xbc\x48\xd7\xa0\xfa\xab\x5d\x92\xc5\x8f\x45\x04\x00\
\x1b\x43\x5d\x50\x81\x4f\x18\xea\x02\x9e\x25\x0c\x1b\x01\xfc\x57\
\x60\xf8\x4f\x55\xf8\x8b\x14\xc2\xcd\x62\x6a\x50\x81\xae\x61\x2b\
\x05\x05\x8c\x00\x82\xe7\xfe\xbd\xc6\x61\x6e\x6d\x86\xc7\x46\x24\
\x07\xac\x27\x2f\x70\x60\x50\x91\x80\xf9\x81\xde\x09\xc0\x7a\xf2\
\x0a\xfb\x06\x34\x62\x33\x27\xb8\xc7\x8b\x70\x7c\x44\x2a\x9c\x1d\
\xcb\xa3\x41\x63\xf5\x37\x39\xc8\xf7\xa3\xd7\xbf\xda\x49\x41\xe1\
\x0f\xff\xa9\xf0\x17\x49\x83\x7b\x9c\xff\x0c\x2a\xb0\x2f\x93\x7c\
\x37\xf5\x1c\x01\xd8\xee\xbc\x46\xc8\x3b\xc9\x16\x33\x4c\xef\xfb\
\x11\x49\x87\x75\x63\x01\x83\x03\x0a\x7c\xcc\x81\x6e\xa5\xcf\x86\
\xbe\x23\x80\x7f\x0e\x0a\xff\x4d\x9c\xab\xf0\x17\x49\x8b\xdb\xc0\
\xb9\x41\xcf\x05\xee\xc4\x3f\xfb\x6d\xe8\x95\x00\x6c\x5f\x2e\x08\
\x6a\xef\x0d\xee\x99\x62\x1d\x1a\x91\x3c\x70\xcf\x70\x43\x50\x81\
\x0b\xcc\xeb\x94\xdd\xeb\x14\xc0\xfe\x3b\x68\xc5\xd2\x77\x18\xac\
\x97\x7d\x8b\xa4\xcb\x7a\xb3\x98\xbe\x01\x05\x7e\xe7\xbe\xd7\xf1\
\x46\x1e\x23\x00\x1b\xc8\x79\x41\x2d\x9d\xa4\xf0\x17\x49\x9b\xfb\
\xc8\xff\xd2\x1e\x00\xe7\x99\xc7\x8a\xdd\x3e\xa7\x00\x57\xd1\x25\
\x60\xb7\x73\xdc\x1d\x45\x3d\x2e\x22\x39\xe1\xee\x60\x4e\xc0\xe6\
\x5d\x7c\x96\x19\xef\xf0\x14\xc0\x86\x31\x0f\xff\xb5\x46\x3e\x63\
\x98\x5b\x14\xe5\xe8\x88\x54\x3c\x3b\x94\x05\x01\x1f\xc7\x8e\xe1\
\x6e\x41\xfb\x9b\x74\x3c\x02\xf8\x45\x40\xf8\xc3\x7f\x2a\xfc\x45\
\xb2\xe2\x16\x05\x3d\x11\x60\xfc\xa2\xc3\x4d\xda\x1f\x01\xd8\xd1\
\x3c\x19\xb0\xc3\xb7\x18\xec\xd6\x44\x3a\x36\x22\x39\x60\xbd\x58\
\xcc\xde\x01\x05\xbe\xe8\x9e\x6a\xef\xd7\x1d\x8d\x00\xc2\x2e\x3b\
\xfc\x44\xe1\x2f\x92\x25\xb7\x86\x9f\x04\x15\xe8\x20\x82\xdb\x1d\
\x01\xd8\xe7\x58\x12\xf0\xb0\xf0\xcb\x0c\x75\x61\x8b\x18\x89\x48\
\x20\xeb\xcc\x8b\x1c\xec\xbd\xf9\x66\x06\xb9\x57\xdb\xfe\x75\xfb\
\xe1\xfd\xc3\xa0\x29\x08\x57\x2a\xfc\x45\xb2\xe6\x36\x05\x2d\x15\
\xd6\x89\x1f\xb6\xf7\xeb\x76\x46\x00\xd6\x87\xfa\x80\xe5\x3f\x9f\
\x75\x47\xc6\x3e\x34\x22\xf9\x60\xcf\xf0\x79\xef\x8d\xd7\xd2\xdf\
\x7d\xd0\xd6\x2f\xdb\xfb\x84\x9f\x18\xb4\xfa\xaf\xe7\xb3\xc7\x22\
\x52\xb0\x90\x68\xeb\xc9\xc4\xb6\x7f\xd9\xe6\x08\xc0\x76\xe4\x75\
\xfa\x79\xef\xe4\x11\x37\x3a\xf6\x31\x11\xc9\x0f\x9b\xcd\x89\xde\
\x1b\xbf\xcd\x01\x6e\x63\xeb\xbf\x6a\x7b\x04\xf0\xcd\x80\xf0\x27\
\x74\x29\x42\x11\x29\x48\x48\xc4\xf5\xe3\x9b\x6d\xfd\xaa\xed\x04\
\x70\x49\xc0\x0e\xee\xd3\xec\x3f\x91\x62\x72\xcf\x70\x5f\xc0\xe6\
\x6d\x46\x73\x1b\x09\xc0\x8e\xe7\xb0\x80\xea\x3b\x7c\xde\x48\x44\
\x52\x16\x12\x75\x87\xd9\xf1\xad\xff\xa2\xad\x11\xc0\xf9\x01\x95\
\x3f\xe6\x9e\x8f\x7d\x2c\x44\xf2\xc6\x3d\xcf\x63\x01\x9b\xb7\x11\
\xd1\xad\x5e\x04\xb4\xde\xbc\x4d\x0f\xef\xaa\x4f\x71\x33\x62\x1f\
\x0c\x91\xfc\xb1\x93\x79\xd0\x7b\xe3\x75\xf4\x6b\x6d\x9a\x7e\xeb\
\x23\x80\x33\x03\xc2\xff\x25\x1e\x8a\x7d\x20\x44\x72\xe9\x21\x5e\
\xf2\xde\xb6\x07\x67\xb6\xf6\xe3\xd6\x13\x40\xc8\x02\x20\x53\xf4\
\xea\x2f\x91\x18\x9c\x63\x4a\xc0\xe6\xad\x46\x75\x2b\xa7\x00\x36\
\x98\x57\xbc\x2b\x6d\xe7\x0e\xa3\x88\x64\x2b\xf0\x69\x9d\x83\xdc\
\xe2\x96\x3f\x6a\x6d\x04\xf0\xed\x80\x16\x5c\xaf\xf0\x17\x89\xc5\
\x6d\xe4\xfa\x80\xcd\xbf\xbd\xfd\x8f\xb6\x1b\x01\x58\x67\x96\x7b\
\xcf\x37\x5e\x43\x7f\xb7\x3a\xf6\x41\x10\xc9\x2f\xdb\x85\x7a\x7a\
\x79\x6e\xfc\x16\xfb\xb5\x9c\xb0\xb7\xfd\x08\xa0\x3a\x60\xb9\x81\
\xbb\x14\xfe\x22\x31\xb9\xd5\xdc\xe5\xbd\xf1\xde\x54\xb7\xfc\xd1\
\xf6\x09\x60\x42\xc0\xde\x6f\x89\xdd\x7d\x91\xdc\x0b\x89\xc2\xed\
\xa2\xbb\xc5\x29\x80\x75\x63\xa5\xf7\x1c\xc0\xa5\x6e\x50\xec\xbe\
\x8b\x88\x2d\xc1\x63\x01\x70\x00\xd6\xb2\x7b\xf3\x77\x76\xb5\x1c\
\x01\x9c\x18\x30\x05\xf8\xd6\xd8\x1d\x17\x11\x42\x22\xb1\x67\xcb\
\x39\x84\x2d\x13\xc0\x78\xef\xaa\x36\x73\x5b\xec\x7e\x8b\x08\x70\
\x1b\x9b\xbd\xb7\x6d\x11\xe1\xcd\x12\x80\x19\xe3\xbc\x2b\x9a\xe5\
\xde\x8c\xdd\x6f\x11\x01\xf7\x26\xb3\xbc\x37\x1e\x67\xcd\x96\xf9\
\x6f\x3e\x02\xf8\x42\xc0\xbb\xc7\x74\x01\x50\xa4\x54\xf8\x47\x63\
\x5f\xbe\xd0\xf4\x9f\xcd\x13\x80\xff\x09\xc0\x07\x4c\x8f\xdd\x67\
\x11\x69\x34\x9d\x0f\xbc\xb7\x6d\x16\xe5\x49\x13\xc0\x9d\xcd\xaf\
\x25\x8a\x48\x3c\x6e\x03\x77\x7a\x6f\xdc\x56\x02\xb0\x81\x01\xab\
\x8d\x87\xac\x46\x22\x22\x59\xf3\x8f\xc8\x83\x9b\xbe\x35\xb8\xe9\
\x08\xc0\xff\xf3\xff\xe3\xa0\xa5\x08\x44\x24\x6b\x8f\xf1\xb1\xf7\
\xb6\x4d\x22\xbd\x69\x02\x18\xe3\x5d\xc1\x4c\x4d\x01\x12\x29\x25\
\x6e\x23\x33\xbd\x37\x6e\x12\xe9\x5b\x13\x80\x75\xe6\x68\xef\x0a\
\xfe\x18\xbb\xbb\x22\xd2\x82\x7f\x54\x1e\x6d\x9d\xb7\x7c\xbb\x6d\
\x04\x30\x8c\x9d\x3c\x8b\x6f\x0a\x58\x88\x48\x44\x8a\xe3\x41\x7c\
\x5f\xcd\xb7\x13\xc3\xb6\x7c\xbb\x2d\x01\x8c\xf4\xde\xd1\x5f\xdc\
\xaa\xd8\x7d\x15\x91\xe6\xdc\x2a\xfe\xe2\xbd\xf1\xd6\x68\xdf\x96\
\x00\x46\x79\x17\xd6\x09\x80\x48\x29\xf2\x8f\xcc\xad\xd1\xbe\x75\
\x36\xa0\xbd\xc3\x5e\x9e\x85\x07\xb9\xa5\xb1\x7b\x2a\x22\x2d\xd9\
\x40\x96\x78\x6e\xba\xc2\x35\x3e\xf3\xdb\x38\x02\xb0\x41\xde\xe1\
\x5f\xaf\xf0\x17\x29\x45\x6e\x29\xf5\x9e\x9b\xee\x65\x8d\x53\xf9\
\xb7\x9c\x02\xf8\x5f\x01\x98\x1b\xbb\x9b\x22\xd2\x06\xff\xe8\x6c\
\x8c\xf8\x2d\x09\xc0\xff\x0a\x80\x12\x80\x48\xa9\xf2\x8f\xce\xc6\
\x88\x0f\x4f\x00\x4f\xc4\xee\xa3\x88\xb4\xc1\x3f\x3a\x1b\x23\xde\
\x1c\x60\xbb\xf3\x9e\x67\xb1\x55\xec\xae\x17\x81\x88\x94\x26\x33\
\x56\xb2\xab\xe7\xc6\x7b\xb8\x95\x5b\x46\x00\x87\x7a\xef\xe1\x2f\
\x0a\x7f\x91\x52\xe5\x5c\xc0\xb3\x00\x87\x42\x78\x02\xd0\x09\x80\
\x48\x29\xf3\x8f\xd0\x26\x09\x60\x88\x77\x21\x5d\x02\x14\x29\x65\
\xfe\x11\x3a\x04\x42\x47\x00\x9f\xf2\x7c\xec\xfe\x89\x48\x3b\x9e\
\xe7\x53\xcf\x2d\x13\x8c\x00\x96\x68\x1a\xb0\x48\x29\x73\x1b\xbd\
\x9f\x06\xdc\x32\x02\xb0\xbe\xde\xd7\x0d\x17\xc5\xee\x9e\x88\x74\
\xc0\x37\x4a\x77\xb5\xbe\x0d\x23\x00\xff\x4b\x80\x4a\x00\x22\xa5\
\xce\x3f\x4a\x0f\x6d\x48\x00\xfe\x97\x00\x95\x00\x44\x4a\x9d\x7f\
\x94\x0e\x69\x48\x00\x87\x64\x50\xb5\x88\xc4\xe1\x1f\xa5\x87\x34\
\x24\x80\x03\x3c\x37\xdf\xc8\xb2\xd8\x7d\x13\x91\x0e\x2c\xc3\xf7\
\x52\xfd\x01\x0d\x09\x60\x6f\xcf\xcd\x17\xbb\xcf\x62\xf7\x4d\x44\
\xda\xe7\x3e\x63\xb1\xe7\xa6\x7b\x87\x25\x80\x57\x62\x77\x4d\x44\
\x3c\xf8\x46\xea\xde\xd0\xc9\xba\x7a\xdf\x04\xd4\xcb\x40\x45\xca\
\x81\x6f\xa4\xee\x6a\x5d\x3b\xd1\xcf\xbb\xda\xb7\x62\xf7\x4b\x44\
\x3c\xf8\x47\x6a\xbf\x4e\xde\x27\x00\x4a\x00\x22\xe5\xc1\x3f\x52\
\xf7\xd6\x08\x40\xa4\xd2\x68\x04\x20\x92\x63\x41\x23\x00\x25\x00\
\x91\xca\x92\xc9\x29\xc0\xc7\x6e\x4d\xec\x7e\x89\x48\xc7\xdc\x1a\
\xef\x37\x05\xf7\xeb\xe4\x7d\x13\x50\x9f\xff\x22\xe5\xc2\x37\x5a\
\x77\xed\x44\x77\xcf\x4d\x57\xc4\xee\x93\x88\x78\xf2\x8d\xd6\xee\
\x9d\xe8\xe6\xb9\xe9\xfa\xd8\x7d\x12\x11\x4f\xeb\x3c\xb7\xeb\xe6\
\x3f\x02\x50\x02\x10\x29\x17\x1b\x3c\xb7\xd3\x08\x40\xa4\x02\xf9\
\x46\x6b\xc0\x08\xc0\x37\xa7\x88\x48\x6c\xbe\xd1\xda\x4d\x23\x00\
\x91\xca\xe3\x1b\xad\x01\xa7\x00\x1a\x01\x88\x94\x8b\x80\x11\x80\
\x2e\x02\x8a\x54\x1a\x8d\x00\x44\x72\x2c\x60\x04\x20\x22\xb9\xd5\
\xc9\x3f\x57\xc4\x6e\xaa\x88\x78\xf2\x1e\xd7\x77\xf2\x3f\x5b\x88\
\xdd\x27\x11\xf1\xe4\x7d\x65\x4f\x23\x00\x91\xca\x13\x30\x02\xf0\
\x7e\x68\x30\x76\x9f\x44\xc4\x53\xc0\x08\xc0\xfb\xa1\xc1\xd8\x7d\
\x12\x11\x4f\x1a\x01\x88\xe4\x98\xf7\x03\xfe\xba\x08\x28\x52\x79\
\xbc\x1f\xf0\xd7\x08\x40\xa4\xf2\xf4\xf0\xdc\x2e\x60\x04\xb0\x57\
\xec\x3e\x89\x88\x27\xdf\x68\x5d\xdf\x89\x55\x9e\x9b\xfa\xaf\x1e\
\x2c\x22\x71\xf9\x46\xeb\xaa\x4e\xbc\xed\xb9\xe9\x4e\xd6\x2b\x76\
\xaf\x44\xa4\x63\xd6\x8b\x9d\x3c\x37\x7d\xbb\x53\xc8\x1a\xe2\xb1\
\x3b\x26\x22\x1e\x02\xde\xf5\xa1\x04\x20\x52\x69\x82\x12\x80\xef\
\x29\x80\x12\x80\x48\x79\xf0\x8f\x54\x9d\x02\x88\x54\x1c\x8d\x00\
\x44\x72\x2c\x64\x04\xe0\x3e\xf1\xbe\x11\xb8\x6f\xec\x7e\x89\x88\
\x07\xdf\x48\x5d\xe5\x3e\xe9\x84\xff\x7b\xc4\x0e\x8a\xdd\x2f\x11\
\xf1\xe0\x1b\xa9\x6f\x41\x48\x02\x18\x6c\x5d\x62\xf7\x4c\x44\xda\
\x67\x5d\x18\xec\xb9\x69\x63\x02\x78\xdd\x73\xf3\x1d\x19\x10\xbb\
\x73\x22\xd2\x81\x01\xec\xe8\xb9\xe5\xeb\x0d\x09\xe0\x25\xef\xaa\
\x0f\x8d\xdd\x37\x11\xe9\x80\x7f\x94\xbe\xd4\x90\x00\x16\x66\x50\
\xb5\x88\xc4\xe1\x1f\xa5\x0b\x1b\x12\xc0\xa2\x0c\xaa\x16\x91\x38\
\xfc\xa3\x74\x11\x74\x02\xf7\x8e\xf7\x8d\x40\x25\x00\x91\x52\xe7\
\x1b\xa5\xab\xdc\x3b\x0d\x23\x00\xff\x93\x80\x41\xe6\x7b\x79\x41\
\x44\x22\xb0\x1d\x19\xe4\xb9\xe9\x42\xd8\x92\x00\x7c\x4f\x02\x76\
\xe0\x88\xd8\x1d\x14\x91\x76\x1c\xc1\x0e\x9e\x5b\x2e\x82\xd0\x11\
\x00\x8c\x8a\xdd\x3f\x11\x69\x87\x7f\x84\x26\x18\x01\xc0\xc8\xd8\
\xfd\x13\x91\x76\xf8\x47\xe8\x22\x00\x73\x80\xed\xce\x7b\x9e\x85\
\x56\xb1\xbb\x73\xb1\xfb\x28\x22\xad\x31\x63\x25\xbb\x7a\x6e\xbc\
\x87\x5b\xd9\x38\x02\x70\x2b\x79\xd5\xb3\xd0\xae\xba\x13\x20\x52\
\xb2\x0e\xf5\x0e\xff\x57\xdd\x4a\xd8\x72\x0a\x00\x73\xbd\x77\xa1\
\x93\x00\x91\x52\xe5\x1f\x9d\x8d\x11\x1f\x9e\x00\x74\x19\x50\xa4\
\x54\xf9\x47\x67\x8b\x04\xf0\x44\x06\xbb\x10\x91\xe2\xf2\x8f\xce\
\xc6\x88\xb7\x2d\x57\xf4\xec\x1d\xef\x97\x09\x0c\x72\x4b\x63\xf7\
\x53\x44\x5a\xb2\x81\x2c\xf1\xdc\x74\x85\xeb\xdb\xf0\x4d\xa7\xad\
\x3f\xf2\x1f\x03\x9c\x1a\xbb\xa3\x22\xd2\x0a\xff\xc8\xdc\x1a\xed\
\xdb\x12\x80\xff\x55\x00\x25\x00\x91\x52\xe4\x1f\x99\x5b\xa3\x3d\
\xc9\x08\xe0\x18\xf3\xbd\xd5\x20\x22\x45\x62\xbb\x72\x8c\xf7\xc6\
\xad\x8c\x00\x16\xf0\xb1\x67\xe1\xce\x9c\x12\xbb\xb3\x22\xd2\xc2\
\x29\x74\xf6\xdc\xf2\x63\x16\x6c\xf9\x76\x6b\x02\x70\x9b\x78\xca\
\x7b\x57\x3a\x09\x10\x29\x35\xfe\x51\xf9\x94\xdb\xb4\xe5\xdb\x4e\
\x4d\x7e\x3c\xcb\xbb\x82\xb1\x9a\x16\x2c\x52\x4a\x6c\x47\xc6\x7a\
\x6f\xdc\x24\xd2\x9b\x26\x80\xe9\xde\x15\xec\xc4\xf1\xb1\x3b\x2c\
\x22\x4d\x1c\xef\xfd\x46\xe0\x66\x91\xde\x24\x01\xb8\xa5\xbc\xec\
\x5d\xc5\xe9\xb1\xfb\x2b\x22\x4d\xf8\x47\xe4\xcb\x4d\x9f\xe3\xe9\
\xd4\xec\x57\xfe\x63\x80\xb3\xac\x5b\xec\x1e\x8b\x48\x03\xeb\xc6\
\x59\xde\x1b\x37\x8b\xf2\xa4\x09\xa0\x0f\xe3\x63\x77\x5a\x44\x1a\
\x8d\xa7\x8f\xf7\xb6\xed\x24\x80\xa7\x79\xc7\xbb\x9a\xf3\x62\xf7\
\x59\x44\x1a\xf9\x47\xe3\x3b\x3c\xdd\xf4\x9f\xcd\x12\x80\x73\x3c\
\xe0\x5d\xd1\x18\xd3\xcb\x42\x45\x4a\x80\xed\xcb\x18\xef\x8d\x1f\
\x68\xbe\xa0\x4f\xa7\x16\xbf\xf6\x3f\x09\xe8\xc4\xb9\xb1\x3b\x2e\
\x22\xc0\xb9\xdb\xc5\x71\xdb\x5a\x44\xb8\x35\x5f\xdf\xcb\xba\xb1\
\x92\x9e\x9e\x55\x2d\x75\xbe\x0b\x10\x8b\x48\x66\x6c\x09\x03\x3d\
\x37\x5d\xcb\xee\x6e\x43\xd3\x1f\xb4\xc8\x1c\x6e\x03\x7f\xf2\xde\
\xef\x40\xd3\xea\x40\x22\x91\xd9\x48\xef\xf0\x87\x3f\x35\x0f\x7f\
\x5a\x19\x3a\x4c\x0b\xd8\xb7\x2e\x04\x8a\xc4\x16\x12\x85\xdb\x45\
\xb7\xb5\x5c\xe2\xd7\x3a\xb3\x9c\xbd\x3d\xab\x5b\x43\x7f\xb7\x3a\
\x76\xff\x45\xf2\xcb\x76\xa1\x9e\x5e\x9e\x1b\xbf\xc5\x7e\xdb\x66\
\x01\x34\xd8\x6e\x04\xe0\x36\x71\x9b\xf7\xde\x7b\x31\x31\xf6\x01\
\x10\xc9\xb5\x89\xde\xe1\x0f\xb7\xb5\x0c\xff\x56\x46\x00\x60\x83\
\x79\xc5\xbb\xca\xb7\x39\xc0\x6d\x8c\x7d\x0c\x44\xf2\xc9\x76\xe4\
\x75\xfa\x79\x6f\x7e\x90\x5b\xdc\xf2\x47\xad\xdc\x3e\x70\x8b\x79\
\xd2\xbb\xca\x7e\x9c\x1d\xfb\x20\x88\xe4\xd6\xd9\x01\xe1\xff\xe4\
\xf6\xe1\x4f\x1b\xf7\x0f\x6f\x09\x68\xc2\x24\xb3\xd8\x47\x41\x24\
\x8f\xcc\x98\x14\xb0\x79\xab\x51\x6d\xad\xbd\xe7\xcb\x7a\xf3\x36\
\x3d\xbc\x2b\x3e\xc5\xcd\x88\x7d\x28\x44\xf2\xc7\x4e\xe6\x41\xef\
\x8d\xd7\xd1\xcf\x7d\xb4\xfd\x8f\x5b\x1d\x01\xb8\x8f\xb8\x27\xa0\
\x1d\x97\xc5\x3e\x10\x22\xb9\x14\x12\x79\xf7\xb4\x16\xfe\xb4\xf9\
\x08\xe1\xcd\x01\x55\x1f\x6f\x47\xc4\x3e\x12\x22\x79\x63\x47\x04\
\x2d\xcb\xd3\x46\x44\xb7\x91\x00\xdc\x63\xbc\x10\x50\xf9\x4f\x62\
\x1f\x0c\x91\xdc\x09\x89\xba\x17\xdc\x63\xad\xff\xa2\xed\x49\x04\
\xd7\x05\x54\x7f\xba\x1d\x19\xfb\x68\x88\xe4\x89\x1d\x19\xb4\x2a\
\x57\x9b\xd1\xdc\xea\x45\x40\x08\xbe\xc3\xf8\x88\x1b\x1d\xfb\x90\
\x88\xe4\x87\xcd\xe6\x44\xef\x8d\xdb\x79\x5a\xa7\xcd\x11\x80\xdb\
\xc8\x0d\x01\xed\x39\xd1\xfc\x9b\x23\x22\x05\xb1\x13\x03\xc2\x1f\
\x6e\x68\xfb\x61\xbd\x36\x47\x00\x60\x7d\xa8\xf7\x9e\x1a\x0c\xcf\
\x3a\x9d\x06\x88\x14\x85\x3d\xc3\xe7\xbd\x37\x5e\x4b\x7f\xf7\x41\
\x5b\xbf\x6c\x67\x21\x01\xf7\x41\xd0\x03\x41\x9f\xb7\x33\x62\x1f\
\x16\x91\x3c\xb0\x33\x02\xc2\x1f\x6e\x69\x3b\xfc\xdb\x1d\x01\x80\
\x7d\x8e\x25\x01\x6b\x8d\xbc\xcc\xd0\xed\x27\x1b\x88\x48\x9a\xac\
\x33\x2f\x72\xb0\xf7\xe6\x9b\x19\xe4\x5e\x6d\xfb\xd7\xed\x86\xb7\
\x7b\x95\xfb\x03\x5a\x76\x30\xe7\x44\x3e\x36\x22\x95\xef\x9c\x80\
\xf0\x87\xfb\xdb\x0b\xff\x0e\x46\x00\x60\x47\x07\x4c\x0c\x82\xb7\
\x18\xec\xd6\x44\x3c\x34\x22\x15\xce\x7a\xb1\xd8\x7b\xbd\x0e\x80\
\x2f\xba\x76\xdf\xf9\xd9\xc1\x00\xdf\x3d\x45\xc8\x73\xfe\x7b\xf3\
\xaf\xd1\x8e\x8c\x48\x1e\xfc\x6b\x50\xf8\xcf\x70\x1d\xbc\xf2\xb7\
\x83\x11\x00\xd8\x30\xe6\xe1\x3f\xdf\xef\x33\x86\xb9\x45\xd1\x0e\
\x8e\x48\x45\xb3\x43\x59\x40\x17\xef\xcd\x1d\xc3\xdd\x82\xf6\x37\
\xe9\xf0\x12\x9f\x5b\xc0\x5d\x01\x2d\xec\xc2\xaf\x23\x1d\x1b\x91\
\xca\xf7\xeb\x80\xf0\x87\xbb\x3a\x0a\x7f\x8f\x11\x00\xd8\x40\x5e\
\x0a\xda\x6d\x8d\xbb\xa3\xf8\x47\x46\xa4\xd2\xd9\xd9\xd4\x06\x6c\
\xfe\x19\x87\x34\x7d\x0d\x68\xeb\x3c\x6e\xf2\xb9\xa5\x41\xcf\x03\
\xc0\x14\xeb\x5d\xec\x43\x23\x52\xe9\xac\x37\x53\x82\x0a\xdc\xd2\
\x71\xf8\x7b\x25\x00\xe0\xe7\x6c\xf0\xda\xae\x41\x5f\x7e\x56\xc4\
\xe3\x22\x92\x0f\x3f\xa3\x6f\xc0\xd6\x1b\xf8\xb9\xcf\x66\x5e\x09\
\xc0\xbd\xc9\x8d\x41\x4d\xbd\x48\xb3\x03\x45\xd2\x64\x47\x72\x51\
\x50\x81\x1b\xdd\x9b\x5e\xf5\x76\x7c\x0d\x00\xc0\x76\xe7\x35\x76\
\x0a\xd8\xfd\x62\x86\xb9\x90\x51\x83\x88\xb4\xc9\xba\xb1\x80\xc1\
\x01\x05\x3e\xe6\x40\xb7\xd2\x67\x43\xcf\x07\x7d\xdd\x4a\xae\x0d\
\x6a\xf1\x60\x7e\x59\xac\x83\x23\x52\xf1\x7e\x19\x14\xfe\x70\xad\
\x5f\xf8\x7b\x8f\x00\xc0\x7a\xf2\x0a\x21\x2f\x04\xdf\xcc\x09\xee\
\xf1\xa2\x1c\x1c\x91\x8a\x66\xc7\xf2\x68\xc0\x9c\x1c\x78\x93\x83\
\xdc\x5a\xbf\x4d\xbd\xab\x75\x6b\xf9\x51\x50\xab\x3b\x71\x8b\xf9\
\x4f\x26\x16\x91\x56\x59\x4f\x6e\x09\x0a\x7f\xf8\x91\x6f\xf8\x07\
\x24\x00\x70\x77\x53\x17\xd4\x8c\x03\x03\x6f\x5b\x88\xc8\xf6\xa6\
\x70\x60\xd0\xf6\x75\xee\x6e\xff\x8d\xbd\x4f\x01\x00\x6c\x20\x2f\
\xd2\x35\xa8\x31\xd5\x6e\x56\x86\x87\x46\xa4\xc2\xd9\x98\xc0\x8f\
\xdd\x4f\x18\xea\x73\xff\x7f\x8b\xa0\xa1\x85\x5b\xca\xe4\xc0\xf6\
\xdf\x64\xbb\x64\x74\x64\x44\x2a\x9e\xed\xc2\x4d\x81\x45\x26\x87\
\x84\x7f\xe0\x08\x00\xac\x3b\x2f\x71\x40\x50\x91\x07\x18\xef\xc2\
\x76\x22\x22\x80\x19\xd3\x19\x17\x54\xe4\x75\x0e\x71\xeb\x43\x0a\
\x84\x5d\x5c\xc0\xad\xe7\xe2\xc0\x5e\x8c\xe3\x8a\x2c\x0e\x8e\x48\
\xc5\xbb\x22\x30\xfc\xe1\xe2\xb0\xf0\x0f\x1e\x01\x00\xd8\x1f\x03\
\x9b\xb5\x89\xd1\x6d\xbd\x96\x40\x44\x5a\x67\xc7\x33\x9b\xce\x41\
\x45\x1e\x70\xa7\x06\xef\x25\x41\x02\x38\x80\x85\x01\xab\x05\x03\
\xac\xa0\xca\xbd\x9d\xea\xd1\x11\xa9\x68\xd6\x8f\xf9\xec\x15\x54\
\x64\x2d\x43\xdc\xeb\xa1\xfb\x09\x3c\x05\x00\x70\xaf\x73\x79\x60\
\x91\xbd\xf8\x83\x85\x4c\x28\x16\xc9\x35\xeb\xc2\x1f\x02\xc3\x1f\
\x2e\x0f\x0f\xff\x44\x09\x00\xf8\x0d\xa1\x37\xf7\x8e\xd5\xa3\xc1\
\x22\xde\x7e\xc9\xb1\x81\x25\x66\xf1\x9b\x24\x3b\x4a\x70\x0a\x00\
\x60\xfd\x79\x91\x9d\x03\x0b\x9d\xe6\xa6\xa7\x70\x68\x44\x2a\x9c\
\x8d\x0f\x5a\x8d\x1b\xe0\x43\x86\xba\xfa\x24\xfb\x4a\x36\x02\xc0\
\xd5\xf3\x8f\xc1\x85\x6e\xb5\x81\x05\x1e\x19\x91\x8a\x67\x03\xb9\
\x35\xb8\xd0\x3f\x26\x0b\xff\xc4\x23\x00\x00\xbb\x9f\xf1\x81\x45\
\x96\x72\xb4\x7b\x3f\xf9\xa1\x11\xa9\x74\xb6\x1b\x4f\x11\xfa\x41\
\x39\xdd\x9d\x96\x78\x7f\x05\x24\x80\xbd\x58\xc8\xee\x81\x85\x9e\
\x60\xb4\xfb\x24\xf9\xe1\x11\xa9\x64\xd6\x95\xd9\x8c\x0c\x2c\xb4\
\x92\x21\x6e\x45\xd2\x3d\x26\x3c\x05\x00\x70\x2b\xf8\x41\x70\xa1\
\x91\xdc\x9c\x7c\x8f\x22\x15\xee\xe6\xe0\xf0\x87\x1f\x24\x0f\xff\
\x82\x12\x00\xb8\xbb\x09\x5f\xff\xf7\x5b\xe6\xb5\x56\x99\x48\xde\
\xd8\xcf\xf9\x56\x70\xa1\x3b\x42\xe6\xfe\xb5\xb2\xcf\xc2\x1e\xd3\
\xb7\xde\x3c\x17\x7c\xc6\x02\x13\xdc\x6d\x05\xed\x56\xa4\xe2\xd8\
\xb9\x4c\x0b\x2e\xb4\x94\x11\xee\xa3\x82\xf6\x5a\xe8\x3c\x1d\x3b\
\x8c\xbf\xd2\x3d\xb0\xd0\x46\xc6\xea\xe1\x60\x91\x6d\xec\x78\x66\
\xb2\x63\x60\xa1\xf5\x1c\xe5\x5e\x28\x6c\xbf\x05\x9d\x02\x00\xb8\
\x17\xb8\x20\xb8\xd0\x8e\xdc\x67\xc3\x0a\xdd\xb3\x48\xa5\xb0\x61\
\xdc\x17\x1c\xfe\x70\x41\xa1\xe1\x9f\x42\x02\x00\x77\x6b\xf0\x9c\
\x65\xd8\x85\x99\x16\xb6\xcc\xa1\x48\x85\xb2\xc1\xcc\x64\x97\xe0\
\x62\x37\xb9\x5b\x53\xd8\x77\x1a\x53\xf5\xad\x1b\x7f\xe5\xf0\xe0\
\x62\xf5\x8c\x72\x6f\xa4\xb0\x7b\x91\x32\x66\xfb\x33\x97\xfe\xc1\
\xc5\xfe\xc6\x51\x69\x2c\xbc\x9f\x4a\x02\x00\x1b\xc0\x73\xc1\x8f\
\x06\xc3\x32\x46\x16\x72\x0b\x43\xa4\xdc\xd9\x5e\x3c\xc1\x80\xe0\
\x62\x1f\x32\xc2\x2d\x4b\x63\xff\x29\x9c\x02\x00\xb8\x65\x9c\x97\
\xa0\xd8\x00\x66\x59\x9f\x74\x5a\x20\x52\x7e\xac\x0f\xb3\x12\x84\
\x3f\x9c\x97\x4e\xf8\xa7\x96\x00\xc0\xdd\x17\xf8\xea\x90\x06\x43\
\x79\xc8\x7a\xa5\xd5\x06\x91\x72\x62\xbd\x78\x88\xa1\x09\x0a\x5e\
\xeb\xee\x4b\xad\x0d\xe9\x2d\xd7\x67\x9d\x79\x80\x2f\x27\x28\xf8\
\x67\x4e\xd1\x6b\xc4\x24\x6f\xac\x1b\x0f\xf2\xa5\x04\x05\x1f\x62\
\x9c\xdb\x94\x5a\x2b\xd2\x5c\xaf\xd3\x76\xe2\x2f\x89\x32\xda\x2c\
\x4e\x73\xeb\x52\x6c\x88\x48\x89\xb3\x1e\xdc\xcf\x98\x04\x05\x5f\
\xe4\x18\xf7\x71\x8a\xed\x48\x77\xc1\x5e\xeb\xcf\x33\x41\x2f\x31\
\xde\x62\x2e\x5f\x29\xec\x89\x26\x91\xf2\x61\xbd\xf9\x13\xa3\x12\
\x14\x7c\x87\x23\x93\x4e\xfc\x6d\x5d\x6a\xd7\x00\x1a\xb8\x7a\xc6\
\x91\xe4\xb3\x7c\x14\x8f\xd8\x6e\xe9\xb6\x45\xa4\x34\xd9\x6e\x3c\
\x92\x28\xfc\xd7\x31\x2e\xdd\xf0\x4f\x3d\x01\x80\x7b\x8e\x1a\x92\
\x0c\x2b\x46\x30\xc7\xfa\xa5\xdd\x1a\x91\x52\x63\xfd\x98\xc3\x88\
\x04\x05\x1d\x35\xee\xb9\xb4\x5b\x93\x7a\x02\x00\x77\x5f\xc2\x37\
\x01\x1c\xca\xe3\xb6\x7f\xfa\xed\x11\x29\x1d\xb6\x3f\x8f\x73\x68\
\xa2\xa2\x57\xa4\x77\xed\xbf\x49\x7b\xb2\x79\x69\x8f\xfd\x37\xdf\
\x4d\x54\xb0\x9e\xd1\x6e\x49\x26\x4d\x12\x89\xce\x06\x31\x3b\xc1\
\x53\x7f\x00\xbf\x73\xdf\xcb\xa4\x45\x19\x25\x80\x2e\xcc\x48\x74\
\x8d\x13\x56\x70\xb2\x9b\x97\x49\xa3\x44\xa2\xb2\xe1\xcc\x08\x5e\
\xec\xbb\xc1\x2c\x4e\x76\x9f\x65\xd1\xa6\x0c\x4e\x01\x00\xdc\x67\
\x9c\xc1\xd3\x89\x8a\xee\xc5\x5c\xfb\x7a\x36\xad\x12\x89\xc7\xbe\
\xce\xdc\x84\xe1\xff\x34\x67\x64\x13\xfe\x99\x25\x00\x70\x6b\xf8\
\x32\xc9\x26\x2b\xf6\xe0\x4e\xfb\x57\xb3\xac\x5a\x26\x52\x6c\x66\
\xf6\xaf\xdc\x49\x8f\x44\x85\x5f\xe0\xcb\x6e\x4d\x66\x2d\xcb\xf2\
\xc5\xbd\xb6\x27\x73\x19\x94\xb0\xf0\xdd\x4c\xd0\xc3\x41\x52\x09\
\xac\x07\xd3\xf8\x5a\xc2\xc2\x4b\x18\xe5\xde\xcd\xb0\x6d\xd9\xbe\
\xb9\xdb\xfa\x33\x97\xa4\x57\xf6\xe7\x33\x3e\xed\xbb\x9e\x22\xc5\
\x66\xfd\x99\x4e\x55\xc2\xc2\x6f\x30\x2a\xdb\x18\xc8\xec\x14\xa0\
\x81\xab\xe7\x44\x92\xbe\x16\xb4\x8a\x67\xed\xe8\x6c\xdb\x27\x92\
\x2d\x3b\x9a\x67\x13\x87\xff\xdb\x9c\x98\xf5\x47\x60\xc6\x09\x00\
\xdc\xab\x8c\x21\xe9\xcb\x40\xf6\xe2\x51\x9b\x90\x75\x0b\x45\xb2\
\x62\x13\x78\x34\xe1\x85\x3f\x78\x9f\x31\xee\xd5\xac\x5b\x98\x79\
\x02\x00\xb7\x88\xb1\x24\x7d\xce\xbf\x2b\xb7\xda\x14\x2b\x42\x2b\
\x45\xd2\x65\x9d\x6c\x0a\xb7\xd2\x35\x61\xf1\x8f\x18\xeb\x16\x15\
\xa1\x95\xd9\x5e\x03\xd8\xba\x9b\x63\x78\x88\x9d\x12\x17\x9f\xc1\
\x37\x35\x55\x48\xca\x89\xf5\xe6\xf7\x9c\x9c\xb8\xf8\xc7\x7c\xd9\
\xfd\xa5\x28\xed\x2c\x4e\x02\x00\xfb\x02\x0f\x27\x58\xf8\x70\x8b\
\x97\x39\x35\xad\x35\x50\x44\xb2\x66\x03\xf8\x23\x07\x27\x2e\xbe\
\x9a\x93\x5c\xb2\xa7\x68\x82\x15\x6d\x70\xed\x9e\xe6\x04\xde\x4b\
\x5c\xfc\x60\x9e\xb6\x24\x8b\x27\x88\x14\x9d\x7d\x89\xa7\x0b\x08\
\xff\xf7\x38\xa1\x58\xe1\x5f\xc4\x04\x00\x6e\x01\xc7\xf1\x56\xe2\
\xe2\xbb\x32\xd3\xc2\xdf\x40\x20\x52\x64\x76\x21\x33\xd9\x35\x71\
\xf1\xb7\x38\xce\x2d\x28\x62\x6b\x8b\x75\x0a\xd0\xb8\xbb\xcf\xf1\
\x48\xe2\xe7\x02\x00\xa6\x72\x51\x56\x0f\x45\x8a\x14\xca\xba\x70\
\x03\x13\x0b\xa8\xe0\x0d\x4e\xcc\xfe\xca\x7f\xb3\x16\x17\x37\x01\
\x80\xf5\xe7\x91\x04\x6f\x13\xdc\xe6\x49\x26\xe8\x6a\x80\x94\x22\
\x1b\xc0\x34\xbe\x58\x40\x05\x4b\xb3\xbf\xef\xdf\x52\xd1\x6f\xb0\
\xb9\x7a\x8e\xa5\x90\xdb\x1b\x5f\x64\x81\x5d\xa0\x99\x02\x52\x5a\
\xcc\xec\x02\x16\x14\x14\xfe\x8b\x38\xb6\xf8\x4f\xbe\x16\x7d\x04\
\x00\x60\xbb\xf3\x30\x47\x14\x54\xc5\x2c\xce\x77\x6f\x46\x68\xba\
\x48\x2b\x6c\x5f\x6e\x4e\x38\xfd\x7d\x8b\xe7\x39\xc9\xad\x2c\x7e\
\xcb\xa3\x3c\x62\xe3\x56\x72\x3c\xd3\x0b\xaa\x62\x0c\x0b\xed\xdc\
\x18\x6d\x17\x69\xc9\xce\x65\x61\x81\xe1\x3f\x9d\xe3\x63\x84\x7f\
\xa4\x04\x00\x6e\x0d\xa7\xf3\x8b\x82\xaa\xd8\x99\x69\x76\x9f\xed\
\x19\xa7\xfd\x22\x0d\x6c\x4f\xbb\x8f\x69\x09\x5e\x8b\xd7\xd4\x2f\
\x38\x3d\xbb\x09\xbf\x1d\xb4\x3f\xc6\x29\xc0\xd6\x9d\x7f\x83\x9b\
\xe9\x5e\x50\x15\xef\x31\xd1\xdd\x1b\xb1\x0b\x92\x6b\x76\x06\x53\
\xd9\xa3\xa0\x2a\xd6\x73\xbe\xfb\x43\xc4\x1e\xc4\x4c\x00\x60\x47\
\x30\x9d\x7d\x0a\xac\xa4\x96\x8b\xdc\xea\xa8\xdd\x90\x1c\xb2\x5d\
\xb8\x81\x9a\x02\x2b\xf9\x3b\xe3\xdd\xf3\x51\x7b\x11\x37\x01\x80\
\xf5\xe5\x3e\x8e\x2a\xb0\x92\xbf\xf3\x1d\x37\x33\x72\x47\x24\x57\
\x6c\x2c\x37\x15\xfc\xd1\xf5\x57\x4e\x77\xef\xc4\xed\x47\xf4\x79\
\x76\xee\x1d\x8e\xe7\xb6\x02\x2b\xd9\x87\x87\xed\x37\xd6\x33\x76\
\x5f\x24\x1f\xac\xa7\xfd\x86\x87\x0b\x0e\xff\xdb\x38\x3e\x76\xf8\
\x97\xc0\x08\xa0\xb1\x19\x93\xb8\xba\xe0\x64\xf4\x1a\x13\xdc\x13\
\xb1\x7b\x22\x95\xce\x46\x32\x8d\x03\x0b\xac\x64\x33\x57\xb8\x29\
\xb1\x7b\x02\x25\x93\x00\xc0\x4e\xe6\xf7\xf4\x2e\xb0\x92\xcd\x5c\
\xc7\x95\xee\x93\xd8\x7d\x91\x4a\x65\x5d\xf9\x37\x2e\x29\xf8\xa3\
\xea\x23\xbe\xe9\x66\xc4\xee\x4b\x63\x8f\x4a\x25\x01\x80\x1d\xc4\
\x03\x0c\x28\xb8\x9a\x97\x98\xe8\xe6\xc6\xee\x8b\x54\x22\x1b\xc5\
\x54\x0e\x29\xb8\x9a\x65\x8c\x73\xaf\xc4\xee\xcb\x16\xd1\xaf\x01\
\x6c\xe3\x5e\xe1\x48\x66\x17\x5c\xcd\x21\x3c\x6e\xf7\x58\xe1\x89\
\x44\xa4\x09\x1b\x60\xf7\xf0\x78\x0a\xe1\x3f\x9b\x23\x4b\x27\xfc\
\x4b\x2a\x01\x80\xfb\x80\x93\xb8\x3e\x85\x8a\xce\x60\x91\x5d\x67\
\x7d\x62\xf7\x47\x2a\x83\xf5\xb1\xeb\x58\xc4\x19\x29\x54\x75\x3d\
\x27\xb9\x0f\x62\xf7\xa7\x59\xdf\x4a\xe7\x14\x60\x6b\x93\xfe\x81\
\x1b\xd9\x21\x85\x8a\x56\x71\x15\xbf\x76\x9f\xc6\xee\x8f\x94\x33\
\xdb\x81\x0b\xf9\x69\x01\xf3\xfb\xb7\xf9\x94\x0b\xdc\xff\x8b\xdd\
\x9f\xed\xfa\x57\x7a\x09\x00\x6c\x14\xf7\x14\xf8\x7c\xd5\x16\xcb\
\xb8\x3c\x8b\x77\xaa\x4a\x3e\xd8\xe9\x5c\x93\xc2\x75\x29\x80\xf7\
\xf8\x6a\x29\x5e\x9b\x2a\xc9\x04\x00\xb6\x1f\x77\x16\xfc\x78\xd0\
\x16\x8f\x73\x69\xfa\xef\x55\x97\x4a\x67\x23\xb8\x96\x63\x53\xaa\
\xec\xaf\x9c\xe5\x96\xc7\xee\x51\x6b\x4a\xea\x1a\xc0\x36\x6e\x39\
\x23\xf9\x29\xe9\x0c\xdf\x8f\xe5\x19\xbb\xdd\x92\xbd\x94\x59\x72\
\xc9\xfa\xdb\xed\x3c\x93\x52\xf8\x7f\xca\x4f\x19\x59\x9a\xe1\x5f\
\xb2\x23\x80\xc6\xc6\x0d\xe3\x36\x86\xa6\x54\xd9\x7a\xae\xe3\x57\
\xb1\xe6\x5c\x49\xf9\xb0\x5e\xfc\x13\x97\x14\x38\x49\x6d\x9b\x17\
\x39\xb7\x98\x6b\xfc\x85\x2a\xd1\x11\x40\x03\xb7\x80\x11\x5c\xcd\
\xe6\x54\x2a\xeb\xce\x4f\x58\x66\xdf\xb3\xce\xb1\x7b\x25\xa5\xcb\
\x3a\xdb\xf7\x58\xc6\x4f\x52\x0a\xff\xcd\x5c\xcd\x88\x52\x0e\xff\
\x12\x1f\x01\x34\x36\xf1\x8b\x4c\x4b\xe9\x42\x0c\xc0\x42\x26\x69\
\xe2\x90\xb4\xc6\xc6\x32\x85\x21\xa9\x55\xb7\x8c\x09\xee\xc9\xd8\
\x7d\xea\x48\x49\x8f\x00\x1a\xb8\x27\x39\x9c\x1b\x49\x2b\x53\x0d\
\xe1\x61\x7b\xc8\x86\xc5\xee\x95\x94\x16\x1b\x66\x0f\xf1\x70\x6a\
\xe1\xef\xb8\x91\xc3\x4b\x3f\xfc\xcb\x62\x04\xd0\xd8\xd0\xd1\xdc\
\x4c\x9a\x17\xf2\xea\x98\xec\x0a\x7f\xee\x50\x2a\x80\x8d\xe6\x32\
\xaa\x53\xac\xb0\x9e\xf3\xcb\xe5\x6f\xab\x6c\x12\x00\xd8\xce\x5c\
\x4f\xba\xeb\x00\x2e\x60\x0a\x77\xea\x3d\x03\xf9\x65\x5d\x38\x8b\
\x49\x0c\x4b\xb5\xd2\xdb\xb8\xd8\x7d\x18\xbb\x67\xde\x47\xa0\x7c\
\x12\x00\x80\x9d\xc6\x6f\x49\x77\x1d\xc0\xe5\xfc\x07\xbf\xd3\xdd\
\x81\xfc\xb1\x5e\x7c\x97\x1f\xb2\x5f\xaa\x95\xbe\xcb\xf7\xdd\xfd\
\xb1\x7b\x16\x74\x14\xca\x2b\x01\x80\xed\xc1\xd4\x54\x9e\xca\x6e\
\x6a\x35\x53\xb9\xde\xbd\x1d\xbb\x6f\x52\x2c\xd6\x8f\x8b\x99\x58\
\xc0\xcb\x6a\x5b\x77\x2f\x13\x5d\xf2\xf7\x5f\xc6\x39\x12\xe5\x96\
\x00\x00\xac\x86\x1b\x52\xff\xcf\xdb\x48\x2d\xd7\xba\x97\x62\xf7\
\x4d\xb2\x66\x87\x70\x29\x35\xec\x98\x72\xb5\xab\xb9\xc8\xd5\xc6\
\xee\x5b\x82\xa3\x51\x8e\x09\x00\x6c\x1f\x6e\x4e\xf5\xb2\x4d\x03\
\xc7\x0c\x26\xbb\x39\xb1\x7b\x27\x59\xb1\xe3\xb8\x8c\x93\x49\xff\
\xbd\x52\x75\x9c\xef\xfe\x1e\xbb\x77\x49\x94\x69\x02\x00\xb0\x89\
\x5c\xc3\x4e\x19\x54\xfc\x2c\x93\xb9\xd7\x6d\x8a\xdd\x3f\x49\x93\
\x75\xe6\x0c\x2e\xe3\xf3\x19\x54\xfd\x31\x97\xbb\xa9\xb1\xfb\x97\
\x54\x19\x27\x00\xb0\x7d\xf8\x25\xe7\x64\x90\xcf\xe1\x35\xae\xe3\
\x16\xb7\x2e\x76\x0f\x25\x0d\xd6\x83\xf3\xb8\xa4\xe0\x75\xfc\x5a\
\xe3\xb8\x9d\x1f\x97\xe7\x67\x7f\x83\xb2\x4e\x00\x00\x36\x9c\xeb\
\x38\x2e\x93\xaa\xdf\xe7\x37\xdc\xe2\x5e\x8b\xdd\x43\x29\x84\x1d\
\xc8\x79\xfc\x80\xdd\x32\xa9\x7c\x0e\x97\xb8\x79\xb1\x7b\x58\x98\
\xb2\x4f\x00\x00\x76\x1a\xd7\x14\xf4\xca\xf1\xf6\x3c\xc9\xed\xdc\
\xe5\x56\xc5\xee\xa3\x84\xb2\x5d\x39\x93\x73\x0a\x7a\x5f\x6f\x7b\
\x96\x72\x79\x79\xdd\xf0\x6b\x5d\x45\x24\x00\xb0\x1d\xb8\x80\x7f\
\x49\x65\xdd\x96\xd6\x6c\x64\x06\xb5\xfc\x49\xeb\x0d\x97\x07\xeb\
\xca\x57\xa8\xe1\xe4\xd4\xaf\xf4\x6f\xb1\x8a\x9f\x73\x63\x65\xac\
\x35\x55\x21\x09\x00\xc0\xfa\xf0\x53\x2e\xcc\xec\x3f\x1d\x56\x73\
\x17\xb5\x3c\xe1\x2a\xe7\x90\x55\x1c\x33\x46\x52\xc3\x99\xa9\xdf\
\x24\xde\x66\x23\xbf\xe6\xaa\xd2\x5a\xd7\xaf\x10\x15\x94\x00\x00\
\x6c\x00\x57\xa7\xfe\x98\x50\x73\xaf\x73\x07\xb7\xbb\xc5\xb1\x7b\
\x2a\x2d\xd9\x60\xce\xe1\x6c\x0e\xc8\x74\x27\xf7\x72\x85\x5b\x16\
\xbb\xa7\x69\xaa\xb0\x04\x00\x60\xa3\xb8\x8e\x11\x19\xef\xe4\x39\
\x6e\xe7\x0f\xee\xdd\xd8\x7d\x15\x00\xdb\x93\x6f\x70\x4e\x11\xfe\
\xcf\x2f\x29\xc5\x55\xfd\x0a\x53\x81\x09\x00\xcc\x38\x9b\x5f\xa6\
\x3a\x77\xb0\x35\x9f\x51\xc7\xed\x4c\x77\xeb\x63\xf7\x37\xbf\xac\
\x3b\xe3\x39\x87\x6a\xba\x64\xbc\xa3\x7a\x7e\xcc\x1d\x95\x78\xf2\
\x57\x91\x09\x00\xc0\xba\x73\x29\x57\xd0\x2b\xf3\x1d\x7d\xcc\x3d\
\xd4\xf2\xa8\x4b\x67\xdd\x22\xf1\x64\x9d\x38\x81\x1a\xbe\x9a\xc9\
\xa3\x60\xcd\xad\xe1\x6a\xae\xad\xd4\x34\x5f\xb1\x09\x00\xc0\xfa\
\x72\x15\xe7\x17\x65\xd1\x93\x77\x99\x45\x1d\xb3\x34\xa1\x28\x7b\
\xd6\x8f\x31\x54\x33\x26\xe5\x59\xa1\xad\xdb\xcc\xcd\xfc\x34\xfe\
\x3b\x7c\xb3\x53\xd1\x09\x00\xc0\x86\x32\x25\x83\x59\x03\x6d\x79\
\x81\x3a\xea\x98\xeb\x36\xc4\xee\x77\xe5\xb1\x6e\x8c\xa2\x9a\x6a\
\x0e\x2b\xda\x2e\xeb\x98\xe4\x5e\x8c\xdd\xef\x6c\x55\x7c\x02\x00\
\xb0\xa3\xb9\x9c\x53\x8b\xb8\xfc\xd9\x7a\xe6\x32\x93\x3a\xb7\x30\
\x76\xcf\x2b\x83\x0d\xa1\x9a\xb1\x8c\x4a\x6d\xa5\xde\x8e\x6d\xe6\
\x8f\x5c\xe3\x9e\x8a\xdd\xf3\xec\xe5\x22\x01\x00\xd8\x40\x2e\x65\
\x02\xdd\x8a\xba\xd3\xb7\x1a\x4f\x0c\xca\x6c\x8e\x78\xa9\xb0\x3d\
\x1a\x07\xfb\x7b\x17\x75\xb7\x1b\x98\xc6\xb5\x6e\x69\xec\xde\x17\
\x47\x6e\x12\x00\x80\xed\xc1\x45\x5c\x90\xd1\x73\xe1\x6d\x73\xcc\
\xa7\x8e\x3a\xfe\xe2\x36\xc6\x3e\x02\xe5\xc1\x76\xe4\x18\xaa\xa9\
\xa6\x2a\x93\x89\x5e\xed\x79\x9f\x1b\xb9\x21\x4f\x09\x3b\x57\x09\
\x00\x32\x9d\x19\xd6\x91\xb5\x3c\x46\x1d\x75\xa5\xf4\x72\xe8\x52\
\x63\x07\x51\x4d\x35\xc7\xd3\x33\xc2\xce\x73\x39\x03\x34\x77\x09\
\x00\x1a\xe7\x86\x4f\xe2\xc8\x48\xbb\x5f\xc1\x7c\xe6\x31\x8f\xf9\
\x9a\x69\xd8\xc0\x0e\xa4\x8a\xe1\x0c\xa7\x8a\xbd\x22\x35\xe1\x19\
\xa6\xe4\x73\x0d\x88\x5c\x26\x80\xc6\xae\x1f\xcb\x65\x9c\x52\xf4\
\x41\x66\x53\x1f\x32\x9f\x79\xcc\x67\x1e\x8b\xf3\xf6\xc7\x67\x9d\
\x19\xcc\x70\xaa\x18\x4e\x15\x3b\x47\x6c\x88\xe3\x41\x26\xbb\xc7\
\x63\x1f\x8f\x58\x72\x9c\x00\x00\xec\x60\x2e\xa5\x86\xae\xb1\xdb\
\xc1\x7a\xfe\xd6\x98\x0c\x16\x56\xf2\x9c\x43\xeb\xca\x90\xc6\xa0\
\x3f\xbc\x88\xd7\xf4\xdb\xf2\x09\xb5\x5c\xeb\x5e\x8e\xdd\x8c\x98\
\x72\x9e\x00\x00\xac\x2f\x17\x33\x91\x3e\xb1\xdb\xd1\xe8\x53\x5e\
\x6a\x1c\x15\xfc\xad\x52\x16\x2b\xb7\x5e\x1c\xde\xf8\x69\x7f\x08\
\x3b\xc4\x6e\x4d\xa3\x0f\x98\xca\xf5\x95\xfc\x88\x8f\x1f\x25\x00\
\x00\xac\x17\xdf\xe1\x47\xec\x1f\xbb\x1d\xcd\x6c\x66\x29\xf3\x59\
\x4c\x7d\xc3\x57\x39\xa5\x03\xeb\x45\xff\xc6\xaf\xc1\x54\x31\xb0\
\xc4\x5e\x41\xf7\x06\xff\xce\x4d\xe5\x74\x3c\xb3\xa3\x04\xb0\x95\
\x75\xe1\x6b\x5c\xc0\xc8\xa8\x57\x05\xda\xf3\xc1\x96\x54\xd0\xf8\
\xf5\x66\xa9\x9c\x2c\x58\x57\xf6\xdd\x1a\xf0\x0d\x5f\xa5\x32\x9e\
\x6a\xc9\xf1\x04\x37\x72\xb7\xde\x06\xb5\x85\x12\x40\x0b\x76\x00\
\x35\xd4\x30\x38\x76\x3b\x3c\x38\xde\x6d\x96\x10\x96\xf3\x76\x31\
\x2e\x25\x5a\x67\xfa\xb1\x5f\xb3\x70\xdf\xb3\x64\x93\x66\x53\x8b\
\xa9\xa5\xd6\xbd\x1e\xbb\x19\xa5\x45\x09\xa0\x55\x36\x82\x1a\xbe\
\x59\x94\xe9\x26\x69\xda\xc4\x3b\x7c\xc4\xba\xc6\xaf\xb5\x5b\xbf\
\x6b\xf9\xaf\x86\xef\xd7\x6f\x99\xc1\x68\x9d\xe8\x4e\x0f\x7a\xd0\
\x93\x1e\x5b\xbf\x9a\x7e\xdf\xf4\x5f\xbd\xe9\x4b\xe7\xd8\x1d\x0d\
\xf4\x2e\xbf\xa7\xd6\x3d\x17\xbb\x19\xa5\x48\x09\xa0\x4d\xd6\x85\
\x31\xd4\x70\x1a\x3d\x62\xb7\x24\x33\x1b\x58\x07\xf4\x28\xf2\x03\
\xd2\xc5\xb4\x8e\xfb\xa9\x65\x96\x86\xfc\x6d\x51\x02\xe8\x80\xf5\
\xe2\x0c\x6a\x38\xb1\xc4\x2e\x63\x49\x47\x36\xf3\x08\xb5\xdc\xab\
\x4b\x7d\xed\x53\x02\xf0\x62\xfd\xf8\x16\x35\x29\xbf\x46\x5a\xb2\
\xb2\x80\x5a\xfe\x47\x6b\x33\xf8\x50\x02\x08\x60\x87\x52\xc3\xd9\
\x99\x2f\x35\x26\xc9\xd5\x73\x07\xb5\x6e\x51\xec\x66\x94\x0f\x25\
\x80\x40\x66\x1c\x47\x0d\x5f\x8b\xfa\xf8\xaa\x6c\xef\x43\xee\xa6\
\x96\x39\x95\xb8\x6e\x5f\x96\x94\x00\x12\xb1\x6e\x8c\xe3\x2c\xc6\
\xd0\x3b\x76\x4b\x84\x8f\x98\xc5\x9d\x3c\xa0\x55\x98\x92\x50\x02\
\x28\x80\x75\xe1\x0b\x54\x53\xcd\xe7\xcb\xee\xc6\x58\x25\xd8\xc4\
\xb3\xd4\x51\xc7\xd3\xba\xc6\x9f\x9c\x12\x40\x0a\xac\x0f\x5f\xa2\
\x9a\xb1\x25\xf6\x28\x71\xe5\x7a\x83\x99\xd4\xf1\xe7\xca\x79\x3f\
\x4f\x3c\x4a\x00\x29\xb2\x41\x54\x53\xcd\x09\x45\x58\x8c\x3c\x9f\
\xd6\xf0\x28\x75\xd4\xb9\x25\xb1\x1b\x52\x39\x94\x00\x52\x67\x3b\
\x70\x34\xd5\x54\x73\x84\x9e\x1d\x48\xc9\x66\x9e\xa7\x8e\x3a\x9e\
\xaa\x8c\x17\x72\x96\x12\x25\x80\xcc\xd8\x6e\x8c\xa6\x9a\x31\xba\
\x6d\x58\x80\x7a\x66\x51\xc7\x6c\xf7\x7e\xec\x86\x54\x2a\x25\x80\
\xcc\xd9\xc1\x54\x53\xcd\x71\x51\xd6\xb9\x2b\x57\x6b\x99\x43\x1d\
\x75\xf9\x5e\xac\xa3\x18\x94\x00\x8a\xc4\x76\x60\x28\x55\x54\x51\
\xc5\xe1\x4a\x05\x6d\x58\xcb\xdf\x98\xcf\x7c\xe6\xf3\xa2\x06\xfb\
\xc5\xa1\x04\x50\x74\xd6\x89\x41\x54\x51\xc5\x70\x86\x15\x7d\x89\
\xf2\x52\xf4\x7e\x63\xd0\xcf\x67\x89\xde\xb0\x58\x6c\x4a\x00\x51\
\xd9\x7e\x8d\xa9\xa0\x8a\x7d\x63\xb7\xa5\xc8\xde\x6c\x5c\x03\x71\
\xbe\x5b\x1e\xbb\x29\x79\xa6\x04\x50\x22\x6c\xf7\xc6\x44\x50\xc5\
\xc0\xb2\x58\x5e\x23\x09\xc7\x52\xe6\x37\x04\xbe\x5b\x19\xbb\x31\
\x02\x4a\x00\x25\xc8\x7a\x31\x8c\x2a\x86\x31\x98\xfd\xd8\xbb\xec\
\x9f\x31\xdc\xc4\x5b\x2c\x67\x31\x0b\x98\xcf\x02\x4d\xce\x2d\x35\
\x4a\x00\x25\xad\xc5\xf2\x5b\xfb\xd1\x9f\x3d\x4a\x7a\x7c\xe0\x78\
\x8f\x7a\x96\x17\x7b\x99\x32\x49\x4a\x09\xa0\xcc\x6c\x5d\x80\x73\
\x5b\x5a\xd8\x25\x62\x73\x56\x37\x09\xf5\x92\x5a\xa8\x54\xfc\x28\
\x01\x94\x3d\xeb\xb5\x35\x19\xec\xd1\x62\x25\xbf\x86\x95\xfe\x0a\
\x59\x89\xff\xd3\x86\xd5\x03\x5b\xac\x2e\xf8\xde\x96\xa0\xd7\x90\
\xbe\xdc\x29\x01\x54\x3c\xeb\xd2\x22\x21\x34\x4f\x10\x6c\x17\xe0\
\x4d\xfe\xad\x79\x76\x95\x4e\x09\x40\x24\xc7\x34\x5d\x45\x24\xc7\
\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\
\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\
\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\
\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\
\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\
\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\
\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\
\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\
\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\
\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\
\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\
\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\
\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\
\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\
\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\
\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\
\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\xec\xff\x03\x55\x1f\x6d\x86\
\x01\xbe\x76\x87\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\
\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x38\x2d\x30\x34\x2d\
\x31\x30\x54\x30\x31\x3a\x34\x37\x3a\x34\x37\x2b\x30\x38\x3a\x30\
\x30\xa6\x3e\x16\x8b\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\
\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x33\x2d\x30\x39\
\x2d\x30\x34\x54\x32\x32\x3a\x30\x32\x3a\x34\x39\x2b\x30\x38\x3a\
\x30\x30\x69\x8f\x59\x74\x00\x00\x00\x43\x74\x45\x58\x74\x73\x6f\
\x66\x74\x77\x61\x72\x65\x00\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\
\x6c\x2f\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2f\x73\x68\
\x61\x72\x65\x2f\x64\x6f\x63\x2f\x49\x6d\x61\x67\x65\x4d\x61\x67\
\x69\x63\x6b\x2d\x37\x2f\x2f\x69\x6e\x64\x65\x78\x2e\x68\x74\x6d\
\x6c\xbd\xb5\x79\x0a\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\
\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\
\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\x00\x18\x74\x45\x58\
\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\
\x65\x69\x67\x68\x74\x00\x35\x31\x32\x8f\x8d\x53\x81\x00\x00\x00\
\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\
\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\x35\x31\x32\x1c\x7c\x03\xdc\
\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\
\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\
\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\
\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x33\x37\x38\x33\x30\
\x33\x33\x36\x39\xc8\x53\x01\x69\x00\x00\x00\x12\x74\x45\x58\x74\
\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\x31\x34\x35\x36\
\x39\x42\xdb\x32\x43\x30\x00\x00\x00\x5f\x74\x45\x58\x74\x54\x68\
\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\
\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\
\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\
\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\
\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\x31\x31\x32\x35\
\x33\x2f\x31\x31\x32\x35\x33\x36\x31\x2e\x70\x6e\x67\xe7\xc0\x76\
\xc1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x24\x39\
\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\x03\x00\x00\x00\xc3\xa6\x24\xc8\
\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\
\x00\x00\x09\x70\x48\x59\x73\x00\x00\x46\xde\x00\x00\x46\xde\x01\
\x8e\x26\x32\x5b\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\
\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\
\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x00\x50\x4c\x54\
\x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x0b\x23\xb7\xe1\x00\x00\x00\xff\x74\x52\x4e\x53\x00\x01\x02\
\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10\x11\x12\
\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20\x21\x22\
\x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30\x31\x32\
\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40\x41\x42\
\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\
\x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60\x61\x62\
\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\
\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80\x81\x82\
\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\
\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\
\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\
\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\
\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\
\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0\xe1\xe2\
\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\
\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xeb\x08\xd9\x35\
\x00\x00\x1f\xa0\x49\x44\x41\x54\x78\xda\xed\x9d\x8b\x5f\x55\x55\
\xda\xc7\xf7\x39\x20\x17\x51\x01\xef\xa1\x26\x2a\x63\x52\xe1\xa5\
\x02\x2f\x11\x2a\x38\xce\x58\x4d\x32\xa6\xe3\xab\xa9\x99\xca\x9b\
\x60\x17\x2f\x78\x19\x41\x2d\x75\x2a\x13\x0d\x2f\x65\x4e\x24\xa2\
\xa5\xe9\x68\x93\x98\x4e\x36\xea\x58\x84\x98\x97\x24\x06\x2f\x0c\
\x2a\xa2\x06\xe2\x25\xc5\x0b\x22\x70\xd8\xef\xdb\x3b\x6f\xef\xe7\
\xad\x9e\xb5\xcf\xda\xe7\xec\xbd\x2e\xfb\x3c\xdf\x3f\xe0\x3c\xbf\
\xb5\x9e\xdf\xd9\x97\xb5\x9f\xf5\x2c\x45\x41\x10\x04\x41\x10\x04\
\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\
\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\
\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\
\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x61\
\x88\x6f\x9b\xae\xb1\xc3\x12\x53\xd3\xd7\x6f\xc9\xfe\x6c\xef\x57\
\x07\xf3\x8f\x9f\x3a\x57\x76\xee\xd4\xf1\xfc\x83\x5f\xed\xfd\x2c\
\x7b\xcb\xfa\xf4\xd4\xc4\x61\xb1\x5d\xdb\xf8\xe2\x44\x59\x0c\xef\
\x0e\xb1\xe3\x16\x7c\x90\x7b\xf6\x96\x4a\xc7\xad\xb3\xb9\x1f\x2c\
\x1c\x1f\xdb\xc1\x1b\xa7\x4e\x72\x6c\xa1\x4f\xcd\x7e\x7f\x6f\x49\
\x9d\xea\x1a\x75\x67\xff\xb1\x26\x65\x70\x07\x1b\x4e\xa4\x84\x04\
\x46\x27\xae\xca\xad\x54\x8d\xe0\xc6\xfe\x77\x93\xa2\x03\x71\x4a\
\xa5\xc1\xbf\x6f\x4a\x76\xa9\x6a\x34\xa5\xdb\x53\xfa\xfa\xe3\xe4\
\x8a\x4e\xf3\xc1\x8b\xf3\x6a\x54\xb3\xa8\xc9\x5b\x3c\xb8\x39\x4e\
\xb2\xa8\xb4\x1b\x9b\x71\x52\x35\x9f\x93\x19\x63\xdb\xe1\x64\x8b\
\x86\x4f\x5c\x5a\xa1\xca\x8e\xc2\xb4\x01\xf8\xb2\x28\x0e\x1d\x92\
\xb2\x6f\xa9\xac\xb9\xb5\x7d\x52\x27\x9c\x7a\xfe\xd8\x63\xd2\x8b\
\x54\x5e\x14\x2f\xef\x6f\xc7\x14\xf0\x7c\xcf\xef\x93\xfe\x9d\xca\
\x97\xf2\x15\xd1\xb8\x4e\xc0\x89\xc8\xb4\x52\x55\x04\x2e\x2c\xed\
\x89\xc9\x60\x4e\xb7\xd7\x4f\xab\xe2\x50\xb2\xa8\x07\xa6\x84\x21\
\x4d\x9e\x3f\xac\x8a\xc6\xd1\x24\x5c\x2c\x64\x44\xef\x35\xb7\x54\
\x11\xb9\xbd\xf6\x51\x4c\x8e\xe9\x34\x9b\x5c\xa8\x8a\xcb\xb1\x29\
\xcd\x30\x45\xa6\xfe\xf9\x37\x54\xab\x62\x53\xbd\xb1\x37\xa6\xc9\
\x2c\xfa\xef\x51\x65\x60\x4f\x2c\xa6\xca\x0c\x1e\xcf\x55\x65\x61\
\xff\x13\x98\x2e\xa3\x97\x7c\x86\x1c\x51\x65\xe2\x9b\xa7\x71\x79\
\xc8\x40\xbc\x46\x1a\xfe\xe4\x57\x55\x71\x2a\x3f\x67\xe7\xa6\x8c\
\x15\x19\x9b\x76\xe6\xe4\x9f\xaa\xa8\x32\x3a\xc0\xf1\x51\x5e\x98\
\x38\x63\x68\x30\xae\xd8\x88\x8c\x5c\x3b\x90\xb5\x60\x46\xe2\xe8\
\xf8\xb8\xa8\xf0\x76\x41\xbf\x4c\x8e\x57\x50\xbb\xf0\xa8\xb8\xf8\
\xd1\x89\x33\x16\x64\x1d\xb8\x66\x44\xc0\xd3\x09\x3e\x98\x3c\xf7\
\xf1\x9b\xe4\xee\x82\x6f\x5d\xf1\xa7\x69\x09\x31\xad\x74\x45\x6d\
\x15\x93\x90\xf6\x69\x71\x9d\x9b\x91\xcf\xbf\x88\x35\x44\x6e\x12\
\x30\xad\xdc\x8d\x04\x5c\xdd\x9f\x39\x33\x3e\xdc\xf5\xff\xa1\x4f\
\x78\xfc\xcc\xcc\xfd\x57\xdd\x50\x70\x71\x46\x63\x4c\xa2\xeb\x04\
\xa6\x5c\x71\xf9\xcf\x97\x95\xf0\xa8\x51\xd5\x5b\xcd\x1f\x9d\x90\
\x75\xde\x65\x13\xce\x0b\xc6\x44\xba\x86\xff\xbc\xeb\xae\xcd\xf9\
\xe5\xcd\x13\x3b\x1b\xae\xa6\xf3\xc4\xcd\x97\x5c\xac\x2a\x5e\xd8\
\x10\x93\xe9\x02\x4f\x9e\x71\x65\xb6\x2b\xb7\x4f\xe9\x66\xd6\x1b\
\x98\xad\xeb\xe4\x6c\x97\x2a\xcd\x4b\xe3\x31\x9d\x7a\x09\xdd\xa6\
\x7f\x9e\xef\xec\x9e\xdd\xcb\xec\x77\x2f\xaf\xa8\x59\x9f\xbb\xf0\
\xca\xb8\xa3\x23\xa6\x54\xd7\xd3\xd7\x6c\xbd\x93\x5c\x9b\xbb\xa0\
\x1f\xab\x3a\x4d\x9f\xbe\xaf\xe6\xe8\xad\x3d\xbf\x33\x17\xab\x48\
\xe9\x19\xa0\xb3\xbc\xdb\xb1\x7b\x0c\xeb\x87\xed\x80\x67\x76\xe9\
\x7c\x49\x2c\xfe\x0d\x26\x96\x8e\x90\x4d\x3a\xbf\xc1\xce\x6c\xcb\
\x45\xe7\x3d\xc9\x05\xfa\x84\xfe\xa5\x2d\x26\xd7\x39\xde\x53\x6f\
\xe8\x99\xd4\x8a\xf4\x87\x39\x8a\xed\xbe\x44\xd7\x32\xc5\xcd\x64\
\xdc\x70\xec\x8c\x68\x3d\xff\xaa\x3b\x9b\x9f\xe4\x3d\xa3\x5e\x83\
\x36\xea\x79\x5c\x29\x8c\xc1\x14\x6b\xd1\x72\x6d\x3d\xfd\x64\xe6\
\x24\x04\x09\x21\xba\xc9\xb8\x7d\x3a\x54\x67\xb5\xc4\x34\x93\xb0\
\x27\xd1\x7f\x84\x29\x9e\x2b\xd2\x8b\x55\xfb\x54\xfa\xdd\x29\xd7\
\x92\x70\x33\x09\x4c\x24\x75\xa9\x6f\xed\xba\x3e\xc2\xa9\xef\x99\
\x49\xfd\x66\x78\x38\x12\x93\x0d\xfc\xfd\xe7\xd0\xbe\x56\xdd\x5d\
\x2d\xe6\xaa\x4a\xfb\x77\x68\x0b\x16\xeb\xe6\xe2\x45\xe0\x17\x77\
\xff\xbf\xd3\x56\x72\x2c\x13\xf7\x65\x2a\x64\xe9\x6d\xca\x51\xec\
\x6e\x85\x29\xff\x09\xfd\xca\x28\x3f\xac\xbc\x21\xf6\x33\x54\xf3\
\xd7\x28\x3f\x16\x94\xf7\xc7\xa4\xeb\xbf\xfc\x7f\x2f\xc1\xa7\xd5\
\xa0\x39\x74\xf5\x03\x8e\x79\x78\x1b\xd0\x79\xf9\xaf\x98\x29\x47\
\x71\x45\xa3\xe9\x17\xf1\x36\x60\xfc\xe5\xff\xfc\x4b\xf2\x94\x57\
\xf9\xbf\x48\x55\x3f\x52\x8e\x1b\x08\x7e\xb8\xfc\xa7\xd2\x5c\xfe\
\x65\x2b\xb0\xf4\x49\xa0\xd9\xbc\xec\x78\x05\x6f\x03\x2d\x3f\xa7\
\xd9\x81\x3f\x46\xbe\x12\x6b\xaf\x31\x17\x68\x76\x11\xb5\xf6\xf0\
\xfc\xf7\xa5\xb8\xfc\xd7\x2e\x69\x24\xe5\xd8\x1a\x2d\xa9\xa5\xa8\
\x1a\x8d\xc3\xcb\xbf\xb3\x25\xff\x08\x69\xc7\x17\x91\x43\x71\x1b\
\x78\xd5\x73\x6f\x03\x34\x97\xff\x4b\x63\x65\xde\x63\x65\x1b\x4b\
\x51\x48\xba\xd7\x53\x6f\x03\x14\x97\x7f\xc7\x2a\xd9\x6b\xaa\x83\
\x57\x39\x9c\xdf\x06\x06\x78\x64\xfe\x13\xea\x3c\xe3\xab\x09\xc5\
\x37\x2e\xc7\x0b\x1e\x98\xff\x54\x8f\xf9\x6e\x4a\xf3\x95\x7b\xa1\
\xc7\x3d\xfe\xad\xf4\xa4\xca\x89\x96\x59\x4e\x47\xfb\x9e\x67\xed\
\x25\xf6\x71\x5a\xf7\x69\xb1\xda\xa9\x18\xa7\xfb\xdb\x3f\xf1\xf3\
\xa0\xfc\x37\x76\xd6\xeb\xc5\x7a\xd5\x93\xde\xc9\x37\x9d\x8c\xf9\
\xcb\x20\x8f\xc9\x7f\x4b\x67\xdd\x3e\xbe\x09\xb3\xe0\xa8\xc3\x9c\
\x8d\xba\x20\xc4\x43\xf2\xdf\xf1\x94\x93\x99\x78\xdb\x9a\x9b\x68\
\x7c\x9d\x3d\xf7\x94\x74\xf6\x88\xfc\x77\x77\xf2\xb1\xb4\x72\x98\
\x65\x87\x3e\xd4\xc9\x76\xe7\xcb\x9e\x50\x2c\xd8\xdf\x49\xc9\xcc\
\x11\x2b\x77\xe1\xef\x78\xc8\xc9\xb3\xcf\x40\xcb\xe7\x7f\xa8\x93\
\xc2\xc9\x95\xd6\xde\x43\xe9\xb3\x4c\x7b\xf8\x35\x23\x2d\x9e\xff\
\x44\xed\x85\xd1\xeb\x43\x2d\xff\x0f\xf8\xbd\xf6\xaa\x50\xfd\x64\
\x4b\x8f\xfe\x15\x27\x4b\xbf\x9e\xb0\x8b\x3e\xf4\x6b\xed\x49\x78\
\xdd\xba\x43\xb7\xaf\xd2\x1e\xfa\x0a\xcf\x68\xab\xd6\xe0\x2d\xed\
\x69\x58\x63\xd5\x1d\xa4\xde\x5b\xb4\x2f\xff\x4f\x7b\xcc\x42\xc8\
\xe0\xef\x35\x67\x22\xdb\x9a\x7f\x04\xdb\x3a\xcd\x51\x1f\xf2\xa4\
\x26\x2a\xed\xf3\x34\xe7\x62\x93\x25\x6b\x44\x16\x6b\x8e\x79\xb9\
\x67\x75\xd5\x6c\x90\xa6\x7d\x33\xb4\xe0\x90\x93\x35\x3f\x88\x27\
\x99\x11\xd2\xff\xde\xae\xdd\xdd\xa5\x5b\xa7\x26\xe6\xcc\xc7\x78\
\xcd\x72\x88\x54\xcb\xe5\x7f\xb4\xd6\x16\xfa\xbb\x46\x2f\xfe\xb5\
\x9b\xb0\xe9\xeb\x12\xa3\x0e\x96\xb9\xfb\x5d\xfe\xae\x39\x51\x86\
\x5f\x95\x07\xdf\xd1\x0a\x9a\x60\xb1\xfc\x0f\xd2\x2a\x90\xbd\x61\
\xec\x06\x89\x18\x53\x4e\x91\xbd\xb2\xe1\xd9\x00\x63\xe7\xe4\x31\
\xad\x15\x81\x3a\x6b\xb5\x16\xec\xa5\xb5\x6b\xb6\xe2\x21\x23\x43\
\xc5\x99\x77\xae\xc4\xa5\xa9\xc6\x6e\x4e\x8a\xd0\x3a\xf5\xf2\x8e\
\x95\x0a\x22\xc2\xb5\x5a\xfe\x9e\x36\xf2\xdb\x6f\xcc\x3e\x53\xcf\
\x81\x28\x9b\x64\xe8\xb3\x6a\xa8\x56\x5f\x91\xeb\x11\x96\xc9\x7f\
\xdb\x73\x1a\xe3\xcc\x37\xb0\x28\xba\xd1\x47\xa6\x1f\x05\x72\xc6\
\xd0\x13\x22\x5b\x68\x7d\x1c\x2a\x0b\xb5\x48\xfe\x83\x8f\x69\x8c\
\x72\x9f\x81\xc7\x2d\x86\xb1\x38\x51\xae\xca\xd0\xcf\x35\x8d\xb4\
\xb6\x46\x14\xb5\xb0\x44\xfe\xfd\xb5\x6e\xca\x5b\x0d\xfc\xf8\xf7\
\xc4\x35\x95\x09\x8b\x8d\xac\xdf\xf4\xd9\xa8\xb5\x38\xd6\xc8\x02\
\xf9\xf7\xde\xae\x31\xc2\xd5\x06\xbe\x5c\x25\xd7\xab\x8c\xd8\x65\
\x64\xfd\xa6\x6d\xb9\x56\xa4\x06\xf2\x1b\x20\x53\x63\x7c\xf3\x0d\
\x8c\x33\x42\x65\xc7\x46\x43\x67\x28\x45\x23\xd2\x06\xe9\x0f\x1f\
\x7b\x43\x63\xf9\x6f\x92\x91\x2f\x9a\x77\x18\x1a\x40\x9d\x63\xe8\
\x1c\x4d\xd0\x58\x14\x4c\x97\x3c\xff\x53\x34\x16\xd8\xfe\x60\x60\
\x9c\xf6\x17\x59\xe6\x5f\xad\x37\xb6\x70\x25\x5e\xc3\xbd\x7f\x94\
\x3a\xff\xc3\xc9\xf7\xe5\xda\xdf\x19\xf9\xa0\x59\xa0\xb2\xe5\x76\
\x77\x43\xe7\x69\xa0\x46\x93\xc9\x31\x12\xe7\xff\x3e\x8d\xcd\x10\
\x63\x8d\x0c\x34\x4b\x65\xcd\x97\xc6\xce\xd4\x08\xf2\x3f\xa5\x4a\
\xde\x05\x21\xad\xff\xe5\x74\x23\x03\x35\xbd\xc6\xdc\x00\xaa\xc1\
\xc7\x03\xbf\x4c\x8e\x74\x22\x40\x56\x03\xfc\x99\x3c\xa8\x34\x43\
\x03\xa5\xb1\xcf\xbf\xfa\xad\xc1\x9f\x07\x5f\x23\x87\x5a\x27\x69\
\xfe\x47\x6a\xec\xfc\x35\xf4\xed\xe6\xde\x6a\x0e\x06\x50\x47\x19\
\x3c\x5d\x19\xe4\x50\xe3\xa4\xcc\x7f\x67\xf2\x03\xc0\x0e\x63\xcb\
\x1e\x57\xf2\xc8\xbf\x5a\x64\xf0\x7c\x79\x91\xcf\x49\xab\x7a\x50\
\xc2\xfc\xfb\x7d\x4b\x1c\xcf\x7e\x83\x0f\x52\x2c\xe5\x62\x00\xd5\
\xe8\x9d\x7c\x7e\xe4\x96\x52\xc7\x25\x7c\x0c\x58\x4d\xde\xfa\x6f\
\x70\xdf\x9f\x07\xf8\xe4\x5f\x7d\xc9\xe8\x29\x0b\x22\x3f\x34\x67\
\x49\x97\x7f\xf2\xca\x6c\x69\x1b\x83\x43\x25\x73\x32\xc0\x4e\xc3\
\x27\x2d\xe4\x2c\x31\xd8\x73\x92\xe5\xff\x57\xc4\xa3\xbf\xae\x74\
\x31\x3a\xd6\x1e\x4e\x06\xa8\x32\xbe\xa7\x47\xe7\xcb\xc4\x95\xa7\
\x07\xe4\x7a\x00\xc8\x27\x0d\xe4\x56\x94\xe1\xab\x0d\x77\x39\x19\
\x40\x35\xa1\xc9\x67\x24\xf1\xc9\xf9\x98\x54\x27\x50\x13\xf7\x80\
\xd5\x18\xbf\xff\x39\x8c\x57\xfe\xd5\xf1\x26\xcc\xdc\xaf\x89\x8b\
\xc2\x99\x32\x7d\x02\x20\x7e\x44\x19\x61\x7c\xb0\x68\x6e\x06\x30\
\xe5\x3b\x0d\x79\x51\xf8\x59\x69\xf2\x1f\x46\x7c\x00\x98\x6a\x42\
\xb4\xa1\xdc\x0c\x60\xce\xa7\xda\xa9\xc4\xc7\x80\xfb\x25\xc9\xbf\
\xef\x51\xd2\x10\xb6\x98\x11\xee\x05\x6e\x06\xd8\x60\xce\xfc\x11\
\xf7\xd0\x16\x4a\xf2\x18\xf0\x0e\xb1\x00\x3c\xd0\x8c\x70\x0b\xb8\
\x19\x60\x8f\x39\xf3\x17\x48\x3c\x6b\x62\x8d\x14\xf9\x27\x5e\x92\
\xef\x3e\xc2\xd6\x6f\xa6\xf3\x8d\x49\x33\xf8\xc8\x5d\x56\xdf\x1f\
\xcc\x20\xa8\x82\xd9\xca\xd9\xbf\x79\x97\x9b\x01\xf2\xcd\x9a\xc3\
\x97\x48\x11\xaf\x36\x17\xdf\x00\x6f\x93\xc4\x7f\xac\xa0\x01\x68\
\xf9\x98\x14\xf2\x7d\xe1\xf3\xff\x30\xa9\x0b\x54\x49\x10\x1a\x80\
\xfe\x32\x5a\x42\x7a\x8f\xee\x23\x78\xfe\xed\x07\x49\x2b\x40\x51\
\x0a\x1a\x80\x9e\x28\xd2\x7a\x50\xbe\xe0\x5d\xc5\x27\x92\x26\x6b\
\x8a\x82\x06\xd0\x03\xb1\x9c\x5a\xec\x36\x72\x2d\x48\xdd\x8f\xb6\
\x29\x68\x00\x7d\x90\xca\x43\x6e\x08\xdd\x52\x7a\x2d\xe9\x13\x70\
\x30\x1a\x40\x27\xc1\xa4\x32\x97\x8f\x04\xce\x7f\x34\x61\x1d\xbb\
\xa6\x97\x82\x06\xd0\x4b\x2f\xd2\x63\x80\xb8\x47\x4c\x79\x93\x2a\
\x5a\x92\x15\x34\x80\x7e\x48\x85\x2e\x27\x85\x6d\xa8\x36\x8d\xa0\
\x78\xbb\x4d\x04\x03\x7c\x46\xdd\x19\x6c\xa1\x18\x06\xb0\x91\xf6\
\x55\xa7\x08\x9a\xff\x36\x84\x62\x86\x73\x4d\x15\x11\x0c\x40\x7f\
\xef\x9c\x28\x86\x01\x94\xa6\x84\xce\x2a\x55\xa1\x62\x1a\x60\x33\
\xbb\xc2\x19\xcf\x30\x80\x12\x47\x08\x9c\x2d\x64\xfe\x07\xb2\xfd\
\x68\xea\x09\x06\x50\x36\x10\x22\x3f\x25\x60\xfe\x7d\xff\x05\x6b\
\xad\xbc\x07\x0d\xe0\x32\xf7\x10\x8e\x57\x39\x2b\x60\x65\xc0\x1c\
\xc2\x2c\xbd\xac\xa0\x01\x5c\x87\xb4\x67\xf4\x4f\xc2\xe5\xbf\xe3\
\x1d\x5e\x6b\xd7\x96\x36\x80\x17\xa1\xbc\xfa\xee\x7d\xa2\x19\x60\
\x07\xe1\xeb\x55\x6f\x05\x0d\xe0\x0e\xbd\x09\x6b\x6b\xbb\x05\xcb\
\x7f\x7f\xc2\x1c\x65\x28\x68\x00\xf7\x20\x6d\x1a\x1e\x24\x96\x01\
\x08\xbb\x73\xae\x36\x43\x03\xb8\x49\xb3\xab\x70\xf0\x5c\xa1\xf2\
\xdf\x8b\x30\x45\x2c\x9a\x9e\x5b\xdc\x00\x4a\x02\x21\x7a\x3f\x91\
\x0c\xf0\x29\xac\x31\xcf\x86\x06\x70\x1b\x5b\x9e\xf8\x4f\x01\xdd\
\x61\x89\x75\x3d\x14\x34\x80\xfb\xf4\x20\xb4\x11\xec\x29\xfc\x22\
\xf0\x72\x05\x0d\x60\x04\xcb\x45\x5f\x10\xee\x02\x17\x82\x96\x07\
\xa2\x01\x0c\x21\xb0\x1c\x8e\xdf\x4d\x14\x03\x64\xc1\xfa\x9e\x51\
\xd0\x00\xc6\xf0\x0c\x1c\x7f\x93\x20\xf9\xef\x00\x9f\x07\xb4\x57\
\x41\x03\x18\xc5\x5e\x30\xbe\x43\x90\xe5\x40\x38\x03\xb5\xe1\x68\
\x00\xc3\x08\x87\xff\x63\x6b\x85\xc8\x7f\x1b\xb8\x4b\x5f\xa6\x82\
\x06\x30\x8e\x4c\xf8\x4f\x16\x2a\x82\x01\xe0\xa3\x90\x1d\x9d\xd1\
\x00\x06\xd2\x19\x7e\xce\x5e\x25\x40\xfe\x5b\xc0\x27\xc2\x6d\x54\
\xd0\x00\x46\x02\x9f\x2c\x53\x2d\xc0\x26\x01\xb8\xc7\x6d\x7d\x04\
\x1a\xc0\x50\x22\xe0\xaf\x82\x4b\xb9\xe7\x3f\x08\xae\x59\xf9\x44\
\x41\x03\x18\xcb\x27\xa0\x84\xdb\xdc\xf7\x8b\x13\x0a\x81\x22\xd1\
\x00\x06\x13\x29\x66\x69\x50\x00\x7c\x26\xe8\x2e\x05\x0d\x60\x34\
\xbb\x40\x0d\xd7\x03\xf9\x1a\x80\xb0\x7b\xe5\x31\x34\x80\xe1\x3c\
\x06\x8b\xe0\x7b\xd0\xbc\x77\x19\x28\xea\x0b\x05\x0d\x60\x3c\x5f\
\x80\x22\x2e\xfb\xf2\x34\xc0\x10\x78\x66\x06\xa2\x01\x4c\x80\xb0\
\xf1\x62\x04\x4f\x03\xfc\x0d\x94\x74\x50\x41\x03\x98\xc1\x41\xae\
\xdf\x5c\x20\xda\x3b\x04\xd8\xb7\xe2\x39\x06\x78\x0a\x5e\x72\xe9\
\xc4\xcf\x00\xf3\x41\x45\x05\x36\x34\x80\x29\xd8\xe0\xed\xf7\xaf\
\x73\xcb\xbf\xd7\x05\x50\xd0\x70\x05\x0d\x60\x0e\x70\x13\xee\x72\
\x6f\x5e\x06\x80\x2f\x49\x45\x76\x34\x80\x49\xd8\x8b\x40\x1d\xf1\
\xbc\x0c\x00\x37\x30\x18\xab\xa0\x01\xcc\x62\x2c\xa8\x63\x07\xa7\
\xfc\xb7\x05\xab\x55\xcb\xbc\xd1\x00\x8c\xd7\x5d\x1c\xed\xf8\x18\
\x60\x2e\x38\x2b\x8b\x15\x34\x80\x79\x2c\x06\x85\xcc\xe3\x63\x80\
\x62\x50\x4c\x04\x1a\xc0\x44\x22\x40\x21\xc5\x5c\xf2\xff\x10\xa8\
\xe5\xa8\x82\x06\x30\x13\xf8\x30\x8e\x87\x78\x18\x60\x11\x28\x65\
\x0a\x1a\xc0\x54\xe0\x16\xb2\x8b\x78\x18\xa0\x04\xdc\x0d\xd6\x0a\
\x0d\x60\x2a\xad\xc0\x27\xef\x12\x0e\x4a\x7a\x8a\xf2\x46\xe2\x59\
\x06\x20\x74\xe2\xe0\xb0\x4f\x70\xa9\x08\xab\x80\x1e\x68\x80\xe1\
\x82\xd4\x06\xda\xce\x43\x3a\x2a\xfd\xd0\x00\x26\xe3\x07\x16\x61\
\x9e\xb7\xb1\xd6\x01\x1f\xd7\xf8\x9e\x82\x06\x30\x9b\xf7\x40\x2d\
\xd1\xac\x65\xac\x00\x65\xc4\xa0\x01\x4c\x27\x06\xd4\xb2\x82\xf5\
\x1d\x00\xdc\xb1\x7c\xc6\x86\x06\x30\x7f\xea\xcf\x80\x9f\x04\x19\
\x7f\x82\x83\x8b\x94\xe7\x2b\x68\x00\xf3\x99\xcf\xbb\x10\xff\x07\
\xe0\xed\x00\x61\x68\x00\x06\x84\x89\xf0\x3d\x60\x3f\xa4\x61\xbf\
\x82\x06\xe0\x36\xf9\x07\x98\x4a\x08\x06\xd7\xa3\x26\xa2\x01\x98\
\x00\xea\x73\x30\xdd\x24\xf6\x07\x70\xab\x6a\x30\x1a\x80\xcd\xdf\
\x0f\xec\xc8\x30\x92\xa5\x04\xb0\x5f\xc1\x56\x05\x0d\xc0\x86\xad\
\x90\x9a\x0f\x58\xbe\x89\x80\x85\x29\x13\xd0\x00\x8c\x98\x00\x6e\
\x11\x62\xf8\x22\x08\x37\x86\xec\xe4\x69\x06\x38\xcc\xcb\x00\x1d\
\x41\x39\x51\xec\x04\xcc\x82\xe2\x97\x2a\x9e\x66\x80\x3d\xbc\x0c\
\xa0\x9c\xe5\xfc\x22\xb8\x0f\x8a\x9f\xc9\x69\x32\x96\x51\xa6\x2b\
\xcb\x70\x03\x6c\xe5\x66\x80\x35\x90\x9c\x3c\x66\xe1\x7d\xc0\xd3\
\x41\xc6\x70\x9a\x8c\x71\x94\xe9\x9a\x6e\xb8\x01\x32\xb8\x19\x00\
\xec\x1c\x59\xcb\xec\x20\x21\xb8\x39\x7c\x5b\x4e\x93\x11\x41\x99\
\xae\x58\xda\x1f\xb4\xe7\x52\xfe\x62\x1a\x37\x03\x84\x80\x7a\xfa\
\xb1\x0a\x0f\x9e\x10\xfa\x2f\x5e\x93\xe1\x55\x46\x95\xad\x4a\xea\
\x56\x1a\xc9\x94\xf9\xe7\x79\x82\xe7\x09\xae\x7a\x3e\x86\xa2\xaf\
\xe6\x36\x19\xbf\xa3\xca\xd6\x38\xda\x9f\xeb\x72\x87\xd6\x00\x49\
\xfc\x0c\xf0\x36\xa4\x67\x27\xab\xe8\x15\x82\x14\x83\xfd\xc8\x3a\
\x8a\x64\x6d\xa7\xbe\xa0\x1c\xa0\xcd\x3f\xd3\x46\x38\x3f\xe3\x69\
\x48\xcf\x35\x46\x2b\x01\xf0\xd7\xa8\x96\xfc\x66\xa3\xc1\xfc\x5a\
\x27\xa9\x72\x2c\xa1\xae\x55\x9b\x41\x9d\xff\x3a\x8e\xa7\x37\x36\
\x03\xdb\x06\x3e\xc8\x26\xf8\xb3\x50\xec\x42\x85\x27\x8f\x6c\x29\
\xd1\xc8\xd4\xb9\xbf\xd2\xff\x57\xef\xaf\xa6\x36\xc0\x51\x9e\x23\
\x06\x37\x88\x3c\xcf\x26\x36\x58\x94\xb6\x5c\xe1\x4c\xd3\x6e\x84\
\xc3\xe0\xbb\xb5\xd0\xf3\x44\x79\x90\x3a\xff\x1c\x9f\x7a\xfe\x9b\
\x25\x90\xa2\xf5\x6c\x62\x1f\x17\x6a\x8f\xba\xb1\xfc\x91\x3e\xff\
\xf4\x8f\x95\x66\xf0\x04\x58\x92\xc7\xe6\xaf\x06\xdd\x7e\x1c\xc1\
\x96\xc8\xff\x03\x77\x75\x18\xe0\x7e\x9e\x4a\x1b\x83\x8f\x3d\xad\
\x59\x84\x8e\x85\x22\x1f\xb1\x44\xfe\xbd\x0f\xeb\xc8\x3f\xdf\xa7\
\x1e\x05\x3c\x4c\xee\x71\x16\x91\x27\x0b\xd1\x15\xc0\x14\x52\x75\
\xe4\x5f\x9d\xc6\x57\xeb\x42\x48\xd3\x2c\x16\x91\xdf\xe7\x66\x3d\
\xb3\x89\xd0\x73\x03\xa8\x6d\xc9\x57\x2c\x78\x21\xfe\x90\x45\xe4\
\x43\xd0\x6c\x34\xb6\xc2\x0d\xe0\x1b\x3d\x17\x80\x6d\x9c\xd5\xfa\
\x41\xef\xab\xff\x64\x10\xd8\x5e\x05\x04\x3e\x61\x85\x0b\xc0\x5c\
\x3d\xf9\x57\x07\xf3\x96\x0b\xad\x04\xd4\xf8\x98\x1f\xf7\x3e\x68\
\x36\x3e\xb1\x40\xfe\xbb\xd5\xe8\xc9\x7f\x69\x03\xde\x7a\x3f\x82\
\x64\x31\x38\x4b\x72\xa8\x30\x1d\x2a\x8c\xa5\x41\xbe\xae\x0b\xc0\
\x28\xee\x82\x5f\xe5\x24\x0b\xdc\x98\xf4\x9c\xfc\x06\x78\x55\x57\
\xfe\x0f\xdb\xb8\x0b\x1e\x01\xe9\x7a\xd3\xfc\xb8\xe0\xd9\x35\x7d\
\xa4\xcf\x7f\x8f\x5a\x5d\x06\xe8\xc7\x5f\x31\xd8\xa4\xeb\x33\xf3\
\xe3\x82\x7b\x53\x9b\xc9\x9e\x7f\x9f\x02\x55\xa6\x57\x80\x1f\x68\
\x04\x09\x2b\x33\x3d\xac\x2f\xb4\x10\x7c\x45\xfa\x0b\xc0\x42\x5d\
\xf9\xaf\xe9\x22\x82\x66\xb0\x55\x77\x13\x2e\x2f\x01\xb9\xb2\xe7\
\xff\x11\x7d\x37\x80\xf9\x42\x88\xde\xc3\xe5\x35\xe0\x37\x50\xd4\
\x35\x92\xe7\xdf\xb7\x50\x57\xfe\xff\xe9\x23\x84\xea\xb7\xb9\x2c\
\x4f\x80\x25\xd3\x33\x24\x37\xc0\x6b\xba\xf2\x5f\x17\x29\x86\xea\
\x97\x20\x71\x93\xcd\x8e\xba\x48\xc8\x55\x31\xf7\x88\xaa\xd3\x65\
\x80\x37\x05\x91\x0d\x5e\x8c\x97\x99\x1d\x75\x33\x14\xb5\x8b\xd4\
\xf9\xf7\x3d\xae\x2b\xff\x45\x7e\x82\xe8\x0e\x85\xd4\x65\x9b\x1d\
\x15\x2a\x99\xaa\x6d\x20\xb5\x01\x16\xe9\xca\x7f\x7d\xb4\x28\xba\
\xed\x50\xfd\x7a\x81\xd9\x51\x2f\x8b\xb4\x27\xc4\x10\x7a\xe9\xbb\
\x01\x2c\x17\x47\x39\xb4\x76\x71\x93\xc7\xea\x43\xb6\xcc\xf9\xf7\
\x3b\xa9\x2b\xff\x67\x02\xc4\x91\x0e\xde\x8e\x4d\xee\x14\x13\x61\
\xb9\x72\xa0\x34\x5d\xf9\x57\xe3\x04\x92\xbe\x80\x43\xbb\xb8\x27\
\x05\x6a\x0d\x62\x08\x7d\x1c\xba\xf2\xff\x67\x91\xb4\x8f\x82\x14\
\x0e\x35\x37\xe6\x38\xc1\xb6\x48\xb9\x8b\x7f\x91\xae\xfc\x9f\x6f\
\x22\x92\xf8\x48\x0e\x1b\x16\xa7\x43\x31\x5b\xc9\x6b\x80\xb7\xf4\
\xdd\x00\xc4\x2a\x7d\x0c\x84\x24\xce\xe1\xf0\xca\xe4\x2d\x6d\xfe\
\xa3\xf5\xdd\x00\xd6\x09\x26\xbf\x8e\xfd\x4a\x50\x06\x10\xf2\x8e\
\xb4\xf9\x6f\x58\xac\x2b\xff\xe5\x4d\x05\xd3\x7f\x9d\x7d\xb7\x38\
\xa8\x1c\xe4\x92\xb4\x06\x58\xa6\xef\x06\x30\x44\x34\xfd\xe7\xd9\
\x97\x84\xe4\x00\x21\x4f\xcb\x9a\xff\xbe\xf5\xba\xf2\xbf\x59\xb8\
\x01\x40\x6b\xd8\x87\xcc\x0d\x79\x42\xb4\x6d\xd2\x6e\x10\x70\x5a\
\x57\xfe\xaf\xb4\x14\x6e\x04\x5f\x03\x32\x4d\x3e\x40\xec\x12\x10\
\xf2\x4b\x49\x0d\xb0\x52\xdf\x0d\x60\xa4\x78\x23\x80\x4a\x42\x6e\
\x98\x1a\xd1\x06\x3d\x77\xee\x90\x33\xff\xfd\xf5\xdd\x00\x44\x5c\
\xef\x06\x0b\x74\x4d\xad\x56\x09\x76\xaf\x05\xa7\x48\x34\x2a\xd1\
\x95\xff\x6b\x21\x02\x8e\x61\x3d\xa4\xf4\x1e\x33\x23\x76\x10\x7e\
\x79\x94\x9a\x55\xfa\x6e\x00\xe3\x44\x1c\xc3\x3b\x90\xd2\x70\x33\
\x23\x76\x81\x22\x2e\x91\x31\xff\x71\xfa\x6e\x00\xbb\x84\x1c\x04\
\xb8\x2c\xd7\xdd\xcc\x88\xdd\xa0\x88\xaf\x48\x98\xff\xc6\x67\x75\
\xe5\xff\x66\x7b\x21\x47\x01\xf6\x33\x30\xf5\x14\xd9\x48\x01\x3b\
\x25\xb8\xc4\x6a\x7d\x37\x80\x24\x31\x47\x31\x99\xf9\xa7\x39\xf0\
\xbc\xd0\xff\x94\x2f\xff\x03\xf5\xe5\x7f\x9f\x4d\xcc\x61\x8c\x87\
\xc4\x0e\x30\xf5\xce\x09\x45\xfc\x0f\xe9\xf2\xdf\xe4\x9c\xae\xfc\
\x57\x85\x09\x3a\x0e\xf0\xe8\xa6\x27\xcc\x8c\x38\x88\x79\x44\x53\
\xc8\xd0\x77\x01\x98\x2a\xea\x38\xc0\x74\xfc\xde\xcc\x88\xf1\x50\
\xc4\x18\xd9\xf2\xff\x5b\x7d\xf9\xcf\xb3\x8b\x3a\x90\x68\xe6\x17\
\x64\xf0\xf0\xfa\x1e\x92\xe5\x3f\xf0\xbc\xae\xfc\x57\x87\x0b\x3b\
\x12\xf0\xec\xa6\x67\xcd\x8c\x38\x1a\x8a\xd8\x49\x32\x03\x64\xea\
\xbb\x00\xcc\x16\x77\x24\x9d\x20\xbd\x09\x66\x46\x9c\x20\x58\x9f\
\x70\x57\x78\x42\x5f\xfe\xbf\x11\xb8\xde\xa9\x25\x24\xf8\x05\x34\
\x80\x26\x41\xdf\xe9\x6b\x05\xd0\x4d\x41\x03\x58\xea\x16\x90\xa5\
\xef\x02\x30\x5f\xe4\xb1\xb0\xbf\x05\xc8\xff\x10\xa8\x73\x09\xa8\
\xd0\x47\xe4\xc1\xb0\x7f\x08\x94\xfe\x35\xd0\xae\xaf\x17\x90\x28\
\xad\x00\x84\x79\x0d\x94\x7e\x21\x68\xbc\xbe\x0b\xc0\x9b\x62\x8f\
\x86\xfd\x42\x90\xec\x4b\xc1\x01\x65\xba\xf2\x2f\x4c\x2b\x00\x02\
\xec\x97\x82\x65\xff\x18\x34\x4f\xd2\x56\x00\x7a\xae\x67\xa6\x7e\
\x0c\x92\xfc\x73\x70\xd0\x2d\x59\x5b\x01\xc0\xb0\xff\x1c\x2c\x79\
\x41\xc8\x04\x69\x5b\x01\xc0\xb0\x2f\x08\x91\xbc\x24\x6c\x9f\xb4\
\xad\x00\x60\xd8\x97\x84\xc9\x5d\x14\x7a\xaf\xae\x3a\x40\x09\x86\
\xc5\xbe\x28\x54\xee\xb2\xf0\x59\xf2\xb6\x02\x80\x61\x5f\x16\x2e\
\xf7\xc6\x10\x5d\xfd\x40\x65\x38\x05\x89\xfd\xc6\x10\xa9\xb7\x86\
\xb5\x93\xb9\x15\x00\x08\xfb\xad\x61\x52\x6f\x0e\x1d\xac\x23\xff\
\x17\x9b\xca\x30\x22\x0e\x9b\x43\x65\xde\x1e\xae\xe7\x4c\x90\x21\
\x52\x8c\x88\xc3\xf6\x70\x99\x1b\x44\x6c\x97\xb9\x15\x00\x08\x87\
\x06\x11\x32\xb7\x88\xa1\xaf\x04\xb9\x22\x49\x8d\x0b\x87\x16\x31\
\x12\x37\x89\x6a\x25\x75\x2b\x00\x10\x0e\x4d\xa2\x24\x6e\x13\xd7\
\x5f\xea\x56\x00\x10\x3c\xda\xc4\x49\xdc\x28\x72\x08\x6d\xfe\xaf\
\x87\x48\x62\x00\x1e\x8d\x22\x25\x6e\x15\xfb\x9c\xd4\xad\x00\x20\
\x78\xb4\x8a\x95\xb8\x59\xf4\x64\xca\xfc\x7f\x2b\x4b\xfe\xb9\x34\
\x8b\x96\xb8\x5d\xfc\x2b\xb4\x5b\x81\xa5\x31\x00\x8f\x76\xf1\x12\
\x1f\x18\xf1\x96\xe5\x0c\xc0\xe3\xc0\x08\x89\x8f\x8c\x59\x63\x35\
\x03\xf0\x39\x32\x46\xde\x43\xa3\x36\x5a\xcd\x00\x7c\x0e\x8d\x92\
\xf7\xd8\xb8\x8f\xac\x66\x00\x3e\xc7\xc6\xc9\x7b\x70\xa4\xe5\x0c\
\xc0\xe7\xe0\x48\x79\x8f\x8e\xb5\x9c\x01\xf8\x1c\x1d\x2b\xef\xe1\
\xd1\x96\x33\x00\x9f\xc3\xa3\xe5\x3d\x3e\xde\x72\x06\xe0\x73\x7c\
\xbc\x72\x06\x0a\xdb\x0c\x0d\xc0\x1c\x70\x4d\xae\xcc\xfc\xb8\x60\
\x21\x62\x1f\x34\x00\x73\x1e\x52\xd9\x97\x83\xfc\xc0\x7c\x28\xee\
\x73\x68\x00\xe6\x8c\xe0\xb4\x9d\x79\x28\x14\x77\x11\x1a\x80\x39\
\x60\x89\xe3\x28\xf3\xe3\x82\xaf\x01\x9f\xa0\x01\xc4\x18\x0f\x83\
\x8e\x46\xf6\x2a\x20\xee\x09\x34\x00\x73\x8e\x42\x2d\xad\x58\x74\
\xb4\x39\x04\x7d\x0e\x6a\x8c\x06\x60\x8c\x5f\x35\xa0\xfd\x9f\x2c\
\x22\xbf\x2f\xe9\x46\x2a\x8b\x19\x20\x16\xd2\xfe\x21\x8b\xc8\x93\
\x25\x2d\x0a\xb2\x98\x01\x16\x42\xda\x67\x71\xb3\xde\x11\x34\x00\
\x63\xf2\xb8\x5d\x88\x9b\x42\x8b\xc1\x8e\x60\x34\x00\x53\x1a\xd7\
\x42\xda\x5b\x33\x89\x0d\xed\x48\x53\xe3\xd1\x00\x4c\x01\x3b\x1e\
\x9f\x61\x13\xfb\x3d\x29\x1b\x2a\x59\xcc\x00\x4b\x20\xe9\xeb\xd9\
\xc4\x7e\x16\xec\xa9\x8a\x06\xe0\xbe\x0a\xa0\x3e\xcf\x26\x76\x98\
\x2a\x65\xcf\x70\x4b\x19\xa0\x19\xd8\xee\xe8\x41\x46\xd1\x2b\xa0\
\xe0\xc3\xd1\x00\x0c\x79\x1a\x52\x7e\x8d\xd5\xd9\x36\x1f\x43\xd1\
\x57\xa3\x01\x18\x02\x96\x83\xed\x64\x15\x7d\x9a\x2a\xe3\xee\x10\
\x4b\x19\x00\x6a\xd5\xa3\xa6\xb0\x8a\xde\x0b\x9c\xb8\xb6\x68\x00\
\x66\x84\x80\xca\xfb\xb1\x0a\xef\x03\x6d\x49\x51\xc7\xa0\x01\x98\
\xf1\x0c\x24\xbc\xb6\x21\xb3\xf8\x60\xcb\xd5\x4c\x34\x00\x33\xc0\
\x6d\x6e\x79\xec\xe2\x83\x2d\x37\x4b\xd1\x00\xcc\x00\xcf\x3e\x9f\
\xc7\x2e\x3e\x78\x56\x8d\xe8\x87\x47\x59\xc8\x00\x1d\x41\xe1\x51\
\xec\x04\xd8\xca\x24\x6c\x14\x62\x21\x03\x80\x6d\xef\x2f\xb3\x3c\
\xe1\x36\x13\x52\xb0\x15\x0d\xc0\x88\xad\x2a\xfb\xfe\x70\x3f\x05\
\x3c\xac\xa6\x3a\x18\x0d\xc0\x84\xe0\x6a\xee\xbd\xed\x82\xa1\x0e\
\x75\xea\x44\x34\x00\x13\xc0\x1d\xda\x8e\xe6\x4c\x35\xec\x87\x34\
\xec\x47\x03\xf0\x9b\xfc\x03\x6c\x35\xcc\x01\xe7\x2e\x0c\x0d\xc0\
\x00\xf8\x6b\xec\x3c\xb6\x22\xc0\x1e\x85\x62\x1f\xb4\x6b\x19\x03\
\x80\x9b\xf3\x54\xc6\x67\x9c\xda\xca\xc1\x92\x24\x1b\x1a\xc0\xfc\
\xa9\x07\xf7\x67\x97\xdb\x19\xcb\x58\x01\x4e\x5e\x0c\x1a\xc0\x74\
\x62\x40\xd5\x2b\x58\xcb\x00\xcf\x10\x55\xdf\x43\x03\x98\x0e\x58\
\x92\xa9\x32\x3f\xe4\xd4\x06\x1d\x56\xa0\x56\xfa\xa1\x01\x4c\xc6\
\xaf\x12\x3c\xe3\x8c\xfd\xcd\x77\xa9\x2a\x59\x61\x98\x45\x0c\x30\
\x1c\x14\xbd\x94\xbd\x90\x9e\xa0\x90\x1d\x68\x00\x93\xd9\x01\x8a\
\xee\xc9\x41\x49\x09\x24\xa4\xae\x15\x1a\xc0\x54\x5a\x81\x6b\xb0\
\x25\x3c\xa4\x80\x3d\x43\xd5\x29\x68\x00\x53\x99\xa2\x0a\xd3\xa1\
\x05\x6c\x52\x24\xf0\x21\x82\xd6\x30\x00\xb8\x21\x44\x7d\x88\x8b\
\x96\x62\x50\x4b\x04\x1a\xc0\x44\xc0\x03\x3b\xd4\x62\x3e\x62\xe6\
\xaa\x52\x75\x0a\xb0\x84\x01\x16\x8b\xf0\x1d\xe0\x47\xda\x82\xcf\
\x23\x65\xde\x68\x00\xd3\xf0\x06\x4b\xb1\x1c\xed\x38\xc9\x81\x8f\
\xe2\x1c\x8b\x06\x30\x8d\xb1\x62\xbd\x7b\x3f\x05\xca\x29\xb2\xa3\
\x01\x4c\xc2\x5e\xa4\x0a\xd5\x9b\xc1\xeb\x82\x4c\xab\x81\x16\x30\
\x00\xbc\x0a\x58\xce\xef\xa6\x0b\x7f\x99\x2e\xb0\xa1\x01\x4c\xc1\
\x56\x00\x0a\x7e\x9d\x9f\xa2\xf6\x0e\x50\xd1\x53\x68\x00\x86\xb7\
\xdc\x7a\x9e\xfb\x31\xfe\x06\x4a\x3a\x28\xe4\xf4\x7d\x40\x69\x80\
\xdd\xc2\x1a\xe0\x20\xa8\x77\x2f\x4f\x49\x84\xf3\x78\x07\x8a\x38\
\x7d\x29\x94\x06\x58\x21\x6a\xfe\x07\xc2\x7a\x47\x88\xf7\x5e\xaa\
\x7e\x21\xe2\xfc\xfd\x96\xd2\x00\xcf\x8a\x6a\x80\x2f\x40\xb9\x97\
\x7d\xb9\x8a\x4a\x86\x27\x51\xc4\xf3\xc4\x9b\xdd\xa1\xca\xbf\xe3\
\x57\x82\xe6\xff\x31\x58\x6f\x2a\x5f\x55\x01\x57\x40\x55\xbb\x44\
\x9c\xc1\xa9\x54\x06\x78\x53\xd4\x0b\xc0\x2e\x50\xee\xf5\x40\xce\
\xb2\xe0\x0d\x02\xac\x8b\x94\xe9\x96\x51\xbe\xa4\xc8\x7f\xa1\xaf\
\xa0\xf9\x87\x0b\xf1\xd5\x3f\xf1\xd6\x15\x04\x96\xa8\x89\x79\x82\
\x44\xf0\x87\x4e\xf3\xbf\xe3\x1e\x51\x2f\x00\xe0\x59\x4d\xea\xed\
\xe6\xdc\x85\xbd\x06\xbf\x9c\x8a\xf9\x55\xf8\xe9\xbc\x2a\x8d\xec\
\xdf\x3d\x3c\x5e\xd8\x57\xc0\x88\x7a\x51\x6a\x01\x7f\x4e\x8b\xdb\
\xa0\xb2\x8d\x82\x4e\xa4\x77\xd7\xdf\x92\xe8\x21\xf2\x21\xe8\xf0\
\xd1\xd7\xd5\x21\x02\x48\x7b\x0b\x7e\x98\xee\xac\x20\xc6\xd1\x19\
\x5e\x73\x5d\x25\x82\xb6\x36\xe0\x6e\x75\xe1\x7b\x46\xc9\x05\xd8\
\x91\x43\xad\x0d\x15\x42\xdc\xbb\xb0\xb8\x70\x4c\x9b\x61\x84\x83\
\xa7\x03\xa8\x6b\xc5\x50\xd7\xa1\x56\xbc\x35\x6a\x8b\xb1\x17\xbe\
\xcd\xde\x27\x88\xbc\x2c\xf8\xa1\xfa\x19\x4c\x9c\x41\x8c\x80\x27\
\x78\x93\x28\xfa\xba\xc0\x4f\x28\xe5\x81\x98\x3a\x43\x68\x02\x7f\
\x71\x61\x71\x4a\x24\x25\x9b\x61\x81\xcb\x31\x77\x86\x90\x0e\x4f\
\x6f\xb6\x38\x0a\xe1\xc6\x91\x6a\x5d\x0f\x4c\x9e\x01\x74\xab\x53\
\x85\xd9\x0f\x48\xe2\x53\x58\x62\x9e\x0d\xd3\xe7\x36\xb6\x5c\x09\
\x0a\x57\x7a\x11\x16\x57\x13\x30\x7f\x6e\xf3\x1c\x61\x6e\xfb\x09\
\xa5\x72\x0f\x2c\xf2\x6a\x33\x4c\xa0\x9b\x04\x5f\x82\xa7\x36\x57\
\x2c\x99\xfd\x09\x36\xcd\xc0\x0c\xba\xc9\x2a\xc2\xcc\x0e\x12\x4c\
\x27\xdc\xb7\x40\xad\xef\x8d\x29\x74\x8b\x48\x87\x24\xa5\xab\x1d\
\x09\x05\x57\xf9\x5e\x98\x44\x37\xb0\x1f\x22\x7c\xb9\xbe\x4f\x38\
\xa9\x84\xd2\x20\xf5\x65\xcc\xa2\x1b\x24\xaa\x82\x16\x02\xfd\x12\
\xdf\x7f\xc1\x52\x2b\x45\xaa\xb1\x09\x8c\x9b\x95\x4e\x26\xf5\x37\
\x4d\x05\x9b\xd4\x16\xdf\xc3\x93\x7a\xb6\xa1\x80\x66\x25\x94\xad\
\xab\x1b\x84\x51\xd8\xf4\xc3\x7a\x67\x25\x61\x7f\x6d\x2d\xd4\x9c\
\x66\x12\x64\x8a\xb9\xf7\x8a\xb0\x20\xac\xc6\x09\xa2\xef\xd7\xe5\
\x14\x45\xa1\x57\x45\x3a\x06\x3d\xba\x5e\xf8\x45\xe0\xff\x4f\x9b\
\x9b\xb0\xdc\x73\x62\x5c\x58\xdb\x5c\xa3\x2a\x0b\xaf\x12\xa7\x94\
\x29\xf0\x0c\x41\x62\xa8\xa0\x4f\x2c\xd3\x08\x73\xba\x5d\x88\x15\
\xe1\x1d\x94\x3b\x83\xf2\x84\x79\x6f\xd9\x4a\x50\x98\x22\x68\xfe\
\x15\xef\x02\x82\xe2\x64\x01\xc4\x3d\xac\xd2\xf2\xb8\x20\xd3\xf9\
\x22\x41\xdf\x49\x1f\x61\x5f\x5a\x48\xf7\xac\x9a\x5e\xe2\xbe\x50\
\xfd\x92\x39\x62\x4c\xe6\x23\x77\x09\xfa\x06\x08\xfc\xda\xba\x96\
\xa0\xb9\x94\xff\x79\x52\x6b\xa8\x0d\x20\xc6\xa6\x96\xc0\xd3\x04\
\x79\x1f\x89\xbc\x6e\x41\x7a\x6f\x55\xb7\x71\x97\xf6\x0f\x6a\x03\
\x88\xd1\xeb\x72\x0b\x41\xdd\x8d\x10\x91\x0d\x00\x1f\x68\x25\x44\
\x0b\xd9\x7d\xd4\x06\xc8\x17\xf9\x01\x40\x9d\x2c\x74\xfe\x15\xfb\
\x41\x82\xee\x9a\x28\x34\x80\x9e\x47\x56\xd2\x03\x80\xf0\xdf\x56\
\x1e\x26\x7c\xbd\x52\x4b\x82\xd0\x00\xee\x3f\x00\xd4\xf7\x51\x44\
\xe7\x6d\xd2\xbc\x7e\x8c\x06\x70\xfb\x01\x40\x7d\x5f\xf8\xfc\x2b\
\x41\x15\x24\xf1\x2f\xa1\x01\x28\x79\x81\xb8\x50\xdd\x5c\x7c\x03\
\x28\x43\x89\xbb\xaf\x1f\x41\x03\xb8\xf7\x00\xa0\x8e\x52\x64\xe0\
\x1d\x92\xfc\xd3\x81\x68\x00\x77\x1e\x00\xd4\x35\x52\xe4\x5f\xf1\
\x3d\x4a\x1a\xc0\x16\x34\x00\x05\x7f\x21\xb6\xaf\x69\x28\x87\x01\
\x94\xb0\x1b\xa4\x21\x4c\x45\x03\x38\x85\xd8\xcb\xea\xf6\xfd\x8a\
\x2c\x0c\x27\x8d\xa1\x7e\x04\x1a\xc0\x09\x23\xea\xa5\x6b\x60\x08\
\x40\xaa\x65\x56\x6b\x06\xa2\x01\x34\xf9\x75\x0d\x49\x96\x54\x1d\
\x37\xfc\xf2\x49\xc3\xb8\x15\x85\x06\xd0\x20\xf2\x26\x49\xd5\xb1\
\x86\x32\x19\x40\xf9\x15\xf1\x31\xe0\x4a\x17\x34\x00\x91\xce\x97\
\x89\x0f\x00\x0f\x28\x72\x31\x82\x38\xbf\xa5\x6d\xd0\x00\x04\x42\
\xce\x12\x45\x3d\xa7\xc8\xc6\x6a\x72\x33\xce\x60\x34\x00\x48\x50\
\x01\x51\x53\x96\x74\xf9\x57\xfc\xbe\x25\x8e\x66\x7f\x43\x34\x00\
\x34\x63\x39\x44\x49\xc7\x03\xe4\x33\x80\xd2\xf9\x26\xb9\x21\xab\
\x37\x1a\xe0\x17\x78\x6d\x23\x57\x2a\x3f\xa8\xc8\xc8\x48\xf2\x1c\
\x67\xd9\xd0\x00\x3f\x27\x83\xac\x68\x9c\x22\x27\x7f\x26\x0f\x29\
\x0d\x0d\xf0\x33\x5e\x23\x0b\x5a\x27\x69\xfe\x15\x7f\xf2\x43\x8d\
\x3a\x1d\x0d\xf0\x13\x5e\x26\xeb\x39\x11\x20\xab\x01\x94\xfb\xc8\
\x8f\x01\xcc\x0f\x18\x15\xdb\x00\xe4\x05\x60\xb5\x2a\x42\x91\x97\
\xe1\xe4\x71\xd5\xfe\x0e\x0d\xf0\x7f\x0c\xac\x21\xcb\x19\xa3\xc8\
\xcc\x14\x8d\xee\xfc\x7f\x40\x03\xfc\x2f\xf1\x1a\xc7\x19\xfd\x51\
\x91\x9b\x37\x34\x8e\x67\x9a\x84\x06\xf8\x1f\x26\xd4\x91\xc5\xa4\
\x2b\xb2\x93\xa9\x31\xd5\xf3\xd1\x00\x8a\xf6\x81\x86\x1b\xe4\xef\
\xb4\xe8\xbd\x5d\x63\x7c\xab\xed\x1e\x6f\x00\xdb\x72\x0d\x29\xbb\
\x1a\x28\xf2\xe3\x9f\xab\x31\xc2\xad\xbe\x1e\x6e\x00\x9f\x8d\x1a\
\x4a\x0e\x35\x52\xac\x40\xf0\x31\x8d\x31\xee\x0b\xf4\x68\x03\x34\
\xfa\x5c\x43\x48\x51\x0b\xc5\x1a\xb4\x3d\xa7\x35\xdd\xad\x3d\xd8\
\x00\x2d\x0e\x69\xe8\x28\x0b\x55\xac\x42\xf8\x15\x8d\x71\x9e\x0e\
\xf3\x58\x03\x84\x16\x69\xc8\xb8\x1e\xa1\x58\x87\x5e\xb7\x35\x46\
\x5a\xf1\x10\x0b\x09\xbb\xa9\x0d\x70\x98\xd5\xac\x44\x7c\xa7\xa1\
\xe2\x4e\x8c\x62\x25\x06\xd5\x6a\x8c\xf5\x46\x2c\x03\x05\xcb\xa8\
\x0d\xb0\x9e\xd1\x9c\x3c\xa6\xd5\xb5\xaa\x2e\x5e\xb1\x16\xa3\xb5\
\x5a\xf4\xdd\x1d\x66\xbe\x80\x51\xd4\x06\x60\xb4\x03\x7f\xb0\xe6\
\x69\xe6\xd6\x6b\xb4\x9f\xac\x35\x5c\x47\x92\xe9\xf1\x3b\x38\x68\
\x0d\xc0\xe6\xe0\xeb\xf1\x75\x5a\x1a\x52\x15\xeb\xb1\x58\x73\xd6\
\x97\x9b\xde\xfa\xea\x4d\xca\xfc\x33\xa9\xbf\x6f\x90\xa6\xa9\x61\
\x85\x05\xf3\xaf\xd8\xd6\x69\x8e\xf9\x50\x47\x93\xe3\xfb\x9d\xa0\
\xca\xff\x39\x16\x0b\x13\xed\xf3\x34\x35\x6c\xb2\x5b\xd1\x00\x8a\
\xf7\x16\xcd\x51\x5f\x7f\xda\xe4\xf8\xf7\xd2\xbc\x08\xe4\xb2\x78\
\x29\x1d\xfc\xbd\xa6\x86\x6c\x1f\xc5\x9a\xd8\x57\x69\x4f\xfe\x0a\
\x93\x07\x6e\x9b\x54\xa8\x79\xe3\x55\x1d\x27\xa7\x33\xf8\xef\x35\
\x78\x4b\x7b\x1a\xd6\x78\x2b\x96\xe5\x15\x27\x6f\xe0\x66\xdf\x06\
\x94\x86\xbd\xe3\xc9\x3c\xd6\x98\xc9\xea\xcf\xd7\xda\x93\xf0\xba\
\x62\x65\x12\xb5\x9f\xc5\xaf\x0f\x55\xac\xce\xef\xb5\x7b\x56\xd7\
\x4f\xb6\xf8\xf8\x87\x56\x6b\xfb\x7f\xa5\xaf\xa5\x87\xef\xe3\x64\
\x3d\xaa\x66\xa4\xe5\xff\x01\xfd\x2b\xb5\xa7\xe0\x48\x27\x0b\x0f\
\xbe\xe3\x21\xed\xc1\xdf\x1c\xa8\x58\x9f\xee\x17\xb5\x27\xa1\x72\
\x98\x65\x87\x3e\xf4\xba\xf6\xd0\x2f\x47\x2a\x9e\x40\xc7\x53\x4e\
\x5e\xc5\xde\xb6\xe6\x6d\xc0\x77\xa5\x93\x71\x97\x74\x56\x3c\x83\
\x96\x47\x9c\xcc\xc4\x37\x61\x16\x1c\x75\x98\xb3\x51\x17\x84\x28\
\x9e\x42\xe3\x3d\x4e\xe6\xe2\x66\xb2\xd5\xde\x85\xbd\x93\x6f\x3a\
\x19\xf3\x97\x41\x8a\xe7\xe0\xb3\xc9\xd9\x8a\x5c\xa1\xb5\x3e\x87\
\xc7\x14\x3a\x3d\xa5\xc0\x4f\xf1\x24\xec\x2b\x9d\x2e\xca\x66\xb5\
\xb4\xce\x3d\x2f\xcb\xe9\x68\xdf\xf3\xb8\x13\x56\x53\x9d\xce\xc9\
\xb5\x24\x6b\x7c\x13\xb1\x27\x39\x3f\xaf\x6c\xa1\xe2\x79\x24\xd4\
\x39\x2f\xce\xb2\xc2\x6b\x51\xe4\x61\xa7\xe3\x74\xbc\xa0\x78\x22\
\x7d\xcb\x9c\xcf\xcc\xaa\x60\xc9\x07\x19\xbc\xca\x79\x21\xca\xc5\
\x01\x8a\x67\xd2\xf2\x73\xe7\x9f\x67\x2f\x8d\x95\x79\x73\x94\x6d\
\xec\x25\xe7\x43\xdc\xdb\x5a\xf1\x54\xec\xa9\xce\x6f\x03\x6a\x8e\
\xbc\xe5\xd1\x11\x39\xce\x87\xe7\x78\xd5\xae\x78\x30\x14\xb7\x01\
\xb5\x76\x89\x9c\x3b\xa4\x1a\x2d\xa9\x75\x3e\xb8\x8b\x71\x8a\x67\
\x43\x73\x1b\x50\x2f\x8c\x91\xef\x25\xc9\x6b\xcc\x05\x8a\x91\xed\
\x69\xad\x78\x3a\x54\xb7\x01\xf5\x74\x82\x5c\x65\x52\x3e\x09\xa7\
\x29\x46\xe5\x78\xc5\xae\x20\x4a\x3f\x8a\xdb\x80\xaa\x9e\x7f\xc9\
\x5f\x9a\x11\xf9\xbf\x78\x9e\x66\x48\xe5\xb1\x98\xfc\x7f\xdf\x06\
\xfe\x4e\x55\xaf\x5b\x31\xb3\xb1\x14\xc3\x69\x34\xfd\x22\xd5\x78\
\x76\xb7\xc2\xd4\xff\x78\x1b\x98\x53\x47\x35\x65\xdf\xcf\x13\x7f\
\x59\x20\x68\xce\x55\xaa\xb1\x38\xe6\xe1\xe5\x5f\xf7\x6d\x40\x55\
\x6f\xbc\x21\xf6\x17\x82\xe6\xaf\x55\xd2\x0d\xa4\xbc\x3f\x26\xdd\
\x95\xdb\x80\xaa\x56\x2d\x6b\x2b\xec\x20\x42\x96\xde\xa6\x1c\x05\
\x5e\xfe\x5d\xbe\x0d\xa8\xea\xdd\xd5\x1d\x85\x1c\x41\xfb\x77\xaa\
\x29\x47\x50\x37\x17\x2f\xff\x00\x14\x5f\x4d\x7e\x5c\x1a\x5a\x27\
\xde\x11\xba\x3d\x33\x6b\xa8\x1b\x10\x44\x62\xb2\xe1\x8b\x00\xc5\
\x77\xd3\x1f\x29\x9e\x2b\xd2\x65\xa0\x7d\x6a\x11\xb5\x72\xab\x7c\
\xe5\x36\xe7\x49\x60\x6d\x3d\xf5\x44\xaa\x39\x09\x62\x14\x51\x35\
\x19\xb7\x8f\x5e\x75\xfd\xda\x96\x98\x66\x2d\xa2\x0b\xe8\x1d\xa0\
\xde\xd9\xfc\x24\xef\xda\x41\xaf\x41\x1b\xab\x74\x28\x2e\x88\xc6\
\x14\x3b\xc1\x7b\xea\x0d\x1d\x13\xaa\x56\xa4\x3f\xcc\x51\x6c\xf7\
\x25\xe5\x7a\xc4\xde\x98\xea\x8d\x09\xa6\x78\x99\xda\xa4\xea\xe2\
\xd8\x4c\x3e\x2f\x86\xf7\x24\x17\xe8\x13\xba\x29\x04\x93\x4b\xc7\
\x80\x93\xfa\x66\xd6\xb1\x7b\x0c\xeb\x55\xe2\x80\x67\x76\xd5\xe9\
\x13\x79\x72\x00\x26\x96\x1a\x9f\xd9\x55\xfa\x66\x57\xad\xcd\x5d\
\xd0\x8f\xd5\x86\x22\x9f\xbe\xaf\xe6\xd4\xe8\xd4\x57\x35\xdb\x07\
\xd3\xaa\x87\xd0\x6d\xaa\x6e\xee\xec\x9e\xdd\xcb\xec\xc2\x01\xaf\
\xa8\x59\x9f\x57\xe9\x97\xb6\x2d\x14\x53\xaa\x97\x27\xcf\xa8\x2e\
\x50\xb9\x7d\x4a\x37\xb3\xaa\x08\x6d\x5d\x27\x67\x57\xba\x22\xea\
\xcc\x93\x98\x4e\x17\xf0\x9f\x77\x5d\x75\x89\xcb\x9b\x27\x1a\xbf\
\xcd\xb2\xf3\xc4\xcd\x97\x5c\x93\x73\x7d\x9e\x3f\x26\xd3\x35\x02\
\x53\xae\xa8\x2e\x72\x3e\x2b\xe1\xd1\xe6\x06\xc9\x68\xfe\xe8\x84\
\xac\xf3\xae\x0a\xb9\x92\x12\x88\x89\x74\xe3\x61\x7b\x5a\xb9\xea\
\x3a\x57\xf7\x67\xce\x8c\x0f\x77\xfd\xe9\xcb\x27\x3c\x7e\x66\xe6\
\xfe\xab\x6e\x28\x28\x9f\x16\x80\x49\x74\x0f\xbf\x49\xa5\xaa\x7b\
\xd4\x15\x7f\x9a\x96\x10\xa3\xef\xfb\x6b\xab\x98\x84\xb4\x4f\x8b\
\xeb\xdc\x8c\x5c\x3a\xc9\x0f\x13\xe8\x3e\x0d\xc6\x15\xab\x06\x70\
\xed\x40\xd6\x82\x19\x89\xa3\xe3\xe3\xa2\xc2\xdb\x05\xfd\xf2\x65\
\xc1\x2b\xa8\x5d\x78\x54\x5c\xfc\xe8\xc4\x19\x0b\xb2\x0e\x5c\x33\
\x22\x60\xf1\xb8\x06\x98\x3c\x83\xde\xbd\x46\x16\xaa\x06\x53\x55\
\x71\x2a\x3f\x67\xe7\xa6\x8c\x15\x19\x9b\x76\xe6\xe4\x9f\xaa\xa8\
\x32\x3a\x40\xe1\x48\x2f\x4c\x9c\x81\x6f\x60\x43\x8e\xa8\x32\x71\
\x64\x88\x0d\x93\x66\x30\x8f\xe7\x4a\x93\xfe\xdc\xc7\x31\x5d\x66\
\xd0\x7f\x8f\x14\xe9\xdf\x83\xf5\x9e\xa6\xd1\x7b\x43\xb5\xe0\xd9\
\xaf\xde\xd8\x1b\xd3\x64\x26\xcd\x26\x17\x0a\x9c\xfe\x63\x53\x9a\
\x61\x8a\xcc\xbf\x0c\xac\xb9\x25\x64\xf6\x6f\xaf\x7d\x14\x93\xc3\
\x86\x26\xcf\x1f\x16\x2e\xfd\x47\x93\x70\xc9\x97\x25\xdd\x5e\x3f\
\x2d\x50\xf6\x4b\x16\xf5\xc0\x94\x30\x27\x32\xad\x54\x88\xec\x5f\
\x58\xda\x13\x93\xc1\x69\x79\xa8\x4f\xfa\x77\x9c\xb3\x5f\xbe\x22\
\x1a\x97\x7c\x78\x62\x8f\x49\x2f\xe2\x96\xfd\xe2\xe5\xfd\x71\x93\
\x87\x00\x74\x48\xca\x66\xff\x5e\x70\x6b\xfb\xa4\x4e\x38\xf5\xc2\
\xe0\x13\x97\xc6\x72\x7d\xa0\x30\x6d\x80\x2f\x4e\xba\x68\xb4\x1b\
\x9b\x71\x92\x41\xf2\x4f\x66\x8c\x6d\x87\x93\x2d\x2a\xcd\x07\x2f\
\xce\xab\x31\x2d\xf7\x35\x79\x8b\x07\x37\xc7\x49\x16\x1d\xff\xbe\
\x29\xd9\xc6\xbf\x20\x96\x6e\x4f\xe9\x8b\xc5\x9d\xf2\x10\x18\x9d\
\xb8\x2a\xb7\xd2\x90\xd4\xdf\xd8\xff\x6e\x52\x34\x2e\xf3\x49\xb9\
\x4e\x10\xfa\xd4\xec\xf7\xf7\x96\xb8\x5a\xda\x57\x77\xf6\x1f\x6b\
\x52\x06\x77\xc0\xf7\x7c\xd9\xf1\xee\x10\x3b\x6e\xc1\x07\xb9\x67\
\x69\xdf\x15\x6f\x9d\xcd\xfd\x60\xe1\xf8\xd8\x0e\xb8\x95\xd7\x6a\
\xf8\xb6\xe9\x1a\x3b\x2c\x31\x35\x7d\xfd\x96\xec\xcf\xf6\x7e\x75\
\x30\xff\xf8\xa9\x73\x65\xe7\x4e\x1d\xcf\x3f\xf8\xd5\xde\xcf\xb2\
\xb7\xac\x4f\x4f\x4d\x1c\x16\xdb\xb5\x0d\xbe\xe0\x21\x08\x82\x20\
\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\
\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\
\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\
\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\
\x62\x1e\xff\x05\x03\x36\x0c\x52\xf0\x4d\x16\x57\x00\x00\x00\x00\
\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x21\x82\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x0a\x4d\x69\x43\x43\x50\x50\x68\x6f\
\x74\x6f\x73\x68\x6f\x70\x20\x49\x43\x43\x20\x70\x72\x6f\x66\x69\
\x6c\x65\x00\x00\x78\xda\x9d\x53\x77\x58\x93\xf7\x16\x3e\xdf\xf7\
\x65\x0f\x56\x42\xd8\xf0\xb1\x97\x6c\x81\x00\x22\x23\xac\x08\xc8\
\x10\x59\xa2\x10\x92\x00\x61\x84\x10\x12\x40\xc5\x85\x88\x0a\x56\
\x14\x15\x11\x9c\x48\x55\xc4\x82\xd5\x0a\x48\x9d\x88\xe2\xa0\x28\
\xb8\x67\x41\x8a\x88\x5a\x8b\x55\x5c\x38\xee\x1f\xdc\xa7\xb5\x7d\
\x7a\xef\xed\xed\xfb\xd7\xfb\xbc\xe7\x9c\xe7\xfc\xce\x79\xcf\x0f\
\x80\x11\x12\x26\x91\xe6\xa2\x6a\x00\x39\x52\x85\x3c\x3a\xd8\x1f\
\x8f\x4f\x48\xc4\xc9\xbd\x80\x02\x15\x48\xe0\x04\x20\x10\xe6\xcb\
\xc2\x67\x05\xc5\x00\x00\xf0\x03\x79\x78\x7e\x74\xb0\x3f\xfc\x01\
\xaf\x6f\x00\x02\x00\x70\xd5\x2e\x24\x12\xc7\xe1\xff\x83\xba\x50\
\x26\x57\x00\x20\x91\x00\xe0\x22\x12\xe7\x0b\x01\x90\x52\x00\xc8\
\x2e\x54\xc8\x14\x00\xc8\x18\x00\xb0\x53\xb3\x64\x0a\x00\x94\x00\
\x00\x6c\x79\x7c\x42\x22\x00\xaa\x0d\x00\xec\xf4\x49\x3e\x05\x00\
\xd8\xa9\x93\xdc\x17\x00\xd8\xa2\x1c\xa9\x08\x00\x8d\x01\x00\x99\
\x28\x47\x24\x02\x40\xbb\x00\x60\x55\x81\x52\x2c\x02\xc0\xc2\x00\
\xa0\xac\x40\x22\x2e\x04\xc0\xae\x01\x80\x59\xb6\x32\x47\x02\x80\
\xbd\x05\x00\x76\x8e\x58\x90\x0f\x40\x60\x00\x80\x99\x42\x2c\xcc\
\x00\x20\x38\x02\x00\x43\x1e\x13\xcd\x03\x20\x4c\x03\xa0\x30\xd2\
\xbf\xe0\xa9\x5f\x70\x85\xb8\x48\x01\x00\xc0\xcb\x95\xcd\x97\x4b\
\xd2\x33\x14\xb8\x95\xd0\x1a\x77\xf2\xf0\xe0\xe2\x21\xe2\xc2\x6c\
\xb1\x42\x61\x17\x29\x10\x66\x09\xe4\x22\x9c\x97\x9b\x23\x13\x48\
\xe7\x03\x4c\xce\x0c\x00\x00\x1a\xf9\xd1\xc1\xfe\x38\x3f\x90\xe7\
\xe6\xe4\xe1\xe6\x66\xe7\x6c\xef\xf4\xc5\xa2\xfe\x6b\xf0\x6f\x22\
\x3e\x21\xf1\xdf\xfe\xbc\x8c\x02\x04\x00\x10\x4e\xcf\xef\xda\x5f\
\xe5\xe5\xd6\x03\x70\xc7\x01\xb0\x75\xbf\x6b\xa9\x5b\x00\xda\x56\
\x00\x68\xdf\xf9\x5d\x33\xdb\x09\xa0\x5a\x0a\xd0\x7a\xf9\x8b\x79\
\x38\xfc\x40\x1e\x9e\xa1\x50\xc8\x3c\x1d\x1c\x0a\x0b\x0b\xed\x25\
\x62\xa1\xbd\x30\xe3\x8b\x3e\xff\x33\xe1\x6f\xe0\x8b\x7e\xf6\xfc\
\x40\x1e\xfe\xdb\x7a\xf0\x00\x71\x9a\x40\x99\xad\xc0\xa3\x83\xfd\
\x71\x61\x6e\x76\xae\x52\x8e\xe7\xcb\x04\x42\x31\x6e\xf7\xe7\x23\
\xfe\xc7\x85\x7f\xfd\x8e\x29\xd1\xe2\x34\xb1\x5c\x2c\x15\x8a\xf1\
\x58\x89\xb8\x50\x22\x4d\xc7\x79\xb9\x52\x91\x44\x21\xc9\x95\xe2\
\x12\xe9\x7f\x32\xf1\x1f\x96\xfd\x09\x93\x77\x0d\x00\xac\x86\x4f\
\xc0\x4e\xb6\x07\xb5\xcb\x6c\xc0\x7e\xee\x01\x02\x8b\x0e\x58\xd2\
\x76\x00\x40\x7e\xf3\x2d\x8c\x1a\x0b\x91\x00\x10\x67\x34\x32\x79\
\xf7\x00\x00\x93\xbf\xf9\x8f\x40\x2b\x01\x00\xcd\x97\xa4\xe3\x00\
\x00\xbc\xe8\x18\x5c\xa8\x94\x17\x4c\xc6\x08\x00\x00\x44\xa0\x81\
\x2a\xb0\x41\x07\x0c\xc1\x14\xac\xc0\x0e\x9c\xc1\x1d\xbc\xc0\x17\
\x02\x61\x06\x44\x40\x0c\x24\xc0\x3c\x10\x42\x06\xe4\x80\x1c\x0a\
\xa1\x18\x96\x41\x19\x54\xc0\x3a\xd8\x04\xb5\xb0\x03\x1a\xa0\x11\
\x9a\xe1\x10\xb4\xc1\x31\x38\x0d\xe7\xe0\x12\x5c\x81\xeb\x70\x17\
\x06\x60\x18\x9e\xc2\x18\xbc\x86\x09\x04\x41\xc8\x08\x13\x61\x21\
\x3a\x88\x11\x62\x8e\xd8\x22\xce\x08\x17\x99\x8e\x04\x22\x61\x48\
\x34\x92\x80\xa4\x20\xe9\x88\x14\x51\x22\xc5\xc8\x72\xa4\x02\xa9\
\x42\x6a\x91\x5d\x48\x23\xf2\x2d\x72\x14\x39\x8d\x5c\x40\xfa\x90\
\xdb\xc8\x20\x32\x8a\xfc\x8a\xbc\x47\x31\x94\x81\xb2\x51\x03\xd4\
\x02\x75\x40\xb9\xa8\x1f\x1a\x8a\xc6\xa0\x73\xd1\x74\x34\x0f\x5d\
\x80\x96\xa2\x6b\xd1\x1a\xb4\x1e\x3d\x80\xb6\xa2\xa7\xd1\x4b\xe8\
\x75\x74\x00\x7d\x8a\x8e\x63\x80\xd1\x31\x0e\x66\x8c\xd9\x61\x5c\
\x8c\x87\x45\x60\x89\x58\x1a\x26\xc7\x16\x63\xe5\x58\x35\x56\x8f\
\x35\x63\x1d\x58\x37\x76\x15\x1b\xc0\x9e\x61\xef\x08\x24\x02\x8b\
\x80\x13\xec\x08\x5e\x84\x10\xc2\x6c\x82\x90\x90\x47\x58\x4c\x58\
\x43\xa8\x25\xec\x23\xb4\x12\xba\x08\x57\x09\x83\x84\x31\xc2\x27\
\x22\x93\xa8\x4f\xb4\x25\x7a\x12\xf9\xc4\x78\x62\x3a\xb1\x90\x58\
\x46\xac\x26\xee\x21\x1e\x21\x9e\x25\x5e\x27\x0e\x13\x5f\x93\x48\
\x24\x0e\xc9\x92\xe4\x4e\x0a\x21\x25\x90\x32\x49\x0b\x49\x6b\x48\
\xdb\x48\x2d\xa4\x53\xa4\x3e\xd2\x10\x69\x9c\x4c\x26\xeb\x90\x6d\
\xc9\xde\xe4\x08\xb2\x80\xac\x20\x97\x91\xb7\x90\x0f\x90\x4f\x92\
\xfb\xc9\xc3\xe4\xb7\x14\x3a\xc5\x88\xe2\x4c\x09\xa2\x24\x52\xa4\
\x94\x12\x4a\x35\x65\x3f\xe5\x04\xa5\x9f\x32\x42\x99\xa0\xaa\x51\
\xcd\xa9\x9e\xd4\x08\xaa\x88\x3a\x9f\x5a\x49\x6d\xa0\x76\x50\x2f\
\x53\x87\xa9\x13\x34\x75\x9a\x25\xcd\x9b\x16\x43\xcb\xa4\x2d\xa3\
\xd5\xd0\x9a\x69\x67\x69\xf7\x68\x2f\xe9\x74\xba\x09\xdd\x83\x1e\
\x45\x97\xd0\x97\xd2\x6b\xe8\x07\xe9\xe7\xe9\x83\xf4\x77\x0c\x0d\
\x86\x0d\x83\xc7\x48\x62\x28\x19\x6b\x19\x7b\x19\xa7\x18\xb7\x19\
\x2f\x99\x4c\xa6\x05\xd3\x97\x99\xc8\x54\x30\xd7\x32\x1b\x99\x67\
\x98\x0f\x98\x6f\x55\x58\x2a\xf6\x2a\x7c\x15\x91\xca\x12\x95\x3a\
\x95\x56\x95\x7e\x95\xe7\xaa\x54\x55\x73\x55\x3f\xd5\x79\xaa\x0b\
\x54\xab\x55\x0f\xab\x5e\x56\x7d\xa6\x46\x55\xb3\x50\xe3\xa9\x09\
\xd4\x16\xab\xd5\xa9\x1d\x55\xbb\xa9\x36\xae\xce\x52\x77\x52\x8f\
\x50\xcf\x51\x5f\xa3\xbe\x5f\xfd\x82\xfa\x63\x0d\xb2\x86\x85\x46\
\xa0\x86\x48\xa3\x54\x63\xb7\xc6\x19\x8d\x21\x16\xc6\x32\x65\xf1\
\x58\x42\xd6\x72\x56\x03\xeb\x2c\x6b\x98\x4d\x62\x5b\xb2\xf9\xec\
\x4c\x76\x05\xfb\x1b\x76\x2f\x7b\x4c\x53\x43\x73\xaa\x66\xac\x66\
\x91\x66\x9d\xe6\x71\xcd\x01\x0e\xc6\xb1\xe0\xf0\x39\xd9\x9c\x4a\
\xce\x21\xce\x0d\xce\x7b\x2d\x03\x2d\x3f\x2d\xb1\xd6\x6a\xad\x66\
\xad\x7e\xad\x37\xda\x7a\xda\xbe\xda\x62\xed\x72\xed\x16\xed\xeb\
\xda\xef\x75\x70\x9d\x40\x9d\x2c\x9d\xf5\x3a\x6d\x3a\xf7\x75\x09\
\xba\x36\xba\x51\xba\x85\xba\xdb\x75\xcf\xea\x3e\xd3\x63\xeb\x79\
\xe9\x09\xf5\xca\xf5\x0e\xe9\xdd\xd1\x47\xf5\x6d\xf4\xa3\xf5\x17\
\xea\xef\xd6\xef\xd1\x1f\x37\x30\x34\x08\x36\x90\x19\x6c\x31\x38\
\x63\xf0\xcc\x90\x63\xe8\x6b\x98\x69\xb8\xd1\xf0\x84\xe1\xa8\x11\
\xcb\x68\xba\x91\xc4\x68\xa3\xd1\x49\xa3\x27\xb8\x26\xee\x87\x67\
\xe3\x35\x78\x17\x3e\x66\xac\x6f\x1c\x62\xac\x34\xde\x65\xdc\x6b\
\x3c\x61\x62\x69\x32\xdb\xa4\xc4\xa4\xc5\xe4\xbe\x29\xcd\x94\x6b\
\x9a\x66\xba\xd1\xb4\xd3\x74\xcc\xcc\xc8\x2c\xdc\xac\xd8\xac\xc9\
\xec\x8e\x39\xd5\x9c\x6b\x9e\x61\xbe\xd9\xbc\xdb\xfc\x8d\x85\xa5\
\x45\x9c\xc5\x4a\x8b\x36\x8b\xc7\x96\xda\x96\x7c\xcb\x05\x96\x4d\
\x96\xf7\xac\x98\x56\x3e\x56\x79\x56\xf5\x56\xd7\xac\x49\xd6\x5c\
\xeb\x2c\xeb\x6d\xd6\x57\x6c\x50\x1b\x57\x9b\x0c\x9b\x3a\x9b\xcb\
\xb6\xa8\xad\x9b\xad\xc4\x76\x9b\x6d\xdf\x14\xe2\x14\x8f\x29\xd2\
\x29\xf5\x53\x6e\xda\x31\xec\xfc\xec\x0a\xec\x9a\xec\x06\xed\x39\
\xf6\x61\xf6\x25\xf6\x6d\xf6\xcf\x1d\xcc\x1c\x12\x1d\xd6\x3b\x74\
\x3b\x7c\x72\x74\x75\xcc\x76\x6c\x70\xbc\xeb\xa4\xe1\x34\xc3\xa9\
\xc4\xa9\xc3\xe9\x57\x67\x1b\x67\xa1\x73\x9d\xf3\x35\x17\xa6\x4b\
\x90\xcb\x12\x97\x76\x97\x17\x53\x6d\xa7\x8a\xa7\x6e\x9f\x7a\xcb\
\x95\xe5\x1a\xee\xba\xd2\xb5\xd3\xf5\xa3\x9b\xbb\x9b\xdc\xad\xd9\
\x6d\xd4\xdd\xcc\x3d\xc5\x7d\xab\xfb\x4d\x2e\x9b\x1b\xc9\x5d\xc3\
\x3d\xef\x41\xf4\xf0\xf7\x58\xe2\x71\xcc\xe3\x9d\xa7\x9b\xa7\xc2\
\xf3\x90\xe7\x2f\x5e\x76\x5e\x59\x5e\xfb\xbd\x1e\x4f\xb3\x9c\x26\
\x9e\xd6\x30\x6d\xc8\xdb\xc4\x5b\xe0\xbd\xcb\x7b\x60\x3a\x3e\x3d\
\x65\xfa\xce\xe9\x03\x3e\xc6\x3e\x02\x9f\x7a\x9f\x87\xbe\xa6\xbe\
\x22\xdf\x3d\xbe\x23\x7e\xd6\x7e\x99\x7e\x07\xfc\x9e\xfb\x3b\xfa\
\xcb\xfd\x8f\xf8\xbf\xe1\x79\xf2\x16\xf1\x4e\x05\x60\x01\xc1\x01\
\xe5\x01\xbd\x81\x1a\x81\xb3\x03\x6b\x03\x1f\x04\x99\x04\xa5\x07\
\x35\x05\x8d\x05\xbb\x06\x2f\x0c\x3e\x15\x42\x0c\x09\x0d\x59\x1f\
\x72\x93\x6f\xc0\x17\xf2\x1b\xf9\x63\x33\xdc\x67\x2c\x9a\xd1\x15\
\xca\x08\x9d\x15\x5a\x1b\xfa\x30\xcc\x26\x4c\x1e\xd6\x11\x8e\x86\
\xcf\x08\xdf\x10\x7e\x6f\xa6\xf9\x4c\xe9\xcc\xb6\x08\x88\xe0\x47\
\x6c\x88\xb8\x1f\x69\x19\x99\x17\xf9\x7d\x14\x29\x2a\x32\xaa\x2e\
\xea\x51\xb4\x53\x74\x71\x74\xf7\x2c\xd6\xac\xe4\x59\xfb\x67\xbd\
\x8e\xf1\x8f\xa9\x8c\xb9\x3b\xdb\x6a\xb6\x72\x76\x67\xac\x6a\x6c\
\x52\x6c\x63\xec\x9b\xb8\x80\xb8\xaa\xb8\x81\x78\x87\xf8\x45\xf1\
\x97\x12\x74\x13\x24\x09\xed\x89\xe4\xc4\xd8\xc4\x3d\x89\xe3\x73\
\x02\xe7\x6c\x9a\x33\x9c\xe4\x9a\x54\x96\x74\x63\xae\xe5\xdc\xa2\
\xb9\x17\xe6\xe9\xce\xcb\x9e\x77\x3c\x59\x35\x59\x90\x7c\x38\x85\
\x98\x12\x97\xb2\x3f\xe5\x83\x20\x42\x50\x2f\x18\x4f\xe5\xa7\x6e\
\x4d\x1d\x13\xf2\x84\x9b\x85\x4f\x45\xbe\xa2\x8d\xa2\x51\xb1\xb7\
\xb8\x4a\x3c\x92\xe6\x9d\x56\x95\xf6\x38\xdd\x3b\x7d\x43\xfa\x68\
\x86\x4f\x46\x75\xc6\x33\x09\x4f\x52\x2b\x79\x91\x19\x92\xb9\x23\
\xf3\x4d\x56\x44\xd6\xde\xac\xcf\xd9\x71\xd9\x2d\x39\x94\x9c\x94\
\x9c\xa3\x52\x0d\x69\x96\xb4\x2b\xd7\x30\xb7\x28\xb7\x4f\x66\x2b\
\x2b\x93\x0d\xe4\x79\xe6\x6d\xca\x1b\x93\x87\xca\xf7\xe4\x23\xf9\
\x73\xf3\xdb\x15\x6c\x85\x4c\xd1\xa3\xb4\x52\xae\x50\x0e\x16\x4c\
\x2f\xa8\x2b\x78\x5b\x18\x5b\x78\xb8\x48\xbd\x48\x5a\xd4\x33\xdf\
\x66\xfe\xea\xf9\x23\x0b\x82\x16\x7c\xbd\x90\xb0\x50\xb8\xb0\xb3\
\xd8\xb8\x78\x59\xf1\xe0\x22\xbf\x45\xbb\x16\x23\x8b\x53\x17\x77\
\x2e\x31\x5d\x52\xba\x64\x78\x69\xf0\xd2\x7d\xcb\x68\xcb\xb2\x96\
\xfd\x50\xe2\x58\x52\x55\xf2\x6a\x79\xdc\xf2\x8e\x52\x83\xd2\xa5\
\xa5\x43\x2b\x82\x57\x34\x95\xa9\x94\xc9\xcb\x6e\xae\xf4\x5a\xb9\
\x63\x15\x61\x95\x64\x55\xef\x6a\x97\xd5\x5b\x56\x7f\x2a\x17\x95\
\x5f\xac\x70\xac\xa8\xae\xf8\xb0\x46\xb8\xe6\xe2\x57\x4e\x5f\xd5\
\x7c\xf5\x79\x6d\xda\xda\xde\x4a\xb7\xca\xed\xeb\x48\xeb\xa4\xeb\
\x6e\xac\xf7\x59\xbf\xaf\x4a\xbd\x6a\x41\xd5\xd0\x86\xf0\x0d\xad\
\x1b\xf1\x8d\xe5\x1b\x5f\x6d\x4a\xde\x74\xa1\x7a\x6a\xf5\x8e\xcd\
\xb4\xcd\xca\xcd\x03\x35\x61\x35\xed\x5b\xcc\xb6\xac\xdb\xf2\xa1\
\x36\xa3\xf6\x7a\x9d\x7f\x5d\xcb\x56\xfd\xad\xab\xb7\xbe\xd9\x26\
\xda\xd6\xbf\xdd\x77\x7b\xf3\x0e\x83\x1d\x15\x3b\xde\xef\x94\xec\
\xbc\xb5\x2b\x78\x57\x6b\xbd\x45\x7d\xf5\x6e\xd2\xee\x82\xdd\x8f\
\x1a\x62\x1b\xba\xbf\xe6\x7e\xdd\xb8\x47\x77\x4f\xc5\x9e\x8f\x7b\
\xa5\x7b\x07\xf6\x45\xef\xeb\x6a\x74\x6f\x6c\xdc\xaf\xbf\xbf\xb2\
\x09\x6d\x52\x36\x8d\x1e\x48\x3a\x70\xe5\x9b\x80\x6f\xda\x9b\xed\
\x9a\x77\xb5\x70\x5a\x2a\x0e\xc2\x41\xe5\xc1\x27\xdf\xa6\x7c\x7b\
\xe3\x50\xe8\xa1\xce\xc3\xdc\xc3\xcd\xdf\x99\x7f\xb7\xf5\x08\xeb\
\x48\x79\x2b\xd2\x3a\xbf\x75\xac\x2d\xa3\x6d\xa0\x3d\xa1\xbd\xef\
\xe8\x8c\xa3\x9d\x1d\x5e\x1d\x47\xbe\xb7\xff\x7e\xef\x31\xe3\x63\
\x75\xc7\x35\x8f\x57\x9e\xa0\x9d\x28\x3d\xf1\xf9\xe4\x82\x93\xe3\
\xa7\x64\xa7\x9e\x9d\x4e\x3f\x3d\xd4\x99\xdc\x79\xf7\x4c\xfc\x99\
\x6b\x5d\x51\x5d\xbd\x67\x43\xcf\x9e\x3f\x17\x74\xee\x4c\xb7\x5f\
\xf7\xc9\xf3\xde\xe7\x8f\x5d\xf0\xbc\x70\xf4\x22\xf7\x62\xdb\x25\
\xb7\x4b\xad\x3d\xae\x3d\x47\x7e\x70\xfd\xe1\x48\xaf\x5b\x6f\xeb\
\x65\xf7\xcb\xed\x57\x3c\xae\x74\xf4\x4d\xeb\x3b\xd1\xef\xd3\x7f\
\xfa\x6a\xc0\xd5\x73\xd7\xf8\xd7\x2e\x5d\x9f\x79\xbd\xef\xc6\xec\
\x1b\xb7\x6e\x26\xdd\x1c\xb8\x25\xba\xf5\xf8\x76\xf6\xed\x17\x77\
\x0a\xee\x4c\xdc\x5d\x7a\x8f\x78\xaf\xfc\xbe\xda\xfd\xea\x07\xfa\
\x0f\xea\x7f\xb4\xfe\xb1\x65\xc0\x6d\xe0\xf8\x60\xc0\x60\xcf\xc3\
\x59\x0f\xef\x0e\x09\x87\x9e\xfe\x94\xff\xd3\x87\xe1\xd2\x47\xcc\
\x47\xd5\x23\x46\x23\x8d\x8f\x9d\x1f\x1f\x1b\x0d\x1a\xbd\xf2\x64\
\xce\x93\xe1\xa7\xb2\xa7\x13\xcf\xca\x7e\x56\xff\x79\xeb\x73\xab\
\xe7\xdf\xfd\xe2\xfb\x4b\xcf\x58\xfc\xd8\xf0\x0b\xf9\x8b\xcf\xbf\
\xae\x79\xa9\xf3\x72\xef\xab\xa9\xaf\x3a\xc7\x23\xc7\x1f\xbc\xce\
\x79\x3d\xf1\xa6\xfc\xad\xce\xdb\x7d\xef\xb8\xef\xba\xdf\xc7\xbd\
\x1f\x99\x28\xfc\x40\xfe\x50\xf3\xd1\xfa\x63\xc7\xa7\xd0\x4f\xf7\
\x3e\xe7\x7c\xfe\xfc\x2f\xf7\x84\xf3\xfb\x25\xd2\x9f\x33\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\x00\x16\xaf\x49\x44\
\x41\x54\x78\xda\xec\xdd\x6d\xb0\x6d\x75\x5d\xc0\xf1\xef\x01\x2e\
\x20\xc8\x4d\xf0\xf9\xe1\x82\x80\x68\x54\xa2\x53\x8a\x8a\x16\x8a\
\x82\x92\x9a\xa9\x4d\x65\x33\x0e\x36\x4e\x5a\xa9\x2f\xca\x49\xcc\
\x99\xea\x85\x36\xe9\x34\x53\x96\xcf\x93\x35\xa9\x59\xe6\x94\x95\
\x96\x0f\x60\x81\x04\xe6\x44\x35\x3e\x14\x2a\x0a\x2a\x60\x01\xc5\
\x25\x11\xe4\x51\x4e\x2f\xd6\xbe\x06\x08\xdc\x73\xee\x3d\xe7\xec\
\xb5\xf7\xfa\x7c\x66\x18\x9a\x54\xce\xda\x7f\xd6\x3d\xbf\xef\xfe\
\xef\xb5\xd6\x5e\x59\x5d\x5d\x0d\x00\x98\x96\x7d\x2c\x01\x00\x08\
\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\
\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\
\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\
\x00\x00\x01\x00\x00\x08\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\
\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\
\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\
\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\
\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\
\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\
\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\
\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x40\x00\x00\x00\x02\x00\
\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\
\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\
\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\
\x40\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\
\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\
\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\
\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x01\x60\x09\
\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\
\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x60\x7e\xf6\x9b\
\xda\x0b\x5e\x59\x59\x99\xd2\xcb\xdd\xb7\x7a\x68\x75\x4c\x75\x64\
\x75\xd4\xec\xef\x87\x56\xdf\x33\xfb\x6b\x7b\xb5\xed\x36\xff\x9b\
\x43\xfd\xb1\xd8\x2b\xff\x5d\x5d\x5e\x9d\x53\xfd\x41\xf5\x19\x4b\
\xc2\x66\x59\x5d\x5d\xb5\x08\xec\xf9\x3c\x9c\xda\x09\xb4\xc4\x01\
\x70\x50\xf5\x43\xd5\xf1\xb3\xbf\xbe\x6f\x36\xf8\x0f\x70\x9a\xcf\
\xcd\xad\xd5\x5b\xaa\x5f\xae\x6e\xb1\x1c\x08\x00\x04\x80\x00\xd8\
\x08\xfb\x54\x3f\x58\x3d\x7d\xf6\xd7\x13\x9a\xe0\x8e\xce\x82\xf8\
\x50\xf5\xdc\xea\xdb\x96\x02\x01\x80\x00\x10\x00\x7b\x62\xdf\xea\
\xc4\xea\x79\xb3\x81\xf2\x20\xa7\xf0\xc2\x78\x43\xf5\x6a\xcb\x80\
\x00\x40\x00\x08\x80\xf5\x78\x58\xf5\xe2\xea\x45\xd5\x03\x9c\xb6\
\x0b\xe9\x96\xea\x91\xd5\x17\x2c\x05\x02\x80\x31\x70\x17\xc0\xb8\
\xff\xdd\x3c\xbb\xfa\x78\x75\xe1\xec\xdd\xa3\xe1\xbf\xb8\xf6\xab\
\x5e\x6a\x19\x80\x31\xfd\x52\x62\x5c\x0e\x9c\xbd\xd3\xff\xa5\xea\
\xe1\x96\x63\xa9\x9c\x6c\x09\x00\x01\xc0\x1d\x6d\x6f\xb8\x5a\xfc\
\x65\xd5\x7d\x2c\xc7\x52\x3a\xc2\x12\x00\x63\xe1\x1a\x80\xf9\xdb\
\xa7\x3a\xad\x7a\x5d\x2e\xea\x9b\x82\xfd\xab\x9b\x2d\xc3\x6e\x1d\
\xd6\x70\xa1\xeb\x93\xaa\x63\x67\xf1\xb4\xeb\x96\xd6\x1b\xab\xaf\
\x56\x9f\xaf\xce\xad\xfe\xaa\xba\x7a\x8a\x8b\xe4\x1a\x00\x04\xc0\
\xe2\x06\xc0\x13\xab\x37\x56\x8f\x71\x2a\x4e\xc6\xbd\xab\x9d\x96\
\xe1\x2e\x1d\x53\xbd\xa6\x7a\x41\x6b\x7f\x86\xc5\x8d\xd5\x9f\x56\
\xbf\x59\x5d\x24\x00\x60\xed\xef\x3e\xd9\x7a\xdb\xab\xb7\x57\xff\
\x68\xf8\x4f\xce\x21\x96\xe0\x4e\xed\x5b\xfd\x6a\xf5\xb9\x86\x6b\
\x60\xd6\xf3\x00\xab\x03\xaa\x9f\xad\xfe\xbd\x3a\xdd\xef\x35\xb0\
\x03\x30\xd6\x1d\x80\x53\xab\x77\x54\x3b\x9c\x7e\x93\xf4\xc8\xd9\
\xa0\xe2\xff\xdd\xaf\x7a\x7f\xc3\x33\x2e\x36\xc2\x59\xd5\x4f\x35\
\x3c\x96\xd9\x0e\x00\xd8\x01\x98\xbb\x7b\x34\x3c\x16\xf6\xef\x0c\
\x7f\x3b\x00\x7c\xc7\x8e\x86\x9d\xb0\x13\x37\xf0\x9f\xf9\x94\x86\
\xef\x62\xf0\xe7\x0c\x04\xc0\xdc\x1d\x57\x9d\x5f\xfd\x62\xb5\x62\
\x39\x26\xed\x60\x4b\x70\xbb\x77\xfe\x67\xb6\x39\xb7\xbb\x7e\x6f\
\x75\x76\x75\xb8\x65\x06\x01\x30\x2f\xa7\x57\xff\x5a\x7d\xbf\xa5\
\x40\x00\x7c\xc7\xfe\x0d\xdf\x91\xf0\x88\x4d\xfc\x19\x47\x35\xdc\
\x25\x70\xb4\xe5\x06\x01\xb0\xd5\xbf\xe0\xde\x56\xbd\x3e\xcf\x5b\
\x40\x00\xdc\xd1\xab\x1b\xbe\xb5\x72\xb3\xed\xa8\xce\xb0\x13\x00\
\x02\x60\xab\xdc\xbb\xfa\x87\xea\xe7\x2d\x05\x77\x70\x90\x25\xe8\
\xc8\x86\x2b\xfe\xb7\xca\x51\x0d\x17\x06\x8a\x00\x10\x00\x9b\xea\
\xe8\xea\x93\x0d\xf7\xf8\x03\xdf\xed\xf4\x86\x47\x5e\x6f\x25\x11\
\x00\x02\x60\x53\x3d\x76\x36\xfc\x3d\xc3\x9f\xbb\x72\xeb\xc4\x5f\
\xff\xf6\xea\x85\x73\xfa\xd9\x22\x00\x04\xc0\xa6\xf8\x91\x86\x6f\
\xee\xbb\x9f\xa5\xe0\x6e\xdc\x32\xf1\xd7\xff\x9c\xe6\xfb\x31\x88\
\x08\x00\x01\xb0\xa1\x9e\x51\x7d\x64\xf6\xee\x06\xee\xce\x55\x13\
\x7f\xfd\x27\x8d\xe0\x18\x44\x00\x08\x80\x0d\x71\x6a\xf5\x37\xb9\
\xb8\x8b\xb5\xb9\x72\xe2\xaf\xff\xb8\x91\x1c\x87\x08\x40\x00\x58\
\x82\xbd\x7e\x37\xf3\x97\x0d\xb7\xfc\xc1\x5a\xfc\xe7\xc4\x5f\xff\
\x43\x47\x74\x2c\x22\x80\x49\xf3\x5d\x00\x7b\xee\x84\x86\xfb\x8b\
\xdd\xd7\xcd\x5a\x5d\x53\xdd\xab\x9a\xf2\x03\xdc\x6f\xaa\xb6\x8d\
\xec\x98\x2e\x6e\x78\x7c\xf0\x25\x8b\xb6\x98\xbe\x0b\x00\x3b\x00\
\x5b\xef\x98\xea\x83\x86\x3f\xeb\xf4\xf9\x89\x0f\xff\x46\x38\xfc\
\xed\x04\x20\x00\x58\xb3\xc3\xaa\xbf\x6d\x78\xd8\x0f\xac\x87\x6f\
\x01\x1c\x2f\x11\x80\x00\x60\xb7\xef\x5e\x3e\x90\xfb\xfc\xd9\x33\
\x9f\xb0\x04\x22\x00\x04\xc0\x62\xfa\x9d\x36\xf6\x6b\x4b\x99\x8e\
\xeb\xab\x0f\x5b\x06\x11\x00\x02\x60\xf1\x9c\x56\xbd\xdc\x32\xb0\
\x87\xfe\x30\xcf\x00\x10\x01\x30\x22\xee\x02\x58\x9b\x47\x55\x9f\
\x6a\xeb\x9f\x5f\xce\x72\xf8\x7c\xf5\xf8\x86\xbb\x00\xa6\x6e\x91\
\x7e\xe1\x8c\xfe\xee\x00\x77\x01\x60\x07\x60\x73\x1d\x54\xfd\x99\
\xe1\xcf\x1e\x3a\xbf\x7a\xba\xe1\x6f\x27\x00\x04\xc0\xe2\xf9\x9d\
\xea\x58\xcb\xc0\x1a\xdd\x52\x5d\x56\xbd\xbf\xfa\xc9\x86\x6f\x85\
\xbc\xd4\xb2\x88\x00\x18\x1b\x1f\x01\xdc\xbd\x67\x36\xdc\xf2\xb7\
\x0c\x56\x1b\xb6\xa2\xff\xad\xba\xe8\x36\x7f\x5d\x3e\xfb\xcf\xaf\
\xbe\xc3\xdf\x61\xb3\xce\xc3\x45\x34\xca\x8f\x03\x7c\x04\x80\x00\
\xd8\x9c\x00\xd8\xde\x70\xdf\xf6\x8e\x05\x7e\xb9\x57\x34\x3c\xaa\
\xf8\xec\x86\x5b\xd0\xae\x74\xca\x23\x00\x96\x27\x02\x04\x00\x7b\
\x63\x3f\x4b\x70\x97\x5e\xbf\xa0\xc3\xff\x86\x86\xa7\x14\xbe\xbb\
\xfa\x58\xbe\x7e\x16\x36\xca\xae\x8f\x03\x16\xf2\xb1\xc1\x60\x07\
\x60\x6d\x3b\x00\x8f\xaf\xce\x6b\xb1\xae\x91\xd8\x59\xbd\xb5\x7a\
\x93\x77\xfa\xd8\x01\x98\xc6\x4e\x80\x1d\x00\x04\xc0\xc6\x06\xc0\
\x4a\xc3\x2d\x7f\xc7\x2f\xd0\xe0\x7f\x6d\xf5\xce\xea\x5a\xa7\x34\
\x02\x60\x3a\x11\x20\x00\xd8\x1b\xee\x02\xf8\x6e\x2f\x5e\x90\xe1\
\x7f\x6b\xf5\xfb\xd5\xd1\xd5\x1b\x0d\x7f\xd8\x52\x47\x55\xe7\xce\
\xfe\xfc\x81\x1d\x80\x25\xd8\x01\x38\xb0\xfa\x72\xf5\xe0\x91\xbf\
\x8c\xaf\x56\x2f\xa9\xce\x74\x0a\x63\x07\x60\xba\x3b\x01\x76\x00\
\xb0\x03\xb0\x71\x5e\xbe\x00\xc3\xff\x4f\xaa\xe3\x0c\x7f\xb0\x13\
\x00\x76\x00\x36\x66\x07\xe0\xe0\x86\xfb\xe2\xef\x3f\xd2\x43\xbf\
\xa1\x7a\x65\xc3\x85\x7e\x60\x07\xc0\x4e\x80\x1d\x00\xec\x00\x6c\
\x90\x9f\x1b\xf1\xf0\xff\x46\xc3\xe3\x64\x0d\x7f\x18\xef\x4e\x80\
\x27\x06\x62\x07\x60\x01\x77\x00\xf6\x9b\xbd\xfb\x1f\xe3\x1f\xde\
\xcb\xaa\x53\x1a\x9e\xe2\x07\x76\x00\xc6\xed\xd2\xd9\x4e\xc0\x45\
\x76\x00\xb0\x03\xb0\x18\x9e\x3d\xd2\xe1\x7f\x69\xf5\x34\xc3\x1f\
\x16\xc6\x8e\xea\x0c\x3b\x01\x08\x80\xc5\xf1\x8a\x11\x1e\xd3\x7f\
\x57\x27\x57\x5f\xf4\xaf\x07\x16\x8a\x8f\x03\x58\x08\x3e\x02\x18\
\xbe\xe9\xef\x82\x91\x1d\xe6\xd5\xd5\x89\xd5\xe7\x9c\xa2\x2c\x99\
\x29\xfd\xc2\xd9\xf4\x8f\x03\x7c\x04\x80\x1d\x80\xbd\xf3\xc2\x91\
\x1d\xcf\x4d\xd5\x4f\x18\xfe\xb0\xf0\x7c\x1c\x80\x00\x18\xb1\x7d\
\xab\xd3\x46\x76\x4c\xbf\x52\xfd\x83\x53\x13\x96\x82\x8f\x03\x10\
\x00\x23\xf5\xe4\xea\x41\x23\x3a\x9e\x77\x37\x3c\xde\x17\x58\xae\
\x08\xf0\xb0\x20\x04\xc0\xc8\xfc\xf8\x88\x8e\xe5\x4b\x8d\xf3\x62\
\x44\x60\xef\xf9\x38\x80\xd1\x99\xf2\x45\x80\xfb\x34\x5c\xa4\x33\
\x86\x1d\x80\xd5\x86\xdd\x88\x73\x9c\x92\x2c\xb9\xa9\x5f\xb5\xb6\
\xa1\x4f\x0c\x74\x11\x20\x76\x00\xf6\xcc\x63\x1a\xcf\xf6\xff\x1f\
\x19\xfe\x30\x09\x3e\x0e\x40\x00\x8c\xc0\x29\x23\x39\x8e\xff\xa9\
\x5e\xe5\x54\x84\xc9\xd8\xd1\x70\x61\xa0\x08\x40\x00\xcc\xc9\x53\
\x47\x72\x1c\x6f\xa8\x76\x3a\x15\x61\x72\x11\xe0\x9a\x00\xe6\x6a\
\xaa\xd7\x00\x1c\x58\xfd\x6f\x75\xc0\x9c\x0f\x67\x67\x75\x44\x75\
\xad\x53\x91\x89\xf0\xa1\xf5\xed\xed\xd5\x35\x01\xae\x01\xc0\x0e\
\xc0\xfa\xfd\xd0\x08\x86\x7f\xd5\xef\x1a\xfe\x30\x69\xae\x09\x40\
\x00\x6c\xb1\xc7\x8e\xe0\x18\xae\xab\xde\xe6\x14\x84\xc9\xf3\x71\
\x00\x02\x60\x0b\x1d\x3f\x82\x63\xf8\x9b\xea\x2a\xa7\x20\x90\x27\
\x06\x22\x00\xb6\xcc\x71\x23\x38\x86\x77\x39\xfd\x80\x3b\x44\x80\
\x8f\x03\xd8\x32\x53\xbc\x08\x70\x5b\xc3\xf6\xfb\xb6\x39\x1e\xc6\
\xe5\xd5\x43\xaa\x6f\x3b\x05\x99\x18\x57\xad\xed\xde\x9a\xbf\x45\
\xd0\x45\x80\xd8\x01\x58\x7f\x65\x6f\x9b\xf3\x31\x7c\xd0\xf0\x07\
\xee\x82\x6b\x02\x10\x00\x9b\xe4\xe1\x23\x38\x86\xb3\x9d\x7a\xc0\
\x6e\xde\xa8\xb8\x26\x00\x01\xb0\xc1\x8e\x18\xc1\x31\x9c\xe5\xd4\
\x03\xd6\x10\x01\xae\x09\x40\x00\x6c\xa0\x1d\x73\xfe\xf9\x17\x36\
\x5c\x03\x00\xb0\x96\xdf\x57\x1e\x1b\x8c\x00\x58\x92\x00\xf8\xb4\
\xd3\x0e\x58\xe7\xef\x2c\xd7\x04\x20\x00\x36\xc0\x7d\xe6\xfc\xf3\
\xbf\xe4\xb4\x03\xd6\xc9\xc7\x01\x08\x80\x0d\x70\xd8\x9c\x7f\xfe\
\x45\x4e\x3b\x60\x0f\x77\x02\x7c\x1c\x80\x00\xd8\x0b\x87\x0a\x00\
\x60\x81\x23\xc0\xc7\x01\x08\x80\x3d\xb4\x7d\xce\x3f\xff\x0a\xa7\
\x1d\xb0\x17\xdc\x22\xc8\x86\xd8\x6f\x82\xaf\x79\xde\xdf\x02\xe8\
\xdb\xff\x80\x8d\x88\x80\x73\x57\x56\x56\xd6\xf4\xc4\x40\xd6\x66\
\x6a\x4f\x56\x9c\xe2\x0e\xc0\xbc\x9f\x02\x78\x9d\x3f\x66\xc0\x06\
\x70\x4d\x00\x02\x60\x9d\xf6\x17\x00\x80\x08\x40\x00\x78\xcd\x5b\
\xed\x66\xa7\x1d\xb0\xc1\x11\xe0\xc2\x40\x04\x00\xc0\x04\x79\x4e\
\x00\x02\x00\x60\xc2\x3b\x01\x3e\x0e\x40\x00\x00\x88\x00\x10\x00\
\x00\x22\x00\x04\x00\x80\x08\x40\x00\x00\x20\x02\x10\x00\x00\x88\
\x00\x04\x00\x00\x22\x00\x01\x00\x80\x08\x40\x00\x00\x20\x02\x10\
\x00\x00\x88\x00\x04\x00\x00\x22\x00\x01\x00\x80\x08\x40\x00\x00\
\x20\x02\x10\x00\x00\x88\x00\x04\x00\x00\x22\x00\x01\x00\x80\x08\
\x40\x00\x00\x20\x02\x10\x00\x00\x88\x00\x04\x00\x00\x22\x00\x01\
\x00\x80\x08\x40\x00\x00\x20\x02\x04\x80\x25\x00\x40\x04\x4c\xcf\
\xca\xea\xea\xea\xb4\x5e\xf0\xca\xca\xbc\x5f\xf0\x8a\xd3\x6e\x4d\
\x0e\xab\x9e\x5b\x3d\xa9\x3a\xb6\x3a\xa2\x3a\xa0\x3a\xd4\xd2\xc0\
\x96\xbb\xb8\x7a\x4a\x75\xc9\x32\xbf\xc8\xc9\xcd\x43\x01\x20\x00\
\x46\xe6\x98\xea\x35\xd5\x0b\x66\x03\x1f\x10\x01\x02\x40\x00\x08\
\x80\x25\xb6\x6f\xf5\xaa\xea\x37\x0c\x7e\x10\x01\x02\x40\x00\x08\
\x80\x69\xb8\x5f\xf5\xfe\xea\x44\x4b\x01\x22\x40\x00\x08\x00\x01\
\x30\x0d\x3b\xaa\x8f\x57\x0f\xb7\x14\x20\x02\x04\xc0\xd6\x71\x17\
\x00\xf3\x7e\xe7\x7f\xa6\xe1\x0f\x0b\xe7\xa8\x86\xbb\x03\x0e\xb7\
\x14\x02\x00\xd6\x6b\xff\xea\x43\xd5\x23\x2c\x05\x2c\x6c\x04\x9c\
\x9b\x5b\x04\x05\x00\xac\xd3\xab\xab\xe3\x2d\x03\x2c\xb4\x1d\xd5\
\x19\x76\x02\x16\x93\x6b\x00\xe6\x70\x08\x4e\xbb\x8e\xac\x2e\xa8\
\x0e\xb4\x14\xb0\x14\x96\xe2\x9a\x00\xd7\x00\xc0\xe6\x3b\xdd\xf0\
\x87\xa5\xe2\x9a\x00\x3b\x00\x76\x00\xec\x00\xec\xd6\xbd\xaa\xff\
\x12\x00\xb0\x94\x2e\x9d\xed\x04\x5c\x64\x07\xc0\x0e\x00\xdc\xd1\
\xb3\x0d\x7f\x58\x5a\xae\x09\x10\x00\x70\x97\x4e\xb2\x04\xb0\xd4\
\x7c\x1c\x20\x00\xe0\x4e\x3d\xda\x12\xc0\x24\x22\xc0\x2d\x82\x02\
\x00\x6e\xc7\xbb\x02\x98\x06\x1f\x07\x08\x00\xb8\x9d\x43\x2c\x01\
\xd8\x09\x40\x00\x30\x3d\xdb\x2c\x01\xd8\x09\x40\x00\x00\x60\x27\
\x00\x01\x00\xc0\x12\xef\x04\x9c\x25\x02\x04\x00\x00\x22\x00\x01\
\x00\x80\x08\x40\x00\x00\x20\x02\x10\x00\x00\x88\x00\x04\x00\x00\
\x22\x00\x01\x00\x80\x08\x40\x00\x00\x20\x02\x10\x00\x00\x88\x00\
\x04\x00\x00\x22\x00\x01\x00\x80\x08\x10\x00\x00\x20\x02\x04\x00\
\x00\x88\x00\x01\x00\x00\x22\x40\x00\x00\x80\x08\x10\x00\x00\x20\
\x02\x04\x00\x00\x88\x00\x01\x00\x00\x22\x40\x00\x00\x80\x08\x10\
\x00\x00\x20\x02\x04\x00\x00\x88\x00\x01\x00\x00\x22\x40\x00\x00\
\x80\x08\x10\x00\x00\x20\x02\x04\x00\x00\x22\x00\x01\x00\x80\x08\
\x40\x00\x00\x20\x02\x10\x00\x00\x88\x00\x01\x00\x00\x22\x40\x00\
\x00\x80\x08\x10\x00\x00\x20\x02\x04\x00\x00\x88\x00\x01\x00\x00\
\x22\x40\x00\x00\x80\x08\x10\x00\x00\x30\xaa\x08\x38\xa3\x7a\x88\
\x00\x00\x80\x69\x39\xaa\x3a\xb3\xba\x97\x00\x00\x80\x69\xf9\xde\
\xea\xcf\xab\xfd\x04\x00\x00\x4c\xcb\x29\xd5\xab\xa6\xfa\xe2\x57\
\x56\x57\x57\xa7\xf5\x82\x57\x56\xe6\xfd\x82\x57\x26\xfe\x07\x6e\
\x35\x80\xf1\xb8\x7e\xb6\x1b\x70\xc9\xd4\xe6\xa1\x1d\x00\x00\xa6\
\xec\x1e\xd5\xe9\x76\x00\xec\x00\xd8\x01\xb0\x03\x00\x4c\x73\x17\
\xe0\x81\xab\xab\xab\xdf\xb0\x03\x00\x00\xd3\xda\x05\xf8\xd1\xa9\
\xbd\x68\x01\x00\x00\xf5\x54\x01\x00\x00\xd3\xf3\x68\x01\x00\x00\
\xd3\x73\x84\x00\x00\x80\xe9\xd9\x2e\x00\x00\x60\x7a\x26\x77\x87\
\x92\x00\x00\x80\xfa\xc6\xd4\x5e\xb0\x00\x00\x80\xba\x58\x00\x00\
\xc0\xf4\x7c\x56\x00\x00\xc0\xf4\x9c\x35\xb5\x17\xec\x51\xc0\x73\
\x38\x84\x89\xff\x21\xf3\x28\x60\x60\x6c\xbe\x59\x3d\x60\x75\x75\
\xf5\x5b\x76\x00\x00\x60\x3a\xde\x53\x7d\x6b\x6a\x2f\xda\x0e\x80\
\x1d\x00\x3b\x00\xc0\x94\xf9\x3a\x60\x00\x98\xa0\xd7\x55\x97\x4c\
\xf1\x85\xdb\x01\xb0\x03\x60\x07\x00\x98\xaa\xf7\x55\x3f\xb3\xeb\
\xf7\xd2\xe4\xe6\xa1\x00\x10\x00\x02\x00\x98\xa0\x7f\xae\x9e\xdc\
\xf0\x11\x40\x53\x0c\x00\x1f\x01\x00\x30\x35\x17\x57\xcf\xbf\xed\
\xf0\x9f\x22\x01\x00\xc0\x94\x5c\x50\x9d\x50\x5d\x36\xf5\x85\x10\
\x00\x00\x4c\x69\xf8\x9f\x54\x5d\x61\x29\x04\x00\x00\x86\xbf\x00\
\x00\x00\xc3\x5f\x00\x00\x80\xe1\x2f\x00\x00\xc0\xf0\x17\x00\x00\
\x60\xf8\x0b\x00\x00\x30\xfc\x05\x00\x00\x18\xfe\x02\x00\x00\x0c\
\x7f\x01\x00\x00\x86\xbf\x00\x00\x00\xc3\x5f\x00\x00\x80\xe1\x2f\
\x00\x00\xc0\xf0\x17\x00\x00\x60\xf8\x0b\x00\x00\x0c\x7f\x04\x00\
\x00\x86\x3f\x02\x00\x00\xc3\x1f\x01\x00\x80\xe1\x8f\x00\x00\xc0\
\xf0\x17\x00\x00\x60\xf8\x0b\x00\x00\x30\xfc\x05\x00\x00\x18\xfe\
\x02\x00\x00\x0c\x7f\x01\x00\x00\x86\xbf\x00\x00\x00\xc3\x5f\x00\
\x00\x80\xe1\x2f\x00\x00\xc0\xf0\x17\x00\x00\x18\xfe\x86\xbf\x00\
\x00\xc0\xf0\x47\x00\x00\x60\xf8\x23\x00\x00\x30\xfc\x11\x00\x00\
\x18\xfe\x08\x00\x00\x0c\x7f\x04\x00\x00\x86\x3f\x02\x00\x00\xc3\
\x1f\x01\xc0\xbc\xdc\x6c\x09\x60\x52\x2e\xae\x4e\x35\xfc\x05\x00\
\x5c\x63\x09\x60\x52\xc3\xff\x29\xd5\x25\x96\x42\x00\xc0\xc5\x96\
\x00\x26\xe1\x82\xea\x04\xc3\x5f\x00\xc0\x2e\x9f\xb5\x04\x30\x89\
\xd0\xb7\xed\x2f\x00\xe0\x76\xce\xb6\x04\xb0\xf4\xc3\xdf\xb6\xff\
\x02\x58\x59\x5d\x5d\x9d\xd6\x0b\x5e\x59\x99\xf7\x0b\x5e\x99\xf8\
\x39\x77\x70\x75\x79\x75\x4f\x7f\xfc\x60\xe9\x2c\xf4\xd5\xfe\x53\
\x9b\x87\x76\x00\xd8\x6a\xd7\x55\xef\xb5\x0c\xb0\x94\xef\xfc\x6d\
\xfb\xdb\x01\xb0\x03\x60\x07\xe0\x6e\x1d\x39\x7b\xa7\x70\xa0\xa5\
\x80\xa5\x19\xfe\x0b\xbf\xed\x6f\x07\x00\x36\xdf\x57\xaa\xdf\xb2\
\x0c\x60\xf8\x63\x07\xc0\x0e\xc0\xf4\xec\x53\x7d\xa4\x3a\xc5\x52\
\xc0\xc2\x5a\xaa\x27\xfc\x4d\x6e\x1e\x0a\x00\x01\x30\x47\xf7\xab\
\xce\xa9\x1e\x61\x29\xc0\x3b\x7f\x01\xb0\xf5\xef\xc2\x60\x5e\xae\
\xac\x9e\x56\x7d\xc6\x52\x80\xe1\x8f\x00\x60\x5a\x2e\xab\x1e\x57\
\xbd\xc7\x52\xc0\x42\xf0\x84\x3f\x01\x00\x1b\xe6\xc6\xea\x45\xd5\
\x6b\x66\xff\x37\x30\xde\x77\xfe\x6e\xf5\x5b\x12\xae\x01\x98\xc3\
\x21\x38\xed\xee\xd6\x31\xb3\x10\xf8\xe9\xdc\x26\x08\x63\x1b\xfe\
\x4b\xbd\xed\xef\x22\x40\x01\x20\x00\xc6\xe1\x90\xea\x19\xd5\xc9\
\xd5\x71\xd5\x11\xd5\x7d\xab\x7d\x2d\x0d\x18\xfe\x02\x40\x00\x08\
\x00\x58\xb0\xdf\xb1\x96\xc0\xf0\x17\x00\xe3\xe0\x1a\x00\x00\xee\
\x8a\x0b\xfe\x04\x00\x00\x13\x1c\xfe\x4b\xf3\x90\x1f\x04\x00\x00\
\x86\x3f\x02\x00\x00\xc3\x5f\x00\x00\x60\xf8\x1b\xfe\x02\x00\x00\
\xc3\x1f\x01\x00\x80\xe1\x8f\x00\x00\xc0\xf0\x47\x00\x00\x60\xf8\
\x23\x00\x00\x30\xfc\x11\x00\x00\x18\xfe\x08\x00\x00\x0c\x7f\x04\
\x00\x00\x86\x3f\x02\x00\x00\xc3\x1f\x01\x00\x80\xe1\x8f\x00\x00\
\xc0\xf0\x47\x00\x00\x60\xf8\x23\x00\x00\x30\xfc\x11\x00\x00\x86\
\x3f\x08\x00\x00\xc3\x1f\x04\x00\x80\xe1\x8f\x00\x00\xc0\xf0\x47\
\x00\x00\x60\xf8\x23\x00\x96\xca\xad\x73\xfe\xf9\xdb\x9c\x76\xc0\
\x06\xba\xb8\x3a\xd5\xf0\x47\x00\xec\xde\x4d\x73\xfe\xf9\xf7\x74\
\xda\x01\x1b\xf8\xce\xff\x84\xea\x12\x4b\x81\x00\x18\x7f\x00\x1c\
\xec\xb4\x03\x36\x68\xf8\xdb\xf6\x67\x8f\xed\x27\x00\x04\x00\xb0\
\x70\x2e\xae\x4e\x5d\x5d\x5d\x35\xfc\xb1\x03\xb0\x0e\xd7\xcc\xf9\
\xe7\xdf\xdf\x69\x07\xec\xe5\xf0\x7f\x4a\xb6\xfd\x11\x00\xeb\xb6\
\x73\xce\x3f\xff\x18\xa7\x1d\xb0\x87\x7c\xe6\x8f\x00\x58\xe0\x00\
\x38\xda\x69\x07\xec\xe1\xf0\xf7\x99\x3f\x02\x60\x2f\x5c\x25\x00\
\x80\x05\xe3\x56\x3f\x04\xc0\x06\xf8\xda\x9c\x7f\xfe\x63\x9c\x76\
\xc0\x3a\xdf\xf9\xdb\xf6\x47\x00\x6c\x80\x4b\xe7\xfc\xf3\x8f\xaa\
\x0e\x77\xea\x01\x6b\x1c\xfe\xb6\xfd\x11\x00\x4b\x12\x00\x55\x4f\
\x74\xea\x01\xbb\x61\xdb\x1f\x01\xb0\xc1\x2e\x1c\xc1\x31\x3c\xd9\
\xa9\x07\xec\x66\xf8\xbb\xd5\x8f\x4d\xb5\xb2\xba\xba\x3a\xad\x17\
\xbc\xb2\xb2\x6f\xf5\xcd\xea\x1e\x73\x3c\x8c\x9d\xd5\x03\x9b\xff\
\x43\x89\x60\xab\xad\x5a\x82\xdd\xba\xa0\x3a\xc9\x43\x7e\xb0\x03\
\xb0\xf1\xbe\x3d\x82\x5d\x80\xc3\xaa\x53\x9c\x7e\xc0\x9d\x0d\xff\
\x6c\xfb\x23\x00\x36\xcd\xe7\x46\x70\x0c\x2f\x70\xfa\x01\xb7\xe1\
\x33\x7f\x04\xc0\x16\x38\x7f\x04\xc7\xf0\x9c\xea\xde\x4e\x41\x20\
\x9f\xf9\x23\x00\xb6\xcc\x3f\x8d\xe0\x18\x0e\xae\x7e\xc9\x29\x08\
\x93\xe7\x3e\x7f\xe6\x62\x8a\x17\x01\x56\x1d\x50\x7d\x63\xf6\xf7\
\x79\xda\x59\x1d\x51\x5d\xeb\x54\x64\x22\x5c\x04\xb8\xc6\x77\xfe\
\x53\xfb\xdd\x8c\x1d\x80\xad\x72\xe3\x48\x76\x01\x0e\xab\x7e\xde\
\x69\x08\x86\x3f\x08\x80\xad\xf3\xd1\x91\x1c\xc7\xaf\x57\x0f\x76\
\x2a\xc2\xa4\xd8\xf6\x47\x00\xcc\xd1\x19\x23\x39\x8e\x43\xaa\xdf\
\x76\x2a\xc2\xa4\x86\xbf\x5b\xfd\x98\xbb\xa9\x5e\x03\xb0\x2b\x7e\
\x2e\xad\x1e\x34\x82\xc3\x5a\x6d\x78\x3a\xe0\x39\x4e\x49\x96\xdc\
\xd4\x3f\xd8\x5e\xf3\xb6\xbf\x6b\x00\xb0\x03\xb0\x79\x6e\xad\x3e\
\x30\x96\x2e\xa9\xde\x59\x6d\x77\x4a\x82\xe1\x0f\x02\x60\xf3\xbd\
\x7f\x44\xc7\x72\x4c\xf5\xde\x59\x0c\x00\xcb\xc5\x67\xfe\x08\x80\
\x91\xf9\x64\xf5\x9f\x23\x3a\x9e\x67\x55\xaf\x70\x5a\xc2\xd2\xbd\
\xf3\xf7\x84\x3f\x04\xc0\xc8\x7c\xbb\x7a\xd7\xc8\x8e\xe9\xb7\x1b\
\x2e\x10\x02\x96\x63\xf8\xdb\xf6\x67\x94\xa6\x7c\x11\xe0\x2e\x47\
\x56\x5f\x1e\x59\x0c\x5d\xdf\xf0\x65\x41\xe7\x3a\x45\x59\x32\x53\
\xfa\x85\xb3\x57\x57\xfb\xbb\x08\x10\x3b\x00\x9b\xef\x2b\xd5\x27\
\x46\x76\x4c\xf7\x68\xb8\x40\xf1\x11\xfe\xf5\xc0\xc2\xbe\xf3\xb7\
\xed\x8f\x00\x58\x00\xbf\x37\xc2\x63\xba\x6f\x75\xa6\x08\x80\x85\
\x1c\xfe\xb6\xfd\x19\x3d\x1f\x01\xcc\xfe\xdf\xd5\x7f\x54\xc7\x8e\
\xf0\x90\xaf\x6e\xb8\x38\xf0\x93\x4e\x57\x96\xc0\xb2\xff\xc2\xd9\
\xb0\x87\xfc\xf8\x08\x00\x3b\x00\x5b\xf7\x4b\xe9\x4d\x23\x3d\xb6\
\x43\xab\x0f\x57\x3f\xe2\x5f\x13\x8c\xfe\x9d\xbf\x6d\x7f\xec\x00\
\x2c\xd8\x0e\x40\xd5\x81\x0d\x17\x03\x8e\xf5\xb9\xfc\x37\x54\xaf\
\xac\xde\xea\xb4\xc5\x0e\xc0\x28\x87\xff\x86\x6e\xfb\xdb\x01\xc0\
\x0e\xc0\xd6\x0e\xd8\xd7\x8d\xf8\xf8\x0e\xac\xde\xd2\x70\x5d\xc0\
\x03\xfc\xeb\x82\xd1\xf0\x90\x1f\xec\x00\x2c\xf8\x0e\xc0\xae\x21\
\xfb\xa5\xea\x21\x23\x7f\x19\x5f\xad\x5e\x32\x8b\x01\xb0\x03\xb0\
\x44\xef\xfc\xed\x00\x60\x07\x60\x7e\xbb\x00\xa7\x2f\xc0\x71\x3e\
\xb4\xe1\xdb\x0c\x3f\x54\x1d\xee\x5f\x1b\x78\xe7\x0f\x76\x00\xf6\
\x6e\x07\xa0\x86\x3b\x02\x3e\x55\x1d\xbf\x20\x2f\x69\x67\xf5\xda\
\x86\x2f\x13\xba\xd6\x29\x8d\x1d\x80\xc5\x7e\xe7\x6f\x07\x00\x01\
\x30\xbf\x00\xa8\x7a\x7c\x75\x5e\x8b\xb5\x43\xb2\xb3\xe1\x02\xc1\
\x37\x55\x57\x3a\xb5\x11\x00\x8b\x3b\xfc\x05\x00\x02\x60\x7e\x01\
\xd0\x6c\x98\xfe\xc2\x02\xbe\xc4\x1b\xaa\x0f\x56\xef\xae\x3e\x56\
\xdd\xe2\x34\x47\x00\x2c\xd6\xf0\x17\x00\x08\x80\xf9\x06\xc0\xf6\
\xea\xdf\xab\x1d\x0b\xfc\x72\xaf\x68\x78\xa4\xf0\x79\x0d\xdf\x2b\
\xf0\x35\xa7\x3c\x02\x60\xfc\xc3\x5f\x00\x20\x00\xe6\x1b\x00\x55\
\xcf\xac\xfe\x76\x89\x5e\xfe\xd7\xab\x7f\xad\xbe\x58\x5d\x58\x7d\
\xa1\xe1\xeb\x90\xaf\xad\xae\x9b\xfd\x05\x02\x60\xce\xc3\x5f\x00\
\x20\x00\xe6\x1f\x00\x55\x6f\xaf\x5e\xea\x54\x61\x37\x76\x36\x3c\
\xb6\x79\x67\xc3\x4e\xcb\x17\x1b\x3e\x8a\xf9\x67\x4b\xb3\xf0\x01\
\x30\x97\x67\xfb\x0b\x00\x04\xc0\xfc\x03\xe0\xa0\xea\x5f\x1a\xe7\
\xf7\x04\x30\x6e\x57\x57\xa7\x35\xdc\xae\xc9\x62\x06\xc0\xdc\xbe\
\xd8\x47\x00\xb0\xd9\x3c\x07\x60\xf7\xbe\x55\xbd\xa0\xe1\xe2\x3a\
\x58\x8f\x43\x67\xbb\x00\xff\x58\x3d\xce\x72\x78\xe7\x0f\x76\x00\
\x16\x6b\x07\x60\x97\xd3\xaa\x3f\x76\xca\xb0\x87\x6e\xae\x9e\x9c\
\x6f\x75\x5c\x94\x5f\x38\x73\x1f\xfe\x76\x00\xb0\x03\x30\x1e\xef\
\xaa\xde\x6c\x19\xd8\x43\xdb\xaa\xa7\x5a\x06\xc3\x1f\x04\xc0\x62\
\xfa\xe5\xea\x6c\xcb\x80\x3f\x6f\x86\x3f\xf8\x85\x34\x2d\x37\x57\
\xcf\x6b\x78\x06\x38\xac\xd7\xfd\x2d\x81\xe1\x0f\x02\x60\x71\x5d\
\x5d\x9d\xec\x97\x04\x7b\xe0\x14\x4b\x30\x5a\xbe\xd8\x87\xc9\x71\
\x11\xe0\x9e\x7b\x74\x75\x56\x75\x2f\xa7\x11\xeb\xb0\x7f\xc3\x4e\
\xd2\x54\xdd\xd4\x70\x3d\x84\x77\xfe\xbb\xe1\x22\x40\xec\x00\x8c\
\xd7\xa7\xab\x67\x35\xdc\x26\x08\x6b\x75\xc8\xc4\x5f\xff\x35\x86\
\x3f\x08\x80\x65\x70\x5e\xc3\x35\x01\x37\x59\x0a\x04\xc0\x9a\x7c\
\xc5\xf0\x07\x01\xb0\x2c\x3e\x56\x3d\xc7\x4e\x00\x02\x60\x4d\x3e\
\x63\xf8\x83\x00\x58\x26\x1f\xad\x4e\x6d\x7c\xdb\x9b\x08\x80\xb1\
\x39\xdb\xf0\x07\x01\xb0\x6c\xce\xa9\x9e\x56\x5d\x69\x29\xb8\x1b\
\x07\x4f\xfc\xf5\x7f\xb0\xf9\xee\x96\x19\xfe\x20\x00\x36\xc5\xf9\
\x0d\xb7\x12\x5d\x68\x29\x10\x00\x77\xea\x9a\xea\x3d\x86\x3f\x08\
\x80\x65\x74\xd1\x2c\x02\xce\xb3\x14\x08\x80\x3b\xf5\x86\xb6\xfe\
\xcb\xb5\x0c\x7f\x10\x00\x5b\xe2\xaa\xea\xa4\xea\xed\x96\x82\x3b\
\x38\xc8\x12\xf4\x95\xea\xb7\x0c\x7f\x10\x00\xcb\xea\xa6\xea\x17\
\x1a\xbe\x4a\xf8\x5a\xcb\x01\xb7\xf3\xba\xea\x8c\x2d\xf8\x39\x9e\
\xf0\x07\x02\x60\x6e\xde\x57\x3d\xb1\xfa\x0f\x4b\x41\x75\xab\x25\
\xf8\xce\x3a\xbc\xb0\xfa\xe2\x26\xbf\xf3\x3f\xb5\xba\xc2\x72\x83\
\x00\x98\x97\xcf\x56\x8f\xad\xde\xda\xe2\x7c\x1f\x3a\x9b\xe3\x16\
\x4b\xf0\x1d\x57\x36\xdc\x39\xb3\x19\xcf\x06\xf8\x74\x75\xa2\x77\
\xfe\x20\x00\xc6\xe0\xfa\xea\x65\xd5\x33\xab\x4b\x2d\xc7\x64\x5d\
\x65\x09\x6e\xe7\xb2\xea\x49\xd5\x5f\x6f\xe0\x3f\xf3\x03\xb3\x7f\
\xe6\x65\x96\x17\x04\xc0\x98\x7c\xa4\xfa\x81\xea\x1d\x76\x03\x26\
\xfb\xae\x97\xdb\xbb\xb6\x7a\x7e\xf5\x9a\xea\xc6\xbd\xf8\xe7\xdc\
\x50\x9d\x5e\xfd\x44\x75\x9d\x65\x85\xbb\xe7\xdb\x00\xe7\xeb\x89\
\xd5\x1b\xab\xc7\x38\x15\x27\xe3\x21\xd5\xd7\x2d\xc3\x5d\x3a\x66\
\x16\x02\x3f\x5d\x1d\xb8\xc6\xff\xcd\xf5\x0d\xd7\xda\xfc\x66\xc3\
\x6d\xb8\x4b\xc1\xb7\x01\x22\x00\x96\x3b\x00\x6a\xd8\x85\x39\xad\
\xe1\xaa\xe8\x07\x39\x25\x97\xda\x35\x0d\x5f\x1f\xed\x37\xfb\xee\
\x1d\x52\x3d\xa3\x3a\xb9\x3a\xae\x3a\xa2\xba\xef\x6c\xed\xfe\xa7\
\xfa\x6a\xc3\xb5\x35\x67\x36\x3c\x8a\x7b\xe9\xee\xb4\x11\x00\x08\
\x80\xe5\x0f\x80\x5d\xb6\x35\xdc\x32\xf8\x6b\xd5\xc3\x9c\x9a\x4b\
\xe9\x53\xd5\x13\x2c\x03\x02\x80\xb1\xbc\xfb\x64\x1c\x6e\xae\xde\
\x5d\x3d\xb2\xe1\xf9\x01\x1e\x27\xbc\x7c\xdc\x0a\x0a\x08\x00\xee\
\xd2\x0d\x0d\x4f\x10\x3c\xb6\xfa\xb1\xea\xef\xb3\x65\xbc\x2c\x3e\
\x61\x09\x80\xb1\xf0\x11\xc0\x62\x78\x58\xf5\xe2\xea\x45\xd5\x03\
\x9c\xb6\x0b\xe9\xfa\x6a\x47\x6e\x03\x64\x8d\x7c\x04\x80\x00\x10\
\x00\xb7\xb5\x6f\xc3\xc3\x4d\x9e\x57\x3d\x37\x17\x0d\x2e\x92\x37\
\x57\xaf\xb0\x0c\x08\x00\x04\x80\x00\xd8\x5b\xfb\x54\x8f\x6a\xf8\
\xd2\xa1\x93\xaa\x1f\x6e\xb8\x72\x9a\xf1\xf9\x7c\xf5\xf8\x86\xbb\
\x00\x40\x00\x20\x00\x04\xc0\x86\xef\x0e\x3c\xaa\xe1\x09\x68\x27\
\x54\xdf\xdf\x70\x4f\xf5\x01\x4e\xf3\xb9\x3a\xbf\xe1\x21\x37\x9e\
\xfe\x88\x00\x40\x00\x08\x80\x2d\x8d\x82\x87\x56\x47\x37\x3c\x80\
\x66\x47\x75\x78\x75\x9f\xea\xde\xd5\x61\xb3\xbf\x6f\xab\xb6\xcf\
\xfe\xfb\xec\x9d\x5b\xaa\xcb\xab\x4f\x56\x7f\xd1\xf0\x88\xdb\x9b\
\x2d\x0b\x02\x00\x01\x00\x00\xcc\x9d\xdb\x00\x01\x40\x00\x00\x00\
\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\
\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\
\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\
\x00\x00\x40\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\
\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\
\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\
\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x01\
\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\
\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\
\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\
\x00\x20\x00\x00\x00\x01\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\
\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\
\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\
\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\
\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\
\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\
\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\
\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x40\x00\x00\
\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\
\x00\x00\x01\x00\x00\x08\x00\x00\x60\x8e\xfe\x6f\x00\x84\x60\x47\
\x9d\x6c\x46\x2f\x1d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
\x82\
"
qt_resource_name = b"\
\x00\x08\
\x0a\x61\x5a\xa7\
\x00\x69\
\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0e\
\x06\x19\x61\xe7\
\x00\x65\
\x00\x64\x00\x69\x00\x74\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x69\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x0b\x21\x0f\x87\
\x00\x66\
\x00\x69\x00\x6c\x00\x65\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x08\
\x08\xc8\x58\x67\
\x00\x73\
\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0f\
\x07\x44\x3d\x87\
\x00\x65\
\x00\x64\x00\x69\x00\x74\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0a\
\x04\xed\x72\x47\
\x00\x62\
\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x35\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x0e\xcf\x90\xa7\
\x00\x70\
\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x08\
\x05\x52\x5a\x47\
\x00\x61\
\x00\x6e\x00\x6e\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0a\
\x04\xeb\x72\x47\
\x00\x62\
\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x33\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x09\x71\x36\x27\
\x00\x65\
\x00\x64\x00\x69\x00\x74\x00\x73\x00\x65\x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0a\
\x04\xea\x72\x47\
\x00\x62\
\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x34\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0d\
\x0f\x55\x06\x27\
\x00\x72\
\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x09\
\x07\xd8\xb7\x27\
\x00\x69\
\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0a\
\x04\xf1\x72\x47\
\x00\x62\
\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0a\
\x04\xe8\x72\x47\
\x00\x62\
\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x32\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x07\x50\x31\x47\
\x00\x65\
\x00\x6c\x00\x6c\x00\x69\x00\x70\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0d\
\x0b\x41\x99\xc7\
\x00\x68\
\x00\x65\x00\x6c\x00\x70\x00\x61\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x09\xa7\x0e\x47\
\x00\x66\
\x00\x69\x00\x6c\x00\x65\x00\x71\x00\x75\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\
"
qt_resource_struct = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x12\x00\x00\x00\x01\
\x00\x00\x01\x7e\x00\x00\x00\x00\x00\x01\x00\x01\xc1\xd7\
\x00\x00\x01\x12\x00\x00\x00\x00\x00\x01\x00\x01\x69\xd3\
\x00\x00\x00\xdc\x00\x00\x00\x00\x00\x01\x00\x01\x3d\xde\
\x00\x00\x00\x90\x00\x00\x00\x00\x00\x01\x00\x00\xa4\x01\
\x00\x00\x01\x64\x00\x00\x00\x00\x00\x01\x00\x01\xb8\x53\
\x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x00\xd1\x3c\
\x00\x00\x00\x16\x00\x00\x00\x00\x00\x01\x00\x00\x00\xd0\
\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x69\xfc\
\x00\x00\x01\x98\x00\x00\x00\x00\x00\x01\x00\x01\xcb\x62\
\x00\x00\x01\x4c\x00\x00\x00\x00\x00\x01\x00\x01\x77\xf1\
\x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\x3f\x76\
\x00\x00\x00\xf6\x00\x00\x00\x00\x00\x01\x00\x01\x47\x24\
\x00\x00\x01\xd4\x00\x00\x00\x00\x00\x01\x00\x02\x1f\x41\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x00\x38\x00\x00\x00\x00\x00\x01\x00\x00\x3b\x15\
\x00\x00\x01\xb4\x00\x00\x00\x00\x00\x01\x00\x01\xfb\x04\
\x00\x00\x00\xaa\x00\x00\x00\x00\x00\x01\x00\x00\xad\x7c\
\x00\x00\x01\x2c\x00\x00\x00\x00\x00\x01\x00\x01\x73\x3a\
"
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()
| NIRVANALAN/TU_rcm | resources.py | resources.py | py | 612,926 | python | ja | code | 2 | github-code | 36 | [
{
"api_name": "PyQt5.QtCore.qRegisterResourceData",
"line_number": 9381,
"usage_type": "call"
},
{
"api_name": "PyQt5.QtCore",
"line_number": 9381,
"usage_type": "name"
},
{
"api_name": "PyQt5.QtCore.qUnregisterResourceData",
"line_number": 9384,
"usage_type": "call"
},... |
24428229816 | import numpy as np
import matplotlib.pyplot as plt
import random
class Tuihuo:
path = []
def __init__(self, graph, num, value=0): # 初始化类
self.num = num
self.graph = graph
self.value = 0
def output_graph(self): # 输出初始图
for i in self.graph:
for j in i:
print(j, end=',')
print()
def distance(self, tuihuocurrent):
valuenow = 0
for i in range(self.num - 1):
valuenow += self.graph[tuihuocurrent[i]][tuihuocurrent[i + 1]]
valuenow += self.graph[tuihuocurrent[self.num - 1]][0]
return valuenow
def threetuihuo(self, tuihuocurrent, x, y, w):
if x > y:
x, y = y, x
if w > y:
w, y = y, w
if w > x:
w, x = x, w
temp1 = tuihuocurrent[x:y + 1] + tuihuocurrent[w + 1:x]
tuihuocurrent[w + 1:y + 1] = temp1
return tuihuocurrent
def calculate(self): # 计算近似最短路径并且将路径存储在path中
result = [] # 用于生成可视化图表
tuihuosolution = list(range(self.num))
valuenow = 0
valuenow = self.distance(tuihuosolution)
valuebest = valuenow
tuihuocurrent = tuihuosolution.copy()
tuihuonow = tuihuosolution.copy()
t = 100000 # 初始温度
t1 = 1 # 最后底线温度
r = 0.99999 # 降温参数
while t > t1:
# 使用两路扰乱和三路扰乱两种方式
p1 = np.random.rand()
if p1 > 0.5: # 使用二路扰乱
while 1:
x = random.randrange(1, self.num - 1)
y = random.randrange(1, self.num - 1) # 生成交换坐标点
if x != y:
break
tuihuocurrent[x], tuihuocurrent[y] = tuihuocurrent[y], tuihuocurrent[x]
else: # 使用三路扰乱
while 1:
x = random.randrange(1, self.num - 1)
y = random.randrange(1, self.num - 1)
w = random.randrange(1, self.num - 1) # 生成交换坐标点
if x != y and x != w and y != w:
break
tuihuocurrent = self.threetuihuo(tuihuocurrent, x, y, w)
valuethen = self.distance(tuihuocurrent)
# 判断是否接受该解
if valuethen < valuenow:
tuihuonow = tuihuocurrent.copy()
valuenow = valuethen
if valuethen < valuebest:
tuihuosolution = tuihuocurrent.copy()
valuebest = valuethen
elif np.random.rand() < np.exp(-(valuethen - valuebest) / t): # 一定概率在不是优解的情况下接受
valuenow = valuethen
tuihuonow = tuihuocurrent.copy()
else:
tuihuocurrent = tuihuonow.copy()
t = t * r
result.append(valuenow)
plt.plot(np.array(result))
plt.ylabel("valuenow")
plt.xlabel("t")
plt.show()
self.value = valuebest
return tuihuosolution
def print_outcome(self):
num = self.calculate()
print("模拟退火算法近似最短路径为",end='')
print(0, end='')
for i in range(len(num)):
if i != 0:
print("->%d" % num[i], end='')
print("-> 0")
print("模拟退火算法近似最短路径长度为" + str(self.value))
| blue-vegetable/AI_TSP_HOMEWORK | SA.py | SA.py | py | 3,558 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "numpy.random.rand",
"line_number": 53,
"usage_type": "call"
},
{
"api_name": "numpy.random",
"line_number": 53,
"usage_type": "attribute"
},
{
"api_name": "random.randrange",
"line_number": 56,
"usage_type": "call"
},
{
"api_name": "random.randrange... |
72172630823 | """
Inventarios Componentes v3, CRUD (create, read, update, and delete)
"""
from typing import Any
from sqlalchemy.orm import Session
from lib.exceptions import MyIsDeletedError, MyNotExistsError
from lib.safe_string import safe_string
from ...core.inv_componentes.models import InvComponente
from ..inv_categorias.crud import get_inv_categoria
from ..inv_equipos.crud import get_inv_equipo
def get_inv_componentes(
database: Session,
inv_categoria_id: int = None,
inv_equipo_id: int = None,
generacion: str = None,
) -> Any:
"""Consultar los componentes activos"""
consulta = database.query(InvComponente)
if inv_categoria_id is not None:
inv_categoria = get_inv_categoria(database, inv_categoria_id=inv_categoria_id)
consulta = consulta.filter(InvComponente.inv_categoria == inv_categoria)
if inv_equipo_id is not None:
inv_equipo = get_inv_equipo(database, inv_equipo_id=inv_equipo_id)
consulta = consulta.filter(InvComponente.inv_equipo == inv_equipo)
if generacion is not None:
generacion = safe_string(generacion)
if generacion != "":
consulta = consulta.filter_by(generacion=generacion)
return consulta.filter_by(estatus="A").order_by(InvComponente.id.desc())
def get_inv_componente(database: Session, inv_componente_id: int) -> InvComponente:
"""Consultar un componente por su id"""
inv_componente = database.query(InvComponente).get(inv_componente_id)
if inv_componente is None:
raise MyNotExistsError("No existe ese componente")
if inv_componente.estatus != "A":
raise MyIsDeletedError("No es activo ese componente, está eliminado")
return inv_componente
| PJECZ/pjecz-plataforma-web-api-key | plataforma_web/v4/inv_componentes/crud.py | crud.py | py | 1,709 | python | es | code | 0 | github-code | 36 | [
{
"api_name": "sqlalchemy.orm.Session",
"line_number": 17,
"usage_type": "name"
},
{
"api_name": "core.inv_componentes.models.InvComponente",
"line_number": 23,
"usage_type": "argument"
},
{
"api_name": "inv_categorias.crud.get_inv_categoria",
"line_number": 25,
"usage_ty... |
33815850991 | from django.shortcuts import get_object_or_404
from rest_framework.decorators import api_view, permission_classes
from rest_framework.response import Response
from rest_framework import status
from rest_framework.permissions import IsAdminUser, IsAuthenticated
from .models import Exercise
from .serializers import ExerciseSerializer
import requests
import os
from workouts.models import Workout
# Create your views here.
@api_view(['GET'])
@permission_classes([IsAuthenticated])
def api_exercises_list(request):
if request.method == 'GET':
url = 'https://exercisedb.p.rapidapi.com/exercises'
headers = {
'X-RapidAPI-Key': os.environ.get("EXERCISE_DB_RAPID_API_KEY"),
'X-RapidAPI-Host': 'exercisedb.p.rapidapi.com'
}
response = requests.get(url=url, headers=headers)
return Response(response.json(), status=status.HTTP_200_OK)
return Response(status=status.HTTP_400_BAD_REQUEST)
@api_view(['GET', 'POST'])
@permission_classes([IsAdminUser])
def admin_exercise_list(request):
if request.method == 'GET':
workout_id = request.query_params.get('workout_id')
if workout_id is not None:
exercises = Workout.objects.get(pk=workout_id).exercise_set.all()
serializer = ExerciseSerializer(exercises, many=True)
return Response(serializer.data)
if request.method == 'POST':
workout_id = request.data.pop('workouts_id')
serializer = ExerciseSerializer(data=request.data)
serializer.is_valid(raise_exception=True)
serializer.save()
new_exercise = get_object_or_404(
Exercise, pk=serializer.data.get('id'))
if new_exercise is not None:
workout = get_object_or_404(Workout, id=workout_id)
new_exercise.workouts.add(workout)
new_exercise = get_object_or_404(
Exercise, pk=serializer.data.get('id'))
serializer = ExerciseSerializer(new_exercise)
return Response(serializer.data, status=status.HTTP_201_CREATED)
return Response(status=status.HTTP_400_BAD_REQUEST)
@api_view(['GET', 'PATCH', 'DELETE'])
@permission_classes([IsAuthenticated])
def exercise_detail(request, pk):
exercise = get_object_or_404(Exercise, pk=pk)
if request.method == 'GET':
serializer = ExerciseSerializer(exercise)
return Response(serializer.data, status=status.HTTP_200_OK)
elif request.method == 'PATCH' and request.user.is_staff:
serializer = ExerciseSerializer(
exercise, data=request.data, partial=True)
serializer.is_valid(raise_exception=True)
serializer.save()
return Response(serializer.data, status=status.HTTP_200_OK)
elif request.method == 'DELETE' and request.user.is_staff:
exercise.delete()
return Response(status=status.HTTP_204_NO_CONTENT)
return Response(status=status.HTTP_400_BAD_REQUEST)
| christianbeckham/capstone-app | backend/exercises/views.py | views.py | py | 2,944 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "os.environ.get",
"line_number": 22,
"usage_type": "call"
},
{
"api_name": "os.environ",
"line_number": 22,
"usage_type": "attribute"
},
{
"api_name": "requests.get",
"line_number": 25,
"usage_type": "call"
},
{
"api_name": "rest_framework.response.R... |
40660876105 | # -*- coding:utf-8 -*-
import os
import sys
import time
import tensorflow as tf
import seq2seqModel
import getConfig
import io
gConfig = {}
gConfig=getConfig.get_config(config_file='seq2seq.ini')
vocab_inp_size = gConfig['enc_vocab_size']
vocab_tar_size = gConfig['dec_vocab_size']
embedding_dim=gConfig['embedding_dim']
units=gConfig['layer_size']
BATCH_SIZE=gConfig['batch_size']
max_length_inp,max_length_tar=20,20
def preprocess_sentence(w):
w ='start '+ w + ' end'
#print(w)
return w
def create_dataset(path, num_examples):
lines = io.open(path, encoding='UTF-8').read().strip().split('\n')
word_pairs = [[preprocess_sentence(w)for w in l.split('\t')] for l in lines[:num_examples]]
return zip(*word_pairs)
def max_length(tensor):
return max(len(t) for t in tensor)
def read_data(path,num_examples):
input_lang,target_lang=create_dataset(path,num_examples)
input_tensor,input_token=tokenize(input_lang)
target_tensor,target_token=tokenize(target_lang)
return input_tensor,input_token,target_tensor,target_token
def tokenize(lang):
lang_tokenizer = tf.keras.preprocessing.text.Tokenizer(num_words=gConfig['enc_vocab_size'], oov_token=3)
lang_tokenizer.fit_on_texts(lang)
tensor = lang_tokenizer.texts_to_sequences(lang)
tensor = tf.keras.preprocessing.sequence.pad_sequences(tensor, maxlen=max_length_inp,padding='post')
return tensor, lang_tokenizer
input_tensor,input_token,target_tensor,target_token= read_data(gConfig['seq_data'], gConfig['max_train_data_size'])
def train():
print("Preparing data in %s" % gConfig['train_data'])
steps_per_epoch = len(input_tensor) // gConfig['batch_size']
print(steps_per_epoch)
enc_hidden = seq2seqModel.encoder.initialize_hidden_state()
checkpoint_dir = gConfig['model_data']
ckpt=tf.io.gfile.listdir(checkpoint_dir)
if ckpt:
print("reload pretrained model")
seq2seqModel.checkpoint.restore(tf.train.latest_checkpoint(checkpoint_dir))
BUFFER_SIZE = len(input_tensor)
dataset = tf.data.Dataset.from_tensor_slices((input_tensor,target_tensor)).shuffle(BUFFER_SIZE)
dataset = dataset.batch(BATCH_SIZE, drop_remainder=True)
checkpoint_dir = gConfig['model_data']
checkpoint_prefix = os.path.join(checkpoint_dir, "ckpt")
start_time = time.time()
while True:
start_time_epoch = time.time()
total_loss = 0
for (batch, (inp, targ)) in enumerate(dataset.take(steps_per_epoch)):
batch_loss = seq2seqModel.train_step(inp, targ,target_token, enc_hidden)
total_loss += batch_loss
print(batch_loss.numpy())
step_time_epoch = (time.time() - start_time_epoch) / steps_per_epoch
step_loss = total_loss / steps_per_epoch
current_steps = +steps_per_epoch
step_time_total = (time.time() - start_time) / current_steps
print('训练总步数: {} 每步耗时: {} 最新每步耗时: {} 最新每步loss {:.4f}'.format(current_steps, step_time_total, step_time_epoch,
step_loss.numpy()))
seq2seqModel.checkpoint.save(file_prefix=checkpoint_prefix)
sys.stdout.flush()
def predict(sentence):
checkpoint_dir = gConfig['model_data']
seq2seqModel.checkpoint.restore(tf.train.latest_checkpoint(checkpoint_dir))
sentence = preprocess_sentence(sentence)
inputs = [input_token.word_index.get(i,3) for i in sentence.split(' ')]
inputs = tf.keras.preprocessing.sequence.pad_sequences([inputs],maxlen=max_length_inp,padding='post')
inputs = tf.convert_to_tensor(inputs)
result = ''
hidden = [tf.zeros((1, units))]
enc_out, enc_hidden = seq2seqModel.encoder(inputs, hidden)
dec_hidden = enc_hidden
dec_input = tf.expand_dims([target_token.word_index['start']], 0)
for t in range(max_length_tar):
predictions, dec_hidden, attention_weights = seq2seqModel.decoder(dec_input, dec_hidden, enc_out)
predicted_id = tf.argmax(predictions[0]).numpy()
if target_token.index_word[predicted_id] == 'end':
break
result += target_token.index_word[predicted_id] + ' '
dec_input = tf.expand_dims([predicted_id], 0)
return result
if __name__ == '__main__':
if len(sys.argv) - 1:
gConfig = getConfig.get_config(sys.argv[1])
else:
gConfig = getConfig.get_config()
print('\n>> Mode : %s\n' %(gConfig['mode']))
if gConfig['mode'] == 'train':
train()
elif gConfig['mode'] == 'serve':
print('Serve Usage : >> python3 app.py')
| zhangzhiqiangccm/NLP-project | chineseChatbotWeb/execute.py | execute.py | py | 4,645 | python | en | code | 120 | github-code | 36 | [
{
"api_name": "getConfig.get_config",
"line_number": 12,
"usage_type": "call"
},
{
"api_name": "io.open",
"line_number": 27,
"usage_type": "call"
},
{
"api_name": "tensorflow.keras.preprocessing.text.Tokenizer",
"line_number": 45,
"usage_type": "call"
},
{
"api_na... |
5603104189 | import discord
cogs_list = [
"help",
"unveil",
"bet",
"account"
]
class Dealer(discord.Bot):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
for cog in cogs_list:
self.load_extension(f"cogs.{cog}")
async def on_ready(self):
print(f"{self.user} has connected to Discord!")
| liang799/rivenDealer | bot.py | bot.py | py | 359 | python | en | code | 1 | github-code | 36 | [
{
"api_name": "discord.Bot",
"line_number": 11,
"usage_type": "attribute"
}
] |
12338769948 | ################011011100110010101101111####
### neo Command Line #######################
############################################
def getcmdlist():
cmds = {
"os" :"Open active Schedule View in Excel.",
"ov" :"Open selected views in Project Browser."
}
return cmds
def runcmd(cmd, msg, recallCL=False):
if cmd == 'os':
from lib.views import neocl_open_schedule_xl as os
os.ExportActiveScheduleViewToExcel()
elif cmd == 'ov':
from lib.views import neocl_views_open as ov
ov.OpenSelectedViews()
else:
from neocl import unknowncmd
unknowncmd(cmd, recallCL, getcmdlist()) | 0neo/pyRevit.neoCL | neoCL.extension/neocl_o.py | neocl_o.py | py | 700 | python | en | code | 7 | github-code | 36 | [
{
"api_name": "lib.views.neocl_open_schedule_xl.ExportActiveScheduleViewToExcel",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "lib.views.neocl_open_schedule_xl",
"line_number": 16,
"usage_type": "name"
},
{
"api_name": "lib.views.neocl_views_open.OpenSelectedViews",
... |
15442973460 | from __future__ import absolute_import, print_function
import json
import os
import tempfile
import mock
import mesos.cli.cfg
import mesos.cli.cmds.config
from .. import utils
config_path = os.path.normpath(os.path.join(
os.path.dirname(__file__), "..", "data", "config.json"))
class TestConfig(utils.MockState):
@mock.patch('os.environ', {"MESOS_CLI_CONFIG": config_path})
@utils.patch_args(["mesos-config"])
def test_output(self):
mesos.cli.cmds.config.CFG = mesos.cli.cfg.Config()
mesos.cli.cmds.config.main()
out = json.loads(self.stdout)
assert "master" in out["test"]
@mock.patch('os.environ', {"MESOS_CLI_CONFIG": config_path})
@utils.patch_args([
"mesos-config",
"master"
])
def test_get_key(self):
mesos.cli.cmds.config.CFG = mesos.cli.cfg.Config()
mesos.cli.cmds.config.main()
assert "zk://localhost:2181/mesos" in self.stdout
@utils.patch_args([
"mesos-config",
"master",
"zk://localhost:2181/mesos"
])
def test_set_key(self):
fd, fname = tempfile.mkstemp()
with open(fname, "w") as fobj:
fobj.write("{}")
try:
with mock.patch('os.environ', {"MESOS_CLI_CONFIG": fname}):
mesos.cli.cmds.config.CFG = mesos.cli.cfg.Config()
mesos.cli.cmds.config.main()
with open(fname, "r") as fobj:
assert "zk://localhost:2181" in json.loads(
fobj.read())["default"]["master"]
finally:
os.remove(fname)
| mesosphere-backup/mesos-cli | tests/integration/test_config.py | test_config.py | py | 1,613 | python | en | code | 116 | github-code | 36 | [
{
"api_name": "os.path.normpath",
"line_number": 14,
"usage_type": "call"
},
{
"api_name": "os.path",
"line_number": 14,
"usage_type": "attribute"
},
{
"api_name": "os.path.join",
"line_number": 14,
"usage_type": "call"
},
{
"api_name": "os.path.dirname",
"lin... |
7551769686 | from web3 import Web3, EthereumTesterProvider
from etherscan import Etherscan
import json
class Node:
def __init__(self, name, value, address, children=[]):
self.name = name
self.value = value
self.children = children
self.searched = False
self.address = Web3.toChecksumAddress(address)
class NodeOperations:
def __init__(self, web3, etherscan):
self.web3 = web3
self.etherscan = etherscan
def print_tree(self, node, level=0):
print(' ' * level + node.name + ": \t" + node.address)
for child in node.children:
self.print_tree(child, level+1)
def depth_first_search(self, node, depth, current_depth=0, nodeIterator=0):
if current_depth >= depth: #Escape after depth reached or exceeded
return
if node.searched == True:
return
availibleABI = True
#Handler for non verified smart contracts on etherscan
try:
contractABI = self.etherscan.get_contract_abi(node.address) #Use Etherscan API to get the contracts ABI
except:
print('Problem with the ABI')
availibleABI = False #unavailible ABI (contract code not verified)
if availibleABI: #If contract's ABI is verified
contractInstance = self.web3.eth.contract(address=node.address, abi=contractABI) #Use web3 Library to create an instantiation of the contract
contractABI = json.loads(contractABI) #convert ABI to json format
for i in range(len(contractABI)): #Examine all functions/methods/variables in the ABI
try:
if contractABI[i]['outputs'][0]['type'] == 'address': #Searching exclusively for addresses on the contract
if len(contractABI[i]['inputs']) == 0: #Check function call does not require input
childAddress = eval("contractInstance."+"functions."+contractABI[i]['name']+"()"+".call()") #RPC call to the contract, return the 20byte address
child = Node(contractABI[i]['name'], nodeIterator, childAddress, []) #create node
node.children.append(child) #Append child node
#nodeIterator += 1
#print(f'Searching node...')
elif len(contractABI[i]['inputs']) == 1 and contractABI[i]['inputs'][0]['type'] == 'uint256': #This is an array of addresses:
print('Searching Array Node...')
try:
for j in range(0,10):
#print(j)
childAddress = eval("contractInstance."+"functions."+contractABI[i]['name']+"("+str(j)+ ")"+".call()") #RPC call to the contract, return the 20byte address
child = Node(contractABI[i]['name'], nodeIterator, childAddress, []) #create node
node.children.append(child) #Append child node
nodeIterator += 1
#print(f'Searching node...') #NOTE: Might need to put a check in for 0x0000... etc address.
except:
break
else:
pass
except:
pass
for child in node.children:
child.name
self.depth_first_search(child, depth, current_depth+1, nodeIterator)
node.searched = True
else:
print(node.address)
node.name = 'NO ABI AVAILIBLE'
node.searched = True
pass | DoominEth/Web3DataSandbox | ContractCompossitionNode.py | ContractCompossitionNode.py | py | 3,793 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "web3.Web3.toChecksumAddress",
"line_number": 12,
"usage_type": "call"
},
{
"api_name": "web3.Web3",
"line_number": 12,
"usage_type": "name"
},
{
"api_name": "json.loads",
"line_number": 42,
"usage_type": "call"
}
] |
34168133396 | from bs4 import BeautifulSoup
import requests
def wsearch(word):
word = word.replace(" ", "-")
url = f"https://dictionary.cambridge.org/dictionary/english/{word}"
user_agent = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246'
headers = {'User-Agent': user_agent}
page = requests.get(url, headers=headers).text
doc = BeautifulSoup(page, 'html.parser')
try:
entries = doc.find(
class_="hfl-s lt2b lmt-10 lmb-25 lp-s_r-20 x han tc-bd lmt-20 english").find_all(class_="pr entry-body__el")
if entries == []:
# for a single entry
entries = doc.find(
class_="hfl-s lt2b lmt-10 lmb-25 lp-s_r-20 x han tc-bd lmt-20 english").find_all(class_="pr di superentry")
return entries
except AttributeError:
return None
def compileResult(entries):
id = 0
res = list()
for entry in entries:
# get the word
word = entry.find(class_="di-title").text
# get the word type
try:
wordType = entry.find(
True, class_="pos dpos").text
except AttributeError:
wordType = ''
# get the list of audio tags
audioTags = []
for tag in entry.find_all(class_="region dreg"):
audioTags.append(tag.text)
# get the list of audio links
audioLinks = []
for tag in entry.find_all('source', {"type": "audio/mpeg"}):
audioLinks.append("https://dictionary.cambridge.org" + tag['src'])
# merge the two lists
mergedAudioList = []
for tag, link in zip(audioTags, audioLinks):
mergedAudioList.append({"tag": tag,
"link": link})
groups = entry.find_all(class_="def-block ddef_block")
explanation = list()
for group in groups:
groupList = list()
groupText = group.find_all(
True, {"class": ["def ddef_d db", "eg deg"]})
for text in groupText:
c = ' '.join(text['class'])
if c == "def ddef_d db":
groupList.append(
{
"type": "main",
"content": text.text
}
)
elif c == "eg deg":
groupList.append(
{
"type": "example",
"content": text.text
}
)
explanation.append(groupList)
res.append(
{"id": id,
"word": word,
"wordType": wordType,
"audioLinks": mergedAudioList,
"explanation": explanation
}
)
id += 1
return res
if __name__ == "__main__":
entries = wsearch("hi")
res = compileResult(entries)
| Chris4496/TheDictionaryHubAPI | app/scrapers/cambridge.py | cambridge.py | py | 3,117 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "requests.get",
"line_number": 12,
"usage_type": "call"
},
{
"api_name": "bs4.BeautifulSoup",
"line_number": 13,
"usage_type": "call"
}
] |
8919279602 | import subprocess
import json
import argparse
import os
import requests
args = None
def main():
global args
parser = argparse.ArgumentParser(
description='update cloudflare dns records')
parser.add_argument('Domain',
metavar='domain',
type=str,
help='domain to update')
parser.add_argument('--dryrun',
action='store_true',
help='dry run')
parser.add_argument('--kind',
action='store',
type=str,
default='A',
help='type of record, e.g. A')
parser.add_argument('--zone',
action='store',
type=str,
help='dns zone')
parser.add_argument('--id',
action='store',
type=str,
help='ID of record to update')
parser.add_argument('--email',
action='store',
type=str,
help='email')
parser.add_argument('--api-token',
action='store',
type=str,
help='API token')
parser.add_argument('--api-key',
action='store',
type=str,
help='API key')
parser.add_argument('--a-name',
action='store',
type=str,
help='record A name')
parser.add_argument('--a-ip',
action='store',
type=str,
help='record A IP')
args = parser.parse_args()
domain = args.Domain
if (args.api_token == None):
atoken = os.getenv('CF_API_TOKEN')
if (atoken == None):
print("can't find CF_API_TOKEN")
os.exit(1)
args.api_token = atoken
if (args.api_key == None):
akey = os.getenv('CF_API_KEY')
if (akey == None):
print("can't find CF_API_KEY")
os.exit(1)
args.api_key = akey
if (args.zone== None):
azone = os.getenv('CF_ZONE_ID')
if (azone== None):
print("can't find CF_ZONE_ID")
os.exit(1)
args.zone = azone
find_gcp_vms_ip(callback1)
def find_gcp_vms_ip(cb):
instances = subprocess.Popen(['gcloud', 'compute', 'instances', 'list', '--format=json'], stdout=subprocess.PIPE).communicate()[0]
instances2 = json.loads(instances.decode('utf-8').replace('\n', ' '))
for inst in instances2:
name = inst['name']
interface = inst['networkInterfaces'][0]
if (interface == None):
return
accessConfigs = interface['accessConfigs']
if (accessConfigs == None):
return
externalIP = accessConfigs[0]['natIP']
if (externalIP == None):
return
cb(name,externalIP)
def cloudflare_update(name,ip,domain):
url = f"https://api.cloudflare.com/client/v4/zones/{args.zone}/dns_records"
# print(url)
bearer_token = f"Bearer {args.api_token}"
headers = {
'Authorization': bearer_token,
'Content-Type': 'application/json',
'Accept': 'application/json'
}
# print(bearer_token)
# 'X-Auth-Email': f"{args.email}",
# 'X-Auth-Key': f"{args.api_key}",
response = requests.post(
url,
headers=headers,
data = {
'type': args.kind,
'name': name,
'content': ip,
'priority': 10,
'ttl':120,
'proxied':'false'
}
)
print(response.json())
def callback1(name,externalIP):
#print(args)
#print(name,externalIP)
cloudflare_update(name,externalIP,args.Domain)
if __name__ == "__main__":
main()
| bobbae/examples-2021 | Python/cloudflare/update_dns.py | update_dns.py | py | 4,011 | python | en | code | 3 | github-code | 36 | [
{
"api_name": "argparse.ArgumentParser",
"line_number": 11,
"usage_type": "call"
},
{
"api_name": "os.getenv",
"line_number": 69,
"usage_type": "call"
},
{
"api_name": "os.exit",
"line_number": 72,
"usage_type": "call"
},
{
"api_name": "os.getenv",
"line_numbe... |
36041433257 | #!/usr/bin/python
import httplib
import random
import argparse
import sys
#Get options
parser = argparse.ArgumentParser(
description='Testing vote app')
parser.add_argument(
'-port',
type=int,
help='port of server',
default=8000)
parser.add_argument(
'-host',
type=str,
help='server name/ip',
default="localhost")
args = parser.parse_args()
#Color table
colorList = ["blue", "orange", "red", "green", "yellow" ]
colorSize = len(colorList) - 1
#Connect with server
conn = httplib.HTTPConnection(args.host, args.port)
#initial request
conn.request("GET", "/")
r1 = conn.getresponse()
#print(r1.status, r1.reason)
print(r1.read())
#vote loop
count = 0
while count < 100 :
count = count + 1
nColor = random.randint(0, colorSize)
conn.request("GET", "/v1/vote?color="+colorList[nColor])
r1 = conn.getresponse()
#print(r1.read())
print
# view current results
conn.request("GET", "/v1/listVotes")
r1 = conn.getresponse()
print(r1.read())
conn.request("GET", "/v1/listWorkers")
r1 = conn.getresponse()
print(r1.read())
conn.close() | JoseIbanez/testing | redis/p02-vote/client/c02.py | c02.py | py | 1,136 | python | en | code | 3 | github-code | 36 | [
{
"api_name": "argparse.ArgumentParser",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "httplib.HTTPConnection",
"line_number": 34,
"usage_type": "call"
},
{
"api_name": "random.randint",
"line_number": 47,
"usage_type": "call"
}
] |
14557064993 |
import sys
import cv2
import numpy
import copy
import scipy.misc
import itertools
from PIL import Image, ImageOps, ImageDraw
from scipy.ndimage import morphology, label
from copy import deepcopy
from operator import itemgetter
from statistics import median, mean
from math import sqrt
from random import randint
from scipy.misc import toimage
#sketch analysis
computer_vision_size_threshold = 50
threshold_block_width = 5 # minimum block width in pixels
threshold_block_height = 5 # minimum block height in pixels
#Scaling method
scaling_method = int(sys.argv[2]) # 0=Max 1=Min 2=MidRange 3=Mean 4=Median
#rules when picking a block type
check_overlap = 1 # Check that no blocks overlap
height_error_allowed_overlap = 0.03 # prevents rounding errors and gives bit of flexability
check_local_stability = 0 # Check that the structure is locally stable after each added block
check_global_stability = 1 # Check that the structure is globally stable after each added block
check_global_stability_method = 2 # 1 is enforce global stability only for blocks currently added (doesn't take into account future blocks)
# 2 is use both blocks added so far and sketch blocks for those not yet added
check_all_supporters = 1 # Check that all supporters for a block are present (could possibly not be required if global stability checking is enforced)
required_support_amount = 0.01
check_groups = 1 # Check that group height requirements are enforced
average_single_block_groups_heights = 1 # average the height of all single blocks in groups with other single blocks (helps with very poor drawings...)
height_error_allowed_groups = 0.05
use_similarity_grouping = 1
average_same_block_groups_heights = 1
error_percentage_shape = 0.05
check_era_relations = 0 # Check that ERA relations hold
check_composite_block_stability = 1 # check that composite blocks are stable (local)
shift_blocks_sideways = 1 # Makes structures more likely to pass but takes longer, Helps with making structures stable/no overlap
moves_to_try = [-0.8,0.7,-0.6,0.5,-0.4,0.3,-0.2,0.1]
# Alternative horizontal distance options:
#-0.4,0.35,-0.3,0.25,-0.2,0.15,-0.1,0.05
#-2.8,2.6,-2.4,2.2,-2.0,1.8,-1.6,1.4,-1.2,1.0,-0.8,0.6,-0.4,0.2
#-1.4,1.3,-1.2,1.1,-1.0,0.9,-0.8,0.7,-0.6,0.5,-0.4,0.3,-0.2,0.1
order_blocks_smart = 1 # re-order blocks into a more logical order based on support graph (rather than simply bottom to top)
#add extra blocks into sketch
add_extra_blocks_to_make_stable = 1 # add extra blocks to sketch to make structure globally stable
push_back_distance = 5 # distance to push extra blocks inwards (in pixels), helps deal with minor imperfections in the sketches / vision
#generate composite blocks
composite_blocks_allowed = 1 # composite blocks are allowed within the structure
rearrange_special_block_order = 1 # also include rearrangements of composite blocks as alternative options
max_composite_block_width = 3 # number of blocks wide that a composite block can be
composite_block_interweaving = 1
composite_block_penalty_picking = 1.5 # error difference when picking block type multiplied by this value if it is composite
composite_block_penalty_end = 0.0 # final error value score multiplied by this times ratio of composite blocks to non-composite blocks (NOT CURRENTLY INCLUDED)
limit_number_block_type_changes = 1 # limit the number of times a block type can change before rolling back a block
max_number_block_type_changes = 20 # increasing will give better final results but dramatically increases generation time, when using composite blocks
# SHOULD ONLY BE USED ON ACCURATE STRUCTURES WITH ORTHOGONAL/RECTILINEAR POLYGONS
corner_splitting_allowed = int(sys.argv[3]) # split polygons into rectangles based on their corners
seperate_vision_corners = 1 # 0 = associate each corner with the MBR that it is within (problem if within two or more MBRs)
# 1 = associte each corner with the MBR whose original shape it is closest too
max_distance_allowed = 3000 # maximum distance a corner can be from an MBR (removes dots) ERROR WHEN STRUCTURE HAS HOLE IN IT!!!
corner_detection_quality_threshold = 0.2 # quality of corner required for detection
corner_detection_min_distance = 20 # minimum ditance between corners (euclidean)
threshold_corner_amount_x = 10 # make x values for corners same if wihtin this pixel distance
threshold_corner_amount_y = 10 # make y values for corners same if wihtin this pixel distance
add_togethor_similar_x = 1 # combines groups if they share a block
add_togethor_similar_y = 1
GARY_INITIAL = 1
MATTHEW_INITIAL = 1
OTHER_INITIAL = 1
ground = -3.5 # position of the level ground
# blocks number and size
blocks = {'1':[0.84,0.84], '2':[0.85,0.43], '3':[0.43,0.85], '4':[0.43,0.43],
'5':[0.22,0.22], '6':[0.43,0.22], '7':[0.22,0.43], '8':[0.85,0.22],
'9':[0.22,0.85], '10':[1.68,0.22], '11':[0.22,1.68],
'12':[2.06,0.22], '13':[0.22,2.06]}
original_number_blocks = len(blocks)
# blocks number and name
# (blocks 3, 7, 9, 11 and 13) are their respective block names rotated 90 derees clockwise
block_names = {'1':"SquareHole", '2':"RectFat", '3':"RectFat", '4':"SquareSmall",
'5':"SquareTiny", '6':"RectTiny", '7':"RectTiny", '8':"RectSmall",
'9':"RectSmall",'10':"RectMedium",'11':"RectMedium",
'12':"RectBig",'13':"RectBig"}
# Generic list merging functions
def mergeOrNot(list1,list2):
merge=False
for item in list1:
if item in list2:
merge=True
break
return merge
def uniqueList(list1,list2):
result = list1
for j in list2:
if j not in list1:
result.append(j)
return result
def cleverMergeLists(lists):
anotherLoopRequired=False
newList = []
for myList in lists:
addMyList=True
if not anotherLoopRequired:
for myList2 in lists:
if not anotherLoopRequired:
if(myList==myList2):
continue
if(mergeOrNot(myList,myList2)):
anotherLoopRequired=True
addMyList=False
newList.append(uniqueList(myList,myList2))
else:
newList.append(myList2)
if(addMyList):
newList.append(myList)
if anotherLoopRequired:
return cleverMergeLists(newList)
else:
return newList
# COMPUTER VISION ANALYSIS FUNCTIONS
# returns the MBRs for a given image
def boxes(orig):
img = ImageOps.grayscale(orig)
im = numpy.array(img)
# Inner morphological gradient.
im = morphology.grey_dilation(im, (3, 3)) - im
# Binarize.
mean, std = im.mean(), im.std()
t = mean + std
im[im < t] = 0
im[im >= t] = 1
# Connected components.
lbl, numcc = label(im)
# Size threshold.
min_size = computer_vision_size_threshold # pixels
box = []
for i in range(1, numcc + 1):
py, px = numpy.nonzero(lbl == i)
if len(py) < min_size:
im[lbl == i] = 0
continue
xmin, xmax, ymin, ymax = px.min(), px.max(), py.min(), py.max()
# Four corners and centroid.
box.append([
[(xmin, ymin), (xmax, ymin), (xmax, ymax), (xmin, ymax)],
(numpy.mean(px), numpy.mean(py))])
return im.astype(numpy.uint8) * 255, box
# returns both the MBRs for a given image and the segmented sections of the image
def boxes_sep(orig):
img = ImageOps.grayscale(orig)
im = numpy.array(img)
# Inner morphological gradient.
im = morphology.grey_dilation(im, (3, 3)) - im
# Binarize.
mean, std = im.mean(), im.std()
t = mean + std
im[im < t] = 0
im[im >= t] = 1
# Connected components.
lbl, numcc = label(im)
# Size threshold.
min_size = computer_vision_size_threshold # pixels
box = []
segmented_images = []
for i in range(1, numcc + 1):
im2 = deepcopy(lbl)
py, px = numpy.nonzero(lbl == i)
if len(py) < min_size:
im[lbl == i] = 0
continue
segmented_images.append([])
for j in range(len(lbl)):
for k in range(len(lbl[j])):
if lbl[j][k] == i:
segmented_images[-1].append([k,j])
for i in range(1, numcc + 1):
py, px = numpy.nonzero(lbl == i)
if len(py) < min_size:
im[lbl == i] = 0
continue
xmin, xmax, ymin, ymax = px.min(), px.max(), py.min(), py.max()
# Four corners and centroid.
box.append([
[(xmin, ymin), (xmax, ymin), (xmax, ymax), (xmin, ymax)],
(numpy.mean(px), numpy.mean(py))])
return im.astype(numpy.uint8) * 255, box, segmented_images
print("DOING COMPUTER VISION")
# find the corners for the given image
img = cv2.imread(sys.argv[1])
img_orig = copy.copy(img)
grayimg = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
corners = cv2.goodFeaturesToTrack(grayimg,100,corner_detection_quality_threshold,corner_detection_min_distance)
corners = numpy.float32(corners)
for item in corners:
x,y = item[0]
cv2.circle(img,(x,y),5,255,-1)
Image.fromarray(img).save("sketch_corners.jpg")
new_corners = []
for item in corners:
x,y = item[0]
new_corners.append([x,y])
corners = deepcopy(new_corners)
print("Number of corners found:")
print(len(corners))
# find the MBRs for the given image
orig = Image.open(sys.argv[1])
if (seperate_vision_corners == 1) and (corner_splitting_allowed == 1):
im, box, seg_points = boxes_sep(orig)
else:
im, box = boxes(orig)
Image.fromarray(im).save("sketch_lines.jpg")
# Draw perfect rectangles and the component centroid.
img = Image.fromarray(im)
visual = img.convert('RGB')
draw = ImageDraw.Draw(visual)
for b, centroid in box:
draw.line(b + [b[0]], fill='yellow')
cx, cy = centroid
draw.ellipse((cx - 2, cy - 2, cx + 2, cy + 2), fill='red')
visual.save("sketch_MBRs.jpg")
# Draw perfect rectangles and the component centroid.
img = Image.fromarray(im)
visual = img.convert('RGB')
draw = ImageDraw.Draw(visual)
for b, centroid in box:
draw.rectangle([b[0],b[2]], fill='white')
visual.save("sketch_MBRs_filled.jpg")
all_boxes = []
# bounding boxes for all rectangles found
# all boxes is a list of all blocks [x,y,w,h], center points (x,y) and width (w) and height (h)
for b, centroid in box:
width = float(b[1][0] - b[0][0])
height = float(b[2][1] - b[0][1])
center_x = float(b[0][0]+(width/2.0))
center_y = float(b[0][1]+(height/2.0))
all_boxes.append([center_x,center_y,width,height])
#all_boxes.append([centroid[0],centroid[1],width,height])
# remove all boxes with a width or height less than size threshold (wrong)
# already done in computer vision section
new_all_boxes = []
for box in all_boxes:
if (box[2] > threshold_block_width) and (box[3] > threshold_block_height):
new_all_boxes.append(box)
all_boxes = deepcopy(new_all_boxes)
# remove all boxes that are fully inside other boxes (holes)
to_remove = []
for i in range(len(all_boxes)):
for j in range(len(all_boxes)):
if i!=j:
if ((all_boxes[i][0]-(all_boxes[i][2]/2.0)) > (all_boxes[j][0]-(all_boxes[j][2]/2.0))):
if ((all_boxes[i][0]+(all_boxes[i][2]/2.0)) < (all_boxes[j][0]+(all_boxes[j][2]/2.0))):
if ((all_boxes[i][1]-(all_boxes[i][3]/2.0)) > (all_boxes[j][1]-(all_boxes[j][3]/2.0))):
if ((all_boxes[i][1]+(all_boxes[i][3]/2.0)) < (all_boxes[j][1]+(all_boxes[j][3]/2.0))):
to_remove.append(i)
new_all_boxes = []
for i in range(len(all_boxes)):
if i not in to_remove:
new_all_boxes.append(all_boxes[i])
all_boxes = deepcopy(new_all_boxes)
if (seperate_vision_corners == 1) and (corner_splitting_allowed == 1):
new_seg_points = []
for i in range(len(seg_points)):
if i not in to_remove:
new_seg_points.append(seg_points[i])
seg_points = deepcopy(new_seg_points)
# split non-rectangular orthogonal polygons into rectangles
if (corner_splitting_allowed==1):
if seperate_vision_corners == 1:
print("SPLITTING CORNERS")
# associte each corner with the MBR whose original shape it is closest too
corner_association = []
for j in range(len(seg_points)):
corner_association.append([])
closest_corners = []
to_remove = []
for c in corners:
min_distance = 99999999
closest_seg = -1
for j in range(len(seg_points)):
for k in seg_points[j]:
x1 = c[0]
x2 = k[0]
y1 = c[1]
y2 = k[1]
distance = (sqrt( (x2 - x1)**2 + (y2 - y1)**2 ))
if distance < min_distance:
min_distance = distance
closest_seg = j
if min_distance > max_distance_allowed:
to_remove.append(c)
else:
closest_corners.append(closest_seg)
for c in to_remove:
corners.remove(c)
for j in range(len(corners)):
corner_association[closest_corners[j]].append(corners[j])
else:
# associate each corner with the MBR that it is within (problem if within two or more MBRs)
corner_association = []
for i in range(len(all_boxes)):
corner_association.append([])
for i in range(len(corners)):
mbr_within = -1
extra_give = 5
found_counter = 0
for j in range(len(all_boxes)):
if corners[i][0] < all_boxes[j][0]+(all_boxes[j][2]/2.0)+extra_give:
if corners[i][0] > all_boxes[j][0]-(all_boxes[j][2]/2.0)-extra_give:
if corners[i][1] < all_boxes[j][1]+(all_boxes[j][3]/2.0)+extra_give:
if corners[i][1] > all_boxes[j][1]-(all_boxes[j][3]/2.0)-extra_give:
mbr_within = j
found_counter = found_counter+1
if mbr_within == -1:
print("error: no MBR found to associate with")
if found_counter > 1:
print("error: too many MBR possibilities")
corner_association[mbr_within].append(corners[i])
# split up every shape with more than 5 corners into multiple rectangles
final_to_remove = []
final_to_add = []
for i in range(len(all_boxes)):
if len(corner_association[i]) > 5:
if (len(corner_association[i]) % 2) == 1:
print("error: odd number of associated corners")
# make the y values similar
split_lines_y = []
split_y = []
for c in corner_association[i]:
found = 0
for y in range(len(split_lines_y)):
max_y = max([sublist[1] for sublist in split_lines_y[y]])
min_y = min([sublist[1] for sublist in split_lines_y[y]])
if min_y < c[1] + threshold_corner_amount_y:
if max_y > c[1] - threshold_corner_amount_y:
split_lines_y[y].append(c)
found = found+1
if found == 0:
split_lines_y.append([c])
split_y.append([])
if found > 1:
print("error: multiple y values found")
if add_togethor_similar_y == 1:
split_lines_y = cleverMergeLists(split_lines_y)
for y in range(len(split_lines_y)):
split_y[y] = 0
for j in split_lines_y[y]:
split_y[y] = split_y[y] + j[1]
split_y[y] = split_y[y] / len(split_lines_y[y])
new_cor = []
for c in range(len(corner_association[i])):
match = 0
for j in range(len(split_lines_y)):
if corner_association[i][c] in split_lines_y[j]:
match = 1
new_cor.append([corner_association[i][c][0],split_y[j]])
if match == 0:
print("error: no matching y value found")
corner_association[i] = deepcopy(new_cor)
# make the x values similar
split_lines_x = []
split_x = []
for c in corner_association[i]:
found = 0
for x in range(len(split_lines_x)):
max_x = max([sublist[0] for sublist in split_lines_x[x]])
min_x = min([sublist[0] for sublist in split_lines_x[x]])
if min_x < c[0] + threshold_corner_amount_x:
if max_x > c[0] - threshold_corner_amount_x:
split_lines_x[x].append(c)
found = found+1
if found == 0:
split_lines_x.append([c])
split_x.append([])
if found > 1:
print("error: multiple x values found")
if add_togethor_similar_x == 1:
split_lines_x = cleverMergeLists(split_lines_x)
for x in range(len(split_lines_x)):
split_x[x] = 0
for j in split_lines_x[x]:
split_x[x] = split_x[x] + j[0]
split_x[x] = split_x[x] / len(split_lines_x[x])
new_cor = []
for c in range(len(corner_association[i])):
match = 0
for j in range(len(split_lines_x)):
if corner_association[i][c] in split_lines_x[j]:
match = 1
new_cor.append([split_x[j],corner_association[i][c][1]])
if match == 0:
print("error: no matching x value found")
corner_association[i] = deepcopy(new_cor)
# find horizontal and vertical edges
y_orderings = []
x_orderings = []
edges_all_x = []
edges_all_y = []
for c in corner_association[i]:
chosen_x = 0
chosen_y = 0
for j in range(len(x_orderings)):
if c[0] == x_orderings[j][0][0]:
x_orderings[j].append(c)
chosen_x = 1
if chosen_x == 0:
x_orderings.append([c])
for j in range(len(y_orderings)):
if c[1] == y_orderings[j][0][1]:
y_orderings[j].append(c)
chosen_y = 1
if chosen_y == 0:
y_orderings.append([c])
for xx in range(len(x_orderings)):
x_orderings[xx] = sorted(x_orderings[xx], key = lambda x: int(x[1]))
for yy in range(len(y_orderings)):
y_orderings[yy] = sorted(y_orderings[yy], key = lambda x: int(x[0]))
connect = True
for o in range(len(x_orderings)):
for c in range(len(x_orderings[o])):
if c < len(x_orderings[o]):
if connect == True:
edges_all_x.append([x_orderings[o][c],x_orderings[o][c+1]])
connect = False
else:
connect = True
for o in range(len(y_orderings)):
for c in range(len(y_orderings[o])):
if c < len(y_orderings[o]):
if connect == True:
edges_all_y.append([y_orderings[o][c],y_orderings[o][c+1]])
connect = False
else:
connect = True
# associate edges with each corner
corner_edges = []
for c in corner_association[i]:
edge_ver = []
edge_hor = []
for e in edges_all_x:
if c in e:
edge_ver = e
for e in edges_all_y:
if c in e:
edge_hor = e
corner_edges.append([edge_hor,edge_ver])
# identify concave and convex corners
convex_corners = [] # point outside
concave_corners = [] # point inside (ones that we want/use)
ori_edges_all_x = deepcopy(edges_all_x)
for j in range(len(corner_edges)):
point_to_test = deepcopy(corner_association[i][j])
shift_amount_corner_test = 0.01
if corner_edges[j][0][0][0] < corner_edges[j][0][1][0]:
if corner_edges[j][0][0][0] == point_to_test[0]:
point_to_test[0] = point_to_test[0]-shift_amount_corner_test
else:
point_to_test[0] = point_to_test[0]+shift_amount_corner_test
else:
if corner_edges[j][0][0][0] == point_to_test[0]:
point_to_test[0] = point_to_test[0]+shift_amount_corner_test
else:
point_to_test[0] = point_to_test[0]-shift_amount_corner_test
if corner_edges[j][1][0][1] < corner_edges[j][1][1][1]:
if corner_edges[j][1][0][1] == point_to_test[1]:
point_to_test[1] = point_to_test[1]-shift_amount_corner_test
else:
point_to_test[1] = point_to_test[1]+shift_amount_corner_test
else:
if corner_edges[j][1][0][1] == point_to_test[1]:
point_to_test[1] = point_to_test[1]+shift_amount_corner_test
else:
point_to_test[1] = point_to_test[1]-shift_amount_corner_test
num_line_intersections = 0
for linex in edges_all_x:
if linex[0][1] < linex[1][1]:
if point_to_test[1] < linex[1][1]:
if point_to_test[1] > linex[0][1]:
if point_to_test[0] > linex[0][0]:
num_line_intersections = num_line_intersections + 1
else:
if point_to_test[1] > linex[1][1]:
if point_to_test[1] < linex[0][1]:
if point_to_test[0] > linex[0][0]:
num_line_intersections = num_line_intersections + 1
if (num_line_intersections%2) == 0:
convex_corners.append(j)
else:
concave_corners.append(j)
# identify extra horzontal edges between concave corners
extra_edges_hor = []
for j in concave_corners:
current_point = corner_association[i][j]
intersecting_lines = []
for linex in edges_all_x:
if linex[0][0]!=current_point[0]:
if linex[0][1] < linex[1][1]:
if current_point[1] < linex[1][1]+shift_amount_corner_test:
if current_point[1] > linex[0][1]-shift_amount_corner_test:
intersecting_lines.append(linex)
else:
if current_point[1] > linex[1][1]-shift_amount_corner_test:
if current_point[1] < linex[0][1]+shift_amount_corner_test:
intersecting_lines.append(linex)
left_intersecting_closest = []
left_distance = 99999999
right_intersecting_closest = []
right_distance = 99999999
for line in intersecting_lines:
if current_point[0] > line[0][0]:
if current_point[0] - line[0][0] < left_distance:
left_distance = current_point[0] - line[0][0]
left_intersecting_closest = line
else:
if line[0][0] - current_point[0] < right_distance:
right_distance = line[0][0] - current_point[0]
right_intersecting_closest = line
extra_edges_hor.append([current_point,[right_intersecting_closest[0][0],current_point[1]]])
extra_edges_hor.append([[left_intersecting_closest[0][0],current_point[1]],current_point])
# identify extra vertical edges between concave corners
extra_edges_ver = []
for j in concave_corners:
current_point = corner_association[i][j]
intersecting_lines = []
for liney in edges_all_y:
if liney[0][1]!=current_point[1]:
if liney[0][0] < liney[1][0]:
if current_point[0] < liney[1][0]+shift_amount_corner_test:
if current_point[0] > liney[0][0]-shift_amount_corner_test:
intersecting_lines.append(liney)
else:
if current_point[0] > liney[1][0]-shift_amount_corner_test:
if current_point[0] < liney[0][0]+shift_amount_corner_test:
intersecting_lines.append(liney)
up_intersecting_closest = []
up_distance = 99999999
down_intersecting_closest = []
down_distance = 99999999
for line in intersecting_lines:
if current_point[1] > line[0][1]:
if current_point[1] - line[0][1] < up_distance:
up_distance = current_point[1] - line[0][1]
up_intersecting_closest = line
else:
if line[0][1] - current_point[1] < down_distance:
down_distance = line[0][1] - current_point[1]
down_intersecting_closest = line
extra_edges_ver.append([current_point,[current_point[0],up_intersecting_closest[0][1]]])
extra_edges_ver.append([[current_point[0],down_intersecting_closest[0][1]],current_point])
# remove duplicates
extra_edges_ver2 = []
extra_edges_hor2 = []
for j in extra_edges_ver:
if j not in extra_edges_ver2:
extra_edges_ver2.append(j)
for j in extra_edges_hor:
if j not in extra_edges_hor2:
extra_edges_hor2.append(j)
extra_edges_ver = deepcopy(extra_edges_ver2)
extra_edges_hor = deepcopy(extra_edges_hor2)
#order edges (left to right, top to bottom)
for edge_test in range(len(extra_edges_ver)):
if extra_edges_ver[edge_test][0][1] > extra_edges_ver[edge_test][1][1]:
extra_edges_ver[edge_test] = [extra_edges_ver[edge_test][1],extra_edges_ver[edge_test][0]]
for edge_test in range(len(extra_edges_hor)):
if extra_edges_hor[edge_test][0][0] > extra_edges_hor[edge_test][1][0]:
extra_edges_hor[edge_test] = [extra_edges_hor[edge_test][1],extra_edges_hor[edge_test][0]]
for edge_test in range(len(edges_all_x)):
if edges_all_x[edge_test][0][1] > edges_all_x[edge_test][1][1]:
edges_all_x[edge_test] = [edges_all_x[edge_test][1],edges_all_x[edge_test][0]]
for edge_test in range(len(edges_all_y)):
if edges_all_y[edge_test][0][0] > edges_all_y[edge_test][1][0]:
edges_all_y[edge_test] = [edges_all_y[edge_test][1],edges_all_y[edge_test][0]]
#split extra edges into two if it intersects another extra edge
no_change = 0
while(no_change==0):
to_add_hor = []
to_add_ver = []
to_remove_hor = []
to_remove_ver = []
no_change = 1
for j in extra_edges_hor:
for k in extra_edges_ver:
if j[0][0] < k[0][0]:
if j[1][0] > k[0][0]:
if k[0][1] < j[0][1]:
if k[1][1] > j[0][1]:
to_add_hor.append([j[0],[k[0][0],j[0][1]]])
to_add_hor.append([[k[0][0],j[0][1]],j[1]])
to_remove_hor.append(j)
to_add_ver.append([k[0],[k[0][0],j[0][1]]])
to_add_ver.append([[k[0][0],j[0][1]],k[1]])
to_remove_ver.append(k)
no_change = 0
if no_change == 0:
extra_edges_hor.append(to_add_hor[0])
extra_edges_hor.append(to_add_hor[1])
extra_edges_hor.remove(to_remove_hor[0])
extra_edges_ver.append(to_add_ver[0])
extra_edges_ver.append(to_add_ver[1])
extra_edges_ver.remove(to_remove_ver[0])
#get all touching line points for creating small blocks
all_touching_line_points = []
for j in corner_association[i]:
if j not in all_touching_line_points:
all_touching_line_points.append(j)
for j in extra_edges_ver:
for k in j:
if k not in all_touching_line_points:
all_touching_line_points.append(k)
for j in extra_edges_hor:
for k in j:
if k not in all_touching_line_points:
all_touching_line_points.append(k)
# mark extra points that were not already corners
extra_added_points = []
for j in all_touching_line_points:
if j not in corner_association[i]:
extra_added_points.append(j)
#order edges (left to right, top to bottom)
for edge_test in range(len(extra_edges_ver)):
if extra_edges_ver[edge_test][0][1] > extra_edges_ver[edge_test][1][1]:
extra_edges_ver[edge_test] = [extra_edges_ver[edge_test][1],extra_edges_ver[edge_test][0]]
for edge_test in range(len(extra_edges_hor)):
if extra_edges_hor[edge_test][0][0] > extra_edges_hor[edge_test][1][0]:
extra_edges_hor[edge_test] = [extra_edges_hor[edge_test][1],extra_edges_hor[edge_test][0]]
for edge_test in range(len(edges_all_x)):
if edges_all_x[edge_test][0][1] > edges_all_x[edge_test][1][1]:
edges_all_x[edge_test] = [edges_all_x[edge_test][1],edges_all_x[edge_test][0]]
for edge_test in range(len(edges_all_y)):
if edges_all_y[edge_test][0][0] > edges_all_y[edge_test][1][0]:
edges_all_y[edge_test] = [edges_all_y[edge_test][1],edges_all_y[edge_test][0]]
#split lines into sub-lines based on extra contact edges added
no_change_split = 0
while(no_change_split == 0):
no_change_split = 1
to_remove = []
to_add = []
for j in edges_all_x:
for k in extra_added_points:
if k[1] < j[1][1]:
if k[1] > j[0][1]:
if k[0] == j[0][0]:
to_remove.append(j)
to_add.append([j[0],k])
to_add.append([k,j[1]])
no_change_split = 0
if no_change_split == 0:
edges_all_x.remove(to_remove[0])
edges_all_x.append(to_add[0])
edges_all_x.append(to_add[1])
else:
for j in edges_all_y:
for k in extra_added_points:
if k[0] < j[1][0]:
if k[0] > j[0][0]:
if k[1] == j[0][1]:
to_remove.append(j)
to_add.append([j[0],k])
to_add.append([k,j[1]])
no_change_split = 0
if no_change_split == 0:
edges_all_y.remove(to_remove[0])
edges_all_y.append(to_add[0])
edges_all_y.append(to_add[1])
# remove duplicates and order
for new_edge_x in extra_edges_ver:
if new_edge_x not in edges_all_x:
edges_all_x.append(new_edge_x)
for new_edge_y in extra_edges_hor:
if new_edge_y not in edges_all_y:
edges_all_y.append(new_edge_y)
small_edges_hor = deepcopy(edges_all_y)
small_edges_ver = deepcopy(edges_all_x)
for edge_test in range(len(small_edges_ver)):
if small_edges_ver[edge_test][0][1] > small_edges_ver[edge_test][1][1]:
small_edges_ver[edge_test] = [small_edges_ver[edge_test][1],small_edges_ver[edge_test][0]]
for edge_test in range(len(small_edges_hor)):
if small_edges_hor[edge_test][0][0] > small_edges_hor[edge_test][1][0]:
small_edges_hor[edge_test] = [small_edges_hor[edge_test][1],small_edges_hor[edge_test][0]]
#get all the small boxes (maximum)
new_boxes = []
for j in small_edges_hor:
for k in small_edges_hor:
above = 0
below = 0
connect_left = []
connect_right = []
if j!=k:
if k[0][0] == j[0][0]:
if k[1][0] == j[1][0]:
if k[0][1] > j[0][1]:
below = 1
else:
above = 1
if below == 1:
for m in small_edges_ver:
if m[0] == j[0]:
if m[1] == k[0]:
connect_left = m
if m[0] == j[1]:
if m[1] == k[1]:
connect_right = m
if above == 1:
for m in small_edges_ver:
if m[0] == k[0]:
if m[1] == j[0]:
conect_left = m
if m[0] == k[1]:
if m[1] == j[1]:
connect_right = m
if (above == 1) and (connect_left != []) and (connect_right != []):
new_boxes.append([k,connect_right,j,connect_left])
if (below == 1) and (connect_left != []) and (connect_right != []):
new_boxes.append([j,connect_right,k,connect_left])
#convert to correct format
new_boxes2 = []
for j in new_boxes:
width = j[0][1][0] - j[0][0][0]
height = j[1][1][1] - j[1][0][1]
center_x = j[0][0][0] + (width/2.0)
center_y = j[1][0][1] + (height/2.0)
new_boxes2.append([center_x,center_y,width,height])
# remove boxes that are actually holes
new_boxes3 = []
for j in new_boxes2:
num_line_intersections = 0
point_to_test = [j[0],j[1]]
for linex in ori_edges_all_x:
if linex[0][1] < linex[1][1]:
if point_to_test[1] < linex[1][1]:
if point_to_test[1] > linex[0][1]:
if point_to_test[0] > linex[0][0]:
num_line_intersections = num_line_intersections + 1
else:
if point_to_test[1] > linex[1][1]:
if point_to_test[1] < linex[0][1]:
if point_to_test[0] > linex[0][0]:
num_line_intersections = num_line_intersections + 1
if (num_line_intersections%2) == 1:
new_boxes3.append(j)
# merge two boxes togethor if they are horizontally next to each other and have the same height
new_boxes4 = deepcopy(new_boxes3)
no_change = 1
to_merge = [0]
while(len(to_merge)>0):
to_merge = []
no_change = 0
for j in new_boxes4:
for k in new_boxes4:
if j != k:
if abs(j[1] - k[1]) < 0.1:
if abs(j[3] - k[3]) < 0.1:
if abs((j[0]+(j[2]/2.0)) - (k[0]-(k[2]/2.0))) < 0.1:
to_merge.append([j,k])
if len(to_merge)>0:
j = to_merge[0][0]
k = to_merge[0][1]
width = j[2]+k[2]
height = j[3]
center_x = (j[0]-(j[2]/2.0)) + (width/2.0)
center_y = j[1]
new_boxes4.append([center_x,center_y,width,height])
new_boxes4.remove(j)
new_boxes4.remove(k)
# add the new boxes to all_boxes and remove the original
final_to_remove.append(all_boxes[i])
for j in new_boxes4:
final_to_add.append(j)
for i in final_to_remove:
all_boxes.remove(i)
for i in final_to_add:
all_boxes.append(i)
stab_all_boxes = deepcopy(all_boxes)
for i in range(len(stab_all_boxes)):
stab_all_boxes[i][1] = (-1*(stab_all_boxes[i][1]))+2000
lowest_y = 99999999
for i in stab_all_boxes:
if i[1]-(i[3]/2.0) < lowest_y:
lowest_y = i[1]-(i[3]/2.0)
down_amount = lowest_y - 100.0
for i in range(len(stab_all_boxes)):
stab_all_boxes[i][1] = stab_all_boxes[i][1] - down_amount
f = open("sketch_blocks_data.txt", "w")
for i in stab_all_boxes:
f.write('%s %s %s %s\n' % (i[0],i[1]-(i[3]/2.0),i[2],i[3]))
f.close()
#find the largest and smallest block dimensions:
largest_value = 0
smallest_value = 99999999
largest_width = 0
smallest_width = 99999999
largest_height = 0
smallest_height = 99999999
widths = []
heights = []
areas = []
center_mass_ori_x = 0
center_mass_ori_y = 0
total_mass_ori = 0
for box in all_boxes:
widths.append(box[2])
heights.append(box[3])
areas.append(box[2]*box[3])
center_mass_ori_x = center_mass_ori_x + (box[0]*box[2]*box[3])
center_mass_ori_y = center_mass_ori_y + (box[1]*box[2]*box[3])
total_mass_ori = total_mass_ori + (box[2]*box[3])
if box[2] > largest_value:
largest_value = box[2]
if box[2] < smallest_value:
smallest_value = box[2]
if box[3] > largest_value:
largest_value = box[3]
if box[3] < smallest_value:
smallest_value = box[3]
if box[2] > largest_width:
largest_width = box[2]
if box[2] < smallest_width:
smallest_width = box[2]
if box[3] > largest_height:
largest_height = box[3]
if box[3] < smallest_height:
smallest_height = box[3]
center_mass_ori_x = center_mass_ori_x / total_mass_ori
center_mass_ori_y = center_mass_ori_y / total_mass_ori
sizes = widths+heights
mean_width = mean(widths)
mean_height = mean(heights)
mean_size = mean(sizes)
mean_area = mean(areas)
median_width = median(widths)
median_height = median(heights)
median_size = median(sizes)
median_area = median(areas)
actual_block_sizes = []
for key,value in blocks.items():
actual_block_sizes.append(value[0])
actual_block_mean = mean(actual_block_sizes)
actual_block_median = median(actual_block_sizes)
maximum_width_gap_touching = 0 # extra number of pixels to add to a blocks width when determining touching blocks
maximum_height_gap_touching = smallest_value*3 - 1 # extra number of pixels to add to a blocks height when determining touching blocks
# finds all supporters (direct and indirect) for a given block
def get_all_supporters(query):
indirect = []
to_check = [query]
while len(to_check) > 0:
doin = to_check.pop()
indirect.append(doin)
if doin != 9999:
for j in graph_supporters[doin]:
if j not in indirect:
if j not in to_check:
to_check.append(j)
new_indirect = []
for i in indirect:
if i not in new_indirect:
new_indirect.append(i)
new_indirect.remove(query)
return new_indirect
# finds all supportees (direct and indirect) for a given block
def get_all_supportees(query):
indirect = []
to_check = [query]
while len(to_check) > 0:
doin = to_check.pop()
indirect.append(doin)
for j in graph_supportees[doin]:
if j not in indirect:
if j not in to_check:
to_check.append(j)
new_indirect = []
for i in indirect:
if i not in new_indirect:
new_indirect.append(i)
new_indirect.remove(query)
return new_indirect
# finds all support paths from start block, upwards to end block
def find_all_paths(graph, start, end, path=[]):
path = path + [start]
if start == end:
return [path]
if start not in graph:
return []
paths = []
for node in graph[start]:
if node not in path:
newpaths = find_all_paths(graph, node, end, path)
for newpath in newpaths:
paths.append(newpath)
return paths
# not used but always good to have in case
def find_shortest_path(graph, start, end, path=[]):
path = path + [start]
if start == end:
return path
if start not in graph:
return None
shortest = None
for node in graph[start]:
if node not in path:
newpath = find_shortest_path(graph, node, end, path)
if newpath:
if not shortest or len(newpath) < len(shortest):
shortest = newpath
return shortest
# check if structure has local stability
def check_local_stability(all_boxes):
for i in range(len(all_boxes)):
left_support = 0
right_support = 0
box = all_boxes[i]
for j in graph_supporters[i]:
if j == 9999:
left_support = 1
right_support = 1
else:
box2 = all_boxes[j]
box2_left = box2[0]-(box2[2]/2.0)
box2_right = box2[0]+(box2[2]/2.0)
if box2_left < box[0]:
left_support = 1
if box2_right > box[0]:
right_support = 1
if left_support == 0:
print("UNSTABLE LOCAL (L) !!!!!")
print(i)
if right_support == 0:
print("UNSTABLE LOCAL (R) !!!!!")
print(i)
def isCentreSupporter(RAx):
if (RAx =="ERA.MOST_START_I" or RAx =="ERA.LESS_START_I" or RAx =="ERA.MOST_FINISH_I" or RAx =="ERA.LESS_FINISH_I" or RAx =="ERA.CENTRE_DURING" or RAx =="ERA.CENTRE_DURING_I" or RAx =="ERA.LEFT_DURING_I" or RAx =="ERA.RIGHT_DURING_I" or RAx =="ERA.MOST_START" or RAx =="ERA.MOST_FINISH" or RAx =="ERA.MOST_OVERLAP_MOST" or RAx =="ERA.LESS_OVERLAP_MOST" or RAx =="ERA.MOST_OVERLAP_MOST_I" or RAx =="ERA.MOST_OVERLAP_LESS_I" or RAx =="ERA.EQUAL"):
return True
return False
def isLeftSupporter(RAx):
if (RAx =="ERA.LESS_OVERLAP_LESS" or RAx =="ERA.MOST_OVERLAP_LESS" or RAx =="ERA.LESS_START" or RAx =="ERA.LEFT_DURING"):
return True
return False
def isRightSupporter(RAx):
if (RAx =="ERA.LESS_OVERLAP_MOST_I" or RAx =="ERA.LESS_OVERLAP_LESS_I" or RAx =="ERA.LESS_FINISH" or RAx =="ERA.RIGHT_DURING"):
return True
return False
# Calculate the ERA relations based on touching blocks
def find_era_relation(touching_line):
ERA_relations = []
ERA_threshold = 0.06
s1 = touching_line[0]
s2 = touching_line[2] # these are in the wrong order (should be 2,0,3,1) but the RAx rules are also wrong (filpped)
e1 = touching_line[1]
e2 = touching_line[3]
RA = "unknown"
if (s2 - e1 >=ERA_threshold):
RA ="ERA.BEFORE"
elif (s1 - e2 >=ERA_threshold):
RA ="ERA.AFTER"
elif (s2 - e1 <ERA_threshold and s2 - e1 >= 0 and s1 < e2):
RA ="ERA.MEET"
elif (s1 - e2 <ERA_threshold and s1 - e2 >= 0 and s2 < e1):
RA ="ERA.MEET_I"
elif (s1 == s2 and e2 - e1 >= 0 and (e2 - s2) / 2 < e1 - s1):
RA ="ERA.MOST_START"
elif (s1 == s2 and e1 - e2 > 0 and e2 - s2 > (e1 - s1) / 2):
RA ="ERA.MOST_START_I"
elif (s1 == s2 and e2 - e1 > 0 and (e2 - s2) / 2 >= e1 - s1):
RA ="ERA.LESS_START"
elif (s1 == s2 and e1 - e2 > 0 and e2 - s2 <= (e1 - s1) / 2):
RA ="ERA.LESS_START_I"
elif (s1 - s2 > 0 and e2 - e1 > 0 and e1 <= (s2 + e2) / 2):
RA ="ERA.LEFT_DURING"
elif (s2 - s1 > 0 and e1 - e2 > 0 and e2 <= (s1 + e1) / 2):
RA ="ERA.LEFT_DURING_I"
elif (s1 - s2 > 0 and e2 - e1 > 0 and s1 >= (s2 + e2) / 2):
RA ="ERA.RIGHT_DURING"
elif (s2 - s1 > 0 and e1 - e2 > 0 and s2 >= (s1 + e1) / 2):
RA ="ERA.RIGHT_DURING_I"
elif (s1 - s2 > 0 and e2 - e1 > 0 and s1 < (s2 + e2) / 2 and e1 > (s2 + e2) / 2):
RA ="ERA.CENTRE_DURING"
elif (s2 - s1 > 0 and e1 - e2 > 0 and s2 < (s1 + e1) / 2 and e2 > (s1 + e1) / 2):
RA ="ERA.CENTRE_DURING_I"
elif (s1 - s2 > 0 and e1 == e2 and (e2 - s2) / 2 < e1 - s1):
RA ="ERA.MOST_FINISH"
elif (s2 - s1 > 0 and e1 == e2 and e2 - s2 > (e1 - s1) / 2):
RA ="ERA.MOST_FINISH_I"
elif (s1 - s2 > 0 and e1 == e2 and (e2 - s2) / 2 >= e1 - s1):
RA ="ERA.LESS_FINISH"
elif (s2 - s1 > 0 and e1 == e2 and e2 - s2 <= (e1 - s1) / 2):
RA ="ERA.LESS_FINISH_I"
elif (abs(s1 - s2) <ERA_threshold and abs(e1 - e2) <ERA_threshold):
RA ="ERA.EQUAL"
elif (s2 - s1 > 0 and e2 - e1 > 0 and e1 - s2 > 0 and e1 - s2 >= s2 - s1 and e1 - s2 >= e2 - e1):
RA ="ERA.MOST_OVERLAP_MOST"
elif (s2 - s1 > 0 and e2 - e1 > 0 and e1 - s2 > 0 and e1 - s2 < s2 - s1 and e1 - s2 >= e2 - e1):
RA ="ERA.LESS_OVERLAP_MOST"
elif (s2 - s1 > 0 and e2 - e1 > 0 and e1 - s2 > 0 and e1 - s2 >= s2 - s1 and e1 - s2 < e2 - e1):
RA ="ERA.MOST_OVERLAP_LESS"
elif (s2 - s1 > 0 and e2 - e1 > 0 and e1 - s2 > 0 and e1 - s2 < s2 - s1 and e1 - s2 < e2 - e1):
RA ="ERA.LESS_OVERLAP_LESS"
elif (s1 - s2 > 0 and e1 - e2 > 0 and e1 - s2 > 0 and e2 - s1 >= s1 - s2 and e2 - s1 >= e1 - e2):
RA ="ERA.MOST_OVERLAP_MOST_I"
elif (s1 - s2 > 0 and e1 - e2 > 0 and e2 - s1 > 0 and e2 - s1 < s1 - s2 and e2 - s1 >= e1 - e2):
RA ="ERA.LESS_OVERLAP_MOST_I"
elif (s1 - s2 > 0 and e1 - e2 > 0 and e2 - s1 > 0 and e2 - s1 >= s1 - s2 and e2 - s1 < e1 - e2):
RA ="ERA.MOST_OVERLAP_LESS_I"
elif (s1 - s2 > 0 and e1 - e2 > 0 and e2 - s1 > 0 and e2 - s1 < s1 - s2 and e2 - s1 < e1 - e2):
RA ="ERA.LESS_OVERLAP_LESS_I"
ERA_relations.append(RA)
return ERA_relations
# Calculate the ERA relations based on touching blocks
def find_era_relations():
ERA_relations = []
ERA_threshold = 5
for i in range(len(touching_lines)):
s1 = touching_lines[i][0]
s2 = touching_lines[i][2] # these are in the wrong order (should be 2,0,3,1) but the RAx rules are also wrong (filpped)
e1 = touching_lines[i][1]
e2 = touching_lines[i][3]
RA = "unknown"
if (s2 - e1 >=ERA_threshold):
RA ="ERA.BEFORE"
elif (s1 - e2 >=ERA_threshold):
RA ="ERA.AFTER"
elif (s2 - e1 <ERA_threshold and s2 - e1 >= 0 and s1 < e2):
RA ="ERA.MEET"
elif (s1 - e2 <ERA_threshold and s1 - e2 >= 0 and s2 < e1):
RA ="ERA.MEET_I"
elif (s1 == s2 and e2 - e1 >= 0 and (e2 - s2) / 2 < e1 - s1):
RA ="ERA.MOST_START"
elif (s1 == s2 and e1 - e2 > 0 and e2 - s2 > (e1 - s1) / 2):
RA ="ERA.MOST_START_I"
elif (s1 == s2 and e2 - e1 > 0 and (e2 - s2) / 2 >= e1 - s1):
RA ="ERA.LESS_START"
elif (s1 == s2 and e1 - e2 > 0 and e2 - s2 <= (e1 - s1) / 2):
RA ="ERA.LESS_START_I"
elif (s1 - s2 > 0 and e2 - e1 > 0 and e1 <= (s2 + e2) / 2):
RA ="ERA.LEFT_DURING"
elif (s2 - s1 > 0 and e1 - e2 > 0 and e2 <= (s1 + e1) / 2):
RA ="ERA.LEFT_DURING_I"
elif (s1 - s2 > 0 and e2 - e1 > 0 and s1 >= (s2 + e2) / 2):
RA ="ERA.RIGHT_DURING"
elif (s2 - s1 > 0 and e1 - e2 > 0 and s2 >= (s1 + e1) / 2):
RA ="ERA.RIGHT_DURING_I"
elif (s1 - s2 > 0 and e2 - e1 > 0 and s1 < (s2 + e2) / 2 and e1 > (s2 + e2) / 2):
RA ="ERA.CENTRE_DURING"
elif (s2 - s1 > 0 and e1 - e2 > 0 and s2 < (s1 + e1) / 2 and e2 > (s1 + e1) / 2):
RA ="ERA.CENTRE_DURING_I"
elif (s1 - s2 > 0 and e1 == e2 and (e2 - s2) / 2 < e1 - s1):
RA ="ERA.MOST_FINISH"
elif (s2 - s1 > 0 and e1 == e2 and e2 - s2 > (e1 - s1) / 2):
RA ="ERA.MOST_FINISH_I"
elif (s1 - s2 > 0 and e1 == e2 and (e2 - s2) / 2 >= e1 - s1):
RA ="ERA.LESS_FINISH"
elif (s2 - s1 > 0 and e1 == e2 and e2 - s2 <= (e1 - s1) / 2):
RA ="ERA.LESS_FINISH_I"
elif (abs(s1 - s2) <ERA_threshold and abs(e1 - e2) <ERA_threshold):
RA ="ERA.EQUAL"
elif (s2 - s1 > 0 and e2 - e1 > 0 and e1 - s2 > 0 and e1 - s2 >= s2 - s1 and e1 - s2 >= e2 - e1):
RA ="ERA.MOST_OVERLAP_MOST"
elif (s2 - s1 > 0 and e2 - e1 > 0 and e1 - s2 > 0 and e1 - s2 < s2 - s1 and e1 - s2 >= e2 - e1):
RA ="ERA.LESS_OVERLAP_MOST"
elif (s2 - s1 > 0 and e2 - e1 > 0 and e1 - s2 > 0 and e1 - s2 >= s2 - s1 and e1 - s2 < e2 - e1):
RA ="ERA.MOST_OVERLAP_LESS"
elif (s2 - s1 > 0 and e2 - e1 > 0 and e1 - s2 > 0 and e1 - s2 < s2 - s1 and e1 - s2 < e2 - e1):
RA ="ERA.LESS_OVERLAP_LESS"
elif (s1 - s2 > 0 and e1 - e2 > 0 and e1 - s2 > 0 and e2 - s1 >= s1 - s2 and e2 - s1 >= e1 - e2):
RA ="ERA.MOST_OVERLAP_MOST_I"
elif (s1 - s2 > 0 and e1 - e2 > 0 and e2 - s1 > 0 and e2 - s1 < s1 - s2 and e2 - s1 >= e1 - e2):
RA ="ERA.LESS_OVERLAP_MOST_I"
elif (s1 - s2 > 0 and e1 - e2 > 0 and e2 - s1 > 0 and e2 - s1 >= s1 - s2 and e2 - s1 < e1 - e2):
RA ="ERA.MOST_OVERLAP_LESS_I"
elif (s1 - s2 > 0 and e1 - e2 > 0 and e2 - s1 > 0 and e2 - s1 < s1 - s2 and e2 - s1 < e1 - e2):
RA ="ERA.LESS_OVERLAP_LESS_I"
ERA_relations.append(RA)
return ERA_relations
# Use the ERA rules to determine is the sketch drawing is stable (qualitative LOCAL)
def calc_era_stability(all_boxes, ERA_relations,touching_blocks):
ERA_stable = []
no_change_ERA = 0
for i in range(len(all_boxes)):
ERA_stable.append(0)
while(no_change_ERA == 0):
old_ERA_stable = deepcopy(ERA_stable)
for i in range(len(all_boxes)):
rightSupporter = False
leftSupporter = False
centreSupporter = False
if graph_supporters[i] == [9999]:
ERA_stable[i] = 1
else:
for j in graph_supporters[i]:
if (ERA_stable[j]==1):
for x in range(len(ERA_relations)):
if touching_blocks[x] == [j,i]:
if isLeftSupporter(ERA_relations[x]):
leftSupporter = True
for k in graph_supporters[i]:
if (ERA_stable[k]==1):
for y in range(len(ERA_relations)):
if touching_blocks[y] == [k,i]:
if isRightSupporter(ERA_relations[y]):
rightSupporter = True
for m in graph_supporters[i]:
if (ERA_stable[m]==1):
for z in range(len(ERA_relations)):
if touching_blocks[z] == [m,i]:
if isCentreSupporter(ERA_relations[z]):
centreSupporter = True
if ((leftSupporter and rightSupporter) or centreSupporter):
ERA_stable[i] = 1
if (sorted(ERA_stable) == sorted(old_ERA_stable)):
no_change_ERA = 1
for i in ERA_stable:
if i==0:
print("UNSTABLE ERA")
# Analyse global stability of the sketch drawing (qualitative GARY)
def calc_gary_stability(all_boxes):
global_stability = []
for q in range(len(all_boxes)):
supporters_list = deepcopy(graph_supporters[q])
supportees_list = get_all_supportees(q)
for i in supportees_list:
for j in range(len(all_boxes)):
if (j in graph_supporters[i]) and (j not in get_all_supportees(q)) and j!=q:
supporters_list.append(j)
supportees_list.append(q)
center_mass_x = 0
total_mass = 0
for k in supportees_list:
center_mass_x = center_mass_x + (all_boxes[k][0]*all_boxes[k][2]*all_boxes[k][3])
total_mass = total_mass + (all_boxes[k][2]*all_boxes[k][3])
center_mass_x = center_mass_x / total_mass
leftmost_support = 99999999
rightmost_support = -99999999
for m in supporters_list:
if m == 9999:
leftmost_support = -99999999
rightmost_support = 99999999
else:
if all_boxes[m][0]-(all_boxes[m][2]/2.0) < leftmost_support:
leftmost_support = all_boxes[m][0]-(all_boxes[m][2]/2.0)
if all_boxes[m][0]+(all_boxes[m][2]/2.0) > rightmost_support:
rightmost_support = all_boxes[m][0]+(all_boxes[m][2]/2.0)
if (center_mass_x > leftmost_support) and (center_mass_x < rightmost_support):
global_stability.append(1)
else:
global_stability.append(0)
for s in global_stability:
if s == 0:
print("UNSTABLE GLOBAL GARY !!!!!")
print(global_stability)
return 0
return 1
# checks if point (vp,current_y) interescts a box in all boxes, and that this block is below the current one (b)
# returns the box that does intersect the point
def get_point_in_block(vp,current_y,all_boxes,b):
current_box = all_boxes[b]
for bb in range(len(all_boxes)):
box = all_boxes[bb]
if vp <= box[0]+(box[2]/2.0):
if vp >= box[0]-(box[2]/2.0):
if current_y <= box[1]+(box[3]/2.0):
if current_y >= box[1]-(box[3]/2.0):
if current_box == box:
return bb
else:
if ((box[1]) > (current_box[1]+(current_box[3]/2.0))): #below block must have center point below top blocks bottom
if ((box[1]-(box[3]/2.0)) > (current_box[1]-(current_box[3]/2.0))): #below block must have top point below top blocks top point
return bb
return None
# checks if point (vp,current_y) is within a box in all boxes, and that this block is below the current one (b)
def check_point_in_block(vp,current_y,all_boxes,b):
current_box = all_boxes[b]
for box in all_boxes:
if vp <= box[0]+(box[2]/2.0):
if vp >= box[0]-(box[2]/2.0):
if current_y <= box[1]+(box[3]/2.0):
if current_y >= box[1]-(box[3]/2.0):
if current_box == box:
return True
else:
if ((box[1]) > (current_box[1]+(current_box[3]/2.0))): #below block must have center point below top blocks bottom
if ((box[1]-(box[3]/2.0)) > (current_box[1]-(current_box[3]/2.0))): #below block must have top point below top blocks top point
return True
return False
#MORE COMPLEX METHOD
def calc_matthew_stability(all_boxes,valid_supportees):
global_stability = []
all_boxes_ori = deepcopy(all_boxes)
# just make safe area formed by direct supporters of the block:
safe_areas2 = []
for b in range(len(all_boxes)):
if b in valid_supportees:
leftmost = 99999999
rightmost = -99999999
for gg in graph_supporters[b]:
if gg == 9999:
leftmost = -99999999
rightmost = 99999999
else:
if (all_boxes[gg][0]-(all_boxes[gg][2]/2.0)) < leftmost:
leftmost = (all_boxes[gg][0]-(all_boxes[gg][2]/2.0))
if (all_boxes[gg][0]+(all_boxes[gg][2]/2.0)) > rightmost:
rightmost = (all_boxes[gg][0]+(all_boxes[gg][2]/2.0))
safe_areas2.append([leftmost,rightmost])
all_boxes = deepcopy(all_boxes_ori)
for b in range(len(all_boxes)):
if b in valid_supportees:
new_stable_check = 1
z = []
z2 = []
eligible_supporters = get_all_supporters(b)
bb = []
for cc in get_all_supportees(b):
if cc in valid_supportees:
eligible_supporters.append(cc)
for x in get_all_supportees(b):
if x in valid_supportees:
invalid = 0
for y in get_all_supporters(x):
if y != b:
if y not in eligible_supporters:
invalid = 1
if invalid == 0:
z.append(x)
z.append(b)
center_mass_x = 0
total_mass = 0
for k in z:
center_mass_x = center_mass_x + (all_boxes[k][0]*all_boxes[k][2]*all_boxes[k][3])
total_mass = total_mass + (all_boxes[k][2]*all_boxes[k][3])
center_mass_x = center_mass_x / total_mass
if (center_mass_x < safe_areas2[b][0]) or (center_mass_x > safe_areas2[b][1]):
if (center_mass_x < safe_areas2[b][0]):
pivot_point = safe_areas2[b][0]
good_side = "right"
else:
pivot_point = safe_areas2[b][1]
good_side = "left"
for k in get_all_supportees(b):
if k in valid_supportees:
if k not in z:
d = []
for n in get_all_supporters(k):
block_on_good_side = 0
if n in graph_supportees[b]:
if n in valid_supportees:
if good_side == "right":
if (all_boxes[n][0]+(all_boxes[n][2]/2.0)) > pivot_point:
block_on_good_side = 1
if good_side == "left":
if (all_boxes[n][0]-(all_boxes[n][2]/2.0)) < pivot_point:
block_on_good_side = 1
if block_on_good_side == 1:
for m in all_boxes:
if m in get_all_supporters(k):
if m in get_all_supportees(n):
if m in valid_supportees:
if good_side == "right":
if all_boxes[m][0] > pivot_point:
d.append(m)
if good_side == "left":
if all_boxes[m][0] < pivot_point:
d.append(m)
if good_side == "right":
if all_boxes[k][0] > pivot_point:
d.append(k)
if all_boxes[n][0] > pivot_point:
d.append(n)
if good_side == "left":
if all_boxes[k][0] < pivot_point:
d.append(k)
if all_boxes[n][0] > pivot_point:
d.append(n)
if d != []:
max_distance = -99999999
best_com = d[0]
for ii in range(len(d)):
if abs(all_boxes[ii][0]-pivot_point) > max_distance:
max_distance = abs(all_boxes[ii][0]-pivot_point)
best_com = d[ii]
new_block = [all_boxes[best_com][0],0,all_boxes[k][2],all_boxes[k][3]]
z2.append(new_block)
for jj in z:
z2.append(all_boxes[jj])
center_mass_x = 0
total_mass = 0
for bob in z2:
center_mass_x = center_mass_x + (bob[0]*bob[2]*bob[3])
total_mass = total_mass + (bob[2]*bob[3])
center_mass_x = center_mass_x / total_mass
if good_side == "right":
if center_mass_x < pivot_point:
new_stable_check = 0
if good_side == "left":
if center_mass_x > pivot_point:
new_stable_check = 0
global_stability.append(new_stable_check)
for s in global_stability:
if s == 0:
return 0
return 1
def calc_matthew_stability_ori(all_boxes):
global_stability = []
pivot_points = []
safe_areas2 = []
for b in range(len(all_boxes)):
leftmost = 99999999
rightmost = -99999999
for gg in graph_supporters[b]:
if gg == 9999:
leftmost = -99999999
rightmost = 99999999
else:
if (all_boxes[gg][0]-(all_boxes[gg][2]/2.0)) < leftmost:
leftmost = (all_boxes[gg][0]-(all_boxes[gg][2]/2.0))
if (all_boxes[gg][0]+(all_boxes[gg][2]/2.0)) > rightmost:
rightmost = (all_boxes[gg][0]+(all_boxes[gg][2]/2.0))
safe_areas2.append([leftmost,rightmost])
all_boxes = deepcopy(all_boxes_ori)
for b in range(len(all_boxes)):
new_stable_check = 1
z = []
z2 = []
good_side = None
eligible_supporters = get_all_supporters(b)+get_all_supportees(b)
for x in get_all_supportees(b):
invalid = 0
for y in get_all_supporters(x):
if y != b:
if y not in eligible_supporters:
invalid = 1
if invalid == 0:
z.append(x)
z.append(b)
center_mass_x = 0
total_mass = 0
for k in z:
center_mass_x = center_mass_x + (all_boxes[k][0]*all_boxes[k][2]*all_boxes[k][3])
total_mass = total_mass + (all_boxes[k][2]*all_boxes[k][3])
center_mass_x = center_mass_x / total_mass
if (center_mass_x < safe_areas2[b][0]) or (center_mass_x > safe_areas2[b][1]):
if (center_mass_x < safe_areas2[b][0]):
pivot_point = safe_areas2[b][0]
good_side = "right"
else:
pivot_point = safe_areas2[b][1]
good_side = "left"
for k in get_all_supportees(b):
if k not in z:
if good_side == "right":
if all_boxes[k][0]+(all_boxes[k][2]/2.0) > pivot_point:
z2.append(k)
if good_side == "left":
if all_boxes[k][0]-(all_boxes[k][2]/2.0) < pivot_point:
z2.append(k)
for jj in z:
z2.append(jj)
supporters_list = deepcopy(graph_supporters[b])
supportees_list = z2
for i in supportees_list:
for j in range(len(all_boxes)):
if (j in graph_supporters[i]) and (j not in get_all_supportees(b)) and j!=b:
supporters_list.append(j)
center_mass_x = 0
total_mass = 0
for k in supportees_list:
center_mass_x = center_mass_x + (all_boxes[k][0]*all_boxes[k][2]*all_boxes[k][3])
total_mass = total_mass + (all_boxes[k][2]*all_boxes[k][3])
center_mass_x = center_mass_x / total_mass
leftmost_support = 99999999
rightmost_support = -99999999
for m in supporters_list:
if m == 9999:
leftmost_support = -99999999
rightmost_support = 99999999
else:
if all_boxes[m][0]-(all_boxes[m][2]/2.0) < leftmost_support:
leftmost_support = all_boxes[m][0]-(all_boxes[m][2]/2.0)
if all_boxes[m][0]+(all_boxes[m][2]/2.0) > rightmost_support:
rightmost_support = all_boxes[m][0]+(all_boxes[m][2]/2.0)
if (center_mass_x > leftmost_support) and (center_mass_x < rightmost_support):
new_stable_check = 1
else:
new_stable_check = 0
pivot_points.append(good_side)
global_stability.append(new_stable_check)
return [global_stability,pivot_points]
def add_extra_supports(all_boxes,pivot_points,chosen_block):
new_all_boxes = deepcopy(all_boxes)
added_block = []
right_side = 0
if pivot_points[chosen_block] == "left":
right_side = 1
x_position = 0
if right_side == 1:
x_position = all_boxes[chosen_block][0]+(all_boxes[chosen_block][2]/2.0) - push_back_distance
else:
x_position = all_boxes[chosen_block][0]-(all_boxes[chosen_block][2]/2.0) + push_back_distance
y_position_top = all_boxes[chosen_block][1]+(all_boxes[chosen_block][3]/2.0)
lowest_point = 0
for i in range(len(all_boxes)):
if (all_boxes[i][1]+(all_boxes[i][3]/2.0)) > lowest_point:
lowest_point = (all_boxes[i][1]+(all_boxes[i][3]/2.0))
to_check_hit = []
for ii in range(len(all_boxes)):
if all_boxes[ii][1] > all_boxes[chosen_block][1]:
if ii != 9999:
to_check_hit.append(all_boxes[ii][1]-(all_boxes[ii][3]/2.0))
to_check_hit = sorted(to_check_hit,reverse=True)
new_to_check_hit = []
for ppp in range(len(to_check_hit)):
if to_check_hit[ppp] > (all_boxes[chosen_block][1]+(all_boxes[chosen_block][3]/2.0)):
new_to_check_hit.append(to_check_hit[ppp])
to_check_hit = new_to_check_hit
y_position_bottom = lowest_point
found = 0
while (len(to_check_hit))>0:
point_to_check = [x_position,to_check_hit[-1]]
if check_point_in_block(x_position,to_check_hit[-1],all_boxes,chosen_block):
if found == 0:
y_position_bottom = to_check_hit[-1]
found = 1
to_check_hit.pop()
added_block_x = x_position
added_block_width = 1
added_block_height = y_position_bottom-y_position_top
added_block_y = y_position_top+(added_block_height/2.0)
added_block = [added_block_x,added_block_y,added_block_width,added_block_height]
all_boxes.append(added_block)
print("ADDED BLOCK:")
print(added_block)
return(all_boxes)
def find_below_blocks(all_boxes, box):
below_blocks = []
for block2 in complete_locations:
if block2[2]<box[2]:
if ( (round(box[0],10) <= round((block2[1]+(blocks[str(block2[0])][0]/2)),10))
and (round(box[1],10) >= round((block2[1]-(blocks[str(block2[0])][0]/2)),10))
and (round(box[2],10) <= round((block2[2]+(blocks[str(block2[0])][1]/2)),10))
and (round(box[3],10) >= round((block2[2]-(blocks[str(block2[0])][1]/2)),10)) ):
below_blocks.append(block2)
return below_blocks
#currently doesn't work if multiple structures in image, need to test each structure separately
def calc_other_stability(all_boxes):
structure_stable = True
# checks the global stability of level by testing the stability of every block (as peak block)
highest_block = -1
highest_com = 99999999
for block in range(len(all_boxes)):
if all_boxes[block][1] < highest_com:
highest_com = all_boxes[block][1]
highest_block = block
current_box = [highest_block]
hit_ground = 0
if graph_supporters[block] == [9999]:
hit_ground = 1
while hit_ground == 0: # while not at bottom of structure
support_area = [99999999,0]
current_com = 0
total_mass = 0
supo = []
for jj in current_box:
for kk in graph_supporters[jj]:
if kk not in current_box:
supo.append(kk)
for jj in current_box:
current_com = current_com + all_boxes[jj][0]*(all_boxes[jj][2]*all_boxes[jj][3])
total_mass = total_mass + (all_boxes[jj][2]*all_boxes[jj][3])
current_com = current_com / total_mass
for jj in supo:
if all_boxes[jj][0] - (all_boxes[jj][2]/2.0) < support_area[0]:
support_area[0] = all_boxes[jj][0] - (all_boxes[jj][2]/2.0)
if all_boxes[jj][0] + (all_boxes[jj][2]/2.0) > support_area[1]:
support_area[1] = all_boxes[jj][0] + (all_boxes[jj][2]/2.0)
if (current_com >= support_area[1]) or (current_com <= support_area[0]):
structure_stable = False
to_add = []
highest_block = -1
highest_com = 99999999
for block in range(len(all_boxes)):
if block not in current_box:
if all_boxes[block][1] < highest_com:
highest_com = all_boxes[block][1]
highest_block = block
to_add.append(highest_block)
current_box = current_box + to_add
if graph_supporters[current_box[-1]] == [9999]:
hit_ground = 1
if structure_stable:
print("STABLE!")
return 1
else:
print("NOT STABLE!")
return 0
all_boxes_ori_very = deepcopy(all_boxes)
all_stable = 0
while all_stable == 0:
all_boxes = sorted(all_boxes, key=itemgetter(1), reverse=True) # sort boxes from bottom to top
all_boxes_ori = deepcopy(all_boxes)
#find blocks that touch each other (above and below)
touching_blocks = []
touching_lines = []
width_extra = maximum_width_gap_touching
height_extra = maximum_height_gap_touching
for i in range(len(all_boxes)):
current_box = all_boxes[i]
for j in range(len(all_boxes)):
box2 = all_boxes[j]
if ( (current_box[0]-((current_box[2]+width_extra)/2.0) < box2[0]+(box2[2]/2.0)) and
(current_box[0]+((current_box[2]+width_extra)/2.0) > box2[0]-(box2[2]/2.0)) and
(current_box[1]+((current_box[3]+height_extra)/2.0) > box2[1]-(box2[3]/2.0)) and
(current_box[1]-((current_box[3]+height_extra)/2.0) < box2[1]+(box2[3]/2.0)) ):
if (i != j):
if ((current_box[1]) > (box2[1]+(box2[3]/2.0))): #below block must have center point below top blocks bottom
if ((current_box[1]-(current_box[3]/2.0)) > (box2[1]-(box2[3]/2.0))): #below block must have top point below top blocks top point
touching_blocks.append([i,j]) #first box supports the second
touching_lines.append([current_box[0]-(current_box[2]/2.0),
current_box[0]+(current_box[2]/2.0),
box2[0]-(box2[2]/2.0),
box2[0]+(box2[2]/2.0)]) #bottom block first then top
new_touching_blocks = []
new_touching_lines = []
for i in range(len(all_boxes)):
for j in range(len(all_boxes)):
for k in range(len(all_boxes)):
if [i,j] in touching_blocks:
if [i,k] in touching_blocks:
if [j,k] in touching_blocks:
posie = touching_blocks.index([i,k])
touching_blocks.pop(posie)
touching_lines.pop(posie)
# finds the supportees and supporters (direct) for each block
all_boxes = deepcopy(all_boxes_ori)
graph_supportees = {}
graph_supporters = {}
for i in range(len(all_boxes)):
graph_supportees[i] = []
for support in touching_blocks:
if support[0] == i:
graph_supportees[i].append(support[1])
for i in range(len(all_boxes)):
graph_supporters[i] = []
for support in touching_blocks:
if support[1] == i:
graph_supporters[i].append(support[0])
if (graph_supporters[i] == []):
graph_supporters[i] = [9999] # the ground is represented as block number 9999
all_boxes = deepcopy(all_boxes_ori)
check_local_stability(all_boxes)
all_boxes = deepcopy(all_boxes_ori)
ERA_relations = find_era_relations()
all_boxes = deepcopy(all_boxes_ori)
calc_era_stability(all_boxes, ERA_relations, touching_blocks)
all_boxes = deepcopy(all_boxes_ori)
testg = calc_gary_stability(all_boxes)
if testg == 0:
GARY_INITIAL = 0
all_boxes = deepcopy(all_boxes_ori)
testg = calc_other_stability(all_boxes)
if testg == 0:
OTHER_INITIAL = 0
# Analyse global stability of the sketch drawing (new qualitative method)
all_boxes = deepcopy(all_boxes_ori)
chosen_block = 99999999
global_stable_sketch = 1
both = calc_matthew_stability_ori(all_boxes)
global_stability = both[0]
pivot_points = both[1]
for s in global_stability:
if s == 0:
global_stable_sketch = 0
print("GLOBALLY UNSTABLE MATTHEW")
MATTHEW_INITIAL = 0
print(both)
if (global_stable_sketch == 0):
for j in range(len(global_stability)):
if global_stability[j] == 0:
chosen_block = j
all_boxes = add_extra_supports(all_boxes,pivot_points,chosen_block)
else:
all_stable = 1
if add_extra_blocks_to_make_stable == 0:
all_stable = 1
else:
all_boxes_ori = deepcopy(all_boxes)
def merge_groups(groupings):
to_merge = []
for g1 in range(len(groupings)):
for g2 in range(len(groupings)):
if (g1 != g2):
for g1_block in groupings[g1]:
for g2_block in groupings[g2]:
if g1_block == g2_block:
to_merge.append([g1,g2])
return to_merge
return to_merge
def remove_groupings(groupings):
to_remove = []
for g1 in range(len(groupings)):
for g2 in range(len(groupings[g1])):
for g3 in range(len(groupings[g1])):
if (g2<g3):
if groupings[g1][g2] == groupings[g1][g3]:
to_remove.append([g1,g3])
return to_remove
return to_remove
# splits block sets into groupings that must have the same height
all_boxes = deepcopy(all_boxes_ori)
groupings = []
no_change1 = 0
if check_groups==1:
no_change1 = 1
old_groupings = deepcopy(groupings)
for i in range(len(all_boxes)):
for j in range(len(all_boxes)):
if (i < j):
# checks if i and j share a direct supporter
direct_supporter = 0
for b1 in graph_supporters[i]:
for b2 in graph_supporters[j]:
if (b1==b2):
direct_supporter = 1
if (direct_supporter == 1): # check if i and j share a supportee
for k in range(len(all_boxes)):
if len(find_all_paths(graph_supportees,i,k)) > 0:
if len(find_all_paths(graph_supportees,j,k)) > 0:
groupings.append([])
for aa in find_all_paths(graph_supportees,i,k):
aa.pop()
groupings[-1].append(aa)
for bb in find_all_paths(graph_supportees,j,k):
bb.pop()
groupings[-1].append(bb)
# merge groups togethor (originally the same indentation level as the above paragraph of code)
cleverMergeLists(groupings)
#remove duplicates
no_change3 = 0
while (no_change3 == 0):
to_remove = remove_groupings(groupings)
if len(to_remove) == 0:
no_change3 = 1
else:
del groupings[to_remove[0][0]][to_remove[0][1]]
if sorted(old_groupings) != sorted(groupings):
no_change1=0
# make all single blocks in groups the average height of all single blocks in same group
all_boxes = deepcopy(all_boxes_ori)
if (average_single_block_groups_heights==1):
for g in groupings:
to_average = []
average_height = 0
total_height = 0
for block_set in g:
if len(block_set)==1:
to_average.append(block_set[0])
if len(to_average)>0:
for b in to_average:
total_height = total_height+all_boxes[b][3]
average_height = total_height/float(len(to_average))
for b in to_average:
all_boxes[b][3] = average_height
if (use_similarity_grouping == 1):
close_distance = largest_value*2
blocks_same = []
for i in range(len(all_boxes)):
for j in range(len(all_boxes)):
same_shape = 0
close = 0
no_inbetween = 1
if i != j:
if all_boxes[i][0] < (all_boxes[j][0] + all_boxes[j][0]*error_percentage_shape):
if all_boxes[i][0] > (all_boxes[j][0] - all_boxes[j][0]*error_percentage_shape):
if all_boxes[i][2] < (all_boxes[j][2] + all_boxes[j][2]*error_percentage_shape):
if all_boxes[i][2] > (all_boxes[j][2] - all_boxes[j][2]*error_percentage_shape):
if all_boxes[i][3] < (all_boxes[j][3] + all_boxes[j][3]*error_percentage_shape):
if all_boxes[i][3] > (all_boxes[j][3] - all_boxes[j][3]*error_percentage_shape):
same_shape = 1
elif all_boxes[i][1] < (all_boxes[j][1] + all_boxes[j][1]*error_percentage_shape):
if all_boxes[i][1] > (all_boxes[j][1] - all_boxes[j][1]*error_percentage_shape):
if all_boxes[i][2] < (all_boxes[j][2] + all_boxes[j][2]*error_percentage_shape):
if all_boxes[i][2] > (all_boxes[j][2] - all_boxes[j][2]*error_percentage_shape):
if all_boxes[i][3] < (all_boxes[j][3] + all_boxes[j][3]*error_percentage_shape):
if all_boxes[i][3] > (all_boxes[j][3] - all_boxes[j][3]*error_percentage_shape):
same_shape = 1
if all_boxes[i][0] < (all_boxes[j][0] + close_distance):
close = 1
if all_boxes[i][0] > (all_boxes[j][0] - close_distance):
close = 1
if all_boxes[i][1] < (all_boxes[j][1] + close_distance):
close = 1
if all_boxes[i][1] > (all_boxes[j][1] - close_distance):
close = 1
for k in range(len(all_boxes)):
k_top = all_boxes[k][1] + (all_boxes[k][3]/2.0)
k_bottom = all_boxes[k][1] - (all_boxes[k][3]/2.0)
k_left = all_boxes[k][0] - (all_boxes[k][2]/2.0)
k_right = all_boxes[k][0] + (all_boxes[k][2]/2.0)
i_top = all_boxes[i][1] + (all_boxes[i][3]/2.0)
i_bottom = all_boxes[i][1] - (all_boxes[i][3]/2.0)
i_left = all_boxes[i][0] - (all_boxes[i][2]/2.0)
i_right = all_boxes[i][0] + (all_boxes[i][2]/2.0)
j_top = all_boxes[j][1] + (all_boxes[j][3]/2.0)
j_bottom = all_boxes[j][1] - (all_boxes[j][3]/2.0)
j_left = all_boxes[j][0] - (all_boxes[j][2]/2.0)
j_right = all_boxes[j][0] + (all_boxes[j][2]/2.0)
if (k_top > i_bottom) and (k_top > j_bottom) and (k_bottom < i_top) and (k_bottom < j_top) and (all_boxes[k][0] > all_boxes[i][0]) and (all_boxes[k][0] < all_boxes[j][0]):
no_inbetween = 0
if (k_right > i_left) and (k_right > j_left) and (k_left < i_right) and (k_left < j_right) and (all_boxes[k][1] > all_boxes[i][1]) and (all_boxes[k][1] < all_boxes[j][1]):
no_inbetween = 0
if (no_inbetween==1 and close==1 and same_shape==1):
blocks_same.append([i,j])
if ((average_same_block_groups_heights==1) and (use_similarity_grouping == 1)):
blocks_same2 = deepcopy(blocks_same)
no_change2 = 0
while(no_change2 == 0):
to_merge = []
for g1 in range(len(blocks_same2)):
for g1_block in blocks_same2[g1]:
for g2 in range(len(blocks_same2)):
for g2_block in blocks_same2[g2]:
if (g1 != g2):
if g1_block == g2_block:
to_merge.append([g1,g2])
if len(to_merge) == 0:
no_change2 = 1
else:
blocks_same2[to_merge[0][0]] = blocks_same2[to_merge[0][0]]+blocks_same2[to_merge[0][1]]
blocks_same2.pop(to_merge[0][1])
#remove duplicates
no_change3 = 0
while (no_change3 == 0):
to_remove = []
no_change3=1
for g1 in range(len(blocks_same2)):
for g2 in range(len(blocks_same2[g1])):
for g3 in range(len(blocks_same2[g1])):
if (g2<g3):
if blocks_same2[g1][g2] == blocks_same2[g1][g3]:
no_change3=0
to_remove.append([g1,g3])
if (no_change3 == 0):
del blocks_same2[to_remove[0][0]][to_remove[0][1]]
# make same average height
for g in blocks_same2:
to_average = []
average_height = 0
total_height = 0
for blockz in g:
to_average.append(blockz)
if len(to_average)>0:
for b in to_average:
total_height = total_height+all_boxes[b][3]
average_height = total_height/float(len(to_average))
for b in to_average:
all_boxes[b][3] = average_height
# adds composite blocks to set of possible block types, made up of multiple smaller blocks
# can also rearrange the ordering of this sub-blocks to create even more possible options
if composite_blocks_allowed == 1:
specials = {}
horizontal = [5,6,8,10,12]
counter = 14
for i in range(max_composite_block_width):
for j in horizontal:
new_block_width = (2.06*i) + blocks[str(j)][0]
height_counter = 0.22
height_num = 1
while height_counter < new_block_width*2.0:
pos_j = deepcopy(i)
if rearrange_special_block_order == 1:
while pos_j >= 0:
blocks[str(counter)] = [round(new_block_width,2),round(height_counter,2)]
block_names[str(counter)] = "special"
specials[str(counter)] = [i,j,height_num,pos_j]
counter = counter + 1
pos_j = pos_j - 1
height_counter = round(height_counter + 0.22,2)
height_num = height_num+1
else:
blocks[str(counter)] = [round(new_block_width,2),round(height_counter,2)]
block_names[str(counter)] = "special"
specials[str(counter)] = [i,j,height_num,pos_j]
counter = counter + 1
height_counter = round(height_counter + 0.22,2)
height_num = height_num+1
# divide the size and position of all blocks by the scale factor
scale_factor = 1
if scaling_method == 0:
scale_factor = largest_value/2.06 # BIG APPROACH
if scaling_method == 1:
scale_factor = smallest_value/0.22 # SMALL APPROACH
if scaling_method == 2:
middle_block_size = (largest_value+smallest_value)/2.0
scale_factor = middle_block_size/1.14 # MIDDLE APPROACH
if scaling_method == 3:
scale_factor = mean_size/actual_block_mean # MEAN APPROACH (0.667)
if scaling_method == 4:
scale_factor = median_size/actual_block_median # MEDIAN APPROACH (0.43)
all_boxes2 = []
for box in all_boxes:
box2 = []
box2.append(box[0]/scale_factor)
box2.append(box[1]/scale_factor)
box2.append(box[2]/scale_factor)
box2.append(box[3]/scale_factor)
all_boxes2.append(box2)
block_order= []
for i in range(len(all_boxes2)):
block_order.append(i)
# re-order list so that blocks are place straight after their direct supporters (or as close as possible to straight after, lower blocks get priority)
# re-orders blocks from being supporters before supportees (closer togethor) rather than top to bottom
# add very bottom block to list
# add supporter of block to list (only if all supporters of this block are present)
# if not all supporters are present, then add all supportees of this block to the list
if order_blocks_smart == 1:
block_order = [0]
block_order2 = [0]
while(len(block_order) < len(all_boxes2)):
added_block = 0
for i in reversed(block_order):
for j in graph_supportees[i]:
if j not in block_order:
if j not in block_order2:
all_supporters = 1
for k in graph_supporters[j]:
if k not in block_order:
all_supporters = 0
check_order = []
to_check = [k]
while(len(to_check)>0):
value_checking = to_check.pop()
check_order.append(value_checking)
for yup in graph_supporters[value_checking]:
if yup != 9999:
to_check.append(yup)
for kk in check_order:
if (kk not in block_order2) and (added_block == 0):
add_me = 1
for gg in graph_supporters[kk]:
if (gg not in block_order2) and gg!=9999:
add_me = 0
if add_me == 1:
block_order2.append(kk)
added_block = 1
if (all_supporters == 1) and (added_block == 0):
block_order2.append(j)
added_block = 1
if (block_order == block_order2):
for rem in range(len(all_boxes2)):
if rem not in block_order2:
block_order2.append(rem)
block_order = deepcopy(block_order2)
# find block type with most similar size to each block
block_keys = numpy.empty((len(all_boxes2), 0)).tolist()
already_tried = [[]]
count_loops = 0
ori_blocks3 = deepcopy(all_boxes2)
all_done = 0
while (all_done == 0) and (count_loops < 10000):
current_index = 0
for qqq in block_keys:
if qqq != []:
current_index = current_index + 1
current_box = block_order[current_index]
box = ori_blocks3[current_box]
count_loops = count_loops+1
if count_loops % 1000 == 0:
print("generating...") # prints every 1000 loops
# choose a block type for the next block to be added
# based on the sum of the squared differences between their widths and heights (width_dif^2 + height_dif^2)
width = box[2]
height = box[3]
best_difference = 99999999
best_name = ""
for key,value in blocks.items():
width_difference = abs(width-value[0])
height_difference = abs(height-value[1])
total_difference = width_difference**2 + height_difference**2
if int(key) > original_number_blocks:
total_difference = total_difference*composite_block_penalty_picking
if (best_difference > total_difference):
if (key not in already_tried[-1]):
best_difference = total_difference
best_name = key
block_keys[current_box] = best_name
already_tried[-1].append(best_name)
# move block to correct height (based on supporting block height)
if graph_supporters[current_box] == [9999]:
new = []
new.append(ori_blocks3[current_box][0])
new.append(ground+(blocks[block_keys[current_box]][1]/2.0))
new.append(blocks[block_keys[current_box]][0])
new.append(blocks[block_keys[current_box]][1])
else:
new = []
new.append(ori_blocks3[current_box][0])
new.append(all_boxes2[graph_supporters[current_box][0]][1]+
(blocks[block_keys[graph_supporters[current_box][0]]][1]/2.0)+ # error might happen here if structure not possible
(blocks[block_keys[current_box]][1]/2.0))
new.append(blocks[block_keys[current_box]][0])
new.append(blocks[block_keys[current_box]][1])
all_boxes2[current_box] = new
# CHECK THAT BLOCK JUST ADDED TO BLOCK KEYS DOESNT VIOLATE ANY RULES
# if it does then pop the key off block_keys
# do iteratively, removing previous block if no block types for the current block are possible
must_pop = 0
if use_similarity_grouping:
for tim in blocks_same:
if tim[0] == current_box:
if block_keys[tim[1]] != []:
if block_keys[tim[0]] != block_keys[tim[1]] :
must_pop = 1
if tim[1] == current_box:
if block_keys[tim[0]] != []:
if block_keys[tim[0]] != block_keys[tim[1]] :
must_pop = 1
# ensures that chosen block type is the right height to fulfil all grouping requirments
# outside of the horizontal movement shift option as that won't help correct this
if (check_groups == 1) and must_pop==0:
for g in groupings:
height_set = 0
for block_set1 in g:
valid = 1
for n in block_set1:
if (block_keys[n]==[]):
valid = 0
if valid == 1:
height_set2 = 0
for nn in block_set1:
height_set2 += blocks[block_keys[nn]][1]
if height_set == 0:
height_set = height_set2
else:
if abs(height_set - height_set2) > height_error_allowed_groups:
must_pop = 1
# Check if comoposite block is locally stable (all blocks that make it up are supported)
if (check_composite_block_stability == 1) and (composite_blocks_allowed == 1) and must_pop==0:
block_num_special = block_keys[current_box]
i = block_keys[current_box]
j = all_boxes2[current_box]
if int(block_num_special) > original_number_blocks:
info = specials[i]
total_width = round((2.06*info[0])+blocks[str(info[1])][0],2)
total_height = info[2]*0.22
positions_long = []
position_extra = []
added_j = 0
current_pos = j[0]-(total_width/2.0)
y_pos = j[1] - (total_height/2.0) + 0.11
for a in range(info[0]):
if a == info[3]:
added_j = 1
current_pos = current_pos + (blocks[str(info[1])][0]/2.0)
position_extra = current_pos
current_pos = current_pos + (blocks[str(info[1])][0]/2.0)
current_pos = current_pos + 1.03
positions_long.append(current_pos)
current_pos = current_pos + 1.03
if added_j == 0:
current_pos = current_pos + (blocks[str(info[1])][0]/2.0)
position_extra = current_pos
all_boxes_special = []
block_keys_special = []
for iii in range(len(positions_long)):
all_boxes_special.append([positions_long[iii],y_pos,2.06,0.22])
block_keys_special.append(12)
all_boxes_special.append([position_extra,y_pos,blocks[str(info[1])][0],0.22])
block_keys_special.append(info[1])
# check local stability
width_error_allowed_local_composite = 0.0
for ii in range(len(all_boxes_special)):
left_support = 0
right_support = 0
box = all_boxes_special[ii]
for jj in graph_supporters[current_box]:
if jj == 9999:
left_support = 1
right_support = 1
else:
box2 = all_boxes2[jj]
box2_left = box2[0]-((blocks[block_keys[jj]][0])/2.0)
box2_right = box2[0]+((blocks[block_keys[jj]][0])/2.0)
if box2_left < box[0] + width_error_allowed_local_composite:
if box2_right > (box[0] - (box[2]/2.0)):
left_support = 1
if box2_right > box[0] - width_error_allowed_local_composite:
if box2_left < (box[0] + (box[2]/2.0)):
right_support = 1
if left_support == 0:
must_pop = 1
if right_support == 0:
must_pop = 1
if must_pop == 0:
tried_all_moving = 0
while (tried_all_moving==0):
must_pop = 0
# ensures the chosen block does not overlap any other already chosen blocks
if (check_overlap == 1) and must_pop==0:
width_error_allowed_overlap = 0.0
for i in range(len(all_boxes2)):
if (block_keys[i]!=[]) and (i!=current_box):
box_width = blocks[best_name][0]-width_error_allowed_overlap
box_height = blocks[best_name][1]-height_error_allowed_overlap
box2 = all_boxes2[i]
box2_width = blocks[block_keys[i]][0]-width_error_allowed_overlap
box2_height = blocks[block_keys[i]][1]-height_error_allowed_overlap
if ( (all_boxes2[current_box][0]-(box_width/2.0) < box2[0]+(box2_width/2.0)) and
(all_boxes2[current_box][0]+(box_width/2.0) > box2[0]-(box2_width/2.0)) and
(all_boxes2[current_box][1]+(box_height/2.0) > box2[1]-(box2_height/2.0)) and
(all_boxes2[current_box][1]-(box_height/2.0) < box2[1]+(box2_height/2.0)) ):
must_pop = 1
# ensures that chosen block type is wide enough to be supported by all direct supporter blocks
if (check_all_supporters == 1) and must_pop==0:
for i in graph_supporters[current_box]:
if (i < 9999):
test_box = all_boxes2[i]
if (all_boxes2[current_box][0]-(blocks[best_name][0]/2.0) + required_support_amount) > (test_box[0]+(blocks[block_keys[i]][0]/2.0)):
must_pop = 1
if (all_boxes2[current_box][0]+(blocks[best_name][0]/2.0) - required_support_amount) < (test_box[0]-(blocks[block_keys[i]][0]/2.0)):
must_pop = 1
# CHECK ERA RELATIONS (OPTIONAL) NOT SURE IF WORKS 100% BUT SHOULDN'T BE USED ANYWAY AS PREVENTS STABILITY CORRECTION AND VERY RESTRICTIVE
if (check_era_relations == 1) and must_pop==0:
width_extra_era = 0.06
height_extra_era = 0.02
touching_blocks2 = []
touching_lines2 = []
era_relations2 = []
for i in range(len(all_boxes2)):
if block_keys[i] != []:
current_box2 = all_boxes2[i]
current_box2[2] = current_box2[2]+width_extra_era
current_box2[3] = current_box2[3]+height_extra_era
for j in range(len(all_boxes2)):
if block_keys[j] != []:
box2 = all_boxes2[j]
if ( (current_box2[0]-(current_box2[2]/2.0) < box2[0]+(box2[2]/2.0)) and
(current_box2[0]+(current_box2[2]/2.0) > box2[0]-(box2[2]/2.0)) and
(current_box2[1]+(current_box2[3]/2.0) > box2[1]-(box2[3]/2.0)) and
(current_box2[1]-(current_box2[3]/2.0) < box2[1]+(box2[3]/2.0)) ):
if (i != j):
if ((current_box2[1]) > (box2[1]+(box2[3]/2.0))):
if ((current_box2[1]-(current_box2[3]/2.0)) > (box2[1]-(box2[3]/2.0))):
touching_blocks2.append([j,i])
touching_lines2.append([box2[0]-(box2[2]/2.0),
box2[0]+(box2[2]/2.0),
current_box2[0]-(current_box2[2]/2.0),
current_box2[0]+(current_box2[2]/2.0)])
for pairin in range(len(touching_blocks)):
if block_keys[touching_blocks[pairin][0]] != []:
if block_keys[touching_blocks[pairin][1]] != []:
if touching_blocks[pairin] not in touching_blocks2:
must_pop=1
for line2 in touching_lines2:
era_relations2.append(find_era_relation(line2))
for ori1 in range(len(touching_blocks)):
if block_keys[touching_blocks[ori1][0]]!=[]:
first_block = touching_blocks[ori1][0]
if block_keys[touching_blocks[ori1][1]]!=[]:
second_block = touching_blocks[ori1][1]
correct_index_new = 99999999
for new1 in range(len(touching_blocks2)):
if touching_blocks2[new1] == [first_block,second_block]:
correct_index_new = new1
if correct_index_new < 99999999:
if ERA_relations[ori1] != era_relations2[correct_index_new][0]:
must_pop = 1
# check if structure has local stability
# BETTER TO CHECK GLOBAL STABILITY UNLESS TRYING TO BE FAST
if (check_local_stability == 1) and must_pop==0:
width_error_allowed_local = 0.0
for i in range(len(all_boxes2)):
if (block_keys[i]!=[]):
left_support = 0
right_support = 0
box = all_boxes2[i]
for j in graph_supporters[i]:
if j == 9999:
left_support = 1
right_support = 1
else:
box2 = all_boxes2[j]
box2_left = box2[0]-((blocks[block_keys[j]][0])/2.0)
box2_right = box2[0]+((blocks[block_keys[j]][0])/2.0)
if box2_left < box[0] + width_error_allowed_local:
left_support = 1
if box2_right > box[0] - width_error_allowed_local:
right_support = 1
if left_support == 0:
must_pop = 1
if right_support == 0:
must_pop = 1
# check if structure has global stability
if (check_global_stability == 1) and must_pop==0:
stable_global = 0
valid_supportees = []
new_joint_all_boxes = []
if check_global_stability_method == 1:
new_joint_all_boxes = deepcopy(all_boxes2)
for k in range(len(block_keys)):
if block_keys[k] != []:
valid_supportees.append(k)
elif check_global_stability_method == 2:
for k in range(len(all_boxes2)):
valid_supportees.append(k)
if block_keys[k] != []:
new_joint_all_boxes.append(all_boxes2[k])
else:
new_joint_all_boxes.append(ori_blocks3[k])
else:
print ("ERROR!! WRONG CHECK GLOBAL STABILITY METHOD")
stable_global = calc_matthew_stability(new_joint_all_boxes,valid_supportees)
if stable_global == 0:
must_pop = 1
# move sideways if selected as viable response option
if must_pop == 1:
if len(moves_to_try)==0:
tried_all_moving=1
elif shift_blocks_sideways==0:
tried_all_moving=1
else:
all_boxes2[current_box][0] = all_boxes2[current_box][0]+moves_to_try[-1]
moves_to_try.pop()
else:
tried_all_moving = 1
# block fails one or more requirments so remove it and try again
if must_pop == 1:
block_keys[current_box]=[]
# if already tried all block types then remove the block AND the previous block
if (limit_number_block_type_changes == 1) and (len(blocks) > max_number_block_type_changes):
while len(already_tried[-1]) == max_number_block_type_changes:
current_index = current_index-1
block_keys[block_order[current_index]]=[]
already_tried.pop()
else:
while len(already_tried[-1]) == len(blocks):
current_index = current_index-1
block_keys[block_order[current_index]]=[]
already_tried.pop()
else:
already_tried.append([])
all_done=1
for qqq in block_keys:
if qqq == []:
all_done=0
if (count_loops >= 10000):
print("generating structure took too long, suggest trying a different scale_calculation_option")
#calculate measure of difference betweent the original sketch and the generated structure (average percentage ratio difference)
avg_ratio_error_score = 0
for i in range(len(all_boxes_ori)):
ratio_ori = all_boxes_ori[i][3]/all_boxes_ori[i][2]
ratio_new = blocks[block_keys[i]][1]/blocks[block_keys[i]][0]
avg_ratio_error_score = avg_ratio_error_score + (abs(ratio_ori-ratio_new)/((ratio_ori+ratio_new)/2.0))
avg_ratio_error_score = avg_ratio_error_score/len(all_boxes_ori)
print("AVG RATIO ERROR:")
print(avg_ratio_error_score)
avg_mean_error_score = 0
old_mean_area = deepcopy(mean_area)
new_mean_area = 0
for i in range(len(all_boxes_ori)):
new_mean_area = new_mean_area + (blocks[block_keys[i]][1]*blocks[block_keys[i]][0])
new_mean_area = new_mean_area / len(all_boxes_ori)
old_scale = old_mean_area/100.0
new_scale = new_mean_area/100.0
for i in range(len(all_boxes_ori)):
area_old = all_boxes_ori[i][3]*all_boxes_ori[i][2]
area_new = ((blocks[block_keys[i]][1]*blocks[block_keys[i]][0]))
area_old = area_old / old_scale
area_new = area_new / new_scale
avg_mean_error_score = avg_mean_error_score + abs((area_old)-(area_new))
avg_mean_error_score = avg_mean_error_score
avg_mean_error_score = avg_mean_error_score/len(all_boxes_ori)
print("AVG MEAN AREA ERROR:")
print(avg_mean_error_score)
avg_location_error_score = 0
old_mean_area = deepcopy(mean_area)
new_mean_area = 0
for i in range(len(all_boxes_ori)):
new_mean_area = new_mean_area + (blocks[block_keys[i]][1]*blocks[block_keys[i]][0])
new_mean_area = new_mean_area / len(all_boxes_ori)
old_scale = sqrt(old_mean_area)/100.0
new_scale = sqrt(new_mean_area)/100.0
center_mass_new_x = 0
center_mass_new_y = 0
total_mass_new = 0
for i in range(len(all_boxes_ori)):
box = all_boxes2[i]
center_mass_new_x = center_mass_new_x + (box[0]*box[2]*box[3])
center_mass_new_y = center_mass_new_y + (box[1]*box[2]*box[3])
total_mass_new = total_mass_new + (box[2]*box[3])
center_mass_new_x = center_mass_new_x / total_mass_new
center_mass_new_y = center_mass_new_y / total_mass_new
for i in range(len(all_boxes_ori)):
position_old_x = abs(all_boxes_ori[i][0]-center_mass_ori_x)
position_old_y = abs(all_boxes_ori[i][1]-center_mass_ori_y)
position_new_x = abs(all_boxes2[i][0]-center_mass_new_x)
position_new_y = abs(all_boxes2[i][1]-center_mass_new_y)
position_old_x = position_old_x / (old_scale)
position_old_y = position_old_y / (old_scale)
position_new_x = position_new_x / (new_scale)
position_new_y = position_new_y / (new_scale)
distance = sqrt( (abs(position_old_x-position_new_x)*abs(position_old_x-position_new_x)) + (abs(position_old_y-position_new_y)*abs(position_old_y-position_new_y)) )
avg_location_error_score = avg_location_error_score + distance
avg_location_error_score = avg_location_error_score
avg_location_error_score = avg_location_error_score/len(all_boxes_ori)
print("AVG LOCATION AREA ERROR:")
print(avg_location_error_score)
penalty_composite = 0.0
number_composite = 0.0
total_number_blocks = len(block_keys)
for i in range(len(block_keys)):
if int(block_keys[i]) > original_number_blocks:
number_composite = number_composite + 1
ratio_composite = number_composite/total_number_blocks
penalty_composite = composite_block_penalty_end*ratio_composite
print("PENALTY COMPOSITE:")
print(penalty_composite)
penalty_extra = 0
penalty_weight = 1.0
for i in range(len(all_boxes2)):
if i >= len(all_boxes_ori_very):
penalty_extra = penalty_extra + ((blocks[block_keys[i]][1]*blocks[block_keys[i]][0]) / (new_scale))
print("PENALTY EXTRA:")
print(penalty_extra)
print("FINAL ERROR SCORE:")
print((avg_ratio_error_score*avg_mean_error_score*avg_location_error_score)+penalty_composite+penalty_extra) # Not normlaised
# flip y_axis direction (upwards is now positive rather than negative)
all_boxes3 = []
need_move_up = 0
for i in all_boxes2:
new = []
new.append(i[0])
new.append(i[1]*-1)
new.append(i[2])
new.append(i[3])
all_boxes3.append(new)
# move blocks to correct height (needs to be done again after flipping y-axis)
for i in range(len(all_boxes3)):
if graph_supporters[i] == [9999]:
new = []
new.append(all_boxes3[i][0])
new.append(ground+(blocks[block_keys[i]][1]/2.0))
new.append(all_boxes3[i][2])
new.append(all_boxes3[i][3])
else:
new = []
new.append(all_boxes3[i][0])
new.append(all_boxes3[graph_supporters[i][0]][1]+
(blocks[block_keys[graph_supporters[i][0]]][1]/2.0)+
(blocks[block_keys[i]][1]/2.0))
new.append(all_boxes3[i][2])
new.append(all_boxes3[i][3])
all_boxes3[i] = new
all_boxes4 = all_boxes3
# write XML
number_birds=3
f = open("level-4.xml", "w")
f.write('<?xml version="1.0" encoding="utf-16"?>\n')
f.write('<Level width ="2">\n')
f.write('<Camera x="0" y="2" minWidth="20" maxWidth="30">\n')
f.write('<Birds>\n')
for i in range(number_birds):
f.write('<Bird type="BirdRed"/>\n')
f.write('</Birds>\n')
f.write('<Slingshot x="-8" y="-2.5">\n')
f.write('<GameObjects>\n')
for index in range(len(all_boxes4)):
i = block_keys[index]
j = all_boxes4[index]
if int(i) > original_number_blocks:
rotation = 0
info = specials[i]
total_width = round((2.06*info[0])+blocks[str(info[1])][0],2)
total_height = info[2]*0.22
y_pos = j[1] - (total_height/2.0) + 0.11
pos_j = info[3]
for jj in range(info[2]):
positions_long = []
position_extra = []
added_j = 0
current_pos = j[0]-(total_width/2.0)
for a in range(info[0]):
if a == pos_j:
added_j = 1
current_pos = current_pos + (blocks[str(info[1])][0]/2.0)
position_extra = current_pos
current_pos = current_pos + (blocks[str(info[1])][0]/2.0)
current_pos = current_pos + 1.03
positions_long.append(current_pos)
current_pos = current_pos + 1.03
if added_j == 0:
current_pos = current_pos + (blocks[str(info[1])][0]/2.0)
position_extra = current_pos
for aa in range(len(positions_long)):
f.write('<Block type="RectBig" material="stone" x="%s" y="%s" rotation="0" />\n' % (str(positions_long[aa]), str(y_pos)))
f.write('<Block type="%s" material="stone" x="%s" y="%s" rotation="0" />\n' % (str(block_names[str(info[1])]),str(position_extra), str(y_pos)))
y_pos = y_pos + 0.22
if composite_block_interweaving == 1:
pos_j = pos_j + 1
if pos_j > info[0]:
pos_j = 0
else:
rotation = 0
if (int(i) in (3,7,9,11,13)):
rotation = 90
f.write('<Block type="%s" material="stone" x="%s" y="%s" rotation="%s" />\n' % (block_names[str(i)],str(j[0]), str(j[1]), str(rotation)))
f.write('</GameObjects>\n')
f.write('</Level>\n')
f.close()
| stepmat/ScienceBirds_sketch_generation | generate_sketch.py | generate_sketch.py | py | 114,707 | python | en | code | 4 | github-code | 36 | [
{
"api_name": "sys.argv",
"line_number": 24,
"usage_type": "attribute"
},
{
"api_name": "sys.argv",
"line_number": 77,
"usage_type": "attribute"
},
{
"api_name": "PIL.ImageOps.grayscale",
"line_number": 161,
"usage_type": "call"
},
{
"api_name": "PIL.ImageOps",
... |
37853605555 | #!/usr/bin/env python
#
#
import common
import os, sys, re, random, itertools, functools
from atoslib import utils
from atoslib import atos_lib
from atoslib import generators
from atoslib import process
TEST_CASE = "ATOS generators - pruning"
args = common.atos_setup_args(ATOS_DEBUG_FILE="debug.log")
# ####################################################################
#
# creation of fake atos-config directory
#
atos_config = "atos-configurations"
process.commands.mkdir(atos_config)
db = atos_lib.atos_db.db(atos_config)
process.commands.touch("sha1-c")
atos_lib.generate_script(
"profile.sh", ";" "true", {})
process.commands.mkdir("csv")
process.commands.touch("plugin.so")
with open('atos-configurations/flags.inline.cfg', 'w') as flagsf:
print >>flagsf, '-fgood1|-fbad1'
print >>flagsf, '-fgood2|-fgood2'
print >>flagsf, '-fbad2|-fbad2'
print >>flagsf, '-fnone1|-fnone1'
with open('atos-configurations/flags.loop.cfg', 'w') as flagsf:
print >>flagsf, '-fgood3|-fbad3'
print >>flagsf, '-fgood4|-fbad4'
print >>flagsf, '-fnone2|-fnone2'
with open('atos-configurations/flags.optim.cfg', 'w') as flagsf:
print >>flagsf, '-fgood5|-fbad5'
print >>flagsf, '-fnone3|-fnone3'
print >>flagsf, '-fcrash1|-fnone4'
#
# generation of profile files (fctmap.out, oprof.out)
#
def profile_gen():
with open('fctmap.out', 'w') as flagsf:
print >>flagsf, 'sha1.o SHA1Reset'
print >>flagsf, 'sha1.o SHA1Result'
print >>flagsf, 'sha1.o SHA1PadMessage'
print >>flagsf, 'sha1.o SHA1Input'
print >>flagsf, 'sha1.o SHA1ProcessMessageBlock'
print >>flagsf, 'sha.o main'
print >>flagsf, 'sha.o usage'
with open('oprof.out', 'w') as flagsf:
print >>flagsf, 'vma samples % linenr_info image_name symbol_name'
print >>flagsf, '0000000000400b93 353965337 52.2748 (no localization information) sha1-c SHA1ProcessMessageBlock'
print >>flagsf, '0000000000400a86 260243456 38.4336 (no localization information) sha1-c SHA1Input'
print >>flagsf, '00000000004006e4 62914627 9.2914 (no localization information) sha1-c main'
print >>flagsf, '0000000000400f6c 732 0.0001 (no localization information) sha1-c SHA1PadMessage'
print >>flagsf, '0000000000401110 25 0.0000 (no localization information) sha1-c __libc_csu_init'
print >>flagsf, '00000000004009c8 25 0.0000 (no localization information) sha1-c SHA1Reset'
print >>flagsf, '0000000000400a3f 20 0.0000 (no localization information) sha1-c SHA1Result'
#
# estimation of time/size results given a set of flags
#
def get_cfg_result(cfg):
good_flags = [
["-fgood1"], ["-fgood2"], ["-fgood3"], ["-fgood4"], ["-fgood5"],
["-fgood-g1-1", "-fgood-g1-2"],
["-fgood-g2-1", "-fgood-g2-2", "-fgood-g2-3"],
]
bad_flags = [
["-fbad1"], ["-fbad2"], ["-fbad3"], ["-fbad4"], ["-fbad5"],
["-fbad-g1-1", "-fbad-g1-2"],
["-fbad-g2-1", "-fbad-g2-2", "-fbad-g2-3"],
]
crash_flags = [["-fcrash1"]]
#
flag_list = generators.optim_flag_list.parse_line(cfg.flags)
nb_good = len(
filter(lambda f: (len(set(f) - set(flag_list)) == 0), good_flags))
nb_bad = len(
filter(lambda f: (len(set(f) - set(flag_list)) == 0), bad_flags))
nb_crash = len(
filter(lambda f: (len(set(f) - set(flag_list)) == 0), crash_flags))
if nb_crash: return None, None
# file-by-file acf flag
acf_file_flag = filter(
functools.partial(re.search, '--atos-optfile'),
flag_list)
if acf_file_flag:
fbf_file = acf_file_flag[0][14:].strip('= ')
fbf_config = (
generators.gen_file_by_file_cfg.read_config_csv(fbf_file))
for (obj, flags) in fbf_config.items():
flags = generators.optim_flag_list.parse_line(flags)
acf_nb_good = len(
filter(lambda f: (len(set(f) - set(flags)) == 0), good_flags))
acf_nb_bad = len(
filter(lambda f: (len(set(f) - set(flags)) == 0), bad_flags))
nb_good += acf_nb_good * 0.2
nb_bad += acf_nb_bad * 0.2
# function-by-function acf flag
acf_func_flag = filter(
functools.partial(re.search, '-fplugin-arg-acf_plugin-csv_file'),
flag_list)
if acf_func_flag:
fbf_file = re.search(
'-fplugin-arg-acf_plugin-csv_file=([^ ]*)',
acf_func_flag[0]).group(1)
fbf_config = (
generators.gen_function_by_function_cfg.read_config_csv(fbf_file))
for (obj, flags) in fbf_config.items():
flags = generators.optim_flag_list.parse_line(flags)
acf_nb_good = len(
filter(lambda f: (len(set(f) - set(flags)) == 0), good_flags))
acf_nb_bad = len(
filter(lambda f: (len(set(f) - set(flags)) == 0), bad_flags))
nb_good += acf_nb_good * 0.2
nb_bad += acf_nb_bad * 0.2
score = 1000 - ((nb_good - nb_bad) * 100)
return float(score), score
#
# exploration loop and database update
#
def db_add_result(cfg, variant_id=None):
db = atos_lib.atos_db.db(atos_config)
time, size = get_cfg_result(cfg)
if None in [time, size]:
return None
new_entry = {
'variant': variant_id or atos_lib.variant_id(options=cfg.flags),
'target': 'target',
'conf': cfg.flags or '', 'time': time, 'size': size,
'cookies': ','.join(cfg.cookies or [])
}
db.add_results([new_entry])
return new_entry
def generator_loop(generator):
all_results = []
for cfg in generator:
if cfg.profile: profile_gen()
new_res = db_add_result(cfg)
if new_res: all_results.append(new_res)
return all_results
# ####################################################################
#
#
#
ref_entry = db_add_result(
generators.config())
new_entry = db_add_result(
generators.config(
flags="-fgood1 -fbad1 -fgood-g1-1 -fgood2 "
"-fgood-g1-2 -fbad-g1-1 -fbad-g1-2 -fgood3 -fbad-g2-1"),
variant_id="VAR-1")
# good: 4: fgood1 fgood2 fgood3 fgood-g1-1_fgood-g1-2
# bad : 2: -fbad1 fbad-g1-1_fbad-g1-2
# score = 4 - 2 = 2 -> 1000 - 2 * 100 -> 800
assert new_entry['size'] == 800
assert new_entry['time'] == 800.0
generator = generators.gen_flags_pruning(
variant_id='VAR-1',
tradeoff=5.0, threshold=0.0,
configuration_path=atos_config)
generator_loop(generator)
assert generator.final_flags == [
'-fgood1', '-fgood2']
generator = generators.gen_flags_pruning(
variant_id='VAR-1',
update_reference=True,
tradeoff=5.0, threshold=0.0,
configuration_path=atos_config)
generator_loop(generator)
assert generator.final_flags == [
'-fgood1', '-fgood-g1-1', '-fgood2', '-fgood-g1-2', '-fgood3']
generator = generators.gen_flags_pruning(
variant_id='VAR-1',
one_by_one=True,
tradeoff=5.0, threshold=0.0,
configuration_path=atos_config)
generator_loop(generator)
assert generator.final_flags == [
'-fgood1', '-fgood-g1-1', '-fgood2', '-fgood-g1-2', '-fgood3']
generator = generators.gen_flags_pruning(
variant_id='VAR-1',
tradeoff=5.0, threshold=0.0,
selection_size=2,
configuration_path=atos_config)
generator_loop(generator)
assert generator.final_flags == [
'-fgood2', '-fgood3', '-fbad-g2-1']
generator = generators.gen_flags_pruning(
variant_id='VAR-1',
tradeoff=5.0, threshold=0.0,
random_selection=1,
configuration_path=atos_config)
generator_loop(generator)
generator = generators.gen_flags_pruning(
variant_id='VAR-1',
tradeoff=5.0, threshold=-10,
configuration_path=atos_config)
generator_loop(generator)
generator = generators.gen_flags_pruning(
variant_id='VAR-1',
tradeoff=5.0, threshold=-10,
keep_opt_level=1,
configuration_path=atos_config)
generator_loop(generator)
#
# ACF FUNCTION
#
generator = generators.gen_function_by_function(
acf_plugin_path="plugin.so", hwi_size="8",
prof_script="./profile.sh", imgpath=".",
csv_dir="csv", hot_th="70", cold_opts="-Os",
base_flags="-O2", per_func_nbiters=100, optim_levels="-O2",
configuration_path=atos_config)
results = generator_loop(generator)
generator = generators.gen_flags_pruning(
variant_id=results[-1]['variant'],
update_reference=True,
tradeoff=5.0, threshold=0.0,
configuration_path=atos_config)
generator_loop(generator)
#
# ACF FILE
#
generator = generators.gen_file_by_file(
imgpath=".", csv_dir="csv", hot_th="70", cold_opts="-Os",
base_flags="-O2", per_file_nbiters=100, optim_levels="-O2",
configuration_path=atos_config)
results = generator_loop(generator)
generator = generators.gen_flags_pruning(
variant_id=results[-1]['variant'],
update_reference=True,
tradeoff=5.0, threshold=0.0,
configuration_path=atos_config)
generator_loop(generator)
| atos-tools/atos-utils | tests/test116.py | test116.py | py | 9,009 | python | en | code | 5 | github-code | 36 | [
{
"api_name": "common.atos_setup_args",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "atoslib.process.commands.mkdir",
"line_number": 25,
"usage_type": "call"
},
{
"api_name": "atoslib.process.commands",
"line_number": 25,
"usage_type": "attribute"
},
{
... |
70606542505 | import json
from wsgiref import simple_server
from wsgiref.simple_server import make_server
def load_html(file_name,**kwargs):
try:
with open(file_name,'r',encoding='utf-8') as file:
content = file.read()
if kwargs: # kwargs = {'username ': 'zhangsan ', 'age':19, 'gender': 'male'}
content = content.format(**kwargs)
# {username}, 迎回来,你今年{age}岁,你的性别是(gender}.format(**kwargs)
return content
except FileExistsError:
print('文件未找到')
# 第1个参数,表示环境(电脑的环境;请求路径相关的环境)
# 第2个参数,是一个函数,用来返回响应头
# 这个函数需要一个返回值,返回值是一个列表
# 列表里有一个元素,是一个二进制,表示返回给浏览器的数据
def demo_app(environ,start_response):
print(environ) # environ是一个字典,保存了很多数据
# 其中重要的一个是 PATH_INFO 能够获取到用户的访问路径
path = environ['PATH_INFO']
# print(environ. get('QUERY-STRING')) # QUERY_STRING ==> 获取到客户端GET请求方式传递的参数
# POST 请求数据的方式
# 状态码: RESTFUL ==> 前后端分离
# 2xx:请求响应成功
# 3Xx:重定向
# 4xx:客户端的错误。404客户端访问了一个不存在的地址 405:请求方式不被允许
# 5xx:服务器的错误。
status_code = '200 OK' # 默认状态码
if path == '/':
response = '欢迎来到我的首页'
elif path == '/test':
response = json.dumps({'name':'zhagnsna','age':18})
elif path == '/demo':
with open('hello1.txt','r',encoding='utf-8') as file:
response = file.read()
elif path == '/info':
# html 文件查询数据库,获取用户名
name = 'jack'
with open('info.html','r',encoding='utf-8') as file:
# '{username},欢迎回来'.format(username=name)
# flask django 模块,渲染引擎
response = file.read().format(username=name,age=18,gender='男')
else:
status_code = '404 Not Found'
response = '页面走丢了'
print('path={}'.format(path))
start_response(status_code, [('Content-Type', 'text/plain; charset=utf-8'),('Connection', 'keep-alive')])
return [response.encode("utf-8")] # 浏览器显示的内容
if __name__ == '__main__':
# demo_app 是一个函数,用来处理用户的请求
httpd = make_server('', 8000, demo_app)
sa = httpd.socket.getsockname()
print("Serving HTTP on", sa[0], "port", sa[1], "...")
# 代码的作用是打开电脑的浏览器,并在浏览器里输入 http://localhost:8000/xyz?abc
# import webbrowser
# webbrowser.open('http://localhost:8000/xyz?abc')
# httpd.handle_request() # 只处理一次请求
httpd.serve_forever() # 服务器在后台一直运行 | cgyPension/pythonstudy_space | 01_base/$05_wsg服务器.py | $05_wsg服务器.py | py | 2,943 | python | zh | code | 7 | github-code | 36 | [
{
"api_name": "json.dumps",
"line_number": 38,
"usage_type": "call"
},
{
"api_name": "wsgiref.simple_server.make_server",
"line_number": 60,
"usage_type": "call"
}
] |
38841107343 | import re
import random
from django.shortcuts import render
from django.views.decorators.csrf import csrf_exempt
import razorpay
from django.db.models import Q
from operator import itemgetter
from django.core.paginator import Paginator
import datetime
from property_management_system.settings import razorpay_api_key, razorpay_api_secret_key
from django.contrib.auth.decorators import login_required
from django.shortcuts import redirect, render
from django.contrib import messages
from django.contrib.auth.models import User
from django.conf import settings
from django.db.models import Sum, Func, Count
from django.contrib.auth import login, logout, authenticate
from pms.send_mail import send_customise_mail
from django.db import models
from pms.models import Blogs, Contact, Property, PropertyContacts, PropertyImages, PropertyMembership, UserProfile
months_mapping = {
1: "January",
2: "February",
3: "March",
4: "April",
5: "May",
6: "June",
7: "July",
8: "August",
9: "September",
10: "October",
11: "November",
12: "December",
}
def index(request):
try:
property_list = list(Property.objects.filter(
is_listed=True).order_by('-membership_purchased'))
if len(property_list) > 6:
random_properties = random.sample(property_list, 6)
else:
random_properties = (Property.objects.filter(
is_listed=True).order_by('-membership_purchased'))
except Exception as e:
print(e)
try:
agents_list = list(UserProfile.objects.filter(
user_type="Agent").order_by('-created_at'))
if len(agents_list) > 3:
random_agents = random.sample(agents_list, 3)
else:
random_agents = UserProfile.objects.filter(
user_type="Agent").order_by('-created_at')
except Exception as e:
print(e)
all_properties = Property.objects.filter(is_listed=True)
blogs = Blogs.objects.all().order_by('-created_at')
index_page_blogs = None
if len(blogs) > 6:
index_page_blogs = blogs[:6]
else:
index_page_blogs = blogs
context = {
'random_properties': random_properties,
'all_properties': all_properties,
'random_agents': random_agents,
'index_page_blogs': index_page_blogs,
}
return render(request, 'ui_templates/index.html', context)
def error_404_view(request, exception):
return render(request, 'ui_templates/404.html')
def about(request):
registered_users = UserProfile.objects.filter(user_type='').count()
agents = UserProfile.objects.filter(user_type='').count()
total_properties = Property.objects.all().count()
context = {
'registered_users': registered_users,
'agents': agents,
'total_properties': total_properties
}
return render(request, 'ui_templates/about.html', context)
def all_properties(request):
filtered_properties = Property.objects.filter(
is_listed=True).order_by('-membership_purchased')
if request.method == 'GET':
search_filter = request.GET.get('searching_filters')
sorting_properties = request.GET.get('sort')
property_size = request.GET.get('property_size')
nearbuy_location = request.GET.get('nearbuy_location')
if search_filter:
filtered_properties = Property.objects.filter(
Q(city__icontains=search_filter) |
Q(state__icontains=search_filter) |
Q(address__icontains=search_filter) |
Q(type__icontains=search_filter) |
Q(zip_code__icontains=search_filter) |
Q(furnishing__icontains=search_filter) |
Q(availability__icontains=search_filter) |
Q(ownership__icontains=search_filter) |
Q(expected_price__icontains=search_filter) |
Q(details__icontains=search_filter)
).order_by('-membership_purchased')
if sorting_properties and sorting_properties == 'lth':
filtered_properties = filtered_properties.order_by(
'expected_price')
if sorting_properties and sorting_properties == 'htl':
filtered_properties = filtered_properties.order_by(
'-expected_price')
if property_size:
filtered_properties = filtered_properties.filter(
area__gte=property_size)
if nearbuy_location:
filtered_properties = filtered_properties.filter(
Q(city__icontains=nearbuy_location) |
Q(state__icontains=nearbuy_location) |
Q(address__icontains=nearbuy_location))
paginator = Paginator(filtered_properties, 9)
page_number = request.GET.get('page')
page_obj = paginator.get_page(page_number)
context = {
'active_properties': filtered_properties,
'page_obj': page_obj,
}
return render(request, 'ui_templates/properties.html', context)
else:
active_properties = Property.objects.filter(
is_listed=True).order_by('-membership_purchased')
paginator = Paginator(active_properties, 9)
page_number = request.GET.get('page')
page_obj = paginator.get_page(page_number)
context = {
'active_properties': active_properties,
'page_obj': page_obj,
}
return render(request, 'ui_templates/properties.html', context)
def property_details(request, id):
property = Property.objects.get(id=id)
property_images = PropertyImages.objects.filter(property=property)
amenities = []
if property.amenities:
amenities = [amenity.strip()
for amenity in property.amenities.split(',')]
context = {
'property': property,
'amenities': amenities,
'property_images': property_images,
}
return render(request, 'ui_templates/property_detail.html', context)
def blog(request):
recent_blogs = Blogs.objects.all().order_by('-created_at')
paginator = Paginator(recent_blogs, 8)
page_number = request.GET.get('page')
page_obj = paginator.get_page(page_number)
context = {
'recent_blogs': recent_blogs,
'page_obj': page_obj,
}
return render(request, 'ui_templates/blog.html', context)
def blog_description(request, id):
requested_blog = Blogs.objects.filter(id=id)
context = {'requested_blog': requested_blog}
return render(request, 'ui_templates/blog_description.html', context)
@login_required(login_url='login')
def add_new_blog(request):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
if request.method == 'POST':
blog_image = None
title = request.POST.get('title')
body = request.POST.get('body')
try:
blog_image = request.FILES.get('blog_image')
except Exception as e:
print(e)
if blog_image:
create_new_blog = Blogs(
blog_title=title, blog_body=body, blog_image=blog_image,
uploaded_by=user)
create_new_blog.save()
messages.add_message(request, messages.WARNING,
"New Blog Created Successfully.")
else:
messages.add_message(request, messages.WARNING,
"Blog Image is Required")
return render(request, 'dashboard_templates/blog/add_new_blog.html')
@login_required(login_url='login')
def view_blogs_list(request):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
all_blogs = Blogs.objects.all()
context = {'all_blogs': all_blogs}
return render(request, 'dashboard_templates/blog/blogs_view.html', context)
@login_required(login_url='login')
def update_blog(request, id):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
requested_blog = Blogs.objects.filter(id=id)
if request.method == 'POST':
blog_update = Blogs.objects.filter(id=id).first()
updated_title = request.POST.get('title')
updated_body = request.POST.get('body')
blog_update.blog_title = updated_title
blog_update.blog_body = updated_body
try:
updated_blog_image = request.FILES['blog_image']
blog_update.blog_image = updated_blog_image
except Exception as e:
print(e)
blog_update.save()
messages.add_message(request, messages.WARNING,
"Blog Updated Successfully.")
context = {
'requested_blog': requested_blog
}
return render(request, 'dashboard_templates/blog/update_blog.html', context)
@login_required(login_url='login')
def delete_blog(request, id):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
requested_blog = Blogs.objects.filter(id=id)
requested_blog.delete()
return redirect('blog_list')
def auth_login(request):
if request.user.is_authenticated:
messages.add_message(request, messages.WARNING,
"You already logged in.")
return redirect('index')
else:
if request.method == 'POST':
email = request.POST.get('email')
password = request.POST.get('password')
user = authenticate(username=email, password=password)
if user:
login(request, user)
messages.add_message(
request, messages.WARNING, f"Welcome, {request.user.first_name} {request.user.last_name} you logged in successfully.")
return redirect('index')
else:
messages.add_message(
request, messages.WARNING, "Sorry, check again your email or password.")
return render(request, 'ui_templates/login_page.html')
@login_required(login_url='login')
def user_logout(request):
logout(request)
messages.add_message(request, messages.SUCCESS,
"Success, You Logged Out Successfully.")
return redirect('index')
@login_required(login_url='login')
def profile(request):
requested_user = request.user
user_profile = UserProfile.objects.get(user=requested_user)
context = {
'profile_details': user_profile
}
return render(request, 'dashboard_templates/profile/user_profile.html', context)
def contact_us(request):
if request.method == 'POST':
name = request.POST.get('name')
email = request.POST.get('email')
contact_no = request.POST.get('contact_no')
subject = request.POST.get('subject')
message = request.POST.get('message')
if name and email and contact_no and subject and message:
new_contact = Contact(name=name, email=email, contact_no=contact_no,
subject=subject, message=message)
new_contact.save()
messages.add_message(
request, messages.SUCCESS, "Thanks for Contacting us. We will contact you shortly.")
return redirect('index')
else:
messages.add_message(request, messages.WARNING,
"Please fill all the required details.")
return render(request, 'ui_templates/contact.html')
return render(request, 'ui_templates/contact.html')
def auth_register(request):
password_validation = False
if request.method == 'POST':
profile_image = None
fname = request.POST.get('fname')
lname = request.POST.get('lname')
email = request.POST.get('email')
contact = request.POST.get('contact')
password = request.POST.get('password')
user_type = request.POST.get('user_type')
try:
profile_image = request.FILES.get('profile_image')
except Exception as e:
print(e)
user_exists = User.objects.filter(username=email)
# Minimum six characters, Maximum 20 Characters, at least one Uppercase and Lowecase letter and one number:
password_regex = (
"(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!#%*?&]{6,20}$")
password_regex_compile = re.compile(password_regex)
if (re.search(password_regex_compile, password)):
password_validation = True
if password_validation:
if profile_image:
if not user_exists:
if user_type == "Agent":
new_user = User.objects.create_user(
first_name=fname, last_name=lname, username=email, email=email, password=password, is_active=True, is_staff=True)
new_user.save()
subject = "Dream Homes: Registration Successfully"
body = (
"Hi "+fname+". Thanks for Registering with Dream Homes as a " + user_type+".")
send_customise_mail(
subject=subject,
body=body,
email_id=email)
else:
new_user = User.objects.create_user(
first_name=fname, last_name=lname, username=email, email=email, password=password, is_active=True)
new_user.save()
subject = "Dream Homes: Registration Successfully"
body = (
"Hi "+fname+". Thanks for Registering with Dream Homes as a " + user_type+".")
send_customise_mail(
subject=subject,
body=body,
email_id=email)
user_profile = UserProfile(
contact=contact, user=new_user, user_type=user_type, user_image=profile_image)
user_profile.save()
messages.add_message(
request, messages.SUCCESS, "Thanks for Registering with us.Please Login")
return redirect('login')
else:
messages.add_message(
request, messages.WARNING, "You Already have an Account. Please Login")
else:
messages.add_message(
request, messages.SUCCESS, "Profile Image is Required")
else:
messages.add_message(
request, messages.WARNING, "Please Create Strong Password as mentioned criteria.")
return render(request, 'ui_templates/register_page.html')
class Month(Func):
function = 'EXTRACT'
template = "%(function)s(MONTH from %(expressions)s)"
output_field = models.IntegerField()
@login_required(login_url='login')
def dashboard(request):
logged_in_user = request.user
if logged_in_user.is_superuser:
total_membership_amount = PropertyMembership.objects.aggregate(
Sum('property_membership_amount'))['property_membership_amount__sum']
total_membership_taken = PropertyMembership.objects.all().count()
approved_properties = Property.objects.filter(
approved=True).count()
pending_properties = Property.objects.filter(
approved=False).count()
listed_properties = Property.objects.filter(
is_listed=True).count()
unlisted_properties = Property.objects.filter(
is_listed=False).count()
# In case of admin all responses
current_time = datetime.datetime.now()
response_summary = (PropertyContacts.objects.filter(created_at__year=current_time.year)
.annotate(response_by_month=Month('created_at'))
.values('response_by_month')
.annotate(total=Count('id')))
response_data = []
for data in response_summary:
response_data.append(
{
"month": months_mapping.get(data.get('response_by_month')),
"total_responses": int(data.get('total'))
}
)
for month in months_mapping.keys():
result = [i for i in response_data if i['month'] == month]
if not result:
response_data.append(
{"month": months_mapping.get(month), "total_responses": 0})
sorted_response_data = sorted(response_data, key=lambda d: datetime.datetime.strptime(d['month'], "%B")
)
context = {
'approved_properties': approved_properties,
'listed_properties': listed_properties,
'unlisted_properties': unlisted_properties,
'pending_properties': pending_properties,
'total_membership_amount': total_membership_amount,
'total_membership_taken': total_membership_taken,
'response_data': sorted_response_data,
'current_year': current_time.year,
}
else:
approved_properties = Property.objects.filter(
uploaded_by=logged_in_user, approved=True).count()
pending_properties = Property.objects.filter(
uploaded_by=logged_in_user, approved=False).count()
listed_properties = Property.objects.filter(
uploaded_by=logged_in_user, is_listed=True).count()
unlisted_properties = Property.objects.filter(
uploaded_by=logged_in_user, is_listed=True).count()
properties_uploaded_by_user = Property.objects.filter(
uploaded_by=logged_in_user)
current_time = datetime.datetime.now()
response_summary = (PropertyContacts.objects.filter(property_id__in=properties_uploaded_by_user, created_at__year=current_time.year)
.annotate(response_by_month=Month('created_at'))
.values('response_by_month')
.annotate(total=Count('id')))
response_data = []
for data in response_summary:
response_data.append(
{
"month": months_mapping.get(data.get('response_by_month')),
"total_responses": int(data.get('total'))
}
)
for month in months_mapping.keys():
result = [i for i in response_data if i['month'] == month]
if not result:
response_data.append(
{"month": months_mapping.get(month), "total_responses": 0})
sorted_response_data = sorted(response_data, key=lambda d: datetime.datetime.strptime(d['month'], "%B")
)
context = {
'approved_properties': approved_properties,
'listed_properties': listed_properties,
'unlisted_properties': unlisted_properties,
'pending_properties': pending_properties,
'response_data': sorted_response_data,
'current_year': current_time.year,
}
return render(request, 'dashboard_templates/dashboard.html', context)
@login_required(login_url='login')
def add_new_property(request):
user = request.user
last_property_id = Property.objects.all().order_by('id').last()
if not last_property_id:
prop_id = 'WHPR' + '000001'
else:
last_prop_id = last_property_id.property_id
prop_no_int = int(last_prop_id[4:10])
new_property_id = prop_no_int + 1
prop_id = 'WHPR' + str(new_property_id).zfill(6)
if request.method == 'POST':
property_sr = request.POST.get('property_sr')
property_type = request.POST.get('property_type')
property_address = request.POST.get('property_address')
property_city = request.POST.get('property_city')
property_state = request.POST.get('property_state')
no_bedrooms = request.POST.get('no_bedrooms')
no_bathrooms = request.POST.get('no_bathrooms')
no_balconies = request.POST.get('no_balconies')
area_details = request.POST.get('area_details')
furnishing_type = request.POST.get('furnishing_type')
open_parking = request.POST.get('open_parking')
covered_parking = request.POST.get('covered_parking')
availability_status = request.POST.get('availability_status')
property_age = request.POST.get('property_age')
property_ownership = request.POST.get('property_ownership')
expected_price = request.POST.get('expected_price')
price_sq_ft = request.POST.get('price_sq_ft')
property_unique_details = request.POST.get('property_unique_details')
zip_code = request.POST.get('zip_code')
amenities = request.POST.get('amenities')
create_new_property = Property(
property_id=prop_id,
sell_rent=property_sr,
type=property_type,
address=property_address,
city=property_city,
state=property_state,
zip_code=zip_code,
bedrooms=no_bedrooms,
bathrooms=no_bathrooms,
balconies=no_balconies,
area=area_details,
furnishing=furnishing_type,
open_parking=open_parking,
covered_parking=covered_parking,
availability=availability_status,
age=property_age,
ownership=property_ownership,
expected_price=expected_price,
area_price=price_sq_ft,
details=property_unique_details,
approved=False,
uploaded_by=request.user,
amenities=amenities
)
create_new_property.save()
try:
property_images = request.FILES.getlist('property_images')
for img in property_images:
new_img = PropertyImages(
property=create_new_property,
images=img
)
new_img.save()
except Exception as e:
print(e)
subject = "Dream Homes: Property Added Successfully"
body = ("Hi "+user.first_name+". New Property Added Successfully. Your Property ID: " +
prop_id+". It will be listed once all details are verified.")
send_customise_mail(
subject=subject,
body=body,
email_id=user.email)
messages.add_message(request, messages.WARNING,
"New Property Created Successfully.")
return render(request, 'dashboard_templates/property/add_new_property.html')
@login_required(login_url='login')
def list_uploaded_properties(request):
properties_list_by_user = Property.objects.filter(uploaded_by=request.user)
membership_amount = 50000 # In Paisa = Rs 500
membership_currency = 'INR'
client = razorpay.Client(auth=(razorpay_api_key, razorpay_api_secret_key))
payment_data = {"amount": membership_amount,
"currency": membership_currency, 'payment_capture': '1'}
payment_order = client.order.create(data=payment_data)
payment_order_id = payment_order['id']
context = {
'amount': membership_amount,
'api_key': razorpay_api_key,
'order_id': payment_order_id,
'property_list': properties_list_by_user
}
return render(request, 'dashboard_templates/property/list_uploaded_properties.html', context)
@login_required(login_url='login')
def list_property_contacts(request, id):
property_contacts = PropertyContacts.objects.filter(property=id,
property__membership_purchased=True)
context = {
'property_contacts': property_contacts
}
return render(request, 'dashboard_templates/property/property_contacts.html', context)
@login_required(login_url='login')
def delete_property(request, id):
requested_property = Property.objects.get(id=id)
requested_property.delete()
return redirect('property_list')
@login_required(login_url='login')
def update_property(request, id, view=None):
user = request.user
requested_property = Property.objects.filter(id=id)
if request.method == 'POST':
property_update = Property.objects.filter(id=id).first()
property_sr = request.POST.get('property_sr')
property_type = request.POST.get('property_type')
property_address = request.POST.get('property_address')
property_city = request.POST.get('property_city')
property_state = request.POST.get('property_state')
no_bedrooms = request.POST.get('no_bedrooms')
no_bathrooms = request.POST.get('no_bathrooms')
no_balconies = request.POST.get('no_balconies')
area_details = request.POST.get('area_details')
furnishing_type = request.POST.get('furnishing_type')
open_parking = request.POST.get('open_parking')
covered_parking = request.POST.get('covered_parking')
availability_status = request.POST.get('availability_status')
property_age = request.POST.get('property_age')
property_ownership = request.POST.get('property_ownership')
expected_price = request.POST.get('expected_price')
price_sq_ft = request.POST.get('price_sq_ft')
property_unique_details = request.POST.get('property_unique_details')
zip_code = request.POST.get('zip_code')
amenities = request.POST.get('amenities')
property_update.sell_rent = property_sr
property_update.type = property_type
property_update.address = property_address
property_update.city = property_city
property_update.state = property_state
property_update.bedrooms = no_bedrooms
property_update.bathrooms = no_bathrooms
property_update.balconies = no_balconies
property_update.area = area_details
property_update.furnishing = furnishing_type
property_update.open_parking = open_parking
property_update.covered_parking = covered_parking
property_update.availability = availability_status
property_update.age = property_age
property_update.ownership = property_ownership
property_update.expected_price = expected_price
property_update.area_price = price_sq_ft
property_update.zip_code = zip_code
property_update.details = property_unique_details
property_update.amenities = amenities
try:
updated_blog_image = request.FILES['blog_image']
property_update.blog_image = updated_blog_image
except Exception as e:
print(e)
requested_property_images = PropertyImages.objects.filter(
property=property_update)
try:
property_images = request.FILES.getlist('property_images')
if property_images:
for old_img in requested_property_images:
old_img.delete()
for img in property_images:
new_images = PropertyImages(
property=property_update,
images=img
)
new_images.save()
except Exception as e:
print(e)
property_update.save()
subject = "Dream Homes: Property Updated Successfully"
body = ("Hi "+user.first_name+". Your Property " +
property_update.property_id+" Updated Successfully.")
send_customise_mail(
subject=subject,
body=body,
email_id=user.email)
messages.add_message(request, messages.WARNING,
"Property Details Updated Successfully.")
if view:
context = {'requested_property': requested_property,
'view_property': True}
else:
context = {'requested_property': requested_property}
return render(request, 'dashboard_templates/property/update_property.html', context)
@login_required(login_url='login')
def view_property_images(request, id):
property_images = PropertyImages.objects.filter(property=id)
context = {
'property_images': property_images
}
return render(request, 'dashboard_templates/property/property_images.html', context)
@csrf_exempt
def payment_success_membership(request, id):
user = request.user
if request.method == 'POST':
payment_id = request.POST.get('razorpay_payment_id', '')
property = Property.objects.get(id=id)
property.membership_purchased = True
amount = 500
create_property_membership = PropertyMembership(
property=property,
user=request.user,
property_membership_plan=True,
payment_order_id=payment_id,
property_membership_amount=amount
)
create_property_membership.save()
property.save()
subject = "Dream Homes: Property Membership"
body = ("Hi "+user.first_name+". Thanks for Purchasing Property " +
property.property_id+" Membership.")
send_customise_mail(
subject=subject,
body=body,
email_id=user.email)
return redirect('property_list')
@login_required(login_url='login')
def pending_properties_view(request):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
pending_properties_list = Property.objects.filter(
approved=False)
context = {
'pending_properties_data': pending_properties_list
}
return render(request, 'dashboard_templates/property/pending_properties.html', context)
@login_required(login_url='login')
def approve_property(request, id):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
property = Property.objects.get(id=id)
property.approved = True
property.approved_on = datetime.datetime.now()
property.is_listed = True
property.save()
return redirect('pending_properties')
@login_required(login_url='login')
def unlist_property(request, id):
property = Property.objects.get(id=id)
property.is_listed = False
property.unlisted_date = datetime.datetime.now()
property.save()
return redirect('unlisted_properties')
@login_required(login_url='login')
def listed_properties_view(request):
listed_properties_list = Property.objects.filter(
approved=True, is_listed=True, uploaded_by=request.user)
context = {
'listed_properties_data': listed_properties_list
}
return render(request, 'dashboard_templates/property/listed_properties.html', context)
@login_required(login_url='login')
def unlisted_properties_view(request):
unlisted_properties_list = Property.objects.filter(
approved=True, is_listed=False, uploaded_by=request.user)
context = {
'unlisted_properties_data': unlisted_properties_list
}
return render(request, 'dashboard_templates/property/unlisted_properties.html', context)
@login_required(login_url='login')
def calculate_emi(request):
if request.method == 'POST':
amount = request.POST.get('amount')
interest = request.POST.get('interest')
tenure = request.POST.get('tenure')
if not amount or not interest or not tenure:
messages.add_message(request, messages.WARNING,
"Fill All the Details Properly")
return render(request, 'emi_calculate.html')
else:
rate_of_interest_per_month = float(interest)/(12*100)
monthly_emi = float(amount) * float(rate_of_interest_per_month) * ((1+float(rate_of_interest_per_month))
** float(tenure))/((1+float(rate_of_interest_per_month)) ** float(tenure) - 1)
total_interest_amount = (
float(monthly_emi)*float(tenure)) - float(amount)
context = {
'amount': amount,
'rate_of_interest_per_month': rate_of_interest_per_month,
'tenure': tenure,
'monthly_emi': monthly_emi,
'total_interest_amount': total_interest_amount,
'interest': interest,
'total_amount': round((float(amount)+float(total_interest_amount)), 2),
}
return render(request, 'dashboard_templates/emi_calculate.html', context)
else:
return render(request, 'dashboard_templates/emi_calculate.html')
@login_required(login_url='login')
def agents_list_view(request):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
agents_data = UserProfile.objects.filter(user_type='Agent').all()
context = {
'agents_list': agents_data
}
return render(request, 'dashboard_templates/reports/agents_list.html', context)
@login_required(login_url='login')
def properties_uploaded_by_user(request):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
properties = Property.objects.all()
context = {
'properties': properties
}
return render(request, 'dashboard_templates/reports/user_uploaded_properties.html', context)
@login_required(login_url='login')
def customers_list_view(request):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
customers_data = UserProfile.objects.filter(user_type='Buyer').all()
context = {
'customers_data': customers_data
}
return render(request, 'dashboard_templates/reports/customers_list.html', context)
@login_required(login_url='login')
def total_uploaded_properties(request):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
all_uploaded_properties = Property.objects.all()
context = {
'all_uploaded_properties': all_uploaded_properties
}
return render(request, 'dashboard_templates/reports/total_uploaded_properties.html', context)
@login_required(login_url='login')
def total_listed_properties(request):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
all_listed_properties = Property.objects.filter(is_listed=True)
context = {
'all_listed_properties': all_listed_properties
}
return render(request, 'dashboard_templates/reports/total_listed_properties.html', context)
@login_required(login_url='login')
def total_unlisted_properties(request):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
all_unlisted_properties = Property.objects.filter(
is_listed=False, unlisted_date__isnull=False)
context = {
'all_unlisted_properties': all_unlisted_properties
}
return render(request, 'dashboard_templates/reports/total_unlisted_properties.html', context)
@login_required(login_url='login')
def revenue_details(request):
user = request.user
if not user.is_superuser:
return redirect('index')
else:
if request.method == 'POST':
from_date = request.POST.get('from_date')
to_date = request.POST.get('to_date')
if from_date and to_date:
from_date = datetime.datetime.strptime(from_date, "%Y-%m-%d")
to_date = datetime.datetime.strptime(to_date, "%Y-%m-%d")
to_date = datetime.datetime(
to_date.year, to_date.month, to_date.day, 23, 59, 59)
revenue_details = PropertyMembership.objects.filter(
payment_date__gte=from_date, payment_date__lte=to_date)
context = {
'revenue_details': revenue_details
}
if revenue_details:
messages.add_message(request, messages.SUCCESS,
"Revenue Details From: "+str(from_date)+" To: "+str(to_date))
else:
messages.add_message(request, messages.WARNING,
"No Revenue Details Found !!")
return render(request, 'dashboard_templates/reports/revenue_details.html', context)
else:
return render(request, 'dashboard_templates/reports/revenue_details.html')
else:
return render(request, 'dashboard_templates/reports/revenue_details.html')
def property_comments(request, id):
if request.method == 'POST':
property = Property.objects.get(id=id)
name = request.POST.get('name')
email = request.POST.get('email')
contact = request.POST.get('contact')
comment = request.POST.get('comment')
new_property_contact = PropertyContacts(
name=name, email=email, contact=contact, comments=comment, property=property)
new_property_contact.save()
subject = "Dream Homes: Property Response"
body = ("Hi "+property.uploaded_by.first_name +
". Someone Shows Interest in your Property. Property ID: "+property.property_id+".")
send_customise_mail(
subject=subject,
body=body,
email_id=property.uploaded_by.email)
messages.add_message(request, messages.WARNING,
"Query Submitted Successfully...")
return redirect("property_details", id=id)
else:
return redirect("index")
@login_required(login_url='login')
def view_user_image(request, id):
user_profile_image = UserProfile.objects.filter(user=id)
context = {
'user_profile_image': user_profile_image
}
return render(request, 'dashboard_templates/reports/user_images.html', context)
| karan7864/property_management | pms/views.py | views.py | py | 38,362 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "pms.models.Property.objects.filter",
"line_number": 42,
"usage_type": "call"
},
{
"api_name": "pms.models.Property.objects",
"line_number": 42,
"usage_type": "attribute"
},
{
"api_name": "pms.models.Property",
"line_number": 42,
"usage_type": "name"
},
... |
43231808566 | """
<风格>复古</风格>的旗袍款式
1. 先分词,再标签。
"""
import os
import re
from transformers import BertTokenizer
from collections import defaultdict, Counter
PATTEN_BIO = re.compile('<?.*>?')
def parse_tag_words(subwords):
""" HC<领型>圆领</领型><风格>拼接</风格>连衣裙 """
tags = []
new_subwords = []
i = 0
entity = ''
while i < len(subwords):
if subwords[i] == '<':
if entity == '': # <领型>
for j in range(i + 1, len(subwords)):
if subwords[j] == '>':
break
entity += subwords[j]
else: # </领型>
for j in range(i + 1, len(subwords)):
if subwords[j] == '>':
break
entity = ''
i = j + 1
continue
if entity != '': # 圆领
for j in range(i, len(subwords)):
if subwords[j] == '<':
i = j
break
new_subwords.append(subwords[j])
if j == i:
tags.append('B-' + entity)
else:
tags.append('I-' + entity)
continue
tags.append('O')
new_subwords.append(subwords[i])
i = i + 1
return new_subwords, tags
def bpe(part='train', export_dict=False):
all_tags = []
data_dir = '/workspace/fairseq/data/JD/kb_ner'
bpe_dir = data_dir + '/bpe'
bpe = BertTokenizer('/workspace/fairseq/data/vocab/vocab.jd.txt') # never_split参数对tokenizer不起作用
f_src = open(os.path.join(bpe_dir, part + '.src'), 'w', encoding='utf-8')
f_tgt = open(os.path.join(bpe_dir, part + '.tgt'), 'w', encoding='utf-8')
for line in open(data_dir + '/raw/jdai.jave.fashion.' + part, 'r', encoding='utf-8'):
cid, sid, sent, tag_sent = line.strip().split('\t')
subwords = bpe._tokenize(tag_sent)
subwords, tags = parse_tag_words(subwords)
f_src.write(' '.join(subwords) + '\n')
f_tgt.write(' '.join(tags) + '\n')
all_tags += tags
if export_dict:
with open(os.path.join(bpe_dir, 'vocab.tgt.txt'), 'w', encoding='utf-8') as f_out:
f_out.write('\n'.join([k for k, cnt in Counter(all_tags).items()]) + '\n')
def find_all_entity():
all_tag_sent = []
for line in open('raw/jdai.jave.fashion.train', 'r', encoding='utf-8'):
cid, sid, sent, tag_sent = line.strip().split('\t')
all_tag_sent.append(tag_sent)
entity_list = re.findall('<.*?>', ''.join(all_tag_sent))
aa = Counter(entity_list)
f_out = open('raw/vocab_bioattr.txt', 'w', encoding='utf-8')
f_out.write(''.join(['{}\t{}\n'.format(k, cnt) for k, cnt in aa.items()]))
if __name__ == "__main__":
bpe('train', export_dict=True)
bpe('valid')
bpe('test')
| WaveLi123/m-kplug | m_kplug/data_process/bpe_kb_encoder.py | bpe_kb_encoder.py | py | 2,910 | python | en | code | 4 | github-code | 36 | [
{
"api_name": "re.compile",
"line_number": 13,
"usage_type": "call"
},
{
"api_name": "transformers.BertTokenizer",
"line_number": 60,
"usage_type": "call"
},
{
"api_name": "os.path.join",
"line_number": 61,
"usage_type": "call"
},
{
"api_name": "os.path",
"lin... |
18338901118 | import os
import wave
import numpy as np
import calRMSE
import dsp
import pylab as pl
import scipy.signal as signal
import numpy as np
import cv2
import matplotlib.pyplot as plt
import scipy
from scipy.fftpack import fft
from scipy.io import wavfile as wav
from scipy import signal as sig
from scipy.signal import windows
'''
1.录取敲击声音频,音频中包含多个敲击声
2.将数据流中的多个敲击声切割出来,转换为stft矩阵,进行组合为3通道
3.load模型
4.将数据输入进模型进行测试
5.输出识别结果
'''
def read_wav_scipy(wav_path):
"""[使用scipy读取wav]
Args:
wav_path ([str]): [路径]
Returns:
[np.array, numeric]: [信号及采样率]
"""
wf = wave.open(wav_path, "rb") # 打开wav
params = wf.getparams() # 参数获取
nchannels, sampwidth, framerate, nframes = params[:4] #nframes指bufsize
#声道数, 量化位数(byte单位), 采样频率,
#采样点数, 压缩类型, 压缩类型的描述
str_data = wf.readframes(nframes)
wf.close() # 关闭wave
#####2.将波形数据转换为数组
# N-1 一维数组,右声道接着左声道
wave_data = np.fromstring(str_data, dtype=np.short)
# 2-N N维数组
wave_data.shape = -1, 1
# 将数组转置为 N-2 目标数组
wave_data = wave_data.T
#
#fs, signal = wav.read(wav_path)
#if(len(signal.shape) > 1):
#signal = signal[:,0]
#return_signal = signal
#
return_signal=wave_data[0];
if return_signal.dtype.name == "int16":
return_signal = return_signal / 32767
fs=framerate
return return_signal, fs
def enframe(x, win, inc):
nx = len(x) # 取数据长度
nwin = len(win) # 取窗长
if nwin == 1: # 判断窗长是否为1,若为1,即表示没有设窗函数
len_temp = win # 是,帧长=win
else:
len_temp = nwin # 否,帧长=窗长
if inc is None: # 如果只有两个参数,设帧inc=帧长
inc = len_temp
nf = int(np.fix((nx-len_temp+inc)/inc)) # 计算帧数
frameout = np.zeros((nf, len_temp)) # 初始化
indf = np.reshape(inc * np.arange(0, nf), (nf, 1))
inds = np.reshape(np.arange(0, len_temp), (1, len_temp))
## 此处没有matlab的语法糖,无法做到简单复制
## Caution: 此处数值已经产生了细微的不同
# frameout = x[indf[:, np.ones((1, len_temp))] + inds[np.ones((nf, 1)), :]]
def myfunc(a):
return x[a]
# 方式1: 使用vectorize来映射
# vfunc = np.vectorize(myfunc)
# frameout = vfunc(np.repeat(indf, len_temp, axis=1) + np.repeat(inds, nf, axis=0))
# 方式2: 直接遍历来映射
temp = np.repeat(indf, len_temp, axis=1) + np.repeat(inds, nf, axis=0)
frameout = np.zeros(np.shape(temp))
for idx,i in enumerate(temp):
for idxx,j in enumerate(i):
frameout[idx, idxx] = myfunc(j)
if nwin > 1:
frameout = frameout * win
return frameout
def vad_specEn(x, wnd, inc, NIS, th1, th2, fs):
frames = enframe(x, wnd, inc).T # 分帧
fn = np.size(frames, axis=1) # 求帧数
if len(wnd) == 1:
wlen = wnd # 求出帧长
else:
wlen = len(wnd)
df = fs / wlen # 求出FFT后频率分辨率
fx1 = int(np.fix(250 / df) + 1)
fx2 = int(np.fix(3500 / df) + 1) # 找出250Hz和3500Hz的位置
km = int(np.floor(wlen / 8)) # 计算出子带个数
K = 0.5 # 常数K
Hb = np.zeros((fn))
for i in range(fn):
A = np.abs(fft(frames[:, i])) # 取来一帧数据FFT后取幅值
E = A[fx1 + 1 : fx2 - 1] # 只取250~3500Hz之间的分量
E = E * E # 计算能量
P1 = E / np.sum(E) # 幅值归一化? -> 应该是计算概率
index = np.argwhere(P1 >= 0.9) # 寻找是否有分量的概率大于0.9
if len(index) != 0:
E[index] = 0 # 若有,该分量置0
Eb = np.zeros((km))
for m in range(km): # 计算子带能量
Eb[m] = np.sum(E[4 * m : 4 * (m + 1)])
prob = (Eb + K) / np.sum(Eb + K) # 计算子带概率
Hb[i] = -np.sum(prob * np.log(prob + 10 ** -23))
Enm = sig.medfilt(Hb, 5) # 1次平滑处理
for i in range(9):
Enm = sig.medfilt(Enm, 5) # 9次平滑处理
Me = np.min(Enm) # 设置阈值
eth = np.mean(Enm[1:NIS])
Det = eth - Me
T1 = th1 * Det + Me
T2 = th2 * Det + Me
voiceseg, vsl, SF, NF = vad_revr(Enm, T1, T2)
return voiceseg, vsl, SF, NF, Enm
def vad_revr(dst1, T1, T2):
fn = len(dst1) # 取得帧数
maxsilence = 8 # 初始化
minlen = 5
status = 0
count = [0]
silence = [0]
x1 = [0]
x2 = [0]
# 开始端点检测
xn = 0
for n in range(1, fn):
if status == 0 or status == 1: # 0 = 静音, 1 = 可能开始
if dst1[n] < T2: # 确信进入语音段
x1[xn] = np.max((n - count[xn] - 1, 1))
status = 2
silence[xn] = 0
count[xn] += 1
elif dst1[n] < T1: # 可能处于语音段
status = 1
count[xn] += 1
else: # 静音状态
status = 0
count[xn] = 0
x1[xn] = 0
x2[xn] = 0
elif status == 2: # 2 = 语音段
if dst1[n] < T1: # 保持在语音段
count[xn] += 1
else: # 语音将结束
silence[xn] += 1
if silence[xn] < maxsilence: # 静音还不够长,尚未结束
count[xn] += 1
elif count[xn] < minlen: # 语音长度太短,认为是噪声
status = 0
silence[xn] = 0
count[xn] = 0
else:
status = 3
x2[xn] = x1[xn] + count[xn]
elif status == 3: # 语音结束,为下一个语音准备
status = 0
xn += 1
count.append(0)
silence.append(0)
x1.append(0)
x2.append(0)
el = len(x1) - 1
if x1[el] == 0:
el = el - 1 # 获得x1的实际长度
if el == 0:
return None,None,None,None
if x2[el] == 1: # 如果x2最后一个值为0,对它设置为fn
print("Error: Not find endding point!")
x2[el] = fn
SF = np.zeros((1, fn))
NF = np.ones((1, fn))
for i in range(el+1): # 按x1和x2,对SF和NF赋值
SF[0, x1[i] : x2[i]] = 1
NF[0, x1[i] : x2[i]] = 0
speechIndex = np.argwhere(SF == 1)
voiceseg = findSegment(speechIndex) # 计算voiceseg
vsl = len(voiceseg)
return voiceseg, vsl, SF, NF
def findSegment(express):
express_temp = [e[0] if e[0] != 0 else e[1] for e in express]
express = express_temp
if express[0] == 0:
voiceIndex = np.argwhere(express != 0) # 寻找express中为1的位置
else:
voiceIndex = express
class seg_object(object):
"""
保存begin/end/duration属性
"""
def __init__(self) -> None:
pass
soundSegment = [seg_object()]
k = 0
soundSegment[k].begin = voiceIndex[0] # 设置第一组有话段的起始位置
for i in range(len(voiceIndex)-1):
if voiceIndex[i + 1] - voiceIndex[i] > 1: # 本组有话段结束
soundSegment[k].end = voiceIndex[i] # 设置本组有话段的结束位置
soundSegment.append(seg_object())
soundSegment[k + 1].begin = voiceIndex[i + 1] # 设置下一组有话段的起始位置
k += 1
soundSegment[k].end = voiceIndex[-1] # 最后一组有话段的结束位置
# 计算每组有话段的长度
for i in range(k+1):
soundSegment[i].duration = soundSegment[i].end - soundSegment[i].begin + 1
return soundSegment
def FrameTimeC(frameNum, framelen, inc, fs):
frameTime = ((np.arange(1, frameNum + 1) - 1) * inc + framelen / 2) / fs
return frameTime
def read_data(i):
global list1;
x=list1[i];
return np.array(x,float);
def seg_data(wavfile,th1,th2,tap_num = 3,threshold = 30):
global list1;
list1=[];
# 遍历文件开始处理
signal, fs = read_wav_scipy(wavfile)
# step2.0: 变量使用及预处理
IS = 0.7 # 设置前导无话段长度
wlen = 200 # 设置帧长为25ms
inc = 80 # 求帧移
signal = signal[int(np.round(0.25 * fs))-1:] # 去除开头的硬件噪声?
signal_normalized = signal / np.max(np.abs(signal)) # 幅值非严格归一 -> [-1, 1]
N = len(signal_normalized) # 信号长度
time = np.arange(0, N) / fs
wnd = sig.windows.hamming(wlen, sym=False) # 此处matlab的显示精度需要设置,数值应该是一样的
overlap = wlen - inc
NIS = int(np.fix((IS * fs - wlen) / inc + 1))
#th1=0.7;
#th2=0.8;
'''
# step2.1: 阈值选取
material_list = ["6061", "yCu", "bxg304"]
# assert material_type in material_list, "材料类型不在列表中,请更换材料类型参数;Material_type not in the list... Please change the \"material_type\" parameter."
if material_type in material_list:
th1 = 0.35
th2 = 0.3
# th1 = 0.25
# th2 = 0.2
else:
th1 = 0.7
th2 = 0.8
'''
# step3.0: 谱熵法计算
voiceseg, vsl, SF, NF, Enm = vad_specEn(
signal_normalized, wnd, inc, NIS, th1, th2, fs
) # 谱熵法
if voiceseg==None and vsl==None:
return np.array([[[1]]], float)
fn = np.max(np.size(SF))
frameTime = FrameTimeC(fn, wlen, inc, fs) # 计算各帧对应的时间
# step3.1: 切分开始
up_cut_time_point = []
down_cut_time_point = []
for k in range(vsl):
nx1 = voiceseg[k].begin
nx2 = voiceseg[k].end
up_cut_time_point.append(frameTime[nx1])
down_cut_time_point.append(frameTime[nx2])
multi_data=[];
for i in range(vsl):
'''
if loc.find("10cm") + 1:
t1 = up_cut_time_point[i] - 0.0025
else:
t1 = up_cut_time_point[i] - 0.001
'''
t1 = up_cut_time_point[i] - 0.001
t2 = t1 + 0.009
touchsound = signal[int(np.round(t1 * fs)) : int(np.round(t2 * fs))]
# 观察结果
N_final = len(touchsound)
time_final = N_final / fs
Xtime_final = np.linspace(0, time_final, N_final, endpoint=True)
"""
plt.close()
plt.figure()
touchsound_final=touchsound
plt.plot(Xtime_final, touchsound_final)
touchsound_final2=touchsound_final.reshape(1,-1);
list1.append(Xtime_final);
list1.append(touchsound_final2[0]);
plt.title("touchsound_final")
plt.show()
"""
# 求切割完成的信号的STFT得到时频分析的矩阵,进行多通道的组合
# window_size = 32
#window_size = 32
#stft_stride = 10
window_size = 64
stft_stride = 10
#window_size = 128
#stft_stride = 5
stft_n_downsample = 1
stft_no_log = False
log_alpha = 0.1
#print(touchsound)
# [f, t, Zxx] = signal.spectrogram(touchsound_final, 44100, window="hamm", nperseg=window_size, noverlap=stft_stride, detrend=False)
spectrum = dsp.signal2spectrum(touchsound, window_size,stft_stride, stft_n_downsample, not stft_no_log)
#plt.close()#############
#plt.figure()############
# y_max = np.max(spectrum)
#plt.xlim([2, spectrum.shape[1]])########
#plt.ylim([0, spectrum.shape[0]])#######
# plt.axis("off")
#plt.imshow(spectrum)#########
# plt.savefig();
#print(spectrum)
multi_data.append(spectrum)
multi_data1 = np.array(multi_data, dtype = np.float32)
ch = 3
print("vsl : "+str(vsl))
if vsl<ch :
return np.array([[[0]]], float)
#for i in range(ch):
#print (multi_data1[i]);
#multi_data1[i] = normliaze(multi_data[i], mode = 'z-score', truncated=5)
#print (multi_data1[i])
return np.array(multi_data1,float)
def normliaze(data, mode = 'z-score', sigma = 0, dtype=np.float32, truncated = 2):
'''
mode: norm | std | maxmin | 5_95
dtype : np.float64,np.float16...
'''
data = data.astype(dtype)
data_calculate = data.copy()
if mode == 'norm':
result = (data-np.mean(data_calculate))/sigma
elif mode == 'z-score':
mu = np.mean(data_calculate)
sigma = np.std(data_calculate)
print(np.mean(data_calculate))
print(np.std(data_calculate))
result = (data - mu) / sigma
return result.astype(dtype)
| wzt1512978386/Surtify | app/src/main/python/DataPreprocessing2.py | DataPreprocessing2.py | py | 12,746 | python | en | code | 1 | github-code | 36 | [
{
"api_name": "wave.open",
"line_number": 34,
"usage_type": "call"
},
{
"api_name": "numpy.fromstring",
"line_number": 43,
"usage_type": "call"
},
{
"api_name": "numpy.short",
"line_number": 43,
"usage_type": "attribute"
},
{
"api_name": "numpy.fix",
"line_num... |
6508918488 | import numpy as np
import csv
import chainer
import chainer.functions as F
import chainer.links as L
import sys
import matplotlib.pyplot as plt
class LaughNeuralNet(chainer.Chain):
def __init__(self):
super(LaughNeuralNet, self).__init__(
l1=L.Linear(None, 200),
l2=L.Linear(None, 100),
l3=L.Linear(None, 2)
)
def __call__(self, x):
h = F.dropout(F.relu(self.l1(x)))
h = F.dropout(F.relu(self.l2(h)))
h = self.l3(h)
return h
class LaughNeuralNet2(chainer.Chain):
def __init__(self):
super(LaughNeuralNet2, self).__init__(
l1=L.Linear(None, 1000),
b1=L.BatchNormalization(1000),
l2=L.Linear(None, 1000),
b2=L.BatchNormalization(1000),
l3=L.Linear(None, 1000),
l4=L.Linear(None, 500),
b3=L.BatchNormalization(500),
l5=L.Linear(None, 500),
l6=L.Linear(None, 2)
)
def __call__(self, x):
h = F.dropout(self.b1(F.relu(self.l1(x))))
h = F.dropout(self.b2(F.relu(self.l2(h))))
h = F.dropout(F.relu(self.l3(h)))
h = F.dropout(self.b3(F.relu(self.l4(h))))
h = F.dropout(F.relu(self.l5(h)))
h = self.l6(h)
return h
class LaughNet(chainer.Chain):
def __init__(self):
super(LaughNet, self).__init__(
l1=L.LSTM(None, 200),
l2=L.Linear(None, 100),
l3=L.Linear(None, 2)
)
def __call__(self, x):
self.l1.reset_state()
h = self.l1(x)
h = F.dropout(self.l2(h))
h = self.l3(h)
return h
class LaughNet2(chainer.Chain):
def __init__(self):
super(LaughNet2, self).__init__(
l1=L.Linear(None, 200),
l2=L.Linear(None, 100),
l3=L.Linear(None, 2)
)
def __call__(self, x):
h = F.dropout(F.relu(self.l1(x)))
h = F.dropout(F.relu(self.l2(h)))
h = self.l3(h)
return h
# test predicting
def test_predict(path='movie_model'):
model = LaughNet()
chainer.serializers.load_npz(path, model)
with open('confused_data/Raw/v_0.csv', 'r') as f:
reader = csv.reader(f)
csv0 = [(np.array(row, dtype=np.float32), 0) for row in reader]
with open('confused_data/Raw/v_1.csv', 'r') as f:
reader = csv.reader(f)
csv1 = [(np.array(row, dtype=np.float32), 1) for row in reader]
all_ary = csv0 + csv1
ans_counts = 0
incorrect = 0
question_num = len(all_ary)
plt_ary = []
for data in all_ary:
correct = data[1]
np_data = data[0].reshape(1, 50)
y = np.argmax(F.softmax(model(np_data)).data)
if y == correct:
ans_counts += 1
plt_ary.append((model(np_data).data, y, 1))
else:
incorrect += 1
plt_ary.append((model(np_data).data, y, 0))
print('accuracy:', str(ans_counts / question_num))
print('incorrect rate:', str(incorrect / question_num))
# plt
x_ary0 = []
y_ary0 = []
x_ary1 = []
y_ary1 = []
incorrect_x0 = []
incorrect_y0 = []
incorrect_x1 = []
incorrect_y1 = []
for dt in plt_ary:
if dt[2] == 0:
if dt[1] == 0:
incorrect_x0.append(dt[0][0][0])
incorrect_y0.append(dt[0][0][1])
continue
else:
incorrect_x1.append(dt[0][0][0])
incorrect_y1.append(dt[0][0][1])
continue
if dt[1] == 0:
x_ary0.append(dt[0][0][0])
y_ary0.append(dt[0][0][1])
else:
x_ary1.append(dt[0][0][0])
y_ary1.append(dt[0][0][1])
np_plt_x0 = np.array(x_ary0, dtype=np.float32)
np_plt_y0 = np.array(y_ary0, dtype=np.float32)
np_plt_x1 = np.array(x_ary1, dtype=np.float32)
np_plt_y1 = np.array(y_ary1, dtype=np.float32)
np_incorrectx0 = np.array(incorrect_x0, dtype=np.float32)
np_incorrecty0 = np.array(incorrect_y0, dtype=np.float32)
np_incorrectx1= np.array(incorrect_x1, dtype=np.float32)
np_incorrecty1 = np.array(incorrect_y1, dtype=np.float32)
plt.plot(np_plt_x1, np_plt_y1, 'o', color='r', alpha=0.5)
plt.plot(np_plt_x0, np_plt_y0, 'o', color='b', alpha=0.5)
plt.plot(np_incorrectx0, np_incorrecty0, 'o', color='g', alpha=0.5)
plt.plot(np_incorrectx1, np_incorrecty1, 'o', color='m', alpha=0.5)
plt.show()
# predict
test_predict()
| awkrail/laugh_maker | validation_src/predict.py | predict.py | py | 4,519 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "chainer.Chain",
"line_number": 9,
"usage_type": "attribute"
},
{
"api_name": "chainer.links.Linear",
"line_number": 12,
"usage_type": "call"
},
{
"api_name": "chainer.links",
"line_number": 12,
"usage_type": "name"
},
{
"api_name": "chainer.links.Li... |
22530028718 | """Implementation of a space that represents textual strings."""
from typing import Any, Dict, FrozenSet, Optional, Set, Tuple, Union
import numpy as np
from gym.spaces.space import Space
alphanumeric: FrozenSet[str] = frozenset(
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
)
class Text(Space[str]):
r"""A space representing a string comprised of characters from a given charset.
Example::
>>> # {"", "B5", "hello", ...}
>>> Text(5)
>>> # {"0", "42", "0123456789", ...}
>>> import string
>>> Text(min_length = 1,
... max_length = 10,
... charset = string.digits)
"""
def __init__(
self,
max_length: int,
*,
min_length: int = 1,
charset: Union[Set[str], str] = alphanumeric,
seed: Optional[Union[int, np.random.Generator]] = None,
):
r"""Constructor of :class:`Text` space.
Both bounds for text length are inclusive.
Args:
min_length (int): Minimum text length (in characters). Defaults to 1 to prevent empty strings.
max_length (int): Maximum text length (in characters).
charset (Union[set], str): Character set, defaults to the lower and upper english alphabet plus latin digits.
seed: The seed for sampling from the space.
"""
assert np.issubdtype(
type(min_length), np.integer
), f"Expects the min_length to be an integer, actual type: {type(min_length)}"
assert np.issubdtype(
type(max_length), np.integer
), f"Expects the max_length to be an integer, actual type: {type(max_length)}"
assert (
0 <= min_length
), f"Minimum text length must be non-negative, actual value: {min_length}"
assert (
min_length <= max_length
), f"The min_length must be less than or equal to the max_length, min_length: {min_length}, max_length: {max_length}"
self.min_length: int = int(min_length)
self.max_length: int = int(max_length)
self._char_set: FrozenSet[str] = frozenset(charset)
self._char_list: Tuple[str, ...] = tuple(charset)
self._char_index: Dict[str, np.int32] = {
val: np.int32(i) for i, val in enumerate(tuple(charset))
}
self._char_str: str = "".join(sorted(tuple(charset)))
# As the shape is dynamic (between min_length and max_length) then None
super().__init__(dtype=str, seed=seed)
def sample(
self, mask: Optional[Tuple[Optional[int], Optional[np.ndarray]]] = None
) -> str:
"""Generates a single random sample from this space with by default a random length between `min_length` and `max_length` and sampled from the `charset`.
Args:
mask: An optional tuples of length and mask for the text.
The length is expected to be between the `min_length` and `max_length` otherwise a random integer between `min_length` and `max_length` is selected.
For the mask, we expect a numpy array of length of the charset passed with `dtype == np.int8`.
If the charlist mask is all zero then an empty string is returned no matter the `min_length`
Returns:
A sampled string from the space
"""
if mask is not None:
assert isinstance(
mask, tuple
), f"Expects the mask type to be a tuple, actual type: {type(mask)}"
assert (
len(mask) == 2
), f"Expects the mask length to be two, actual length: {len(mask)}"
length, charlist_mask = mask
if length is not None:
assert np.issubdtype(
type(length), np.integer
), f"Expects the Text sample length to be an integer, actual type: {type(length)}"
assert (
self.min_length <= length <= self.max_length
), f"Expects the Text sample length be between {self.min_length} and {self.max_length}, actual length: {length}"
if charlist_mask is not None:
assert isinstance(
charlist_mask, np.ndarray
), f"Expects the Text sample mask to be an np.ndarray, actual type: {type(charlist_mask)}"
assert (
charlist_mask.dtype == np.int8
), f"Expects the Text sample mask to be an np.ndarray, actual dtype: {charlist_mask.dtype}"
assert charlist_mask.shape == (
len(self.character_set),
), f"expects the Text sample mask to be {(len(self.character_set),)}, actual shape: {charlist_mask.shape}"
assert np.all(
np.logical_or(charlist_mask == 0, charlist_mask == 1)
), f"Expects all masks values to 0 or 1, actual values: {charlist_mask}"
else:
length, charlist_mask = None, None
if length is None:
length = self.np_random.integers(self.min_length, self.max_length + 1)
if charlist_mask is None:
string = self.np_random.choice(self.character_list, size=length)
else:
valid_mask = charlist_mask == 1
valid_indexes = np.where(valid_mask)[0]
if len(valid_indexes) == 0:
if self.min_length == 0:
string = ""
else:
# Otherwise the string will not be contained in the space
raise ValueError(
f"Trying to sample with a minimum length > 0 ({self.min_length}) but the character mask is all zero meaning that no character could be sampled."
)
else:
string = "".join(
self.character_list[index]
for index in self.np_random.choice(valid_indexes, size=length)
)
return "".join(string)
def contains(self, x: Any) -> bool:
"""Return boolean specifying if x is a valid member of this space."""
if isinstance(x, str):
if self.min_length <= len(x) <= self.max_length:
return all(c in self.character_set for c in x)
return False
def __repr__(self) -> str:
"""Gives a string representation of this space."""
return (
f"Text({self.min_length}, {self.max_length}, characters={self.characters})"
)
def __eq__(self, other) -> bool:
"""Check whether ``other`` is equivalent to this instance."""
return (
isinstance(other, Text)
and self.min_length == other.min_length
and self.max_length == other.max_length
and self.character_set == other.character_set
)
@property
def character_set(self) -> FrozenSet[str]:
"""Returns the character set for the space."""
return self._char_set
@property
def character_list(self) -> Tuple[str, ...]:
"""Returns a tuple of characters in the space."""
return self._char_list
def character_index(self, char: str) -> np.int32:
"""Returns a unique index for each character in the space's character set."""
return self._char_index[char]
@property
def characters(self) -> str:
"""Returns a string with all Text characters."""
return self._char_str
@property
def is_np_flattenable(self) -> bool:
"""The flattened version is an integer array for each character, padded to the max character length."""
return True
| openai/gym | gym/spaces/text.py | text.py | py | 7,660 | python | en | code | 33,110 | github-code | 36 | [
{
"api_name": "typing.FrozenSet",
"line_number": 8,
"usage_type": "name"
},
{
"api_name": "gym.spaces.space.Space",
"line_number": 13,
"usage_type": "name"
},
{
"api_name": "typing.Union",
"line_number": 31,
"usage_type": "name"
},
{
"api_name": "typing.Set",
... |
37697513017 |
import streamlit as st
from streamlit_option_menu import option_menu
from pages import home, dashboard, login
class MultiApp:
def __init__(self):
self.apps = []
def add_app(self, title, func):
self.apps.append({
"title": title,
"function": func
})
def run():
# app = st.sidebar(
with st.sidebar:
app = option_menu(
menu_title='Navigation',
options=['Home','Dashboard','Login'],
icons=['house','book','envelope'],
menu_icon='cast',
default_index=0,
)
if app == "Home":
home.app()
if app == "Dashboard":
dashboard.app()
if app == "Login":
login.app()
run()
| Ashwani132003/Attendace-Tracker-using-Face-recognition | main.py | main.py | py | 976 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "streamlit.sidebar",
"line_number": 21,
"usage_type": "attribute"
},
{
"api_name": "streamlit_option_menu.option_menu",
"line_number": 22,
"usage_type": "call"
},
{
"api_name": "pages.home.app",
"line_number": 35,
"usage_type": "call"
},
{
"api_name"... |
24192841460 | import requests
def check_security_headers(url):
headers_to_check = [
'Strict-Transport-Security',
'Content-Security-Policy',
'X-Content-Type-Options',
'X-Frame-Options',
'X-XSS-Protection',
'Referrer-Policy',
'Permissions-Policy'
]
missing_headers = []
try:
response = requests.get(url)
response_headers = response.headers
for header in headers_to_check:
if header not in response_headers:
missing_headers.append(header)
except requests.exceptions.RequestException as e:
print(f"Error: {e}")
return missing_headers
if __name__ == "__main__":
url = input("Enter the URL of the web app: ").strip()
missing_headers = check_security_headers(url)
if missing_headers:
print("Missing security headers:")
for header in missing_headers:
print(f"- {header}")
else:
print("All security headers are present.")
| hexodotsh/WebSite_Header_Scanner | headers-security-check.py | headers-security-check.py | py | 999 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "requests.get",
"line_number": 17,
"usage_type": "call"
},
{
"api_name": "requests.exceptions",
"line_number": 24,
"usage_type": "attribute"
}
] |
23331780439 | from utility_functions import *
import matplotlib.pyplot as plt
def lemke_optimizer_sparse(eco, payoff_matrix = None, dirac_mode = True):
A = np.zeros((eco.populations.size, eco.populations.size * eco.layers))
for k in range(eco.populations.size):
A[k, k * eco.layers:(k + 1) * eco.layers] = -1
q = np.zeros(eco.populations.size + eco.populations.size * eco.layers)
q[eco.populations.size * eco.layers:] = -1
q = q.reshape(-1, 1)
if payoff_matrix is None:
payoff_matrix = total_payoff_matrix_builder(eco)
H = np.block([[-payoff_matrix, A.T], [-A, np.zeros((A.shape[0], eco.populations.size))]])
lcp = sn.LCP(H, q)
ztol = 1e-8
#solvers = [sn.SICONOS_LCP_PGS, sn.SICONOS_LCP_QP,
# sn.SICONOS_LCP_LEMKE, sn.SICONOS_LCP_ENUM]
z = np.zeros((eco.layers*eco.populations.size+eco.populations.size,), np.float64)
w = np.zeros_like(z)
options = sn.SolverOptions(sn.SICONOS_LCP_PIVOT)
#sn.SICONOS_IPARAM_MAX_ITER = 10000000<
options.iparam[sn.SICONOS_IPARAM_MAX_ITER] = 1000000
options.dparam[sn.SICONOS_DPARAM_TOL] = 10**(-5)
info = sn.linearComplementarity_driver(lcp, z, w, options)
if sn.lcp_compute_error(lcp,z,w, ztol) > 10**(-5):
print(sn.lcp_compute_error(lcp,z,w, ztol), "Error")
return z
#@njit(parallel = True)
def total_payoff_matrix_builder_sparse(eco, current_layered_attack = None, dirac_mode = False):
total_payoff_matrix = np.zeros((eco.populations.size*eco.layers, eco.populations.size*eco.layers))
if current_layered_attack is None:
current_layered_attack = eco.parameters.layered_attack
for i in range(eco.populations.size):
for j in range(eco.populations.size):
if i != j:
i_vs_j = payoff_matrix_builder(eco, i, j, current_layered_attack = current_layered_attack, dirac_mode = dirac_mode)
elif i == j:
i_vs_j = np.zeros((eco.layers, eco.layers))
#if i == 1:
# total_payoff_matrix[i*eco.layers:(i+1)*eco.layers, j*eco.layers: (j+1)*eco.layers] = i_vs_j.T
#else:
total_payoff_matrix[i * eco.layers:(i + 1) * eco.layers, j * eco.layers: (j + 1) * eco.layers] = i_vs_j
# print("MAXIMM PAYDAY ORIGINAL", np.max(total_payoff_matrix))
total_payoff_matrix[total_payoff_matrix != 0] = total_payoff_matrix[total_payoff_matrix != 0] - np.max(total_payoff_matrix) #- 1 #Making sure everything is negative #- 0.00001
#total_payoff_matrix = total_payoff_matrix/np.max(-total_payoff_matrix)
print(np.where(total_payoff_matrix == 0))
return total_payoff_matrix
depth = 45
layers = 100
segments = 1
size_classes = 2
lam = 100
simulate = False
verbose = True
l2 = False
min_attack_rate = 10**(-3)
mass_vector = np.array([0.05, 0.05*408]) # np.array([1, 30, 300, 400, 800, 16000])
obj = spectral_method(depth, layers, segments=segments)
logn = stats.lognorm.pdf(obj.x, 1, 0)
norm_dist = stats.norm.pdf(obj.x, loc=0, scale=3)
res_start = 4*norm_dist # 0.1*(1-obj.x/depth)
res_max = 8*norm_dist
water_start = water_column(obj, res_start, layers=layers * segments, resource_max=res_max, replacement=lam, advection=0,
diffusion=0, logistic = True)
params = ecosystem_parameters(mass_vector, obj, lam=0.3, min_attack_rate = min_attack_rate, forage_mass = 0.05/408)
params.handling_times = np.zeros(2)
eco = ecosystem_optimization(mass_vector, layers * segments, params, obj, water_start, l2=l2, movement_cost=0)
eco.population_setter(np.array([1, 0.05]))
eco.heat_kernel_creator(10**(-1))
eco.heat_kernels[1] = eco.heat_kernels[0]
S = lemke_optimizer_sparse(eco, total_payoff_matrix_builder_sparse(eco))
S1 = lemke_optimizer(eco)
plt.plot(eco.spectral.x, S[0:layers]@eco.heat_kernels[0])
plt.plot(eco.spectral.x, S[layers:2*layers]@eco.heat_kernels[0])
S2 = quadratic_optimizer(eco, payoff_matrix=total_payoff_matrix_builder_sparse(eco))
S3 = quadratic_optimizer(eco)
plt.show()
plt.plot(eco.spectral.x, S1[0:layers]@eco.heat_kernels[0])
plt.plot(eco.spectral.x, S1[layers:2*layers]@eco.heat_kernels[0])
plt.show()
plt.plot(eco.spectral.x, S2[0:layers]@eco.heat_kernels[0])
plt.plot(eco.spectral.x, S2[layers:2*layers]@eco.heat_kernels[0])
plt.show()
plt.plot(eco.spectral.x, S3[0:layers]@eco.heat_kernels[0])
plt.plot(eco.spectral.x, S3[layers:2*layers]@eco.heat_kernels[0])
plt.show() | jemff/food_web | old_sims/sparse_testing.py | sparse_testing.py | py | 4,391 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "matplotlib.pyplot.plot",
"line_number": 88,
"usage_type": "call"
},
{
"api_name": "matplotlib.pyplot",
"line_number": 88,
"usage_type": "name"
},
{
"api_name": "matplotlib.pyplot.plot",
"line_number": 89,
"usage_type": "call"
},
{
"api_name": "matpl... |
74477215464 | from rdflib import Graph, RDF, Literal, RDFS, plugin, OWL, XSD, SKOS, PROV
plugin.register('json-ld', 'Serializer', 'rdfextras.serializers.jsonld', 'JsonLDSerializer')
import csv
import pandas as pd
from collections import Counter
from nltk.tag import StanfordNERTagger
import spacy
import jellyfish as jf
import json
import validators
import re
csv_links = "../results/yago-links.csv"
csv_node_labels = "../results/yago-node-labels.csv"
csv_nodes = "../results/yago-nodes.csv"
entity_file = "../results/entities_nodes.csv"
data_type_json = "../results/data-type-validation.json"
csv_with_features = "../results/features_selected_yago_nodes.csv"
############################Triple Features############################################################################
def pred_occur():
#counts the no. of times a predicate occurs within the entire dataset
print("inside pred_occur")
df_node_labels = pd.read_csv(csv_node_labels)
df_node_labels['CountPredOccur'] = df_node_labels['predicate'].map(Counter(list(df_node_labels['predicate'])))
df_node_labels.to_csv(csv_node_labels, index=False)
subj_pred_occur()
def subj_pred_occur():
# counts the no. of times a predicate occurs within the entity's group
print("inside subj_pred_occur")
df_node_labels = pd.read_csv(csv_node_labels)
total_groups = df_node_labels.groupby(['subject', 'predicate'])
label_count = {}
for group in total_groups.groups:
label_count[group] = len(total_groups.get_group(group))
df_node_labels['CountPredOccurofSubject'] = df_node_labels.set_index(['subject', 'predicate']).index.map(label_count.get)
df_node_labels.to_csv(csv_node_labels, index=False)
dup_triples()
def dup_triples():
# counts the no. of times a predicate occurs within the entity's group
print("inside dup_triples")
df_node_labels = pd.read_csv(csv_node_labels)
total_groups = df_node_labels.groupby(['subject', 'predicate', 'object'])
label_count = {}
for group in total_groups.groups:
try:
label_count[group] = len(total_groups.get_group(group))
except:
continue
df_node_labels['CountDupTriples'] = df_node_labels.set_index(['subject', 'predicate', 'object']).index.map(label_count.get)
df_node_labels.to_csv(csv_node_labels, index=False)
cal_haslabel_similarity()
def cal_haslabel_similarity():
# Calculate the similarity between two labels given a has_label predicate
print("inside cal_haslabel_similarity")
df_node_labels = pd.read_csv(csv_node_labels)
label_count = {}
for index, row in df_node_labels.iterrows():
if row['predicate'] == "has_label":
entity_split = row['subject'].split("/")[-1]
underscore_removed = entity_split.replace("_", " ")
wordnet_removed = underscore_removed.replace('wordnet', "")
wikicat_removed = wordnet_removed.replace('wikicategory', "")
subject_final = "".join(filter(lambda x: not x.isdigit(), wikicat_removed))
subject_final = subject_final.strip()
print(subject_final)
similarity = jf.jaro_distance(subject_final, row['object'])
label_count[(row['subject'], row['object'])] = round(similarity,2)
else:
label_count[(row['subject'], row['object'])] = "na"
df_node_labels['SimSubjectObject'] = df_node_labels.set_index(['subject', 'object']).index.map(label_count.get)
df_node_labels.to_csv(csv_node_labels, index=False)
tot_literals()
def entity_recognition():
print("inside entity_recognition")
web_sm = spacy.load(r'/Users/asara/Documents/data_enrichment/assets/en_core_web_sm-3.0.0/en_core_web_sm/en_core_web_sm-3.0.0')
st = StanfordNERTagger('assets/stanford-ner-4.2.0/classifiers/english.all.3class.distsim.crf.ser.gz',
'assets/stanford-ner-4.2.0/stanford-ner-4.2.0.jar', encoding='utf-8')
df_node_labels = pd.read_csv(csv_node_labels)
dict_entity_type = {}
entities = set(list(df_node_labels['subject']) + list(df_node_labels['object']))
total_entities = len(entities)
print("total_entities: " ,total_entities)
count=0
with open(entity_file, "a") as outfile:
writer = csv.writer(outfile)
writer.writerow(["entity", "entity_type"])
for entity in entities:
try:
count = count + 1
print("entity number: ", count)
print("more to go number: ", total_entities-count)
entity_types = []
entity_split = entity.split("/")[-1]
underscore_removed = entity_split.replace("_", " ")
wordnet_removed = underscore_removed.replace('wordnet', "")
wikicat_removed = wordnet_removed.replace('wikicategory', "")
entity_final = "".join(filter(lambda x: not x.isdigit(), wikicat_removed))
entity_final = entity_final.strip()
print(entity_final)
spacy_ner = [(X.text, X.label_) for X in web_sm(entity_final).ents]
if spacy_ner:
for item in spacy_ner:
entity_types.append(item[1])
else:
stanford_ner = st.tag([entity_final])
for item in stanford_ner + spacy_ner:
entity_types.append(item[1])
replacements = {"ORG": "ORGANIZATION", "GPE": "LOCATION", "LOC": "LOCATION"}
replacer = replacements.get # For faster gets.
entity_types = [replacer(n, n) for n in entity_types]
dict_entity_type[entity] = set(entity_types)
writer.writerow([entity, set(entity_types)])
except:
dict_entity_type[entity] = "{O}"
writer.writerow([entity, set(entity_types)])
df_node_labels['SubjectEntityType'] = df_node_labels.set_index(['subject']).index.map(dict_entity_type.get)
df_node_labels['ObjectEntityType'] = df_node_labels.set_index(['object']).index.map(dict_entity_type.get)
df_node_labels.to_csv(csv_node_labels, index=False)
pred_entity_type_occur()
def pred_entity_type_occur():
#this method counts the no. of times a particular predicate occurs with the two given entity types of subject and object
print("inside pred_entity_type_occur")
df_node_labels = pd.read_csv(csv_node_labels)
total_groups = df_node_labels.groupby(['SubjectEntityType','ObjectEntityType','predicate'])
label_count = {}
for group in total_groups.groups:
try:
label_count[group] = len(total_groups.get_group(group))
except:
continue
df_node_labels['CountPredOccurEntityType'] = df_node_labels.set_index(['SubjectEntityType','ObjectEntityType','predicate']).index.map(label_count.get)
df_node_labels.to_csv(csv_node_labels, index=False)
find_com_rare_entity_type()
def validate_literal_data_type():
print("inside validate_literal_data_type")
df_node_labels = pd.read_csv(csv_node_labels)
json_file = open(data_type_json,)
data_type_dict = json.load(json_file)
print(data_type_dict)
validity_score = []
for index, row in df_node_labels.iterrows():
pred_extracted = row['predicate']
if validators.url(pred_extracted):
pred_extracted = row['predicate'].split("/")[-1]
validity = "na"
for key in data_type_dict.keys():
if key in pred_extracted.lower():
data_type = data_type_dict[key]
try:
if data_type == "url":
validity = is_url(row['object'])
break
if data_type == "date":
validity = is_date(row['object'])
break
if data_type == 'integer':
validity = row['object'].isnumeric()
break
if data_type == 'time':
validity = re.match('\d{2}:\d{2}:\d{2}', row['object'])
break
if data_type == 'string':
validity = ((not row['object'].isnumeric()) and (not row['object'] == "") and (not validators.url(row['object'])\
and (not is_date(row['object']))))
break
except:
validity = 0
validity_score.append(validity)
df_node_labels['ValidityOfLiteral'] = validity_score
df_node_labels.to_csv(csv_node_labels, index=False)
count_occur_dup_triples()
############################Node Features############################################################################
def tot_literals():
#count total number of literal based triples an entity has
print("inside tot_predicates")
df_node_labels = pd.read_csv(csv_node_labels)
total_groups = df_node_labels.groupby(['subject'])
label_count = {}
for group in total_groups.groups:
try:
label_count[group] = len(total_groups.get_group(group))
except:
continue
data = {'node':list(label_count.keys()), 'CountLiterals': list(label_count.values()) }
df_nodes = pd.DataFrame.from_dict(data)
df_nodes.to_csv(csv_nodes, index=False)
count_dif_literal_types()
def count_dif_literal_types():
#count different types of predicates an entity has got where the object is a literal
print("inside count_dif_literal_types")
df_node_labels = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
total_groups = df_node_labels.groupby(['subject'])
label_count = {}
for group in total_groups.groups:
fetched_group = total_groups.get_group(group)
print(fetched_group)
count_dif_literals = len(fetched_group['predicate'].unique())
label_count[group] = count_dif_literals
df_nodes['CountDifLiteralTypes'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
count_isa_triples()
def count_isa_triples():
#count different types of predicates an entity has got where the object is a literal
print("inside count_isa_triples")
df_node_labels = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
total_groups = df_node_labels.groupby(['subject'])
label_count = {}
for group in total_groups.groups:
fetched_group = total_groups.get_group(group)
print(fetched_group)
count_dif_literals = len(fetched_group[fetched_group['predicate']=='isa'])
label_count[group] = count_dif_literals
df_nodes['CountIsaPredicate'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
count_haslabel_triples()
def count_haslabel_triples():
#count different types of predicates an entity has got where the object is a literal
print("inside count_haslabel_triples")
df_node_labels = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
total_groups = df_node_labels.groupby(['subject'])
label_count = {}
for group in total_groups.groups:
fetched_group = total_groups.get_group(group)
print(fetched_group)
count_dif_literals = len(fetched_group[fetched_group['predicate']=='has_label'])
label_count[group] = count_dif_literals
df_nodes['CountHaslabelPredicate'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
count_subclassof_triples()
def count_subclassof_triples():
#count different types of predicates an entity has got where the object is a literal
print("inside count_subclassof_triples")
df_node_labels = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
total_groups = df_node_labels.groupby(['subject'])
label_count = {}
for group in total_groups.groups:
fetched_group = total_groups.get_group(group)
print(fetched_group)
count_dif_literals = len(fetched_group[fetched_group['predicate']=='subClassOf'])
label_count[group] = count_dif_literals
df_nodes['CountSubclassofPredicate'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
count_subpropertyof_triples()
def count_subpropertyof_triples():
#count different types of predicates an entity has got where the object is a literal
print("inside count_subpropertyof_triples")
df_node_labels = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
total_groups = df_node_labels.groupby(['subject'])
label_count = {}
for group in total_groups.groups:
fetched_group = total_groups.get_group(group)
print(fetched_group)
count_dif_literals = len(fetched_group[fetched_group['predicate']=='subPropertyOf'])
label_count[group] = count_dif_literals
df_nodes['CountSubpropofPredicate'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
count_high_sim_labels()
def count_high_sim_labels():
#count different types of predicates an entity has got where the object is a literal
print("inside count_high_sim_labels")
df_node_labels = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
total_groups = df_node_labels.groupby(['subject'])
label_count = {}
for group in total_groups.groups:
fetched_group = total_groups.get_group(group)
count = 0
for index, row in fetched_group.iterrows():
if row['SimSubjectObject'] != 'na' and float(row['SimSubjectObject']) >=0.5:
count+=1
label_count[group] = count
df_nodes['CountHighSimLabels'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
count_low_sim_labels()
def count_low_sim_labels():
#count different types of predicates an entity has got where the object is a literal
print("inside count_low_sim_labels")
df_node_labels = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
total_groups = df_node_labels.groupby(['subject'])
label_count = {}
for group in total_groups.groups:
fetched_group = total_groups.get_group(group)
count = 0
for index, row in fetched_group.iterrows():
if row['SimSubjectObject'] != 'na' and float(row['SimSubjectObject']) <0.5:
count+=1
label_count[group] = count
df_nodes['CountLowSimLabels'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
tot_outgoing_links()
def tot_outgoing_links():
print("inside tot_incoming_links")
df_node_labels = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
df_links = pd.read_csv(csv_links)
groups_in_node_labels = df_node_labels.groupby(['subject'])
groups_in_links = df_links.groupby(['subject'])
label_count = {}
for group in df_nodes['node']:
try:
fetched_node_label_groups = len(groups_in_node_labels.get_group(group))
except:
fetched_node_label_groups = 0
try:
fetched_link_groups = len(groups_in_links.get_group(group))
except:
fetched_link_groups = 0
label_count[group] = fetched_node_label_groups + fetched_link_groups
df_nodes['OutDegree'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
tot_incoming_links()
def tot_incoming_links():
print("inside tot_outgoing_links")
df_nodes = pd.read_csv(csv_nodes)
df_links = pd.read_csv(csv_links)
groups_in_links = df_links.groupby(['object'])
label_count = {}
for group in df_nodes['node']:
try:
fetched_link_groups = len(groups_in_links.get_group(group))
except:
fetched_link_groups = 0
label_count[group] = fetched_link_groups
df_nodes['InDegree'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
validate_literal_data_type()
def find_com_rare_entity_type():
# counts the no. of times a predicate occurs within the entity's group
print("inside find_com_rare_entity_type")
df_node_links = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
total_groups = df_node_links.groupby(['subject'])
entity_count_node_max, entity_count_node_min = {}, {}
for group in total_groups.groups:
entity_count = {}
sub_group = total_groups.get_group(group).groupby(['SubjectEntityType','ObjectEntityType'])
for entity_group in sub_group.groups:
entity_count[entity_group] = len(sub_group.get_group(entity_group))
key_max = max(entity_count.keys(), key=(lambda k: entity_count[k]))
key_min = min(entity_count.keys(), key=(lambda k: entity_count[k]))
entity_count_node_max[group] = [key_max]
entity_count_node_min[group] = [key_min]
df_nodes['CommonPredType'] = df_nodes.set_index(['node']).index.map(entity_count_node_max.get)
df_nodes['RarePredType'] = df_nodes.set_index(['node']).index.map(entity_count_node_min.get)
df_nodes.to_csv(csv_nodes, index=False)
def count_occur_dup_triples():
# counts the no. of duplicate triples a node has got
print("inside count_occur_dup_triples")
df_node_labels = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
total_groups = df_node_labels.groupby(['subject'])
label_count = {}
for group in total_groups.groups:
count=0
for index, row in total_groups.get_group(group).iterrows():
if row['CountDupTriples'] > 1:
count+=row['CountDupTriples']
label_count[group] = count
df_nodes['CountDupTriples'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
count_invalid_literals()
def count_invalid_literals():
print("inside count_invalid_literals")
df_node_labels = pd.read_csv(csv_node_labels)
df_nodes = pd.read_csv(csv_nodes)
total_groups = df_node_labels.groupby(['subject'])
label_count = {}
for group in total_groups.groups:
count=0
for index, row in total_groups.get_group(group).iterrows():
if row['ValidityOfLiteral'] == False:
count+=1
label_count[group] = count
df_nodes['CountInvalidTriples'] = df_nodes.set_index(['node']).index.map(label_count.get)
df_nodes.to_csv(csv_nodes, index=False)
entity_recognition()
########################################Special Functions###################################
def is_date(string, fuzzy=False):
"""
Return whether the string can be interpreted as a date.
:param string: str, string to check for date
:param fuzzy: bool, ignore unknown tokens in string if True
"""
from dateutil.parser import parse
try:
parse(string, fuzzy=fuzzy)
return True
except ValueError:
return False
def is_url(url):
#check for valid URL
if not validators.url(url):
return False
else:
return True
def feature_reduction():
print("Inside feature reduction")
df = pd.read_csv(csv_node_labels)
df_fileterd = df.iloc[:,3:]
for feature in df_fileterd.columns:
if df_fileterd.dtypes[feature] != np.int64 or df_fileterd.dtypes[feature] != np.float64:
df_fileterd[feature].replace(['1','0','True','False',True,False],[1,0,1,0,1,0], inplace=True)
df_fileterd[feature] = df_fileterd[feature].astype(np.float)
for col in df_fileterd.columns:
count_unique = len(df[col].unique())
if count_unique == 1:
print(col)
df_fileterd.drop(col, inplace=True, axis=1)
columns = list(df_fileterd.columns)
corr_feature_list = []
for i in range(0, len(columns)-1):
for j in range(i+1, len(columns)):
print(columns[i],columns[j])
correlation = df_fileterd[columns[i]].corr(df_fileterd[columns[j]])
if correlation == 1:
print(columns[i], columns[j])
corr_feature_list.append(columns[i])
corr_feature_list.append(columns[j])
remove_corr_features(corr_feature_list, df_fileterd, df)
def remove_corr_features(corr_feature_list, df_fileterd, df):
print("Correlated Features: ", corr_feature_list)
features_to_remove = [input("Enter the features to remove seperated by a comma without spaces: ")]
if features_to_remove[0] == '':
gen_binary_feature(df_fileterd, df)
else:
for feature in features_to_remove:
df_fileterd.drop(feature, inplace=True, axis=1)
gen_binary_feature(df_fileterd, df)
def gen_binary_feature(df_fileterd, df):
print("inside binary_features")
columns = df_fileterd.columns
for column in columns:
new_col = []
new_col_name = "Freq" + column
for index, row in df_fileterd.iterrows():
if row[column] > df_fileterd[column].median():
new_col.append(1)
else:
new_col.append(0)
df[new_col_name] = new_col
df.to_csv(csv_with_features, index=False)
| AsaraSenaratne/anomaly-detection-kg | source-files/yago_nodes.py | yago_nodes.py | py | 21,397 | python | en | code | 2 | github-code | 36 | [
{
"api_name": "rdflib.plugin.register",
"line_number": 2,
"usage_type": "call"
},
{
"api_name": "rdflib.plugin",
"line_number": 2,
"usage_type": "name"
},
{
"api_name": "pandas.read_csv",
"line_number": 28,
"usage_type": "call"
},
{
"api_name": "collections.Counte... |
43103024978 | from celery import shared_task
from celery.utils.log import get_task_logger
from decouple import config
logger = get_task_logger("tasks")
expiration_time = config("EXPIRATION_TIME", default=1800, cast=int)
@shared_task(
bind=True,
default_retry_delay=3,
eta=expiration_time,
retry_kwargs={"max_retries": 5},
)
def delete_qrcode_task(self, qrcode_id):
from qrcode_api.apps.api.models import QrCode
try:
qrcode = QrCode.objects.get(id=qrcode_id)
logger.info(f"Deactivating qrcode {qrcode_id}")
qrcode.active = False
qrcode.image.delete()
qrcode.save()
except Exception as e:
logger.error(e)
self.retry(exc=e)
| guilhermehgbrito/qrcode-api | qrcode_api/apps/api/tasks.py | tasks.py | py | 721 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "celery.utils.log.get_task_logger",
"line_number": 5,
"usage_type": "call"
},
{
"api_name": "decouple.config",
"line_number": 6,
"usage_type": "call"
},
{
"api_name": "qrcode_api.apps.api.models.QrCode.objects.get",
"line_number": 19,
"usage_type": "call"
... |
37208016314 | from datetime import datetime, timedelta
birthdate = input("Tell us your bidrthay in DD.MM.YYYY format ")
print(birthdate)
date_obj = datetime.strptime(birthdate, '%d.%m.%Y').date()
print(date_obj)
time_difference = datetime.now().date() - date_obj
time_now = datetime.now()
if (time_now.year < date_obj.year):
print("You aren't even born yet.")
exit()
age = time_now.year - date_obj.year
if (time_now.month < date_obj.month):
age -= 1
elif (time_now.month == date_obj.month):
if (time_now.day < date_obj.day):
age -= 1
needed_age = age % 10
print(needed_age)
top = " ______"
top2 = " |:H:a:p:p:y:|"
top3 = " __|___________|__"
bottom1 = " |^^^^^^^^^^^^^^^^^|"
bottom2 = " |:B:i:r:t:h:d:a:y:|"
bottom3 = " | |"
bottom4 = " ~~~~~~~~~~~~~~~~~~~"
if (needed_age < 5):
top = top[:(10+((5-needed_age)//2))] + "i"*needed_age + "_"*(5-needed_age) + top[(10+((5-needed_age)//2)):]
elif(needed_age == 5):
top = top[:10] + "i"*needed_age + "_"*(5-needed_age) + top[10:]
else :
top = top[:(10-((needed_age-5)// 2))] + "i"*needed_age + top[(10-((needed_age-5)// 2)):-(needed_age-5)]
print(top)
print(top2)
print(top3)
print(bottom1)
print(bottom2)
print(bottom3)
print(bottom4)
| KyleKiske/DI-Bootcamp | Week2/Day2/ChallengeGold.py | ChallengeGold.py | py | 1,248 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "datetime.datetime.strptime",
"line_number": 5,
"usage_type": "call"
},
{
"api_name": "datetime.datetime",
"line_number": 5,
"usage_type": "name"
},
{
"api_name": "datetime.datetime.now",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "datet... |
17300324237 | from django.conf.urls import url
from django.views.generic import TemplateView
from .views import (
klasses_list_view,
klasses_detail_view,
klasses_create_view,
klasses_delete_view,
klasses_update_view,
)
urlpatterns =[
# This is Klasses pages
url(r'^list/$', klasses_list_view, name='klasses_list_view'),
url(r'^create/$', klasses_create_view, name='klasses_create_view'),
url(r'^(?P<id>[\w-]+)/$', klasses_detail_view, name='klasses_detail_view'),
url(r'^(?P<id>[\w-]+)/delete$', klasses_delete_view, name='klasses_delete_view'),
url(r'^(?P<id>[\w-]+)/edit$', klasses_update_view, name='klasses_update_view'),
#End klasses pages
]
| SaramCodes/School-Management-System | klass/urls.py | urls.py | py | 683 | python | en | code | 1 | github-code | 36 | [
{
"api_name": "django.conf.urls.url",
"line_number": 13,
"usage_type": "call"
},
{
"api_name": "views.klasses_list_view",
"line_number": 13,
"usage_type": "argument"
},
{
"api_name": "django.conf.urls.url",
"line_number": 14,
"usage_type": "call"
},
{
"api_name": ... |
42576581221 | """ Exercício para mostras as faces encontradas com variação de parâmetro """
import cv2
classificador = cv2.CascadeClassifier('cascades\\haarcascade_frontalface_default.xml')
imagem = cv2.imread('pessoas\\pessoas3.jpg')
imagemcinza = cv2.cvtColor(imagem, cv2.COLOR_BGR2GRAY)
facesdetectadas = classificador.detectMultiScale(imagemcinza, scaleFactor = 1.2, minNeighbors=3, minSize= (35,35))
print(len(facesdetectadas))
for (x, y, l, a) in facesdetectadas:
cv2.rectangle(imagem, (x, y), (x + l, y + a), (0, 0, 255), 2)
cv2.imshow('Faces Detectadas', imagem)
cv2.waitKey() | alans96/PythonProject | Computer Vision/1 Detecção de Faces com Python e OpenCV/3 exe.py | 3 exe.py | py | 583 | python | pt | code | 0 | github-code | 36 | [
{
"api_name": "cv2.CascadeClassifier",
"line_number": 5,
"usage_type": "call"
},
{
"api_name": "cv2.imread",
"line_number": 7,
"usage_type": "call"
},
{
"api_name": "cv2.cvtColor",
"line_number": 8,
"usage_type": "call"
},
{
"api_name": "cv2.COLOR_BGR2GRAY",
"... |
36829740540 | import pytest
from launch_jenkins import launch_jenkins
from launch_jenkins import log
from launch_jenkins import errlog
from launch_jenkins import CaseInsensitiveDict
def test_log(monkeypatch, capsys):
monkeypatch.setitem(launch_jenkins.CONFIG, 'quiet', False)
log('hello', 'world')
out, err = capsys.readouterr()
assert not out
assert err == 'hello world\n'
monkeypatch.setitem(launch_jenkins.CONFIG, 'quiet', True)
log('hello', 'world')
out, err = capsys.readouterr()
assert not out
assert not err
def test_errlog(monkeypatch, capsys):
monkeypatch.setitem(launch_jenkins.CONFIG, 'quiet', False)
errlog('hello', 'world')
out, err = capsys.readouterr()
assert not out
assert err == 'hello world\n'
monkeypatch.setitem(launch_jenkins.CONFIG, 'quiet', True)
errlog('hello', 'world')
out, err = capsys.readouterr()
assert not out
assert err == 'hello world\n'
def test_caseinsensitivedict():
cid = CaseInsensitiveDict()
cid['key'] = 'value'
cid['other'] = 'othervalue'
del cid['other']
assert cid['key'] == cid['KEY']
assert list(cid) == ['key']
assert len(cid) == 1
assert cid == {'key': 'value'}
assert cid.copy() == cid
assert cid != 'somethingelse'
assert repr(cid)
@pytest.mark.parametrize('millis,expect', [
(0, '00:00'),
(1000, '00:01'),
(60000, '01:00'),
(61000, '01:01'),
(120000, '02:00'),
(630000, '10:30'),
(3599000, '59:59'),
(3600000, '1:00:00'),
(3661000, '1:01:01'),
(36061000, '10:01:01'),
])
def test_format_millis(millis, expect):
assert launch_jenkins.format_millis(millis) == expect
| ocaballeror/jenkins-launch | tests/test_misc.py | test_misc.py | py | 1,681 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "launch_jenkins.launch_jenkins.CONFIG",
"line_number": 10,
"usage_type": "attribute"
},
{
"api_name": "launch_jenkins.launch_jenkins",
"line_number": 10,
"usage_type": "name"
},
{
"api_name": "launch_jenkins.log",
"line_number": 11,
"usage_type": "call"
},... |
38916812011 | import discord
from discord.ext.commands import Bot
from discord.ext import commands
import asyncio
import time
import random
from discord import Game
Client = discord.client
client = commands.Bot(command_prefix = '-')
Clientdiscord = discord.Client()
TOKEN = ("NTczNDkxODgzOTc2ODE4Njk4.XMroNg.Pzwl-RFnKN_qTQFcqeFmllynIj0")
@client.event
async def on_member_join(member):
print('Recognised that a member called ' + member.name + ' joined')
await client.send_message(member, 'Welcome in Official MajklCraft discord for help write "-pomoc"')
print('Sent message to ' + member.name)
@client.event
async def on_ready():
await client.change_presence(game=Game(name='-pomoc'))
print('Bot Is Running Sucesfully')
async def on_message(message):
author = message.author
content = message.content
print('{}: {}'.format(author, content))
@client.event
async def on_message(message):
if message.content == '-web':
await client.send_message(message.channel,'www.futurik.majklcraft.eu')
if message.content == '-cheers':
em = discord.Embed(description='Cheers')
em.set_image(url='https://cdn.discordapp.com/attachments/528194410924605440/529441936323510273/download_1.jpg')
await client.send_message(message.channel, embed=em)
if message.content.startswith('-coinflip'):
randomlist = ["head", "tail", ]
await client.send_message(message.channel, (random.choice(randomlist)))
if message.content == '-prikazy':
await client.send_message(message.channel,'-web,-cheers,-coinflip,-vyhody,-pomoc,-ts')
if message.content == '-vyhody':
await client.send_message(message.channel,'http://futurik.buycraft.net/')
if message.content == '-pomoc':
await client.send_message(message.channel,'Pro pomoc kontaktujte kohokoli z AT.')
if message.content == '-ts':
await client.send_message(message.channel,'81.0.217.180:7399')
async def on_message(message):
author = message.author
content = message.content
print('{}: {}'.format(author, content))
client.run(TOKEN)
| ANATLANTIDA/BOT | Bot.py | Bot.py | py | 2,165 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "discord.client",
"line_number": 10,
"usage_type": "attribute"
},
{
"api_name": "discord.ext.commands.Bot",
"line_number": 11,
"usage_type": "call"
},
{
"api_name": "discord.ext.commands",
"line_number": 11,
"usage_type": "name"
},
{
"api_name": "dis... |
7870435087 | from bs4 import BeautifulSoup
from uk_bin_collection.uk_bin_collection.common import *
from uk_bin_collection.uk_bin_collection.get_bin_data import \
AbstractGetBinDataClass
# import the wonderful Beautiful Soup and the URL grabber
class CouncilClass(AbstractGetBinDataClass):
"""
Concrete classes have to implement all abstract operations of the
base class. They can also override some operations with a default
implementation.
"""
def parse_data(self, page: str, **kwargs) -> dict:
requests.packages.urllib3.disable_warnings()
user_uprn = kwargs.get("uprn")
check_uprn(user_uprn)
headers = {
"Accept": "*/*",
"Accept-Language": "en-GB,en;q=0.6",
"Connection": "keep-alive",
"Referer": "https://www.valeofglamorgan.gov.uk/",
"Sec-Fetch-Dest": "script",
"Sec-Fetch-Mode": "no-cors",
"Sec-Fetch-Site": "same-site",
"Sec-GPC": "1",
"sec-ch-ua": '"Not?A_Brand";v="8", "Chromium";v="108", "Brave";v="108"',
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": '"Windows"',
}
params = {
"RequestType": "LocalInfo",
"ms": "ValeOfGlamorgan/AllMaps",
"group": "Community and Living|Refuse HIDE2",
"type": "json",
"callback": "AddressInfoCallback",
"uid": user_uprn,
"import": "jQuery35108514154283927682_1673022974838",
"_": "1673022974840",
}
# Get a response from the council
response = requests.get(
"https://myvale.valeofglamorgan.gov.uk/getdata.aspx",
params=params,
headers=headers,
).text
# Load the JSON and seek out the bin week text, then add it to the calendar URL. Also take the weekly
# collection type and generate dates for it. Then make a GET request for the calendar
bin_week = str(
json.loads(response)["Results"]["Refuse_HIDE2"]["Your_Refuse_round_is"]
).replace(" ", "-")
weekly_collection = str(
json.loads(response)["Results"]["Refuse_HIDE2"]["Recycling__type"]
).capitalize()
weekly_dates = get_weekday_dates_in_period(
datetime.now(), days_of_week.get(bin_week.split("-")[0].strip()), amount=48
)
schedule_url = f"https://www.valeofglamorgan.gov.uk/en/living/Recycling-and-Waste/collections/Black-Bag-Collections/{bin_week}.aspx"
response = requests.get(schedule_url, verify=False)
# BS4 parses the calendar
soup = BeautifulSoup(response.text, features="html.parser")
soup.prettify()
# Some scraper variables
collections = []
# Get the calendar table and find the headers
table = soup.find("table", {"class": "TableStyle_Activities"}).find("tbody")
table_headers = table.find("tr").find_all("th")
# For all rows below the header, find all details in th next row
for tr in soup.find_all("tr")[1:]:
row = tr.find_all("td")
# Parse month and year - month needs converting from text to number
month_and_year = row[0].text.split()
if month_and_year[0] in list(calendar.month_abbr):
collection_month = datetime.strptime(month_and_year[0], "%b").month
elif month_and_year[0] == "Sept":
collection_month = int(9)
else:
collection_month = datetime.strptime(month_and_year[0], "%B").month
collection_year = datetime.strptime(month_and_year[1], "%Y").year
# Get the collection dates column, remove anything that's not a number or space and then convert to dates
for day in remove_alpha_characters(row[1].text.strip()).split():
try:
bin_date = datetime(collection_year, collection_month, int(day))
collections.append((table_headers[1].text.strip().replace(" collection date", ""), bin_date))
except Exception as ex:
continue
# Add in weekly dates to the tuple
for date in weekly_dates:
collections.append(
(weekly_collection, datetime.strptime(date, date_format))
)
# Order all the data, only including future dates
ordered_data = sorted(collections, key=lambda x: x[1])
data = {"bins": []}
for item in ordered_data:
collection_date = item[1]
if collection_date.date() >= datetime.now().date():
dict_data = {
"type": item[0],
"collectionDate": collection_date.strftime(date_format),
}
data["bins"].append(dict_data)
return data
| robbrad/UKBinCollectionData | uk_bin_collection/uk_bin_collection/councils/ValeofGlamorganCouncil.py | ValeofGlamorganCouncil.py | py | 4,863 | python | en | code | 51 | github-code | 36 | [
{
"api_name": "uk_bin_collection.uk_bin_collection.get_bin_data.AbstractGetBinDataClass",
"line_number": 8,
"usage_type": "name"
},
{
"api_name": "bs4.BeautifulSoup",
"line_number": 65,
"usage_type": "call"
}
] |
44145316591 | import json
import logging
import typing
class JSONDumpReader(typing.Iterator[dict]):
def __init__(self, dump_path: str):
self.__dump_path = dump_path
def __iter__(self):
with open(self.__dump_path) as f:
for l in f:
l = JSONDumpReader.__clean_line(l)
try:
yield json.loads(l)
except ValueError:
logging.log(level=logging.DEBUG, msg="encountered illegal string while parsing JSON dump")
@staticmethod
def __clean_line(l: str)->str:
return l.strip().rstrip(',')
class JSONDumpWriter(object):
def __init__(self, output_path: str, batch_size: int=500):
self.__output_path = output_path
self.__batch_size = batch_size
def write(self, objects: typing.Iterable[dict]):
with open(self.__output_path, mode='w') as f:
f.write('[\n')
batch = list()
for idx, o in enumerate(objects):
batch.append(json.dumps(o))
if idx and idx % self.__batch_size == 0:
logging.log(level=logging.INFO, msg='wrote {} objects'.format(idx + 1))
f.write('\n'.join(batch) + '\n')
batch = list()
f.write('\n'.join(batch) + '\n')
f.write(']\n')
| AlexandraBaier/bachelorthesis | data_analysis/dumpio.py | dumpio.py | py | 1,344 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "typing.Iterator",
"line_number": 7,
"usage_type": "attribute"
},
{
"api_name": "json.loads",
"line_number": 17,
"usage_type": "call"
},
{
"api_name": "logging.log",
"line_number": 19,
"usage_type": "call"
},
{
"api_name": "logging.DEBUG",
"line_... |
37955494687 | from flask import Flask, request, jsonify
import util
app = Flask(__name__)
# @app.route decorator exposes the http enedpoint
@app.route("/hello")
def test():
return "hello world"
@app.route("/get-locations")
def get_locations():
response = jsonify(
{
"locations": util.get_locations()
}
)
response.headers.add("Access-Control-Allow-Origin", "*")
return response
@app.route("/predict-price", methods=['POST'])
def predict_price():
loc = request.form["loc"]
sqft = float(request.form["sft"])
bedrooms = int(request.form["bedrooms"])
bath = int(request.form["bath"])
response = jsonify(
{
"approximate_price": util.get_approx_price(loc, sqft, bedrooms, bath)
}
)
response.headers.add("Access-Control-Allow-Origin", "*")
return response
if __name__ == "__main__":
print("python flask server started...")
util.load_artifacts()
app.run() | Chiemerie1/house_prices_ML_model_deployment | server/server.py | server.py | py | 963 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "flask.Flask",
"line_number": 5,
"usage_type": "call"
},
{
"api_name": "flask.jsonify",
"line_number": 16,
"usage_type": "call"
},
{
"api_name": "util.get_locations",
"line_number": 18,
"usage_type": "call"
},
{
"api_name": "flask.request.form",
... |
4640657000 | from django.http import Http404
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework import status, permissions
from .models import CustomUser
from .serializers import CustomUserSerializer
# Create your views here.
class CustomUserList(APIView):
permission_classes = [permissions.IsAuthenticated]
def get(self, request):
user = CustomUser.objects.all()
serializer = CustomUserSerializer(user, many=True)
return Response(serializer.data)
def post(self, request):
serializer = CustomUserSerializer(data=request.data)
if serializer.is_valid():
serializer.save()
return Response(serializer.data, status=status.HTTP_201_CREATED)
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
class CustomUserDetail(APIView):
permission_classes = [permissions.IsAuthenticated]
def get_object(self, pk):
try:
user = CustomUser.objects.get(pk=pk)
self.check_object_permissions(self.request, user)
return user
except CustomUser.DoesNotExist:
raise Http404
def get(self, request, pk):
user = self.get_object(pk)
serializer = CustomUserSerializer(user)
return Response(serializer.data)
def put(self, request, pk):
user = self.get_object(pk)
serializer = CustomUserSerializer(
instance=user, data=request.data, partial=True
)
if serializer.is_valid():
serializer.save()
return Response(serializer.data, status=status.HTTP_200_OK)
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
def delete(self, request, pk):
user = self.get_object(pk)
user.delete()
return Response(
status=status.HTTP_204_NO_CONTENT
)
| SheCodesAus/heading_for_success_backend_bris_2023 | SheFunds_backend/users/views.py | views.py | py | 1,915 | python | en | code | 1 | github-code | 36 | [
{
"api_name": "rest_framework.views.APIView",
"line_number": 12,
"usage_type": "name"
},
{
"api_name": "rest_framework.permissions.IsAuthenticated",
"line_number": 13,
"usage_type": "attribute"
},
{
"api_name": "rest_framework.permissions",
"line_number": 13,
"usage_type"... |
42603056105 | import os
import json
import shutil
import time
import traceback
__author__ = 'Michael Ryan Harlich'
def update_paths(paths):
paths['partial_prediction'] = paths['output'] + 'partial_predication.ent'
paths['partial_ground_truth'] = paths['output'] + 'partial_ground_truth.ent'
paths['aligned_prediction'] = paths['output'] + 'aligned_prediction.pdb'
def execute(paths):
align(paths)
start_residue, end_residue = get_start_and_end_residue(paths)
save_partial_protein(start_residue, end_residue, paths)
pass
def save_partial_protein(start_residue, end_residue, paths):
if start_residue is None and end_residue is None:
shutil.copyfile(paths['ground_truth'], paths['partial_ground_truth'])
return
else:
gt_file = open(paths['ground_truth'], 'r')
gt_partial_file = open(paths['partial_ground_truth'], 'w')
save_partial_file(start_residue, end_residue, gt_file, gt_partial_file)
gt_partial_file.close()
gt_file.close()
return
def save_partial_file(start_residue, end_residue, src_file, des_file):
for line in src_file:
tokens = line.split()
if len(tokens) > 0:
if tokens[0] == 'ATOM':
if int(tokens[5]) >= int(start_residue) and int(tokens[5]) <= int(end_residue):
des_file.write(line)
def get_start_and_end_residue(paths):
if 'selections_file' in paths:
emdb_id = paths['prediction'].split('/')[-2]
with open(paths['selections_file']) as f:
selections = json.load(f)
if emdb_id in selections:
return selections[emdb_id]
return (None, None)
def align(paths):
try:
os.system(paths['tmalign_path'] + ' ' + paths['prediction'] + ' ' + paths['ground_truth'] + ' -o ' + paths['output'] + 'TM.sup')
time.sleep(1)
ap_file = open(paths['aligned_prediction'], 'w')
tm_sup = open(paths['output'] + 'TM.sup_all', 'r')
on = False
for line in tm_sup:
tokens = line.split()
if len(tokens) > 0:
if tokens[0] == 'TER':
on = False
if on == True:
ap_file.write(line)
if len(tokens) > 1:
if tokens[1] == 'Aligned':
on = True
ap_file.close()
tm_sup.close()
except Exception:
exc_info = sys.exc_info()
traceback.print_exception(*exc_info)
pass | RyanHarlich/Ca-Prediction-Automated-Testing-Quick-Tools | segments_rmsd/partial_protein/partial_protein.py | partial_protein.py | py | 2,534 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "shutil.copyfile",
"line_number": 24,
"usage_type": "call"
},
{
"api_name": "json.load",
"line_number": 51,
"usage_type": "call"
},
{
"api_name": "os.system",
"line_number": 60,
"usage_type": "call"
},
{
"api_name": "time.sleep",
"line_number": 6... |
28930913211 | #!/usr/bin/python3
# -*- coding: utf8 -*-
# Code from here:
# https://stackoverflow.com/a/26289475
import psutil
import subprocess
import time
import os
class SSHTunnel(object):
"""
A context manager implementation of an ssh tunnel opened from python
"""
def __init__(self, tunnel_command):
assert "-fN" in tunnel_command, "need to open the tunnel with -fN"
self._tunnel_command = tunnel_command
self._delay = 0.1
self.ssh_tunnel = None
def create_tunnel(self):
tunnel_cmd = self._tunnel_command
ssh_process = subprocess.Popen(tunnel_cmd, universal_newlines=True,
shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
stdin=subprocess.PIPE)
# Assuming that the tunnel command has "-f" and "ExitOnForwardFailure=yes", then the
# command will return immediately so we can check the return status with a poll().
while True:
p = ssh_process.poll()
if p is not None: break
time.sleep(self._delay)
if p == 0:
# Unfortunately there is no direct way to get the pid of the spawned ssh process, so we'll find it
# by finding a matching process using psutil.
current_username = psutil.Process(os.getpid()).username()
ssh_processes = [proc for proc in psutil.process_iter() if proc.cmdline() == tunnel_cmd.split() and proc.username() == current_username]
if len(ssh_processes) == 1:
self.ssh_tunnel = ssh_processes[0]
return ssh_processes[0]
else:
raise RuntimeError('multiple (or zero?) tunnel ssh processes found: ' + str(ssh_processes))
else:
raise RuntimeError('Error creating tunnel: ' + str(p) + ' :: ' + str(ssh_process.stdout.readlines()))
def release(self):
""" Get rid of the tunnel by killin the pid
"""
if self.ssh_tunnel:
self.ssh_tunnel.terminate()
def __enter__(self):
self.create_tunnel()
return self
def __exit__(self, type, value, traceback):
self.release()
def __del__(self):
self.release()
| Vasilesk/quotes-posting | sshtunnel.py | sshtunnel.py | py | 2,205 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "subprocess.Popen",
"line_number": 25,
"usage_type": "call"
},
{
"api_name": "subprocess.PIPE",
"line_number": 26,
"usage_type": "attribute"
},
{
"api_name": "subprocess.STDOUT",
"line_number": 26,
"usage_type": "attribute"
},
{
"api_name": "subproce... |
21594616095 | import spacy
import plac
import numpy as np
import time
import re
import os
import sys
import argparse
from sklearn.metrics import accuracy_score
from conllToSpacy import main
# Parsing argument for command-line.
parser = argparse.ArgumentParser(description="Testing an NER model with SpaCy.")
parser.add_argument("-tp", "--test_path", help="Path to CoNLL test dataset.")
parser.add_argument("-model", help="Path to the model.")
args = parser.parse_args()
if args.test_path:
testing, ent_true = main(args.test_path, test='test')
print("Got test data at", args.test_path)
else:
print("No test data path given ! Interrupting the script...")
sys.exit()
if args.model:
model = args.model
print("Model loaded at", model)
else:
print("No model path given !")
sys.exit()
testing_tokens = [x.split() for x in testing]
print('Length testing sentences: ', len(testing))
print('Length testing tokens: ', len(testing_tokens))
def compute_score(L1, L2):
correct_answers = 0
nb_answers = 0
for i in range(len(L1)):
if L1[i] != 'O':
nb_answers += 1
if L1[i] == L2[i]:
correct_answers += 1
print('%d correct out of %d answers.' % (correct_answers, nb_answers))
return correct_answers/nb_answers
def main():
# test the saved model
print("Loading from", model)
nlp2 = spacy.load(model)
ent_pred = []
testing_pred = []
print("Start predicttion...")
count = 1
k = 1
for text in testing:
start = time.time()
doc = nlp2(text)
entities = ['O'] * len(text.split())
for ent in doc.ents:
try:
entities[text.split().index(ent.text)] = ent.label_
except IndexError:
print('Index Error! Ent:', list(ent.text), '. Text:', text)
except ValueError:
print('Value Error! Ent:', list(ent.text), '. Text:', text)
ent_pred.append(entities)
testing_pred.append([t.text for t in doc])
print(str(count)+'/'+str(len(testing))+' done in %fs' % (time.time()-start))
count += 1
# Check whether there are the same number of sentences, and the same number of words in each sentence.
print('Length pred sentences: ', len(testing_pred))
for i in range(len(testing_tokens)):
if len(ent_true[i]) != len(ent_pred[i]):
print("NOT THE SAME LENGTH !")
print("True Text: ", testing_tokens[i])
print("Pred Text: ", testing_pred[i])
print("Entities true: ", ent_true[i])
print("Entities pred: ", ent_pred[i])
print('Pred Entity: ', set([x for y in ent_pred for x in y]))
print('True Entity: ', set([x for y in ent_true for x in y]))
y_pred = [x for y in ent_pred for x in y]
y_true = [x for y in ent_true for x in y]
Precision = compute_score(y_pred, y_true)
Recall = compute_score(y_true, y_pred)
F1_score = 2*(Recall * Precision) / (Recall + Precision)
print("Random accuracy: %0.2f" % (accuracy_score(y_true, ['O']*len(y_true))))
print("Accuracy score: %0.2f" % (accuracy_score(y_true, y_pred)))
print('Precision: %0.2f' % (Precision))
print('Recall: %0.2f' % (Recall))
print('F1 score: %0.2f' % (F1_score))
# with open('score.csv', 'a', encoding='utf-8') as f:
# f.write(os.path.basename(model) + ',' + str(Precision) + ',' + str(Recall) + ',' + str(F1_score) + '\n')
if __name__ == '__main__':
main()
| Djia09/Named-Entity-Recognition-spaCy | test_ner_spacy.py | test_ner_spacy.py | py | 3,496 | python | en | code | 3 | github-code | 36 | [
{
"api_name": "argparse.ArgumentParser",
"line_number": 13,
"usage_type": "call"
},
{
"api_name": "conllToSpacy.main",
"line_number": 19,
"usage_type": "call"
},
{
"api_name": "sys.exit",
"line_number": 23,
"usage_type": "call"
},
{
"api_name": "sys.exit",
"li... |
74582104744 | from rest_framework.decorators import api_view, permission_classes
from rest_framework.permissions import IsAuthenticated
from rest_framework.permissions import AllowAny
from rest_framework.response import Response
from .models import File
from .models import Folder
from .serializers import FileSerializer
from .serializers import FolderSerializer
import os
from django.conf import settings
#####################################################################
###################### Get All Files of a User ######################
#####################################################################
@api_view(['GET'])
@permission_classes([IsAuthenticated])
def get_all_files(request):
user = request.user
files = File.objects.filter(user=user)
serializer = FileSerializer(files, many=True, context={'request': request})
return Response(serializer.data)
#######################################################################
###################### Get All Folders of a User ######################
#######################################################################
@api_view(['GET'])
@permission_classes([IsAuthenticated])
def get_all_folders(request):
user = request.user
folders = Folder.objects.filter(user=user)
serializer = FolderSerializer(folders, many=True)
return Response(serializer.data)
#####################################################################
#####################################################################
@api_view(['GET'])
@permission_classes([IsAuthenticated])
def get_files(request,pk):
user = request.user
if pk=='null':
files = File.objects.filter(user=user,folder_id=None)
else:
files = File.objects.filter(user=user,folder_id=pk)
serializer = FileSerializer(files, many=True, context={'request': request})
return Response(serializer.data)
@api_view(['POST'])
@permission_classes([IsAuthenticated])
def upload_file(request):
user = request.user
serializer = FileSerializer(data=request.data, context={'request': request})
if serializer.is_valid():
original_filename = request.data['file'].name
folder_id = request.data.get('folder_id', None)
serializer.save(user=user, filename=original_filename, folder_id=folder_id)
return Response(serializer.data, status=201)
return Response(serializer.errors, status=400)
@api_view(['DELETE'])
@permission_classes([IsAuthenticated])
def delete_file(request, pk):
user = request.user
try:
file = File.objects.get(id=pk, user=user)
file_path = os.path.join(settings.MEDIA_ROOT, str(file.file))
# Delete the actual file from the server
if os.path.exists(file_path):
os.remove(file_path)
file.delete()
return Response(status=204)
except File.DoesNotExist:
return Response({"detail": "File not found."}, status=404)
@api_view(['POST'])
@permission_classes([IsAuthenticated])
def create_folder(request):
user = request.user
try:
parent_folder_id = request.data['parent_folder_id']
if parent_folder_id=='null':
parent_folder = Folder.objects.get(user=user, id=None)
else:
parent_folder = Folder.objects.get(user=user, id=parent_folder_id)
except (KeyError, Folder.DoesNotExist):
parent_folder=None
serializer = FolderSerializer(data=request.data)
if serializer.is_valid():
serializer.save(user=user, parentFolder=parent_folder)
return Response(serializer.data, status=201)
return Response(serializer.errors, status=400)
@api_view(['GET'])
@permission_classes([IsAuthenticated])
def get_folders(request, pk):
user = request.user
if pk=='null':
folders = Folder.objects.filter(user=user, parentFolder=None)
else:
folders = Folder.objects.filter(user=user, parentFolder=pk)
serializer = FolderSerializer(folders, many=True)
return Response(serializer.data)
@api_view(['PUT'])
@permission_classes([IsAuthenticated])
def updated_folder_title(request,pk):
user=request.user
folder = Folder.objects.get(user=user,id=pk)
newTitle=request.data.get('title',None)
if newTitle:
folder.title=newTitle
folder.save()
serializer = FolderSerializer(folder)
return Response(serializer.data)
return Response({"error": "Title is required"}, status=400)
@api_view(['DELETE'])
@permission_classes([IsAuthenticated])
def delete_folder(request, pk):
user = request.user
try:
folder = Folder.objects.get(id=pk, user=user)
folder.delete()
return Response(status=204)
except Folder.DoesNotExist:
return Response({"detail": "Folder not found."}, status=404) | balibabu/backend | fileapi/views.py | views.py | py | 4,763 | python | en | code | 0 | github-code | 36 | [
{
"api_name": "models.File.objects.filter",
"line_number": 19,
"usage_type": "call"
},
{
"api_name": "models.File.objects",
"line_number": 19,
"usage_type": "attribute"
},
{
"api_name": "models.File",
"line_number": 19,
"usage_type": "name"
},
{
"api_name": "seria... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.