hexsha
stringlengths
40
40
size
int64
5
2.06M
ext
stringclasses
10 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
3
248
max_stars_repo_name
stringlengths
5
125
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
int64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
248
max_issues_repo_name
stringlengths
5
125
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
int64
1
67k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
248
max_forks_repo_name
stringlengths
5
125
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
2.06M
avg_line_length
float64
1
1.02M
max_line_length
int64
3
1.03M
alphanum_fraction
float64
0
1
count_classes
int64
0
1.6M
score_classes
float64
0
1
count_generators
int64
0
651k
score_generators
float64
0
1
count_decorators
int64
0
990k
score_decorators
float64
0
1
count_async_functions
int64
0
235k
score_async_functions
float64
0
1
count_documentation
int64
0
1.04M
score_documentation
float64
0
1
8b31ef4de81790112ce464c5e4351de81b31c2e8
2,889
py
Python
src/MemeEngine/meme_generator.py
svd-007/Meme-Generator
09b3073bce11eb655d888a7ee789ba79a6f41862
[ "BSD-3-Clause" ]
1
2021-07-03T07:56:22.000Z
2021-07-03T07:56:22.000Z
src/MemeEngine/meme_generator.py
svd-007/Meme-Generator
09b3073bce11eb655d888a7ee789ba79a6f41862
[ "BSD-3-Clause" ]
null
null
null
src/MemeEngine/meme_generator.py
svd-007/Meme-Generator
09b3073bce11eb655d888a7ee789ba79a6f41862
[ "BSD-3-Clause" ]
null
null
null
"""Represent a class to generate a meme.""" from PIL import Image, ImageDraw, ImageFont from os import makedirs from random import randint from textwrap import fill class MemeGenerator: """ A class to generate a meme. The following responsibilities are defined under this class: - Loading of an image from a disk. - Transforming the image by resizing to a maximum width of 500px while maintaining the input aspect ratio. - Adding a caption to the image with a body and author to a random location on the image. """ def __init__(self, output_dir: str): """ Create a new `MemeGenerator`. Parameters ---------- `output_dir`: str output directory to save the generated meme. """ self.output_dir = output_dir makedirs(self.output_dir, exist_ok=True) def validate_width(self, width: int) -> ValueError: """ Assert whether desired width of the image does not exceed 500px. Raise `ValueError` if width greater than 500px. Parameters ---------- `width`: int width of the image. """ if width > 500: raise ValueError('Width of the image cannot exceed 500px.') def make_meme(self, img_path: str, text: str, author: str, width: int = 500) -> str: """ Return path of the saved image of the meme after adding caption to it. Parameters ---------- `img_path`: str path of the original image. `text`: str quote of the meme. `author`: str author of the meme. `width`: int desired width of the image, default = 500px. """ # Opening the image. img = Image.open(img_path) # Try-except block to handle instances where width > 500px. try: self.validate_width(width) except ValueError as val_err: print(val_err) else: # Resizing the image proportionate to the given width. ratio = width / float(img.size[0]) height = int(ratio * float(img.size[1])) img = img.resize((width, height), Image.NEAREST) # Adding the caption to the image. caption = fill(f'{text} - {author}', width=40) font = ImageFont.truetype('./_data/font/Candara.ttf', size=20) draw = ImageDraw.Draw(img) draw.text(xy=(randint(10, 40), randint(20, 70)), text=caption, font=font, fill='white') # Saving the image to the output directory. output_path = f'{self.output_dir}/{randint(0, 1000)}.png' try: img.save(output_path) except Exception as e: print(e) return output_path
28.323529
79
0.564209
2,721
0.941848
0
0
0
0
0
0
1,553
0.537556
8b328370d1cf93b389aef2ac7b2ff633d0f7663a
519
py
Python
rotait/workload.py
stevecshanks/rota-it
09a48b3e8c863557968258f9083bb69e4188e5b3
[ "MIT" ]
null
null
null
rotait/workload.py
stevecshanks/rota-it
09a48b3e8c863557968258f9083bb69e4188e5b3
[ "MIT" ]
null
null
null
rotait/workload.py
stevecshanks/rota-it
09a48b3e8c863557968258f9083bb69e4188e5b3
[ "MIT" ]
null
null
null
from collections import Counter class Workload: def __init__(self, tasks): self.per_person = Counter(task.assignee for task in tasks) def assign(self, task, person): task.assignee = person self.per_person[person] += 1 return task def assigned_to(self, person): return self.per_person[person] def get_least_busy_person(self, people): if not people: return None return sorted(people, key=lambda person: self.assigned_to(person))[0]
25.95
77
0.655106
485
0.934489
0
0
0
0
0
0
0
0
8b3302b5c0dc0c3439e25e39f6c077dcd923e1ca
11,386
py
Python
onsset/updated_summaries.py
AndreasSahlberg/onsset-Ethiopia
b18759f1ad65079d500cbd12f55e5ea9a7c35119
[ "MIT" ]
null
null
null
onsset/updated_summaries.py
AndreasSahlberg/onsset-Ethiopia
b18759f1ad65079d500cbd12f55e5ea9a7c35119
[ "MIT" ]
null
null
null
onsset/updated_summaries.py
AndreasSahlberg/onsset-Ethiopia
b18759f1ad65079d500cbd12f55e5ea9a7c35119
[ "MIT" ]
null
null
null
""" This script produces the summary analysis required to provide input data for the OSeMOSYS soft-link """ SET_TOTAL_ENERGY_PER_CELL = "TotalEnergyPerCell" SET_ELEC_FINAL_CODE = "FinalElecCode" SET_ELEC_CURRENT = 'ElecStart' SET_POP = 'Pop' SET_NEW_CONNECTIONS = 'NewConnections' SET_NEW_CAPACITY = 'NewCapacity' SET_INVESTMENT_COST = 'InvestmentCost' SET_TRANSMISSION_INV = 'TransmissionInvestmentCost' SET_GHI = 'GHI' SET_WINDCF = 'WindCF' import os import tkinter as tk from tkinter import filedialog, messagebox import pandas as pd root = tk.Tk() root.withdraw() root.attributes("-topmost", True) messagebox.showinfo('OnSSET', 'Open the csv file with results data') result_csv_path = filedialog.askopenfilename() messagebox.showinfo('OnSSET', 'Browse to SUMMARIES folder and name the scenario to save outputs') summary_folder = filedialog.askdirectory() df_in = pd.read_csv(result_csv_path) df_in['PVType2018'] = 1 df_in['NewConnections2018'] = 0 df_in['NewCapacity2018'] = 0 df_in['InvestmentCost2018'] = 0 df_in['TransmissionInvestmentCost2018'] = 0 df_in['TotalEnergyPerCell2018'] = df_in['ElecPopCalib'] * df_in['ResidentialDemandTierCustom2018'] * df_in[SET_ELEC_CURRENT] elements = ["1.Population", "2.New_Connections", "3.Capacity", "4.Investment", "5. Demand", "6. Transmission summaries", "7. Distribution summaries", "8. Capacity factor"] techs = ["Grid", "MG_Diesel", "MG_PV", "MG_Wind", "MG_Hydro", "SA_PV_1", "SA_PV_2", "SA_PV_3", "SA_PV_4", "SA_PV_5"] years = [2018, 2025, 2030, 2040, 2050, 2060, 2070] tech_codes = [1, 4, 5, 6, 7, 8, 9, 10, 11, 12] grid_power_plants_capital_cost = {2025: 663, 2030: 373, 2040: 3067, 2050: 982, 2060: 1583, 2070: 1352} mg_diesel_capital_cost = {2025: 721, 2030: 721, 2040: 721, 2050: 721, 2060: 721, 2070: 721} mg_pv_capital_cost = {2025: 2829, 2030: 2540, 2040: 2252, 2050: 1977, 2060: 1703, 2070: 1428} mg_wind_capital_cost = {2025: 4356, 2030: 4285, 2040: 4213, 2050: 4117, 2060: 4021, 2070: 3926} mg_hydro_capital_cost = {2025: 3000, 2030: 3000, 2040: 3000, 2050: 3000, 2060: 3000, 2070: 3000} sa_pv_capital_cost_1 = {2025: 9067, 2030: 8143, 2040: 7218, 2050: 6338, 2060: 5458, 2070: 4577} ### Stand-alone PV capital cost (USD/kW) for household systems between 21-50 W sa_pv_capital_cost_2 = {2025: 8487, 2030: 7621, 2040: 6756, 2050: 5932, 2060: 5108, 2070: 4285} ### Stand-alone PV capital cost (USD/kW) for household systems between 51-100 W sa_pv_capital_cost_3 = {2025: 6165, 2030: 5537, 2040: 4908, 2050: 4310, 2060: 3711, 2070: 3113} ### Stand-alone PV capital cost (USD/kW) for household systems between 101-1000 W sa_pv_capital_cost_4 = {2025: 4316, 2030: 3876, 2040: 3436, 2050: 3017, 2060: 2598, 2070: 2179} ### Stand-alone PV capital cost (USD/kW) for household systems over 1 kW sa_pv_capital_cost_5 = {2025: 6710, 2030: 6026, 2040: 5342, 2050: 4690, 2060: 4039, 2070: 3387} tech_costs = {1: grid_power_plants_capital_cost, 4: mg_diesel_capital_cost, 5: mg_pv_capital_cost, 6: mg_wind_capital_cost, 7: mg_hydro_capital_cost, 8: sa_pv_capital_cost_1, 9: sa_pv_capital_cost_2, 10: sa_pv_capital_cost_3, 11: sa_pv_capital_cost_4, 12: sa_pv_capital_cost_5} for year in years: df_in.loc[(df_in[SET_ELEC_FINAL_CODE + '{}'.format(year)] == 3) & (df_in['PVType' + '{}'.format(year)] == 1), SET_ELEC_FINAL_CODE + '{}'.format(year)] = 8 df_in.loc[(df_in[SET_ELEC_FINAL_CODE + '{}'.format(year)] == 3) & (df_in['PVType' + '{}'.format(year)] == 2), SET_ELEC_FINAL_CODE + '{}'.format(year)] = 9 df_in.loc[(df_in[SET_ELEC_FINAL_CODE + '{}'.format(year)] == 3) & (df_in['PVType' + '{}'.format(year)] == 3), SET_ELEC_FINAL_CODE + '{}'.format(year)] = 10 df_in.loc[(df_in[SET_ELEC_FINAL_CODE + '{}'.format(year)] == 3) & (df_in['PVType' + '{}'.format(year)] == 4), SET_ELEC_FINAL_CODE + '{}'.format(year)] = 11 df_in.loc[(df_in[SET_ELEC_FINAL_CODE + '{}'.format(year)] == 3) & (df_in['PVType' + '{}'.format(year)] == 5), SET_ELEC_FINAL_CODE + '{}'.format(year)] = 12 df_electrified = df_in.loc[df_in[SET_ELEC_CURRENT] == 1] df_unelectrified = df_in.loc[df_in[SET_ELEC_CURRENT] == 0] sumtechs = [] for element in elements: for tech in techs: sumtechs.append(element + "_" + tech) total_rows = len(sumtechs) electrified_sumtechs = pd.DataFrame(columns=years) unelectrified_sumtechs = pd.DataFrame(columns=years) combined_sumtechs = pd.DataFrame(columns=years) for row in range(0, total_rows): electrified_sumtechs.loc[sumtechs[row]] = 0 unelectrified_sumtechs.loc[sumtechs[row]] = 0 combined_sumtechs.loc[sumtechs[row]] = 0 i = 0 # Adding pop summary (Million ppl for code in tech_codes: for year in years: electrified_sumtechs[year][sumtechs[i]] = sum(df_electrified.loc[df_electrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_POP + "{}".format(year)])/1000000 unelectrified_sumtechs[year][sumtechs[i]] = sum(df_unelectrified.loc[df_unelectrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_POP + "{}".format(year)])/1000000 combined_sumtechs[year][sumtechs[i]] = sum(df_in.loc[df_in[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_POP + "{}".format(year)]) / 1000000 i += 1 # Adding connections summary (Million ppl) for code in tech_codes: for year in years: electrified_sumtechs[year][sumtechs[i]] = sum(df_electrified.loc[df_electrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_NEW_CONNECTIONS + "{}".format(year)])/1000000 unelectrified_sumtechs[year][sumtechs[i]] = sum(df_unelectrified.loc[df_unelectrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_NEW_CONNECTIONS + "{}".format(year)])/1000000 i += 1 # Adding capacity summaries (MW) for code in tech_codes: for year in years: electrified_sumtechs[year][sumtechs[i]] = sum(df_electrified.loc[df_electrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_NEW_CAPACITY + "{}".format(year)])/1000 unelectrified_sumtechs[year][sumtechs[i]] = sum(df_unelectrified.loc[df_unelectrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_NEW_CAPACITY + "{}".format(year)])/1000 i += 1 # Adding investment summaries (Million USD) for code in tech_codes: for year in years: electrified_sumtechs[year][sumtechs[i]] = sum(df_electrified.loc[df_electrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_INVESTMENT_COST + "{}".format(year)])/1000000 unelectrified_sumtechs[year][sumtechs[i]] = sum(df_unelectrified.loc[df_unelectrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_INVESTMENT_COST + "{}".format(year)])/1000000 i += 1 # Adding demand summaries (GWh) for code in tech_codes: for year in years: electrified_sumtechs[year][sumtechs[i]] = sum(df_electrified.loc[df_electrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_TOTAL_ENERGY_PER_CELL + "{}".format(year)])/1000000 unelectrified_sumtechs[year][sumtechs[i]] = sum(df_unelectrified.loc[df_unelectrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_TOTAL_ENERGY_PER_CELL + "{}".format(year)])/1000000 i += 1 # Adding transmission summaries (Million USD) for code in tech_codes: for year in years: if code == 1: electrified_sumtechs[year][sumtechs[i]] = sum(df_electrified.loc[df_electrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code, SET_TRANSMISSION_INV + "{}".format(year)]) / 1000000 unelectrified_sumtechs[year][sumtechs[i]] = sum(df_unelectrified.loc[df_unelectrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code, SET_TRANSMISSION_INV + "{}".format(year)])/1000000 i += 1 # Adding distribution summaries (USD/kW) for code in tech_codes: for year in years: if electrified_sumtechs[year][sumtechs[i-40]] > 0: electrified_sumtechs[year][sumtechs[i]] = (electrified_sumtechs[year][sumtechs[i-30]]*1000000 - electrified_sumtechs[year][sumtechs[i-10]]*1000000 - electrified_sumtechs[year][sumtechs[i-40]]*1000 * tech_costs[code][year])/(electrified_sumtechs[year][sumtechs[i-40]]*1000) if unelectrified_sumtechs[year][sumtechs[i-40]] > 0: unelectrified_sumtechs[year][sumtechs[i]] = (unelectrified_sumtechs[year][sumtechs[i-30]]*1000000 - unelectrified_sumtechs[year][sumtechs[i-10]]*1000000 - unelectrified_sumtechs[year][sumtechs[i-40]]*1000 * tech_costs[code][year])/(unelectrified_sumtechs[year][sumtechs[i-40]]*1000) i += 1 for code in tech_codes: for year in years: if code == 5 or code > 7: if electrified_sumtechs[year][sumtechs[i-40]] > 0: electrified_sumtechs[year][sumtechs[i]] = df_electrified.loc[df_electrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_GHI].mean()/8760 if unelectrified_sumtechs[year][sumtechs[i - 40]] > 0: unelectrified_sumtechs[year][sumtechs[i]] = df_unelectrified.loc[df_unelectrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_GHI].mean() / 8760 elif code == 6: if electrified_sumtechs[year][sumtechs[i - 40]] > 0: electrified_sumtechs[year][sumtechs[i]] = df_electrified.loc[df_electrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_WINDCF].mean() if unelectrified_sumtechs[year][sumtechs[i - 40]] > 0: unelectrified_sumtechs[year][sumtechs[i]] = df_unelectrified.loc[df_unelectrified[SET_ELEC_FINAL_CODE + "{}".format(year)] == code][SET_WINDCF].mean() i += 1 all_sumtechs = electrified_sumtechs + unelectrified_sumtechs unelectrified_path = os.path.join(summary_folder, 'Unelectrified_Summary.csv') electrified_path = os.path.join(summary_folder, 'Electrified_summary.csv') combined_path = os.path.join(summary_folder, 'Combined_summary.csv') unelectrified_sumtechs.to_csv(unelectrified_path, index=sumtechs) electrified_sumtechs.to_csv(electrified_path, index=sumtechs) all_sumtechs.to_csv(combined_path, index=sumtechs)
50.830357
199
0.620675
0
0
0
0
0
0
0
0
1,650
0.144915
8b3374c6ece3f73fe69ec41666cc9030414c8a9c
13,575
py
Python
2021/python/day-14.py
tadhg-ohiggins/advent-of-code
d0f113955940e69cbe0953607f62862f8a8bb830
[ "CC0-1.0" ]
1
2021-12-04T18:09:44.000Z
2021-12-04T18:09:44.000Z
2021/python/day-14.py
tadhg-ohiggins/advent-of-code
d0f113955940e69cbe0953607f62862f8a8bb830
[ "CC0-1.0" ]
null
null
null
2021/python/day-14.py
tadhg-ohiggins/advent-of-code
d0f113955940e69cbe0953607f62862f8a8bb830
[ "CC0-1.0" ]
null
null
null
from collections import Counter from functools import cache, partial, reduce from math import prod import pdb import aoc import networkx as nx from toolz import keyfilter, sliding_window from aoc import Point, adjacent_transforms, generate_bounded_coords from tadhg_utils import ( lcompact, lconcat, lfilter, lmap, splitstrip, splitstriplines, ) INPUT, TEST = aoc.get_inputs(__file__) TA1 = 1588 TA2 = 2188189693529 A1 = 2657 A2 = None def parse_data(data): start, raw_rules = data.split("\n\n") rules = lmap(lambda x: splitstrip(x, sep="->"), splitstriplines(raw_rules)) rules = dict(rules) return start, rules def process_step(curr, rules): pairs = lmap("".join, sliding_window(2, curr)) def alter_pair(pair): if pair in rules: pair = pair[0] + rules[pair] + pair[1] return pair def merge(couplets): st = "" for i, couplet in enumerate(couplets): if not st: st = couplet else: st = st[: 2 * (i)] + couplet return st xx = merge(lmap(alter_pair, pairs)) xx2 = merge(xx[0]) return xx2, rules def make_quads(term): s, e = 0, 4 refs = [] while e <= len(term): refs.append((s, e)) s = s + 3 e = e + 3 return [term[s:e] for s, e in refs] @cache def make_quads2(quarter, term): s, e, i = 0, quarter, 0 refs = [] while len(refs) < 4: refs.append((s, e)) s = s + quarter - i e = e + quarter - i i = i + 1 return [term[s:e] for s, e in refs] def naive_step(curr, rules): @cache def naive_step_inner(curr): @cache def alter_pair(pair): return pair[0] + rules[pair] + pair[1] pairs = tuple(lmap("".join, sliding_window(2, curr))) return do_merge(tuple(lmap(alter_pair, pairs))) return naive_step_inner(curr) def naive_steps(curr, rules, num): for i in range(num): curr = naive_step(curr, rules) print(i) return curr def process_one(data): start, rules = data curr = start def better_step(curr): def merge(couplets): st = "" for i, couplet in enumerate(couplets): if not st: st = couplet else: st = st[: 2 * (i)] + couplet return st def alter_pair(pair): if pair in rules: pair = pair[0] + rules[pair] + pair[1] return pair @cache def alter_quad(quad): pairs = lmap("".join, sliding_window(2, quad)) return merge(lmap(alter_pair, pairs)) quads = make_quads(curr) altered_quads = map(alter_quad, quads) stuff = "" for q in altered_quads: stuff = stuff[:-1] + q return stuff for i in range(10): prev_length = 3 * (2 ** (i - 1)) + 1 p1, p2 = prev_length, prev_length - 1 if prev_length > 7: curr = better_step(curr[:p1]) + better_step(curr[p2:])[1:] else: curr = better_step(curr) counted = Counter(curr) return counted.most_common()[0][1] - counted.most_common()[-1][1] def do_merge(segments): stuff = "" for segment in segments: if not stuff: stuff = segment else: stuff = stuff + segment[1:] return stuff def process_two(data): start, rules = data num = 5 curr = naive_steps(start, rules, num) curr2 = naive_steps(start, rules, 2) naive2 = naive_steps(start, rules, 2) nn2, nc2, cb2 = [naive_steps(x, rules, 2) for x in ["NN", "NC", "CB"]] chec2 = curr2 == do_merge((nn2, nc2, cb2)) curr3 = naive_steps(start, rules, 3) nn3, nc3, cb3 = [naive_steps(x, rules, 3) for x in ["NN", "NC", "CB"]] chec3 = curr3 == do_merge((nn3, nc3, cb3)) curr4 = naive_steps(start, rules, 4) nn4, nc4, cb4 = [naive_steps(x, rules, 4) for x in ["NN", "NC", "CB"]] chec4 = curr4 == do_merge((nn4, nc4, cb4)) twos = {rule: naive_steps(rule, rules, 2) for rule in rules} ones = {rule: naive_steps(rule, rules, 1) for rule in rules} innc3 = [x for x in twos.values() if x in nc3] inc3 = [(x, v) for x, v in twos.items() if v in curr3] nn = naive_steps("NN", rules, num) nc = naive_steps("NC", rules, num) cb = naive_steps("CB", rules, num) """ xx = [do_steps("BN", rules, i) for i in range(num - 1)] stripped = ( curr.replace(nn, nn[-1]).replace(nc, "|" + nc[-1]).replace(cb, cb[-1]) ) matches = lfilter( lambda x: curr[25:32] in x, [do_steps("BN", rules, i) for i in range(num - 1)], ) """ """ xcurr = do_steps(start, rules, 10) xstuff = "" for k in xcurr: xstuff = xstuff + k * xcurr[k] """ pdb.set_trace() nn40 = naive_steps("NN", rules, 40) return counted.most_common()[0][1] - counted.most_common()[-1][1] def xdo_steps(curr, rules, num): pairs = lmap("".join, sliding_window(2, curr)) couplets = {p: 1 for p in pairs} for i in range(num): print(i, couplets, sum(couplets.values())) new_couplets = {} for couplet in couplets: triplet = couplet[0] + rules[couplet] + couplet[1] newpairs = lmap("".join, sliding_window(2, triplet)) for np in newpairs: if np in new_couplets: new_couplets[np] = new_couplets[np] + 1 else: new_couplets[np] = 1 for k in couplets: if k in new_couplets: new_couplets[k] = new_couplets[k] * couplets[k] couplets = new_couplets return couplets def do_steps(curr, rules, num): sequences = {} def merge(couplets): st = "" for i, couplet in enumerate(couplets): if not st: st = couplet else: st = st[: 2 * (i)] + couplet return st @cache def alter_pair(pair): if pair in rules: pair = pair[0] + rules[pair] + pair[1] return pair for pair in rules: sequences[pair] = alter_pair(pair) @cache def alter_quad(quad): pairs = lmap("".join, sliding_window(2, quad)) return merge(lmap(alter_pair, pairs)) @cache def better_step(curr): print(len(sequences)) if curr in sequences: return sequences[curr] elif len(curr) > 7: quads = make_quads(curr) altered_quads = map(alter_quad, quads) stuff = "" for q in altered_quads: stuff = stuff[:-1] + q if curr not in sequences: sequences[curr] = stuff return stuff else: pairs = lmap("".join, sliding_window(2, curr)) return merge(lmap(alter_pair, pairs)) for i in range(num): curr = better_step(curr) print("len:", len(curr)) """ prev_length = 3 * (2 ** (i - 2)) + 1 print(i, len(curr), prev_length) p1, p2 = prev_length, prev_length - 1 if False: # if any(seq in curr for seq in sequences): for seq in sequences: if curr.startswith(seq): curr = curr.replace(seq, sequences[seq]) else: curr = curr.replace(seq, sequences[seq][1:]) else: if i > 3: qs = make_quads2(prev_length, curr) curr = ( better_step(qs[0]) + better_step(qs[1])[1:] + better_step(qs[2])[1:] + better_step(qs[3])[1:] ) else: oldcurr = curr curr = better_step(curr) if oldcurr not in sequences: sequences[oldcurr] = curr """ """ for seq in sorted(sequences.keys(), key=lambda x: -len(x)) curr = if seq in curr: p1 = curr.index(seq) p2 = p1 + len(seq) curr = ( better_step(curr[:p1]) + sequences[seq][1:] + better_step(curr[p2:]) ) in_seq = True if not in_seq: if i > 3: qs = make_quads2(prev_length, curr) curr = ( better_step(qs[0]) + better_step(qs[1])[1:] + better_step(qs[2])[1:] + better_step(qs[3])[1:] ) else: curr = better_step(curr) if i > 3: qs = make_quads2(prev_length, curr) curr = ( better_step(qs[0]) + better_step(qs[1])[1:] + better_step(qs[2])[1:] + better_step(qs[3])[1:] ) else: curr = better_step(curr) """ """ prev_length = 3 * (2 ** (i - 1)) + 1 print(i, len(curr), prev_length) p1, p2 = prev_length, prev_length - 1 if prev_length > 7: curr = better_step(curr[:p1]) + better_step(curr[p2:])[1:] else: curr = better_step(curr) """ print(Counter(curr)) return curr def cli_main() -> None: input_funcs = [parse_data] data = aoc.load_and_process_input(INPUT, input_funcs) aoc.run_tests(TEST, TA1, TA2, A1, input_funcs, process_one, process_two) # result_one = process_one(data) # print(result_one) # result_two = process_two(data) # aoc.finish(result_one, A1, result_two, A2) if __name__ == "__main__": cli_main() """ --- Day 13: Transparent Origami --- You reach another volcanically active part of the cave. It would be nice if you could do some kind of thermal imaging so you could tell ahead of time which caves are too hot to safely enter. Fortunately, the submarine seems to be equipped with a thermal camera! When you activate it, you are greeted with: Congratulations on your purchase! To activate this infrared thermal imaging camera system, please enter the code found on page 1 of the manual. Apparently, the Elves have never used this feature. To your surprise, you manage to find the manual; as you go to open it, page 1 falls out. It's a large sheet of transparent paper! The transparent paper is marked with random dots and includes instructions on how to fold it up (your puzzle input). For example: 6,10 0,14 9,10 0,3 10,4 4,11 6,0 6,12 4,1 0,13 10,12 3,4 3,0 8,4 1,10 2,14 8,10 9,0 fold along y=7 fold along x=5 The first section is a list of dots on the transparent paper. 0,0 represents the top-left coordinate. The first value, x, increases to the right. The second value, y, increases downward. So, the coordinate 3,0 is to the right of 0,0, and the coordinate 0,7 is below 0,0. The coordinates in this example form the following pattern, where # is a dot on the paper and . is an empty, unmarked position: ...#..#..#. ....#...... ........... #.......... ...#....#.# ........... ........... ........... ........... ........... .#....#.##. ....#...... ......#...# #.......... #.#........ Then, there is a list of fold instructions. Each instruction indicates a line on the transparent paper and wants you to fold the paper up (for horizontal y=... lines) or left (for vertical x=... lines). In this example, the first fold instruction is fold along y=7, which designates the line formed by all of the positions where y is 7 (marked here with -): ...#..#..#. ....#...... ........... #.......... ...#....#.# ........... ........... ----------- ........... ........... .#....#.##. ....#...... ......#...# #.......... #.#........ Because this is a horizontal line, fold the bottom half up. Some of the dots might end up overlapping after the fold is complete, but dots will never appear exactly on a fold line. The result of doing this fold looks like this: #.##..#..#. #...#...... ......#...# #...#...... .#.#..#.### ........... ........... Now, only 17 dots are visible. Notice, for example, the two dots in the bottom left corner before the transparent paper is folded; after the fold is complete, those dots appear in the top left corner (at 0,0 and 0,1). Because the paper is transparent, the dot just below them in the result (at 0,3) remains visible, as it can be seen through the transparent paper. Also notice that some dots can end up overlapping; in this case, the dots merge together and become a single dot. The second fold instruction is fold along x=5, which indicates this line: #.##.|#..#. #...#|..... .....|#...# #...#|..... .#.#.|#.### .....|..... .....|..... Because this is a vertical line, fold left: ##### #...# #...# #...# ##### ..... ..... The instructions made a square! The transparent paper is pretty big, so for now, focus on just completing the first fold. After the first fold in the example above, 17 dots are visible - dots that end up overlapping after the fold is completed count as a single dot. How many dots are visible after completing just the first fold instruction on your transparent paper? Your puzzle answer was 631. --- Part Two --- Finish folding the transparent paper according to the instructions. The manual says the code is always eight capital letters. What code do you use to activate the infrared thermal imaging camera system? Your puzzle answer was EFLFJGRF. """
26.722441
79
0.550645
0
0
0
0
1,479
0.10895
0
0
6,722
0.495175
8b34d879c3ac60c77eb7443da1cbae23ffb3e2f1
3,169
py
Python
mmrelay.py
AlexandrVLopatin/mmrelay
3b98a9d3b583cf4962417aa0dd8d7667bf191025
[ "MIT" ]
null
null
null
mmrelay.py
AlexandrVLopatin/mmrelay
3b98a9d3b583cf4962417aa0dd8d7667bf191025
[ "MIT" ]
null
null
null
mmrelay.py
AlexandrVLopatin/mmrelay
3b98a9d3b583cf4962417aa0dd8d7667bf191025
[ "MIT" ]
null
null
null
#!/usr/bin/env python3 import json import sys import asyncio import aiohttp from aiohttp.resolver import AsyncResolver import requests import websockets MM_URL = 'http://127.0.0.1:8065/api/v4' MM_WSURL = 'ws://127.0.0.1:8065/api/v4/websocket' MM_LOGIN = 'bot@localhost.local' MM_PASSWORD = '12345678' CALLBACK_URL = 'https://api.myapp.com/messages' CALLBACK_TIMEOUT = 10 def login(): loginData = {'login_id': MM_LOGIN, 'password': MM_PASSWORD} loginRequest = requests.post(MM_URL + '/users/login', json=loginData) if 'Token' in loginRequest.headers: return loginRequest.headers['Token'] else: raise Exception("Authentification failed") async def createConnection(): async with websockets.connect(MM_WSURL) as websocket: await authenticateWebsocket(websocket) await startLoop(websocket) async def startLoop(websocket): while True: try: await asyncio.wait_for(waitForMessage(websocket), timeout=60) except asyncio.TimeoutError: await websocket.pong() continue async def authenticateWebsocket(websocket): jsonData = json.dumps({ "seq": 1, "action": "authentication_challenge", "data": { "token": token } }).encode('utf8') await websocket.send(jsonData) response = await websocket.recv() status = json.loads(response) if 'event' in status and status['event'] == 'hello': print("Auth OK") return True else: return False async def waitForMessage(websocket): print("Waiting for messages") while True: event = await websocket.recv() await eventHandler(event) async def eventHandler(event): print(event) data = json.loads(event) if 'event' in data and data['event'] == 'posted': loop.create_task(sendCallback(event)) async def sendCallback(event): conn = aiohttp.TCPConnector(resolver=dnsResolver) try: async with aiohttp.ClientSession(connector=conn, loop=loop) as session: await session.post(CALLBACK_URL, json=event, timeout=CALLBACK_TIMEOUT) await session.close() except asyncio.TimeoutError: pass if __name__ == '__main__': loop = asyncio.get_event_loop() dnsResolver = AsyncResolver() token = login() try: sys.exit(loop.run_until_complete(createConnection())) except KeyboardInterrupt: print("Shutting down, press Ctrl+C to force exit.", flush=True) def shutdown_exception_handler(l, context): if "exception" not in context \ or not isinstance(context["exception"], asyncio.CancelledError): l.default_exception_handler(context) loop.set_exception_handler(shutdown_exception_handler) tasks = asyncio.gather(*asyncio.Task.all_tasks(loop=loop), loop=loop, return_exceptions=True) tasks.add_done_callback(lambda t: loop.stop()) tasks.cancel() while not tasks.done() and not loop.is_closed(): loop.run_forever() finally: loop.close()
27.798246
84
0.64847
0
0
0
0
0
0
1,519
0.479331
434
0.136952
8b3580c4950933eb2102191174644d25a3e5c264
1,165
py
Python
legacy/ABC_110/D1.py
mo-mo-666/AtCoder
99556f5ed98510850aaa8ab2b845da6a9359f5a5
[ "MIT" ]
null
null
null
legacy/ABC_110/D1.py
mo-mo-666/AtCoder
99556f5ed98510850aaa8ab2b845da6a9359f5a5
[ "MIT" ]
null
null
null
legacy/ABC_110/D1.py
mo-mo-666/AtCoder
99556f5ed98510850aaa8ab2b845da6a9359f5a5
[ "MIT" ]
null
null
null
#------------------------------------------------------------------------------- # Name: module1 # Purpose: # # Author: mo-mo- # # Created: 23/09/2018 # Copyright: (c) mo-mo- 2018 # Licence: <your licence> #------------------------------------------------------------------------------- from math import factorial, sqrt n, m = map(int, input().split()) ans = 1 if m != 1: factorization = {} while True: for i in range (2, int(sqrt(m))+1): if m % i == 0: if i in factorization: factorization[i] += 1 else: factorization[i] = 1 m = m // i break else: if m in factorization: factorization[m] += 1 else: factorization[m] = 1 break for i in factorization.keys(): k = factorization[i] num = 1 for i in range(k): num *= (n+k-1-i) num //= factorial(k) ans *= num % (10**9+7) ans = ans % (10**9+7) print(ans)
21.574074
81
0.345923
0
0
0
0
0
0
0
0
309
0.265236
8b35a7c3678ed712b3ff354ea5d271f206795d53
221
py
Python
UVa 11332 - Summing Digits/sample/main.py
tadvi/uva
0ac0cbdf593879b4fb02a3efc09adbb031cb47d5
[ "MIT" ]
1
2020-11-24T03:17:21.000Z
2020-11-24T03:17:21.000Z
UVa 11332 - Summing Digits/sample/main.py
tadvi/uva
0ac0cbdf593879b4fb02a3efc09adbb031cb47d5
[ "MIT" ]
null
null
null
UVa 11332 - Summing Digits/sample/main.py
tadvi/uva
0ac0cbdf593879b4fb02a3efc09adbb031cb47d5
[ "MIT" ]
1
2021-04-11T16:22:31.000Z
2021-04-11T16:22:31.000Z
import sys sys.stdin = open('input.txt') while True: N = int(input()) if not N: break strN = str(N) while len(strN) > 1: N = sum(int(i) for i in strN) strN = str(N) print strN
17
37
0.515837
0
0
0
0
0
0
0
0
11
0.049774
8b35d9982525705ce805c06ded1df966dff59ab7
3,057
py
Python
backend/app/api/users.py
vacuumlabs/cowork-reservation
5b4d275f6e2d1b1877b3b57f5550f27ed2b3f641
[ "MIT" ]
null
null
null
backend/app/api/users.py
vacuumlabs/cowork-reservation
5b4d275f6e2d1b1877b3b57f5550f27ed2b3f641
[ "MIT" ]
21
2021-10-11T11:43:19.000Z
2022-02-27T19:18:56.000Z
backend/app/api/users.py
vacuumlabs/cowork-reservation
5b4d275f6e2d1b1877b3b57f5550f27ed2b3f641
[ "MIT" ]
2
2021-10-16T11:52:43.000Z
2021-11-15T16:25:08.000Z
import json from flask import jsonify, request, make_response, render_template from flask.blueprints import Blueprint from app.daos import tenant_dao from app.firebase_utils import * from app.services import user_service from app.user_dao import user_dao users_bp = Blueprint("users_bp", __name__) @users_bp.route("/users", methods=["GET"]) def get_multiple(): accessible_roles = ["SUPER_ADMIN","TENANT_ADMIN"] returned_value = have_claims(request.headers.get("Authorization"),accessible_roles) if returned_value["have_access"]: params = user_service.url_args_to_query_params_dict(request.args, False) values_for_return = user_dao.get_users( returned_value, params['filters'], params['sort'], params['range'] ) return user_service.response(values_for_return['data'],values_for_return['count'], 200) else: return user_service.response(status_code=403) @users_bp.route("/users", methods=["POST"]) def create_tenant_admin(): accessible_roles = ["SUPER_ADMIN","TENANT_ADMIN"] returned_value = have_claims(request.headers.get("Authorization"),accessible_roles) if returned_value["have_access"]: data = request.json success = user_dao.create_user(**data) if success: return user_service.response(success,status_code=200) else: return user_service.response(status_code=500) else: return user_service.response(status_code=403) @users_bp.route("/users/<id>", methods=["DELETE"]) def del_tenant(id): accessible_roles = ["SUPER_ADMIN","TENANT_ADMIN"] returned_value = have_claims(request.headers.get("Authorization"),accessible_roles) if returned_value["have_access"]: '''success = user_dao.delete_user(id) if success: return user_service.response() ''' return user_service.response(user_dao.update_user(have_claims, id, {"role":"", "tenantId": ""})) return user_service.response(status_code=403) @users_bp.route("/users/<id>", methods=["PUT"]) def update_tenant_admin(id): accessible_roles = ["SUPER_ADMIN", "TENANT_ADMIN", "USER"] returned_value = have_claims(request.headers.get("Authorization"),accessible_roles) if returned_value["have_access"]: data = request.json success = user_dao.update_user(returned_value, id, data) if success: return user_service.response(success,status_code=200) else: return user_service.response(status_code=500) return user_service.response(status_code=403) @users_bp.route("/users/<id>", methods=["GET"]) def get_one_user(id): accessible_roles = ["SUPER_ADMIN","TENANT_ADMIN", "USER"] returned_value = have_claims(request.headers.get("Authorization"),accessible_roles) if returned_value["have_access"]: return user_service.response(user_dao.get_one(returned_value, id)) else: return user_service.response(status_code=403)
42.458333
105
0.690546
0
0
0
0
2,733
0.894014
0
0
541
0.176971
8b364fcc96d5ff47ae2f83f96ec7196a4d269a7f
657
py
Python
test_credentials.py
kuya-ui/Password-Locker
17d281d878d2de31d33eba1c17657e18820ac36b
[ "MIT" ]
null
null
null
test_credentials.py
kuya-ui/Password-Locker
17d281d878d2de31d33eba1c17657e18820ac36b
[ "MIT" ]
null
null
null
test_credentials.py
kuya-ui/Password-Locker
17d281d878d2de31d33eba1c17657e18820ac36b
[ "MIT" ]
null
null
null
import unittest from credentials import Credential class TestCredential(unittest.TestCase): """ Test class that defines test cases for the credential class behaviours, the arguments help in creating test cases. """ def setUp(self): """ this method runs before each test case, carries the instructions of what is to be done """ self.new_password = Credential("max") def test_init(self): """ used to test if the objects have been initialized properly """ self.assertEqual(self.new_password.credential_detail,"max") if __name__ == '__main__': unittest.main()
22.655172
94
0.657534
556
0.846271
0
0
0
0
0
0
346
0.526636
8b368cfa92000ef0ac1532c8bf52270153786cd6
6,810
py
Python
awslambda/python_requirements/_python_project.py
ITProKyle/runway-hook-awslambda
a346465277049b004c7f3c0feb759f152369eb21
[ "Apache-2.0" ]
1
2021-09-09T14:59:53.000Z
2021-09-09T14:59:53.000Z
awslambda/python_requirements/_python_project.py
ITProKyle/runway-hook-awslambda
a346465277049b004c7f3c0feb759f152369eb21
[ "Apache-2.0" ]
68
2021-07-26T15:58:22.000Z
2022-01-10T13:09:25.000Z
awslambda/python_requirements/_python_project.py
ITProKyle/runway-hook-awslambda
a346465277049b004c7f3c0feb759f152369eb21
[ "Apache-2.0" ]
null
null
null
"""Python project.""" from __future__ import annotations import logging import shutil from typing import TYPE_CHECKING, ClassVar, Optional, Set, Tuple from runway.compat import cached_property from typing_extensions import Literal from ..base_classes import Project from ..constants import BASE_WORK_DIR from ..models.args import PythonHookArgs from ._python_docker import PythonDockerDependencyInstaller from .dependency_managers import ( Pip, Pipenv, PipenvNotFoundError, Poetry, PoetryNotFoundError, is_pip_project, is_pipenv_project, is_poetry_project, ) if TYPE_CHECKING: from pathlib import Path LOGGER = logging.getLogger(f"runway.{__name__}") class PythonProject(Project[PythonHookArgs]): """Python project.""" DEFAULT_CACHE_DIR_NAME: ClassVar[str] = "pip_cache" """Name of the default cache directory.""" @cached_property def docker(self) -> Optional[PythonDockerDependencyInstaller]: """Docker interface that can be used to build the project.""" return PythonDockerDependencyInstaller.from_project(self) @cached_property def metadata_files(self) -> Tuple[Path, ...]: """Project metadata files. Files are only included in return value if they exist. """ if self.project_type == "poetry": config_files = [ self.project_root / config_file for config_file in Poetry.CONFIG_FILES ] elif self.project_type == "pipenv": config_files = [ self.project_root / config_file for config_file in Pipenv.CONFIG_FILES ] else: config_files = [ self.project_root / config_file for config_file in Pip.CONFIG_FILES ] return tuple(path for path in config_files if path.exists()) @cached_property def runtime(self) -> str: """Runtime of the build system. Value should be a valid Lambda Function runtime (https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html). """ if self._runtime_from_docker: return self._validate_runtime(self._runtime_from_docker) return self._validate_runtime( f"python{self.pip.python_version.major}.{self.pip.python_version.minor}" ) @cached_property def pip(self) -> Pip: """Pip dependency manager.""" return Pip(self.ctx, self.project_root) @cached_property def pipenv(self) -> Optional[Pipenv]: """Pipenv dependency manager. Return: If the project uses pipenv and pipenv is not explicitly disabled, an object for interfacing with pipenv will be returned. Raises: PipenvNotFoundError: pipenv is not installed or not found in PATH. """ if self.project_type != "pipenv": return None if Pipenv.found_in_path(): return Pipenv(self.ctx, self.project_root) raise PipenvNotFoundError @cached_property def poetry(self) -> Optional[Poetry]: """Poetry dependency manager. Return: If the project uses poetry and poetry is not explicitly disabled, an object for interfacing with poetry will be returned. Raises: PoetryNotFound: poetry is not installed or not found in PATH. """ if self.project_type != "poetry": return None if Poetry.found_in_path(): return Poetry(self.ctx, self.project_root) raise PoetryNotFoundError @cached_property def project_type(self) -> Literal["pip", "pipenv", "poetry"]: """Type of python project.""" if is_poetry_project(self.project_root): if self.args.use_poetry: return "poetry" LOGGER.warning( "poetry project detected but use of poetry is explicitly disabled" ) if is_pipenv_project(self.project_root): if self.args.use_pipenv: return "pipenv" LOGGER.warning( "pipenv project detected but use of pipenv is explicitly disabled" ) return "pip" @cached_property def requirements_txt(self) -> Optional[Path]: """Dependency file for the project.""" if self.poetry: # prioritize poetry return self.poetry.export(output=self.tmp_requirements_txt) if self.pipenv: return self.pipenv.export(output=self.tmp_requirements_txt) requirements_txt = self.project_root / "requirements.txt" if is_pip_project(self.project_root, file_name=requirements_txt.name): return requirements_txt return None @cached_property def supported_metadata_files(self) -> Set[str]: """Names of all supported metadata files. Returns: Set of file names - not paths. """ file_names = {*Pip.CONFIG_FILES} if self.args.use_poetry: file_names.update(Poetry.CONFIG_FILES) if self.args.use_pipenv: file_names.update(Pipenv.CONFIG_FILES) return file_names @cached_property def tmp_requirements_txt(self) -> Path: """Temporary requirements.txt file. This path is only used when exporting from another format. """ return BASE_WORK_DIR / f"{self.source_code.md5_hash}.requirements.txt" def cleanup(self) -> None: """Cleanup temporary files after the build process has run.""" if (self.poetry or self.pipenv) and self.tmp_requirements_txt.exists(): self.tmp_requirements_txt.unlink() shutil.rmtree(self.dependency_directory, ignore_errors=True) if not any(self.build_directory.iterdir()): # remove build_directory if it's empty shutil.rmtree(self.build_directory, ignore_errors=True) def install_dependencies(self) -> None: """Install project dependencies.""" if self.requirements_txt: LOGGER.debug("installing dependencies to %s...", self.dependency_directory) if self.docker: self.docker.install() else: self.pip.install( cache_dir=self.args.cache_dir, extend_args=self.args.extend_pip_args, no_cache_dir=not self.args.use_cache, no_deps=bool(self.poetry or self.pipenv), requirements=self.requirements_txt, target=self.dependency_directory, ) LOGGER.debug( "dependencies successfully installed to %s", self.dependency_directory ) else: LOGGER.info("skipped installing dependencies; none found")
33.880597
87
0.63304
6,115
0.897944
0
0
4,511
0.662408
0
0
2,000
0.293686
8b382e46c0e90f425bd94344439c40971ea15436
1,435
py
Python
instrbuilder/examples/oscilloscope.py
nopeppermint/instrbuilder
8c8c7a94b28f95b4b8ef5374d11b5c17395be045
[ "MIT" ]
5
2019-01-22T15:41:41.000Z
2021-07-26T05:42:07.000Z
instrbuilder/examples/oscilloscope.py
nopeppermint/instrbuilder
8c8c7a94b28f95b4b8ef5374d11b5c17395be045
[ "MIT" ]
22
2018-06-06T16:09:12.000Z
2019-02-07T03:05:02.000Z
instrbuilder/examples/oscilloscope.py
nopeppermint/instrbuilder
8c8c7a94b28f95b4b8ef5374d11b5c17395be045
[ "MIT" ]
5
2019-03-08T22:34:06.000Z
2021-08-16T18:28:15.000Z
# Lucas J. Koerner # 05/2018 # koerner.lucas@stthomas.edu # University of St. Thomas from instrbuilder.instrument_opening import open_by_name import time KEYSIGHT = False RIGOL = True if KEYSIGHT: osc = open_by_name(name='msox_scope') # name within the configuration file (config.yaml) osc.set('time_range', 1e-3) osc.set('chan_scale', 0.8, configs={'chan': 1}) osc.set('chan_offset', -0.2, configs={'chan': 1}) osc.set('single_acq') time.sleep(0.1) # save a PNG screen-shot to host computer t = osc.save_display_data('test') if RIGOL: # rigol_ds is the name in my YAML file osc = open_by_name(name='rigol_ds') osc.set('time_range', 1e-3) osc.set('chan_scale', 0.8, configs={'chan': 1}) osc.set('chan_offset', -0.2, configs={'chan': 1}) osc.set('single_acq') time.sleep(0.1) # save a PNG screen-shot to host computer t = osc.save_display_data('test') osc.set('stop_acq') osc.set('run_acq') # connect a fg to CHAN1: 400 mVpk-pk, 1kHz, high-z output time.sleep(2) osc.set('trigger_mode', 'EDGE') osc.set('trigger_sweep', 'NORM') osc.set('trigger_source', 1) osc.set('trigger_level', 0.2) time.sleep(2) # specific measure vp = osc.get('meas_vpp', configs={'chan':1}) # general measure -- input measure type vavg = osc.get('meas', configs={'meas_type':'VAVG', 'chan':1}) print('Measured pk-pk voltage of = {}'.format(vp)) print('Measured avg voltage of = {}'.format(vavg))
23.52459
90
0.677352
0
0
0
0
0
0
0
0
719
0.501045
8b396b91eb6bc48d22e9f3f5fe3a7d100a012e72
1,668
py
Python
setup.py
pcaro/django-redator
53edd0f6d10a1577cd2a1eef2d6cbab30ea656e4
[ "BSD-3-Clause" ]
1
2017-05-31T07:23:07.000Z
2017-05-31T07:23:07.000Z
setup.py
pcaro/django-redator
53edd0f6d10a1577cd2a1eef2d6cbab30ea656e4
[ "BSD-3-Clause" ]
null
null
null
setup.py
pcaro/django-redator
53edd0f6d10a1577cd2a1eef2d6cbab30ea656e4
[ "BSD-3-Clause" ]
null
null
null
#/usr/bin/env python import codecs import os import sys from setuptools import setup, find_packages if 'publish' in sys.argv: os.system('python setup.py sdist upload') sys.exit() read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read() # Dynamically calculate the version based on redator.VERSION. version = __import__('redator').get_version() setup( name='django-redator', version=version, description=( 'Django Redator (sic) is a application for the Django Web Framework to ' 'help you integrate Redactor <http://imperavi.com/redactor/>, a ' 'beautiful and easy-to-use WYSIWYG HTML editor, into your projects.' ), long_description=read(os.path.join(os.path.dirname(__file__), 'README.rst')), keywords = 'django app wysiwyg editor redactor', author='Vladimir Sidorenko, Guilherme Gondim', author_email='semente+django-redator@taurinus.org', maintainer='Guilherme Gondim', maintainer_email='semente+django-redator@taurinus.org', license='BSD License', url='https://bitbucket.org/semente/django-redator/', download_url='https://bitbucket.org/semente/django-redator/downloads/', packages=find_packages(), zip_safe=False, include_package_data=True, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ], )
32.705882
81
0.681655
0
0
0
0
0
0
0
0
956
0.573141
8b3a84c2a16392cfb5f300789bb38d4d26b81c9c
1,185
py
Python
desktop/core/ext-py/docutils-0.14/test/test_parsers/test_parser.py
kokosing/hue
2307f5379a35aae9be871e836432e6f45138b3d9
[ "Apache-2.0" ]
5,079
2015-01-01T03:39:46.000Z
2022-03-31T07:38:22.000Z
desktop/core/ext-py/docutils-0.14/test/test_parsers/test_parser.py
zks888/hue
93a8c370713e70b216c428caa2f75185ef809deb
[ "Apache-2.0" ]
1,623
2015-01-01T08:06:24.000Z
2022-03-30T19:48:52.000Z
desktop/core/ext-py/docutils-0.14/test/test_parsers/test_parser.py
zks888/hue
93a8c370713e70b216c428caa2f75185ef809deb
[ "Apache-2.0" ]
2,033
2015-01-04T07:18:02.000Z
2022-03-28T19:55:47.000Z
#! /usr/bin/env python # $Id: test_parser.py 7463 2012-06-22 19:49:51Z milde $ # Author: Stefan Rank <strank(AT)strank(DOT)info> # Copyright: This module has been placed in the public domain. """ Tests for basic functionality of parser classes. """ import sys import unittest import DocutilsTestSupport # must be imported before docutils import docutils from docutils import parsers, utils, frontend from docutils._compat import b class RstParserTests(unittest.TestCase): def test_inputrestrictions(self): parser_class = parsers.get_parser_class('rst') parser = parser_class() document = utils.new_document('test data', frontend.OptionParser( components=(parser, )).get_default_values()) if sys.version_info < (3,): # supplying string input is supported, but only if ascii-decodable self.assertRaises(UnicodeDecodeError, parser.parse, b('hol%s' % chr(224)), document) else: # input must be unicode at all times self.assertRaises(TypeError, parser.parse, b('hol'), document) if __name__ == '__main__': unittest.main()
31.184211
78
0.664979
686
0.578903
0
0
0
0
0
0
418
0.352743
8b3b6823cfef19d1d56f714c0f6996299375bb5f
41,975
py
Python
aloha/aloha_object.py
TDHTTTT/MadGraph_Windows
8a0be5befed650b6adcb9825c1b57af907c0167a
[ "NCSA" ]
null
null
null
aloha/aloha_object.py
TDHTTTT/MadGraph_Windows
8a0be5befed650b6adcb9825c1b57af907c0167a
[ "NCSA" ]
null
null
null
aloha/aloha_object.py
TDHTTTT/MadGraph_Windows
8a0be5befed650b6adcb9825c1b57af907c0167a
[ "NCSA" ]
null
null
null
################################################################################ # # Copyright (c) 2010 The MadGraph5_aMC@NLO Development team and Contributors # # This file is a part of the MadGraph5_aMC@NLO project, an application which # automatically generates Feynman diagrams and matrix elements for arbitrary # high-energy processes in the Standard Model and beyond. # # It is subject to the MadGraph5_aMC@NLO license which should accompany this # distribution. # # For more information, visit madgraph.phys.ucl.ac.be and amcatnlo.web.cern.ch # ################################################################################ ## Diagram of Class ## ## Variable <--- aloha_lib.Variable ## | ## +- LorentzObject <--- Gamma ## | ## +- Sigma ## | ## +- P ## ## list <--- AddVariable ## | ## +- MultVariable <--- MultLorentz ## ## list <--- LorentzObjectRepresentation <-- ConstantObject ## ################################################################################ from __future__ import division import aloha.aloha_lib as aloha_lib import aloha import cmath #=============================================================================== # P (Momenta) #=============================================================================== class L_P(aloha_lib.LorentzObject): """ Helas Object for an Impulsion """ contract_first = 1 def __init__(self, name, lorentz1, particle): self.particle = particle aloha_lib.LorentzObject.__init__(self, name,[lorentz1], [],['P%s'%particle]) aloha_lib.KERNEL.add_tag((name,)) def create_representation(self): self.sub0 = aloha_lib.DVariable('P%s_0' % self.particle) self.sub1 = aloha_lib.DVariable('P%s_1' % self.particle) self.sub2 = aloha_lib.DVariable('P%s_2' % self.particle) self.sub3 = aloha_lib.DVariable('P%s_3' % self.particle) self.representation= aloha_lib.LorentzObjectRepresentation( {(0,): self.sub0, (1,): self.sub1, \ (2,): self.sub2, (3,): self.sub3}, self.lorentz_ind, []) class P(aloha_lib.FactoryLorentz): """ Helas Object for an Impulsion """ object_class = L_P #def __init__(self, lorentz1, particle): @classmethod def get_unique_name(self, lorentz1, particle): return '_P^%s_%s' % (particle, lorentz1) #=============================================================================== # Pslash #=============================================================================== class L_PSlash(aloha_lib.LorentzObject): """ Gamma Matrices """ #gamma0 = [[0, 0, 1, 0], [0, 0, 0, 1], [1, 0, 0, 0], [0, 1, 0, 0]] #gamma1 = [[0, 0, 0, 1], [0, 0, 1, 0], [0, -1, 0, 0], [-1, 0, 0, 0]] #gamma2 = [[0, 0, 0, -complex(0,1)],[0, 0, complex(0,1), 0], # [0, complex(0,1), 0, 0], [-complex(0,1), 0, 0, 0]] #gamma3 = [[0, 0, 1, 0], [0, 0, 0, -1], [-1, 0, 0, 0], [0, 1, 0, 0]] # #gamma = [gamma0, gamma1, gamma2, gamma3] def __init__(self, name, spin1, spin2, particle): self.particle = particle aloha_lib.LorentzObject.__init__(self,name,[], [spin1, spin2]) def create_representation(self): """create representation""" p0 = aloha_lib.DVariable('P%s_0' % self.particle) p1 = aloha_lib.DVariable('P%s_1' % self.particle) p2 = aloha_lib.DVariable('P%s_2' % self.particle) p3 = aloha_lib.DVariable('P%s_3' % self.particle) gamma = { (0, 0): 0, (0, 1): 0, (0, 2): p0-p3, (0, 3): -1*p1+1j*p2, (1, 0): 0, (1, 1): 0, (1, 2): -1*p1-1j*p2, (1, 3): p0+p3, (2, 0): p0+p3, (2, 1): p1-1j*p2, (2, 2): 0, (2, 3): 0, (3, 0): p1+1j*p2, (3, 1): p0-p3, (3, 2): 0, (3, 3): 0} self.representation = aloha_lib.LorentzObjectRepresentation(gamma, self.lorentz_ind,self.spin_ind) class PSlash(aloha_lib.FactoryLorentz): object_class = L_PSlash @classmethod def get_unique_name(self, spin1, spin2, particle): return '_P%s/_%s_%s' % (particle, spin1,spin2) #=============================================================================== # Mass #=============================================================================== class L_Mass(aloha_lib.LorentzObject): """ Helas Object for a Mass""" def __init__(self, name, particle): self.particle = particle aloha_lib.LorentzObject.__init__(self, name,[], []) def create_representation(self): mass = aloha_lib.DVariable('M%s' % self.particle) self.representation = aloha_lib.LorentzObjectRepresentation( mass, self.lorentz_ind, self.spin_ind) class Mass(aloha_lib.FactoryLorentz): object_class = L_Mass @classmethod def get_unique_name(self, particle): return '_M%s' % particle #=============================================================================== # Mass #=============================================================================== class L_Coup(aloha_lib.LorentzObject): """ Helas Object for a Mass""" def __init__(self, name, nb): self.nb = nb aloha_lib.LorentzObject.__init__(self, name,[], []) def create_representation(self): coup = aloha_lib.Variable('COUP%s' % self.nb) self.representation = aloha_lib.LorentzObjectRepresentation( coup, self.lorentz_ind, self.spin_ind) class Coup(aloha_lib.FactoryLorentz): object_class = L_Coup @classmethod def get_unique_name(self, nb): return 'coup%s' % nb #=============================================================================== # FCT #=============================================================================== class L_FCT(aloha_lib.LorentzObject): """ Helas Object for a Mass""" def __init__(self, name, id): self.fctid = id aloha_lib.LorentzObject.__init__(self, name,[], []) def create_representation(self): var = aloha_lib.Variable('FCT%s' % self.fctid) self.representation = aloha_lib.LorentzObjectRepresentation( var, self.lorentz_ind, self.spin_ind) class FCT(aloha_lib.FactoryLorentz): object_class = L_FCT @classmethod def get_unique_name(self, name): return '_FCT%s' % name #=============================================================================== # OverMass2 #=============================================================================== class L_OverMass2(aloha_lib.LorentzObject): """ Helas Object for 1/M**2 """ def __init__(self, name, particle): self.particle = particle aloha_lib.LorentzObject.__init__(self, name, [], [], tags=['OM%s' % particle]) def create_representation(self): mass = aloha_lib.DVariable('OM%s' % self.particle) self.representation = aloha_lib.LorentzObjectRepresentation( mass, self.lorentz_ind, self.spin_ind) class OverMass2(aloha_lib.FactoryLorentz): object_class = L_OverMass2 @classmethod def get_unique_name(self, particle): return '_OM2_%s' % particle #=============================================================================== # Width #=============================================================================== class L_Width(aloha_lib.LorentzObject): """ Helas Object for an Impulsion """ def __init__(self, name, particle): self.particle = particle aloha_lib.LorentzObject.__init__(self, name, [], []) def create_representation(self): width = aloha_lib.DVariable('W%s' % self.particle) self.representation= aloha_lib.LorentzObjectRepresentation( width, self.lorentz_ind, self.spin_ind) class Width(aloha_lib.FactoryLorentz): object_class = L_Width @classmethod def get_unique_name(self, particle): return '_W%s' % particle #=============================================================================== # Param #=============================================================================== class L_Param(aloha_lib.LorentzObject): """ Object for a Model Parameter """ def __init__(self, Lname, name): self.varname = name aloha_lib.LorentzObject.__init__(self, name, [], []) def create_representation(self): param = aloha_lib.Variable( self.varname, aloha_lib.ExtVariable) self.representation= aloha_lib.LorentzObjectRepresentation( param, [], []) class Param(aloha_lib.FactoryLorentz): object_class = L_Param @classmethod def get_unique_name(self, name): if name == 'Pi': KERNEL.has_pi = True return 'Param_%s' % name #=============================================================================== # Scalar #=============================================================================== class L_Scalar(aloha_lib.LorentzObject): """ Helas Object for a Spinor""" def __init__(self, name, particle): self.particle = particle aloha_lib.LorentzObject.__init__(self, name, [], []) def create_representation(self): rep = aloha_lib.Variable('S%s_1' % self.particle) self.representation= aloha_lib.LorentzObjectRepresentation( rep, [], []) class Scalar(aloha_lib.FactoryLorentz): object_class = L_Scalar @classmethod def get_unique_name(self,particle): return '_S%s' % particle #=============================================================================== # Spinor #=============================================================================== class L_Spinor(aloha_lib.LorentzObject): """ Helas Object for a Spinor""" contract_first = 1 def __init__(self, name, spin1, particle, prefactor=1): self.particle = particle aloha_lib.LorentzObject.__init__(self, name,[], [spin1]) def create_representation(self): self.sub0 = aloha_lib.Variable('F%s_1' % self.particle) self.sub1 = aloha_lib.Variable('F%s_2' % self.particle) self.sub2 = aloha_lib.Variable('F%s_3' % self.particle) self.sub3 = aloha_lib.Variable('F%s_4' % self.particle) self.representation= aloha_lib.LorentzObjectRepresentation( {(0,): self.sub0, (1,): self.sub1, \ (2,): self.sub2, (3,): self.sub3}, [],self.spin_ind) class Spinor(aloha_lib.FactoryLorentz): """ Helas Object for a Spinor""" object_class = L_Spinor @classmethod def get_unique_name(self,spin1, particle): return '_F%s_%s' % (particle,spin1) #=============================================================================== # Vector #=============================================================================== class L_Vector(aloha_lib.LorentzObject): """ Helas Object for a Vector""" contract_first = 1 def __init__(self, name, lorentz, particle): self.particle = particle aloha_lib.LorentzObject.__init__(self, name, [lorentz], []) def create_representation(self): self.sub0 = aloha_lib.Variable('V%s_1' % self.particle) self.sub1 = aloha_lib.Variable('V%s_2' % self.particle) self.sub2 = aloha_lib.Variable('V%s_3' % self.particle) self.sub3 = aloha_lib.Variable('V%s_4' % self.particle) self.representation= aloha_lib.LorentzObjectRepresentation( {(0,): self.sub0, (1,): self.sub1, \ (2,): self.sub2, (3,): self.sub3}, self.lorentz_ind, []) class Vector(aloha_lib.FactoryLorentz): object_class = L_Vector @classmethod def get_unique_name(self, lor, particle): return '_V%s_%s' % (particle, lor) #=============================================================================== # Spin3/2 #=============================================================================== class L_Spin3Half(aloha_lib.LorentzObject): """ Helas Object for a Spin2""" def __init__(self, name, lorentz, spin, particle): self.particle = particle aloha_lib.LorentzObject.__init__(self, name, [lorentz], [spin]) def create_representation(self): self.sub00 = aloha_lib.Variable('R%s_1' % self.particle) self.sub01 = aloha_lib.Variable('R%s_2' % self.particle) self.sub02 = aloha_lib.Variable('R%s_3' % self.particle) self.sub03 = aloha_lib.Variable('R%s_4' % self.particle) self.sub10 = aloha_lib.Variable('R%s_5' % self.particle) self.sub11 = aloha_lib.Variable('R%s_6' % self.particle) self.sub12 = aloha_lib.Variable('R%s_7' % self.particle) self.sub13 = aloha_lib.Variable('R%s_8' % self.particle) self.sub20 = aloha_lib.Variable('R%s_9' % self.particle) self.sub21 = aloha_lib.Variable('R%s_10' % self.particle) self.sub22 = aloha_lib.Variable('R%s_11' % self.particle) self.sub23 = aloha_lib.Variable('R%s_12' % self.particle) self.sub30 = aloha_lib.Variable('R%s_13' % self.particle) self.sub31 = aloha_lib.Variable('R%s_14' % self.particle) self.sub32 = aloha_lib.Variable('R%s_15' % self.particle) self.sub33 = aloha_lib.Variable('R%s_16' % self.particle) rep = {(0,0): self.sub00, (0,1): self.sub01, (0,2): self.sub02, (0,3): self.sub03, (1,0): self.sub10, (1,1): self.sub11, (1,2): self.sub12, (1,3): self.sub13, (2,0): self.sub20, (2,1): self.sub21, (2,2): self.sub22, (2,3): self.sub23, (3,0): self.sub30, (3,1): self.sub31, (3,2): self.sub32, (3,3): self.sub33} self.representation= aloha_lib.LorentzObjectRepresentation( rep, \ self.lorentz_ind, self.spin_ind) class Spin3Half(aloha_lib.FactoryLorentz): object_class = L_Spin3Half @classmethod def get_unique_name(self, lor, spin, part): return 'Spin3Half%s^%s_%s' % (part, lor, spin) #=============================================================================== # Spin2 #=============================================================================== class L_Spin2(aloha_lib.LorentzObject): """ Helas Object for a Spin2""" def __init__(self, name, lorentz1, lorentz2, particle): self.particle = particle aloha_lib.LorentzObject.__init__(self, name, [lorentz1, lorentz2], []) def create_representation(self): self.sub00 = aloha_lib.Variable('T%s_1' % self.particle) self.sub01 = aloha_lib.Variable('T%s_2' % self.particle) self.sub02 = aloha_lib.Variable('T%s_3' % self.particle) self.sub03 = aloha_lib.Variable('T%s_4' % self.particle) self.sub10 = aloha_lib.Variable('T%s_5' % self.particle) self.sub11 = aloha_lib.Variable('T%s_6' % self.particle) self.sub12 = aloha_lib.Variable('T%s_7' % self.particle) self.sub13 = aloha_lib.Variable('T%s_8' % self.particle) self.sub20 = aloha_lib.Variable('T%s_9' % self.particle) self.sub21 = aloha_lib.Variable('T%s_10' % self.particle) self.sub22 = aloha_lib.Variable('T%s_11' % self.particle) self.sub23 = aloha_lib.Variable('T%s_12' % self.particle) self.sub30 = aloha_lib.Variable('T%s_13' % self.particle) self.sub31 = aloha_lib.Variable('T%s_14' % self.particle) self.sub32 = aloha_lib.Variable('T%s_15' % self.particle) self.sub33 = aloha_lib.Variable('T%s_16' % self.particle) rep = {(0,0): self.sub00, (0,1): self.sub01, (0,2): self.sub02, (0,3): self.sub03, (1,0): self.sub10, (1,1): self.sub11, (1,2): self.sub12, (1,3): self.sub13, (2,0): self.sub20, (2,1): self.sub21, (2,2): self.sub22, (2,3): self.sub23, (3,0): self.sub30, (3,1): self.sub31, (3,2): self.sub32, (3,3): self.sub33} self.representation= aloha_lib.LorentzObjectRepresentation( rep, \ self.lorentz_ind, []) class Spin2(aloha_lib.FactoryLorentz): object_class = L_Spin2 @classmethod def get_unique_name(self, lor1, lor2, part): return 'Spin2^%s_%s_%s' % (part, lor1, lor2) #=============================================================================== # Gamma #=============================================================================== class L_Gamma(aloha_lib.LorentzObject): """ Gamma Matrices """ #gamma0 = [[0, 0, 1, 0], [0, 0, 0, 1], [1, 0, 0, 0], [0, 1, 0, 0]] #gamma1 = [[0, 0, 0, 1], [0, 0, 1, 0], [0, -1, 0, 0], [-1, 0, 0, 0]] #gamma2 = [[0, 0, 0, -complex(0,1)],[0, 0, complex(0,1), 0], # [0, complex(0,1), 0, 0], [-complex(0,1), 0, 0, 0]] #gamma3 = [[0, 0, 1, 0], [0, 0, 0, -1], [-1, 0, 0, 0], [0, 1, 0, 0]] # #gamma = [gamma0, gamma1, gamma2, gamma3] gamma = { #Gamma0 (0, 0, 0): 0, (0, 0, 1): 0, (0, 0, 2): 1, (0, 0, 3): 0, (0, 1, 0): 0, (0, 1, 1): 0, (0, 1, 2): 0, (0, 1, 3): 1, (0, 2, 0): 1, (0, 2, 1): 0, (0, 2, 2): 0, (0, 2, 3): 0, (0, 3, 0): 0, (0, 3, 1): 1, (0, 3, 2): 0, (0, 3, 3): 0, #Gamma1 (1, 0, 0): 0, (1, 0, 1): 0, (1, 0, 2): 0, (1, 0, 3): 1, (1, 1, 0): 0, (1, 1, 1): 0, (1, 1, 2): 1, (1, 1, 3): 0, (1, 2, 0): 0, (1, 2, 1): -1, (1, 2, 2): 0, (1, 2, 3): 0, (1, 3, 0): -1, (1, 3, 1): 0, (1, 3, 2): 0, (1, 3, 3): 0, #Gamma2 (2, 0, 0): 0, (2, 0, 1): 0, (2, 0, 2): 0, (2, 0, 3): -1j, (2, 1, 0): 0, (2, 1, 1): 0, (2, 1, 2): 1j, (2, 1, 3): 0, (2, 2, 0): 0, (2, 2, 1): 1j, (2, 2, 2): 0, (2, 2, 3): 0, (2, 3, 0): -1j, (2, 3, 1): 0, (2, 3, 2): 0, (2, 3, 3): 0, #Gamma3 (3, 0, 0): 0, (3, 0, 1): 0, (3, 0, 2): 1, (3, 0, 3): 0, (3, 1, 0): 0, (3, 1, 1): 0, (3, 1, 2): 0, (3, 1, 3): -1, (3, 2, 0): -1, (3, 2, 1): 0, (3, 2, 2): 0, (3, 2, 3): 0, (3, 3, 0): 0, (3, 3, 1): 1, (3, 3, 2): 0, (3, 3, 3): 0 } def __init__(self, name, lorentz, spin1, spin2): aloha_lib.LorentzObject.__init__(self,name,[lorentz], [spin1, spin2]) def create_representation(self): self.representation = aloha_lib.LorentzObjectRepresentation(self.gamma, self.lorentz_ind,self.spin_ind) class Gamma(aloha_lib.FactoryLorentz): object_class = L_Gamma @classmethod def get_unique_name(self, lor, spin1, spin2): return 'Gamma^%s_%s_%s' % (lor, spin1, spin2) #=============================================================================== # Sigma #=============================================================================== class L_Sigma(aloha_lib.LorentzObject): """ Sigma Matrices """ #zero = [[0,0,0,0]]*4 #i = complex(0,1) #sigma01 = [[ 0, -i, 0, 0], [-i, 0, 0, 0], [0, 0, 0, i], [0, 0, i, 0]] #sigma02 = [[ 0, -1, 0, 0], [1, 0, 0, 0], [0, 0, 0, 1], [0, 0, -1, 0]] #sigma03 = [[-i, 0, 0, 0], [0, i, 0, 0], [0, 0, i, 0], [0, 0, 0, -i]] #sigma12 = [[1, 0, 0, 0], [0, -1, 0, 0], [0, 0, 1, 0], [0, 0, 0, -1]] #sigma13 = [[0, i, 0, 0], [-i, 0, 0, 0], [0, 0, 0, i], [0, 0, -i, 0]] #sigma23 = [[0, 1, 0, 0], [1, 0, 0, 0], [0, 0, 0, 1], [0, 0, 1, 0]] #def inv(matrice): # out=[] # for i in range(4): # out2=[] # out.append(out2) # for j in range(4): # out2.append(-1*matrice[i][j]) # return out # #sigma =[[zero, sigma01, sigma02, sigma03], \ # [inv(sigma01), zero, sigma12, sigma13],\ # [inv(sigma02), inv(sigma12), zero, sigma23],\ # [inv(sigma03), inv(sigma13), inv(sigma23), zero]] sigma={(0, 2, 0, 1): -0.5, (3, 1, 2, 0): 0, (3, 2, 3, 1): 0, (1, 3, 1, 3): 0, (2, 3, 3, 2): 0.5, (2, 1, 3, 1): 0, (0, 2, 2, 1): 0, (3, 1, 0, 0): 0, (2, 3, 3, 1): 0, (3, 3, 1, 2): 0, (3, 1, 0, 3): 0, (1, 1, 0, 3): 0, (0, 1, 2, 2): 0, (3, 2, 3, 2): -0.5, (2, 1, 0, 1): 0, (3, 3, 3, 3): 0, (1, 1, 2, 2): 0, (2, 2, 3, 2): 0, (2, 1, 2, 1): 0, (0, 1, 0, 3): 0, (2, 1, 2, 2): -0.5, (1, 2, 2, 1): 0, (2, 2, 1, 3): 0, (0, 3, 1, 3): 0, (3, 0, 3, 2): 0, (1, 2, 0, 1): 0, (3, 0, 3, 1): 0, (0, 0, 2, 2): 0, (1, 2, 0, 2): 0, (2, 0, 0, 3): 0, (0, 0, 2, 1): 0, (0, 3, 3, 2): 0, (3, 0, 1, 1): -0.5j, (3, 2, 0, 1): -0.5, (1, 0, 1, 0): 0.5j, (0, 0, 0, 1): 0, (0, 2, 1, 1): 0, (3, 1, 3, 2): 0.5j, (3, 2, 2, 1): 0, (1, 3, 2, 3): 0.5j, (1, 0, 3, 0): 0, (3, 2, 2, 2): 0, (0, 2, 3, 1): 0, (1, 0, 3, 3): 0, (2, 3, 2, 1): 0, (0, 2, 3, 2): -0.5, (3, 1, 1, 3): 0, (1, 1, 1, 3): 0, (1, 3, 0, 2): 0, (2, 3, 0, 1): 0.5, (1, 1, 1, 0): 0, (2, 3, 0, 2): 0, (3, 3, 0, 3): 0, (1, 1, 3, 0): 0, (0, 1, 3, 3): 0, (2, 2, 0, 1): 0, (2, 1, 1, 0): 0, (3, 3, 2, 2): 0, (2, 3, 1, 0): 0.5, (2, 2, 2, 3): 0, (0, 3, 0, 3): 0, (0, 1, 1, 2): 0, (0, 3, 0, 0): -0.5j, (2, 3, 1, 1): 0, (1, 2, 3, 0): 0, (2, 0, 1, 3): 0, (0, 0, 3, 1): 0, (0, 3, 2, 0): 0, (2, 3, 1, 2): 0, (2, 0, 1, 0): -0.5, (1, 2, 1, 0): 0, (3, 0, 0, 2): 0, (1, 0, 0, 2): 0, (0, 0, 1, 1): 0, (1, 2, 1, 3): 0, (2, 3, 1, 3): 0, (2, 0, 3, 0): 0, (0, 0, 1, 2): 0, (1, 3, 3, 3): 0, (3, 2, 1, 0): -0.5, (1, 3, 3, 0): 0, (1, 0, 2, 3): -0.5j, (0, 2, 0, 0): 0, (3, 1, 2, 3): -0.5j, (3, 2, 3, 0): 0, (1, 3, 1, 0): -0.5j, (3, 2, 3, 3): 0, (0, 2, 2, 0): 0, (2, 3, 3, 0): 0, (3, 3, 1, 3): 0, (0, 2, 2, 3): 0.5, (3, 1, 0, 2): 0, (1, 1, 0, 2): 0, (3, 3, 1, 0): 0, (0, 1, 2, 3): 0.5j, (1, 1, 0, 1): 0, (2, 1, 0, 2): 0, (0, 1, 2, 0): 0, (3, 3, 3, 0): 0, (1, 1, 2, 1): 0, (2, 2, 3, 3): 0, (0, 1, 0, 0): 0, (2, 2, 3, 0): 0, (2, 1, 2, 3): 0, (1, 2, 2, 2): 0.5, (2, 2, 1, 0): 0, (0, 3, 1, 2): 0, (0, 3, 1, 1): 0.5j, (3, 0, 3, 0): 0, (1, 2, 0, 3): 0, (2, 0, 0, 2): 0, (0, 0, 2, 0): 0, (0, 3, 3, 1): 0, (3, 0, 1, 0): 0, (2, 0, 0, 1): 0.5, (3, 2, 0, 2): 0, (3, 0, 1, 3): 0, (1, 0, 1, 3): 0, (0, 0, 0, 0): 0, (0, 2, 1, 2): 0, (3, 1, 3, 3): 0, (0, 0, 0, 3): 0, (1, 3, 2, 2): 0, (3, 1, 3, 0): 0, (3, 2, 2, 3): -0.5, (1, 3, 2, 1): 0, (1, 0, 3, 2): -0.5j, (2, 3, 2, 2): 0, (0, 2, 3, 3): 0, (3, 1, 1, 0): 0.5j, (1, 3, 0, 1): 0.5j, (1, 1, 1, 1): 0, (2, 1, 3, 2): 0, (2, 3, 0, 3): 0, (3, 3, 0, 2): 0, (1, 1, 3, 1): 0, (3, 3, 0, 1): 0, (2, 1, 3, 3): 0.5, (0, 1, 3, 2): 0.5j, (1, 1, 3, 2): 0, (2, 1, 1, 3): 0, (3, 0, 2, 1): 0, (0, 1, 3, 1): 0, (3, 3, 2, 1): 0, (2, 2, 2, 2): 0, (0, 1, 1, 1): 0, (2, 2, 2, 1): 0, (0, 3, 0, 1): 0, (3, 0, 2, 2): -0.5j, (1, 2, 3, 3): -0.5, (0, 0, 3, 2): 0, (0, 3, 2, 1): 0, (2, 0, 1, 1): 0, (2, 2, 0, 0): 0, (0, 3, 2, 2): 0.5j, (3, 0, 0, 3): 0, (1, 0, 0, 3): 0, (1, 2, 1, 2): 0, (2, 0, 3, 1): 0, (1, 0, 0, 0): 0, (0, 0, 1, 3): 0, (2, 0, 3, 2): 0.5, (3, 2, 1, 3): 0, (1, 3, 3, 1): 0, (1, 0, 2, 0): 0, (2, 2, 0, 2): 0, (0, 2, 0, 3): 0, (3, 1, 2, 2): 0, (1, 3, 1, 1): 0, (3, 1, 2, 1): 0, (2, 2, 0, 3): 0, (3, 0, 0, 1): 0, (1, 3, 1, 2): 0, (2, 3, 3, 3): 0, (0, 2, 2, 2): 0, (3, 1, 0, 1): -0.5j, (3, 3, 1, 1): 0, (1, 1, 0, 0): 0, (2, 1, 0, 3): 0, (0, 1, 2, 1): 0, (3, 3, 3, 1): 0, (2, 1, 0, 0): -0.5, (1, 1, 2, 0): 0, (3, 3, 3, 2): 0, (0, 1, 0, 1): -0.5j, (1, 1, 2, 3): 0, (2, 2, 3, 1): 0, (2, 1, 2, 0): 0, (0, 1, 0, 2): 0, (1, 2, 2, 3): 0, (2, 0, 2, 1): 0, (2, 2, 1, 1): 0, (1, 2, 2, 0): 0, (2, 2, 1, 2): 0, (0, 3, 1, 0): 0, (3, 0, 3, 3): 0.5j, (2, 1, 3, 0): 0, (1, 2, 0, 0): 0.5, (0, 0, 2, 3): 0, (0, 3, 3, 0): 0, (2, 0, 0, 0): 0, (3, 2, 0, 3): 0, (0, 3, 3, 3): -0.5j, (3, 0, 1, 2): 0, (1, 0, 1, 2): 0, (3, 2, 0, 0): 0, (0, 2, 1, 3): 0, (1, 0, 1, 1): 0, (0, 0, 0, 2): 0, (0, 2, 1, 0): 0.5, (3, 1, 3, 1): 0, (3, 2, 2, 0): 0, (1, 3, 2, 0): 0, (1, 0, 3, 1): 0, (2, 3, 2, 3): 0.5, (0, 2, 3, 0): 0, (3, 1, 1, 1): 0, (2, 3, 2, 0): 0, (1, 3, 0, 0): 0, (3, 1, 1, 2): 0, (1, 1, 1, 2): 0, (1, 3, 0, 3): 0, (2, 3, 0, 0): 0, (2, 0, 2, 0): 0, (3, 3, 0, 0): 0, (1, 1, 3, 3): 0, (2, 1, 1, 2): 0, (0, 1, 3, 0): 0, (3, 3, 2, 0): 0, (2, 1, 1, 1): 0.5, (2, 0, 2, 2): 0, (3, 3, 2, 3): 0, (0, 1, 1, 0): -0.5j, (2, 2, 2, 0): 0, (0, 3, 0, 2): 0, (3, 0, 2, 3): 0, (0, 1, 1, 3): 0, (2, 0, 2, 3): -0.5, (1, 2, 3, 2): 0, (3, 0, 2, 0): 0, (0, 0, 3, 3): 0, (1, 2, 3, 1): 0, (2, 0, 1, 2): 0, (0, 0, 3, 0): 0, (0, 3, 2, 3): 0, (3, 0, 0, 0): 0.5j, (1, 2, 1, 1): -0.5, (1, 0, 0, 1): 0.5j, (0, 0, 1, 0): 0, (2, 0, 3, 3): 0, (3, 2, 1, 2): 0, (1, 3, 3, 2): -0.5j, (1, 0, 2, 1): 0, (3, 2, 1, 1): 0, (0, 2, 0, 2): 0, (1, 0, 2, 2): 0} def __init__(self, name, lorentz1, lorentz2, spin1, spin2): aloha_lib.LorentzObject.__init__(self, name, [lorentz1, lorentz2], \ [spin1, spin2]) def create_representation(self): self.representation = aloha_lib.LorentzObjectRepresentation(self.sigma, self.lorentz_ind,self.spin_ind) class Sigma(aloha_lib.FactoryLorentz): object_class = L_Sigma @classmethod def get_unique_name(self, lorentz1, lorentz2, spin1, spin2): return 'Sigma_[%s,%s]^[%s,%s]' % (spin1, spin2, lorentz1, lorentz2) #=============================================================================== # Gamma5 #=============================================================================== class L_Gamma5(aloha_lib.LorentzObject): #gamma5 = [[-1, 0, 0, 0, 0], [0, -1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]] gamma5 = {(0,0): -1, (0,1): 0, (0,2): 0, (0,3): 0,\ (1,0): 0, (1,1): -1, (1,2): 0, (1,3): 0,\ (2,0): 0, (2,1): 0, (2,2): 1, (2,3): 0,\ (3,0): 0, (3,1): 0, (3,2): 0, (3,3): 1} def __init__(self, name, spin1, spin2): aloha_lib.LorentzObject.__init__(self, name, [], [spin1, spin2]) def create_representation(self): self.representation = aloha_lib.LorentzObjectRepresentation(self.gamma5, self.lorentz_ind,self.spin_ind) class Gamma5(aloha_lib.FactoryLorentz): object_class = L_Gamma5 @classmethod def get_unique_name(self, spin1, spin2): return 'Gamma5_%s_%s' % (spin1, spin2) #=============================================================================== # Conjugate Matrices #=============================================================================== class L_C(aloha_lib.LorentzObject): #[0, -1, 0, 0] [1,0,0,0] [0,0,0,1],[0,0,-1,0] Cmetrix = {(0,0): 0, (0,1): -1, (0,2): 0, (0,3): 0,\ (1,0): 1, (1,1): 0, (1,2): 0, (1,3): 0,\ (2,0): 0, (2,1): 0, (2,2): 0, (2,3): 1,\ (3,0): 0, (3,1): 0, (3,2): -1, (3,3): 0} def __init__(self, name, spin_list): # spin_list is automatically ordered. The sign for the symmetrization # is set in the Factory routine aloha_lib.LorentzObject.__init__(self, name, [], spin_list) def create_representation(self): self.representation = aloha_lib.LorentzObjectRepresentation(self.Cmetrix, self.lorentz_ind,self.spin_ind) class C(aloha_lib.FactoryLorentz): object_class = L_C def __new__(cls, spin1, spin2): spin_list = [spin1, spin2] spin_list.sort() sign = give_sign_perm(spin_list, [spin1, spin2]) name = cls.get_unique_name(spin_list) if sign == 1: return aloha_lib.FactoryVar.__new__(cls, name, cls.object_class, spin_list) else: out = aloha_lib.FactoryVar.__new__(cls, name, cls.object_class, spin_list) out.prefactor = -1 return out @classmethod def get_unique_name(cls, spin_list): return "C_%s_%s" % tuple(spin_list) #=============================================================================== # EPSILON #=============================================================================== #Helpfull function def give_sign_perm(perm0, perm1): """Check if 2 permutations are of equal parity. Assume that both permutation lists are of equal length and have the same elements. No need to check for these conditions. """ assert len(perm0) == len(perm1) perm1 = list(perm1) ## copy this into a list so we don't mutate the original perm1_map = dict((v, i) for i,v in enumerate(perm1)) transCount = 0 for loc, p0 in enumerate(perm0): p1 = perm1[loc] if p0 != p1: sloc = perm1_map[p0] # Find position in perm1 perm1[loc], perm1[sloc] = p0, p1 # Swap in perm1 perm1_map[p0], perm1_map[p1] = loc, sloc # Swap the map transCount += 1 # Even number of transposition means equal parity return -2 * (transCount % 2) + 1 # Practical definition of Epsilon class L_Epsilon(aloha_lib.LorentzObject): """ The fully anti-symmetric object in Lorentz-Space """ def give_parity(self, perm): """return the parity of the permutation""" assert set(perm) == set([0,1,2,3]) i1 , i2, i3, i4 = perm #formula found on wikipedia return -self.sign * ((i2-i1) * (i3-i1) *(i4-i1) * (i3-i2) * (i4-i2) *(i4-i3))/12 # DEFINE THE REPRESENTATION OF EPSILON def __init__(self, name, lorentz1, lorentz2, lorentz3, lorentz4): lorentz_list = [lorentz1 , lorentz2, lorentz3, lorentz4] #order_lor = list(lorentz_list) #order_lor.sort() #self.sign = give_sign_perm(order_lor, lorentz_list) self.sign=1 aloha_lib.LorentzObject.__init__(self, name, lorentz_list, []) def create_representation(self): if not hasattr(self, 'epsilon'): # init all element to zero epsilon = dict( ((l1, l2, l3, l4), 0) for l1 in range(4) \ for l2 in range(4) \ for l3 in range(4) \ for l4 in range(4)) # update non trivial one epsilon.update(dict( ((l1, l2, l3, l4), self.give_parity((l1,l2,l3,l4))) for l1 in range(4) \ for l2 in range(4) if l2 != l1\ for l3 in range(4) if l3 not in [l1,l2]\ for l4 in range(4) if l4 not in [l1,l2,l3])) L_Epsilon.epsilon = epsilon self.representation = aloha_lib.LorentzObjectRepresentation(self.epsilon, self.lorentz_ind,self.spin_ind) class Epsilon(aloha_lib.FactoryLorentz): object_class = L_Epsilon @classmethod def get_unique_name(cls,l1,l2,l3,l4): return '_EPSILON_%s_%s_%s_%s' % (l1,l2,l3,l4) #=============================================================================== # Metric #=============================================================================== class L_Metric(aloha_lib.LorentzObject): metric = {(0,0): 1, (0,1): 0, (0,2): 0, (0,3): 0,\ (1,0): 0, (1,1): -1, (1,2): 0, (1,3): 0,\ (2,0): 0, (2,1): 0, (2,2): -1, (2,3): 0,\ (3,0): 0, (3,1): 0, (3,2): 0, (3,3): -1} #[[1, 0, 0,0], [0, -1, 0, 0], [0, 0, -1, 0], [0, 0, 0, -1]] def __init__(self, name, lorentz1, lorentz2): aloha_lib.LorentzObject.__init__(self,name,[lorentz1, lorentz2], []) def create_representation(self): self.representation = aloha_lib.LorentzObjectRepresentation(self.metric, self.lorentz_ind,self.spin_ind) class Metric(aloha_lib.FactoryLorentz): object_class = L_Metric @classmethod def get_unique_name(cls,l1,l2): if l1<l2: return '_ETA_%s_%s' % (l1,l2) else: return '_ETA_%s_%s' % (l2,l1) #=============================================================================== # Identity #=============================================================================== class L_Identity(aloha_lib.LorentzObject): #identity = [[1, 0, 0,0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]] identity = {(0,0): 1, (0,1): 0, (0,2): 0, (0,3): 0,\ (1,0): 0, (1,1): 1, (1,2): 0, (1,3): 0,\ (2,0): 0, (2,1): 0, (2,2): 1, (2,3): 0,\ (3,0): 0, (3,1): 0, (3,2): 0, (3,3): 1} def __init__(self, name, spin1, spin2): aloha_lib.LorentzObject.__init__(self, name, [],[spin1, spin2]) def create_representation(self): self.representation = aloha_lib.LorentzObjectRepresentation(self.identity, self.lorentz_ind,self.spin_ind) class Identity(aloha_lib.FactoryLorentz): object_class = L_Identity @classmethod def get_unique_name(self, spin1, spin2): return 'Id_%s_%s' % (spin1, spin2) #=============================================================================== # IdentityL #=============================================================================== class L_IdentityL(aloha_lib.LorentzObject): #identity = [[1, 0, 0,0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]] identity = {(0,0): 1, (0,1): 0, (0,2): 0, (0,3): 0,\ (1,0): 0, (1,1): 1, (1,2): 0, (1,3): 0,\ (2,0): 0, (2,1): 0, (2,2): 1, (2,3): 0,\ (3,0): 0, (3,1): 0, (3,2): 0, (3,3): 1} def __init__(self, name, l1, l2): aloha_lib.LorentzObject.__init__(self, name, [l1,l2], []) def create_representation(self): self.representation = aloha_lib.LorentzObjectRepresentation(self.identity, self.lorentz_ind,self.spin_ind) class IdentityL(aloha_lib.FactoryLorentz): object_class = L_IdentityL @classmethod def get_unique_name(self, l1, l2): return 'IdL_%s_%s' % (l1, l2) #=============================================================================== # ProjM #=============================================================================== class L_ProjM(aloha_lib.LorentzObject): """ A object for (1-gamma5)/2 """ #projm = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]] projm= {(0,0): 1, (0,1): 0, (0,2): 0, (0,3): 0,\ (1,0): 0, (1,1): 1, (1,2): 0, (1,3): 0,\ (2,0): 0, (2,1): 0, (2,2): 0, (2,3): 0,\ (3,0): 0, (3,1): 0, (3,2): 0, (3,3): 0} def __init__(self,name, spin1, spin2): """Initialize the object""" aloha_lib.LorentzObject.__init__(self, name, [], [spin1, spin2]) def create_representation(self): self.representation = aloha_lib.LorentzObjectRepresentation(self.projm, self.lorentz_ind,self.spin_ind) class ProjM(aloha_lib.FactoryLorentz): object_class = L_ProjM @classmethod def get_unique_name(self, spin1, spin2): return 'PROJM_%s_%s' % (spin1, spin2) #=============================================================================== # ProjP #=============================================================================== class L_ProjP(aloha_lib.LorentzObject): """A object for (1+gamma5)/2 """ #projp = [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]] projp = {(0,0): 0, (0,1): 0, (0,2): 0, (0,3): 0,\ (1,0): 0, (1,1): 0, (1,2): 0, (1,3): 0,\ (2,0): 0, (2,1): 0, (2,2): 1, (2,3): 0,\ (3,0): 0, (3,1): 0, (3,2): 0, (3,3): 1} def __init__(self,name, spin1, spin2): """Initialize the object""" aloha_lib.LorentzObject.__init__(self, name, [], [spin1, spin2]) def create_representation(self): self.representation = aloha_lib.LorentzObjectRepresentation(self.projp, self.lorentz_ind, self.spin_ind) class ProjP(aloha_lib.FactoryLorentz): object_class = L_ProjP @classmethod def get_unique_name(self, spin1, spin2): return 'PROJP_%s_%s' % (spin1, spin2) #=============================================================================== # Denominator Propagator #=============================================================================== class DenominatorPropagator(aloha_lib.LorentzObject): """The Denominator of the Propagator""" def __new__(cls, particle): name = 'DenomP%s' % particle return aloha_lib.Variable.__new__(cls, name) def __init__(self, particle): if self: return self.particle = particle aloha_lib.LorentzObject.__init__(self, [], []) def get_unique_name(self,*args): return 'DenomP%s' % self.particle def simplify(self): """Return the Denominator in a abstract way""" mass = Mass(self.particle) width = Width(self.particle) denominator = P('i1', self.particle) * P('i1', self.particle) - \ mass * mass + complex(0,1) * mass* width return denominator def create_representation(self): """Create the representation for the Vector propagator""" object = self.simplify() self.representation = object.expand() #=============================================================================== # Numerator Propagator #=============================================================================== SpinorPropagatorout = lambda spin1, spin2, particle: -1 * (Gamma('mu', spin1, spin2) * \ P('mu', particle) - Mass(particle) * Identity(spin1, spin2)) SpinorPropagatorin = lambda spin1, spin2, particle: (Gamma('mu', spin1, spin2) * \ P('mu', particle) + Mass(particle) * Identity(spin1, spin2)) VectorPropagator = lambda l1, l2, part: complex(0,1)*(-1 * Metric(l1, l2) + OverMass2(part) * \ Metric(l1,'I3')* P('I3', part) * P(l2, part)) VectorPropagatorMassless= lambda l1, l2, part: complex(0,-1) * Metric(l1, l2) Spin3halfPropagatorin = lambda mu, nu, s1, s2, part: (\ -1/3 * (Gamma(mu,s1,-2) + Identity(s1, -2) * P(mu, part) * Mass(part) * OverMass2(part))* \ (PSlash(-2,-3, part) - Identity(-2,-3) * Mass(part)) * \ ( Gamma(nu, -3, s2)+ Mass(part) * OverMass2(part) * Identity(-3, s2) * P(nu, part) ) - \ (PSlash(s1,s2, part) + Mass(part) * Identity(s1,s2)) * (Metric(mu, nu) - OverMass2(part) * P(mu, part) * P(nu,part))) Spin3halfPropagatorout = lambda mu, nu, s1, s2, part: ( \ -1/3 * (Gamma(mu,s1,-2) - Identity(s1, -2) * P(mu, part) * Mass(part) * OverMass2(part))* \ (-1*PSlash(-2,-3, part) - Identity(-2,-3) * Mass(part)) * \ ( Gamma(nu, -3, s2)- Mass(part) * OverMass2(part) * Identity(-3, s2) * P(nu, part) ) - \ (-1*PSlash(s1,s2, part) + Mass(part) * Identity(s1,s2)) * (Metric(mu, nu) - OverMass2(part) * P(mu, part) * P(nu,part))) Spin3halfPropagatorMasslessOut = lambda mu, nu, s1, s2, part: Gamma(nu, s1,-1) * PSlash(-1,-2, part) * Gamma(mu,-2, s2) Spin3halfPropagatorMasslessIn = lambda mu, nu, s1, s2, part: -1 * Gamma(mu, s1,-1) * PSlash(-1,-2, part) * Gamma(nu,-2, s2) Spin2masslessPropagator = lambda mu, nu, alpha, beta: 1/2 *( Metric(mu, alpha)* Metric(nu, beta) +\ Metric(mu, beta) * Metric(nu, alpha) - Metric(mu, nu) * Metric(alpha, beta)) Spin2Propagator = lambda mu, nu, alpha, beta, part: Spin2masslessPropagator(mu, nu, alpha, beta) + \ - 1/2 * OverMass2(part) * (Metric(mu,alpha)* P(nu, part) * P(beta, part) + \ Metric(nu, beta) * P(mu, part) * P(alpha, part) + \ Metric(mu, beta) * P(nu, part) * P(alpha, part) + \ Metric(nu, alpha) * P(mu, part) * P(beta , part) )+ \ 1/6 * (Metric(mu,nu) + 2 * OverMass2(part) * P(mu, part) * P(nu, part)) * \ (Metric(alpha,beta) + 2 * OverMass2(part) * P(alpha, part) * P(beta, part))
40.555556
123
0.445289
32,628
0.77732
0
0
2,473
0.058916
0
0
9,939
0.236784
8b3b69c06ca69440a093771d31274d985a796b16
27,516
py
Python
sp_experiment/define_instructions.py
sappelhoff/sp_psychopy
79cae80eb920b35fb27a52acfde0eda38b9124b1
[ "BSD-3-Clause" ]
1
2022-03-11T14:05:31.000Z
2022-03-11T14:05:31.000Z
sp_experiment/define_instructions.py
sappelhoff/sp_psychopy
79cae80eb920b35fb27a52acfde0eda38b9124b1
[ "BSD-3-Clause" ]
8
2019-02-12T07:47:47.000Z
2021-01-25T14:05:05.000Z
sp_experiment/define_instructions.py
sappelhoff/sp_psychopy
79cae80eb920b35fb27a52acfde0eda38b9124b1
[ "BSD-3-Clause" ]
2
2019-02-19T17:10:43.000Z
2022-03-11T14:05:32.000Z
"""Functions that either provide an instruction flow or a string to display.""" import os import os.path as op import numpy as np import pandas as pd import sp_experiment from sp_experiment.utils import get_final_choice_outcomes from sp_experiment.define_settings import (txt_color, color_magnitude, color_probability, font, lang, max_nsamples_opt_stop, max_ntrls, max_nsamples, block_size, maxwait, exchange_rate, KEYLIST_SAMPLES) def print_human_readable_instrs(kind, track_eyes, opt_stop, fpath=None): """Print the instructions in readable format. Parameters ---------- kind : str Can be 'active', 'passive', or 'description' track_eyes : bool Whether or not to render instructions for eyetracking. opt_stop : bool Whether or not to render instructions for optional stopping. fpath : str | None Path to the file to be written. If None, will print to console. If file already exists, it will be deleted. """ if opt_stop: texts = run_instructions(kind, return_text_only=True, track_eyes=track_eyes, opt_stop=opt_stop, max_nsamples=max_nsamples_opt_stop) else: texts = run_instructions(kind, return_text_only=True, track_eyes=track_eyes, opt_stop=opt_stop) if fpath is None: for text in texts: print(text) else: if op.exists(fpath): os.remove(fpath) with open(fpath, 'w', encoding='utf-8') as fout: for text in texts: fout.write(text + '\n\n') def _navigate_instrs(ith_text, texts, txt_stim, win): """Navigate in instructions.""" from psychopy import event do_break = False key = event.waitKeys() if key[0] == KEYLIST_SAMPLES[1]: ith_text += 1 elif key[0] == KEYLIST_SAMPLES[0]: ith_text -= 1 elif key[0] == 'x': do_break = True else: # print help and leave ith_text unchanged txt_stim.text = ('Nutzen Sie die linke und rechte Taste zum ' 'Navigieren.') txt_stim.draw() win.flip() event.waitKeys() # Check whether to stop if ith_text >= len(texts): do_break = True # ith_text is never negative if ith_text < 0: ith_text = 0 return ith_text, do_break def run_instructions(kind, monitor='testMonitor', font=font, lang=lang, max_ntrls=max_ntrls, max_nsamples=max_nsamples, block_size=block_size, maxwait=maxwait, exchange_rate=exchange_rate, opt_stop=True, return_text_only=False, track_eyes=False): """Show experiment instructions on the screen. Parameters ---------- kind : str Can be 'general', 'active', 'passive', or 'description' monitor : str Name of monitor to be used font : str Name of font to be used lang : str Language to be used, can be 'de' or 'en' max_ntrls : int Maximum number of trials for this run. max_nsamples : int Maximum number of samples per trial. block_size : int Number of trials after which feedback is provided maxwait : int | float Maximum time to wait for a response until time out exchange_rate : float Conversion rate of points to Euros opt_stop : bool True if optional stopping is allowed in this run, False otherwise ... return_text_only : bool If True, will only return the texts. No impact if False track_eyes : bool Defaults to False: will not change the instruction strings to accommodate for eyetracking. Will automatically switch to True if an eyetracker is detected in Runtime """ if not return_text_only: from psychopy import visual, monitors import tobii_research as tr # Check if we have an eyetracker ... if yes, switch to showing # instructions with eyetracker instructions as well found_eyetrackers = tr.find_all_eyetrackers() if not track_eyes and len(found_eyetrackers) > 0: track_eyes = True # Define monitor specific window object my_monitor = monitors.Monitor(name=monitor) win = visual.Window(color=(0, 0, 0), # Background color: RGB [-1,1] fullscr=True, # Fullscreen for better timing monitor=my_monitor, winType='pyglet', size=my_monitor.getSizePix()) # Hide the cursor win.mouseVisible = False # prepare text object txt_stim = visual.TextStim(win, units='deg', color=txt_color) txt_stim.height = 1 txt_stim.font = font # prepare image stim img_stim = visual.ImageStim(win) img_stim.pos = (0.5, 0) # general image directorys init_dir = op.dirname(sp_experiment.__file__) img_dir = op.join(init_dir, 'image_data') # START INSTRUCTIONS if kind == 'general': texts = _provide_general_instr_str(lang=lang) if return_text_only: return texts ith_text = 0 while True: text = texts[ith_text] txt_stim.text = text txt_stim.draw() win.flip() # Check whether to proceed, go gack, or stay ith_text, do_break = _navigate_instrs(ith_text, texts, txt_stim, win) if do_break: break elif kind == 'active': texts = _provide_active_instr_strs(lang, max_ntrls, max_nsamples, block_size, maxwait, exchange_rate, track_eyes, opt_stop) if return_text_only: return texts ith_text = 0 while True: text = texts[ith_text] txt_stim.text = text txt_stim.draw() if 'Kugeln mit Zahlen' in text: img_stim.image = op.join(img_dir, 'any_ball.png') img_stim.draw() if 'Taste drücken.' in text: img_stim.image = op.join(img_dir, 'bbox_photo.png') img_stim.draw() if 'Wie bereits erwähnt' in text: img_stim.image = op.join(img_dir, 'bbox_photo_stop_button.png') img_stim.draw() if 'Farbe der Punkte' in text: img_stim.image = op.join(img_dir, 'final_ball.png') img_stim.draw() if 'Hilfestellung' in text: img_stim.image = op.join(img_dir, 'start_cropped.png') img_stim.draw() if 'zentralen Stimulus weiß' in text: img_stim.image = op.join(img_dir, 'action_cropped.png') img_stim.draw() if 'kurz zu blau' in text: img_stim.image = op.join(img_dir, 'choice_cropped.png') img_stim.draw() if 'Sekunden Zeit' in text: img_stim.image = op.join(img_dir, 'error_cropped.png') img_stim.draw() if 'Zusammenfassend' in text: img_stim.image = op.join(img_dir, 'fix_stims.png') img_stim.draw() win.flip() # Check whether to proceed, go gack, or stay ith_text, do_break = _navigate_instrs(ith_text, texts, txt_stim, win) if do_break: break elif kind == 'passive': texts = _provide_passive_instr_strs(lang, max_ntrls, max_nsamples, block_size, maxwait, exchange_rate, track_eyes, opt_stop) if return_text_only: return texts ith_text = 0 while True: text = texts[ith_text] txt_stim.text = text txt_stim.draw() if 'Kugeln mit Zahlen' in text: img_stim.image = op.join(img_dir, 'any_ball.png') img_stim.draw() if 'Taste drücken.' in text: img_stim.image = op.join(img_dir, 'bbox_photo.png') img_stim.draw() if 'Farbe der Punkte' in text: img_stim.image = op.join(img_dir, 'final_ball.png') img_stim.draw() if 'Hilfestellung' in text: img_stim.image = op.join(img_dir, 'start_cropped.png') img_stim.draw() if 'zentralen Stimulus weiß' in text: img_stim.image = op.join(img_dir, 'action_cropped.png') img_stim.draw() if 'kurz zu blau' in text: img_stim.image = op.join(img_dir, 'choice_cropped.png') img_stim.draw() if 'Sekunden Zeit' in text: img_stim.image = op.join(img_dir, 'error_cropped.png') img_stim.draw() if 'Zusammenfassend' in text: img_stim.image = op.join(img_dir, 'fix_stims.png') img_stim.draw() win.flip() # Check whether to proceed, go gack, or stay ith_text, do_break = _navigate_instrs(ith_text, texts, txt_stim, win) if do_break: break elif kind == 'description': texts = _provide_description_instr_str(lang=lang) if return_text_only: return texts ith_text = 0 while True: text = texts[ith_text] txt_stim.text = text txt_stim.draw() # Draw red and blue lottery txt_stim1 = visual.TextStim(win, units='deg', color=color_magnitude, height=1, font=font, text='1\n5', pos=(-0.5, -7)) txt_stim2 = visual.TextStim(win, units='deg', color=color_probability, height=1, font=font, text='90\n10', pos=(0.5, -7)) txt_stim1.draw() txt_stim2.draw() # Flip and go win.flip() # Check whether to proceed, go gack, or stay ith_text, do_break = _navigate_instrs(ith_text, texts, txt_stim, win) if do_break: break win.close() def _provide_active_instr_strs(lang, max_ntrls, max_nsamples, block_size, maxwait, exchange_rate, track_eyes, opt_stop=True): """Provide active instr texts.""" # Eyetracking special replacement strings if track_eyes: eyetrackstr1 = ' Wenn Sie während eines Versuchs wiederholt nicht ausreichend fixieren, muss der Versuch erneut gestartet werden.' # noqa: E501 eyetrackstr2 = ' Die Farbe wechselt auch zu rot, wenn Sie wiederholt nicht ausreichend den zentralen Stimulus fixiert haben.' # noqa: E501 eyetrackstr3 = 'oder haben wiederholt nicht den zentralen Stimulus fixiert ' # noqa: E501 else: eyetrackstr1 = '' eyetrackstr2 = '' eyetrackstr3 = '' # Optional stopping special replacement strings if opt_stop: opt_stop_str1 = 'bis zu einem Maximum von {}'.format(max_nsamples) opt_stop_str2 = 'von Ihnen gewählte Anzahl an Kugeln (bis zu maximal {})'.format(max_nsamples) # noqa: E501 opt_stop_str3 = 'Nach dem Drücken der blauen "Stopp" Taste (oder maximal {} Zügen)'.format(max_nsamples) # noqa: E501 else: opt_stop_str1 = max_nsamples opt_stop_str2 = '{} Kugeln'.format(max_nsamples) opt_stop_str3 = 'Wenn Sie nach {} Zügen ein weiteres Mal die linke oder rechte Taste drücken,'.format(max_nsamples) # noqa: E501 texts = list() if lang == 'de': texts.append('Instruktionen Aufgabe A. Bitte lesen Sie aufmerksam den folgenden Text. Nutzen Sie die linke und rechte Taste zum Navigieren. Achten Sie auf die Details in der Beschreibung! In dieser Aufgabe werden Sie selbst nach Informationen suchen.') # noqa: E501 texts.append('Bitte fixieren Sie während des Experiments mit ihrem Blick immer den zentralen Stimulus in der Bildschirmmitte.{}'.format(eyetrackstr1)) # noqa: E501 texts.append('Links und rechts von dem zentralen Stimulus befinden sich zwei unsichtbare Urnen. In den Urnen befinden sich jeweils 100 Kugeln mit Zahlen darauf. Die Zahlen stehen für Spielpunkte, die zu einem Wechselkurs von {} in Euro umgewandelt werden. Dieses Geld in Euro wird Ihnen am Ende des Experimentes als Bonus ausgezahlt.'.format(exchange_rate)) # noqa: E501 texts.append('Es gibt in dieser Aufgabe viele Durchgänge. In jedem Durchgang gibt es neue Urnen, und ihre Aufgabe wird jedes Mal sein, sich am Ende der Aufgabe für eine der beiden Urnen zu entscheiden. Um etwas über den Inhalt der Urnen zu erfahren, dürfen Sie in jedem Durchgang zunächst insgesamt {} mal blind eine Kugel ziehen. Dies können Sie tun, indem Sie die linke oder die rechte Taste drücken. Sie können also jedes Mal selbst wählen, aus welcher Urne die nächste Kugel gezogen wird. Die Kugel wird jedesmal zufällig aus der jeweiligen Urne gezogen und Ihnen kurz gezeigt. Danach wird die Kugel zurück in die ursprüngliche Urne gelegt. Es sind also IMMER 100 Kugeln in jeder Urne. In anderen Worten, der Inhalt der Urnen wird durch Ihre Ziehung(en) nicht verändert.'.format(opt_stop_str1)) # noqa: E501 E999 if opt_stop: # If optional stopping, append an extra explanation on how to stop texts.append('Wie bereits erwähnt können Sie in jedem Durchgang maximal {} mal blind eine Kugel ziehen, um mehr über die Urnen zu lernen. Sie können jedoch auch schon früher aufhören, Kugeln zu ziehen. Das können Sie mit der blauen Taste über der rechten Taste anzeigen. Beim Drücken der dieser blauen "Stopp" Taste wird sofort die nächste Phase des momentanen Durchgangs eingeleitet, wie im Folgenden beschrieben.'.format(max_nsamples)) # noqa: E501 texts.append('Nachdem Sie sich die {} angeschaut haben, müssen Sie sich final für eine der Urnen entscheiden. Ihr Ziel sollte natürlich sein, dabei immer die jeweils bessere Urne zu wählen. Nach dieser finalen Entscheidung wird aus der gewählten Urne nochmals eine Kugel (zufällig) gezogen. Die Punkte auf dieser finalen Kugel werden Ihrem Konto gutgeschrieben. Dies wird durch die grüne Farbe der Punkte gezeigt. Danach beginnt ein neuer Durchgang mit komplett neuen Urnen. Insgesamt gibt es {} Durchgänge und alle {} Durchgänge werden Sie Zeit für eine kurze Pause haben.'.format(opt_stop_str2, max_ntrls, block_size)) # noqa: E501 texts.append('Als Hilfestellung zeigt Ihnen die Farbe des zentralen Stimulus an, was während der Durchgänge als nächstes passiert: Zu Beginn eines Durchgangs ist der Stimulus kurz grün und dann weiß. Das bedeutet, dass neue unsichtbaren Urnen links und rechts aufgestellt wurden.') # noqa: E501 texts.append('Danach bleibt die Farbe des zentralen Stimulus weiß. Das bedeutet, dass Sie jetzt eine Kugel aus einer der Urnen ziehen können, durch Drücken der linken oder der rechten Taste. Während Sie darauf warten, dass die Kugel gezeigt wird, wird die Farbe des zentralen Stimulus auch noch weiß sein.') # noqa: E501 texts.append('{} wechselt die Farbe des zentralen Stimulus kurz zu blau und wird dann wieder weiß. Das bedeutet, dass Sie sich nun final zwischen den Urnen entscheiden müssen. Zur Erinnerung: Nur die Kugel die nach der finalen Entscheidung gezogen wird bestimmt, wie viele Punkte ihrem Konto hinzugefügt werden.'.format(opt_stop_str3)) # noqa: E501 texts.append('Für Ihre Entscheidungen haben Sie jeweils {} Sekunden Zeit. Wenn Sie länger warten, wechselt die Farbe des zentralen Stimulus zu rot und der momentane Durchgang wird abgebrochen.{} Direkt danach wird ein neuer Durchgang gestartet.'.format(maxwait, eyetrackstr2)) # noqa: E501 texts.append('Zusammenfassend bedeuten die Farben das folgende:\n\ngrün: neuer Durchgang mit neuen Urnen\n\nweiß: Urne wählen oder auf zufällig gezogene Kugel warten\n\nblau: nächste Entscheidung ist die finale Entscheidung für diesen Durchgang\n\nrot: Sie haben länger als {} Sekunden gewartet {}und der Durchgang wird abgebrochen'.format(maxwait, eyetrackstr3)) # noqa: E501 texts.append('Die Instruktionen sind abgeschlossen. Drücken Sie die rechte Taste um fortzufahren.') # noqa: E501 elif lang == 'en': texts.append('LANGUAGE NOT IMPLEMENTED YET') return texts def _provide_passive_instr_strs(lang, max_ntrls, max_nsamples, block_size, maxwait, exchange_rate, track_eyes, opt_stop=True): """Provide passive instr texts.""" # Eyetracking special replacement strings if track_eyes: eyetrackstr1 = ' Wenn Sie während eines Versuchs wiederholt nicht ausreichend fixieren, muss der Versuch erneut gestartet werden.' # noqa: E501 eyetrackstr2 = ' Die Farbe wechselt auch zu rot, wenn Sie wiederholt nicht ausreichend den zentralen Stimulus fixiert haben.' # noqa: E501 eyetrackstr3 = 'oder haben wiederholt nicht den zentralen Stimulus fixiert ' # noqa: E501 else: eyetrackstr1 = '' eyetrackstr2 = '' eyetrackstr3 = '' # Optional stopping special replacement strings if opt_stop: opt_stop_str1 = 'bis zu einem Maximum von {}'.format(max_nsamples) opt_stop_str2 = 'vom Computer gewählte Anzahl an Kugeln (bis zu maximal {})'.format(max_nsamples) # noqa: E501 opt_stop_str3 = 'alle gewollten' else: opt_stop_str1 = max_nsamples opt_stop_str2 = '{} Kugeln'.format(max_nsamples) opt_stop_str3 = '{}'.format(max_nsamples) texts = list() if lang == 'de': texts.append('Instruktionen Aufgabe B. Bitte lesen Sie aufmerksam den folgenden Text. Nutzen Sie die linke und rechte Taste zum Navigieren. Achten Sie auf die Details in der Beschreibung! In dieser Aufgabe wird der Computer Sie mit Informationen versorgen.') # noqa: E501 texts.append('Bitte fixieren Sie während des Experiments mit ihrem Blick immer den zentralen Stimulus in der Bildschirmmitte.{}'.format(eyetrackstr1)) # noqa: E501 texts.append('Links und rechts von dem zentralen Stimulus befinden sich zwei unsichtbare Urnen. In den Urnen befinden sich jeweils 100 Kugeln mit Zahlen darauf. Die Zahlen stehen für Spielpunkte, die zu einem Wechselkurs von {} in Euro umgewandelt werden. Dieses Geld in Euro wird Ihnen am Ende des Experimentes als Bonus ausgezahlt.'.format(exchange_rate)) # noqa: E501 texts.append('Es gibt in dieser Aufgabe viele Durchgänge. In jedem Durchgang gibt es neue Urnen, und ihre Aufgabe wird jedes Mal sein, sich am Ende der Aufgabe für eine der beiden Urnen zu entscheiden. Der Computer wird zunächst insgesamt {} mal blind eine Kugel ziehen. Hierzu wird der Computer entscheiden, aus welcher Urne die nächste Kugel gezogen wird. Die Kugel wird jedesmal zufällig aus der jeweiligen Urne gezogen und Ihnen kurz gezeigt. Danach wird die Kugel zurück in die ursprüngliche Urne gelegt. Es sind also IMMER 100 Kugeln in jeder Urne. In anderen Worten, der Inhalt der Urnen wird durch Ihre Ziehung(en) nicht verändert.'.format(opt_stop_str1)) # noqa: E501 texts.append('Nachdem Sie sich die {} angeschaut haben, müssen Sie sich final für eine der Urnen entscheiden. Dies können Sie tun, indem Sie die linke oder die rechte Taste drücken. Ihr Ziel sollte natürlich sein, dabei immer die jeweils bessere Urne zu wählen. Nach dieser finalen Entscheidung wird aus der gewählten Urne nochmals eine Kugel (zufällig) gezogen. Die Punkte auf dieser finalen Kugel werden Ihrem Konto gutgeschrieben.'.format(opt_stop_str2)) # noqa: E501 texts.append('Dies wird durch die grüne Farbe der Punkte gezeigt. Danach beginnt ein neuer Durchgang mit komplett neuen Urnen. Insgesamt gibt es {} Durchgänge und alle {} Durchgänge werden Sie Zeit für eine kurze Pause haben.'.format(max_ntrls, block_size)) # noqa: E501 texts.append('Als Hilfestellung zeigt Ihnen die Farbe des zentralen Stimulus an, was während der Durchgänge als nächstes passiert: Zu Beginn eines Durchgangs ist der Stimulus kurz grün und dann weiß. Das bedeutet, dass neue unsichtbaren Urnen links und rechts aufgestellt wurden.') # noqa: E501 texts.append('Danach bleibt die Farbe des zentralen Stimulus weiß. Das bedeutet, dass der Computer jetzt eine Kugel aus einer der Urnen ziehen wird. Während Sie darauf warten, dass die Kugel gezeigt wird, wird die Farbe des zentralen Stimulus auch noch weiß sein.') # noqa: E501 texts.append('Wenn der Computer {} Züge getätigt hat, wechselt die Farbe des zentralen Stimulus kurz zu blau und wird dann wieder weiß. Das bedeutet, dass Sie sich nun final zwischen den Urnen entscheiden müssen. Zur Erinnerung: Nur die Kugel die nach der finalen Entscheidung gezogen wird bestimmt, wie viele Punkte ihrem Konto hinzugefügt werden.'.format(opt_stop_str3)) # noqa: E501 texts.append('Für Ihre Entscheidungen haben Sie jeweils {} Sekunden Zeit. Wenn Sie länger warten, wechselt die Farbe des zentralen Stimulus zu rot und der momentane Durchgang wird abgebrochen.{} Direkt danach wird ein neuer Durchgang gestartet.'.format(maxwait, eyetrackstr2)) # noqa: E501 texts.append('Zusammenfassend bedeuten die Farben das folgende:\n\ngrün: neuer Durchgang mit neuen Urnen\n\nweiß: Der Computer wählt eine Urne oder auf zufällig gezogene Kugel warten\n\nblau: nächste Entscheidung ist die finale Entscheidung für diesen Durchgang\n\nrot: Sie haben länger als {} Sekunden gewartet {}und der Durchgang wird abgebrochen'.format(maxwait, eyetrackstr3)) # noqa: E501 texts.append('Die Instruktionen sind abgeschlossen. Drücken Sie die rechte Taste um fortzufahren.') # noqa: E501 elif lang == 'en': texts.append('LANGUAGE NOT IMPLEMENTED YET') return texts def _provide_general_instr_str(lang): """Provide a welcome screen text.""" texts = list() if lang == 'de': texts.append('Wilkommen! Sie werden drei Aufgaben nacheinander ' 'ausführen. Im Folgenden bekommen Sie Anweisungen zur ' 'ersten Aufgabe. Dann dürfen Sie einen Test der ' 'ersten Aufgabe durchführen. Danach wird die erste ' 'Aufgabe gestartet. Wenn Sie mit dieser Aufgabe ' 'fertig sind, wird die zweite Aufgabe in den selben ' 'Schritten durchgeführt. Das heißt: Erst Anweisung, ' 'dann Test, dann Durchführung der Aufgabe. ' 'Zum Schluss gibt es noch eine kurze dritte Aufgabe, ' 'gefolgt von 4 Matheproblemen. ' 'Drücken Sie eine beliebige Taste.') elif lang == 'en': texts.append('LANGUAGE NOT IMPLEMENTED YET') return texts def provide_blockfbk_str(data_file, current_nblocks, nblocks, lang): """Provide a string to be displayed during block feedback. Parameters ---------- data_file : str Path to the data file from which to calculate current amount of points. current_nblocks : int nblocks : int lang : str Language, can be 'de' or 'en' for German or English. Returns ------- block_feedback : str """ # Current number of points df_tmp = pd.read_csv(data_file, sep='\t') outcomes = get_final_choice_outcomes(df_tmp) points = int(np.sum(outcomes)) if lang == 'de': block_feedback = ('Block {}/{} beendet!' # noqa: E999 E501 ' Sie haben in dieser Aufgabe bisher {} ' 'Punkte gesammelt.' ' Am Ende des Experiments werden Ihre Punkte' ' in Euro umgerechnet und Ihnen als Bonus gezahlt.' ' Machen Sie jetzt eine kurze Pause.' ' Drücken Sie eine beliebige Taste um' ' fortzufahren.' .format(current_nblocks, nblocks, points)) elif lang == 'en': block_feedback = ('Block {}/{} done!' # noqa: E999 E501 ' You earned {} points in this task ' 'so far.' ' Remember that your points will be ' ' converted to Euros and paid to you at' ' the end of the experiment as a bonus.' ' Take a short break now.' ' Then press any key to continue.' .format(current_nblocks, nblocks, points)) return block_feedback def provide_start_str(is_test, condition, lang): """Provide a string for beginning of the task.""" if condition == 'active': condi = 'A' elif condition == 'passive': condi = 'B' else: condi = 'C' mod = ' TEST ' if is_test else ' ' if lang == 'de': start_str = ('Beginn der{}Aufgabe {}. Drücken Sie eine ' 'beliebige Taste um zu beginnen.' .format(mod, condi)) elif lang == 'en': start_str = ('Starting the{}for task {}. ' 'Press any key to start.' .format(mod, condi)) return start_str def provide_stop_str(is_test, lang): """Provide a string for end of the task.""" mod = ' TEST ' if is_test else ' ' if lang == 'de': stop_str = ('Die{}Aufgabe ist beendet. Drücken Sie eine beliebige' ' Taste.'.format(mod)) elif lang == 'en': stop_str = 'The{}task is over. Press any key to quit.'.format(mod) return stop_str def _provide_description_instr_str(lang='de'): """Provide instructions.""" texts = list() if lang == 'de': instruct_str = ('Im Folgenden werden Sie auf der linken und rechten ' 'Seite jeweils eine Lotterie sehen. Benutzen Sie die ' 'linke oder rechte Taste, um sich für die Lotterie ' 'zu entscheiden, die Sie spielen wollen. ' 'Danach wird ihnen ihr Gewinn angezeigt.') instruct_str += ('Unten sehen Sie ein Beispiel für *eine* Lotterie. ' 'Diese Lotterie bedeutet: 1 Punkt mit 90%iger oder ' '5 Punkte mit 10%iger Chance. Die Punktzahl wird ' 'in pink angezeigt, die Wahrscheinlichkeit in blau.') instruct_str += ('\n\n\n\n\nDrücken Sie eine beliebige Taste um zu ' 'beginnen.') texts.append(instruct_str) elif lang == 'en': raise RuntimeError('English language not yet implemented.') return texts
54.812749
825
0.626763
0
0
0
0
0
0
0
0
14,838
0.536714
8b3ba7884b7496d3798a67dd03266681d387fa73
2,435
py
Python
bareml/machinelearning/supervised/perceptron.py
shotahorii/ml-from-scratch
10fe8c9d5811bfcb9ee303aba2087524574681e6
[ "MIT" ]
3
2021-03-21T21:16:42.000Z
2021-06-27T03:20:04.000Z
bareml/machinelearning/supervised/perceptron.py
shotahorii/ml-from-scratch
10fe8c9d5811bfcb9ee303aba2087524574681e6
[ "MIT" ]
null
null
null
bareml/machinelearning/supervised/perceptron.py
shotahorii/ml-from-scratch
10fe8c9d5811bfcb9ee303aba2087524574681e6
[ "MIT" ]
null
null
null
""" Perceptron. A simple implementation of Perceptron classifier algorithm described in Bishop(2006). Author: Shota Horii <sh.sinker@gmail.com> Test: tests/test_perceptron.py References: C.M. Bishop (2006). Pattern Recognition and Machine Learning. Springer. 192-196. """ import numpy as np from ..base import BinaryClassifier from ..utils.preprocessing import real2sign class Perceptron(BinaryClassifier): """ Perceptron Classifier (Binary classification only) Parameters ---------- n_epoch: int number of epoch to iterate optimisation process shuffle: bool if true, shuffle data before optimisation seed: int random seed """ def __init__(self, n_epoch=10, shuffle=True, seed=0): self.w = None self.b = None self.n_epoch = n_epoch self.shuffle = shuffle self.seed = seed def _fit(self, X, y): """ Parameters ---------- X: np.ndarray (n,d) of real (-inf, inf) n: number of samples d: number of features y: np.ndarray (n,) of int {-1,1} n: number of samples Returns ------- self: Perceptron """ # convert target variable from {0,1} -> {-1, 1} #y = binary2sign(y) # initialise the weights and bias self.w = np.zeros(X.shape[1]) self.b = 0.0 idx = np.arange(X.shape[0]) # shuffle data if self.shuffle: np.random.seed(self.seed) np.random.shuffle(idx) # SGD for _ in range(self.n_epoch): has_misclassification = False for i in idx: y_pred = real2sign(self.w @ X[i] + self.b) if y_pred != y[i]: has_misclassification = True self.w += X[i] * y[i] self.b += y[i] # terminate if all samples were classified correctly if not has_misclassification: break return self def _predict(self, X): """ Parameters ---------- X: np.ndarray (n,d) of real (-inf, inf) n: number of samples d: number of features Returns ------- np.ndarray (n,) of int {-1,1} n: number of samples """ return real2sign(self.w @ X.T + self.b)
24.59596
80
0.526899
2,056
0.844353
0
0
0
0
0
0
1,306
0.536345
8b3bf724c24c7b68522d09b8f7f0a72b85989feb
283,339
py
Python
src/service/picture_rc.py
NoOneXXX/magic-wormhole-client
6b8bebebdf058d66fa4e519092558e8d95090c58
[ "MIT" ]
null
null
null
src/service/picture_rc.py
NoOneXXX/magic-wormhole-client
6b8bebebdf058d66fa4e519092558e8d95090c58
[ "MIT" ]
null
null
null
src/service/picture_rc.py
NoOneXXX/magic-wormhole-client
6b8bebebdf058d66fa4e519092558e8d95090c58
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.15.2) # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore qt_resource_data = b"\ \x00\x00\x6c\x19\ \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\x6b\xe0\x49\x44\x41\x54\x78\x5e\xed\xbd\x0b\xb8\x64\x59\ \x59\xa6\x59\x25\x68\x81\x72\xf1\x86\x37\x14\xf4\x11\xd1\x29\x15\ \x2f\xd5\x52\xe6\xd9\x3b\xf2\xc9\x56\xd4\xae\x51\x51\x67\x26\x1d\ \xc7\x16\xad\x16\xcd\x06\xb4\x84\xaa\xca\x8c\xcb\x49\x5a\xb2\x5b\ \xbb\x5b\xb4\xbb\x19\x47\x1d\xbb\xbc\x6b\x8f\xda\x56\x0f\x3a\x78\ \xe1\x22\x48\x29\x54\x55\x66\x9e\x3c\x11\x71\x12\xac\x16\xc1\x4b\ \xd3\x2a\xa2\xe2\x05\x5b\x44\x85\xa2\x26\xf6\xc9\x3a\x87\x88\x75\ \xfd\xbf\xb5\xfe\xb5\xf7\x8e\x88\xef\x7b\x9e\xef\xe9\xf6\xc4\xe2\ \x5d\xb1\xfe\xff\xcb\xbd\xfe\xcc\x3a\x27\xce\x75\xa7\x4f\x9f\xfe\ \xa0\x9b\x6e\xba\xe9\x03\xaf\xcb\x50\xf3\xbf\x6f\x38\x47\x26\x0f\ \x13\x79\xe4\x21\x22\x8f\x3c\x44\xe4\x91\xe7\x15\xb4\xd8\xa1\xac\ \xcd\x1d\x22\x8f\x3c\x44\xe4\x91\x87\x88\x3c\xf2\x10\x6d\x1b\x0f\ \x92\xf6\xe6\xe4\x91\x87\x88\x3c\xf2\x10\x91\x47\x1e\xa2\x6d\xe3\ \x41\xd2\xde\x9c\x3c\xf2\x10\x91\x47\x1e\x22\xf2\xc8\x43\xb4\x6d\ \x3c\x48\xda\x9b\x93\x47\x1e\x22\xf2\xc8\x43\x44\x1e\x79\x88\xb6\ \x8d\x07\x49\x7b\x73\xf2\xc8\x43\x44\x1e\x79\x88\xc8\x23\x0f\xd1\ \xb6\xf1\x20\x69\x6f\x4e\x1e\x79\x88\xc8\x23\x0f\x11\x79\xe4\x21\ \xda\x46\x9e\xf9\x35\xaf\x4a\x6c\x4e\x5e\xba\xc8\x23\x0f\x11\x79\ \xe4\x21\x22\x6f\x3b\x78\xe6\xd7\x9d\x2a\xb5\x39\x79\x69\x22\x8f\ \x3c\x44\xe4\x91\x87\x88\xbc\xed\xe1\x99\xaf\x59\x2a\xb9\x39\x79\ \xb8\xc8\x23\x0f\x11\x79\xe4\x21\x22\x6f\xbb\x78\xe6\xeb\x2b\x32\ \x17\x6b\x6f\x4e\x1e\x26\xf2\xc8\x43\x44\x1e\x79\x88\xc8\x23\xef\ \x58\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\x3c\x44\xe4\ \x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\x3c\x44\ \xe4\x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\x3c\ \x44\xe4\x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\ \x3c\x44\xe4\x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\x22\ \x8f\x3c\x44\xe4\x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\ \x22\x8f\x3c\x44\xe4\x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\ \x21\x22\x8f\x3c\x44\xe4\x45\x78\xd0\xe2\x88\xe0\xcd\x23\x22\x8f\ \x3c\x44\xe4\x91\x87\x88\x3c\xf2\x10\x6d\x24\x0f\x5a\x1c\x50\xd2\ \xe6\x01\x91\x47\x1e\x22\xf2\xc8\x43\x44\x1e\x79\x88\x36\x96\x07\ \x2d\xf6\x28\x79\x73\x8f\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\x3c\ \x44\x1b\xcd\x83\x16\x3b\x94\xb5\xb9\x43\xe4\x91\x87\x88\x3c\xf2\ \x10\x91\x47\x1e\xa2\x6d\xe3\x41\xd2\xde\x9c\x3c\xf2\x10\x91\x47\ \x1e\x22\xf2\xc8\x43\xb4\x6d\x3c\x48\xda\x9b\x93\x47\x1e\x22\xf2\ \xc8\x43\x44\x1e\x79\x88\xb6\x8d\x07\x49\x7b\x73\xf2\xc8\x43\x44\ \x1e\x79\x88\xc8\x23\x0f\xd1\xb6\xf1\x20\x69\x6f\x4e\x1e\x79\x88\ \xc8\x23\x0f\x11\x79\xe4\x21\xda\x36\x1e\x24\xed\xcd\xc9\x23\x0f\ \x11\x79\xe4\x21\x22\x8f\x3c\x44\xdb\xc8\x33\xbf\xe6\x55\x89\xcd\ \xc9\x4b\x17\x79\xe4\x21\x22\x8f\x3c\x44\xe4\x6d\x07\xcf\xfc\xba\ \x53\xa5\x36\x27\x2f\x4d\xe4\x91\x87\x88\x3c\xf2\x10\x91\xb7\x3d\ \x3c\xf3\x35\x4b\x25\x37\x27\x0f\x17\x79\xe4\x21\x22\x8f\x3c\x44\ \xe4\x6d\x17\xcf\x7c\x7d\x45\xe6\x62\xed\xcd\xc9\xc3\x44\x1e\x79\ \x88\xc8\x23\x0f\x11\x79\xe4\x1d\x0b\x5a\x2c\x10\x79\xe4\x21\x22\ \x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\x2c\x10\x79\xe4\x21\ \x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\x2c\x10\x79\xe4\ \x21\x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\x2c\x10\x79\ \xe4\x21\x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\x2c\x10\ \x79\xe4\x21\x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\x2c\ \x10\x79\xe4\x21\x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\ \x2c\x10\x79\xe4\x21\x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x08\x0f\ \x5a\x1c\x11\xbc\x79\x44\xdb\xc6\xab\xbe\xf1\xc5\x8f\xad\xef\x7c\ \xd5\x4d\x83\x3b\xef\xfb\xdf\xaa\xb3\xf7\x3e\x7b\x70\xee\xe2\x6d\ \xf5\x78\x36\x1a\xec\xce\xff\x4d\x3d\x39\xf8\xde\x7a\x77\x7e\x97\ \xd8\xe3\xe9\x5d\xd5\xf0\xf2\x0f\x9b\x6e\xbe\x6e\xad\x95\x98\x3c\ \xf2\x10\x93\xb7\xb5\xbc\x6a\x32\xff\x9e\xc5\x9a\x0b\x8b\xff\xf7\ \x6c\x3d\x9e\x9f\x19\xec\x5e\xf9\x9a\x6a\x77\xfe\x45\x3b\xe7\x67\ \x4f\xbe\xee\xba\x87\xae\x37\x9f\x7b\x47\xd2\x7e\x9e\x92\x27\xe0\ \x41\x8b\x03\x4a\xda\x3c\xa0\x4d\xe7\x35\x7f\x18\x16\x17\xfb\xad\ \x87\x17\xfb\x68\xfa\xca\x6a\xb8\xf7\x7b\xf5\x70\xef\xc1\x7a\x74\ \xe5\xa1\x63\x8f\x67\x0f\xd5\x93\x39\xee\xe6\x7f\xb7\xcc\x21\x0f\ \x33\x79\xe4\x21\x26\x4f\xce\x1b\xcf\xdf\x55\x8d\x66\xf3\xc5\xff\ \xff\xe7\xaa\xc9\xc1\xbf\x5c\x0c\x0c\xff\xe4\x8b\xcf\xbe\xea\x43\ \x72\x9f\xa7\xa6\xc8\x13\xf2\xa0\xc5\x1e\x25\x6f\xee\xd1\x26\xf2\ \x4e\x9d\xdb\xfb\x98\x7a\x34\xff\xda\x9d\xdd\xf9\x0f\x2f\xc2\xff\ \xbb\x2a\x7f\x98\x5c\x26\x8f\x3c\xc4\xe4\x91\x87\xb8\x0c\xef\x1f\ \xea\xe1\xe5\xfb\xaa\xd1\xc5\x7f\x5d\xdd\xf9\xeb\x5f\x74\xea\xf4\ \x0f\x3c\xc6\x7c\x7e\x22\x4a\x79\x3e\x87\xb4\xd1\x3c\x68\xb1\x43\ \x59\x9b\x3b\xb4\x49\xbc\x53\x17\xee\x79\xd4\x62\xe2\x3d\xbd\x33\ \x99\xff\x52\x35\x9e\xbf\xc7\x13\x7e\xdb\x79\x7f\x98\x6c\x93\x27\ \x33\x79\xe4\x21\x26\xaf\x08\xaf\x1a\xcf\xfe\x6a\x67\x32\xfb\xa9\ \xc5\xeb\xcf\x08\xfd\x27\x03\x97\x90\xe7\xb3\x44\xdb\xc6\x83\xa4\ \xbd\xf9\xa6\xf0\x16\x97\xfe\xa9\xc1\x64\xfe\x13\x8b\x20\xff\x0f\ \x2b\xf4\x91\xf0\x6b\xff\x61\x22\x4f\x68\xf2\xc8\x43\x4c\x5e\x5b\ \xbc\xdf\x59\x3c\x4f\x5f\x74\xed\xfb\x07\xc2\x92\x3e\x9f\xa5\xda\ \x36\x1e\x24\xed\xcd\xd7\x9f\xf7\xd0\xf5\xf5\xf9\xab\x5f\xbe\xf8\ \x9b\xfe\x25\x2b\xec\xa6\xe5\xe1\x97\x99\x3c\xf2\x10\x93\x47\x1e\ \xe2\x3e\xf0\xc6\xb3\x07\xeb\xdd\xf9\xdd\x83\xc9\xec\xc6\xd5\xe7\ \xee\x35\xc5\x9f\xcf\x98\xb6\x8d\x07\x49\x7b\xf3\xb5\xe6\x5d\x78\ \xe8\x03\x9a\x8b\x7f\x67\x34\x9b\x5a\xa1\x75\x39\x25\xfc\x21\x93\ \x47\x1e\x62\xf2\xc8\x43\xdc\x37\xde\x62\x10\x68\xfe\x93\xea\xce\ \x78\xfe\x79\xa2\xe7\x73\x82\xb6\x8d\x07\x49\x7b\xf3\x75\xe6\x2d\ \xc2\xf8\x8c\x7a\x7c\xf0\x5b\x56\x48\x7d\xce\x0d\xbf\x69\xf2\xc8\ \x43\x4c\x1e\x79\x88\x7b\xcd\x9b\xbd\xaf\x1e\x4d\x5f\xba\x73\xdb\ \xcb\x3f\xd9\xf7\x7c\x4e\x51\xe8\x79\x9f\xa2\xbe\xf3\x20\x69\x6f\ \xbe\xae\xbc\xe6\x3b\xfa\x0f\xbf\x49\xa5\x09\xa1\x15\x4c\x8f\x55\ \xc3\x4f\x1e\x79\xa0\xc9\x23\x0f\xf1\xba\xf0\x86\x57\xde\xb5\x33\ \xba\xf4\x1d\xcf\xfc\xc6\x17\x3f\xb6\xd4\xf3\x3e\x55\xeb\xc0\x33\ \xbf\xe6\x55\x89\xcd\xd7\x8e\xd7\xfc\x73\xff\x78\x7e\x66\xe1\x77\ \x5a\x81\x0c\xb9\x54\xf8\x4d\x93\x27\x33\x79\xe4\x21\x26\xaf\xf7\ \xbc\x9d\xe1\xfe\x9b\x77\xc6\xfb\x5f\x6c\x3e\xc7\xa5\x72\x3e\xef\ \x33\xb4\x2e\x3c\xf3\xeb\x4e\x95\xda\x7c\x9d\x78\x27\xce\xdf\xff\ \xc4\x45\xf0\x5e\x67\x85\x31\x66\x47\x58\xb5\xc3\x4f\x1e\x60\xf2\ \xc8\x43\x4c\xde\x7a\xf1\x76\xe7\x77\xdd\x78\xe1\x01\xd9\xc5\xf6\ \xb0\x5c\xcf\x7b\x73\x0d\xa2\x75\xe2\x99\xaf\x59\x2a\xb9\xf9\xba\ \xf0\x4e\x8e\xa7\x5f\x50\x4d\x0e\xfe\xd8\x0a\x63\xcc\xb1\xb0\xa2\ \x26\x8f\x3c\xc4\xe4\x91\x87\x78\x73\x78\xfb\x27\xc6\xd3\xa7\x98\ \xcf\x76\x97\x5c\xcf\x7b\x73\x0d\xa2\x75\xe3\x99\xaf\xaf\xc8\x5c\ \xac\xbd\x79\xdf\x79\xa7\x4e\xdd\xfa\xa8\x7a\x3c\xbd\x50\x37\x3f\ \x82\x62\x86\x31\x66\x79\x58\x65\x26\x8f\x3c\xc4\xe4\x91\x87\x78\ \xd3\x78\xe3\xf9\x3b\x9b\xdf\x41\x60\x3e\xe3\x97\x65\x3e\xef\xb5\ \xef\x8f\xb5\xe6\x41\x8b\x05\x5a\x37\xde\xd3\xbf\xe5\x27\x3f\x62\ \x67\x34\x7b\x8d\x15\x2c\x89\xd1\xb0\xc6\x4c\x1e\x79\x88\xc9\x23\ \x0f\xf1\x26\xf3\x46\xf3\x17\xbb\x3e\x4d\xd0\x7c\xde\x6b\xdf\x1f\ \x6b\xcd\x83\x16\x0b\xb4\x6e\xbc\xcf\x7b\xde\xdd\x1f\x53\x8d\xa7\ \xf1\x0f\xf4\x71\x39\x27\xac\x2e\x93\x47\x1e\x62\xf2\xc8\x43\xbc\ \x05\xbc\x6a\x3c\xff\x4f\x37\x9d\xd9\x3f\xbe\x23\xcc\xe7\xbd\xf6\ \xfd\xb1\xd6\x3c\x68\xb1\x40\xeb\xc6\x3b\x71\xfb\x2b\x9f\x52\x8d\ \xf7\x7f\xdb\x0c\x91\xc8\x0a\x61\x25\x8f\x3c\xf2\x84\x26\x8f\x3c\ \xa9\xc7\xf3\x57\x57\xc3\x7b\x0f\x7f\x54\xb0\xe4\xfd\xb1\xd6\x3c\ \x68\xb1\x40\xeb\xc6\xdb\x79\xc1\x3d\x9f\xbd\x08\xd7\x1f\x59\xe1\ \x91\x58\x33\xac\xe4\x91\x87\x9a\x3c\xf2\x10\x6f\x25\xef\xd2\xe5\ \xe6\x5f\x77\x4b\xdd\x1f\x6b\xcd\x83\x16\x0b\xb4\x6e\xbc\xfa\x8e\ \xd7\x3c\xb5\x1a\xcf\xf0\xef\xf4\x3f\x0e\x97\x76\x58\xc9\x23\x4f\ \x68\xf2\xc8\x43\xbc\xcd\xbc\x73\x7b\xfb\x5f\xf8\xf5\x3f\xf9\x11\ \xda\xf7\xc7\x5a\xf3\xa0\xc5\x02\xad\x1b\xaf\xfa\xd6\x97\x7d\x1c\ \xff\xd9\x5f\x68\xf2\xc8\x43\x4c\x1e\x79\x88\x5b\xe0\x55\xa3\xcb\ \xaf\xbd\xe5\xb6\x97\xdf\x60\xde\x0b\x52\x99\xf7\x87\xf6\x7d\xd4\ \x2a\x0f\x5a\x2c\xd0\xba\xf1\x4e\x3c\xfb\xee\x0f\xdf\x19\x4d\x65\ \xbf\xc8\xc7\xb4\x23\x5c\xda\x61\x25\x0f\x30\x79\xe4\x21\x26\x6f\ \x6b\x79\x8b\x67\xfe\x2f\x9c\x3e\x7d\xf7\x23\xcc\xfb\x21\x26\xf3\ \xfe\xd0\xbe\x8f\x5a\xe7\x41\x8b\x23\x82\x37\x8f\xa8\x34\xef\x69\ \xcf\xfa\x9e\x0f\xe1\x8f\xfa\x09\x4d\x1e\x79\x88\xc9\x23\x0f\x71\ \x07\xbc\xc1\x78\xf6\x7d\xe6\x1d\x11\x92\x79\x7f\x68\xdf\x47\x9d\ \xf0\xa0\xc5\x01\x25\x6d\x1e\x50\x1b\xbc\xc1\x68\xfa\x12\x2b\x38\ \x12\x0b\xc2\x05\x99\x3c\xf2\x10\x93\x47\x1e\x62\xf2\xfc\xbc\xf1\ \xc1\x37\x9a\x77\x85\x4b\xae\xfb\xc3\x5c\x83\xa8\x37\x3c\x68\xb1\ \x47\xc9\x9b\x7b\xd4\x06\x6f\xb0\xbb\xff\xa5\xd0\x6f\xf3\x4b\x09\ \x97\xc4\xe4\x91\x87\x98\x3c\xf2\x10\x93\x17\xe4\x55\xe3\x83\x77\ \xd7\xa3\xd9\x67\x99\x77\xc6\xb2\x5c\xf7\x87\xb9\x06\x51\xaf\x78\ \xd0\x62\x87\xb2\x36\x77\xa8\x0d\xde\xa9\xe1\xa5\x8f\x1f\x4c\xe6\ \xef\x30\xc3\x10\x35\x18\xae\xa8\xc9\x23\x0f\x31\x79\xe4\x21\x26\ \x4f\xc4\xdb\x99\xcc\x7e\xbb\x1a\xbe\xe9\xb1\xe6\xdd\xd1\xc8\x75\ \x7f\x98\x6b\x10\xf5\x9d\x07\x49\x7b\xf3\x36\x78\xa7\x2e\xdc\xf3\ \xc8\x7a\x77\xfe\x7a\x33\x04\x51\x27\x86\xcb\x6b\xf2\xc8\x43\x4c\ \x1e\x79\x88\xc9\x03\x79\x07\x3f\x2b\xb9\x3f\xcc\x35\x88\xfa\xce\ \x83\xa4\xbd\x79\x5b\xbc\x7a\x3c\x3f\x6f\x37\x3f\xe2\xec\x70\x91\ \x67\xb1\xc8\x93\x9b\x3c\xf2\x10\x93\x97\xc4\xab\xc6\x07\xff\x7b\ \xec\xfe\x48\x55\xdf\x79\x90\xb4\x37\x6f\x8b\x57\x8d\xf6\x9f\x54\ \x4d\x66\x7f\x63\x36\x3e\x68\xa5\x70\x91\x47\x9e\xb5\x56\x62\xf2\ \xc8\x43\x4c\x5e\x32\xaf\xf9\x95\xef\xcf\x18\xed\x3f\xde\x77\x7f\ \xa4\xaa\xef\x3c\x48\xda\x9b\xb7\xc9\x1b\x4c\xe6\x2f\x33\x9b\x1e\ \xb4\x62\xb8\xc8\x23\x0f\x36\x79\xe4\x21\x26\x2f\x9f\x37\xbc\xf4\ \xbd\xbe\xfb\x23\x45\xa1\xfb\x28\x45\xda\x3c\x48\xda\x9b\xb7\xc9\ \x1b\xec\x1e\x7c\x89\xd5\xf0\x90\x4b\x84\xcb\x64\x91\x27\x37\x79\ \xe4\x21\x26\x8f\x3c\xc4\x0f\xf3\xaa\xd1\x95\xf7\x0e\x6e\xff\xb5\ \xa7\x9b\xf7\x47\x8a\x42\xf7\x51\x8a\x4a\xf0\xcc\xaf\x79\x55\x62\ \xf3\xb6\x78\xa7\x2e\xdc\xf3\xa8\x45\x93\x7f\xd7\x6a\xba\xcf\x85\ \xc2\x65\x99\x3c\x99\xc9\x23\x0f\x31\x79\xe4\x21\xb6\x78\x7b\x17\ \x6f\xbc\xf1\xf4\x07\x2d\xdf\x2f\xa8\x42\xf7\x51\x8a\x4a\xf1\xcc\ \xaf\x3b\x55\x6a\xf3\xb6\x78\xf5\xee\xfc\x5b\xac\xa6\xfb\x6c\x85\ \x41\x3b\x5c\xe4\x41\x26\x8f\x3c\xc4\xe4\x91\x87\xd8\xc3\xab\x86\ \x57\x9e\xb9\x7c\x87\x20\x8a\xdd\x47\xa8\x4a\xf2\xcc\xd7\x2c\x95\ \xdc\xbc\x0d\xde\x4d\x67\xf6\x3f\xb0\x9a\xcc\x7e\xdf\x6a\xbc\xcb\ \x9e\x30\x68\x87\x8b\x3c\xa1\xc9\x23\x0f\x31\x79\xe4\x21\x0e\xf0\ \x76\x46\xb3\xe9\x75\xd7\x3d\x74\xfd\xf2\x5d\x22\x51\xec\x3e\x42\ \x55\x9a\x67\xbe\xbe\x22\x73\xb1\xf6\xe6\x6d\xf0\xaa\xe1\xfe\x37\ \x58\x8d\x77\x39\x10\x06\x6b\xad\xc4\xe4\x91\x87\x98\x3c\xf2\x10\ \x93\x57\x9c\xd7\x7c\xdf\x98\x79\x9f\x84\x24\xb9\x8f\x10\x75\xca\ \x83\x16\x0b\xd4\x0d\xef\xa1\xeb\xeb\xc9\xec\x37\xad\xe6\x9b\x16\ \x84\x01\x32\x79\xe4\x21\x26\x8f\x3c\xc4\xe4\xb5\xc2\x1b\x4c\xe6\ \xf7\x9b\x37\x8a\x4f\xb2\xfb\x48\xae\x4e\x79\xd0\x62\x81\xba\xe2\ \x2d\x1a\xf8\x95\x56\xf3\x4d\x0b\xc3\x20\x36\x79\xe4\x21\x26\x8f\ \x3c\xc4\xe4\xb5\xca\x3b\x39\x9a\x9d\x34\xef\x15\x53\xd2\xfb\x48\ \xaa\x4e\x79\xd0\x62\x81\xba\xe4\x2d\x06\x80\x5f\x31\x1b\x9a\x13\ \x86\xa8\xc9\x23\x0f\x31\x79\xe4\x21\x26\xaf\x75\x5e\x35\x9e\xff\ \x27\xf3\x5e\x59\x16\x72\x1f\x49\xd4\x29\x0f\x5a\x2c\x50\x97\xbc\ \x9d\xb3\x57\x3f\x6a\xd1\xc0\x7f\x30\x1b\x9a\x13\x86\xa0\xc9\x23\ \x0f\x31\x79\xe4\x21\x26\xaf\x1b\xde\x78\xfe\xae\xad\xf8\x45\x41\ \xd0\x62\x81\xba\xe6\x55\xc3\xe9\x0b\xac\x66\xe6\x86\xc1\x67\xf2\ \xc8\x43\x4c\x1e\x79\x88\xc9\xeb\x94\x37\xd8\x9d\xdf\x6a\xde\x2f\ \xe8\x7d\x14\x53\xa7\x3c\x68\xb1\x40\x7d\xe0\x35\x3f\xc6\x61\x36\ \x52\x23\x0c\x96\xc9\x23\x0f\x31\x79\xe4\x21\x26\xaf\x73\x5e\x35\ \x9a\xbe\x76\xf9\x6e\x49\xb9\x8f\x42\xea\x94\x07\x2d\x16\xa8\x0f\ \xbc\xc1\x64\x76\xa3\xd9\x44\xad\x30\x90\x47\x1e\x79\x42\x93\x47\ \x1e\xe2\xbe\xf2\xc6\xb3\x07\x77\xce\xcf\x9e\xdc\xdc\x2d\x29\xf7\ \x51\x48\x9d\xf3\xa0\xc5\x11\xc1\x9b\x47\x94\xca\x1b\x4c\xe6\x43\ \x47\x13\xed\x20\xa4\x84\x81\x3c\xf2\xcc\xb5\x12\x93\x47\x1e\x62\ \xf2\xfa\xc5\x1b\xee\x3f\x2f\xf5\x3e\xf2\xa9\x17\x3c\x68\x71\x40\ \x49\x9b\x07\x94\xc3\xab\x26\x07\xaf\x28\x1a\x06\xf2\xc8\x43\x4c\ \x1e\x79\x88\xc9\xeb\x1d\xaf\x1a\xed\xfd\xbf\xa9\xf7\x91\x4b\x39\ \xf7\x9b\x4b\xc9\x3c\x68\xb1\x47\xc9\x9b\x7b\x94\xc3\x3b\x75\xe1\ \x9e\x47\xd6\x93\xe9\x5f\x97\x0c\x83\xc5\x22\x4f\x6e\xf2\xc8\x43\ \x4c\x1e\x79\x88\x0b\xf1\x06\xa3\x2b\xef\x38\x75\xeb\xad\x8f\x42\ \xef\x23\x97\x72\xee\x37\x97\xb2\x78\xd0\x62\x87\xb2\x36\x77\x28\ \x97\xb7\x33\x99\x9d\x30\x9b\x67\x39\x33\x0c\x96\xc9\x93\x99\x3c\ \xf2\x10\x93\x47\x1e\xe2\xc2\xbc\x9d\x3b\x5f\xf3\x79\xe8\x7d\x64\ \x2a\xf7\x7e\x33\xa5\xcd\x83\xa4\xbd\xb9\x06\x6f\x30\x99\xef\xba\ \x9a\xa7\x1d\x06\xf2\x40\x93\x47\x1e\x62\xf2\xc8\x43\xdc\x02\x6f\ \x67\x74\x71\x68\xde\x37\x88\x34\xee\xb7\x65\x69\xf3\x20\x69\x6f\ \xae\xc5\xab\xc7\xd3\x5f\x76\x35\x4f\x3b\x0c\xe4\x01\x26\x8f\x3c\ \xc4\xe4\x91\x87\xb8\x35\xde\xf4\xe7\xcd\xfb\x46\x2a\xad\xfb\xed\ \x48\xda\x3c\x48\xda\x9b\x6b\xf2\xea\xd1\xec\x77\xac\xc6\x15\x09\ \x03\x79\x22\x93\x47\x1e\x62\xf2\xc8\x43\xdc\x22\xaf\x1a\xcf\x1f\ \x30\xef\x1b\x89\x34\xef\xb7\x46\xda\x3c\x48\xda\x9b\x6b\xf2\x6e\ \xbc\xf0\xc0\x07\x55\xc3\x2b\xef\x71\x35\xcf\x6a\xb4\xc4\x81\x30\ \x58\x6b\x25\x26\x8f\x3c\xc4\xe4\x91\x87\x98\xbc\xb2\xbc\xf1\xec\ \xef\x9b\x6f\x32\x37\xef\x9d\x90\x34\xef\xb7\x46\xda\x3c\x48\xda\ \x9b\x6b\xf3\x06\x67\x5f\xf3\x34\x6f\xf3\x50\xc7\xc2\x80\x9a\x3c\ \xf2\x10\x93\x47\x1e\x62\xf2\x5a\xe1\x9d\x18\x4f\x9f\x62\xde\x3b\ \x3e\x69\xdf\x6f\x25\x78\xe6\xd7\xbc\x2a\xb1\xb9\x36\xaf\xbe\xe3\ \xf5\xa7\x43\xcd\x13\x5b\x18\x06\xb1\xc9\x23\x0f\x31\x79\xe4\x21\ \x26\xaf\x45\xde\xc1\x97\x99\x77\x8f\x4b\x25\xee\xb7\x12\x3c\xf3\ \xeb\x4e\x95\xda\x5c\x9b\x37\x38\x77\x71\x37\xdc\x3c\x81\xa1\x30\ \x08\x4c\x1e\x79\x88\xc9\x23\x0f\x31\x79\xed\xf2\x76\x67\x77\x9a\ \xf7\x8f\xa9\x52\xf7\x5b\x09\x9e\xf9\x9a\xa5\x92\x9b\x6b\xf3\xaa\ \xe1\xa5\x97\x04\x9b\x17\x33\x1a\x86\x98\xdb\xe2\x35\xdf\xf8\x38\ \x9e\xbd\xae\x9a\xcc\xfe\x73\xbd\x3b\xbf\x4b\xec\xf1\xf4\xae\x6a\ \x78\xf9\x87\x4d\x37\x5f\xb7\xd6\x4a\x4c\x1e\x79\x88\xc9\x5b\x2b\ \x5e\x35\x3a\xf8\x91\xc5\x73\xe6\x17\x17\xcf\xa2\x2b\xf5\x64\xf6\ \x17\xd6\xf3\xc9\xb4\xef\x79\xa5\xfd\xfc\x6b\x91\xb7\x33\x9a\xfd\ \x7b\xf3\x0e\x5a\x56\xc9\xfb\xad\x04\xcf\x7c\x7d\x45\xe6\x62\xed\ \xcd\xb5\x79\xd7\xc2\xea\x6f\x5e\xd0\x09\x61\x08\xba\x34\xef\xdc\ \xde\xfe\xce\xe8\xe2\x1d\xa7\xc6\x17\x3f\xd1\xac\x8b\x54\x66\xfd\ \xb4\xfb\x41\x1e\x26\xf2\xc8\x43\xd4\x25\xef\xf4\xe9\xbb\x1f\xb1\ \x18\x08\xea\x6a\x3c\xfd\xee\x6a\x3c\xff\xd3\xe8\xf3\x4a\xfb\xf9\ \xd7\x15\x6f\x3c\xff\x49\xb3\x16\x47\x42\xea\x27\x51\xa7\x3c\x68\ \xb1\x40\x6d\xf0\x76\xc6\xb3\x9f\xb1\x1a\x26\x71\x6a\x18\x7c\x2e\ \xc9\x1b\xee\xfd\x4e\x7d\xf6\xde\xaf\xbd\xf1\xc6\xc8\xf4\x16\x91\ \xab\x7e\xe6\x1a\x44\xe4\x91\x87\x88\xbc\xcd\xe1\x55\xc3\x37\x3d\ \xb6\xde\x9d\x5f\x38\xfe\x08\xf6\x92\xcf\xbf\xae\x79\xe3\xe9\x2f\ \x9b\xe7\x6f\x94\x53\x3f\x97\x3a\xe5\x41\x8b\x05\x6a\x8b\xb7\x33\ \x99\xff\x92\xd5\xb0\x98\x73\xc2\xe0\x72\x49\xde\xf0\xd2\x2f\x9c\ \xba\xf5\x25\x1f\x5a\xaa\x7e\xa9\x22\x8f\x3c\x44\xe4\x6d\x26\x6f\ \xe7\x85\xfb\x9f\x5c\x0f\xa7\x6f\xb4\x9e\x7d\x5a\xcf\xbf\x1e\xf0\ \xaa\xd1\xf4\xb5\xe6\xb9\xb5\xea\x77\xa4\x4e\x79\xd0\x62\x81\xda\ \xe4\xd5\x93\xd9\x3d\x66\xc3\x82\xce\x0c\x83\xe5\x82\xbc\xe6\xfb\ \x1b\x9a\x5f\x46\x51\xb2\x7e\x29\x22\x8f\x3c\x44\xe4\x6d\x36\xef\ \xc4\xb3\xef\xfe\xf0\x7a\xb8\xf7\x0a\xed\xe7\x5f\x6f\x78\xe3\xf9\ \x7d\xcb\xe7\xd5\xae\x5f\xa7\x3c\x68\xb1\x40\x6d\xf3\x06\x93\xf9\ \x9e\xd5\x30\x9f\x35\xc2\xd0\x12\xaf\xf9\x55\x94\xb7\xdc\x72\xcb\ \x0d\xe6\x79\x51\xc5\xea\x87\x8a\x3c\xf2\x10\x91\xb7\x1d\xbc\xe6\ \x5f\x29\xab\xe1\xe5\x99\xd6\xf3\x4f\xfb\x79\x9a\xc9\xbb\x62\x9e\ \x57\xbb\x7e\x9d\xf0\xa0\xc5\x02\x75\xc1\x5b\x34\x67\xdf\xd1\x30\ \xdb\x7a\x61\x68\x81\x77\xf9\x81\x2f\xfd\xda\xff\xfb\xc3\x5c\xe7\ \x45\x24\xa9\x1f\x22\xf2\xc8\x43\x44\xde\x76\xf1\x3e\xff\x05\xaf\ \xf8\xc4\x7a\x34\x7b\xbb\xf5\x6c\x93\xb8\xe8\xf3\x34\x9b\xb7\xef\ \x3a\xaf\x76\xfd\x5a\xe5\x41\x8b\x05\xea\x8a\xd7\x34\xc7\xd1\xb0\ \x55\xeb\x86\xa1\x38\x6f\x70\xf6\x75\x5f\xea\x3b\xaf\x54\xd2\xfa\ \x49\x45\x1e\x79\x88\xc8\xdb\x4e\xde\x60\x3c\xff\x26\xeb\xf9\x16\ \x73\xe1\xe7\xa9\x02\x6f\xdf\x77\xde\x54\x75\xca\x83\x16\x0b\xd4\ \x25\xaf\x8e\x0d\x00\xfa\x61\xb0\x59\x9a\xbc\xe1\xa5\x7b\x43\xe7\ \x95\x08\xa9\x9f\x44\xe4\x91\x87\x88\xbc\xed\xe5\x35\x3f\x2a\x58\ \x8f\xa7\x6f\xb4\x9e\x73\x3e\x9b\xcf\x3f\xed\xe7\xa9\x0e\x6f\xea\ \x3b\x6f\x8a\x42\xf5\x4b\x11\xcc\x83\x16\x47\x04\x6f\x1e\x11\xca\ \xab\x43\x03\x40\x99\x30\xd8\x56\xe4\x9d\x3c\x7b\xef\x57\x9b\x67\ \x44\x84\xd6\x2f\x26\xf2\xc8\x43\x44\x1e\x79\xd5\x64\xf6\x6c\xeb\ \x59\xe7\xb2\xe3\xf9\xa7\xfd\x3c\xd5\xe1\xed\x1d\x0f\x00\xae\xf3\ \x22\x92\xd4\x0f\x51\x12\x0f\x5a\x1c\x50\xd2\xe6\x01\xa5\xf0\x6a\ \xdf\x00\x50\x2c\x0c\x05\x79\xc3\xbd\xbf\xaf\x86\xf7\x3e\xd6\x3c\ \xa3\x54\x29\xf5\x0b\x89\x3c\xf2\x10\x91\x47\x5e\xa3\x53\x77\xee\ \x7f\x64\x35\x99\xbf\xd7\x7a\xe6\xc5\x9e\x7f\xda\xcf\x53\x35\xde\ \xb5\x01\xc0\x77\x5e\xa9\xa4\xf5\x93\x2a\x99\x07\x2d\xf6\x28\x79\ \x73\x8f\x52\x79\xb5\x6b\x00\x28\x1a\x86\x72\xbc\x9d\xd1\xec\x35\ \xe6\xf9\xa4\x4a\xad\x9f\x4f\xe4\x91\x87\x88\x3c\xf2\x96\x55\x0d\ \x67\xf7\x5a\xcf\xbd\xc8\xf3\x4f\xfb\x79\xaa\xc7\xdb\x9b\xc6\xce\ \x1b\x13\x5a\xbf\x98\xb2\x78\xd0\x62\x87\xb2\x36\x77\x28\x87\x57\ \x9b\x03\x80\xd5\x3c\xed\x30\x94\xe3\xed\xec\xce\x7f\xc0\x3c\x9f\ \x44\x39\xf5\x73\x89\x3c\xf2\x10\x91\x47\x9e\xa9\xc3\xdf\x21\x60\ \x3e\xfb\x22\xcf\x3f\x6b\xad\xc4\xed\xf0\xa6\xe6\xf9\x10\xa5\xd4\ \x2f\x24\x6d\x1e\x24\xed\xcd\x73\x79\xf5\xf2\x00\xe0\x6e\x9e\x76\ \x18\x8a\xf1\x06\x93\xd9\xb7\x9b\xe7\x8b\x29\xb7\x7e\xa6\xc8\x23\ \x0f\x11\x79\xe4\xb9\x54\x4d\x0e\xfe\x25\xfa\xfc\x83\xdd\x1e\xef\ \xf0\xc7\x00\x53\x94\x5a\x3f\x9f\xb4\x79\x90\xb4\x37\xd7\xe0\xd5\ \x47\x03\x80\xbf\x79\x76\xa3\x25\xee\x80\xb7\x18\x00\x9e\x6b\x9e\ \x2f\x24\x8d\xfa\x2d\x8b\x3c\xf2\x10\x91\x47\x9e\x4f\xf5\x78\xfe\ \x3c\xf4\xf9\x07\xb9\x5d\x5e\xd2\x00\x90\x53\x3f\x97\xb4\x79\x90\ \xb4\x37\xd7\xe2\x35\xcd\x89\x34\x0f\x77\x57\xbc\xf1\xfc\x8c\x79\ \x3e\x9f\xb4\xea\x77\x24\xf2\xc8\x43\x44\x1e\x79\x21\x35\xcf\x32\ \xf8\xf9\x27\x75\xfb\x3c\x78\x00\xc8\xad\x9f\x29\x6d\x1e\x24\xed\ \xcd\x35\x79\x8b\x26\xed\x5b\x8d\x2b\x1b\x06\xcc\x08\x4f\x38\x00\ \x68\xd6\xaf\x11\x79\xe4\x21\x22\x8f\xbc\x98\x8e\x07\x00\xe4\xf9\ \x27\x71\x37\x3c\x68\x00\xd0\xa8\xdf\xb2\xb4\x79\x90\xb4\x37\xd7\ \xe6\x2d\x9a\x35\x8d\x34\x4f\x6e\x59\x18\xe4\x46\x79\x82\x01\x40\ \xbb\x7e\xe4\x91\x87\x88\x3c\xf2\x24\x3a\x1c\x00\xd0\xe7\x5f\xcc\ \xdd\xf1\xc4\x03\x80\x56\xfd\x8e\x54\x82\x67\x7e\xcd\xab\x12\x9b\ \x6b\xf3\x9a\x1f\xd1\x88\x34\x4f\x66\x79\x18\x64\x4e\xe1\x45\x06\ \x80\x12\xf5\x23\x2f\x5d\xe4\x91\x87\x68\x9b\x78\xf5\x78\x7a\xc6\ \x7a\xf6\xc5\x9e\x7f\x21\xa7\x3c\x4f\x43\xc6\x78\xa2\x01\x40\xb3\ \x7e\x8d\x4a\xf1\xcc\xaf\x3b\x55\x6a\x73\x6d\xde\xca\x00\xe0\x6e\ \x5e\xdc\x58\x18\xe2\x4e\xe5\x05\x06\x80\x52\xf5\x23\x2f\x4d\xe4\ \x91\x87\x68\xdb\x78\x83\x73\x17\x9f\x0b\x3f\xff\x7c\x4e\x7d\x9e\ \xfa\x8c\xf3\xa2\x03\x80\x76\xfd\x4a\xf2\xcc\xd7\x2c\x95\xdc\x5c\ \x9b\x77\x3c\x00\xf8\x9b\x17\x36\x1e\x86\xb0\x73\x78\x9e\x01\xa0\ \x64\xfd\xc8\xc3\x45\x1e\x79\x88\xb6\x91\x67\x0d\x00\x92\xe7\x9f\ \xcb\x39\xcf\x53\x97\xd3\x78\xc1\x01\xa0\x44\xfd\x4a\xf2\xcc\xd7\ \x57\x64\x2e\xd6\xde\x5c\x9b\x57\x37\xdf\x03\x10\x6e\x9e\xdf\x69\ \x61\xf0\x3b\x97\xe7\x18\x00\xcc\xf3\x6a\xd7\x8f\x3c\x4c\xe4\x91\ \x87\x68\x5b\x79\x2b\x03\x80\xf4\xf9\x67\x3a\xf7\x79\x6a\x3a\x9d\ \xe7\x1d\x00\x4a\xd5\xaf\x13\x1e\xb4\x58\xa0\x36\x78\x75\xf3\x53\ \x00\x76\xc3\xe2\x4e\x0f\x83\xdb\x1a\x3c\x63\x00\x70\x9d\x77\xf9\ \x75\x54\xe4\x91\x87\x88\x3c\xf2\x10\x2d\xf3\x8e\x07\x00\xe4\xf9\ \xb7\xf2\x2c\x54\x78\x9e\xea\xf1\x9c\x03\x40\xc9\xfa\xb5\xce\x83\ \x16\x0b\xd4\x16\xaf\x69\x8e\xa3\x61\x61\xe7\x85\xc1\xb6\x16\x6f\ \x69\x00\xf0\x9d\x37\x55\xe4\x91\x87\x88\x3c\xf2\x10\x99\xbc\xc3\ \x01\x00\x7d\xfe\x1d\x3f\x07\x95\x9e\xa7\x7a\x3c\x6b\x00\x30\xcf\ \xab\x5d\xbf\x56\x79\xd0\x62\x81\xda\xe4\x35\xcd\x71\x34\xcc\xef\ \xfc\x30\x94\xe3\x3d\x3c\x00\x84\xce\x9b\x22\xf2\xc8\x43\x44\x1e\ \x79\x88\x5c\xbc\xc3\x9f\x02\x30\x9f\x6f\x12\x6b\x3e\x4f\xf5\x78\ \x2b\x03\x80\xeb\xbc\xcb\xaf\xa3\xea\x94\x07\x2d\x16\xa8\x6d\x5e\ \xd3\x1c\x47\xc3\xdc\xd6\x09\x43\x41\xde\xf4\x4c\xec\xbc\xa8\xc8\ \x23\x0f\x11\x79\xe4\x21\xf2\xf1\x56\x3e\x09\x50\x6a\xf5\xe7\xa9\ \x1a\xef\x78\x00\xf0\x9d\x37\x55\x9d\xf2\xa0\xc5\x02\x75\xc1\x6b\ \x9a\xe3\x68\x98\x6d\xbd\x30\x14\xe3\x35\xff\x6c\x16\x3b\x2f\x22\ \x49\xfd\x10\x91\x47\x1e\x22\xf2\xb6\x97\x07\x0f\x00\x05\x9e\xa7\ \x16\x2b\x9d\x77\x38\x00\x84\xce\x9b\xa2\x4e\x79\xd0\x62\x81\xba\ \xe2\x35\xcd\x71\x34\x6c\xd5\xba\x61\x28\xc6\x5b\x1e\x00\x7c\xe7\ \x95\x4a\x5a\x3f\xa9\xc8\x23\x0f\x11\x79\xdb\xcd\x83\x06\x80\x42\ \xcf\x53\xcb\xe9\xbc\xfd\xd8\x79\x51\x75\xca\x83\x16\x0b\xd4\x25\ \xaf\x8e\x0d\x00\xfa\x61\xb0\x59\x4a\xbc\xa3\x01\x20\x74\x5e\x89\ \x90\xfa\x49\x44\x1e\x79\x88\xc8\x23\x4f\x3c\x00\x14\x7c\x9e\x2a\ \xf2\xa6\xb1\xf3\x22\x92\xd4\x0f\x11\xcc\x83\x16\x47\x04\x6f\x1e\ \x11\xca\xab\x43\x03\x40\x99\x30\xd8\x56\xe2\x35\x03\x40\xec\xbc\ \x31\xa1\xf5\x8b\x89\xbc\xf5\xe6\x9d\x3e\x7d\xf7\x23\x76\x5e\xb8\ \xff\xc9\xd5\xee\xc1\x3f\x1e\x4c\xe6\x5f\x59\x8d\xe7\xff\x74\xf1\ \x70\x3e\x5d\x4d\xe6\xff\xf3\x60\x72\xa5\x3a\xf1\x9c\x5f\x7a\x22\ \xc2\x8b\x09\x7d\x7f\x31\x91\xb7\x9e\x3c\xd1\x00\x50\xf8\x79\xaa\ \xc7\xdb\x3b\x1e\x00\x7c\xe7\x95\x4a\x5a\x3f\xa9\x92\x78\xd0\xe2\ \x80\x92\x36\x0f\x28\x85\x57\xfb\x06\x80\x62\x61\x28\xc7\x6b\x06\ \x00\xf3\x7c\x88\x52\xea\x17\x12\x79\xeb\xc7\x3b\x75\xe1\x9e\x47\ \xd5\xe7\xaf\x7e\xf9\xe2\xb2\x7f\xc9\xce\x68\xd6\x7c\x48\xd6\xdf\ \x5b\xd9\x33\xf2\x57\x0d\xf7\xfe\x72\xf1\x90\x7b\xcd\xce\xd9\x8b\ \x2f\xaa\xce\x5f\xfa\xfc\xeb\xae\x7b\xe8\x7a\x93\x2b\x91\xe4\xfd\ \x21\x22\x6f\x7d\x79\xd1\x01\xc0\xf1\xfc\xd3\x7e\x9e\xea\xf1\xae\ \x0d\x00\xa1\xf3\x4a\x84\xd4\x4f\xa2\x64\x1e\xb4\xd8\xa3\xe4\xcd\ \x3d\x4a\xe5\xd5\xae\x01\xa0\x68\x18\x4a\xf2\xa6\xd6\x27\x01\x4a\ \x95\x5a\x3f\x9f\xc8\x5b\x2f\xde\xc9\xf1\xc1\xe7\xec\xec\xce\x7f\ \xb8\x1a\xcd\xfe\xd2\xca\x9b\x69\x6f\xfe\xae\xe5\x79\xc1\xf8\xbd\ \x7a\x77\xfe\x9d\x27\xce\x1f\x3c\x71\x79\x8f\x90\x62\xef\x0f\x15\ \x79\xeb\xcd\x0b\x0e\x00\x91\xfc\xc1\x2e\xce\xdb\x9b\xc6\xce\x1b\ \x13\x5a\xbf\x98\xb2\x78\xd0\x62\x87\xb2\x36\x77\x28\x87\x57\x9b\ \x03\x80\xd5\x3c\xed\x30\x14\xe4\x39\x3e\x0a\x58\xa2\x9c\xfa\xb9\ \x44\xde\xfa\xf0\x76\x26\xb3\x13\x83\xc9\xf4\x55\x56\xce\x7c\x0e\ \xe5\xcf\x5e\xdb\xfc\xeb\xc1\x8f\x9d\x7c\xe1\xd5\x4f\x5a\x7e\x3f\ \xa6\x42\xef\x2f\x45\xe4\xad\x3f\xcf\x3b\x00\x20\xf9\x93\xb8\x1d\ \xde\xd4\x3c\x1f\xa2\x94\xfa\x85\xa4\xcd\x83\xa4\xbd\x79\x2e\xaf\ \x5e\x1e\x00\xdc\xcd\xd3\x0e\x43\x39\x5e\xc2\x00\x90\x5b\x3f\x53\ \xe4\xad\x07\xef\xe6\xdd\x37\x7e\xf4\x60\x32\xff\x89\x7a\x32\x7b\ \x9f\x95\x33\x9f\x63\xf9\xf3\xb8\x1a\x1f\xbc\x7b\xb1\xcf\x77\x9c\ \xb8\xfd\xfe\x47\x4b\xdf\x5f\xaa\xc8\xdb\x0c\x9e\x73\x00\x48\xcc\ \x9f\xd7\xed\xf1\xac\x4f\x02\x94\x2a\xb5\x7e\x3e\x69\xf3\x20\x69\ \x6f\xae\xc1\xab\x8f\x06\x00\x7f\xf3\xec\x46\x4b\xdc\x05\x0f\x1c\ \x00\x34\xea\xb7\x2c\xf2\xd6\x83\xb7\xc8\xcc\x33\xaa\xf1\xfc\x6d\ \x56\xc6\x42\x96\xe4\x2f\xe6\xf1\xc1\x6f\x35\xff\xa9\x21\xf6\xfe\ \x52\x45\xde\xe6\xf0\xac\x01\x40\x23\x7f\xdd\xf1\x92\x06\x80\x9c\ \xfa\xb9\xa4\xcd\x83\xa4\xbd\xb9\x16\xaf\x69\x4e\xa4\x79\xb8\xbb\ \xe2\x01\x03\x80\x56\xfd\x8e\x44\xde\x3a\xf0\x1e\xba\xbe\xde\x9d\ \x5f\x80\xfe\xd6\x8f\xe4\x4f\xe0\x6a\x32\xfb\xbb\xc1\xee\xf4\x56\ \xf7\xfb\x4b\x17\x79\x9b\xc5\x5b\x19\x00\x14\xf3\xd7\x11\x0f\x1e\ \x00\x72\xeb\x67\x4a\x9b\x07\x49\x7b\x73\x4d\x5e\xdd\xfc\x36\x40\ \xb3\x71\x65\xc3\x80\x19\xe1\x09\x07\x00\xcd\xfa\x35\x22\xaf\xff\ \xbc\x53\x17\xee\x79\xe4\x22\x23\x3f\x66\x65\x26\x66\x24\x7f\x12\ \x1f\xf2\xf6\xde\x57\x0f\x2f\x7f\x67\xc9\xf3\x9a\x6b\x10\x91\xd7\ \x3d\xef\x78\x00\x28\x92\xbf\xd6\x79\xd0\x00\xa0\x51\xbf\x65\x69\ \xf3\x20\x69\x6f\xae\xcd\x5b\x34\x6b\x1a\x69\x9e\xdc\xb2\x30\xc8\ \x8d\xf2\x04\x03\x80\x76\xfd\xc8\x5b\x07\xde\xe2\x6f\xfe\xe3\xd9\ \x8f\x5a\x79\x89\x19\xcd\x5f\xcc\x26\x6f\x78\xf1\x7b\xcb\x9c\x37\ \x5d\xe4\xf5\x83\x77\x38\x00\x98\x79\xd1\xce\x5f\x7b\x3c\xf1\x00\ \xa0\x55\xbf\x23\x95\xe0\x99\x5f\xf3\xaa\xc4\xe6\xda\xbc\xe6\x47\ \x34\x22\xcd\x93\x59\x1e\x06\x99\x53\x78\x91\x01\xa0\x44\xfd\xc8\ \x4b\x57\x5b\xbc\xc1\x78\xf6\x7d\x56\x56\x62\x4e\xc9\x5f\xc8\x7e\ \xde\xc8\x3c\x87\x54\xbe\xf3\xa6\x8a\xbc\xfe\xf0\x0e\x7f\x1b\xa0\ \x99\x95\x32\xf9\xb3\xd7\x4a\x8c\xf1\x44\x03\x80\x66\xfd\x1a\x95\ \xe2\x99\x5f\x77\xaa\xd4\xe6\xda\xbc\x95\x01\xc0\xdd\xbc\xb8\xb1\ \x30\xc4\x9d\xca\x0b\x0c\x00\xa5\xea\x47\x5e\x9a\xda\xe2\x0d\x76\ \x0f\xbe\xce\xca\x49\xcc\xa9\xf9\xf3\x39\xc4\x1b\xcf\x1e\x1c\xec\ \xce\xbf\xd4\x3c\x4f\x4c\xbe\xf3\xa6\x8a\xbc\x7e\xf1\x9a\x0f\x35\ \x73\xe6\xc5\xcc\x96\xc4\xa1\xfc\x99\x6b\x25\xc6\x79\xd1\x01\x40\ \xbb\x7e\x25\x79\xe6\x6b\x96\x4a\x6e\xae\xcd\x3b\x1e\x00\xfc\xcd\ \x0b\x1b\x0f\x43\xd8\x39\x3c\xcf\x00\x50\xb2\x7e\xe4\xe1\x6a\x8b\ \xb7\xb3\x7b\xf5\x33\x16\xb9\xf8\x5b\x2b\x27\x21\xe7\xe4\xcf\x65\ \x11\x6f\xf6\x17\x3b\xe7\x67\x4f\x36\xcf\xe5\x93\xef\xbc\xa9\x22\ \xaf\x7f\x3c\x6b\x00\x28\x9a\x3f\xc0\x69\xbc\xe0\x00\x50\xa2\x7e\ \x25\x79\xe6\xeb\x2b\x32\x17\x6b\x6f\xae\xcd\xab\x9b\xef\x01\x08\ \x37\xcf\xef\xb4\x30\xf8\x9d\xcb\x73\x0c\x00\xe6\x79\xb5\xeb\x47\ \x1e\xa6\xd6\x78\x17\x1e\xfa\x80\x45\x1e\xee\xb3\x32\x12\x72\x6e\ \xfe\x4c\x03\xbc\x6a\x72\xf0\x0a\xe3\x68\x4e\x79\xcf\x9b\x28\xf2\ \xfa\xc9\x5b\x19\x00\x1c\x79\x11\x19\xc8\x9f\xc8\xe9\x3c\xef\x00\ \x50\xaa\x7e\x9d\xf0\xa0\xc5\x02\xb5\xc1\xab\x9b\x9f\x02\xb0\x1b\ \x16\x77\x7a\x18\xdc\xd6\xe0\x19\x03\x80\xeb\xbc\xcb\xaf\xa3\x22\ \x6f\x7d\x78\xd6\xcf\x51\xc7\xac\x91\xbf\x4c\x5e\xb5\x7b\xf0\xd5\ \xcb\xe7\x33\x15\x3a\x6f\x8a\xc8\xeb\x2f\xef\x78\x00\x08\xe4\x25\ \xe8\x84\xfc\x05\x9d\xc7\x73\x0e\x00\x25\xeb\xd7\x3a\x0f\x5a\x2c\ \x50\x5b\xbc\xa6\x39\x8e\x86\x85\x9d\x17\x06\xdb\x5a\xbc\xa5\x01\ \xc0\x77\xde\x54\x91\xb7\x3e\xbc\x5b\x6e\x7b\xcb\x0d\xf5\x64\xf6\ \x07\x56\x3e\x7c\xd6\xca\x5f\x26\x6f\x30\x9e\xbf\xa5\xf9\x71\xc5\ \xe5\x73\x1e\x29\x74\xde\x14\x91\xd7\x6f\xde\xe1\x00\x10\xc9\x8b\ \xd7\x89\xf9\xf3\x3a\x9f\x67\x0d\x00\xe6\x79\xb5\xeb\xd7\x2a\x0f\ \x5a\x2c\x50\x9b\xbc\xa6\x39\x8e\x86\xf9\x9d\x1f\x86\x72\xbc\x87\ \x07\x80\xd0\x79\x53\x44\xde\x7a\xf1\x06\x93\xd9\x73\xad\x6c\xf8\ \xac\x99\x3f\x0d\xde\xee\xec\xeb\x97\xcf\xd2\x28\x76\x5e\x54\xe4\ \xf5\x9f\x77\xf8\x53\x00\x66\x36\x24\xce\xcd\x9f\x69\x1d\xde\xca\ \x00\xe0\x3a\xef\xf2\xeb\xa8\x3a\xe5\x41\x8b\x05\x6a\x9b\xd7\x34\ \xc7\xd1\x30\xb7\x75\xc2\x50\x90\x37\x3d\x13\x3b\x2f\x2a\xf2\xd6\ \x8f\x57\x8d\xe7\x57\xad\x6c\xb8\xac\x9e\x3f\x0d\xde\xec\xf2\xf2\ \x59\x24\xe7\x45\x44\xde\x7a\xf0\xe0\xff\x84\xd5\x58\x25\x7f\x45\ \x78\xc7\x03\x80\xef\xbc\xa9\xea\x94\x07\x2d\x16\xa8\x0b\x5e\xd3\ \x1c\x47\xc3\x6c\xeb\x85\xa1\x18\xaf\xf9\x67\xb3\xd8\x79\x11\x49\ \xea\x87\x88\xbc\xf2\xbc\xc1\xf9\x83\xa7\x5b\xd9\x70\xb9\x40\xfe\ \x2c\x56\x22\x6f\xb0\x3b\x7d\x9a\xf4\xbc\x88\xc8\x5b\x1f\x1e\x3c\ \x00\x28\xe6\xaf\x00\xef\x70\x00\x08\x9d\x37\x45\x9d\xf2\xa0\xc5\ \x02\x75\xc5\x6b\x9a\xe3\x68\xd8\xaa\x75\xc3\x50\x8c\xb7\x3c\x00\ \xf8\xce\x2b\x95\xb4\x7e\x52\x91\xd7\x0e\xaf\x9a\xcc\xbf\xc7\xca\ \x87\xe9\x42\xf9\xb3\x9c\xca\x1b\xed\x7f\x87\xf4\xbc\x52\x91\xb7\ \x5e\x3c\x68\x00\xd0\xce\x9f\x3e\x6f\x3f\x76\x5e\x54\x9d\xf2\xa0\ \xc5\x02\x75\xc9\xab\x63\x03\x80\x7e\x18\x6c\x96\x12\xef\x68\x00\ \x08\x9d\x57\x22\xa4\x7e\x12\x91\xd7\x1e\xaf\x1a\x4f\x67\x56\x46\ \x3c\x79\xd1\xce\x9f\x1e\xef\xd2\x65\xe9\x79\x25\x42\xea\x27\x11\ \x79\xe5\x79\xe2\x01\xa0\x48\xfe\xd4\x79\xd3\xd8\x79\x11\x49\xea\ \x87\x08\xe6\x41\x8b\x23\x82\x37\x8f\x08\xe5\xd5\xa1\x01\xa0\x4c\ \x18\x6c\x2b\xf1\x9a\x01\x20\x76\xde\x98\xd0\xfa\xc5\x44\x5e\x7b\ \xbc\x7a\xfc\x86\x0f\x5b\x64\xe2\x41\x2b\x27\x9e\xbc\x68\xe7\x4f\ \x8b\x57\x8d\xae\xbc\xf7\xd4\x99\xbb\x3e\x32\x76\x5e\x89\x90\xfa\ \x49\x44\x5e\x3b\x3c\xd1\x00\x50\x28\x7f\x96\xb3\x79\x7b\xc7\x03\ \x80\xef\xbc\x52\x49\xeb\x27\x55\x12\x0f\x5a\x1c\x50\xd2\xe6\x01\ \xa5\xf0\x6a\xdf\x00\x50\x2c\x0c\xe5\x78\xcd\x00\x60\x9e\x0f\x51\ \x4a\xfd\x42\x22\xaf\x5d\x5e\x35\x3a\xa8\xad\x9c\x04\xf2\xa2\x9d\ \x3f\x4d\x5e\x75\xe7\x3d\x75\xec\xbc\x31\xa1\xf5\x8b\x89\xbc\xf6\ \x78\xd1\x01\xa0\x70\xfe\x74\x79\xd7\x06\x80\xd0\x79\x25\x42\xea\ \x27\x51\x32\x0f\x5a\xec\x51\xf2\xe6\x1e\xa5\xf2\x6a\xd7\x00\x50\ \x34\x0c\x25\x79\x53\xeb\x93\x00\xa5\x4a\xad\x9f\x4f\xe4\xb5\xcf\ \x1b\x8c\xe7\xdf\x64\x65\x25\x98\x17\xed\xfc\xe9\xf1\x4e\x0e\xef\ \x7f\xb6\x79\x3e\x44\x29\xf5\x0b\x89\xbc\x76\x79\xc1\x01\xc0\x91\ \x17\xed\xfc\xe9\xf2\xf6\xa6\xb1\xf3\xc6\x84\xd6\x2f\xa6\x2c\x1e\ \xb4\xd8\xa1\xac\xcd\x1d\xca\xe1\xd5\xe6\x00\x60\x35\x4f\x3b\x0c\ \x05\x79\x8e\x8f\x02\x96\x28\xa7\x7e\x2e\x91\xd7\x0d\x6f\xd1\xff\ \x17\x41\x79\x31\xd7\x4a\xdc\x16\x6f\x34\x7b\xa1\x79\x3e\xa9\x52\ \xeb\xe7\x13\x79\xed\xf3\xbc\x03\x80\x2f\x2f\xda\xf9\xd3\xe5\x4d\ \xcd\xf3\x21\x4a\xa9\x5f\x48\xda\x3c\x48\xda\x9b\xe7\xf2\xea\xe5\ \x01\xc0\xdd\x3c\xed\x30\x94\xe3\x25\x0c\x00\xb9\xf5\x33\x45\x5e\ \x77\xbc\x7a\x7c\xf0\xef\xa0\xbc\xa0\x6e\x93\x37\x9a\xbf\xd8\x3c\ \x9f\x44\x39\xf5\x73\x89\xbc\x6e\x78\xce\x01\x20\x94\x17\x73\xad\ \xc4\xed\xf1\xac\x4f\x02\x94\x2a\xb5\x7e\x3e\x69\xf3\x20\x69\x6f\ \xae\xc1\xab\x8f\x06\x00\x7f\xf3\xec\x46\x4b\xdc\x05\x0f\x1c\x00\ \x34\xea\xb7\x2c\xf2\xba\xe5\x55\xbb\x07\x3f\x08\xe5\x05\x71\xcb\ \xbc\xe6\x2c\xe6\xf9\x62\xca\xad\x9f\x29\xf2\xba\xe3\x59\x03\x40\ \x24\x2f\xb0\xdb\xe5\x25\x0d\x00\x39\xf5\x73\x49\x9b\x07\x49\x7b\ \x73\x2d\x5e\xd3\x9c\x48\xf3\x70\x77\xc5\x03\x06\x00\xad\xfa\x1d\ \x89\xbc\xee\x79\xf5\xee\xfc\x2e\x28\x2f\x52\x77\xc1\x5b\x9c\xc5\ \x3c\x5f\x48\x1a\xf5\x5b\x16\x79\xdd\xf2\x56\x06\x00\x49\x5e\x10\ \xb7\xcf\x83\x07\x80\xdc\xfa\x99\xd2\xe6\x41\xd2\xde\x5c\x93\x57\ \x37\xbf\x0d\xd0\x6c\x5c\xd9\x30\x60\x46\x78\xc2\x01\x40\xb3\x7e\ \x8d\xc8\xeb\x07\xef\x70\x00\x40\xf2\x22\x71\x57\x3c\x60\x00\xd0\ \xaa\xdf\x91\xc8\xeb\x9e\x77\x3c\x00\x48\xf3\x22\x75\x37\x3c\x68\ \x00\xd0\xa8\xdf\xb2\xb4\x79\x90\xb4\x37\xd7\xe6\x2d\x9a\x35\x8d\ \x34\x4f\x6e\x59\x18\xe4\x46\x79\x82\x01\x40\xbb\x7e\xe4\xf5\x87\ \x57\x8f\xa7\x77\x59\x59\x09\xe5\x25\x66\x34\x7f\x31\x23\x3c\xe1\ \x00\xa0\x59\xbf\x46\xe4\xf5\x83\x77\x38\x00\x20\x79\x91\xb8\x3b\ \x9e\x78\x00\xd0\xaa\xdf\x91\x4a\xf0\xcc\xaf\x79\x55\x62\x73\x6d\ \x5e\xf3\x23\x1a\x91\xe6\xc9\x2c\x0f\x83\xcc\x29\xbc\xc8\x00\x50\ \xa2\x7e\xe4\xa5\x4b\x9b\x57\x0d\x2f\xff\x30\x94\x97\x90\x53\xf2\ \x17\x32\xca\x13\x0c\x00\xda\xf5\x23\xaf\x3f\xbc\xc3\xdf\x06\x68\ \x66\x25\x94\x97\x98\xd1\xfc\xc5\x8c\xf1\x44\x03\x80\x66\xfd\x1a\ \x95\xe2\x99\x5f\x77\xaa\xd4\xe6\xda\xbc\x95\x01\xc0\xdd\xbc\xb8\ \xb1\x30\xc4\x9d\xca\x0b\x0c\x00\xa5\xea\x47\x5e\x9a\x4a\xf0\xac\ \x01\x20\x96\x17\x9f\x53\xf3\xe7\x73\x0a\x2f\x32\x00\x94\xa8\x1f\ \x79\xe9\xd2\xe6\x35\x1f\x6a\x06\xe5\x25\xe4\x94\xfc\x85\x8c\xf3\ \xa2\x03\x80\x76\xfd\x4a\xf2\xcc\xd7\x2c\x95\xdc\x5c\x9b\x77\x3c\ \x00\xf8\x9b\x17\x36\x1e\x86\xb0\x73\x78\x9e\x01\xa0\x64\xfd\xc8\ \xc3\x55\x8a\xb7\x32\x00\x48\xf2\xe2\x72\x4e\xfe\x5c\x4e\xe5\x05\ \x06\x80\x52\xf5\x23\x2f\x4d\x25\x78\xd6\x00\x10\xcb\x8b\xcf\xa9\ \xf9\xf3\x39\x8d\x17\x1c\x00\x4a\xd4\xaf\x24\xcf\x7c\x7d\x45\xe6\ \x62\xed\xcd\xb5\x79\x75\xf3\x3d\x00\xe1\xe6\xf9\x9d\x16\x06\xbf\ \x73\x79\x8e\x01\xc0\x3c\xaf\x76\xfd\xc8\xc3\x54\x92\x77\x3c\x00\ \x48\xf3\x62\x3a\x37\x7f\xa6\x73\x78\x9e\x01\xa0\x64\xfd\xc8\xc3\ \x55\x8a\xb7\x32\x00\x48\xf2\xe2\x72\x4e\xfe\x5c\x4e\xe7\x79\x07\ \x80\x52\xf5\xeb\x84\x07\x2d\x16\xa8\x0d\x5e\xdd\xfc\x14\x80\xdd\ \xb0\xb8\xd3\xc3\xe0\xb6\x06\xcf\x18\x00\x5c\xe7\x5d\x7e\x1d\x15\ \x79\xfd\xe6\x1d\x0e\x00\x48\x5e\x56\xb2\xa3\x90\x3f\x4d\x9e\x63\ \x00\x30\xcf\xab\x5d\x3f\xf2\x30\x95\xe4\x1d\x0f\x00\xd2\xbc\x98\ \xce\xcd\x9f\xe9\x3c\x9e\x73\x00\x28\x59\xbf\xd6\x79\xd0\x62\x81\ \xda\xe2\x35\xcd\x71\x34\x2c\xec\xbc\x30\xd8\xd6\xe2\x2d\x0d\x00\ \xbe\xf3\xa6\x8a\xbc\xfe\xf3\x0e\x7f\x0a\xc0\xcc\x84\xc4\x5a\xf9\ \xd3\xe4\x19\x03\x80\xeb\xbc\xcb\xaf\xa3\x22\xaf\xdf\xbc\xc3\x01\ \x00\xc9\xcb\xb2\x35\xf2\xa7\xcb\xb3\x06\x00\xf3\xbc\xda\xf5\x6b\ \x95\x07\x2d\x16\xa8\x4d\x5e\xd3\x1c\x47\xc3\xfc\xce\x0f\x43\x39\ \xde\xc3\x03\x40\xe8\xbc\x29\x22\x6f\x3d\x78\xc7\x1f\x04\x84\x58\ \x33\x7f\x9a\xbc\xa5\x01\xc0\x77\xde\x54\x91\xd7\x7f\xde\xe1\x4f\ \x01\x98\x99\x90\x58\x2b\x7f\xba\xbc\x95\x01\xc0\x75\xde\xe5\xd7\ \x51\x75\xca\x83\x16\x0b\xd4\x36\xaf\x69\x8e\xa3\x61\x6e\xeb\x84\ \xa1\x20\x6f\x7a\x26\x76\x5e\x54\xe4\xad\x0f\x0f\x1e\x00\xd4\xf3\ \xa7\xc8\x7b\x78\x00\x08\x9d\x37\x45\xe4\xad\x07\xcf\xfa\x28\x60\ \x89\x35\xf3\xa7\xcb\x3b\x1e\x00\x7c\xe7\x4d\x55\xa7\x3c\x68\xb1\ \x40\x5d\xf0\x9a\xe6\x38\x1a\x66\x5b\x2f\x0c\xc5\x78\xcd\x3f\x9b\ \xc5\xce\x8b\x48\x52\x3f\x44\xe4\x95\xe5\x41\x03\x40\x81\xfc\x59\ \xac\x2c\xde\xf4\xae\xd8\x79\x51\x91\xb7\x3e\x3c\x78\x00\x50\xcf\ \x9f\x2a\xef\x70\x00\x08\x9d\x37\x45\x9d\xf2\xa0\xc5\x02\x75\xc5\ \x6b\x9a\xe3\x68\xd8\xaa\x75\xc3\x50\x8c\xb7\x3c\x00\xf8\xce\x2b\ \x95\xb4\x7e\x52\x91\x57\x9e\x27\x1e\x00\x0a\xe5\xcf\x72\x06\xaf\ \xf9\x86\xc6\xd8\x79\x11\x49\xea\x87\x88\xbc\xb2\x3c\x68\x00\x28\ \x90\x3f\x8b\x95\xc7\xdb\x8f\x9d\x17\x55\xa7\x3c\x68\xb1\x40\x5d\ \xf2\xea\xd8\x00\xa0\x1f\x06\x9b\xa5\xc4\x3b\x1a\x00\x42\xe7\x95\ \x08\xa9\x9f\x44\xe4\xb5\xc3\x13\x0d\x00\x05\xf3\xa7\xc9\x5b\x1e\ \x00\x7c\xe7\x95\x4a\x5a\x3f\xa9\xc8\x2b\xcf\x13\x0f\x00\x85\xf2\ \x67\x39\x8f\x37\x8d\x9d\x17\x91\xa4\x7e\x88\x60\x1e\xb4\x38\x22\ \x78\xf3\x88\x50\x5e\x1d\x1a\x00\xca\x84\xc1\xb6\x12\xaf\x19\x00\ \x62\xe7\x8d\x09\xad\x5f\x4c\xe4\xb5\xc7\x8b\x0e\x00\x85\xf3\xa7\ \xc9\x3b\x1a\x00\x42\xe7\x95\x08\xa9\x9f\x44\xe4\xb5\xc3\x13\x0d\ \x00\x05\xf3\xa7\xcb\xdb\x3b\x1e\x00\x7c\xe7\x95\x4a\x5a\x3f\xa9\ \x92\x78\xd0\xe2\x80\x92\x36\x0f\x28\x85\x57\xfb\x06\x80\x62\x61\ \x28\xc7\x6b\x06\x00\xf3\x7c\x88\x52\xea\x17\x12\x79\xed\xf2\x82\ \x03\x80\x23\x2f\xda\xf9\xd3\xe4\x35\x03\x40\xec\xbc\x31\xa1\xf5\ \x8b\x89\xbc\xf6\x78\xd1\x01\xa0\x70\xfe\x74\x79\xd7\x06\x80\xd0\ \x79\x25\x42\xea\x27\x51\x32\x0f\x5a\xec\x51\xf2\xe6\x1e\xa5\xf2\ \x6a\xd7\x00\x50\x34\x0c\x25\x79\x53\xeb\x93\x00\xa5\x4a\xad\x9f\ \x4f\xe4\xb5\xcf\xf3\x0e\x00\xde\xbc\x68\xe7\x4f\x8f\xd7\x0c\x00\ \xe6\xf9\x10\xa5\xd4\x2f\x24\xf2\xda\xe5\x05\x07\x00\x47\x5e\xb4\ \xf3\xa7\xcb\xdb\x9b\xc6\xce\x1b\x13\x5a\xbf\x98\xb2\x78\xd0\x62\ \x87\xb2\x36\x77\x28\x87\x57\x9b\x03\x80\xd5\x3c\xed\x30\x14\xe4\ \x39\x3e\x0a\x58\xa2\x9c\xfa\xb9\x44\x5e\x37\x3c\xe7\x00\x10\xca\ \x8b\xb9\x56\xe2\xd6\x78\x53\xeb\x93\x00\xa5\x4a\xad\x9f\x4f\xe4\ \xb5\xcf\xf3\x0e\x00\xde\xbc\x68\xe7\x4f\x95\x37\x35\xcf\x87\x28\ \xa5\x7e\x21\x69\xf3\x20\x69\x6f\x9e\xcb\xab\x97\x07\x00\x77\xf3\ \xb4\xc3\x50\x8e\x97\x30\x00\xe4\xd6\xcf\x14\x79\xdd\xf1\xac\x01\ \x20\x96\x17\xd4\x6d\xf2\x1c\x1f\x05\x2c\x51\x4e\xfd\x5c\x22\xaf\ \x1b\x9e\x73\x00\x08\xe5\xc5\x5c\x2b\x71\x7b\x3c\xeb\x93\x00\xa5\ \x4a\xad\x9f\x4f\xda\x3c\x48\xda\x9b\x6b\xf0\xea\xa3\x01\xc0\xdf\ \x3c\xbb\xd1\x12\x77\xc1\x03\x07\x00\x8d\xfa\x2d\x8b\xbc\x6e\x79\ \x2b\x03\x80\x24\x2f\x88\xdb\xe6\x25\x0c\x00\xb9\xf5\x33\x45\x5e\ \x77\x3c\x6b\x00\x88\xe5\x05\x75\xbb\xbc\xa4\x01\x20\xa7\x7e\x2e\ \x69\xf3\x20\x69\x6f\xae\xc5\x6b\x9a\x13\x69\x1e\xee\xae\x78\xc0\ \x00\xa0\x55\xbf\x23\x91\xd7\x3d\xef\x78\x00\x90\xe6\x45\xea\x2e\ \x78\xe0\x00\xa0\x51\xbf\x65\x91\xd7\x2d\x6f\x65\x00\x90\xe4\x05\ \x71\xfb\x3c\x78\x00\xc8\xad\x9f\x29\x6d\x1e\x24\xed\xcd\x35\x79\ \x75\xf3\xdb\x00\xcd\xc6\x95\x0d\x03\x66\x84\x27\x1c\x00\x34\xeb\ \xd7\x88\xbc\x7e\xf0\x0e\x07\x00\x24\x2f\x12\x77\xc5\x03\x06\x00\ \xad\xfa\x1d\x89\xbc\xee\x79\xc7\x03\x80\x34\x2f\x52\x77\xc3\x83\ \x06\x00\x8d\xfa\x2d\x4b\x9b\x07\x49\x7b\x73\x6d\xde\xa2\x59\xd3\ \x48\xf3\xe4\x96\x85\x41\x6e\x94\x27\x18\x00\xb4\xeb\x47\x5e\x7f\ \x78\x87\xbf\x0d\xd0\xcc\x4a\x28\x2f\x31\xa3\xf9\x8b\x19\xe1\x09\ \x07\x00\xcd\xfa\x35\x22\xaf\x1f\xbc\xc3\x01\x00\xc9\x8b\xc4\xdd\ \xf1\xc4\x03\x80\x56\xfd\x8e\x54\x82\x67\x7e\xcd\xab\x12\x9b\x6b\ \xf3\x9a\x1f\xd1\x88\x34\x4f\x66\x79\x18\x64\x4e\xe1\x45\x06\x80\ \x12\xf5\x23\x2f\x5d\xda\xbc\xe6\x47\xe7\xa0\xbc\x84\x9c\x92\xbf\ \x90\x51\x9e\x60\x00\xd0\xae\x1f\x79\xfd\xe1\x1d\xfe\x36\x40\x33\ \x2b\xa1\xbc\xc4\x8c\xe6\x2f\x66\x8c\x27\x1a\x00\x34\xeb\xd7\xa8\ \x14\xcf\xfc\xba\x53\xa5\x36\xd7\xe6\xad\x0c\x00\xee\xe6\xc5\x8d\ \x85\x21\xee\x54\x5e\x60\x00\x28\x55\x3f\xf2\xd2\x54\x82\x67\x0d\ \x00\xb1\xbc\xf8\x9c\x9a\x3f\x9f\x53\x78\x91\x01\xa0\x44\xfd\xc8\ \x4b\x97\x36\xaf\xf9\x50\x33\x28\x2f\x21\xa7\xe4\x2f\x64\x9c\x17\ \x1d\x00\xb4\xeb\x57\x92\x67\xbe\x66\xa9\xe4\xe6\xda\xbc\xe3\x01\ \xc0\xdf\xbc\xb0\xf1\x30\x84\x9d\xc3\xf3\x0c\x00\x25\xeb\x47\x1e\ \xae\x52\xbc\x95\x01\x40\x92\x17\x97\x73\xf2\xe7\x72\x2a\x2f\x30\ \x00\x94\xaa\x1f\x79\x69\x2a\xc1\xb3\x06\x80\x58\x5e\x7c\x4e\xcd\ \x9f\xcf\x69\xbc\xe0\x00\x50\xa2\x7e\x25\x79\xe6\xeb\x2b\x32\x17\ \x6b\x6f\xae\xcd\xab\x9b\xef\x01\x08\x37\xcf\xef\xb4\x30\xf8\x9d\ \xcb\x73\x0c\x00\xe6\x79\xb5\xeb\x47\x1e\xa6\x92\xbc\xe3\x01\x40\ \x9a\x17\xd3\xb9\xf9\x33\x9d\xc3\xf3\x0c\x00\x25\xeb\x47\x1e\xae\ \x52\xbc\x95\x01\x40\x92\x17\x97\x73\xf2\xe7\x72\x3a\xcf\x3b\x00\ \x94\xaa\x5f\x27\x3c\x68\xb1\x40\x6d\xf0\xea\xe6\xa7\x00\xec\x86\ \xc5\x9d\x1e\x06\xb7\x35\x78\xc6\x00\xe0\x3a\xef\xf2\xeb\xa8\xc8\ \xeb\x37\xef\x70\x00\x40\xf2\xb2\x92\x1d\x85\xfc\x69\xf2\x1c\x03\ \x80\x79\x5e\xed\xfa\x91\x87\xa9\x24\xef\x78\x00\x90\xe6\xc5\x74\ \x6e\xfe\x4c\xe7\xf1\x9c\x03\x40\xc9\xfa\xb5\xce\x83\x16\x0b\xd4\ \x16\xaf\x69\x8e\xa3\x61\x61\xe7\x85\xc1\xb6\x16\x6f\x69\x00\xf0\ \x9d\x37\x55\xe4\xf5\x9f\x77\xf8\x53\x00\x66\x26\x24\xd6\xca\x9f\ \x26\xcf\x18\x00\x5c\xe7\x5d\x7e\x1d\x15\x79\xfd\xe6\x1d\x0e\x00\ \x48\x5e\x96\xad\x91\x3f\x5d\x9e\x35\x00\x98\xe7\xd5\xae\x5f\xab\ \x3c\x68\xb1\x40\x6d\xf2\x9a\xe6\x38\x1a\xe6\x77\x7e\x18\xca\xf1\ \x1e\x1e\x00\x42\xe7\x4d\x11\x79\xeb\xc1\xb3\x3e\x0a\x58\x62\xcd\ \xfc\x69\xf2\x96\x06\x00\xdf\x79\x53\x45\x5e\xff\x79\x87\x3f\x05\ \x60\x66\x42\x62\xad\xfc\xe9\xf2\x56\x06\x00\xd7\x79\x97\x5f\x47\ \xd5\x29\x0f\x5a\x2c\x50\xdb\xbc\xa6\x39\x8e\x86\xb9\xad\x13\x86\ \x82\xbc\xe9\x99\xd8\x79\x51\x91\xb7\x3e\x3c\x78\x00\x50\xcf\x9f\ \x22\xef\xe1\x01\x20\x74\xde\x14\x91\xb7\x1e\x3c\xeb\xa3\x80\x25\ \xd6\xcc\x9f\x2e\xef\x78\x00\xf0\x9d\x37\x55\x9d\xf2\xa0\xc5\x02\ \x75\xc1\x6b\x9a\xe3\x68\x98\x6d\xbd\x30\x14\xe3\x35\xff\x6c\x16\ \x3b\x2f\x22\x49\xfd\x10\x91\x57\x96\x07\x0d\x00\x05\xf2\x67\xb1\ \xb2\x78\xd3\xbb\x62\xe7\x45\x45\xde\xfa\xf0\xe0\x01\x40\x3d\x7f\ \xaa\xbc\xc3\x01\x20\x74\xde\x14\x75\xca\x83\x16\x0b\xd4\x15\xaf\ \x69\x8e\xa3\x61\xab\xd6\x0d\x43\x31\xde\xf2\x00\xe0\x3b\xaf\x54\ \xd2\xfa\x49\x45\x5e\x79\x9e\x78\x00\x28\x94\x3f\xcb\x19\xbc\xe6\ \x1b\x1a\x63\xe7\x45\x24\xa9\x1f\x22\xf2\xca\xf2\xa0\x01\xa0\x40\ \xfe\x2c\x56\x1e\x6f\x3f\x76\x5e\x54\x9d\xf2\xa0\xc5\x02\x75\xc9\ \xab\x63\x03\x80\x7e\x18\x6c\x96\x12\xef\x68\x00\x08\x9d\x57\x22\ \xa4\x7e\x12\x6d\x02\xef\xd4\x85\x07\x1e\x53\x4f\x0e\x9e\xba\xf8\ \x9b\xe9\x4d\x8b\x87\xd3\xa9\xe6\xff\x1d\x4c\x66\x37\x3e\x7d\x72\ \xf9\x23\xcc\xb5\x12\x1e\x22\x29\x4f\x34\x00\x14\xcc\x9f\x26\x6f\ \x79\x00\xf0\x9d\x57\x2a\x69\xfd\xdc\x7a\xe8\xfa\x13\xe7\x0f\x9e\ \x58\x8f\x66\x9f\x55\x4f\xae\xde\x3c\x98\x5c\xa9\x06\xc3\xd7\x3d\ \xfd\xc4\xed\x2f\x7b\xca\x17\x3f\xeb\xec\x87\xe0\x3c\x5b\x79\xef\ \xcf\xd6\x26\xf0\xc4\x03\x40\xa1\xfc\x59\xce\xe3\x4d\x63\xe7\x45\ \x24\xa9\x1f\x22\x98\x07\x2d\x8e\x08\xde\x3c\x22\x94\x57\x87\x06\ \x80\x32\x61\xb0\xad\xc4\x6b\x06\x80\xd8\x79\x63\x42\xeb\x17\xd3\ \x3a\xf2\x4e\x9f\xbe\xfb\x11\xd5\xe4\xea\xa0\x1a\xcf\xfe\xc5\x60\ \x32\x7d\xd5\xa2\xd6\x7f\x64\xd5\x7e\xc5\xb3\x3f\xaf\x86\xb3\x7b\ \xeb\xd1\xf4\xc5\x83\x3b\xef\xff\xca\x67\x9c\xf9\xae\xc7\x97\x7c\ \x7f\xe6\x9a\x23\x45\x07\x80\xc2\xf9\xd3\xe4\x1d\x0d\x00\xa1\xf3\ \x4a\x84\xd4\xaf\xd1\xce\xd9\xab\x1f\x35\xd8\x3d\xf8\xba\x45\x2f\ \x7f\x68\xf1\x9e\x0e\x16\xfe\x5b\xd7\xfb\x7b\xd8\xff\xb0\x33\xdc\ \x7f\xf3\xce\x78\xf6\x33\x8b\x61\xf0\xb9\x27\xc6\xd3\xa7\x98\xbc\ \x98\xd0\xf7\x17\xd3\xa6\xf0\x44\x03\x80\xdd\x0f\xb5\xfc\xe9\xf2\ \xf6\x8e\x07\x00\xdf\x79\xa5\x92\xd6\x4f\xaa\x24\x1e\xb4\x38\xa0\ \xa4\xcd\x03\x4a\xe1\xd5\xbe\x01\xa0\x58\x18\xca\xf1\x9a\x01\xc0\ \x3c\x1f\xa2\x94\xfa\x85\xb4\x6e\xbc\x9d\xb3\xaf\xfa\x8c\xc1\x68\ \xfa\x92\x3a\x7a\xe1\x3b\xbc\xd2\x8f\xbd\xbf\x5e\x5c\x60\xff\xcf\ \xe0\x8e\xd7\x7d\xa1\xb9\x27\x22\xf3\xfd\xc5\xce\x1b\x1c\x00\x1c\ \x79\xd1\xce\x9f\x26\xaf\x19\x00\x62\xe7\x8d\x49\x5a\xbf\x9b\xce\ \xec\x7f\x60\x3d\x9a\x7f\xed\x62\x90\x7b\x65\x35\x99\xbf\xd7\x7a\ \x6f\x8e\xf7\x17\x38\xef\x95\x6a\x38\x7d\xc1\xcd\x17\x2e\x3d\xce\ \xdc\xc7\x94\xf4\xfd\x49\xb5\x49\xbc\xe8\x00\x20\xef\x87\xcc\x45\ \x79\xd7\x06\x80\xd0\x79\x25\x42\xea\x27\x51\x32\x0f\x5a\xec\x51\ \xf2\xe6\x1e\xa5\xf2\x6a\xd7\x00\x50\x34\x0c\x25\x79\x53\xeb\x93\ \x00\xa5\x4a\xad\x9f\x4f\xeb\xc4\xab\xee\x78\xf5\xe7\x57\xe3\xbd\ \x97\x2d\xfe\xd6\xf7\xa0\x55\x6b\x89\xbd\xfd\x68\xfa\x3b\xbb\x5c\ \x0d\x67\xcf\x34\xf7\x8f\x29\xe5\xbc\xde\x01\x20\xf8\xfe\x1c\xeb\ \x63\x6e\x81\xd7\x0c\x00\xe6\xf9\x10\x49\xea\x77\xe3\x85\x07\x3e\ \x68\x51\xb3\xe7\x2f\xde\xc3\x5b\xad\xf7\x14\x79\x7f\xb1\xf3\x2e\ \x06\x89\xbf\x5a\x0c\x15\x2f\x3e\x71\xe1\x81\x0f\x37\xf7\x6d\x24\ \x79\x7f\x88\x36\x8d\x17\x1c\x00\x12\xfa\x11\x74\x71\xde\xde\x34\ \x76\xde\x98\xd0\xfa\xc5\x94\xc5\x83\x16\x3b\x94\xb5\xb9\x43\x39\ \xbc\xda\x1c\x00\xac\xe6\x69\x87\xa1\x20\xcf\xf1\x51\xc0\x12\xe5\ \xd4\xcf\xa5\x75\xe1\x0d\xce\xbc\xf4\x63\xab\xe1\xc5\x1f\xa9\x87\ \x7b\x0f\x16\xe9\xc7\xea\xda\x5f\x3d\x31\xd9\xff\x34\xf3\xbd\xb8\ \x94\x7a\x5e\xe7\x00\x20\x7f\x7f\x32\xb7\xc6\x9b\x5a\x9f\x04\x28\ \x95\xa4\x7e\x3b\xe3\x83\x2f\x5e\xec\xf1\x26\xeb\xfd\x98\xf6\xbe\ \x3f\xd9\x79\x07\x93\xf9\x3b\xaa\xd1\xc1\x3f\xbf\xee\xc2\x43\x1f\ \x70\xb4\xb7\xe4\xfd\x21\xda\x44\x9e\x77\x00\xc8\xec\x87\xe5\x76\ \x78\x53\xf3\x7c\x88\x52\xea\x17\x92\x36\x0f\x92\xf6\xe6\xb9\xbc\ \x7a\x79\x00\x70\x37\x4f\x3b\x0c\xe5\x78\x09\x03\x40\x6e\xfd\x4c\ \xad\x0b\xef\xe4\xed\xf7\x7d\xf1\xa2\x76\x7f\x54\xb4\x1f\x86\xab\ \xf1\xc1\xbb\x9b\xbf\x71\x36\xdf\x58\x66\xbe\xaf\x23\xe5\x9c\xd7\ \x1a\x00\xc0\xf7\x17\x75\x9b\x3c\xc7\x47\x01\x4b\x14\xab\xdf\xa9\ \x0b\xf7\x3c\xaa\x9e\x1c\x7c\xaf\xf5\x5e\x5c\x0e\xbd\x3f\x73\x6d\ \xc4\xd5\x68\xfa\xda\x6a\x78\xef\xc7\xc5\xde\x1f\xaa\x4d\xe5\x39\ \x07\x00\xc5\x7e\xb4\xcc\xb3\x3e\x09\x50\xaa\xd4\xfa\xf9\xa4\xcd\ \x83\xa4\xbd\xb9\x06\xaf\x3e\x1a\x00\xfc\xcd\xb3\x1b\x2d\x71\x17\ \x3c\x70\x00\xd0\xa8\xdf\xb2\xd6\x81\x77\xcb\x2d\xb7\xdc\xb0\x33\ \xba\xf4\x1d\x87\x7f\xeb\x37\xeb\x87\x58\xd2\x0f\x9f\x47\xb3\xff\ \x72\xe2\xf6\xfb\x1f\xed\x7a\x7f\x39\xe7\x5d\x19\x00\x72\xde\x9f\ \xcb\x6d\xf3\x12\x06\x80\x58\xfd\xaa\xd1\xfe\x93\xaa\xf1\xfc\xaa\ \xf5\x5e\x5c\x8e\xbd\x3f\xd4\x87\xbc\xbd\x3f\xa9\xee\xf8\xf5\x7f\ \xec\x7b\x7f\xa8\x62\xe7\x45\xd5\x27\x9e\x35\x00\x14\xe9\x47\x6b\ \xbc\xa4\x01\x20\xa7\x7e\x2e\x69\xf3\x20\x69\x6f\xae\xc5\x6b\x9a\ \x13\x69\x1e\xee\xae\x78\xc0\x00\xa0\x55\xbf\x23\xad\x09\xef\xd1\ \xf5\xf0\xd2\x0f\x79\xeb\x27\xb5\xb4\x1f\x01\x2f\x2e\xa2\x4b\xcb\ \x3f\x42\xa8\x71\xde\xe3\x01\x40\xe1\xfd\xad\xb8\x0b\x1e\x38\x00\ \xc4\xea\x77\x72\x38\xfd\x9f\x76\xc6\xb3\xff\x6e\xbd\x17\x97\x25\ \xef\x0f\xf1\x12\xaf\x1a\xed\xfd\xdd\xe0\xec\xeb\xbe\xc6\x7c\x7f\ \xa8\x62\xe7\x45\xd5\x37\xde\xca\x00\x50\xb0\x1f\x2d\xf1\xe0\x01\ \x20\xb7\x7e\xa6\xb4\x79\x90\xb4\x37\xd7\xe4\xd5\xcd\x6f\x03\x34\ \x1b\x57\x36\x0c\x98\x11\x9e\x70\x00\xd0\xac\x5f\xa3\x75\xe0\x9d\ \xba\xf5\xd6\x47\x55\xe7\x2e\xfe\x74\xb0\x7e\x12\x23\xfd\x88\xb8\ \xf9\xdb\xe8\x60\xf2\xba\x27\x68\x9d\xf7\x70\x00\x50\x7c\x7f\x87\ \xee\x8a\x07\x0c\x00\xb1\xfa\xed\xec\xce\x3f\xbb\xf9\x6f\xf1\xd6\ \x7b\x71\x59\xfa\xfe\xa4\x76\xf0\xaa\xd1\x95\xf7\x0e\xce\x5d\xf9\ \x5f\x97\xdf\x23\xa2\xd8\x79\x51\xf5\x91\x77\x3c\x00\x38\xea\xa7\ \xdd\x8f\x16\x78\xd0\x00\xa0\x51\xbf\x65\x69\xf3\x20\x69\x6f\xae\ \xcd\x5b\x34\x6b\x1a\x69\x9e\xdc\xb2\x30\xc8\x8d\xf2\x04\x03\x80\ \x76\xfd\xd6\x85\x57\x0d\x2f\xbd\x24\x5a\xbf\x98\xd1\x7e\xc4\x7c\ \x8d\xf7\x5f\x4f\x3e\xef\x67\x3f\x41\xe3\xbc\x87\xbf\x0d\xd0\x7c\ \x6f\xf9\xef\xcf\x76\x1b\x3c\xe1\x00\x10\xcb\x4b\xf3\x01\x3e\x8b\ \x01\xe0\xcf\x2c\xbe\xcb\xc8\xfb\x93\x38\xc4\x1b\xcf\xfe\xbe\xda\ \x9d\x7f\xd1\xf2\x7b\x95\x28\x76\x5e\x54\x7d\xe5\x1d\x0e\x00\xa1\ \xfa\x99\xb5\x96\xb8\x3b\x9e\x78\x00\xd0\xaa\xdf\x91\x4a\xf0\xcc\ \xaf\x79\x55\x62\x73\x6d\x5e\xf3\x23\x1a\x91\xe6\xc9\x2c\x0f\x83\ \xcc\x29\xbc\xc8\x00\x50\xa2\x7e\xeb\xc0\xab\x87\xf7\x3d\x4f\x54\ \xbf\x90\x53\xfa\x11\xf2\x32\x6f\x78\xf9\x37\x4f\x3c\xe7\x97\x9e\ \x98\x7b\xde\xe6\x47\xe7\x8a\xbc\xbf\x2e\x78\x82\x01\x20\x96\x97\ \xe6\xf2\xef\xd3\xdf\xfc\x4d\x5e\x35\x9a\xfd\xe5\xa9\xf1\xfc\x13\ \x97\xdf\x73\x48\xb1\xf3\xa2\xea\x33\xef\xf0\xb7\x01\x9a\xb5\x2b\ \xdc\x0f\xc8\x18\x4f\x34\x00\x68\xd6\xaf\x51\x29\x9e\xf9\x75\xa7\ \x4a\x6d\xae\xcd\x5b\x19\x00\xdc\xcd\x8b\x1b\x0b\x43\xdc\xa9\xbc\ \xc0\x00\x50\xaa\x7e\x7d\xe7\x9d\xb8\xe3\xd5\x9f\xb3\xa8\xdd\xdf\ \x8a\xea\xe7\x73\x6a\x3f\x7c\x76\xf1\xce\x5d\xf9\xad\xc1\xee\xfe\ \xc7\x9a\xe7\x90\xaa\x39\xaf\x35\x00\x68\xbe\xbf\xb6\x79\x91\x01\ \x20\x96\x97\xc1\xee\xf4\x69\xbd\xfc\x9b\xbf\xb1\x76\x31\xa0\xec\ \x35\x9f\x47\xb0\xfc\xde\x5d\x8a\x9d\x17\x55\xdf\x79\xcd\x87\x9a\ \x49\xea\x27\x32\xd0\x0f\x91\x71\x5e\x74\x00\xd0\xae\x5f\x49\x9e\ \xf9\x9a\xa5\x92\x9b\x6b\xf3\x8e\x07\x00\x7f\xf3\xc2\xc6\xc3\x10\ \x76\x0e\xcf\x33\x00\x94\xac\x5f\x9f\x79\x5f\x7e\xe6\xcc\x07\x2f\ \x2e\xc5\x37\x8a\xeb\xe7\x72\x4e\x3f\x5c\x0e\xf2\x66\xbf\x79\xf3\ \xee\x1b\x3f\xda\x3c\x4f\x4c\x47\xe7\x5d\x19\x00\x8a\xbc\x3f\xc7\ \xfa\x98\x53\x79\x81\x01\x20\x96\x97\x93\xa3\x37\x7c\x66\x35\x9e\ \xff\xa9\xc5\x74\x39\xf5\xfd\xf9\x9c\xc2\x1b\xcf\x5f\xb4\xfc\xfe\ \x4d\xc5\xce\x8b\x6a\x1d\x78\xd6\x00\x10\xaa\x5f\xc8\x29\xfd\x08\ \x39\x8d\x17\x1c\x00\x4a\xd4\xaf\x24\xcf\x7c\x7d\x45\xe6\x62\xed\ \xcd\xb5\x79\x75\xf3\x3d\x00\xe1\xe6\xf9\x9d\x16\x06\xbf\x73\x79\ \x8e\x01\xc0\x3c\xaf\x76\xfd\xfa\xcc\xdb\x19\x5d\x1c\x42\xf5\x33\ \x9d\xdb\x0f\xd3\x12\xde\x78\xfa\xa6\x6a\x38\xfb\x38\xf3\x5c\x3e\ \x2d\x9f\xf7\x78\x00\x28\xf9\xfe\x10\xe7\xf0\x3c\x03\x40\x2c\x2f\ \xcd\x87\x2d\x55\x93\x83\x3f\xb6\x78\x2e\xe7\xbc\x3f\x97\x13\x79\ \xd5\x64\xf6\x77\xcd\x2f\x9a\x5a\x3e\xc7\x91\x62\xe7\x45\xb5\x2e\ \xbc\x95\x01\x20\x52\x3f\xaf\x13\xfb\xe1\x75\x3a\xcf\x3b\x00\x94\ \xaa\x5f\x27\x3c\x68\xb1\x40\x6d\xf0\xea\xe6\xa7\x00\xec\x86\xc5\ \x9d\x1e\x06\xb7\x35\x78\xc6\x00\xe0\x3a\xef\xf2\xeb\xa8\xd6\x89\ \xd7\x7c\xca\x5f\xf3\x99\xfc\x50\xfd\x56\x6a\xa9\xd0\x8f\x54\xde\ \xee\xfc\xbf\x9e\x3a\xb7\xf7\x31\xe6\xf9\x4c\x99\xf5\x3b\x1c\x00\ \x5c\x3c\x89\x91\xf7\x27\x71\x2e\xcf\x31\x00\x98\xe7\x35\xf3\x52\ \x8d\x0e\x3e\xbd\x9e\xcc\xfe\xc4\x62\xb9\x9c\xfb\xfe\x4c\x67\xf2\ \xaa\xd1\xec\xa5\xcb\x67\x69\x14\x3b\x2f\xaa\x75\xe2\x1d\x0f\x00\ \xc2\xfa\x59\xce\xec\x87\xe5\x3c\x9e\x73\x00\x28\x59\xbf\xd6\x79\ \xd0\x62\x81\xda\xe2\x35\xcd\x71\x34\x2c\xec\xbc\x30\xd8\xd6\xe2\ \x2d\x0d\x00\xbe\xf3\xa6\x6a\xdd\x78\xd5\xb9\x8b\xff\x1a\xae\xdf\ \x71\x1d\x95\xfa\x91\xc3\x8b\xfc\x4b\x80\x79\xde\xe6\xff\x3e\xfc\ \x29\x00\x93\x23\x71\xca\xfb\x0b\x59\x83\x67\x0c\x00\xae\xf3\x2e\ \xbf\x5e\xbd\xf0\xea\xa7\x56\xe3\xf9\xdb\x2c\x8e\xcb\x1a\xef\x4f\ \x9d\x37\x7b\xdf\xce\xee\xd5\xcf\x90\x9e\x17\xd5\xba\xf1\x0e\x07\ \x00\xa8\x7e\x4b\x56\xe9\x87\x2a\xcf\x1a\x00\xcc\xf3\x6a\xd7\xaf\ \x55\x1e\xb4\x58\xa0\x36\x79\x4d\x73\x1c\x0d\xf3\x3b\x3f\x0c\xe5\ \x78\x0f\x0f\x00\xa1\xf3\xa6\x68\xdd\x78\xf5\x73\x7f\xfa\xc3\x16\ \x97\xe1\x5f\x58\xf5\x91\x58\xb3\x1f\xb9\xbc\xf1\x81\xf3\x1b\x03\ \xcd\xf3\x1e\xd5\xcf\xfa\x28\x60\x89\x73\xde\x9f\xcb\x5a\xbc\xa5\ \x01\xc0\x77\xde\x23\x35\x1f\xf2\xb3\xe0\xbf\xdd\x62\xb8\xac\xf5\ \xfe\x0a\xf0\x06\x93\xf9\x4f\x48\xce\x8b\x6a\x1d\x79\x87\x3f\x05\ \xe0\xa8\x51\xd4\x8a\xfd\x50\xe4\xad\x0c\x00\xae\xf3\x2e\xbf\x8e\ \xaa\x53\x1e\xb4\x58\xa0\xb6\x79\x4d\x73\x1c\x0d\x73\x5b\x27\x0c\ \x05\x79\xd3\x33\xb1\xf3\xa2\x5a\x47\x5e\x35\xdc\xff\x06\xab\x36\ \x12\xab\xf7\x23\x9f\xb7\x33\x99\xfd\xf6\x89\xf3\x07\x4f\x0c\x9d\ \xf7\xe8\x35\x78\x00\x50\x78\x7f\xc5\x78\x0f\x0f\x00\xa1\xf3\x36\ \x6a\xfe\xe6\x5f\x4b\x7f\x7d\xb3\xe6\xfb\x2b\xc1\x1b\xcd\xde\x75\ \xe2\xd9\x77\x7f\x78\xe8\xbc\xa8\x62\xf5\x43\xd5\x16\xcf\xfa\x28\ \x60\x89\xb5\xfb\xa1\xc7\x3b\x1e\x00\x7c\xe7\x4d\x55\xa7\x3c\x68\ \xb1\x40\x5d\xf0\x9a\xe6\x38\x1a\x66\x5b\x2f\x0c\xc5\x78\xcd\x3f\ \x9b\xc5\xce\x8b\x48\x52\x3f\x44\x6d\xf1\x76\x46\x07\xaf\xb1\xea\ \x13\x73\x81\x7e\x58\xac\x44\x5e\x33\x04\x48\x7e\x91\x0c\x34\x00\ \x28\xbe\xbf\x32\xbc\xe9\x5d\xb1\xf3\x1e\x7e\xc3\xdf\x5a\xff\xb3\ \xbf\xcd\x3b\x39\xbc\xf7\xd9\xbe\xf3\xa2\x8a\xd5\x0f\x55\x9b\x3c\ \x78\x00\x28\xd4\x0f\xcb\x69\xbc\xc3\x01\x20\x74\xde\x14\x75\xca\ \x83\x16\x0b\xd4\x15\xaf\x69\x8e\xa3\x61\xab\xd6\x0d\x43\x31\xde\ \xf2\x00\xe0\x3b\xaf\x54\xd2\xfa\x49\xd5\x16\xef\x19\xa3\xfd\xc7\ \x57\x93\xf9\x7b\xad\x1a\x85\x5c\xa8\x1f\x96\x33\x78\x3b\xc3\xfd\ \x37\x7f\xfe\x0b\x7e\xe1\x13\xcd\xf3\x2e\x4b\x3c\x00\x14\x78\x7f\ \x16\x2b\x93\xd7\x7c\x43\xa3\xab\xbf\xc7\x67\x9d\x1c\x3c\xb5\xde\ \x94\xbf\xf9\x2f\xf3\x86\x97\x7e\xc1\x75\x5e\x54\xbe\x3f\x1f\xa9\ \x6a\x9b\x07\x0d\x00\x25\xfb\xa1\xc3\xdb\x8f\x9d\x17\x55\xa7\x3c\ \x68\xb1\x40\x5d\xf2\xea\xd8\x00\xa0\x1f\x06\x9b\xa5\xc4\x3b\x1a\ \x00\x42\xe7\x95\x08\xa9\x9f\x44\x6d\xf2\x06\xa3\xf9\x57\x58\x35\ \x0a\xb9\x60\x3f\xb4\x79\x3b\xc3\xbd\x37\x9f\xfc\xd6\x5f\xfc\x24\ \x5f\xfd\x44\x03\x40\xc1\xf7\xa7\xc9\x5b\x1e\x00\xcc\xf3\x9e\x7c\ \xe1\xfc\x53\xea\x4d\xbc\xfc\x1b\x0f\xf7\xfe\xfc\x29\xb7\xdc\x76\ \xc3\xf2\x79\x51\x85\xfe\x7c\xa4\xa8\x0b\x9e\x78\x00\x30\xeb\xa7\ \xdd\x0f\x1d\xde\x34\x76\x5e\x44\x92\xfa\x21\x82\x79\xd0\xe2\x88\ \xe0\xcd\x23\x42\x79\x75\x68\x00\x28\x13\x06\xdb\x4a\xbc\x66\x00\ \x88\x9d\x37\x26\xb4\x7e\x31\xb5\xcd\x5b\xfc\xed\xff\x7b\xac\x3a\ \xf9\x5c\xb8\x1f\x25\x78\x83\xd1\x95\xb7\x9c\x1a\x5e\xfa\xf8\xe5\ \x33\x1f\x29\x3a\x00\x38\x78\xda\xef\x4f\x8b\x77\x34\x00\x98\xfd\ \xdd\xe8\xcb\xff\x61\x9f\x1c\xed\x7f\xe6\xf2\x99\x11\xc5\xfe\x7c\ \xa0\xea\x8a\x27\x1a\x00\x3c\xf5\xd3\xee\x47\x3e\x6f\xef\x78\x00\ \xf0\x9d\x57\x2a\x69\xfd\xa4\x4a\xe2\x41\x8b\x03\x4a\xda\x3c\xa0\ \x14\x5e\xed\x1b\x00\x8a\x85\xa1\x1c\xaf\x19\x00\xcc\xf3\x21\x4a\ \xa9\x5f\x48\x5d\xf0\x16\x0f\x8e\x97\x5b\xb5\x72\xd9\x51\x3f\xed\ \x7e\x94\xe2\x55\xe3\xd9\x7f\x73\x7d\x86\x7c\x70\x00\x08\xf0\xac\ \xb5\x12\x17\xe6\x35\x03\x80\xd9\xdf\x13\xe3\xe9\x53\x16\xeb\xfe\ \xd0\xfa\xdf\xba\x5c\xf8\xfd\x95\xe4\x55\xbb\x07\x5f\xbd\x7c\x6e\ \xa9\x24\x7f\x3e\x10\x75\xc9\x8b\x0e\x00\x81\xfa\x59\x6b\x25\x2e\ \xca\xbb\x36\x00\x84\xce\x2b\x11\x52\x3f\x89\x92\x79\xd0\x62\x8f\ \x92\x37\xf7\x28\x95\x57\xbb\x06\x80\xa2\x61\x28\xc9\x9b\x5a\x9f\ \x04\x28\x55\x6a\xfd\x7c\xea\x8a\x57\x4d\x66\xbf\x6f\xd5\xcb\xb4\ \xb7\x7e\xda\xfd\x28\xca\xfb\x9d\x6a\xb4\xff\xa4\xe5\xb3\x7b\x07\ \x00\x19\x4f\xee\x16\x78\xcd\x00\xb0\x7c\xb6\xc3\xcb\x7f\x32\xfb\ \x03\xeb\x7f\xeb\xb2\x83\xa7\xfd\xfe\x8a\xf2\x22\x1f\x0d\xec\x92\ \xf4\xcf\x87\x54\x5d\xf3\x82\x03\x40\xac\x7e\xa8\x8b\xf3\xf6\xa6\ \xb1\xf3\xc6\x84\xd6\x2f\xa6\x2c\x1e\xb4\xd8\xa1\xac\xcd\x1d\xca\ \xe1\xd5\xe6\x00\x60\x35\x4f\x3b\x0c\x05\x79\x8e\x8f\x02\x96\x28\ \xa7\x7e\x2e\x75\xc9\xab\xc6\x07\xef\xb6\x6a\x26\xad\x9f\xb9\x56\ \xe2\x0e\x79\xcd\xbf\x04\x9c\x7c\xe1\xd5\x4f\x3a\x3a\xbb\x73\x00\ \x00\x78\x22\xb7\xc6\x9b\x1e\x7f\x0e\xc0\xce\xf9\xd9\x93\x45\x83\ \x5d\x90\xa7\xfd\xfe\xca\xf1\x76\x76\xe7\x3f\x70\x74\x76\x89\x90\ \x3f\x1f\x12\xf5\x81\xe7\x1d\x00\x04\xf5\x83\xdc\x0e\x6f\x6a\x9e\ \x0f\x51\x4a\xfd\x42\xd2\xe6\x41\xd2\xde\x3c\x97\x57\x2f\x0f\x00\ \xee\xe6\x69\x87\xa1\x1c\x2f\x61\x00\xc8\xad\x9f\xa9\x2e\x79\xb7\ \xdc\xf6\x96\x1b\xac\x9a\x21\xf5\x43\xdd\x0f\xde\x5b\x8f\x86\x00\ \x6b\x00\x48\xe3\xf9\xdd\x26\xef\xe1\xcf\x01\xd8\xb6\xcb\xbf\xf1\ \xce\x64\xfe\x33\xab\xc9\xf6\x0b\xf9\xf3\x21\x51\x5f\x78\xce\x01\ \x40\x58\x3f\xb1\xdb\xe3\x59\x9f\x04\x28\x55\x6a\xfd\x7c\xd2\xe6\ \x41\xd2\xde\x5c\x83\x57\x1f\x0d\x00\xfe\xe6\xd9\x8d\x96\xb8\x0b\ \x1e\x38\x00\x68\xd4\x6f\x59\x5d\xf3\x9a\x1f\x01\xb4\xea\x86\xd4\ \x0f\x71\x8f\x78\xcd\x05\xd9\x5c\x94\x2b\x03\x40\x06\xcf\xe9\xb6\ \x79\x8b\xb3\x34\x83\xcd\xe2\xff\xff\x56\xeb\x7f\xeb\x72\x8c\x87\ \xba\x4b\xde\x78\xfe\xf3\x66\xb6\x5d\x42\xff\x7c\xc4\xd4\x27\x9e\ \x35\x00\x20\xf5\x93\xb8\x5d\x5e\xd2\x00\x90\x53\x3f\x97\xb4\x79\ \x90\xb4\x37\xd7\xe2\x35\xcd\x89\x34\x0f\x77\x57\x3c\x60\x00\xd0\ \xaa\xdf\x91\xfa\xc0\x3b\x75\xe1\x9e\x47\x59\xb5\x43\xea\x27\x75\ \x0f\x79\xd7\xfe\x96\x3c\x7b\xa5\x16\x6f\xc5\x9d\xf0\x66\xaf\x6c\ \xfe\x13\x87\xf5\xbf\x75\x59\xc4\x03\xdc\x3d\xef\xa7\xcd\x6c\x9b\ \x4a\xf9\xf3\x11\x52\xdf\x78\x2b\x03\x00\x5e\xbf\xb0\xdb\xe7\xc1\ \x03\x40\x6e\xfd\x4c\x69\xf3\x20\x69\x6f\xae\xc9\xab\x9b\xdf\x06\ \x68\x36\xae\x6c\x18\x30\x23\x3c\xe1\x00\xa0\x59\xbf\x46\xbd\xe1\ \x5d\x78\xe8\x03\x16\x75\x79\x30\xb9\x7e\x12\x93\x47\x1e\xe2\x14\ \xde\x68\xfa\x43\x66\xb4\x97\x95\xfc\xe7\xc3\xa3\x3e\xf2\x8e\x07\ \x80\x94\xfa\x85\xdc\x0d\x0f\x1a\x00\x34\xea\xb7\x2c\x6d\x1e\x24\ \xed\xcd\xb5\x79\x8b\x66\x4d\x23\xcd\x93\x5b\x16\x06\xb9\x51\x9e\ \x60\x00\xd0\xae\x5f\xdf\x78\xf5\xf2\x8f\x89\xa1\xf5\x8b\x99\x3c\ \xf2\x10\x27\xf2\x06\x93\xd9\xb7\x9b\xb9\x3e\x52\xee\x9f\x0f\x53\ \x7d\xe5\x1d\x0e\x00\x89\xf5\xf3\xba\x3b\x9e\x78\x00\xd0\xaa\xdf\ \x91\x4a\xf0\xcc\xaf\x79\x55\x62\x73\x6d\x5e\xf3\x23\x1a\x91\xe6\ \xc9\x2c\x0f\x83\xcc\x29\xbc\xc8\x00\x50\xa2\x7e\x7d\xe3\xd5\xbb\ \xf3\xd7\x27\xd7\x2f\x64\xf2\xc8\x43\x9c\xc1\x1b\xec\x1e\x7c\x9d\ \x99\xeb\x46\x1a\x7f\x3e\x96\xd5\x67\xde\xe1\x6f\x03\x34\x6b\x27\ \xac\x9f\xd3\x19\xfd\x70\x1a\xe3\x89\x06\x00\xcd\xfa\x35\x2a\xc5\ \x33\xbf\xee\x54\xa9\xcd\xb5\x79\x2b\x03\x80\xbb\x79\x71\x63\x61\ \x88\x3b\x95\x17\x18\x00\x4a\xd5\xaf\x6f\xbc\x6a\xf7\xe0\x07\x93\ \xeb\xe7\x33\x79\xe4\x21\xce\xe4\x9d\x1c\x1f\x7c\x8e\x99\x6b\xad\ \x3f\x1f\x47\xea\x3b\xaf\xf9\x50\xb3\xd4\xfa\x59\xce\xec\x87\x65\ \x9c\x17\x1d\x00\xb4\xeb\x57\x92\x67\xbe\x66\xa9\xe4\xe6\xda\xbc\ \xe3\x01\xc0\xdf\xbc\xb0\xf1\x30\x84\x9d\xc3\xf3\x0c\x00\x25\xeb\ \xd7\x37\xde\x60\x34\xfd\x3a\xab\x76\xd2\xfa\xb9\x9c\xd3\x0f\x97\ \xc9\x23\x2f\xe4\xf1\xfc\x9d\xa7\x4f\xdf\xfd\x88\xe5\x4c\x6b\xfe\ \xf9\x68\xb4\x0e\x3c\x6b\x00\x90\xd6\xcf\x74\x6e\x3f\x4c\xa7\xf1\ \x82\x03\x40\x89\xfa\x95\xe4\x99\xaf\xaf\xc8\x5c\xac\xbd\xb9\x36\ \xaf\x6e\xbe\x07\x20\xdc\x3c\xbf\xd3\xc2\xe0\x77\x2e\xcf\x31\x00\ \x98\xe7\xd5\xae\x5f\xdf\x78\x3b\xb7\xbd\xfc\x93\x17\x43\xdd\xfb\ \x92\xea\x67\x3a\xb7\x1f\xa6\xc9\x23\x2f\xe6\xf1\xf4\x97\x97\xf3\ \xac\xfd\xe7\x63\x5d\x78\x2b\x03\x00\x52\xbf\x95\x5a\x2a\xf4\x43\ \x87\xe7\x1d\x00\x4a\xd5\xaf\x13\x1e\xb4\x58\xa0\x36\x78\x75\xf3\ \x53\x00\x76\xc3\xe2\x4e\x0f\x83\xdb\x1a\x3c\x63\x00\x70\x9d\x77\ \xf9\x75\x54\xeb\xc2\x5b\x0c\x00\x57\x92\xea\xb7\x52\x4b\x85\x7e\ \x90\x67\x9b\xbc\xa0\x07\xbb\xf3\x5b\xcd\x3c\x6b\xff\xf9\x58\x07\ \xde\xf1\x00\x00\xd6\xef\xd8\x4a\xfd\x50\xe2\x39\x07\x80\x92\xf5\ \x6b\x9d\x07\x2d\x16\xa8\x2d\x5e\xd3\x1c\x47\xc3\xc2\xce\x0b\x83\ \x6d\x2d\xde\xd2\x00\xe0\x3b\x6f\xaa\xd6\x89\xb7\x33\xba\x38\x4c\ \xaa\xdf\x71\x1d\x95\xfa\x41\x1e\x79\xe6\xda\x90\xc7\xb3\xbf\xaf\ \xc7\x6f\xf8\x30\x33\xcf\xda\x7f\x3e\xd6\x81\x77\x38\x00\xa0\xf5\ \x7b\x7f\x1d\xed\x5e\xa4\xf4\x43\x8f\x67\x0d\x00\xe6\x79\xb5\xeb\ \xd7\x2a\x0f\x5a\x2c\x50\x9b\xbc\xa6\x39\x8e\x86\xf9\x9d\x1f\x86\ \x72\xbc\x87\x07\x80\xd0\x79\x53\xb4\x6e\xbc\x9b\x9f\xff\xb2\x8f\ \xae\xc6\xd3\xbf\xb1\xea\x23\xb1\x66\x3f\xc8\x23\x0f\xf0\xce\x78\ \xfa\xe3\xae\x3c\x6b\xff\xf9\x58\x07\xde\xe1\x4f\x01\x38\x6a\x14\ \xb5\x62\x3f\x14\x79\x2b\x03\x80\xeb\xbc\xcb\xaf\xa3\xea\x94\x07\ \x2d\x16\xa8\x6d\x5e\xd3\x1c\x47\xc3\xdc\xd6\x09\x43\x41\xde\xf4\ \x4c\xec\xbc\xa8\xd6\x95\xd7\xfc\x42\x15\xab\x3e\x31\xab\xf7\x83\ \x3c\xf2\xa4\x9e\xbd\x6f\x67\xf7\xca\x67\xf8\xf2\x9c\xaa\x75\xe5\ \x59\x1f\x05\x2c\xb1\x6a\x3f\x54\x79\xc7\x03\x80\xef\xbc\xa9\xea\ \x94\x07\x2d\x16\xa8\x0b\x5e\xd3\x1c\x47\xc3\x6c\xeb\x85\xa1\x18\ \xaf\xf9\x67\xb3\xd8\x79\x11\x49\xea\x87\xa8\x4d\x5e\xf3\xab\x72\ \x17\x0f\x91\x77\x59\x75\xf2\xb9\x40\x3f\x2c\x16\x79\x72\x6f\x19\ \x6f\x30\x9e\xfe\xe7\x50\x9e\x53\xb4\xce\x3c\x78\x00\x50\xee\x87\ \x32\xef\x70\x00\x08\x9d\x37\x45\x9d\xf2\xa0\xc5\x02\x75\xc5\x6b\ \x9a\xe3\x68\xd8\xaa\x75\xc3\x50\x8c\xb7\x3c\x00\xf8\xce\x2b\x95\ \xb4\x7e\x52\x75\xc1\x5b\x3c\x44\x5e\x64\xd5\xca\xe5\x42\xfd\xb0\ \x4c\x9e\xcc\xdb\xc7\xfb\xdb\x13\xb7\xbf\xf2\x29\xb1\x3c\x23\x92\ \xfc\xf9\x40\xd4\x36\x0f\x1a\x00\xf4\xfb\x61\xb3\xf2\x78\xfb\xb1\ \xf3\xa2\xea\x94\x07\x2d\x16\xa8\x4b\x5e\x1d\x1b\x00\xf4\xc3\x60\ \xb3\x94\x78\x47\x03\x40\xe8\xbc\x12\x21\xf5\x93\xa8\x2b\xde\x89\ \xdb\xef\x7f\x74\x3d\x3e\xf8\x2d\xab\x66\x9e\xfa\x69\xf7\x83\x3c\ \xc7\xfa\x98\xb7\x91\x37\xbc\x38\x92\xe4\x59\x2a\xe9\x9f\x0f\xa9\ \xba\xe0\x89\x07\x80\x12\xfd\x30\x59\xf9\xbc\x69\xec\xbc\x88\x24\ \xf5\x43\x04\xf3\xa0\xc5\x11\xc1\x9b\x47\x84\xf2\xea\xd0\x00\x50\ \x26\x0c\xb6\x95\x78\xcd\x00\x10\x3b\x6f\x4c\x68\xfd\x62\xea\x9a\ \xb7\xb3\x7b\xf5\x33\x16\xb5\xfa\x5b\xab\x76\x8e\xfa\x69\xf7\x83\ \x3c\xd0\x5b\xc8\xab\x46\x97\x5f\x75\xea\xd6\x5b\x1f\x25\xcd\x73\ \x4c\xe8\x9f\x8f\x98\xba\xe2\x89\x06\x80\x02\xfd\xb0\x58\x2a\xbc\ \xbd\xe3\x01\xc0\x77\x5e\xa9\xa4\xf5\x93\x2a\x89\x07\x2d\x0e\x28\ \x69\xf3\x80\x52\x78\xb5\x6f\x00\x28\x16\x86\x72\xbc\x66\x00\x30\ \xcf\x87\x28\xa5\x7e\x21\xf5\x85\x37\x18\xcf\xbf\x49\x52\x3f\xed\ \x7e\x90\x07\x78\x0b\x79\xd5\x68\xef\xf7\x6f\xbe\xed\xa5\x1f\x8f\ \xe6\xd9\xa7\xd4\x3f\x1f\x3e\x75\xc9\x8b\x0e\x00\x05\xfa\x61\xb1\ \xd4\x78\xd7\x06\x80\xd0\x79\x25\x42\xea\x27\x51\x32\x0f\x5a\xec\ \x51\xf2\xe6\x1e\xa5\xf2\x6a\xd7\x00\x50\x34\x0c\x25\x79\x53\xeb\ \x93\x00\xa5\x4a\xad\x9f\x4f\x7d\xe3\xd5\xbb\xf3\x0b\xf1\xfa\x69\ \xf7\x83\x3c\x91\xb7\x90\x37\x18\x5d\x79\xc7\x89\xdb\x7f\xe5\x33\ \x53\xf3\x6c\x2a\xf7\xcf\x87\xa9\xae\x79\xc1\x01\xa0\x40\x3f\x2c\ \x96\x2a\x6f\x6f\x1a\x3b\x6f\x4c\x68\xfd\x62\xca\xe2\x41\x8b\x1d\ \xca\xda\xdc\xa1\x1c\x5e\x6d\x0e\x00\x56\xf3\xb4\xc3\x50\x90\xe7\ \xf8\x28\x60\x89\x72\xea\xe7\x52\x5f\x79\x8b\xfa\x7d\x7f\xb0\x7e\ \x66\xad\x25\x26\x8f\x3c\xc4\xd7\x78\xef\xac\xee\x7c\x75\x9d\x9b\ \xe7\x23\x69\xfd\xf9\x38\x52\x1f\x78\xde\x01\xa0\x4c\x3f\x6c\xeb\ \xf2\xa6\xe6\xf9\x10\xa5\xd4\x2f\x24\x6d\x1e\x24\xed\xcd\x73\x79\ \xf5\xf2\x00\xe0\x6e\x9e\x76\x18\xca\xf1\x12\x06\x80\xdc\xfa\x99\ \xea\x37\xef\xa1\xeb\xab\x73\x7b\xdf\xef\xad\x1f\xea\x58\x3f\x50\ \x93\xb7\xf1\xbc\x6a\xb4\xf7\x37\x27\xcf\xfe\xda\x17\xe8\xe4\x59\ \xfb\xcf\x47\x7f\x78\xce\x01\xa0\x40\x3f\x2c\x56\x19\x9e\xf5\x49\ \x80\x52\xa5\xd6\xcf\x27\x6d\x1e\x24\xed\xcd\x35\x78\xf5\xd1\x00\ \xe0\x6f\x9e\xdd\x68\x89\xbb\xe0\x81\x03\x80\x46\xfd\x96\xb5\x0e\ \xbc\x5b\x6e\xb9\xe5\x86\xea\xdc\xa5\xf7\x0f\x01\x25\xfb\x81\x98\ \xbc\x8d\xe7\xf1\xf2\x97\xf3\xac\x01\xa0\x40\x3f\x2c\x56\x39\x5e\ \xd2\x00\x90\x53\x3f\x97\xb4\x79\x90\xb4\x37\xd7\xe2\x35\xcd\x89\ \x34\x0f\x77\x57\x3c\x60\x00\xd0\xaa\xdf\x91\xd6\x89\x77\x6d\x08\ \xd8\xbb\xf6\x9f\x03\xcc\x5a\x4b\x2c\xed\x87\xd4\xe4\x6d\x3c\x8f\ \x97\x3f\xc6\x5b\x19\x00\x0a\xf4\xc3\x62\x95\xe5\xc1\x03\x40\x6e\ \xfd\x4c\x69\xf3\x20\x69\x6f\xae\xc9\xab\x9b\xdf\x06\x68\x36\xae\ \x6c\x18\x30\x23\x3c\xe1\x00\xa0\x59\xbf\x46\xeb\xc9\x7b\xe8\xfa\ \x9d\xc9\xc1\xff\x65\xd5\x30\x66\xa4\x1f\x12\x93\xb7\xf1\x3c\x5e\ \xfe\x38\xef\x78\x00\x28\xd0\x0f\x8b\x55\x9e\x07\x0d\x00\x1a\xf5\ \x5b\x96\x36\x0f\x92\xf6\xe6\xda\xbc\x45\xb3\xa6\x91\xe6\xc9\x2d\ \x0b\x83\xdc\x28\x4f\x30\x00\x68\xd7\x6f\xbd\x79\xe0\x10\x80\xf6\ \x23\x66\xf2\x36\x9e\xc7\xcb\x3f\x8d\x77\x38\x00\x14\xe8\x87\xc5\ \x6a\x87\x27\x1e\x00\xb4\xea\x77\xa4\x12\x3c\xf3\x6b\x5e\x95\xd8\ \x5c\x9b\xd7\xfc\x88\x46\xa4\x79\x32\xcb\xc3\x20\x73\x0a\x2f\x32\ \x00\x94\xa8\xdf\xfa\xf3\x84\x43\x40\x4a\x3f\x42\x26\x6f\xe3\x79\ \xbc\xfc\xd3\x79\x87\xbf\x0d\xd0\xec\x45\x66\x3f\x2c\x56\x7b\x3c\ \xd1\x00\xa0\x59\xbf\x46\xa5\x78\xe6\xd7\x9d\x2a\xb5\xb9\x36\x6f\ \x65\x00\x70\x37\x2f\x6e\x2c\x0c\x71\xa7\xf2\x02\x03\x40\xa9\xfa\ \x6d\x06\x2f\x32\x04\xa4\xf6\xc3\x67\xf2\x36\x9e\xc7\xcb\x3f\x8f\ \xd7\x7c\xa8\x99\x66\x3f\x2c\x56\xbb\xbc\xe8\x00\xa0\x5d\xbf\x92\ \x3c\xf3\x35\x4b\x25\x37\xd7\xe6\x1d\x0f\x00\xfe\xe6\x85\x8d\x87\ \x21\xec\x1c\x9e\x67\x00\x28\x59\xbf\xcd\xe1\x79\x86\x80\x9c\x7e\ \xb8\x4c\xde\xc6\xf3\x78\xf9\xe7\xf3\xac\x01\x20\xa3\x1f\x56\x6f\ \xdb\xe7\x05\x07\x80\x12\xf5\x2b\xc9\x33\x5f\x5f\x91\xb9\x58\x7b\ \x73\x6d\x5e\xdd\x7c\x0f\x40\xb8\x79\x7e\xa7\x85\xc1\xef\x5c\x9e\ \x63\x00\x30\xcf\xab\x5d\xbf\xcd\xe2\x19\x43\x40\x6e\x3f\x4c\x93\ \xb7\xf1\x3c\x5e\xfe\x3a\xbc\x95\x01\x20\xa3\x1f\x56\x6f\xbb\xe1\ \x79\x07\x80\x52\xf5\xeb\x84\x07\x2d\x16\xa8\x0d\x5e\xdd\xfc\x14\ \x80\xdd\xb0\xb8\xd3\xc3\xe0\xb6\x06\xcf\x18\x00\x5c\xe7\x5d\x7e\ \x1d\xd5\x76\xf0\x1e\x1e\x02\x34\xfa\xb1\xd2\x1b\xf2\x36\x9d\xc7\ \xcb\x5f\x8f\x77\x3c\x00\x64\xf4\xc3\xea\x6d\x77\x3c\xe7\x00\x50\ \xb2\x7e\xad\xf3\xa0\xc5\x02\xb5\xc5\x6b\x9a\xe3\x68\x58\xd8\x79\ \x61\xb0\xad\xc5\x5b\x1a\x00\x7c\xe7\x4d\xd5\x76\xf1\xf8\x89\x81\ \xe4\x01\x1e\xf3\xf2\xd7\xe6\x1d\x0e\x00\x19\xfd\xb0\x7a\x9b\xd9\ \x5f\x8b\x85\xf1\xac\x01\xc0\x3c\xaf\x76\xfd\x5a\xe5\x41\x8b\x05\ \x6a\x93\xd7\x34\xc7\xd1\x30\xbf\xf3\xc3\x50\x8e\xf7\xf0\x00\x10\ \x3a\x6f\x8a\xb6\x91\xc7\x4f\x0c\x24\x4f\xe4\x31\x2f\xff\x12\xbc\ \xc3\x9f\x02\x30\x6b\x2d\x71\x81\xfe\x5a\x2c\x9c\xb7\x32\x00\xb8\ \xce\xbb\xfc\x3a\xaa\x4e\x79\xd0\x62\x81\xda\xe6\x35\xcd\x71\x34\ \xcc\x6d\x9d\x30\x14\xe4\x4d\xcf\xc4\xce\x8b\x6a\x9b\x79\xfc\xc4\ \x40\xd0\x5b\xc8\xe3\xe5\x5f\x86\x67\x7d\x14\xb0\xc4\x05\xfa\x6b\ \xb1\xd2\x78\xc7\x03\x80\xef\xbc\xa9\xea\x94\x07\x2d\x16\xa8\x0b\ \x5e\xd3\x1c\x47\xc3\x6c\xeb\x85\xa1\x18\xaf\xf9\x67\xb3\xd8\x79\ \x11\x49\xea\x87\x68\x3d\x79\x9e\x9f\x0e\x88\xb9\x40\x7f\x2d\x16\ \x79\x72\x17\xe0\xf1\xf2\x2f\xc7\x83\x07\x80\x02\xfd\xb5\x58\xe9\ \xbc\xc3\x01\x20\x74\xde\x14\x75\xca\x83\x16\x0b\xd4\x15\xaf\x69\ \x8e\xa3\x61\xab\xd6\x0d\x43\x31\xde\xf2\x00\xe0\x3b\xaf\x54\xd2\ \xfa\x49\xb5\xde\x3c\x70\x08\x28\xd4\x5f\xcb\xe4\xc9\x5c\x80\xc7\ \xcb\xbf\x2c\x0f\x1a\x00\x0a\xf4\xd7\x62\xe5\xf1\xf6\x63\xe7\x45\ \xd5\x29\x0f\x5a\x2c\x50\x97\xbc\x3a\x36\x00\xe8\x87\xc1\x66\x29\ \xf1\x8e\x06\x80\xd0\x79\x25\x42\xea\x27\xd1\x66\xf0\x84\x43\x40\ \xc1\xfe\x92\xe7\x58\x1f\x73\x01\x1e\x2f\xff\xf2\x3c\xf1\x00\x50\ \xa0\xbf\x16\x2b\x9f\x37\x8d\x9d\x17\x91\xa4\x7e\x88\x60\x1e\xb4\ \x38\x22\x78\xf3\x88\x50\x5e\x1d\x1a\x00\xca\x84\xc1\xb6\x12\xaf\ \x19\x00\x62\xe7\x8d\x09\xad\x5f\x4c\x9b\xc5\x8b\x0c\x01\x85\xfb\ \x4b\x1e\xe8\x02\x3c\x5e\xfe\xed\xf0\x44\x03\x40\x81\xfe\x5a\x2c\ \x15\xde\xde\xf1\x00\xe0\x3b\xaf\x54\xd2\xfa\x49\x95\xc4\x83\x16\ \x07\x94\xb4\x79\x40\x29\xbc\xda\x37\x00\x14\x0b\x43\x39\x5e\x33\ \x00\x98\xe7\x43\x94\x52\xbf\x90\x36\x93\xe7\x19\x02\x1c\xfd\xd0\ \xee\x2f\x79\x80\x0b\xf0\x78\xf9\xb7\xc7\x8b\x0e\x00\x05\xfa\x6b\ \xb1\xd4\x78\xd7\x06\x80\xd0\x79\x25\x42\xea\x27\x51\x32\x0f\x5a\ \xec\x51\xf2\xe6\x1e\xa5\xf2\x6a\xd7\x00\x50\x34\x0c\x25\x79\x53\ \xeb\x93\x00\xa5\x4a\xad\x9f\x4f\x9b\xcd\xe3\x27\x06\x5a\xac\x0d\ \xe7\xf1\xf2\x6f\x97\x17\x1c\x00\x0a\xf4\xd7\x62\xa9\xf2\xf6\xa6\ \xb1\xf3\xc6\x84\xd6\x2f\xa6\x2c\x1e\xb4\xd8\xa1\xac\xcd\x1d\xca\ \xe1\xd5\xe6\x00\x60\x35\x4f\x3b\x0c\x05\x79\x8e\x8f\x02\x96\x28\ \xa7\x7e\x2e\x6d\x07\x8f\x9f\x18\xb8\x2d\x3c\x5e\xfe\xed\xf3\xbc\ \x03\x40\x81\xfe\x5a\x2c\x7d\xde\xd4\x3c\x1f\xa2\x94\xfa\x85\xa4\ \xcd\x83\xa4\xbd\x79\x2e\xaf\x5e\x1e\x00\xdc\xcd\xd3\x0e\x43\x39\ \x5e\xc2\x00\x90\x5b\x3f\x53\xdb\xc5\xe3\x27\x06\x6e\x3a\x8f\x97\ \x7f\x37\x3c\xe7\x00\x50\xa0\xbf\x16\xab\x0c\xcf\xfa\x24\x40\xa9\ \x52\xeb\xe7\x93\x36\x0f\x92\xf6\xe6\x1a\xbc\xfa\x68\x00\xf0\x37\ \xcf\x6e\xb4\xc4\x5d\xf0\xc0\x01\x40\xa3\x7e\xcb\xda\x46\x1e\x3f\ \x31\x70\x73\x79\xbc\xfc\xbb\xe3\x59\x03\x40\x81\xfe\x5a\xac\x72\ \xbc\xa4\x01\x20\xa7\x7e\x2e\x69\xf3\x20\x69\x6f\xae\xc5\x6b\x9a\ \x13\x69\x1e\xee\xae\x78\xc0\x00\xa0\x55\xbf\x23\x6d\x33\x8f\x9f\ \x18\x08\x7a\x0d\x78\xbc\xfc\xbb\xe5\xad\x0c\x00\x05\xfa\x6b\xb1\ \xca\xf2\xe0\x01\x20\xb7\x7e\xa6\xb4\x79\x90\xb4\x37\xd7\xe4\xd5\ \xcd\x6f\x03\x34\x1b\x57\x36\x0c\x98\x11\x9e\x70\x00\xd0\xac\x5f\ \x23\xf2\x1a\x9e\xe7\xa7\x03\x62\x46\xfa\x2b\x31\x79\xd9\x3c\x5e\ \xfe\xdd\xf3\x8e\x07\x80\x02\xfd\xb5\x58\xe5\x79\xd0\x00\xa0\x51\ \xbf\x65\x69\xf3\x20\x69\x6f\xae\xcd\x5b\x34\x6b\x1a\x69\x9e\xdc\ \xb2\x30\xc8\x8d\xf2\x04\x03\x80\x76\xfd\xc8\x5b\xe6\x81\x43\x00\ \xda\xdf\x98\xc9\xcb\xe6\xf1\xf2\xef\x07\xef\x70\x00\x28\xd0\x5f\ \x8b\xd5\x0e\x4f\x3c\x00\x68\xd5\xef\x48\x25\x78\xe6\xd7\xbc\x2a\ \xb1\xb9\x36\xaf\xf9\x11\x8d\x48\xf3\x64\x96\x87\x41\xe6\x14\x5e\ \x64\x00\x28\x51\x3f\xf2\x4c\x09\x87\x80\x94\xfe\x86\x4c\x5e\x36\ \x8f\x97\x7f\x7f\x78\x87\xbf\x0d\xd0\xec\x6d\x66\x7f\x2d\x56\x7b\ \x3c\xd1\x00\xa0\x59\xbf\x46\xa5\x78\xe6\xd7\x9d\x2a\xb5\xb9\x36\ \x6f\x65\x00\x70\x37\x2f\x6e\x2c\x0c\x71\xa7\xf2\x02\x03\x40\xa9\ \xfa\x91\xe7\x52\x64\x08\x48\xed\xaf\xcf\xe4\x65\xf3\x78\xf9\xf7\ \x8b\xd7\x7c\xa8\x99\x66\x7f\x2d\x56\xbb\xbc\xe8\x00\xa0\x5d\xbf\ \x92\x3c\xf3\x35\x4b\x25\x37\xd7\xe6\x1d\x0f\x00\xfe\xe6\x85\x8d\ \x87\x21\xec\x1c\x9e\x67\x00\x28\x59\x3f\xf2\x7c\xf2\x0c\x01\x39\ \xfd\x75\x99\x3c\x0d\xde\x3b\xab\x3b\x5f\x5d\x63\xfd\xf5\x2b\x2d\ \x2f\x7e\x6d\x23\xcf\x1a\x00\xf2\xfa\x6b\xbb\x5d\x5e\x70\x00\x28\ \x51\xbf\x92\x3c\xf3\xf5\x15\x99\x8b\xb5\x37\xd7\xe6\xd5\xcd\xf7\ \x00\x84\x9b\xe7\x77\x5a\x18\xfc\xce\xe5\x39\x06\x00\xf3\xbc\xda\ \xf5\x23\x2f\x24\x7e\x62\xa0\xc5\xea\x1f\x8f\x97\x7f\x86\x4a\xf1\ \x56\x06\x80\xbc\xfe\xda\x6e\x9f\xe7\x1d\x00\x4a\xd5\xaf\x13\x1e\ \xb4\x58\xa0\x36\x78\x75\xf3\x53\x00\x76\xc3\xe2\x4e\x0f\x83\xdb\ \x1a\x3c\x63\x00\x70\x9d\x77\xf9\x75\x54\xe4\xa5\xf0\xf8\x89\x81\ \x3d\xe6\xf1\xf2\xcf\x50\x49\xde\xf1\x00\x90\xd7\x5f\xdb\xdd\xf0\ \x9c\x03\x40\xc9\xfa\xb5\xce\x83\x16\x0b\xd4\x16\xaf\x69\x8e\xa3\ \x61\x61\xe7\x85\xc1\xb6\x16\x6f\x69\x00\xf0\x9d\x37\x55\xe4\xe5\ \xf0\xf8\x89\x81\x3d\xe4\xf1\xf2\xcf\x50\x69\xde\xe1\x00\x90\xd7\ \x5f\xdb\xdd\xf1\xac\x01\xc0\x3c\xaf\x76\xfd\x5a\xe5\x41\x8b\x05\ \x6a\x93\xd7\x34\xc7\xd1\x30\xbf\xf3\xc3\x50\x8e\xf7\xf0\x00\x10\ \x3a\x6f\x8a\xc8\xcb\xe7\xf1\x13\x03\x7b\xc5\xe3\xe5\x9f\xa1\x36\ \x78\x87\x3f\x05\x60\xf6\x4e\xe2\x32\x79\xb1\x8d\xf1\x56\x06\x00\ \xd7\x79\x97\x5f\x47\xd5\x29\x0f\x5a\x2c\x50\xdb\xbc\xa6\x39\x8e\ \x86\xb9\xad\x13\x86\x82\xbc\xe9\x99\xd8\x79\x51\x91\xa7\xc7\xe3\ \x27\x06\x82\x2e\xc3\xe3\xe5\x9f\xa1\xb6\x78\xd6\x47\x01\x4b\x5c\ \x26\x2f\xb6\x71\xde\xf1\x00\xe0\x3b\x6f\xaa\x3a\xe5\x41\x8b\x05\ \xea\x82\xd7\x34\xc7\xd1\x30\xdb\x7a\x61\x28\xc6\x6b\xfe\xd9\x2c\ \x76\x5e\x44\x92\xfa\x21\x22\xaf\xe1\x79\x7e\x3a\x20\xe6\x02\x79\ \xb1\x58\x9b\xcf\xe3\xe5\x9f\xa1\x36\x79\xf0\x00\x50\x26\x2f\xb6\ \xd3\x78\x87\x03\x40\xe8\xbc\x29\xea\x94\x07\x2d\x16\xa8\x2b\x5e\ \xd3\x1c\x47\xc3\x56\xad\x1b\x86\x62\xbc\xe5\x01\xc0\x77\x5e\xa9\ \xa4\xf5\x93\x8a\xbc\x65\x1e\x38\x04\x14\xca\x8b\xe5\xcd\xe6\xf1\ \xf2\xcf\x50\xdb\x3c\x68\x00\x28\x93\x17\xdb\xe9\xbc\xfd\xd8\x79\ \x51\x75\xca\x83\x16\x0b\xd4\x25\xaf\x8e\x0d\x00\xfa\x61\xb0\x59\ \x4a\xbc\xa3\x01\x20\x74\x5e\x89\x90\xfa\x49\x44\x9e\x8b\x27\x1c\ \x02\x0a\xe6\x65\x8b\x78\xbc\xfc\x33\xd4\x05\x4f\x3c\x00\x94\xc9\ \x8b\xed\x3c\xde\x34\x76\x5e\x44\x92\xfa\x21\x82\x79\xd0\xe2\x88\ \xe0\xcd\x23\x42\x79\x75\x68\x00\x28\x13\x06\xdb\x4a\xbc\x66\x00\ \x88\x9d\x37\x26\xb4\x7e\x31\x91\x17\xe2\x45\x86\x80\xc2\x79\xd9\ \x12\x1e\x2f\xff\x0c\x75\xc5\x13\x0d\x00\x65\xf2\x62\x3b\x9b\xb7\ \x77\x3c\x00\xf8\xce\x2b\x95\xb4\x7e\x52\x25\xf1\xa0\xc5\x01\x25\ \x6d\x1e\x50\x0a\xaf\xf6\x0d\x00\xc5\xc2\x50\x8e\xd7\x0c\x00\xe6\ \xf9\x10\xa5\xd4\x2f\x24\xf2\x24\x3c\xcf\x10\xe0\xe8\xaf\x76\x5e\ \xb6\x80\xc7\xcb\x3f\x43\x5d\xf2\xa2\x03\x40\x99\xbc\xd8\x56\xe1\ \x5d\x1b\x00\x42\xe7\x95\x08\xa9\x9f\x44\xc9\x3c\x68\xb1\x47\xc9\ \x9b\x7b\x94\xca\xab\x5d\x03\x40\xd1\x30\x94\xe4\x4d\xad\x4f\x02\ \x94\x2a\xb5\x7e\x3e\x91\x87\xf0\xf8\x89\x81\x16\x2b\x9f\xc7\xcb\ \x3f\x43\x5d\xf3\x82\x03\x40\x99\xbc\xd8\x56\xe3\xed\x4d\x63\xe7\ \x8d\x09\xad\x5f\x4c\x59\x3c\x68\xb1\x43\x59\x9b\x3b\x94\xc3\xab\ \xcd\x01\xc0\x6a\x9e\x76\x18\x0a\xf2\x1c\x1f\x05\x2c\x51\x4e\xfd\ \x5c\x22\x2f\x85\xc7\x4f\x0c\x54\xe4\xf1\xf2\xcf\x50\x1f\x78\xde\ \x01\xa0\x4c\x5e\x6c\xeb\xf2\xa6\xe6\xf9\x10\xa5\xd4\x2f\x24\x6d\ \x1e\x24\xed\xcd\x73\x79\xf5\xf2\x00\xe0\x6e\x9e\x76\x18\xca\xf1\ \x12\x06\x80\xdc\xfa\x99\x22\x2f\x87\xc7\x4f\x0c\x54\xe0\xf1\xf2\ \xcf\x50\x5f\x78\xce\x01\xa0\x4c\x5e\x6c\xeb\xf3\xac\x4f\x02\x94\ \x2a\xb5\x7e\x3e\x69\xf3\x20\x69\x6f\xae\xc1\xab\x8f\x06\x00\x7f\ \xf3\xec\x46\x4b\xdc\x05\x0f\x1c\x00\x34\xea\xb7\x2c\xf2\xf2\x79\ \xfc\xc4\xc0\x2c\x1e\x2f\xff\x0c\xf5\x89\x67\x0d\x00\x65\xf2\x62\ \xbb\x0c\x2f\x69\x00\xc8\xa9\x9f\x4b\xda\x3c\x48\xda\x9b\x6b\xf1\ \x9a\xe6\x44\x9a\x87\xbb\x2b\x1e\x30\x00\x68\xd5\xef\x48\xe4\xe9\ \xf1\xf8\x89\x81\xa0\xaf\xf1\x78\xf9\x67\xa8\x6f\xbc\x95\x01\xa0\ \x4c\x5e\x6c\x97\xe3\xc1\x03\x40\x6e\xfd\x4c\x69\xf3\x20\x69\x6f\ \xae\xc9\xab\x9b\xdf\x06\x68\x36\xae\x6c\x18\x30\x23\x3c\xe1\x00\ \xa0\x59\xbf\x46\xe4\x95\xe0\x79\x7e\x3a\x20\x66\x24\x2f\x12\xaf\ \x07\x8f\x97\x7f\x86\xfa\xc8\x3b\x1e\x00\xca\xe4\xc5\x76\x59\x1e\ \x34\x00\x68\xd4\x6f\x59\xda\x3c\x48\xda\x9b\x6b\xf3\x16\xcd\x9a\ \x46\x9a\x27\xb7\x2c\x0c\x72\xa3\x3c\xc1\x00\xa0\x5d\x3f\xf2\x4a\ \xf2\xc0\x21\x00\xcd\x4b\xcc\xeb\xc1\xe3\xe5\x9f\xa1\xbe\xf2\x0e\ \x07\x80\x32\x79\xb1\x5d\x9e\x27\x1e\x00\xb4\xea\x77\xa4\x12\x3c\ \xf3\x6b\x5e\x95\xd8\x5c\x9b\xd7\xfc\x88\x46\xa4\x79\x32\xcb\xc3\ \x20\x73\x0a\x2f\x32\x00\x94\xa8\x1f\x79\xe9\x92\xf1\x84\x43\x40\ \x4a\x5e\x42\x5e\x0f\x1e\x2f\xff\x0c\xf5\x99\x77\xf8\xdb\x00\xcd\ \xac\xe4\xe7\xc5\x76\x3b\x3c\xd1\x00\xa0\x59\xbf\x46\xa5\x78\xe6\ \xd7\x9d\x2a\xb5\xb9\x36\x6f\x65\x00\x70\x37\x2f\x6e\x2c\x0c\x71\ \xa7\xf2\x02\x03\x40\xa9\xfa\x91\x97\x26\x8c\x17\x19\x02\x52\xf3\ \xe2\xf3\x7a\xf0\x78\xf9\x67\xa8\xef\xbc\xe6\x43\xcd\x94\xf3\x62\ \xbb\x3d\x5e\x74\x00\xd0\xae\x5f\x49\x9e\xf9\x9a\xa5\x92\x9b\x6b\ \xf3\x8e\x07\x00\x7f\xf3\xc2\xc6\xc3\x10\x76\x0e\xcf\x33\x00\x94\ \xac\x1f\x79\xb8\xd2\x78\x9e\x21\x20\x27\x2f\x2e\xaf\x07\x8f\x97\ \x7f\x86\xd6\x81\x67\x0d\x00\x79\x79\xb1\xdd\x2e\x2f\x38\x00\x94\ \xa8\x5f\x49\x9e\xf9\xfa\x8a\xcc\xc5\xda\x9b\x6b\xf3\xea\xe6\x7b\ \x00\xc2\xcd\xf3\x3b\x2d\x0c\x7e\xe7\xf2\x1c\x03\x80\x79\x5e\xed\ \xfa\x91\x87\x29\x8f\xc7\x4f\x0c\xac\x79\xf9\x6f\x05\x6f\x65\x00\ \xc8\xcb\x8b\xed\xf6\x79\xde\x01\xa0\x54\xfd\x3a\xe1\x41\x8b\x05\ \x6a\x83\x57\x37\x3f\x05\x60\x37\x2c\xee\xf4\x30\xb8\xad\xc1\x33\ \x06\x00\xd7\x79\x97\x5f\x47\x45\x5e\x1f\x78\x5b\xfd\x89\x81\xbc\ \xfc\x33\xb4\x4e\xbc\xe3\x01\x20\x2f\x2f\xb6\xbb\xe1\x39\x07\x80\ \x92\xf5\x6b\x9d\x07\x2d\x16\xa8\x2d\x5e\xd3\x1c\x47\xc3\xc2\xce\ \x0b\x83\x6d\x2d\xde\xd2\x00\xe0\x3b\x6f\xaa\xc8\xeb\x13\x6f\x2b\ \x3f\x31\x90\x97\x7f\x86\xd6\x8d\x77\x38\x00\xe4\xe5\xc5\x76\x77\ \x3c\x6b\x00\x30\xcf\xab\x5d\xbf\x56\x79\xd0\x62\x81\xda\xe4\x35\ \xcd\x71\x34\xcc\xef\xfc\x30\x94\xe3\x3d\x3c\x00\x84\xce\x9b\x22\ \xf2\xfa\xc7\xdb\xb2\x4f\x0c\xe4\xe5\x9f\xa1\x75\xe4\x1d\xfe\x14\ \x80\x99\x05\x89\xcb\xe4\xcf\x36\xc6\x5b\x19\x00\x5c\xe7\x5d\x7e\ \x1d\x55\xa7\x3c\x68\xb1\x40\x6d\xf3\x9a\xe6\x38\x1a\xe6\xb6\x4e\ \x18\x0a\xf2\xa6\x67\x62\xe7\x45\x45\x5e\x7f\x79\x5b\xf2\x89\x81\ \xbc\xfc\x33\xb4\xae\x3c\xeb\xa3\x80\x25\x2e\x93\x3f\xdb\x38\xef\ \x78\x00\xf0\x9d\x37\x55\x9d\xf2\xa0\xc5\x02\x75\xc1\x6b\x9a\xe3\ \x68\x98\x6d\xbd\x30\x14\xe3\x35\xff\x6c\x16\x3b\x2f\x22\x49\xfd\ \x10\x91\x57\x82\xe7\xf9\xe9\x80\x98\x0b\xe4\xcf\x62\xe5\xf3\x78\ \xf9\x67\x68\x9d\x79\xf0\x00\x50\x26\x7f\xb6\xd3\x78\x87\x03\x40\ \xe8\xbc\x29\xea\x94\x07\x2d\x16\xa8\x2b\x5e\xd3\x1c\x47\xc3\x56\ \xad\x1b\x86\x62\xbc\xe5\x01\xc0\x77\x5e\xa9\xa4\xf5\x93\x8a\xbc\ \x92\x3c\x70\x08\x28\x94\x3f\xcb\x79\x3c\x5e\xfe\x19\x5a\x77\x1e\ \x34\x00\x94\xc9\x9f\xed\x74\xde\x7e\xec\xbc\xa8\x3a\xe5\x41\x8b\ \x05\xea\x92\x57\xc7\x06\x00\xfd\x30\xd8\x2c\x25\xde\xd1\x00\x10\ \x3a\xaf\x44\x48\xfd\x24\x22\xaf\x0d\x9e\x70\x08\x28\x98\x3f\x45\ \x1e\x2f\xff\x0c\x6d\x02\x4f\x3c\x00\x94\xc9\x9f\xed\x3c\xde\x34\ \x76\x5e\x44\x92\xfa\x21\x82\x79\xd0\xe2\x88\xe0\xcd\x23\x42\x79\ \x75\x68\x00\x28\x13\x06\xdb\x4a\xbc\x66\x00\x88\x9d\x37\x26\xb4\ \x7e\x31\x91\xd7\x26\x2f\x32\x04\x14\xce\x9f\x12\x8f\x97\x7f\x86\ \x36\x85\x27\x1a\x00\xca\xe4\xcf\x76\x36\x6f\xef\x78\x00\xf0\x9d\ \x57\x2a\x69\xfd\xa4\x4a\xe2\x41\x8b\x03\x4a\xda\x3c\xa0\x14\x5e\ \xed\x1b\x00\x8a\x85\xa1\x1c\xaf\x19\x00\xcc\xf3\x21\x4a\xa9\x5f\ \x48\xe4\x75\xc1\xf3\x0c\x01\x8e\xbc\x68\xe7\x4f\x81\xc7\xcb\x3f\ \x43\x9b\xc4\x8b\x0e\x00\x65\xf2\x67\x5b\x85\x77\x6d\x00\x08\x9d\ \x57\x22\xa4\x7e\x12\x25\xf3\xa0\xc5\x1e\x25\x6f\xee\x51\x2a\xaf\ \x76\x0d\x00\x45\xc3\x50\x92\x37\xb5\x3e\x09\x50\xaa\xd4\xfa\xf9\ \x44\x5e\x97\xbc\xb5\xfc\xc4\x40\x5e\xfe\x19\xda\x34\x5e\x70\x00\ \x28\x93\x3f\xdb\x6a\xbc\xbd\x69\xec\xbc\x31\xa1\xf5\x8b\x29\x8b\ \x07\x2d\x76\x28\x6b\x73\x87\x72\x78\xb5\x39\x00\x58\xcd\xd3\x0e\ \x43\x41\x9e\xe3\xa3\x80\x25\xca\xa9\x9f\x4b\xe4\xf5\x81\xb7\x56\ \x9f\x18\xc8\xcb\x3f\x43\x9b\xc8\xf3\x0e\x00\x65\xf2\x67\x5b\x97\ \x37\x35\xcf\x87\x28\xa5\x7e\x21\x69\xf3\x20\x69\x6f\x9e\xcb\xab\ \x97\x07\x00\x77\xf3\xb4\xc3\x50\x8e\x97\x30\x00\xe4\xd6\xcf\x14\ \x79\x7d\xe2\xad\xc5\x27\x06\xf2\xf2\xcf\xd0\xa6\xf2\x9c\x03\x40\ \x99\xfc\xd9\xd6\xe7\x59\x9f\x04\x28\x55\x6a\xfd\x7c\xd2\xe6\x41\ \xd2\xde\x5c\x83\x57\x1f\x0d\x00\xfe\xe6\xd9\x8d\x96\xb8\x0b\x1e\ \x38\x00\x68\xd4\x6f\x59\xe4\xf5\x8f\xd7\xf3\x4f\x0c\xe4\xe5\x9f\ \xa1\x4d\xe6\x59\x03\x40\x99\xfc\xd9\x2e\xc3\x4b\x1a\x00\x72\xea\ \xe7\x92\x36\x0f\x92\xf6\xe6\x5a\xbc\xa6\x39\x91\xe6\xe1\xee\x8a\ \x07\x0c\x00\x5a\xf5\x3b\x12\x79\xfd\xe5\xf5\xf4\x13\x03\x79\xf9\ \x67\x68\xd3\x79\x2b\x03\x40\x99\xfc\xd9\x2e\xc7\x83\x07\x80\xdc\ \xfa\x99\xd2\xe6\x41\xd2\xde\x5c\x93\x57\x37\xbf\x0d\xd0\x6c\x5c\ \xd9\x30\x60\x46\x78\xc2\x01\x40\xb3\x7e\x8d\xc8\x5b\x07\x9e\xe7\ \xa7\x03\x62\x46\xf2\x27\x31\x2f\x7f\xf2\x04\x3a\x1e\x00\xca\xe4\ \xcf\x76\x59\x1e\x34\x00\x68\xd4\x6f\x59\xda\x3c\x48\xda\x9b\x6b\ \xf3\x16\xcd\x9a\x46\x9a\x27\xb7\x2c\x0c\x72\xa3\x3c\xc1\x00\xa0\ \x5d\x3f\xf2\xd6\x89\xf7\xd0\xf5\x8b\x9c\x7c\xbf\x95\x1b\x9f\xd1\ \xfc\xc5\xcc\xcb\x9f\x3c\xa1\x0e\x07\x80\x32\xf9\xb3\x5d\x9e\x27\ \x1e\x00\xb4\xea\x77\xa4\x12\x3c\xf3\x6b\x5e\x95\xd8\x5c\x9b\xd7\ \xfc\x88\x46\xa4\x79\x32\xcb\xc3\x20\x73\x0a\x2f\x32\x00\x94\xa8\ \x1f\x79\xe9\xea\x86\xb7\x18\x02\x76\xe7\x17\xac\xec\x98\x4e\xc9\ \x5f\xc8\xcd\xff\x6e\xb8\xf7\xf6\xfa\xec\x6b\x6f\x0e\xbf\x3f\xb9\ \x64\xe7\x95\x8b\xbc\xfe\xf0\x0e\x7f\x1b\xa0\x99\xbd\xdc\xfc\x99\ \xac\xf6\x78\xa2\x01\x40\xb3\x7e\x8d\x4a\xf1\xcc\xaf\x3b\x55\x6a\ \x73\x6d\xde\xca\x00\xe0\x6e\x5e\xdc\x58\x18\xe2\x4e\xe5\x05\x06\ \x80\x52\xf5\x23\x2f\x4d\x5d\xf3\x06\x93\xd9\x73\xab\xc9\xec\xef\ \xac\x0c\xe5\xe4\xcf\xe7\xc5\xff\xae\x1a\xee\xbd\xb1\x7a\xfe\x2b\ \x3e\x55\xfa\xfe\x62\x42\xcf\x1b\x13\x79\xfd\xe2\x35\x1f\x6a\xa6\ \x99\x3f\x8b\xd5\x2e\x2f\x3a\x00\x68\xd7\xaf\x24\xcf\x7c\xcd\x52\ \xc9\xcd\xb5\x79\xc7\x03\x80\xbf\x79\x61\xe3\x61\x08\x3b\x87\xe7\ \x19\x00\x4a\xd6\x8f\x3c\x5c\x7d\xe1\x0d\x76\xaf\x7e\xee\xe2\x6f\ \x5a\x6f\x52\xcb\x9f\xcb\xe3\xe9\xfb\xaa\x73\x97\xff\xe3\x33\xce\ \x7c\xd7\xe3\xd1\xf7\xe7\x53\xea\x79\x7d\x22\xaf\x7f\x3c\x6b\x00\ \x48\xce\x9f\x76\x9e\x93\x78\xc1\x01\xa0\x44\xfd\x4a\xf2\xcc\xd7\ \x57\x64\x2e\xd6\xde\x5c\x9b\x57\x37\xdf\x03\x10\x6e\x9e\xdf\x69\ \x61\xf0\x3b\x97\xe7\x18\x00\xcc\xf3\x6a\xd7\x8f\x3c\x4c\x7d\xe3\ \xdd\x72\xdb\x5b\x6e\x18\x4c\xe6\xbb\xd5\x64\xf6\x37\xd9\xf9\x33\ \xbc\x33\x9a\x4e\x4f\xde\xf9\x1b\x27\x73\xde\x9f\xa9\xdc\xf3\x9a\ \x22\xaf\x9f\xbc\x95\x01\x20\x31\x7f\xda\x79\xce\xe0\x79\x07\x80\ \x52\xf5\xeb\x84\x07\x2d\x16\xa8\x0d\x5e\xdd\xfc\x14\x80\xdd\xb0\ \xb8\xd3\xc3\xe0\xb6\x06\xcf\x18\x00\x5c\xe7\x5d\x7e\x1d\x15\x79\ \x9b\xcb\x1b\x4c\x5e\xf7\x84\x7a\x78\xf9\x3b\xab\xd1\x95\x3f\x4b\ \xce\xdf\xc3\xae\x86\xb3\x7b\x07\xa3\x2b\x5f\xf1\x94\x5b\x6e\xbb\ \x41\xeb\xfd\x35\xd2\x3c\x6f\x23\xf2\xfa\xcb\x3b\x1e\x00\x12\xf2\ \x77\x68\x8d\xe7\xa9\x1e\xcf\x39\x00\x94\xac\x5f\xeb\x3c\x68\xb1\ \x40\x6d\xf1\x9a\xe6\x38\x1a\x16\x76\x5e\x18\x6c\x6b\xf1\x96\x06\ \x00\xdf\x79\x53\x45\xde\x76\xf0\x4e\x3d\xef\xc2\x63\x06\x77\xbe\ \xee\x2b\xab\xd1\xa5\x9f\xac\xc6\xd3\xdf\xb7\x32\xe6\xf2\x78\xf6\ \xf7\xcd\xa5\x5f\x8d\x67\xff\xa2\x9e\x1c\x3c\x75\x99\xa7\xfd\xfe\ \xc8\x4b\xd3\xba\xf1\x0e\x07\x00\xf4\xf9\xf7\xfe\x3c\xda\xcf\xd2\ \x94\xe7\xa9\x1e\xcf\x1a\x00\xcc\xf3\x6a\xd7\xaf\x55\x1e\xb4\x58\ \xa0\x36\x79\x4d\x73\x1c\x0d\xf3\x3b\x3f\x0c\xe5\x78\xbb\xb3\x3b\ \x63\xe7\x4d\x11\x79\xdb\xcb\x3b\x71\xfe\xe0\x89\x83\xdd\xd9\x17\ \x5e\xfb\xb1\xac\x83\xd1\x60\x77\xfe\x6f\x06\x93\xd9\xb7\x37\x59\ \x1b\xec\x5e\xf9\x9a\x7a\x3c\xbd\xe9\xc4\xed\xf7\x3f\x5a\xca\x4b\ \x11\x79\xdb\xc7\x1b\xec\x4e\xcf\x59\xcf\x37\x89\x35\x9f\xa7\x7a\ \xbc\x95\x01\xc0\x75\xde\xe5\xd7\x51\x75\xca\x83\x16\x0b\xd4\x36\ \xaf\x69\x8e\xa3\x61\x6e\xeb\x84\xa1\x18\xaf\x1a\x4e\xbf\x3b\x76\ \x5e\x54\xe4\x91\x87\x88\x3c\xf2\x10\xf9\x78\x83\xc9\xfc\x25\xe6\ \xf3\x2d\x6a\xe5\xe7\xa9\x22\xef\x78\x00\xf0\x9d\x37\x55\x9d\xf2\ \xa0\xc5\x02\x75\xc1\x6b\x9a\xe3\x68\x98\x6d\xbd\x30\x14\xe3\x55\ \xe7\x2e\xff\x74\xec\xbc\x88\x24\xf5\x43\x44\x1e\x79\x88\xc8\xdb\ \x5e\xde\xe2\x99\xf6\x73\xd6\x33\x2e\xe4\x02\xcf\x53\x8b\x95\xce\ \x3b\x1c\x00\x42\xe7\x4d\x51\xa7\x3c\x68\xb1\x40\x5d\xf1\x9a\xe6\ \x38\x1a\xb6\x6a\xdd\x30\x14\xe3\x55\xc3\xcb\xbf\x17\x3b\xaf\x54\ \xd2\xfa\x49\x45\x1e\x79\x88\xc8\xdb\x62\xde\x85\x87\x3e\xa0\x1a\ \xcf\xdf\x66\x3d\xe7\x7c\x2e\xf4\x3c\xb5\x9c\xce\xdb\x0f\x9e\x37\ \x41\x9d\xf2\xa0\xc5\x02\x75\xc9\xab\x63\x03\x80\x7e\x18\x6c\x96\ \x22\x6f\xf0\xfc\x57\x3c\x2d\x74\x5e\x89\x90\xfa\x49\x44\x1e\x79\ \x88\xc8\xdb\x6e\x5e\x75\x7e\xfa\xf9\xd6\x73\xce\xe7\xc2\xcf\x53\ \x25\xde\x34\x74\x5e\x54\xb1\xfa\xa1\x82\x79\xd0\xe2\x88\xe0\xcd\ \x23\x42\x79\x75\x68\x00\x28\x13\x06\xdb\x8a\xbc\x9d\xb3\x17\x5f\ \x64\x9e\x11\x11\x5a\xbf\x98\xc8\x23\x0f\x11\x79\xe4\x2d\xfe\xf6\ \xff\x1f\xac\x67\x9d\xcb\x8e\xe7\x9f\xf6\xf3\x54\x87\xb7\x77\x3c\ \x00\xb8\xce\x8b\x48\x52\x3f\x44\x49\x3c\x68\x71\x40\x49\x9b\x07\ \x94\xc2\xab\x7d\x03\x40\xb1\x30\x94\xe5\x0d\xc6\xb3\x77\xdc\x7c\ \xe1\xd2\xe3\xcc\x73\x4a\x94\x52\xbf\x90\xc8\x23\x0f\x11\x79\xe4\ \x35\x3f\x75\x52\x8f\xe7\xef\xb2\x9e\x77\xa6\x3d\xcf\x3f\xed\xe7\ \xa9\x0e\xef\xda\x00\xe0\x3a\x2f\x22\x49\xfd\x10\x25\xf3\xa0\xc5\ \x1e\x25\x6f\xee\x51\x2a\xaf\x76\x0d\x00\x45\xc3\x50\x9e\xd7\xfc\ \x98\x96\x79\xce\x98\x52\xeb\xe7\x13\x79\xe4\x21\x22\x8f\xbc\x46\ \x8b\x67\xd8\x8f\x5a\xcf\x3b\xd3\x91\xe7\x1f\xec\xe2\xbc\xbd\xa9\ \xef\xbc\x52\x49\xeb\x27\x55\x16\x0f\x5a\xec\x50\xd6\xe6\x0e\xe5\ \xf0\x6a\x73\x00\xb0\x9a\xa7\x1d\x86\xf2\xbc\xe6\x97\xbc\xec\x8c\ \xe7\x9f\x67\x9e\xd5\xa7\x9c\xfa\xb9\x44\x1e\x79\x88\xc8\x23\xaf\ \x51\x3d\x9e\x7e\x55\x3d\x99\xbd\xcf\x7a\xe6\x81\xcf\x3f\xc8\xed\ \xf0\xa6\xe6\x59\x11\x49\xeb\x27\x95\x36\x0f\x92\xf6\xe6\xb9\xbc\ \x7a\x79\x00\x70\x37\x4f\x3b\x0c\x6d\xf1\xde\x3a\x98\xcc\x9e\x60\ \x9e\xd7\x54\x6e\xfd\x4c\x91\x47\x1e\x22\xf2\xc8\x6b\x54\x8f\x66\ \x9f\x75\xf8\xfb\x28\xec\xe7\x58\xea\xf3\x2f\xee\xf6\x78\xd6\x27\ \x01\x4a\x25\xad\x9f\x54\xda\x3c\x48\xda\x9b\x6b\xf0\xea\xa3\x01\ \xc0\xdf\x3c\xbb\xd1\x12\xf7\x81\x37\x9e\xbe\xb1\x1a\xed\x3f\xc9\ \x3c\xf3\x91\x34\xea\xb7\x2c\xf2\xc8\x43\x44\x1e\x79\x8d\x76\x26\ \xb3\x13\x8b\xe7\xd8\xdb\xad\xe7\x57\xee\xf3\x2f\xe4\x76\x79\x49\ \x03\x80\xb4\x7e\x52\x69\xf3\x20\x69\x6f\xae\xc5\x6b\x9a\x13\x69\ \x1e\xee\x3e\xf1\xc6\xb3\x3f\xac\xce\xcf\xfe\x91\x79\x6e\xad\xfa\ \x1d\x89\x3c\xf2\x10\x91\x47\xde\x75\xd7\x3d\x74\xfd\xe2\x6f\xfd\ \xcf\x6e\xfe\x93\xa5\xf5\xdc\xd2\x7a\xfe\xb9\xdc\x3e\x0f\x1e\x00\ \x64\xf5\x93\x4b\x9b\x07\x49\x7b\x73\x4d\x5e\xdd\xfc\x36\x40\xb3\ \x71\x65\xc3\x80\x59\x83\x37\x9e\x3d\xb8\x98\xb2\x7f\xea\xd4\xb9\ \xbd\x8f\x69\xce\xac\x59\xbf\x46\xe4\x91\x87\x88\x3c\xf2\x06\xe7\ \x0f\x9e\xbe\x78\x2e\xbd\xce\x7a\x56\x99\xd6\x78\xfe\x75\xcf\x83\ \x06\x00\x49\xfd\x10\x69\xf3\x20\x69\x6f\xae\xcd\x5b\x34\x6b\x1a\ \x69\x9e\xdc\xb2\x30\xc8\xad\xcd\x1b\xcd\xde\x55\x8d\xf6\x5e\x5a\ \xdf\xf9\xfa\x67\xed\x3c\xe7\xe7\x3f\x4a\xa3\x7e\xda\xfd\x20\x8f\ \x3c\x44\xe4\xad\x0b\xef\xa1\xeb\x4f\x4c\xf6\x3f\xad\xf9\x85\x52\ \xf5\x64\x76\x39\xfa\xcd\x7e\x8d\xb5\x9f\x7f\xdd\xf1\xc4\x03\x80\ \xbf\x7e\x69\x2a\xc1\x33\xbf\xe6\x55\x89\xcd\xb5\x79\xcd\x8f\x68\ \x44\x9a\x27\xb3\x3c\x0c\x32\xb7\xc1\x1b\xee\xbd\xbd\x1a\xcd\x1e\ \xa8\xaf\x7d\x1f\x04\xe6\x6b\xff\x72\x32\xbd\x56\xbf\x23\x2f\xfe\ \xef\xe6\xeb\xe6\x5a\x89\xb5\x79\xa3\xc5\x43\x66\xb4\xf7\x9a\x7a\ \x78\xe9\xbf\xec\x9c\xbd\xfc\x5d\x83\x73\xf7\xdd\x7a\xf2\xdc\xaf\ \x7e\x8a\x99\x01\x44\x25\xf2\x47\x5e\xba\xd6\x95\x77\xd3\x99\xfd\ \x0f\x3c\x79\x7e\xbe\x33\xd8\x9d\xdd\xb6\xb3\x3b\xff\x81\x7a\x3c\ \xfd\xe5\x6a\x34\x7d\xad\x95\xe1\x65\x6b\xff\xf9\x68\x91\x37\x18\ \xcf\xdf\x22\xfa\xd9\xfe\xd8\xf3\x4a\xfb\xf9\xd7\x1e\x4f\x34\x00\ \xf8\xf2\x92\xaa\x52\x3c\xf3\xeb\x4e\x95\xda\x5c\x9b\xf7\x70\x50\ \x43\xcd\x8b\x1b\x0b\x43\xdc\xe4\x15\xe3\x55\xe3\xd9\x7f\xdb\x19\ \xcd\xfe\xfd\xc9\xf1\xc1\xe7\x98\x99\x08\xa9\x54\xfe\xc8\x4b\xd3\ \xba\xf1\x9e\xf6\xac\xef\xf9\x90\xfa\xec\xf4\xab\x16\x17\xe1\xcf\ \x2f\x32\xf8\x3f\xac\xcc\x86\x1c\xc8\xb3\xb5\x56\x62\xf2\xda\xe6\ \x45\x07\x00\x33\x2f\xda\xf9\xd3\xe4\x99\xaf\x59\x2a\xb9\xb9\x36\ \xef\x78\x00\xf0\x37\x2f\x6c\x3c\x0c\x61\x93\xd7\x1a\xaf\x1a\xce\ \xee\xad\x27\x07\x5f\x66\xe6\xc3\x54\xc9\xfc\x91\x87\x6b\x9d\x78\ \x5f\xf2\xec\x1f\xf9\xf0\x9d\xd1\xc5\xe1\x22\x7f\x7f\x64\xe6\x4f\ \x64\x20\xcf\x22\x93\xd7\x05\x2f\x38\x00\x94\xcc\x5f\x09\x9e\xf9\ \xfa\x8a\xcc\xc5\xda\x9b\x6b\xf3\xea\x6b\xff\x4c\x65\x36\x4c\xe6\ \xb4\x30\xf8\x4d\x5e\x27\xbc\x6a\x3c\xff\x8d\xc1\xee\xf4\x69\x66\ \x56\x1a\x99\x79\xd1\xce\x1f\x79\x98\xd6\x89\x57\x9f\x7d\xfd\x57\ \x2d\xf2\xf7\xd6\x58\xfe\xbc\x4e\xcc\xb3\xd7\xe4\x75\xc5\xf3\x0e\ \x00\x25\xf3\xd7\x3a\x0f\x5a\x2c\x50\x1b\xbc\xfa\xda\x7f\xf3\x32\ \x1b\x16\x77\x7a\x18\xdc\x26\xaf\x53\xde\x62\x08\x78\x4f\xbd\x3b\ \xbf\x70\xfa\xf4\xdd\x8f\x08\xe5\x65\x39\x4f\xa8\xc8\xdb\x0e\xde\ \xa9\x33\x77\x7d\x64\x35\xbc\xfc\x73\x48\xfe\x2c\x67\xe6\xd9\x32\ \x79\x5d\xf2\x9c\x03\x40\xa9\xfc\x75\xc2\x83\x16\x0b\xd4\x16\xaf\ \x69\x8e\xa3\x61\x61\xe7\x85\xc1\x36\x79\xbd\xe1\x0d\x26\xd3\x57\ \xdd\x7c\xe1\xe5\x8f\xf3\xe5\x25\x55\xe4\x6d\x07\x6f\xe7\xec\xab\ \x3e\xa3\x1e\x5d\xfe\xdd\xd4\xfc\x1d\x5a\x31\xcf\xe4\xf5\x82\x67\ \x0d\x00\xa5\xf2\xd7\x09\x0f\x5a\x2c\x50\x9b\xbc\xa6\x39\x8e\x86\ \xf9\x9d\x1f\x06\xf2\x4c\x56\xdf\x78\xc3\x2b\x6f\xa8\xbe\xed\xee\ \x27\xb9\xf2\x92\xa2\x50\xfe\x52\x44\x5e\x3f\x79\x27\xee\xf8\xb5\ \x9d\x6a\x74\xe5\xcf\xb2\xf3\x67\x66\x99\x3c\xb9\xfb\xc9\x5b\x19\ \x00\x4a\xe5\xaf\x13\x1e\xb4\x58\xa0\xb6\x79\x4d\x73\x1c\x0d\x73\ \x5b\x27\x0c\xe4\x99\xee\x21\xaf\x1a\x5d\xfe\xed\x9b\x6f\x7b\xe9\ \xc7\x9b\x79\x41\x15\xcb\x1f\x2a\xf2\xfa\xc9\xdb\x79\xc1\xaf\x7e\ \x76\x3d\xdc\xfb\x73\xad\xfc\x69\xe7\x99\x3c\xc7\xfa\x98\xf5\x78\ \xc7\x03\x40\xa9\xfc\x75\xc2\x83\x16\x0b\xd4\x05\xaf\x69\x8e\xa3\ \x61\xb6\xf5\xc2\x40\xde\xda\xf0\x2e\x5d\xbe\xe5\xb6\x97\xdf\x60\ \x66\x46\x2a\x49\xfe\x10\x91\xd7\x4f\x5e\x33\x28\xd6\xa3\xbd\x3f\ \xd4\xcf\x1f\x79\x62\xf7\x9b\x77\x38\x00\x94\xca\x5f\x27\x3c\x68\ \xb1\x40\x5d\xf1\x9a\xe6\x38\x1a\xb6\x6a\xdd\x30\x90\xb7\x46\xbc\ \x6a\xf7\xe0\x07\xcd\xcc\x48\x24\xcd\x9f\x54\xe4\xf5\x93\x77\xea\ \xd6\x5b\x1f\xb5\xb8\xfc\x5f\x5d\x2a\x7f\xd6\x5a\x89\xc9\xeb\x1b\ \x6f\xbf\x54\xfe\x3a\xe1\x41\x8b\x05\xea\x92\x57\xc7\x06\x00\xfd\ \x30\xd8\x2c\xf2\xe4\xee\x82\x77\xfe\xea\x97\x9b\xb9\x09\x09\xc9\ \x9f\x44\xe4\xf5\x97\xb7\x33\xba\x78\x87\x95\x17\xc4\x92\xfc\x21\ \x26\xaf\x8f\xbc\x69\xa9\xfc\x75\xc2\x83\x16\x47\x04\x6f\x1e\x11\ \xca\xab\x43\x03\x40\x99\x30\xd8\x26\x4f\xe6\x8e\x78\x3b\xe3\xd9\ \x7f\x3f\x75\xe1\x81\xc7\x98\xd9\x71\x09\xcd\x5f\x4c\xe4\xf5\x97\ \xb7\xf3\x2d\x2f\x7d\xf2\x22\x2f\xef\x34\xf3\x22\xb6\x30\x7f\x62\ \x93\xd7\x53\xde\xde\xf1\x00\xa0\x99\xbf\xce\x78\xd0\xe2\x80\x92\ \x36\x0f\x28\x85\x57\xfb\x06\x80\x62\x61\x20\xcf\x5a\x2b\x71\xe7\ \xbc\x83\x17\x9a\xd9\x31\x95\x92\xbf\x90\xc8\xeb\x37\xaf\x1a\x5e\ \xfe\x41\x7f\x5e\x22\x86\xf3\x17\x31\x79\x3d\xe6\x5d\x1b\x00\xb4\ \xf3\xd7\x19\x0f\x5a\xec\x51\xf2\xe6\x1e\xa5\xf2\x6a\xd7\x00\x50\ \x34\x0c\xe4\xc1\xee\x05\x6f\xf6\xe7\x37\x5f\xb8\xf4\x38\x33\x3f\ \x47\x4a\xcd\x9f\x4f\xe4\xf5\x9b\x77\xf2\x79\xff\xdf\x27\x54\xa3\ \xd9\xbb\xed\x9c\x08\x9c\x94\xbf\x80\xc9\xeb\x39\x6f\x6f\xaa\x9d\ \xbf\x4e\x79\xd0\x62\x87\xb2\x36\x77\x28\x87\x57\x9b\x03\x80\xd5\ \x3c\xed\x30\x90\x07\xb9\x47\xbc\x6a\x3c\x7b\x8e\x99\x9f\x46\x39\ \xf9\x73\x89\xbc\xfe\xf3\xaa\xe1\xfe\xc4\xcc\x87\xc8\x19\xf9\x73\ \x9a\xbc\x75\xe0\x4d\xcd\x4c\x21\x72\xe5\xcf\x5c\x83\x48\x9b\x07\ \x49\x7b\xf3\x5c\x5e\xbd\x3c\x00\xb8\x9b\xa7\x1d\x06\xf2\xa4\xee\ \x1d\x6f\x76\xd9\xcc\x4f\x6e\xfe\x4c\x91\xb7\x1e\xbc\x7a\x7c\xf0\ \x5b\x76\x3e\x22\xce\xce\x1f\x79\x16\x6b\x3d\x78\xd6\x27\x01\x4a\ \xe5\xcb\x5f\xaa\xb4\x79\x90\xb4\x37\xd7\xe0\xd5\x47\x03\x80\xbf\ \x79\x76\xa3\x25\x26\x6f\x23\x79\xa7\x86\x57\x3f\xfe\x28\x3b\x1a\ \xf9\x5b\x16\x79\xeb\xc1\xab\x27\x07\x4f\x35\x73\x11\xb5\x52\xfe\ \xc8\x5b\x4b\x5e\xd2\x00\xe0\xcb\x5f\xaa\xb4\x79\x90\xb4\x37\xd7\ \xe2\x35\xcd\x89\x34\x0f\x37\x79\x9b\xcb\xdb\x9d\x7d\x7d\x93\x1b\ \xad\xfc\x1d\x89\xbc\xf5\xe1\x35\xff\x29\xc8\xca\x45\xc8\x9a\xf9\ \x23\x6f\x1d\x79\xf0\x00\x10\xca\x5f\x8a\xb4\x79\x90\xb4\x37\xd7\ \xe4\xd5\xcd\x6f\x03\x34\x1b\x57\x36\x0c\x98\xc9\xeb\x15\x6f\x30\ \x9e\xfd\xa0\x66\xfe\x1a\x91\xb7\x5e\xbc\x45\x76\x7e\xd4\xcc\x85\ \xd7\xca\xf9\x23\x6f\x2d\x79\xd0\x00\x10\xcb\x1f\x2a\x6d\x1e\x24\ \xed\xcd\xb5\x79\x8b\x66\x4d\x23\xcd\x93\x5b\x16\x06\xb9\xc9\xeb\ \x1f\x6f\x7c\xf9\xd7\x35\xf3\xa7\x9d\x67\xf2\xca\xf3\xea\xf1\xfc\ \x3e\x2b\x1b\x2e\x97\xc8\x9f\xc9\x22\x4f\xee\xee\x78\xe2\x01\x40\ \x92\x3f\x44\x25\x78\xe6\xd7\xbc\x2a\xb1\xb9\x36\xaf\xf9\x11\x8d\ \x48\xf3\x64\x96\x87\x41\x66\xf2\x7a\xca\xdb\x7b\xab\x66\xfe\xb4\ \xf3\x4c\x5e\xba\xa4\xbc\x45\x16\xfe\xd0\xca\x87\xe9\x62\xf9\x23\ \xcf\x5a\x2b\x71\xb7\x3c\xd1\x00\x20\xcd\x9f\x54\xa5\x78\xe6\xd7\ \x9d\x2a\xb5\xb9\x36\x6f\x65\x00\x70\x37\x2f\x6e\x2c\x0c\x71\x93\ \xd7\x5b\x5e\x35\xba\xf2\x57\x9a\xf9\xd3\xce\x33\x79\x69\x42\x78\ \xf5\x64\xfa\xd7\x56\x46\x3c\x79\xd1\xce\x1f\x79\x8e\xf5\x31\x77\ \xcf\x8b\x0e\x00\x48\xfe\x24\x2a\xc9\x33\x5f\xb3\x54\x72\x73\x6d\ \xde\xf1\x00\xe0\x6f\x5e\xd8\x78\x18\xc2\x26\xaf\xdf\xbc\xe1\xde\ \x83\x9a\xf9\xd3\xce\x33\x79\xb8\x50\xde\x22\x13\x0f\x5a\x39\xf1\ \xe5\x45\x3b\x7f\xe4\x61\xee\x07\x2f\x38\x00\xa0\xf9\x8b\xa9\x34\ \xcf\x7c\x7d\x45\xe6\x62\xed\xcd\xb5\x79\x75\xf3\x3d\x00\xe1\xe6\ \xf9\x9d\x16\x06\xbf\xc9\x5b\x0b\x9e\x99\x29\x44\x66\xfe\xb4\xf3\ \x4c\x1e\xa6\x14\x9e\x95\x93\x48\x5e\xb4\xf3\x47\x9e\xd0\xfd\xe1\ \x79\x07\x80\x94\xfc\x85\xd4\x29\x0f\x5a\x2c\x50\x1b\xbc\xba\xf9\ \x29\x00\xbb\x61\x71\xa7\x87\xc1\x6d\xf2\xd6\x86\x67\xe6\x4a\x2a\ \x57\xfe\xcc\x35\x88\xc8\xeb\x86\x67\x65\x25\x92\x17\x6b\xad\xc4\ \xe4\x6d\x12\xcf\x39\x00\xa4\xe6\xcf\xa7\x4e\x79\xd0\x62\x81\xda\ \xe2\x35\xcd\x71\x34\x2c\xec\xbc\x30\xd8\x26\x6f\xad\x78\x66\xb6\ \x24\xf2\xe5\x2f\x55\xe4\x75\xc7\x43\xf3\x02\x9b\xbc\x4d\xe3\x59\ \x03\x40\x4e\xfe\x5c\xea\x94\x07\x2d\x16\xa8\x4d\x5e\xd3\x1c\x47\ \xc3\xfc\xce\x0f\x03\x79\x26\x6b\xcd\x78\xcb\xd9\x92\x28\x94\xbf\ \x14\x91\xd7\x2d\x0f\xcd\x0b\x64\xf2\x36\x91\xb7\x32\x00\xe4\xe6\ \xcf\x54\xa7\x3c\x68\xb1\x40\x6d\xf3\x9a\xe6\x38\x1a\xe6\xb6\x4e\ \x18\xc8\x33\xbd\x66\xbc\xe5\xfc\xc4\x14\xcb\x1f\x2a\xf2\xba\xe7\ \xa1\x79\x11\x9b\xbc\x4d\xe5\x1d\x0f\x00\x1a\xf9\x5b\x56\xa7\x3c\ \x68\xb1\x40\x5d\xf0\x9a\xe6\x38\x1a\x66\x5b\x2f\x0c\xe4\xad\x39\ \xcf\xcc\x90\x4f\x92\xfc\x21\x22\xaf\x1f\x3c\x34\x2f\x22\x93\xb7\ \xc9\xbc\xc3\x01\x40\x2b\x7f\x47\xea\x94\x07\x2d\x16\xa8\x2b\x5e\ \xd3\x1c\x47\xc3\x56\xad\x1b\x06\xf2\xd6\x9c\x67\x66\xc8\x25\x69\ \xfe\xa4\x22\xaf\x3f\x3c\x34\x2f\x51\x93\xb7\xe9\xbc\x7d\xcd\xfc\ \x35\xea\x94\x07\x2d\x16\xa8\x4b\x5e\x1d\x1b\x00\xf4\xc3\x60\xb3\ \xc8\x93\xbb\x07\x3c\x33\x43\xa6\x90\xfc\x49\x44\x5e\xbf\x78\x56\ \x56\x22\x79\x09\x3a\x21\x7f\x41\x93\xd7\x47\xde\x54\x33\x7f\xda\ \x79\x86\x79\xd0\xe2\x88\xe0\xcd\x23\x42\x79\x75\x68\x00\x28\x13\ \x06\xdb\xe4\xc9\xdc\x13\x9e\x99\xa1\x65\xa1\xf9\x8b\x89\xbc\xfe\ \xf1\xd0\xbc\x78\x9d\x98\x3f\xaf\xc9\xeb\x29\x6f\xef\x78\x00\xd0\ \xc8\x9f\x76\x9e\x61\x1e\xb4\x38\xa0\xa4\xcd\x03\x4a\xe1\xd5\xbe\ \x01\xa0\x58\x18\xc8\xb3\xd6\x4a\xdc\x23\x9e\x99\xa1\x23\xa5\xe4\ \x2f\x24\xf2\xfa\xc9\x43\xf3\xe2\x74\x46\xfe\x9c\x26\xaf\xc7\xbc\ \x6b\x03\x80\x56\xfe\xb4\xf3\x0c\xf3\xa0\xc5\x1e\x25\x6f\xee\x51\ \x2a\xaf\x76\x0d\x00\x45\xc3\x40\x1e\xec\x9e\xf1\xcc\x0c\x35\x4a\ \xcd\x9f\x4f\xe4\xf5\x97\x87\xe6\xc5\x72\x66\xfe\x2c\x93\xd7\x73\ \xde\xde\x54\x33\x7f\xda\x79\x86\x79\xd0\x62\x87\xb2\x36\x77\x28\ \x87\x57\x9b\x03\x80\xd5\x3c\xed\x30\x90\x07\xb9\x87\x3c\x33\x43\ \x39\xf9\x73\x89\xbc\x7e\xf3\xd0\xbc\xac\x58\x21\x7f\xe4\xad\x1d\ \x6f\x6a\x66\x0a\x91\x99\x3f\xed\x3c\xe7\xf2\x20\x69\x6f\x9e\xcb\ \xab\x97\x07\x00\x77\xf3\xb4\xc3\x40\x9e\xd4\x3d\xe5\x2d\xe7\x27\ \x37\x7f\xa6\xc8\xeb\x3f\x0f\xcd\xcb\xb1\x95\xf2\x47\xde\xda\xf1\ \xac\x4f\x02\x94\xca\x95\x3f\x73\x0d\x22\x6d\x1e\x24\xed\xcd\x35\ \x78\xf5\xd1\x00\xe0\x6f\x9e\xdd\x68\x89\xc9\xdb\x58\xde\x51\x76\ \x34\xf2\xb7\x2c\xf2\xd6\x83\x67\xe6\x41\x64\xc5\xfc\x91\xb7\x76\ \xbc\xa4\x01\xc0\x97\xbf\x54\x69\xf3\x20\x69\x6f\xae\xc5\x6b\x9a\ \x13\x69\x1e\x6e\xf2\x36\x9a\xd7\xe4\x46\x2b\x7f\x47\x22\x6f\x7d\ \x78\x66\x1e\xa2\x56\xce\x1f\x79\x6b\xc7\x83\x07\x80\x50\xfe\x52\ \xa4\xcd\x83\xa4\xbd\xb9\x26\xaf\x6e\x7e\x1b\xa0\xd9\xb8\xb2\x61\ \xc0\x4c\x5e\xef\x78\x9a\xf9\x6b\x44\xde\x7a\xf1\xac\x4c\x84\x5c\ \x20\x7f\x16\x8b\x3c\xb9\xbb\xe1\x41\x03\x40\x2c\x7f\xa8\xb4\x79\ \x90\xb4\x37\xd7\xe6\x2d\x9a\x35\x8d\x34\x4f\x6e\x59\x18\xe4\x26\ \xaf\x97\x3c\xcd\xfc\x69\xe7\x99\xbc\xf2\x3c\x2b\x17\x3e\x17\xca\ \x9f\x65\xf2\x64\xee\x8e\x27\x1e\x00\x24\xf9\x43\x54\x82\x67\x7e\ \xcd\xab\x12\x9b\x6b\xf3\x9a\x1f\xd1\x88\x34\x4f\x66\x79\x18\x64\ \x26\xaf\xb7\x3c\xcd\xfc\x69\xe7\x99\xbc\x74\x49\x79\x56\x36\x5c\ \x2e\x98\x3f\xf2\x1c\xeb\x63\xee\x96\x27\x1a\x00\xa4\xf9\x93\xaa\ \x14\xcf\xfc\xba\x53\xa5\x36\xd7\xe6\xad\x0c\x00\xee\xe6\xc5\x8d\ \x85\x21\x6e\xf2\x7a\xcd\xd3\xcc\x9f\x76\x9e\xc9\x4b\x13\xc2\xb3\ \xf2\x61\xba\x70\xfe\xc8\x03\xdd\x3d\x2f\x3a\x00\x20\xf9\x93\xa8\ \x24\xcf\x7c\xcd\x52\xc9\xcd\xb5\x79\xc7\x03\x80\xbf\x79\x61\xe3\ \x61\x08\x9b\xbc\xde\xf3\x34\xf3\xa7\x9d\x67\xf2\x70\xa1\x3c\x2b\ \x23\x91\xbc\x68\xe7\x8f\x3c\xc0\xfd\xe0\x05\x07\x00\x34\x7f\x31\ \x95\xe6\x99\xaf\xaf\xc8\x5c\xac\xbd\xb9\x36\xaf\x6e\xbe\x07\x20\ \xdc\x3c\xbf\xd3\xc2\xe0\x37\x79\x6b\xc1\x33\x33\x85\xc8\xcc\x9f\ \x76\x9e\xc9\xc3\x94\xc2\xb3\x72\x12\xc9\x8b\x76\xfe\xc8\x13\xba\ \x3f\x3c\xef\x00\x90\x92\xbf\x90\x3a\xe5\x41\x8b\x05\x6a\x83\x57\ \x37\x3f\x05\x60\x37\x2c\xee\xf4\x30\xb8\x4d\xde\xda\xf0\xcc\x5c\ \x49\xe5\xca\x9f\xb9\x06\x11\x79\xdd\xf0\xac\xac\x44\xf2\x62\xad\ \x95\x98\xbc\x4d\xe2\x39\x07\x80\xd4\xfc\xf9\xd4\x29\x0f\x5a\x2c\ \x50\x5b\xbc\xa6\x39\x8e\x86\x85\x9d\x17\x06\xdb\xe4\xad\x15\xcf\ \xcc\x96\x44\xbe\xfc\xa5\x8a\xbc\xee\x78\x68\x5e\x60\x93\xb7\x69\ \x3c\x6b\x00\xc8\xc9\x9f\x4b\x9d\xf2\xa0\xc5\x02\xb5\xc9\x6b\x9a\ \xe3\x68\x98\xdf\xf9\x61\x20\xcf\x64\xad\x19\x6f\x39\x5b\x12\x85\ \xf2\x97\x22\xf2\xba\xe5\xa1\x79\x81\x4c\xde\x26\xf2\x56\x06\x80\ \xdc\xfc\x99\xea\x94\x07\x2d\x16\xa8\x6d\x5e\xd3\x1c\x47\xc3\xdc\ \xd6\x09\x03\x79\xa6\xd7\x8c\xb7\x9c\x9f\x98\x62\xf9\x43\x45\x5e\ \xf7\x3c\x34\x2f\x62\x93\xb7\xa9\xbc\xe3\x01\x40\x23\x7f\xcb\xea\ \x94\x07\x2d\x16\xa8\x0b\x5e\xd3\x1c\x47\xc3\x6c\xeb\x85\x81\xbc\ \x35\xe7\x99\x19\xf2\x49\x92\x3f\x44\xe4\xf5\x83\x87\xe6\x45\x64\ \xf2\x36\x99\x77\x38\x00\x68\xe5\xef\x48\x9d\xf2\xa0\xc5\x02\x75\ \xc5\x6b\x9a\xe3\x68\xd8\xaa\x75\xc3\x40\xde\x9a\xf3\xcc\x0c\xb9\ \x24\xcd\x9f\x54\xe4\xf5\x87\x87\xe6\x25\x6a\xf2\x36\x9d\xb7\xaf\ \x99\xbf\x46\x9d\xf2\xa0\xc5\x02\x75\xc9\xab\x63\x03\x80\x7e\x18\ \x6c\x16\x79\x72\xf7\x80\x67\x66\xc8\x14\x92\x3f\x89\xc8\xeb\x17\ \xcf\xca\x4a\x24\x2f\x41\x27\xe4\x2f\x68\xf2\xfa\xc8\x9b\x6a\xe6\ \x4f\x3b\xcf\x30\x0f\x5a\x1c\x11\xbc\x79\x44\x28\xaf\x0e\x0d\x00\ \x65\xc2\x60\x9b\x3c\x99\x7b\xc2\x33\x33\xb4\x2c\x34\x7f\x31\x91\ \xd7\x3f\x1e\x9a\x17\xaf\x13\xf3\xe7\x35\x79\x3d\xe5\xed\x1d\x0f\ \x00\x1a\xf9\xd3\xce\x33\xcc\x83\x16\x07\x94\xb4\x79\x40\x29\xbc\ \xda\x37\x00\x14\x0b\x03\x79\xd6\x5a\x89\x7b\xc4\x33\x33\x74\xa4\ \x94\xfc\x85\x44\x5e\x3f\x79\x68\x5e\x9c\xce\xc8\x9f\xd3\xe4\xf5\ \x98\x77\x6d\x00\xd0\xca\x9f\x76\x9e\x61\x1e\xb4\xd8\xa3\xe4\xcd\ \x3d\x4a\xe5\xd5\xae\x01\xa0\x68\x18\xc8\x83\xdd\x33\x9e\x99\xa1\ \x46\xa9\xf9\xf3\x89\xbc\xfe\xf2\xd0\xbc\x58\xce\xcc\x9f\x65\xf2\ \x7a\xce\xdb\x9b\x6a\xe6\x4f\x3b\xcf\x30\x0f\x5a\xec\x50\xd6\xe6\ \x0e\xe5\xf0\x6a\x73\x00\xb0\x9a\xa7\x1d\x06\xf2\x20\xf7\x90\x77\ \xfa\xf4\xdd\x8f\x58\xce\x50\x4e\xfe\x5c\x22\xaf\xd7\xbc\x47\xa3\ \x79\x59\xb1\x42\xfe\xc8\x5b\x3b\xde\xd4\xcc\x14\xa2\xc2\x79\xce\ \xe6\x41\xd2\xde\x3c\x97\x57\x2f\x0f\x00\xee\xe6\x69\x87\x81\x3c\ \xa9\x7b\xca\xbb\xf9\xc2\xa5\xc7\x1d\xe5\x27\x37\x7f\xa6\xc8\xeb\ \x37\x6f\x70\xdb\xdd\x4f\x40\xf3\x72\x6c\xa5\xfc\x91\xb7\x76\x3c\ \xeb\x93\x00\xa5\x32\xf3\xa7\x9d\xe7\x5c\x1e\x24\xed\xcd\x35\x78\ \xf5\xd1\x00\xe0\x6f\x9e\xdd\x68\x89\xc9\xdb\x58\xde\xa9\xe1\xd5\ \x8f\x6f\xb2\xa3\x91\xbf\x65\x91\xd7\x7f\xde\xce\xf9\xfb\x9e\x6c\ \xe6\x41\x64\xc5\xfc\x91\xb7\x76\xbc\xa4\x01\xc0\x95\x3f\x73\x0d\ \x22\x6d\x1e\x24\xed\xcd\xb5\x78\x4d\x73\x22\xcd\xc3\x4d\xde\x46\ \xf3\xaa\xc9\x74\xa0\x95\xbf\x23\x91\xb7\x1e\xbc\x93\xe3\xab\x5f\ \x60\xe6\x21\x6a\xe5\xfc\x91\xb7\x76\x3c\x78\x00\xf0\xe5\x2f\x55\ \xda\x3c\x48\xda\x9b\x6b\xf2\xea\xe6\xb7\x01\x9a\x8d\x2b\x1b\x06\ \xcc\xe4\xf5\x8f\x77\xee\xfe\x33\x5a\xf9\x6b\xa4\x99\xe7\x46\xe4\ \x95\xe3\x55\xe3\xd9\x73\xac\x4c\x84\x5c\x22\x7f\x26\x8b\x3c\xb9\ \xbb\xe1\x41\x03\x40\x28\x7f\x29\xd2\xe6\x41\xd2\xde\x5c\x9b\xb7\ \x68\xd6\x34\xd2\x3c\xb9\x65\x61\x90\x9b\xbc\x7e\xf2\x86\x97\x7e\ \x48\x2b\x7f\xda\x79\x26\xaf\x2c\xaf\x1e\xcf\x7f\xd2\xca\x85\xcf\ \xa5\xf2\x67\x9a\x3c\x99\xbb\xe3\x89\x07\x80\x58\xfe\x50\x95\xe0\ \x99\x5f\xf3\xaa\xc4\xe6\xda\xbc\xe6\x47\x34\x22\xcd\x93\x59\x1e\ \x06\x99\xc9\xeb\x2f\x6f\x78\xf9\x4d\x5a\xf9\xd3\xce\x33\x79\xe9\ \x92\xf0\xea\xc9\xec\x0f\xac\x6c\xb8\x5c\x32\x7f\xe4\xe1\xee\x96\ \x27\x1a\x00\x24\xf9\x43\x54\x8a\x67\x7e\xdd\xa9\x52\x9b\x6b\xf3\ \x56\x06\x00\x77\xf3\xe2\xc6\xc2\x10\x37\x79\xbd\xe7\x55\xa3\xd7\ \x7e\xba\x99\x29\x44\xa5\xf2\x4c\x5e\x9a\x24\xbc\x7a\x3c\xbd\xc9\ \xca\x86\xcb\x8e\xbc\x68\xe7\x8f\x3c\xc0\xdd\xf3\xa2\x03\x80\x24\ \x7f\x88\x4a\xf2\xcc\xd7\x2c\x95\xdc\x5c\x9b\x77\x3c\x00\xf8\x9b\ \x17\x36\x1e\x86\xb0\xc9\x5b\x13\xde\xf4\x82\x99\x2b\xa9\x4a\xe6\ \x99\x3c\x5c\x52\x5e\x3d\x9e\xff\x9f\x56\x3e\x4c\x7b\xf3\xa2\x9d\ \x3f\xf2\x44\xee\x07\x2f\x38\x00\x48\xf3\x27\x55\x69\x9e\xf9\xfa\ \x8a\xcc\xc5\xda\x9b\x6b\xf3\xea\xe6\x7b\x00\xc2\xcd\xf3\x3b\x2d\ \x0c\x7e\x93\xb7\x4e\xbc\xb7\xde\x74\x66\x1f\xce\xa2\x99\x3f\xed\ \x3c\x93\x87\x49\xca\x3b\x75\xe1\x81\xc7\xd4\x93\xd9\x9f\x5b\x19\ \x91\xe7\x05\x37\x79\x9b\xc2\xf3\x0e\x00\xd2\xfc\x49\xd5\x29\x0f\ \x5a\x2c\x50\x1b\xbc\xba\xf9\x29\x00\xbb\x61\x71\xa7\x87\xc1\x6d\ \xf2\xd6\x90\x37\x7b\x96\x99\xb1\x90\x5c\xf9\x33\xd7\x20\x22\xaf\ \x3d\xde\x60\x32\x1f\x5a\x19\x81\xf3\x02\x98\xbc\x4d\xe2\x39\x07\ \x00\x24\x7f\x12\x75\xca\x83\x16\x0b\xd4\x16\xaf\x69\x8e\xa3\x61\ \x61\xe7\x85\xc1\x36\x79\x6b\xc9\xdb\x19\xcf\xdf\x7c\xe3\x85\x07\ \xc2\xff\x24\xf6\xb0\x7c\xf9\x4b\x15\x79\xed\xf1\x9e\x3e\xb9\xfc\ \x11\x3b\xbb\xf3\x3f\xb3\x72\x02\xe6\x45\x6c\xf2\x36\x8d\x67\x0d\ \x00\x48\xfe\x24\xea\x94\x07\x2d\x16\xa8\x4d\x5e\xd3\x1c\x47\xc3\ \xfc\xce\x0f\x03\x79\x26\x6b\x9d\x79\xe3\x83\xd1\x72\xd6\x5c\x0a\ \xe5\x2f\x45\xe4\xb5\xcb\xab\x27\xb3\xff\x68\xf5\x3d\x35\x2f\x31\ \x93\xb7\x89\xbc\x95\x01\x00\xcd\x5f\x4c\x9d\xf2\xa0\xc5\x02\xb5\ \xcd\x6b\x9a\xe3\x68\x98\xdb\x3a\x61\x20\xcf\xf4\x1a\xf3\xaa\xf1\ \xc1\xbb\x07\xbb\xd3\xa7\x2d\x67\x6a\x59\xb1\xfc\xa1\x22\xaf\x5d\ \x5e\x3d\x9e\xfe\x93\x45\xff\x1f\x34\xfb\x9e\x9a\x97\xa0\xc9\xdb\ \x54\xde\xf1\x00\x80\xe6\x2f\xa6\x4e\x79\xd0\x62\x81\xba\xe0\x35\ \xcd\x71\x34\xcc\xb6\x5e\x18\xc8\xdb\x38\xde\xec\x0d\x37\x5d\xd8\ \xff\x60\x33\x5b\x92\xfc\x21\x22\xaf\x5d\xde\xc9\xf3\x6f\xfc\x84\ \x6a\x3c\xff\x53\xbb\xdf\xb9\x79\x71\x98\xbc\x4d\xe6\x1d\x0e\x00\ \x68\xfe\x62\xea\x94\x07\x2d\x16\xa8\x2b\x5e\xd3\x1c\x47\xc3\x56\ \xad\x1b\x06\xf2\x36\x91\x37\x9e\xfe\xf2\xa9\x0b\xf7\x3c\xf2\x28\ \x57\xd2\xfc\x49\x45\x5e\xbb\xbc\xe6\x37\x3e\x2e\xfa\x7a\x60\xf5\ \x59\x2b\x2f\xe4\xd9\xde\x5c\xde\x3e\x9a\xbf\x98\x3a\xe5\x41\x8b\ \x05\xea\x92\x57\xc7\x06\x00\xfd\x30\xd8\x2c\xf2\xe4\xee\x33\x6f\ \x3c\xfb\xd1\xd3\xa7\xef\x7e\x04\x92\x3f\x89\xc8\x6b\x97\x77\xea\ \xc2\xfc\x43\xab\xe1\xec\x5e\xab\xbf\xd7\x7a\x6c\x67\x25\x35\x2f\ \xe4\x6d\x0b\x6f\x8a\xe4\x2f\x26\x34\xcf\x31\xc1\x3c\x68\x71\x44\ \xf0\xe6\x11\xa1\xbc\x3a\x34\x00\x94\x09\x83\x6d\xf2\x64\x5e\x0b\ \xde\xe5\x9f\x7b\xe6\x37\xbe\xf8\xb1\xd2\xfc\xc5\x84\xe6\x39\x26\ \xf2\xc2\xbc\x13\xe7\x0f\x9e\x58\x8d\xe7\x57\xad\xde\x1e\xf7\x57\ \x3b\x2f\xe4\x6d\x3e\x6f\xef\x78\x00\x88\xe5\x2f\x26\x34\xcf\x31\ \x25\xf1\xa0\xc5\x01\x25\x6d\x1e\x50\x0a\xaf\xf6\x0d\x00\xc5\xc2\ \x40\x9e\xb5\x56\xe2\x35\xe2\x55\xc3\xcb\xb3\xfa\x8e\x5f\x79\xaa\ \x24\x7f\x21\xa5\xe4\x39\x24\xf2\xc2\xbc\x7a\x3c\x3f\xb5\xb8\xfc\ \xdf\x66\xf5\xd6\xe8\xaf\x76\x5e\xc8\x73\xac\x8f\x79\xad\x78\xd7\ \x06\x80\x58\xfe\x62\x42\xf3\x1c\x53\x32\x0f\x5a\xec\x51\xf2\xe6\ \x1e\xa5\xf2\x6a\xd7\x00\x50\x34\x0c\xe4\xc1\x5e\x4f\xde\x5f\x0c\ \x26\xd3\x6f\xbe\xee\xba\x87\xae\x37\x33\x27\x51\x6a\x9e\x7d\x22\ \xcf\xcf\x7b\xc6\x68\xff\xf1\x83\xf1\xec\xfb\xaa\xc9\xfc\xbd\x56\ \x6f\xfd\xfd\xd5\xce\x0b\x79\x52\xaf\x1d\x6f\x6f\x1a\xca\x9f\x44\ \x48\x9e\x25\xca\xe2\x41\x8b\x1d\xca\xda\xdc\xa1\x1c\x5e\x6d\x0e\ \x00\x56\xf3\xb4\xc3\x40\x1e\xe4\x75\xe7\x8d\x0f\x2e\xee\x8c\x0f\ \xbe\xd8\xcc\x5d\x48\x39\x79\x76\x89\x3c\x37\xef\xc4\xed\xf7\x3f\ \xba\xde\x9d\x3f\xbf\x9a\x1c\xfc\xb1\xd5\x57\x69\x7f\x51\x93\xb7\ \x8d\xbc\xa9\x99\x3d\x44\xd2\x3c\x4b\xa5\xcd\x83\xa4\xbd\x79\x2e\ \xaf\x5e\x1e\x00\xdc\xcd\xd3\x0e\x03\x79\x52\x6f\x10\x6f\x30\x99\ \xef\x55\xe3\xd9\x73\x9a\x6f\x30\x33\x33\xb8\xac\xdc\x3c\x9b\x22\ \xcf\xe6\x55\xa3\x83\x4f\xaf\xc6\xd3\xef\x5e\xf4\xe9\xed\x66\x9f\ \x52\xfb\x2b\x32\x79\xdb\xca\xb3\x3e\x09\x50\x2a\x49\x9e\x11\x69\ \xf3\x20\x69\x6f\xae\xc1\xab\x8f\x06\x00\x7f\xf3\xec\x46\x4b\x4c\ \x1e\x79\x0e\x57\xe3\xf9\x7b\x9a\xef\x30\x1f\xec\x1e\xfc\xab\x7a\ \x3c\x3f\xdd\x7c\x88\xd0\xce\xd9\xab\x1f\xd5\xfc\x6d\x54\x23\xcf\ \xcb\xda\x76\xde\xe0\xb6\xbb\x9f\x70\xf2\xfc\xde\x27\x9c\x1c\xcd\ \x4e\x2e\x06\xb0\x6f\xde\xd9\x9d\xff\x70\x35\x9a\xfd\x9e\xd9\x13\ \xa7\x13\xfb\xeb\x35\x79\xdb\xcc\x4b\x1a\x00\xcc\x3c\x6b\xff\xf9\ \xc8\xe5\x41\xd2\xde\x5c\x8b\xd7\x34\x27\xd2\x3c\xdc\xe4\x91\x87\ \x98\x3c\xf2\x10\x93\xb7\x6e\x3c\x78\x00\xd0\xba\xdf\x8e\xa4\xcd\ \x83\xa4\xbd\xb9\x26\xaf\x6e\x7e\x1b\xa0\xd9\xb8\xb2\x61\xc0\x4c\ \x1e\x79\x88\xc9\x23\x0f\x31\x79\x6d\xf0\xa0\x01\x40\xf3\x7e\x6b\ \xa4\xcd\x83\xa4\xbd\xb9\x36\x6f\xd1\xac\x69\xa4\x79\x72\xcb\xc2\ \x20\x37\x79\xe4\x21\x26\x8f\x3c\xc4\xe4\xb5\xc5\x13\x0f\x00\xda\ \xf7\x5b\x09\x9e\xf9\x35\xaf\x4a\x6c\xae\xcd\x6b\x7e\x44\x23\xd2\ \x3c\x99\xe5\x61\x90\x99\x3c\xf2\x10\x93\x47\x1e\x62\xf2\xda\xe4\ \x89\x06\x80\x12\xf7\x5b\x09\x9e\xf9\x75\xa7\x4a\x6d\xae\xcd\x5b\ \x19\x00\xdc\xcd\x8b\x1b\x0b\x43\xdc\xe4\x91\x87\x98\x3c\xf2\x10\ \x93\xd7\x36\x2f\x3a\x00\x94\xba\xdf\x4a\xf0\xcc\xd7\x2c\x95\xdc\ \x5c\x9b\x77\x3c\x00\xf8\x9b\x17\x36\x1e\x86\xb0\xc9\x23\x0f\x31\ \x79\xe4\x21\x26\xaf\x0b\x5e\x70\x00\x28\x79\xbf\x95\xe0\x99\xaf\ \xaf\xc8\x5c\xac\xbd\xb9\x36\xaf\x6e\xbe\x07\x20\xdc\x3c\xbf\xd3\ \xc2\xe0\x37\x79\xe4\x21\x26\x8f\x3c\xc4\xe4\x75\xc5\xf3\x0e\x00\ \xe6\x7d\xa4\x7d\xbf\xb5\xca\x83\x16\x0b\xd4\x06\xaf\x6e\x7e\x0a\ \xc0\x6e\x58\xdc\xe9\x61\x70\x9b\x3c\xf2\x10\x93\x47\x1e\x62\xf2\ \xba\xe4\x39\x07\x00\xd7\x7d\x64\xae\x41\xd4\x29\x0f\x5a\x2c\x50\ \x5b\xbc\xa6\x39\x8e\x86\x85\x9d\x17\x06\xdb\xe4\x91\x87\x98\x3c\ \xf2\x10\x93\xd7\x35\xcf\x1a\x00\x7c\xf7\x51\xaa\x3a\xe5\x41\x8b\ \x05\x6a\x93\xd7\x34\xc7\xd1\x30\xbf\xf3\xc3\x40\x9e\xc9\x22\x4f\ \x6e\xf2\xc8\x43\x4c\x5e\x1f\x78\x2b\x03\x40\xe8\x3e\x4a\x51\xa7\ \x3c\x68\xb1\x40\x6d\xf3\x9a\xe6\x38\x1a\xe6\xb6\x4e\x18\xc8\x33\ \x4d\x9e\xcc\xe4\x91\x87\x98\xbc\xbe\xf0\x8e\x07\x80\xd8\x7d\x84\ \xaa\x53\x1e\xb4\x58\xa0\x2e\x78\x4d\x73\x1c\x0d\xb3\xad\x17\x06\ \xf2\xc8\xc3\x4d\x1e\x79\x88\xc9\xeb\x13\xef\x70\x00\x90\xdc\x47\ \x88\x3a\xe5\x41\x8b\x05\xea\x8a\xd7\x34\xc7\xd1\xb0\x55\xeb\x86\ \x81\x3c\xf2\x30\x93\x47\x1e\x62\xf2\xfa\xc6\xdb\x97\xde\x47\x52\ \x75\xca\x83\x16\x0b\xd4\x25\xaf\x8e\x0d\x00\xfa\x61\xb0\x59\xe4\ \xc9\x4d\x1e\x79\x88\xc9\x23\x0f\x71\x19\xde\x54\x7a\x1f\x49\x84\ \xdc\x6f\x12\xc1\x3c\x68\x71\x44\xf0\xe6\x11\xa1\xbc\x3a\x34\x00\ \x94\x09\x83\x6d\xf2\x64\x26\x8f\x3c\xc4\xe4\x91\x87\xb8\x18\x6f\ \xef\x78\x00\x88\xdd\x47\x31\xa1\xf7\x5b\x4c\x49\x3c\x68\x71\x40\ \x49\x9b\x07\x94\xc2\xab\x7d\x03\x40\xb1\x30\x90\x67\xad\x95\x98\ \x3c\xf2\x10\x93\x47\x1e\xe2\xa2\xbc\x6b\x03\x80\xe4\x3e\x0a\x29\ \xe5\x7e\x0b\x29\x99\x07\x2d\xf6\x28\x79\x73\x8f\x52\x79\xb5\x6b\ \x00\x28\x1a\x06\xf2\x60\x93\x47\x1e\x62\xf2\xc8\x43\x5c\x9c\xb7\ \x37\x95\xde\x47\x3e\xa5\xde\x6f\x3e\x65\xf1\xa0\xc5\x0e\x65\x6d\ \xee\x50\x0e\xaf\x36\x07\x00\xab\x79\xda\x61\x20\x0f\x32\x79\xe4\ \x21\x26\x8f\x3c\xc4\xed\xf0\xa6\xe6\xbd\x83\x28\xe7\x7e\x73\x49\ \x9b\x07\x49\x7b\xf3\x5c\x5e\xbd\x3c\x00\xb8\x9b\xa7\x1d\x06\xf2\ \xa4\x26\x8f\x3c\xc4\xe4\x91\x87\xb8\x3d\x9e\xf5\x49\x80\x52\xe5\ \xde\x6f\xa6\xb4\x79\x90\xb4\x37\xd7\xe0\xd5\x47\x03\x80\xbf\x79\ \x76\xa3\x25\x26\x8f\x3c\xc4\xe4\x91\x87\x98\xbc\x75\xe2\x25\x0d\ \x00\x1a\xf7\xdb\xb2\xb4\x79\x90\xb4\x37\xd7\xe2\xd5\x93\xd9\xe5\ \x48\xf3\x70\x93\x47\x1e\x62\xf2\xc8\x43\x4c\xde\x9a\xf1\x66\x97\ \xcd\x7b\x27\x26\xad\xfb\xed\x48\xda\x3c\x48\xda\x9b\x6b\xf2\xea\ \xd1\xf4\xb5\x56\xe3\x8a\x86\x01\x34\x79\xe4\x21\x26\x8f\x3c\xc4\ \xe4\x15\xe7\xed\x8c\x0e\x5e\x63\xde\x3b\x21\x69\xde\x6f\x8d\xb4\ \x79\x90\xb4\x37\xd7\xe6\xd5\xa3\xbd\x5f\x0c\x35\x0f\xb2\x20\x0c\ \x90\xc9\x23\x0f\x31\x79\xe4\x21\x26\xaf\x15\xde\xce\x68\xfa\x0b\ \xe6\xbd\xe3\x93\xf6\xfd\x56\x82\x67\x7e\xcd\xab\x12\x9b\x6b\xf3\ \xea\xe1\xde\xcf\x86\x9a\x27\xb6\x30\x0c\x62\x93\x47\x1e\x62\xf2\ \xc8\x43\x4c\x5e\x6b\xbc\x9d\xc9\xec\xa7\xcc\xbb\xc7\xa5\x12\xf7\ \x5b\x09\x9e\xf9\x75\xa7\x4a\x6d\xae\xcd\xab\x87\x97\x7e\x28\xd4\ \x3c\x91\x81\x30\x88\x4c\x1e\x79\x88\xc9\x23\x0f\x31\x79\x6d\xf3\ \xbe\xdf\xbc\x7f\x4c\x95\xba\xdf\x4a\xf0\xcc\xd7\x2c\x95\xdc\x5c\ \x9b\x57\x9d\xbb\xf8\x1f\x22\xcd\x0b\x1b\x0f\x43\xd8\xe4\x91\x87\ \x98\x3c\xf2\x10\x93\xd7\x01\xef\xe0\xdf\x9a\x77\xd0\xb2\x4a\xde\ \x6f\x25\x78\xe6\xeb\x2b\x32\x17\x6b\x6f\xae\xcd\xdb\x19\x5d\x1c\ \x86\x9b\x17\x70\x52\x18\x02\x26\x8f\x3c\xc4\xe4\x91\x87\x98\xbc\ \x6e\x78\xbb\xf3\xe7\x9b\xf7\xd0\x91\xcc\xfb\x48\xfb\x7e\x6b\x95\ \x07\x2d\x16\xa8\x0d\x5e\x7d\x7e\xfa\xe5\x56\xc3\x24\x4e\x0d\x83\ \xcf\xe4\x91\x87\x98\x3c\xf2\x10\x93\xd7\x19\x6f\xb0\x7b\xf0\x25\ \xe6\x5d\xd4\xc8\x75\x1f\x99\x6b\x10\x75\xca\x83\x16\x0b\xd4\x16\ \xaf\x9e\x1c\x3c\xd5\x6c\x58\xd4\x19\x61\x70\x9a\x3c\xf2\x10\x93\ \x47\x1e\x62\xf2\x3a\xe5\x9d\x1a\xcf\x3f\xd1\xb8\x8e\xbc\xf7\x51\ \xaa\x3a\xe5\x41\x8b\x05\x6a\x93\x77\xea\xc2\x3d\x8f\x5c\x34\xe9\ \x1f\xcc\xa6\x79\x9d\x19\x06\xcb\xe4\x91\x87\x98\x3c\xf2\x10\x93\ \xd7\x29\xaf\x1a\x1f\xbc\xfb\xf4\xe9\xbb\x1f\x21\xbd\x8f\x52\xd4\ \x29\x0f\x5a\x2c\x50\x17\xbc\x7a\x3c\x7d\x93\xd9\x38\xa7\x33\xc3\ \x60\x99\x3c\xf2\x10\x93\x47\x1e\x62\xf2\x3a\xe7\x55\xe3\xf9\xd5\ \xe5\xbb\x46\x72\x1f\x21\xea\x94\x07\x2d\x16\xa8\x2b\x5e\xf3\x41\ \x0d\x66\xe3\x2c\x2b\x84\x81\x3c\xf2\xc8\x13\x9a\x3c\xf2\x10\xf7\ \x97\xf7\x73\x47\xf7\x8c\xf4\x3e\x92\xaa\x53\x1e\xb4\x58\xa0\x2e\ \x79\xd5\x64\x7e\xd6\xd1\xb8\xf7\x5b\x2f\x0c\xe4\x91\x87\x9b\x3c\ \xf2\x10\x93\xd7\x1b\x5e\x35\x3e\xf8\xd6\xe6\x8e\x41\xee\x23\x89\ \x3a\xe5\x41\x8b\x05\xea\x9a\x57\x8f\xa7\x37\x99\x8d\x3b\xb6\x62\ \x18\xc8\x23\x0f\x36\x79\xe4\x21\x26\xaf\x57\xbc\xc1\xe4\xd2\x8d\ \xe8\x7d\x14\x53\xe7\x3c\x68\x71\x44\xf0\xe6\x11\xa5\xf0\x9a\x6f\ \xd2\xa8\x27\xb3\xbf\x30\x9b\xa7\x1d\x06\xf2\xc8\x83\x4c\x1e\x79\ \x88\xc9\xeb\x17\x6f\x34\x7b\xfb\x8d\x37\xbe\xff\x2e\x92\xde\x47\ \x21\xa5\xdc\x6f\x21\x25\xf1\xa0\xc5\x01\x25\x6d\x1e\x50\x0e\x6f\ \x30\x99\xbf\xac\x68\x18\xc8\x23\x0f\x31\x79\xe4\x21\x26\xaf\x7f\ \xbc\xe1\xde\xcf\xa6\xde\x47\x2e\xe5\xdc\x6f\x2e\x25\xf3\xa0\xc5\ \x1e\x25\x6f\xee\x51\x2e\xaf\x1a\x4e\x5f\x50\x34\x0c\x26\x8b\x3c\ \xb9\xc9\x23\x0f\x31\x79\xe4\x21\x2e\xc4\x3b\x79\xc7\xfd\xff\x3c\ \xf5\x3e\x32\x95\x7b\xbf\x99\xca\xe2\x41\x8b\x1d\xca\xda\xdc\x21\ \x0d\xde\xce\x0b\xf7\x3f\xb9\x9e\xcc\xde\x57\x2a\x0c\x96\xc9\x93\ \x99\x3c\xf2\x10\x93\x47\x1e\xe2\x42\xbc\x6a\x74\xe5\xbd\xd5\xb7\ \xdd\xfd\xa4\xd4\xfb\x68\x59\x1a\xf7\xdb\xb2\xb4\x79\x90\xb4\x37\ \xd7\xe4\xd5\xa3\xd9\x7d\x56\x10\x14\xc2\x60\x99\x3c\x99\xc9\x23\ \x0f\x31\x79\xe4\x21\x2e\xc9\x1b\xee\xbd\x22\xf7\x3e\x6a\xa4\x79\ \xbf\x35\xd2\xe6\x41\xd2\xde\x5c\x9b\x57\x0d\xef\xff\xd6\x22\x61\ \x20\x0f\x37\x79\xe4\x21\x26\x8f\x3c\xc4\xa5\x79\x77\xbe\xfe\x59\ \xb9\xf7\x91\xf6\xfd\xa6\xcd\x83\xa4\xbd\x79\x09\xde\xcd\xcf\x7f\ \xd9\x47\x57\xa3\xbd\xbf\x53\x0f\x03\x79\x98\xc9\x23\x0f\x31\x79\ \xe4\x21\x2e\xcf\x7b\xe7\x4d\x67\xee\x7a\xbc\x79\xc7\x20\x2a\x71\ \xbf\x69\xf2\x20\x69\x6f\x5e\x92\x57\x0d\x2f\xbd\x4c\x39\x0c\xda\ \xe1\x22\x0f\x31\x79\xe4\x21\x26\x8f\x3c\xc4\x0e\x5e\x35\xba\xf4\ \xe3\xe6\x1d\x83\xa8\xe4\xfd\xa6\xc1\x83\xa4\xbd\x79\x69\x5e\x75\ \xc7\xbd\xcf\xd4\x0c\x83\x76\xb8\xc8\x03\x4c\x1e\x79\x88\xc9\x23\ \x0f\xb1\x8f\x37\xd9\xbf\xd9\xbc\x67\xa4\x32\xef\x23\xed\xfb\x4d\ \x83\x67\x7e\xcd\xab\x12\x9b\xb7\xc1\xdb\x19\xcd\xa6\x56\xb3\x63\ \xf6\x85\x41\x3b\x5c\xe4\xc9\x4c\x1e\x79\x88\xc9\x23\x0f\xb1\x9f\ \xf7\x6a\xf3\x9e\x91\xca\x77\x1f\xa5\xaa\x14\xcf\xfc\xba\x53\xa5\ \x36\x6f\x83\x37\xd8\xbd\xf2\x35\x56\xc3\x43\xf6\x87\xc1\x5e\x2b\ \x31\x79\xe4\x21\x26\x8f\x3c\xc4\xe4\x95\xe3\x8d\xe7\xa7\x96\xae\ \x19\xb1\x42\xf7\x51\x8a\x4a\xf2\xcc\xd7\x2c\x95\xdc\xbc\x0d\x5e\ \xf3\xd1\xc0\x3b\xe3\xf9\x9b\xad\xc6\xbb\x1c\x0a\x83\xb9\x56\x62\ \xf2\xc8\x43\x4c\x1e\x79\x88\xc9\x2b\xc7\x1b\x1f\x5c\x5c\xbe\x47\ \xa4\x8a\xdd\x47\xa8\x4a\xf3\xcc\xd7\x57\x64\x2e\xd6\xde\xbc\x2d\ \xde\x60\x32\xff\x66\xab\xf9\xa6\x43\x61\x30\xd7\x4a\x4c\x1e\x79\ \x88\xc9\x23\x0f\x31\x79\x45\x79\xd5\xee\xec\x16\xf3\x1e\x89\x49\ \x7a\x1f\x49\xd5\x29\x0f\x5a\x2c\x50\x97\xbc\x1b\x2f\x3c\xf0\x41\ \x3b\x93\xd9\x6f\x5b\x21\x10\x86\x01\x36\x79\xe4\x21\x26\x8f\x3c\ \xc4\xe4\x15\xe5\x55\xe3\xf9\x6f\x5c\x77\xdd\x43\xd7\x9b\xf7\x48\ \x48\xc8\x7d\x24\x51\xa7\x3c\x68\xb1\x40\x7d\xe0\x55\xbb\xf3\x2f\ \xb2\x82\x20\x08\x03\x6c\xf2\xc8\x43\x4c\x1e\x79\x88\xc9\x2b\xca\ \x5b\x5c\xfe\xef\xa9\x47\xb3\xcf\x32\xef\x8f\x90\x52\xee\xa3\x90\ \x3a\xe5\x41\x8b\x05\xea\x13\xaf\x1a\xcd\x5e\x8a\x84\x01\x36\x79\ \xe4\x21\x26\x8f\x3c\xc4\xe4\x95\xe7\x8d\x0f\xfe\x9d\x79\x6f\x84\ \x94\x73\x1f\xb9\xd4\x29\x0f\x5a\x2c\x50\xdf\x78\x27\xcf\xbf\xf1\ \x13\xaa\xc9\xec\x6f\xc4\x61\x40\x4c\x1e\x79\x88\xc9\x23\x0f\x31\ \x79\xc5\x79\xd5\xe4\xe0\x8f\x9f\x31\xda\x17\x7f\xea\x5f\xee\x7d\ \x64\xaa\x53\x1e\xb4\x58\xa0\xbe\xf2\xaa\xf1\xfe\x44\x12\x06\xc8\ \xe4\x91\x87\x98\x3c\xf2\x10\x93\xd7\x0a\xaf\xda\x3d\xf8\x6a\xf3\ \xbe\xf0\x49\xeb\x3e\x3a\x52\xa7\x3c\x68\xb1\x40\x7d\xe6\x9d\xba\ \x70\xcf\x23\xeb\xe1\xa5\x7b\x63\x61\x10\x5b\x18\x2e\xb1\xc9\x23\ \x0f\x31\x79\xe4\x21\x26\xcf\xc3\x3b\xf8\x59\xf3\xae\xf0\x49\xf3\ \x3e\x6a\xd4\x29\x0f\x5a\x2c\xd0\x3a\xf0\x4e\x7e\xeb\x2f\x7e\xd2\ \x60\x74\xe5\x1d\xfe\x30\x08\x2d\x0e\x97\xd0\xe4\x91\x87\x98\x3c\ \xf2\x10\x93\xe7\xe4\x35\x9f\x13\x53\x0d\xdf\xf4\x58\xf3\xae\x70\ \xa9\xc4\x7d\xd4\x29\x0f\x5a\x1c\x11\xbc\x79\x44\x25\x79\x83\xb3\ \xaf\xfb\x8a\x7a\xb4\xf7\x3e\x33\x0c\x62\x0b\xc3\x25\x36\x79\xe4\ \x21\x26\x8f\x3c\xc4\xe4\x39\x79\xd5\xf8\xe0\xdd\x3b\xbb\xf3\xcf\ \x36\xef\x0a\x97\x4a\xde\x47\x9d\xf1\xa0\xc5\x01\x25\x6d\x1e\x50\ \x1b\xbc\x45\x18\xbe\xd7\x0a\x8e\xc4\xc2\x70\x89\x4d\x1e\x79\x88\ \xc9\x23\x0f\x31\x79\x5e\xde\x60\x3c\xff\x26\xf3\xae\x70\xc9\x75\ \x7f\x98\x6b\x10\xf5\x86\x07\x2d\xf6\x28\x79\x73\x8f\xda\xe2\xdd\ \x72\xdb\x5b\x6e\xa8\x27\xb3\x7b\xcc\x50\x04\x0d\x84\x4b\x64\xf2\ \xc8\x43\x4c\x1e\x79\x88\xc9\xf3\xf2\xaa\xdd\x83\x1f\x34\xef\x0a\ \x97\x7c\xf7\x47\xaa\x7a\xc5\x83\x16\x3b\x94\xb5\xb9\x43\x6d\xf3\ \x6e\xbe\x70\xe9\x71\xd5\x68\x36\x37\xc3\xe1\x34\x10\x2e\x91\xc9\ \x23\x0f\x31\x79\xe4\x21\x26\xcf\xcb\x1b\x4c\xe6\x2f\x6b\xbe\x21\ \x7c\xf9\x2e\x70\x29\x76\x7f\xa0\xea\x3b\x0f\x92\xf6\xe6\x5d\xf1\ \xaa\xe1\xec\xe3\xaa\xc9\xec\xf7\xcd\x90\xa4\x86\x4b\x64\xf2\xc8\ \x43\x4c\x1e\x79\x88\xc9\xf3\xf2\x9a\x8f\xfa\x5d\x5c\xfe\x8f\x32\ \xef\x01\x53\xd2\xfb\x43\xaa\xbe\xf3\x20\x69\x6f\xde\x35\xef\xc4\ \x78\xfa\x94\x7a\x32\xfb\x13\x33\x2c\x68\xb8\x44\x26\x8f\x3c\xc4\ \xe4\x91\x87\x98\x3c\x3f\x6f\x3c\x7d\x63\x3d\x7e\xc3\x87\x99\xcf\ \x7f\x53\xe8\xfd\x11\x53\xdf\x79\x90\xb4\x37\xef\x0b\xaf\x3a\x3f\ \xfb\x47\x3b\xbb\xf3\x3f\x4b\x0e\x97\xc4\xe4\x91\x87\x98\x3c\xf2\ \x10\x93\xe7\xe5\x2d\xfe\xe6\x7f\xf5\xd4\xb9\xbd\x8f\x31\x9f\xfb\ \xa6\x52\xef\x0f\x9f\xfa\xce\x83\xa4\xbd\x79\xdf\x78\x27\x26\xfb\ \x9f\xb6\x08\xcb\x5b\xd1\x70\x89\x4c\x1e\x79\x88\xc9\x23\x0f\x31\ \x79\x7e\xde\xf8\xe0\xe2\xd3\x27\x97\x3f\xc2\x7c\xde\x9b\xca\xbd\ \x3f\x4c\xf5\x9d\x07\x49\x7b\xf3\xbe\xf2\x9a\xef\x09\xa8\xc7\xd3\ \x37\x58\xc1\xf2\x85\x4b\x62\x24\xac\x12\x93\x47\x1e\x62\xf2\xc8\ \x43\xbc\x41\xbc\xe6\x1b\xfe\x4e\xdc\x7e\xff\xa3\xcd\xe7\xbc\x29\ \xad\xfb\xe3\x48\xeb\xc0\x33\xbf\xe6\x55\x89\xcd\xfb\xcc\x1b\x9c\ \x79\xe9\xc7\x56\xe7\x2e\xef\xc5\xc2\x25\x32\x10\x56\x91\xc9\x23\ \x0f\x31\x79\xe4\x21\xde\x24\xde\x68\xfa\x43\xa7\x4f\xdf\xfd\x08\ \xf3\xf9\x6e\x4a\xfb\xfe\x58\x17\x9e\xf9\x75\xa7\x4a\x6d\xde\x77\ \xde\x33\xbf\xf1\xc5\x8f\xad\x86\x17\xbf\xcf\x1b\x2e\x89\x91\xb0\ \x4a\x4c\x1e\x79\x88\xc9\x23\x0f\xf1\x86\xf0\x9a\x4f\xf8\xab\x77\ \xe7\xcf\x37\x9f\xed\x2e\x95\xba\x3f\xd6\x81\x67\xbe\x66\xa9\xe4\ \xe6\xeb\xc2\xab\x26\xd3\xff\xa5\x9a\xcc\xff\xca\x0a\x63\xcc\xc2\ \xb0\x8a\x4d\x1e\x79\x88\xc9\x23\x0f\xf1\x86\xf0\x76\x26\xb3\xdf\ \xde\xea\x8f\xf7\x0d\xc8\xe4\x99\xaf\xaf\xc8\x5c\xac\xbd\xf9\x3a\ \xf1\xaa\x17\x5e\xfd\xd4\xe6\xbb\x48\xad\x50\xfa\x2c\x0c\xab\xd8\ \xe4\x91\x87\x98\x3c\xf2\x10\x6f\x08\xaf\x1a\xcd\x5e\x7a\xea\xc2\ \xfc\x43\x97\x9f\xeb\x3e\x85\x9e\xf7\x29\xda\x28\x1e\xb4\x58\xa0\ \x4d\xe0\xdd\x74\x61\xff\x83\xeb\xc9\xc1\xbf\x5d\x04\xed\x1f\xac\ \x80\x26\x84\x55\x6c\xf2\xc8\x43\x4c\x1e\x79\x88\x37\x80\xb7\xf8\ \xcb\xd9\xdb\x16\xff\xf7\xff\x61\x3e\xb3\x7d\x92\x3c\xef\x11\x6d\ \x14\x0f\x5a\x2c\xd0\xa6\xf1\x4e\xbe\x70\xfe\x29\xf5\x78\xfe\x6a\ \x2b\xa8\xc2\xb0\x42\x26\x8f\x3c\xc4\xe4\x91\x87\x78\xdd\x79\xe3\ \xd9\x83\xf5\xee\xfc\xae\x67\x8c\xf6\x1f\x6f\x3e\xa7\x7d\x42\x9f\ \xf7\x31\x6d\x14\x0f\x5a\x2c\xd0\xe6\xf2\x1e\xba\xbe\x1a\xee\x7f\ \xc3\x62\xf2\xfc\x53\x71\x58\x51\x93\x47\x1e\x62\xf2\xc8\x43\xbc\ \xe6\xbc\xc5\xb3\xf7\xd2\x60\xf7\xea\xe7\x9a\x4f\xe6\x90\xd2\x9f\ \xf7\x6e\x6d\x14\x0f\x5a\x2c\xd0\x36\xf0\x4e\x5d\x78\xe0\x31\xcd\ \x77\x9b\x56\xa3\xd9\xdb\xac\xa0\x16\x0c\x3f\x6c\xf2\xc8\x43\x4c\ \x1e\x79\x88\xdb\xe5\x1d\xd4\xe3\xf9\xe9\xe6\x2f\x61\xe6\xf3\x38\ \x24\x8d\xe7\xfd\xb2\x36\x8a\x07\x2d\x16\x68\xdb\x78\xa7\x6e\xfd\ \xf1\x0f\xdd\x19\x5d\xbc\xa3\x1e\xed\xfd\x61\xe1\xf0\xe3\x26\x8f\ \x3c\xc4\xe4\x91\x87\xb8\x2d\xde\x68\x76\x5f\x7d\xfe\xea\x97\xa3\ \x17\x7f\x23\xed\xe7\xfd\x46\xf1\xa0\xc5\x02\x6d\x33\xef\x96\x7f\ \x7a\xe1\x71\xd5\xf0\xe2\x73\x0e\xc3\x6a\x06\x5b\x62\x5f\xf8\xb5\ \xff\x30\x91\x27\x33\x79\xe4\x21\x26\x4f\x97\x37\xbc\xf2\xae\x7a\ \x78\xf9\x67\xea\xf1\x95\x53\xe6\x73\x57\xaa\x92\xcf\xfb\xb5\xe7\ \x41\x8b\x05\x22\xef\xfd\xbc\x6a\xb4\xff\xa4\x7a\x7c\x30\x5a\x04\ \xfb\x77\xad\xa0\xbb\x6c\x86\x5f\xfb\x0f\x13\x79\x98\xc9\x23\x0f\ \x31\x79\x8a\xbc\xbd\xe9\xe0\xdc\xc5\xe7\x3e\xfd\x5b\x7e\x32\xfa\ \xf9\xfd\x21\x85\x9e\xcf\x29\xda\x38\x1e\xb4\x38\x22\x78\xf3\x88\ \x36\x86\x77\xe1\xa1\x0f\x38\x39\x9a\x9d\xac\x27\xb3\xef\x18\x4c\ \xe6\xf7\x57\xe3\xf9\x7b\xc2\xe1\xd7\xfe\xc3\x44\x1e\x6c\xf2\xc8\ \x43\x4c\x5e\x1e\x6f\x34\xfb\xf3\x7a\x74\xf9\xe7\x07\xe7\xee\xbb\ \xed\xe4\xb7\xfd\xd2\xa7\x04\x9f\xa7\x42\x89\x9f\xcf\x42\x6d\x24\ \x0f\x5a\x1c\x50\xd2\xe6\x01\x6d\x32\xaf\x1a\xbe\xe9\xb1\xf5\xe4\ \xe0\xcb\x16\xc3\xc0\x4b\xaa\xd1\xf4\xb5\xfc\x06\x42\xf2\x20\x93\ \x47\x1e\xe2\xfe\xf1\xfe\xa1\x1e\x1f\xfc\x56\x3d\x9e\xff\xfc\x60\ \x77\x7e\x6e\xb0\xbb\xff\xb9\x4f\xb9\xe5\xb6\x1b\x52\x9f\xa7\x2e\ \xe5\x3c\x9f\x5d\xda\x58\x1e\xb4\xd8\xa3\xe4\xcd\x3d\xda\x46\xde\ \x2d\xff\xec\xc7\x9e\x70\xe2\x8e\x5f\xdb\xa9\xcf\xbe\xfe\x9f\xd5\ \xc3\xcb\xdf\xb9\x33\x9e\xfe\xc0\xe2\x0f\xca\xcf\x35\x9f\x37\x50\ \x4d\x66\xbf\xb6\xf8\xff\xef\x8b\x3c\x9e\xed\x2f\xfe\x30\x4e\x9b\ \x7f\x42\x7b\xbf\x17\xff\x77\xf3\x75\x73\xad\xc4\xe4\x91\x87\x98\ \x3c\xf2\xc6\x07\x17\x9b\xe7\xd6\xe2\x2f\x38\xbf\xb2\x33\x99\xfd\ \x54\xf3\x17\x9d\xe6\xa2\xaf\x86\xb3\x67\x2e\xfe\xe2\xf3\xd4\x53\ \x17\xee\x79\xa4\xf9\xfc\xd3\x7e\x9e\x92\x27\x14\xb4\xd8\xa1\xac\ \xcd\x1d\x22\x8f\x3c\x44\xe4\x91\x87\x88\x3c\xf2\x10\x6d\x1b\x0f\ \x92\xf6\xe6\xe4\x91\x87\x88\x3c\xf2\x10\x91\x47\x1e\xa2\x6d\xe3\ \x41\xd2\xde\x9c\x3c\xf2\x10\x91\x47\x1e\x22\xf2\xc8\x43\xb4\x6d\ \x3c\x48\xda\x9b\x93\x47\x1e\x22\xf2\xc8\x43\x44\x1e\x79\x88\xb6\ \x8d\x07\x49\x7b\x73\xf2\xc8\x43\x44\x1e\x79\x88\xc8\x23\x0f\xd1\ \xb6\xf1\x20\x69\x6f\x4e\x1e\x79\x88\xc8\x23\x0f\x11\x79\xe4\x21\ \xda\x46\x9e\xf9\x35\xaf\x4a\x6c\x4e\x5e\xba\xc8\x23\x0f\x11\x79\ \xe4\x21\x22\x6f\x3b\x78\xe6\xd7\x9d\x2a\xb5\x39\x79\x69\x22\x8f\ \x3c\x44\xe4\x91\x87\x88\xbc\xed\xe1\x99\xaf\x59\x2a\xb9\x39\x79\ \xb8\xc8\x23\x0f\x11\x79\xe4\x21\x22\x6f\xbb\x78\xe6\xeb\x2b\x32\ \x17\x6b\x6f\x4e\x1e\x26\xf2\xc8\x43\x44\x1e\x79\x88\xc8\x23\xef\ \x58\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\x3c\x44\xe4\ \x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\x3c\x44\ \xe4\x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\x3c\ \x44\xe4\x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\ \x3c\x44\xe4\x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\x22\ \x8f\x3c\x44\xe4\x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\x21\ \x22\x8f\x3c\x44\xe4\x05\x78\xd0\x62\x81\xc8\x23\x0f\x11\x79\xe4\ \x21\x22\x8f\x3c\x44\xe4\x45\x78\xd0\xe2\x88\xe0\xcd\x23\x22\x8f\ \x3c\x44\xe4\x91\x87\x88\x3c\xf2\x10\x6d\x24\x0f\x5a\x1c\x50\xd2\ \xe6\x01\x91\x47\x1e\x22\xf2\xc8\x43\x44\x1e\x79\x88\x36\x96\x07\ \x2d\xf6\x28\x79\x73\x8f\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\x3c\ \x44\x1b\xcd\x83\x16\x3b\x94\xb5\xb9\x43\xe4\x91\x87\x88\x3c\xf2\ \x10\x91\x47\x1e\xa2\x6d\xe3\x41\xd2\xde\x9c\x3c\xf2\x10\x91\x47\ \x1e\x22\xf2\xc8\x43\xb4\x6d\x3c\x48\xda\x9b\x93\x47\x1e\x22\xf2\ \xc8\x43\x44\x1e\x79\x88\xb6\x8d\x07\x49\x7b\x73\xf2\xc8\x43\x44\ \x1e\x79\x88\xc8\x23\x0f\xd1\xb6\xf1\x20\x69\x6f\x4e\x1e\x79\x88\ \xc8\x23\x0f\x11\x79\xe4\x21\xda\x36\x1e\x24\xed\xcd\xc9\x23\x0f\ \x11\x79\xe4\x21\x22\x8f\x3c\x44\xdb\xc8\x33\xbf\xe6\x55\x89\xcd\ \xc9\x4b\x17\x79\xe4\x21\x22\x8f\x3c\x44\xe4\x6d\x07\xcf\xfc\xba\ \x53\xa5\x36\x27\x2f\x4d\xe4\x91\x87\x88\x3c\xf2\x10\x91\xb7\x3d\ \x3c\xf3\x35\x4b\x25\x37\x27\x0f\x17\x79\xe4\x21\x22\x8f\x3c\x44\ \xe4\x6d\x17\xcf\x7c\x7d\x45\xe6\x62\xed\xcd\xc9\xc3\x44\x1e\x79\ \x88\xc8\x23\x0f\x11\x79\xe4\x1d\x0b\x5a\x2c\x10\x79\xe4\x21\x22\ \x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\x2c\x10\x79\xe4\x21\ \x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\x2c\x10\x79\xe4\ \x21\x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\x2c\x10\x79\ \xe4\x21\x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\x2c\x10\ \x79\xe4\x21\x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\x2c\ \x10\x79\xe4\x21\x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x00\x0f\x5a\ \x2c\x10\x79\xe4\x21\x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\x08\x0f\ \x5a\x1c\x11\xbc\x79\x44\xe4\x91\x87\x88\x3c\xf2\x10\x91\x47\x1e\ \xa2\x8d\xe4\x41\x8b\x03\x4a\xda\x3c\x20\xf2\xc8\x43\x44\x1e\x79\ \x88\xc8\x23\x0f\xd1\xc6\xf2\xa0\xc5\x1e\x25\x6f\xee\x11\x79\xe4\ \x21\x22\x8f\x3c\x44\xe4\x91\x87\x68\xa3\x79\xd0\x62\x87\xb2\x36\ \x77\x88\x3c\xf2\x10\x91\x47\x1e\x22\xf2\xc8\x43\xb4\x6d\x3c\x48\ \xda\x9b\x93\x47\x1e\x22\xf2\xc8\x43\x44\x1e\x79\x88\xb6\x8d\x07\ \x49\x7b\x73\xf2\xc8\x43\x44\x1e\x79\x88\xc8\x23\x0f\xd1\xb6\xf1\ \x20\x69\x6f\x4e\x1e\x79\x88\xc8\x23\x0f\x11\x79\xe4\x21\xda\x36\ \x1e\x24\xed\xcd\xc9\x23\x0f\x11\x79\xe4\x21\x22\x8f\x3c\x44\xdb\ \xc6\x83\xa4\xbd\x39\x79\xe4\x21\x22\x8f\x3c\x44\xe4\x91\x87\x68\ \x1b\x79\xe6\xd7\xbc\x2a\xb1\x39\x79\xe9\x22\x8f\x3c\x44\xe4\x91\ \x87\x88\xbc\xed\xe0\x99\x5f\x77\xaa\xd4\xe6\xe4\xa5\x89\x3c\xf2\ \x10\x91\x47\x1e\x22\xf2\xb6\x87\x67\xbe\x66\xa9\xe4\xe6\xe4\xe1\ \x22\x8f\x3c\x44\xe4\x91\x87\x88\xbc\xed\xe2\x99\xaf\xaf\xc8\x5c\ \xac\xbd\x39\x79\x98\xc8\x23\x0f\x11\x79\xe4\x21\x22\x8f\xbc\x63\ \x41\x8b\x05\x22\x8f\x3c\x44\xe4\x91\x87\x88\x3c\xf2\x10\x91\x77\ \x8d\xf7\xff\x03\xd9\x4c\xb3\x3d\xf7\xad\x70\xfc\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\x4e\ \x00\ \x00\x3d\x7e\x78\x9c\xed\x9b\x79\x54\x53\x57\x1e\xc7\x1f\x61\x71\ \x04\xc4\xaa\x2c\x45\x45\xd3\x28\x2e\x68\x78\x09\x59\x80\x90\x04\ \x22\x01\xc1\x31\xf0\x44\x44\x96\x22\xc4\x97\x17\x78\x21\x9b\x59\ \x0c\x4b\xab\x11\x3b\xb8\xa2\x2d\xc7\xad\x94\x91\x30\x6e\x81\x8e\ \xe0\x00\x91\x33\x30\x68\x2b\x65\x50\x10\x4a\xc7\xb8\xa0\x55\x4e\ \xc7\x41\x47\x06\x6a\x6d\x0f\xd8\x86\x2a\xf3\x02\xa8\x08\xc1\xe9\ \xcc\xf4\xcf\x77\xcf\x79\xef\x25\xbf\x7b\xbf\xdf\xcf\x7d\xf7\xfe\ \xee\xcd\xfd\x27\x7b\xa0\x98\xd5\x33\x9c\xe7\x3a\x03\x00\x30\x23\ \x3a\x8a\x1f\x87\x3d\x99\xd6\xeb\x37\x4e\xd8\x7d\x7f\x84\xe4\x2e\ \xf6\x98\xae\x8c\x4a\x52\x03\x80\xa7\xaf\xf5\xb2\x8b\x8e\x5b\xfc\ \x1d\x00\x04\xf9\xa1\xf1\x89\x9a\x44\xc1\x5a\x16\xac\x90\xf9\x0b\ \x45\x8a\xcd\x88\x7f\xb6\x4c\x09\x58\x0b\x3b\x34\x5b\x29\x84\xb3\ \x10\x0d\x71\x33\x92\x81\xca\x39\xa4\xc7\x0d\x17\x49\x44\x54\xc4\ \x21\x6d\x64\x08\x28\x02\x65\x38\x92\x89\x46\xe5\xaa\x90\xf5\xb9\ \x31\xf1\x70\x6e\x16\x1c\x2c\x22\x85\x72\x9d\xd9\xd9\x2c\xcc\x40\ \x86\x68\x84\xc4\x6c\x99\x54\xae\x66\x65\x73\x48\x23\xbe\x2c\xec\ \xb3\x35\x0c\x92\x88\x23\x4d\x34\x59\x1c\x12\xcf\x5a\x41\x4c\x14\ \x40\xc4\x70\x85\x0a\x21\x32\xfc\x99\x64\x98\xc2\x0c\x24\x06\x06\ \xfb\x53\x19\x81\x81\xf4\xc0\x95\xc4\x00\x0a\x95\x01\x52\x68\x20\ \x8d\x42\x0e\xa0\xb1\xe8\x14\x16\x3d\x80\x38\x56\x48\x5c\x67\xec\ \xce\x56\x89\xc4\xac\x38\x7e\xe4\x18\x0e\xfb\xc6\x21\x65\x6a\x34\ \x4a\x16\x08\xea\x74\x3a\x7f\x1d\xcd\x5f\xa1\xca\x00\xa9\xc1\xc1\ \xc1\x20\x25\x00\x0c\x08\x20\x63\x2d\xc8\xea\x1c\xb9\x46\x98\x4d\ \x96\xab\x17\x8d\x9a\xbc\xf0\xe1\x23\x6a\x58\x85\x2a\x35\xa8\x42\ \x4e\xb4\x7e\x17\x6e\x56\x68\x35\x1c\x12\xc9\x99\x38\xae\x8c\xbd\ \x97\x4c\xf9\x12\x24\x57\x8f\x8d\x1d\x36\x8a\x60\xb6\x50\x09\x52\ \xfd\x29\xa0\x2d\x91\x08\x7e\xa9\x51\x6a\x55\xd2\x91\xae\x89\x60\ \x10\x91\x22\x32\x44\xae\x51\x63\x3a\xaa\x4d\x9d\x32\x53\xa1\x51\ \xa8\x33\x15\x53\x20\x5f\x56\x4f\x09\xc6\x7a\x2b\x10\xbc\xb9\xbf\ \x32\x99\x4d\xa5\x5a\x13\xb1\x55\xf3\x66\xa5\x3a\x3e\x47\x89\x80\ \x71\x88\x5a\xa1\x55\xc1\x48\xc4\x56\xec\x55\x16\xd9\xb2\xd2\xa0\ \x62\xb1\x6d\x27\x6b\xcd\x94\x7d\x47\xb2\xd1\x29\x64\xd6\x9a\x51\ \x19\xf7\x95\x8e\x8d\xbd\x2b\x2b\x5c\x85\x08\x35\x0a\x55\xbc\x42\ \x21\xe5\x8e\x66\x19\xf4\x62\x8c\x88\xe1\xe1\x23\x59\x45\x5c\x26\ \x10\xc2\xa8\xdc\x1a\x5c\xce\x06\x27\x8a\x6c\xf9\x21\x7c\xec\xe2\ \x62\x5a\x26\x99\x12\x80\xa5\x63\x3c\x25\x98\x45\xc5\x32\x92\x4a\ \xa6\x04\xb1\x28\x94\x71\x26\xa3\x2d\x27\x78\x08\x14\x22\x54\x9c\ \x63\xcb\x83\xca\xa2\xd3\xc7\x7b\x8c\x6b\x39\xd1\x03\x5b\x41\x22\ \xa1\x46\xf8\x8b\x5c\xc6\xb7\x1d\xe7\x23\x82\x59\x62\x85\x4a\x26\ \xd4\x70\x51\x99\x30\x03\x01\x95\xf2\x0c\x36\xf8\x2a\x38\xae\xe5\ \xcb\xbc\x62\x85\x2b\xa4\x0a\x15\xd6\x2d\x84\x4b\x63\x83\xb6\xc2\ \xaf\xf7\x53\x20\x60\x45\xcb\xd5\x1a\xa1\x1c\x46\xa2\xf9\x5c\x2c\ \xe0\x8f\xa2\x22\x16\x1c\xcc\xa4\x51\x19\x41\x74\x32\x0d\x11\x06\ \x93\xe9\x22\x71\x10\x59\x18\xc0\x0c\x26\xc3\xcc\x20\x51\xb0\x88\ \x1e\x24\x84\xc5\xc8\x48\xd7\x5f\x97\x4f\xb2\xe6\x2b\x60\xad\x75\ \xbd\x8c\x59\x8b\xfe\x4b\xeb\x71\xf2\x49\xd6\xb1\x2a\x14\xdb\xeb\ \x84\xd2\xff\x13\x61\xc3\x66\x12\x2a\x0a\x55\x63\xc9\x96\xc3\x7d\ \x2d\xe3\x47\x76\xa1\xf5\xc8\x96\xd7\xa3\x2f\x2a\xa4\xe8\xc8\xae\ \xa4\x14\xaa\xd4\x88\x75\xcd\x71\x48\x2f\x16\x1d\x69\x92\xc0\xaa\ \x19\x59\xbb\x2c\x21\x6c\xdd\xcf\xb8\xf0\x48\x62\x8a\xd8\xe0\x6b\ \xd1\xa9\x65\xe8\xff\x3a\x81\x93\xe4\x53\x33\x74\x99\x88\xfc\x4d\ \x0b\x6a\x5c\xab\xa9\x4d\xd4\x0a\xb1\x46\x27\x54\x21\xbc\x0c\x6c\ \xa4\x7f\xd9\x6a\xb7\x25\x9c\x34\xe2\xe0\xe8\x90\x4f\x98\x20\x70\ \xf2\x0c\xbd\x98\xf5\xc9\x33\xca\xb6\x6e\x6c\xd6\x6c\xc0\x00\xc2\ \x91\xf1\xa6\xb2\xc1\x49\xb1\x89\xed\x13\xad\xb3\x2a\xd5\x8e\xb6\ \xa7\xd3\x29\x58\x01\xa9\xd6\xfb\x98\x76\x7c\xfd\x44\x6d\xd2\x7f\ \xd0\x26\xbd\x41\xfb\xaa\x6a\x83\x1c\xd5\x70\x03\xc6\x24\x13\xc2\ \xe3\x54\xd6\xfd\x77\x74\x0f\x58\x8f\x1d\x15\x10\x2e\x93\xc1\xa0\ \x31\xd8\xe0\xc4\xf0\x44\x05\x84\x66\x23\xd2\x44\x3e\x8a\xad\x0c\ \xb5\xb5\x1f\x0c\xfa\x98\x66\x62\x85\x4d\x61\xd2\x54\xc2\xa4\x49\ \xc2\xd1\xc9\x1a\xf7\xa3\x3e\x7a\x62\x00\xc7\x8e\x0c\xd8\x69\x05\ \x7c\x79\x5c\xb1\x95\x60\xbf\x7e\xc1\x21\x38\x04\x87\xe0\x10\x1c\ \x82\x43\x70\x08\x0e\xc1\x21\x38\x04\x87\xe0\x10\x1c\x82\x43\x70\ \x08\x0e\xc1\x21\x38\x04\x87\xe0\x10\x1c\x82\x43\x70\x08\x0e\xc1\ \x21\x38\x04\x87\xe0\x10\x1c\x82\x43\x70\x08\x0e\xc1\x21\x38\x04\ \x87\xe0\x10\x1c\x82\x43\x70\x08\x0e\xc1\x21\x38\x04\x87\xe0\x10\ \x1c\x82\x43\x7e\x65\x88\xf3\xab\x3f\x00\x22\x72\x11\x87\xa4\x23\ \x85\x72\x9d\x32\x04\x89\x00\x00\x10\xe1\xa8\x38\x01\x00\xe4\xfa\ \x02\x80\x7e\x27\x00\xfc\x34\x8c\x3d\x1f\x01\x80\x96\x02\x00\xbd\ \xe9\x00\xc0\x3a\x06\x00\x5e\x8a\xa2\xb4\xe6\x48\x00\x70\xe8\x88\ \xe6\xf3\xe2\xb3\x6f\xf7\x15\xcb\x8c\xf1\x1b\xdc\x0b\xaa\xc4\xbf\ \xab\x12\x92\x66\x9f\xd2\x0e\x44\x26\x2c\x8e\xf6\x3c\x0c\x15\xb8\ \xbb\x23\x4e\x7e\x68\xe8\xa5\xab\x57\x2f\x98\xf6\x43\x27\xb7\x6d\ \x78\x3e\x6b\xed\x50\x67\xc8\xc7\xc5\xe5\xe5\xef\x7f\x57\x24\x2e\ \xf7\x10\x47\x47\xba\x6f\x5e\xf7\x21\x52\x95\xc4\xdf\x63\xf4\x2d\ \xd7\xb4\x5f\x2b\xd5\x35\x3d\xa0\x64\x74\x5c\x6d\x7c\xd8\xdb\xc8\ \xb4\x6f\x72\xcd\xaa\x32\x0d\xe6\x74\x70\xb3\xfa\x4d\x83\x6b\xc3\ \x8b\x16\xcf\x58\x7a\xbf\xa1\xcc\x2d\x61\xda\xa7\x3b\xaf\x7f\x9e\ \xec\x78\x63\x5d\x9a\xa1\xc3\x4e\xab\x6d\xba\xf2\x3d\x81\x01\x98\ \xdf\x83\xb6\xe7\x4b\xd8\xde\x7a\x7f\x27\x93\x6b\xbc\x8b\xd1\xc1\ \xfc\x87\x0e\x37\xba\x83\x3b\xef\x59\x96\xc1\xc1\xbc\x0e\xb2\x0f\ \x59\xd1\xc9\x30\x70\x01\xed\x4a\x82\xe5\x4a\xe9\x8a\x90\x45\x9d\ \x85\x06\xee\xbe\xf4\xd9\x50\xa8\x3e\xb9\xff\x71\x4b\xd8\x8c\x6f\ \x57\x52\x52\x79\x85\x84\x01\xad\x43\x8d\x97\x79\x09\xf4\x5b\x1e\ \xd9\x6e\xe0\xa3\x9e\x2c\x96\x3d\x14\x08\xdd\xe7\xf5\xef\xd6\x6f\ \xb3\x1f\xe0\x1a\x87\x78\x8d\x04\x09\xd5\xd8\xd2\x28\x99\x6e\x2c\ \xf3\xf1\xfe\xa7\x06\x9a\x99\x7f\xdb\xc7\xae\x7f\x6b\xd1\x31\x07\ \x49\x75\x99\xe7\x8e\x62\x67\xc9\x11\x2d\xb7\xcf\x18\xc6\x09\x6b\ \x07\x4c\x4b\x09\xb7\x7b\x7e\xfc\xd8\x9d\x47\xde\x6f\xe8\x00\x4c\ \xed\xf5\x81\x1a\xba\x81\xc6\xe3\xb8\x48\xb6\xfb\x35\x91\x0b\xf5\ \x04\x73\xdb\xa6\xb3\x00\xa3\xc9\x92\x12\x32\xbb\x33\xc9\xf0\x60\ \x87\x25\x84\x60\x99\x15\xbf\xdc\xd1\xdd\xb0\x06\xab\xd0\x3a\x1b\ \xc9\xe7\xe7\x75\xcd\xd2\x77\xa8\x3b\x17\xee\xd1\x5f\x98\x36\xf0\ \x9e\xb7\x01\xb8\xde\x77\x7d\x6f\xd9\x82\xea\xfe\xad\x50\x6a\xcc\ \xe2\xce\x08\xc3\xbd\xdd\xad\xc7\x1d\xcc\x75\x06\x71\x06\x80\xac\ \xea\xea\x6e\x19\xdc\xd2\xb2\x87\x50\x3f\xdf\x5c\x1f\xdf\x55\xe3\ \x63\xa6\x79\x60\x94\x9f\x5d\x8d\x0d\xfd\x19\xab\x3f\xf4\x89\x35\ \x7c\x63\x60\x9e\x69\x3d\x0e\xf2\x38\x87\xed\xe3\x67\xb5\x5e\x68\ \x2a\x60\x3f\xc9\x26\x14\x3a\x0c\x44\x54\xf4\x75\x39\x4b\x72\x3d\ \xc2\xec\x7a\x23\x96\xee\x53\x41\xf0\x89\xc6\xfe\xda\xc1\x82\x47\ \x84\xde\x98\x96\xb5\xfa\xae\x87\x41\xc7\x92\x7d\x21\x7d\xee\x3b\ \x2e\xad\x6a\x59\xed\xf0\xea\x80\xca\x53\x81\xc6\x3d\x86\x23\x79\ \x07\x87\x9a\xef\xb4\x78\xd6\x31\x9f\xea\x7b\x53\x05\x3e\x81\x1d\ \xd4\x39\xfa\xe7\x80\xc9\xce\x6c\xcf\x00\x9a\xa1\x76\x0f\x43\x24\ \x5f\xad\x89\x2d\x1c\xd8\x22\xe6\x94\xe4\x26\xb7\x36\xce\x4c\xa9\ \x8b\xf5\xbc\x55\xbe\x8d\xce\x3c\xe3\x7a\x91\x30\x10\x57\x08\xfd\ \xe0\xc7\xcb\xb9\xa0\x1d\x0c\x5d\xe4\xbb\x50\x7c\x8b\x32\x1c\x12\ \x43\x39\x9a\x93\x87\x12\xb4\x64\xe3\xf4\x05\x2e\xb9\x79\x61\xa9\ \x47\xeb\x72\x77\xfa\xf4\x3d\x29\x18\x9a\x61\xac\x0b\xe3\x94\xd8\ \x33\xbc\xcc\xf9\xf3\x8d\xdf\x0c\xfe\x79\x61\xfc\x97\x51\xdb\xbc\ \x8c\xdb\xd9\x91\x50\xb8\x24\x13\x9a\x73\x27\xc6\xb8\xe4\x5e\xee\ \x8e\xe2\x07\x7e\xa4\x4d\xcd\xb1\xad\x27\x7f\xbc\x62\x38\xde\xb6\ \xb3\xba\x5b\xf9\x4e\xec\x99\x05\xed\x27\x8e\x80\xd2\x08\x79\xe2\ \xdb\xda\xbb\x8b\x24\x8f\x4e\x44\xea\x73\x41\xd3\x2e\x99\xba\x31\ \xd0\xdb\x5c\xe2\x57\x56\x59\xdb\xff\xf9\x5b\x5e\x06\x0b\x8b\xe7\ \x6b\x58\xe3\xbd\x75\x1e\xfb\xe9\x09\x8f\xca\x1a\x77\xdf\x86\x9a\ \xac\x46\x9a\x7d\x63\xc0\xa3\x55\x3a\xed\x82\x43\xfd\xe1\xbb\xd8\ \x4b\x8b\xc8\xd5\x52\xad\x63\x43\xe9\x59\x5a\xe8\x43\xcb\xbd\xda\ \x7b\x7f\x3f\x5f\xbb\xe4\x69\xf0\xe0\xaa\x94\xd2\x69\x8c\xcb\xf5\ \xab\xc3\x06\x0a\x13\x56\x1c\x12\x7b\x79\x02\xcc\xce\x5c\xb2\xc1\ \x62\xd2\x3e\x76\x79\xdf\xfc\xc1\xfc\xc6\x53\x37\xb2\x0e\x88\x0e\ \xf6\x9c\x4d\x20\xa7\xdf\x48\x45\xee\xa2\x32\xc7\x86\x9b\x07\x98\ \x0f\xe6\xeb\x0b\x42\x72\xb6\x2d\xde\x7e\xf3\xfb\xaf\x1c\xf3\x0b\ \xab\xbf\xad\x3f\x9f\xaf\x3d\xb8\x59\x9e\x59\x10\x53\xd3\x72\xf4\ \xd4\x3f\x1a\x56\x2e\x84\x88\x89\xf0\xb2\xeb\x7b\x97\x35\x8b\xef\ \x74\x15\xed\x8f\xa4\x6f\x49\x98\x77\x68\xae\x4b\x1e\x72\x70\xfe\ \xf0\xde\xdb\x27\x8a\x14\xe6\x3f\xbe\xf5\xe9\xf2\xd4\xc4\xa7\xd0\ \xac\x74\x2f\x7e\x0a\xaf\xca\x7c\xeb\xdd\xb6\x6e\x7f\x58\x77\x19\ \xbe\xfc\x64\x58\x12\x19\xcd\xa0\xdd\x9f\xbe\x26\xcc\xc7\xbf\x42\ \xbf\x29\x6b\x57\xec\xe9\xea\x87\x31\x6d\x55\xcb\xe0\x39\x31\xe7\ \xe6\xaa\xdf\x4b\x7b\x7c\xb5\xe1\xda\xc1\x1e\x2e\x74\x71\x67\x7d\ \xc5\x7e\x79\xe8\xd0\xcf\xa6\x65\xe7\x3e\x59\x85\xcc\xbe\x72\xe9\ \xa3\xdb\x16\xd7\x4f\x06\x16\x5c\x3c\xfb\x99\x5b\x4f\xc2\xd0\xd7\ \x90\xa8\x6d\x8e\x1b\x5b\x51\xb7\xb2\xc4\xe2\xd6\x76\x2e\xe7\xd2\ \xfd\x15\xce\x0e\x29\xf2\xd2\x6b\xfb\xfa\x1e\x9e\xbe\xf5\x28\x19\ \xa2\x3d\x7b\x76\xad\xc4\xd5\x53\xf2\xc5\x73\xc7\xab\xdd\x6f\xfb\ \x56\x3c\x8f\xc8\x1f\x50\xf9\x1c\xd3\x5b\xbe\x2e\x0d\xdc\x98\xb3\ \x2b\x0d\x4c\x7f\xee\x11\x11\x6a\xf7\xa7\x1f\x1c\xb7\x84\x6e\xec\ \xa1\xde\x4b\xbb\x91\x06\x7d\xf6\x97\x69\x77\x7a\x36\x42\xd0\x51\ \x7e\x3a\x5c\x51\xeb\x3d\xcf\xc7\xf3\x70\x32\x35\x63\xb9\xe5\x27\ \xf4\xdd\xbc\xe3\xbf\x97\x12\x06\x7c\x8c\x95\x8c\xbf\x66\xec\xae\ \xdb\x60\x28\xae\x38\x87\x12\x4c\x01\xbd\xcd\xa7\x6b\x9f\x96\x75\ \x66\x42\xf7\x53\x84\x3a\x17\xa3\xfd\x57\x7b\xab\x54\xfd\x37\x1d\ \x2a\xce\x7c\x19\xee\x6f\x92\x22\x27\x75\x86\x5e\xa7\x1a\x7d\xf7\ \x17\xf5\xa6\xbf\x9d\x5f\x68\xbc\x19\xb7\xb4\x3d\xe9\xb1\xe7\xbf\ \x8e\xdf\xe9\x4c\xda\xe4\x54\xf2\xc0\x2d\x2c\x86\x92\x77\xd7\xbe\ \xf2\x49\x22\x62\xb0\xa4\x1d\xe8\x4d\xd7\x9e\x63\x25\xfa\xf4\x0d\ \x03\x83\xdd\xc0\xdc\x99\xc5\x96\xf2\xfa\x93\x3d\xd6\x7f\x48\x47\ \x47\xc4\xf0\x2b\x57\xa5\xe7\xff\x1b\xbd\x05\xf5\xd6\ \x00\x00\x67\x9c\ \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\x67\x63\x49\x44\x41\x54\x78\x5e\xec\xbd\x0b\x98\x1c\x57\ \x79\xe7\x2d\x1b\x63\xc0\xd8\x18\x5f\xa7\x47\xf2\x0d\x50\x70\x10\ \x59\x07\x22\xb0\x2c\x4d\x77\x6b\xac\x99\xee\x96\x2c\x69\xba\x9b\ \x6c\x67\x63\x08\x84\xab\x82\x6c\x6b\x7a\x64\xef\xc6\x2c\xcf\x7e\ \x1b\x07\x92\x8d\xc3\x26\x59\x9c\x0b\xdf\x02\xf9\x42\x62\xe0\x23\ \x11\x10\x42\xcc\x25\xc6\xc6\xc6\xb6\xae\x33\xe3\x90\x98\x7b\xbc\ \xdc\xc1\x38\x06\x6c\x63\x6e\xbe\x7b\xcf\xdb\x33\x3d\xae\x7e\xeb\ \x54\xd5\xf9\x57\x9f\x9a\xe9\xcb\xff\xf7\x3c\xef\x23\xbb\xe7\xf4\ \xef\x9c\x53\x55\xe7\x52\xd5\x55\xa7\x56\xad\x5b\xb7\xee\xd8\xf5\ \xeb\xd7\x3f\x75\x55\x17\xc8\xf7\xc5\xd3\x0e\xfa\x30\xe8\xa3\x0f\ \x81\x3e\xfa\x10\xe8\xa3\x2f\x12\x28\xb1\x85\xae\x32\xb7\x40\x1f\ \x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\x9d\x39\x7d\ \xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\x9b\x0f\xc2\x77\xe6\xf4\ \xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\x6c\x3e\x08\xdf\x99\xd3\ \x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\x4e\ \x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\x9d\x39\ \x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\xa3\x4f\x7f\x16\x49\ \x16\x99\xd3\x97\x1e\xfa\xe8\x43\xa0\x8f\x3e\x04\xfa\x86\xc3\xa7\ \x3f\xb7\x92\x55\xe6\xf4\xa5\x83\x3e\xfa\x10\xe8\xa3\x0f\x81\xbe\ \xe1\xf1\xe9\xbf\x85\xc8\x32\x73\xfa\x70\xe8\xa3\x0f\x81\x3e\xfa\ \x10\xe8\x1b\x2e\x9f\xfe\x7b\x07\x3a\xb1\xef\xcc\xe9\xc3\xa0\x8f\ \x3e\x04\xfa\xe8\x43\xa0\x8f\xbe\x25\xa0\xc4\x0e\xd0\x47\x1f\x02\ \x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\x03\xf4\xd1\x87\ \x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\x7d\xf4\ \x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\x1f\ \x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xc5\xf8\xa0\xc4\x0e\xd0\ \x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\x03\ \xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\ \x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x97\xe0\x83\x12\ \x27\x00\x67\x9e\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\ \xa4\x0f\x4a\x1c\x43\xaa\xcc\x63\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\ \x8f\x3e\x84\x81\xf5\x41\x89\x23\x48\x9d\x79\x04\xf4\xd1\x87\x40\ \x1f\x7d\x08\xf4\xd1\x87\x30\xd0\x3e\x28\xb1\x85\xae\x32\xb7\x40\ \x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\x9d\x39\ \x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\x9b\x0f\xc2\x77\xe6\ \xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\x6c\x3e\x08\xdf\x99\ \xd3\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\ \x4e\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\x9d\ \x39\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\xa3\x4f\x7f\x16\ \x49\x16\x99\xd3\x97\x1e\xfa\xe8\x43\xa0\x8f\x3e\x04\xfa\x86\xc3\ \xa7\x3f\xb7\x92\x55\xe6\xf4\xa5\x83\x3e\xfa\x10\xe8\xa3\x0f\x81\ \xbe\xe1\xf1\xe9\xbf\x85\xc8\x32\x73\xfa\x70\xe8\xa3\x0f\x81\x3e\ \xfa\x10\xe8\x1b\x2e\x9f\xfe\x7b\x07\x3a\xb1\xef\xcc\xe9\xc3\xa0\ \x8f\x3e\x04\xfa\xe8\x43\xa0\x8f\xbe\x25\xa0\xc4\x0e\xd0\x47\x1f\ \x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\x03\xf4\xd1\ \x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\x7d\ \xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\ \x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xc5\xf8\xa0\xc4\x0e\ \xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\ \x03\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\ \xec\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x97\xe0\x83\ \x12\x27\x00\x67\x9e\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\ \x0c\xa4\x0f\x4a\x1c\x43\xaa\xcc\x63\xa0\x8f\x3e\x04\xfa\xe8\x43\ \xa0\x8f\x3e\x84\x81\xf5\x41\x89\x23\x48\x9d\x79\x04\xf4\xd1\x87\ \x40\x1f\x7d\x08\xf4\xd1\x87\x30\xd0\x3e\x28\xb1\x85\xae\x32\xb7\ \x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\x9d\ \x39\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\x9b\x0f\xc2\x77\ \xe6\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\x6c\x3e\x08\xdf\ \x99\xd3\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\ \x67\x4e\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\ \x9d\x39\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\xa3\x4f\x7f\ \x16\x49\x16\x99\xd3\x97\x1e\xfa\xe8\x43\xa0\x8f\x3e\x04\xfa\x86\ \xc3\xa7\x3f\xb7\x92\x55\xe6\xf4\xa5\x83\x3e\xfa\x10\xe8\xa3\x0f\ \x81\xbe\xe1\xf1\xe9\xbf\x85\xc8\x32\x73\xfa\x70\xe8\xa3\x0f\x81\ \x3e\xfa\x10\xe8\x1b\x2e\x9f\xfe\x7b\x07\x3a\xb1\xef\xcc\xe9\xc3\ \xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\x8f\xbe\x25\xa0\xc4\x0e\xd0\x47\ \x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\x03\xf4\ \xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\ \x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\ \x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xc5\xf8\xa0\xc4\ \x0e\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\ \xb1\x03\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\ \x4a\xec\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x97\xe0\ \x83\x12\x27\x00\x67\x9e\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\ \x21\x0c\xa4\x0f\x4a\x1c\x43\xaa\xcc\x63\xa0\x8f\x3e\x04\xfa\xe8\ \x43\xa0\x8f\x3e\x84\x81\xf5\x41\x89\x23\x48\x9d\x79\x04\xf4\xd1\ \x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\xd0\x3e\x28\xb1\x85\xae\x32\ \xb7\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\ \x9d\x39\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\x9b\x0f\xc2\ \x77\xe6\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\x6c\x3e\x08\ \xdf\x99\xd3\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\ \x7c\x67\x4e\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\ \xf0\x9d\x39\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\xa3\x4f\ \x7f\x16\x49\x16\x99\xd3\x97\x1e\xfa\xe8\x43\xa0\x8f\x3e\x04\xfa\ \x86\xc3\xa7\x3f\xb7\x92\x55\xe6\xf4\xa5\x83\x3e\xfa\x10\xe8\xa3\ \x0f\x81\xbe\xe1\xf1\xe9\xbf\x85\xc8\x32\x73\xfa\x70\xe8\xa3\x0f\ \x81\x3e\xfa\x10\xe8\x1b\x2e\x9f\xfe\x7b\x07\x3a\xb1\xef\xcc\xe9\ \xc3\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\x8f\xbe\x25\xa0\xc4\x0e\xd0\ \x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\x03\ \xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\ \x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\ \x3b\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xc5\xf8\xa0\ \xc4\x0e\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\ \x28\xb1\x03\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\ \x0f\x4a\xec\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x97\ \xe0\x83\x12\x27\x00\x67\x9e\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\ \xf4\x21\x0c\xa4\x0f\x4a\x1c\x43\xaa\xcc\x63\xa0\x8f\x3e\x04\xfa\ \xe8\x43\xa0\x8f\x3e\x84\x81\xf5\x41\x89\x23\x48\x9d\x79\x04\xf4\ \xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\xd0\x3e\x28\xb1\x85\xae\ \x32\xb7\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\ \xf0\x9d\x39\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\x9b\x0f\ \xc2\x77\xe6\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\x6c\x3e\ \x08\xdf\x99\xd3\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\ \x20\x7c\x67\x4e\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\ \x83\xf0\x9d\x39\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\xa3\ \x4f\x7f\x16\x49\x16\x99\xd3\x97\x1e\xfa\xe8\x43\xa0\x8f\x3e\x04\ \xfa\x86\xc3\xa7\x3f\xb7\x92\x55\xe6\xf4\xa5\x83\x3e\xfa\x10\xe8\ \xa3\x0f\x81\xbe\xe1\xf1\xe9\xbf\x85\xc8\x32\x73\xfa\x70\xe8\xa3\ \x0f\x81\x3e\xfa\x10\xe8\x1b\x2e\x9f\xfe\x7b\x07\x3a\xb1\xef\xcc\ \xe9\xc3\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\x8f\xbe\x25\xa0\xc4\x0e\ \xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\ \x03\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\ \xec\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\ \x12\x3b\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xc5\xf8\ \xa0\xc4\x0e\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\ \x3e\x28\xb1\x03\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\ \x8c\x0f\x4a\xec\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\ \x97\xe0\x83\x12\x27\x00\x67\x9e\x00\x7d\xf4\x21\xd0\x47\x1f\x02\ \x7d\xf4\x21\x0c\xa4\x0f\x4a\x1c\x43\xaa\xcc\x63\xa0\x8f\x3e\x04\ \xfa\xe8\x43\xa0\x8f\x3e\x84\x81\xf5\x41\x89\x23\x48\x9d\x79\x04\ \xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\xd0\x3e\x28\xb1\x85\ \xae\x32\xb7\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\ \x83\xf0\x9d\x39\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\x9b\ \x0f\xc2\x77\xe6\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\x6c\ \x3e\x08\xdf\x99\xd3\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\ \xf9\x20\x7c\x67\x4e\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\ \xe6\x83\xf0\x9d\x39\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\ \xa3\x4f\x7f\x16\x49\x16\x99\xd3\x97\x1e\xfa\xe8\x43\xa0\x8f\x3e\ \x04\xfa\x86\xc3\xa7\x3f\xb7\x92\x55\xe6\xf4\xa5\x83\x3e\xfa\x10\ \xe8\xa3\x0f\x81\xbe\xe1\xf1\xe9\xbf\x85\xc8\x32\x73\xfa\x70\xe8\ \xa3\x0f\x81\x3e\xfa\x10\xe8\x1b\x2e\x9f\xfe\x7b\x07\x3a\xb1\xef\ \xcc\xe9\xc3\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\x8f\xbe\x25\xa0\xc4\ \x0e\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\ \xb1\x03\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\ \x4a\xec\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\ \x83\x12\x3b\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xc5\ \xf8\xa0\xc4\x0e\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\ \x31\x3e\x28\xb1\x03\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xb9\xf9\x9e\ \xf5\xba\x7f\x3a\x79\xd5\x2b\x3e\xf1\x2c\xfd\x79\x5a\x5f\x14\xf4\ \xf5\xb1\x0f\x4a\xec\x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x0e\xbe\ \xc6\xbe\x63\x47\xf6\xce\x36\x47\xf6\xce\xdd\x77\xf2\x25\xb7\x9c\ \x19\xfc\x53\x2a\x5f\x0c\xf4\xf5\xb9\x0f\x4a\x9c\x00\x9c\x79\x02\ \xf4\xd1\x87\x40\x1f\x7d\x08\x83\xe7\x7b\xe2\xe8\xdc\xe5\xf3\x8d\ \xdc\xde\xb9\xaf\x8d\x5e\x3e\xff\x84\xc4\xaa\x57\x5e\xff\xcc\xf6\ \x5f\x71\x5f\x3c\xf4\x0d\x80\x0f\x4a\x1c\x43\xaa\xcc\x63\xa0\x8f\ \x3e\x04\xfa\xe8\x43\x18\x34\xdf\xc8\x9e\x43\x93\xe6\x8c\xff\xb3\ \xed\x81\x5f\xc2\x4c\x04\x1e\x6a\xff\x1d\xf5\x25\x41\xdf\x80\xf8\ \xa0\xc4\x11\xa4\xce\x3c\x02\xfa\xe8\x43\xa0\x8f\x3e\x84\x41\xf2\ \x9d\xd2\x3c\xf0\xd2\xdc\xde\xf9\x9b\x82\x03\xff\x93\x13\x80\xf9\ \xbb\x24\x0d\xe2\x73\x81\xbe\x01\xf2\x41\x89\x2d\x74\x95\xb9\x05\ \xfa\xe8\x43\xa0\x8f\x3e\x84\x41\xf1\x3d\xfb\xd2\x03\x67\xe7\x66\ \xe6\xae\x35\x67\xf9\x8f\xeb\x81\x7f\x69\x02\x30\x33\xfb\x79\x57\ \x9f\x2b\xf4\x0d\xb6\x0f\xc2\x77\xe6\xf4\xd1\x87\x40\x1f\x7d\x08\ \x83\xe0\x3b\xe1\x55\x37\x9e\x32\xb2\x77\xee\x6a\x33\xf0\x3f\xa8\ \x07\xfc\x8e\xd8\x3b\xf7\xc4\x68\xf3\xc0\x6d\x49\x3e\x04\x97\xf2\ \x21\xd0\xd7\x5b\x3e\x08\xdf\x99\xd3\x47\x1f\x02\x7d\xf4\x21\xf4\ \xbd\x6f\xd7\xfc\x71\xb9\xe6\x91\x2b\x73\x7b\xe7\xef\x0f\x0d\xf6\ \x3a\x64\xf0\x9f\x39\xfc\x44\xae\x79\xe0\xa3\x91\x3e\x90\xc4\xf2\ \x81\xd0\xd7\x5b\x3e\x08\xdf\x99\xd3\x47\x1f\x02\x7d\xf4\x21\xf4\ \xb5\x6f\xfc\xaa\x63\x46\xaf\xb8\x7d\x97\xfc\x9e\x1f\x1a\xe8\x6d\ \xb1\x38\xf8\xaf\x5e\x98\x00\xbc\x27\xe4\x4b\x41\x6c\xf9\x52\x40\ \x5f\x6f\xf9\x20\x7c\x67\x4e\x1f\x7d\x08\xf4\xd1\x87\xd0\xcf\x3e\ \xb9\xb3\xdf\x0c\xfc\x77\x84\x06\xf9\xa8\x08\x0c\xfe\x12\xa3\x7b\ \x6e\xfb\xe3\x2c\xcb\x97\x06\xfa\x7a\xcb\x07\xe1\x3b\x73\xfa\xe8\ \x43\xa0\x8f\x3e\x84\x7e\xf5\x9d\xbc\xe7\xf0\x05\xb9\x99\xd9\x5b\ \x42\x03\x7c\x5c\xa8\xc1\x7f\x71\x02\xf0\xdf\x74\x9e\x08\x51\xe5\ \x4b\x0b\x7d\xbd\xe7\xd3\x9f\x45\x92\x45\xe6\xf4\xa5\x87\x3e\xfa\ \x10\xe8\xeb\x7d\xdf\x29\x97\x1d\xfc\xc5\xdc\xe5\xf3\xfb\xe2\xee\ \xec\xb7\x86\x6d\xf0\x37\x71\xfa\xf4\xa1\x37\xea\x7c\x5d\xb1\x95\ \x4f\xa7\x41\xa0\xaf\x37\x7d\xfa\x73\x2b\x59\x65\x4e\x5f\x3a\xe8\ \xa3\x0f\x81\xbe\xde\xf6\x3d\xe7\xd2\x0f\x9f\x3d\x3a\x33\xfb\x4e\ \x33\xf0\x3f\x12\x1a\xdc\x93\x22\x62\xf0\x97\xcf\x4f\x9b\x9e\xfd\ \x35\x9d\xb7\x0b\xba\x7c\xbe\xeb\x4b\x1f\x46\x96\x3e\xfd\xb7\x10\ \x59\x66\x4e\x1f\x0e\x7d\xf4\x21\xd0\xd7\xbb\xbe\x33\x1a\x7f\x79\ \xf2\xe8\x9e\x5b\xdf\x9c\x9b\x99\x7d\x20\x34\xb0\xbb\x44\xcc\xe0\ \x2f\x7f\x1f\x99\x9e\x9d\xd0\xf9\x27\x91\x65\x7d\xe9\xc3\xc9\xda\ \xa7\xff\xde\x81\x4e\xec\x3b\x73\xfa\x30\xe8\xa3\x0f\x81\xbe\xde\ \xf4\x8d\x94\xff\xf3\x33\xd7\xcc\xdc\xba\x7b\xb4\x79\xe8\xee\xf6\ \x60\x0d\x47\xc2\xe0\x2f\x71\xda\x9e\x83\x2f\xd6\x65\x88\x23\xab\ \xfa\xd2\x97\x8e\x15\xf5\x41\x89\x1d\xa0\x8f\x3e\x04\xfa\xe8\x43\ \xe8\x07\xdf\xda\xb5\xdb\x9e\xb6\x7a\xcf\x67\x2e\xce\xcd\x1c\xbc\ \x53\x0f\xd6\x50\x38\x0c\xfe\x12\xb2\x5a\xa0\x2e\x47\x14\x59\xd4\ \x97\xbe\xf4\xac\xa8\x0f\x4a\xec\x00\x7d\xf4\x21\xd0\x47\x1f\x42\ \x3f\xf8\xce\xbc\xec\xa6\xca\x68\xf3\xe0\xed\x51\x83\xb5\x73\x38\ \x0e\xfe\x12\xab\x5e\xfb\xd1\x13\x74\x59\x6c\x64\x51\x5f\xfa\xd2\ \xb3\xa2\x3e\x28\xb1\x03\xf4\xd1\x87\x40\x1f\x7d\x08\xbd\xee\x3b\ \x63\xf7\x27\xcf\x1b\x6d\x1e\xf8\x50\xd2\x60\xed\x14\xc0\xe0\x9f\ \xdb\x3b\xff\xf0\xaa\x55\x4f\x1c\xa5\xcb\xa3\xf1\x5d\x5f\xfa\xfa\ \xd8\x07\x25\x76\x80\x3e\xfa\x10\xe8\xa3\x0f\xa1\x97\x7d\xab\x2f\ \xb9\xe5\xcc\xd1\xe9\xfd\xef\x1e\x6d\x1e\x7a\x34\x69\xb0\x76\x0a\ \x60\xf0\x97\xc8\xed\x9d\xbb\x5b\x97\x49\xe3\xb3\xbe\x02\x7d\x7d\ \xec\x83\x12\x3b\x40\x1f\x7d\x08\xf4\xd1\x87\xd0\xab\xbe\xb3\xde\ \x74\xc7\x49\xf2\xb2\x9e\xd1\xe9\x43\x3f\x77\x1d\xac\x13\x03\x1c\ \xfc\x25\xcc\x04\xe0\x8b\xba\x6c\x41\x7c\xd5\xb7\x0d\x7d\x7d\xec\ \x83\x12\x3b\x40\x1f\x7d\x08\xf4\xd1\x87\xd0\x93\xbe\xc6\xbe\x63\ \x47\xf6\xce\x36\x73\xcd\x23\xf7\xa2\x83\x75\x6c\xa4\x18\xfc\x25\ \xcc\x24\x64\xbf\x2e\x62\x1b\x2f\xf5\x0d\x40\x5f\x1f\xfb\xa0\xc4\ \x0e\xd0\x47\x1f\x02\x7d\xf4\x21\xf4\x9e\xef\x89\xa3\x73\x97\xcf\ \x37\xcc\x19\xf7\xd7\xd2\x0e\xd6\x91\xd1\x85\x6f\x64\x66\xee\xa3\ \xba\xa4\x42\xf7\xf5\xed\x84\xbe\x3e\xf7\x41\x89\x13\x80\x33\x4f\ \x80\x3e\xfa\x10\xe8\xa3\x0f\xa1\x5b\x9f\xbc\xac\xc7\x9c\x69\x7f\ \xb6\xdb\xc1\xda\x1a\x5d\xfa\x72\x33\xb3\xef\xd1\xe5\xed\xb6\xbe\ \x1a\xfa\x06\xc0\x07\x25\x8e\x21\x55\xe6\x31\xd0\x47\x1f\x02\x7d\ \xf4\x21\x74\xe3\x3b\xf5\xb2\x23\x2f\xc9\xed\x9d\xbf\xc9\xd7\x60\ \x1d\x0a\x0f\xbe\xdc\xcc\xdc\x1f\x07\xcb\xdc\x4d\x7d\x6d\xd0\x37\ \x20\x3e\x28\x71\x04\xa9\x33\x8f\x80\x3e\xfa\x10\xe8\xa3\x0f\x21\ \xad\x4f\x16\xd6\x31\x03\xeb\xb5\x1d\x2f\xeb\xf1\x30\x58\x77\x84\ \x27\xdf\x48\x73\x76\xe9\x4d\x80\x69\xeb\x1b\x05\x7d\x03\xe4\x83\ \x12\x5b\xe8\x2a\x73\x0b\xf4\xd1\x87\x40\x1f\x7d\x08\x69\x7c\x27\ \xbc\xea\xc6\x53\xe4\xce\x7e\x33\xf0\x3f\x98\xc5\x60\x9d\x85\xef\ \xf4\xe6\xec\x25\x52\xf6\x34\xf5\x8d\x83\xbe\xc1\xf6\x41\xf8\xce\ \x9c\x3e\xfa\x10\xe8\xa3\x0f\x01\xf6\xed\x9a\x3f\x2e\xd7\x3c\x72\ \x65\x6e\xef\xfc\xfd\x7a\x80\xf5\x39\x58\x67\xe1\x1b\x99\x3e\xfc\ \xeb\x70\x7d\x13\xa0\x6f\xb0\x7d\x10\xbe\x33\xa7\x8f\x3e\x04\xfa\ \xe8\x43\x80\x7c\xe3\x57\x1d\x33\x7a\xc5\xed\xbb\xcc\xc0\x7f\x97\ \x1e\x58\x5b\xe1\x79\xb0\xce\xc2\x77\xc6\xa5\xb7\x5c\xe4\x5c\x5f\ \x07\xa0\xed\xe7\x00\x7d\xbd\xe5\x83\xf0\x9d\x39\x7d\xf4\x21\xd0\ \x47\x1f\x02\xe2\x93\x3b\xfb\xcd\xc0\x7f\x47\x68\x50\x0d\x0c\xae\ \xbe\x07\xeb\x2c\x7c\x6b\x76\xdf\x70\x81\x4b\x7d\x5d\x40\xb6\x9f\ \x0b\xf4\xf5\x96\x0f\xc2\x77\xe6\xf4\xd1\x87\x40\x1f\x7d\x08\xae\ \xbe\x93\xf7\x1c\xbe\x20\x37\x33\x7b\x4b\x68\x40\xb5\x0c\xae\xbe\ \x07\xeb\x2c\x7c\x6b\xde\xf0\xf7\xcf\x8f\xab\xaf\x2b\xae\xdb\xcf\ \x15\xfa\x7a\xcb\x07\xe1\x3b\x73\xfa\xe8\x43\xa0\x8f\x3e\x04\x17\ \xdf\xa9\xbb\xf7\x9f\x9b\xbb\x7c\x7e\x5f\xc7\x9d\xfd\xb6\xc8\x70\ \xb0\xce\xc2\x97\x7b\xcd\x5f\x9d\x66\xab\x2f\x82\xcb\xf6\x43\xa0\ \xaf\xf7\x7c\xfa\xb3\x48\xb2\xc8\x9c\xbe\xf4\xd0\x47\x1f\x02\x7d\ \x9d\xbe\xe3\x5f\x73\xeb\x69\x23\x7b\xe7\xaf\x31\x03\xff\x23\xa1\ \xc1\x54\x47\xc6\x83\xb5\x6f\xdf\x68\xf3\xd0\x23\xeb\xd6\x35\x8e\ \x0d\xd6\x17\x25\x69\xfb\xa1\xd0\xd7\x9b\x3e\xfd\xb9\x95\xac\x32\ \xa7\x2f\x1d\xf4\xd1\x87\x40\x5f\xc0\xd7\xb8\xf9\xf8\x85\x3b\xfb\ \xe7\x1e\x08\x0d\xa4\xb6\xc8\x78\xb0\xce\xc4\xd7\x3c\x78\x4f\x60\ \x73\xc0\xc4\x6e\xbf\x14\xd0\xd7\xbb\x3e\xfd\xb7\x10\x59\x66\x4e\ \x1f\x0e\x7d\xf4\x21\xd0\xb7\xe8\xdb\x35\xff\xd4\x85\x3b\xfb\xe7\ \xee\x0e\x0d\xa2\x51\x61\x1b\x5c\x7d\x0f\xd6\x19\xf8\x72\x33\xb3\ \x5f\x56\x9b\xc5\x99\xc8\xed\x97\x12\xfa\x7a\xdb\xa7\xff\xde\x81\ \x4e\xec\x3b\x73\xfa\x30\xe8\xa3\x0f\x81\xbe\x96\xef\x28\x79\x59\ \xcf\xc8\xde\xb9\x3b\x43\x03\x68\x5c\x44\x0c\xae\xbe\x07\xeb\x2c\ \x7c\x23\x7b\x67\x0f\xea\x6d\xe3\x42\xc4\xf6\x4b\x0d\x7d\x7d\xec\ \x83\x12\x3b\x40\x1f\x7d\x08\xf4\xd1\x87\x60\xf3\x9d\x7e\xd9\xa1\ \x31\x33\xf0\x1f\x08\x0d\x9e\x49\x11\x33\xb8\x86\xd2\xba\xc4\x32\ \xfb\x46\x66\xe6\x3f\xa6\xb7\x4f\x12\xb6\xed\xa7\xd3\x20\xd0\xd7\ \xc7\x3e\x28\xb1\x03\xf4\xd1\x87\x40\x1f\x7d\x08\xda\x77\xc6\xee\ \x4f\x9e\x97\xdb\x3b\xb7\x2f\x34\x70\xba\x44\xc2\xe0\x0a\xc7\x0a\ \xf8\x72\x33\x73\x7f\xa3\xb7\x51\x1c\x7a\xfb\xf9\xde\x1f\xf4\x61\ \xac\xa8\x0f\x4a\xec\x00\x7d\xf4\x21\xd0\x47\x1f\x42\xd0\x77\xf6\ \xeb\xf7\x3d\x67\x74\x7a\xff\xbb\x73\x33\xb3\x8f\x86\x06\x4e\x97\ \x70\x18\x5c\xa1\x58\x21\xdf\xc8\xcc\xec\xff\xd2\xdb\x29\x8a\x2c\ \xf7\x07\x7d\x38\x2b\xea\x83\x12\x3b\x40\x1f\x7d\x08\xf4\xd1\x87\ \xd0\xf6\x3d\xef\x8d\xd7\x9e\xbe\xba\xb9\xff\x6d\xa3\xd3\x87\x7e\ \xae\x07\x43\xe7\x70\x1c\x5c\x9d\x63\x05\x7d\xa7\x37\x67\xff\xbb\ \xde\x56\x36\xb2\xda\x1f\xf4\xa5\x63\x45\x7d\x50\x62\x07\xe8\xa3\ \x0f\x81\x3e\xfa\x10\x5a\xbe\xc6\x55\xc7\xaf\x99\xb9\x75\xb7\x3c\ \xf6\x16\x35\x18\x3a\x05\x30\xb8\x3a\xc5\x0a\xfb\x72\xcd\x23\x97\ \xe9\xed\xa5\xc9\x64\x7f\xd0\x97\x9a\x15\xf5\x41\x89\x1d\xa0\x8f\ \x3e\x04\xfa\xe8\x43\x58\xbb\x6d\xcf\xd3\x56\xef\xf9\xcc\xc5\xe6\ \x8c\xff\x6b\x49\x83\x61\x62\x80\x83\x6b\x62\xf4\x80\x6f\xa4\x39\ \xff\x72\xbd\xcd\x82\xf8\xde\x1f\xf4\xf5\xb1\x0f\x4a\xec\x00\x7d\ \xf4\x21\xd0\x47\x1f\xc2\x19\x97\xdc\xb8\x75\x74\xe6\xd0\xbf\xb8\ \x0e\x86\xb1\x91\x62\x70\x8d\x8d\x1e\xf1\x9d\x36\x3d\xbb\x55\x6f\ \xb7\x36\xbe\xf7\x07\x7d\x7d\xee\x83\x12\x27\x00\x67\x9e\x00\x7d\ \xf4\x21\xd0\x37\xb8\xbe\x53\x2f\x3b\xf2\x92\xd5\xd3\x07\x6e\x42\ \x07\xc3\xc8\x48\x39\xb8\x46\x46\x0f\xf9\x4e\xd9\x73\xf0\x7c\xbd\ \xfd\x04\x9f\xfb\x43\xa0\x6f\x00\x7c\x50\xe2\x18\x52\x65\x1e\x03\ \x7d\xf4\x21\xd0\x37\x98\xbe\x67\x5f\x7a\xe0\xec\xd1\x99\xd9\x77\ \xe6\x9a\x87\x1e\x4b\x33\x18\x5a\xa3\x8b\xc1\xd5\x1a\x3d\xe6\x3b\ \x71\xcf\xfc\xf3\xf4\x76\xf4\xb5\x3f\xda\xd0\x37\x20\x3e\x28\x71\ \x04\xa9\x33\x8f\x80\x3e\xfa\x10\xe8\x1b\x3c\x5f\xeb\x65\x3d\x33\ \x73\x7f\x9a\x9b\x99\x7d\xa8\x9b\xc1\x30\x14\x5d\x0e\xae\xa1\xe8\ \x21\x5f\x6e\xef\xfc\x5d\xad\x47\x00\x1b\xfb\x9e\x11\xdc\x96\x3e\ \xf6\x47\x10\xfa\x06\xc8\x07\x25\xb6\xd0\x55\xe6\x16\xe8\xa3\x0f\ \x81\xbe\x01\xf3\xed\x9a\x3f\x6e\xe1\x65\x3d\xf3\xf7\x77\x33\x18\ \x5a\x63\x00\x7d\xb9\xbd\x73\x3f\x93\xd7\x19\x8f\xec\x99\xdd\xb9\ \x6a\xfc\xaa\x63\xf4\xe6\xec\x7a\x7f\x28\xe8\x1b\x6c\x1f\x84\xef\ \xcc\xe9\xa3\x0f\x81\xbe\x41\xf2\x3d\x71\xf4\xe9\xcd\x23\xaf\x92\ \xb3\xd8\xb4\x83\x61\x6c\x0c\x90\xcf\x0c\xfa\x8f\x8e\xec\x9d\xbb\ \x41\xb6\x97\xbc\xdd\x50\x6f\xc9\x36\xdd\xed\x8f\x30\xf4\x0d\xb6\ \x0f\xc2\x77\xe6\xf4\xd1\x87\x40\xdf\xe0\xf8\x46\xf6\x1c\x9a\x34\ \x03\xff\x1d\x69\x06\x43\xa7\x18\x14\xdf\xcc\xec\xfc\xc8\xde\xd9\ \xe6\xf1\x6f\x3c\x70\xba\xde\x86\x9a\x6e\xf6\x87\x0d\xfa\x06\xdb\ \x07\xe1\x3b\x73\xfa\xe8\x43\xa0\x6f\x30\x7c\xa7\x34\xe7\x37\xe4\ \x66\x66\x6f\x49\x35\x18\xba\x46\x9f\xfb\xcc\xc4\xe8\x4b\xb9\x99\ \x23\x57\x9d\x36\x7d\xf8\x17\xf4\xf6\x8b\x22\xed\xfe\x88\x82\xbe\ \xc1\xf6\x41\xf8\xce\x9c\x3e\xfa\x10\xe8\xeb\x7f\xdf\xa9\xbb\xf7\ \x9f\x2b\xbf\x5b\xe7\xf6\xce\x3d\x8e\x0c\x86\x70\xf4\xa9\xcf\x4c\ \x8a\x7e\x20\x4f\x3e\x9c\x36\x3d\x9f\xd7\xdb\x2e\x89\x34\xfb\x23\ \x0e\xfa\x06\xdb\x07\xe1\x3b\x73\xfa\xe8\x43\xa0\xaf\xbf\x7d\xad\ \x3b\xfb\xf7\xce\x5f\x63\x06\xfe\x47\x5c\x07\x43\xdf\x83\x6b\xaf\ \xfa\x46\x67\x0e\xfd\x6c\x74\xe6\xe0\x07\xa3\x6e\xe6\x73\x01\xdd\ \x1f\x49\xd0\x37\xf8\x3e\xfd\x59\x24\x59\x64\x4e\x5f\x7a\xe8\xa3\ \x0f\x61\x45\x7d\x8d\x9b\x8f\x5f\xb8\xb3\x7f\xee\x81\xd0\x40\x68\ \x19\x0c\x7d\x0f\xae\xbd\xea\x1b\x6d\x1e\x7a\x34\xd7\x3c\x78\xe3\ \xc8\x9e\x5b\x5e\x7b\xd6\xcb\xdf\x71\x92\xde\x6c\x08\xd0\xfe\x70\ \x80\xbe\xe1\xf0\xe9\xcf\xad\x64\x95\x39\x7d\xe9\xa0\x8f\x3e\x84\ \x15\xf3\x35\xf6\x1d\x3b\xd2\x9c\x9f\x36\x03\xff\x3d\xa1\x41\x50\ \x0d\x86\xbe\x07\xd7\x5e\xf5\xe5\x66\x66\x1f\x1f\x6d\x1e\x3c\xb0\ \x7a\xfa\xd6\x3d\xe7\xbc\xfa\x3d\xb9\xd8\xed\xe7\x48\xec\xfe\x78\ \xf5\x7b\x9e\x2e\x4b\x03\x8f\xec\x9d\xfb\xb3\x91\x99\x23\x17\xaf\ \x5a\xf5\xc4\x51\x81\xaf\x5a\x89\xf5\xa5\x80\xbe\xde\xf5\xe9\xbf\ \x85\xc8\x32\x73\xfa\x70\xe8\xa3\x0f\x61\x65\x7c\x4f\x1c\x95\xbb\ \x7c\xbe\x61\x06\x9d\x3b\xf5\x00\xd8\x11\x9e\x07\xd7\x5e\xf6\xb5\ \x6f\xe6\x3b\x67\xd7\xf5\xbf\x98\xbc\xfd\xdc\xb1\xed\x8f\xdc\x6b\ \x6e\x3d\xad\xf5\x48\xe5\xc2\x7d\x16\x3f\xea\x28\xc7\xcc\xdc\xec\ \xe9\x97\x1e\xd9\xa8\x3d\x6d\x6c\x3e\x9d\x06\x81\xbe\xde\xf6\xe9\ \xbf\x77\xa0\x13\xfb\xce\x9c\x3e\x0c\xfa\xe8\x43\x58\x09\xdf\xe9\ \xd3\x07\x37\x99\x81\xff\x80\x1e\x00\x43\xe1\x71\x70\xed\x55\x5f\ \x6b\x65\xbe\xbd\xf3\xd7\xb4\x6f\xe6\x73\xd9\x7e\x08\x41\xdf\x9a\ \x37\x7c\xfc\x45\xa3\x7b\x6e\x7d\xf3\xc8\xcc\xdc\xfe\xd0\xcd\x95\ \xa1\x72\xcd\x3d\x6e\x26\x02\xd7\x3e\xf3\x92\x9b\x73\x51\x3e\xdf\ \xe5\xa3\x0f\x67\x45\x7d\x50\x62\x07\xe8\xa3\x0f\x81\xbe\xfe\xf2\ \x9d\xbc\xe7\xf0\x3a\x39\xe3\xd4\x83\x8d\x35\x3c\x0c\xae\xbd\xea\ \x8b\x5a\x99\x2f\x69\xfb\xa1\x3c\xb7\x71\xf5\x89\xf2\x66\xc4\x5c\ \x73\xff\x9f\x8d\xce\x1c\xfc\x8e\x6b\xf9\x54\x59\x7f\xd2\xba\x2a\ \xf1\xea\xf7\x3c\xdd\x77\xf9\xe8\xeb\x63\x1f\x94\xd8\x01\xfa\xe8\ \x43\xa0\xaf\x7f\x7c\x27\xef\xb9\xf9\x8c\xd6\xcb\x7a\xf6\xce\x3d\ \xaa\x07\x18\x6b\x74\x31\xb8\x5a\xa3\x07\x7c\x1d\x2b\xf3\xbd\xf2\ \xfa\x67\x06\xb7\x9d\x10\xb7\xfd\x10\x9e\xfd\xc6\x43\xe7\x98\x6d\ \xbd\x6b\x75\xf3\xc0\xc7\x46\x9b\x07\x1f\x74\x2d\x5f\x6c\xc8\xf7\ \x9a\x87\xbf\x25\x37\x22\x76\x5b\xbe\x36\xbe\xea\xdb\x86\xbe\x65\ \xf4\x41\x89\x1d\xa0\x8f\x3e\x04\xfa\xfa\xc3\x77\xd6\x9b\xee\x38\ \xc9\x0c\x7a\x57\xcb\x19\x6f\x68\x50\x89\x8a\x14\x83\x6b\x6c\xac\ \xb4\xcf\x61\x65\xbe\xa8\xed\xe7\x44\x63\xdf\x53\x46\xaf\xb8\x7d\ \xbd\x9c\xa5\x4b\x5e\xad\x1b\x08\x91\xf2\x25\x85\xaa\xef\x68\xf3\ \xd0\xcd\x67\x5f\xfa\xe9\x5f\xd1\xc5\x40\xe8\xaa\xbe\x16\xe8\x5b\ \x46\x1f\x94\xd8\x01\xfa\xe8\x43\xa0\xaf\xf7\x7d\xeb\x1a\xfb\x8e\ \x35\x83\xd2\xae\xd8\x3b\xfb\x6d\x81\x0e\xae\x49\xb1\x42\x3e\x53\ \xef\x2f\xb6\x56\xe6\xbb\xe4\xe0\x5a\xbd\xbd\x34\xb6\xed\xa7\xd3\ \x84\x78\xe5\xf5\xcf\x94\x9f\x0f\x16\xaf\xaa\x7c\x0f\x2d\x9f\x73\ \x44\xf8\xcc\x24\xe3\x31\xb9\x3f\x20\x6e\x52\x13\x45\xaa\xfa\xc6\ \x40\xdf\x32\xfa\xa0\xc4\x0e\xd0\x47\x1f\x02\x7d\xbd\xed\x5b\xbb\ \x6d\xcf\xd3\x72\xcd\x23\x0d\x33\x28\x7d\x2d\x34\x98\x24\x45\xc4\ \x60\xe3\x7b\xf0\xca\xca\x37\x32\x33\xf7\xdd\xe0\xcd\x7c\x2e\xe8\ \xed\x17\xb7\x3f\x4e\xdc\x7d\xdb\x73\xe5\x4a\x82\xfc\x8c\x60\xb6\ \xef\x43\x68\xf9\xe0\x70\xf0\x99\x72\xdc\x2b\x6b\x37\xc8\xa3\x9c\ \xba\xbc\x36\x90\xfa\xba\x40\xdf\x32\xfa\xa0\xc4\x0e\xd0\x47\x1f\ \x02\x7d\xbd\xed\x93\x9b\xcd\x46\x66\x66\x3f\x1b\x1a\x48\x5c\xc2\ \x61\xb0\x81\x62\x99\x7c\xb9\xbd\xb3\xd6\x9b\xf9\x5c\xd0\xdb\x2f\ \xb4\x3f\x1a\xfb\x9e\x22\x93\x89\xc5\x9f\x50\xbe\x18\x2a\x93\x43\ \xf9\x7c\xd7\x37\xca\x67\xca\xf7\xe5\x53\x67\xe6\xb7\x77\x94\x5f\ \x91\x58\x5f\x10\xfa\x96\xd1\x07\x25\x76\x80\x3e\xfa\x10\xe8\xeb\ \x5d\xdf\x9a\xdf\xba\x71\xe3\xea\xe9\x03\x37\x45\x0d\x0e\x89\x01\ \x0e\x36\x89\x91\xb1\xaf\xbd\x32\x5f\xd4\xcd\x7c\x2e\x44\xed\x8f\ \x13\x5e\x75\xe3\x29\xb2\x36\x82\x5c\x5e\xcf\xed\x9d\xbf\x3f\x54\ \x16\x5b\x64\x5c\x5f\xc4\x27\x57\x27\xe4\x49\x0f\xd7\xfa\xa6\x85\ \xbe\x65\xf6\x41\x89\x13\x80\x33\x4f\x80\x3e\xfa\x10\xe8\xf3\xe3\ \x3b\x73\xd7\x47\x9e\x37\x3a\xbd\xff\xdd\xb9\xe6\xa1\xc7\x5c\x06\ \x07\x6b\x74\x31\xd8\x58\x23\x43\xdf\x68\xf3\xe0\xed\x6b\xa6\x6f\ \xbb\xfc\x8c\x37\xee\x5b\xa3\xb7\x09\x82\xde\x1f\x6b\x7e\xeb\xba\ \x5f\x36\xdb\xf0\xca\xc5\x4b\xfb\xe1\xf7\x1f\xc4\x45\x86\xf5\x4d\ \xeb\x33\x13\x97\x87\xe5\xa7\x90\x93\xae\x9c\x3f\xd1\x56\x5f\x5f\ \xc7\x1f\x7d\xe9\x48\xe5\x83\x12\xc7\x90\x2a\xf3\x18\xe8\xa3\x0f\ \x81\xbe\xee\x7d\xb2\x34\xed\xea\xe6\xfe\xb7\xc9\x23\x66\xe8\xe0\ \xd0\x11\x1e\x06\x9b\xcc\x7d\xcd\x43\x5f\x1c\xdd\x73\xdb\x5b\xcf\ \xbe\xe4\x63\x2f\xf0\xb5\xfd\xd6\xbe\xe2\xaa\x67\x2d\x3d\x9b\xdf\ \x3c\xf4\xcd\xae\xca\xe7\xbb\xbe\x1e\x7d\xf2\xb6\xc2\x35\xd3\x07\ \x2e\x3f\x63\x63\xe3\x19\x3e\x8f\x3f\xdf\xc7\x33\x7d\x0e\x40\x89\ \x23\x48\x9d\x79\x04\xf4\xd1\x87\x40\x5f\x77\x3e\x59\x54\x46\x56\ \x91\x5b\x3d\x7d\xf8\xfe\x6e\x07\x07\xdf\x83\x8d\x4f\xdf\xc2\xcd\ \x7c\xb3\xd7\x9c\x71\xd9\x0d\xe3\xbe\xb6\xdf\xc8\x1b\x0f\x9c\x9e\ \xbb\xec\x33\xaf\x19\x6d\x1e\xf8\x90\x19\xf4\x1f\xe8\xa6\x7c\xad\ \xf0\x58\xdf\xac\x7d\x66\xa2\xf8\xd9\x35\x97\x7d\x7a\x4b\x37\xdb\ \x4f\xf0\x7d\x3c\xd3\x07\xf8\xa0\xc4\x16\xba\xca\xdc\x02\x7d\xf4\ \x21\xd0\xd7\x8d\xef\xaa\xa3\x65\xf0\x32\x9d\xf9\x5d\xbe\x07\x87\ \x5e\xf1\xe5\xf6\xce\xff\x34\x78\x33\x9f\x8f\xed\x77\xf2\xa5\xfb\ \x5f\x28\x77\xc8\xb7\x96\xdd\x6d\x1e\x7a\xbc\x9b\xf2\x75\x84\x87\ \xfa\xae\x84\xcf\x6c\x8b\xeb\x4e\xbc\xec\x96\xe7\xe8\xed\xe4\x82\ \x8f\xfd\x11\x84\xbe\xee\x7c\x10\xbe\x33\xa7\x8f\x3e\x04\xfa\xd2\ \xfb\x46\xf6\x1c\x9a\x34\x67\xac\x9f\xd3\x9d\xb9\xef\xc1\x61\x25\ \x7c\x51\x2b\xf3\xa5\xde\x7e\xbb\xe6\x8f\x6b\x3f\x9b\x2f\x57\x11\ \xba\x2d\x9f\x35\xfa\xdc\x27\x0b\x42\xc9\x53\x0d\xab\x5e\xfb\xd1\ \x13\xf4\xe6\x8b\x22\xf5\xfe\x88\x80\xbe\xee\x7c\x10\xbe\x33\xa7\ \x8f\x3e\x04\xfa\xd2\xf9\x4e\x69\xce\x6f\x30\x67\x6c\xb7\xc4\x75\ \xe6\x70\x24\x0c\x0e\x70\xa4\xf5\xc5\xac\xcc\x87\x6e\x3f\x39\xa3\ \x5d\x58\xf0\xe8\xc8\x75\x66\x70\x7b\xd0\x4b\xf9\xa2\x62\x80\x7c\ \x32\x41\x6a\x4d\xbc\x12\x5e\x3b\x8c\xee\x8f\x24\xe8\xeb\xce\x07\ \xe1\x3b\x73\xfa\xe8\x43\xa0\x0f\xf7\x9d\xba\x7b\xff\xb9\xad\xd7\ \xc3\x66\xbc\x9c\xec\x72\xfb\x5c\x56\xe6\x73\xda\x7e\x6a\xd9\x5d\ \x9d\x4f\xda\xf2\x25\xc6\x80\xfa\xe2\x5e\x3b\xec\xb4\x3f\x00\xe8\ \xeb\xce\x07\xe1\x3b\x73\xfa\xe8\x43\xa0\x0f\xf3\x1d\xff\x9a\x5b\ \x4f\x93\x47\xb7\x5a\x8f\xa1\xa5\xec\xcc\x23\x63\x85\x7c\xc8\xca\ \x7c\x71\xdb\xef\x59\xaf\xfb\xa7\x93\xe5\xd9\xfc\xc5\x65\x77\xef\ \x0e\x95\x47\x87\x63\xf9\x9c\x63\xc0\x7d\x39\x79\xed\xb0\x99\x74\ \x9e\x7c\xc9\x2d\x67\xba\xec\x8f\x34\xd0\xd7\x9d\x0f\xc2\x77\xe6\ \xf4\xd1\x87\x40\x1f\xe0\x6b\xdc\x7c\xbc\xdc\xa8\x66\x3a\xe1\x07\ \x7c\x74\xe6\xa1\x58\x66\x9f\xa9\xc7\x8f\x64\x11\x1d\x64\x65\x3e\ \xdb\xf6\x1b\xe9\x58\x76\x77\xfe\xe1\x50\x39\xa2\x22\xa1\x7c\x70\ \x0c\x91\x2f\xb7\xf8\xda\xe1\x73\x5f\xfb\xdb\x27\xe8\xfd\xa1\xf7\ \x19\x82\x6d\xff\xea\x34\x08\xc3\xe8\xd3\x9f\x45\x92\x45\xe6\xf4\ \xa5\x87\x3e\xfa\xac\xec\x9a\x7f\xea\xe2\xcb\x7a\x9e\x3c\xa3\xf5\ \xd8\x99\x2f\xa7\x2f\x37\x33\x6b\xbd\x99\xcf\x85\xf6\xf6\x5b\xbd\ \x73\xd7\x71\xf2\xd8\x5f\xae\x79\xf0\x6d\xb9\xe6\xdc\x97\x42\x79\ \xbb\x44\x44\xf9\x7c\xd7\x77\xd0\x7d\xc1\xd7\x0e\x3b\x1f\xcf\x11\ \xa4\x6e\x1f\x11\x0c\xab\x4f\x7f\x6e\x25\xab\xcc\xe9\x4b\x07\x7d\ \xf4\x85\x79\xe2\x28\xb9\x9c\x6d\x06\xcc\x3b\x6d\x9d\xaf\xef\xce\ \x3c\x53\x5f\xf3\xe0\xed\x23\x7b\x0f\x5b\x6f\xe6\x73\xe1\xec\x5d\ \xef\x1d\x5d\xbd\xe7\x33\x17\x8f\x4e\x1f\x78\x9f\xac\x6d\xe0\xbd\ \x7c\xf4\xb9\x87\xcd\xd7\x3c\x74\xf3\xe9\xcd\xc3\xe7\xe9\xfd\xe6\ \x4a\xba\xf6\x11\xcd\x30\xfb\xf4\xdf\x42\x64\x99\x39\x7d\x38\xf4\ \xd1\xa7\x39\x7d\xfa\xe0\x26\x33\xf0\xef\x77\xea\x7c\x7d\x77\xe6\ \x9e\x7c\xa3\xcd\x03\x5f\x92\x95\xf9\x56\xef\xfe\xe4\xb9\xba\x7e\ \x2e\x2c\x3c\x9b\x7f\xe8\x4a\x33\x79\x38\x60\x06\x98\xc7\x7c\x97\ \x8f\x3e\x4b\xfa\xa4\x88\xf1\xe5\xf6\xce\xa5\x7a\xed\x70\x9a\xf6\ \x11\xc7\xb0\xfb\xf4\xdf\x3b\xd0\x89\x7d\x67\x4e\x1f\x06\x7d\xf4\ \x05\x91\x97\xb3\xc8\x4d\x56\xa1\x8e\x37\xa1\xf3\x0d\xa5\x75\x89\ \x0c\x7c\xb9\xe9\x83\xdf\x95\x65\x73\xdb\x2b\xf3\x25\xd5\xb7\x83\ \xc6\xbe\x67\xc8\x5a\x06\x72\x33\xa0\x99\xfc\x7c\x2b\x8b\xf2\xd1\ \x97\xbd\x0f\x79\xed\x30\xda\x3e\x92\xa0\x2f\xc6\x07\x25\x76\x80\ \x3e\xfa\x10\xe8\x8b\xf6\x9d\xbc\xe7\xe6\x33\x16\xef\x5c\x7f\x34\ \xd4\xf1\x02\x9d\xaf\x73\x78\xf4\xc9\x9b\xf0\x72\x33\x47\xae\x5d\ \xbd\xfb\xd6\x9a\xfc\x3e\xef\x52\xdf\x36\xcf\x7c\xfd\x8d\x23\x72\ \x3f\x40\xeb\x71\xc6\xbd\x73\x3f\xce\xa2\x7c\xf4\xad\x8c\xcf\xec\ \xcf\xaf\xc4\xbd\x76\x18\x69\x1f\x2e\xd0\x17\xe3\x83\x12\x3b\x40\ \x1f\x7d\x08\xf4\xd9\x7d\x67\xbd\xe9\x8e\x93\x16\xdf\x21\xff\x33\ \xdd\x81\x76\xd3\xf9\xc6\x86\x07\x9f\x4c\x54\xda\x37\xf3\x8d\xbc\ \xf2\xfa\x67\xba\xd6\x77\xd5\xaa\x27\x8e\x0e\x3e\x9b\x2f\x8f\x95\ \x69\xb7\x8f\xf2\xd1\xd7\x3b\xbe\xd6\x6b\x87\x2f\xdd\xff\xc2\xe0\ \x51\xe0\x7e\xbc\xb8\x41\x5f\x8c\x0f\x4a\xec\x00\x7d\xf4\x21\xd0\ \x67\xf1\x35\xf6\x1d\xbb\x78\x67\xff\x3d\xba\xc3\xf4\xd9\xf9\x86\ \xa2\x5b\x5f\x7b\x65\xbe\xd7\xdc\x7a\x5a\xbb\x2a\x89\xf5\x35\x13\ \x84\xf6\xb2\xbb\xb9\xbd\xf3\x77\x85\x9c\x3e\xcb\xa7\x83\xbe\x9e\ \xf0\x2d\xbd\x76\x78\xd7\x0d\x27\x26\x1e\x2f\x20\xf4\xc5\xf8\xa0\ \xc4\x0e\xd0\x47\x1f\x02\x7d\xda\xf7\xc4\xd1\x72\x67\xbf\x19\xf8\ \xbf\xa6\x3b\xc9\x50\x78\xea\x7c\xbb\xf5\xe5\xf6\xce\x7e\x41\xce\ \xd8\x4f\xdc\x33\xff\xbc\xce\xba\x44\xd7\xf7\xc4\xdd\xb7\x3d\x37\ \xb0\xec\xee\x43\xda\x69\x8d\x94\xe5\x8b\x0c\xfa\x7a\xcf\xd7\x3c\ \xfc\x83\x35\xd3\xb7\x2d\xbd\x76\x38\xdc\x3e\x30\xa2\x8e\xbf\xb4\ \x0c\x94\x0f\x4a\xec\x00\x7d\xf4\x21\xd0\xd7\xe9\x5b\xb8\xc1\x6d\ \xee\xb3\xa1\x8e\xd1\x16\x59\x74\xbe\x80\xcf\x65\x65\xbe\x60\x7d\ \xa5\x43\x97\x1b\xff\xe4\xe7\x8c\xd8\x65\x77\xa3\x02\x2c\x5f\x62\ \xd0\xd7\xd3\x3e\x79\xed\xf0\xc8\x65\x9f\xde\xa2\x8f\x29\x84\xa4\ \xf6\x86\x32\x50\x3e\x28\xb1\x03\xf4\xd1\x87\x40\xdf\x93\xbe\x53\ \x2f\x3b\xf2\x92\xdc\xcc\xec\xa7\x43\x9d\x62\x54\x64\xdc\xf9\x46\ \xf9\x16\x6e\xe6\x73\x5b\x99\x4f\xea\xf7\x9c\xd7\xbf\x7b\xa4\xfd\ \x6c\xbe\xe9\xd0\xef\xd3\x3e\xe7\x70\x2c\x9f\x73\xd0\xd7\x37\x3e\ \xb9\x42\x94\xe6\xb5\xc3\x71\xed\x2d\x0d\x03\xe5\x83\x12\x3b\x40\ \x1f\x7d\x08\xf4\x2d\xf8\x4e\xda\x35\x7f\xd6\xe2\x9d\xfd\x8f\x85\ \x3a\xc5\xa8\x88\xe9\x2c\x43\x69\x5d\x22\xc1\x27\x97\xe7\xa5\x13\ \x76\x5d\x99\x4f\x96\xdd\x5d\x33\x7d\xe0\xf2\x5c\xf3\xe0\x8d\xab\ \x9b\x87\x1f\xd6\x3e\x38\x12\xca\x07\x07\x7d\x7d\xe7\x93\x1b\x60\ \x91\xd7\x0e\x47\xb5\xb7\xb4\x0c\x9c\x0f\x4a\x9c\x00\x9c\x79\x02\ \xf4\xd1\x87\xd0\x8f\xbe\x35\xaf\xba\xf1\x94\xc5\x3b\xfb\x3b\x5f\ \x39\x9b\x14\x0e\x9d\x25\x14\x71\x3e\xcb\xcd\x7c\x56\x5e\xfd\x9e\ \xa7\x2f\xfe\x74\x71\x75\x6e\x66\xf6\xcb\x91\x3e\x9d\xb7\x4b\xc4\ \x95\x4f\xa7\x75\x09\xfa\xfa\xda\x27\x3f\x3b\xc9\x7d\x23\x72\x9f\ \x8c\x3e\x0c\xdb\xd8\xda\x9b\x4e\x83\x30\x90\x3e\x28\x71\x0c\xa9\ \x32\x8f\x81\x3e\xfa\x10\xfa\xcd\xf7\xdc\xc6\xd5\x27\xca\xca\x75\ \x72\x29\x5d\x77\x6e\x89\x01\x76\x96\x89\x61\xf3\x4d\x1f\x8a\xbc\ \x99\x2f\x88\x4c\x0a\x02\xcf\xe6\xff\x28\xd2\xe7\xbb\x7c\xf4\xb9\ \xc7\x00\xfb\x5a\xaf\x1d\x9e\x3e\xb8\x49\x1f\x97\xba\xbd\xf9\x6e\ \xbf\x03\xe3\x83\x12\x47\x90\x3a\xf3\x08\xe8\xa3\x0f\xa1\x9f\x7c\ \xe7\x8c\xbf\xfa\xe9\xb9\xcb\x3e\xf3\x9a\x91\xe6\xec\x77\x75\x67\ \xe6\x14\x5d\x74\x96\xd6\x08\xf8\x46\x67\x0e\x7e\xa7\xbd\x32\x9f\ \xae\x43\x90\x85\x65\x77\x8f\x5c\x29\xcb\x0f\x87\x7e\xb2\xc8\xb0\ \x7c\xf4\x59\xd2\x27\xc5\x10\xf8\x64\x7d\x08\x99\x80\xca\xcf\x68\ \x72\x7c\x66\xd9\x7e\x07\xce\x07\x25\xb6\xd0\x55\xe6\x16\xe8\xa3\ \x0f\xa1\x9f\x7c\x67\x5c\x72\xe3\xd6\xd1\xe6\xa1\xcf\x21\x9d\x5b\ \x47\x78\xe8\x2c\xb5\xaf\xf5\xb2\x9c\xe9\x03\xef\x3b\xe3\xd2\xcf\ \xd4\x65\x65\x3e\x6b\x7d\x03\xcb\xee\x9a\x33\xae\x6f\x87\x3c\x01\ \x9f\xef\xf2\xd1\x47\x9f\x6b\xe4\x66\x66\x7f\xb2\x7a\xfa\xd6\xb7\ \xac\x7d\xc5\x55\xcf\xca\xa2\xfd\x0e\x83\x0f\xc2\x77\xe6\xf4\xd1\ \x87\xd0\x2f\xbe\xd5\x97\xdc\x90\x37\x83\xec\xad\xdd\x74\x6e\x3e\ \x3b\x4b\xb9\xdf\xc0\x9c\xc1\x5f\x27\x57\x22\xce\x7a\xf9\x3b\x4e\ \xb2\xd5\xf7\xd9\x97\x1e\x38\x3b\xf0\x6c\xfe\xcf\xb5\x23\x14\x1e\ \xcb\x47\x1f\x7d\x70\x04\x7c\xed\xd7\x0e\xfb\x6a\xbf\xb6\xf6\x91\ \x86\x5e\xf7\x41\xf8\xce\x9c\x3e\xfa\x10\xfa\xc1\x77\xe6\xeb\x3e\ \xf6\x4b\xa3\xcd\x03\x1f\x32\x67\xfd\x8f\xfb\xea\xdc\xba\xea\x2c\ \x17\x6f\xe6\xcb\xbd\xe6\xd6\xd3\x74\x7d\xd7\x6e\xdb\xf3\xb4\xd1\ \xe9\xc3\xf1\xcb\xee\x46\x85\xaf\xf2\xd1\x47\x9f\x4e\xeb\x12\x11\ \x3e\x73\x0c\xdf\x94\xf6\xb5\xc3\xba\x7d\xf8\xe8\x0f\x7a\xd9\x07\ \xe1\x3b\x73\xfa\xe8\x43\xe8\x75\xdf\x99\xaf\xfd\xc0\x6a\xf9\x2d\ \xdd\x0c\xfc\x8f\x64\xd5\xb9\xb9\xfa\x6c\x2b\xf3\xb5\xeb\x2b\x67\ \xff\x72\xe9\x7f\x74\x7a\xff\xbb\x73\xcd\xd9\xef\xe9\xef\x3a\x45\ \x97\xe5\x0b\x05\x7d\xf4\x21\x91\xe0\x93\x7b\x54\xd0\xd7\x0e\xfb\ \xee\x0f\x7a\xdd\x07\xe1\x3b\x73\xfa\xe8\x43\xe8\x65\x9f\xbc\xe8\ \x66\x74\xcf\xad\x6f\x36\x03\xff\x03\xb6\xce\x08\x8e\x84\xce\x2d\ \x2a\x46\xf6\x1e\xf9\x4e\xd4\xca\x7c\x6b\xde\xf0\xf7\xcf\x5f\x33\ \x73\xeb\xee\xd5\xcd\x03\x1f\x33\xe5\x7c\xc8\xc5\x17\x19\x29\xcb\ \x17\x19\xf4\xd1\x87\x04\xe0\x1b\xd9\x3b\x77\x9f\xcb\x6b\x87\x7d\ \xf6\x07\x42\xaf\xfb\x20\x7c\x67\x4e\x1f\x7d\x08\x3d\xeb\x33\x9d\ \xca\xc8\xcc\xa1\x3d\xa3\xcd\x83\xf7\xb8\x74\x46\x4e\x01\x74\x6e\ \x12\xd2\xc1\x8d\x4c\xcf\xfd\x7f\xa7\x4e\xcf\x5f\xd8\xf1\x6c\xf4\ \xae\xf9\xa7\x8e\x4c\xcf\x4e\x8c\x34\xe7\xfe\x24\x37\x73\xf0\x4e\ \x57\x5f\x62\x80\xe5\x4b\x0c\xfa\xe8\x43\x22\xc1\x27\x8b\x56\xc9\ \x44\x38\xb7\x77\xfe\x76\xf3\xdf\x1f\x37\xff\xfe\x75\x6e\xef\x91\ \xb7\x9d\x36\x73\x68\x5b\xa0\xe5\x76\xe0\xad\x3f\x58\xa4\x1f\x7c\ \xfa\xb3\x48\xb2\xc8\x9c\xbe\xf4\xd0\xd7\x0b\xbe\x27\x8e\x92\x97\ \xf5\x98\x8e\xe6\xce\xb8\xce\x08\x8e\x84\xce\xad\x1d\xad\x9b\xf9\ \xda\x2b\xf3\xed\x9a\x3f\xae\x5d\xaa\x13\x5e\x75\xe3\x29\xad\x97\ \x08\xc9\x52\xbd\x66\x62\xe0\xea\x73\x0e\xfa\xe8\x43\xc2\x93\x4f\ \x6e\x46\x6d\xbd\x21\xb2\x79\x64\xbe\x75\x05\x6b\xfa\xc0\xfb\x56\ \x37\xf7\xbf\x4d\x5e\x18\xd4\x7a\xb4\x56\xde\x22\x79\xc5\xed\xeb\ \x4f\xbd\x6c\xff\xea\xb8\x05\x82\x6c\xf8\xe9\x0f\x9e\xa4\x5f\x7c\ \xfa\x73\x2b\x59\x65\x4e\x5f\x3a\xe8\x5b\x79\x9f\x2c\x3e\x22\xcf\ \xc1\xfb\xea\xdc\x96\x22\xc1\x27\xbf\x69\x4a\xbe\x7a\x65\x3e\x79\ \xa3\x9e\x7c\x26\xef\x53\x37\x69\x1e\x71\xf5\xc1\x41\x1f\x7d\x48\ \x24\xf8\x16\x06\xf5\xb9\xaf\x2e\xac\x29\x71\xe4\xba\xd6\x72\xd8\ \x33\x47\xae\x6a\xdd\xac\x6a\x26\xb1\xf2\x33\x96\xac\x3b\xf1\xec\ \x57\xdf\xfc\xec\xf6\xb1\xee\xa3\xfd\x06\x19\x66\x9f\xfe\x5b\x88\ \x2c\x33\xa7\x0f\x87\xbe\x95\xf5\x9d\xbc\xe7\xf0\x3a\x59\x74\xc4\ \xa5\x73\x83\x23\xc6\xb7\x74\x33\x9f\x19\xe8\x5b\x05\x59\x5a\x76\ \x77\xfe\x1a\x73\x56\xf4\xcd\x90\x2b\xc1\x17\x4a\xeb\x12\xf4\xd1\ \xe7\x10\x66\x40\xbf\x57\x8e\xd7\x91\x19\x33\x41\x9e\x39\xf8\xc1\ \xd6\x0d\xb1\x7b\x6e\x7b\x6b\xeb\xde\x93\xdd\xb7\xd6\x4e\x9b\x3e\ \x9c\x6f\x1d\xc7\xbb\xe6\xa1\xb6\x27\x74\xdb\x7e\x35\xc3\xee\xd3\ \x7f\xef\x40\x27\xf6\x9d\x39\x7d\x18\xf4\xad\x9c\xef\xe4\x3d\x37\ \x9f\xb1\xf8\xb2\x9e\x47\x7d\x76\x96\x4b\x61\xf5\x1d\xfc\x8e\x39\ \x13\x5a\xba\x99\x4f\xee\x64\x0e\x2c\xbb\xfb\x40\xc8\x91\xe8\xf3\ \x5d\x3e\xfa\x9c\xa3\x8f\x7d\x4b\x97\xde\x5b\x8f\x87\x1e\xb9\x6e\ \xf1\xa7\xa5\xab\xe5\x2c\x5d\x8e\x47\x99\x88\xca\x59\xba\xbe\xf4\ \xde\x4d\x7b\xb3\x41\xdf\x32\xfa\xa0\xc4\x0e\xd0\x47\x1f\x42\xaf\ \xf8\xce\x7a\xd3\x1d\x27\x2d\xbe\xac\xe7\x67\x2e\x9d\x65\xa8\x63\ \x75\x89\xa0\x6f\x71\x65\x3e\x39\x53\x92\xd7\xec\xaa\x65\x77\xdd\ \x9e\xcd\xcf\xb2\x7c\xf4\xe1\xd1\x83\xbe\x8e\x4b\xef\xcd\x23\xd7\ \xc9\xa3\xa0\xad\xb3\xf4\xe9\xdb\x2e\x97\xd7\x36\xcb\x72\xd0\xfa\ \xd2\x3b\x42\xda\xf6\x16\x05\x7d\xcb\xe8\x83\x12\x3b\x40\x1f\x7d\ \x08\x3d\xe1\x6b\xec\x3b\x76\x61\x25\xbc\xb9\x7b\x7c\x77\xbe\x21\ \x5f\xf3\xe0\x83\x72\x53\x93\xac\x5e\x76\xf6\xae\xf7\x8e\xca\xe0\ \x2f\x57\x1b\xe4\x2e\xe6\x50\xfa\xa4\xc8\xa2\x7c\xf4\xf5\xbc\x2f\ \x37\x33\xfb\xa0\x9c\xa5\xb7\x2e\xbd\xcb\xa0\x7e\xf9\xfc\xbe\x85\ \xa5\x9b\x8f\x5c\x25\xc7\xb1\xdc\x20\x27\x57\x92\x6c\x97\xde\x53\ \xb5\x8f\x18\xe8\xeb\x63\x1f\x94\xd8\x01\xfa\xe8\x43\x58\x79\xdf\ \x13\x47\xb7\xee\xa0\xdf\x3b\xf7\x35\xd7\xce\x37\x4d\x67\xde\xba\ \x99\x6f\x66\x6e\xff\x9a\xe9\x03\x97\xaf\xbe\xe4\xfa\x4d\x4f\x3e\ \x9b\x7f\xf0\xc1\x34\xbe\x56\x78\x2c\x1f\x7d\x2b\xef\x0b\x5f\x7a\ \x3f\x72\x6d\xae\x79\xb0\x75\xd7\xbb\x4c\x16\xe5\xdd\x12\x6b\x7e\ \xeb\xba\x5f\x3e\x33\xc5\x5d\xef\x6d\xf0\xf6\x11\x0f\x7d\x7d\xec\ \x83\x12\x3b\x40\x1f\x7d\x08\x2b\xed\x93\xdf\x32\x4d\xa7\xfb\xcf\ \xba\x23\xf6\xd1\x99\x3f\xd9\xa9\xcb\xcd\x7c\xf3\x6f\xc9\x35\x8f\ \x34\xe4\xc5\x25\x66\xc0\xbf\xbd\x1b\xdf\x52\x78\x2a\x1f\x7d\xd9\ \xfa\x72\xcd\x59\xa7\xbb\xde\x4f\xba\x72\xfe\x44\x7d\x7c\xa2\xc7\ \x73\x12\xf4\xd1\xb7\x04\x94\xd8\x01\xfa\xe8\x43\x58\x49\xdf\xa9\ \x97\x1d\x79\x49\x6e\x66\xf6\xd3\xa1\x4e\x3c\xa1\x33\x77\x1d\x1c\ \x5a\x0b\x92\xb4\x6e\x9c\x9a\xbf\x66\xa1\xc3\x9f\xbd\xbb\x1b\x5f\ \x28\xba\x2c\x5f\x28\xe8\x73\xf6\xe5\x5a\x6b\x31\x2c\x5d\x7a\xbf\ \x61\x61\x3f\xcf\x5e\x23\x93\x3b\xb9\xaa\x23\x4b\x2d\xcb\xef\xe9\ \xb2\x02\xe3\xaa\xf5\xef\x8c\x3c\x06\x93\x40\x8e\x67\x17\xe8\xa3\ \x6f\x09\x28\xb1\x03\xf4\xd1\x87\xb0\x52\x3e\x79\x7f\xf8\xe2\x9d\ \xfd\x9d\xef\xb4\xf7\x30\x38\x98\x41\xe1\xfe\x85\xe7\xf5\xe5\xb9\ \xfc\xf9\x9b\x4c\x3c\xdc\x8d\x2f\x32\xe8\xf3\xef\x9b\x3e\xf4\x73\ \x33\x90\xc3\x77\xbd\xb7\x71\x3d\xfe\x5c\xa1\x8f\x3e\x04\xc8\x07\ \x25\x76\x80\x3e\xfa\x10\x56\xc2\x27\x0b\xe8\x2c\x3c\x3f\x3f\xf7\ \x50\x68\x40\x48\x1a\x1c\x62\x06\x1b\xb9\x4b\xdf\xc4\x8f\xcd\x80\ \xf1\x6d\xeb\x0d\x7c\xa0\x2f\x31\xe8\x73\xf2\x2d\xee\x97\xbb\x47\ \x66\xe6\x3e\x27\x57\x7a\xcc\xbe\x7f\xff\xc8\xcc\xec\xdb\xcd\x3e\ \x7a\xf3\xe8\xf4\xfe\xd7\xaf\xbe\xec\xe6\x9a\xbc\xb2\xf9\xcc\x5d\ \x1f\x79\x9e\xbc\x4b\x5e\x1f\x2f\x08\x2e\xc7\x1f\x42\x37\x3e\x79\ \x82\xe5\xb4\x4b\x0e\xae\x3d\x65\xcf\xc1\xf3\x4f\x9b\x9e\xdd\x3a\ \xd2\x3c\xf2\xf2\xd1\x3d\xb7\xce\xac\x9e\xde\xff\x16\x79\x36\xff\ \x9c\xf1\x57\x3f\x1d\xf1\xd9\xe8\xa6\x7c\x36\xe8\x5b\x66\x1f\x94\ \x38\x01\x38\xf3\x04\xe8\xa3\x0f\x21\xd1\xb7\x6b\xfe\x38\x79\xa4\ \x4e\xce\xce\xf5\x20\x11\x8a\x94\x83\x4d\x64\xd0\xe7\xd5\xd7\x7a\ \x72\x62\xe6\xf0\x5d\x66\x7f\x06\x2e\xbd\xbb\xdd\xf5\xde\x26\xf1\ \x78\x01\xc9\xca\xf7\xdc\xc6\xd5\x27\x3e\xe7\xd2\x0f\x9f\x2d\x37\ \xfc\xc9\x22\x3a\x52\xb7\xd6\x95\x88\x85\x95\x1f\xaf\x96\xba\xcb\ \x95\x8a\x85\xfb\x0a\x66\xbf\xb0\xf0\x93\xc4\xe2\x15\xa7\x88\xed\ \x27\xb1\x6e\x5d\x23\x7e\x21\x98\x04\xb2\xaa\x2f\x7d\xe9\x48\xe5\ \x83\x12\xc7\x90\x2a\xf3\x18\xe8\xa3\x0f\x21\xde\xf7\xc4\xd1\xad\ \x0e\x73\x66\xee\xbb\xa1\x81\xc5\x16\x96\xce\xd2\xe7\xe0\x45\x9f\ \x3d\xc2\x77\xbd\xb7\x2f\xbd\x1f\x6e\xca\x5a\xef\xad\xbb\xde\xdf\ \xf0\xf1\x17\xc9\x60\xb8\x76\xdb\x9e\xa7\x3d\xb9\x7f\x71\xe2\x8f\ \x17\x1c\x27\x5f\x63\xdf\x33\xe4\x67\x03\xf9\xf9\x40\x26\x27\x91\ \x03\xb9\xac\xa0\x37\x7d\xe8\x0b\x66\xbb\xdd\xb5\xba\x79\xf8\x61\ \xd7\xed\x17\x19\x96\xfd\x91\x6b\x1e\x7a\x54\x17\x0f\xc1\xa9\xbe\ \x00\xf4\xad\x90\x0f\x4a\x1c\x41\xea\xcc\x23\xa0\x8f\x3e\x84\x38\ \xdf\xc2\x9d\xfd\xf3\x77\x84\x3a\xc5\xa8\xb0\x74\x96\xbe\x3b\xdf\ \x61\xf2\xc9\xef\xe9\xe6\xff\xbf\x2a\x83\x1a\x7a\xd7\x7b\x9b\xb8\ \xfd\x9b\x86\xae\x7d\x1d\x03\xf9\xe1\xbc\xac\xdb\x20\x8f\xe5\xc9\ \xe3\x79\xb2\x98\x8e\x2c\xaa\x23\x8b\xeb\xc4\x9e\x91\x47\x45\xc6\ \xfb\xa3\xed\xcb\xcd\xcc\x3e\xa4\xab\xe5\x4a\xd7\xdb\x4f\x41\xdf\ \x0a\xfa\xa0\xc4\x16\xba\xca\xdc\x02\x7d\xf4\x21\x44\xf9\x4e\x69\ \xce\x6f\x30\x67\x94\x9f\x09\x75\x88\x71\x11\xd1\x59\xfa\xee\x7c\ \xfb\xd9\x67\xbf\xeb\x7d\xfe\x1a\xf9\x69\x45\xce\x66\x65\x30\x94\ \xbb\xde\x57\xbf\xf6\xa3\xe7\xae\xde\xb9\xeb\xb8\xac\xf6\x6f\x5a\ \x82\xbe\xf6\xa5\x75\xdb\x19\x79\xeb\xa7\x84\xd6\x0d\xa2\x31\x03\ \x79\x8a\xed\x17\x1b\xcb\xe8\x33\xfb\xf1\x67\x7a\xdb\xb8\x90\xe5\ \xfe\xa0\x0f\xc7\xb7\x0f\xc2\x77\xe6\xf4\xd1\x87\x60\xf3\x9d\xba\ \x7b\xff\xb9\x8b\x6b\xe5\xbb\x2d\x9b\xeb\xd0\x59\x86\xd2\xba\x44\ \x1f\xf9\xe4\x2c\xdd\xfc\x7b\x97\xac\x49\x20\x67\xae\xe8\x5d\xef\ \x6d\x6c\xfb\x43\xa7\x41\x70\xf6\xc5\x5c\x5a\x5f\xb8\xda\xd0\xba\ \xe1\x73\x9f\xa9\xdf\x01\x13\x5f\x5c\xa8\xeb\xa1\x87\x7c\x6d\x3f\ \xdf\xfb\x63\x39\x7c\x72\xb3\xaa\xde\x8c\x49\x38\xef\x0f\x47\xe8\ \xeb\x2d\x1f\x84\xef\xcc\xe9\xa3\x0f\x41\xfb\xce\x7c\xed\x07\x56\ \xcb\xf3\xd7\xb9\xe0\xab\x70\x5d\x23\xa1\xb3\x84\xa3\x07\x7c\x0b\ \xbf\xa7\x47\x2c\x38\xd3\x3c\xd2\x58\x78\x36\xfd\xe3\x2f\x5a\x7d\ \xf1\x3b\x4f\xcd\x62\x7f\xa4\xf2\x05\x06\x72\x29\x9f\x3c\x43\xdf\ \xbe\xb4\x2e\xcf\xd5\xb7\xf6\x6f\x6b\x89\xdb\xe0\x19\x79\xc2\x93\ \x1c\x29\xb7\x5f\x6c\x0c\x80\x4f\x6e\x84\xd5\x9b\x3f\x0e\x2f\xfb\ \x37\x00\x7d\xbd\xe5\x83\xf0\x9d\x39\x7d\xf4\x21\x04\x7d\x67\xbd\ \xfc\x1d\x27\x8d\xee\xb9\xf5\xcd\xb9\x99\xd9\xf8\xb7\xe3\x45\x85\ \x43\x67\x09\x45\x46\xbe\xf6\x5d\xef\x72\x06\x9b\x6b\x1e\xbc\x51\ \x96\x85\x0d\x5e\x7a\x97\xb3\xde\xd1\x2b\x6e\x5f\xdf\x3a\x4b\x1f\ \xbf\xea\x18\xbd\xcd\x82\x64\xb9\x3f\x24\xe4\x51\x3a\x59\x9e\x36\ \xf6\x8c\x3c\x6a\x20\xcf\x68\xfb\xd1\xd7\xe9\x33\xdb\xfb\x87\x7a\ \x3f\x46\xa1\xf7\xaf\xef\xe3\x85\x3e\x0c\xdf\x3e\x08\xdf\x99\xd3\ \x47\x1f\x42\xdb\x37\x52\xfe\xcf\xcf\x94\x95\xd6\x46\xa7\x0f\x7f\ \x4f\x77\x6e\xce\xe1\xd8\x59\x3a\x07\xe8\x8b\xbe\xeb\xfd\xc9\x4b\ \xef\xf2\xe8\x57\xeb\xae\xf7\xb5\xdb\x9e\xe6\x73\xfb\x39\xed\x8f\ \xc4\x4b\xeb\xb3\xd7\xc8\x9b\x0b\x65\x42\xd2\x71\x69\x3d\xa2\xbe\ \x89\x01\x6e\xbf\xc4\xa0\x2f\xd2\x67\x8e\xbd\x7b\xf4\xee\xb6\x01\ \x1d\x2f\x0e\xd0\xd7\x5b\x3e\x08\xdf\x99\xd3\x47\x1f\x82\x7c\x5f\ \x06\x42\x79\x5d\x69\x6e\xe6\xe0\x9d\x51\x9d\x9b\x53\x00\x9d\xa5\ \x53\x2c\xfa\x16\xee\x7a\x3f\xf8\x55\xf9\xbd\xb9\xf5\x72\x9f\x88\ \xbb\xde\x57\xbd\xe2\x13\x89\x0b\xce\x78\xdb\x7e\x66\x20\x97\x33\ \x72\x99\x4c\x74\x5e\x5a\x3f\x70\xf9\xd2\x19\xf9\xc2\xe4\xe3\x86\ \xc0\x19\xf9\x83\xa1\x3a\x5a\xea\xeb\x7b\xfb\xd1\xb7\x3c\x3e\xb3\ \x7f\xbf\xa7\x0f\x13\x8d\xb7\xe3\x6f\x11\xfa\x7a\xcf\xa7\x3f\x8b\ \x24\x8b\xcc\xe9\x4b\xcf\x30\xfa\xce\xbc\xf4\xfa\x62\x6b\x60\x4d\ \xe8\xdc\x12\x03\xe8\x2c\x93\xee\x7a\x6f\x5d\x7a\x9f\x3e\xbc\x5e\ \xce\xd2\xe5\xae\x77\x9f\xf5\xd5\xdb\xef\x8c\xc4\x33\xf2\x85\x81\ \x7c\xf1\x37\xff\xf9\xa5\x81\x1c\xa8\xaf\x53\xd0\xd7\xf7\x3e\x59\ \xa9\x52\x1f\x73\x41\x6c\xc7\x9f\x4e\x83\x40\x5f\x6f\xfa\xf4\xe7\ \x56\xb2\xca\x9c\xbe\x74\x0c\x9b\xef\x8c\xdd\x9f\x3c\x6f\xb4\x79\ \xe0\x43\xae\x9d\x5b\x6c\xc8\xf7\x02\x77\xbd\xb7\xce\xd2\xa7\x0f\ \xbc\x4f\x5f\x7a\x0f\xdc\xf5\x7e\x94\x2e\x8f\x06\xae\x6f\xc2\x40\ \x9e\x6b\x1e\xfc\x33\x29\xd3\xe2\xeb\x81\xe5\x6d\x81\x77\xc9\xfb\ \xde\x43\x75\x71\x89\x14\x83\x43\x6c\xd0\x37\x10\x3e\x33\x39\xfc\ \xa6\x3e\x2c\xdb\xc0\xc7\x73\x02\xf4\xf5\xae\x4f\xff\x2d\x44\x96\ \x99\xd3\x87\x33\x4c\xbe\x35\x7b\x6e\x3e\x43\x16\x55\x19\x6d\x1e\ \x7a\x34\xa9\x73\x33\x67\xba\xf7\x2e\x9e\xa5\x87\xef\x7a\x0f\x5c\ \x7a\x5f\xf3\xaa\x3f\x3f\xc5\x57\xf9\xe4\x8c\xbc\xb5\x44\xeb\x1b\ \x3e\xfe\xa2\xf6\xa5\x75\x59\xb1\xae\xb5\x72\x5d\xdc\x19\xb9\xa5\ \x43\x6e\x45\xca\xce\x3c\x32\xe8\xa3\x2f\x22\xcc\x71\xf8\x35\x7d\ \x3c\x0b\x3e\xdb\xaf\x40\x5f\x6f\xfb\xf4\xdf\x3b\xd0\x89\x7d\x67\ \x4e\x1f\xc6\xb0\xf8\xe4\x25\x26\x66\x30\xff\x5d\xd3\x99\xc9\x6f\ \xe9\xad\xbb\xde\x17\x6f\x36\xfb\xb3\x5c\xf3\x10\x7c\xd7\x7b\x9b\ \xc8\xf2\x25\x9c\x91\x07\x07\xf2\x85\x09\xc6\xdc\x57\xe5\xbd\xee\ \x69\x3b\x5f\x6b\x74\xd1\x99\x5b\x83\x3e\xfa\x62\xc2\x1c\xc7\x77\ \xaa\xe6\x11\xdd\x3e\x52\x42\x5f\x1f\xfb\xa0\xc4\x0e\xd0\x47\x9f\ \x33\xeb\xdf\xf9\x54\xaf\xbe\x55\x0b\xe5\x93\xdf\xe8\xe5\xbd\xec\ \x6b\xf6\xdc\xb4\xbd\x75\x03\xdc\xde\xd9\xbf\x18\x99\x99\xfb\x94\ \x19\xd0\xbf\x98\x9b\x99\xfd\xf7\x5c\xdc\x6b\x81\x83\xd1\x65\xe7\ \x1b\x0a\xfa\xe8\x43\xc2\x83\xcf\x1c\xeb\x5f\xd6\xed\xc3\x77\x7b\ \xa3\x2f\x3d\x2b\xea\x83\x12\x3b\x40\x1f\x7d\x08\x2b\xea\x5b\xbc\ \x1a\x20\x57\x17\xac\x57\x02\xc2\x2b\xca\x3d\x8a\x76\xbe\x1d\xe1\ \xa1\x33\xa7\x8f\x3e\xd4\x67\x8e\xe3\xcf\xb7\x0f\x79\xa8\x7d\x38\ \x40\x5f\x1f\xfb\xa0\xc4\x0e\xd0\x47\x1f\x42\x3f\xfa\xe4\x5e\x00\ \x79\xed\xac\xed\xe7\x03\xfb\x7a\xf2\x8b\xcb\x14\x7b\xea\xcc\x97\ \x82\x3e\xfa\x1c\x63\x64\x66\xee\x5f\xa3\x8e\x67\x7d\xcc\x23\xd0\ \xd7\xc7\x3e\x28\xb1\x03\xf4\xd1\x87\x30\x4c\xbe\xb3\x76\xdf\x76\ \x92\x7e\x2e\x5f\x56\x34\x6c\x2d\x77\xab\xde\xef\x6e\xfe\xbd\x4f\ \x77\xe0\xa1\xf0\x38\x38\xd0\x37\xf8\xbe\x5c\x73\xf6\x9f\x7d\x1e\ \xcf\x02\x7d\x7d\xec\x83\x12\x3b\x40\x1f\x7d\x08\xf4\x25\xf8\x2c\ \x37\x2a\x8e\x5e\x71\xfb\xae\xe0\x8a\x7c\x8b\x8f\x0d\x1e\x58\x58\ \x88\x88\x2b\xf2\x39\xc7\x30\xfa\x9a\x87\xe6\xa1\xe3\x2f\x01\xf8\ \x78\x4e\x80\xbe\x65\xf4\x41\x89\x1d\xa0\x8f\x3e\x04\xfa\x32\xf2\ \xa9\x49\x83\x3c\x0e\xa9\x9f\x6c\xe8\x5c\xfd\x6f\xfe\xe1\x4c\x06\ \x1b\xfa\x7a\xce\x37\x3a\x7d\xf0\x48\xe8\x78\x49\x49\xe4\xf1\x97\ \x12\xfa\x96\xd1\x07\x25\x76\x80\x3e\xfa\x10\xe8\xeb\x2d\x9f\xbc\ \xc8\xa7\xb5\xb6\xc1\xee\x1b\x2e\xb0\xae\x6b\x10\x7e\x89\xcf\xa3\ \xa1\x41\x46\x0d\x36\xbe\x07\x2f\xfa\xba\xf7\xe5\x9a\x07\x0f\xfa\ \x38\x5e\x7c\x1f\x7f\xf4\x2d\xb3\x0f\x4a\x9c\x00\x9c\x79\x02\xf4\ \xd1\x87\x40\xdf\x0a\xf9\xac\x37\x41\x1e\x6e\xca\x2b\x7c\x65\x21\ \xa7\xa5\x9f\x26\xa6\x0f\x7d\x21\x37\x33\xf7\xe4\x4d\x90\x48\x64\ \x38\x18\x0e\xa3\x6f\xb4\x79\xe0\x36\xe7\xfd\x1b\x41\xea\xe3\x25\ \x02\xfa\x56\xc0\x07\x25\x8e\x21\x55\xe6\x31\xd0\x47\x1f\x02\x7d\ \x7d\xe4\xdb\xf6\x89\xa7\xe9\xfb\x19\x64\xd2\x20\xef\x57\x08\x2f\ \xba\x34\xfb\x85\x91\x99\xd9\xfb\xb2\x1c\x0c\x87\xd2\x37\x7d\xf0\ \x33\x4b\xfb\x23\x05\xb1\xfb\x37\x05\xf4\xad\x90\x0f\x4a\x1c\x41\ \xea\xcc\x23\xa0\x8f\x3e\x04\xfa\x06\xdf\xf7\xdc\xc6\xd5\x27\x06\ \x97\x5d\xee\xbc\x09\x52\x4f\x1a\xe6\xbe\x6a\xe2\xa1\xd0\x40\x18\ \x35\x18\xfa\x1e\x5c\xfb\xc0\x37\xd2\x3c\x72\xa3\xde\xce\xae\x64\ \xb1\x7f\xe9\x4b\x4f\x57\x3e\x28\xb1\x85\xae\x32\xb7\x40\x1f\x7d\ \x08\xf4\xd1\x17\x89\xbe\x09\xb2\x79\xa4\x21\x2b\x40\x8e\xee\xb9\ \xed\xad\xb9\xe6\xfe\xd6\x0b\x97\x64\x99\x69\xf3\xf9\x93\x37\x41\ \xea\x01\x34\x2e\x22\x06\x57\xdf\x83\x75\x16\x3e\x33\x69\xba\x5e\ \x6f\x2e\x17\xba\xda\x1f\x16\xe8\xeb\x2d\x1f\x84\xef\xcc\xe9\xa3\ \x0f\x81\x3e\xfa\x10\x9c\x7c\x49\x2b\x41\xb6\x6f\x82\x34\x93\x86\ \xd5\x8b\x2b\x41\xea\xc1\x35\x34\x10\xbb\x44\xcc\x60\x1d\x4a\xeb\ \x12\x09\xbe\xdc\xcc\xdc\x27\x74\xd5\x93\x70\xda\x7e\x00\xf4\xf5\ \x96\x0f\xc2\x77\xe6\xf4\xd1\x87\x40\x1f\x7d\x08\x59\xfa\xe4\xe7\ \x09\x79\xc7\xc4\x69\xd3\x87\xb1\x95\x20\x1d\x07\x6b\x38\x1c\x7c\ \x52\x26\x5d\xa7\x38\xb2\xdc\x7e\xf4\xe1\xf8\xf6\x41\xf8\xce\x9c\ \x3e\xfa\x10\xe8\xa3\x0f\xa1\xe7\x7c\x1d\x37\x41\x1e\xce\xaf\xde\ \x7d\x6b\xad\xbd\x12\xe4\x93\x3f\x4d\x80\x2b\x41\x02\x83\xbf\xc4\ \xc8\xcc\xfc\x47\x74\xb1\xa2\xe8\xba\xbe\x0a\xfa\x7a\xcb\x07\xe1\ \x3b\x73\xfa\xe8\x43\xa0\x8f\x3e\x84\x81\xf1\xc5\xae\x04\xb9\x78\ \x13\xa4\x99\x34\x04\x57\x82\x8c\x1a\xfc\x25\x72\x7b\xe7\x3e\xa4\ \xb3\xb0\xe1\x5c\x3e\x47\xe8\xeb\x2d\x1f\x84\xef\xcc\xe9\xa3\x0f\ \x81\x3e\xfa\x10\x86\xdd\xb7\x7a\xd7\x3b\x4f\x3d\x6d\xfa\xf0\x2f\ \x9c\xbc\xe7\xf0\x05\xa7\x36\x8f\xec\x30\x13\x87\xdf\x3c\xbd\x39\ \x7f\xc5\x48\x73\xfe\x0f\x64\xf2\xa0\xbf\xaf\xd1\x3e\xdf\xe5\xa3\ \x0f\x23\x0b\x9f\xfe\x2c\x92\x2c\x32\xa7\x2f\x3d\xf4\xd1\x87\x40\ \x1f\x7d\x08\xf4\x0d\x87\x4f\x7f\x6e\x25\xab\xcc\xe9\x4b\x07\x7d\ \xf4\x21\xd0\x47\x1f\x02\x7d\xc3\xe3\xd3\x7f\x0b\x91\x65\xe6\xf4\ \xe1\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x37\x5c\x3e\xfd\xf7\x0e\x74\ \x62\xdf\x99\xd3\x87\x41\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x4b\ \x40\x89\x1d\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\x8f\x3e\x04\xfa\x62\ \x7c\x50\x62\x07\xe8\xa3\x0f\x81\x3e\xfa\x10\xe8\xa3\x0f\x81\xbe\ \x18\x1f\x94\xd8\x01\xfa\xe8\x43\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\ \x2f\xc6\x07\x25\x76\x80\x3e\xfa\x10\xe8\xa3\x0f\x81\x3e\xfa\x10\ \xe8\x8b\xf1\x41\x89\x1d\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\x8f\x3e\ \x04\xfa\x62\x7c\x50\x62\x07\xe8\xa3\x0f\x81\x3e\xfa\x10\xe8\xa3\ \x0f\x81\xbe\x18\x1f\x94\xd8\x01\xfa\xe8\x43\xa0\x8f\x3e\x04\xfa\ \xe8\x43\xa0\x2f\xc1\x07\x25\x4e\x00\xce\x3c\x01\xfa\xe8\x43\xa0\ \x8f\x3e\x04\xfa\xe8\x43\x18\x48\x1f\x94\x38\x86\x54\x99\xc7\x40\ \x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\x03\xeb\x83\x12\x47\x90\ \x3a\xf3\x08\xe8\xa3\x0f\x81\x3e\xfa\x10\xe8\xa3\x0f\x61\xa0\x7d\ \x50\x62\x0b\x5d\x65\x6e\x81\x3e\xfa\x10\xe8\xa3\x0f\x81\x3e\xfa\ \x10\x86\xcd\x07\xe1\x3b\x73\xfa\xe8\x43\xa0\x8f\x3e\x04\xfa\xe8\ \x43\x18\x36\x1f\x84\xef\xcc\xe9\xa3\x0f\x81\x3e\xfa\x10\xe8\xa3\ \x0f\x61\xd8\x7c\x10\xbe\x33\xa7\x8f\x3e\x04\xfa\xe8\x43\xa0\x8f\ \x3e\x84\x61\xf3\x41\xf8\xce\x9c\x3e\xfa\x10\x7c\xfa\xce\x3f\x7f\ \xe2\x94\x0b\x2f\xdc\xbe\x7e\xac\x54\xbd\x28\x5f\xda\x79\x71\xb1\ \x5c\x7b\x5d\xbe\x5c\x7f\xed\xe6\xd2\x54\x23\x3f\xb1\x73\xc7\xa6\ \xd2\x45\x2f\x5a\x3f\x3e\x7e\xaa\xfe\x5e\x1c\x3e\xcb\x27\xd0\x47\ \x1f\x02\x7d\xf4\x65\x86\xef\xcc\xe9\xa3\x0f\xa1\x0b\xdf\x31\x1b\ \x27\x2f\xfa\x0f\xf9\x4a\xf5\x55\x85\x72\xed\x7f\x15\x2a\xb5\x9b\ \xcd\x60\x7f\xff\xe6\x4a\xfd\x09\x6b\x6c\x7d\x59\x47\x14\x2b\xf5\ \xef\x9a\xf4\xff\x98\x2f\xd5\x2f\xdf\xb4\x65\xdb\xf3\xb4\xbc\x4d\ \x17\xe5\xb3\x42\x1f\x7d\x08\xf4\xd1\x87\x00\x7d\x3f\x8b\xcc\xe9\ \x4b\x0f\x7d\xf1\xbe\xfc\xf6\xed\xcf\xcd\x97\xab\x97\x14\x2a\xf5\ \xeb\x8a\x95\xda\x4f\x3a\x06\x75\x3d\xe0\xc7\x0c\xfe\xb6\x30\x13\ \x82\xd9\x7c\xa9\xf6\xca\x55\x8d\xc6\xb1\xed\xfc\xd0\xf2\x25\x41\ \x1f\x7d\x08\xf4\xd1\x87\xd0\xf6\xe9\xcf\xad\x64\x95\x39\x7d\xe9\ \xa0\xcf\xee\xdb\x34\xb1\x63\xa3\x9c\xe1\x9b\x01\xfa\x2b\x7a\xd0\ \xf6\x35\xf8\x07\xc3\xe4\xf3\xf5\xc2\x64\xed\x57\x5d\xcb\xe7\x0a\ \x7d\xf4\x21\xd0\x47\x1f\x42\xd0\xa7\xff\x16\x22\xcb\xcc\xe9\xc3\ \xa1\xaf\xd3\xb7\xa1\xb8\xe3\x17\x8a\xe5\xda\x55\xe6\x4c\xff\xff\ \xe8\x01\x3a\x14\x7a\xc0\xef\x62\xf0\xef\xf4\x55\x6f\x2e\x54\x76\ \x9c\x6f\x2b\x1f\x4a\x52\x7d\x51\xe8\xa3\x0f\x81\xbe\xe1\xf2\xe9\ \xbf\x77\xa0\x13\xfb\xce\x9c\x3e\x0c\xfa\x16\x7c\x67\x34\x1a\xcf\ \x18\x2b\xd7\x5e\x57\x2c\xd7\x0f\x85\x06\xe5\xa8\xd0\x03\xbe\xb7\ \xc1\x7f\x21\xcc\x24\xe4\xb1\x42\xb9\xf6\xd7\x1b\xb7\xec\x58\xa3\ \xeb\xe1\x4a\x54\x7d\xd3\x42\x1f\x7d\x08\xf4\xd1\xb7\x04\x94\xd8\ \x01\xfa\xe8\x43\xb0\xf9\x5e\x3c\x56\x5a\x2d\x67\xfb\xc5\x4a\xfd\ \xfb\xa1\x01\x39\x2e\xf4\x80\xef\x79\xf0\xef\x98\x08\x54\xea\x0f\ \x6e\xde\x5a\xdf\x97\x9f\xa8\x4e\xea\x3a\xc5\x61\xab\xaf\x4e\x83\ \x40\x1f\x7d\x08\xf4\xd1\xb7\x04\x94\xd8\x01\xfa\xe8\x43\xd0\xbe\ \x4d\x5b\xa6\x8a\xc5\x4a\xed\xc3\x66\x70\x7d\x34\x34\x18\x27\x85\ \x65\x90\xce\x6a\xf0\xd7\x69\xcd\x64\x65\xae\x50\x99\x7a\x43\xd2\ \xa3\x84\xba\xbe\xbe\xb7\x1f\x7d\x18\xf4\xd1\x87\x30\x50\x3e\x28\ \xb1\x03\xf4\xd1\x87\x10\xf4\xe5\x27\x77\x8c\x17\x2a\xf5\x8f\xd9\ \x06\x57\xa7\xd0\x03\x74\xcc\x60\xed\x14\xda\xe1\xe8\x33\x13\x97\ \xc7\x0a\xe5\xfa\xfe\x7c\xa5\x7a\xa5\xdc\xb3\x10\x55\x5f\xdf\xdb\ \x8f\x3e\x1c\xfa\xe8\x43\x18\x28\x1f\x94\xd8\x01\xfa\xe8\x43\x90\ \xef\xaf\x5d\xbb\xf6\x69\x85\xc9\x9d\xbf\x2a\x8f\xda\xb9\x0c\xae\ \x91\xa1\x07\x68\xc7\xc1\x3a\x32\xb4\xa3\x0b\x9f\x3c\xa5\x50\x28\ \x57\xdf\x55\x2c\xd7\x7f\x73\x7c\x6b\xed\x1c\x9f\xdb\xcf\xf7\xfe\ \xa0\x2f\x3d\xf4\xd1\x87\xb0\xa2\x3e\x28\xb1\x03\xf4\xd1\x87\x20\ \xdf\x1f\xdb\xb2\x73\x5b\xa1\x5c\x9b\xef\x66\x70\x6d\x85\x1e\xa0\ \x7b\xdc\x57\x2c\x57\xbf\xb6\xb9\x5c\xff\xa0\x99\x10\xbc\x69\x53\ \xa9\x56\x4e\xfa\xc9\xc0\x46\x16\xfb\x83\xbe\xf4\xd0\x47\x1f\xc2\ \x8a\xfa\xa0\xc4\x0e\xd0\x47\x1f\x42\xa1\x34\x35\x66\x06\xbf\x9b\ \xf4\xc0\x18\x1a\x38\x5d\x42\x3b\xfa\xd4\x57\xac\xd4\xbe\x59\xa8\ \xd4\xfe\x69\xac\x5c\xff\x93\x7c\xb9\xb6\x6b\x53\x79\xaa\x18\x35\ \x31\xf0\xbd\x3f\xe8\xa3\x0f\x81\xbe\x3e\xf6\x41\x89\x1d\xa0\x8f\ \x3e\x57\x2e\x18\xdf\x7a\x4e\xeb\xe6\xbe\x72\xed\xf1\xb8\xc1\xd0\ \x39\xb4\x63\x00\x7d\x66\x52\xf0\x23\x33\x59\xba\x43\x96\x26\x2e\ \x94\x6b\x7f\x5a\x98\xa8\xfd\x76\xa1\x3c\xf5\xeb\x9b\xb7\xee\xd8\ \x38\x56\x9a\x5a\xdd\xcd\xfe\x10\x7c\xee\x5f\x81\x3e\xfa\x10\xe8\ \x5b\x66\x1f\x94\x38\x01\x38\xf3\x04\x96\xdb\x57\xac\xd4\xef\x32\ \x71\xaf\x53\x94\x6b\xd1\xa1\xd3\xba\x84\x76\x3c\x19\xdf\x35\x7f\ \x9f\x95\x67\xcc\xc7\x26\xa7\x5e\x66\xca\x7c\x5c\xb0\xcc\x71\x24\ \xd5\x17\xc5\x97\x4f\x9e\xe3\x2f\xca\xe3\x7c\xa5\xda\xcf\x42\x03\ \x21\x30\x18\x76\x84\x76\x0c\xa9\xcf\x6c\xd7\x9f\x9a\x49\xc2\x17\ \xcc\xbf\x1f\x2f\x54\xea\xef\x2e\x94\xaa\xbf\x6b\x8e\x9d\xdd\x66\ \x72\x30\x95\x2f\x57\x37\x6c\x18\xdf\x76\xc6\xfa\xf5\xbb\xac\xfb\ \xcd\xd7\xfe\x6d\x43\x1f\x7d\x08\xf4\xad\x80\x0f\x4a\x1c\x43\xaa\ \xcc\x63\x58\x09\x9f\x39\xb3\xfa\x59\xa8\xa3\xb5\x85\xa5\xe3\xcd\ \xa2\x33\xb7\xf9\xcc\x64\xe0\xdf\xf3\xa5\xea\xa5\x51\x9d\x78\x1b\ \x97\xfa\x22\xf8\xf2\xc9\xd2\xb9\x85\x52\xed\x1b\xa1\x7a\x46\xd4\ \xd7\x29\xb4\x83\xbe\xd8\x30\xc7\xd0\xe3\x26\xee\x36\xf1\xaf\x0b\ \x13\x85\xea\x7b\x4c\xfc\x7e\xb1\x34\xd5\xcc\x97\xa6\x1a\x63\x13\ \xdb\x0b\x9b\xb6\xd4\x9e\x27\x37\x64\xea\xfd\xe7\x8a\xaf\xe3\xa5\ \x0d\x7d\xf4\x21\xd0\xe7\xe8\x83\x12\x47\x90\x3a\xf3\x08\x56\xca\ \xe7\x34\x01\xd0\x1d\x2e\xd8\xf9\x86\x42\x3b\x1c\x7d\xf2\x58\xd9\ \x79\x9b\xca\xa7\xeb\x3a\x08\xae\xf5\x75\xc5\x87\x6f\xec\xc2\x9d\ \x2f\x34\x67\xa6\x37\x86\xea\xe8\x58\xdf\xc8\xd0\x0e\xfa\xb0\xd0\ \x0e\xe5\x33\x93\x84\xef\x9b\xf8\x5c\xa1\x5c\xbb\xde\xb4\x8f\xbf\ \xc9\x97\x6b\x6f\xcd\x4f\x56\x5f\x53\x28\xed\xdc\xbc\x7e\xb2\x71\ \x96\xd9\xb5\x47\xeb\x7d\xed\xe3\x78\x09\x42\x1f\x7d\x08\xf4\x01\ \x3e\x28\xb1\x85\xae\x32\xb7\xb0\x92\xbe\xc4\x09\x80\xee\x20\x33\ \xee\x7c\x93\xa2\x50\xa9\x7f\x43\x56\xc7\x0b\xd6\x01\xa9\xaf\x0b\ \xdd\xfa\xce\x1d\x1b\x3b\x61\xf1\x05\x3d\x8f\x84\xea\x08\xd6\x37\ \x14\xda\x41\x1f\x16\xda\x91\xc2\x67\xf6\xeb\x43\x45\x79\xac\xb1\ \x52\xfb\x27\xb3\x9f\xdf\x51\xac\x54\xaf\x2c\x4c\xec\xac\x15\xcb\ \xe5\xe7\xa4\x39\x5e\x34\xdd\x1e\x7f\x1a\xfa\xe8\x43\x18\x36\x1f\ \x84\xef\xcc\x57\xda\x17\x3b\x01\xd0\x1d\x64\x8a\xce\x32\x0b\x9f\ \xdc\x1f\x20\xbf\xa9\x4b\xf9\xd1\xfa\x26\xd1\xad\x6f\xac\xbc\x73\ \x9b\x29\xdf\xb7\x7c\xd6\x77\x29\xb4\x83\x3e\x2c\xb4\x23\x03\x5f\ \xb1\x54\xfb\xbe\x69\x53\x9f\xca\x97\x6b\xbf\x33\x36\x51\x2d\x04\ \x5f\x9f\xec\x42\xb7\xc7\x9f\x86\x3e\xfa\x10\x86\xcd\x07\xe1\x3b\ \xf3\x5e\xf0\x45\x4e\x00\x2c\x9d\x9b\xef\xce\xb2\x1b\x9f\xdc\xe8\ \x95\xa6\xbe\x71\x74\xe3\x3b\xff\xfc\x89\x53\xcc\x19\xe1\xb5\x59\ \xd5\x37\xe4\xa0\x0f\x0b\xed\x58\x26\x5f\xb1\x52\xfb\x89\x5e\x09\ \x31\x8a\x6e\x8e\x3f\x1b\xf4\xd1\x87\x30\x6c\x3e\x08\xdf\x99\xf7\ \x8a\xcf\x3a\x01\xd0\x1d\x5a\x44\xe7\xe6\x1c\xda\xe1\xc1\x57\x2c\ \x57\x7f\x62\xe2\x4c\xb4\xbe\x51\xa4\xdd\x7e\xc2\xd8\x64\xed\xd7\ \xe4\x06\xb3\x2c\xeb\x1b\x19\x3a\xad\x4b\x68\x07\x7d\x58\x68\x47\ \x82\x6f\xd3\xf8\xf6\x5f\xd2\xc7\x8c\xa6\x9b\xe3\xcf\x06\x7d\xf4\ \x21\x0c\x9b\x0f\xc2\x77\xe6\xbd\xe4\x0b\x4d\x00\x74\x87\x96\xd0\ \xb9\x25\x86\x76\x78\xf4\xc9\xf3\xe0\x68\x7d\x6d\xa4\xdd\x7e\x93\ \x93\x8d\x13\x0b\xe5\xda\x7b\xa3\xca\x17\x0a\x5d\x17\x97\xd0\x0e\ \xfa\xb0\xd0\x8e\x15\xf0\x2d\xde\x38\x18\x49\xda\xe3\x2f\x0a\xfa\ \xe8\x43\x18\x36\x1f\x84\xef\xcc\x7b\xcd\xd7\x31\x01\xd0\x1d\x9a\ \x43\xe7\x16\x1b\xda\xe1\xd9\x57\x28\xd5\xf7\xa3\xf5\x0d\xd2\xba\ \x6c\x5f\xaa\xfd\x46\x71\xb2\xf6\x3b\xc5\x72\xf5\x2f\x36\x97\xab\ \x1f\x94\xe5\x69\x8d\x7b\x9f\xbc\xde\x56\x87\x39\xcb\xff\x70\xa1\ \x52\xbb\xa1\x1d\xe6\xff\xef\x8a\x2b\x9f\xef\xfa\xd2\x07\x86\x76\ \xac\x90\xef\x85\x1b\x1b\x27\xeb\x63\xaf\x4d\xb7\xed\x57\x43\x1f\ \x7d\x08\xc3\xe8\xd3\x9f\x45\x92\x45\xe6\xbd\xe6\x5b\x9a\x00\xe8\ \x0e\xcd\xb1\x73\x8b\x0c\xed\xc8\xc0\x27\x8b\xea\xe8\xfa\xb8\x50\ \x98\x9c\xda\x6e\x06\xfc\x9b\x8a\xe5\xda\xa3\xda\xe9\xb3\x7c\xf4\ \x01\xa1\x1d\x03\xe2\x33\x93\xc4\x07\xcc\x21\x77\x94\x3e\x06\x05\ \x1f\xed\x37\x08\x7d\xf4\x21\x0c\xab\x4f\x7f\x6e\x25\xab\xcc\x7b\ \xcd\xd7\x9a\x00\xe8\x0e\xcd\xb1\x73\x8b\x0c\xed\xc8\xd0\x17\x77\ \x76\xa5\x91\x9b\xb1\xe4\xcc\x5d\x3b\xb2\x2c\x5f\x28\xad\x4b\x68\ \x07\x7d\x58\x68\xc7\x0a\xfa\xcc\x24\x73\x4e\x1f\x87\x82\xaf\xf6\ \xdb\x86\x3e\xfa\x10\x86\xd9\xa7\xff\x16\x22\xcb\xcc\x7b\xcd\x17\ \xb9\x34\xad\x43\xe7\x66\x0d\xed\xc8\xd8\xb7\x71\xbc\xb1\x56\xd7\ \xc9\xc6\xd8\xe4\x8e\xbc\x39\x1b\xfb\x41\xc8\x91\x71\xf9\xe0\xd0\ \x0e\xfa\xb0\xd0\x8e\x15\xf6\xc9\x93\x21\xfa\x58\xf4\xd9\x7e\x05\ \xfa\xe8\x43\x18\x76\x9f\xfe\x7b\x07\x3a\xb1\xef\xcc\x7b\xcd\x17\ \x39\x01\xb0\x74\x66\x89\xa1\x1d\xcb\xe0\x73\x79\xc4\x6a\xac\x54\ \xbd\xc8\x0c\xfe\x3f\x0f\x39\x2c\x3e\x28\xb4\x83\x3e\x2c\xb4\x63\ \x00\x7d\xf2\xba\xe3\xe0\xb1\xe8\xbb\xfd\xd2\x47\x1f\x02\x7d\x31\ \x3e\x28\xb1\x03\xfd\xe0\xb3\x4e\x00\x2c\x1d\x59\x62\x68\xc7\x32\ \xf9\x92\x26\x00\xf2\x08\x96\x19\xfc\x7f\x1c\x72\x44\xf8\x9c\x43\ \x3b\xe8\xc3\x42\x3b\x06\xd4\xd7\x5a\x0c\x68\x91\x2c\xda\x2f\x7d\ \xe9\xa1\x8f\xbe\x25\xa0\xc4\x0e\xf4\x8b\x2f\x34\x01\xb0\x74\x62\ \x89\xa1\x3b\xc8\x65\xf4\x25\x4c\x00\x8e\x2a\x54\xea\xf3\x21\x47\ \x8c\xcf\x29\xb4\x83\x3e\x2c\xb4\x63\x40\x7d\x32\xf1\x6c\xaf\x04\ \x98\x55\xfb\xa5\x2f\x1d\xf4\xd1\xb7\x04\x94\xd8\x81\x7e\xf2\x75\ \x4c\x00\x2c\x9d\x58\x62\xe8\x0e\x32\x65\x67\x99\xd6\x17\x37\x01\ \x90\xd7\xc1\x86\x1c\x09\xbe\xc4\xd0\x0e\xfa\xb0\xd0\x8e\x01\xf6\ \x15\x2b\xb5\xbf\x93\xe3\x30\xcb\xf6\x4b\x1f\x0e\x7d\xf4\x2d\x01\ \x25\x76\xa0\xdf\x7c\x4b\x13\x00\x4b\x07\x96\x18\xba\x83\xec\xa2\ \xb3\x4c\xeb\x8b\x9b\x00\x14\x2b\xd5\x5b\x43\x9e\x04\x5f\x6c\x68\ \x07\x7d\x58\x68\xc7\x80\xfb\x0a\xe5\x5a\x4d\xb7\x37\xdf\xed\x97\ \x3e\x0c\xfa\xe8\x5b\x02\x4a\xec\x40\x3f\xfa\x5a\x13\x00\x4b\xe7\ \x95\x18\xba\x83\xec\xb2\xb3\x0c\x39\x1c\x7d\x51\x13\x00\x79\x63\ \x60\xc8\xe3\xe0\x8b\x0c\xed\xa0\x0f\x0b\xed\x18\x70\x5f\xb1\x5c\ \xfd\xde\xf8\xf8\xf8\xf1\xba\xbd\xe9\xe3\x14\xc1\xd6\x7e\x75\x1a\ \x04\xfa\xe8\x43\x18\x28\x1f\x94\xd8\x81\x7e\xf5\x85\x96\x02\x76\ \x09\xdd\x41\x76\xd9\x59\x86\x1c\x80\x2f\x6a\x02\x20\x2b\xfc\x85\ \x5c\x0e\x3e\x6b\x68\x07\x7d\x58\x68\xc7\x10\xf8\x0a\xa5\xea\x9b\ \x6d\xed\x2d\x2d\x51\xed\x37\x2d\xf4\xd1\x87\x30\x50\x3e\x28\xb1\ \x03\xfd\xec\x83\x27\x00\xba\x83\xf4\xd0\x59\x46\x86\x4e\x6b\x09\ \xdb\x04\x40\xea\xd7\x5a\xda\x37\x85\x2f\x14\xda\x41\x1f\x16\xda\ \x31\x04\xbe\x62\xb9\xf6\xc3\xf5\xe3\xe3\xa7\xda\xda\x5b\x1a\xe2\ \xda\x6f\x1a\xe8\xa3\x0f\x61\xe0\x7c\x50\xe2\x04\xe0\xcc\x13\x58\ \x6e\x1f\x34\x01\xd0\x1d\xa4\x87\xce\x32\x32\x74\xda\x88\xd0\x13\ \x80\x76\x7d\x4d\x27\xfc\x8f\x69\x7c\x1d\xa1\xcb\x44\x1f\x16\xda\ \x31\x24\xbe\x62\xa9\x7a\x69\x54\x7b\x43\x49\x6a\xbf\x28\xf4\xd1\ \x87\x30\x90\x3e\x28\x71\x0c\xa9\x32\x8f\x61\x25\x7c\xce\x13\x00\ \xdd\x41\x7a\xea\x2c\xad\xa1\xd3\xc6\x44\x70\x02\x10\xac\xef\xe6\ \x52\x6d\x2e\x8d\x6f\x29\x74\x99\x52\x96\x8f\x3e\x4b\xe8\xb4\x2e\ \xa1\x1d\xbd\xea\x33\xc7\xdd\x39\xe3\xe3\x4f\x8f\x6a\x6f\x08\x2e\ \xed\x17\x81\x3e\xfa\x10\x06\xd6\x07\x25\x8e\x20\x75\xe6\x11\xac\ \x94\xcf\x69\x02\xa0\x3b\x48\x5f\x9d\xa5\x2d\x74\xda\x84\x68\x4f\ \x00\x74\x7d\x8b\x95\xda\xd7\xd3\xf8\x5a\xa1\xcb\xd4\x45\xf9\xe8\ \x1b\x1e\x5f\xb1\x5c\xfd\xd1\x78\x79\xfb\x2f\xc5\xb5\x37\x57\xf4\ \xf1\x4c\x1f\x06\x7d\xf4\x45\x02\x25\xb6\xd0\x55\xe6\x16\x56\xd2\ \x97\x38\x01\xd0\x1d\xa4\xa7\xce\xd2\x1a\x3a\xad\x43\xc8\x04\xc0\ \x56\xdf\x62\xb9\xf6\x03\x9d\xd6\x29\x74\x99\xba\x2c\x5f\xc8\x41\ \x1f\x16\xda\xd1\xa3\x3e\x73\xbc\x3d\x5e\x9c\xa8\xfe\xa7\xa4\xf6\ \xe6\x82\xed\x78\xd6\x69\x10\xe8\xa3\x0f\x61\xd8\x7c\x10\xbe\x33\ \x5f\x69\x5f\xec\x04\x40\x77\x90\x9e\x3a\x4b\x6b\xe8\xb4\x2e\x61\ \xbe\x77\x41\x71\xfb\x0b\x6c\xf5\x2d\x56\xea\x0f\x86\xd2\x27\x85\ \x2e\x93\x87\xf2\x45\x86\x4e\xeb\x12\xda\x41\x1f\x16\xda\xe1\xc9\ \xd7\x1a\xfc\x2b\xb5\x2b\x5c\xda\x5b\x12\x68\xfb\x4d\x22\x2b\xdf\ \xfa\xc9\xc9\x13\xf3\xe5\xa9\xd7\x9a\xfe\xe3\xef\x4d\xfd\xff\xcd\ \xb4\xb7\x7b\x4d\x3c\x5c\xa8\xd4\xbe\x6c\xfe\xfd\xb0\x3c\x85\x73\ \x46\xa3\xf1\x0c\xfd\x7d\x4d\x56\xe5\xa3\x2f\x1d\xc3\xe6\x83\xf0\ \x9d\x79\x2f\xf8\x22\x27\x00\xba\x83\xf4\xd4\x59\x5a\x43\xa7\x75\ \x89\xc5\xef\x16\x26\xaa\xeb\x74\x7d\xd7\xaf\xdf\xf5\xd4\x50\xfa\ \xa4\xd0\x65\xf2\x54\x3e\x6b\xe8\xb4\x2e\xa1\x1d\x81\x90\x17\x1d\ \x99\xf8\x9c\x89\x8f\x6e\xde\x5a\xdf\x97\x2f\xd7\xfe\x32\x5f\xae\ \xbf\xcb\x74\xc6\x1f\x32\xfb\xf7\xd3\x8b\x9d\xf2\x23\xae\xbe\x50\ \xde\x2e\xa1\x1d\x43\xe2\x93\xc1\xbf\x50\xae\xed\x71\x6d\x6f\x71\ \xa4\x69\xbf\x71\x64\xe5\x33\xc7\xd7\x2e\x59\xe7\x20\x69\xfb\xc9\ \xa4\x60\xac\x54\xfd\x2d\xf3\xd5\xa3\xb4\x4b\x48\x5b\xbe\xf3\x8b\ \x8d\xe7\x6c\x2a\xd5\xca\xe6\x58\x6f\x98\x89\xc6\x84\xac\xf9\x21\ \x9f\xa7\xf5\x45\x41\xdf\x60\xfb\x20\x7c\x67\xde\x2b\x3e\xeb\x04\ \x40\x77\x90\x9e\x3a\x4b\x6b\xe8\xb4\x2e\x11\xf8\x7e\x7b\x02\x10\ \xac\x6f\x7e\xfb\xf6\x93\x42\xdf\x89\x0b\x5d\x26\x8f\xe5\x0b\x85\ \x4e\xeb\x12\xca\x61\x06\x9d\x6f\x99\x41\xe7\xaf\xf3\x95\xea\xab\ \xa4\x33\x0c\xee\xcf\x48\x1a\x8d\x63\xc7\x2e\xdc\xf9\xc2\xb1\x72\ \xed\x75\xa6\xd3\x7c\xaf\x71\x7c\x57\x7b\x7d\x95\x6f\x58\x7c\x66\ \x1b\xde\x3f\x56\x9e\x7a\x85\x3e\xfe\xd2\x90\xb6\xfd\x46\x91\x85\ \x2f\x9f\xdf\x7e\x92\xa9\xf3\x3f\xa0\xdb\xaf\x50\xa9\x7f\x52\x5f\ \x0d\x40\xcb\xb7\x71\x4b\x63\x8d\x39\xe6\xff\x47\xb1\x52\xfb\x9a\ \xf6\x4b\x39\x0a\x95\xea\xe7\x0b\x13\xb5\xdf\x96\x2b\x13\x2e\xbe\ \x24\xd0\xf2\x25\x41\x5f\x6f\xf9\x20\x7c\x67\xde\x4b\xbe\xd0\x04\ \x40\x77\x90\x60\x63\x0f\x85\x76\x78\xf6\xc9\x04\x40\xd7\xf7\xa5\ \xc5\xf2\x99\xa1\xef\x45\x85\x2e\x93\xe7\xf2\xf9\xf2\x15\x4b\xb5\ \xfb\xf2\xa5\xda\x5f\x6e\x2a\xef\xdc\xb2\x76\xdb\xb6\xa7\x05\xeb\ \x8b\x22\xdb\x6b\xed\xda\xb5\x4f\x1b\x9b\xd8\x5e\x28\x96\xea\xd7\ \x2c\x4d\x06\x74\xde\x2e\xa1\xeb\xe8\xa9\xbe\xd6\xd0\x69\x5d\x42\ \x3b\x3c\xf9\xcc\x40\x74\x30\x3f\x51\x7f\x3e\xda\xde\x6c\x74\xd3\ \x7e\x6d\x64\xe1\x1b\x9b\xdc\x71\x96\x19\xc8\x6f\x4f\xbb\xfd\xcc\ \xe0\x7d\xbd\x51\x1d\xd3\xf6\xb9\x96\xef\x9c\x73\xc6\x9f\x5e\x28\ \x55\x7f\xb7\xf5\x3a\x6f\x8b\x57\xef\xd3\x62\xb9\x7a\x67\x7e\xa2\ \x3a\xa9\x3d\x08\x48\xf9\x5c\xa0\xaf\xb7\x7c\x10\xbe\x33\xef\x35\ \x5f\xc7\x04\x40\x77\x90\x29\x1b\xfb\x72\xfa\xe4\x1e\x00\x5d\xa7\ \x0d\x13\x8d\x75\xa1\xef\xda\xc2\xe2\xf3\x5d\xbe\x6e\x7d\xa6\xe3\ \xbb\xab\x38\x59\x7f\xd3\xf9\x13\x13\xa7\xa4\xd9\xbf\x9a\x88\xe3\ \xe5\x98\x42\xb9\xfa\x1f\x4d\x5e\x37\x85\xca\x10\x17\xba\x8e\x40\ \x7d\x0b\x95\xda\x17\xcc\x80\x72\x9b\x2f\x9f\x35\xb4\xc3\x83\xcf\ \xb4\x97\x6f\xe7\xcb\x3b\x2f\x31\xdb\xed\xb8\x0c\xf7\x47\x6a\xb2\ \xf0\x8d\x97\x6a\x2f\x2a\x94\x6a\xdf\xe8\x76\xfb\xc9\x4f\x25\x48\ \xf9\xf2\xdb\xb7\x3f\xd7\x6c\xef\xcf\x6a\xcf\x52\xe8\x7d\xba\x18\ \xf2\xb3\x4c\xbe\x5c\xbd\x44\xfb\x5c\x40\xca\xe7\x02\x7d\xbd\xe7\ \xd3\x9f\x45\x92\x45\xe6\xbd\xe6\x5b\x9a\x00\x58\x1a\x52\x37\x8d\ \x3d\xe4\xc8\xc8\xa7\x17\x02\x12\x36\x6e\xd9\x71\x7e\xe8\xfb\x3a\ \x2c\xae\x2c\xca\x97\xd6\x67\x3a\xb1\x7b\xcd\xa0\xbc\x77\x6c\x6c\ \xec\x84\x6e\xf6\x6f\x10\x97\xe3\xe5\x82\x2d\x3b\x7e\x45\x6e\xe2\ \x32\xf1\x98\x2e\x53\x47\xe8\x3a\xa6\xa8\xaf\xe9\xa4\xa7\xe5\x67\ \x09\x33\x19\x78\x4b\xb1\x54\xbb\x23\xe4\x01\x7d\x1d\xa1\x1d\x5d\ \xfa\xe4\xb1\xd2\x7c\xa9\x7e\xf9\x86\x0d\xdb\x9e\x15\xb7\xfd\x10\ \x5c\xf6\x07\x42\x16\xbe\xfc\xc4\xd4\x56\xf9\xa9\xa3\xdb\xed\x27\ \xdf\x2b\x94\xea\xb7\xb8\x96\xef\xc2\x72\x6d\xbd\x39\x06\xa3\x9f\ \xe4\xd1\xfb\x54\x95\xcf\x7c\xf7\xf1\x42\xa9\xfa\x7a\xed\x8d\x23\ \x8b\xed\x47\x5f\x7a\xb2\xf2\xe9\xcf\xad\x64\x95\x79\xaf\xf9\x5a\ \x13\x00\xdd\x80\x3c\x34\xf6\xc8\xd0\x69\x5d\x42\x3b\x02\x61\x9b\ \x00\xc8\x65\xf2\x90\xc3\xd1\x17\x4a\xeb\x12\xda\xd1\x85\x4f\x06\ \x5e\x33\xf0\xbf\xab\x50\xa9\x8c\xfa\xd8\xbf\x6d\xd0\xe3\x65\xd3\ \xf8\xf6\x5f\x32\x67\xe8\xd7\xe9\xf2\xb5\x42\xd7\x31\x65\x7d\xa5\ \xae\xf2\x1b\xba\xe4\x27\xe5\x29\x4e\xd6\x5f\x20\x67\xd7\xc5\x72\ \xf5\xfd\x26\xbe\x89\xfa\x96\x42\x97\x29\x7d\xf9\xee\x32\xed\xe3\ \x9a\x4d\x13\x3b\x36\x06\xb7\x9d\xcb\xf6\x4b\x02\xdd\x1f\x49\x64\ \xe1\x2b\x94\x76\xbc\xde\x0c\xfe\x0f\xa7\xdd\x7e\x4b\x51\x69\xad\ \x8e\xf8\x9d\x62\xb9\xfc\x1c\x97\xf2\x8d\x4d\xee\xbc\xc0\x6c\xf7\ \xfb\x42\x9e\x80\x2f\x32\x02\xe9\xe4\x67\x83\xb1\x0b\x1b\xe7\x6a\ \xbf\x8d\x2c\xb6\x1f\x7d\xe9\xc9\xd2\xa7\xff\x16\x22\xcb\xcc\x7b\ \xcd\xb7\xf4\x3a\x60\x5b\xe8\x86\xe7\x12\xda\x91\xb1\xcf\x36\x01\ \x28\x4c\xee\xac\x86\x3c\x8e\x3e\x38\xb4\xa3\x0b\x9f\x39\xcb\xbc\ \x53\x3a\x3f\xd9\x9f\x72\x6f\x83\xe9\x7c\x5f\x67\xf6\xcf\xdb\xe5\ \xee\x7e\x39\x43\x36\x9d\xe2\x0f\xe5\xce\x6a\x19\x38\x4d\x3c\x6c\ \xe2\x1e\xf3\x9d\x7f\x2b\x94\xeb\x9f\x31\x7f\xfb\xdf\xf9\x52\xad\ \x39\x36\x51\x2d\xc8\xef\xfb\xc1\xed\xd1\xcd\xf1\x52\x28\xed\xdc\ \x6c\x26\x02\xf3\x59\xd4\xb7\x55\x67\x33\xc0\x8c\x95\xa6\xa6\x6c\ \xe5\xdb\xb4\xe5\xa2\xb3\xc7\x26\xa7\x5e\x26\x2f\xd6\x31\xf5\x7b\ \x9f\xa9\xef\xed\xa6\xbe\x3f\xd1\x8e\x8e\xd0\x65\x72\x28\x9f\xf1\ \x3e\x64\xe2\xeb\x85\x4a\xed\x46\x13\x7f\x28\x77\x97\xcb\xe5\xe7\ \xf6\x36\xe8\x66\xfb\xd9\xe8\x75\x9f\x38\xe4\x86\x3b\xd7\xed\x17\ \x1b\x95\xd6\x25\xf9\x1f\x17\x2a\x3b\xce\x77\x29\xdf\xa6\xf2\x54\ \xd1\xec\x8b\x07\x42\x9e\x80\x2f\x32\x74\xda\xad\xf2\xb3\x43\xfd\ \x03\x3a\x0f\x8d\xef\xed\x47\x5f\x6f\xfb\xf4\xdf\x3b\xd0\x89\x7d\ \x67\xde\x6b\xbe\xc8\x09\x80\xa5\x31\x25\x86\x76\x2c\x83\xcf\x36\ \x01\x90\xb3\xca\x90\xcb\xd1\x07\x85\x76\x74\xe1\x93\x01\x4e\x9e\ \x9d\x36\x67\xff\x1f\x30\x1d\xe6\xdd\xdd\xf8\xe4\xaa\x4e\xeb\xf1\ \xbf\x72\x75\x6f\x7e\x62\xfb\x73\xbb\x3d\x5e\x1a\x8d\xc6\x53\xe4\ \x72\xbd\xac\x74\x17\x2a\x57\x8a\xf2\x2d\xc5\xe2\x77\x4d\x7d\x7f\ \x2a\x13\x0d\xc7\xf2\x1d\x25\x8f\x7d\x6d\x98\x98\x3a\x4f\xae\xf4\ \x14\xca\x53\xbf\x5e\x98\xac\x5d\x66\x1c\x57\x99\x81\xe3\xcf\x37\ \x97\xaa\xef\x96\x30\x75\xff\xdb\xcd\x66\x5b\xca\x7f\x9b\xbf\xbd\ \xd3\x0c\xec\x7f\x2c\x3f\x35\x98\x98\x19\x2b\xd7\x7f\x53\x26\x1d\ \xf2\x53\xd1\xfa\x42\x65\x54\x9c\x3a\x93\x36\xbe\xdb\x5b\xaf\xfb\ \xe4\x15\xc6\x9b\x4b\xb5\xff\xdf\xd7\xfe\x35\xdb\xfe\x51\x99\x90\ \xbb\x94\x4f\x6e\xde\x33\xfb\xf0\xa7\x21\x4f\xc0\x17\x19\x3a\xed\ \xd6\xd6\xc4\xee\x5b\x49\x4f\xc9\xf8\xde\x7e\xf4\xf5\xb1\x0f\x4a\ \xec\x40\x3f\xf8\xac\x13\x00\x4b\x63\x4a\x0c\xed\x58\x26\x9f\x75\ \x02\x50\xaa\xfe\x56\x5a\x9f\x73\x68\x47\x17\xbe\xd6\x99\x7d\x76\ \x83\xeb\x63\x85\x52\x7d\xbf\x3c\xfe\x37\x36\x36\x75\x82\xde\x56\ \x08\xe3\x5b\x6b\xe7\x98\x72\xfe\xbd\xcf\xf2\x05\xca\x79\xef\xc6\ \xc9\x6d\x2f\xd6\x79\x22\x64\xd1\x3e\x86\xc9\x67\x26\x55\x23\xf2\ \x3b\xbd\xde\x37\xa1\x7d\xe7\x12\x8b\xdf\x95\x89\xa3\x4b\xf9\x0a\ \x93\x53\xdb\xe5\x92\x7d\xc8\xa3\x7c\xd6\xd0\x69\xb7\xb6\x06\xff\ \xef\x6e\x1c\x6f\xac\xd5\xf9\x04\xf1\xbd\xfd\xe8\xeb\x63\x1f\x94\ \xd8\x81\x7e\xf1\x85\x26\x00\x96\xc6\x94\x18\xba\x41\x2e\xa3\xcf\ \x36\x01\xc8\x97\x6a\x57\xa4\xf5\x39\x85\x76\xf4\x89\xcf\x0c\xb2\ \x3f\x90\x4b\xdc\x1b\x36\x4c\x8c\xe8\x6d\x96\x44\xf0\xf8\x93\x33\ \xba\x2c\xde\xb5\x20\xbf\xb9\x07\x2f\xbd\x23\x64\xd5\x3e\x86\xc5\ \x97\x9f\xb8\xe8\xf9\x85\x4a\xf5\xcb\x7a\x9f\x84\xf6\x9d\x4b\xb4\ \xf7\x67\xa9\xf6\x76\x97\xf2\xc9\xcf\x3c\xf2\x33\x4c\xc8\xa3\x7c\ \xd6\xd0\x69\xb7\xb6\x06\xff\xbb\x37\x8e\xef\xfc\x45\x9d\x4f\x10\ \xdf\xdb\x8f\xbe\x3e\xf6\x41\x89\x1d\xe8\x27\x5f\xc7\x04\xc0\xd2\ \x98\x12\x43\x37\xc8\x84\xc6\x99\x18\xda\x91\xe0\xb3\x4d\x00\xe4\ \x72\x70\x5a\x5f\x62\x68\x47\x1f\xfa\x5a\x3f\x11\x54\x6a\x6f\x5f\ \xbc\xfc\x9d\x88\xed\xf8\x5b\xb7\x6e\xfc\x78\x59\x6d\x30\x94\x7f\ \x52\xe8\x32\xa9\xf2\x15\x2a\xf5\xff\xf3\xd2\xf1\x46\x4e\x97\x21\ \x0e\x5b\xf9\x74\x1a\x84\x61\xf3\x8d\x4d\xee\xc8\x9b\x63\xe2\xdf\ \x6d\xfb\x03\x8e\xc5\xef\x16\x4b\xd5\x8f\xba\xbc\x15\xd1\x4c\xd6\ \x2f\x2e\xea\x55\x2a\x2d\x3e\x6b\xe8\xb4\x5b\x5b\x83\xff\x3d\xf2\ \x64\x89\xce\x27\x88\xef\xed\x47\x5f\x1f\xfb\xa0\xc4\x0e\xf4\x9b\ \x6f\x69\x02\x60\x69\x4c\x89\xa1\x1b\x64\x42\xe3\x4c\x0c\xed\x70\ \xf0\x59\x27\x00\x95\xda\x1f\xa5\xf5\xc5\x86\x76\xf4\xb9\x4f\x7e\ \x6f\x95\xc9\x92\x2c\xb6\xa2\xb7\x61\x1b\x7d\xbc\xe8\xe3\xaf\x30\ \x59\xad\xc8\xe5\x56\xed\xb6\x86\x2e\x53\x44\xf9\xcc\x60\x74\x87\ \xac\xe6\x18\xcc\x27\x8a\xa4\xf2\xa1\x0c\x9b\xaf\xb5\xfe\x43\xb9\ \xf6\xd3\xb8\xfd\xe1\x1c\x8b\xdf\x95\x05\x83\x64\xd5\xc0\xa4\xf2\ \xc9\xbd\x3a\x5e\x07\xff\x72\xfd\x3e\x79\x7c\x50\xe7\x13\xc4\xf7\ \xf6\xa3\xaf\x8f\x7d\x50\x62\x07\xfa\xd1\xd7\x9a\x00\x58\x1a\x53\ \x62\xe8\x06\x99\xd0\x38\x13\x43\x3b\x1c\x7d\xd6\x09\x40\xb9\xfe\ \xbf\x43\x0e\x47\x5f\x64\x68\xc7\x00\xf9\xe4\xe9\x03\xb9\xf3\x5d\ \x6f\x47\xdb\xf1\xa2\xd3\x08\x2f\x1a\x1f\x7f\xb6\x71\xbc\x5f\x7b\ \xbb\x29\x9f\xd9\x87\x87\xce\x3b\xaf\xfc\x4c\x9d\x57\x10\xd7\xf2\ \xb9\x32\x6c\x3e\x59\xd7\x40\xee\x11\x71\xd9\x1f\x89\xb1\xf8\x5d\ \x59\x30\xa8\x58\xae\x9e\x99\x54\xbe\xd6\xfb\x04\xe2\xd6\x9a\xd0\ \x65\x4a\x28\x9f\x71\xdd\xbf\x69\x62\xe7\x4b\x75\x3e\x41\x7c\x6f\ \x3f\xfa\xfa\xd8\x07\x25\x76\xa0\x5f\x7d\xad\x75\x00\x2c\x0d\x2a\ \x36\x74\x83\x4c\x68\x9c\x89\xa1\x1d\x80\x2f\x62\x02\xf0\xbe\x90\ \xc7\xd1\x67\x0d\xed\x18\x50\x9f\x19\x0c\x3e\x7e\xfe\xc4\x45\xcf\ \x97\x6d\x18\x75\xbc\xc4\x21\xef\x26\x28\x54\x6a\x3f\xd2\xde\x50\ \x99\x1c\xcb\x27\xeb\x10\xac\x5a\x5c\x3e\x56\x93\xa6\x7c\x71\x0c\ \x99\xef\x29\xc5\x52\xf5\xff\x0d\xed\x8b\x84\xfd\x11\x19\x8b\xdf\ \x35\xc7\xcf\xfd\xb2\x6a\x60\x52\xf9\xe4\xe9\x14\x33\x60\x3f\x1e\ \xf2\x28\x9f\x35\x74\xda\xad\xad\x55\x25\x7f\x94\x2f\x57\x37\xe8\ \x7c\x82\x78\xde\x7e\xf4\xf5\xb3\x0f\x4a\xec\x40\x3f\xfb\xe0\x09\ \x80\x6e\x90\x09\x8d\x33\x31\xb4\x03\xf4\xd9\x27\x00\xb5\x7f\x0c\ \xb9\x1c\x7d\xa1\xd0\x8e\x01\xf7\x15\x65\xe1\x97\xd2\xd4\x5b\x36\ \x6e\xdc\xf8\x0c\xdb\xf1\x92\x84\x3c\xbb\x5f\x28\xd7\xf7\xfb\x2a\ \x9f\x4c\xe6\x8c\xf6\xe8\x60\x1e\x71\xc7\x73\x1a\x86\xc9\x27\x57\ \x55\x36\x97\x6b\xd7\x85\xf6\x85\xe3\xfe\x08\xc5\xe2\x77\xe5\xb8\ \x19\xdb\xb2\x73\x5b\x52\xf9\xcc\x24\xf1\xca\x90\xc3\xe2\xb3\x86\ \x4e\xbb\x75\xe1\x67\x2c\x59\x3b\x40\xe7\x13\xc4\xe7\xf6\x13\xe8\ \xeb\x73\x1f\x94\x38\x01\x38\xf3\x04\x96\xdb\x07\x4d\x00\x74\x83\ \x4c\x68\x9c\x89\xa1\x1d\x29\x7c\x7a\x02\x20\xf5\x33\x75\xba\x29\ \xad\xaf\x23\xb4\x63\x88\x7c\x85\x52\xed\xf0\x58\xa5\xf2\x42\x7d\ \xbc\x38\x72\x4c\xeb\xb9\xfc\x72\xed\xd1\x50\xb9\x52\x94\xcf\x74\ \xf2\x7f\xde\x16\x27\x1d\xcf\x28\xc3\xe4\x93\x9b\x3e\x43\x2f\xf4\ \x49\xb1\x3f\x96\x22\xf0\xfd\x62\xa9\x7a\x69\x52\xf9\xb2\x18\xfc\ \xc7\x26\xa6\x2e\xd4\xf9\x04\xf1\xb9\xfd\x04\xfa\x06\xc0\x07\x25\ \x8e\x21\x55\xe6\x31\xac\x84\xcf\x79\x02\xa0\x1b\x64\x42\xe3\x4c\ \x0c\xed\x48\xe9\x0b\x4e\x00\xda\xf5\xdd\x5c\xaa\xcd\xa5\xf5\x2d\ \x85\x2e\xd3\x10\xfa\xe4\xfe\x10\xe9\xb4\x57\xa9\x33\x70\x57\x4c\ \xe7\x5c\x92\x25\x60\xb5\x37\x94\xb7\x43\xc8\x6a\x80\x2e\xc7\x33\ \xc2\x30\xf9\x64\x69\xe7\xa5\xe5\x95\x75\x58\xb6\x77\x62\x04\x8f\ \x93\x72\xf5\x0f\x92\xca\x67\xd2\xfc\x5e\xc8\x11\xe1\x0b\x85\x4e\ \xbb\xb5\x35\xf8\x3f\x38\x56\xde\xb9\x4d\xe7\x13\xc4\xe7\xf6\x13\ \xe8\x1b\x10\x1f\x94\x38\x82\xd4\x99\x47\xb0\x52\x3e\xa7\x09\x80\ \x6e\x90\x09\x8d\x33\x31\xb4\xa3\x0b\x5f\x7b\x02\x10\xac\xaf\x19\ \xb8\xbe\x98\xd6\xd7\x0a\x5d\xa6\x2e\xca\x37\x08\x3e\x79\x95\xab\ \xac\xbe\xa7\x8f\x9d\x38\xda\xfb\x63\xac\x34\xb5\xda\x9c\x75\x7e\ \xac\xdb\xf2\x15\xcb\xb5\xc7\x0b\xe5\xa9\xdd\x49\xc7\xb3\x2b\xae\ \xed\xc3\x95\x5e\xf6\xb5\x26\x62\x51\x0b\x4d\xe9\x6d\xed\x12\x81\ \xef\x9b\xb6\xf6\x77\xb2\xf4\x74\x4c\xf9\x8e\x92\x2b\x38\x21\x47\ \x84\x2f\x14\x3a\xed\xd6\x85\xc1\x5f\x5e\x52\xa4\x33\x12\xce\x3f\ \x7f\xe2\x14\xb9\xc1\x70\x73\xb9\xfe\x41\xe9\x07\x4c\x7c\xd5\xa4\ \x9f\xdd\x5c\xae\xbe\x4b\xb6\xc3\xaa\x98\x55\x1f\xe3\xf0\xb9\x3f\ \x04\xfa\x56\xd0\x07\x25\xb6\xd0\x55\xe6\x16\x56\xd2\x97\x38\x01\ \xd0\x0d\x32\xa1\x71\x26\x86\x76\x74\xe9\x93\x09\x80\xae\xaf\x19\ \x2c\xbe\x95\xd6\x17\x2a\x53\x97\xe5\x0b\x39\xfa\xd4\x27\xcf\x57\ \x47\x75\xba\x1a\xbd\x3f\x24\x5a\xcb\xf5\xc6\xad\xf4\x16\x15\x81\ \xf2\xc8\x4f\x0a\xb2\xf4\x6f\xdc\xf1\xec\x82\x2e\xdf\x20\xfb\x64\ \x05\xc8\xd6\x7d\x1d\x7a\xdf\x7a\x38\x5e\x0a\xe5\xea\x01\x79\x3b\ \x62\x4c\xf9\x8e\x36\x83\xf1\x5f\x86\x1c\x11\xbe\x50\xe8\xb4\x5b\ \x5b\xc7\xe1\x43\xf9\x89\x9d\x3b\x74\x46\xe7\x8e\x8d\x9d\x90\x2f\ \x57\xff\xc0\xfa\x48\x63\xc0\x67\xbe\x7f\x24\x69\x9d\x00\x8d\xcf\ \xfd\x21\xd0\xd7\x5b\x3e\x08\xdf\x99\xaf\xb4\x2f\x76\x02\xa0\x1b\ \x50\x42\xe3\x4c\x0c\xed\xf0\xe0\xbb\xa0\xb8\xfd\x05\xba\xbe\xa6\ \x13\xb8\x37\x94\xd6\x25\x74\x99\x3c\x94\x2f\x32\x74\x5a\x97\xd0\ \x8e\x65\xf6\xc9\x9d\xdb\xb2\x92\xe0\xfa\xf5\xbb\x22\x8f\xa9\xb8\ \xe3\xaf\x75\x19\xba\x52\xff\x9c\xf6\x46\x86\x2e\x53\xa5\x35\x09\ \x78\x50\xd6\x8c\x0f\xe6\x89\x10\x57\xbe\x34\xf4\xb0\xef\xa8\x42\ \xa5\xfe\xfb\x7a\xfb\xc5\xed\xdf\xc4\xe8\xd8\x0f\xd5\x3b\xe5\x8d\ \x95\x31\xe5\x3b\xa6\x50\xae\xbd\x37\xe4\x88\xf0\x85\x42\xa7\xdd\ \xda\x3a\xfe\x1e\xce\x97\xaa\x75\x9d\x91\xbc\xd3\x41\x16\x90\x0a\ \x39\x22\x7c\xf2\xd4\x80\xbc\xe1\x51\x7b\x6c\x78\xdc\x1f\x2d\xe8\ \xeb\x2d\x1f\x84\xef\xcc\x7b\xc1\x17\x39\x01\xd0\x0d\x28\xa2\x31\ \x39\x87\x76\x78\xf2\xc9\x5b\xf3\x74\x7d\xa5\xa3\x08\xa5\x4f\x0a\ \x5d\x26\x4f\xe5\xb3\x86\x4e\xeb\x12\xda\xb1\x82\x3e\x79\x46\x5f\ \xee\xf6\xd7\xc7\x92\xcb\xf1\x77\x46\xa3\xf1\x0c\xb9\x24\x2c\x93\ \x09\xed\x75\x2d\x9f\xf9\xee\x8f\xa5\xd3\xd7\xee\x24\x5c\xca\x87\ \xd0\xab\x3e\xb9\x24\x6f\x06\xb9\xf0\x0b\x7d\x1c\xf7\xaf\x35\x82\ \xdb\xbf\x5c\xfb\x41\xdc\x0d\xa2\x32\x41\x2c\x94\xeb\x1f\x0c\x39\ \x22\x7c\xa1\xd0\x69\xb7\xb6\x06\xff\x47\xc7\x26\x6b\xbf\xa6\xf3\ \x92\xab\x01\xad\x3e\x4c\x3b\x92\x7d\x77\xc9\xfa\x15\xda\x17\xc4\ \xd7\xfe\x68\x43\x5f\x6f\xf9\x20\x7c\x67\xde\x2b\x3e\xeb\x04\x40\ \x37\xa0\x84\xc6\x94\x18\xda\xe1\xd1\xd7\x9e\x00\xb4\xeb\x2b\xab\ \xda\x85\xd2\x27\x85\x2e\x93\xc7\xf2\x85\x42\xa7\x75\x09\xed\xe8\ \x01\x9f\xe9\x40\xef\x0d\x9e\x8d\xa1\xc7\x5f\xab\xe3\xae\xd4\xbf\ \xa7\xbd\xae\xe5\x33\xdf\xfd\xfe\x05\x93\xdb\x5f\xa0\xbd\x51\xa0\ \xe5\x4b\xa2\x57\x7d\xf2\x1b\x78\xb1\x52\xbd\x35\xb4\xdd\xc0\xfd\ \x1b\xb5\x3f\xe4\x0a\x8c\xdc\x79\x1f\x55\x3e\x99\x7c\xb4\x1e\xc3\ \xd5\x8e\x08\x5f\x28\x74\xda\xad\x8b\x83\x7f\x79\xea\x15\x3a\xaf\ \xc5\x65\x84\xed\x3f\x6f\xc4\xf8\xda\xb1\x78\x83\xab\x15\x5f\xfb\ \xa3\x0d\x7d\xbd\xe5\x83\xf0\x9d\x79\x2f\xf9\x42\x13\x00\xdd\x80\ \x1c\x1b\x53\x64\x68\x87\x67\x9f\x4c\x00\x82\xf5\x5d\x3f\x3e\x7e\ \x6a\xe8\x3b\x71\xa1\xcb\xe4\xb9\x7c\x83\xec\x6b\xfd\x24\x30\x59\ \xff\x93\xf5\xeb\x77\x1e\x97\xe6\xf8\x6b\x0d\x56\xe5\xda\xdf\xa6\ \x2d\x9f\xc9\xff\x5b\xeb\x27\x1b\x67\x69\xaf\xa6\x9b\xf6\x61\xa3\ \x57\x7d\x9b\xb6\x6c\x7b\x5e\xb1\x54\xfb\x4a\x68\xbb\x45\x6c\x3f\ \xa7\x08\x7c\x5f\x6e\xc4\xcc\x4f\x56\x5f\x15\x55\x3e\xf3\xf9\x71\ \x72\xc3\x68\xc8\x11\xe1\x0b\x85\x4e\xbb\xb5\xb5\x8f\x1f\x2b\x94\ \x6a\xaf\xd6\x79\x99\x7c\x76\xcb\xdf\x42\x8e\x04\x5f\x30\xa4\xac\ \xda\x2b\xf8\xda\x1f\x6d\xe8\xeb\x2d\x1f\x84\xef\xcc\x7b\xcd\xd7\ \x31\x01\xd0\x0d\x08\x68\x4c\xd6\xd0\x8e\x0c\x7c\x72\x0f\x40\xb0\ \x3e\x17\x8c\x6f\x3d\x27\xf4\xbd\xa8\xb0\xf8\x7c\x97\x6f\x18\x7c\ \xb2\x66\xc0\xa6\x2d\xb5\xe7\xa5\x39\xfe\x84\xb1\x72\xf5\x3f\x99\ \xce\xfc\x07\xa1\x32\x39\x94\xcf\x7c\xef\x4b\x32\xe9\xd3\xce\x36\ \xdd\xb6\x0f\x4d\xaf\xfa\xe4\x37\x6d\x33\x40\xdf\x13\xda\x6e\x09\ \xdb\x2f\x36\x94\xa3\x38\x59\xfb\x9d\xa8\xf2\xad\x5b\xd7\x38\xbe\ \x50\xa9\xdd\x1c\x72\xc4\xf8\x92\xca\x27\x13\x4c\xb9\xa3\x5f\xe7\ \x65\x06\xee\xff\x9a\xc6\xa7\xc3\x94\xf7\x06\xed\xf6\xb5\x3f\xda\ \xd0\xd7\x7b\x3e\xfd\x59\x24\x59\x64\xde\x6b\xbe\xa5\x09\x80\x6e\ \x40\x60\x63\x0a\x85\x76\x64\xe4\xd3\x0b\x01\xc9\x8d\x66\xa1\xef\ \xda\xc2\xe2\xca\xa2\x7c\xc3\xe2\x33\x83\xcf\x0f\x0b\x13\x3b\x6b\ \xc1\x7d\x81\xf0\xd2\xf1\x8b\x72\x1d\x8f\x0b\x02\xe5\x33\x03\xc5\ \xac\xdc\x05\xae\x9d\x3e\xda\x47\x90\x5e\xf5\xc9\x7b\x1c\x8a\xe5\ \xea\xcf\x43\xdb\xcd\x71\xfb\x59\x23\xb4\x7f\xab\x7f\x13\x55\xbe\ \xc9\xc9\xc6\x89\xc5\x4a\xed\x40\xc8\x11\xe3\x4b\x2a\x5f\x6b\xf0\ \x2f\x55\x2f\x55\x59\x1d\x55\x28\xd7\xff\x67\x1a\x9f\x0e\xf9\x09\ \x4b\x5e\x64\x15\x94\xfb\xda\x1f\x6d\xe8\xeb\x4d\x9f\xfe\xdc\x4a\ \x56\x99\xf7\x9a\x2f\xcd\x0d\x34\x89\xa1\x1d\x19\xfa\x42\x13\x00\ \x73\x26\x14\xfa\xbe\x0e\x8b\x27\xab\xf2\x85\xd2\xba\x84\x76\xf4\ \x89\xaf\xf5\xac\x7e\xc2\x53\x02\x51\xb4\x8f\xe7\xfc\x64\xf5\xe5\ \x1d\x8b\x07\xe9\xbc\x23\xc2\xe4\x7b\xa3\xfc\xfe\xac\x7d\xdd\xb6\ \x8f\x36\xbd\xea\x33\x03\xe2\x7f\x29\xda\x5e\xe8\x03\x6e\xbf\x8e\ \x08\xed\xd7\xfa\x4d\xe7\x95\xed\x2f\x66\x7a\xe1\xc6\xc6\xc9\x26\ \xff\xb9\x90\x23\xc6\xe7\x52\x3e\x79\x5f\x40\x30\x9f\x46\xa3\xf1\ \x14\x33\x41\x7c\x77\x5a\x5f\x87\xbb\x52\x9f\x3f\xbf\xd8\x78\x4e\ \xd0\xef\x6b\x7f\xb4\xa1\xaf\x77\x7d\xfa\x6f\x21\xb2\xcc\xbc\xd7\ \x7c\x4b\xaf\x03\xb6\x85\xa5\xf1\x24\x86\x76\x64\xec\xd3\x13\x00\ \x59\xec\x23\xe4\x00\x7c\x70\x68\x07\x7d\x32\x11\x98\xdb\x38\xde\ \x58\x1b\xdc\x2f\x71\x84\x8e\xe7\xc9\xc9\x13\x8b\xb2\x94\x70\xa5\ \xfe\x50\x28\xff\x98\x30\x1d\xfb\x3f\x18\xdd\x31\x21\x5f\x17\xed\ \x43\xe8\x45\x9f\x0c\x88\x45\x59\x60\x47\xef\x03\xcb\xfe\x80\x42\ \x3b\xca\xf5\x2f\x6d\x2a\x97\x4f\xd7\xf9\x0b\xe7\x6d\x2a\x9f\x6e\ \xb6\xf9\xbf\x84\x1c\x71\x3e\x87\xf2\xc9\xaa\x8f\x1d\x19\x35\x1a\ \xc7\x16\x2b\xb5\xbf\x4b\xeb\xeb\x70\x57\x6a\xd7\xca\x93\x28\x41\ \xbd\x8f\xfd\x11\x84\xbe\xde\xf6\xe9\xbf\x77\xa0\x13\xfb\xce\xbc\ \xd7\x7c\x91\x13\x00\x4b\xe3\x49\x0c\xed\x58\x06\x5f\x68\x02\x30\ \x39\xf5\xb2\x90\x07\xf0\x41\xa1\x1d\xf4\x2d\x85\x3c\x6b\x6d\xbb\ \x73\x5b\x13\x77\x3c\x8f\x5d\xd8\x38\x57\x7e\xa7\xd5\xee\xc8\x90\ \x72\x94\xaa\xd7\xca\x95\x00\x9b\x2f\x0d\x71\xe5\x4b\x83\x0f\xdf\ \xc2\xef\xed\x75\xfb\x0b\x7d\x22\xf6\x87\x53\x28\x87\xe9\x1b\xbe\ \xbf\x71\x7c\xe7\x2f\xea\xfc\x85\x97\x8e\x37\x72\xc5\xa4\x35\x1d\ \x74\x99\x1c\xca\x57\x28\xd5\xfe\x9f\x60\x3e\xeb\xe5\xc6\xc2\x4a\ \xfd\x93\x69\x7d\xed\x30\x65\xfd\xb1\x5c\x5d\x0a\xba\x17\xfd\x5d\ \xef\x8f\x20\xf4\xf5\xb1\x0f\x4a\xec\x40\x3f\xf8\xac\x13\x00\x4b\ \x03\x4a\x0c\xed\x58\x26\x9f\x9e\x00\xe4\x4b\xb5\x57\x86\x5c\x80\ \xcf\x39\xb4\x83\x3e\x6b\xc8\x4a\x70\xf2\x06\xba\xe0\x3e\x6a\xe3\ \x78\x3c\x1f\x25\x13\x09\xd3\x81\x7f\x5d\xbb\xa3\xca\x57\xa8\x4c\ \xfd\x61\x8c\xcf\x19\xc7\xf2\x39\xe3\xc3\xb7\x71\x4b\x63\x4d\xb1\ \x5c\xff\x6c\x68\x1f\x38\xee\x8f\xc8\x50\x0e\xe9\x17\x0a\xa5\xa9\ \x31\x9d\xbf\x20\x4f\x5e\x98\x33\xf2\x3b\x43\x8e\x18\x9f\x4b\xf9\ \xcc\xb1\xf2\xd6\x60\x3e\xf2\x9c\xfe\xd2\xbd\x05\xda\xe1\xe0\x6b\ \x87\x99\x44\x7e\xc1\xf6\xc8\xa8\x8f\xfd\x11\x84\xbe\x3e\xf6\x41\ \x89\x1d\xe8\x17\x5f\x68\x02\x60\x69\x40\x89\xa1\x1b\xe4\x32\xfa\ \x42\x13\x80\x72\xf5\x12\x9d\x26\xe4\x88\xf1\x39\x85\x76\xd0\x17\ \x1b\x66\xc0\xfa\xe2\x85\xe5\xda\xfa\xe0\x7e\x82\x8f\xe7\x46\xe3\ \xd8\x42\xb9\xb6\xc7\x4c\x04\xfe\x5d\xfb\x43\x65\xaa\xc8\x32\xb5\ \xf5\xff\xa2\x15\x08\x70\xf9\x12\xf0\xe1\xcb\x5f\xb8\xe3\x97\x4d\ \xfd\xbf\xad\xeb\x8a\xee\x8f\x50\x28\x87\xdc\x53\x90\x2f\x4d\x35\ \x74\xfe\x42\x7e\xfb\xf6\xe7\x9a\x33\xf2\x6f\x84\x1c\x31\x3e\x97\ \xf2\xc9\xbd\x23\xc1\x7c\x36\x6c\x98\x18\x59\xfa\x79\x41\x3b\x1c\ \x7c\x4b\xde\x72\xed\xbd\xb6\x09\xa8\x8f\xfd\x11\x84\xbe\x3e\xf6\ \x41\x89\x1d\xe8\x27\x5f\xc7\x04\xc0\xd2\x80\x12\x43\x37\x48\xa0\ \x71\x5a\x43\x3b\x12\x7c\xa1\x09\x80\x7e\xe5\xa8\x76\x24\xf8\x12\ \x43\x3b\xe8\x73\x0a\x33\x70\x3d\x52\x2c\xd5\xaf\x6e\xbf\x38\x26\ \xed\xf1\x2c\xdf\x97\x47\xc3\xcc\x99\xe1\x37\xe3\xca\x27\x37\x24\ \xca\x3a\xf8\xfa\xfb\x2e\x74\x53\x3e\x1b\x3e\x7c\xad\x17\xfa\x54\ \xea\xf7\xeb\x7a\xa6\xdd\x1f\x4b\xa1\x1d\x15\x59\x5b\xa3\xf6\xdb\ \x3a\x7f\x41\x7e\x92\x69\x4d\x40\xb4\x23\xc1\x97\x54\x3e\xb3\x2f\ \xdf\x1e\xcc\x47\x56\x99\x34\xf9\x7c\x25\xad\x6f\xc1\x59\x7f\x30\ \x5f\xaa\x35\x83\xde\x36\x3e\xf6\x47\x10\xfa\xfa\xd8\x07\x25\x76\ \xa0\xdf\x7c\x4b\x13\x00\x4b\x23\x4a\x0c\xdd\x20\x1d\x1b\x67\x64\ \x68\x87\x83\x4f\x4f\x00\xcc\x99\xc4\x5b\xba\xf1\xc5\x86\x76\xd0\ \x87\x45\xa5\x75\x47\xf9\xe7\xc6\x27\x77\x5e\xd0\xf5\xf1\xdc\x68\ \x1c\xdb\xfa\xb9\xa7\x5c\x3f\x14\x2a\xdb\x62\xf9\x64\xd2\x31\x56\ \x9a\x9a\xd2\x5f\x8d\x43\xb7\x8f\xd4\xe5\x5b\xc4\x87\x6f\x61\xc2\ \x53\x7f\x24\x54\x47\x0f\xfb\x43\x87\x99\x38\xbd\x53\xe7\x2f\x2c\ \xbe\xc7\xe1\xee\x90\x23\xc1\x97\x54\x3e\xb9\x91\x71\x55\xe0\x0d\ \x7d\x72\xa9\x7e\x69\x92\xa1\x1d\x0e\x3e\x09\x79\x2f\xc0\xc6\xc9\ \xa9\x17\x07\x8a\xbf\x84\x8f\xfd\x11\x84\xbe\x3e\xf6\x41\x89\x1d\ \xe8\x47\x5f\x6b\x02\x60\x69\x44\x89\xa1\x1b\xa4\x63\xe3\x8c\x0c\ \xed\x70\xf4\xe9\x09\xc0\x58\xb9\xfe\x27\xdd\xf8\x22\x43\x3b\xe8\ \xc3\x22\xf0\x7d\x33\xc8\x3c\x22\xef\x90\x8f\x7a\xb4\xcc\x95\xf6\ \xf1\xbc\x79\xeb\xce\x97\x1a\xdf\x5f\x18\xef\xdd\xba\x7c\xf2\x98\ \xeb\xa6\xf2\x54\x51\x7f\xd7\x86\xad\x7d\xe8\x34\x08\x1e\x7c\x47\ \xc9\x55\x13\xbd\xfd\x42\xa1\xb7\xb5\x4b\x68\x87\x44\xb9\xfe\x49\ \x93\xe7\x31\xba\x10\x17\x6c\xd9\xf1\x2b\x66\x50\xfe\x7e\xc8\x91\ \xe4\x4b\x28\x5f\xbe\x5c\x7f\x97\xd4\xb1\x9d\x8f\x99\xac\xbd\x64\ \x29\x1f\xed\x70\xf0\x49\x14\xca\xb5\x8f\x44\xad\xf1\xef\x61\x7f\ \x74\x40\x5f\x1f\xfb\xa0\xc4\x0e\xf4\xab\x2f\xb4\x14\xb0\x4b\xe8\ \x06\xe9\xd8\x38\x23\x43\x3b\x00\x9f\x9e\x00\xb4\x9e\x15\xd6\x0e\ \xc0\x67\x0d\xed\xa0\x0f\x0b\xed\x58\x8c\x42\xa5\xfa\xf9\xfc\x64\ \x6d\x3c\xb8\xff\x5c\x89\x38\x9e\x9f\x22\x6f\x0a\x34\x83\xc0\x3b\ \x82\x37\xa9\xc9\xa5\xf3\x4d\xa5\x8b\x5e\xa4\x1d\x41\x22\x7c\xa9\ \x49\xeb\x93\xc7\xfb\x36\x4e\x5e\xf4\x1f\x16\x5e\xe3\x5b\xff\x44\ \xdc\xf6\xf3\xb9\x3f\x4c\xbb\xf9\x57\xdb\x62\x4a\x63\x93\x3b\x2f\ \x30\xe5\xb8\x2f\xe4\x48\xf0\x25\x95\xaf\x50\xa9\xbd\xc7\xe8\x8f\ \x6e\xe7\x23\xc7\x81\xd9\x4f\x0f\xa4\xf5\x15\x5b\x6f\x0a\xac\x5f\ \xbe\x2a\x30\xa1\x08\x92\x76\x7f\x44\x41\x5f\x1f\xfb\xa0\xc4\x0e\ \xf4\xb3\x0f\x9e\x00\xe8\x06\xe9\xd0\x38\x63\x43\x3b\x40\x5f\x68\ \x02\x50\xaa\x7f\x20\xe4\x01\x7c\xa1\xd0\x0e\xfa\xb0\xd0\x0e\x8b\ \x4f\xde\x5c\x27\x77\xb7\x07\xf7\x63\x1c\x71\xc7\x73\x10\x59\x16\ \x5a\xd6\x91\x37\x13\x82\x3f\x35\x79\x7c\x68\x7d\xa1\x32\xaa\xd3\ \x08\xae\x3e\x57\x10\x9f\xfc\xde\x2d\x6f\xb9\x33\x13\x96\x3f\x32\ \x6d\xf1\x16\xf3\xef\x4f\xd0\xed\x07\x85\x76\x54\xe4\x8e\xff\xea\ \x77\x36\x8c\x6f\x3b\x23\x54\xb6\xf2\x54\x71\x69\x50\x8e\x0a\x8b\ \x2f\xa9\x7c\xa6\x9e\xef\x93\x89\x4e\x3b\x9f\x7c\xb9\xba\xd3\xe4\ \xf3\xf3\xd4\xbe\x4a\xfd\xdb\x51\x4f\x2c\x08\xc8\xfe\x70\x81\xbe\ \x3e\xf7\x41\x89\x13\x80\x33\x4f\x60\xb9\x7d\xd0\x04\x40\x37\x48\ \x87\xc6\x19\x1b\xda\x91\xc2\xa7\x27\x00\xc5\x72\xed\xe3\x21\x17\ \xe0\xeb\x08\xed\xa0\x0f\x0b\xed\x88\xf1\x99\x4e\xfc\xa7\x72\xb9\ \x3b\xea\xf2\x6d\x9b\xa4\xe3\x19\x65\x39\x7d\x6b\x37\x6c\x78\xd6\ \xd8\xe4\x8e\xbc\xdc\x9c\xb6\x79\x6b\x7d\x5f\x16\xbf\xa9\xc7\x86\ \x76\x54\x5a\x3f\xc7\xfc\xd4\xf6\x6a\xe5\x42\x69\xe7\x66\x53\xbe\ \x1f\x87\x1c\x09\xbe\xa4\xf2\xc9\x44\x6c\x55\xe0\x67\x86\xd6\xca\ \x8f\xed\xd7\x77\x6b\x87\x83\xcf\x7c\xf7\x26\x59\x93\x20\x50\xf4\ \x0e\xe2\xf6\x47\x1a\xe8\x1b\x00\x1f\x94\x38\x86\x54\x99\xc7\xb0\ \x12\x3e\xe7\x09\x80\x6e\x90\x0e\x8d\x33\x36\xb4\x23\xa5\x2f\x38\ \x01\x90\xfa\x99\xb3\xbd\xcf\x74\xe3\x5b\x0a\xed\xa0\x0f\x0b\xed\ \x70\xf4\xc9\x6f\xc0\x66\x80\xbc\x42\x16\xbb\x09\x1e\xa7\xed\xfd\ \x9b\x74\x3c\x23\x64\xe9\x93\xd5\x0c\x65\x10\x35\x03\xde\x8c\x5c\ \xe1\x48\x7c\x6e\x5e\x87\xde\x66\x8e\xdb\x2f\x32\xb4\xa3\xd2\x1a\ \xfc\x1f\x2d\x4c\x4e\x6d\xd7\xf5\x90\xcf\x96\xce\xc8\xa3\xc2\xe2\ \x4b\x2a\x9f\xfc\x3e\x1f\x5c\x26\xba\x30\x59\xbb\xac\x28\x6f\xf4\ \x4b\xe1\x93\xef\xe5\xcb\xb5\xdf\x59\x15\xf8\x19\x41\x93\xe5\xfe\ \xa5\x0f\xa7\x67\x7c\x50\xe2\x08\x52\x67\x1e\xc1\x4a\xf9\x9c\x26\ \x00\xba\x41\x26\x34\xce\xc4\xd0\x8e\x2e\x7c\xed\x09\x40\xbb\xbe\ \x85\x4a\xfd\xf6\x6e\x7c\xad\xd0\x65\xa2\x0f\x0b\xed\x48\xe1\x33\ \x1d\xfc\x0f\xcc\xbe\xfc\xef\xb2\xd6\x7c\x70\xff\x26\x1d\xcf\xae\ \x78\xf6\x3d\x65\xe3\xe4\xb6\x17\x9b\xf2\xbe\x61\x73\xb9\xfa\xae\ \xcd\xa5\xea\x67\xe5\x46\x47\xa4\xbe\x1d\xa1\xb7\x59\x8a\xed\xe7\ \xe2\xb3\xbc\x6c\xa7\xb5\x92\x66\x31\x69\x09\x66\x8b\x2b\xa9\x7c\ \xb2\x72\xa1\x3c\xb9\xd1\xce\x47\x56\xfc\x4b\xeb\x33\xe5\xbb\x47\ \x1e\x8b\x0c\x96\x5b\xe3\x79\xff\xd2\x37\x48\x3e\x28\xb1\x85\xae\ \x32\xb7\xb0\x92\xbe\xc4\x09\x80\x6e\x90\x09\x8d\x33\x31\xb4\xa3\ \x4b\x9f\x4c\x00\x82\xf5\xed\x78\x1f\xba\x25\x7d\x62\xe8\x32\x75\ \x59\xbe\x90\x83\x3e\x28\xcc\x40\xfa\xe0\xe6\x72\xfd\x83\xf9\x89\ \xa9\xad\x2e\xc7\xb3\x0b\x48\xfb\xb0\xf1\xe2\xb1\xd2\xea\xd6\xef\ \xd6\xe5\xda\x55\xe6\xac\xf6\x3a\xf3\xef\xbd\xa1\xba\xa6\xac\x6f\ \xc8\x91\x91\xaf\x30\x59\xff\x13\x5d\xaf\xc5\xd7\x32\x2f\x5c\x8e\ \x8f\x0a\x8b\x2b\xa9\x7c\xc6\xf9\xa9\x73\xce\x19\x7f\xfa\x62\x36\ \x4f\xbe\xd1\x2f\x85\xcf\xb8\x66\xe5\xbe\x89\x8e\x82\x2b\xba\xdd\ \xbf\x1a\xfa\x06\xdb\x07\xe1\x3b\xf3\x95\xf6\xc5\x4e\x00\x74\x83\ \x4c\x68\x9c\x89\xa1\x1d\x1e\x7c\x17\x14\xb7\xbf\x20\x58\xdf\xa5\ \x37\xc9\xe9\xb4\x2e\xa1\xcb\xe4\xa1\x7c\x91\xa1\xd3\xba\x84\x76\ \x0c\x9b\xaf\x54\xff\x9c\x9c\x39\xea\xfb\x3e\x10\xd0\xf6\x21\x57\ \x20\x64\xf2\x21\xf9\xca\x59\x6c\xc7\xef\xf6\xba\x7c\xbe\xeb\x9b\ \x91\xaf\x50\xae\x7e\x64\x95\xba\x74\x9e\x9f\xac\xbe\xc6\xd4\xed\ \xd1\x90\xc3\xc1\x17\x57\x3e\x79\x4b\x63\xfb\xe5\x3b\x8b\x6f\xf4\ \xfb\xab\x34\x3e\x53\xb6\xc7\xe5\x46\xc9\x55\x96\xc7\x14\x83\xa0\ \xfb\x37\x09\xfa\x06\xdb\x07\xe1\x3b\xf3\x5e\xf0\x45\x4e\x00\x74\ \x83\x8c\x69\x9c\x4e\xa1\x1d\x9e\x7c\x85\x89\xea\xba\x60\x7d\x8b\ \xe5\xea\x8f\x42\x69\x5d\x42\x97\xc9\x53\xf9\xac\xa1\xd3\xba\x84\ \x76\x0c\xb9\xcf\x0c\x08\xff\x2a\x6b\x3e\xc8\xef\xd5\xb6\xfb\x05\ \x6c\x24\xb5\x0f\x59\x32\x76\xe3\x96\xea\x26\xb9\x49\xcf\x0c\x36\ \xef\x8f\xfd\xdd\x5e\x97\x29\xe3\xfa\xc2\xa1\x1d\x8b\x51\x2c\xd5\ \x67\x4d\xbd\x8f\x0b\xd6\xbb\x50\xae\xed\x96\x01\x36\xe4\x70\xf0\ \xc5\x95\x4f\x9e\x6a\x68\x2f\xc3\x2b\x2b\x38\x9a\x3c\x3e\x9c\xc6\ \x27\x8f\x21\x9a\x32\xd6\x82\x65\xb6\x91\xb4\x7f\x51\xe8\x1b\x6c\ \x1f\x84\xef\xcc\x7b\xc5\x67\x9d\x00\xe8\x06\x19\xd3\x38\x9d\x42\ \x3b\x3c\xfa\xda\x13\x80\xc5\xfa\x1e\x95\x78\x16\x63\x0b\x5d\x26\ \x8f\xe5\x0b\x85\x4e\xeb\x12\xda\x41\x5f\x47\xc8\x3e\x37\xf1\x95\ \x42\xb9\xfe\x41\x39\x53\x97\x15\x02\x65\x3d\x80\xb1\x0b\x77\xbe\ \xf0\xc5\x85\xc6\x69\xf9\x7c\xfe\x24\x79\xa5\xad\x44\xb1\x5c\x7e\ \xce\x78\xe9\xa2\x97\xc8\x6f\xc8\x26\xdd\xc5\x72\x23\x99\xf9\xde\ \x07\xcc\x99\xe9\xe7\x9d\x8f\x1d\x5d\xa6\x84\xf2\x25\x86\x76\x64\ \xe4\x33\xdb\xe6\x1b\xfa\x8e\xf9\x42\xb9\xba\x37\x93\xc1\xbf\x52\ \x3b\xd0\x9e\x98\x2d\xbc\xbd\x30\xf0\x56\x47\xed\x88\xf1\x99\xb2\ \xdd\x2e\xef\x1f\x08\x96\xd9\x46\xda\xfe\x2f\x0a\xfa\x06\xdb\x07\ \xe1\x3b\xf3\x5e\xf2\x85\x26\x00\xba\x41\xc6\x34\x4e\xa7\xd0\x0e\ \xcf\x3e\x99\x00\xb4\xeb\x6b\xfe\x3d\x2e\x94\x3e\x29\x74\x99\x3c\ \x97\x8f\x3e\x30\xb4\x83\x3e\x2c\xb4\x63\x31\xe4\xca\xd8\x86\x89\ \xa9\xf3\x82\x6d\x3f\xf4\xde\x0c\x5b\x58\x5c\x49\xe5\x33\x83\xff\ \x3f\x9b\x41\xfb\x24\xc9\xa3\xe3\x8d\x7e\xa0\xcf\x4c\x1a\xae\x95\ \x36\x1d\x2c\xb3\x8d\x6e\xfa\x3f\x1b\xf4\x0d\xb6\x0f\xc2\x77\xe6\ \xbd\xe6\xeb\x98\x00\xe8\x06\x19\xd3\x38\x9d\x42\x3b\x32\xf0\xc9\ \x3d\x00\xed\xba\x9c\xb7\xa9\x7c\x7a\xe8\x3b\x71\x61\xf1\xf9\x2e\ \x1f\x7d\x40\x68\x07\x7d\x58\x68\xc7\x62\x14\xcb\xb5\x87\xe5\x8a\ \x48\xb0\xdd\x77\xbc\x33\x23\x2a\x2c\xae\xa4\xf2\xc9\x19\x7b\x7b\ \x2d\x07\x59\x78\xc9\xf4\x2f\x77\xa0\x3e\x59\x0c\x49\x5e\x01\x1d\ \x2c\x6f\x14\xdd\xf6\x7f\x1a\xfa\x06\xdf\xa7\x3f\x8b\x24\x8b\xcc\ \x7b\xcd\xb7\x34\x01\xd0\x0d\x32\xa2\x71\x3a\x87\x76\x64\xe4\x7b\ \x71\x61\xdb\x69\xed\xba\x6c\xda\xb2\xed\x79\xa1\xef\x45\x85\xc5\ \x95\x45\xf9\xe8\x73\x0c\xed\xa0\x0f\x0b\xed\x08\x44\xa1\x34\xf5\ \xc6\xce\x36\x5f\xfd\xbd\xd0\xf7\x75\x58\x3c\x49\xe5\x93\xfb\x32\ \xce\x3f\x7f\xe2\x14\xc9\x43\x56\x61\x34\x03\xf9\xbf\xa1\x3e\x33\ \x31\xf9\xb2\x2c\x85\x1c\x2c\x6f\x14\x3e\xfa\xbf\x20\xf4\x0d\x87\ \x4f\x7f\x6e\x25\xab\xcc\x7b\xcd\xd7\x9a\x00\xe8\x06\x19\xd1\x38\ \x9d\x43\x3b\x32\xf2\x99\x33\x9b\x87\x56\x05\xd6\xfe\x96\xf7\xa5\ \x87\xbe\x6b\x0b\x8b\x2b\x8b\xf2\xd1\xe7\x18\xda\x41\x1f\x16\xda\ \x11\x88\x42\xa5\xfe\xfb\x81\xe6\x7e\x94\xbc\x7a\x37\xf4\x7d\x1d\ \x16\x4f\x52\xf9\x64\xe0\x6e\xdf\x5f\xd0\xf1\x46\x3f\xc0\x27\x4b\ \x04\xfb\xba\xa1\x13\x85\xbe\xe1\xf1\xe9\xbf\x85\xc8\x32\xf3\x5e\ \xf3\x2d\xbd\x0e\xd8\x16\x96\x86\x9e\x18\xda\x91\xa1\x4f\x2e\x2f\ \x06\xeb\x22\xeb\x81\x87\xbe\xaf\xc3\xe2\xc9\xaa\x7c\xa1\xb4\x2e\ \xa1\x1d\xf4\x61\xa1\x1d\x43\xec\x33\x13\xe4\xbf\x5d\xf5\xe4\x04\ \xf9\xe8\xd6\x8b\xb2\xf4\xf7\x75\x58\x3c\x49\xe5\x0b\x0e\xfe\xb2\ \xac\xb0\x19\xfc\x7f\x80\xf8\x4c\xfa\x9f\xeb\xab\x14\x71\xf8\xec\ \xff\x04\xfa\x86\xcb\xa7\xff\xde\x81\x4e\xec\x3b\xf3\x5e\xf3\x45\ \x4e\x00\x2c\x0d\x3d\x31\xb4\x23\x63\x9f\x5c\xca\x0c\xd6\xa5\x30\ \x59\xad\x84\x1c\x80\x0f\x0e\xed\xa0\x0f\x0b\xed\xa0\x0f\x0b\xed\ \x58\x0c\xd3\x2e\x7e\x2e\x67\xfe\xf2\xe8\xdd\x62\xd3\x38\xa6\x50\ \xae\xbd\x37\xf4\x7d\x1d\x16\x57\x52\xf9\xe4\x51\x49\x59\x18\xa9\ \xd5\xfe\x4a\xb5\x89\x62\xf0\xfd\x01\xda\x61\xf1\x99\x49\xfc\x57\ \xe5\x75\xc3\x81\x66\x1c\x8b\xef\xfe\x8f\x3e\xfa\x96\x80\x12\x3b\ \xd0\x0f\x3e\xeb\x04\xc0\xd2\xd0\x13\x43\x3b\x32\xf6\x99\x8e\xe6\ \x31\xfd\x5b\x61\xa1\x5c\xfd\x8f\x21\x8f\xa3\x0f\x0e\xed\xa0\x0f\ \x0b\xed\xa0\x0f\x0b\xed\x58\x8c\x62\xa9\xfe\xf7\xc1\xc7\xe6\xe4\ \xbf\x65\x01\xa3\xd0\xf7\x75\x58\x5c\x49\xe5\x33\x83\xff\xd7\x5e\ \x5a\x2c\x9f\xb9\xd0\xf6\x6a\x35\xd3\x26\x1f\x44\x7c\xa6\x5c\xff\ \x90\xf4\xf2\xa7\x20\x59\xf4\x7f\xf4\xa5\x67\xa0\x7c\x50\x62\x07\ \xfa\xc5\x17\x9a\x00\x58\x1a\x7a\x62\xe8\x06\xbe\x0c\x3e\xf9\xbd\ \x50\xd7\x49\x56\x33\x0b\xb9\x1c\x7d\x50\x68\x07\x7d\x58\x68\x07\ \x7d\x58\x68\x47\xa5\x75\xd6\xff\x25\x59\xb1\xb0\xdd\x16\xe4\xf5\ \xbe\xa6\x8d\x5c\xd3\x31\x28\x47\x85\xc5\x97\x54\x3e\xe3\xfd\x56\ \x7b\xa2\x21\x77\xec\x9b\xff\x7f\xc4\xd5\x27\x69\x65\x19\xe5\x55\ \x31\x2f\xf2\xd1\x64\xd5\xff\xd1\x97\x8e\x81\xf2\x41\x89\x1d\xe8\ \x27\x5f\xc7\x04\xc0\xd2\xd0\x13\x43\x37\x70\x87\xce\x23\x36\xb4\ \xc3\xe2\x33\x1d\xdb\x0f\x6d\xeb\x81\xcb\xdb\xc5\xd2\xf8\xa0\xd0\ \x0e\xfa\xb0\xd0\x0e\xfa\xb0\x50\x0e\x33\x90\xfe\x30\x5f\xae\x4e\ \xaf\x5a\x5c\x22\x57\x7e\x8b\x77\x1e\xf8\x2d\x3e\x97\xf2\x19\xff\ \x77\x36\x8e\x37\xd6\x4a\x7e\x0b\xab\x26\x06\x16\x12\xd2\x0e\xe5\ \x93\xef\xca\x2b\x91\x3b\x1a\x6e\x02\x59\xf6\x7f\xf4\xe1\x0c\x94\ \x0f\x4a\xec\x40\xbf\xf9\x96\x26\x00\x96\x86\x9e\x18\xba\x81\x3b\ \x74\x1e\xb1\xa1\x1d\x16\x9f\x9c\x3d\xe8\x67\x9a\xdb\x98\xce\xe5\ \x4d\xa8\x0f\x0a\xed\xa0\x0f\x0b\xed\xa0\x0f\x8b\xc0\xf7\x5b\x6f\ \x1b\x2c\xd7\xde\x31\x3e\x7e\x51\xeb\xe6\x3b\x79\xfc\xae\x50\xa9\ \xfd\xa1\x69\x1f\x3f\x0d\x7d\x2f\x2a\x74\x99\x1c\xca\x67\xfc\xdf\ \x1b\xbb\xb0\x71\xee\x42\x7b\xab\x5d\x85\xf8\x4c\xf9\xfe\x49\xd6\ \xea\xe8\x6c\xb5\xf1\xe8\xfe\xca\x77\xff\x47\x1f\xc6\x40\xf9\xa0\ \xc4\x0e\xf4\xa3\xaf\x35\x01\xb0\x34\xf4\xc4\xd0\x0d\xdc\xa1\xf3\ \x88\x0d\xed\xb0\xf8\x5a\x0b\x84\x4c\x4e\xbd\x4c\xd7\xab\x8d\xdc\ \xf8\x84\xf8\xa0\xd0\x0e\xfa\xb0\xd0\x0e\xfa\xb0\x08\x7c\xdf\x4c\ \x74\x6f\x2a\x54\x76\xfc\x8a\xb4\xdf\xc9\xc9\xc9\x13\x0b\xa5\xea\ \xef\x9a\xc1\x15\x7b\x07\x86\x2e\x93\x43\xf9\xcc\xe0\xff\xef\x1b\ \x26\x1a\xeb\x56\xc9\xe3\x84\xe5\xfa\x35\xae\x3e\x79\x21\xd0\xd8\ \xc4\xd4\x85\xba\xbd\x26\x61\xeb\xaf\x74\x1a\x04\xfa\xe8\x5b\x02\ \x4a\xec\x40\xbf\xfa\x3a\x56\x02\x74\x0d\x4b\x23\x4f\xea\x3c\x62\ \x43\x3b\x2c\x3e\x53\xce\xcf\xca\x73\xfe\xba\x5e\x41\x96\x3a\x25\ \xed\xb0\xf8\xa0\xd0\x0e\xfa\xb0\xd0\x0e\xfa\xb0\x58\xfc\x6e\xb1\ \x5c\xfd\xda\xd8\xe4\xce\x5f\x93\xf6\x3b\x3e\x5e\x7b\x76\xa1\x5c\ \xfb\xaf\xf2\x73\x58\x28\x7d\x52\xe8\x32\x39\x94\x4f\x1e\xed\x5b\ \x5c\x4a\xf8\x18\x93\xe7\xdf\x24\xf9\x8a\xe5\xda\xe3\xc5\x52\xf5\ \x1f\xf3\xe5\xea\x06\xdd\x4e\x5d\x88\xea\xaf\xd2\x42\x1f\x7d\x4b\ \x40\x89\x1d\xe8\x67\x1f\x3c\x01\xb0\x34\xf6\xa4\xce\x23\x36\xb4\ \x23\xd8\x89\x54\xea\x8f\x99\xf2\x1d\x2a\x94\x6a\xbf\xb1\xca\xe1\ \x86\xa1\x7c\xb9\xfe\x2e\xed\xc8\xb2\x7c\xa1\xb4\x2e\xa1\x1d\xf4\ \x61\xa1\x1d\x43\xe0\x33\x03\xff\x4f\x5a\xaf\x41\xde\xb0\xed\x59\ \x12\xc5\x4a\xed\x0a\xd3\x2e\xfe\x3d\x94\xd6\x25\x74\x99\x1c\xca\ \x67\xda\xe1\xbd\xf2\xa8\xde\x39\xe7\x8c\x3f\x5d\xee\xdc\x8f\xf3\ \x99\x81\xff\x51\x33\x31\xf9\x5b\xfd\xde\x01\x84\xb8\xfe\x2a\x0d\ \xf4\xd1\xd7\x01\x94\x38\x01\x38\xf3\x04\x96\xdb\x97\x2f\xd7\xde\ \x5a\x2c\xd5\xaf\x76\x8d\xcd\x93\xd5\xb7\xe9\xd0\x69\x90\xd0\xae\ \xcd\xa5\xda\xff\x30\x1d\xc8\x1e\xb9\xd4\x2f\x6b\x89\x07\xcb\x9a\ \x44\xa1\x5c\xff\x9f\xba\x43\x4a\xea\xdc\x62\x43\x3b\xe8\xc3\x42\ \x3b\xe8\x83\xa2\x75\x16\x5d\xae\xbe\x7f\x7c\x6b\xed\x9c\x75\xe3\ \xe3\xc7\x17\x2a\x53\x97\x99\xb3\xea\xef\xa4\xf5\x85\xca\xe4\x50\ \x3e\x33\xf8\xdf\x2f\x8b\xfb\x9c\x3b\x36\x76\x82\x99\x74\x7c\x3a\ \xca\x27\xef\x1b\x30\xed\xf6\xaf\x0b\x13\xdb\xe4\x27\x82\xd4\x24\ \xf5\x57\x28\xf4\xd1\x17\x02\x4a\x1c\x43\xaa\xcc\x63\xa0\xaf\x3b\ \x5f\xbe\x54\xad\x87\x3a\xb6\x98\xce\x2d\x36\xb4\x83\x3e\x2c\xb4\ \x83\x3e\x28\x8a\xf2\x1a\xdc\xc9\x1d\xe3\xe7\x8c\x8f\x3f\x3d\x5f\ \xda\x79\xb1\x99\x08\xdc\xd9\x8d\x2f\x54\x26\x87\xf2\xc9\x3d\x37\ \x9b\xca\x53\x45\x79\xb3\x9f\x29\xcf\x41\x9b\x4f\x96\xe3\x2e\x94\ \xab\xef\x2b\x4e\xd6\x5f\xd0\x6d\xfb\xf5\xdd\x1f\xd0\x47\x9f\x15\ \x28\x71\x04\xa9\x33\x8f\x80\xbe\x74\xbe\xf5\xeb\x77\xb5\xbe\x27\ \xdf\x37\x71\x5c\xa1\x52\xfd\x82\x4b\xe7\x16\x1b\xba\x83\xa4\x0f\ \x0b\xed\xa0\xcf\x39\xe4\x2e\x7b\x59\xcf\x62\xdc\x0c\xfc\x85\xd2\ \xd4\x6f\x98\xe3\xf9\xcb\xdd\xf8\x5a\xa1\xcb\xe4\xe0\x6b\x0f\xfe\ \x1b\xb7\x34\xd6\x14\x2a\xf5\xcf\x6b\x9f\x19\xf8\x7f\x5c\x2c\x4d\ \xfd\x91\x99\x98\x9c\xd9\x4d\xfb\x6d\xe3\xab\x3f\x68\x43\x1f\x7d\ \x91\x40\x89\x2d\x74\x95\xb9\x05\xfa\xd2\xf9\xa4\xa3\xdc\x50\xdc\ \xf1\x0b\x41\x5f\xbe\x5c\x5b\x6f\x3a\xa7\xfb\xe3\x3a\xb7\xd8\xd0\ \x1d\xa4\x43\x67\x19\x1b\xda\x41\x1f\x16\xda\x31\xa0\x3e\x33\xf0\ \xcb\x99\xf4\xdb\xd6\x6e\xd8\xf0\xac\x42\xa5\xf6\xab\x9b\x4b\xf5\ \xcf\x75\xe3\x5b\x0a\xed\x70\xf0\xc9\x7d\x41\x9b\xca\x3b\xb7\xc8\ \xdb\x35\x65\xb5\xbf\xce\xbf\xd5\xee\xdd\x5c\x9a\x7a\xcb\x86\x89\ \xa9\x91\x6e\xdb\x6f\x1b\x5f\xfd\x41\x1b\xfa\xe8\xcb\x0c\xdf\x99\ \xd3\x97\xce\x27\x2f\xfe\x91\xb3\x90\x0b\x8a\xdb\x5f\xa0\x7d\x1b\ \x26\xaa\xeb\x4c\xc7\xf5\xcf\xba\x63\x4b\x0c\xdd\x41\x3a\x74\x96\ \xb1\xa1\x1d\xf4\x61\xa1\x1d\x03\xea\x93\xa5\x7a\x65\x22\x2b\x2b\ \xf9\x15\xca\xb5\xf9\x90\x0b\xf4\x2d\x85\x76\x38\xf8\x8a\xf2\x62\ \x9e\xc9\x6a\x45\x96\xd9\x96\xab\x11\x81\xcf\xef\x2e\x94\x6a\xbf\ \xbd\xb1\x52\x39\x59\xb7\x37\xdd\x36\x11\x7c\xf5\x07\x6d\xe8\xa3\ \x2f\x33\x7c\x67\x4e\x5f\x3a\x9f\xfc\xd6\x6f\x06\xff\x07\xa4\x23\ \x2b\x98\xc1\x3e\xc2\x77\xd4\x58\xa9\x7a\x91\xe9\x50\xdf\x61\xe2\ \x7a\xd3\xc9\xce\x9b\x33\xab\x9b\x4d\xdc\x60\x0b\x73\xd6\xf3\xa9\ \xcd\xe5\xfa\x07\x8d\xf7\x43\xed\x90\xff\x37\x79\xec\xdb\xbc\xb5\ \xbe\x4f\x5e\xa6\x62\x3e\x7b\x67\x3b\xcc\x77\xae\x95\x45\x89\x74\ \x07\xda\x4d\xe7\x1b\x1b\xda\x41\x1f\x16\xda\xd1\x03\x3e\x73\xfc\ \x7c\x49\x06\xdb\xfc\x64\x6d\xbc\x50\xaa\xee\x0f\x79\x40\x5f\x47\ \x68\x87\x83\xaf\x75\x15\x62\x72\x6a\xfb\xa6\x89\x1d\x1b\xe5\xce\ \xff\x85\xcf\x6a\xdf\x94\x9b\x72\x37\x6e\xdc\xf8\x0c\x5f\xed\xb7\ \x0d\x7d\xf4\x21\xf8\xf6\x41\xf8\xce\x9c\x3e\xdc\xb7\x78\x49\xf2\ \xfd\xc1\xce\xac\x3d\x01\x48\xe3\x0b\x92\xa6\x7c\x63\x13\xd5\x82\ \xe9\x28\xef\xd2\x1d\x69\xa8\xc3\x75\xe8\x7c\x63\x43\x3b\xe8\xc3\ \x42\x3b\x56\xd8\x67\x26\x9b\xf7\x99\x09\xe4\x8c\x1c\x3f\x32\xf9\ \x0c\x39\x40\x5f\x28\xb4\xc3\xc1\x67\x8e\x63\xb9\x8b\xbf\x36\x36\ \x31\x55\x92\xdf\xff\x4d\xfc\x5b\xbe\x5c\x7f\xed\xaa\x46\xa3\xf5\ \xfa\xd4\x34\xed\x23\x0e\xfa\xe8\x43\xf0\xed\x83\xf0\x9d\x39\x7d\ \xee\x3e\x79\xa9\x89\xfc\xd6\x6f\x3a\xcd\x4f\x98\x4e\xea\x51\xdd\ \xa1\xc9\x04\x00\xf1\xd9\xe8\xa6\x7c\xeb\xc7\xc7\x4f\x2d\x96\x6b\ \x7f\xdb\x4d\xe7\x1b\x1b\xda\x41\x1f\x16\xda\xb1\x82\x3e\x39\x7e\ \xe5\xea\xd1\xa6\x52\xad\xbc\xf4\x86\x3e\xed\x00\x7c\xd6\xd0\x0e\ \x07\xdf\xc2\x95\xac\x7a\xa3\x30\x59\xfb\x55\xb9\x52\x96\x2f\xd5\ \x2e\x6e\x34\x1a\x4f\x59\x3a\xc6\xbb\x68\x1f\x36\xe8\xa3\x0f\xc1\ \xb7\x0f\xc2\x77\xe6\xbd\xe6\xd3\xeb\x00\x84\x9e\xcb\xf7\xfd\x9c\ \xbf\x83\xcf\x74\x42\x7f\x55\x28\xd7\xf7\x9b\x8e\xe9\x9e\xa4\xce\ \x4d\xee\x01\xd0\x75\x42\xe8\x76\xfb\xb5\xc9\x97\xab\x3b\xe5\x8d\ \x6c\xba\x7c\x49\x9d\x6f\x6c\x68\x07\x7d\x58\x68\xc7\x0a\xfa\xcc\ \x04\xf6\x16\x79\x6b\x5e\x41\x7e\x66\x6a\xbf\x3c\x47\x3b\x00\x9f\ \x35\xb4\xc3\xc1\x27\x93\x12\x33\xc1\x7e\xf9\xa6\xf1\xed\xbf\x94\ \x9f\xd8\xb9\xc3\x1c\xca\x47\x05\x8f\x6b\x5f\xed\xa3\x0d\x7d\xf4\ \x21\x64\xe1\xd3\x9f\x45\x92\x45\xe6\xbd\xe6\x5b\x5a\x09\x50\x77\ \x18\x0e\x9d\x47\x6c\x68\x47\x46\x3e\xb9\x79\x4a\xd7\xc9\x15\x1f\ \xdb\x2f\x88\xfc\x4e\x5a\x28\x4f\xed\x36\x13\x81\xef\x65\x55\x5f\ \xfa\x1c\x43\x3b\x56\xc8\x67\xda\xd7\x77\x64\x15\x3f\x59\xa5\xb2\ \x75\x05\xab\x4b\x5f\x64\x68\x87\x83\x4f\x26\x22\x85\xca\xd4\x1b\ \xf4\x71\xdc\xc6\x77\xfb\xa0\x8f\x3e\x84\xac\x7c\xfa\x73\x2b\x59\ \x65\xde\x6b\xbe\xd6\x04\x40\x77\x18\x0e\x9d\x47\x6c\x68\x47\x86\ \xbe\xb4\x13\x00\x5f\xdb\xaf\x4d\xd0\xb7\xf0\xb3\x40\xf5\x0f\x4c\ \x60\x2f\x68\x71\xa8\x6f\x28\xad\x4b\x68\x07\x7d\x58\x68\x87\x83\ \xcf\x0c\xae\x3f\x95\x2b\x59\x72\xcf\x4a\xe8\x66\x51\xed\x70\xf0\ \xc5\x86\x76\x38\xf8\x5a\x83\x7f\xa9\xfa\x7a\x7d\x1c\xb7\xc9\xb2\ \x7d\xd0\x87\x43\x9f\x3f\x9f\xfe\x5b\x88\x2c\x33\xef\x35\xdf\xd2\ \xeb\x80\x6d\x61\xe9\x38\x12\x43\x3b\x32\xf6\xa5\x99\x00\xf8\xdc\ \x7e\x42\x94\x4f\x9e\xe9\xce\x97\x6a\x57\xc8\x9d\xd4\xa1\x7a\x45\ \x85\xae\x63\xc6\xdb\x0f\x0e\xed\xa0\xaf\x23\x64\x60\x95\xcb\xfd\ \xb2\x66\xbe\xf9\xef\x07\xf5\xdf\x43\x8e\x04\x5f\x62\x68\x87\x83\ \xcf\x94\xeb\xeb\x85\x52\xed\xd5\xea\x30\x5e\x22\xea\x78\x4e\x0b\ \x7d\xf4\x21\x64\xed\xd3\x7f\xef\x40\x27\xf6\x9d\x79\xaf\xf9\x22\ \x27\x00\x96\x8e\x23\x31\xb4\x63\x19\x7c\xe8\x04\xc0\xf7\xf6\x73\ \xf4\x1d\xbd\x70\x8f\x40\xfd\x50\xa8\x8e\x60\x7d\xa1\xd0\x0e\xfa\ \xb0\xd0\x8e\x04\x9f\x4c\xf4\xcc\xe0\x7a\x50\xce\xfe\xf5\xdf\xd2\ \xf8\x12\x43\x3b\x62\x7c\xf2\xba\x60\x79\x74\x35\x3f\x51\x9d\x5c\ \xa5\x7e\xe7\x0f\xe2\x78\x3c\x3b\x43\x1f\x7d\x08\x2b\xea\x83\x12\ \x3b\xd0\x0f\x3e\xeb\x04\x40\x77\x34\x2e\xa1\x1d\xcb\xe4\x43\x26\ \x00\x59\x6c\x3f\xd4\x77\x61\x6b\xa5\xc2\xfa\x35\x66\x90\xf8\x7e\ \x9a\xfa\x3a\x87\x76\xd0\x87\x85\x76\xc4\xf8\xcc\xbe\x7c\xc8\xc4\ \x5d\x26\x7e\xac\xff\x96\xc6\xe7\x14\xda\x61\xf1\x99\xf2\x3c\x26\ \x8f\x19\xe6\x2b\xd5\x57\x9d\x77\x5e\xf9\x99\xfa\x58\xd4\xa4\x39\ \x9e\xe3\xa0\x8f\x3e\x84\x15\xf5\x41\x89\x1d\xe8\x17\x5f\x68\x02\ \xa0\x3b\x1a\x97\xd0\x1d\xd0\x32\xfa\x64\xad\x72\x5d\x37\x1b\x59\ \x6d\xbf\xb4\x3e\x79\xb5\xaa\xdc\x7d\x6d\x3a\xe9\x4f\x15\xcb\xb5\ \xc7\x42\xf5\x8c\xa8\xaf\x53\x68\x07\x7d\x58\x68\x47\x82\x4f\x2e\ \xfb\xeb\xcf\xba\xf1\x25\x86\x76\x28\x9f\x29\xcf\xbf\xe6\x4b\xf5\ \xcb\x91\xb7\x69\x76\x7b\x3c\x6b\xe8\xa3\x0f\x61\x45\x7d\x50\x62\ \x07\xfa\xc9\xd7\x31\x01\xd0\x1d\x8d\x4b\xe8\x0e\x28\xe3\xce\x2d\ \x18\xa6\xa3\x7b\xd4\x54\xe7\x18\x5d\x3f\x4d\x96\xdb\xcf\x87\x6f\ \xd3\x96\xda\xf3\x8a\x95\xea\x95\x85\x72\xed\x88\x99\x0c\x3c\x1e\ \x55\x5f\xa7\xd0\xdb\x2c\x66\xfb\x39\x85\x76\xd0\x87\x85\x76\x64\ \xe4\x93\x2b\x10\xe6\x6c\xff\x8f\xf3\x17\xee\xf8\x65\x7d\x7c\x25\ \xe1\xfb\x78\xa6\x8f\x3e\x84\x15\xf5\x41\x89\x1d\xe8\x37\xdf\xd2\ \x04\x40\x77\x34\x2e\x61\xe9\x88\xb2\xe8\xdc\xa2\x7c\xc5\x4a\xed\ \x4e\x5d\x3f\x8d\xae\xaf\xef\xed\xe7\xdb\x27\x93\x81\x42\xb9\xba\ \xd7\xd4\xed\x80\x5c\xc2\xd5\x75\x8e\x0d\xbd\xcd\x12\xb6\x5f\x62\ \x68\x07\x7d\x58\x68\x87\x67\x5f\xb1\x5c\xfd\x89\x89\xf7\xcb\x72\ \xc2\xc1\x85\x7b\x10\xf4\xf1\xe7\xfb\x78\xa6\x0f\x83\xbe\x65\xf4\ \x41\x89\x1d\xe8\x47\x5f\x6b\x02\xa0\x3b\x1a\x97\xd0\x1d\x9a\xe7\ \xce\xcd\xc5\x67\x06\xc9\xb7\xeb\x3a\x06\xb1\xd5\x57\xa7\x41\x58\ \x6e\x9f\xfc\xbc\x91\x2f\x57\x2f\x29\x96\x6b\x1f\x5f\x5a\xaf\x21\ \x2a\xf4\x36\x73\xd8\x7e\xb1\xa1\x1d\xf4\x61\xa1\x1d\x9e\x7c\xe6\ \x58\x90\xd5\x04\x3f\x25\xab\x63\xe6\xf3\xdb\x4f\x0a\x1e\x2f\x28\ \x49\xc7\x1f\x0a\x7d\xf4\x21\xac\xa8\x0f\x4a\xec\x40\xbf\xfa\x12\ \x07\x16\x5b\xe8\x0e\xcd\x53\xe7\x66\x0d\x9d\x36\x10\xf2\xd2\x12\ \x5d\xcf\x36\x51\xf5\x4d\xcb\x4a\xfb\xce\x68\x34\x9e\x21\x2f\x37\ \x2a\x56\xea\x7f\xae\x5f\xd1\x1a\xda\x66\x8e\xdb\x2f\x32\xb4\x83\ \x3e\x2c\xb4\xc3\x83\xaf\x50\xae\xff\x8b\x89\xff\xb2\x69\xcb\x45\ \x67\xbb\x1c\x2f\x49\xa0\xc7\x5f\x12\xf4\xd1\x87\xb0\xa2\x3e\x28\ \xb1\x03\xfd\xec\x83\x27\x00\xba\x43\xf3\xd0\xb9\x45\x86\x4e\x1b\ \x08\x59\x4b\x3d\x58\xc7\x20\x71\xf5\x4d\x43\x2f\xfa\x2e\x98\xdc\ \xfe\x82\x7c\xa9\xd6\x2c\x96\xaa\xff\xd8\x5a\x70\x48\x6f\xbb\x84\ \xed\x17\x19\xda\x41\x1f\x16\xda\xd1\x85\xcf\x4c\xf6\xbe\x5d\xa8\ \x4c\xfd\xe1\xa6\xf1\x8b\x5e\xd4\xed\xf1\x12\xc4\xc7\xf1\x17\x84\ \x3e\xfa\x10\x56\xdc\x07\x25\x4e\x00\xce\x3c\x81\xe5\xf6\x41\x13\ \x00\xdd\xa1\x75\xd1\xb9\x75\xe3\x33\x1d\xe3\x03\x63\x17\x36\xce\ \x0d\xd6\xa3\x4d\x52\x7d\x51\xfa\xc1\x67\xe2\xb8\xb1\xc9\x1d\x79\ \x59\x72\xd6\xc4\xa7\xcd\x84\xe0\xe7\x7a\x9b\x39\x85\xde\x07\x8e\ \xfb\x23\x32\xb4\x83\xbe\xc4\x90\x63\xbb\x50\xa9\xbd\x67\x53\x79\ \xe7\x16\xb3\x7b\x8f\xce\xe2\x78\xa1\x2f\x3d\xf4\x0d\x80\x0f\x4a\ \x1c\x43\xaa\xcc\x63\x58\x09\x9f\xf3\x04\x40\x77\x68\x29\x3a\x37\ \x1f\xbe\xd6\xb3\xcd\x93\x3b\xab\xba\x1e\x82\x4b\x7d\x11\xfa\xd5\ \x27\x8f\x18\x6e\x2a\x4f\x15\x8b\xe5\xda\x7f\x2b\x54\xea\x9f\x94\ \x41\x45\x6f\xc7\x50\xe8\x7d\xe0\xb8\x3f\x22\x43\x3b\xe8\x8b\x0c\ \xb3\x7f\x1e\x91\xfb\x3c\xe4\x2d\x7c\xf2\x53\x4f\xd2\xfe\x4d\x0b\ \x7d\xf4\x21\x0c\xac\x0f\x4a\x1c\x41\xea\xcc\x23\x58\x29\x9f\xd3\ \x04\x40\x77\x68\x40\xe7\x66\x0d\xed\x70\xf4\x99\x8e\xf2\xa7\x63\ \x93\xb5\x5f\xd3\x75\x10\x5c\xeb\xeb\xca\x20\xf9\xe4\x0e\xf1\x0b\ \xb6\xec\xf8\x15\xf9\xc9\x60\xf1\x6d\x74\x5c\x84\x28\x2a\x74\x5a\ \x97\xd0\x0e\x47\x9f\x19\xf4\xe7\x64\x9f\x9c\xb7\xa9\x7c\xba\xde\ \x67\xc8\xfe\x75\x81\x3e\xfa\x10\x06\xda\x07\x25\xb6\xd0\x55\xe6\ \x16\x56\xd2\x97\x38\x01\xd0\x1d\x9a\x63\xe7\x16\x19\xda\xe1\xe8\ \x93\x65\x74\x37\x95\x2e\x7a\x91\x2e\xbf\x80\xd4\xd7\x85\x41\xf7\ \xc9\x84\x60\x6c\x72\xe7\x05\x85\x4a\xed\x2d\xc5\x52\x75\xae\x63\ \xed\x01\xc7\xfd\x11\x19\xda\x41\x5f\x47\x14\x2a\xf5\x6f\x14\xcb\ \xd5\xdf\x93\x7b\x38\xf4\x7e\x69\xd3\xed\xfe\xd5\xd0\x47\x1f\xc2\ \xb0\xf9\x20\x7c\x67\xbe\xd2\xbe\xd8\x09\x80\xee\xd0\x12\x3a\xb7\ \xc4\xd0\x8e\x04\x9f\x9c\xf1\x17\xca\xb5\x8f\x8c\x4d\x4e\xbd\x6c\ \x55\xc4\xfa\xe5\x68\x7d\x93\x18\x46\xdf\xf8\xf8\xb6\x33\xcc\x24\ \xe0\x75\x9b\xcb\xd5\x0f\x16\x4b\xb5\xfb\xa2\xf6\x47\x62\xe8\x7d\ \x9a\xb0\x7f\x13\x43\x3b\xfa\xd4\x67\x8e\xe3\x7b\xe5\x75\xc0\xf2\ \xb3\xcc\xaa\x88\xe3\xb8\x4d\x16\xfb\x97\xbe\xf4\xd0\x37\xd8\x3e\ \x08\xdf\x99\xf7\x82\x4f\x06\xd7\xcd\x5b\xeb\x8d\x50\x94\xa6\x1a\ \x85\xf2\xd4\xaf\xe7\x4b\x3b\x2f\x6e\x87\xfc\xbf\x7c\x1e\x4a\xeb\ \x12\x80\x6f\x6c\x62\xaa\xb4\x61\xa2\xb1\x2e\xf8\x7b\xa8\x8d\x34\ \xf5\x8d\x83\xbe\x96\xef\x18\x19\xa8\xf2\xe5\xea\x1f\x98\xb3\xd5\ \x7f\x09\x0d\x7a\x51\xa1\x07\xc0\x88\xc1\xd0\x39\xb4\xa3\xcf\x7c\ \x32\xb1\x2e\x56\x6a\x7f\x27\xf7\xab\xac\x5d\xbb\xf6\x69\x7a\xdb\ \xdb\x88\xd8\x1f\xa9\xa1\x8f\x3e\x84\x61\xf3\x41\xf8\xce\x9c\x3e\ \xfa\x10\x56\xca\x27\xbf\x4f\xcb\xcb\x64\xcc\xc4\x6c\x9f\x39\x93\ \xbd\x3f\x34\x10\x3a\x0c\x86\x70\x68\x47\x9f\xf8\xe4\x9d\x0e\x85\ \x72\x7d\x7f\xbe\x5c\xdb\x25\xaf\x82\xd6\xdb\x32\x0e\xd7\xfd\xe1\ \x0a\x7d\xf4\x21\x0c\x9b\x0f\xc2\x77\xe6\xf4\xd1\x87\xd0\x2b\xbe\ \x85\x7b\x07\x76\xe4\x8b\xa5\xfa\xd5\x85\x4a\x7d\x3e\x6e\x30\xf4\ \x3d\xb8\xf6\xb2\xaf\x58\xaa\x7e\xc1\x4c\x92\xae\x7c\xe9\x78\x23\ \xa7\xb7\x99\x0b\x69\xf7\x47\x14\xf4\xd1\x87\x30\x6c\x3e\x08\xdf\ \x99\xd3\x47\x1f\x42\x2f\xfb\x2e\x18\xdf\x7a\x4e\xa1\x5c\xdb\x6d\ \xce\x7c\x3f\x64\xe2\x81\x2c\x06\xd7\x5e\xf5\x15\x2b\xb5\xaf\x6f\ \x9e\xac\xbe\xad\x30\xb1\x6d\x9d\xde\x2e\x08\x3e\xf7\x87\x40\x1f\ \x7d\x08\xc3\xe8\xd3\x9f\x45\x92\x45\xe6\xf4\xa5\x87\xbe\xde\xf5\ \x6d\xd8\xb0\xed\x59\xf9\x89\x9d\x3b\xcc\x84\xe0\x4f\xe5\x25\x4d\ \xa1\xc1\x33\x29\xf4\x00\xed\x71\xb0\x0e\x85\x4e\xeb\x12\xe6\x7b\ \x85\x52\xed\x1b\xc5\xd2\xd4\x1f\xe5\xcb\xd5\x0d\xbe\xb7\x1f\x7d\ \x38\xf4\xd1\x87\xd0\xf6\xe9\xcf\xad\x64\x95\x39\x7d\xe9\xa0\xaf\ \xbf\x7c\x1b\x8a\x3b\x7e\x41\x5e\x64\x24\x4f\x71\x44\xde\x3b\x10\ \x18\x5c\x23\x43\xa7\x75\x09\xed\xe8\xc2\x67\xca\xfe\x5d\x79\xe9\ \xd4\xd8\xc4\xf6\x82\xdc\xcc\x17\x55\x5f\x94\xa4\xed\x87\x42\x1f\ \x7d\x08\xc3\xec\xd3\x7f\x0b\x91\x65\xe6\xf4\xe1\xd0\xd7\xdf\x3e\ \xb9\x77\xe0\xc2\x72\x6d\xbd\xfc\x4e\x5e\xa8\xd4\x6e\x30\x83\xea\ \x43\x59\x0c\xd6\xbe\x7c\xc5\x72\xfd\x87\xa6\x9c\xd7\x9a\x09\xcc\ \x4e\x53\xfc\x63\xd0\xfa\x26\x41\x1f\x7d\x08\xf4\xf9\xf5\xe9\xbf\ \x77\xa0\x13\xfb\xce\x9c\x3e\x0c\xfa\x06\xcf\x77\xde\x79\xe5\x67\ \xe6\x27\xaa\x93\x8b\x37\x13\xde\x1e\x1a\xa8\x81\xc1\xba\x23\xb4\ \x03\xf0\x99\x41\xff\xbe\xf6\xa0\xbf\x7e\xfd\xae\xa5\x3a\xf9\xa8\ \x6f\x10\xfa\xe8\x43\xa0\x6f\x19\x7d\x50\x62\x07\xe8\xa3\x0f\x61\ \x58\x7d\xf9\x89\xfa\xf3\x0b\xe5\xa9\xdd\x85\x85\x9b\x09\x7f\xa8\ \x07\x67\xa7\xd0\x03\xbe\xc3\xe0\x5f\xac\xd4\x7f\x20\x2f\xde\x69\ \x9d\xe9\x37\x1a\xa1\x33\x83\xac\xea\x4b\x5f\x3a\xe8\xa3\x0f\x01\ \xf2\x41\x89\x1d\xa0\x8f\x3e\x04\xfa\x96\x7c\x47\xab\x9f\x0b\x1e\ \xd4\x03\x77\x28\xf4\x80\x1f\x33\xf8\x1b\xdf\x3d\xb6\x33\x7d\x4d\ \x4c\xf9\x52\x41\x1f\x7d\x08\xf4\x2d\xa3\x0f\x4a\xec\x00\x7d\xf4\ \x21\xd0\x17\xed\x5b\xb7\xae\x71\xfc\xa6\x52\xad\xdc\x7a\x6f\x41\ \xb9\x7e\x8b\x19\xc0\x3b\x5f\x75\xac\x07\x7c\xcb\xe0\x6f\xbe\xf3\ \x15\xf9\xb9\x61\xe3\x96\x1d\xe7\xaf\x4a\x58\x8a\x57\x40\xca\xe7\ \x02\x7d\xf4\x21\xd0\xb7\x8c\x3e\x28\xb1\x03\xf4\xd1\x87\x40\x1f\ \xe6\x93\x3b\xf1\x65\x31\xa2\x42\xa9\xfa\xe6\x62\xa9\xf6\x89\x62\ \xb9\x76\x8f\x1e\xf8\xcd\xe7\x3f\x2b\x94\x6b\xd7\xe7\x4b\xb5\x2b\ \x64\x49\x69\xed\x88\xa3\xdb\xf2\x69\xe8\xa3\x0f\x81\xbe\x65\xf4\ \x41\x89\x1d\xa0\x8f\x3e\x04\xfa\xfc\xf8\x8a\xe5\xf2\x73\x0a\x93\ \xd5\x8a\x19\xf0\x2f\xbe\xf0\xc2\xed\xeb\x5d\xd7\xde\xd7\x64\x55\ \x3e\xfa\xd2\x41\x1f\x7d\x08\x90\x0f\x4a\xec\x00\x7d\xf4\x21\xd0\ \x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\x1f\x7d\x08\ \xf4\xd1\x87\x40\x1f\x7d\x08\xf4\x25\xf8\xa0\xc4\x09\xc0\x99\x27\ \x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\x03\xe9\x83\x12\xc7\ \x90\x2a\xf3\x18\xe8\xa3\x0f\x81\x3e\xfa\x10\xe8\xa3\x0f\x61\x60\ \x7d\x50\xe2\x08\x52\x67\x1e\x01\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\ \xf4\x21\x0c\xb4\x0f\x4a\x6c\xa1\xab\xcc\x2d\xd0\x47\x1f\x02\x7d\ \xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\x4e\x1f\x7d\x08\xf4\ \xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\x9d\x39\x7d\xf4\x21\xd0\ \x47\x1f\x02\x7d\xf4\x21\x0c\x9b\x0f\xc2\x77\xe6\xf4\xd1\x87\x40\ \x1f\x7d\x08\xf4\xd1\x87\x30\x6c\x3e\x08\xdf\x99\xd3\x47\x1f\x02\ \x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\x4e\x1f\x7d\x08\ \xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe8\xd3\x9f\x45\x92\x45\xe6\xf4\ \xa5\x87\x3e\xfa\x10\xe8\xa3\x0f\x81\xbe\xe1\xf0\xe9\xcf\xad\x64\ \x95\x39\x7d\xe9\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\x6f\x78\x7c\xfa\ \x6f\x21\xb2\xcc\x9c\x3e\x1c\xfa\xe8\x43\xa0\x8f\x3e\x04\xfa\x86\ \xcb\xa7\xff\xde\x81\x4e\xec\x3b\x73\xfa\x30\xe8\xa3\x0f\x81\x3e\ \xfa\x10\xe8\xa3\x6f\x09\x28\xb1\x03\xf4\xd1\x87\x40\x1f\x7d\x08\ \xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\x7d\xf4\x21\xd0\x47\x1f\ \x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\x1f\x7d\x08\xf4\xd1\ \x87\x40\x1f\x7d\x08\xf4\xc5\xf8\xa0\xc4\x0e\xd0\x47\x1f\x02\x7d\ \xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\x03\xf4\xd1\x87\x40\ \x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\x7d\xf4\x21\ \xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\x1f\x7d\ \x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\x25\xf8\xa0\xc4\x09\xc0\x99\ \x27\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\x03\xe9\x83\x12\ \xc7\x90\x2a\xf3\x18\xe8\xa3\x0f\x81\x3e\xfa\x10\xe8\xa3\x0f\x61\ \x60\x7d\x50\xe2\x08\x52\x67\x1e\x01\x7d\xf4\x21\xd0\x47\x1f\x02\ \x7d\xf4\x21\x0c\xb4\x0f\x4a\x6c\xa1\xab\xcc\x2d\xd0\x47\x1f\x02\ \x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\x4e\x1f\x7d\x08\ \xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\x9d\x39\x7d\xf4\x21\ \xd0\x47\x1f\x02\x7d\xf4\x21\x0c\x9b\x0f\xc2\x77\xe6\xf4\xd1\x87\ \x40\x1f\x7d\x08\xf4\xd1\x87\x30\x6c\x3e\x08\xdf\x99\xd3\x47\x1f\ \x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\x4e\x1f\x7d\ \x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe8\xd3\x9f\x45\x92\x45\xe6\ \xf4\xa5\x87\x3e\xfa\x10\xe8\xa3\x0f\x81\xbe\xe1\xf0\xe9\xcf\xad\ \x64\x95\x39\x7d\xe9\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\x6f\x78\x7c\ \xfa\x6f\x21\xb2\xcc\x9c\x3e\x1c\xfa\xe8\x43\xa0\x8f\x3e\x04\xfa\ \x86\xcb\xa7\xff\xde\x81\x4e\xec\x3b\x73\xfa\x30\xe8\xa3\x0f\x81\ \x3e\xfa\x10\xe8\xa3\x6f\x09\x28\xb1\x03\xf4\xd1\x87\x40\x1f\x7d\ \x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\x7d\xf4\x21\xd0\x47\ \x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\x1f\x7d\x08\xf4\ \xd1\x87\x40\x1f\x7d\x08\xf4\xc5\xf8\xa0\xc4\x0e\xd0\x47\x1f\x02\ \x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\x03\xf4\xd1\x87\ \x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\x7d\xf4\ \x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\x1f\ \x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\x25\xf8\xa0\xc4\x09\xc0\ \x99\x27\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\x03\xe9\x83\ \x12\xc7\x90\x2a\xf3\x18\xe8\xa3\x0f\x81\x3e\xfa\x10\xe8\xa3\x0f\ \x61\x60\x7d\x50\xe2\x08\x52\x67\x1e\x01\x7d\xf4\x21\xd0\x47\x1f\ \x02\x7d\xf4\x21\x0c\xb4\x0f\x4a\x6c\xa1\xab\xcc\x2d\xd0\x47\x1f\ \x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\x4e\x1f\x7d\ \x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\x9d\x39\x7d\xf4\ \x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\x9b\x0f\xc2\x77\xe6\xf4\xd1\ \x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\x6c\x3e\x08\xdf\x99\xd3\x47\ \x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\x4e\x1f\ \x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe8\xd3\x9f\x45\x92\x45\ \xe6\xf4\xa5\x87\x3e\xfa\x10\xe8\xa3\x0f\x81\xbe\xe1\xf0\xe9\xcf\ \xad\x64\x95\x39\x7d\xe9\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\x6f\x78\ \x7c\xfa\x6f\x21\xb2\xcc\x9c\x3e\x1c\xfa\xe8\x43\xa0\x8f\x3e\x04\ \xfa\x86\xcb\xa7\xff\xde\x81\x4e\xec\x3b\x73\xfa\x30\xe8\xa3\x0f\ \x81\x3e\xfa\x10\xe8\xa3\x6f\x09\x28\xb1\x03\xf4\xd1\x87\x40\x1f\ \x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\x7d\xf4\x21\xd0\ \x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\x1f\x7d\x08\ \xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xc5\xf8\xa0\xc4\x0e\xd0\x47\x1f\ \x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\x03\xf4\xd1\ \x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\x7d\ \xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\ \x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\x25\xf8\xa0\xc4\x09\ \xc0\x99\x27\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\x03\xe9\ \x83\x12\xc7\x90\x2a\xf3\x18\xe8\xa3\x0f\x81\x3e\xfa\x10\xe8\xa3\ \x0f\x61\x60\x7d\x50\xe2\x08\x52\x67\x1e\x01\x7d\xf4\x21\xd0\x47\ \x1f\x02\x7d\xf4\x21\x0c\xb4\x0f\x4a\x6c\xa1\xab\xcc\x2d\xd0\x47\ \x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\x4e\x1f\ \x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\x9d\x39\x7d\ \xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\x9b\x0f\xc2\x77\xe6\xf4\ \xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\x6c\x3e\x08\xdf\x99\xd3\ \x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\x4e\ \x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe8\xd3\x9f\x45\x92\ \x45\xe6\xf4\xa5\x87\x3e\xfa\x10\xe8\xa3\x0f\x81\xbe\xe1\xf0\xe9\ \xcf\xad\x64\x95\x39\x7d\xe9\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\x6f\ \x78\x7c\xfa\x6f\x21\xb2\xcc\x9c\x3e\x1c\xfa\xe8\x43\xa0\x8f\x3e\ \x04\xfa\x86\xcb\xa7\xff\xde\x81\x4e\xec\x3b\x73\xfa\x30\xe8\xa3\ \x0f\x81\x3e\xfa\x10\xe8\xa3\x6f\x09\x28\xb1\x03\xf4\xd1\x87\x40\ \x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\x7d\xf4\x21\ \xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\x1f\x7d\ \x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xc5\xf8\xa0\xc4\x0e\xd0\x47\ \x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\x03\xf4\ \xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\ \x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\ \x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\x25\xf8\xa0\xc4\ \x09\xc0\x99\x27\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\x03\ \xe9\x83\x12\xc7\x90\x2a\xf3\x18\xe8\xa3\x0f\x81\x3e\xfa\x10\xe8\ \xa3\x0f\x61\x60\x7d\x50\xe2\x08\x52\x67\x1e\x01\x7d\xf4\x21\xd0\ \x47\x1f\x02\x7d\xf4\x21\x0c\xb4\x0f\x4a\x6c\xa1\xab\xcc\x2d\xd0\ \x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\x4e\ \x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe6\x83\xf0\x9d\x39\ \x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\x0c\x9b\x0f\xc2\x77\xe6\ \xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x30\x6c\x3e\x08\xdf\x99\ \xd3\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\ \x4e\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xc3\xe8\xd3\x9f\x45\ \x92\x45\xe6\xf4\xa5\x87\x3e\xfa\x10\xe8\xa3\x0f\x81\xbe\xe1\xf0\ \xe9\xcf\xad\x64\x95\x39\x7d\xe9\xa0\x8f\x3e\x04\xfa\xe8\x43\xa0\ \x6f\x78\x7c\xfa\x6f\x21\xb2\xcc\x9c\x3e\x1c\xfa\xe8\x43\xa0\x8f\ \x3e\x04\xfa\x86\xcb\xa7\xff\xde\x81\x4e\xec\x3b\x73\xfa\x30\xe8\ \xa3\x0f\x81\x3e\xfa\x10\xe8\xa3\x6f\x09\x28\xb1\x03\xf4\xd1\x87\ \x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\x00\x7d\xf4\ \x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\x3b\x40\x1f\ \x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xc5\xf8\xa0\xc4\x0e\xd0\ \x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\x31\x3e\x28\xb1\x03\ \xf4\xd1\x87\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x5f\x8c\x0f\x4a\xec\ \x00\x7d\xf4\x21\xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x17\xe3\x83\x12\ \x3b\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\xf4\x25\xf8\xa0\ \xc4\x09\xc0\x99\x27\x40\x1f\x7d\x08\xf4\xd1\x87\x40\x1f\x7d\x08\ \x03\xe9\x83\x12\xc7\x90\x2a\xf3\x18\xe8\xa3\x0f\x81\x3e\xfa\x10\ \xe8\xa3\x0f\x61\x60\x7d\x50\xe2\x08\x52\x67\x1e\x01\x7d\xf4\x21\ \xd0\x47\x1f\x02\x7d\xf4\x21\x0c\xb4\x0f\x4a\x6c\xa1\xab\xcc\x2d\ \xd0\x47\x1f\x02\x7d\xf4\x21\xd0\x47\x1f\xc2\xb0\xf9\x20\x7c\x67\ \x4e\x1f\x7d\x08\xf4\xd1\x87\xf0\x7f\xdb\x9b\x63\x14\x06\x62\x20\ \x08\x82\xff\xff\xb5\x03\x83\xc1\xba\x33\xb8\x0f\x29\xda\xea\x50\ \x5a\x6a\x78\xbc\xd2\x34\x2f\xb5\x7b\x9c\xc7\x2b\xf1\x78\x25\x1e\ \xaf\x34\xcd\x4b\xed\x1e\xe7\xf1\x4a\x3c\x5e\x89\xc7\x2b\x4d\xf3\ \x52\xbb\xc7\x79\xbc\x12\x8f\x57\xe2\xf1\x4a\xd3\xbc\xd4\xee\x71\ \x1e\xaf\xc4\xe3\x95\x78\xbc\xd2\x44\x6f\x7d\xfb\xd9\x89\x71\xde\ \xf3\x78\xbc\x12\x8f\x57\xe2\xcd\xf0\xd6\xf7\xdb\x4e\x8d\xf3\x9e\ \xc5\xe3\x95\x78\xbc\x12\x6f\x8e\xb7\xfe\x5d\x3a\x39\xce\xeb\xf1\ \x78\x25\x1e\xaf\xc4\x9b\xe5\xad\xff\x5f\xad\xc7\xbb\xc7\x79\x2d\ \x1e\xaf\xc4\xe3\x95\x78\xbc\x4f\xe9\xf8\x8f\x78\xbc\x12\x8f\x57\ \xe2\xf1\x4a\xbc\xb7\xf7\x02\xd7\x54\x2d\x9c\xaa\xc0\xf9\xd7\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x23\x7c\ \x00\ \x01\x4c\xbe\x78\x9c\xed\x5d\x07\x78\x14\xd5\xf6\xdf\xdd\x20\xf0\ \x6c\x58\x20\xbd\x27\x9b\x46\x2a\x29\x5b\x48\x21\x40\x20\x80\x08\ \xfa\x14\x9f\xfa\xde\x53\x2c\xa8\xe8\x1f\xeb\x13\x0b\x48\x90\x92\ \xd0\x51\x01\xf5\x89\x11\x25\x95\x10\x12\x92\x50\x04\x91\xa0\x28\ \x4f\x1f\x2a\x8f\x4e\x40\x0d\x20\x76\x8a\xd2\xc2\x96\x39\xff\x73\ \x66\x77\x92\xd9\x96\x9d\xcd\x6e\x32\x41\xe7\x7c\xdf\xef\x9b\xb9\ \xb3\xb7\x9c\x73\x7f\xe7\xb6\x99\x3b\xb3\x32\x99\x5c\x76\x85\xac\ \xa0\x40\x86\xc7\x50\x59\x4c\x6f\xb9\x6c\x9c\x4c\x26\x4b\x4e\x36\ \x85\x2b\x94\x32\xd9\x4b\x78\x2d\x34\xd4\x1c\xbe\x4e\x26\x8b\x4a\ \x94\xcb\x7c\x7d\x4d\xe1\xa2\xbf\xc8\x64\x5f\x66\xcb\x65\xd7\x5d\ \x67\x0a\x3f\xdc\x43\x26\x1b\x97\x2f\x97\xc5\x60\x1e\x98\x25\x5d\ \x64\xaf\x4b\x22\x89\x24\x92\x48\x22\x49\x67\x48\x5c\x1c\xf4\x4e\ \x48\x80\x30\x21\xc8\xc8\x00\x9f\xec\x6c\xb8\x5e\x42\xc7\x90\x97\ \x07\x3d\xc4\xe6\x9b\x24\x26\x06\x72\xfb\x47\xc0\x57\x31\x21\xa0\ \x8b\xf4\x07\x68\x0f\xfd\x23\x01\xd2\x12\x01\xb4\xe9\x00\x99\x2a\ \x09\x6e\xc2\x90\xa5\x82\x23\x1a\x35\x2c\x1a\x94\x06\x61\x5d\xcd\ \x3b\xf9\x5f\x7c\x38\x34\x2a\x03\xda\xe7\x9c\x10\x13\x0c\xa0\x4a\ \x11\xbd\xbe\xfe\xc8\x68\x41\x5f\x98\x8a\x9c\x28\xba\x82\xfb\x01\ \x03\xe0\xea\x98\x30\xf8\xc1\x19\xef\x2c\xf7\x61\x52\x7b\xef\x2a\ \x0c\x54\x43\x4d\x52\x12\x5c\xd1\x99\xdc\x53\xbb\x8f\x09\x87\xef\ \x84\x70\x1f\x1d\x2a\x71\x2f\x02\x2a\x64\xb2\x03\xf2\xce\xe2\x3f\ \x41\x09\x9b\x85\x70\x1f\x19\x08\xa0\x49\x15\xbd\x2e\xfe\x94\xc8\ \x56\xc3\xb3\x9d\xc1\x7d\x8a\x12\xee\x12\xc4\x3d\x22\x35\x41\xfc\ \x7a\xf8\x13\x43\x9f\xa3\x82\x64\x4f\x72\xcf\xf6\xfb\x21\x70\x4e\ \x08\xf7\x71\x61\xa2\xdb\x2f\x41\x05\x3b\x3c\x39\x0e\x24\x45\xc1\ \x62\xa1\x6d\x3f\x23\x59\x74\xdb\x25\x98\x70\x9b\x67\xd8\x3f\xa0\ \xc0\x35\x5c\x8b\x10\xee\x69\x8d\xdf\x0d\xec\x96\x60\xc2\x5e\x4f\ \xf4\x01\xfd\x95\xf0\x84\xd0\xb6\x9f\x96\x24\xba\xcd\x4e\xa1\x49\ \xfb\x12\xf2\x87\x3d\x0f\x79\xb9\xa3\x61\x70\x8e\x96\x05\x9d\xd3\ \x35\x6d\xfa\x57\xa2\xeb\xe7\x51\x64\x40\xb6\xbb\xfc\xc7\x85\xc3\ \x11\x41\xeb\xbd\xe0\x6e\x60\x6f\x3b\x48\x4d\x3c\x09\xc3\xf2\xc6\ \xc3\xa0\xec\xe4\x76\x31\x7c\xc8\x7d\x18\xf7\x94\xe8\xfa\x7a\x08\ \xef\xb8\xc3\x3d\xdd\xa7\x57\x06\x00\x23\x84\xff\xe4\x98\x4e\xe4\ \x2e\xfe\x2c\xe4\x0d\xbe\x03\xdb\x6a\x16\x8c\x18\xfe\x86\xcb\xe9\ \x33\x52\xbe\x81\xc1\x83\x06\x39\xe5\x9e\xc3\xe0\xdc\x5c\x36\x8d\ \xab\xe5\x8c\xcc\x5f\xca\xea\x98\x37\xe4\x6f\x90\x1c\x7f\x4e\x6c\ \xee\x09\xe7\x32\x33\xe1\x9a\x8e\xf2\x8f\xf3\xbe\x77\x85\xf6\xfd\ \xea\x01\x9d\x67\xc7\x88\xe1\x2f\xf0\xf8\x19\x00\x49\x71\x7a\x97\ \xd2\x0f\xc9\xcd\xb7\xcf\x33\xfa\x84\x23\xbf\x18\x3a\x78\xa4\x4b\ \x65\x24\xf7\xd7\xb1\xba\x71\xe9\x47\x0c\x7b\x51\x6c\xee\x39\xdc\ \xd7\x51\xfe\xfb\x87\xc1\x8f\x82\xfa\xfe\x90\xce\xb5\x21\x3f\xef\ \x61\x0b\x6e\x32\x52\x8e\x09\x4e\xab\x4e\x03\xc8\xcd\x49\xb7\xf0\ \x9f\x91\xc3\xa7\xb3\x7d\x0a\x17\x27\x25\xe1\x37\xf4\xb1\x02\x0b\ \xfe\x06\xe7\x64\xb8\x74\xff\x92\x74\xe2\xeb\x48\x3a\x77\x03\xee\ \x21\x53\x0d\x6b\x3b\xc2\x7d\x68\x28\xf4\x8c\x0c\x14\xd6\xf7\x27\ \x2a\xbb\x2f\xff\x84\x9b\x46\x2c\x66\xb9\xcd\xcd\xd1\xc0\xa0\x81\ \x9b\x1c\xc6\xcb\xcd\x7c\xdf\x14\x07\xe3\xde\x94\xff\x8a\x4b\x65\ \x74\x5b\xfe\x55\x70\x06\xb9\xf4\x72\x95\xff\x01\x51\x70\x8f\xe0\ \x79\x7f\x27\xdf\xef\x73\x97\x7f\x42\x52\x1c\x40\xba\x80\x7b\x13\ \x14\x87\xe2\xba\x9a\x7f\x37\xe6\x1f\x72\x54\x30\xc0\x55\xfe\xe3\ \x95\xb0\x4e\x28\xff\x9a\x4e\x7e\xce\x93\x9f\x37\xd1\xa2\x6e\x53\ \x93\xbf\x17\xbd\x4e\x6d\xfd\xe6\x84\x15\xff\x13\x45\xd7\xa9\x15\ \x1a\x78\xda\x55\xfe\xbb\xcb\xd8\x4f\x18\x95\xff\xaa\xc5\xdc\x5c\ \x48\x3b\xee\x7a\xfe\xc1\x62\x2e\x39\x72\xf8\x52\xd1\x75\x6a\x85\ \x1a\xea\x5c\xe5\x3f\x3a\x08\xf4\x82\xee\xf9\x45\x74\xbe\xfe\x34\ \x87\x1b\x39\xec\xdf\x58\xa7\x2f\x75\xcb\xb6\xdf\xe6\x03\x27\x58\ \x1d\x47\xe4\x2d\x67\x75\x16\x5b\x1f\x1e\xbe\x76\x85\x7b\xa5\x12\ \xae\x15\xda\xf7\x77\xe6\xba\x5f\x82\xc7\x60\x48\x4f\x87\x5e\x42\ \xf9\x8f\x8f\x81\x31\x42\xf9\x4f\x8d\x17\xdd\x36\x09\x02\xa0\x52\ \x41\xac\x50\xfe\x13\xa2\xa0\x48\x28\xff\xd2\xf3\xbe\xcb\x03\x03\ \x33\xe0\x66\xc1\xed\x3f\x12\xea\xbb\xcb\xdc\x5f\x82\x67\x80\x6b\ \xc0\xa7\x84\xf2\x8f\x73\xba\x4f\x84\xf2\x8f\x7e\x25\xba\x6d\x12\ \x04\x20\x03\x66\x08\xe5\x3f\x2e\x02\x76\x09\xe5\x5f\x74\xbb\x24\ \x08\x02\xbd\x2b\x20\x98\xff\x30\x68\x12\xc2\x7d\x54\xa0\xf8\x76\ \x49\x10\xcc\xff\x72\xc1\xfd\x7f\x18\x1c\x27\x7e\x43\x42\x00\x02\ \xb5\x00\x7e\x7f\x05\xf0\x9e\x04\xd0\xf7\x79\xc4\x4c\xc4\x7c\x06\ \xfa\xbe\x0c\xd0\x0f\xc3\x61\x4f\x03\xc4\xde\x83\xeb\xc0\x9b\xd8\ \x3d\xe8\x9d\xa2\x7b\xfa\x20\x80\xf8\x3b\x00\x94\xff\x07\x10\x34\ \x0d\xc0\xbf\x10\x75\x5a\x88\x78\xc5\x08\xfe\xf3\xf0\xda\x74\x80\ \xf0\xa7\x00\xe2\xee\xc2\xf5\x48\x5e\xe7\xd5\x21\xe5\x4d\x65\x50\ \x59\x81\x58\xa6\xff\x1c\x93\x0e\xbe\x8b\x00\x02\x66\xa3\x1e\x53\ \xb1\x5d\x3c\x66\xd2\x35\x3d\xb7\x73\x74\xa0\x3a\x4e\x1e\x69\xaa\ \x73\xaa\xfb\xc0\x19\xa8\x03\xd6\x81\xef\x6b\x46\xf6\x18\x88\xfc\ \x84\xbc\x88\x75\xf5\x20\x40\xe2\xad\x38\x3f\xcf\x34\xa7\x55\x43\ \xa5\x10\xee\xfd\x8b\xe1\x9a\xa0\xb1\x70\x9a\xb8\xee\xf7\xae\x0e\ \xfa\x95\x08\x87\xf7\x5b\x06\x08\x99\x8c\xe5\xde\xe2\xbe\x2f\x50\ \xfd\x45\x4d\x40\xdb\x16\x80\x4b\x3a\x10\x7c\x5f\x37\x40\xc4\xe3\ \x00\x29\x23\xdc\xaf\x6f\xca\x83\xf2\xa2\x3c\x5d\xd5\x83\xf8\x20\ \x1e\xc8\x7f\xdd\xe5\x9c\xb8\xa4\xba\xa5\x3a\x76\x49\x8f\x95\x3a\ \x08\x98\x85\x7a\x3c\x02\x5f\x12\xb7\x8e\x78\xef\x53\x6d\xe8\x87\ \xf1\x67\x22\x4e\xb9\x6a\xa7\x5d\xdb\x17\x19\xd9\xb6\xe2\xaa\x1f\ \xa4\xe5\x99\xec\x24\xbd\x3d\xa1\x07\xd9\x9e\x3c\xc6\xf5\x3a\xa7\ \x34\x94\xd6\x13\x3a\x78\xbf\xa7\x67\x6d\x4a\x73\xb1\x6f\xa2\xba\ \xa3\x3a\xa4\x3e\xc6\x13\x7a\xb0\xdc\xae\xd4\xcd\x20\xae\xf9\xdc\ \xf7\x2b\xd1\x8f\xf0\x14\xef\xf6\xda\x62\xcc\x78\x5e\x3f\xe4\xa8\ \x4f\xc3\xfa\x0e\x9e\xe6\x99\xfa\x76\xd4\x16\x13\xfe\x06\xa0\x6e\ \xc7\x1f\xd5\x1a\x80\xfe\x7f\x33\xf5\xa7\x9d\xa5\x07\x8d\x11\x49\ \x37\xb7\xdf\x2e\xd2\xb3\x00\xa2\xef\xef\x58\x9f\x23\x10\x27\xbd\ \xdf\xd3\xe5\x13\xf7\xde\x65\x86\x78\x0c\x5f\xec\x2c\x7b\x5b\x81\ \xed\x99\xfa\x72\x6a\x07\x34\x8e\x2b\x27\x9a\xc7\x51\x1c\xbf\xbc\ \x97\x77\x9a\x9d\x36\xf0\x5e\xa1\x67\xe7\x0f\x34\x76\xd2\x58\x4d\ \xa0\x73\x1a\xcb\xe9\xb7\x2e\xd3\x03\x6d\x26\xdb\xa9\x0e\xa8\x2e\ \xa8\x4e\x42\x9e\x37\x8f\x77\x1e\xea\xfb\x9c\xe0\xa2\x4f\xf9\xa5\ \x58\xef\xd2\x96\xca\xae\xb2\x59\x42\xb7\x43\x19\xe2\x64\x37\xd0\ \x43\x82\x38\xf8\xa9\x6f\xa9\xae\xa5\x1b\xe8\x21\x41\x1c\x9c\xf7\ \x2e\xd1\x7d\xd9\x0d\xf4\x90\x20\x0e\x76\xf6\x2b\xd3\x3d\xdc\x0d\ \xf4\x70\x1d\x65\x38\x87\x2a\xe9\xba\xf9\x9a\x23\x78\x97\xea\x59\ \x5d\x44\xd7\xa3\xdc\xf5\xba\xc0\xb6\xff\x10\x7d\x37\x04\xeb\xb1\ \xce\x9d\x72\x03\xaa\xc0\x54\x0f\x9d\x68\x9f\x4f\x05\xce\x91\xab\ \x71\xed\x54\x8f\x6b\xc9\x06\x00\xcd\x3a\x13\x54\x88\x64\x0c\x47\ \xd7\xe0\x1c\xbe\xb2\xf3\xd6\x6d\x1c\x02\x2a\x4d\x65\x51\x99\xaa\ \xf5\x6d\x7a\x90\x4e\x49\x6b\x51\xc7\x35\x00\x3e\xe5\x9d\xac\x47\ \x99\x1e\x82\xb0\xce\xe3\x50\x8f\x01\x58\x1f\xea\x75\x6d\x7a\xa4\ \x61\x38\xa1\x16\xd7\x34\xa8\x07\xae\xed\xda\xcb\xa7\x96\xfb\x66\ \x4c\xd2\x33\x70\x05\xfa\xf0\x73\x78\xed\xbb\xb6\x32\x74\xbb\x7d\ \xcb\x8d\x27\x71\x7e\xe0\x9c\x9b\x55\x00\xa9\x68\x7f\x38\xf2\xd3\ \x11\x3f\x6c\x0f\xc4\x29\xd9\xa3\x59\x27\x0c\xc4\x4b\xc8\x6a\xcf\ \xd7\x3f\xe5\x99\xdc\x20\x5c\x8f\xc4\x5a\xcf\xfb\x23\xd5\x2d\xd5\ \x31\x71\x2c\x44\x07\x6a\x1b\xd8\x66\xfe\x8b\x69\xf7\xf0\xf2\xf9\ \xae\x5f\xe9\xa5\xc9\xc4\xb9\xbd\xfb\x80\xfd\x4a\xcf\xfb\x87\xac\ \x38\x7d\x1d\x9d\x47\x56\x42\x26\x96\xc9\x08\xaa\x9f\x55\xa6\x32\ \xd3\x4d\x65\xa2\xef\x31\x6e\xf8\xb7\x0e\x82\x56\x99\xda\x93\xd0\ \xfa\xb6\x46\x6a\x1d\x40\xa8\x9b\xfd\x12\xa5\x0d\xad\x36\xe5\xd5\ \x51\x3d\xa8\xbf\x22\x5b\xdc\x19\x23\xa8\x2e\xa9\x4e\xd3\x5d\x2f\ \xff\x4c\x76\x0d\x84\x12\x97\xc4\x29\x71\x2b\xe8\x01\x10\x4f\x42\ \x6a\x60\x86\x50\xdd\x95\x35\xbc\xb2\x1b\x4c\xb6\x93\xbf\x52\x3b\ \x68\xb7\x5f\xc0\xfc\xa9\xcf\xa4\x36\x16\x57\xdb\x21\x3b\xdb\x6d\ \x03\xd4\x7f\x90\x2f\xf8\x95\x3b\xe1\x01\x7f\xf3\x43\x5d\x89\x73\ \x4a\xa3\xf2\xa0\x1e\x64\x13\xf5\xd7\x64\xa3\xb3\xf1\x81\xfc\x8e\ \xea\x2c\xdc\x3c\xde\x75\xb0\x4c\x06\xc7\xa7\x5b\x5d\xe5\xdb\x9e\ \xa0\xff\x7e\x24\xd4\x57\xe3\x6a\x1c\xe8\xd3\x60\x1a\x23\xa8\x0f\ \xa5\xbe\x91\x40\xed\x9b\xc6\x2f\x4f\xd6\xb3\x10\x7f\xa0\x32\x93\ \xb1\xec\xc4\x3a\x13\x92\x45\xd4\x83\xea\x80\xab\x8f\x64\x73\x1d\ \x69\x5c\x18\x67\x1c\xa2\x01\x0a\x3c\xc1\x3d\x49\xde\xbb\xd0\xc3\ \x7f\x15\xfc\x28\xb4\xef\x4e\x74\xa3\xbf\x94\xe0\x3e\xb4\xf5\x50\ \x9b\x07\x9e\xfd\x1e\x60\x52\x15\xf4\xf5\xad\x80\xdf\x85\xce\x53\ \x92\x25\x1f\x10\x05\xea\x06\xf8\x8f\xf6\x43\xb8\xca\x93\xdc\x73\ \x12\x51\x05\x51\xbe\x95\x46\x41\xf7\x0b\xbd\x4b\x0d\x92\x0f\x74\ \x3d\xf6\xa8\x6b\xe0\x86\xce\xe0\x9e\x93\xc8\x12\xe8\xef\x5b\x6e\ \x10\xe4\x03\x3e\xd8\x0f\xb8\x31\x7f\x91\xe0\x0a\x36\xc0\x7e\xd5\ \x46\xf0\xeb\x4c\xee\x39\x51\xae\x82\x38\xec\x07\x04\x3d\x33\xa6\ \xb9\xac\x2b\xeb\x77\x09\x1d\xc2\x57\xda\x0d\xd0\xb7\x2b\xb8\xe7\ \x24\xb4\x02\xc2\x70\xad\x74\x46\xe8\xba\x20\x56\xf2\x81\x4e\x81\ \x7a\x3d\x6c\x55\x7d\x00\xd7\x75\x25\xf7\x9c\x78\x6f\x87\x6b\xfd\ \xab\xe0\xa8\x50\x1f\x88\x5c\x03\x9e\x59\xdb\x48\x60\x81\xf3\xfc\ \x2a\x5c\x9b\xf5\x16\x83\x7b\x4e\x68\x6d\x18\x5c\x05\x1f\x0b\xf5\ \x01\x7a\x56\x90\xd1\x11\x1f\x70\xe3\x5e\x60\x97\xa3\xf3\x75\x35\ \x6a\xd7\xc1\x74\xd9\x81\xce\xfb\xd6\xb3\xab\x12\x5a\x0d\xd3\xfb\ \x95\x1b\x05\xdd\x2b\xf6\xae\x04\x18\x20\xb4\x8e\xc8\x57\xc6\x9b\ \xf6\xc5\x69\xc7\xe2\x79\x95\x87\xda\xce\x12\xc4\x30\x33\x96\x7a\ \x88\x17\xd4\x4d\x6b\xde\x6b\xaa\x1d\x0f\x9d\xd5\xd7\xfd\x86\x6b\ \xbc\x5b\xc4\xe6\xdb\x9e\xe0\xbc\x30\xd7\xa7\x02\xce\x0b\xf2\x81\ \x12\x3d\xfb\x1c\xcd\x29\x4f\xaf\x5b\xee\x8d\xd4\x4c\xf4\x10\xff\ \xbc\xbd\xe1\xda\x51\x1e\xe2\x66\xa2\x95\xae\x9e\xf2\xab\x36\x7c\ \x81\xe3\x7d\xb8\xd8\x3c\xb7\x27\xa1\x0d\xf0\x17\x1c\x0f\xd6\x0b\ \x7d\x66\x80\xf3\x87\xf6\x9f\x67\xad\xb0\xdd\x2b\x4c\x6d\xd7\x6d\ \xfe\xb3\x78\xfc\x67\x7b\x20\xbf\x25\x96\x7b\x7a\xe9\x5c\xfd\xae\ \xc7\x78\xd7\xe3\xfa\xae\x28\xfd\x0b\xe1\xef\xf0\x8b\x2d\xca\xd5\ \x30\xde\xa7\xc2\x70\x49\xd0\x7d\x82\x32\x83\xe3\xe7\x06\x84\x3b\ \xad\xda\x55\x26\xd6\xf7\x2b\xdd\x87\x7f\xd6\x1f\xb3\x2c\x75\x64\ \xfb\x7f\x4f\x70\x8f\xeb\x7a\x6d\x03\xa4\x8b\xcd\x67\x47\x24\xb4\ \x0c\x6e\x08\x59\x05\xdb\x84\x3e\x83\xa5\xb9\xa1\xbd\x67\xad\xea\ \x12\x3c\xe6\xd8\xf6\x03\x9a\xf9\xdd\x80\xff\xf9\xb6\x7b\xf9\x29\ \x6f\x4d\xa9\xdb\xdc\x5f\xa0\x39\x9e\xd8\xf3\x7b\x4f\x48\xd8\x2a\ \x50\xfb\x57\x40\xb3\xd0\x79\x01\x3d\xeb\xb6\x7e\x16\x47\x73\x34\ \xad\xc6\xaa\x9e\xc7\x88\xcf\x3f\xcd\x49\x2d\x74\xd2\x98\xe6\x2c\ \x6e\x72\x5f\x8f\x6b\xbb\x2e\xff\x5f\xaf\xce\x96\xb0\x2a\x78\x12\ \xe7\x87\xe7\x04\xf9\x41\x19\xc3\xee\x05\xe0\xef\x6d\x62\xe7\xec\ \x03\x3d\xd3\xc7\x72\xfc\xa7\x0c\x38\x08\xa9\x9a\x93\x1d\xcf\x67\ \x3c\x6f\x5c\xca\x72\x6f\x6e\x82\x73\xbb\xcf\xb1\xaf\x77\xfb\x9b\ \xdd\xdd\x5d\x82\xd7\xc2\x53\xbe\x02\xef\x1d\xd2\x5e\x89\x04\xde\ \x5a\x91\xc6\x02\xed\xa3\x78\xfe\x04\x62\x8d\x1b\xfc\xe7\xe2\x31\ \xe3\x0c\x84\x45\x7e\x04\x81\x51\x07\x40\x5d\x7d\xa9\x63\x79\xad\ \x31\xe9\x42\x3a\xb1\xe3\x54\xc7\x78\xdf\x8e\x18\xdd\x9d\xd6\xf3\ \x5d\x21\xd4\x1f\xe0\xb8\x20\xe8\xfd\x13\xda\xbb\xc3\xce\x11\x3d\ \xb4\xa6\xd6\x3e\x06\x90\x98\xf0\x19\x84\x46\x7c\x0a\xde\x21\x87\ \x21\xfc\xf6\xc3\xa0\x2a\x3f\xef\x91\xbc\x05\xeb\xd0\x00\x9b\xfe\ \x0c\xed\xdd\x99\x84\x57\xc3\x30\x9c\x27\xee\xc0\x75\x80\xd1\xe9\ \xb8\x50\x61\x60\xf7\xd8\x66\xb8\xf9\x5c\x51\x55\x7e\x16\xa2\xa3\ \xea\x91\xff\x1d\x2c\xff\x04\xff\xf8\x03\x10\xfb\xf4\x31\x18\xf0\ \xda\x4f\xa0\x5e\xd3\xc1\xfe\xc0\x19\x36\xc0\x29\x9c\xd7\xbd\xa9\ \x5d\x0b\x89\x62\xd7\x7b\x77\x93\x88\x7a\xe3\xd5\x21\xd5\x30\xdf\ \x6f\x15\xfc\xec\xf4\xfe\x41\xb9\x91\xdd\xd3\xd7\xd1\x3d\x06\xc9\ \x05\x07\x91\xff\x3a\x08\x8b\xd8\xde\xca\x3f\x1f\x3e\xa1\x4d\x10\ \x3a\x68\x1f\xc4\x3e\x79\x0c\x52\x5e\xfd\x19\xd4\x6b\x0d\xee\xf0\ \x6e\xc0\xf9\xdc\x3a\xda\x8f\x97\xb4\xa9\x73\xff\xa3\xf1\x8f\x22\ \x09\x55\x10\x18\xb6\x06\x8a\x02\x57\xc1\xd7\xce\xee\x2b\xb3\xef\ \x06\xe0\xd8\x90\xee\xc2\xd8\x10\x9b\xb5\x9e\xe5\x3f\x22\xf2\x43\ \xbb\xfc\x5b\xc3\x3f\x76\x3f\x0c\x2e\xdc\x0a\x59\x65\xbf\x08\x2d\ \xe3\x1c\xa2\x5e\xbd\x01\x26\x64\xd4\x81\x8f\xd8\xf5\x79\x39\x4b\ \xd2\x1b\x70\x65\xc8\x6a\xf8\x57\x70\x15\xec\xf4\x59\x05\x67\xdb\ \xbb\x9f\xc0\xbe\x9f\x81\xe3\xc3\x80\x76\x7c\x41\xbd\x56\xcf\xf6\ \xfd\xc4\x7f\x54\x54\x03\xf8\x84\x34\x39\xe5\xdf\x2f\x7c\x3f\xe4\ \xdf\x31\x15\x31\x05\x86\x4e\xa9\x81\xcc\x55\xa7\xad\xf3\x6d\xa1\ \xbd\x57\xd8\xbf\x2f\xd0\xd4\x43\x2e\x3d\x17\x13\xbb\xde\xfe\xa8\ \xa2\x5d\x0e\x57\x45\xad\x82\x7b\xb0\xff\xaf\x0c\xac\x84\x23\xbe\ \xe5\xb4\x27\xcd\xd6\x27\xa8\x5f\xa0\x3d\xd4\xb4\xbf\x97\x7f\x3f\ \x21\xed\xd5\xa3\x2c\xf7\x1c\x02\xc3\xbe\x14\xd4\x07\x64\x8f\x5a\ \xca\xf2\xcf\xe2\xee\xe9\xcc\xe0\x39\xdb\x76\xaa\x1b\x98\x47\xe9\ \xfe\x9c\xd4\xaf\x8b\x2b\x54\xff\x61\xb5\xa0\x8e\xa8\x82\x49\x38\ \x97\x7c\x2b\x68\x35\x34\xfa\x93\x6f\x54\xc0\x69\xda\xab\xe4\x5d\ \xc1\xe8\xb1\x6f\xd0\xd3\x7b\x51\x71\x85\xdf\x58\xf0\x1f\xa9\xdc\ \xd4\x2e\xef\x51\x29\x9f\xc2\xc0\xfc\x77\x60\xf8\xb8\x97\xda\xf8\ \x6f\x43\xe9\xc8\xdb\x0b\x7a\x8a\x6d\xbf\x24\xc2\x25\x3a\xae\x6e\ \x2a\x9f\x7f\x53\x1f\xf0\x85\x0d\xef\xa1\x71\x5f\x42\xe6\xc8\xe5\ \xf6\x38\xb7\x46\xe5\xcb\x2f\xbf\xfc\xa7\x5a\xbb\x5f\xce\x12\x13\ \x5f\xfb\x82\x35\xff\x4a\xe5\x46\x9c\xf3\x1f\x6c\xe5\x3e\x2e\xbd\ \x11\x86\xdd\x36\x5d\x08\xf7\x1c\x1e\x17\xdb\x2e\x49\x84\x49\x7c\ \x5a\xc9\x2d\xd6\xfc\x9b\xd6\x02\x5b\x90\xfb\x26\x88\x57\x6f\x71\ \x85\x77\x0e\xbf\x8e\xba\x63\xca\x95\x62\xdb\x26\x89\x73\x49\x49\ \x59\xdc\x83\x9b\xff\x5b\x83\xee\x07\x0f\xfd\xeb\xac\x8e\xf0\x4f\ \xb8\x57\x6c\xdb\x24\x11\x26\x31\x71\x35\x5f\xdb\xe3\x3f\x36\xae\ \x1a\x86\xdd\xf2\x58\x47\xf9\x17\xfc\x8d\x5d\x49\xc4\x95\xd8\xf8\ \x9a\xa7\xec\xf1\x9f\xa6\x7e\x03\x86\xde\x74\x0f\x0c\x1b\xfb\x08\ \xf2\xf9\xa2\x4b\xfc\xcf\x99\xf7\xc6\xde\xdd\x9f\x35\x7e\xb8\xe7\ \xb3\x6d\x33\xf6\x6d\xdd\xea\xf2\x7f\xae\x49\xd2\x75\xc2\x8e\x01\ \x31\x75\x7a\x6b\xfe\xd5\x59\x8b\x58\xfe\x09\x79\x37\x3f\x08\xf9\ \xe3\x9e\x13\xc4\xfd\xac\xa2\xd7\xe1\x7f\xff\xd9\x0a\xc8\x3f\x8b\ \x3d\x9f\x35\x96\x48\x3e\xd0\xbd\x25\x36\xbe\x7a\xb6\x25\xff\xf5\ \x30\x68\xf8\xe3\xad\xfc\xb3\x18\x7d\x2f\x0c\xbf\xf5\x49\xa7\xdc\ \xef\xe2\x71\x2f\xf9\xc0\xe5\x23\xd1\x31\xf5\x5f\x71\xfc\x27\x24\ \x95\x5a\x72\xcf\x43\xde\x98\x87\x20\xff\xf6\xc9\x82\xb9\x97\x7c\ \xe0\xf2\x90\xfe\x49\xab\x13\x62\x62\x6b\x2f\x51\xdb\xcf\xce\x7b\ \xce\x21\xff\x1c\x86\x8d\x9d\x08\xc3\xc7\x3d\x2f\x88\x7b\x1e\x9e\ \x15\xdb\x4e\x49\x1c\x4b\x6c\xfc\x9a\x81\x9a\x9c\x39\x27\x9d\x71\ \xcf\x1f\x13\x66\x15\xbe\x2a\x94\x7b\xc2\x3b\x62\xdb\x28\x49\xfb\ \x82\xed\x3a\x62\xe8\xe8\xfb\x0e\x0a\xe1\x7f\xf6\x8c\x42\xd8\xb5\ \x43\x30\xf7\xa7\x11\xf1\x62\xdb\x27\x89\x73\xd1\x6a\x9f\x54\xe4\ \x8d\x79\xf0\xd9\xbc\xd1\xe3\xcf\x39\xe2\x7e\xd6\xcb\x85\xb0\xb9\ \xa6\x0c\x76\x7d\xfa\xa1\x53\xee\x3f\xfd\x74\x3b\xdc\x56\x71\x52\ \x27\x2b\x6e\xf9\x00\x31\x09\xe1\xf2\xf7\xb7\x24\xe9\x7a\x19\x34\ \xf6\x89\x1e\x79\x63\x1e\xbe\x7b\xe8\xe8\xf1\xaf\xe5\x8d\xbe\xff\ \xbf\x43\x47\xdf\x7f\x14\x8f\x4d\xf3\x0a\xe7\xfd\xb2\x69\x4d\x19\ \x10\x1a\xd7\x55\x5b\xac\xf7\xec\x71\x7f\x6b\xc5\x49\x40\xce\xf9\ \xb8\x80\x98\x2e\x2f\x6e\x91\xee\x13\x5f\x66\xb2\x6d\x43\x75\xfe\ \xe6\x35\xe5\xc0\xf1\xdf\x9e\x0f\x38\xe0\x9e\x8f\xe3\x88\x3b\xc4\ \xb6\x49\x12\xe1\xb2\xb5\xbe\xea\x79\x3e\xf7\x8e\x7c\x40\x00\xf7\ \x7c\xbc\x85\x7d\xc1\x65\xff\x7e\xcf\x9f\x41\xb6\x6f\xaa\x0d\xfc\ \xa0\xb6\xe2\x17\x47\x3e\xf0\xd5\x27\x1f\xc0\x8e\xed\x8d\xae\x70\ \xcf\xe1\x73\x44\xb0\xd8\xf6\x49\xe2\x5c\x3e\xde\x58\xdb\x1f\x7d\ \xe0\x67\x7b\x3e\xb0\x66\x75\x15\xfc\x73\xc5\x51\x57\xb9\xe7\xf0\ \x0b\x62\x88\xd8\xf6\x49\xe2\x5c\x3e\xde\x58\x63\xe3\x03\xc4\xfd\ \xd0\x05\x5f\x80\x62\xee\x91\x8e\xf2\x4f\x30\x20\xee\x11\xdb\x3e\ \x49\x9c\xcb\x47\x1b\x6b\xe3\xd0\x07\x7e\x24\xee\x37\xd7\x96\xeb\ \xfe\xb9\xe4\xbf\xff\x51\xcc\xd8\x03\x04\xf9\xd2\x5f\xdc\xf1\x01\ \x86\x5d\x27\x4a\xd2\xed\x65\xc7\xe6\xda\x7e\xdb\xd6\xad\x79\xe4\ \x93\x4d\x75\x4a\xc5\xbc\x6f\x26\x70\xfc\x2b\x66\xed\x03\xd9\xbf\ \xcf\xba\xe3\x03\x84\xa9\x62\xdb\x27\x89\x70\x51\x2c\xfe\xee\x5a\ \xc5\xcc\xbd\xc6\x56\x1f\x98\xd3\x04\xb2\xb7\x2f\xba\xeb\x03\x0b\ \xae\x79\xa7\x45\xda\x53\x7a\x99\x88\xa2\xf0\xd0\xca\x56\xfe\x69\ \x1c\x58\x78\xcc\x5d\xfe\x09\xcb\x7b\x14\xb7\x78\xf4\x3b\xce\x92\ \x74\x8e\xc8\x17\x1d\xf7\xc5\xbe\xff\x82\x85\x0f\xbc\xfa\x83\x27\ \x7c\xe0\xdf\x52\x3f\x70\x79\x88\xa2\xe8\xf0\x73\x7c\xfe\x3d\x30\ \x1f\xe4\xb0\x50\x6c\xdb\x24\x71\x2e\x3d\x16\x9f\xf0\x52\xcc\x3e\ \xb0\xdb\xc2\x07\x66\xee\x05\xf9\xeb\xa7\x3d\xe1\x03\x33\xc4\xb6\ \x4f\x12\xe7\x22\x5f\x78\x34\x0a\xc7\x81\x73\x16\x3e\x40\x6b\x82\ \x37\x7f\xf3\x84\x0f\x4c\x16\xdb\x3e\x49\x9c\x8b\x62\xee\x91\x51\ \xd4\xee\x2d\x7d\x60\x3f\xae\x0b\x7f\xf7\x84\x0f\x4c\x14\xdb\x3e\ \x49\x9c\x8b\x62\xce\xe1\x42\xeb\xb9\x00\x8e\x0d\x9e\xb8\x37\x60\ \x44\x8c\x15\xdb\x3e\x49\x9c\x0b\xae\x09\x37\xd9\xf5\x81\xb7\xdc\ \xf6\x81\xf3\x88\xcb\xf2\x9b\x90\x7f\x26\x51\x2c\x3e\xd1\x0b\xf9\ \xfe\xd4\xc6\x07\x0a\x0f\xa2\x0f\x9c\x73\xd7\x07\x7e\x44\x84\x8a\ \x6d\xa3\x24\xed\x0b\x7b\x6f\x70\xf6\x81\xaf\x6c\x7d\xe0\x90\x27\ \x7c\x60\x9f\xbc\xb8\x45\x94\xff\x7e\x90\x44\xb8\xc8\x17\x7d\xd7\ \x0f\xe7\x7f\x07\xed\xf7\x03\x6e\x8f\x05\x5b\x14\xc5\x2d\xd2\xb7\ \x47\xba\xb9\xc8\x17\x1e\x0f\x46\x1f\x38\xda\x49\x73\x42\xe9\xbd\ \xd3\xcb\x40\xe4\x0b\xe8\xde\xc0\xfe\x1f\x6d\x7c\x80\xd6\x86\xee\ \xdf\x1f\x18\x27\xb6\x7d\x92\x38\x17\xd3\xfd\x21\x3b\xfd\x00\xfa\ \x80\xdc\x3d\x1f\x38\x8b\x88\x15\xdb\x3e\x49\x9c\x0b\x8e\x05\x21\ \xc8\x77\x93\x8d\x0f\xcc\xdc\x07\xf2\x37\xdc\xba\x57\xbc\x1f\xe7\ \x83\xd7\x88\x6d\x9f\x24\xce\xc5\xf4\xbc\x70\xff\x5e\x5b\x1f\xa0\ \xe7\x05\xa7\xdc\xf1\x81\x0a\xb1\x6d\x93\x44\x98\x28\x16\x7d\x77\ \x03\xce\xff\x76\xda\xf5\x81\xa5\xbf\xba\xe3\x03\x7f\x17\xdb\x36\ \x49\x84\x89\x62\xf1\x89\xab\x71\x1d\xd8\x68\xe3\x03\x33\xf6\xba\ \xf3\xec\xf8\x34\x22\x50\x6c\xdb\x24\x11\x26\x3d\x17\x9f\x50\xc8\ \x8b\x9a\x56\xda\xfa\xc0\x1e\x90\xbf\xf6\x53\x47\x7d\xe0\x7d\x69\ \xdf\xc8\xe5\x25\x8a\x39\x87\xa7\xd8\x3c\x37\x24\x1f\x58\x7c\xa2\ \xa3\x3e\x20\x3d\x2b\xbc\xcc\x44\x31\xf7\xf0\xed\xb8\x0e\xd0\xdb\ \xf8\xc0\xfc\xe6\x8e\xec\x29\x3d\x87\x08\x12\xdb\x26\x49\x5c\x13\ \xf9\xdc\xaf\x35\xb8\x36\xf8\xd5\x66\x3c\x98\x73\x04\x64\xcb\xcf\ \xbb\xea\x03\x65\x62\xdb\x23\x89\xeb\x82\xeb\xc3\x40\x5c\x1b\x7c\ \x66\xf7\x99\x81\x6b\xfb\x48\xe8\x9d\x92\x4c\xb1\xed\x91\xc4\x75\ \xa1\xfd\x84\x38\x2f\x7c\xcb\xee\xbd\x42\xd7\xf6\x14\x7e\x21\xed\ \x23\xbf\x7c\x05\xe7\x85\x7f\xc7\x39\x81\xce\xe6\x1e\xc1\x12\x97\ \xd6\x87\xff\x10\xdb\x0e\x49\x3a\x2e\xf2\xf9\xdf\x26\xdb\x7b\x86\ \xec\xc2\xda\xe0\x0b\xb1\x6d\x90\xc4\x3d\xf1\x5a\x7c\xa2\x27\x8e\ \x07\xaf\x61\xdb\x67\x6c\xd7\x06\x17\x84\xf8\xc0\x40\xb1\x6d\x90\ \xc4\x7d\x91\xcf\xfb\x66\x10\xf6\x05\xc7\x2c\xfa\x82\xa2\x43\x42\ \xe6\x85\xd2\xb3\x81\x3f\x88\x28\x16\x9f\xb8\x4a\x51\xd4\x54\x6c\ \xd1\x17\xd0\xf3\xc3\xf6\x9f\x1b\x9c\x91\xee\x09\xfe\xb1\x04\xfb\ \xfe\x74\xeb\x3d\xa6\xec\xbb\xa7\x8e\xc7\x83\x70\xb1\x75\x96\xc4\ \xf3\xa2\x98\x7b\xe4\x4e\x1c\x13\x7e\x68\xdb\x57\x76\xd0\xd1\x73\ \xe4\x9b\xc4\xd6\x55\x92\xce\x11\x9c\x1f\x5e\xa1\x98\x73\x64\x02\ \x72\xbf\xbf\xad\x2f\x38\x6a\xbd\xbf\x50\xfa\xdf\xd9\x3f\x81\xe0\ \x7a\x71\x88\x62\xf6\xfe\x25\x8a\xc2\x43\x07\xb0\x5f\xd0\xc9\x17\ \x1d\xd7\xe3\xfc\x70\x81\xd8\x7a\x49\x22\x89\x24\x92\x48\x22\x89\ \x24\x92\x48\x22\xae\x80\xcb\xd2\xd8\x96\xd8\x0b\x83\x0c\x3f\xb7\ \x69\x00\x2d\xfc\x70\x08\xc0\x19\x7e\xb8\x0f\x40\x33\x3f\xdc\xcb\ \x36\xdc\xc8\x0f\x63\x01\x05\xfc\xb0\xdc\x36\x6c\x6d\x8e\x93\x30\ \x63\x19\x9e\xe6\x2c\x6c\xb0\x0c\xe7\xb8\x1b\x6e\xb1\x0c\x87\x74\ \x75\xf8\x8c\x65\xb8\x4f\xa3\x65\xd8\xab\xc0\x32\xdc\xe5\xf7\x0a\ \xad\xcb\xff\xdd\x32\x3c\xc6\x86\x5f\x8b\x04\x76\xfc\xa3\x91\x1f\ \xf6\xb2\xf5\x37\x6b\xff\xb4\xf6\x5f\x0b\x02\x73\x6c\xfd\xdd\x42\ \x21\x3b\xed\x83\x5f\x60\x2f\x0a\xf3\x0a\xec\x43\x61\x5e\x01\x39\ \x60\xd9\xa0\xa6\xb1\x0d\xae\xd5\x22\xb9\xa9\x01\xb6\x66\xd8\xcb\ \x14\x6e\xd5\xb8\x8f\x29\xcc\x58\x26\x6f\xcd\x40\xce\xb5\xe0\x66\ \x8b\xe4\xad\x1a\xe4\xb4\x36\xf1\x02\x8b\xe8\xe6\x12\x42\xac\xfa\ \x80\x1c\x5e\x98\x62\x84\x38\x09\xf7\x69\x2f\x6c\xb0\x0d\xcb\xad\ \xc2\x16\x5d\x15\xc3\x33\x8f\x15\x6b\x85\xac\xc3\x05\x56\xe1\x46\ \xab\x70\xb3\xad\x82\x5e\x60\x99\x40\x6e\x15\xb6\x54\xc0\x4e\x86\ \x21\xfc\xf0\x19\xdb\x02\x7a\xf1\xc3\x06\xeb\x02\x0b\xac\x3a\x67\ \x01\x05\x7a\x54\x01\xc6\x8a\x02\xc6\x8a\x02\xb0\xa6\x40\x40\x15\ \xbb\xaa\x90\x45\x98\xb1\xae\x21\x2b\x05\x6d\x6a\xac\xd9\x2a\x7c\ \xc6\x4a\xe1\x16\xab\xb0\xc1\x4a\x61\xc6\x4a\x61\x2c\xc0\x32\xdc\ \x68\x15\x6e\xb6\x34\x08\x0b\xb0\x0c\x1b\x2c\x0d\x42\x0b\xac\xc2\ \x8d\x56\xe1\x66\xab\xb0\xc1\x32\x3f\x0f\x48\x0c\xb2\x98\x8c\xb8\ \x97\x5a\xbc\x2c\x54\xf6\x67\x92\xc4\x58\x26\x38\x2a\x84\x79\x3e\ \x3a\x8c\x99\x87\x98\x1f\xa7\x64\xe6\xa7\x26\x33\xf3\x06\xaa\x99\ \xd9\x99\x9a\xae\x45\x96\x96\x99\x85\xc7\x47\x73\xd4\x8c\xb7\x10\ \xdd\x07\x24\x31\x9a\xe8\x60\xe6\x87\x08\x3f\x06\x08\x31\x21\x0c\ \x68\x52\x19\x18\x98\x21\x2e\x32\x55\xcc\xe1\xf8\xb8\x0b\x09\xed\ \xe9\x9e\x96\xc0\xf8\x46\x05\x32\x47\x39\xdd\xf1\x1c\xd4\x03\xc4\ \xd7\x9d\x67\xc3\xde\x98\x88\x33\xd7\x3b\xd2\x3f\x22\xb0\xa5\x28\ \xd2\xdf\xa4\x3b\x21\x39\xc6\x9d\xb2\x74\x90\xa5\xfe\x89\x05\x9d\ \x7b\xc8\x06\x26\x31\xee\xbc\xdd\x6f\xc5\xa5\xa7\x33\x5e\xca\x40\ \xe6\x24\xa7\xbb\x32\x00\xeb\xde\xa9\xdf\x9c\x84\x1c\xed\x17\x36\ \xd7\xb5\x19\xdf\x43\x4e\xe6\xa3\x90\x9b\xad\x66\x41\xe7\x74\xcd\ \x3a\x5e\xce\xc0\x9d\x6c\x1e\x2e\xda\xf0\xcd\xc0\x81\x8c\xcd\x9e\ \xc5\xe8\x50\x66\x2c\xa7\x3b\x21\x2e\xdc\x79\x5e\xb9\xd9\x4b\x21\ \x3b\x73\x38\x68\xd2\x2c\xeb\x37\x27\x73\x2e\x0c\xca\xce\x87\x2c\ \x4d\x19\xa2\x94\x3d\x1f\x94\x39\xcf\x22\x8e\x26\xed\x12\x9b\x96\ \xf2\x70\x95\x87\xf4\x14\x26\xcb\x46\xff\x60\xe6\x55\xbe\xfe\xc9\ \xb1\x42\xf4\x5f\xc2\xea\xa0\x4d\xbf\x64\xf5\xdb\x59\xac\xef\xd3\ \x3c\x3e\x4e\xb3\xd7\x2c\x38\x4a\x6f\xe9\xb0\xfe\xda\x74\x66\x1a\ \x5f\xf7\xc8\x48\x46\x8e\xbe\xf3\x21\x5f\xff\xf4\x24\xe7\xf9\x64\ \x6b\xbf\x41\x6c\xec\xb0\x3f\x53\xda\x6c\xcd\x37\x1d\x49\x5b\xcf\ \xd7\x3f\x3e\x8a\xb9\x2e\x2a\x88\xf9\x96\xaf\xbf\x26\xcd\x23\xed\ \xad\xb3\xb0\x5b\x9b\xc1\xfc\x85\xd3\x1f\x7d\xdd\x0f\xeb\xff\x77\ \x4e\x77\xea\x83\xba\x81\x8e\x8e\xa1\x62\x8e\x6a\x55\x4c\x6b\x3f\ \x1a\x7e\x1b\x13\x1c\x92\xcb\x5c\xf2\xbf\xcf\x08\xbe\x4f\x23\x9e\ \x31\x82\xf2\x71\x23\x24\xdd\x8e\xbe\xa6\xb1\x9f\x87\x2a\x87\x81\ \xfe\xf7\x1a\x21\xe2\x59\x23\x84\x16\x18\x20\xec\x45\x23\xc4\x3c\ \x6c\x84\xd4\x91\x8e\xcb\xa5\xdf\x28\x0e\xc5\xa5\x34\x94\x96\xf2\ \x50\x65\xdb\x8f\x4f\x65\x93\x0e\xa4\x4b\xe8\x4b\x06\x04\xea\xf5\ \x84\x11\x12\xc7\x31\xbf\xf6\xbf\x9f\xf1\x25\xdd\xfb\x96\xea\x6e\ \xee\x5b\xa2\x6b\xee\xbb\xf2\x12\xd8\x83\xef\x32\x3d\xc4\x4e\x30\ \xe9\x95\x3e\x94\x81\x94\xb1\xc8\xd1\xb3\x06\xe8\xf7\x8e\xce\x6e\ \x7c\x42\x50\xa1\x01\x12\xef\x34\x42\xfa\x30\x86\x45\x02\x9e\xd3\ \x35\x47\xf1\xbd\x31\x2f\xca\x93\xf2\xa6\x32\xa8\x2c\x2a\x93\xca\ \x76\x94\x06\x75\xfe\x16\x75\x1f\xdd\xaf\xe4\xd2\xf7\x0e\xe3\xf0\ \x40\xfa\x7a\xbf\xad\x83\x7e\xef\x39\xd6\xdb\x22\xfe\x4a\x8c\x5f\ \x6c\x02\x9d\x0b\x4a\xf3\x9e\xb9\x8c\x15\x02\xe3\x97\x5c\x3a\x81\ \x38\x26\x24\x6e\xfb\xf9\x08\x2b\xcf\x9d\x34\x14\xdf\x3a\x4d\xbf\ \x95\x97\x8e\x29\x67\x1a\xb2\xfa\xad\x6c\xd9\xe8\x53\xa2\xdb\xd2\ \x97\xf7\xbb\x5f\x85\x01\x42\x56\x19\xc0\xdb\x5e\x39\x25\xe8\x57\ \xa5\x3a\x50\xae\x46\xbf\xaa\xc3\x71\xba\x01\x79\x47\xc4\xd5\x30\ \x10\x58\xae\xb7\xab\x1b\x5d\xa3\xdf\x28\x0e\xc5\xa5\x34\x94\x96\ \xf2\xf0\x2d\xd3\xb1\x79\xda\xf8\x15\xa6\x09\x45\x1d\x92\xd6\x62\ \x7b\x6b\x30\x01\xcf\x99\xc0\x32\xdd\x7a\xd2\x39\x72\xa6\x9e\x1d\ \xc7\xfc\xde\xfb\x5d\x1e\x56\x72\xd1\x2b\xa0\xdc\x50\xc9\x95\x4d\ \xc7\xa8\x6a\x93\x7e\xb1\x6b\x8c\x10\xb9\x1a\xdb\x1b\xe6\xa5\xc4\ \x63\x7c\x2d\xea\x50\x6f\xd2\xc1\x1a\x54\x46\x32\x96\x17\x8d\x69\ \x23\xaa\x0c\x2c\xe8\x3c\xd9\xac\x83\xbd\x34\x94\x17\xe5\xa9\x34\ \x97\x11\x89\x69\xa8\x4c\xae\x6e\x38\x68\x1a\x18\x46\xf3\x3e\xb3\ \x2c\xb1\xfc\xa2\x82\x74\xb6\x1e\x83\x93\xca\x98\xeb\xfd\xca\x0c\ \x9f\xf2\xeb\x2c\x0e\xf3\xb1\x57\xa6\x48\x58\x9f\xb5\x8b\xb9\xda\ \xd1\xfc\x93\x24\xb4\x8c\xe9\xeb\x5b\x66\xf8\x98\x6f\x43\x6c\x77\ \xb0\x61\x3d\x53\xa7\xda\xc0\x5c\xdb\x9e\xee\x9c\xf8\xd5\x31\x7d\ \x82\xcb\x0c\xf5\xa8\xbb\x91\xb3\x21\x12\xfd\xd4\x9a\x7f\xcd\x6a\ \x44\xb5\xe3\x32\x35\x6b\x4c\x70\xf8\x7b\xb5\x29\x0f\x27\xba\x1b\ \x92\xdf\x6f\x59\x91\x59\xc3\x5c\x25\x44\x77\x4e\x42\x56\x33\xbd\ \x03\x2a\x8d\x53\x51\xf7\x16\xce\x86\x20\x6c\xd3\xa9\x3c\xbf\xd7\ \xde\x87\xb8\x13\x75\x58\x6b\xbf\x6c\xed\xfd\x88\x07\x1c\xe8\xbe\ \xd6\x94\x96\xf2\x70\xa8\xfb\x3a\xe6\xac\xfa\x7d\x66\x92\xaa\x9e\ \xe9\xf0\x77\xe0\x82\x2b\x8c\xa9\xbe\xa5\xfa\xcf\x51\x7f\x86\xec\ \xf0\x29\x35\xf9\x13\x71\xa1\x99\x8f\xe3\xa4\xd6\xb1\x8e\xda\xbf\ \x99\x74\xb4\xfb\xdb\x03\xa6\xb4\x9a\x05\x76\x7f\x37\x62\x5b\xdd\ \x9c\xb5\x86\x89\xee\xa8\xde\x7c\x09\xaa\x64\xae\xf4\x2d\x37\xdc\ \xef\x5d\xa6\xdf\x47\x76\x10\x17\x01\xd8\x17\x26\x62\x5f\xa8\x9e\ \x89\xba\x3c\xea\xa0\x8e\xef\xd2\x41\xfc\xa8\x63\xa0\xae\xb3\x6d\ \x3f\x94\x46\x33\x8b\xed\x53\xda\xe2\xa3\xaf\x60\x9d\x7f\x96\xb8\ \xe9\xe2\x6d\x9a\x7a\xa6\x97\x27\x74\xe7\x4b\xe8\x2a\xe6\x2a\xff\ \x72\xe3\xdd\x7e\x15\xfa\x2d\xd4\x36\xd8\x3e\xbd\xc2\xd4\xa7\xdb\ \xeb\x1b\x53\x1e\xff\x1a\xfc\x23\x76\x43\xf8\x5f\x8f\x43\xfc\xd4\ \x93\x90\x5e\x76\xd1\xbe\x9d\x0d\x4c\x8b\x6a\x3d\x53\x8d\x3a\xdf\ \x8c\xe8\xe9\x69\xbd\xed\x49\x64\x15\xe3\x13\x54\x62\x7c\x08\xfb\ \xdb\x5a\xff\x12\xfd\x21\x9f\x32\xbd\x3e\x1c\xfb\xed\x04\x6e\x6c\ \xa8\xc7\xb9\xd9\xc8\x8f\x21\x30\x6c\x27\xf4\x0b\x6e\x62\xe1\x1d\ \xda\x04\x59\x0f\x55\x41\xd6\x5b\x87\x75\x58\xcf\x5f\x22\x8a\x07\ \xd6\x32\x77\x65\x34\x30\x37\x74\x85\xce\x8e\x24\xba\x0c\xae\x09\ \xae\x32\x06\x07\xad\x32\xe4\xf8\x57\x18\x1f\x0e\xa9\x62\xa6\x44\ \x2f\x3d\x55\x18\x9d\xba\xe1\x74\x78\xe4\x07\xe0\x1d\x72\x08\xfc\ \x23\xf7\x40\x6a\x4e\x39\xe4\xdd\x56\x00\xc3\xef\x9c\x66\x1c\xf5\ \xc8\xe2\xc9\xb7\xcd\x2a\xef\xb6\xef\xde\xc5\x27\xaf\xe8\x1d\x13\ \x53\xfd\x55\x94\xb2\x0e\xc2\x94\x1f\x41\xf6\x4d\x8b\x60\xf8\xb8\ \x17\xf9\x38\x97\x3f\xee\xc5\x6e\xfd\x5d\xb1\x98\xd8\xaa\x45\x51\ \xca\xb5\x90\x98\xbc\x02\x86\xdd\x32\xc9\x42\xff\x51\x77\x4d\x85\ \xd7\xdf\x78\x6f\xd5\x9e\xed\x5b\xbb\xed\x7f\xb0\xc7\xc5\x97\x86\ \x44\x47\xad\x3d\x95\xa1\x2d\x62\xff\x63\x3c\x6f\xcc\xc3\x30\xfc\ \xf6\xc9\x30\xf2\xce\xa9\xf0\xe6\x9b\xef\x99\xfe\x6b\xfe\x3f\x5b\ \x8f\xa1\x0d\xdd\x96\x87\xe4\xb4\xb7\x47\x0f\x1e\x31\xe1\xd4\x90\ \x51\xff\x04\xc2\xf0\x31\xf7\xc1\xd2\xa5\xcb\xd9\xff\xc6\xe5\x61\ \x96\xd8\x7a\xb6\x27\xb9\x23\x1e\x0a\x1a\x32\xfa\xfe\x82\x9b\x6f\ \x7f\x68\xdd\xe2\x79\x0b\xce\x7f\xb2\xa9\xce\xac\x77\x23\x2c\xff\ \xe0\x7f\x70\xd5\x3b\x17\x7e\x90\xbd\x7d\x71\x0e\xc2\x47\x6c\x5d\ \xdb\x93\x6d\xeb\xab\xaf\xdb\x5c\x53\xde\x44\xff\x4f\xf8\xc9\xe6\ \x7a\x78\x73\xd3\x2e\xb8\x7e\xc5\x39\xd3\xf7\x23\x4c\x38\x82\x18\ \x88\xe8\xb6\xef\x82\x6c\xad\xaf\x4a\x47\x1b\xbe\x5f\xb8\xb2\xe1\ \xe2\x0d\x4b\xbe\xe3\xeb\xce\xe1\x37\xc4\x5d\x62\xeb\xd9\x9e\x6c\ \x5b\xb7\xfa\x86\xc4\x57\x77\x8d\x91\xcf\xdc\x67\x90\xbd\x71\xc6\ \x9e\x0d\x97\x14\xc5\x17\xbb\xf5\xff\x3d\xca\xe7\x7d\xd3\x4b\x31\ \x6b\xff\x36\xf9\xec\x83\xa6\xef\x55\xdb\xda\xa0\x43\x1b\x26\xe2\ \xb1\xdb\x8e\x71\x8a\x39\x87\x93\xe5\x33\xf6\x9e\x94\xcf\x39\x6c\ \xfa\x7e\x86\xad\x0d\x17\x11\xdd\xfa\xbf\x57\xe5\x45\x4d\xb7\xca\ \x67\xec\xd1\xc9\xe9\x1b\x20\x6f\xd9\xb5\xe1\x02\x62\x8c\xd8\x7a\ \xb6\x27\x68\xc3\x63\x68\x43\x8b\x7c\xee\x11\x47\x3c\x9c\x42\x24\ \x8b\xad\xa7\x43\x59\x70\x4c\x21\x2f\x3c\xf4\x1c\xda\x60\x68\x87\ \x87\xbd\x88\x7e\x62\xab\xea\x50\x16\x1c\x93\xcb\x8b\x0e\x3f\xcc\ \xfa\x52\x51\x93\xe9\xdd\x10\x5b\x1b\xd6\x20\xba\x64\x7d\xd0\x11\ \x91\x2f\x3c\x2e\x57\x14\x1d\xbe\x0f\x6d\xf8\x4d\x4e\xdf\xd1\xb7\ \xb5\xc1\x80\x7d\xd2\xc3\x62\xeb\xe9\x4c\xe4\xb3\x0f\x0c\x93\xcf\ \xdc\xfb\x13\xdb\xb7\xda\x8e\x0f\xa7\x11\x01\x62\xeb\xe8\x4c\x14\ \xf3\xbf\x0d\xc3\xf1\xed\x33\x04\xc8\xe8\xdd\x53\x4b\x1b\x56\x2a\ \xde\xbe\xe8\x25\xb6\x8e\xce\x04\xdb\xc1\xf5\xc8\xc1\x6b\xc8\x45\ \x8b\xec\xd5\x1f\xf9\xfa\x9f\x47\xf4\x17\x5b\x3f\x41\x32\xf7\x6b\ \xfa\x86\xe0\x08\xf9\xac\x7d\x4d\xf2\x05\xcd\xad\xfd\x2b\xb6\x83\ \x17\xc4\x56\xcd\x15\xc1\x31\xba\xb7\xa2\xf0\xd0\x24\x6c\xd7\xbb\ \xd0\x9f\xf4\x68\xc7\x6c\xb1\x75\xea\x88\x20\x17\x57\x22\x82\x65\ \x4b\x7e\x76\xe9\x7e\x62\x77\x15\x6e\xbf\x10\xb7\x15\x90\xdd\xc5\ \xc8\x6d\xe7\xed\xd5\x76\x6c\xa4\xa3\x97\xed\xb1\x80\x7f\x94\xdb\ \x1e\xb9\x52\x1c\x1d\xb9\x78\x5c\x39\x5c\xf9\x9c\x3e\xec\x1e\xc6\ \x1c\x30\x25\x20\x45\x0b\xcc\xbb\xc3\x9a\xcd\xbb\xc8\x5a\x37\x77\ \x15\x98\x6d\x31\x98\x8f\x8c\x79\x13\x18\xc3\x6d\xfe\xe2\x8e\x05\ \xe6\xcd\x56\xcd\xe6\x5d\x67\x67\xcc\xc7\x16\x39\x97\x01\x97\x70\ \x9a\x55\xc2\x10\xcb\x0c\xb8\x5d\x5d\xdc\x6e\xae\x16\x73\x46\x06\ \x73\x46\x0c\xb7\x8d\x8d\x3b\x6e\x33\x1f\x7f\xb3\xdc\xa7\x15\x8a\ \x18\x24\x73\x6d\x9f\x56\xff\xfe\xe0\x95\x90\x00\xbd\x09\x2a\x15\ \xf4\xcc\xce\x86\x1e\x9e\x42\x6e\x2e\xb4\xbb\x7e\x8c\x0d\x87\x05\ \x91\xfe\x60\x50\x06\x02\xa4\x27\x01\x0c\xcc\x00\xc8\x54\x79\x0e\ \x03\x55\x70\x01\x8f\xd3\xec\x95\xdd\x3f\x02\x26\x62\xd9\x40\xa0\ \xb2\x3d\x59\xae\x35\xd2\x53\x74\x16\xdf\x5b\xce\xc8\x00\x79\xb8\ \x9f\xe1\x3b\x2a\x3b\x36\xd4\x51\xba\x1f\x20\x53\xdd\xc2\x0b\x1f\ \x82\x9c\xcc\x67\x58\xd0\x79\xeb\x75\x36\xce\x0f\xed\x96\xaf\x4e\ \x35\x34\x65\x66\xb6\x71\x11\x13\x0a\x39\x9c\xed\x29\x71\xf6\xd3\ \xe4\x66\x3f\x85\x7c\x7c\xd2\x1a\xce\xd2\xbe\x06\x59\x9a\x3a\x3c\ \xd6\x41\x36\x9e\xb7\xd6\x31\xc6\xa1\xb8\xce\xea\x40\x95\x0a\xa9\ \x5c\xf9\x51\x41\xf0\x02\x57\xbe\x2a\xc5\x7e\xfc\x41\x99\xab\x31\ \xef\xe3\xce\x39\xce\x38\x86\x71\xab\x85\xf8\xc2\x13\xbc\xf2\x4b\ \xb8\xf2\xb5\xe9\x9d\xcb\x7d\x9b\x9e\xb0\x8c\x2b\x3f\x2c\x93\xd9\ \x18\x34\xda\x08\x81\xe3\x8c\xec\xf3\x7d\x4d\xa6\x65\x5c\xad\x16\ \x20\x69\x9c\xe9\xd9\x7d\xff\xfb\x8c\x90\x36\x82\xb1\xc9\x8f\xae\ \xf5\x1f\x6f\x64\xe3\x50\x5c\x4a\xc3\xff\x9d\xf2\xa4\xbc\x63\x1f\ \x32\x42\xfc\x3d\x46\x48\xb9\x85\x59\x45\x65\xf7\x2d\xd1\xbd\xc9\ \x3d\xfb\xe0\x40\xcf\xe6\x23\xff\x65\x60\xf7\x40\x44\x3d\x69\x00\ \x9f\xb7\xda\x7e\xe3\x10\x54\xa4\x87\xb8\x07\x8c\x10\xf7\xa0\x91\ \x3d\xb7\xfe\x9d\xd2\x44\x3d\x61\xca\x83\xf2\x62\x9f\xf7\x5b\xc6\ \x61\xcc\x65\xff\x66\x9d\xb6\x0b\x71\x26\x64\x91\x3e\xd7\xa7\xe4\ \xd2\xcb\xfd\x4a\x75\x17\x4d\xcf\x4d\x0c\xec\xb3\x6d\xef\xd2\xb6\ \x78\xc1\x95\x7a\x48\xac\xa5\x67\x22\xd8\x76\xeb\x81\x7d\xee\xec\ \x57\xd6\x66\x33\x9d\xd3\x35\xfa\x8d\xe2\x50\x5c\x4a\xd3\x5a\x9f\ \xe6\xe7\xe5\xc9\x6b\x4d\x79\xa4\xd5\x33\x67\x03\x4a\x2f\xbd\x44\ \x65\x73\x3e\x10\x5a\x6e\xfc\x07\x17\x3f\x86\x7d\x2e\x0b\x90\xd1\ \x60\xca\x4f\xb3\xce\x3e\x54\x0d\x26\x38\xfa\xdd\x41\x1e\x06\xed\ \x16\xb8\xc5\x5e\x1f\xe8\x5f\x69\x9c\xc0\x3d\x3f\x22\x7b\x34\xed\ \xe4\xdd\x21\x34\x80\x0e\xd1\xee\x3d\xb8\xb0\x72\x63\x3e\xd6\xfd\ \xcf\xa4\x43\x18\xd6\x59\x86\x59\x07\xed\x24\x3c\x96\x5a\xe5\xb7\ \xd0\x0c\xfe\xb5\x52\x73\x5c\xeb\xba\x58\x0f\x27\x92\xdf\xbf\x94\ \xdd\x5e\xd9\x9c\x04\x57\x30\x3e\xbe\x65\xfa\x12\xf2\x51\xe2\x36\ \xa1\x86\x01\xcd\x0c\xcc\xf7\x66\xcb\x3c\xb5\x93\x31\xdf\xc9\x7a\ \xcb\x6b\x63\x80\x8d\xdb\x5a\x2e\xd6\x37\xda\xfc\x46\xd6\x1a\x70\ \xb8\x3f\xd4\x91\x04\xac\x32\x26\xf8\x96\xeb\x57\xa0\x6f\x5e\xa0\ \xe7\x79\x09\xa5\x8c\x05\x97\xe9\x2f\x9f\x84\xd0\x9c\x26\x48\x9a\ \xfb\x3b\xa8\xd6\x98\xf5\x58\xd5\xca\xfd\x69\x2c\xfb\xf5\x84\x0f\ \x2e\x2a\x5d\x2d\xd7\x5a\xa2\x57\xc3\x95\x81\xa5\xc6\x5b\x03\x4a\ \xf5\x8b\x03\x2b\x0d\x8d\x51\xd5\xcc\xcf\x89\x6b\x19\x63\xc2\x23\ \x7b\x21\x20\xec\x4b\xf0\x0e\x39\x0c\xca\xd4\x8f\x61\xf0\x4b\x75\ \x06\x6d\xd9\x2f\xaf\xe0\x90\x30\x1c\xfd\xb2\xb7\xbb\xe5\x3a\x93\ \x98\x98\xea\x25\x11\x91\xef\x43\xbc\x0a\x0b\x1c\xf7\x12\xe4\xdf\ \x31\x05\x6e\xba\x6b\x4a\x97\x7d\xbf\x36\x36\xae\x6a\x74\x74\x54\ \x1d\xe4\x8e\x7c\x0a\xcb\x7f\x9e\x2d\xff\xff\xfe\xb5\xe0\xfc\xee\ \x1d\x5b\x9f\xef\x2a\x1d\x06\xa4\x2f\x7b\x97\x9e\x01\x0d\xbd\x69\ \x3c\x3c\xf6\xd4\x2c\xd8\xb9\x7d\x0b\xec\xfe\xac\x11\x50\x87\xd1\ \x5d\xa5\xc3\x90\xd1\x0f\x0c\x7b\xea\xe9\x29\x2b\x37\xaf\xad\x84\ \x5d\x3b\x3e\x84\x45\x9b\xf6\xc0\x15\xc5\x17\x8f\xcb\x8a\x5b\x26\ \x74\x95\x0e\xdb\xd6\x57\xdf\xb8\xb9\xa6\x7c\xd7\xac\x92\xcd\xfa\ \x2b\x8a\x2d\xbe\x65\x54\x8e\xf0\xf8\x33\x77\x7b\xb2\x7d\x63\x4d\ \xef\x1b\xe7\xed\x7d\x46\xbe\xf0\xb8\xf5\x37\x74\x36\x5d\x51\xdc\ \x72\x65\x57\xe8\xe0\x35\xbf\xb9\xb7\x7c\xe6\xbe\x3d\xec\x7d\x09\ \x4b\x1d\x36\x76\x55\x3d\x28\x8a\x0e\x47\x2a\x66\xee\xfd\x49\x66\ \xfb\x5f\x04\xa5\xf2\xe2\xae\xf9\x9e\x98\x7c\xce\xe1\x14\xf9\xcc\ \xbd\xa7\xec\xe8\x30\xa5\x2b\xca\x37\xe9\x70\x24\x89\xea\x41\xfe\ \xea\x0f\xfc\xf2\x0d\x88\xc1\x5d\xa5\x83\x62\xce\xe1\x70\xac\x87\ \x03\xf2\x45\xdf\xf1\xbf\x07\x7f\x14\xd1\xee\x7e\x31\x8f\xea\x30\ \xff\xdb\x6b\xd1\x27\x6b\xe4\xf3\xbf\xe5\x7f\x67\x6c\x46\x57\x95\ \xcf\x89\x7c\xf6\xc1\x09\xe8\x17\xa7\xcd\xdf\x37\xfa\xb5\xa7\x08\ \xdf\x38\x56\xcc\xfd\xba\xaf\xbc\xf0\xd0\x74\xd9\xb2\x53\xeb\x50\ \x87\x4e\x1f\x23\x9d\x09\xbd\x54\xd7\x2c\x93\xf5\x6a\x34\xbd\xcb\ \x2b\xb7\x06\x3f\x2e\xc5\xa1\xb8\x94\x86\x5e\xd8\x64\xe8\x7d\xb8\ \x02\x39\x00\xd3\x0b\xe1\x65\xbe\x21\x51\x40\x77\x30\x72\x00\x9a\ \xe9\xae\x0f\xdd\x71\xc1\x1f\x0d\xfc\x08\xd3\xe9\xd6\x06\xdd\x1f\ \xe1\xee\x53\xd0\x86\x69\x7a\x88\x23\xe4\x3e\x45\x62\x2c\xd3\x3b\ \x2a\x84\xc9\x8d\x8d\x60\x86\xa9\xd2\x98\xa1\x99\x1a\x66\x48\x87\ \xa0\x66\x32\x73\xd4\x96\x7b\x9a\xd2\x12\xa0\x67\x74\x08\x34\x7a\ \xea\x1e\x80\x26\xcd\xb8\x21\x26\xe2\x4c\x0f\x2e\x7f\x65\xb0\xe1\ \x9f\x94\x77\x7c\xa4\xf5\x5a\x50\x87\xc7\xdf\xcd\xe7\x2d\xb8\x9e\ \x7e\x97\x05\x9d\x9b\xd6\xf4\xbf\x9b\xe3\xd8\xb9\x97\x90\xac\x6b\ \xfd\x1f\x47\x65\x20\x6c\xa4\xfc\xd3\x12\x2d\xe3\x64\x6b\x3f\xc7\ \x3c\x56\x98\xf3\xfa\x16\xd7\xed\x1b\x58\xd0\xb9\xe9\xda\x0a\x53\ \x1c\x3b\xf9\x6b\x33\xa0\x86\xf2\x8e\x53\x42\x8f\xc8\x00\xf8\x81\ \xf2\xd7\xa4\x59\xc7\xbb\x80\x38\xd9\x4e\x5d\x9c\x34\xc7\xb1\xbb\ \x0e\x3e\xaa\xce\x60\x14\xca\x4c\xb8\x36\x34\x83\xd1\x05\x0f\x63\ \x20\xf5\x26\x7a\x17\xa0\x2d\x4e\xc6\x10\x86\x5d\xbb\x26\xdf\x86\ \xf3\xf0\x81\x6d\x6b\x5f\x3a\xa7\x6b\xf4\x1b\xc5\xe1\xad\xed\xd9\ \x3c\x12\xef\x32\xc2\x80\xd1\xcc\xd9\x01\x63\x98\x2b\x71\xad\xf9\ \x09\x7f\xed\x17\xf0\x8a\x1e\x94\x4f\x1b\x20\x64\x86\x9e\xdd\x5f\ \xde\xba\x6e\x5d\xae\x83\x88\xe7\x0c\x2c\xe8\xbc\x35\x0d\xc6\xa1\ \xb8\x94\xc6\xff\x15\xcb\xf5\x2e\xe6\xbd\xdd\xa7\x58\xb7\x1e\xcf\ \x4f\x51\xd8\xb7\xcc\xf2\x77\x5a\x43\xd0\x1e\xe4\x70\xf3\xbe\xed\ \xd6\x75\x21\xae\x31\xc3\xcd\x7b\x9f\xfd\xac\xd2\x04\xe3\x7c\x3f\ \x0a\xaf\x07\x95\xeb\x7f\xf5\x29\xbe\xb4\x8e\x38\x08\x2e\xd3\x27\ \x61\xfa\xdf\xfc\xca\x74\xec\x5a\x32\xb1\x16\xd7\xf1\xe6\x3d\xa2\ \xdc\x9a\x20\xa3\x9e\x81\x24\xbc\x4e\xa0\xf3\xb6\xb5\x20\xc3\xc6\ \xa5\x34\xa6\xfd\xcf\xec\x1a\xe1\x57\xf5\x26\xa3\xc5\x1e\x21\xbf\ \x0a\x83\xc6\xa7\x44\xf7\xab\x3f\x96\x41\xf1\xd8\xf4\x75\x88\x7a\ \xde\xda\xa7\xde\x4e\xb8\xce\x6a\x6d\xba\xde\xf8\x3d\xae\x7b\x52\ \x65\x76\x04\xd7\x99\x61\x3e\xa5\xfa\x2d\xb4\x67\xb4\x3f\xae\x75\ \x35\xcb\xd0\xcf\x26\xf2\xd2\xcf\x31\x83\x5b\x53\xd1\x6f\xcb\x5a\ \xc3\x0c\xe6\xbb\x4e\xbd\x01\xda\xfd\x9f\x92\xa0\x4a\x50\xf8\x94\ \x19\x6e\xc1\x72\x3e\x09\xc2\xba\x4c\x7c\xa5\x6d\xed\xa4\x5a\x70\ \x1e\x62\xfe\x71\x02\xd2\x57\xb6\x98\xea\x6e\x19\xbb\x36\x35\xe2\ \x7a\x69\x4b\xda\x06\xfd\x08\xb4\xc7\xa5\x71\x21\xb4\x9c\x09\xf5\ \x2f\x35\x3c\x18\x5c\x69\x58\x16\x57\xc3\xbc\x1f\x3f\xe9\xe0\xd7\ \xfe\x61\x5f\x41\x70\xcc\x4e\x18\xfc\xd8\xbb\xc6\x41\x6f\xee\x7b\ \x5e\xbb\x16\x3c\xf6\x6c\x2e\x26\x76\xf5\x9d\xd1\x31\x6b\x21\xef\ \xaf\x53\xd9\x35\xc7\x3d\x13\x0b\xeb\xf6\x6c\xdf\xea\xb1\xe7\x06\ \x71\xf1\xa5\xbd\xd3\xd4\x0b\x3e\xa7\x35\xc5\xdd\x0f\x4c\x81\x8f\ \x3f\xd8\x48\xeb\x89\x12\x4f\xe5\x4f\x32\x28\xff\x91\x5e\x77\xdd\ \xfb\xf8\x2d\x75\x95\x2b\xcf\x36\x6e\x6b\x84\xc4\xb2\x93\x97\x70\ \x3c\x7c\x07\xd1\xc7\x93\xe5\x6c\x59\x5b\x39\x2a\x75\xc9\xae\x5d\ \xb2\xe5\xad\xf3\x8e\xff\x29\x3c\xfc\x5f\x67\x8a\xd9\x07\xb2\xe5\ \xf3\xbe\xd1\xf3\xe6\x57\x07\x10\xbe\x9e\x2c\x43\x3e\xfb\xc0\x24\ \xf9\xfc\x66\x23\xaf\x8c\x9d\x9e\x9e\xc3\x61\x19\x93\x71\x8e\xc6\ \xf0\xe6\x68\xa5\x32\x0f\xcf\xd7\x15\xb3\xf6\x4f\xc0\xba\xd2\x99\ \xf9\x60\x3a\xe3\x7f\x06\xe4\x85\x07\x73\x70\x9e\x77\xcc\x3c\xcf\ \x3b\x81\x75\xe6\xf1\xb9\x2e\xce\xe1\x6e\xc4\x32\x96\xc8\x96\x9d\ \xfc\x1d\x6d\x19\xe4\xe9\xfc\x5b\xcb\x29\x6a\xba\x52\xb6\xe4\x67\ \xaf\x46\x99\x57\x6e\x81\x4c\xde\x0a\xfc\xc9\x02\x74\x8d\xe2\x34\ \xcb\x7a\xe5\x9e\x91\xf5\xc9\x65\x64\xd3\x72\xa1\xd9\x8c\x33\x21\ \xb9\x60\xe8\x93\x8b\xf3\xb4\x5c\x00\x2f\xc4\x74\xc4\x36\x44\x33\ \xe2\x0c\xc2\x90\x4b\xf3\xb0\xeb\x64\xa6\x67\x46\xce\xe6\x61\xfd\ \x95\x10\x11\x15\x0c\xd3\x55\xa9\x30\x23\x53\x0d\x2f\x0b\xc0\x34\ \x55\xaa\xbe\x35\xd3\xc8\x00\x66\x4f\x52\x0c\x7f\x1e\x70\xd1\x3c\ \x0f\xd9\x6d\x02\xff\x1a\x37\xd6\xa7\x1b\xd9\xff\x23\x88\x0e\x86\ \x44\x9a\x83\xa8\x07\xb4\xfd\x46\xcf\x20\x4c\xe9\x77\x99\x40\xd7\ \x34\x75\xb6\xf3\xb1\x74\x88\x8d\x48\x60\xee\x08\xa5\xf7\x04\x07\ \x31\xad\x73\x85\xb4\x91\xa6\xf7\xe9\x5a\xe7\x54\x78\x4e\xd7\xb8\ \x39\x08\xc5\x4d\x1d\xcd\x40\xc6\x50\x66\x2c\x8e\xf5\xc7\xb8\xf9\ \x40\x70\xa1\x1e\xfc\x96\xb6\x8d\xd9\x81\x0b\xf4\x2c\x5a\xc7\xfd\ \x25\xa6\x38\xdc\xfc\x82\xd2\xfa\x2f\xd7\xa5\xe0\xf8\xba\x8f\xee\ \x0f\xd3\xf8\x1e\x5b\x6d\x1a\xa7\x69\xac\x8d\xae\x36\xb0\xa0\x73\ \xba\x46\xbf\x51\x1c\xf6\x1d\xa7\x75\xcc\xae\xc0\xb7\x75\xec\x5e\ \x27\x1c\x3f\xfd\x71\xec\xdc\x49\xf3\x06\x76\x4c\x7b\xc7\x3c\x36\ \x56\x99\xb1\x8e\x77\x8d\x1d\x8b\x99\x1d\x38\xbe\x59\xec\x41\x0d\ \xae\x60\x7a\xe2\xd8\xf8\x0c\x8e\x8d\x27\x92\x0a\x4d\xf7\x9b\xd5\ \x6f\xe2\xbc\x62\xea\x6f\xa0\xa6\x79\xc3\x7c\xf6\xde\xe5\x51\x1c\ \xc7\x27\x65\xad\x81\x1e\x32\x07\x12\xbd\x1a\xbc\x02\x4a\x0d\x9a\ \xb0\x2a\xe3\xc4\xf8\x27\x0f\x95\x84\x46\x7f\x02\x59\x77\x2c\x67\ \x72\xe7\x6c\xbb\x57\xd5\xe0\xda\x38\x1a\x1b\x57\x75\xa3\x2a\x73\ \xd6\x8f\x63\xef\x9e\x0c\xeb\x6a\xd7\x1e\xde\xfd\xe9\xd6\x1b\x5d\ \x49\x4f\x32\x78\xd4\x83\xd7\x57\xac\x78\xfb\xdd\x17\xd6\xfe\x8f\ \x91\x17\x5f\xdc\x8d\xed\xdf\xe5\xfd\x18\xdb\x37\xd6\x28\x7a\xce\ \x6d\x7a\x8d\xdd\xbf\x58\xdc\x72\x4a\x5e\xdc\x32\xc0\xd5\x3c\x14\ \x45\x87\xff\x82\xfd\xc3\x47\xe6\x3c\x7e\x44\x84\xb8\x9a\x87\x7c\ \xce\x91\xab\xe5\x45\x87\x37\x9a\xfb\xb1\x1d\x08\x97\xf7\xc6\xe0\ \xda\xbb\x07\xf6\x21\xb3\x64\xaf\x9f\xd6\xcb\xdc\xf8\x9f\x57\xcc\ \x43\x89\x79\x24\x15\xc8\x57\xe7\x12\x64\x32\x4b\xd0\xb5\x46\xaf\ \xd5\xb9\x67\xfa\xac\xce\x65\x10\xd0\x0b\x31\x03\xb1\x0d\xd1\x8c\ \x38\x83\x30\xac\xce\xfd\x7f\x4a\x69\x70\xfe\ \x00\x00\x08\xf8\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x36\x00\x00\x00\x36\x08\x03\x00\x00\x00\xbb\x9b\x9a\xef\ \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\x8e\ \x50\x4c\x54\x45\x00\x00\x00\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\ \x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\ \xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\ \x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x6e\x54\xb4\x00\ \x00\x00\xea\x0a\x4a\x26\x00\x00\x00\xd8\x74\x52\x4e\x53\x00\x03\ \x22\x45\x59\x66\x23\x05\x47\x8b\xcc\xf8\xf9\xcd\x8c\x49\x07\x2b\ \x8e\xe9\xf7\xf6\xfe\xed\x93\x2c\x34\xaf\xfd\xf4\xf5\xf3\xb1\x36\ \x17\x9f\xfc\xe2\xbe\xbd\xe1\xa1\x19\x5b\xef\xbf\x7a\x39\x0c\x0b\ \x38\x78\x55\x06\x9a\xe4\x1b\x1e\x79\xe7\x98\xb9\xf1\xeb\x6c\x08\ \x6d\xb8\x0a\xc6\xfa\x9d\x12\x14\x0e\xbb\xf2\x56\x57\x2e\x30\xfb\ \x5a\xe3\x25\xea\x51\xee\x2d\xec\x13\xa2\x77\x15\x54\x7f\x3a\x9b\ \x9e\x88\xac\x8d\x31\xab\x10\xf0\x3f\x6a\x87\xa9\xae\x9c\x74\x4b\ \x18\x11\x26\x68\xbc\xc1\xde\xe8\xc5\x20\x69\x2a\xe0\xc2\xe5\xda\ \xd5\xd0\xcf\xd4\xd8\xcb\x04\xe6\x70\xc0\x1f\x40\x16\xd3\xc3\x02\ \x85\xb7\x01\xb2\xc7\x71\x6b\xa4\x41\x1d\xb3\x3b\xc9\xd2\x37\x4e\ \x50\xd1\x52\x48\xd9\x4d\x3c\x32\x3e\x09\xc8\xba\x0d\x96\xca\x6e\ \x86\x75\x81\xb4\xc4\x62\x95\x3d\x89\x65\x73\xdd\xce\x91\xa5\x80\ \x21\xa7\xa3\x53\x82\xdb\x8a\x63\x5e\x61\x5d\x97\x44\x90\x5c\x58\ \x60\xdc\xa8\xaa\xa6\x76\xa1\x6c\xef\x3e\x00\x00\x00\x01\x62\x4b\ \x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\x00\ \x00\x16\x25\x00\x00\x16\x25\x01\x49\x52\x24\xf0\x00\x00\x04\xe3\ \x49\x44\x41\x54\x48\xc7\x8d\x96\xfb\x43\x14\x55\x14\xc7\x47\x05\ \x15\x66\x34\x8b\x99\x8b\xd8\xcc\x6e\xea\x80\x26\x98\x20\xae\x40\ \xc8\x92\x8d\x2c\x0a\x23\xb4\x20\xd1\xfa\x4c\xb3\x82\xec\x21\x58\ \x8a\x56\x28\x6a\x09\x19\x0a\x86\x54\x52\x41\x5a\x9a\x9a\x8f\xca\ \x30\x2b\xb3\x52\xb3\xf7\xcb\xca\xef\x9f\xd3\x99\x7b\x97\x65\x81\ \x9d\x95\xf3\xcb\x9c\x7b\xee\xf7\x33\xe7\xbe\xef\x95\xa4\x98\x36\ \x66\xec\xb8\x84\xc4\xc4\x84\x71\xe3\xc7\x48\xa3\xb5\x09\x13\x93\ \x92\x65\x84\x4d\x99\x34\xf9\x8e\x29\xa3\x80\xee\xbc\x2b\xc5\x91\ \xab\x1a\x37\x95\x91\x9f\x3a\x35\xed\x36\xd0\xb4\xbb\x75\x42\x0c\ \xc3\xa3\x8b\x64\x4c\x33\xbc\x1a\x7d\xee\x99\x1e\x07\x9a\x31\x93\ \xc1\xd4\x54\x8e\xa4\x27\x67\xcc\x4a\x9e\xed\x24\x33\xbd\x86\x09\ \x76\xef\x1c\x37\x2a\x33\x0b\xa6\xa1\x00\xfa\xdc\xfb\xe6\x65\x8b\ \x50\xce\xfc\xdc\xb9\xf4\x17\x99\xc0\xac\x05\x31\x21\xdf\x42\xc0\ \xa0\x06\xe5\xe5\xe6\x0f\xad\x28\xb8\xbf\x10\xf0\x78\x80\x45\x13\ \x46\x52\xd9\x45\x30\xfd\x26\x8a\x1f\x88\x31\x6e\x8b\x1f\x2c\x86\ \xee\x35\x61\x65\x0f\xaf\x59\x52\x82\x80\x17\x28\x5d\x1a\xbb\xfd\ \xcb\x4a\x01\x6f\x00\x25\x65\xc3\x5a\x58\x0e\x45\x83\xbd\xdc\x7d\ \xb8\x2a\x6c\x78\x64\xcc\xf2\x0d\x09\x2e\x84\xa2\x22\xaf\x32\xde\ \xdc\x3c\x54\x08\x2d\x88\xa9\xd1\xa1\x2a\x98\x36\xaa\x0b\xa4\xb8\ \xb6\xa2\x06\x86\xce\x1e\x8e\x9a\xaf\x5a\xd8\xf0\x3f\x22\xdd\xc6\ \x2a\xfd\x30\x10\x5a\x19\x29\xaf\x82\xc7\x44\x02\x39\x63\x57\x57\ \xad\x89\x05\x64\xaf\x5d\xf7\xa8\xd3\x3f\xe8\x2a\xd6\x47\x5a\xcd\ \x74\x0d\x1b\x1c\xef\x31\x20\xb0\x71\xda\x70\x28\xff\x71\x03\xb0\ \x1c\x6f\x3d\x54\x5d\x7f\x22\x1c\x7e\x12\x1a\x52\xea\x1c\x6f\x12\ \xea\x19\xf4\xd2\x65\x39\x4f\x6d\x7a\x7a\xd1\x33\xcf\x3e\x97\xb4\ \xb9\xa1\xd1\xb7\x9a\x26\x26\x95\xc9\xce\x18\x6e\xa9\x21\xe9\x46\ \x41\x3d\xaf\xeb\x0a\x5e\xe0\xae\x07\x5b\xb7\x35\xe9\x30\x82\x18\ \xb4\x7a\x60\xfb\x0e\xcb\x83\x17\x1d\xc1\x4b\x50\x74\xfd\x65\xae\ \x4d\x82\x82\x66\x31\x1f\x0c\x96\x65\xed\x2c\x06\xf3\xee\x6a\xd9\ \xbd\x67\xef\x2b\xaf\xce\xce\x32\x61\xec\xa3\xa0\x1f\xbc\x6d\xbe\ \x3c\x4a\x37\xd9\xf1\x5a\xdb\x08\x7b\x4d\x24\x4e\xc1\x7e\x92\x58\ \x25\xe5\x56\xc4\x8a\x44\x41\xc5\xeb\x5c\xb1\x1a\x1e\x14\xb6\x92\ \xd3\x4e\x79\x83\x07\x04\x56\x84\x83\x56\x4c\xeb\x40\x56\x27\x57\ \x34\x9a\xa6\x8c\x76\x72\x0e\x41\xc6\x1b\x82\xea\x3a\x8c\xe2\xd8\ \x58\x0b\x9a\x96\x08\xcd\x4e\x9a\xbb\x43\xf4\xed\x26\xec\x4d\x11\ \x7a\x0b\x66\x77\x6c\x2c\xc3\x83\xb7\x85\x66\x1d\x61\x25\xf4\xf5\ \x52\x27\xc5\x96\x5f\xe6\xc7\x5e\xcb\xc5\x3a\x82\x38\xc2\x45\x47\ \x08\x33\xba\xa4\x1e\x28\x26\xc4\x7e\xc8\x45\xc8\x72\xb5\x16\xbc\ \x23\x3a\x87\x80\x8c\x02\xe9\x5d\x4a\xb6\x5d\xe4\x7f\x0f\x93\xdc\ \xb1\x0c\xa6\xe4\x70\x55\x16\xbc\x34\x26\x0d\x50\xd1\x2b\x30\x19\ \xe5\xee\x18\xcd\x5c\x1f\x57\x35\xd1\xb2\x7f\x5f\x4a\xa0\x6c\x25\ \xbc\x5c\x07\x25\x0e\x65\xa5\xe0\x28\x97\x1d\x23\x2c\x93\xb6\x9a\ \x8a\x0e\x5e\x9e\x03\x39\x3e\xb6\x96\xcb\x7a\x09\xab\x92\x3e\x88\ \x34\xb2\x0c\xc1\x78\x58\x2a\x3e\xe4\xb2\xe3\x34\x94\x27\xa4\x8f\ \x08\x2b\x14\x7d\x33\xe2\xf6\xcd\x8b\x93\x5c\xe5\xa7\x21\x39\x25\ \xe5\x23\xc0\xd8\x69\x1e\xd8\x83\x8f\xdd\xa9\x33\xba\x7e\x56\x8c\ \x80\xa9\xa0\xc7\xa1\xe5\xf0\x74\x9f\x43\x8b\x3b\x76\x3e\xdc\x95\ \x76\x5a\xcb\x5e\xfa\x76\x10\xf6\x09\x8f\x34\xc0\x28\x72\xc5\x76\ \xe1\x53\x2e\xfa\x2c\x3c\x84\x17\x68\xdf\x7c\xce\x23\xad\xe9\xe8\ \x75\xa3\xfa\x59\x70\x2c\x17\x65\x10\x76\x81\xbe\xa7\x10\x64\xb2\ \x38\x8c\x2f\x22\xd8\xef\xb2\x46\xbc\xf8\x82\x4b\x0e\x04\x99\x82\ \x4b\xe4\x74\x56\x23\x10\x6e\x25\x9d\x2a\x81\xe4\x58\xd4\x0e\x03\ \xbd\xd9\x5c\xb1\x99\xc4\x79\x7c\xeb\x1d\x42\x10\x4d\xad\x3c\xb8\ \xf8\x30\x10\xda\x37\xbc\x83\xdd\x79\x0c\x7b\x1a\xb9\xc0\x97\x4e\ \x23\xf1\x25\x77\xc7\x07\x99\x89\xaf\x44\xba\xce\xaf\xe9\x98\x0a\ \x14\x5f\xee\xfd\x66\x5f\x49\xc7\xfe\xfd\x3b\x92\x7b\x5b\xda\x54\ \x8a\x5c\x11\x53\x24\x6d\xa2\xe9\xd2\x57\x08\xff\x5b\xfa\x43\xcd\ \x96\xf0\xe9\x37\xe3\xbb\xbd\x0c\x43\x6d\xd7\xe4\xef\xc3\x95\x4b\ \x43\x34\x20\x57\xc3\x85\x34\x93\xc9\xb8\x36\x78\x9c\xae\xb9\xfe\ \x43\x3f\xdd\xd7\xcd\xc7\x02\xc0\x8d\x1f\x7f\x4a\xeb\x8a\xd4\x5c\ \x85\xca\xcc\xc8\xa1\x7f\x0e\x9a\x89\x9f\xa3\xce\xe1\xb4\x54\x68\ \xe7\x2d\x6b\x6e\x08\x66\x45\x54\xf8\x17\xba\xd9\x71\x2e\x52\x5c\ \x19\x82\x1f\x6a\xdf\x60\xfd\x36\x6c\x17\xcb\xf3\x06\xfc\x75\x91\ \xe8\x7c\x85\x64\x35\x51\x17\xe7\x72\xe8\xb5\xa8\x8d\x64\xef\x61\ \xc1\x81\x45\x9d\x8a\x5f\x07\xa2\x95\xf5\xa8\xd7\xd9\x89\xa8\xec\ \xd2\x6f\x50\x6c\x84\xe6\x85\x4b\xbf\x0f\x1e\x2a\xc7\x91\x14\x0e\ \x4e\x0f\xc1\x0e\xe0\x8f\x68\x4a\xf2\x9d\x81\x6a\x43\xfb\x53\x94\ \xfe\x42\xdb\x00\xb6\x7b\xa0\x2f\x0b\xbc\xb0\xd5\xe1\x97\xb0\xb4\ \x84\x8e\xcb\x5a\x60\x26\xef\x49\xd5\x08\xec\xf4\x15\x86\x7a\x65\ \xc4\x95\x2f\x49\x67\xb7\xc2\xac\x35\xd1\x76\xb1\x33\x06\x76\xf4\ \x06\x74\x7a\x7d\x94\x67\x4b\x23\xcc\x47\x6f\x08\x9b\x9e\x33\xbb\ \xff\x9e\x32\x14\xeb\x9a\xb8\xd3\x79\x07\x01\x1b\x7c\x52\x2c\xcb\ \xb4\xe9\xf1\x44\x53\x9c\xda\x1f\x8d\x1d\xbc\x49\xcf\x29\xd9\x84\ \x9d\x29\xb9\x58\xfe\x3f\xf4\x30\x53\x09\x8c\xc6\xc8\x74\x5a\x6e\ \xff\xf6\x48\xee\x76\xa9\x9c\x56\x55\x80\x0d\xc3\x80\x8c\x53\x52\ \x7c\xeb\xbb\xa6\x39\xff\xb7\x53\xaa\x9b\x9b\xab\x53\x6c\xe7\x91\ \xa8\xfd\x37\x4f\xba\xbd\x9d\xad\x58\x75\x73\x70\xf9\x5f\x5e\x55\ \x55\x36\x0a\x48\x58\xce\xc9\xeb\x89\xb7\x6e\x25\xae\xed\xab\x8b\ \x5d\xff\x3f\x98\xa8\xa9\x99\x59\x79\xc2\x3d\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ " qt_resource_name = b"\ \x00\x03\ \x00\x00\x76\xf3\ \x00\x70\ \x00\x69\x00\x63\ \x00\x07\ \x06\xfa\xbc\x65\ \x00\x70\ \x00\x69\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\ \x00\x12\ \x0d\xd0\x41\xc7\ \x00\x69\ \x00\x6d\x00\x67\x00\x5f\x00\x62\x00\x75\x00\x74\x00\x74\x00\x6f\x00\x6e\x00\x5f\x00\x72\x00\x65\x00\x63\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x0d\ \x07\x0b\xdb\xc7\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x73\x00\x65\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x02\x63\x67\x67\ \x00\x69\ \x00\x6d\x00\x67\x00\x5f\x00\x74\x00\x61\x00\x62\x00\x5f\x00\x72\x00\x65\x00\x63\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x04\x81\x3c\x9f\ \x00\x70\ \x00\x69\x00\x65\x00\x63\x00\x61\x00\x73\x00\x73\x00\x6f\x00\x2e\x00\x69\x00\x63\x00\x6f\ \x00\x10\ \x08\x97\x05\x67\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x6c\x00\x6f\x00\x67\x00\x67\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ \x00\x00\x00\x0c\x00\x02\x00\x00\x00\x05\x00\x00\x00\x03\ \x00\x00\x00\x6a\x00\x00\x00\x00\x00\x01\x00\x00\x75\x6f\ \x00\x00\x00\x8e\x00\x01\x00\x00\x00\x01\x00\x00\xdd\x0f\ \x00\x00\x00\x4a\x00\x01\x00\x00\x00\x01\x00\x00\x6c\x1d\ \x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x01\x00\x8f\ \x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ " qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x0c\x00\x02\x00\x00\x00\x05\x00\x00\x00\x03\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x6a\x00\x00\x00\x00\x00\x01\x00\x00\x75\x6f\ \x00\x00\x01\x7b\x8e\xdc\x2e\x23\ \x00\x00\x00\x8e\x00\x01\x00\x00\x00\x01\x00\x00\xdd\x0f\ \x00\x00\x01\x72\x32\x41\x64\xf0\ \x00\x00\x00\x4a\x00\x01\x00\x00\x00\x01\x00\x00\x6c\x1d\ \x00\x00\x01\x79\x32\x56\xcd\x20\ \x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x01\x00\x8f\ \x00\x00\x01\x79\x32\x56\xcd\x20\ \x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x7b\x8e\xd9\xb8\x5b\ " qt_version = [int(v) for v in QtCore.qVersion().split('.')] if qt_version < [5, 8, 0]: rcc_version = 1 qt_resource_struct = qt_resource_struct_v1 else: rcc_version = 2 qt_resource_struct = qt_resource_struct_v2 def qInitResources(): QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources()
65.135402
129
0.727154
0
0
0
0
0
0
0
0
282,714
0.997794
8b3cdb0b30dd4dc0f7e827dc6970c3aa9e5b43da
1,116
py
Python
dags/hello_world_dag.py
garanin-se/airflow
1e9b08435be76e3d565b2973809e434243651273
[ "Apache-2.0" ]
null
null
null
dags/hello_world_dag.py
garanin-se/airflow
1e9b08435be76e3d565b2973809e434243651273
[ "Apache-2.0" ]
null
null
null
dags/hello_world_dag.py
garanin-se/airflow
1e9b08435be76e3d565b2973809e434243651273
[ "Apache-2.0" ]
null
null
null
from airflow import DAG from airflow.operators.bash_operator import BashOperator from datetime import datetime, timedelta args = { 'owner': 'garanin', 'start_date': datetime(2018, 11, 1), 'provide_context': True} # настройки дага, которые перадаем каждому дагу через дефолтный аргумент with DAG("Hello_world", description='Hello_world', schedule_interval='*/1 * * * *', catchup=False, default_args=args) as dag: # "hello-world" - название дага # description - описание дага # */1 * * * * - каждую минуту Cron # catchup - если true будет исполняться каждую минуту без пауз с момента datetime(2018, 11, 1) t1 = BashOperator( task_id='task_1', bash_command='echo "Hello World from Task 1"') t2 = BashOperator( task_id='task_2', bash_command='echo "Hello World from Task 2"') t3 = BashOperator( task_id='task_3', bash_command='echo "Hello World from Task 3"') t4 = BashOperator( task_id='task_4', bash_command='echo "Hello World from Task 4"') t1 >> t2 t1 >> t3 t2 >> t4 t3 >> t4
31
102
0.642473
0
0
0
0
0
0
0
0
648
0.514286
8b3ead7d345c8a9ce988d7523c2f9c1577220134
2,159
py
Python
nudging/evaluate_outcome.py
UtrechtUniversity/nudging
9eb1b77749f36059d0c03e60338308ed2e1ebe3d
[ "MIT" ]
1
2021-11-08T15:14:07.000Z
2021-11-08T15:14:07.000Z
nudging/evaluate_outcome.py
UtrechtUniversity/nudging
9eb1b77749f36059d0c03e60338308ed2e1ebe3d
[ "MIT" ]
6
2021-12-07T11:05:19.000Z
2022-03-21T09:05:52.000Z
nudging/evaluate_outcome.py
UtrechtUniversity/nudging
9eb1b77749f36059d0c03e60338308ed2e1ebe3d
[ "MIT" ]
null
null
null
"""Evaluate outcome (+CATE) of datasets""" from scipy.stats import spearmanr import numpy as np def safe_spearmanr(arr_a, arr_b): "Compute the spearman-R correlation, but 0 if all equal" if np.all(arr_a[0] == arr_a) or np.all(arr_b[0] == arr_b): return 0 return spearmanr(arr_a, arr_b).correlation def evaluate_outcome(model, dataset, k=5, n=1): """Evaluate the outcome of a model with a dataset Arguments --------- model: BaseModel model to be trained and evaluated on the dataset. dataset: BaseDataset Dataset on which the model is evaluated. k: int Number of folds n: int Number of iterations to evaluate over """ results = [] for _ in range(n): for train_data, test_data in dataset.kfolds(k=k): model.train(model.preprocess(train_data.standard_df)) model_outcome = model.predict_outcome(test_data.standard_df) if (np.all(model_outcome == model_outcome[0]) or np.all(test_data.outcome == test_data.outcome[0])): corr = 0 else: corr = spearmanr(model_outcome, test_data.outcome).correlation results.append(corr) return results def evaluate_performance(model, dataset, k=5, n=1): """Evaluate the outcome + CATE of a model with a dataset Arguments --------- model: BaseModel model to be trained and evaluated on the dataset. dataset: BaseDataset Dataset on which the model is evaluated. k: int Number of folds n: int Number of iterations to evaluate over """ cate_corr = [] outcome_corr = [] for _ in range(n): for train_data, test_data in dataset.kfolds(k=k): model.train(model.preprocess(train_data.standard_df)) test_df = test_data.standard_df cate = model.predict_cate(test_df) outcome = model.predict_outcome(test_df) cate_corr.append(safe_spearmanr(cate, test_data.cate)) outcome_corr.append(safe_spearmanr(outcome, test_data.outcome)) return cate_corr, outcome_corr
31.75
78
0.63409
0
0
0
0
0
0
0
0
767
0.355257
8b403af101b328ab8619171f6a6659dd0ae3aee5
2,671
py
Python
htdocs/json/goes.py
trentford/iem
7264d24f2d79a3cd69251a09758e6531233a732f
[ "MIT" ]
null
null
null
htdocs/json/goes.py
trentford/iem
7264d24f2d79a3cd69251a09758e6531233a732f
[ "MIT" ]
null
null
null
htdocs/json/goes.py
trentford/iem
7264d24f2d79a3cd69251a09758e6531233a732f
[ "MIT" ]
null
null
null
#!/usr/bin/env python """ Return JSON metadata for GOES Imagery """ import cgi import json import os import glob import datetime from pyiem.util import ssw BIRDS = ['EAST', 'WEST'] PRODUCTS = ['WV', 'VIS', 'IR'] def parse_time(text): """ Convert ISO something into a datetime """ try: if len(text) == 17: date = datetime.datetime.strptime(text, '%Y-%m-%dT%H:%MZ') elif len(text) == 20: date = datetime.datetime.strptime(text, '%Y-%m-%dT%H:%M:%SZ') else: date = datetime.datetime.utcnow() except Exception as _: date = datetime.datetime.utcnow() return date def find_scans(root, bird, product, start_gts, end_gts): """ Find GOES SCANs """ if bird not in BIRDS or product not in PRODUCTS: return now = start_gts.replace(hour=0, minute=0, second=0) while now < end_gts: mydir = now.strftime("/mesonet/ARCHIVE/data/%Y/%m/%d/GIS/sat/awips211") if os.path.isdir(mydir): os.chdir(mydir) filenames = glob.glob("GOES_%s_%s_*.wld" % (bird, product)) filenames.sort() for filename in filenames: ts = datetime.datetime.strptime(filename[:-4].split("_")[3], "%Y%m%d%H%M") if ts >= start_gts and ts <= end_gts: root['scans'].append(ts.strftime("%Y-%m-%dT%H:%M:00Z")) now += datetime.timedelta(hours=24) def list_files(form): """ List available GOES files based on the form request """ bird = form.getvalue('bird', 'EAST').upper() product = form.getvalue('product', 'VIS').upper() # default to a four hour period utc0 = datetime.datetime.utcnow() utc1 = utc0 - datetime.timedelta(hours=4) start_gts = parse_time(form.getvalue('start', utc1.strftime("%Y-%m-%dT%H:%MZ"))) end_gts = parse_time(form.getvalue('end', utc0.strftime("%Y-%m-%dT%H:%MZ"))) root = {'scans': []} find_scans(root, bird, product, start_gts, end_gts) return root def main(): """ Do something fun and educational """ form = cgi.FieldStorage() operation = form.getvalue('operation', 'list') callback = form.getvalue('callback', None) if callback is not None: ssw("Content-type: application/javascript\n\n") ssw("%s(" % (callback,)) else: ssw("Content-type: text/plain\n\n") if operation == "list": ssw(json.dumps(list_files(form))) if callback is not None: ssw(')') if __name__ == "__main__": main()
28.72043
79
0.562336
0
0
0
0
0
0
0
0
661
0.247473
8b409e98d4bcafd53946a98c26955761614abc97
216
py
Python
js/jquery_scrolltofixed/__init__.py
davidjb/js.jquery_scrolltofixed
f5a8606ce8c240334504e43f218c2e8d11d09551
[ "BSD-3-Clause" ]
1
2016-08-31T19:19:16.000Z
2016-08-31T19:19:16.000Z
js/jquery_scrolltofixed/__init__.py
davidjb/js.jquery_scrolltofixed
f5a8606ce8c240334504e43f218c2e8d11d09551
[ "BSD-3-Clause" ]
null
null
null
js/jquery_scrolltofixed/__init__.py
davidjb/js.jquery_scrolltofixed
f5a8606ce8c240334504e43f218c2e8d11d09551
[ "BSD-3-Clause" ]
null
null
null
from fanstatic import Library, Resource library = Library('scrolltofixed', 'resources') scrolltofixed = Resource(library, 'jquery-scrolltofixed.js', minified='jquery-scrolltofixed-min.js')
30.857143
64
0.699074
0
0
0
0
0
0
0
0
80
0.37037
8b412c78f87a3d4e29fbf54573c78a95f9cd0cfd
3,114
py
Python
python/ray/serve/scripts.py
dsctt/ray
29d94a22114b02adfd3745c4991a3ce70592dd16
[ "Apache-2.0" ]
1
2022-03-22T11:17:22.000Z
2022-03-22T11:17:22.000Z
python/ray/serve/scripts.py
dsctt/ray
29d94a22114b02adfd3745c4991a3ce70592dd16
[ "Apache-2.0" ]
32
2021-11-06T07:11:42.000Z
2022-03-19T07:14:00.000Z
python/ray/serve/scripts.py
dsctt/ray
29d94a22114b02adfd3745c4991a3ce70592dd16
[ "Apache-2.0" ]
null
null
null
#!/usr/bin/env python import json import os import click import ray from ray.serve.api import Deployment from ray.serve.config import DeploymentMode from ray._private.utils import import_attr from ray import serve from ray.serve.constants import ( DEFAULT_CHECKPOINT_PATH, DEFAULT_HTTP_HOST, DEFAULT_HTTP_PORT, ) @click.group(help="[EXPERIMENTAL] CLI for managing Serve instances on a Ray cluster.") @click.option( "--address", "-a", default=os.environ.get("RAY_ADDRESS", "auto"), required=False, type=str, help="Address of the running Ray cluster to connect to. " 'Defaults to "auto".', ) @click.option( "--namespace", "-n", default="serve", required=False, type=str, help='Ray namespace to connect to. Defaults to "serve".', ) @click.option( "--runtime-env-json", default=r"{}", required=False, type=str, help=( "Runtime environment dictionary to pass into ray.init. " "Defaults to empty." ), ) def cli(address, namespace, runtime_env_json): ray.init( address=address, namespace=namespace, runtime_env=json.loads(runtime_env_json), ) @cli.command(help="Start a detached Serve instance on the Ray cluster.") @click.option( "--http-host", default=DEFAULT_HTTP_HOST, required=False, type=str, help="Host for HTTP servers to listen on. " f"Defaults to {DEFAULT_HTTP_HOST}.", ) @click.option( "--http-port", default=DEFAULT_HTTP_PORT, required=False, type=int, help="Port for HTTP servers to listen on. " f"Defaults to {DEFAULT_HTTP_PORT}.", ) @click.option( "--http-location", default=DeploymentMode.HeadOnly, required=False, type=click.Choice(list(DeploymentMode)), help="Location of the HTTP servers. Defaults to HeadOnly.", ) @click.option( "--checkpoint-path", default=DEFAULT_CHECKPOINT_PATH, required=False, type=str, hidden=True, ) def start(http_host, http_port, http_location, checkpoint_path): serve.start( detached=True, http_options=dict( host=http_host, port=http_port, location=http_location, ), _checkpoint_path=checkpoint_path, ) @cli.command(help="Shutdown the running Serve instance on the Ray cluster.") def shutdown(): serve.api._connect() serve.shutdown() @cli.command( help=""" [Experimental] Create a deployment in running Serve instance. The required argument is the import path for the deployment: ``my_module.sub_module.file.MyClass``. The class may or may not be decorated with ``@serve.deployment``. """, hidden=True, ) @click.argument("deployment") @click.option( "--options-json", default=r"{}", required=False, type=str, help="JSON string for the deployments options", ) def deploy(deployment: str, options_json: str): deployment_cls = import_attr(deployment) if not isinstance(deployment_cls, Deployment): deployment_cls = serve.deployment(deployment_cls) options = json.loads(options_json) deployment_cls.options(**options).deploy()
25.317073
86
0.679512
0
0
0
0
2,775
0.891137
0
0
1,051
0.337508
8b42031cc6e298b0e942547748c79b85ecffd293
562
py
Python
Alpha & Beta/Algorithms/wootwoot.py
Mdlkxzmcp/various_python
be4f873c6263e3db11177bbccce2aa465514294d
[ "MIT" ]
null
null
null
Alpha & Beta/Algorithms/wootwoot.py
Mdlkxzmcp/various_python
be4f873c6263e3db11177bbccce2aa465514294d
[ "MIT" ]
null
null
null
Alpha & Beta/Algorithms/wootwoot.py
Mdlkxzmcp/various_python
be4f873c6263e3db11177bbccce2aa465514294d
[ "MIT" ]
null
null
null
def naive(a, b): c = 0 while a > 0: c = c + b a = a - 1 return c def russian(a, b): """ The Russian Peasant Algorithm: Multiply one integer by the other integer. Input: a, b: integers Returns: a*b """ c = 0 while a > 0: if a % 2 == 1: c = c + b b = b << 1 a = a >> 1 return c def rec_russian(a, b): if a == 0: return 0 elif a % 2 == 0: return 2 * rec_russian(a / 2, b) else: return b + 2 * rec_russian((a - 1) / 2, b)
17.5625
50
0.428826
0
0
0
0
0
0
0
0
140
0.24911
8b438e05322fd68c73974bbc580bd7c882aa4fa3
2,314
py
Python
tuples.py
sumon-dey/PythonConcepts
a014656232ff97161f995bf0124f6ce9daf42496
[ "Apache-2.0" ]
6
2019-07-21T13:07:31.000Z
2021-02-24T10:36:06.000Z
tuples.py
sumon-dey/PythonConcepts
a014656232ff97161f995bf0124f6ce9daf42496
[ "Apache-2.0" ]
null
null
null
tuples.py
sumon-dey/PythonConcepts
a014656232ff97161f995bf0124f6ce9daf42496
[ "Apache-2.0" ]
3
2021-02-20T11:01:27.000Z
2021-07-22T10:58:34.000Z
# Python Tuples # Ordered, Immutable collection of items which allows Duplicate Members # We can put the data, which will not change throughout the program, in a Tuple # Tuples can be called as "Immutable Python Lists" or "Constant Python Lists" employeeTuple = ("Sam", "Sam" "Mike", "John", "Harry", "Tom", "Sean", "Justin") # to check the variable type print(type(employeeTuple)) # to check whether the type is "Tuple" or not print(isinstance(employeeTuple, tuple)) # to print all the elements in the Tuple for employeeName in employeeTuple: print("Employee: " + employeeName) print("**********************************************************") # Other functions # to display an element using index print(employeeTuple[0]) # to display the length of the Tuple print(len(employeeTuple)) # employeeTuple[2] = "David" # This will throw a TypeError since Tuple cannot be modified print(employeeTuple) print("**********************************************************") # we can use the tuple() constructor to create a tuple employeeName2 = tuple(("Richard", "Henry", "Brian")) print(employeeName2) # we can also omit the use of brackets to create a tuple employeeName3 = "David", "Michael", "Shaun" print(employeeName3) print(type(employeeName3)) print("**********************************************************") # Difference between a Tuple and a String myStr = ("Sam") # This is a String print(type(myStr)) # This is a Tuple (for a Tuple, comma is mandatory) with one item myTuple1 = ("Sam",) print(type(myTuple1)) print(len(myTuple1)) # This is an empty Tuple myTuple2 = () print(type(myTuple2)) print(len(myTuple2)) print("**********************************************************") # Value Swapping using Tuple myNumber1 = 2 myNumber2 = 3 myNumber1, myNumber2 = myNumber2, myNumber1 print(myNumber1) print(myNumber2) print("**********************************************************") # Nested Tuples employeeName4 = employeeName3, ("Raj", "Vinith") print(employeeName4) print("**********************************************************") # Tuple Sequence Packing packed_tuple = 1, 2, "Python" print(packed_tuple) # Tuple Sequence Unpacking number1, number2, string1 = packed_tuple print(number1) print(number2) print(string1) print("**********************************************************")
33.536232
90
0.609767
0
0
0
0
0
0
0
0
1,441
0.622731
8b4494f9af64d71ff00c8c9896f66e6b5599aac3
296
py
Python
dht22_sensor.py
mikrogravitation/humiditemp5000
7e5e837b18142333c90eab82a5b46d702654a436
[ "MIT" ]
null
null
null
dht22_sensor.py
mikrogravitation/humiditemp5000
7e5e837b18142333c90eab82a5b46d702654a436
[ "MIT" ]
null
null
null
dht22_sensor.py
mikrogravitation/humiditemp5000
7e5e837b18142333c90eab82a5b46d702654a436
[ "MIT" ]
null
null
null
import dht class DHT22Sensor: provides = ["temperature", "humidity"] def __init__(self, port): self._sensor = dht.DHT22(port) def readout(self): self._sensor.measure() return {"temperature": self._sensor.temperature(), "humidity": self._sensor.humidity()}
22.769231
95
0.648649
283
0.956081
0
0
0
0
0
0
46
0.155405
8b4884373a3f5043f3c410286a97ab3db710a67f
26,757
py
Python
oauth_api/tests/test_authorization_code.py
anobi/django-oauth-api
95bf9b500dab326553a5a8a17d5c6da1a34f6ac4
[ "BSD-2-Clause" ]
null
null
null
oauth_api/tests/test_authorization_code.py
anobi/django-oauth-api
95bf9b500dab326553a5a8a17d5c6da1a34f6ac4
[ "BSD-2-Clause" ]
null
null
null
oauth_api/tests/test_authorization_code.py
anobi/django-oauth-api
95bf9b500dab326553a5a8a17d5c6da1a34f6ac4
[ "BSD-2-Clause" ]
null
null
null
from datetime import timedelta from django.contrib.auth import get_user_model from django.utils import timezone from oauthlib.oauth2 import (InvalidClientIdError, MissingClientIdError, InvalidRedirectURIError, MismatchingRedirectURIError) from rest_framework import status from oauth_api.compat import reverse from oauth_api.models import get_application_model, AuthorizationCode, RefreshToken from oauth_api.settings import oauth_api_settings from oauth_api.tests.utils import TestCaseUtils from oauth_api.tests.views import RESPONSE_DATA Application = get_application_model() User = get_user_model() class BaseTest(TestCaseUtils): def setUp(self): self.test_user = User.objects.create_user('test_user', 'test_user@example.com', '1234') self.dev_user = User.objects.create_user('dev_user', 'dev_user@example.com', '1234') self.application = Application( name='Test Application', redirect_uris='http://localhost http://example.com', user=self.dev_user, client_type=Application.CLIENT_CONFIDENTIAL, authorization_grant_type=Application.GRANT_AUTHORIZATION_CODE, ) self.application.save() self.application_public = Application( name='Test Application (Public)', redirect_uris='http://localhost http://example.com', user=self.dev_user, client_type=Application.CLIENT_PUBLIC, authorization_grant_type=Application.GRANT_AUTHORIZATION_CODE, ) self.application_public.save() class TestAuthorizationCode(BaseTest): def test_invalid_client(self): """ Test for invalid client information """ self.client.login(username='test_user', password='1234') query_string = { 'client_id': 'invalid', 'response_type': 'code', } response = self.client.get(reverse('oauth_api:authorize'), data=query_string) self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) self.assertIn('error', response.context) error = response.context['error'] self.assertTrue(isinstance(error, InvalidClientIdError)) def test_missing_client(self): """ Test for missing client information """ self.client.login(username='test_user', password='1234') query_string = { 'response_type': 'code', } response = self.client.get(reverse('oauth_api:authorize'), data=query_string) self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) self.assertIn('error', response.context) error = response.context['error'] self.assertTrue(isinstance(error, MissingClientIdError)) def test_valid_client(self): """ Test for valid client information """ self.client.login(username='test_user', password='1234') query_string = { 'client_id': self.application.client_id, 'response_type': 'code', 'state': 'random_state_string', 'scope': 'read write', 'redirect_uri': 'http://localhost', } response = self.client.get(reverse('oauth_api:authorize'), data=query_string) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertIn('form', response.context) form = response.context['form'] self.assertEqual(form['redirect_uri'].value(), 'http://localhost') self.assertEqual(form['state'].value(), 'random_state_string') self.assertEqual(form['scopes'].value(), 'read write') self.assertEqual(form['client_id'].value(), self.application.client_id) def test_invalid_response_type(self): """ Test for invalid response_type """ self.client.login(username='test_user', password='1234') query_string = { 'client_id': self.application.client_id, 'response_type': 'invalid', } response = self.client.get(reverse('oauth_api:authorize'), data=query_string) self.assertEqual(response.status_code, status.HTTP_302_FOUND) self.assertIn('error=unsupported_response_type', response['Location']) def test_missing_response_type(self): """ Test for missing response_type """ self.client.login(username='test_user', password='1234') query_string = { 'client_id': self.application.client_id, } response = self.client.get(reverse('oauth_api:authorize'), data=query_string) self.assertEqual(response.status_code, status.HTTP_302_FOUND) self.assertIn('error=invalid_request', response['Location']) def test_default_redirect_uri(self): """ Test for default redirect uri """ self.client.login(username='test_user', password='1234') query_string = { 'client_id': self.application.client_id, 'response_type': 'code', } response = self.client.get(reverse('oauth_api:authorize'), data=query_string) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertIn('form', response.context) form = response.context['form'] self.assertEqual(form['redirect_uri'].value(), 'http://localhost') def test_forbidden_redirect_uri(self): """ Test for forbidden redirect_uri (Not defined in list of allowed URIs) """ self.client.login(username='test_user', password='1234') query_string = { 'client_id': self.application.client_id, 'response_type': 'code', 'redirect_uri': 'http://invalid.local.host', } response = self.client.get(reverse('oauth_api:authorize'), data=query_string) self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) self.assertIn('error', response.context) error = response.context['error'] self.assertTrue(isinstance(error, MismatchingRedirectURIError)) def test_invalid_redirect_uri(self): """ Test for malformed redirect_uri value """ self.client.login(username='test_user', password='1234') query_string = { 'client_id': self.application.client_id, 'response_type': 'code', 'redirect_uri': 'invalid', } response = self.client.get(reverse('oauth_api:authorize'), data=query_string) self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) self.assertIn('error', response.context) error = response.context['error'] self.assertTrue(isinstance(error, InvalidRedirectURIError)) def test_authorization_code_post_allow(self): """ Test for resource owner authorized the client """ self.client.login(username='test_user', password='1234') form_data = { 'client_id': self.application.client_id, 'state': 'random_state_string', 'scopes': 'read write', 'redirect_uri': 'http://localhost', 'response_type': 'code', 'allow': True, } response = self.client.post(reverse('oauth_api:authorize'), data=form_data) self.assertEqual(response.status_code, status.HTTP_302_FOUND) self.assertIn('http://localhost?', response['Location']) self.assertIn('state=random_state_string', response['Location']) self.assertIn('code=', response['Location']) def test_authorization_code_post_denied(self): """ Test for resource owner did not authorize the client """ self.client.login(username='test_user', password='1234') form_data = { 'client_id': self.application.client_id, 'state': 'random_state_string', 'scopes': 'read write', 'redirect_uri': 'http://localhost', 'response_type': 'code', 'allow': False, } response = self.client.post(reverse('oauth_api:authorize'), data=form_data) self.assertEqual(response.status_code, status.HTTP_302_FOUND) self.assertIn('error=access_denied', response['Location']) def test_authorization_code_post_invalid_response_type(self): """ Test for authorization code is given for an allowed request with a invalid response_type """ self.client.login(username='test_user', password='1234') form_data = { 'client_id': self.application.client_id, 'state': 'random_state_string', 'scopes': 'read write', 'redirect_uri': 'http://localhost', 'response_type': 'invalid', 'allow': True, } response = self.client.post(reverse('oauth_api:authorize'), data=form_data) self.assertEqual(response.status_code, status.HTTP_302_FOUND) self.assertIn('error=unsupported_response_type', response['Location']) self.assertIn('state=random_state_string', response['Location']) def test_authorization_code_post_invalid_redirect_uri(self): """ Test for authorization code is given for an allowed request with a invalid redirect_uri """ self.client.login(username='test_user', password='1234') form_data = { 'client_id': self.application.client_id, 'state': 'random_state_string', 'scopes': 'read write', 'redirect_uri': 'http://invalid.local.host', 'response_type': 'code', 'allow': True, } response = self.client.post(reverse('oauth_api:authorize'), data=form_data) self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) class TestAuthorizationCodeTokenView(BaseTest): def test_basic_auth(self): """ Test for requesting access token using Basic Authentication """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertEqual(response.data['token_type'], 'Bearer') self.assertEqual(response.data['scope'], 'read write') self.assertEqual(response.data['expires_in'], oauth_api_settings.ACCESS_TOKEN_EXPIRATION) def test_basic_auth_invalid_secret(self): """ Test for requesting access toke using invalid secret via Basic Authentication """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, 'invalid')) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_401_UNAUTHORIZED) def test_invalid_auth_code(self): """ Test for requesting access token using invalid authorization code """ self.client.login(username='test_user', password='1234') token_request = { 'grant_type': 'authorization_code', 'code': 'invalid', 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_401_UNAUTHORIZED) def test_invalid_grant_type(self): """ Test for requesting access token using invalid grant_type """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'invalid', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) def test_expired_authorization_code(self): """ Test for requesting access code when authorization code has been expired """ self.client.login(username='test_user', password='1234') ac = AuthorizationCode(application=self.application, user=self.test_user, code='BANANA', expires=timezone.now(), redirect_uri='', scope='') ac.save() token_request = { 'grant_type': 'authorization_code', 'code': 'BANANA', 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_401_UNAUTHORIZED) def test_refresh_token(self): """ Test for requesting access token using refresh token """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue('refresh_token' in response.data) # Make second token request to be sure that previous refresh token # remains valid. authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.post(reverse('oauth_api:token'), token_request) # Request new access token using the refresh token from the first # request token_request = { 'grant_type': 'refresh_token', 'refresh_token': response.data['refresh_token'], 'scope': response.data['scope'], } response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue('access_token' in response.data) # Refresh tokens cannot be used twice response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_401_UNAUTHORIZED) self.assertTrue('invalid_grant' in response.data.values()) def test_refresh_token_override_authorization(self): """ Test overriding Authorization header by providing client ID and secret as param """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue('refresh_token' in response.data) token_request = { 'grant_type': 'refresh_token', 'refresh_token': response.data['refresh_token'], 'scope': response.data['scope'], 'client_id': self.application.client_id, 'client_secret': self.application.client_secret, } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth('invalid_client_id', 'invalid_client_secret')) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue('access_token' in response.data) def test_refresh_token_default_scopes(self): """ Test for requesting access token using refresh token while not providing any scopes """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue('refresh_token' in response.data) token_request = { 'grant_type': 'refresh_token', 'refresh_token': response.data['refresh_token'], } response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue('access_token' in response.data) def test_refresh_token_invalid_scopes(self): """ Test for requesting access token using refresh token while providing invalid scopes """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue('refresh_token' in response.data) token_request = { 'grant_type': 'refresh_token', 'refresh_token': response.data['refresh_token'], 'scope': 'read write invalid', } response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_401_UNAUTHORIZED) def test_refresh_token_repeating_request_fail(self): """ Test for requesting access token using refresh token and repeating the request """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue('refresh_token' in response.data) token_request = { 'grant_type': 'refresh_token', 'refresh_token': response.data['refresh_token'], 'scope': response.data['scope'], } response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_401_UNAUTHORIZED) def test_refresh_token_expired(self): """ Test for requesting access token using expired refresh token """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue('refresh_token' in response.data) token_request = { 'grant_type': 'refresh_token', 'refresh_token': response.data['refresh_token'], 'scope': response.data['scope'], } # Set expiration time to expire the token RefreshToken.objects.update(expires=timezone.now()) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_401_UNAUTHORIZED) def test_refresh_token_not_expired(self): """ Test for requesting access token using refresh token with expiration date """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', } self.client.credentials(HTTP_AUTHORIZATION=self.get_basic_auth(self.application.client_id, self.application.client_secret)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue('refresh_token' in response.data) token_request = { 'grant_type': 'refresh_token', 'refresh_token': response.data['refresh_token'], 'scope': response.data['scope'], } # Set expiration time to future RefreshToken.objects.update(expires=timezone.now() + timedelta(days=7)) response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) def test_public(self): """ Test for requesting access token using client_type 'public' """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code(self.application_public.client_id) token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': 'http://localhost', 'client_id': self.application_public.client_id, } response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertEqual(response.data['token_type'], 'Bearer') self.assertEqual(response.data['scope'], 'read write') self.assertEqual(response.data['expires_in'], oauth_api_settings.ACCESS_TOKEN_EXPIRATION) def test_public_with_invalid_redirect_uri(self): """ Test for requesting access token using client_type 'public' and providing invalid redirect_uri """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code(self.application_public.client_id) token_request = { 'grant_type': 'authorization_code', 'code': authorization_code, 'redirect_uri': '/../', 'client_id': self.application_public.client_id, } response = self.client.post(reverse('oauth_api:token'), token_request) self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) class TestAuthorizationCodeResourceAccess(BaseTest): def test_access_allowed(self): """ Test for accessing resource using valid access token """ self.client.login(username='test_user', password='1234') authorization_code = self.get_authorization_code() access_token = self.get_access_token(authorization_code) self.client.credentials(HTTP_AUTHORIZATION='Bearer %s' % access_token) response = self.client.get(reverse('resource-view')) self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertEqual(response.data, RESPONSE_DATA) def test_access_denied(self): """ Test for accessing resource using invalid access token """ self.client.force_authenticate(user=self.test_user) self.client.credentials(HTTP_AUTHORIZATION='Bearer invalid') response = self.client.get(reverse('resource-view')) self.client.force_authenticate(user=None) self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
38.443966
120
0.633554
26,108
0.975745
0
0
0
0
0
0
7,240
0.270583
8b49f147c9e56f5dd5097370cc523d4cf407906f
42,174
py
Python
example/sockeye/source/sockeye/decoder.py
rah9eu/p3
530628be7b7a8dd3e6199c3bebebdbf104005e5f
[ "Apache-2.0" ]
22
2019-02-20T12:42:20.000Z
2021-12-25T06:09:46.000Z
example/sockeye/source/sockeye/decoder.py
rah9eu/p3
530628be7b7a8dd3e6199c3bebebdbf104005e5f
[ "Apache-2.0" ]
4
2019-04-01T07:36:04.000Z
2022-03-24T03:11:26.000Z
example/sockeye/source/sockeye/decoder.py
rah9eu/p3
530628be7b7a8dd3e6199c3bebebdbf104005e5f
[ "Apache-2.0" ]
7
2019-03-20T16:04:37.000Z
2021-04-28T18:40:11.000Z
# Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). You may not # use this file except in compliance with the License. A copy of the License # is located at # # http://aws.amazon.com/apache2.0/ # # or in the "license" file accompanying this file. This file is distributed on # an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either # express or implied. See the License for the specific language governing # permissions and limitations under the License. """ Decoders for sequence-to-sequence models. """ import logging from abc import ABC, abstractmethod from typing import Callable, List, NamedTuple, Tuple from typing import Optional import mxnet as mx from sockeye.config import Config from sockeye.utils import check_condition from . import attention as attentions from . import constants as C from . import encoder from . import layers from . import lexicon as lexicons from . import rnn from . import transformer from . import utils logger = logging.getLogger(__name__) def get_decoder(config: Config, lexicon: Optional[lexicons.Lexicon] = None, embed_weight: Optional[mx.sym.Symbol] = None) -> 'Decoder': if isinstance(config, RecurrentDecoderConfig): return RecurrentDecoder(config=config, lexicon=lexicon, embed_weight=embed_weight, prefix=C.DECODER_PREFIX) elif isinstance(config, transformer.TransformerConfig): return TransformerDecoder(config=config, embed_weight=embed_weight, prefix=C.DECODER_PREFIX) else: raise ValueError("Unsupported decoder configuration") class Decoder(ABC): """ Generic decoder interface. A decoder needs to implement code to decode a target sequence known in advance (decode_sequence), and code to decode a single word given its decoder state (decode_step). The latter is typically used for inference graphs in beam search. For the inference module to be able to keep track of decoder's states a decoder provides methods to return initial states (init_states), state variables and their shapes. """ @abstractmethod def decode_sequence(self, source_encoded: mx.sym.Symbol, source_encoded_lengths: mx.sym.Symbol, source_encoded_max_length: int, target: mx.sym.Symbol, target_lengths: mx.sym.Symbol, target_max_length: int, source_lexicon: Optional[mx.sym.Symbol] = None) -> mx.sym.Symbol: """ Decodes given a known target sequence and returns logits with batch size and target length dimensions collapsed. Used for training. :param source_encoded: Encoded source: (source_encoded_max_length, batch_size, encoder_depth). :param source_encoded_lengths: Lengths of encoded source sequences. Shape: (batch_size,). :param source_encoded_max_length: Size of encoder time dimension. :param target: Target sequence. Shape: (batch_size, target_max_length). :param target_lengths: Lengths of target sequences. Shape: (batch_size,). :param target_max_length: Size of target sequence dimension. :param source_lexicon: Lexical biases for current sentence. Shape: (batch_size, target_vocab_size, source_seq_len) :return: Logits of next-word predictions for target sequence. Shape: (batch_size * target_max_length, target_vocab_size) """ pass @abstractmethod def decode_step(self, prev_word_id: mx.sym.Symbol, source_encoded_max_length: int, *states: mx.sym.Symbol) \ -> Tuple[mx.sym.Symbol, mx.sym.Symbol, List[mx.sym.Symbol]]: """ Decodes a single time step given the previous word id and previous decoder states. Returns logits, attention probabilities, and next decoder states. Implementations can maintain an arbitrary number of states. :param prev_word_id: Previous word id. Shape: (batch_size,). :param source_encoded_max_length: Length of encoded source time dimension. :param states: Arbitrary list of decoder states. :return: logits, attention probabilities, next decoder states. """ pass @abstractmethod def reset(self): """ Reset decoder method. Used for inference. """ pass @abstractmethod def init_states(self, source_encoded: mx.sym.Symbol, source_encoded_lengths: mx.sym.Symbol, source_encoded_max_length: int) -> List[mx.sym.Symbol]: """ Returns a list of symbolic states that represent the initial states of this decoder. Used for inference. :param source_encoded: Encoded source. Shape: (batch_size, source_encoded_max_length, encoder_depth). :param source_encoded_lengths: Lengths of encoded source sequences. Shape: (batch_size,). :param source_encoded_max_length: Size of encoder time dimension. :return: List of symbolic initial states. """ return [] @abstractmethod def state_variables(self) -> List[mx.sym.Symbol]: """ Returns the list of symbolic variables for this decoder to be used during inference. :return: List of symbolic variables. """ return [] @abstractmethod def state_shapes(self, batch_size: int, source_encoded_max_length: int, source_encoded_depth: int) -> List[mx.io.DataDesc]: """ Returns a list of shape descriptions given batch size, encoded source max length and encoded source depth. Used for inference. :param batch_size: Batch size during inference. :param source_encoded_max_length: Size of encoder time dimension. :param source_encoded_depth: Depth of encoded source. :return: List of shape descriptions. """ return [] @abstractmethod def get_rnn_cells(self) -> List[mx.rnn.BaseRNNCell]: """ Returns a list of RNNCells used by this decoder. :raises: NotImplementedError """ return [] class TransformerDecoder(Decoder): """ Transformer decoder as in Vaswani et al, 2017: Attention is all you need. In training, computation scores for each position of the known target sequence are compouted in parallel, yielding most of the speedup. At inference time, the decoder block is evaluated again and again over a maximum length input sequence that is initially filled with zeros and grows during beam search with predicted tokens. Appropriate masking at every time-step ensures correct self-attention scores and is updated with every step. :param config: Transformer configuration. :param embed_weight: Optionally use an existing embedding matrix instead of creating a new target embedding. """ def __init__(self, config: transformer.TransformerConfig, embed_weight: Optional[mx.sym.Symbol] = None, prefix: str = C.TRANSFORMER_DECODER_PREFIX) -> None: self.config = config self.prefix = prefix self.layers = [transformer.TransformerDecoderBlock( config, prefix="%s%d_" % (prefix, i)) for i in range(config.num_layers)] # Embedding & output parameters if embed_weight is None: embed_weight = mx.sym.Variable(C.TARGET_EMBEDDING_PREFIX + "weight") self.embedding = encoder.Embedding(num_embed=config.model_size, vocab_size=config.vocab_size, prefix=C.TARGET_EMBEDDING_PREFIX, dropout=config.dropout_residual, embed_weight=embed_weight, add_positional_encoding=config.positional_encodings) if self.config.weight_tying: logger.info("Tying the target embeddings and prediction matrix.") self.cls_w = embed_weight else: self.cls_w = mx.sym.Variable("%scls_weight" % prefix) self.cls_b = mx.sym.Variable("%scls_bias" % prefix) def decode_sequence(self, source_encoded: mx.sym.Symbol, source_encoded_lengths: mx.sym.Symbol, source_encoded_max_length: int, target: mx.sym.Symbol, target_lengths: mx.sym.Symbol, target_max_length: int, source_lexicon: Optional[mx.sym.Symbol] = None) -> mx.sym.Symbol: """ Decodes given a known target sequence and returns logits with batch size and target length dimensions collapsed. Used for training. :param source_encoded: Encoded source: (source_encoded_max_length, batch_size, encoder_depth). :param source_encoded_lengths: Lengths of encoded source sequences. Shape: (batch_size,). :param source_encoded_max_length: Size of encoder time dimension. :param target: Target sequence. Shape: (batch_size, target_max_length). :param target_lengths: Lengths of target sequences. Shape: (batch_size,). :param target_max_length: Size of target sequence dimension. :param source_lexicon: Lexical biases for current sentence. Shape: (batch_size, target_vocab_size, source_seq_len) :return: Logits of next-word predictions for target sequence. Shape: (batch_size * target_max_length, target_vocab_size) """ # (1, target_max_length, target_max_length) target_bias = transformer.get_autoregressive_bias(target_max_length, name="%sbias" % self.prefix) # (batch_size, source_max_length, num_source_embed) source_encoded = mx.sym.swapaxes(source_encoded, dim1=0, dim2=1) # target: (batch_size, target_max_length, model_size) target, target_lengths, target_max_length = self.embedding.encode(target, target_lengths, target_max_length) for layer in self.layers: target = layer(target, target_lengths, target_max_length, target_bias, source_encoded, source_encoded_lengths, source_encoded_max_length) # target: (batch_size * target_max_length, model_size) target = mx.sym.reshape(data=target, shape=(-3, -1)) # logits: (batch_size * target_max_length, vocab_size) logits = mx.sym.FullyConnected(data=target, num_hidden=self.config.vocab_size, weight=self.cls_w, bias=self.cls_b, name=C.LOGITS_NAME) return logits def decode_step(self, prev_word_id: mx.sym.Symbol, source_encoded_max_length: int, *states: mx.sym.Symbol) \ -> Tuple[mx.sym.Symbol, mx.sym.Symbol, List[mx.sym.Symbol]]: """ Decodes a single time step given the previous word id and previous decoder states. Returns logits, attention probabilities, and next decoder states. Implementations can maintain an arbitrary number of states. :param prev_word_id: Previous word id. Shape: (batch_size,). :param source_encoded_max_length: Length of encoded source time dimension. :param states: Arbitrary list of decoder states. :return: logits, attention probabilities, next decoder states. """ target_max_length = self._get_target_max_length(source_encoded_max_length) # sequences: (batch_size, target_max_length) source_encoded, source_encoded_lengths, sequences, lengths = states # (batch_size, target_max_length) mask = mx.sym.one_hot(indices=lengths, depth=target_max_length, on_value=1, off_value=0) # all zeros but length position is set to prev_word_id # (batch_size, target_max_length) prev_word_id = mx.sym.broadcast_mul(mx.sym.expand_dims(prev_word_id, axis=1), mask) # append/insert prev_word_id to sequences # (batch_size, target_max_length) sequences = sequences + prev_word_id lengths += 1 # (1, target_max_length, target_max_length) target_bias = transformer.get_autoregressive_bias(target_max_length, name="%sbias" % self.prefix) # (batch_size, target_max_length, model_size) target, target_lengths, target_max_length = self.embedding.encode(sequences, lengths, target_max_length) for layer in self.layers: target = layer(target, target_lengths, target_max_length, target_bias, source_encoded, source_encoded_lengths, source_encoded_max_length) # set all target positions to zero except for current time-step # target: (batch_size, target_max_length, model_size) target = mx.sym.broadcast_mul(target, mx.sym.expand_dims(mask, axis=2)) # reduce to single prediction # target: (batch_size, model_size) target = mx.sym.sum(target, axis=1, keepdims=False) # logits: (batch_size, vocab_size) logits = mx.sym.FullyConnected(data=target, num_hidden=self.config.vocab_size, weight=self.cls_w, bias=self.cls_b, name=C.LOGITS_NAME) # TODO(fhieber): no attention probs for now attention_probs = mx.sym.sum(mx.sym.zeros_like(source_encoded), axis=2, keepdims=False) # next states new_states = [source_encoded, source_encoded_lengths, sequences, lengths] return logits, attention_probs, new_states def reset(self): pass def init_states(self, source_encoded: mx.sym.Symbol, source_encoded_lengths: mx.sym.Symbol, source_encoded_max_length: int) -> List[mx.sym.Symbol]: """ Returns a list of symbolic states that represent the initial states of this decoder. Used for inference. :param source_encoded: Encoded source. Shape: (batch_size, source_encoded_max_length, encoder_depth). :param source_encoded_lengths: Lengths of encoded source sequences. Shape: (batch_size,). :param source_encoded_max_length: Size of encoder time dimension. :return: List of symbolic initial states. """ target_max_length = self._get_target_max_length(source_encoded_max_length) # 0s: (batch_size, target_max_length) sequences = mx.sym.broadcast_axis(mx.sym.expand_dims(mx.sym.zeros_like(source_encoded_lengths), axis=1), axis=1, size=target_max_length) # 0s: (batch_size, source_encoded_max_length, encoder_depth) lengths = mx.sym.zeros_like(source_encoded_lengths) return [source_encoded, source_encoded_lengths, sequences, lengths] def state_variables(self) -> List[mx.sym.Symbol]: """ Returns the list of symbolic variables for this decoder to be used during inference. :return: List of symbolic variables. """ return [mx.sym.Variable(C.SOURCE_ENCODED_NAME), mx.sym.Variable(C.SOURCE_LENGTH_NAME), mx.sym.Variable('sequences'), mx.sym.Variable('lengths')] def state_shapes(self, batch_size: int, source_encoded_max_length: int, source_encoded_depth: int) -> List[mx.io.DataDesc]: """ Returns a list of shape descriptions given batch size, encoded source max length and encoded source depth. Used for inference. :param batch_size: Batch size during inference. :param source_encoded_max_length: Size of encoder time dimension. :param source_encoded_depth: Depth of encoded source. :return: List of shape descriptions. """ target_max_length = self._get_target_max_length(source_encoded_max_length) return [mx.io.DataDesc(C.SOURCE_ENCODED_NAME, (batch_size, source_encoded_max_length, source_encoded_depth), layout=C.BATCH_MAJOR), mx.io.DataDesc(C.SOURCE_LENGTH_NAME, (batch_size,), layout="N"), mx.io.DataDesc('sequences', (batch_size, target_max_length), layout="NC"), mx.io.DataDesc('lengths', (batch_size,), layout="N")] def get_rnn_cells(self) -> List[mx.rnn.BaseRNNCell]: """ Returns a list of RNNCells used by this decoder. """ return super().get_rnn_cells() @staticmethod def _get_target_max_length(source_encoded_max_length: int): # TODO(fhieber): we need to hardcode this for the inference algorithm to work. # This is currently in line with the beam_search algorithm but not ideal. return source_encoded_max_length * C.TARGET_MAX_LENGTH_FACTOR RecurrentDecoderState = NamedTuple('RecurrentDecoderState', [ ('hidden', mx.sym.Symbol), ('layer_states', List[mx.sym.Symbol]), ]) """ RecurrentDecoder state. :param hidden: Hidden state after attention mechanism. Shape: (batch_size, num_hidden). :param layer_states: Hidden states for RNN layers of RecurrentDecoder. Shape: List[(batch_size, rnn_num_hidden)] """ class RecurrentDecoderConfig(Config): """ Recurrent decoder configuration. :param vocab_size: Target vocabulary size. :param max_seq_len_source: Maximum source sequence length :param num_embed: Target word embedding size. :param rnn_config: RNN configuration. :param attention_config: Attention configuration. :param embed_dropout: Dropout probability for target embeddings. :param hidden_dropout: Dropout probability on next decoder hidden state. :param weight_tying: Whether to share embedding and prediction parameter matrices. :param zero_state_init: If true, initialize RNN states with zeros. :param context_gating: Whether to use context gating. :param layer_normalization: Apply layer normalization. """ def __init__(self, vocab_size: int, max_seq_len_source: int, num_embed: int, rnn_config: rnn.RNNConfig, attention_config: attentions.AttentionConfig, embed_dropout: float = .0, hidden_dropout: float = .0, weight_tying: bool = False, zero_state_init: bool = False, context_gating: bool = False, layer_normalization: bool = False) -> None: super().__init__() self.vocab_size = vocab_size self.max_seq_len_source = max_seq_len_source self.num_embed = num_embed self.rnn_config = rnn_config self.attention_config = attention_config self.embed_dropout = embed_dropout self.hidden_dropout = hidden_dropout self.weight_tying = weight_tying self.zero_state_init = zero_state_init self.context_gating = context_gating self.layer_normalization = layer_normalization class RecurrentDecoder(Decoder): """ RNN Decoder with attention. The architecture is based on Luong et al, 2015: Effective Approaches to Attention-based Neural Machine Translation. :param config: Configuration for recurrent decoder. :param lexicon: Optional Lexicon. :param embed_weight: Optionally use an existing embedding matrix instead of creating a new target embedding. :param prefix: Decoder symbol prefix. """ def __init__(self, config: RecurrentDecoderConfig, lexicon: Optional[lexicons.Lexicon] = None, embed_weight: Optional[mx.sym.Symbol] = None, prefix: str = C.DECODER_PREFIX) -> None: # TODO: implement variant without input feeding self.config = config self.rnn_config = config.rnn_config self.attention = attentions.get_attention(config.attention_config, config.max_seq_len_source) self.lexicon = lexicon self.prefix = prefix self.num_hidden = self.rnn_config.num_hidden if self.config.context_gating: self.gate_w = mx.sym.Variable("%sgate_weight" % prefix) self.gate_b = mx.sym.Variable("%sgate_bias" % prefix) self.mapped_rnn_output_w = mx.sym.Variable("%smapped_rnn_output_weight" % prefix) self.mapped_rnn_output_b = mx.sym.Variable("%smapped_rnn_output_bias" % prefix) self.mapped_context_w = mx.sym.Variable("%smapped_context_weight" % prefix) self.mapped_context_b = mx.sym.Variable("%smapped_context_bias" % prefix) if self.rnn_config.residual: utils.check_condition(self.config.rnn_config.first_residual_layer >= 2, "Residual connections on the first decoder layer are not supported as input and " "output dimensions do not match.") self.rnn = rnn.get_stacked_rnn(self.rnn_config, self.prefix) if not self.config.zero_state_init: self._create_state_init_parameters() # Hidden state parameters self.hidden_w = mx.sym.Variable("%shidden_weight" % prefix) self.hidden_b = mx.sym.Variable("%shidden_bias" % prefix) self.hidden_norm = layers.LayerNormalization(self.num_hidden, prefix="%shidden_norm" % prefix) \ if self.config.layer_normalization else None # Embedding & output parameters if embed_weight is None: embed_weight = mx.sym.Variable(C.TARGET_EMBEDDING_PREFIX + "weight") self.embedding = encoder.Embedding(self.config.num_embed, self.config.vocab_size, prefix=C.TARGET_EMBEDDING_PREFIX, dropout=config.embed_dropout, embed_weight=embed_weight) if self.config.weight_tying: check_condition(self.num_hidden == self.config.num_embed, "Weight tying requires target embedding size and rnn_num_hidden to be equal") logger.info("Tying the target embeddings and prediction matrix.") self.cls_w = embed_weight else: self.cls_w = mx.sym.Variable("%scls_weight" % prefix) self.cls_b = mx.sym.Variable("%scls_bias" % prefix) def _create_state_init_parameters(self): """ Creates parameters for encoder last state transformation into decoder layer initial states. """ self.init_ws, self.init_bs, self.init_norms = [], [], [] for state_idx, (_, init_num_hidden) in enumerate(self.rnn.state_shape): self.init_ws.append(mx.sym.Variable("%senc2decinit_%d_weight" % (self.prefix, state_idx))) self.init_bs.append(mx.sym.Variable("%senc2decinit_%d_bias" % (self.prefix, state_idx))) if self.config.layer_normalization: self.init_norms.append(layers.LayerNormalization(num_hidden=init_num_hidden, prefix="%senc2decinit_%d_norm" % ( self.prefix, state_idx))) def decode_sequence(self, source_encoded: mx.sym.Symbol, source_encoded_lengths: mx.sym.Symbol, source_encoded_max_length: int, target: mx.sym.Symbol, target_lengths: mx.sym.Symbol, target_max_length: int, source_lexicon: Optional[mx.sym.Symbol] = None) -> mx.sym.Symbol: """ Decodes given a known target sequence and returns logits with batch size and target length dimensions collapsed. Used for training. :param source_encoded: Encoded source: (source_encoded_max_length, batch_size, encoder_depth). :param source_encoded_lengths: Lengths of encoded source sequences. Shape: (batch_size,). :param source_encoded_max_length: Size of encoder time dimension. :param target: Target sequence. Shape: (batch_size, target_max_length). :param target_lengths: Lengths of target sequences. Shape: (batch_size,). :param target_max_length: Size of target sequence dimension. :param source_lexicon: Lexical biases for current sentence. Shape: (batch_size, target_vocab_size, source_seq_len) :return: Logits of next-word predictions for target sequence. Shape: (batch_size * target_max_length, target_vocab_size) """ # embed and slice target words # target_embed: (batch_size, target_seq_len, num_target_embed) target_embed, target_lengths, target_max_length = self.embedding.encode(target, target_lengths, target_max_length) # target_embed: target_seq_len * (batch_size, num_target_embed) target_embed = mx.sym.split(data=target_embed, num_outputs=target_max_length, axis=1, squeeze_axis=True) # get recurrent attention function conditioned on source source_encoded_batch_major = mx.sym.swapaxes(source_encoded, dim1=0, dim2=1, name='source_encoded_batch_major') attention_func = self.attention.on(source_encoded_batch_major, source_encoded_lengths, source_encoded_max_length) attention_state = self.attention.get_initial_state(source_encoded_lengths, source_encoded_max_length) # initialize decoder states # hidden: (batch_size, rnn_num_hidden) # layer_states: List[(batch_size, state_num_hidden] state = self.get_initial_state(source_encoded, source_encoded_lengths) # hidden_all: target_seq_len * (batch_size, 1, rnn_num_hidden) hidden_all = [] # TODO: possible alternative: feed back the context vector instead of the hidden (see lamtram) lexical_biases = [] self.reset() for seq_idx in range(target_max_length): # hidden: (batch_size, rnn_num_hidden) state, attention_state = self._step(target_embed[seq_idx], state, attention_func, attention_state, seq_idx) # hidden_expanded: (batch_size, 1, rnn_num_hidden) hidden_all.append(mx.sym.expand_dims(data=state.hidden, axis=1)) if source_lexicon is not None: assert self.lexicon is not None, "source_lexicon should not be None if no lexicon available" lexical_biases.append(self.lexicon.calculate_lex_bias(source_lexicon, attention_state.probs)) # concatenate along time axis # hidden_concat: (batch_size, target_seq_len, rnn_num_hidden) hidden_concat = mx.sym.concat(*hidden_all, dim=1, name="%shidden_concat" % self.prefix) # hidden_concat: (batch_size * target_seq_len, rnn_num_hidden) hidden_concat = mx.sym.reshape(data=hidden_concat, shape=(-1, self.num_hidden)) # logits: (batch_size * target_seq_len, target_vocab_size) logits = mx.sym.FullyConnected(data=hidden_concat, num_hidden=self.config.vocab_size, weight=self.cls_w, bias=self.cls_b, name=C.LOGITS_NAME) if source_lexicon is not None: # lexical_biases_concat: (batch_size, target_seq_len, target_vocab_size) lexical_biases_concat = mx.sym.concat(*lexical_biases, dim=1, name='lex_bias_concat') # lexical_biases_concat: (batch_size * target_seq_len, target_vocab_size) lexical_biases_concat = mx.sym.reshape(data=lexical_biases_concat, shape=(-1, self.config.vocab_size)) logits = mx.sym.broadcast_add(lhs=logits, rhs=lexical_biases_concat, name='%s_plus_lex_bias' % C.LOGITS_NAME) return logits def decode_step(self, prev_word_id: mx.sym.Symbol, source_encoded_max_length: int, *states: mx.sym.Symbol) \ -> Tuple[mx.sym.Symbol, mx.sym.Symbol, List[mx.sym.Symbol]]: """ Decodes a single time step given the previous word id and previous decoder states. Returns logits, attention probabilities, and next decoder states. Implementations can maintain an arbitrary number of states. :param prev_word_id: Previous word id. Shape: (batch_size,). :param source_encoded_max_length: Length of encoded source time dimension. :param states: Arbitrary list of decoder states. :return: logits, attention probabilities, next decoder states. """ source_encoded, prev_dynamic_source, source_encoded_length, prev_hidden, *layer_states = states word_vec_prev, _, _ = self.embedding.encode(prev_word_id, None, 1) attention_func = self.attention.on(source_encoded, source_encoded_length, source_encoded_max_length) prev_state = RecurrentDecoderState(prev_hidden, list(layer_states)) prev_attention_state = attentions.AttentionState(context=None, probs=None, dynamic_source=prev_dynamic_source) # state.hidden: (batch_size, rnn_num_hidden) # attention_state.dynamic_source: (batch_size, source_seq_len, coverage_num_hidden) # attention_state.probs: (batch_size, source_seq_len) state, attention_state = self._step(word_vec_prev, prev_state, attention_func, prev_attention_state) # logits: (batch_size, target_vocab_size) logits = mx.sym.FullyConnected(data=state.hidden, num_hidden=self.config.vocab_size, weight=self.cls_w, bias=self.cls_b, name=C.LOGITS_NAME) new_states = [source_encoded, attention_state.dynamic_source, source_encoded_length, state.hidden] + state.layer_states return logits, attention_state.probs, new_states def reset(self): """ Calls reset on the RNN cell. """ self.rnn.reset() # TODO remove this once mxnet.rnn.SequentialRNNCell.reset() invokes recursive calls on layer cells for cell in self.rnn._cells: # TODO remove this once mxnet.rnn.ModifierCell.reset() invokes reset() of base_cell if isinstance(cell, mx.rnn.ModifierCell): cell.base_cell.reset() cell.reset() def init_states(self, source_encoded: mx.sym.Symbol, source_encoded_lengths: mx.sym.Symbol, source_encoded_max_length: int) -> List[mx.sym.Symbol]: """ Returns a list of symbolic states that represent the initial states of this decoder. Used for inference. :param source_encoded: Encoded source. Shape: (batch_size, source_encoded_max_length, encoder_depth). :param source_encoded_lengths: Lengths of encoded source sequences. Shape: (batch_size,). :param source_encoded_max_length: Size of encoder time dimension. :return: List of symbolic initial states. """ source_encoded_time_major = mx.sym.swapaxes(source_encoded, dim1=0, dim2=1) hidden, layer_states = self.get_initial_state(source_encoded_time_major, source_encoded_lengths) context, attention_probs, dynamic_source = self.attention.get_initial_state(source_encoded_lengths, source_encoded_max_length) states = [source_encoded, dynamic_source, source_encoded_lengths, hidden] + layer_states return states def state_variables(self) -> List[mx.sym.Symbol]: """ Returns the list of symbolic variables for this decoder to be used during inference. :return: List of symbolic variables. """ return [mx.sym.Variable(C.SOURCE_ENCODED_NAME), mx.sym.Variable(C.SOURCE_DYNAMIC_PREVIOUS_NAME), mx.sym.Variable(C.SOURCE_LENGTH_NAME), mx.sym.Variable(C.HIDDEN_PREVIOUS_NAME)] + \ [mx.sym.Variable("%senc2decinit_%d" % (self.prefix, i)) for i in range(len(self.rnn.state_info))] def state_shapes(self, batch_size: int, source_encoded_max_length: int, source_encoded_depth: int) -> List[mx.io.DataDesc]: """ Returns a list of shape descriptions given batch size, encoded source max length and encoded source depth. Used for inference. :param batch_size: Batch size during inference. :param source_encoded_max_length: Size of encoder time dimension. :param source_encoded_depth: Depth of encoded source. :return: List of shape descriptions. """ return [mx.io.DataDesc(C.SOURCE_ENCODED_NAME, (batch_size, source_encoded_max_length, source_encoded_depth), layout=C.BATCH_MAJOR), mx.io.DataDesc(C.SOURCE_DYNAMIC_PREVIOUS_NAME, (batch_size, source_encoded_max_length, self.attention.dynamic_source_num_hidden), layout=C.BATCH_MAJOR), mx.io.DataDesc(C.SOURCE_LENGTH_NAME, (batch_size,), layout="N"), mx.io.DataDesc(C.HIDDEN_PREVIOUS_NAME, (batch_size, self.num_hidden), layout="NC")] + \ [mx.io.DataDesc("%senc2decinit_%d" % (self.prefix, i), (batch_size, num_hidden), layout=C.BATCH_MAJOR) for i, (_, num_hidden) in enumerate(self.rnn.state_shape)] def get_rnn_cells(self) -> List[mx.rnn.BaseRNNCell]: """ Returns a list of RNNCells used by this decoder. """ return [self.rnn] def get_initial_state(self, source_encoded: mx.sym.Symbol, source_encoded_length: mx.sym.Symbol) -> RecurrentDecoderState: """ Computes initial states of the decoder, hidden state, and one for each RNN layer. Optionally, init states for RNN layers are computed using 1 non-linear FC with the last state of the encoder as input. :param source_encoded: Concatenated encoder states. Shape: (batch_size, source_seq_len, encoder_num_hidden). :param source_encoded_length: Lengths of source sequences. Shape: (batch_size,). :return: Decoder state. """ # we derive the shape of hidden and layer_states from some input to enable # shape inference for the batch dimension during inference. # (batch_size, 1) zeros = mx.sym.expand_dims(mx.sym.zeros_like(source_encoded_length), axis=1) # last encoder state source_encoded_last = mx.sym.SequenceLast(data=source_encoded, sequence_length=source_encoded_length, use_sequence_length=True) if not self.config.zero_state_init else None # decoder hidden state hidden = mx.sym.tile(data=zeros, reps=(1, self.num_hidden)) # initial states for each layer layer_states = [] for state_idx, (_, init_num_hidden) in enumerate(self.rnn.state_shape): if self.config.zero_state_init: init = mx.sym.tile(data=zeros, reps=(1, init_num_hidden)) else: init = mx.sym.FullyConnected(data=source_encoded_last, num_hidden=init_num_hidden, weight=self.init_ws[state_idx], bias=self.init_bs[state_idx], name="%senc2decinit_%d" % (self.prefix, state_idx)) if self.config.layer_normalization: init = self.init_norms[state_idx].normalize(init) init = mx.sym.Activation(data=init, act_type="tanh", name="%senc2dec_inittanh_%d" % (self.prefix, state_idx)) layer_states.append(init) return RecurrentDecoderState(hidden, layer_states) def _step(self, word_vec_prev: mx.sym.Symbol, state: RecurrentDecoderState, attention_func: Callable, attention_state: attentions.AttentionState, seq_idx: int = 0) -> Tuple[RecurrentDecoderState, attentions.AttentionState]: """ Performs single-time step in the RNN, given previous word vector, previous hidden state, attention function, and RNN layer states. :param word_vec_prev: Embedding of previous target word. Shape: (batch_size, num_target_embed). :param state: Decoder state consisting of hidden and layer states. :param attention_func: Attention function to produce context vector. :param attention_state: Previous attention state. :param seq_idx: Decoder time step. :return: (new decoder state, updated attention state). """ # (1) RNN step # concat previous word embedding and previous hidden state rnn_input = mx.sym.concat(word_vec_prev, state.hidden, dim=1, name="%sconcat_target_context_t%d" % (self.prefix, seq_idx)) # rnn_output: (batch_size, rnn_num_hidden) # next_layer_states: num_layers * [batch_size, rnn_num_hidden] rnn_output, layer_states = self.rnn(rnn_input, state.layer_states) # (2) Attention step attention_input = self.attention.make_input(seq_idx, word_vec_prev, rnn_output) attention_state = attention_func(attention_input, attention_state) # (3) Combine previous word vector, rnn output, and context hidden_concat = mx.sym.concat(rnn_output, attention_state.context, dim=1, name='%shidden_concat_t%d' % (self.prefix, seq_idx)) if self.config.hidden_dropout > 0: hidden_concat = mx.sym.Dropout(data=hidden_concat, p=self.config.hidden_dropout, name='%shidden_concat_dropout_t%d' % (self.prefix, seq_idx)) if self.config.context_gating: hidden = self._context_gate(hidden_concat, rnn_output, attention_state, seq_idx) else: hidden = self._hidden_mlp(hidden_concat, seq_idx) return RecurrentDecoderState(hidden, layer_states), attention_state def _hidden_mlp(self, hidden_concat: mx.sym.Symbol, seq_idx: int) -> mx.sym.Symbol: hidden = mx.sym.FullyConnected(data=hidden_concat, num_hidden=self.num_hidden, # to state size of RNN weight=self.hidden_w, bias=self.hidden_b, name='%shidden_fc_t%d' % (self.prefix, seq_idx)) if self.config.layer_normalization: hidden = self.hidden_norm.normalize(hidden) # hidden: (batch_size, rnn_num_hidden) hidden = mx.sym.Activation(data=hidden, act_type="tanh", name="%snext_hidden_t%d" % (self.prefix, seq_idx)) return hidden def _context_gate(self, hidden_concat: mx.sym.Symbol, rnn_output: mx.sym.Symbol, attention_state: attentions.AttentionState, seq_idx: int) -> mx.sym.Symbol: gate = mx.sym.FullyConnected(data=hidden_concat, num_hidden=self.num_hidden, weight=self.gate_w, bias=self.gate_b, name = '%shidden_gate_t%d' % (self.prefix, seq_idx)) gate = mx.sym.Activation(data=gate, act_type="sigmoid", name='%shidden_gate_act_t%d' % (self.prefix, seq_idx)) mapped_rnn_output = mx.sym.FullyConnected(data=rnn_output, num_hidden=self.num_hidden, weight=self.mapped_rnn_output_w, bias=self.mapped_rnn_output_b, name="%smapped_rnn_output_fc_t%d" % (self.prefix, seq_idx)) mapped_context = mx.sym.FullyConnected(data=attention_state.context, num_hidden=self.num_hidden, weight=self.mapped_context_w, bias=self.mapped_context_b, name="%smapped_context_fc_t%d" % (self.prefix, seq_idx)) hidden = gate * mapped_rnn_output + (1 - gate) * mapped_context if self.config.layer_normalization: hidden = self.hidden_norm.normalize(hidden) # hidden: (batch_size, rnn_num_hidden) hidden = mx.sym.Activation(data=hidden, act_type="tanh", name="%snext_hidden_t%d" % (self.prefix, seq_idx)) return hidden
49.558167
121
0.628136
40,126
0.951439
0
0
4,505
0.106819
0
0
16,612
0.393892
8b4b9a54a9e446db94f72c72dbf48b6d43df54c8
3,595
py
Python
dev-language/python/DataWhale/plane_sprite.py
marxlee/dev-record-doc
197b1ae1c8b692eeb86b8494915840d630414d3a
[ "Apache-2.0" ]
null
null
null
dev-language/python/DataWhale/plane_sprite.py
marxlee/dev-record-doc
197b1ae1c8b692eeb86b8494915840d630414d3a
[ "Apache-2.0" ]
1
2020-05-14T13:02:24.000Z
2020-05-14T13:02:24.000Z
dev-language/python/DataWhale/plane_sprite.py
marxlee/dev-record-doc
197b1ae1c8b692eeb86b8494915840d630414d3a
[ "Apache-2.0" ]
null
null
null
import random import pygame # 刷新帧率 FRAME_PER_SEC = 60 # 屏幕属性 SCREEN_RECT = pygame.Rect(0, 0, 480, 700) # 创建敌军事件 CREATE_ENEMY_EVENT = pygame.USEREVENT # 创建英雄发射子弹事件 HERO_FIRE_EVENT = pygame.USEREVENT + 1 class GameSprite(pygame.sprite.Sprite): """飞机大战游戏精灵""" def __init__(self, image_name_load, speed=1): # 1, 调用父类的方法 super().__init__() super().__init__() # 2. 图像位置速度 self.image = pygame.image.load(image_name_load) # 获取图像的位置 self.rect = self.image.get_rect() # 赋值速度 self.speed = speed def update(self): # 在屏幕的垂直方向上移动 self.rect.y += self.speed # # 判断位置, 超出部分, 重置精灵起始位置 # if self.rect.y >= SCREEN_RECT.height: # self.rect.y = SCREEN_RECT.y class Background(GameSprite): """游戏背景精灵""" def update(self): # 1. 调用父类方法实现 super().update() # 2. 判断是移除屏幕, 将图像摄者到图像上方 if self.rect.y >= SCREEN_RECT.height: self.rect.y = -SCREEN_RECT.height def __init__(self, is_alt=False): """""" # 1. 调用父类方法创建精灵, 创建背景图片 super().__init__("./images/background.png") # 2. 判断is_alt 修改图像位置 if is_alt: self.rect.y = -SCREEN_RECT.height class Enemy(GameSprite): """敌机精灵""" def __init__(self): # 初始化父类方法 super().__init__("./images/enemy1.png") # 指定敌机的初始随机速度 random_speed = random.randint(1, 3) self.speed = random_speed # 敌机初始随机位置, 最大值获取 max_x = SCREEN_RECT.width-self.rect.width # 设置 x 的位置 self.rect.x = random.randint(0, max_x) # 设置 Y 方向初始位置 self.rect.bottom = 0 def update(self): # 调用父类方法保持垂直方向飞行 super().update() # 判断是否飞出屏幕, 如果飞出, 需要从精灵族删除敌机 if self.rect.y >= SCREEN_RECT.height: # print("飞出屏幕, 需要删除...") # 删除精灵 # self.__del__() # sprite 提供的kill()方法, 会将精灵在精灵族和内存中删除, 同时也调用__del__方法 self.kill() # def __del__(self): # # print("销毁敌机: %s" % self.rect) # pass class Hero(GameSprite): """英雄""" def __init__(self, key_up_down=0, key_left_right=0): # 调用父类方法 super().__init__("./images/me1.png", 0) # 设置英雄位置 self.rect.centerx = SCREEN_RECT.centerx self.rect.bottom = SCREEN_RECT.bottom - 120 self.k_up_down = key_up_down self.k_left_right = key_left_right self.bullet_group = pygame.sprite.Group() pass def update(self): # 英雄在水平方向上运动 self.rect.y += self.k_up_down self.rect.x += self.k_left_right # 设置水平方向的运行轨迹界限 if self.rect.right >= SCREEN_RECT.right: self.rect.right = SCREEN_RECT.right elif self.rect.x <= 0: self.rect.x = 0 # 试着垂直方向上的运行轨迹界限 if self.rect.bottom >= SCREEN_RECT.bottom: self.rect.bottom = SCREEN_RECT.bottom elif self.rect.y <= 0: self.rect.y = 0 def fire(self): # print("发射子弹... ") # 创建子弹 bu = Bullet() # 子弹位置 bu.rect.bottom = self.rect.y bu.rect.centerx = self.rect.centerx # 添加到精灵族 self.bullet_group.add(bu) class Bullet(GameSprite): """子弹精灵""" def __init__(self): # 创建子弹 super().__init__("./images/bullet1.png", -2) def update(self): # 调用父类方法, 子弹严垂直方向飞行 super().update() # 越界, 删除精灵 if self.rect.bottom <= 0: self.kill() def __del__(self): print("bullet kill...")
23.966667
64
0.551878
4,027
0.932392
0
0
0
0
0
0
1,568
0.363047
8c663c96b9101af26692648dfb0ca8488e020977
332
py
Python
stPlus/__init__.py
qiaochen/stPlus
06294c6cf63d6d81555ffdd4d19c571c49805ff2
[ "MIT" ]
7
2021-01-23T07:13:21.000Z
2022-02-19T09:15:20.000Z
stPlus/__init__.py
qiaochen/stPlus
06294c6cf63d6d81555ffdd4d19c571c49805ff2
[ "MIT" ]
1
2021-08-22T00:59:03.000Z
2021-08-22T00:59:03.000Z
stPlus/__init__.py
qiaochen/stPlus
06294c6cf63d6d81555ffdd4d19c571c49805ff2
[ "MIT" ]
6
2020-11-29T02:01:01.000Z
2022-03-26T08:56:50.000Z
#!/usr/bin/env python """ # Authors: Shengquan Chen, Boheng Zhang, Xiaoyang Chen # Created Time : Sat 28 Nov 2020 08:31:29 PM CST # File Name: utils.py # Description: stPlus: reference-based enhancement of spatial transcriptomics """ __author__ = "Xiaoyang Chen" __email__ = "xychen20@mails.tsinghua.edu.cn" from .model import *
23.714286
77
0.737952
0
0
0
0
0
0
0
0
280
0.843373
8c677c928edef3da87db9d94101df11d9b713928
4,961
py
Python
PJ/11_liste_registri.py
vedgar/ip
5ed0773eea4243077f5defb77fb1839661308c83
[ "Unlicense" ]
5
2017-03-15T11:34:55.000Z
2021-03-10T13:05:02.000Z
PJ/11_liste_registri.py
vedgar/ip
5ed0773eea4243077f5defb77fb1839661308c83
[ "Unlicense" ]
null
null
null
PJ/11_liste_registri.py
vedgar/ip
5ed0773eea4243077f5defb77fb1839661308c83
[ "Unlicense" ]
14
2017-01-11T19:11:01.000Z
2021-05-09T18:42:19.000Z
"""Virtualna mašina za rad s listama; kolokvij 31. siječnja 2011. (Puljić). 9 registara (L1 do L9) koji drže liste cijelih brojeva (počinju od prazne), 2 naredbe (ubacivanje i izbacivanje elementa po indeksu), 3 upita (duljina i praznost liste, dohvaćanje elementa po indeksu).""" from vepar import * class T(TipoviTokena): LISTA, UBACI, IZBACI = 'lista', 'ubaci', 'izbaci' KOLIKO, PRAZNA, DOHVATI = 'koliko', 'prazna', 'dohvati' class ID(Token): pass class BROJ(Token): def vrijednost(self): return int(self.sadržaj) class MINUSBROJ(BROJ): """Negativni broj.""" def list_lexer(lex): for znak in lex: if znak.isspace(): lex.zanemari() elif znak == 'L': nakonL = lex.čitaj() if nakonL.isdecimal(): n = lex.prirodni_broj(nakonL) tok = lex.token(T.ID) if 1 <= n <= 9: yield tok else: raise tok.krivi_sadržaj('očekivan broj liste između 1 i 9') else: lex.zvijezda(str.isalpha) yield lex.literal(T, case=False) elif znak.isalpha(): lex.zvijezda(str.isalpha) yield lex.literal(T, case=False) elif znak.isdecimal(): lex.prirodni_broj(znak) yield lex.token(T.BROJ) elif znak == '-': lex.prirodni_broj('', nula=False) yield lex.token(T.MINUSBROJ) else: raise lex.greška() ### Beskontekstna gramatika (jezik je regularan!) # start -> naredba start | '' # naredba -> deklaracija | provjera | ubaci | izbaci | dohvati | duljina # deklaracija -> LISTA ID # provjera -> PRAZNA ID # ubaci -> UBACI ID BROJ BROJ | UBACI ID MINUSBROJ BROJ # izbaci -> IZBACI ID BROJ # dohvati -> DOHVATI ID BROJ # duljina -> KOLIKO ID ### Apstraktna sintaksna stabla # Program: naredbe:[naredba] # naredba: Deklaracija: lista:ID # Provjera: lista:ID # Ubaci: lista:ID vrijednost:BROJ|MINUSBROJ indeks:BROJ # Izbaci: lista:ID indeks:BROJ # Dohvati: lista:ID indeks:BROJ # Duljina: lista:ID class P(Parser): lexer = list_lexer def start(self): naredbe = [] while not self > KRAJ: naredbe.append(self.naredba()) return Program(naredbe) def naredba(self): if self >= T.UBACI: return Ubaci(self >> T.ID, self >> {T.BROJ,T.MINUSBROJ}, self >> T.BROJ) elif self >= T.LISTA: return Deklaracija(self >> T.ID) elif self >= T.PRAZNA: return Provjera(self >> T.ID) elif self >= T.IZBACI: return Izbaci(self >> T.ID, self >> T.BROJ) elif self >= T.DOHVATI: return Dohvati(self >> T.ID, self >> T.BROJ) elif self >= T.KOLIKO: return Duljina(self >> T.ID) else: raise self.greška() class Program(AST('naredbe')): """Program u jeziku listâ.""" def izvrši(self): mem = Memorija(redefinicija=False) for nar in self.naredbe: print(nar, nar.izvrši(mem), sep=' --> ') class Deklaracija(AST('lista')): """Deklaracija liste.""" def izvrši(self, memorija): memorija[self.lista] = [] class Provjera(AST('lista')): """Je li lista prazna?""" def izvrši(self, memorija): return not memorija[self.lista] class Duljina(AST('lista')): """Broj elemenata u listi.""" def izvrši(self, memorija): return len(memorija[self.lista]) class Dohvati(AST('lista indeks')): """Element zadanog indeksa (brojeći od 0). Prevelik indeks javlja grešku.""" def izvrši(self, memorija): l, i = memorija[self.lista], self.indeks.vrijednost() if i < len(l): return l[i] else: raise self.indeks.iznimka('Prevelik indeks') class Izbaci(AST('lista indeks')): """Izbacuje element zadanog indeksa iz liste ili javlja grešku izvođenja.""" def izvrši(self, memorija): l, i = memorija[self.lista], self.indeks.vrijednost() if i < len(l): del l[i] else: raise self.indeks.iznimka('Prevelik indeks') class Ubaci(AST('lista element indeks')): """Ubacuje vrijednost u listu na zadanom indeksu, ili javlja grešku.""" def izvrši(self, memorija): l, i = memorija[self.lista], self.indeks.vrijednost() if i <= len(l): l.insert(i, self.element.vrijednost()) else: raise self.indeks.iznimka('Prevelik indeks') P.tokeniziraj('lista L1 prazna ubaci-2345izbaci L9 dohvati 3 koliko') source = '''lista L1 lista L3 ubaci L3 45 0 dohvati L3 0 koliko L1 koliko L3 prazna L1 prazna L3 Lista L5 ubaci L5 6 0 ubaci L5 -7 1 ubaci L5 8 1 ubaci L5 9 0 dohvati L5 0 dohvati L5 1 dohvati L5 2 dohvati L5 3 koliko L5 izbaci L5 1 dohvati L5 0 dohvati L5 1 dohvati L5 2 koliko L5''' P(source).izvrši() with očekivano(LeksičkaGreška): P.tokeniziraj('L0') with očekivano(SintaksnaGreška): P('ubaci L5 6 -2') with očekivano(SemantičkaGreška): P('ubaci L7 5 0').izvrši() with očekivano(LeksičkaGreška): P.tokeniziraj('ubaci L3 5 -0')
36.211679
81
0.626083
2,498
0.4995
860
0.171966
0
0
0
0
1,914
0.382723
8c6a4e21298bd22ee6accce6dcffb362757cd105
746
py
Python
devops-console/apps/applications/migrations/0002_auto_20190130_1757.py
lilinghell/devops
1b2890d3f2d9f6e15e5b32d0910bc4768f065adc
[ "Apache-2.0" ]
4
2019-12-06T06:19:33.000Z
2021-12-23T13:05:06.000Z
devops-console/apps/applications/migrations/0002_auto_20190130_1757.py
lilinghell/devops
1b2890d3f2d9f6e15e5b32d0910bc4768f065adc
[ "Apache-2.0" ]
8
2020-03-15T03:40:38.000Z
2022-03-12T00:50:27.000Z
devops-console/apps/applications/migrations/0002_auto_20190130_1757.py
lilinghell/devops
1b2890d3f2d9f6e15e5b32d0910bc4768f065adc
[ "Apache-2.0" ]
null
null
null
# Generated by Django 2.1.5 on 2019-01-30 09:57 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('applications', '0001_initial'), ] operations = [ migrations.AlterField( model_name='repository', name='auth_pwd', field=models.CharField(max_length=128, null=True), ), migrations.AlterField( model_name='repository', name='auth_token', field=models.CharField(max_length=128, null=True), ), migrations.AlterField( model_name='repository', name='auth_username', field=models.CharField(max_length=128, null=True), ), ]
26.642857
62
0.580429
653
0.875335
0
0
0
0
0
0
148
0.198391
8c6abb2cc48a060bc29fbb9ab48584013b7a0a33
121
py
Python
trinity/components/builtin/upnp/events.py
onyb/trinity
347e2beac23c5c1bb4aab136bb44c162467f6ff7
[ "MIT" ]
null
null
null
trinity/components/builtin/upnp/events.py
onyb/trinity
347e2beac23c5c1bb4aab136bb44c162467f6ff7
[ "MIT" ]
null
null
null
trinity/components/builtin/upnp/events.py
onyb/trinity
347e2beac23c5c1bb4aab136bb44c162467f6ff7
[ "MIT" ]
null
null
null
from dataclasses import dataclass from lahja import BaseEvent @dataclass class NewUPnPMapping(BaseEvent): ip: str
13.444444
33
0.793388
44
0.363636
0
0
55
0.454545
0
0
0
0
8c6b08f46e1c028699dbaa4278859f6a3882f74c
6,125
py
Python
autobreadcrumbs/resolver.py
MtzwOsk/autobreadcrumbs
75e2fd1cc74db790c5fdc924d6fa9410ee7caa45
[ "MIT" ]
null
null
null
autobreadcrumbs/resolver.py
MtzwOsk/autobreadcrumbs
75e2fd1cc74db790c5fdc924d6fa9410ee7caa45
[ "MIT" ]
null
null
null
autobreadcrumbs/resolver.py
MtzwOsk/autobreadcrumbs
75e2fd1cc74db790c5fdc924d6fa9410ee7caa45
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- """ Breadcrumb resolving ==================== """ try: from django.core.urlresolvers import Resolver404, get_resolver except ImportError: from django.urls import Resolver404, get_resolver from autobreadcrumbs.registry import breadcrumbs_registry class BreadcrumbRessource(object): """ Simple crumb ressource model to contain all datas about a ressource. """ def __init__(self, path, name, title, view_args, view_kwargs, link_type_settings={}): self.path = path self.name = name self.title = title self.view_args = view_args self.view_kwargs = view_kwargs self.link_type_settings = link_type_settings def __repr__(self): return "<BreadcrumbRessource: {0}>".format(self.name) def __str__(self): # NOTE: should be __unicode__() because passed paths can be unicode... # right ? return self.path class PathBreadcrumbResolver(object): """ Resolve given path as breadcrumbs Arguments: root_urlconf (string): Python path to an url conf file, usually ``settings.ROOT_URLCONF``. It will be used as the url map to resolve every given path. """ def __init__(self, root_urlconf): self.urlresolver = get_resolver(root_urlconf) def cut(self, path): """ Cut given path into segments Arguments: path (string): An url path like ``/foo/bar/``. Returns: list: List of path segments, each segment is a part of the url path starting from ``/`` and ending on the full path. Such as for ``/foo/bar/`` segments will be: :: - / - /foo - /foo/bar """ # Cut the path in segments segments = ['/'] tmp = '/' for item in path.split('/'): if item: tmp += item + '/' segments.append(tmp) return segments def format_title(self, value): """ Manage title format Arguments: name (string): Url name. value (string): Crumb value. Keyword Arguments: request (django.http.request.HttpRequest): Optional Django request object used with custom crumb function. If not given, crumb functions is ignored (so the crumb ressource still be available). Returns: string: Crumb title. """ title = value if value is None: return None # Force unicode on lazy translation else it will trigger an exception # with templates if hasattr(value, '_proxy____unicode_cast'): title = unicode(value) return title def get_current(self, elements): """ Return current Breadcrumb from elements. This is pretty simple as the current element is allways the last element (if element list is not empty). Arguments: elements (list): List of breadcrumb elements. Returns: BreadcrumbRessource or None: The last element from given ``elements`` if any, else None. """ if len(elements) > 0: return elements[-1] return None def resolve(self, path, request=None): """ Return resolved breadcrumbs datas from given path. Cut the path in segments and check each of them to find breadcrumb details if any. Crumb value can be a simple string, a Django lazy unicode or a tuple ``(title, custom_function)``. Crumb ``custom_function`` take url name and request object as arguments and will return ``False`` to ignore crumb (won't be in breadcrumbs) or ``True`` to keep crumb element. Arguments: path (string): An url path like ``/foo/bar/``. Keyword Arguments: request (django.http.request.HttpRequest): Optional Django request object used with custom crumb function. If not given, crumb functions will be ignored (so the crumb ressources still be available). Returns: Dict: Datas from resolved crumbs: * ``autobreadcrumbs_elements``: Resolved bread crumbs for each segment; * ``autobreadcrumbs_current``: Breadcrumb for current (the last one) path. """ breadcrumbs_elements = [] link_type_settings = {} path_segments = self.cut(path) # Resolve each segment for seg in path_segments: try: resolved = self.urlresolver.resolve(seg) except Resolver404: pass else: view_control = None namespace = resolved.namespace title = name = resolved.url_name if not name: continue if namespace: name = ':'.join([namespace, name]) # Ignore ressource without a crumb title if not breadcrumbs_registry.has_title(name): continue # Get defined title title = breadcrumbs_registry.get_title(name) # Custom function usage if isinstance(title, tuple) or isinstance(title, list): title, link_type_settings = title title = self.format_title(title) # Ignore element if empty if title is None: continue # Finally append the part to the knowed crumbs list breadcrumbs_elements.append( BreadcrumbRessource(seg, name, title, resolved.args, resolved.kwargs, link_type_settings) ) return { 'autobreadcrumbs_elements': breadcrumbs_elements, 'autobreadcrumbs_current': self.get_current(breadcrumbs_elements), }
29.878049
89
0.563755
5,839
0.953306
0
0
0
0
0
0
3,304
0.539429
8c6cfc38e57f86eab7797d375f99dd296d63319a
1,276
py
Python
wrappers/SpellbookWrapper.py
WouterGlorieux/BitcoinSpellbook-v0.2
93b5480f87f4dc41c2d71093aa98d1fbdd83625c
[ "MIT" ]
null
null
null
wrappers/SpellbookWrapper.py
WouterGlorieux/BitcoinSpellbook-v0.2
93b5480f87f4dc41c2d71093aa98d1fbdd83625c
[ "MIT" ]
null
null
null
wrappers/SpellbookWrapper.py
WouterGlorieux/BitcoinSpellbook-v0.2
93b5480f87f4dc41c2d71093aa98d1fbdd83625c
[ "MIT" ]
null
null
null
#!/usr/bin/env python # -*- coding: utf-8 -*- from BlockDataWrapper import BlockDataWrapper from BlockInputsWrapper import BlockInputsWrapper from BlockLinkerWrapper import BlockLinkerWrapper from BlockRandomWrapper import BlockRandomWrapper from BlockVoterWrapper import BlockVoterWrapper from BlockForwardWrapper import BlockForwardWrapper from BlockDistributeWrapper import BlockDistributeWrapper from BlockTriggerWrapper import BlockTriggerWrapper from BlockWriterWrapper import BlockWriterWrapper class SpellbookWrapper(): def __init__(self, url='http://bitcoinspellbook.appspot.com'): self.url = url def blockdata(self): return BlockDataWrapper(self.url) def blockinputs(self): return BlockInputsWrapper(self.url) def blocklinker(self): return BlockLinkerWrapper(self.url) def blockrandom(self): return BlockRandomWrapper(self.url) def blockvoter(self): return BlockVoterWrapper(self.url) def blockforward(self): return BlockForwardWrapper(self.url) def blockdistribute(self): return BlockDistributeWrapper(self.url) def blocktrigger(self): return BlockTriggerWrapper(self.url) def blockwriter(self): return BlockWriterWrapper(self.url)
27.73913
66
0.760972
770
0.603448
0
0
0
0
0
0
81
0.06348
8c6d9af9d7f87aa9ba388d3e1cf15c31ce4fbd09
2,958
py
Python
tests/test_encode.py
gruber-sciencelab/SMEAGOL
966e18a9869e992537605f93e5ee2af1c9e257f2
[ "MIT" ]
null
null
null
tests/test_encode.py
gruber-sciencelab/SMEAGOL
966e18a9869e992537605f93e5ee2af1c9e257f2
[ "MIT" ]
null
null
null
tests/test_encode.py
gruber-sciencelab/SMEAGOL
966e18a9869e992537605f93e5ee2af1c9e257f2
[ "MIT" ]
null
null
null
from smeagol.encode import * import os import pytest script_dir = os.path.dirname(__file__) rel_path = "data" data_path = os.path.join(script_dir, rel_path) def test_integer_encode(): record = SeqRecord(Seq('ACGTNWSMKRYBDHVZ'), id='id', name='name') result = integer_encode(record, rc=False) assert np.all(result == [1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,0]) record = SeqRecord(Seq('ACGE')) with pytest.raises(KeyError): integer_encode(record, rc='none') record = SeqRecord(Seq('AGCAU')) result = integer_encode(record, rc=True) assert np.all(result == [1, 5, 3, 2, 5]) def test_SeqEncoding(): records = [SeqRecord(Seq('AGC'), id='id1', name='name1'), SeqRecord(Seq('ACA'), id='id2', name='name2')] result = SeqEncoding(records, sense='+') assert result.len == 3 assert np.all(result.ids == ['id1', 'id2']) assert np.all(result.names == ['name1', 'name2']) assert np.all(result.seqs == np.array([[1,3,2], [1,2,1]])) assert np.all(result.senses == ['+', '+']) assert type(result.senses) == np.ndarray assert type(result.ids) == np.ndarray assert type(result.names) == np.ndarray assert type(result.senses) == np.ndarray result = SeqEncoding(records, sense='+', rcomp='only') assert np.all(result.ids == ['id1', 'id2']) assert np.all(result.names == ['name1', 'name2']) assert np.all(result.seqs == np.array([[3,2,4], [4,3,4]])) assert np.all(result.senses == ['-', '-']) result = SeqEncoding(records, sense='+', rcomp='both') assert np.all(result.ids == ['id1', 'id2', 'id1', 'id2']) assert np.all(result.names == ['name1', 'name2', 'name1', 'name2']) assert np.all(result.seqs == np.array([[1,3,2], [1,2,1], [3,2,4], [4,3,4]])) assert np.all(result.senses == ['+', '+', '-', '-']) def test_SeqGroups(): records = os.path.join(data_path, 'test.fa.gz') result = SeqGroups(records, sense='+') expected = [SeqEncoding([SeqRecord(seq=Seq('ATTAAATA'), id='Seg1', name='Seg1')], sense='+', rcomp='none'), SeqEncoding([SeqRecord(seq=Seq('CAAAATCTTTAGGATTAGCAC'), id='Seg2', name='Seg2')], sense='+', rcomp='none')] for i in range(2): assert np.all(result.seqs[i].seqs == expected[i].seqs) assert result.seqs[i].ids == expected[i].ids assert result.seqs[i].senses == expected[i].senses assert result.seqs[i].names == expected[i].names records = [SeqRecord(Seq('AGC'), id='id1', name='name'), SeqRecord(Seq('ACA'), id='id2', name='name')] result = SeqGroups(records, sense='-', rcomp='both', group_by='name') assert len(result.seqs) == 1 expected = SeqEncoding(records, sense='-', rcomp='both') assert np.all(result.seqs[0].seqs == expected.seqs) assert np.all(result.seqs[0].ids == expected.ids) assert np.all(result.seqs[0].names == expected.names) assert np.all(result.seqs[0].senses == expected.senses)
44.149254
220
0.612576
0
0
0
0
0
0
0
0
374
0.126437
8c6dfa8e7650cca218f10ad2519c965b351b6e94
688
py
Python
tflite/BuiltinOperator.py
erezinman/tflite-flatbuffer-explorer
0fe1828b80108de3b6b7075de6a66162dfd0d322
[ "MIT" ]
null
null
null
tflite/BuiltinOperator.py
erezinman/tflite-flatbuffer-explorer
0fe1828b80108de3b6b7075de6a66162dfd0d322
[ "MIT" ]
null
null
null
tflite/BuiltinOperator.py
erezinman/tflite-flatbuffer-explorer
0fe1828b80108de3b6b7075de6a66162dfd0d322
[ "MIT" ]
null
null
null
# automatically generated by the FlatBuffers compiler, do not modify # namespace: tflite class BuiltinOperator(object): ADD = 0 AVERAGE_POOL_2D = 1 CONCATENATION = 2 CONV_2D = 3 DEPTHWISE_CONV_2D = 4 EMBEDDING_LOOKUP = 7 FULLY_CONNECTED = 9 HASHTABLE_LOOKUP = 10 L2_NORMALIZATION = 11 L2_POOL_2D = 12 LOCAL_RESPONSE_NORMALIZATION = 13 LOGISTIC = 14 LSH_PROJECTION = 15 LSTM = 16 MAX_POOL_2D = 17 RELU = 19 RELU6 = 21 RESHAPE = 22 RESIZE_BILINEAR = 23 RNN = 24 SOFTMAX = 25 SPACE_TO_DEPTH = 26 SVDF = 27 TANH = 28 CONCAT_EMBEDDINGS = 29 SKIP_GRAM = 30 CALL = 31 CUSTOM = 32
19.657143
68
0.638081
595
0.864826
0
0
0
0
0
0
87
0.126453
8c6f69222a4482ea76dc30bd7f2276db4ce44dd7
1,080
py
Python
StegoEncrypt.py
ExaByt3s/hack_scripts
cc801b36ea25f3b5a82d2900f53f5036e7abd8ad
[ "WTFPL" ]
3
2021-01-22T19:32:23.000Z
2022-01-03T01:06:44.000Z
StegoEncrypt.py
a04512/hack_scripts
cc801b36ea25f3b5a82d2900f53f5036e7abd8ad
[ "WTFPL" ]
null
null
null
StegoEncrypt.py
a04512/hack_scripts
cc801b36ea25f3b5a82d2900f53f5036e7abd8ad
[ "WTFPL" ]
1
2021-12-10T13:18:16.000Z
2021-12-10T13:18:16.000Z
#!/usr/bin/python __author__ = 'kilroy' # (c) 2014, WasHere Consulting, Inc. # Written for Infinite Skills # need pycrypto package from Crypto.Cipher import AES # need PIL and stepic packages import Image, stepic import binascii # key has to be 16, 24 or 32 bytes long cryptObj = AES.new("This is my key42", AES.MODE_CBC, "16 character vec") # notice the spaces -- that's to pad it out to a multiple of 16 bytes plaintext = "This is some text we need to encrypt because it's very secret " ciphertext = cryptObj.encrypt(plaintext) # we need to convert to ASCII to store it nicely binval = binascii.b2a_base64(ciphertext) i = Image.open("bullpuppies.jpg") print("ASCII: ", binval) stego = stepic.encode(i, binval) stego.save("stegencrypt.bmp", "BMP") newim = Image.open("stegencrypt.bmp") data = stepic.decode(newim).rstrip('\n') print("What we have out: ", data) # convert from ASCII back to binary encrypted = binascii.a2b_base64(data) newcryptObj = AES.new("This is my key42", AES.MODE_CBC, "16 character vec") result = newcryptObj.decrypt(encrypted) print(result)
30
78
0.735185
0
0
0
0
0
0
0
0
566
0.524074
8c7091d977c72cdc7883602372339dbcde6de489
256
py
Python
lib/extensions/navigation_buttons_delayed_popup/startup.py
neurodiverseEsoteric/nimbus
a79a37d6001d84116831c9f3f99f5d9acfa7fd19
[ "CC-BY-3.0" ]
3
2015-11-04T10:48:12.000Z
2020-07-12T06:46:27.000Z
lib/extensions/navigation_buttons_delayed_popup/startup.py
esotericDisciple/nimbus
a79a37d6001d84116831c9f3f99f5d9acfa7fd19
[ "CC-BY-3.0" ]
null
null
null
lib/extensions/navigation_buttons_delayed_popup/startup.py
esotericDisciple/nimbus
a79a37d6001d84116831c9f3f99f5d9acfa7fd19
[ "CC-BY-3.0" ]
1
2021-05-05T13:56:49.000Z
2021-05-05T13:56:49.000Z
self.toolBar.widgetForAction(self.backAction).setPopupMode(QToolButton.DelayedPopup) self.toolBar.widgetForAction(self.forwardAction).setPopupMode(QToolButton.DelayedPopup) self.toolBar.widgetForAction(self.upAction).setPopupMode(QToolButton.DelayedPopup)
64
87
0.882813
0
0
0
0
0
0
0
0
0
0
8c71904ebd9c63564cf8de7ecdb8f509752b6a40
703
py
Python
parser/team27/G-27/execution/symbol/table.py
Lenin201/tytus
cace7587b0274ceb26327b583201493bd1048b96
[ "MIT" ]
1
2021-01-09T05:32:35.000Z
2021-01-09T05:32:35.000Z
parser/team27/G-27/execution/symbol/table.py
XiomRB/tytus
0873e4bdce5c110bee6ef2aa98240be6a93ae024
[ "MIT" ]
null
null
null
parser/team27/G-27/execution/symbol/table.py
XiomRB/tytus
0873e4bdce5c110bee6ef2aa98240be6a93ae024
[ "MIT" ]
null
null
null
class Table(object): def __init__(self, name): self.name = name self.columns = [] def createColumn(self, column): self.columns.append(column) def readColumn(self, name): for value in self.columns: if value.name == name: return value def updateColumn(self, name, column): for i in range(0,len(self.columns)): if self.columns[i].name == name: self.columns[i] = column break def deleteColumn(self, name): for i in range(0, len(self.columns)): if self.columns[i].name == name: del self.columns[i] break
28.12
45
0.519203
702
0.998578
0
0
0
0
0
0
0
0
8c733c8dc3e476d059bcd63aa89a02b021245600
107
py
Python
frameioclient/config.py
Frameio/python-frameio-client
005020fd369245627e376fb8a5eaa3064a33438e
[ "MIT" ]
33
2018-07-29T14:04:54.000Z
2022-03-18T16:22:10.000Z
frameioclient/config.py
Frameio/python-frameio-client
005020fd369245627e376fb8a5eaa3064a33438e
[ "MIT" ]
31
2019-07-23T16:11:45.000Z
2021-08-03T01:32:41.000Z
frameioclient/config.py
Frameio/python-frameio-client
005020fd369245627e376fb8a5eaa3064a33438e
[ "MIT" ]
16
2018-10-04T10:53:20.000Z
2022-03-04T09:11:15.000Z
class Config: api_host = "https://api.frame.io" default_page_size = 50 default_concurrency = 5
21.4
37
0.682243
106
0.990654
0
0
0
0
0
0
22
0.205607
8c73ebefbe371ef44942ff7124e0d58fc2510cfb
13,342
py
Python
source/rttov_test/profile-datasets-py/div83/073.py
bucricket/projectMAScorrection
89489026c8e247ec7c364e537798e766331fe569
[ "BSD-3-Clause" ]
null
null
null
source/rttov_test/profile-datasets-py/div83/073.py
bucricket/projectMAScorrection
89489026c8e247ec7c364e537798e766331fe569
[ "BSD-3-Clause" ]
1
2022-03-12T12:19:59.000Z
2022-03-12T12:19:59.000Z
source/rttov_test/profile-datasets-py/div83/073.py
bucricket/projectMAScorrection
89489026c8e247ec7c364e537798e766331fe569
[ "BSD-3-Clause" ]
null
null
null
""" Profile ../profile-datasets-py/div83/073.py file automaticaly created by prof_gen.py script """ self["ID"] = "../profile-datasets-py/div83/073.py" self["Q"] = numpy.array([ 1.956946, 2.801132, 4.230252, 5.419981, 6.087733, 6.419039, 6.547807, 6.548787, 6.504738, 6.432189, 6.370779, 6.31601 , 6.30854 , 6.30967 , 6.3021 , 6.284641, 6.249721, 6.198102, 6.145852, 6.099373, 6.058663, 5.986194, 5.884295, 5.747187, 5.574639, 5.373091, 5.135734, 4.845567, 4.50543 , 4.128883, 3.740616, 3.373579, 3.08385 , 2.839622, 2.645253, 2.513544, 2.431584, 2.357084, 2.259045, 2.163875, 2.110346, 2.096796, 2.099166, 2.141685, 2.178575, 2.199215, 2.274125, 2.462204, 2.771892, 3.16592 , 3.663737, 4.257632, 4.884156, 6.018014, 7.350006, 8.070105, 8.34401 , 8.37078 , 8.312201, 8.323041, 8.553217, 9.130147, 10.2062 , 11.93486 , 14.44259 , 17.91218 , 22.60939 , 28.81827 , 34.92618 , 38.93378 , 56.09235 , 71.77225 , 85.79204 , 102.7434 , 118.9449 , 125.5382 , 132.4874 , 122.411 , 122.1301 , 128.6215 , 118.193 , 100.195 , 96.30662 , 102.0976 , 123.4148 , 225.838 , 205.4768 , 199.0024 , 192.8198 , 186.9111 , 181.2631 , 175.8601 , 170.6889 , 165.7365 , 160.9931 , 156.4465 , 152.0869 , 147.9041 , 143.8903 , 140.0354 , 136.3324 ]) self["P"] = numpy.array([ 5.00000000e-03, 1.61000000e-02, 3.84000000e-02, 7.69000000e-02, 1.37000000e-01, 2.24400000e-01, 3.45400000e-01, 5.06400000e-01, 7.14000000e-01, 9.75300000e-01, 1.29720000e+00, 1.68720000e+00, 2.15260000e+00, 2.70090000e+00, 3.33980000e+00, 4.07700000e+00, 4.92040000e+00, 5.87760000e+00, 6.95670000e+00, 8.16550000e+00, 9.51190000e+00, 1.10038000e+01, 1.26492000e+01, 1.44559000e+01, 1.64318000e+01, 1.85847000e+01, 2.09224000e+01, 2.34526000e+01, 2.61829000e+01, 2.91210000e+01, 3.22744000e+01, 3.56505000e+01, 3.92566000e+01, 4.31001000e+01, 4.71882000e+01, 5.15278000e+01, 5.61260000e+01, 6.09895000e+01, 6.61253000e+01, 7.15398000e+01, 7.72396000e+01, 8.32310000e+01, 8.95204000e+01, 9.61138000e+01, 1.03017000e+02, 1.10237000e+02, 1.17778000e+02, 1.25646000e+02, 1.33846000e+02, 1.42385000e+02, 1.51266000e+02, 1.60496000e+02, 1.70078000e+02, 1.80018000e+02, 1.90320000e+02, 2.00989000e+02, 2.12028000e+02, 2.23442000e+02, 2.35234000e+02, 2.47408000e+02, 2.59969000e+02, 2.72919000e+02, 2.86262000e+02, 3.00000000e+02, 3.14137000e+02, 3.28675000e+02, 3.43618000e+02, 3.58966000e+02, 3.74724000e+02, 3.90893000e+02, 4.07474000e+02, 4.24470000e+02, 4.41882000e+02, 4.59712000e+02, 4.77961000e+02, 4.96630000e+02, 5.15720000e+02, 5.35232000e+02, 5.55167000e+02, 5.75525000e+02, 5.96306000e+02, 6.17511000e+02, 6.39140000e+02, 6.61192000e+02, 6.83667000e+02, 7.06565000e+02, 7.29886000e+02, 7.53628000e+02, 7.77790000e+02, 8.02371000e+02, 8.27371000e+02, 8.52788000e+02, 8.78620000e+02, 9.04866000e+02, 9.31524000e+02, 9.58591000e+02, 9.86067000e+02, 1.01395000e+03, 1.04223000e+03, 1.07092000e+03, 1.10000000e+03]) self["CO2"] = numpy.array([ 373.9833, 373.985 , 373.9884, 373.995 , 374.0057, 374.0216, 374.0366, 374.0466, 374.0776, 374.1326, 374.2046, 374.2866, 374.3886, 374.5236, 374.6526, 374.7416, 374.8237, 374.8957, 374.9497, 374.9817, 374.9777, 374.8958, 374.7168, 374.3068, 373.8689, 373.399 , 373.1931, 373.0142, 372.9923, 372.9705, 372.9696, 372.9687, 372.9958, 373.0249, 373.093 , 373.1831, 373.3081, 373.5051, 373.7122, 374.0992, 374.5252, 375.0212, 375.5992, 376.2002, 376.6862, 377.1942, 377.6051, 377.9581, 378.329 , 378.7248, 379.1366, 379.5774, 380.0341, 380.4167, 380.7802, 381.0429, 381.2468, 381.3648, 381.4278, 381.4508, 381.4547, 381.4305, 381.3971, 381.3314, 381.2585, 381.1682, 381.0824, 381.001 , 380.9507, 380.9132, 380.8856, 380.8667, 380.8483, 380.8259, 380.7977, 380.7672, 380.7296, 380.6944, 380.6635, 380.66 , 380.705 , 380.7848, 380.8093, 380.8081, 380.801 , 380.763 , 380.7717, 380.7742, 380.7766, 380.7788, 380.781 , 380.783 , 380.785 , 380.7869, 380.7887, 380.7904, 380.7921, 380.7937, 380.7952, 380.7967, 380.7981]) self["CO"] = numpy.array([ 3.371623 , 3.275051 , 3.089317 , 2.793105 , 2.386455 , 1.898358 , 1.286632 , 0.6786696 , 0.2446264 , 0.1117883 , 0.07406993, 0.06797857, 0.06665738, 0.06541499, 0.0627382 , 0.05708244, 0.05198118, 0.0482764 , 0.04517182, 0.04224734, 0.04012826, 0.03841507, 0.03688128, 0.0355552 , 0.035034 , 0.03503531, 0.03689901, 0.03936141, 0.0440788 , 0.0492937 , 0.04925202, 0.04920743, 0.04473116, 0.04025199, 0.0366714 , 0.03351052, 0.03137962, 0.03123803, 0.03108933, 0.03244993, 0.03412033, 0.03639812, 0.03949292, 0.04300421, 0.0464721 , 0.05039819, 0.05490918, 0.06008545, 0.06627392, 0.07433206, 0.08375509, 0.0936498 , 0.1051005 , 0.1153623 , 0.1259091 , 0.1348409 , 0.1428668 , 0.1493407 , 0.1547317 , 0.1586747 , 0.1618646 , 0.1637585 , 0.1653183 , 0.165877 , 0.1662896 , 0.166244 , 0.1661372 , 0.1659742 , 0.1657402 , 0.1654906 , 0.1652257 , 0.1649732 , 0.1647089 , 0.1644201 , 0.1640755 , 0.1636954 , 0.1632974 , 0.1629001 , 0.1624932 , 0.1620122 , 0.1613979 , 0.1608719 , 0.1609615 , 0.1616045 , 0.162019 , 0.1622284 , 0.1622896 , 0.1621097 , 0.1619268 , 0.1617408 , 0.1615517 , 0.1613596 , 0.1611645 , 0.1609663 , 0.1607661 , 0.1605619 , 0.1603556 , 0.1601463 , 0.159934 , 0.1597186 , 0.1595013 ]) self["T"] = numpy.array([ 182.651, 193.018, 211.533, 232.314, 250.519, 264.537, 275.437, 284.487, 292.885, 299.567, 304.326, 304.11 , 298.775, 290.318, 281.349, 274.469, 269.03 , 262.729, 255.232, 247.095, 239.554, 233.573, 228.85 , 225.016, 221.726, 218.548, 214.604, 211.054, 207.796, 204.77 , 202.096, 200.364, 198.049, 195.456, 192.937, 190.933, 189.903, 190.14 , 191.564, 193.628, 195.422, 195.904, 194.759, 193.011, 191.99 , 192.292, 193.427, 194.638, 195.439, 196.086, 196.942, 197.885, 198.685, 199.239, 199.659, 200.124, 200.563, 200.928, 201.22 , 201.562, 202.071, 202.831, 203.902, 205.287, 206.924, 208.756, 210.742, 212.832, 214.977, 217.117, 219.157, 221.102, 223.008, 224.906, 226.796, 228.809, 230.866, 232.815, 234.6 , 236.299, 237.853, 239.205, 240.549, 241.851, 242.628, 240.741, 240.155, 240.155, 240.155, 240.155, 240.155, 240.155, 240.155, 240.155, 240.155, 240.155, 240.155, 240.155, 240.155, 240.155, 240.155]) self["N2O"] = numpy.array([ 1.07999800e-03, 8.19997700e-04, 6.29997300e-04, 4.79997400e-04, 3.49997900e-04, 2.49998400e-04, 2.49998400e-04, 4.39997100e-04, 1.14999300e-03, 1.39999100e-03, 3.20998000e-03, 5.38996600e-03, 7.70995100e-03, 9.55994000e-03, 1.17199300e-02, 1.49099100e-02, 1.73398900e-02, 1.84498900e-02, 1.95798800e-02, 2.11198700e-02, 2.25798600e-02, 2.06298800e-02, 1.70899000e-02, 1.36999200e-02, 1.13299400e-02, 9.15995100e-03, 7.07996400e-03, 6.14997000e-03, 5.60997500e-03, 5.08997900e-03, 5.26998000e-03, 8.14997300e-03, 1.09399700e-02, 1.36499600e-02, 1.70299500e-02, 2.36499400e-02, 3.00799300e-02, 3.63299100e-02, 6.36398600e-02, 9.82897900e-02, 1.31219700e-01, 1.68939600e-01, 2.03099600e-01, 2.35689500e-01, 2.62639400e-01, 2.85029400e-01, 3.02059300e-01, 3.12939200e-01, 3.16769100e-01, 3.16769000e-01, 3.16768800e-01, 3.16768700e-01, 3.16768500e-01, 3.16768100e-01, 3.16767700e-01, 3.16767400e-01, 3.16767400e-01, 3.16767300e-01, 3.16767400e-01, 3.16767400e-01, 3.16767300e-01, 3.16767100e-01, 3.16766800e-01, 3.16766200e-01, 3.16765400e-01, 3.16764300e-01, 3.16762800e-01, 3.16760900e-01, 3.16758900e-01, 3.16757700e-01, 3.16752200e-01, 3.16747300e-01, 3.16742800e-01, 3.16737500e-01, 3.16732300e-01, 3.16730200e-01, 3.16728000e-01, 3.16731200e-01, 3.16731300e-01, 3.16729300e-01, 3.16732600e-01, 3.16738300e-01, 3.16739500e-01, 3.16737700e-01, 3.16730900e-01, 3.16698500e-01, 3.16704900e-01, 3.16707000e-01, 3.16708900e-01, 3.16710800e-01, 3.16712600e-01, 3.16714300e-01, 3.16715900e-01, 3.16717500e-01, 3.16719000e-01, 3.16720400e-01, 3.16721800e-01, 3.16723100e-01, 3.16724400e-01, 3.16725600e-01, 3.16726800e-01]) self["O3"] = numpy.array([ 1.092958 , 0.9333394 , 0.7369399 , 0.7964717 , 0.9379673 , 1.079703 , 1.237282 , 1.401171 , 1.54559 , 1.718999 , 1.962487 , 2.289906 , 2.740603 , 3.343639 , 4.033965 , 4.681221 , 5.141878 , 5.436586 , 5.582286 , 5.602026 , 5.534786 , 5.136629 , 4.572073 , 3.916747 , 3.242732 , 2.627226 , 2.238409 , 1.97481 , 1.707352 , 1.378664 , 0.9718754 , 0.4739234 , 0.1691735 , 0.07579148, 0.06013094, 0.06060745, 0.06021215, 0.05955906, 0.06177556, 0.07662733, 0.1108608 , 0.1167128 , 0.07390804, 0.05683548, 0.05512018, 0.06082157, 0.08559211, 0.1410637 , 0.2397043 , 0.2934931 , 0.3111259 , 0.3108367 , 0.2986955 , 0.2690934 , 0.2461522 , 0.2268442 , 0.1992463 , 0.1731716 , 0.1505927 , 0.124096 , 0.09637658, 0.07470752, 0.06088038, 0.05258867, 0.04738112, 0.04395351, 0.04182795, 0.04072743, 0.04045889, 0.0410274 , 0.0409915 , 0.03975355, 0.03971269, 0.04038045, 0.04089773, 0.04011796, 0.03950926, 0.0416304 , 0.04225274, 0.03989827, 0.03871712, 0.03680791, 0.03578315, 0.03928659, 0.04175655, 0.04199231, 0.0311443 , 0.0311445 , 0.03114469, 0.03114488, 0.03114505, 0.03114522, 0.03114538, 0.03114554, 0.03114568, 0.03114583, 0.03114596, 0.03114609, 0.03114622, 0.03114634, 0.03114645]) self["CH4"] = numpy.array([ 0.0996805, 0.1110867, 0.1195645, 0.1268483, 0.1474111, 0.1701019, 0.1716519, 0.1735449, 0.1782488, 0.1907058, 0.2214456, 0.2588824, 0.2996521, 0.3522618, 0.4052884, 0.4652571, 0.5254507, 0.5900453, 0.652122 , 0.7166726, 0.7781653, 0.834089 , 0.8861858, 0.9360986, 0.9791765, 1.019945 , 1.059185 , 1.097075 , 1.133645 , 1.169365 , 1.207695 , 1.248736 , 1.292576 , 1.332766 , 1.371486 , 1.408036 , 1.441656 , 1.471497 , 1.485487 , 1.500237 , 1.515757 , 1.532077 , 1.549197 , 1.566077 , 1.580627 , 1.595846 , 1.611256 , 1.627016 , 1.642985 , 1.658145 , 1.673924 , 1.688113 , 1.702712 , 1.71622 , 1.729587 , 1.739776 , 1.747785 , 1.752725 , 1.755075 , 1.756095 , 1.756145 , 1.755794 , 1.755242 , 1.754189 , 1.753005 , 1.751649 , 1.75037 , 1.74924 , 1.748419 , 1.747772 , 1.747412 , 1.747125 , 1.74691 , 1.746811 , 1.746822 , 1.746941 , 1.747158 , 1.747506 , 1.747867 , 1.748135 , 1.748353 , 1.748495 , 1.748612 , 1.748701 , 1.748684 , 1.748515 , 1.748561 , 1.748572 , 1.748593 , 1.748603 , 1.748613 , 1.748622 , 1.748631 , 1.74864 , 1.748648 , 1.748656 , 1.748664 , 1.748671 , 1.748678 , 1.748685 , 1.748692 ]) self["CTP"] = 500.0 self["CFRACTION"] = 0.0 self["IDG"] = 0 self["ISH"] = 0 self["ELEVATION"] = 0.0 self["S2M"]["T"] = 240.155 self["S2M"]["Q"] = 136.332410939 self["S2M"]["O"] = 0.03114645315 self["S2M"]["P"] = 717.06042 self["S2M"]["U"] = 0.0 self["S2M"]["V"] = 0.0 self["S2M"]["WFETC"] = 100000.0 self["SKIN"]["SURFTYPE"] = 0 self["SKIN"]["WATERTYPE"] = 1 self["SKIN"]["T"] = 240.155 self["SKIN"]["SALINITY"] = 35.0 self["SKIN"]["FOAM_FRACTION"] = 0.0 self["SKIN"]["FASTEM"] = numpy.array([ 3. , 5. , 15. , 0.1, 0.3]) self["ZENANGLE"] = 0.0 self["AZANGLE"] = 0.0 self["SUNZENANGLE"] = 0.0 self["SUNAZANGLE"] = 0.0 self["LATITUDE"] = -74.316 self["GAS_UNITS"] = 2 self["BE"] = 0.0 self["COSBK"] = 0.0 self["DATE"] = numpy.array([2006, 10, 20]) self["TIME"] = numpy.array([0, 0, 0])
57.508621
92
0.559886
0
0
0
0
0
0
0
0
462
0.034627
8c73f2845c9cfc01b2f456edbd27fcd02dab01c0
3,204
py
Python
conf.py
jwustrack/climon
0fca00a727c39de01c42162d42b193f326705892
[ "MIT" ]
3
2018-12-22T06:30:46.000Z
2021-05-05T04:51:22.000Z
conf.py
jwustrack/climon
0fca00a727c39de01c42162d42b193f326705892
[ "MIT" ]
null
null
null
conf.py
jwustrack/climon
0fca00a727c39de01c42162d42b193f326705892
[ "MIT" ]
null
null
null
''' >>> c = Conf('climon.conf.test') >>> list(c.iter_ids('sensor')) ['sine', 'web'] >>> list(c.iter_ids('toggle')) ['fake'] >>> c.get_element('sensor', 'sine') # doctest: +ELLIPSIS <function sine.<locals>.sine_sensor at ...> >>> c.get_element('toggle', 'fake') # doctest: +ELLIPSIS <toggles.FakeToggle object at ...> >>> list(c.iter_elements('sensor')) # doctest: +ELLIPSIS [('sine', <function sine... at ...>)] >>> list(c.iter_elements('toggle')) # doctest: +ELLIPSIS [('fake', <toggles.FakeToggle object at...>)] ''' from functools import lru_cache from toggles import TOGGLES, InvertedToggle from sensors import SENSORS ELEMENTS = { 'toggle': TOGGLES, 'sensor': SENSORS, } def new_element(element_type, element_conf): make_element = ELEMENTS[element_type][element_conf['type'].upper()] element = make_element(element_conf['source']) if element_type == 'toggle' and element_conf.get('invert', None) == 'true': element = InvertedToggle(element) element.conf = element_conf element.conf['element_type'] = element_type return element class Conf(object): def __init__(self, fname): import configparser self.raw = configparser.ConfigParser() self.raw.read(fname) def get_section(self, element_type, element_id): s = self.raw['%s:%s' % (element_type, element_id)] s['id'] = element_id s['element_type'] = element_type return s @lru_cache(maxsize=None) def get_element(self, element_type, element_id): return new_element(element_type, self.get_section(element_type, element_id)) def iter_ids(self, element_type): for section in self.raw.sections(): if section.startswith('%s:' % element_type): _, element_id = section.split(':', 1) yield element_id def iter_sections(self, element_type): for element_id in self.iter_ids(element_type): yield element_id, self.get_section(element_type, element_id) def iter_elements(self, element_type): for element_id in self.iter_ids(element_type): yield element_id, self.get_element(element_type, element_id) @staticmethod def section_type_id(section): try: s_type, s_id = section.split(':', 1) return s_type, s_id except ValueError: return None, None def iter_group_elements(self, group): for section in self.raw.sections(): element_type, element_id = self.section_type_id(section) if element_type in ELEMENTS and self.raw[section].get('group', '') == group: yield section, self.get_section(element_type, element_id) def iter_groups(self): groups = [group for group_id, group in self.iter_sections('group')] for group in sorted(groups, key=lambda g: g['order']): yield group, list(self.iter_group_elements(group['id'])) class ParsedConf(object): def __init__(self, fname): self.conf = Conf(fname) self.groups = list(self.conf.iter_groups()) self.sensors = dict(self.conf.iter_sections('sensor')) self.toggles = dict(self.conf.iter_sections('toggle'))
33.375
88
0.650437
2,120
0.661673
1,096
0.342072
360
0.11236
0
0
666
0.207865
8c74049dd346defb252e9addc649cada9bb156ac
1,058
py
Python
talosblockchain/talosdht/test/protocol_test.py
chunchuan-wang/droplet-engine
5c2dbac90aa3bde837ed4989ecd78235e5d9ef8e
[ "Apache-2.0" ]
10
2020-10-14T14:22:20.000Z
2022-03-16T11:33:14.000Z
talosblockchain/talosdht/test/protocol_test.py
chunchuan-wang/droplet-engine
5c2dbac90aa3bde837ed4989ecd78235e5d9ef8e
[ "Apache-2.0" ]
null
null
null
talosblockchain/talosdht/test/protocol_test.py
chunchuan-wang/droplet-engine
5c2dbac90aa3bde837ed4989ecd78235e5d9ef8e
[ "Apache-2.0" ]
4
2020-08-30T12:40:40.000Z
2021-08-03T15:27:12.000Z
#© 2017-2020, ETH Zurich, D-INFK, lubu@inf.ethz.ch import random import unittest from kademlia.node import Node from kademlia.utils import digest from talosdht.protocolsecurity import generate_secret_key from talosdht.talosprotocol import TalosSKademliaProtocol from talosvc.talosclient.restapiclient import TalosVCRestClient class DummyProt(TalosSKademliaProtocol): def callPing(self, nodeToAsk): print "Ping %s" % nodeToAsk class TestBuckets(unittest.TestCase): def test_bucket_basic(self): ecd_key = generate_secret_key() sourceNode = Node(digest(random.getrandbits(255)), ip="127.0.0.1", port=12345) dummy_protocol = DummyProt(ecd_key, sourceNode, None, 4, talos_vc=None) nodes = [] for i in range(1000): nodes.append(Node(digest(random.getrandbits(255)), ip="127.0.0.1", port=i+10000)) for i in range(1000): dummy_protocol.router.addContact(nodes[i]) for i in range(1000): self.assertFalse(dummy_protocol.router.isNewNode(nodes[i]))
29.388889
93
0.708885
720
0.679887
0
0
0
0
0
0
82
0.077432
8c7565fa05e188eaf9fcca6bca1db9405321a1a7
2,275
py
Python
tmp_mail/__init__.py
KMikeeU/temp-mail
257155b60baee8ed8e24776db3e5492f42e2c10b
[ "MIT" ]
2
2018-12-09T18:36:03.000Z
2019-05-01T12:54:41.000Z
tmp_mail/__init__.py
KMikeeU/temp-mail
257155b60baee8ed8e24776db3e5492f42e2c10b
[ "MIT" ]
null
null
null
tmp_mail/__init__.py
KMikeeU/temp-mail
257155b60baee8ed8e24776db3e5492f42e2c10b
[ "MIT" ]
3
2018-12-09T18:36:07.000Z
2019-10-22T11:35:09.000Z
import requests from bs4 import BeautifulSoup import re import time import _thread class Client(): base = "https://temp-mail.org/en" def __init__(self, address: str = None): self.address = address self.session = requests.Session() realisticBrowser = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" } if self.address != None: self.session.cookies.set("mail", self.address.replace("@", "%40")) self.session.headers.update(realisticBrowser) self.session.get(self.base) try: self.address = self.session.cookies["mail"].replace("%40", "@") except: raise ValueError("The email address you supplied is not supported on temp-mail") self.recent = [] def checkloop(self, callback=lambda m: m, async=True): if async == True: _thread.start_new_thread(self.checkloop, (), {"callback": callback, "async": False}) else: self.check() time.sleep(2) while True: ilen = len(self.recent) self.check() if len(self.recent) > ilen: for i in self.recent[ilen:]: callback(i) time.sleep(10) def check(self): r = self.session.get(self.base + "/option/refresh/") soup = BeautifulSoup(r.text, "html.parser") mails = [] for mail in soup.find('tbody').findChildren("tr"): info = mail.findChildren("td")[0].findChildren()[0] view_url = info["href"] subject = info["title"] by = re.findall(r".*&lt;(.+)&gt;", info.decode_contents()) creq = self.session.get(view_url) contentsoup = BeautifulSoup(creq.text, "html.parser") content = contentsoup.find("div", {"class":"pm-text"}).decode_contents() themail = Email(author=by, content=content,to=self.address,subject=subject) mails.append(themail) self.recent = mails return mails class Email(): def __init__(self, author=None, content=None, to=None, subject=None): self.author = author self.content = content self.to = to self.subject = subject def __str__(self): return str({"author":self.author, "content": self.content, "to": self.to, "subject":self.subject}) def links(self): soup = BeautifulSoup(self.content, "html.parser") lnks = [] for link in soup.findAll("a"): lnks.append(link["href"]) return lnks
27.743902
134
0.670769
2,188
0.960913
0
0
0
0
0
0
424
0.18621
8c761a408113359da777a62cae459343ebc003d1
187
py
Python
ros/genpy/src/genpy/msg/__init__.py
numberen/apollo-platform
8f359c8d00dd4a98f56ec2276c5663cb6c100e47
[ "Apache-2.0" ]
742
2017-07-05T02:49:36.000Z
2022-03-30T12:55:43.000Z
ros/genpy/src/genpy/msg/__init__.py
numberen/apollo-platform
8f359c8d00dd4a98f56ec2276c5663cb6c100e47
[ "Apache-2.0" ]
73
2017-07-06T12:50:51.000Z
2022-03-07T08:07:07.000Z
ros/genpy/src/genpy/msg/__init__.py
numberen/apollo-platform
8f359c8d00dd4a98f56ec2276c5663cb6c100e47
[ "Apache-2.0" ]
425
2017-07-04T22:03:29.000Z
2022-03-29T06:59:06.000Z
from ._TestFillEmbedTime import * from ._TestFillSimple import * from ._TestManyFields import * from ._TestMsgArray import * from ._TestPrimitiveArray import * from ._TestString import *
26.714286
34
0.807487
0
0
0
0
0
0
0
0
0
0
8c7623c8e92992a9d432cf1310ca2b7d13d8b1c3
1,355
py
Python
code/chapter_04/listing_04_11.py
guinslym/python_earth_science_book
f4dd0115dbbce140c6713989f630a71238daa72c
[ "MIT" ]
80
2021-04-19T10:03:57.000Z
2022-03-30T15:34:47.000Z
code/chapter_04/listing_04_11.py
guinslym/python_earth_science_book
f4dd0115dbbce140c6713989f630a71238daa72c
[ "MIT" ]
null
null
null
code/chapter_04/listing_04_11.py
guinslym/python_earth_science_book
f4dd0115dbbce140c6713989f630a71238daa72c
[ "MIT" ]
23
2021-04-25T03:50:07.000Z
2022-03-22T03:06:19.000Z
# Introductory examples name = 'Maurizio' surname = 'Petrelli' print('-------------------------------------------------') print('My name is {}'.format(name)) print('-------------------------------------------------') print('My name is {} and my surname is {}'.format(name, surname)) print('-------------------------------------------------') # Decimal Number formatting PI = 3.14159265358979323846 print('----------------------------------------------------') print("The 2 digit Archimedes' constant is equal to {:.2f}".format(PI)) print("The 3 digit Archimedes' constant is equal to {:.3f}".format(PI)) print("The 4 digit Archimedes' constant is equal to {:.4f}".format(PI)) print("The 5 digit Archimedes' constant is equal to {:.5f}".format(PI)) print('----------------------------------------------------') '''Results ------------------------------------------------- My name is Maurizio ------------------------------------------------- My name is Maurizio and my surname is Petrelli ------------------------------------------------- ---------------------------------------------------- The 2 digit Archimedes' constant is equal to 3.14 The 3 digit Archimedes' constant is equal to 3.142 The 4 digit Archimedes' constant is equal to 3.1416 The 5 digit Archimedes' constant is equal to 3.14159 ---------------------------------------------------- '''
43.709677
71
0.451661
0
0
0
0
0
0
0
0
1,137
0.839114
8c76ebd85af1120266012ad23762034711833042
4,405
py
Python
gamestonk_terminal/etf/financedatabase_view.py
i2infinity/GamestonkTerminal
abf79a5249930e5a9f5d2a1c4ba64590888ecef5
[ "MIT" ]
1
2021-12-31T04:10:42.000Z
2021-12-31T04:10:42.000Z
gamestonk_terminal/etf/financedatabase_view.py
greggorrell/GamestonkTerminal
caa2c88c1259967b55a7565c7ce5fb1014f39e68
[ "MIT" ]
1
2022-03-29T13:45:05.000Z
2022-03-29T13:45:05.000Z
gamestonk_terminal/etf/financedatabase_view.py
greggorrell/GamestonkTerminal
caa2c88c1259967b55a7565c7ce5fb1014f39e68
[ "MIT" ]
1
2021-06-20T02:42:40.000Z
2021-06-20T02:42:40.000Z
"""Finance Database view""" __docformat__ = "numpy" import os import pandas as pd from tabulate import tabulate from gamestonk_terminal import feature_flags as gtff from gamestonk_terminal.etf import financedatabase_model from gamestonk_terminal.helper_funcs import export_data def display_etf_by_name( name: str, limit: int, export: str = "", ): """Display a selection of ETFs based on name filtered by total assets. [Source: Finance Database] Parameters ---------- name: str Search by name to find ETFs matching the criteria. limit: int Limit of ETFs to display export: str Type of format to export data """ data = financedatabase_model.get_etfs_by_name(name) if not data: print("No data was found with that name\n") return tabulate_data = pd.DataFrame(data).T[ ["long_name", "family", "category", "total_assets"] ] tabulate_data_sorted = tabulate_data.sort_values(by="total_assets", ascending=False) tabulate_data_sorted["total_assets"] = tabulate_data_sorted["total_assets"] / 1e6 if gtff.USE_TABULATE_DF: print( tabulate( tabulate_data_sorted.iloc[:limit], showindex=True, headers=["Name", "Family", "Category", "Total Assets [M]"], floatfmt=".2f", tablefmt="fancy_grid", ), "\n", ) else: print(tabulate_data_sorted.iloc[:limit].to_string(), "\n") export_data(export, os.path.dirname(os.path.abspath(__file__)), "ln_fd", data) def display_etf_by_description( description: str, limit: int, export: str = "", ): """Display a selection of ETFs based on description filtered by total assets. [Source: Finance Database] Parameters ---------- description: str Search by description to find ETFs matching the criteria. limit: int Limit of ETFs to display export: str Type of format to export data """ data = financedatabase_model.get_etfs_by_description(description) if not data: print("No data was found with that description\n") return tabulate_data = pd.DataFrame(data).T[ ["long_name", "family", "category", "total_assets"] ] tabulate_data_sorted = tabulate_data.sort_values(by="total_assets", ascending=False) tabulate_data_sorted["total_assets"] = tabulate_data_sorted["total_assets"] / 1e6 if gtff.USE_TABULATE_DF: print( tabulate( tabulate_data_sorted.iloc[:limit], showindex=True, headers=["Name", "Family", "Category", "Total Assets [M]"], floatfmt=".2f", tablefmt="fancy_grid", ), "\n", ) else: print(tabulate_data_sorted.iloc[:limit].to_string(), "\n") export_data(export, os.path.dirname(os.path.abspath(__file__)), "ld", data) def display_etf_by_category( category: str, limit: int, export: str = "", ): """Display a selection of ETFs based on a category filtered by total assets. [Source: Finance Database] Parameters ---------- description: str Search by description to find ETFs matching the criteria. limit: int Limit of ETFs to display export: str Type of format to export data """ data = financedatabase_model.get_etfs_by_category(category) if not data: print("No data was found on that category\n") return tabulate_data = pd.DataFrame(data).T[ ["long_name", "family", "category", "total_assets"] ] tabulate_data_sorted = tabulate_data.sort_values(by="total_assets", ascending=False) tabulate_data_sorted["total_assets"] = tabulate_data_sorted["total_assets"] / 1e6 if gtff.USE_TABULATE_DF: print( tabulate( tabulate_data_sorted.iloc[:limit], showindex=True, headers=["Name", "Family", "Category", "Total Assets [M]"], floatfmt=".2f", tablefmt="fancy_grid", ), "\n", ) else: print(tabulate_data_sorted.iloc[:limit].to_string(), "\n") export_data( export, os.path.join(os.path.dirname(os.path.abspath(__file__)), "screener"), "sbc", data, )
29.965986
108
0.613167
0
0
0
0
0
0
0
0
1,613
0.366175
8c771cbba76c700d1db7d0599ef23c47728f8fc7
803
py
Python
socialnetworks/moves/views.py
gGonz/django-socialnetworks
3f6c577efafd6ed5eb8b5cb60d9ee6a36920581d
[ "Apache-2.0" ]
5
2015-06-18T03:30:28.000Z
2017-11-04T21:34:20.000Z
socialnetworks/moves/views.py
gGonz/django-socialnetworks
3f6c577efafd6ed5eb8b5cb60d9ee6a36920581d
[ "Apache-2.0" ]
2
2015-04-25T00:06:19.000Z
2015-04-30T22:42:40.000Z
socialnetworks/moves/views.py
gGonz/django-socialnetworks
3f6c577efafd6ed5eb8b5cb60d9ee6a36920581d
[ "Apache-2.0" ]
4
2015-06-11T18:28:04.000Z
2016-09-07T15:08:09.000Z
from .clients import MovesAppClient from .settings import SETUP_URL_NAME from ..core import views class MovesAppDialogRedirect(views.OAuthDialogRedirectView): """ View that handles the redirects for the Moves app authorization dialog. """ client_class = MovesAppClient class MovesAppCallback(views.OAuthCallbackView): """ View that handles the Moves app OAuth callback. """ client_class = MovesAppClient class MovesAppSetup(views.OAuthSetupView): """ View that handles the setup of a retrieved Moves app account. """ client_class = MovesAppClient setup_url = SETUP_URL_NAME class MovesAppOAuthDisconnect(views.OAuthDisconnectView): """ View that handles the disconnect of a Moves app account. """ client_class = MovesAppClient
24.333333
75
0.73599
693
0.863014
0
0
0
0
0
0
299
0.372354
8c7744c90b62e69c9da414a6c169a072df76f52e
5,638
py
Python
train.py
JiazeWang/Luna16
5ef7f4b539cc1ca72291e93d17cc18f408a3119d
[ "MIT" ]
null
null
null
train.py
JiazeWang/Luna16
5ef7f4b539cc1ca72291e93d17cc18f408a3119d
[ "MIT" ]
null
null
null
train.py
JiazeWang/Luna16
5ef7f4b539cc1ca72291e93d17cc18f408a3119d
[ "MIT" ]
null
null
null
import random import torch import numpy as np import time import os from model.net import Net from model.loss import Loss from torch.autograd import Variable import itertools import pandas as pd from main.dataset import LunaDataSet from torch.utils.data import DataLoader from configs import VAL_PCT, TOTAL_EPOCHS, DEFAULT_LR, OUTPUT_PATH from glob import glob def get_lr(epoch): if epoch <= TOTAL_EPOCHS * 0.5: lr = DEFAULT_LR elif epoch <= TOTAL_EPOCHS * 0.8: lr = 0.1 * DEFAULT_LR else: lr = 0.01 * DEFAULT_LR return lr def train(data_loader, net, loss, epoch, optimizer, get_lr, save_dir='./models/'): print("****************training:*******************") start_time = time.time() net.train() lr = get_lr(epoch) for param_group in optimizer.param_groups: param_group['lr'] = lr metrics = [] for i, (data, target, coord) in enumerate(data_loader): if torch.cuda.is_available(): data = Variable(data.cuda()) target = Variable(target.cuda()) coord = Variable(coord.cuda()) data = data.float() target = target.float() coord = coord.float() output = net(data, coord) loss_output = loss(output, target) optimizer.zero_grad() loss_output[0].backward() optimizer.step() loss_output[0] = loss_output[0].item() metrics.append(loss_output) break metrics = np.asarray(metrics, np.float32) if epoch % 10 == 0: net_state_dict = net.state_dict() for key in net_state_dict.keys(): net_state_dict[key] = net_state_dict[key].cpu() torch.save({ 'epoch': epoch, 'save_dir': save_dir, 'model_state_dict': net_state_dict, 'optimizer_state_dict': optimizer.state_dict(), 'loss': np.mean(metrics[:, 0])}, os.path.join(save_dir, f'''{epoch}.ckpt''')) end_time = time.time() print(f'''Epoch {epoch} (lr {lr})''') print(f'''Train: tpr {100.0 * np.sum(metrics[:, 6]) / np.sum(metrics[:, 7])}, tnr {100.0 * np.sum(metrics[:, 8]) / np.sum(metrics[:, 9])}, total pos {np.sum(metrics[:, 7])}, total neg {np.sum(metrics[:, 9])}, time {end_time - start_time}''') print(f'''loss {np.mean(metrics[:, 0])}, classify loss {np.mean(metrics[:, 1])}, regress loss {np.mean(metrics[:, 2])}, {np.mean(metrics[:, 3])}, {np.mean(metrics[:, 4])}, {np.mean(metrics[:, 5])}''') def validate(data_loader, net, loss): print("****************validation:*******************") start_time = time.time() net.eval() metrics = [] for i, (data, target, coord) in enumerate(data_loader): if torch.cuda.is_available(): data = Variable(data.cuda()) target = Variable(target.cuda()) coord = Variable(coord.cuda()) data = data.float() target = target.float() coord = coord.float() output = net(data, coord) loss_output = loss(output, target, train=False) loss_output[0] = loss_output[0].item() metrics.append(loss_output) break end_time = time.time() metrics = np.asarray(metrics, np.float32) print(f'''time {end_time - start_time}''') print(f'''loss {np.mean(metrics[:, 0])}, classify loss {np.mean(metrics[:, 1])}, regress loss {np.mean(metrics[:, 2])}, {np.mean(metrics[:, 3])}, {np.mean(metrics[:, 4])}, {np.mean(metrics[:, 5])}''') def run(load_last_checkpoint=False): save_dir = f'{OUTPUT_PATH}/models/' os.makedirs(save_dir, exist_ok=True) neural_net = Net() loss_fn = Loss() optim = torch.optim.SGD(neural_net.parameters(), DEFAULT_LR, momentum=0.9, weight_decay=1e-4) starting_epoch = 0 initial_loss = None if load_last_checkpoint: model_paths = glob(f'''{save_dir}*.ckpt''') model_names = [int(i.split('/')[-1][:-5]) for i in model_paths] latest_model_path = f'''{save_dir}{max(model_names)}.ckpt''' print('loading latest model from:', latest_model_path) checkpoint = torch.load(latest_model_path) neural_net.load_state_dict(checkpoint['model_state_dict']) optim.load_state_dict(checkpoint['optimizer_state_dict']) starting_epoch = checkpoint['epoch'] initial_loss = checkpoint['loss'] if torch.cuda.is_available(): neural_net = neural_net.cuda() loss_fn = loss_fn.cuda() print(f'''Training from epoch: {starting_epoch} towards: {TOTAL_EPOCHS}, with learning rate starting from: {get_lr(starting_epoch)}, and loss: {initial_loss}''') meta = pd.read_csv(f'{OUTPUT_PATH}/augmented_meta.csv', index_col=0).sample(frac=1).reset_index(drop=True) meta_group_by_series = meta.groupby(['seriesuid']).indices list_of_groups = [{i: list(meta_group_by_series[i])} for i in meta_group_by_series.keys()] random.Random(0).shuffle(list_of_groups) val_split = int(VAL_PCT * len(list_of_groups)) val_indices = list(itertools.chain(*[list(i.values())[0] for i in list_of_groups[:val_split]])) train_indices = list(itertools.chain(*[list(i.values())[0] for i in list_of_groups[val_split:]])) ltd = LunaDataSet(train_indices, meta) lvd = LunaDataSet(val_indices, meta) train_loader = DataLoader(ltd, batch_size=1, shuffle=False) val_loader = DataLoader(lvd, batch_size=1, shuffle=False) for ep in range(starting_epoch, TOTAL_EPOCHS): train(train_loader, neural_net, loss_fn, ep, optim, get_lr, save_dir=save_dir) validate(train_loader, neural_net, loss_fn) if __name__ == '__main__': run(load_last_checkpoint=False)
36.849673
110
0.632671
0
0
0
0
0
0
0
0
1,257
0.222951
8c782d841174638d4e67981a99536a71f3cb70d3
11,765
py
Python
models/treebased/data/data_generator.py
ziyoujiyi/PaddleRec
bcddcf46e5cd8d4e6b2c5ee8d0d5521e292a2a81
[ "Apache-2.0" ]
2,739
2020-04-28T05:12:48.000Z
2022-03-31T16:01:49.000Z
models/treebased/data/data_generator.py
ziyoujiyi/PaddleRec
bcddcf46e5cd8d4e6b2c5ee8d0d5521e292a2a81
[ "Apache-2.0" ]
205
2020-05-14T13:29:14.000Z
2022-03-31T13:01:50.000Z
models/treebased/data/data_generator.py
ziyoujiyi/PaddleRec
bcddcf46e5cd8d4e6b2c5ee8d0d5521e292a2a81
[ "Apache-2.0" ]
545
2020-05-14T13:19:13.000Z
2022-03-24T07:53:05.000Z
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import time import numpy as np import sys import os import argparse import json import random import multiprocessing as mp def mp_run(data, process_num, func, *args): """ run func with multi process """ level_start = time.time() partn = max(len(data) / process_num, 1) start = 0 p_idx = 0 ps = [] while start < len(data): local_data = data[start:start + partn] start += partn p = mp.Process(target=func, args=(local_data, p_idx) + args) ps.append(p) p.start() p_idx += 1 for p in ps: p.join() for p in ps: p.terminate() return p_idx def read(train_data_file, test_data_file): behavior_dict = dict() train_sample = dict() test_sample = dict() user_id = list() item_id = list() cat_id = list() behav_id = list() timestamp = list() start = time.time() itobj = zip([train_data_file, test_data_file], [train_sample, test_sample]) for filename, sample in itobj: with open(filename, 'rb') as f: for line in f: arr = line.strip().split(',') if len(arr) != 5: break user_id.append(int(arr[0])) item_id.append(int(arr[1])) cat_id.append(int(arr[2])) if arr[3] not in behavior_dict: i = len(behavior_dict) behavior_dict[arr[3]] = i behav_id.append(behavior_dict[arr[3]]) timestamp.append(int(arr[4])) sample["USERID"] = np.array(user_id) sample["ITEMID"] = np.array(item_id) sample["CATID"] = np.array(cat_id) sample["BEHAV"] = np.array(behav_id) sample["TS"] = np.array(timestamp) user_id = [] item_id = [] cat_id = [] behav_id = [] timestamp = [] print("Read data done, {} train records, {} test records" ", elapsed: {}".format( len(train_sample["USERID"]), len(test_sample["USERID"]), time.time() - start)) return behavior_dict, train_sample, test_sample def gen_user_his_behave(train_sample): user_his_behav = dict() iterobj = zip(train_sample["USERID"], train_sample["ITEMID"], train_sample["TS"]) for user_id, item_id, ts in iterobj: if user_id not in user_his_behav: user_his_behav[user_id] = list() user_his_behav[user_id].append((item_id, ts)) for _, value in user_his_behav.items(): value.sort(key=lambda x: x[1]) return user_his_behav def split_train_sample(train_dir, train_sample_seg_cnt): segment_filenames = [] segment_files = [] for i in range(train_sample_seg_cnt): filename = "{}/part_{}".format(train_dir, i) segment_filenames.append(filename) segment_files.append(open(filename, 'wb')) with open("train_tmp", 'rb') as fi: for line in fi: i = random.randint(0, train_sample_seg_cnt - 1) segment_files[i].write(line) for f in segment_files: f.close() os.remove("train_tmp") # Shuffle for fn in segment_filenames: lines = [] with open(fn, 'rb') as f: for line in f: lines.append(line) random.shuffle(lines) with open(fn, 'wb') as f: for line in lines: f.write(line) def partial_gen_train_sample(users, user_his_behav, filename, pipe, seq_len, min_len): stat = dict() with open(filename, 'wb') as f: for user in users: value = user_his_behav[user] count = len(value) if count < min_len: continue arr = [0 for i in range(seq_len - min_len)] + \ [v[0] for v in value] for i in range(len(arr) - seq_len + 1): sample = arr[i:i + seq_len] f.write('{}_{}'.format(user, i)) # sample id f.write('\t{}'.format(sample[-1])) # label feature for j in range(seq_len - 1): if sample[j] != 0: f.write("\tslot_{}:{}".format(j + 1, sample[j])) f.write('\n') if sample[-1] not in stat: stat[sample[-1]] = 0 stat[sample[-1]] += 1 pipe.send(stat) def gen_train_sample(train_sample, args): user_his_behav = gen_user_his_behave(train_sample) print("user_his_behav len: {}".format(len(user_his_behav))) users = user_his_behav.keys() process = [] pipes = [] parall = args.parall job_size = int(len(user_his_behav) / parall) if len(user_his_behav) % parall != 0: parall += 1 for i in range(parall): a, b = mp.Pipe() pipes.append(a) p = mp.Process( target=partial_gen_train_sample, args=(users[i * job_size:(i + 1) * job_size], user_his_behav, 'train_tmp.part_{}'.format(i), b, args.seq_len, args.min_seq_len)) process.append(p) p.start() stat = dict() for pipe in pipes: st = pipe.recv() for k, v in st.items(): if k not in stat: stat[k] = 0 stat[k] += v for p in process: p.join() # Merge partial files with open("train_tmp", 'wb') as f: for i in range(parall): filename = 'train_tmp.part_{}'.format(i) with open(filename, 'rb') as f1: f.write(f1.read()) os.remove(filename) # Split train sample to segments split_train_sample(args.train_dir, args.train_sample_seg_cnt) return stat def gen_test_sample(test_dir, test_sample, seq_len, min_seq_len): user_his_behav = gen_user_his_behave(test_sample) with open("{}/part-0".format(test_dir), 'wb') as f: for user, value in user_his_behav.items(): if len(value) / 2 + 1 < min_seq_len: continue mid = int(len(value) / 2) left = value[:mid][-seq_len + 1:] right = value[mid:] left = [0 for i in range(seq_len - len(left) - 1)] + \ [l[0] for l in left] f.write('{}_{}'.format(user, 'T')) # sample id labels = ','.join(map(str, [item[0] for item in right])) f.write('\t{}'.format(labels)) # kvs for j in range(seq_len - 1): if left[j] != 0: f.write("\tslot_{}:{}".format(j + 1, left[j])) f.write('\n') def prepare_sample_set(train_dir, sample_dir, process_num=12, feature_num=69): def parse_data(files, idx, feature_num=69): history_ids = [0] * feature_num samples = dict() process = 0 for filename in files: process += 1 print("process {} / {}.".format(process, len(files))) with open(filename) as f: print("Begin to handle {}.".format(filename)) for line in f: features = line.strip().split("\t") item_id = int(features[1]) for item in features[2:]: slot, feasign = item.split(":") slot_id = int(slot.split("_")[1]) history_ids[slot_id - 1] = int(feasign) if item_id not in samples: samples[item_id] = list() samples[item_id].append(history_ids) with open("parse_data_{}.json".format(idx), 'w') as json_file: json.dump(samples, json_file) files = ["{}/{}".format(train_dir, f) for f in os.listdir(train_dir)] real_process_num = mp_run(files, process_num, parse_data, feature_num) num = 0 all_samples = dict() for i in range(real_process_num): filename = "parse_data_{}.json".format(i) with open(filename, 'r') as json_file: each_samples = json.load(json_file) for key in each_samples: if key not in all_samples: all_samples[key] = [] all_samples[key] += each_samples[key] num += len(each_samples[key]) os.remove(filename) for ck in all_samples: with open("{}/samples_{}.json".format(sample_dir, ck), 'w') as f: json.dump(all_samples[ck], f) if __name__ == '__main__': _PARSER = argparse.ArgumentParser(description="DataProcess") _PARSER.add_argument("--train_file", required=True, help="Train filename") _PARSER.add_argument("--test_file", required=True, help="Test filename") _PARSER.add_argument( "--item_cate_filename", default="./Item_Cate.txt", help="item cate filename, used to init the first tree.") _PARSER.add_argument( "--stat_file", default="./Stat.txt", help="Stat filename") _PARSER.add_argument( "--train_dir", default="./train_data", help="Train directory") _PARSER.add_argument( "--sample_dir", default="./samples", help="Sample directory") _PARSER.add_argument( "--test_dir", default="./test_data", help="Test directory") _PARSER.add_argument( '--parall', type=int, help="parall process used", default=16) _PARSER.add_argument( "--train_sample_seg_cnt", type=int, default=20, help="count of train sample segments file") _PARSER.add_argument( "--seq_len", type=int, help="sequence length of the sample record", default=70) _PARSER.add_argument( "--min_seq_len", type=int, help="Min length of the sample sequence record", default=8) args = _PARSER.parse_args() os.system("rm -rf ./{} && mkdir -p {}".format(args.train_dir, args.train_dir)) os.system("rm -rf ./{} && mkdir -p {}".format(args.test_dir, args.test_dir)) os.system("rm -rf ./{} && mkdir -p {}".format(args.sample_dir, args.sample_dir)) behavior_dict, train_sample, test_sample = read(args.train_file, args.test_file) print(repr(behavior_dict)) stat = gen_train_sample(train_sample, args) with open(args.stat_file, 'w') as f: json.dump(stat, f) gen_test_sample(args.test_dir, test_sample, args.seq_len, args.min_seq_len) item_cate = dict() for sample in [train_sample, test_sample]: iterobj = zip(sample["ITEMID"], sample["CATID"]) for item_id, cat_id in iterobj: if item_id not in item_cate: item_cate[item_id] = cat_id with open(args.item_cate_filename, 'w') as f: for key in item_cate: f.write("{}\t{}\n".format(key, item_cate[key])) prepare_sample_set( args.train_dir, args.sample_dir, args.parall, feature_num=args.seq_len - 1)
34.00289
79
0.553931
0
0
0
0
0
0
0
0
1,877
0.159541
8c7850f57aeb0d4dce81c92635baf2b4cf6c6a0c
530
py
Python
api/runtime/lambda_function.py
alexpulver/aws-cdk-project-structure-python-simple
2397b9bc8762b294c26a85913007b139fb656a92
[ "MIT" ]
6
2021-08-03T06:44:41.000Z
2022-03-21T05:26:19.000Z
api/runtime/lambda_function.py
alexpulver/aws-cdk-project-structure-python-simple
2397b9bc8762b294c26a85913007b139fb656a92
[ "MIT" ]
null
null
null
api/runtime/lambda_function.py
alexpulver/aws-cdk-project-structure-python-simple
2397b9bc8762b294c26a85913007b139fb656a92
[ "MIT" ]
null
null
null
import json from typing import Any, Dict import requests def lambda_handler(event: Dict[str, Any], context: Dict[str, Any]) -> Dict[str, Any]: print(f"request: {json.dumps(event)}") uuid_message = get_uuid_message() return { "statusCode": 200, "headers": {"Content-Type": "text/plain"}, "body": uuid_message, } def get_uuid_message() -> str: response = requests.get("https://httpbin.org/uuid") uuid = response.json()["uuid"] return f"Hello, CDK! Here is your UUID: {uuid}"
25.238095
85
0.633962
0
0
0
0
0
0
0
0
156
0.29434
8c7898329039aa091b78f7b5d1f4171853653e37
4,685
py
Python
dwi/tools/histogram.py
jupito/dwilib
6655eea21037977ed528b992b3a8471393127b77
[ "MIT" ]
9
2018-02-02T07:26:06.000Z
2021-07-28T11:27:38.000Z
dwi/tools/histogram.py
jupito/dwilib
6655eea21037977ed528b992b3a8471393127b77
[ "MIT" ]
null
null
null
dwi/tools/histogram.py
jupito/dwilib
6655eea21037977ed528b992b3a8471393127b77
[ "MIT" ]
4
2017-02-22T03:23:44.000Z
2021-12-10T10:32:08.000Z
#!/usr/bin/python3 """Plot histograms of images. Possible nans and infinities are ignored.""" import argparse from collections import OrderedDict import logging import numpy as np import pylab as pl from scipy import interpolate import dwi.files import dwi.util def parse_args(): """Parse command-line arguments.""" p = argparse.ArgumentParser(description=__doc__) p.add_argument('--verbose', '-v', action='count', help='increase verbosity') p.add_argument('--input', nargs='+', help='input files') p.add_argument('--param', type=int, nargs='*', help='image parameter index to use') p.add_argument('--fig', required=True, help='output figure file') p.add_argument('--smooth', action='store_true', help='smoothen the histogram by spline interpolation') return p.parse_args() def histogram(a, m1=None, m2=None, inclusive=True, bins='doane'): """Create histogram from data between (m1, m2), with bin centers.""" a = np.asarray(a) if m1 is not None: if inclusive: a = a[a >= m1] else: a = a[a > m1] if m2 is not None: if inclusive: a = a[a <= m2] else: a = a[a < m2] mn, mx = a.min(), a.max() hist, bin_edges = np.histogram(a, bins=bins, density=False) bin_centers = [np.mean(t) for t in zip(bin_edges, bin_edges[1:])] return hist, bin_centers, mn, mx def smoothen(x, y): """Smoothen histogram.""" x_smooth = np.linspace(min(x), max(x), 300) y_smooth = interpolate.spline(x, y, x_smooth) y_smooth[y_smooth < 0] = 0 # Don't let it dive negative. return x_smooth, y_smooth def plot_histograms(Histograms, outfile, smooth=False): """Plot subfigures, each having several histograms bundled together.""" nrows = len({x[0] for x in Histograms}) ncols = len({x[1] for x in Histograms}) # logging.warning('## %s ', [nrows, ncols]) fig = pl.figure(figsize=(ncols * 6, nrows * 6)) # pl.yscale('log') for i, ((param, rng), histograms) in enumerate(Histograms.items(), 1): # logging.warning('#### %s ', [i, param, rng, len(histograms)]) if histograms: fig.add_subplot(nrows, ncols, i) minmin, maxmax = None, None for hist, bins, mn, mx in histograms: x, y = bins, hist if smooth: x, y = smoothen(x, y) pl.plot(x, y) # pl.bar(x, y, width=x[1] - x[0]) if minmin is None: minmin = mn if maxmax is None: maxmax = mx minmin = min(minmin, mn) maxmax = max(maxmax, mx) pl.title(f'{param}; {len(histograms)}; {rng}; ' f'[{minmin:.5g}, {maxmax:.5g}]') # pl.tight_layout() logging.info('Plotting to %s...', outfile) pl.savefig(outfile, bbox_inches='tight') pl.close() def add_histograms(hists, path, img, param, ranges, verbose): """Add histograms for a file.""" original_shape, original_size = img.shape, img.size img = img[dwi.util.bbox(img)] img = img[np.isfinite(img)] if np.any(img < 0): # negatives = img[img < 0] logging.warning('Image contains negatives: %s', path) if verbose: print(f'Read {original_shape}, {img.dtype}, ' f'{img.size / original_size:.1%}, {np.mean(img):.4g}, ' f'{dwi.util.fivenums(img)}, {param}, {path}') for rng in ranges: if isinstance(rng, list): incl = True if isinstance(rng, tuple): incl = False m1, m2 = np.percentile(img, rng) key = param, str(rng) hists.setdefault(key, []).append(histogram(img, m1, m2, incl)) # hists[0].append(histogram(img, None, None)) # hists[1].append(histogram(img, 0, 100)) # hists[2].append(histogram(img, 0.1, 99.9)) # hists[3].append(histogram(img, 1, 99)) # hists[4].append(histogram(img, 2, 98)) def main(): """Main.""" args = parse_args() logging.basicConfig(level=logging.INFO) ranges = [[0, 100], (0, 100), [0, 99], (1, 95)] hists = OrderedDict() for path in args.input: img, attrs = dwi.files.read_pmap(path, params=args.param, dtype=np.float32) for i, param in enumerate(attrs['parameters']): add_histograms(hists, path, img[..., i], param, ranges, args.verbose) plot_histograms(hists, args.fig, smooth=args.smooth) if __name__ == '__main__': main()
34.19708
75
0.56158
0
0
0
0
0
0
0
0
1,273
0.271718
8c78b4076ac285387691eaefdc4b2dc0c790be8d
1,191
py
Python
app/core/models.py
108806/drf_adv_test
fe4363e47e65de883fabd551aaf18ca5ff7bee1d
[ "BSD-2-Clause" ]
null
null
null
app/core/models.py
108806/drf_adv_test
fe4363e47e65de883fabd551aaf18ca5ff7bee1d
[ "BSD-2-Clause" ]
null
null
null
app/core/models.py
108806/drf_adv_test
fe4363e47e65de883fabd551aaf18ca5ff7bee1d
[ "BSD-2-Clause" ]
null
null
null
from django.db import models from django.contrib.auth.models import AbstractBaseUser, BaseUserManager, \ PermissionsMixin class UserManager(BaseUserManager): def create_user(self, email, password=None, **extra_fields): """Creates and saves a new user""" if not email: raise ValueError('No valid email provided') user = self.model(email=self.normalize_email(email), **extra_fields) user.set_password(password) user.save(using=self._db) return user def create_superuser(self, email, password): """Creates and saves a new superuser""" user = self.create_user(email, password) user.is_staff = True user.is_superuser = True user.save(using=self._db) return user class User(AbstractBaseUser, PermissionsMixin): """Custom user model that supports using email instead of username""" email = models.EmailField(max_length=255, unique=True) name = models.CharField(max_length=255) is_active = models.BooleanField(default=True) is_staff = models.BooleanField(default=False) objects = UserManager() USERNAME_FIELD = 'email' class TestUser(models.Model): """Delme asap""" field = models.EmailField(max_length=255, unique=True)
29.775
75
0.739715
1,060
0.890008
0
0
0
0
0
0
190
0.15953
8c7d9e66bf164cf5c44aa06085606f155fa78844
13,739
py
Python
paleocirc/circolari.py
xFranciB/PaleoCirc
bb95abf973342c004c4f84516092a686072bc12e
[ "MIT" ]
7
2021-02-16T15:41:59.000Z
2021-12-22T19:56:23.000Z
paleocirc/circolari.py
xFranciB/PaleoCirc
bb95abf973342c004c4f84516092a686072bc12e
[ "MIT" ]
5
2021-04-16T13:36:31.000Z
2021-12-12T17:43:13.000Z
paleocirc/circolari.py
xFranciB/paleocirc
bb95abf973342c004c4f84516092a686072bc12e
[ "MIT" ]
null
null
null
import requests import bs4 import pdf2image import os import glob import json import platform if platform.system() == 'Windows': import win32com.client #pywin32 class Circolari: def __init__(self, archiveDir=None): self.__pageTemplate__ = 'https://www.itispaleocapa.edu.it/circolari/page/' if archiveDir is not None: self.__archiveDir__ = archiveDir if not os.path.exists(archiveDir): os.mkdir(archiveDir) if os.path.exists(archiveDir + '/archive.json'): with open(archiveDir + '/archive.json') as file: self.__archive__ = json.load(file) else: self.__archive__ = {'dir': archiveDir} else: self.__archiveDir__ = None self.__archive__ = None def __saveArchive__(self): with open(self.__archiveDir__ + '/archive.json', 'w') as file: file.write(json.dumps(self.__archive__, indent=4, sort_keys=True)) def getPages(self, no, _range=True): circolariList = list() no = int(no) if no < 1: return [] if _range: pList = range(no) else: pList = [no-1] for i in pList: x = requests.get(self.__pageTemplate__ + str(i + 1)).text soup = bs4.BeautifulSoup(x, 'html.parser') tags = soup.find_all(class_='post-box-archive') for circolare in tags: aTag = circolare.find_all('a')[1] cURL = aTag['href'] cNo = [value for value in [i for o in [value.replace('/', '').split(' ') for value in aTag.text.lower().replace('bis', '').replace('ter', '').replace('-', '').split('.')] for i in o] if value.isnumeric()][0] while True: if cNo.startswith('0'): cNo = cNo[1:] else: break if 'bis' in aTag.text.lower(): cNo = cNo + ' bis' elif 'ter' in aTag.text.lower(): cNo = cNo + ' ter' cDate = circolare.find_all(class_='hdate')[0].text dMAE = circolare.find(class_='members-access-error') if dMAE: cRestricted = True cTitle = dMAE.text else: cRestricted = False cTitle = circolare.find('p').text circolariList.append(self.Circolare(cNo, cTitle, cDate, cURL, cRestricted, self.__archiveDir__, self.__archive__)) if self.__archive__ is not None: for value in circolariList: if value.number not in self.__archive__: self.__archive__[value.number] = { 'name': value.name, 'date': value.date, 'url': value.url, 'restricted': value.restricted } self.__saveArchive__() return circolariList def get(self, no, _timeout=5): no = str(no) noN = int(no.split(' ')[0]) if self.__archive__ is not None: if no in self.__archive__: return self.Circolare(no, self.__archive__[no]['name'], self.__archive__[no]['date'], self.__archive__[no]['url'], self.__archive__[no]['restricted'], self.__archiveDir__, self.__archive__) if noN < 1: return 'Inesistente' cList = self.getPages(1, _range=False) cNos = [value.number for value in cList] if no in cNos: return [value for value in cList if value.number == no][0] iterations = 0 page = 1 while True: cNoN = [int(value.split(' ')[0]) for value in cNos] last = cNoN[0] first = cNoN[-1] if first < noN and last > first: return 'Inesistente' if noN > last: return 'Inesistente' page = page + int((last - noN) / 10) if str(noN) + ' bis' in cNos and not str(noN) in cNos: page = page + 1 cList = self.getPages(page, _range=False) cNos = [value.number for value in cList] if no in cNos: return [value for value in cList if value.number == no][0] iterations = iterations + 1 if iterations == _timeout: return 'Timeout' def getFrom(self, startCircN, includeFirst=False): startCircN = str(startCircN) i = 1 pageList = [] while True: page = self.getPages(i, _range=False) cNos = [value.number for value in page] maxC = int([value for value in cNos if value.isnumeric()][0]) if i == 1 and maxC < int(startCircN.split(' ')[0]) and includeFirst or i == 1 and maxC <= int(startCircN.split(' ')[0]) and not includeFirst: return [] if startCircN in cNos: if includeFirst: page = page[:cNos.index(startCircN) + 1] else: page = page[:cNos.index(startCircN)] pageList.append(page) break pageList.append(page) i = i + 1 return [i for o in pageList for i in o] class Circolare: def __init__(self, number, name, date, url, restricted, archiveDir, archive): self.number = number self.name = name self.date = date self.url = url self.restricted = restricted self.__archiveDir__ = archiveDir self.__archive__ = archive self.__downloadInfo__ = None def __saveArchive__(self): with open(self.__archiveDir__ + '/archive.json', 'w') as file: file.write(json.dumps(self.__archive__, indent=4, sort_keys=True)) def __convertToPng__(self, infile, outfile, poppler=None): tmpFilesList = [] if poppler: pages = pdf2image.convert_from_path(infile, poppler_path=poppler) else: pages = pdf2image.convert_from_path(infile) for page in range(len(pages)): pages[page].save(outfile + '-' + str(page+1) + '.png', 'PNG') tmpFilesList.append(outfile + '-' + str(page+1) + '.png') return tmpFilesList def download(self, path=None, pngConvert=False, docConvert=False, keepDoc=False, poppler=None): fileList = {} if self.__archive__ is not None: path = self.__archive__['dir'] dirpath = path + '/' + self.number + '/' try: if self.__archive__[self.number]['attachments'] is None: return {} except: pass try: for num, filename in enumerate(self.__archive__[self.number]['attachments']): tmpFilename = self.__archive__[self.number]['attachments'][filename]['filename'] tmpExtension = tmpFilename.split('.')[-1] if not os.path.exists(self.__archive__[self.number]['attachments'][filename]['filename']) or (tmpExtension == 'pdf' and pngConvert and not glob.glob(dirpath + tmpFilename.split('-')[1].split('.')[0] + '-*.png')) or (tmpExtension in ['doc', 'docx'] and docConvert and not glob.glob(dirpath + self.number + '-*.pdf')): raise 'error' except: pass else: if not pngConvert and not docConvert: return self.__archive__[self.number]['attachments'] try: if any(not os.path.exists(i) for o in [self.__archive__[self.number]['attachments'][f]['files'] for f in self.__archive__[self.number]['attachments']] for i in o): raise 'error' except: pass else: return self.__archive__[self.number]['attachments'] dirpath = path + '/' + self.number + '/' dPage = requests.get(self.url).text soup = bs4.BeautifulSoup(dPage, 'html.parser') word = None if docConvert: word = win32com.client.Dispatch('Word.Application') word.visible = 0 for num, value in enumerate(soup.find_all(class_='post-attachment')): tmpFilesArray = {} if not glob.glob(dirpath + self.number + '-' + str(num+1) + '.*') or self.__archive__ is None: pdfPage = requests.get(value.find('a')['href']) pdfFile = pdfPage.content cExtension = pdfPage.url.split('.')[-1] if not os.path.isdir(path + '/' + self.number): os.mkdir(path + '/' + self.number) file = open(dirpath + self.number + '-' + str(num+1) + '.' + cExtension, 'wb') file.write(pdfFile) file.close() tmpFilesArray['name'] = value.find('a').text tmpFilesArray['filename'] = dirpath + self.number + '-' + str(num+1) + '.' + cExtension else: tmpFilesArray['name'] = self.__archive__[self.number]['attachments'][str(num+1)]['name'] tmpFilesArray['filename'] = self.__archive__[self.number]['attachments'][str(num+1)]['filename'] cExtension = tmpFilesArray['filename'].split('.')[-1] tmpFilesArray['files'] = glob.glob(dirpath + str(num+1) + '-*.png') if not tmpFilesArray['files']: del tmpFilesArray['files'] if pngConvert and cExtension == 'pdf' and not glob.glob(dirpath + str(num+1) + '-*.png'): tmpFilesArray['files'] = self.__convertToPng__(tmpFilesArray['filename'], dirpath + str(num+1), poppler=poppler) elif docConvert and cExtension in ['doc', 'docx'] and not os.path.exists(dirpath + self.number + '-' + str(num+1) + '.pdf'): wb = word.Documents.Open(os.path.abspath(tmpFilesArray['filename'])) wb.SaveAs2(os.path.abspath(tmpFilesArray['filename'].replace('.' + cExtension, '') + '.pdf'), FileFormat=17) wb.Close() if not keepDoc: os.remove(tmpFilesArray['filename']) tmpFilesArray['filename'] = tmpFilesArray['filename'].replace('.' + cExtension, '') + '.pdf' if pngConvert and not glob.glob(dirpath + str(num+1) + '-*.png'): tmpFilesArray['files'] = self.__convertToPng__(tmpFilesArray['filename'], dirpath + str(num+1) , poppler=poppler) fileList[str(num+1)] = tmpFilesArray if word is not None: word.Quit() if not fileList: fileList = None if self.__archive__ is not None: try: self.__archive__[self.number] except: self.__archive__[self.number] = { 'name': self.name, 'date': self.date, 'url': self.url, 'restricted': self.restricted } if not 'attachments' in self.__archive__[self.number] or (not 'files' in self.__archive__[self.number]['attachments'] and pngConvert) or docConvert: self.__archive__[self.number]['attachments'] = fileList self.__saveArchive__() self.__downloadInfo__ = fileList return fileList def delete(self, archive=True, files=True): if files: try: if self.__downloadInfo__ is None: self.__downloadInfo__ = self.__archive__[self.number]['attachments'] except: pass if self.__downloadInfo__ is not None: dirpath = os.path.dirname(self.__downloadInfo__['1']['filename']) if os.path.exists(dirpath): for file in glob.glob(dirpath + '/*'): os.remove(file) os.rmdir(dirpath) if self.__archive__ is not None: del self.__archive__[self.number]['attachments'] self.__downloadInfo__ = None try: del self.__archive__[self.number]['attachments'] except: pass if archive and self.__archive__ is not None: del self.__archive__[self.number] if self.__archive__ is not None: self.__saveArchive__()
37.641096
341
0.483441
13,559
0.986899
0
0
0
0
0
0
1,102
0.08021
8c7dbd2d6be5f59ac7452dec291f7f34b860f29f
596
py
Python
cuisine/interface/recipe_io.py
j3kstrum/recipe-tweaker
941d2fed87fc2c568b29d3b3baee3f8ebfe4daca
[ "MIT" ]
null
null
null
cuisine/interface/recipe_io.py
j3kstrum/recipe-tweaker
941d2fed87fc2c568b29d3b3baee3f8ebfe4daca
[ "MIT" ]
null
null
null
cuisine/interface/recipe_io.py
j3kstrum/recipe-tweaker
941d2fed87fc2c568b29d3b3baee3f8ebfe4daca
[ "MIT" ]
null
null
null
from data.recipe import Recipe from data import RecipeGroup from typing import List class RecipeIO: """ Controls saving and loading of recipes from the filesystem. """ @staticmethod def save(recipe: Recipe) -> bool: raise NotImplementedError() @staticmethod def save_completed(recipe: Recipe) -> bool: raise NotImplementedError() @staticmethod def load(recipe_name: str) -> List[Recipe]: raise NotImplementedError() @staticmethod def place_tombstone(recipe_group: RecipeGroup) -> bool: raise NotImplementedError()
22.923077
63
0.687919
509
0.854027
0
0
390
0.654362
0
0
75
0.125839
8c7fa7533fc54f258e0b5114a55c0d8281434b5f
5,847
py
Python
Inventationery/apps/SalesOrder/models.py
alexharmenta/Inventationery
1bf9ee2c56492ab66947886590b7ec17fa3a6195
[ "BSD-3-Clause" ]
null
null
null
Inventationery/apps/SalesOrder/models.py
alexharmenta/Inventationery
1bf9ee2c56492ab66947886590b7ec17fa3a6195
[ "BSD-3-Clause" ]
null
null
null
Inventationery/apps/SalesOrder/models.py
alexharmenta/Inventationery
1bf9ee2c56492ab66947886590b7ec17fa3a6195
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Author: Alex # @Date: 2015-11-16 19:15:59 # @Last Modified by: Alex # @Last Modified time: 2015-12-28 22:28:23 from django.db import models from Inventationery.core.models import TimeStampedModel from Inventationery.apps.Customer.models import CustomerModel from Inventationery.apps.Inventory.models import ItemModel, LocationModel from Inventationery.apps.Payments.models import PaymentModel, PaymModeModel from Inventationery.core.models import Countries # Function: Get currency codes from Countries model def Get_CurrencyCodes(): CurrencyCodes = Countries.objects.values('currency_code') Codes_list = () for Currency in CurrencyCodes: Codes_list.append() # Function: Get new sequence number for Sales Order def Get_SalesId(): prefix = 'OV-' try: last = SalesOrderModel.objects.latest('created') except: last = None if last: no = int(filter(unicode.isdigit, last.SalesId)) no = no + 1 return str(prefix + str(no).zfill(5)) else: return str(prefix + str(1).zfill(5)) # Class: Model for Sales Order # --------------------------------------------------------------------------- class SalesOrderModel(TimeStampedModel): # SALES TYPE OPTIONS SALES_ORDER = 'SO' RESTORED_ORDER = 'RO' SALES_TYPE = ( (SALES_ORDER, 'Orden de venta'), (RESTORED_ORDER, 'Orden devuelta'), ) # SALES STATUS OPTIONS OPEN = 'OPE' # BACKORDER = 'BAC' REDUCED = 'RED' INVOICED = 'INV' CASHED = 'CAS' CANCELED = 'CAN' REDUCED_CASHED = 'RCA' SALES_STATUS = ( (OPEN, 'Abierta'), # (BACKORDER, 'Back order'), (REDUCED, 'Reducido'), (INVOICED, 'Facturado'), (CASHED, 'Cobrado'), (CANCELED, 'Cancelado'), (REDUCED_CASHED, 'Reducido/Cobrado'), ) # DOCUMENT STATE OPTIONS OPEN = 'Abierto' PROCESS = 'Proceso' CLOSED = 'Cerrado' DOC_STATE = ( (OPEN, 'Abierto'), (PROCESS, 'En proceso'), (CLOSED, 'Cerrado'), ) # DELIVERY MODE HOME = 'HOM' BRANCH = 'BRA' DLV_MODE = ( (HOME, 'A domicilio'), (BRANCH, 'En sucursal'), ) SalesId = models.CharField( max_length=45, default=Get_SalesId, unique=True) SalesName = models.CharField(max_length=100) SalesType = models.CharField( max_length=50, choices=SALES_TYPE, default=SALES_ORDER) SalesStatus = models.CharField( max_length=100, default=OPEN, choices=SALES_STATUS) # DocumentStatus //Pendiente WorkerSalesPlacer = models.CharField( max_length=100, blank=True, null=True) # DirParty-Name LanguageCode = models.CharField( max_length=5, default='es-mx') # DirParty-LanguageCode DeliveryName = models.CharField( max_length=200, blank=True, null=True) # CustModel-get_PrimaryAddress DeliveryDate = models.DateField(blank=True, null=True) ConfirmedDlv = models.DateField(blank=True, null=True) DlvMode = models.CharField(max_length=20, default=HOME, choices=DLV_MODE) CurrencyCode = models.CharField( default='MXN', max_length=3) # CustModel-CurrencyCode # Catalogo de pagos a 30 dias Payment = models.ForeignKey(PaymentModel, blank=True, null=True) # Catalogo de tipo de pagos PaymMode = models.ForeignKey(PaymModeModel, null=True, blank=True) Remarks = models.TextField( default=None, blank=True, null=True) SubTotal = models.DecimalField( max_digits=20, decimal_places=2, blank=True, null=True) Total = models.DecimalField( max_digits=20, decimal_places=2, blank=True, null=True) Paid = models.DecimalField( max_digits=20, decimal_places=2, blank=True, null=True) Balance = models.DecimalField( max_digits=20, decimal_places=2, blank=True, null=True) Enabled = models.BooleanField(default=True) DocumentState = models.CharField( max_length=20, choices=DOC_STATE, default=CLOSED) Customer = models.ForeignKey(CustomerModel, default=None) Location = models.ForeignKey(LocationModel, blank=True, null=True) def __unicode__(self): return "{0}".format(self.SalesId) # Class: Model for Sales Order # --------------------------------------------------------------------------- class SalesLineModel(TimeStampedModel): # SALES STATUS OPTIONS BACKORDER = 'BAC' REDUCED = 'RED' INVOICED = 'INV' CASHED = 'CAS' CANCELED = 'CAN' SALES_STATUS = ( (BACKORDER, 'Back order'), (REDUCED, 'Reducido'), (INVOICED, 'Facturado'), (CASHED, 'Cobrado'), (CANCELED, 'Cancelado'), ) ItemId = models.ForeignKey(ItemModel, blank=True, null=True) ItemName = models.CharField(max_length=50, blank=True, null=True) SalesQty = models.PositiveIntegerField(blank=True, null=True) SalesUnit = models.CharField(max_length=10, blank=True, null=True) SalesPrice = models.DecimalField( blank=True, null=True, max_digits=10, decimal_places=2) LineDisc = models.DecimalField( max_digits=10, decimal_places=2, blank=True, null=True) LinePercent = models.DecimalField( max_digits=10, decimal_places=2, blank=True, null=True) LineAmount = models.DecimalField( max_digits=20, decimal_places=2, blank=True, null=True) SalesLineStatus = models.CharField(max_length=100, default=BACKORDER, choices=SALES_STATUS, blank=True, null=True) LineNum = models.PositiveSmallIntegerField(blank=True, null=True) SalesOrder = models.ForeignKey( SalesOrderModel, null=True, blank=True)
33.411429
78
0.632461
4,507
0.770823
0
0
0
0
0
0
1,155
0.197537
8c801a155d630ce0c04e5998293ea5519ef48632
444
py
Python
bookorbooks/account/migrations/0003_alter_customuser_identity_number.py
talhakoylu/SummerInternshipBackend
4ecedf5c97f73e3d32d5a534769e86aac3e4b6d3
[ "MIT" ]
1
2021-08-10T22:24:17.000Z
2021-08-10T22:24:17.000Z
bookorbooks/account/migrations/0003_alter_customuser_identity_number.py
talhakoylu/SummerInternshipBackend
4ecedf5c97f73e3d32d5a534769e86aac3e4b6d3
[ "MIT" ]
null
null
null
bookorbooks/account/migrations/0003_alter_customuser_identity_number.py
talhakoylu/SummerInternshipBackend
4ecedf5c97f73e3d32d5a534769e86aac3e4b6d3
[ "MIT" ]
null
null
null
# Generated by Django 3.2.5 on 2021-07-13 09:12 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('account', '0002_auto_20210712_1851'), ] operations = [ migrations.AlterField( model_name='customuser', name='identity_number', field=models.CharField(max_length=11, unique=True, verbose_name='Kimlik Numarası'), ), ]
23.368421
95
0.630631
352
0.791011
0
0
0
0
0
0
128
0.28764
8c805e1adcc6b31a87a479f4115ffa71c7a3bbab
8,678
py
Python
Code/Python/ImageProcessing/StereoDepth/featureMatchStereo.py
Nailim/shuttler
a12ea89a1c6b289079ce61ebf8bf3361696f10b2
[ "MIT" ]
null
null
null
Code/Python/ImageProcessing/StereoDepth/featureMatchStereo.py
Nailim/shuttler
a12ea89a1c6b289079ce61ebf8bf3361696f10b2
[ "MIT" ]
null
null
null
Code/Python/ImageProcessing/StereoDepth/featureMatchStereo.py
Nailim/shuttler
a12ea89a1c6b289079ce61ebf8bf3361696f10b2
[ "MIT" ]
null
null
null
# for new opencv #import os,sys #os.chdir(os.path.expanduser('~/opencv-2.4.6.1/lib')) #sys.path.append(os.path.expanduser('~/opencv-2.4.6.1/lib/python2.7/dist-packages')) # before starting #export PYTHONPATH=~/opencv-2.4.6.1/lib/python2.7/dist-packages import os #import cv import cv2 import math import argparse import numpy as np global inputParser # just a reminder, it's used as a global variable global inputArgs # just a reminder, it's used as a global variable def parseInput() : global inputParser global inputArgs inputParser = argparse.ArgumentParser(description='Match features between two stereo images.') inputParser.add_argument('-l', '--left', dest='left', action='store', default="", type=str, help='left image') inputParser.add_argument('-r', '--right', dest='right', action='store', default="", type=str, help='right image') inputParser.add_argument('-n', '--name', dest='name', action='store', default="fm_out", type=str, help='name of the current set (used to save output values)') inputParser.add_argument('-f', '--feature', dest='feature', action='store', default="sift", type=str, help='feature to use: sift, surf, orb, brisk') inputParser.add_argument('-m', '--match', dest='match', action='store', default="bf", type=str, help='match using: bf (bruteforce), flann') inputParser.add_argument('-p', '--proportion', dest='proportion', action='store', default=0.25, type=float, help='Lowe\'s distance test ratio') inputParser.add_argument('-s', '--stddev', dest='stddev', action='store', default=0.0, type=float, help='max standard deviation between angles of each point pair (stereo cheat, 0.0 don\'t; use, > 0.0 use this)') inputParser.add_argument('-d', '--debug', action='store_true', help='debug output') inputArgs = inputParser.parse_args() def processInput() : print "" if inputArgs.left == "" or inputArgs.right == "": print "Missing images!" quit() # here we go ... # load image pair img_l = cv2.imread(inputArgs.left) img_r = cv2.imread(inputArgs.right) if img_l == None or img_r == None: print "Missing images!" quit() # we like them gray gray_l = cv2.cvtColor(img_l, cv2.COLOR_BGR2GRAY) gray_r = cv2.cvtColor(img_r, cv2.COLOR_BGR2GRAY) # which decetor are we using if inputArgs.feature == 'sift': detector = cv2.SIFT() norm = cv2.NORM_L2 elif inputArgs.feature == 'surf': detector = cv2.SURF(800) norm = cv2.NORM_L2 elif inputArgs.feature == 'orb': detector = cv2.ORB(400) norm = cv2.NORM_HAMMING elif inputArgs.feature == 'brisk': detector = cv2.BRISK() norm = cv2.NORM_HAMMING else: print "Wrong feature detector!" quit() # how are we matching detected features if inputArgs.match == 'bf': matcher = cv2.BFMatcher(norm) elif inputArgs.match == 'flann': # borrowed from: https://github.com/Itseez FLANN_INDEX_KDTREE = 1 # bug: flann enums are missing FLANN_INDEX_LSH = 6 flann_params = [] if norm == cv2.NORM_L2: flann_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 5) else: flann_params = dict(algorithm = FLANN_INDEX_LSH, table_number = 6, # 12 key_size = 12, # 20 multi_probe_level = 1) #2 matcher = cv2.FlannBasedMatcher(flann_params, {}) # bug : need to pass empty dict (#1329) print "Using: " + inputArgs.feature + " with " + inputArgs.match print "" print "detecting ..." # find the keypoints and descriptors kp_l, des_l = detector.detectAndCompute(gray_l, None) kp_r, des_r = detector.detectAndCompute(gray_r, None) print "Left image features: " + str(len(kp_l)) print "Right image features: " + str(len(kp_l)) print "" # visualization if inputArgs.debug == 1: # left img_l_tmp = img_l.copy() #for kp in kp_l: # x = int(kp.pt[0]) # y = int(kp.pt[1]) # cv2.circle(img_l_tmp, (x, y), 2, (0, 0, 255)) img_l_tmp = cv2.drawKeypoints(img_l_tmp, kp_l, img_l_tmp, (0, 0, 255), cv2.DRAW_MATCHES_FLAGS_DEFAULT) head, tail = os.path.split(inputArgs.left) cv2.imwrite(head+"/"+"feat_"+tail, img_l_tmp) # right img_r_tmp = img_r.copy() #for kp in kp_r: # x = int(kp.pt[0]) # y = int(kp.pt[1]) # cv2.circle(img_r_tmp, (x, y), 2, (0, 0, 255)) img_r_tmp = cv2.drawKeypoints(img_r_tmp, kp_r, img_r_tmp, (0, 0, 255), cv2.DRAW_MATCHES_FLAGS_DEFAULT) head, tail = os.path.split(inputArgs.right) cv2.imwrite(head+"/"+"feat_"+tail, img_r_tmp) print "matching ..." # match raw_matches = matcher.knnMatch(des_l, trainDescriptors = des_r, k = 2) print "Raw matches: " + str(len(raw_matches)) # filter matches: per Lowe's ratio test filtered_matches = [] mkp_l = [] mkp_r = [] for m in raw_matches: if len(m) == 2 and m[0].distance < m[1].distance * inputArgs.proportion: filtered_matches.append(m) mkp_l.append( kp_l[m[0].queryIdx] ) mkp_r.append( kp_r[m[0].trainIdx] ) print "Filtered matches: " + str(len(filtered_matches)) # visualization if inputArgs.debug == 1: # draw points img_l_tmp = cv2.drawKeypoints(img_l_tmp, mkp_l, img_l_tmp, (255, 0, 0), cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS) head, tail = os.path.split(inputArgs.left) #cv2.imwrite(head+"/"+"feat_"+tail, img_l_tmp) img_r_tmp = cv2.drawKeypoints(img_r_tmp, mkp_r, img_r_tmp, (255, 0, 0), cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS) head, tail = os.path.split(inputArgs.right) #cv2.imwrite(head+"/"+"feat_"+tail, img_r_tmp) # merge image side by side h_l, w_l = img_l_tmp.shape[:2] h_r, w_r = img_r_tmp.shape[:2] img_tmp = np.zeros((max(h_l, h_l), w_r+w_r, 3), np.uint8) img_tmp[:h_l, :w_l] = img_l_tmp img_tmp[:h_r, w_l:w_l+w_r] = img_r_tmp # draw lines for m in filtered_matches: cv2.line(img_tmp, (int(round(kp_l[m[0].queryIdx].pt[0])), int(round(kp_l[m[0].queryIdx].pt[1]))), (int(w_l + round(kp_r[m[0].trainIdx].pt[0])), int(round(kp_r[m[0].trainIdx].pt[1]))), (255, 0, 0), 1) cv2.imwrite(inputArgs.name + "_features.jpg", img_tmp) # filter matches: per direction (since it's a stereo pair, most of the points should have the same angle between them) if inputArgs.stddev != 0.0: ang_stddev = 360.0 stddev = 180.0 while abs(stddev) > inputArgs.stddev: ang_stddev = stddev raw_matches = [] # silly !!! for m in filtered_matches: # silly !!! raw_matches.append(m) # silly !!! filtered_matches = [] mkp_l = [] mkp_r = [] ang = [] for m in raw_matches: xDiff = kp_r[m[0].trainIdx].pt[0] - kp_l[m[0].queryIdx].pt[0] #p2.x - p1.x yDiff = kp_r[m[0].trainIdx].pt[1] - kp_l[m[0].queryIdx].pt[1] #p2.y - p1.y #print math.degrees(math.atan2(yDiff,xDiff)) ang.append(math.degrees(math.atan2(yDiff,xDiff))) mean = np.mean(ang) differences = [(value - mean)**2 for value in ang] stddev = np.mean(differences) ** 0.5 #print mean #print stddev ang = [] for m in raw_matches: xDiff = kp_r[m[0].trainIdx].pt[0] - kp_l[m[0].queryIdx].pt[0] #p2.x - p1.x yDiff = kp_r[m[0].trainIdx].pt[1] - kp_l[m[0].queryIdx].pt[1] #p2.y - p1.y ang_tmp = math.degrees(math.atan2(yDiff,xDiff)) if (mean + stddev) > (mean - stddev): if (mean + stddev) >= ang_tmp and (mean - stddev) <= ang_tmp: filtered_matches.append(m) mkp_l.append( kp_l[m[0].queryIdx] ) mkp_r.append( kp_r[m[0].trainIdx] ) ang.append(math.degrees(math.atan2(yDiff,xDiff))) else: if (mean + stddev) <= ang_tmp and (mean - stddev) >= ang_tmp: filtered_matches.append(m) mkp_l.append( kp_l[m[0].queryIdx] ) mkp_r.append( kp_r[m[0].trainIdx] ) ang.append(math.degrees(math.atan2(yDiff,xDiff))) ##print np.median(ang) mean = np.mean(ang) differences = [(value - mean)**2 for value in ang] stddev = np.mean(differences) ** 0.5 #print mean #print stddev if (abs(ang_stddev) - abs(stddev)) < 0.001: break print "Filtered matches cheat: " + str(len(filtered_matches)) mkp_pairs = zip(mkp_l, mkp_r) file = open(inputArgs.name + "_kp.txt", "w") for p in mkp_pairs: # left x , left y ; right x , right y file.write(str(p[0].pt[0]) + "," + str(p[0].pt[1]) + ";" + str(p[1].pt[0]) + "," + str(p[1].pt[1]) + "\n") file.close() # visualization if inputArgs.debug == 1: # draw lines for m in filtered_matches: cv2.line(img_tmp, (int(round(kp_l[m[0].queryIdx].pt[0])), int(round(kp_l[m[0].queryIdx].pt[1]))), (int(w_l + round(kp_r[m[0].trainIdx].pt[0])), int(round(kp_r[m[0].trainIdx].pt[1]))), (0, 255, 0), 1) cv2.imwrite(inputArgs.name + "_features.jpg", img_tmp) if __name__ == "__main__": # this is not a module parseInput() # what do we have to do processInput() # doing what we have to do print "" # for estetic output
35.276423
212
0.659484
0
0
0
0
0
0
0
0
2,474
0.285089
8c80f15de2f13a257021c58138cdb9e639d87869
10,472
py
Python
parser.py
alexkyllo/pycc
76670dae42274c90f620d9e2bbbdba1deb8ed6bf
[ "MIT" ]
null
null
null
parser.py
alexkyllo/pycc
76670dae42274c90f620d9e2bbbdba1deb8ed6bf
[ "MIT" ]
null
null
null
parser.py
alexkyllo/pycc
76670dae42274c90f620d9e2bbbdba1deb8ed6bf
[ "MIT" ]
1
2020-11-10T08:05:44.000Z
2020-11-10T08:05:44.000Z
from lexer import ( TokenKeyword, TokenOpenBrace, TokenCloseBrace, TokenOpenParen, TokenCloseParen, TokenSemicolon, TokenAssignmentOperator, TokenAdditionOperator, TokenMultiplicationOperator, TokenIncrementOperator, TokenEqualityOperator, TokenInequalityOperator, TokenLogicalOperator, TokenIdentifier, TokenInteger, TokenFloat, TokenString, ) class Int(): '''An integer literal''' def __init__(self, value): self.value = value def __str__(self): return "(Int {0})".format(self.value) class Constant(): '''A constant value''' def __init__(self, value): self.value = value def __str__(self): return "(Constant {0})".format(self.value) class Variable(): '''A variable''' def __init__(self, value): self.value = value def __str__(self): return "(Variable {0})".format(self.value) class UnaryOperationExpression(): '''A prefix expression''' def __init__(self, operator, operand): self.operator = operator self.operand = operand def __str__(self): return "(UnaryOp {0} {1})".format(self.operator.value, self.operand) class BinaryOperationExpression(): ''' An infix expression''' def __init__(self, operator, lhs, rhs): self.operator = operator self.lhs = lhs self.rhs = rhs def __str__(self): return "(BinaryOp {0} {1} {2})".format(self.operator.value, self.lhs, self.rhs) class IfStatement(): ''' An if statement''' def __init__(self, condition, body, else_body): self.condition = condition self.body = body self.else_body = else_body def __str__(self): return "(IfStatement {0} {1} {2})".format(self.condition, self.body, self.else_body) class AssignmentStatement(): ''' An assignment statement''' def __init__(self, op, lhs, rhs): self.op = op self.lhs = lhs self.rhs = rhs def __str__(self): return "(AssignmentStatement {0} {1} {2})".format(self.op.value, self.lhs, self.rhs) def __repr__(self): return str(self) class ReturnStatement(): ''' A return statement''' def __init__(self, expression): self.expression = expression def __str__(self): return "(ReturnStatement {0})".format(self.expression) def __repr__(self): return str(self) class Argument(): ''' A function argument''' def __init__(self, type_name, name): self.type_name = type_name self.name = name def __str__(self): return "(Argument {0} {1})".format(self.type_name, self.name) class Function(): ''' A function contains a list of statements''' def __init__(self, return_type, name, arguments=[], statements=[]): self.return_type = return_type self.name = name self.arguments = arguments self.statements = statements def __str__(self): return "(Function {0} {1} ({2}) {3})".format( self.return_type, self.name, self.arguments, str(self.statements)) class Call(): ''' A function call contains a function name and a list of arguments''' def __init__(self, name, arguments = []): self.name = name self.arguments = arguments def __str__(self): return "(Call {0} ({1}))".format(self.name, self.arguments) class Program(): ''' A Program contains a list of functions''' def __init__(self, functions): self.functions = functions def __str__(self): return "(Program {0})".format(str(self.functions)) def parse_constant(tokens): if (isinstance(peek(tokens), TokenInteger)): current_token = accept(TokenInteger, tokens) node = Constant(Int(current_token.value)) elif (isinstance(peek(tokens), TokenFloat)): current_token = accept(TokenFloat, tokens) node = Constant(Float(current_token.value)) elif (isinstance(peek(tokens), TokenFloat)): current_token = accept(TokenString, tokens) node = Constant(current_token.value) else: node = None return node def parse_variable(tokens): if isinstance(peek(tokens), TokenIdentifier): current_token = tokens.pop(0) node = Variable(current_token.value) else: node = None return node def parse_primary(tokens): expr = parse_constant(tokens) or parse_variable(tokens) if expr: return expr open_paren = accept(TokenOpenParen, tokens) if open_paren: expr = parse_expression(tokens) expect(TokenCloseParen, tokens) return expr def parse_unary(tokens): if any(isinstance(peek(tokens), x) for x in ( TokenLogicalOperator, TokenAdditionOperator, )): operator = (accept(TokenLogicalOperator, tokens) or accept(TokenAdditionOperator, tokens)) rhs = parse_unary(tokens) return UnaryOperationExpression(operator, rhs) else: return parse_primary(tokens) def parse_multiplication(tokens): expr = parse_unary(tokens) while isinstance(peek(tokens), TokenMultiplicationOperator): operator = accept(TokenMultiplicationOperator, tokens) rhs = parse_multiplication(tokens) expr = BinaryOperationExpression(operator, expr, rhs) return expr def parse_addition(tokens): expr = parse_multiplication(tokens) while isinstance(peek(tokens), TokenAdditionOperator): operator = accept(TokenAdditionOperator, tokens) rhs = parse_addition(tokens) expr = BinaryOperationExpression(operator, expr, rhs) return expr def parse_comparison(tokens): expr = parse_addition(tokens) while isinstance(peek(tokens), TokenInequalityOperator): operator = accept(TokenInequalityOperator, tokens) rhs = parse_comparison(tokens) expr = BinaryOperationExpression(operator, expr, rhs) return expr def parse_equality(tokens): expr = parse_comparison(tokens) while isinstance(peek(tokens), TokenEqualityOperator): operator = accept(TokenEqualityOperator, tokens) rhs = parse_equality(tokens) expr = BinaryOperationExpression(operator, expr, rhs) next_token = peek(tokens) return expr def parse_expression(tokens): return parse_equality(tokens) def parse_return(tokens): if accept_value(TokenKeyword, 'return', tokens): expr = parse_expression(tokens) expect(TokenSemicolon, tokens) return ReturnStatement(expr) def peek(tokens): if len(tokens) < 1: return None else: return tokens[0] def accept(tok_type, tokens): if isinstance(peek(tokens), tok_type): return tokens.pop(0) else: return None def accept_value(tok_type, tok_value, tokens): if isinstance(peek(tokens), tok_type) and peek(tokens).value == tok_value: return tokens.pop(0) else: return None def expect(tok, tokens): match = accept(tok, tokens) if not match: tok_instance = tok() if hasattr(tok_instance, 'value'): raise Exception("Expected token {0}".format(tok_instance.value)) else: raise Exception("Expected token {0}".format(tok.__name__)) return match def parse_assignment(tokens): lhs = parse_variable(tokens) if lhs: if isinstance(peek(tokens), TokenAssignmentOperator): op = accept(TokenAssignmentOperator, tokens) rhs = parse_expression(tokens) expect(TokenSemicolon, tokens) return AssignmentStatement(op, lhs, rhs) return None def parse_initializing_assignment(tokens): # handle initializing assignment statement if accept(TokenKeyword, tokens): if accept(TokenIdentifier, tokens): if accept(TokenAssignmentOperator, tokens): expr = parse_expression(tokens) expect(TokenSemicolon, tokens) return AssignmentStatement(expr) def parse_function_call(tokens): if accept(TokenOpenParen, tokens): # handle function call args = [] while not accept(TokenCloseParen, tokens): args.append(parse_function_argument(tokens)) expect(TokenSemicolon, tokens) return Call() def parse_statement(tokens): # Declarations # int a; # Assignment statements: # a = 1; # int a = 1; # Return statements: # return a; # return a + 1; # Other keyword statements: # break; # continue; # check if first token is keyword or identifier name stmt = (parse_return(tokens) or parse_assignment(tokens) or parse_init(tokens) or parse_call(tokens)) return stmt def parse_function_argument(tokens): # does not handle * pointer yet current_token = tokens.pop(0) if not isinstance(current_token, TokenKeyword): raise Exception("Expected argument type declaration") type_name = current_token if not(isinstance(peek(tokens), TokenIdentifier)): raise Exception("Expected identifier for argument name") name = parse_variable(tokens) return Argument(type_name, name) def parse_function_declaration(tokens): current_token = tokens.pop(0) if isinstance(current_token, TokenKeyword): return_type = current_token else: raise Exception("Expected return type declaration") current_token = tokens.pop(0) if isinstance(current_token, TokenIdentifier): name = current_token else: raise Exception("Expected identifier for function name") current_token = tokens.pop(0) args = [] if isinstance(current_token, TokenOpenParen): while not isinstance(peek(tokens), TokenCloseParen): args.append(parse_function_argument(tokens)) else: raise Exception("Expected token (") tokens.pop(0) # swallow ) statements = [] current_token = tokens.pop(0) # should be { if isinstance(current_token, TokenOpenBrace): while not isinstance(peek(tokens), TokenCloseBrace): statements.append(parse_statement(tokens)) else: raise Exception("Expected token {") return Function(return_type, name, args, statements) def parse(tokens): functions = [] while len(tokens) > 0: functions.append(parse_function(tokens)) return Program(functions)
29.498592
92
0.652406
3,216
0.307105
0
0
0
0
0
0
1,201
0.114687
8c811e483e4d1935487f1175baf6f5786632c952
5,983
py
Python
official/benchmark/unet3d_benchmark.py
gitlost-murali/models
e3135c03429c462f16d298b92315213647e36190
[ "Apache-2.0" ]
2
2020-07-31T06:02:09.000Z
2020-07-31T06:05:36.000Z
official/benchmark/unet3d_benchmark.py
gitlost-murali/models
e3135c03429c462f16d298b92315213647e36190
[ "Apache-2.0" ]
1
2020-07-24T10:47:58.000Z
2020-07-24T10:47:58.000Z
official/benchmark/unet3d_benchmark.py
gitlost-murali/models
e3135c03429c462f16d298b92315213647e36190
[ "Apache-2.0" ]
5
2020-10-07T06:11:08.000Z
2021-12-02T21:24:38.000Z
# Lint as: python3 # Copyright 2020 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """Executes benchmark testing for 3D Unet model.""" # pylint: disable=line-too-long from __future__ import print_function import functools import os import time from typing import Optional from absl import flags import tensorflow as tf # pylint: disable=g-bad-import-order from official.benchmark import benchmark_wrappers from official.benchmark import keras_benchmark from official.benchmark import owner_utils from official.vision.segmentation import unet_main as unet_training_lib from official.vision.segmentation import unet_model as unet_model_lib UNET3D_MIN_ACCURACY = 0.90 UNET3D_MAX_ACCURACY = 0.98 UNET_TRAINING_FILES = 'gs://mlcompass-data/unet3d/train_data/*' UNET_EVAL_FILES = 'gs://mlcompass-data/unet3d/eval_data/*' UNET_MODEL_CONFIG_FILE = 'gs://mlcompass-data/unet3d/config/unet_config.yaml' FLAGS = flags.FLAGS class Unet3DAccuracyBenchmark(keras_benchmark.KerasBenchmark): """Benchmark accuracy tests for UNet3D model in Keras.""" def __init__(self, output_dir: Optional[str] = None, root_data_dir: Optional[str] = None, **kwargs): """A benchmark class. Args: output_dir: directory where to output e.g. log files root_data_dir: directory under which to look for dataset **kwargs: arbitrary named arguments. This is needed to make the constructor forward compatible in case PerfZero provides more named arguments before updating the constructor. """ flag_methods = [unet_training_lib.define_unet3d_flags] # UNet3D model in Keras.""" self.training_file_pattern = UNET_TRAINING_FILES self.eval_file_pattern = UNET_EVAL_FILES # TODO(hongjunchoi): Create and use shared config file instead. self.config_file = UNET_MODEL_CONFIG_FILE super(Unet3DAccuracyBenchmark, self).__init__( output_dir=output_dir, flag_methods=flag_methods) def _set_benchmark_parameters(self, experiment_name): """Overrides training parameters for benchmark tests.""" FLAGS.model_dir = self._get_model_dir(experiment_name) FLAGS.mode = 'train' FLAGS.training_file_pattern = self.training_file_pattern FLAGS.eval_file_pattern = self.eval_file_pattern FLAGS.config_file = self.config_file FLAGS.lr_init_value = 0.00005 FLAGS.lr_decay_rate = 0.5 FLAGS.epochs = 3 @benchmark_wrappers.enable_runtime_flags def _run_and_report_benchmark(self, experiment_name: str, min_accuracy: float = UNET3D_MIN_ACCURACY, max_accuracy: float = UNET3D_MAX_ACCURACY, distribution_strategy: str = 'tpu', epochs: int = 10, steps: int = 0, epochs_between_evals: int = 1, dtype: str = 'float32', enable_xla: bool = False, run_eagerly: bool = False): """Runs and reports the benchmark given the provided configuration.""" params = unet_training_lib.extract_params(FLAGS) strategy = unet_training_lib.create_distribution_strategy(params) input_dtype = params.dtype if input_dtype == 'float16' or input_dtype == 'bfloat16': policy = tf.keras.mixed_precision.experimental.Policy( 'mixed_bfloat16' if input_dtype == 'bfloat16' else 'mixed_float16') tf.keras.mixed_precision.experimental.set_policy(policy) stats = {} start_time_sec = time.time() with strategy.scope(): unet_model = unet_model_lib.build_unet_model(params) history = unet_training_lib.train( params, strategy, unet_model, functools.partial(unet_training_lib.get_train_dataset, params), functools.partial(unet_training_lib.get_eval_dataset, params)) stats['accuracy_top_1'] = history.history['val_metric_accuracy'][-1] stats['training_accuracy_top_1'] = history.history['metric_accuracy'][-1] wall_time_sec = time.time() - start_time_sec super(Unet3DAccuracyBenchmark, self)._report_benchmark( stats, wall_time_sec, top_1_min=min_accuracy, top_1_max=max_accuracy, total_batch_size=params.train_batch_size) def _get_model_dir(self, folder_name): return os.path.join(self.output_dir, folder_name) @owner_utils.Owner('tf-model-garden') def benchmark_4x4_tpu_bf16(self): """Test Keras model with 4x4 TPU, fp16.""" experiment_name = 'benchmark_4x4_tpu_fp16' self._setup() self._set_benchmark_parameters(experiment_name) self._run_and_report_benchmark( experiment_name=experiment_name, dtype='bfloat16', distribution_strategy='tpu') @owner_utils.Owner('tf-graph-compiler') def benchmark_4x4_tpu_bf16_mlir(self): """Test Keras model with 4x4 TPU, fp16 and MLIR enabled.""" experiment_name = 'benchmark_4x4_tpu_fp16_mlir' tf.config.experimental.enable_mlir_bridge() self._setup() self._set_benchmark_parameters(experiment_name) self._run_and_report_benchmark( experiment_name=experiment_name, dtype='bfloat16', distribution_strategy='tpu') if __name__ == '__main__': tf.test.main()
39.361842
80
0.694802
4,391
0.733913
0
0
2,791
0.466488
0
0
1,966
0.328598
8c8302aacd848814b28c80f3cb7d246d2c41919a
222
py
Python
pysge/utils.py
shane-breeze/pysge
7c8d7f8df5ca7c09c529b01134a0e789a2ba2cbe
[ "MIT" ]
null
null
null
pysge/utils.py
shane-breeze/pysge
7c8d7f8df5ca7c09c529b01134a0e789a2ba2cbe
[ "MIT" ]
null
null
null
pysge/utils.py
shane-breeze/pysge
7c8d7f8df5ca7c09c529b01134a0e789a2ba2cbe
[ "MIT" ]
null
null
null
try: import subprocess32 as sp except ModuleNotFoundError: import subprocess as sp import shlex def run_command(cmd): p = sp.run(shlex.split(cmd), stdout=sp.PIPE, stderr=sp.PIPE) return p.stdout, p.stderr
22.2
64
0.725225
0
0
0
0
0
0
0
0
0
0
8c842d4db1d85094e333bc85fbb4d227c59d5b6a
3,556
py
Python
src/pygerber/API2D.py
Argmaster/pygerber
4761a5aa60ff1d11512fb44aabd103246d9a3019
[ "MIT" ]
3
2021-08-30T07:07:59.000Z
2021-09-29T22:14:43.000Z
src/pygerber/API2D.py
Argmaster/pygerber
4761a5aa60ff1d11512fb44aabd103246d9a3019
[ "MIT" ]
1
2021-09-26T13:28:49.000Z
2021-09-26T13:28:49.000Z
src/pygerber/API2D.py
Argmaster/pygerber
4761a5aa60ff1d11512fb44aabd103246d9a3019
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- from typing import Any, Dict from PIL import Image from pygerber.parser.pillow.parser import DEFAULT_COLOR_SET_GREEN, ColorSet from .parser.pillow.api import PillowProjectSpec, _render_file def render_from_spec(spec: Dict[str, Any]) -> Image.Image: """Render 2D image from specfile alike dictionary. :param spec: specfile parameters dictionary. :type spec: Dict :return: rendered and merged image. :rtype: Image.Image """ return PillowProjectSpec(spec).render() def render_from_yaml(file_path: str) -> Image.Image: """Render 2D image from specfile written in yaml. :param file_path: yaml specfile path. :type file_path: str :return: rendered and merged image. :rtype: Image.Image """ return PillowProjectSpec.from_yaml(file_path).render() def render_from_json(file_path: str) -> Image.Image: """Render 2D image from specfile written in json. :param file_path: json specfile path. :type file_path: str :return: rendered and merged image. :rtype: Image.Image """ return PillowProjectSpec.from_json(file_path).render() def render_from_toml(file_path: str) -> Image.Image: """Render 2D image from specfile written in toml. :param file_path: toml specfile path. :type file_path: str :return: rendered and merged image. :rtype: Image.Image """ return PillowProjectSpec.from_toml(file_path).render() def render_file_and_save( file_path: str, save_path: str, *, dpi: int = 600, colors: ColorSet = DEFAULT_COLOR_SET_GREEN, ignore_deprecated: bool = True, image_padding: int = 0, ): """Loads, parses, renders file from file_path and saves it in save_path. :param file_path: Path to gerber file. :type file_path: str :param save_path: Path to save render. :type save_path: str :param dpi: DPI of output image, defaults to 600 :type dpi: int, optional :param colors: Color set to use, defaults to DEFAULT_COLOR_SET_GREEN :type colors: ColorSet, optional :param ignore_deprecated: If true, causes parser to not stop when deprecated syntax is found, defaults to True :type ignore_deprecated: bool, optional :param image_padding: Additional pixel padding for image, defaults to 0 :type image_padding: int, optional """ image = render_file( file_path, dpi=dpi, colors=colors, ignore_deprecated=ignore_deprecated, image_padding=image_padding, ) image.save(save_path) def render_file( file_path: str, *, dpi: int = 600, colors: ColorSet = DEFAULT_COLOR_SET_GREEN, ignore_deprecated: bool = True, image_padding: int = 0, ) -> Image.Image: """ Loads, parses and renders file from given path and returns its render as PIL.Image.Image. :param file_path: Path to gerber file to render. :type file_path: str :param dpi: Output image DPI, defaults to 600 :type dpi: int, optional :param colors: Color specification, defaults to DEFAULT_COLOR_SET_GREEN :type colors: ColorSet, optional :param ignore_deprecated: If false causes parser to stop when deprecated syntax is met, defaults to True :type ignore_deprecated: bool, optional :param image_padding: Additional image padding, defaults to 0 :type image_padding: int, optional :return: Output image. :rtype: Image.Image """ return _render_file( file_path, dpi, colors, ignore_deprecated, image_padding, )
29.38843
114
0.692913
0
0
0
0
0
0
0
0
2,151
0.604893
8c84673cd4c815a8dd356f023b667ff78319d314
868
py
Python
job-orchestrator/tests/transformers/test_model_paths.py
anaai/anaai
fa49ba107e7c6d32aef46796452308334517a224
[ "MIT" ]
31
2022-01-26T21:47:31.000Z
2022-03-21T12:22:39.000Z
job-orchestrator/tests/transformers/test_model_paths.py
anaai/anaai
fa49ba107e7c6d32aef46796452308334517a224
[ "MIT" ]
3
2022-01-24T11:16:05.000Z
2022-01-28T15:11:19.000Z
job-orchestrator/tests/transformers/test_model_paths.py
anaai/anaai
fa49ba107e7c6d32aef46796452308334517a224
[ "MIT" ]
2
2022-02-08T12:07:55.000Z
2022-02-08T19:45:40.000Z
from transformers import model_paths def test_candy_model(): assert model_paths.CANDY_FAST_NEURAL_TRANSFER_MODEL == "models/candy.t7" def test_feathers_model(): assert model_paths.FEATHERS_FAST_NEURAL_TRANSFER_MODEL == "models/feathers.t7" def test_mosaic_model(): assert model_paths.MOSAIC_FAST_NEURAL_TRANSFER_MODEL == "models/mosaic.t7" def test_the_scream_model(): assert model_paths.THE_SCREAM_FAST_NEURAL_TRANSFER_MODEL == "models/the_scream.t7" def test_udnie_model(): assert model_paths.UDNIE_FAST_NEURAL_TRANSFER_MODEL == "models/udnie.t7" def test_celeba_distill_model(): assert model_paths.CELEBA_DISTILL_ANIME_GAN == "models/celeba_distill.pt" def test_face_paint_model(): assert model_paths.FACE_PAINT_ANIME_GAN == "models/face_paint_512_v2.pt" def test_paprika_model(): assert model_paths.PAPRIKA_ANIME_GAN == "models/paprika.pt"
33.384615
84
0.820276
0
0
0
0
0
0
0
0
168
0.193548
8c8512a0da331af189d40b5652379f72c53f2f93
9,244
py
Python
Omr.py
marlingod/Computer-Vision
dcba53b2437b02186ccff1c748c96880888bef81
[ "MIT" ]
null
null
null
Omr.py
marlingod/Computer-Vision
dcba53b2437b02186ccff1c748c96880888bef81
[ "MIT" ]
null
null
null
Omr.py
marlingod/Computer-Vision
dcba53b2437b02186ccff1c748c96880888bef81
[ "MIT" ]
null
null
null
from imutils.perspective import four_point_transform from imutils import contours import numpy as np import argparse import imutils import cv2 import matplotlib as plt import os from itertools import groupby def angleCos(p0, p1, p2): d1, d2 = (p0-p1).astype('float'), (p2-p1).astype('float') return abs( np.dot(d1, d2) / np.sqrt( np.dot(d1, d1)*np.dot(d2, d2) ) ) # the function that an pic, find sqaures and #return the sqaures and return the x, y, contour, and parenthierachy # sorted the list top to bottom and left to right def findSquaresHier(img): ## rerun the whole process by draging the hierachy around img= cv2.imread(img) #img = cv2.GaussianBlur(img, (5, 5), 0) imgGray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) squares = [] _retval, bin = cv2.threshold(imgGray, 0, 255, cv2.THRESH_BINARY_INV+ cv2.THRESH_OTSU) bin, contours, _hierarchy = cv2.findContours(bin, cv2.RETR_CCOMP, cv2.CHAIN_APPROX_SIMPLE) hierarchy = _hierarchy[0] sqaures =[] contoursHier = [] for comp in zip(contours, hierarchy): currentContour = comp[0] currentHierachy = comp[1] child = currentHierachy[2] parent = currentHierachy[3] #print currentContour , parent #if currentHierachy[3] == -1 and currentHierachy[2] != -1 : cnt_len = cv2.arcLength(currentContour, True) currentContour = cv2.approxPolyDP(currentContour, 0.03*cnt_len, True) if len(currentContour) == 4 and cv2.contourArea(currentContour) < 1024 and cv2.contourArea(currentContour) > 200 and cv2.isContourConvex(currentContour): currentContour = currentContour.reshape(-1, 2) max_cos = np.max([angleCos( currentContour[i], currentContour[(i+1) % 4], currentContour[(i+2) % 4] ) for i in xrange(4)]) if max_cos < 0.2: (x, y, w, h) = cv2.boundingRect(currentContour) squares.append(currentContour) ar = w / float(h) if (w > 22 and w<= 35 and h >22 and h <= 35 and ar >=0.8 and ar <=1.3 and y > 100 and x > 500): pt =(x+ y+ w+h) coord = x+y cntHier = (y,x,coord, currentContour, parent) contoursHier.append(cntHier) questions = sorted(contoursHier, key=lambda x: (x[0], x[1])) return questions # create that will create bin for the squares and group them # if they are betwen +/- y ranges # input: array of the squares # output: Question number, (y,x,cnt, hier) def GroupSquaresByAxis(arr): # Create the bin and get teh all the y values _bins = [] yValues = [] for i in range(0, len(arr)): a= arr[i][0] yValues.append(a) if len(_bins) ==0: _bins.append(a+10) elif a not in range(0, _bins[-1]+4): _bins.append(a+10) # digitize the y values using the the _bin array inds = np.digitize(yValues,np.array(_bins),right=True) # step six : zip the bin with the with the sorted the list from step three #squaresWithInds =[] squaresWithInds = zip(arr, inds) # group the elements by the bins squaresGroupedByInds=[] for key,valuesiter in groupby(squaresWithInds, key=lambda s:s[1]): somet = (key, list(v[0]for v in valuesiter)) squaresGroupedByInds.append(somet) return squaresGroupedByInds # function to select only two squares by questions: #input: result of the GroupSquaresByAxis function # output : Array of question, 2 questions+ hier def selectTwoSquares(squaresGroupedByInds): # for sqaures with Ind: # if the number of hier -2 take the two element: # If not : twoSquares =[] squareSize = len(squaresGroupedByInds) #hier_ext = [0]* squareSize #hier_int = [0]* squareSize for i in range(len(squaresGroupedByInds)): q =squaresGroupedByInds[i][0] theArr = squaresGroupedByInds[i][1] # list of the array in the questions arrSize = len(theArr) theContours =[] #print q, hier, y, x, pt #print j # if the number of array >2: # if the total number of hier -1 is 2 take them. # if the number hier(-1) is 1: check if the number of the inside is2 :if it is 2 then take them # if the number of array is 2: #check if different x: Add the array # if the same x # mark the question as unsawerable: # get the count number hier(-1) #hier_ext = [0]* squareSize hier_ext =0 hier_int =0 #hier_int = [0]* squareSize for j in range(len(theArr)): hier = theArr[j][4] if hier ==-1 : hier_ext += 1 elif hier !=-1 : hier_int +=1 # get the count number hier(not -1) #print hier_int if arrSize ==3 : # check if the size is more than 2 if hier_ext !=2: # check if the ext size is 2 for j in theArr: contour =j[3] y = j[0] x = j[1] pt = j[2] hier =j[4] asso = (contour,x, hier) if hier != -1 :theContours.append(asso) #print theContours da = (q,theContours) twoSquares.append(da) if hier_ext ==2: # check if the ext size is 2 for j in theArr: contour =j[3] y = j[0] x = j[1] pt = j[2] hier =j[4] asso = (contour,x, hier) if hier == -1 :theContours.append(asso) #print theContours da = (q,theContours) twoSquares.append(da) elif arrSize == 4 : # check if the size is more than 2 for j in theArr: contour =j[3] y = j[0] x = j[1] pt = j[2] hier =j[4] asso = (contour,x, hier) if hier == -1 :theContours.append(asso) #print theContours da = (q,theContours) twoSquares.append(da) elif arrSize == 2: xvalue1 = theArr[0][1] xvalue2 = theArr[1][1] if abs(xvalue1 - xvalue2) < 6: da = (q, []) twoSquares.append(da) if abs(xvalue1 - xvalue2) > 6: for j in theArr: contour =j[3] y = j[0] x = j[1] pt = j[2] hier =j[4] asso = (contour, x,hier) theContours.append(asso) #print theContours da = (q,theContours) twoSquares.append(da) return twoSquares # create a function that will take image and ouput an array of answer: def secondPageAnswers(img): imgcv2 = cv2.imread(img) imgGray = cv2.cvtColor(imgcv2, cv2.COLOR_BGR2GRAY) paper = cv2.threshold(imgGray , 0, 255, cv2.THRESH_BINARY_INV+ cv2.THRESH_OTSU)[1] #mask the image with zeros mask = np.zeros(paper.shape, dtype="uint8") mask = cv2.bitwise_and(paper, paper, mask=mask) answers= [] filename, file_extension = os.path.splitext(img) contractNumber = str((filename.split("-")[0]).strip()) # get the sorted questions # to do: if the total numbers of questions is not equal to 32 then move mark the file as unreadable # Squares Finder: squareFind = findSquaresHier(img) # group by Axis: groupByAxis = GroupSquaresByAxis(squareFind) #print len(groupByAxis) # get only two squares per questions: twoSquares = selectTwoSquares (groupByAxis) #print twoSquares[1] answers =[] que = [] for (j,v) in twoSquares: vSorted = sorted(v, key=lambda x: x[1]) siz = len(vSorted) result =[] bub =None if siz ==2: for (k,a) in enumerate(vSorted): cnt = a[0] x = a[1] hier = a[2] #print j,cnt,x mask = np.zeros(paper.shape, dtype="uint8") cv2.drawContours(mask, [cnt], -1, 255, -1) mask = cv2.bitwise_and(paper, paper, mask=mask) total = cv2.countNonZero(mask) _result = (k,total) #if bub is None or result.append(_result) #print result ##get the result if abs(result[0][1]- result[1][1]) >50: if result[0][1] > result[1][1]: res ='Y' YAnwser =(j,res) answers.append(YAnwser) else : res ='N' NAnwser =(j,res) answers.append(NAnwser) #print j, res else: NullAnswer =(j,"Null") answers.append(NullAnswer) else: cant =(j, "cant answer") answers.append(cant) return answers
35.69112
161
0.535591
0
0
0
0
0
0
0
0
2,169
0.234639
8c8584e4a637146aa64ba5592088fa5de2ab6771
7,747
py
Python
examples/scripts/shapelet_transform.py
wilsonify/sktime
68395d44bd3f46b0801c506e23e889dd54999d29
[ "BSD-3-Clause" ]
null
null
null
examples/scripts/shapelet_transform.py
wilsonify/sktime
68395d44bd3f46b0801c506e23e889dd54999d29
[ "BSD-3-Clause" ]
null
null
null
examples/scripts/shapelet_transform.py
wilsonify/sktime
68395d44bd3f46b0801c506e23e889dd54999d29
[ "BSD-3-Clause" ]
null
null
null
# --- # jupyter: # jupytext: # text_representation: # extension: .py # format_name: light # format_version: '1.5' # jupytext_version: 1.11.1 # kernelspec: # display_name: Python 3 # language: python # name: python3 # --- # # Shapelets and the Shapelet Transform with sktime # # Introduced in [1], a shapelet is a time series subsequences that is identified as being representative of class membership. Shapelets are a powerful approach for measuring _phase-independent_ similarity between time series; they can occur at any point within a series and offer _interpretable_ results for how matches occur. The original research extracted shapelets to build a decision tree classifier. # # The example below illustrates how leaf shape can be represented as a one-dimensional time series (blue line) to distinguish between two species.[2] # # <img src = "img/leaf_types.png"> # <img src = "img/verdena_shapelet.png"> # # The highlighted red subsection of the time series (i.e., "subsequences") above is the shapelet that distinguishes *Verbena urticifolia* from *Urtica dioica*. # # ## The Shapelet Transform # # Much research emphasis has been placed on shapelet-based approaches for time series classification (TSC) since the original research was proposed. The current state-of-the-art for shapelets is the **shapelet transform** (ST) [3, 4]. The transform improves upon the original use of shapelets by separating shapelet extraction from the classification algorithm, allowing interpretable phase-independent classification of time series with any standard classification algorithm (such as random/rotation forest, neural networks, nearest neighbour classifications, ensembles of all, etc.). To facilitate this, rather than recursively assessing data for the best shapelet, the transform evaluates candidate shapelets in a single procedure to rank them based on information gain. Then, given a set of _k_ shapelets, a time series can be transformed into _k_ features by calculating the distance from the series to each shapelet. By transforming a dataset in this manner any vector-based classification algorithm can be applied to a shapelet-transformed time series problem while the interpretability of shapelets is maintained through the ranked list of the _best_ shapelets during transformation. # # Shapelets can provide interpretable results, as seen in the figure below: # # <img src = "img/leaves_shapelets.png"> # # The shapelet has "discovered" where the two plant species distinctly differ. *Urtica dioica* has a stem that connects to the leaf at almost 90 degrees, whereas the stem of *Verbena urticifolia* connects to the leaf at a wider angle. # # Having found shapelet, its distance to the nearest matching subsequence in all objects in the database can be recorded. Finally, a simple decision tree classifier can be built to determine whether an object $Q$ has a subsequence within a certain distance from shapelet $I$. # # <img src = "img/shapelet_classifier.png"> # # #### References # [1] Ye, Lexiang, and Eamonn Keogh. "Time series shapelets: a novel technique that allows accurate, interpretable and fast classification." Data mining and knowledge discovery 22, no. 1-2 (2011): 149-182. # # [2] Ye, Lexiang, and Eamonn Keogh. "Time series shapelets: a new primitive for data mining." In Proceedings of the 15th ACM SIGKDD international conference on Knowledge discovery and data mining, pp. 947-956. 2009. # # [3] Lines, Jason, Luke M. Davis, Jon Hills, and Anthony Bagnall. "A shapelet transform for time series classification." In Proceedings of the 18th ACM SIGKDD international conference on Knowledge discovery and data mining, pp. 289-297. ACM, 2012. # # [4] Hills, Jon, Jason Lines, Edgaras Baranauskas, James Mapp, and Anthony Bagnall. "Classification of time series by shapelet transformation." Data Mining and Knowledge Discovery 28, no. 4 (2014): 851-881. # # [5] Bostrom, Aaron, and Anthony Bagnall. "Binary shapelet transform for multiclass time series classification." In Transactions on Large-Scale Data-and Knowledge-Centered Systems XXXII, pp. 24-46. Springer, Berlin, Heidelberg, 2017. # # ## Example: The Shapelet Transform in sktime # # The following workbook demonstrates a full workflow of using the shapelet transform in `sktime` with a `scikit-learn` classifier with the [OSU Leaf](http://www.timeseriesclassification.com/description.php?Dataset=OSULeaf) dataset, which consists of one dimensional outlines of six leaf classes: *Acer Circinatum*, *Acer Glabrum*, *Acer Macrophyllum*, *Acer Negundo*, *Quercus Garryana* and *Quercus Kelloggii*. # + tags=[] from sktime.datasets import load_osuleaf from sktime.transformations.panel.shapelets import ContractedShapeletTransform train_x, train_y = load_osuleaf(split="train", return_X_y=True) test_x, test_y = load_osuleaf(split="test", return_X_y=True) # + tags=[] # How long (in minutes) to extract shapelets for. # This is a simple lower-bound initially; # once time is up, no further shapelets will be assessed time_contract_in_mins = 1 # The initial number of shapelet candidates to assess per training series. # If all series are visited and time remains on the contract then another # pass of the data will occur initial_num_shapelets_per_case = 10 # Whether or not to print on-going information about shapelet extraction. # Useful for demo/debugging verbose = 2 st = ContractedShapeletTransform( time_contract_in_mins=time_contract_in_mins, num_candidates_to_sample_per_case=initial_num_shapelets_per_case, verbose=verbose, ) st.fit(train_x, train_y) # + tags=[] # %matplotlib inline import matplotlib.pyplot as plt # for each extracted shapelet (in descending order of quality/information gain) for s in st.shapelets[0:5]: # summary info about the shapelet print(s) # plot the series that the shapelet was extracted from plt.plot(train_x.iloc[s.series_id, 0], "gray") # overlay the shapelet onto the full series plt.plot( list(range(s.start_pos, (s.start_pos + s.length))), train_x.iloc[s.series_id, 0][s.start_pos : s.start_pos + s.length], "r", linewidth=3.0, ) plt.show() # + tags=[] # for each extracted shapelet (in descending order of quality/information gain) for i in range(0, min(len(st.shapelets), 5)): s = st.shapelets[i] # summary info about the shapelet print("#" + str(i) + ": " + str(s)) # overlay shapelets plt.plot( list(range(s.start_pos, (s.start_pos + s.length))), train_x.iloc[s.series_id, 0][s.start_pos : s.start_pos + s.length], ) plt.show() # + tags=[] import time from sklearn.ensemble import RandomForestClassifier from sklearn.pipeline import Pipeline from sktime.datasets import load_osuleaf train_x, train_y = load_osuleaf(split="train", return_X_y=True) test_x, test_y = load_osuleaf(split="test", return_X_y=True) # example pipeline with 1 minute time limit pipeline = Pipeline( [ ( "st", ContractedShapeletTransform( time_contract_in_mins=time_contract_in_mins, num_candidates_to_sample_per_case=10, verbose=False, ), ), ("rf", RandomForestClassifier(n_estimators=100)), ] ) start = time.time() pipeline.fit(train_x, train_y) end_build = time.time() preds = pipeline.predict(test_x) end_test = time.time() print("Results:") print("Correct:") correct = sum(preds == test_y) print("\t" + str(correct) + "/" + str(len(test_y))) print("\t" + str(correct / len(test_y))) print("\nTiming:") print("\tTo build: " + str(end_build - start) + " secs") print("\tTo predict: " + str(end_test - end_build) + " secs") # -
46.668675
1,192
0.741448
0
0
0
0
0
0
0
0
5,603
0.723248
8c860bdb685621ac68461a5e8c8c00340c6b1c45
435
py
Python
tests/test_inchi.py
ginkgobioworks/pychemy
e2da05ff5815aae1465407b4d434afb66117e8da
[ "MIT" ]
3
2016-12-18T20:19:51.000Z
2020-10-20T01:49:39.000Z
tests/test_inchi.py
ginkgobioworks/pychemy
e2da05ff5815aae1465407b4d434afb66117e8da
[ "MIT" ]
null
null
null
tests/test_inchi.py
ginkgobioworks/pychemy
e2da05ff5815aae1465407b4d434afb66117e8da
[ "MIT" ]
1
2020-03-29T22:55:46.000Z
2020-03-29T22:55:46.000Z
from __future__ import print_function import unittest import six from pychemy.inchi import InChI class InchiTest(unittest.TestCase): def test_unicode_inchi(self): inchi_str = six.u('InChI=1S/C14H18O8/c1-20-9-4-7(5-15)2-3-8(9)21-14-13(19)12(18)11(17)10(6-16)22-14/h2-5,10-14,16-19H,6H2,1H3/t10-,11-,12+,13-,14-/m1/s1') inchi = InChI(inchi_str) formula = inchi.formula self.assertEqual(formula.formula, 'C14H18O8')
29
158
0.721839
334
0.767816
0
0
0
0
0
0
145
0.333333
8c869595b9f045f630a39964a2bc1bfe046186d9
6,332
py
Python
artap/individual.py
artap-framework/artap
7e4b01abbe5ca0fce9fa87a1a307ebd11ace36b4
[ "MIT" ]
5
2021-06-13T17:04:37.000Z
2022-03-04T17:16:06.000Z
artap/individual.py
artap-framework/artap
7e4b01abbe5ca0fce9fa87a1a307ebd11ace36b4
[ "MIT" ]
null
null
null
artap/individual.py
artap-framework/artap
7e4b01abbe5ca0fce9fa87a1a307ebd11ace36b4
[ "MIT" ]
8
2021-03-11T18:23:47.000Z
2022-02-22T11:13:23.000Z
from abc import * from collections.abc import Iterable from enum import Enum class Individual(metaclass=ABCMeta): """ Collects information about one point in design space. """ class State(Enum): EMPTY = 0 IN_PROGRESS = 1 EVALUATED = 2 FAILED = 3 @classmethod def to_string(cls, state): if state == cls.State.EMPTY: return 'empty' if state == cls.State.IN_PROGRESS: return 'in_progress' if state == cls.State.EVALUATED: return 'evaluated' if state == cls.State.FAILED: return 'failed' counter: int = 0 def __init__(self, vector: list = [], features=dict()): self.id = Individual.counter Individual.counter += 1 self.vector = vector.copy() self.costs = [] self.costs_signed = [] self.state = self.State.EMPTY self.population_id = -1 self.algorithm_id = 0 self.parents = [] self.children = [] self.features = dict() self.features["start_time"] = 0.0 self.features["finish_time"] = 0.0 self.features["feasible"] = 0.0 # the distance from the feasibility region in min norm, its an index, not a self.features["precision"] = 7 # the default value of the considered decimals for key, value in features.items(): if not key in self.features: self.features[key] = value self.custom = {} def calc_signed_costs(self, p_signs): """ This function calculates the signed costs for every vector and insert the feasibility after :return: """ self.costs_signed = list(map(lambda x, y: x * round(y, ndigits=self.features["precision"]), p_signs, self.costs)) self.costs_signed.append(not self.features["feasible"]) def __repr__(self): """ :return: [vector[p1, p2, ... pn]; costs[c1, c2, ... cn]] """ string = "vector: [" for i, number in enumerate(self.vector): string += str(number) if i < len(self.vector) - 1: string += ", " string = string[:len(string) - 1] string += "]" string += "; costs:[" for i, number in enumerate(self.costs): string += str(number) if i < len(self.costs) - 1: string += ", " string += "]" if len(self.custom) > 0: string += "; custom:[" for key, value in self.custom.items(): string += "'{}': {}".format(key, value) if i < len(self.custom) - 1: string += ", " string += "]" if len(self.features) > 0: string += "; features:[" for key, value in self.features.items(): string += "'{}': {}".format(key, value) if i < len(self.features) - 1: string += ", " string += "]" # string += "; state: '{}', ".format(Individual.State.to_string(self.state)) # string += "; info: {}, ".format(self.info) return string def __eq__(self, other): if self.costs_signed == []: diff = set(self.vector) - set(other.vector) return diff == set() else: diff = set(self.costs_signed) - set(other.costs_signed) return diff == set() def __hash__(self): #return id(self) return hash(tuple(self.vector)) def sync(self, individual): self.vector = individual.vector self.costs = individual.costs self.costs_signed = individual.costs_signed self.state = individual.state self.population_id = individual.population_id self.algorithm_id = individual.algorithm_id self.parents = individual.parents self.children = individual.children self.features = individual.features self.custom = individual.custom def to_dict(self): output = {'id': self.id, 'vector': list(self.vector), 'costs': list(self.costs), 'costs_signed': self.costs_signed, 'state': self.to_string(self.state), 'population_id': self.population_id, 'algorithm_id': self.algorithm_id, 'custom': self.custom, 'features': self.features} parents = [] for parent in self.parents: parents.append(self._replace_individual_id(parent)) output['parents'] = parents children = [] for child in self.children: children.append(self._replace_individual_id(child)) output['children'] = children features = dict() for key, value in self.features.items(): features[key] = self._replace_individual_id(value) output['features'] = features return output def _replace_individual_id(self, value): if isinstance(value, Iterable): val = [] for item in value: val.append(self._replace_individual_id(item)) return val elif isinstance(value, Individual): return value.id else: return value @staticmethod def from_dict(dictionary): individual = Individual() individual.id = dictionary['id'] individual.vector = dictionary['vector'] individual.costs = dictionary['costs'] individual.state = dictionary['state'] individual.costs_signed = dictionary['costs_signed'] individual.population_id = dictionary['population_id'] individual.algorithm_id = dictionary['algorithm_id'] individual.custom = dictionary['custom'] individual.features = dictionary['features'] # for feature in individual.features.items(): # key = 'feature_' + feature[0] # if isinstance(feature[1], Iterable): # value = [] # for item in feature[1]: # if isinstance(item, Individual): # value.append(item.id) # else: # value.append(item) # else: # value = feature[1] return individual
32.471795
121
0.543114
6,251
0.987208
0
0
1,353
0.213677
0
0
1,273
0.201042
8c8709cfcc5d97ba4e268291c8caca0e75939b99
343
py
Python
taskhawk/backends/exceptions.py
pdeblanc/taskhawk-python
b820bcc966744c199c002ce977e15a3ef63dab91
[ "Apache-2.0" ]
null
null
null
taskhawk/backends/exceptions.py
pdeblanc/taskhawk-python
b820bcc966744c199c002ce977e15a3ef63dab91
[ "Apache-2.0" ]
3
2021-06-25T20:52:50.000Z
2021-11-30T16:22:30.000Z
hedwig/backends/exceptions.py
cloudchacho/hedwig-python
1e4ca5472fe661ffd9d3cedd10a9ddc2daa0926b
[ "Apache-2.0" ]
1
2022-03-14T03:15:01.000Z
2022-03-14T03:15:01.000Z
class PartialFailure(Exception): """ Error indicating either send_messages or delete_messages API call failed partially """ def __init__(self, result, *args): self.success_count = len(result['Successful']) self.failure_count = len(result['Failed']) self.result = result super().__init__(*args)
31.181818
86
0.661808
342
0.997085
0
0
0
0
0
0
118
0.344023
8c87624e21c73678a29e1978808c53598ef78647
471
py
Python
blox/duplicates_query__1_0/b_duplicates_query.py
mpi-sws-rse/datablox
93af071e5f8a68dc83df1700ed657bd64aca8849
[ "Apache-2.0" ]
null
null
null
blox/duplicates_query__1_0/b_duplicates_query.py
mpi-sws-rse/datablox
93af071e5f8a68dc83df1700ed657bd64aca8849
[ "Apache-2.0" ]
null
null
null
blox/duplicates_query__1_0/b_duplicates_query.py
mpi-sws-rse/datablox
93af071e5f8a68dc83df1700ed657bd64aca8849
[ "Apache-2.0" ]
null
null
null
from block import * from logging import ERROR, WARN, INFO, DEBUG class duplicates_query(Block): def on_load(self, config): self.add_port("query", Port.QUERY, Port.UNNAMED, []) self.log(INFO, "Duplicate-query block loaded") def do_task(self): yield log = Log() res = self.query("query", log).log for i in range(len(res["hash"])): self.log(INFO, "%s: " % res["hash"][i]) for f in res["files"][i]: self.log(INFO, "\t%s" % f)
29.4375
56
0.609342
405
0.859873
234
0.496815
0
0
0
0
75
0.159236
8c87ba42d9c4fcf728e4c4af9e88b377f8f22da4
3,405
py
Python
nodepool/tests/test_shade_integration.py
Juniper/nodepool
3de0b20faa6f90437eb62c56ec23c59c6e15b5fa
[ "Apache-2.0" ]
null
null
null
nodepool/tests/test_shade_integration.py
Juniper/nodepool
3de0b20faa6f90437eb62c56ec23c59c6e15b5fa
[ "Apache-2.0" ]
null
null
null
nodepool/tests/test_shade_integration.py
Juniper/nodepool
3de0b20faa6f90437eb62c56ec23c59c6e15b5fa
[ "Apache-2.0" ]
2
2019-03-19T12:34:13.000Z
2020-02-05T10:31:48.000Z
# Copyright (C) 2015 Hewlett-Packard Development Company, L.P. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. import os import fixtures import voluptuous import yaml from nodepool import config as nodepool_config from nodepool import provider_manager from nodepool import tests class TestShadeIntegration(tests.IntegrationTestCase): def _cleanup_cloud_config(self): os.remove(self.clouds_path) def _use_cloud_config(self, config): config_dir = fixtures.TempDir() self.useFixture(config_dir) self.clouds_path = os.path.join(config_dir.path, 'clouds.yaml') self.useFixture(fixtures.MonkeyPatch( 'os_client_config.config.CONFIG_FILES', [self.clouds_path])) with open(self.clouds_path, 'w') as h: yaml.safe_dump(config, h) self.addCleanup(self._cleanup_cloud_config) def test_nodepool_provider_config_bad(self): # nodepool doesn't support clouds.yaml-less config anymore # Assert that we get a nodepool error and not an os-client-config # error. self.assertRaises( voluptuous.MultipleInvalid, self.setup_config, 'integration_noocc.yaml') def test_nodepool_occ_config(self): configfile = self.setup_config('integration_occ.yaml') auth_data = {'username': 'os_real', 'project_name': 'os_real', 'password': 'os_real', 'auth_url': 'os_real'} occ_config = {'clouds': {'real-cloud': {'auth': auth_data}}} self._use_cloud_config(occ_config) config = nodepool_config.loadConfig(configfile) self.assertIn('real-provider', config.providers) pm = provider_manager.get_provider( config.providers['real-provider'], use_taskmanager=False) pm.start() self.assertEqual(pm._client.auth, auth_data) def test_nodepool_occ_config_reload(self): configfile = self.setup_config('integration_occ.yaml') auth_data = {'username': 'os_real', 'project_name': 'os_real', 'password': 'os_real', 'auth_url': 'os_real'} occ_config = {'clouds': {'real-cloud': {'auth': auth_data}}} self._use_cloud_config(occ_config) pool = self.useNodepool(configfile, watermark_sleep=1) pool.updateConfig() provider_manager = pool.config.provider_managers['real-provider'] self.assertEqual(provider_manager._client.auth, auth_data) # update the config auth_data['password'] = 'os_new_real' os.remove(self.clouds_path) with open(self.clouds_path, 'w') as h: yaml.safe_dump(occ_config, h) pool.updateConfig() provider_manager = pool.config.provider_managers['real-provider'] self.assertEqual(provider_manager._client.auth, auth_data)
37.833333
75
0.669016
2,621
0.76975
0
0
0
0
0
0
1,167
0.342731
8c89c45428c0846d584df54eae048d3cd2046b39
1,944
py
Python
src/pybbox/bboxApiURL.py
BrunoMalard/pybbox
08a4437fcaa5ab6034cdad2822abf2b7e812ab6e
[ "MIT" ]
null
null
null
src/pybbox/bboxApiURL.py
BrunoMalard/pybbox
08a4437fcaa5ab6034cdad2822abf2b7e812ab6e
[ "MIT" ]
null
null
null
src/pybbox/bboxApiURL.py
BrunoMalard/pybbox
08a4437fcaa5ab6034cdad2822abf2b7e812ab6e
[ "MIT" ]
null
null
null
from .bboxConstant import BboxConstant import netaddr as net import socket class BboxAPIUrl: """ Used to handle API url """ API_PREFIX = "api/v1" def __init__(self, api_class, api_method, ip=BboxConstant.DEFAULT_LOCAL_IP): """ :param api_class: string :param api_method: string :param ip: string :return: """ self.api_class = api_class self.api_method = api_method self.ip = ip self.authentication_type = None self.url = None self.build_url_request() def get_api_class(self): return self.api_class def get_api_method(self): return self.api_method def get_ip(self): return self.ip def get_url(self): return self.url def get_authentication_type(self): return self.authentication_type def set_api_name(self, api_class, api_method): self.api_class = api_class self.api_method = api_method self.build_url_request() def build_url_request(self): """ Build the url to use for making a call to the Bbox API :return: url string """ # Check if the ip is LAN or WAN if net.IPAddress(socket.gethostbyname(self.ip)).is_private(): url = BboxConstant.DEFAULT_BBOX_URL self.authentication_type = BboxConstant.AUTHENTICATION_TYPE_LOCAL else: url = "https://{}:{}".format(self.ip, BboxConstant.DEFAULT_REMOTE_PORT) self.authentication_type = BboxConstant.AUTHENTICATION_TYPE_REMOTE if self.api_class is None: url = "{}/{}".format(url, self.API_PREFIX) else: url = "{}/{}/{}".format(url, self.API_PREFIX, self.api_class) if self.api_method is None: self.url = url else: self.url = "{}/{}".format(url, self.api_method)
27.771429
80
0.596708
1,867
0.960391
0
0
0
0
0
0
347
0.178498
8c8a4300c28e34f4930ae2443042159fc3f83514
753
py
Python
experimental_code/integratedAltAz/keplerianToCartesianOrbital.py
rex-mcall/EST_Internship_2021
e2281925c0410e10cf779f8da37d2cf0b58c893a
[ "MIT" ]
null
null
null
experimental_code/integratedAltAz/keplerianToCartesianOrbital.py
rex-mcall/EST_Internship_2021
e2281925c0410e10cf779f8da37d2cf0b58c893a
[ "MIT" ]
null
null
null
experimental_code/integratedAltAz/keplerianToCartesianOrbital.py
rex-mcall/EST_Internship_2021
e2281925c0410e10cf779f8da37d2cf0b58c893a
[ "MIT" ]
null
null
null
from tletools import TLE import matplotlib.pyplot as plt import numpy as np import math from math import * import sys import datetime as dt import tleToKeplerianElements as ttke # uses TLE to return the current distance of the satellite to the focus def distanceToCentralBody(tle, curr_trueA): lan, argp, inc, ecc, n, M, a, E, v = ttke.tleToKepler(tle) eccA = atan2(sqrt(1 - ecc ** 2) * sin(curr_trueA), ecc + cos(curr_trueA)) eccA = eccA % (2 * pi) r = a * (1 - ecc * cos(eccA)) return r # calculates the orbital plane cartesian coordinates for one point in time def getOrbitalCartesianCoords(tle, curr_trueA): r = distanceToCentralBody(tle, curr_trueA) x = r * cos(curr_trueA) y = r * sin(curr_trueA) return x, y
31.375
77
0.706507
0
0
0
0
0
0
0
0
145
0.192563
8c9004e838a951adb521cb483768cf5772d3c5c5
4,091
py
Python
duovoice.py
dreamingdust/Duolingo
b0aa52d4e2ed5d53ed7a6a12b40f7427df80dd8a
[ "MIT" ]
null
null
null
duovoice.py
dreamingdust/Duolingo
b0aa52d4e2ed5d53ed7a6a12b40f7427df80dd8a
[ "MIT" ]
null
null
null
duovoice.py
dreamingdust/Duolingo
b0aa52d4e2ed5d53ed7a6a12b40f7427df80dd8a
[ "MIT" ]
null
null
null
import re import json import random from duorequest import DuoRequest class DuoVoice(): def __init__(self, session, langData): self._lang_data = langData self._user_session = session self._tts_voices = None self._cloudfront_server_url = None self._homepage_text = None self.voice_url_dict = None #TODO: Get a faster way of getting the urls def get_audio_url(self, word, language_abbr=None, rand=True, voice=None): # Check word is in vocab if word is None: raise Exception('A word must be specified to use this function') word = word.lower() # Get default language abbr if not language_abbr: language_abbr = list(self._lang_data.keys())[0] if self.voice_url_dict is None or language_abbr not in self.voice_url_dict: self._populate_voice_url_dictionary(language_abbr) # If no audio exists for a word, return None if word not in self.voice_url_dict[language_abbr]: return None # Get word audio links word_links = list(self.voice_url_dict[language_abbr][word]) # If a voice is specified, get that one or None if voice: for word_link in word_links: if "/{}/".format(voice) in word_link: return word_link return None # If random, shuffle if rand: return random.choice(word_links) return word_links[0] @property def _homepage(self): if self._homepage_text: return self._homepage_text homepage_url = "https://www.duolingo.com" request = DuoRequest.do_request(homepage_url, self._user_session) self._homepage_text = request.text return self._homepage @property def _cloudfront_server(self): if self._cloudfront_server_url: return self._cloudfront_server_url server_list = re.search('//.+\.cloudfront\.net', self._homepage) self._cloudfront_server_url = "https:{}".format(server_list.group(0)) return self._cloudfront_server_url def _populate_voice_url_dictionary(self, lang_abbr): if self.voice_url_dict is None: self.voice_url_dict = {} self.voice_url_dict[lang_abbr] = {} # Get skill IDs skill_ids = [] for skill in self._lang_data[lang_abbr]['skills']: skill_ids.append(skill['id']) # Scrape all sessions and create voice url dictionary for skill_id in skill_ids: req_data = { "fromLanguage": "en" if lang_abbr != "en" else "de", "learningLanguage": lang_abbr, "challengeTypes": ["definition", "translate"], "skillId": skill_id, "type": "SKILL_PRACTICE", "juicy": True, "smartTipsVersion": 2 } resp = DuoRequest.do_request("https://www.duolingo.com/2017-06-30/sessions", self._user_session, req_data) if resp.status_code != 200: continue resp_data = resp.json() for challenge in resp_data['challenges']: self._add_to_voice_url_dict( lang_abbr, challenge['prompt'], challenge['tts']) if challenge.get("metadata") and challenge['metadata'].get("non_character_tts"): for word, url in challenge['metadata']['non_character_tts']['tokens'].items(): self._add_to_voice_url_dict(lang_abbr, word, url) for token in challenge['tokens']: if token.get("tts") and token.get("value"): self._add_to_voice_url_dict( lang_abbr, token['value'], token['tts']) def _add_to_voice_url_dict(self, lang_abbr, word, url): word = word.lower() if word not in self.voice_url_dict[lang_abbr]: self.voice_url_dict[lang_abbr][word] = set() self.voice_url_dict[lang_abbr][word].add(url)
38.59434
118
0.599853
4,019
0.9824
0
0
637
0.155708
0
0
737
0.180152
8c9056fd477bcf10e7708737270959a98f48acf4
9,120
py
Python
vlab_onefs_api/lib/worker/tasks.py
willnx/vlab_onefs
df90738806a5a4800b91e62f79090a11a0b01088
[ "Apache-2.0" ]
1
2019-04-10T16:17:18.000Z
2019-04-10T16:17:18.000Z
vlab_onefs_api/lib/worker/tasks.py
willnx/vlab_onefs
df90738806a5a4800b91e62f79090a11a0b01088
[ "Apache-2.0" ]
2
2018-11-16T19:35:14.000Z
2019-05-22T19:00:38.000Z
vlab_onefs_api/lib/worker/tasks.py
willnx/vlab_onefs
df90738806a5a4800b91e62f79090a11a0b01088
[ "Apache-2.0" ]
null
null
null
# -*- coding: UTF-8 -*- """ Entry point logic for available backend worker tasks """ from celery import Celery from vlab_api_common import get_task_logger from vlab_onefs_api.lib import const from vlab_onefs_api.lib.worker import vmware, setup_onefs app = Celery('onefs', backend='rpc://', broker=const.VLAB_MESSAGE_BROKER) @app.task(name='onefs.show', bind=True) def show(self, username, txn_id): """Obtain basic information about onefs :Returns: Dictionary :param username: The name of the user who wants info about their default gateway :type username: String :param txn_id: A unique string supplied by the client to track the call through logs :type txn_id: String """ logger = get_task_logger(txn_id=txn_id, task_id=self.request.id, loglevel=const.VLAB_ONEFS_LOG_LEVEL.upper()) resp = {'content' : {}, 'error': None, 'params': {}} logger.info('Task starting') try: info = vmware.show_onefs(username) except ValueError as doh: logger.error('Task failed: {}'.format(doh)) resp['error'] = '{}'.format(doh) else: logger.info('Task complete') resp['content'] = info return resp @app.task(name='onefs.create', bind=True) def create(self, username, machine_name, image, front_end, back_end, ram, cpu_count, txn_id): """Deploy a new OneFS node :Returns: Dictionary :param username: The name of the user who wants to create a new default gateway :type username: String :param machine_name: The name of the new OneFS node :type machine_name: String :param image: The image version of OneFS to create :type image: String :param front_end: The network to hook up the external network to :type front_end: String :param back_end: The network to hook the internal network to :type back_end: String :param ram: The number of GB of memory to provision the node with :type ram: Integer :param cpu_count: The number of CPU cores to allocate to the vOneFS node :type cpu_count: Integer :param txn_id: A unique string supplied by the client to track the call through logs :type txn_id: String """ logger = get_task_logger(txn_id=txn_id, task_id=self.request.id, loglevel=const.VLAB_ONEFS_LOG_LEVEL.upper()) resp = {'content' : {}, 'error': None, 'params': {}} logger.info('Task starting') try: resp['content'] = vmware.create_onefs(username, machine_name, image, front_end, back_end, ram, cpu_count, logger) except ValueError as doh: logger.error('Task failed: {}'.format(doh)) resp['error'] = '{}'.format(doh) logger.info('Task complete') return resp @app.task(name='onefs.delete', bind=True) def delete(self, username, machine_name, txn_id): """Destroy a OneFS node :Returns: Dictionary :param username: The name of the user who wants to create a new default gateway :type username: String :param machine_name: The name of the instance of onefs :type machine_name: String :param txn_id: A unique string supplied by the client to track the call through logs :type txn_id: String """ logger = get_task_logger(txn_id=txn_id, task_id=self.request.id, loglevel=const.VLAB_ONEFS_LOG_LEVEL.upper()) resp = {'content' : {}, 'error': None, 'params': {}} logger.info('Task starting') try: vmware.delete_onefs(username, machine_name, logger) except ValueError as doh: logger.error('Task failed: {}'.format(doh)) resp['error'] = '{}'.format(doh) else: logger.info('Task complete') return resp @app.task(name='onefs.image', bind=True) def image(self, txn_id): """Obtain the available OneFS images/versions that can be deployed :Returns: Dictionary :param username: The name of the user who wants to create a new default gateway :type username: String :param txn_id: A unique string supplied by the client to track the call through logs :type txn_id: String """ logger = get_task_logger(txn_id=txn_id, task_id=self.request.id, loglevel=const.VLAB_ONEFS_LOG_LEVEL.upper()) resp = {'content' : {}, 'error': None, 'params': {}} logger.info('Task starting') resp['content'] = {'image': vmware.list_images()} logger.info('Task complete') return resp @app.task(name='onefs.config', bind=True) def config(self, cluster_name, name, username, version, int_netmask, int_ip_low, int_ip_high, ext_netmask, ext_ip_low, ext_ip_high, gateway, dns_servers, encoding, sc_zonename, smartconnect_ip, join_cluster, compliance, txn_id): """Turn a blank OneFS node into a usable device :Returns: Dictionary :param cluster_name: The name of the OneFS cluster :type cluster_name: String :param name: The name of the OneFS node :type name: String :param int_netmask: The subnet mask for the internal OneFS network :type int_netmask: String :param int_ip_low: The smallest IP to assign to an internal NIC :type int_ip_low: String (IPv4 address) :param int_ip_high: The largest IP to assign to an internal NIC :type int_ip_high: String (IPv4 address) :param ext_ip_low: The smallest IP to assign to an external/public NIC :type ext_ip_low: String (IPv4 address) :param ext_ip_high: The largest IP to assign to an external/public NIC :type ext_ip_high: String (IPv4 address) :param gateway: The IP address for the default gateway :type gateway: String (IPv4 address) :param dns_servers: A common separated list of IPs of the DNS servers to use :type dns_servers: String :param encoding: The filesystem encoding to use. :type encoding: String :param sc_zonename: The SmartConnect Zone name to use. Skipped if None. :type sc_zonename: String :param smartconnect_ip: The IPv4 address to use as the SIP :type smartconnect_ip: String (IPv4 address) :param join_cluster: Add the node to an existing cluster :type join_cluster: Boolean :param compliance: Set to True when creating a Compliance mode cluster :type compliance: Boolean :param txn_id: A unique string supplied by the client to track the call through logs :type txn_id: String """ logger = get_task_logger(txn_id=txn_id, task_id=self.request.id, loglevel=const.VLAB_ONEFS_LOG_LEVEL.upper()) resp = {'content' : {}, 'error': None, 'params': {}} logger.info('Task starting') nodes = vmware.show_onefs(username) node = nodes.get(name, None) if not node: error = "No node named {} found".format(name) resp['error'] = error logger.error(error) return resp elif node['meta']['configured']: error = "Cannot configure a node that's already configured" resp['error'] = error logger.error(error) else: # Lets set it up! logger.info('Found node') console_url = node['console'] if join_cluster: logger.info('Joining node to cluster {}'.format(cluster_name)) setup_onefs.join_existing_cluster(console_url, cluster_name, compliance, logger) else: logger.info('Setting up new cluster named {}'.format(cluster_name)) setup_onefs.configure_new_cluster(version=version, console_url=console_url, cluster_name=cluster_name, int_netmask=int_netmask, int_ip_low=int_ip_low, int_ip_high=int_ip_high, ext_netmask=ext_netmask, ext_ip_low=ext_ip_low, ext_ip_high=ext_ip_high, gateway=gateway, dns_servers=dns_servers, encoding=encoding, sc_zonename=sc_zonename, smartconnect_ip=smartconnect_ip, compliance=compliance, logger=logger) node['meta']['configured'] = True vmware.update_meta(username, name, node['meta']) logger.info('Task complete') return resp @app.task(name='onefs.modify_network', bind=True) def modify_network(self, username, machine_name, new_network, txn_id): """Change the network an OneFS node is connected to""" logger = get_task_logger(txn_id=txn_id, task_id=self.request.id, loglevel=const.VLAB_ONEFS_LOG_LEVEL.upper()) resp = {'content' : {}, 'error': None, 'params': {}} logger.info('Task starting') try: vmware.update_network(username, machine_name, new_network) except ValueError as doh: logger.error('Task failed: {}'.format(doh)) resp['error'] = '{}'.format(doh) logger.info('Task complete') return resp
37.842324
121
0.641228
0
0
0
0
8,776
0.962281
0
0
4,426
0.485307
8c90ef4aca469d1ecba0f7580c5b99291072342e
1,878
py
Python
HIN&PairWise/create_dict.py
feast-research/PPGCN
cbc91bb0557f8f1c0beb4cb61804ca86e71d45f3
[ "MIT" ]
15
2019-05-20T08:34:58.000Z
2022-03-30T16:43:40.000Z
HIN&PairWise/create_dict.py
feast-research/PPGCN
cbc91bb0557f8f1c0beb4cb61804ca86e71d45f3
[ "MIT" ]
1
2021-03-04T09:16:41.000Z
2021-03-04T09:16:41.000Z
HIN&PairWise/create_dict.py
feast-research/PPGCN
cbc91bb0557f8f1c0beb4cb61804ca86e71d45f3
[ "MIT" ]
11
2019-05-20T08:35:03.000Z
2022-03-30T16:43:41.000Z
# coding: utf-8 # In[1]: import json import os import time def events_dict(events, num_files): for i in range(num_files): events['event'+str(i+1000000)] = ['event'+str(i+1000000)] with open('events.json', 'w') as json_file: json.dump(events, json_file) return events def keywords_dict(keywords, events, num_files, fp): for i in range(num_files): print(i) f = open(fp+'event'+str(i+18778+1000000)+'.txt', 'r') full = f.readlines() f.close() keys = full[0].strip().split(' ') events['event'+str(i+1000000)] += keys for k in keys: try: keywords[k].append('event'+str(i+1000000)) except: keywords[k] = [k, 'event'+str(i+1000000)] # if i % 10000 == 0: # print('Saving dictionary ...') # with open('events.json', 'w') as json_file: # json.dump(events, json_file) # with open('keywords.json', 'w') as json_file: # json.dump(keywords, json_file) # print('Saved.') del full del keys with open('events.json', 'w') as json_file: json.dump(events, json_file) with open('keywords.json', 'w') as json_file: json.dump(keywords, json_file) if __name__ == "__main__": start_time = time.time() events = {} keywords = {} fp = 'news/' # fp = 'Data/' num_files = 9000000 print('Totally ', num_files) print('Initializing events dictionary ...') events = events_dict(events, num_files) print('Initializing keywords dictionary and Adding keywords&events relations ...') keywords_dict(keywords, events, num_files, fp) print('Done!!!') with open('time.txt', 'a') as f: f.write('Initializing dict totally takes %.3f minutes\n'%((time.time()-start_time)/60))
25.04
95
0.56869
0
0
0
0
0
0
0
0
656
0.349308
8c91071f0ddeb89b2d1a133336badc4c01678885
2,550
py
Python
azure-keyvault/azure/keyvault/key_vault_authentication.py
azuresdkci1x/azure-sdk-for-python-1722
e08fa6606543ce0f35b93133dbb78490f8e6bcc9
[ "MIT" ]
1
2018-11-09T06:16:34.000Z
2018-11-09T06:16:34.000Z
azure-keyvault/azure/keyvault/key_vault_authentication.py
azuresdkci1x/azure-sdk-for-python-1722
e08fa6606543ce0f35b93133dbb78490f8e6bcc9
[ "MIT" ]
null
null
null
azure-keyvault/azure/keyvault/key_vault_authentication.py
azuresdkci1x/azure-sdk-for-python-1722
e08fa6606543ce0f35b93133dbb78490f8e6bcc9
[ "MIT" ]
1
2018-11-09T06:17:41.000Z
2018-11-09T06:17:41.000Z
#--------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. #--------------------------------------------------------------------------------------------- import urllib from requests.auth import AuthBase import requests from msrest.authentication import Authentication from . import HttpBearerChallenge from . import HttpBearerChallengeCache as ChallengeCache class KeyVaultAuthBase(AuthBase): def __init__(self, authorization_callback): self._callback = authorization_callback self._token = None def __call__(self, request): # attempt to pre-fetch challenge if cached if self._callback: challenge = ChallengeCache.get_challenge_for_url(request.url) if challenge: # if challenge cached, retrieve token and update the request self.set_authorization_header(request, challenge) else: # send the request to retrieve the challenge, then request the token and update # the request # TODO: wire up commons flag for things like Fiddler, logging, etc. response = requests.Session().send(request) if response.status_code == 401: auth_header = response.headers['WWW-Authenticate'] if HttpBearerChallenge.is_bearer_challenge(auth_header): challenge = HttpBearerChallenge(response.request.url, auth_header) ChallengeCache.set_challenge_for_url(response.request.url, challenge) self.set_authorization_header(request, challenge) return request def set_authorization_header(self, request, challenge): auth = self._callback( challenge.get_authorization_server(), challenge.get_resource(), challenge.get_scope()) request.headers['Authorization'] = '{} {}'.format(auth[0], auth[1]) class KeyVaultAuthentication(Authentication): def __init__(self, authorization_callback): super(KeyVaultAuthentication, self).__init__() self.auth = KeyVaultAuthBase(authorization_callback) self._callback = authorization_callback def signed_session(self): session = super(KeyVaultAuthentication, self).signed_session() session.auth = self.auth return session
43.220339
95
0.620784
1,993
0.781569
0
0
0
0
0
0
642
0.251765
8c93bd1c8da21f9f225cc04ad9c6cafa560fe192
326
py
Python
circumcircle.py
mas250/Python3
6ac6f0ffe7869cd7520b2ae0debf3650116a97b1
[ "MIT" ]
1
2019-12-28T12:31:28.000Z
2019-12-28T12:31:28.000Z
circumcircle.py
mas250/Python3
6ac6f0ffe7869cd7520b2ae0debf3650116a97b1
[ "MIT" ]
null
null
null
circumcircle.py
mas250/Python3
6ac6f0ffe7869cd7520b2ae0debf3650116a97b1
[ "MIT" ]
null
null
null
from math import sqrt side_a = 4 side_b = 6 side_c = 3 semiperimiter = (side_a + side_b + side_c)/2 diameter = (side_a* side_b* side_c)/ 2*sqrt(semiperimiter * (semiperimiter - side_a) * (semiperimiter - side_b) * (semiperimiter - side_c)) print ('The radius of a circle with sides of length 4, 6 and 3 is', diameter/2)
23.285714
139
0.702454
0
0
0
0
0
0
0
0
59
0.180982
8c9484692f2019ce785b1899db7a88a0eaef612f
5,757
py
Python
kl_modes.py
aasensio/unsupervisedMFBD
b83de1d7bd0d00bada5e61a97eff67acc8377432
[ "MIT" ]
5
2020-06-03T15:00:04.000Z
2021-05-24T06:37:47.000Z
kl_modes.py
aasensio/unsupervisedMFBD
b83de1d7bd0d00bada5e61a97eff67acc8377432
[ "MIT" ]
4
2021-01-31T12:06:39.000Z
2021-06-13T12:00:50.000Z
kl_modes.py
aasensio/unsupervisedMFBD
b83de1d7bd0d00bada5e61a97eff67acc8377432
[ "MIT" ]
2
2021-03-10T12:00:18.000Z
2022-01-06T16:28:32.000Z
import numpy as np import zern import matplotlib.pyplot as pl from tqdm import tqdm import scipy.special as sp def _even(x): return x%2 == 0 def _zernike_parity( j, jp): return _even(j-jp) class KL(object): def __init__(self): pass # tmp = np.load('kl/kl_data.npy') # self.noll_KL = tmp[:,0].astype('int') # self.noll_Z = tmp[:,1].astype('int') # self.cz = tmp[:,2] def precalculate(self, npix_image, first_noll=1): """ Precalculate KL modes. We skip the first mode, which is just the aperture. The second and third mode (first and second one in the return) are tip-tilt using standard Zernike modes. The rest are KL modes obtained by the diagonalization of the Kolmogorov Noll's matrix Parameters ---------- npix_image : int Number of pixels on the pupil plane Returns ------- float array KL modes """ self.npix_image = npix_image print("Computing KL modes...") Z_machine = zern.ZernikeNaive(mask=[]) x = np.linspace(-1, 1, npix_image) xx, yy = np.meshgrid(x, x) rho = np.sqrt(xx ** 2 + yy ** 2) theta = np.arctan2(yy, xx) aperture_mask = rho <= 1.0 self.KL = np.zeros((self.n_modes_max, self.npix_image, self.npix_image)) for mode in (range(self.n_modes_max)): j = mode + first_noll # if (i <= 2): # n, m = zern.zernIndex(i + first_noll) # Z = Z_machine.Z_nm(n, m, rho, theta, True, 'Jacobi') # self.KL[i,:,:] = Z * aperture_mask # else: indx = np.where(self.noll_KL == j)[0] tmp = vh[mode,:] print(mode, self.cz[indx], tmp[np.abs(tmp) > 0]) for i in range(len(indx)): jz = self.noll_Z[indx[i]] cz = self.cz[indx[i]] n, m = zern.zernIndex(jz) Z = Z_machine.Z_nm(n, m, rho, theta, True, 'Jacobi') self.KL[mode,:,:] += cz * Z * aperture_mask return self.KL def precalculate_covariance(self, npix_image, n_modes_max, first_noll=1, overfill=1.0): """ Precalculate KL modes. We skip the first mode, which is just the aperture. The second and third mode (first and second one in the return) are tip-tilt using standard Zernike modes. The rest are KL modes obtained by the diagonalization of the Kolmogorov Noll's matrix Parameters ---------- npix_image : int Number of pixels on the pupil plane n_modes_max : int Maximum number of nodes to consider first_noll : int First Noll index to consider. j=1 is the aperture. j=2/3 are the tip-tilts Returns ------- float array KL modes """ self.npix_image = npix_image self.first_noll = first_noll - 1 self.n_modes_max = n_modes_max + first_noll print("Computing Kolmogorov covariance...") covariance = np.zeros((self.n_modes_max, self.n_modes_max)) for j in range(self.n_modes_max): n, m = zern.zernIndex(j+1) for jpr in range(self.n_modes_max): npr, mpr = zern.zernIndex(jpr+1) deltaz = (m == mpr) and (_zernike_parity(j, jpr) or m == 0) if (deltaz): phase = (-1.0)**(0.5*(n+npr-2*m)) t1 = np.sqrt((n+1)*(npr+1)) t2 = sp.gamma(14./3.0) * sp.gamma(11./6.0)**2 * (24.0/5.0*sp.gamma(6.0/5.0))**(5.0/6.0) / (2.0*np.pi**2) Kzz = t2 * t1 * phase t1 = sp.gamma(0.5*(n+npr-5.0/3.0)) t2 = sp.gamma(0.5*(n-npr+17.0/3.0)) * sp.gamma(0.5*(npr-n+17.0/3.0)) * sp.gamma(0.5*(n+npr+23.0/3.0)) covariance[j,jpr] = Kzz * t1 / t2 covariance[0,:] = 0.0 covariance[:,0] = 0.0 covariance[0,0] = 1.0 print("Diagonalizing Kolmogorov covariance...") u, s, vh = np.linalg.svd(covariance) vh[np.abs(vh) < 1e-10] = 0.0 print("Computing KL modes...") Z_machine = zern.ZernikeNaive(mask=[]) x = np.linspace(-1, 1, npix_image) xx, yy = np.meshgrid(x, x) rho = overfill * np.sqrt(xx ** 2 + yy ** 2) theta = np.arctan2(yy, xx) aperture_mask = rho <= 1.0 self.KL = np.zeros((self.n_modes_max, self.npix_image, self.npix_image)) noll_Z = 1 + np.arange(self.n_modes_max) for mode in tqdm(range(self.n_modes_max)): cz = vh[mode,:] ind = np.where(cz != 0)[0] for i in range(len(ind)): jz = noll_Z[ind[i]] coeff = cz[ind[i]] n, m = zern.zernIndex(jz) Z = Z_machine.Z_nm(n, m, rho, theta, True, 'Jacobi') self.KL[mode,:,:] += coeff * Z * aperture_mask self.KL = self.KL[self.first_noll+1:,:,:] return self.KL if (__name__ == '__main__'): tmp = KL() tmp.precalculate_covariance(npix_image=128, n_modes_max=25, first_noll=3) f, ax = pl.subplots(nrows=4, ncols=4) for i in range(16): ax.flat[i].imshow(tmp.KL[i, :, :]) pl.show() mat = np.zeros((20,20)) for i in range(20): for j in range(20): mat[i,j] = np.sum(tmp.KL[i,:,:]*tmp.KL[j,:,:]) #pl.imshow(np.log(np.abs(mat))) #pl.show()
31.983333
124
0.505472
5,108
0.887268
0
0
0
0
0
0
1,699
0.295119
8c96804536bf1086747100c71b2281dc17414142
677
py
Python
tf_models/train.py
edding/socal-2019-nlp-complete
d3b5c2d57da06b6682dd6aeec3d4070bf9c1f257
[ "MIT" ]
2
2020-05-11T21:51:37.000Z
2021-04-28T16:08:59.000Z
tf_models/train.py
edding/socal-2019-nlp-complete
d3b5c2d57da06b6682dd6aeec3d4070bf9c1f257
[ "MIT" ]
1
2021-08-25T14:49:12.000Z
2021-08-25T14:49:12.000Z
tf_models/train.py
edding/socal-2019-nlp-complete
d3b5c2d57da06b6682dd6aeec3d4070bf9c1f257
[ "MIT" ]
1
2020-04-04T14:25:09.000Z
2020-04-04T14:25:09.000Z
from tf_models.utils import train, save_model def train_and_save(name: str, corpus: str, pos_label: str, root: str = ""): print("Start training {}...".format(name)) mlp_model, _, vec = train(corpus, pos_label, root) save_model(mlp_model, vec, name, root) if __name__ == "__main__": # Train intent model # fmt: off train_and_save( name="intent", corpus="intent_corpus.csv", pos_label="weather", root="intent" ) # fmt: on # Train flow control model train_and_save( name="flow_control", corpus="flow_control_corpus.csv", pos_label="continue", root="flow_control", )
23.344828
75
0.612999
0
0
0
0
0
0
0
0
206
0.304284
8c977c91bd1defaf564c46979a1e981f2c71b7b9
5,641
py
Python
docs/conf.py
j-i-l/SoSpCATpy
9e96a74ab24a727102eb80e1d85ed71ecb11ed76
[ "BSD-3-Clause" ]
2
2020-12-10T00:08:58.000Z
2020-12-11T09:37:06.000Z
docs/conf.py
j-i-l/SoSpCAT
9e96a74ab24a727102eb80e1d85ed71ecb11ed76
[ "BSD-3-Clause" ]
1
2020-12-10T21:59:53.000Z
2020-12-19T17:37:14.000Z
docs/conf.py
j-i-l/SoSpCATpy
9e96a74ab24a727102eb80e1d85ed71ecb11ed76
[ "BSD-3-Clause" ]
null
null
null
# Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full # list see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html # -- Path setup -------------------------------------------------------------- # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # import os import sys # sys.path.append('../') # sys.path.insert(0, os.path.abspath('.')) sys.path.insert(0, os.path.abspath('../')) sys.path.insert(0, os.path.abspath('../sospcat')) # -- Project information ----------------------------------------------------- project = 'SoSpaCATpy' copyright = '2020, Jonas I. Liechti' author = 'Jonas I. Liechti' # ############################################################################ # ############################################################################ # The full version, including alpha/beta/rc tags def get_version_and_cmdclass(package_path): """Load version.py module without importing the whole package. Template code from miniver """ import os from importlib.util import module_from_spec, spec_from_file_location spec = spec_from_file_location( "version", os.path.join(package_path, "_version.py") ) module = module_from_spec(spec) spec.loader.exec_module(module) return module.__version__ # , module.cmdclass # major/minor _release = get_version_and_cmdclass('../sospcat') print(_release) release = _release.split('+')[0] version = '.'.join(release.split('.')[:2]) # ############################################################################ # ############################################################################ # -- General configuration --------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.coverage', 'sphinx.ext.todo', 'sphinx.ext.intersphinx', 'sphinx.ext.mathjax', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode', 'sphinx.ext.githubpages', 'sphinx.ext.autosummary', 'sphinx.ext.extlinks', 'sphinx.ext.napoleon', 'm2r2' ] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # ############################################################################ # ############################################################################ source_suffix = ['.rst', '.md'] master_doc = 'index' todo_include_todos = True # ############################################################################ # ############################################################################ # ############################################################################ # ############################################################################ on_rtd = os.environ.get('READTHEDOCS', None) == 'True' if not on_rtd: # only import and set the theme if we're building docs locally import sphinx_rtd_theme html_theme = "sphinx_rtd_theme" html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # ############################################################################ # ############################################################################ # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # # html_theme = 'alabaster' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # ############################################################################ # ############################################################################ # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { 'python': ('https://docs.python.org/3', None), 'numpy': ('http://docs.scipy.org/doc/numpy/', None), 'matplotlib': ('http://matplotlib.org', None), 'sphinx': ('http://www.sphinx-doc.org/en/stable/', None), 'sklearn': ( 'http://scikit-learn.org/stable', (None, './_intersphinx/sklearn-objects.inv') ) } # ############################################################################ # ############################################################################ # ############################################################################ # ############################################################################ # If true, the current module name will be prepended to all description # unit titles (such as .. function::). add_module_names = False # ############################################################################ # ############################################################################ # Use both docstring of class and docstring of __init__ methods autoclass_content = 'both'
39.173611
79
0.479348
0
0
0
0
0
0
0
0
4,377
0.775926
8c98128aba9bae2c2828d02f0514de7ab9d43713
1,039
py
Python
migrations/versions/f1896d92dddc_.py
akelshareif/fiscally
ca44ca00537d2b9ef1bca8a3a67b66427394dc72
[ "MIT" ]
1
2020-09-18T04:18:58.000Z
2020-09-18T04:18:58.000Z
migrations/versions/f1896d92dddc_.py
akelshareif/fiscally
ca44ca00537d2b9ef1bca8a3a67b66427394dc72
[ "MIT" ]
null
null
null
migrations/versions/f1896d92dddc_.py
akelshareif/fiscally
ca44ca00537d2b9ef1bca8a3a67b66427394dc72
[ "MIT" ]
null
null
null
"""empty message Revision ID: f1896d92dddc Revises: bdd283763bd2 Create Date: 2020-08-21 22:08:42.863607 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = 'f1896d92dddc' down_revision = 'bdd283763bd2' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.add_column('bills', sa.Column('created', sa.Date(), nullable=True)) op.add_column('paychecks', sa.Column('created', sa.Date(), nullable=True)) op.add_column('savings_goals', sa.Column('created', sa.Date(), nullable=True)) op.add_column('total_savings_log', sa.Column('created', sa.Date(), nullable=True)) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.drop_column('total_savings_log', 'created') op.drop_column('savings_goals', 'created') op.drop_column('paychecks', 'created') op.drop_column('bills', 'created') # ### end Alembic commands ###
29.685714
86
0.692974
0
0
0
0
0
0
0
0
536
0.515881
8c99299cba6a52cf3dabace97db1a9fc2ccbe36e
1,969
py
Python
test/territories_test.py
AColocho/us-states
1b97d9d4d1784ad6e297ffe1df2927eab3e86546
[ "BSL-1.0" ]
3
2020-12-31T02:08:01.000Z
2022-01-11T07:21:22.000Z
test/territories_test.py
AColocho/us-states
1b97d9d4d1784ad6e297ffe1df2927eab3e86546
[ "BSL-1.0" ]
14
2020-12-23T00:06:20.000Z
2022-01-10T16:43:43.000Z
test/territories_test.py
AColocho/us-states
1b97d9d4d1784ad6e297ffe1df2927eab3e86546
[ "BSL-1.0" ]
3
2020-12-28T08:47:00.000Z
2022-01-10T15:27:01.000Z
from states import Territories_Abbreviated from states import Territories_Full_Name from states import Uninhabited_Territories from states import Associated_States from states import Territories import unittest class Abbreviated_Test(unittest.TestCase): def check_lenght(self): """ Checks there is only 5 territories. """ all_territories = Territories_Abbreviated().all_territories self.assertEqual(5,len(all_territories),'There is either less or more than 5 territories recognized.') class Full_Name_Test(unittest.TestCase): def check_lenght(self): """ Checks there is only 5 territories. """ all_territories = Territories_Full_Name().all_territories self.assertEqual(5,len(all_territories),'There is either less or more than 5 territories recognized.') class Uninhabited_Territories_Test(unittest.TestCase): def check_lenght(self): """ Checks there is only 7 territories. """ all_territories = Uninhabited_Territories().all_territories self.assertEqual(7,len(all_territories),'There is either less or more than 7 territories recognized.') class Associated_States_Test(unittest.TestCase): def check_lenght(self): """ Checks there is only 3 territories. """ all_territories = Associated_States().pacific_abbreviated self.assertEqual(3,len(all_territories),'There is either less or more than 3 territories recognized.') class Territories_Test(unittest.TestCase): def check_search_returns_info(self): """ Checks that the search function returns the correct value. """ PR = Territories().get_territory_info('Puerto Rico') full_name = PR['full_name'] self.assertTrue(full_name == 'Puerto Rico', 'Search function is not retrieving the right value. Used Puerto Rico as a Test.') if __name__ == "__main__": unittest.main()
39.38
133
0.705942
1,685
0.855764
0
0
0
0
0
0
689
0.349924
8c9c1a5711b123bddf619f7dedc40d8269640efe
714
py
Python
DataStructures/BinarySerachTree_def/Program.py
luiscarm9/Data-Structures-in-Python
e7eb7e7ece8f3223b8017d25acc76bea3e93e3f6
[ "MIT" ]
null
null
null
DataStructures/BinarySerachTree_def/Program.py
luiscarm9/Data-Structures-in-Python
e7eb7e7ece8f3223b8017d25acc76bea3e93e3f6
[ "MIT" ]
null
null
null
DataStructures/BinarySerachTree_def/Program.py
luiscarm9/Data-Structures-in-Python
e7eb7e7ece8f3223b8017d25acc76bea3e93e3f6
[ "MIT" ]
null
null
null
from BinarySerachTree_def.BinaryTree import BinaryTreeS binarytree=BinaryTreeS() #create a binary tree with fibonnaci binarytree.insert(0) binarytree.insert(1) binarytree.insert(1) binarytree.insert(2) binarytree.insert(3) binarytree.insert(5) binarytree.insert(8) binarytree.insert(13) binarytree.getTraverseInOrder() print('------------------------------') #Remove the last element binarytree.remove(13) binarytree.getTraverseInOrder() print('------------------------------') #Remove the first element different of zero binarytree.remove(1) binarytree.getTraverseInOrder() print('------------------------------') print 'Max Value:' print binarytree.getMax() print 'Min Value:' print binarytree.getMin()
22.3125
55
0.696078
0
0
0
0
0
0
0
0
224
0.313725
8c9fb6efe06b9d7eacf5c439d3879b402a99796e
3,469
py
Python
generative_model/generator_test.py
LamUong/Generate-novel-molecules-with-LSTM
a145a70ecd8719681e52b17a21d269c56873bcc3
[ "CC0-1.0" ]
19
2018-02-17T22:42:38.000Z
2021-07-16T07:21:46.000Z
generative_model/generator_test.py
LamUong/Generate-novel-molecules-with-LSTM
a145a70ecd8719681e52b17a21d269c56873bcc3
[ "CC0-1.0" ]
1
2018-11-18T15:05:17.000Z
2018-11-18T15:05:17.000Z
generative_model/generator_test.py
LamUong/Generate-novel-molecules-with-LSTM
a145a70ecd8719681e52b17a21d269c56873bcc3
[ "CC0-1.0" ]
9
2018-01-06T11:13:18.000Z
2021-06-22T12:32:55.000Z
import torch import torch.nn as nn from torch.autograd import Variable from data_loading import * from rdkit import Chem ''' the model ''' class generative_model(nn.Module): def __init__(self, vocabs_size, hidden_size, output_size, embedding_dimension, n_layers): super(generative_model, self).__init__() self.vocabs_size = vocabs_size self.hidden_size = hidden_size self.output_size = output_size self.embedding_dimension = embedding_dimension self.n_layers = n_layers self.embedding = nn.Embedding(vocabs_size, embedding_dimension) self.rnn = nn.LSTM(embedding_dimension, hidden_size, n_layers, dropout = 0.2) self.linear = nn.Linear(hidden_size, output_size) def forward(self, input, hidden): batch_size = input.size(0) input = self.embedding(input) output, hidden = self.rnn(input.view(1, batch_size, -1), hidden) output = self.linear(output.view(batch_size, -1)) return output, hidden def init_hidden(self, batch_size): hidden=(Variable(torch.zeros(self.n_layers, batch_size, self.hidden_size)), Variable(torch.zeros(self.n_layers, batch_size, self.hidden_size))) return hidden data,vocabs=load_data() data = set(list(data)) vocabs = list(vocabs) vocabs_size = len(vocabs) output_size = len(vocabs) batch_size = 128 cuda = True hidden_size = 1024 embedding_dimension = 248 n_layers=3 end_token = ' ' model = generative_model(vocabs_size,hidden_size,output_size,embedding_dimension,n_layers) model.load_state_dict(torch.load('mytraining.pt')) if cuda: model = model.cuda() model.eval() def evaluate(prime_str='!', temperature=0.4): max_length = 200 inp = Variable(tensor_from_chars_list(prime_str,vocabs,cuda)).cuda() batch_size = inp.size(0) hidden = model.init_hidden(batch_size) if cuda: hidden = (hidden[0].cuda(), hidden[1].cuda()) predicted = prime_str while True: output, hidden = model(inp, hidden) # Sample from the network as a multinomial distribution output_dist = output.data.view(-1).div(temperature).exp() top_i = torch.multinomial(output_dist, 1)[0] # Add predicted character to string and use as next input predicted_char = vocabs[top_i] if predicted_char ==end_token or len(predicted)>max_length: return predicted predicted += predicted_char inp = Variable(tensor_from_chars_list(predicted_char,vocabs,cuda)).cuda() return predicted def valid_smile(smile): return Chem.MolFromSmiles(smile) is not None def get_canonical_smile(smile): return Chem.MolToSmiles(Chem.MolFromSmiles(smile)) def valid_smiles_at_temp(temp): range_test = 100 c=0 for i in range(range_test): s= evaluate(prime_str='!', temperature=temp)[1:] # remove the first character !. if valid_smile(s): print(s) c+=1 return float(c)/range_test def smiles_in_db(smile): smile = '!'+get_canonical_smile(smile)+' ' if smile in data: return True return False def percentage_variety_of_valid_at_temp(temp): range_test = 100 c_v=0 c_nd=0 for i in range(range_test): s= evaluate(prime_str='!', temperature=temp)[1:] # remove the first character !. if valid_smile(s): c_v+=1 if not smiles_in_db(s): c_nd+=1 return float(c_nd)/c_v
32.12037
93
0.677717
1,106
0.318824
0
0
0
0
0
0
224
0.064572
8ca1def1e3fb9c5420539abd418d03fb101d97fb
16,206
py
Python
lib/jnpr/healthbot/swagger/models/hb_graphs_query.py
Juniper/healthbot-py-client
49f0884b5d01ac8430aa7ed4c9acb4e7a2b717a6
[ "Apache-2.0" ]
10
2019-10-23T12:54:37.000Z
2022-02-07T19:24:30.000Z
docs/jnpr_healthbot_swagger/swagger_client/models/hb_graphs_query.py
Juniper/healthbot-py-client
49f0884b5d01ac8430aa7ed4c9acb4e7a2b717a6
[ "Apache-2.0" ]
5
2019-09-30T04:29:25.000Z
2022-02-16T12:21:06.000Z
docs/jnpr_healthbot_swagger/swagger_client/models/hb_graphs_query.py
Juniper/healthbot-py-client
49f0884b5d01ac8430aa7ed4c9acb4e7a2b717a6
[ "Apache-2.0" ]
4
2019-09-30T01:17:48.000Z
2020-08-25T07:27:54.000Z
# coding: utf-8 """ Paragon Insights APIs API interface for PI application # noqa: E501 OpenAPI spec version: 4.0.0 Contact: healthbot-feedback@juniper.net Generated by: https://github.com/swagger-api/swagger-codegen.git """ import pprint import re # noqa: F401 import six class HbGraphsQuery(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ """ Attributes: swagger_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. """ swagger_types = { 'group_name': 'str', 'group_type': 'str', 'device_name': 'str', 'measurement_name': 'str', 'measurement_type': 'str', 'transformation': 'str', 'field_name': 'str', 'field_type': 'str', 'field_aggregation': 'str', 'where': 'HbGraphsQueryWhere', 'group_by_interval': 'str', 'group_by_fill': 'str', 'group_by_tag_key': 'str', 'retention_policy': 'str' } attribute_map = { 'group_name': 'group_name', 'group_type': 'group_type', 'device_name': 'device_name', 'measurement_name': 'measurement_name', 'measurement_type': 'measurement_type', 'transformation': 'transformation', 'field_name': 'field_name', 'field_type': 'field_type', 'field_aggregation': 'field_aggregation', 'where': 'where', 'group_by_interval': 'group_by_interval', 'group_by_fill': 'group_by_fill', 'group_by_tag_key': 'group_by_tag_key', 'retention_policy': 'retention_policy' } def __init__(self, group_name=None, group_type=None, device_name=None, measurement_name=None, measurement_type=None, transformation=None, field_name=None, field_type=None, field_aggregation=None, where=None, group_by_interval=None, group_by_fill=None, group_by_tag_key=None, retention_policy=None): # noqa: E501 """HbGraphsQuery - a model defined in Swagger""" # noqa: E501 self._group_name = None self._group_type = None self._device_name = None self._measurement_name = None self._measurement_type = None self._transformation = None self._field_name = None self._field_type = None self._field_aggregation = None self._where = None self._group_by_interval = None self._group_by_fill = None self._group_by_tag_key = None self._retention_policy = None self.discriminator = None if group_name is not None: self.group_name = group_name if group_type is not None: self.group_type = group_type if device_name is not None: self.device_name = device_name if measurement_name is not None: self.measurement_name = measurement_name if measurement_type is not None: self.measurement_type = measurement_type if transformation is not None: self.transformation = transformation if field_name is not None: self.field_name = field_name if field_type is not None: self.field_type = field_type if field_aggregation is not None: self.field_aggregation = field_aggregation if where is not None: self.where = where if group_by_interval is not None: self.group_by_interval = group_by_interval if group_by_fill is not None: self.group_by_fill = group_by_fill if group_by_tag_key is not None: self.group_by_tag_key = group_by_tag_key if retention_policy is not None: self.retention_policy = retention_policy @property def group_name(self): """Gets the group_name of this HbGraphsQuery. # noqa: E501 Device/Network group name # noqa: E501 :return: The group_name of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._group_name @group_name.setter def group_name(self, group_name): """Sets the group_name of this HbGraphsQuery. Device/Network group name # noqa: E501 :param group_name: The group_name of this HbGraphsQuery. # noqa: E501 :type: str """ self._group_name = group_name @property def group_type(self): """Gets the group_type of this HbGraphsQuery. # noqa: E501 Device/Network group type # noqa: E501 :return: The group_type of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._group_type @group_type.setter def group_type(self, group_type): """Sets the group_type of this HbGraphsQuery. Device/Network group type # noqa: E501 :param group_type: The group_type of this HbGraphsQuery. # noqa: E501 :type: str """ allowed_values = ["device", "network"] # noqa: E501 if group_type not in allowed_values: raise ValueError( "Invalid value for `group_type` ({0}), must be one of {1}" # noqa: E501 .format(group_type, allowed_values) ) self._group_type = group_type @property def device_name(self): """Gets the device_name of this HbGraphsQuery. # noqa: E501 label name # noqa: E501 :return: The device_name of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._device_name @device_name.setter def device_name(self, device_name): """Sets the device_name of this HbGraphsQuery. label name # noqa: E501 :param device_name: The device_name of this HbGraphsQuery. # noqa: E501 :type: str """ self._device_name = device_name @property def measurement_name(self): """Gets the measurement_name of this HbGraphsQuery. # noqa: E501 Measurement name (topic/rule name) # noqa: E501 :return: The measurement_name of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._measurement_name @measurement_name.setter def measurement_name(self, measurement_name): """Sets the measurement_name of this HbGraphsQuery. Measurement name (topic/rule name) # noqa: E501 :param measurement_name: The measurement_name of this HbGraphsQuery. # noqa: E501 :type: str """ self._measurement_name = measurement_name @property def measurement_type(self): """Gets the measurement_type of this HbGraphsQuery. # noqa: E501 Measurement type: Field table/Trigger table/Rollup table # noqa: E501 :return: The measurement_type of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._measurement_type @measurement_type.setter def measurement_type(self, measurement_type): """Sets the measurement_type of this HbGraphsQuery. Measurement type: Field table/Trigger table/Rollup table # noqa: E501 :param measurement_type: The measurement_type of this HbGraphsQuery. # noqa: E501 :type: str """ allowed_values = ["Field table", "Trigger table", "Rollup table"] # noqa: E501 if measurement_type not in allowed_values: raise ValueError( "Invalid value for `measurement_type` ({0}), must be one of {1}" # noqa: E501 .format(measurement_type, allowed_values) ) self._measurement_type = measurement_type @property def transformation(self): """Gets the transformation of this HbGraphsQuery. # noqa: E501 Transformation value for query # noqa: E501 :return: The transformation of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._transformation @transformation.setter def transformation(self, transformation): """Sets the transformation of this HbGraphsQuery. Transformation value for query # noqa: E501 :param transformation: The transformation of this HbGraphsQuery. # noqa: E501 :type: str """ allowed_values = ["derivative", "spread", "non-negative-derivative", "difference", "cumulative-sum", "elapsed"] # noqa: E501 if transformation not in allowed_values: raise ValueError( "Invalid value for `transformation` ({0}), must be one of {1}" # noqa: E501 .format(transformation, allowed_values) ) self._transformation = transformation @property def field_name(self): """Gets the field_name of this HbGraphsQuery. # noqa: E501 Field name of a measurement # noqa: E501 :return: The field_name of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._field_name @field_name.setter def field_name(self, field_name): """Sets the field_name of this HbGraphsQuery. Field name of a measurement # noqa: E501 :param field_name: The field_name of this HbGraphsQuery. # noqa: E501 :type: str """ self._field_name = field_name @property def field_type(self): """Gets the field_type of this HbGraphsQuery. # noqa: E501 Field type of the measurement (int, float, string, uint) # noqa: E501 :return: The field_type of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._field_type @field_type.setter def field_type(self, field_type): """Sets the field_type of this HbGraphsQuery. Field type of the measurement (int, float, string, uint) # noqa: E501 :param field_type: The field_type of this HbGraphsQuery. # noqa: E501 :type: str """ self._field_type = field_type @property def field_aggregation(self): """Gets the field_aggregation of this HbGraphsQuery. # noqa: E501 Data aggregation type of the field/key # noqa: E501 :return: The field_aggregation of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._field_aggregation @field_aggregation.setter def field_aggregation(self, field_aggregation): """Sets the field_aggregation of this HbGraphsQuery. Data aggregation type of the field/key # noqa: E501 :param field_aggregation: The field_aggregation of this HbGraphsQuery. # noqa: E501 :type: str """ allowed_values = ["mean", "mode", "median", "count", "sum", "integral", "distinct"] # noqa: E501 if field_aggregation not in allowed_values: raise ValueError( "Invalid value for `field_aggregation` ({0}), must be one of {1}" # noqa: E501 .format(field_aggregation, allowed_values) ) self._field_aggregation = field_aggregation @property def where(self): """Gets the where of this HbGraphsQuery. # noqa: E501 :return: The where of this HbGraphsQuery. # noqa: E501 :rtype: HbGraphsQueryWhere """ return self._where @where.setter def where(self, where): """Sets the where of this HbGraphsQuery. :param where: The where of this HbGraphsQuery. # noqa: E501 :type: HbGraphsQueryWhere """ self._where = where @property def group_by_interval(self): """Gets the group_by_interval of this HbGraphsQuery. # noqa: E501 Group by interval of the query # noqa: E501 :return: The group_by_interval of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._group_by_interval @group_by_interval.setter def group_by_interval(self, group_by_interval): """Sets the group_by_interval of this HbGraphsQuery. Group by interval of the query # noqa: E501 :param group_by_interval: The group_by_interval of this HbGraphsQuery. # noqa: E501 :type: str """ self._group_by_interval = group_by_interval @property def group_by_fill(self): """Gets the group_by_fill of this HbGraphsQuery. # noqa: E501 Group by fill value of the query # noqa: E501 :return: The group_by_fill of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._group_by_fill @group_by_fill.setter def group_by_fill(self, group_by_fill): """Sets the group_by_fill of this HbGraphsQuery. Group by fill value of the query # noqa: E501 :param group_by_fill: The group_by_fill of this HbGraphsQuery. # noqa: E501 :type: str """ allowed_values = ["fill(null)", "none"] # noqa: E501 if group_by_fill not in allowed_values: raise ValueError( "Invalid value for `group_by_fill` ({0}), must be one of {1}" # noqa: E501 .format(group_by_fill, allowed_values) ) self._group_by_fill = group_by_fill @property def group_by_tag_key(self): """Gets the group_by_tag_key of this HbGraphsQuery. # noqa: E501 Group by tag key value of the query # noqa: E501 :return: The group_by_tag_key of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._group_by_tag_key @group_by_tag_key.setter def group_by_tag_key(self, group_by_tag_key): """Sets the group_by_tag_key of this HbGraphsQuery. Group by tag key value of the query # noqa: E501 :param group_by_tag_key: The group_by_tag_key of this HbGraphsQuery. # noqa: E501 :type: str """ self._group_by_tag_key = group_by_tag_key @property def retention_policy(self): """Gets the retention_policy of this HbGraphsQuery. # noqa: E501 Retention policy name # noqa: E501 :return: The retention_policy of this HbGraphsQuery. # noqa: E501 :rtype: str """ return self._retention_policy @retention_policy.setter def retention_policy(self, retention_policy): """Sets the retention_policy of this HbGraphsQuery. Retention policy name # noqa: E501 :param retention_policy: The retention_policy of this HbGraphsQuery. # noqa: E501 :type: str """ self._retention_policy = retention_policy def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value if issubclass(HbGraphsQuery, dict): for key, value in self.items(): result[key] = value return result def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict()) def __repr__(self): """For `print` and `pprint`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, HbGraphsQuery): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other
31.776471
316
0.614217
15,902
0.981242
0
0
10,607
0.654511
0
0
8,453
0.521597
8ca1fdcd06877b59b70ea045ebbc727545e90abc
3,564
py
Python
unn/models/attentions/factorized_attention.py
zongdaoming/TinyTransformer
8e64f8816117048c388b4b20e3a56760ce149fe3
[ "Apache-2.0" ]
2
2021-08-08T11:23:14.000Z
2021-09-16T04:05:23.000Z
unn/models/attentions/factorized_attention.py
zongdaoming/TinyTransformer
8e64f8816117048c388b4b20e3a56760ce149fe3
[ "Apache-2.0" ]
1
2021-08-08T11:25:47.000Z
2021-08-08T11:26:15.000Z
unn/models/attentions/factorized_attention.py
zongdaoming/TinyTransformer
8e64f8816117048c388b4b20e3a56760ce149fe3
[ "Apache-2.0" ]
null
null
null
import torch import torch.nn as nn import torch.nn.functional as F from .position import LearnedEmbedding class FactorizedAttentionBlock(nn.Module): def __init__(self, inplanes, feat_planes, out_planes=None, kernel_size=1, stride=1, position_embedding=None, **kwargs): super(FactorizedAttentionBlock, self).__init__() self.pe_use = False if position_embedding is not None: self.pe_use = True if position_embedding == "Learned Embedding": self.pe = LearnedEmbedding(inplanes) else: raise NotImplementedError() self.inplanes = inplanes self.feat_planes = feat_planes self.basis = nn.Conv2d(inplanes, feat_planes, kernel_size, padding=kernel_size // 2) self.coef = nn.Conv2d(inplanes, feat_planes, kernel_size, padding=kernel_size // 2) self.value = nn.Conv2d(inplanes, inplanes, kernel_size, padding=kernel_size // 2) self.final_use = False if out_planes is not None: self.final_use = True if stride == 1: self.final = nn.Conv2d(inplanes, feat_planes, 1) else: self.final = nn.Conv2d(inplanes, feat_planes, kernel_size=1, stride=2, padding=1) def forward(self, x): if self.pe_use: x = self.pe(x) + x B = x.shape[0] C = self.inplanes M = self.feat_planes H = x.shape[2] W = x.shape[3] # B*M*H*W basis = self.basis(x) basis = F.softmax(basis.view(-1, H * W), dim=1).view(B, M, H, W) # B*M*H*W coef = self.coef(x) coef = F.softmax(coef, dim=1) # B*C*H*W value = self.value(x) # B*HW*M basis = basis.view(B, M, -1) basis = torch.transpose(basis, 1, 2) # B*C*HW value = value.view(B, C, -1) # B * C * M res = torch.bmm(value, basis) # B * M * HW coef = coef.view(B, M, -1) # B * C * HW output = torch.bmm(res, coef) # B * C * H * W output = output.view(B, C, H, W) # output = self.bn(output) # output = self.up(output) output = output + x if self.final_use: output = self.final(output) return output class FactorizedAttention(nn.Module): def __init__(self, **kwargs): super(FactorizedAttention, self).__init__() self.inplanes = kwargs['inplanes'] self.out_planes = self.inplanes self.num_level = kwargs['num_level'] for lvl_idx in range(self.num_level): if isinstance(self.inplanes, int): planes = self.inplanes else: planes = self.inplanes[lvl_idx] kwargs['inplanes'] = planes self.add_module( self.get_lateral_name(lvl_idx), FactorizedAttentionBlock(**kwargs) ) def get_lateral_name(self, idx): return 'c{}_lateral'.format(idx) def get_lateral(self, idx): return getattr(self, self.get_lateral_name(idx)) def get_outplanes(self): return self.out_planes def forward(self, input): features = input['features'] assert self.num_level == len(features) laterals = [self.get_lateral(i)(x) for i, x in enumerate(features)] features = [] for lvl_idx in range(self.num_level): out = laterals[lvl_idx] features.append(out) return {'features': features}
29.7
112
0.563692
3,452
0.968575
0
0
0
0
0
0
228
0.063973
8ca2ffe299e03e4ecdafdc64f945211899c0df0b
1,029
py
Python
scripts/py_shell.py
sjl3110/TF-M
100fa00239e4ddaf895865bdbbeb904a1973cb4a
[ "BSD-3-Clause" ]
null
null
null
scripts/py_shell.py
sjl3110/TF-M
100fa00239e4ddaf895865bdbbeb904a1973cb4a
[ "BSD-3-Clause" ]
null
null
null
scripts/py_shell.py
sjl3110/TF-M
100fa00239e4ddaf895865bdbbeb904a1973cb4a
[ "BSD-3-Clause" ]
null
null
null
import subprocess commit_sha_base = 'c855573fd1acadf2dd3b1cdc1e4581cd49c77f05' cmake_command = 'cmake -S . -B cmake_build -DTFM_PLATFORM=arm/mps2/an521 \ -DTFM_TOOLCHAIN_FILE=toolchain_GNUARM.cmake \ -DCMAKE_BUILD_TYPE=Release \ -DTFM_PROFILE=profile_small' build_command = 'cmake --build cmake_build -- install -j32' # p = subprocess.Popen(, shell=True, # stdout=subprocess.PIPE, stderr=subprocess.STDOUT) # for line in p.stdout.readlines(): # if line.find('reference is not a tree') > 0: # print("Python exec shell command error") # exit(2) # retval = p.wait() def sys_run(command): p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) for line in p.stdout.readlines(): print(line) retval = p.wait() return p.stdout sys_run('git checkout ' + commit_sha_base) sys_run('rm -rf cmake_build') sys_run(cmake_command) sys_run(build_command)
31.181818
74
0.655005
0
0
0
0
0
0
0
0
621
0.603499
8ca37f78c357746a315b182aadc2bf8f1ad9a051
3,557
py
Python
Python 2 & 3/class example/sparse_matrix.py
sasasagagaga/Code-examples
084db5bca241b164a670e303f73048fe4e6dad79
[ "MIT" ]
null
null
null
Python 2 & 3/class example/sparse_matrix.py
sasasagagaga/Code-examples
084db5bca241b164a670e303f73048fe4e6dad79
[ "MIT" ]
null
null
null
Python 2 & 3/class example/sparse_matrix.py
sasasagagaga/Code-examples
084db5bca241b164a670e303f73048fe4e6dad79
[ "MIT" ]
null
null
null
from collections import defaultdict import copy class CooSparseMatrix: def _prepare_coords(self, coords): i, j = tuple(map(int, coords)) if 0 > i or i >= self.Shape[0] or 0 > j or j >= self.Shape[1]: raise TypeError return i, j def __get_copy(self): return copy.deepcopy(self) def __init__(self, ijx_list, shape=None): self.data = defaultdict(dict) for *coords, x in ijx_list: i, j = tuple(map(int, coords)) if (i, j) in self.data: raise TypeError self.data[i][j] = x self.Shape = shape def __getitem__(self, coords): if len(coords) == 2: i, j = self._prepare_coords(coords) return self.data.get(coords[0], dict()).get(coords[1], 0.) i, _ = self._prepare_coords((coords[0], 0)) return CooSparseMatrix([(i, j, v) for j, v in self.data[i].items()], Shape=(1, self.Shape[1])) def __setitem__(self, coords, value): i, j = self._prepare_coords(coords) if value == 0: if i in self.data and j in self.data[i]: del self.data[i][j] else: self.data[i][j] = value def __add__(self, other): if self.Shape != other.Shape: raise TypeError res = self.__get_copy() for i, d in other.data.items(): if i not in res.data: res.data[i] = copy.copy(other.data[i]) continue for j, v in d.items(): cur_val = res.data[i].get(j, 0) + v if cur_val == 0: res.data[i].pop(j, None) else: res.data[i][j] = cur_val if len(res.data[i]) == 0: del res.data[i] return res def __mul__(self, value): if value == 0: return CooSparseMatrix([], Shape=self.Shape) res = self.__get_copy() for i in self.data.keys(): for j in self.data[i].keys(): res.data[i][j] *= value return res def __rmul__(self, value): return self * value def __sub__(self, other): return self + other * -1 def __deepcopy__(self, memo): res = CooSparseMatrix([], shape=self.Shape) res.data = copy.deepcopy(self.data) return res def __setattr__(self, attr, value): if attr == 'shape': if not isinstance(value, tuple): raise TypeError if len(value) != 2 or type(value[0]) is not int or type(value[1]) is not int: raise TypeError if value[0] * value[1] != self.Shape[0] * self.Shape[1]: raise TypeError res = CooSparseMatrix([], value) for i, d in self.data.items(): for j, v in d.items(): pos = i * self.Shape[1] + j res[pos // value[1], pos % value[1]] = v self.Shape = value self.data = res.data elif attr == 'T': raise AttributeError else: self.__dict__[attr] = value def __getattr__(self, attr): if attr == 'shape': return self.Shape elif attr == 'T': res = CooSparseMatrix([], self.Shape[::-1]) for i, d in self.data.items(): for j, v in d.items(): res[j, i] = v return res else: return self.__dict__[attr]
32.045045
89
0.490863
3,506
0.985662
0
0
0
0
0
0
20
0.005623
8ca571729a1d490bef3f077d7c0408ec944e7fe6
24,209
py
Python
src/stitcher.py
ahelsing/geni-tools
0799f715ad88a1a11b069e8208f012abef23cbd8
[ "MIT" ]
3
2015-05-05T13:03:27.000Z
2021-11-17T11:16:38.000Z
src/stitcher.py
ahelsing/geni-tools
0799f715ad88a1a11b069e8208f012abef23cbd8
[ "MIT" ]
null
null
null
src/stitcher.py
ahelsing/geni-tools
0799f715ad88a1a11b069e8208f012abef23cbd8
[ "MIT" ]
null
null
null
#!/usr/bin/env python #---------------------------------------------------------------------- # Copyright (c) 2013-2016 Raytheon BBN Technologies # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and/or hardware specification (the "Work") to # deal in the Work without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Work, and to permit persons to whom the Work # is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Work. # # THE WORK IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE WORK OR THE USE OR OTHER DEALINGS # IN THE WORK. #---------------------------------------------------------------------- '''Stitching client: Call the Stitching Computation Service to expand a single request RSpec. Then use Omni to allocate / createsliver reservations at all necessary aggregates. Return the combined manifest RSpec.''' # Call this just like omni: # $ python ./src/stitcher.py -o createsliver <valid slice name> <path to RSpec file> # (assuming a valid omni_config in the usual spots) # 'createsliver' or 'allocate' commands with an RSpec that requires stitching will be processed # by the stitcher code. # All other calls will be passed directly to Omni. # All calls are APIv2 (hard-coded) currently. # Input request RSpec does _not_ need a stitching extension, but should # be a single RSpec for all resources that you want in your slice. # To create a request that needs stitching, include at least 1 <link> elements with # more than 1 different <component_manager> elements (and no # shared_vlan element or link_type of other than VLAN) # Selected known issues / todos # - Thread calls to omni # - Support AM API v3 # - Consolidate constants # - Fully handle a VLAN_UNAVAILABLE error from an AM # - Fully handle negotiating among AMs for a VLAN tag to use # As in when the returned suggestedVLANRange is not what was requested # - fakeMode is incomplete # - Tune counters, sleep durations, etc # - Return a struct with detailed results (not just comments in manifest) # - Return a struct on errors # - Get AM URLs from the Clearinghouse # - Use Authentication with the SCS # - Support Stitching schema v2 # - Time out omni calls in case an AM hangs # - opts.warn is used to suppress omni output. Clean that up. A scriptMode option? # - Implement confirmSafeRequest to ensure no dangerous requests are made # - Handle known EG error messages # - Loop checking to see if EG sliverstatus says success or failure import json import logging import logging.handlers import optparse import os import sys import gcf.oscript as omni from gcf.omnilib.util import OmniError, AMAPIError from gcf.omnilib.stitchhandler import StitchingHandler from gcf.omnilib.stitch.utils import StitchingError, prependFilePrefix from gcf.omnilib.stitch.objects import Aggregate import gcf.omnilib.stitch.objects #from gcf.omnilib.stitch.objects import DCN_AM_RETRY_INTERVAL_SECS as DCN_AM_RETRY_INTERVAL_SECS # URL of the SCS service SCS_URL = "https://geni-scs.net.internet2.edu:8443/geni/xmlrpc" DEFAULT_CAPACITY = 20000 # in Kbps # Call is the way another script might call this. # It initializes the logger, options, config (using omni functions), # and then dispatches to the stitch handler def call(argv, options=None): if options is not None and not options.__class__==optparse.Values: raise OmniError("Invalid options argument to call: must be an optparse.Values object") if argv is None or not type(argv) == list: raise OmniError("Invalid argv argument to call: must be a list") ############################################################################## # Get a parser from omni that understands omni options ############################################################################## parser = omni.getParser() # update usage for help message omni_usage = parser.get_usage() parser.set_usage("\n" + "GENI Omni Stitching Tool\n" + "Copyright (c) 2013-2016 Raytheon BBN Technologies\n" + omni_usage+ "\nstitcher.py reserves multi-aggregate fully bound topologies, including stitching, if the call is createsliver or allocate; else it just calls Omni.\n") ############################################################################## # Add additional optparse.OptionParser style options # Be sure not to re-use options already in use by omni for # different meanings, otherwise you'll raise an OptionConflictError ############################################################################## parser.add_option("--defaultCapacity", default=DEFAULT_CAPACITY, type="int", help="Default stitched link capacity in Kbps - default is 20000 meaning ~20Mbps") parser.add_option("--excludehop", metavar="HOP_EXCLUDE", action="append", help="Hop URN to exclude from any path") parser.add_option("--includehop", metavar="HOP_INCLUDE", action="append", help="Hop URN to include on every path - use with caution") parser.add_option("--includehoponpath", metavar="HOP_INCLUDE PATH", action="append", nargs=2, help="Hop URN to include and then path (link client_id) to include it on") parser.add_option("--fixedEndpoint", default=False, action="store_true", help="RSpec uses a static endpoint - add a fake node with an interface on every link") parser.add_option("--noExoSM", default=False, action="store_true", help="Always use local ExoGENI racks, not the ExoSM, where possible (default %default)") parser.add_option("--useExoSM", default=False, action="store_true", help="Always use the ExoGENI ExoSM, not the individual EG racks, where possible (default %default)") parser.add_option("--fileDir", default=None, help="Directory for all output files generated. By default some files go in /tmp, some in the CWD, some in ~/.gcf.") parser.add_option("--logFileCount", default=5, type="int", help="Number of backup log files to keep, Default %default") parser.add_option("--ionRetryIntervalSecs", type="int", help="Seconds to sleep before retrying at DCN aggregates (default: %default)", default=gcf.omnilib.stitch.objects.DCN_AM_RETRY_INTERVAL_SECS) parser.add_option("--ionStatusIntervalSecs", type="int", help="Seconds to sleep between sliverstatus calls at DCN aggregates (default %default)", default=30) parser.add_option("--noReservation", default=False, action="store_true", help="Do no reservations: just generate the expanded request RSpec (default %default)") parser.add_option("--scsURL", help="URL to the SCS service. Default: Value of 'scs_url' in omni_config or " + SCS_URL, default=None) parser.add_option("--timeout", default=0, type="int", help="Max minutes to allow stitcher to run before killing a reservation attempt (default %default minutes, 0 means no timeout).") parser.add_option("--noAvailCheck", default=False, action="store_true", help="Disable checking current VLAN availability where possible.") parser.add_option("--genRequest", default=False, action="store_true", help="Generate and save an expanded request RSpec, but do no reservation.") parser.add_option("--noDeleteAtEnd", default=False, action="store_true", help="On failure or Ctrl-C do not delete any reservations completed at some aggregates (default %default).") parser.add_option("--noTransitAMs", default=False, action="store_true", help="Do not reserve resources at intermediate / transit aggregates; allow experimenter to manually complete the circuit (default %default).") parser.add_option("--noSCS", default=False, action="store_true", help="Do not call the SCS to expand or add a stitching extension. Use this only if supplying any needed stitching extension and the SCS would fail your request. (default %default).") parser.add_option("--fakeModeDir", help="Developers only: If supplied, use canned server responses from this directory", default=None) parser.add_option("--savedSCSResults", default=None, help="Developers only: Use this saved file of SCS results instead of calling SCS (saved previously using --debug)") parser.add_option("--useSCSSugg", default=False, action="store_true", help="Developers only: Always use the VLAN tags the SCS suggests, not 'any'.") parser.add_option("--noEGStitching", default=False, action="store_true", help="Developers only: Use GENI stitching, not ExoGENI stitching.") parser.add_option("--noEGStitchingOnLink", metavar="LINK_ID", action="append", help="Developers only: Use GENI stitching on this particular link only, not ExoGENI stitching.") # parser.add_option("--script", # help="If supplied, a script is calling this", # action="store_true", default=False) # Put our logs in a different file by default parser.set_defaults(logoutput='stitcher.log') # Configure stitcher with a specific set of configs by default # First, set the default logging config file lcfile = os.path.join(sys.path[0], os.path.join("gcf","stitcher_logging.conf")) # Windows & Mac binaries do not get the .conf file in the proper archive apparently # And even if they did, it appears the logging stuff can't readily read .conf files # from that archive. # Solution 1 that fails (no pkg_resources on windows so far, needs the file in the .zip) # lcfile = pkg_resources.resource_filename("gcf", "stitcher_logging.conf") # Solution2 is to use pkgutil to read the file from the archive # And write it to a temp file that the logging stuff can use. # Note this requires finding some way to get the file into the archive # With whatever I do, I want to read the file direct from source per above if possible if not os.path.exists(lcfile): # File didn't exist as a regular file among python source # Try it where py2exe (Windows) puts resources (one directory up, parallel to zip). lcfile = os.path.join(os.path.normpath(os.path.join(sys.path[0], '..')), os.path.join("gcf","stitcher_logging.conf")) if not os.path.exists(lcfile): # File didn't exist in dir parallel to zip of source # Try one more up, but no gcf sub-directory - where py2app (Mac) puts it. lcfile = os.path.join(os.path.normpath(os.path.join(os.path.join(sys.path[0], '..'), '..')), "stitcher_logging.conf") if not os.path.exists(lcfile): # Now we'll try a couple approaches to read the .conf file out of a source zip # And put it in a temp directory tmpdir = os.path.normpath(os.getenv("TMPDIR", os.getenv("TMP", "/tmp"))) if tmpdir and tmpdir != "" and not os.path.exists(tmpdir): os.makedirs(tmpdir) lcfile = os.path.join(tmpdir, "stitcher_logging.conf") try: # This approach requires the .conf be in the source.zip (e.g. library.zip, python27.zip) # On Windows (py2exe) this isn't easy apparently. But it happens by default on Mac (py2app) # Note that could be a manual copy & paste possibly import pkgutil lconf = pkgutil.get_data("gcf", "stitcher_logging.conf") with open(lcfile, 'w') as file: file.write(lconf) #print "Read config with pkgutils %s" % lcfile except Exception, e: #print "Failed to read .conf file using pkgutil: %s" % e # If we didn't get the file in the archive, use the .py version # I find this solution distasteful from gcf import stitcher_logging_deft try: with open(lcfile, 'w') as file: file.write(stitcher_logging_deft.DEFT_STITCHER_LOGGING_CONFIG) except Exception, e2: sys.exit("Error configuring logging: Could not write (from python default) logging config file %s: %s" % (lcfile, e2)) #print "Read from logging config from .py into tmp file %s" % lcfile parser.set_defaults(logconfig=lcfile) # Have omni use our parser to parse the args, manipulating options as needed options, args = omni.parse_args(argv, parser=parser) # If there is no fileDir, then we try to write to the CWD. In some installations, that will # fail. So test writing to CWD. If that fails, set fileDir to a temp dir to write files ther. if not options.fileDir: testfile = None handle = None try: import tempfile handle, testfile = tempfile.mkstemp(dir='.') #print "Can write to CWD: created %s" % testfile os.close(handle) except Exception, e: #print "Cannot write to CWD '%s' for output files: %s" % (os.path.abspath('.'), e) tmpdir = os.path.normpath(os.getenv("TMPDIR", os.getenv("TMP", "/tmp"))) if tmpdir and tmpdir != "" and not os.path.exists(tmpdir): os.makedirs(tmpdir) testfile1 = None handle1 = None try: import tempfile handle1, testfile1 = tempfile.mkstemp(dir=tmpdir) os.close(handle1) options.fileDir = tmpdir except Exception, e1: sys.exit("Cannot write to temp directory '%s' for output files. Try setting `--fileDir` to point to a writable directory. Error: %s'" % (tmpdir, e1)) finally: try: os.unlink(testfile1) except Exception, e2: pass finally: try: os.unlink(testfile) except Exception, e2: pass # Create the dirs for fileDir option as needed if options.fileDir: fpDir = os.path.normpath(os.path.expanduser(options.fileDir)) if fpDir and fpDir != "": if not fpDir.endswith(os.sep): fpDir += os.sep fpd2 = os.path.abspath(fpDir) if not os.path.exists(fpd2): try: os.makedirs(fpd2) except Exception, e: sys.exit("Failed to create '%s' for saving files per --fileDir option: %s" % (fpd2, e)) if not os.path.isdir(fpd2): sys.exit("Path specified in '--fileDir' is not a directory: %s" % fpd2) testfile = None handle = None try: import tempfile handle, testfile = tempfile.mkstemp(dir=fpd2) os.close(handle) except Exception, e: sys.exit("Cannot write to directory '%s' specified by '--fileDir': %s" % (fpDir, e)) finally: try: os.unlink(testfile) except Exception, e2: pass options.fileDir = fpDir options.logoutput = os.path.normpath(os.path.join(os.path.abspath(options.fileDir), options.logoutput)) # Set up the logger # First, rotate the logfile if necessary if options.logoutput: options.logoutput = os.path.normpath(os.path.expanduser(options.logoutput)) if options.logoutput and os.path.exists(options.logoutput) and options.logFileCount > 0: backupCount = options.logFileCount bfn = options.logoutput # Code from python logging.handlers.RotatingFileHandler.doRollover() for i in range(backupCount - 1, 0, -1): sfn = "%s.%d" % (bfn, i) dfn = "%s.%d" % (bfn, i + 1) if os.path.exists(sfn): if os.path.exists(dfn): os.remove(dfn) os.rename(sfn, dfn) dfn = bfn + ".1" if os.path.exists(dfn): os.remove(dfn) if os.path.exists(bfn): try: os.rename(bfn, dfn) except OSError, e: # Issue #824 partial solution if "being used by another process" in str(e): # On Windows, when another stitcher instance running in same directory, so has stitcher.log open # WindowsError: [Error 32] The process cannot access the file because it is being used by another process sys.exit("Error: Is another stitcher process running in this directory? Run stitcher from a different directory, or re-run with the option `--fileDir <separate directory for this run's output files>`") else: raise # Then have Omni configure the logger try: omni.configure_logging(options) except Exception, e: sys.exit("Failed to configure logging: %s" % e) # Now that we've configured logging, reset this to None # to avoid later log messages about configuring logging options.logconfig = None logger = logging.getLogger("stitcher") if options.fileDir: logger.info("All files will be saved in the directory '%s'", os.path.abspath(options.fileDir)) # We use the omni config file # First load the agg nick cache # First, suppress all but WARN+ messages on console if not options.debug: lvl = logging.INFO handlers = logger.handlers if len(handlers) == 0: handlers = logging.getLogger().handlers for handler in handlers: if isinstance(handler, logging.StreamHandler): lvl = handler.level handler.setLevel(logging.WARN) break config = omni.load_agg_nick_config(options, logger) # Load custom config _after_ system agg_nick_cache, # which also sets omni_defaults config = omni.load_config(options, logger, config) if config.has_key('omni_defaults') and config['omni_defaults'].has_key('scs_url'): if options.scsURL is not None: logger.debug("Ignoring omni_config default SCS URL of '%s' because commandline specified '%s'", config['omni_defaults']['scs_url'], options.scsURL) else: options.scsURL = config['omni_defaults']['scs_url'] logger.debug("Using SCS URL from omni_config: %s", options.scsURL) else: if options.scsURL is None: options.scsURL = SCS_URL logger.debug("Using SCS URL default: %s", SCS_URL) else: logger.debug("Using SCS URL from commandline: %s", options.scsURL) if not options.debug: handlers = logger.handlers if len(handlers) == 0: handlers = logging.getLogger().handlers for handler in handlers: if isinstance(handler, logging.StreamHandler): handler.setLevel(lvl) break #logger.info("Using AM API version %d", options.api_version) # Make any file prefix be part of the output file prefix so files go in the right spot if options.prefix and options.fileDir: pIsDir = (options.prefix and options.prefix.endswith(os.sep)) if not os.path.isabs(options.prefix): options.prefix = os.path.normpath(os.path.join(options.fileDir, options.prefix)) else: # replace any directory in prefix and use the fileDir options.prefix = prependFilePrefix(options.fileDir, options.prefix) if pIsDir: options.prefix += os.sep elif options.fileDir: options.prefix = options.fileDir # logger.debug("--prefix is now %s", options.prefix) # Create the dirs needed for options.prefix if specified if options.prefix: fpDir = os.path.normpath(os.path.expanduser(os.path.dirname(options.prefix))) if fpDir and fpDir != "" and not os.path.exists(fpDir): try: os.makedirs(fpDir) except Exception, e: sys.exit("Failed to create '%s' for saving files per --prefix option: %s" % (fpDir, e)) if options.fakeModeDir: if not os.path.isdir(options.fakeModeDir): logger.error("Got Fake Mode Dir %s that is not a directory!", options.fakeModeDir) raise StitchingError("Fake Mod path not a directory: %s" % options.fakeModeDir) else: logger.info("Running with Fake Mode Dir %s", options.fakeModeDir) Aggregate.PAUSE_FOR_DCN_AM_TO_FREE_RESOURCES_SECS = options.ionRetryIntervalSecs Aggregate.SLIVERSTATUS_POLL_INTERVAL_SEC = options.ionStatusIntervalSecs nondefOpts = omni.getOptsUsed(parser, options) if options.debug: logger.info(omni.getSystemInfo() + "\nStitcher: " + omni.getOmniVersion()) logger.info("Running stitcher ... %s Args: %s" % (nondefOpts, " ".join(args))) else: # Force this to the debug log file only logger.debug(omni.getSystemInfo() + "\nStitcher: " + omni.getOmniVersion()) logger.debug("Running stitcher ... %s Args: %s" % (nondefOpts, " ".join(args))) omni.checkForUpdates(config, logger) if options.defaultCapacity < 1: logger.warn("Specified a tiny default link capacity of %dKbps!", options.defaultCapacity) # FIXME: Warn about really big capacities too? if options.useExoSM and options.noExoSM: sys.exit("Cannot specify both useExoSM and noExoSM") if options.useExoSM and options.noEGStitching: sys.exit("Cannot specify both useExoSM and noEGStitching") if options.useExoSM and options.noEGStitchingOnLink: sys.exit("Cannot specify both useExoSM and noEGStitchingOnLink") if options.noExoSM: if not options.noEGStitching: logger.debug("Per options avoiding ExoSM. Therefore, not using EG Stitching") options.noEGStitching = True # Note that the converse is not true: You can require noEGStitching and still use # the ExoSM, assuming we edit the request to the ExoSM carefully. if options.noTransitAMs: logger.info("Per options not completing reservations at transit / SCS added aggregates") if not options.noDeleteAtEnd: logger.debug(" ... therefore setting noDeleteAtEnd") options.noDeleteAtEnd = True handler = StitchingHandler(options, config, logger) return handler.doStitching(args) # Goal of main is to call the 'call' method and print the result def main(argv=None): if argv is None: argv = sys.argv[1:] # FIXME: Print other header stuff? try: text, item = call(argv) # FIXME: If called from a script, then anything here? # if options.script: # return json # return result # else: print text except AMAPIError, ae: if ae.returnstruct and isinstance(ae.returnstruct, dict) and ae.returnstruct.has_key('code'): if isinstance(ae.returnstruct['code'], int) or isinstance(ae.returnstruct['code'], str): sys.exit(int(ae.returnstruct['code'])) if isinstance(ae.returnstruct['code'], dict) and ae.returnstruct['code'].has_key('geni_code'): sys.exit(int(ae.returnstruct['code']['geni_code'])) sys.exit(ae) except OmniError, oe: sys.exit(oe) if __name__ == "__main__": sys.exit(main())
50.646444
221
0.638399
0
0
0
0
0
0
0
0
12,567
0.519104
8ca7949e5600af676c35fbf996b6b49821a26ed0
320
py
Python
check_db_connection.py
sernote/python_training
2e2fa1f71b551d12bb303a0abc31bd86a0a7b81d
[ "Apache-2.0" ]
null
null
null
check_db_connection.py
sernote/python_training
2e2fa1f71b551d12bb303a0abc31bd86a0a7b81d
[ "Apache-2.0" ]
null
null
null
check_db_connection.py
sernote/python_training
2e2fa1f71b551d12bb303a0abc31bd86a0a7b81d
[ "Apache-2.0" ]
null
null
null
from fixture.orm import ORMFixture from model.group import Group from fixture.contact import Contacthelper db = ORMFixture(host='localhost', name='addressbook', user='root', password='') try: l = db.get_contact_list() for item in l: print(item.all_phones_from_page) print(len(l)) finally: pass
22.857143
79
0.715625
0
0
0
0
0
0
0
0
32
0.1
8ca80fec6941295983f63bed7954d4de64aa4bfb
208
py
Python
csrf/api/v1/urls.py
CredoEducation/edx-drf-extensions
853fb5ec6392d57693008e1a1c1620b79cb8343b
[ "Apache-2.0" ]
13
2016-08-26T15:33:05.000Z
2020-12-20T19:12:34.000Z
csrf/api/v1/urls.py
CredoEducation/edx-drf-extensions
853fb5ec6392d57693008e1a1c1620b79cb8343b
[ "Apache-2.0" ]
74
2016-03-11T21:42:14.000Z
2021-10-04T05:41:12.000Z
csrf/api/v1/urls.py
CredoEducation/edx-drf-extensions
853fb5ec6392d57693008e1a1c1620b79cb8343b
[ "Apache-2.0" ]
13
2016-11-21T06:34:17.000Z
2021-09-07T08:34:28.000Z
""" URL definitions for version 1 of the CSRF API. """ from django.conf.urls import url from .views import CsrfTokenView urlpatterns = [ url(r'^token$', CsrfTokenView.as_view(), name='csrf_token'), ]
16
64
0.701923
0
0
0
0
0
0
0
0
76
0.365385
8ca834043d6aeb573ae8c09f0baf4e1123118c35
1,158
py
Python
src/zenmake/zm/buildconf/types.py
pustotnik/raven
adb75d04a1ce719266eb34c29b35151dfaf91a8a
[ "BSD-3-Clause" ]
null
null
null
src/zenmake/zm/buildconf/types.py
pustotnik/raven
adb75d04a1ce719266eb34c29b35151dfaf91a8a
[ "BSD-3-Clause" ]
null
null
null
src/zenmake/zm/buildconf/types.py
pustotnik/raven
adb75d04a1ce719266eb34c29b35151dfaf91a8a
[ "BSD-3-Clause" ]
null
null
null
# coding=utf-8 # """ Copyright (c) 2020, Alexander Magola. All rights reserved. license: BSD 3-Clause License, see LICENSE for more details. """ from zm.pyutils import struct class AnyStrKey(object): """ Any amount of string keys""" __slots__ = () def __eq__(self, other): if not isinstance(other, AnyStrKey): # don't attempt to compare against unrelated types return NotImplemented # pragma: no cover return True def __hash__(self): # necessary for instances to behave sanely in dicts and sets. return hash(self.__class__) ANYSTR_KEY = AnyStrKey() _PATHS_SCHEME_DICT_VARS = { 'incl' : { 'type': ('str', 'list-of-strs') }, 'excl' : { 'type': ('str', 'list-of-strs') }, 'ignorecase' : { 'type': 'bool' }, 'startdir' : { 'type': 'str' }, } PATHS_SCHEME = { 'type' : ('str', 'list', 'dict'), 'dict' : { 'vars' : _PATHS_SCHEME_DICT_VARS, }, 'list' : { 'vars-type' : ('str', 'dict'), 'dict-vars' : _PATHS_SCHEME_DICT_VARS, }, 'traits' : ['complex-path'], } ConfNode = struct('ConfNode', 'val, traits')
24.638298
69
0.578584
422
0.364421
0
0
0
0
0
0
531
0.458549
8ca83fa54e7394d645fa820ab6dd850bff3aac1f
832
py
Python
bokeh/protocol/messages/ok.py
kinghows/bokeh
aeb7abc1dbe2b67ce0f4422838a96fb8362c52c7
[ "BSD-3-Clause" ]
4
2018-06-03T14:08:15.000Z
2020-09-09T01:56:29.000Z
bokeh/protocol/messages/ok.py
kinghows/bokeh
aeb7abc1dbe2b67ce0f4422838a96fb8362c52c7
[ "BSD-3-Clause" ]
1
2021-05-09T02:45:17.000Z
2021-05-09T02:45:17.000Z
bokeh/protocol/messages/ok.py
kinghows/bokeh
aeb7abc1dbe2b67ce0f4422838a96fb8362c52c7
[ "BSD-3-Clause" ]
3
2020-04-28T17:47:50.000Z
2021-04-05T06:11:46.000Z
from __future__ import absolute_import import logging log = logging.getLogger(__name__) from ..message import Message from . import register @register class ok_1(Message): ''' Define the ``OK`` message (revision 1) for acknowledging successful handling of a previous message. The ``content`` fragment of for this message is empty. ''' msgtype = 'OK' revision = 1 @classmethod def create(cls, request_id, **metadata): ''' Create an ``OK`` message Args: request_id (str) : The message ID for the message the precipitated the OK. Any additional keyword arguments will be put into the message ``metadata`` fragment as-is. ''' header = cls.create_header(request_id=request_id) return cls(header, metadata, {})
23.771429
75
0.644231
677
0.813702
0
0
687
0.825721
0
0
447
0.53726
8ca9b54baa338723ba065c5a2b4ac0c863288e7a
973
py
Python
ranking-jaccardian.py
bharathbs93/Article-Similarity-Search
32835dbf3e62b93e369b2596d41ad6359c8f1601
[ "MIT" ]
null
null
null
ranking-jaccardian.py
bharathbs93/Article-Similarity-Search
32835dbf3e62b93e369b2596d41ad6359c8f1601
[ "MIT" ]
null
null
null
ranking-jaccardian.py
bharathbs93/Article-Similarity-Search
32835dbf3e62b93e369b2596d41ad6359c8f1601
[ "MIT" ]
null
null
null
#Importing libraries that are needed for processing import pandas as pd from sklearn import preprocessing import numpy as np from sklearn.metrics.pairwise import pairwise_distances # Reading the csv file of term document frequency generated in R input_data = pd.read_csv("finamatrix.csv",index_col=0, header =0 ) # Normalizing the data within a scale range x = preprocessing.MinMaxScaler() data_standard = x.fit_transform(input_data) # Calculating jaccardian similarity scores jac_similarity = pairwise_distances(data_standard, metric='jaccard') # Reshaping array jac_similarity = jac_similarity.reshape(jac_similarity.size,1) print jac_similarity[0:10] # sorting scores sorted_jac = np.sort(jac_similarity, axis = None)[::-1] sorted_jac = np.roll(sorted_jac, -np.count_nonzero(np.isnan(jac_similarity))) #Top three paired article scores are top_jac = sorted_jac[0:3] print sorted_jac[0:20] print("top three jacardian score paired articles are") print(top_jac)
27.027778
77
0.798561
0
0
0
0
0
0
0
0
341
0.350462
8cab73ff990877e4575d295bcf8d9f79d2c7d6bf
1,858
py
Python
1-Machine-Learning/1-Generative-Models/2D Representation & Reconstruction/2-Encoder-Decoder/Auto-Encoder/AE.py
yzy1996/Artificial-Intelligence
30a9a2ce1602b9fa9be5981e98885c1c4244cbbd
[ "MIT" ]
7
2019-11-09T02:55:35.000Z
2021-08-16T12:43:44.000Z
1-Machine-Learning/1-Generative-Models/2D Representation & Reconstruction/2-Encoder-Decoder/Auto-Encoder/AE.py
yzy1996/Artificial-Intelligence
30a9a2ce1602b9fa9be5981e98885c1c4244cbbd
[ "MIT" ]
3
2020-10-13T03:12:03.000Z
2021-03-21T09:03:02.000Z
1-Machine-Learning/1-Generative-Models/2D Representation & Reconstruction/2-Encoder-Decoder/Auto-Encoder/AE.py
yzy1996/Artificial-Intelligence
30a9a2ce1602b9fa9be5981e98885c1c4244cbbd
[ "MIT" ]
6
2020-06-07T08:14:15.000Z
2021-08-02T09:04:31.000Z
import numpy as np import tensorflow as tf from tensorflow import keras from tensorflow.keras import layers import matplotlib.pyplot as plt # load data (x_train, _), _ = keras.datasets.mnist.load_data() x_train = x_train.astype('float32').reshape((-1, 28, 28, 1)) / 255. # build with tf encoder_input = keras.Input(shape=(28, 28, 1), name='original_img') x = layers.Conv2D(16, 3, activation='relu')(encoder_input) x = layers.Conv2D(32, 3, activation='relu')(x) x = layers.MaxPooling2D(3)(x) x = layers.Conv2D(32, 3, activation='relu')(x) x = layers.Conv2D(16, 3, activation='relu')(x) encoder_output = layers.GlobalMaxPooling2D()(x) x = layers.Reshape((4, 4, 1))(encoder_output) x = layers.Conv2DTranspose(16, 3, activation='relu')(x) x = layers.Conv2DTranspose(32, 3, activation='relu')(x) x = layers.UpSampling2D(3)(x) x = layers.Conv2DTranspose(16, 3, activation='relu')(x) decoder_output = layers.Conv2DTranspose(1, 3, activation='relu')(x) autoencoder = keras.Model(encoder_input, decoder_output, name='autoencoder') autoencoder.compile(optimizer='adam', loss='binary_crossentropy') callback = tf.keras.callbacks.EarlyStopping(monitor='loss', patience=3) autoencoder.fit(x_train, x_train, epochs=50, batch_size=256, shuffle=True, callbacks=[callback]) decoded_imgs = autoencoder.predict(x_train) n = 10 plt.figure(figsize=(20, 4)) for i in range(n): # display original ax = plt.subplot(2, n, i + 1) plt.imshow(x_train[i].reshape(28, 28)) plt.gray() ax.get_xaxis().set_visible(False) ax.get_yaxis().set_visible(False) # display reconstruction ax = plt.subplot(2, n, n + i + 1) plt.imshow(decoded_imgs[i].reshape(28, 28)) plt.gray() ax.get_xaxis().set_visible(False) ax.get_yaxis().set_visible(False) plt.show()
29.967742
76
0.681378
0
0
0
0
0
0
0
0
185
0.099569
8cab92e3b65b518844070c4affd32adef9b4c6b0
2,327
py
Python
third_party/liblouis/copy_tables.py
google-ar/chromium
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2,151
2020-04-18T07:31:17.000Z
2022-03-31T08:39:18.000Z
third_party/liblouis/copy_tables.py
harrymarkovskiy/WebARonARCore
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
395
2020-04-18T08:22:18.000Z
2021-12-08T13:04:49.000Z
third_party/liblouis/copy_tables.py
harrymarkovskiy/WebARonARCore
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
338
2020-04-18T08:03:10.000Z
2022-03-29T12:33:22.000Z
#!/usr/bin/env python # Copyright 2015 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. '''Copies the liblouis braille translation tables to a destination.''' import liblouis_list_tables import optparse import os import shutil def LinkOrCopyFiles(sources, dest_dir): def LinkOrCopyOneFile(src, dst): if os.path.exists(dst): os.unlink(dst) try: os.link(src, dst) except: shutil.copy(src, dst) if not os.path.exists(dest_dir): os.makedirs(dest_dir) for source in sources: LinkOrCopyOneFile(source, os.path.join(dest_dir, os.path.basename(source))) def WriteDepfile(depfile, infiles): stampfile = depfile + '.stamp' with open(stampfile, 'w'): os.utime(stampfile, None) content = '%s: %s' % (stampfile, ' '.join(infiles)) open(depfile, 'w').write(content) def main(): parser = optparse.OptionParser(description=__doc__) parser.add_option('-D', '--directory', dest='directories', action='append', help='Where to search for table files') parser.add_option('-e', '--extra_file', dest='extra_files', action='append', default=[], help='Extra liblouis table file to process') parser.add_option('-d', '--dest_dir', action='store', metavar='DIR', help=('Destination directory. Used when translating ' + 'input paths to output paths and when copying ' 'files.')) parser.add_option('--depfile', metavar='FILENAME', help=('Store .d style dependencies in FILENAME and touch ' 'FILENAME.stamp after copying the files')) options, args = parser.parse_args() if len(args) != 1: parser.error('Expecting exactly one argument') if not options.directories: parser.error('At least one --directory option must be specified') if not options.dest_dir: parser.error('At least one --dest_dir option must be specified') files = liblouis_list_tables.GetTableFiles(args[0], options.directories, options.extra_files) LinkOrCopyFiles(files, options.dest_dir) if options.depfile: WriteDepfile(options.depfile, files) if __name__ == '__main__': main()
34.220588
79
0.653631
0
0
0
0
0
0
0
0
810
0.348088
8cace4ddecdda2eaa7e084fcbbb6b086d90d5173
3,199
py
Python
tools/embed_resource.py
hunamizawa/ESP8266Clock
4366bac9308b5f13d08300f11a72780bea374091
[ "MIT" ]
1
2020-09-21T10:57:13.000Z
2020-09-21T10:57:13.000Z
tools/embed_resource.py
hunamizawa/ESP8266Clock
4366bac9308b5f13d08300f11a72780bea374091
[ "MIT" ]
9
2020-07-10T07:05:10.000Z
2020-10-28T09:06:38.000Z
tools/embed_resource.py
hunamizawa/ESP8266Clock
4366bac9308b5f13d08300f11a72780bea374091
[ "MIT" ]
null
null
null
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ data_dir ディレクトリ内のすべてのファイルを、PGM_P ( = const char * ) として埋め込むスクリプト。 Build/Upload の前に、自動的に実行される。 """ Import("env", "projenv") import os, glob, re, hashlib header_file_header = """// auto-generated by script tools/embed_resource.py // DO NOT EDIT BY HAND #ifndef ESP8266Clock_resource_data_H_ #define ESP8266Clock_resource_data_H_ #include <Arduino.h> namespace Resource { """ header_file_footer = """ } // namespace Resource #endif // ESP8266Clock_resource_data_H_ """ cpp_file_header = """// auto-generated by script tools/embed_resource.py // DO NOT EDIT BY HAND #include <resource.h> #include <resource-data.h> namespace Resource { """ cpp_file_footer = """ } // namespace Resource """ data_dir = env.subst("$PROJECT_DATA_DIR") src_dir = env.subst("$PROJECT_SRC_DIR") # 変数名に使えない文字を削除する用 pattern = re.compile(r'[^0-9A-Za-z_]') def del_invalid_char(input): """変数名に使えない文字をアンダーバーに置換""" return pattern.sub('_', input) def get_var_name(file_path): """ファイルパスから変数名を取得する""" # 数字から始まるファイル名対策として、先頭のパス区切り文字をわざと残す return del_invalid_char(file.replace(data_dir, '')) def wrap_ifdef_if(condition, defined, action): if condition: header_file.write('#ifdef %s\n' % (defined)) cpp_file.write('#ifdef %s\n' % (defined)) action() if condition: header_file.write('#endif\n') cpp_file.write('#endif\n') def embed_as_binary(file_path, header_file, cpp_file): """ファイル file_path を .h/.cpp ファイルに埋め込む""" var_name = get_var_name(file_path) with open(file_path, 'rb') as f: bs = f.read() header_file.write('extern const char %s[] PROGMEM;\n' % (var_name)) header_file.write('extern const size_t len%s;\n' % (var_name)) header_file.write('extern const char etag%s[] PROGMEM;\n' % (var_name)) cpp_file.write('const char %s[] PROGMEM = {\n' % (var_name)) for i, b in enumerate(bs): cpp_file.write('%s,' % (hex(b))) if i % 32 == 31: cpp_file.write('\n') cpp_file.write('};\n') cpp_file.write('const size_t len%s = %d;\n' % (var_name, len(bs))) hs = hashlib.sha256(bs).hexdigest() cpp_file.write('const char etag%s[] PROGMEM = "W/\\"%s\\"";\n' % (var_name, hs[:12])) with open(os.path.join(src_dir, 'resource-data.h'), 'w') as header_file: with open(os.path.join(src_dir, 'resource.cpp'), 'w') as cpp_file: header_file.write(header_file_header) cpp_file.write(cpp_file_header) files = glob.glob(os.path.join(data_dir, '**')) for file in files: wrap_ifdef_if(os.path.basename(file) == 'public.key', 'ENABLE_BINARY_SIGNING', lambda: embed_as_binary(file, header_file, cpp_file)) print("Embedding %s" % (file)) cpp_file.write('resource_t searchByPath(const String &path) {\n') for file in files: if os.path.basename(file) != 'public.key': cpp_file.write(' if (path == F("%s"))\n' % (file.replace(data_dir, '').replace('\\', '/'))) var_name = get_var_name(file) cpp_file.write(' return {%s, len%s, etag%s};\n' % (var_name, var_name, var_name)) cpp_file.write(' return {0, 0, 0};\n') cpp_file.write('}') header_file.write(header_file_footer) cpp_file.write(cpp_file_footer)
28.061404
100
0.668646
0
0
0
0
0
0
0
0
1,634
0.468329
8cad26aa5c9bb0b79790bafff44921d3d31e5198
389
py
Python
rest/migrations/0032_auto_20200819_2057.py
narcotis/Welbot-V2
7525216b61036f62d0be0b5ebb6d3476b73323c8
[ "MIT" ]
1
2021-06-04T03:28:06.000Z
2021-06-04T03:28:06.000Z
rest/migrations/0032_auto_20200819_2057.py
narcotis/Welbot-V2
7525216b61036f62d0be0b5ebb6d3476b73323c8
[ "MIT" ]
2
2020-09-09T14:19:10.000Z
2020-09-09T14:20:21.000Z
rest/migrations/0032_auto_20200819_2057.py
narcotis/Welbot-V2
7525216b61036f62d0be0b5ebb6d3476b73323c8
[ "MIT" ]
null
null
null
# Generated by Django 3.0.8 on 2020-08-19 11:57 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('rest', '0031_auto_20200819_2056'), ] operations = [ migrations.AlterField( model_name='culture_event', name='fare', field=models.CharField(max_length=200), ), ]
20.473684
51
0.601542
296
0.760925
0
0
0
0
0
0
99
0.254499
8cadc9a1ef987de2247466e14b6dcd5f4aa056a1
220
py
Python
src/utils/pythonSrc/watchFaceParser/elements/weatherElements/icon.py
chm-dev/amazfitGTSwatchfaceBundle
4cb04be5215de16628418e9b38152a35d5372d3e
[ "MIT" ]
49
2019-12-18T11:24:56.000Z
2022-03-28T09:56:27.000Z
src/utils/pythonSrc/watchFaceParser/elements/weatherElements/icon.py
chm-dev/amazfitGTSwatchfaceBundle
4cb04be5215de16628418e9b38152a35d5372d3e
[ "MIT" ]
6
2020-01-08T21:31:15.000Z
2022-03-25T19:13:26.000Z
src/utils/pythonSrc/watchFaceParser/elements/weatherElements/icon.py
chm-dev/amazfitGTSwatchfaceBundle
4cb04be5215de16628418e9b38152a35d5372d3e
[ "MIT" ]
6
2019-12-27T17:30:24.000Z
2021-09-30T08:11:01.000Z
from watchFaceParser.elements.basicElements.imageSet import ImageSet class Icon: definitions = { 1: { 'Name': 'Images', 'Type': ImageSet}, 2: { 'Name': 'NoWeatherImageIndex', 'Type': 'long'}, }
24.444444
68
0.622727
148
0.672727
0
0
0
0
0
0
59
0.268182
8cae7ac8e5d8109409bea3d890ec721d39341abb
905
py
Python
netbox/dcim/migrations/0133_port_colors.py
TheFlyingCorpse/netbox
a226f06b1beb575011d783b202d76cb74d3b1f79
[ "Apache-2.0" ]
4,994
2019-07-01T13:15:44.000Z
2022-03-31T19:55:45.000Z
netbox/dcim/migrations/0133_port_colors.py
TheFlyingCorpse/netbox
a226f06b1beb575011d783b202d76cb74d3b1f79
[ "Apache-2.0" ]
4,045
2019-07-01T14:24:09.000Z
2022-03-31T16:07:39.000Z
netbox/dcim/migrations/0133_port_colors.py
TheFlyingCorpse/netbox
a226f06b1beb575011d783b202d76cb74d3b1f79
[ "Apache-2.0" ]
1,225
2019-07-01T15:34:03.000Z
2022-03-31T16:47:09.000Z
from django.db import migrations import utilities.fields class Migration(migrations.Migration): dependencies = [ ('dcim', '0132_cable_length'), ] operations = [ migrations.AddField( model_name='frontport', name='color', field=utilities.fields.ColorField(blank=True, max_length=6), ), migrations.AddField( model_name='frontporttemplate', name='color', field=utilities.fields.ColorField(blank=True, max_length=6), ), migrations.AddField( model_name='rearport', name='color', field=utilities.fields.ColorField(blank=True, max_length=6), ), migrations.AddField( model_name='rearporttemplate', name='color', field=utilities.fields.ColorField(blank=True, max_length=6), ), ]
27.424242
72
0.577901
845
0.933702
0
0
0
0
0
0
111
0.122652